Abstractive 모델 구성을 위한 텍스트 전처리 단계가 체계적으로 진행되었다.
분석단계, 정제단계, 정규화와 불용어 제거, 데이터셋 분리, 인코딩 과정이 빠짐없이 체계적으로 진행되었다.
텍스트 요약모델이 성공적으로 학습되었음을 확인하였다.
모델 학습이 진행되면서 train loss와 validation loss가 감소하는 경향을 그래프를 통해 확인했으며, 실제 요약문에 있는 핵심 단어들이 요약 문장 안에 포함되었다.
Extractive 요약을 시도해 보고 Abstractive 요약 결과과 함께 비교해 보았다.
두 요약 결과를 문법완성도 측면과 핵심단어 포함 측면으로 나누어 비교하고 분석 결과를 표로 정리하여 제시하였다.
import nltk
nltk.download('stopwords')
from importlib.metadata import version
import numpy as np
import pandas as pd
import os
import re
import matplotlib.pyplot as plt
from nltk.corpus import stopwords
from bs4 import BeautifulSoup
import tensorflow
from tensorflow.keras.preprocessing.text import Tokenizer
from tensorflow.keras.preprocessing.sequence import pad_sequences
from tensorflow.keras.layers import AdditiveAttention
from tensorflow.keras.layers import Input, LSTM, Embedding, Dense, Concatenate, TimeDistributed
from tensorflow.keras.models import Model
from tensorflow.keras.callbacks import EarlyStopping, ModelCheckpoint
import urllib.request
import summa
import requests
from summa.summarizer import summarize
import warnings
warnings.filterwarnings("ignore", category=UserWarning, module='bs4')
print(nltk.__version__)
print(tensorflow.__version__)
print(pd.__version__)
print(version('summa'))
3.6.5 2.6.0 1.3.3 1.2.0
[nltk_data] Downloading package stopwords to /aiffel/nltk_data... [nltk_data] Package stopwords is already up-to-date!
# 데이터 다운로드
import urllib.request
urllib.request.urlretrieve("https://raw.githubusercontent.com/sunnysai12345/News_Summary/master/news_summary_more.csv", filename="news_summary_more.csv")
data = pd.read_csv('news_summary_more.csv', encoding='iso-8859-1')
# 확인
data.sample(10)
| headlines | text | |
|---|---|---|
| 38400 | English fans bring sandpaper cards to mock Aus... | England cricket team supporters brought sandpa... |
| 34702 | 2 minutes of silence for RCB, tweets user as G... | Mocking Royal Challengers Bangalore for not re... |
| 20577 | After closing eBay.in, Flipkart starts own ref... | Flipkart has launched its own refurbished good... |
| 45251 | BJP's proposed Meghalaya alliance lethal for d... | Congress leader PL Punia has called BJP's prop... |
| 31859 | Lehmann gets new coaching job weeks after ball... | Darren Lehmann, who had stepped down as Austra... |
| 23103 | Lucky to play same body type that I am: 'Fanne... | Pihu Sand, who played the role of Anil Kapoor'... |
| 70737 | Kajol is strict one, I give kids whatever they... | Ajay Devgn has said that Kajol is the strict o... |
| 94731 | Terrorists, rapists allowed to fly but not Gai... | While slamming major airlines for banning Shiv... |
| 54169 | Censor Board refuses certification to film on ... | The Kerala office of the Censor Board has deni... |
| 12302 | Aamir advocates #ExperienceChange with the new... | Drive in the next generation and #ExperienceCh... |
# 데이터 전처리 시에는 원본 데이터를 복사해서 하는 것 꿀팁!
df = data.copy()
df.sample(10)
| headlines | text | |
|---|---|---|
| 63808 | Sonia Gandhi admitted to hospital, Rahul says ... | After Congress President Sonia Gandhi got admi... |
| 27394 | Which teams have qualified for 2018 FIFA World... | France, who are among the six European teams t... |
| 87029 | Big B supports Mumbai Police campaign based on... | Actor Amitabh Bachchan on Twitter supported th... |
| 43170 | First look of Salman Khan from 'Race 3' unveiled | The first look of actor Salman Khan from the u... |
| 9661 | Padma Shri awardee ad filmmaker Alyque Padamse... | Padma Shri awardee Alyque Padamsee passed away... |
| 14736 | Shraddha down with dengue, stops Saina biopic ... | Actress Shraddha Kapoor, who will portray Sain... |
| 62934 | Mohali school installs lift for its only disab... | A school in Mohali has spent â¹14 lakh to ... |
| 95755 | AB de Villiers gets injured ahead of the IPL 2017 | South African batsman AB de Villiers was ruled... |
| 80602 | Indian Railways launches first solar powered d... | The Indian Railways has launched first diesel ... |
| 84544 | Salman just said war a waste of resources, hum... | Kabir Khan, referring to Salman Khan's stateme... |
print('text 열에서 중복을 배제한 유일한 샘플의 수 :', df['text'].nunique())
print('headline 열에서 중복을 배제한 유일한 샘플의 수 :', df['headlines'].nunique())
text 열에서 중복을 배제한 유일한 샘플의 수 : 98360 headline 열에서 중복을 배제한 유일한 샘플의 수 : 98280
# 중복 샘플 제거
df.drop_duplicates(subset = ['text'], inplace=True)
print('전체 샘플수 :', (len(data)))
전체 샘플수 : 98401
print(df.isnull().sum())
headlines 0 text 0 dtype: int64
print('전체 샘플수 :', (len(df)))
전체 샘플수 : 98360
# 불용어 제거
# 정규화 사전 구성
contractions = {"ain't": "is not", "aren't": "are not","can't": "cannot", "'cause": "because", "could've": "could have", "couldn't": "could not",
"didn't": "did not", "doesn't": "does not", "don't": "do not", "hadn't": "had not", "hasn't": "has not", "haven't": "have not",
"he'd": "he would","he'll": "he will", "he's": "he is", "how'd": "how did", "how'd'y": "how do you", "how'll": "how will", "how's": "how is",
"I'd": "I would", "I'd've": "I would have", "I'll": "I will", "I'll've": "I will have","I'm": "I am", "I've": "I have", "i'd": "i would",
"i'd've": "i would have", "i'll": "i will", "i'll've": "i will have","i'm": "i am", "i've": "i have", "isn't": "is not", "it'd": "it would",
"it'd've": "it would have", "it'll": "it will", "it'll've": "it will have","it's": "it is", "let's": "let us", "ma'am": "madam",
"mayn't": "may not", "might've": "might have","mightn't": "might not","mightn't've": "might not have", "must've": "must have",
"mustn't": "must not", "mustn't've": "must not have", "needn't": "need not", "needn't've": "need not have","o'clock": "of the clock",
"oughtn't": "ought not", "oughtn't've": "ought not have", "shan't": "shall not", "sha'n't": "shall not", "shan't've": "shall not have",
"she'd": "she would", "she'd've": "she would have", "she'll": "she will", "she'll've": "she will have", "she's": "she is",
"should've": "should have", "shouldn't": "should not", "shouldn't've": "should not have", "so've": "so have","so's": "so as",
"this's": "this is","that'd": "that would", "that'd've": "that would have", "that's": "that is", "there'd": "there would",
"there'd've": "there would have", "there's": "there is", "here's": "here is","they'd": "they would", "they'd've": "they would have",
"they'll": "they will", "they'll've": "they will have", "they're": "they are", "they've": "they have", "to've": "to have",
"wasn't": "was not", "we'd": "we would", "we'd've": "we would have", "we'll": "we will", "we'll've": "we will have", "we're": "we are",
"we've": "we have", "weren't": "were not", "what'll": "what will", "what'll've": "what will have", "what're": "what are",
"what's": "what is", "what've": "what have", "when's": "when is", "when've": "when have", "where'd": "where did", "where's": "where is",
"where've": "where have", "who'll": "who will", "who'll've": "who will have", "who's": "who is", "who've": "who have",
"why's": "why is", "why've": "why have", "will've": "will have", "won't": "will not", "won't've": "will not have",
"would've": "would have", "wouldn't": "would not", "wouldn't've": "would not have", "y'all": "you all",
"y'all'd": "you all would","y'all'd've": "you all would have","y'all're": "you all are","y'all've": "you all have",
"you'd": "you would", "you'd've": "you would have", "you'll": "you will", "you'll've": "you will have",
"you're": "you are", "you've": "you have"}
print("정규화 사전의 수: ", len(contractions))
정규화 사전의 수: 120
# NLTK 제공 불용어 리스트
print('불용어 개수 :', len(stopwords.words('english') ))
print(stopwords.words('english'))
불용어 개수 : 179 ['i', 'me', 'my', 'myself', 'we', 'our', 'ours', 'ourselves', 'you', "you're", "you've", "you'll", "you'd", 'your', 'yours', 'yourself', 'yourselves', 'he', 'him', 'his', 'himself', 'she', "she's", 'her', 'hers', 'herself', 'it', "it's", 'its', 'itself', 'they', 'them', 'their', 'theirs', 'themselves', 'what', 'which', 'who', 'whom', 'this', 'that', "that'll", 'these', 'those', 'am', 'is', 'are', 'was', 'were', 'be', 'been', 'being', 'have', 'has', 'had', 'having', 'do', 'does', 'did', 'doing', 'a', 'an', 'the', 'and', 'but', 'if', 'or', 'because', 'as', 'until', 'while', 'of', 'at', 'by', 'for', 'with', 'about', 'against', 'between', 'into', 'through', 'during', 'before', 'after', 'above', 'below', 'to', 'from', 'up', 'down', 'in', 'out', 'on', 'off', 'over', 'under', 'again', 'further', 'then', 'once', 'here', 'there', 'when', 'where', 'why', 'how', 'all', 'any', 'both', 'each', 'few', 'more', 'most', 'other', 'some', 'such', 'no', 'nor', 'not', 'only', 'own', 'same', 'so', 'than', 'too', 'very', 's', 't', 'can', 'will', 'just', 'don', "don't", 'should', "should've", 'now', 'd', 'll', 'm', 'o', 're', 've', 'y', 'ain', 'aren', "aren't", 'couldn', "couldn't", 'didn', "didn't", 'doesn', "doesn't", 'hadn', "hadn't", 'hasn', "hasn't", 'haven', "haven't", 'isn', "isn't", 'ma', 'mightn', "mightn't", 'mustn', "mustn't", 'needn', "needn't", 'shan', "shan't", 'shouldn', "shouldn't", 'wasn', "wasn't", 'weren', "weren't", 'won', "won't", 'wouldn', "wouldn't"]
# 데이터 전처리 함수
def preprocess_sentence(sentence, remove_stopwords=True):
sentence = sentence.lower() # 텍스트 소문자화
sentence = BeautifulSoup(sentence, "lxml").text # <br />, <a href = ...> 등의 html 태그 제거
sentence = re.sub(r'\([^)]*\)', '', sentence) # 괄호로 닫힌 문자열 (...) 제거 Ex) my husband (and myself!) for => my husband for
sentence = re.sub('"','', sentence) # 쌍따옴표 " 제거
sentence = ' '.join([contractions[t] if t in contractions else t for t in sentence.split(" ")]) # 약어 정규화
sentence = re.sub(r"'s\b","", sentence) # 소유격 제거. Ex) roland's -> roland
sentence = re.sub("[^a-zA-Z]", " ", sentence) # 영어 외 문자(숫자, 특수문자 등) 공백으로 변환
sentence = re.sub('[m]{2,}', 'mm', sentence) # m이 3개 이상이면 2개로 변경. Ex) ummmmmmm yeah -> umm yeah
# 불용어 제거 (text)
if remove_stopwords:
tokens = ' '.join(word for word in sentence.split() if not word in stopwords.words('english') if len(word) > 1)
# 불용어 미제거 (headlines)
else:
tokens = ' '.join(word for word in sentence.split() if len(word) > 1)
return tokens
# 훈련 데이터 전체 전처리
# data['text'] : 불용어 제거
clean_text = []
for text in df['text']:
pre_text = preprocess_sentence(text)
clean_text.append(pre_text)
# 전처리 후 출력
print("text 전처리 후 결과: ", clean_text[:5])
text 전처리 후 결과: ['saurav kant alumnus upgrad iiit pg program machine learning artificial intelligence sr systems engineer infosys almost years work experience program upgrad degree career support helped transition data scientist tech mahindra salary hike upgrad online power learning powered lakh careers', 'kunal shah credit card bill payment platform cred gave users chance win free food swiggy one year pranav kaushik delhi techie bagged reward spending cred coins users get one cred coin per rupee bill paid used avail rewards brands like ixigo bookmyshow ubereats cult fit', 'new zealand defeated india wickets fourth odi hamilton thursday win first match five match odi series india lost international match rohit sharma captaincy consecutive victories dating back march match witnessed india getting seventh lowest total odi cricket history', 'aegon life iterm insurance plan customers enjoy tax benefits premiums paid save taxes plan provides life cover age years also customers options insure critical illnesses disability accidental death benefit rider life cover age years', 'speaking sexual harassment allegations rajkumar hirani sonam kapoor said known hirani many years true metoo movement get derailed metoo movement always believe woman case need reserve judgment added hirani accused assistant worked sanju']
# data['headlines'] : 불용어 미제거
clean_headlines = []
for headline in df['headlines']:
pre_headline = preprocess_sentence(headline, False)
clean_headlines.append(pre_headline)
print("headline 전처리 후 결과: ", clean_headlines[:5])
headline 전처리 후 결과: ['upgrad learner switches to career in ml al with salary hike', 'delhi techie wins free food from swiggy for one year on cred', 'new zealand end rohit sharma led india match winning streak', 'aegon life iterm insurance plan helps customers save tax', 'have known hirani for yrs what if metoo claims are not true sonam']
# empty data << null값으로 채우기
df['text'] = clean_text
df['headlines'] = clean_headlines
# 빈 값을 Null 값으로 변환
df.replace('', np.nan, inplace=True)
df.isnull().sum()
headlines 0 text 0 dtype: int64
# 샘플 최대 길이 정하기
# text, headlines 길이 분포 출력
import matplotlib.pyplot as plt
text_len = [len(s.split()) for s in df['text']]
headlines_len = [len(s.split()) for s in df['headlines']]
print('텍스트의 최소 길이 : {}'.format(np.min(text_len)))
print('텍스트의 최대 길이 : {}'.format(np.max(text_len)))
print('텍스트의 평균 길이 : {}'.format(np.mean(text_len)))
print('요약의 최소 길이 : {}'.format(np.min(headlines_len)))
print('요약의 최대 길이 : {}'.format(np.max(headlines_len)))
print('요약의 평균 길이 : {}'.format(np.mean(headlines_len)))
plt.subplot(1,2,1)
plt.boxplot(text_len)
plt.title('text')
plt.subplot(1,2,2)
plt.boxplot(headlines_len)
plt.title('headlines')
plt.tight_layout()
plt.show()
plt.title('text')
plt.hist(text_len, bins = 40)
plt.xlabel('length of samples')
plt.ylabel('number of samples')
plt.show()
plt.title('headlines')
plt.hist(headlines_len, bins = 40)
plt.xlabel('length of samples')
plt.ylabel('number of samples')
plt.show()
텍스트의 최소 길이 : 1 텍스트의 최대 길이 : 60 텍스트의 평균 길이 : 35.09968483123221 요약의 최소 길이 : 1 요약의 최대 길이 : 16 요약의 평균 길이 : 9.299532330215534
text_max_len = 40
headlines_max_len = 10
# 설정한 max_len 확인
def below_threshold_len(max_len, nested_list):
cnt = 0
for s in nested_list:
if(len(s.split()) <= max_len):
cnt = cnt + 1
print('전체 샘플 중 길이가 %s 이하인 샘플의 비율: %s'%(max_len, (cnt / len(nested_list))))
below_threshold_len(text_max_len, df['text'])
below_threshold_len(headlines_max_len, df['headlines'])
전체 샘플 중 길이가 40 이하인 샘플의 비율: 0.9238714924766165 전체 샘플 중 길이가 10 이하인 샘플의 비율: 0.8162972753151687
# 정해진 길이보다 길면 제외
df = df[df['text'].apply(lambda x: len(x.split()) <= text_max_len)]
df = df[df['headlines'].apply(lambda x: len(x.split()) <= headlines_max_len)]
print('전체 샘플수 :', (len(df)))
전체 샘플수 : 74102
# 시작 토큰/ 종료 토큰 추가
df['decoder_input'] = df['headlines'].apply(lambda x : 'sostoken '+ x)
df['decoder_target'] = df['headlines'].apply(lambda x : x + ' eostoken')
df.head()
| headlines | text | decoder_input | decoder_target | |
|---|---|---|---|---|
| 2 | new zealand end rohit sharma led india match w... | new zealand defeated india wickets fourth odi ... | sostoken new zealand end rohit sharma led indi... | new zealand end rohit sharma led india match w... |
| 3 | aegon life iterm insurance plan helps customer... | aegon life iterm insurance plan customers enjo... | sostoken aegon life iterm insurance plan helps... | aegon life iterm insurance plan helps customer... |
| 5 | rahat fateh ali khan denies getting notice for... | pakistani singer rahat fateh ali khan denied r... | sostoken rahat fateh ali khan denies getting n... | rahat fateh ali khan denies getting notice for... |
| 9 | cong wins ramgarh bypoll in rajasthan takes to... | congress candidate shafia zubair ramgarh assem... | sostoken cong wins ramgarh bypoll in rajasthan... | cong wins ramgarh bypoll in rajasthan takes to... |
| 10 | up cousins fed human excreta for friendship wi... | two minor cousins uttar pradesh gorakhpur alle... | sostoken up cousins fed human excreta for frie... | up cousins fed human excreta for friendship wi... |
# encoder_input, decoder_input, decoder_target -> np.array
encoder_input = np.array(df['text']) # 인코더의 입력
decoder_input = np.array(df['decoder_input']) # 디코더의 입력
decoder_target = np.array(df['decoder_target']) # 디코더의 레이블
# 직접 train/test dataset 분리하기
indices = np.arange(encoder_input.shape[0])
np.random.shuffle(indices)
print(indices)
[52475 51102 63242 ... 34191 73663 66457]
# 섞인 샘플 생성
encoder_input = encoder_input[indices]
decoder_input = decoder_input[indices]
decoder_target = decoder_target[indices]
# 8:2 비율로 분리
n_of_val = int(len(encoder_input)*0.2)
print('테스트 데이터의 수 :', n_of_val)
테스트 데이터의 수 : 14820
# 전체 데이터 양분
encoder_input_train = encoder_input[:-n_of_val]
decoder_input_train = decoder_input[:-n_of_val]
decoder_target_train = decoder_target[:-n_of_val]
encoder_input_test = encoder_input[-n_of_val:]
decoder_input_test = decoder_input[-n_of_val:]
decoder_target_test = decoder_target[-n_of_val:]
print('훈련 데이터의 개수 :', len(encoder_input_train))
print('훈련 레이블의 개수 :', len(decoder_input_train))
print('테스트 데이터의 개수 :', len(encoder_input_test))
print('테스트 레이블의 개수 :', len(decoder_input_test))
훈련 데이터의 개수 : 59282 훈련 레이블의 개수 : 59282 테스트 데이터의 개수 : 14820 테스트 레이블의 개수 : 14820
# 정수 인코딩
# 토크나이저 활용
src_tokenizer = Tokenizer() # 토크나이저 정의
src_tokenizer.fit_on_texts(encoder_input_train) # 입력된 데이터로부터 단어 집합 생성
# 단어의 데이터 비중 확인 (빈도에 따라)
threshold = 7 # 빈도 7회
total_cnt = len(src_tokenizer.word_index) # 단어의 수
rare_cnt = 0 # 등장 빈도수가 threshold보다 작은 단어의 개수를 카운트
total_freq = 0 # 훈련 데이터의 전체 단어 빈도수 총 합
rare_freq = 0 # 등장 빈도수가 threshold보다 작은 단어의 등장 빈도수의 총 합
# 단어와 빈도수의 쌍(pair)을 key와 value로 받는다.
for key, value in src_tokenizer.word_counts.items():
total_freq = total_freq + value
# 단어의 등장 빈도수가 threshold보다 작으면
if(value < threshold):
rare_cnt = rare_cnt + 1
rare_freq = rare_freq + value
print('단어 집합(vocabulary)의 크기 :', total_cnt)
print('등장 빈도가 %s번 이하인 희귀 단어의 수: %s'%(threshold - 1, rare_cnt))
print('단어 집합에서 희귀 단어를 제외시킬 경우의 단어 집합의 크기 %s'%(total_cnt - rare_cnt))
print("단어 집합에서 희귀 단어의 비율:", (rare_cnt / total_cnt)*100)
print("전체 등장 빈도에서 희귀 단어 등장 빈도 비율:", (rare_freq / total_freq)*100)
단어 집합(vocabulary)의 크기 : 61612 등장 빈도가 6번 이하인 희귀 단어의 수: 42301 단어 집합에서 희귀 단어를 제외시킬 경우의 단어 집합의 크기 19311 단어 집합에서 희귀 단어의 비율: 68.65707978965136 전체 등장 빈도에서 희귀 단어 등장 빈도 비율: 4.204520342320974
# 단어 집합 크기 제한
src_vocab = 19000
src_tokenizer = Tokenizer(num_words=src_vocab) # 단어 집합의 크기를 19,000으로 제한
src_tokenizer.fit_on_texts(encoder_input_train) # 단어 집합 재생성
# 텍스트 시퀀스를 정수 시퀀스로 변환
encoder_input_train = src_tokenizer.texts_to_sequences(encoder_input_train)
encoder_input_test = src_tokenizer.texts_to_sequences(encoder_input_test)
# 잘 진행되었는지 샘플 출력
print(encoder_input_train[:3])
[[546, 760, 116, 2315, 11780, 250, 1500, 1720, 3000, 94, 13206, 6643, 3510, 176, 170, 137, 1, 1534, 4820, 3510, 587, 310, 25, 120, 70, 3454, 250, 841, 137, 463, 97, 10, 546, 1518, 233, 16, 420, 6874, 16, 1161], [16, 11781, 8270, 1458, 924, 763, 140, 3571, 930, 218, 34, 304, 124, 760, 161, 202, 3266, 3455, 3266, 278, 587, 362, 90, 6241, 273, 458, 4374, 8270, 11781, 194, 1], [216, 1990, 7776, 95, 7492, 1745, 2294, 7123, 7123, 3598, 670, 6456, 1256, 6, 2682, 631, 3973, 12664, 1438, 11782, 193, 14384, 7492, 11359, 17996, 352, 12665, 779, 2117, 2141, 86, 95, 1048, 3781, 2700, 216, 1]]
tar_tokenizer = Tokenizer()
tar_tokenizer.fit_on_texts(decoder_input_train)
# 6회 미만 단어 비중 확인
threshold = 6
total_cnt = len(tar_tokenizer.word_index) # 단어의 수
rare_cnt = 0 # 등장 빈도수가 threshold보다 작은 단어의 개수를 카운트
total_freq = 0 # 훈련 데이터의 전체 단어 빈도수 총 합
rare_freq = 0 # 등장 빈도수가 threshold보다 작은 단어의 등장 빈도수의 총 합
# 단어와 빈도수의 쌍(pair)을 key와 value로 받는다.
for key, value in tar_tokenizer.word_counts.items():
total_freq = total_freq + value
# 단어의 등장 빈도수가 threshold보다 작으면
if(value < threshold):
rare_cnt = rare_cnt + 1
rare_freq = rare_freq + value
print('단어 집합(vocabulary)의 크기 :', total_cnt)
print('등장 빈도가 %s번 이하인 희귀 단어의 수: %s'%(threshold - 1, rare_cnt))
print('단어 집합에서 희귀 단어를 제외시킬 경우의 단어 집합의 크기 %s'%(total_cnt - rare_cnt))
print("단어 집합에서 희귀 단어의 비율:", (rare_cnt / total_cnt)*100)
print("전체 등장 빈도에서 희귀 단어 등장 빈도 비율:", (rare_freq / total_freq)*100)
단어 집합(vocabulary)의 크기 : 27307 등장 빈도가 5번 이하인 희귀 단어의 수: 18237 단어 집합에서 희귀 단어를 제외시킬 경우의 단어 집합의 크기 9070 단어 집합에서 희귀 단어의 비율: 66.78507342439669 전체 등장 빈도에서 희귀 단어 등장 빈도 비율: 5.974579835900359
tar_vocab = 9000
tar_tokenizer = Tokenizer(num_words=tar_vocab)
tar_tokenizer.fit_on_texts(decoder_input_train)
tar_tokenizer.fit_on_texts(decoder_target_train)
# 텍스트 시퀀스를 정수 시퀀스로 변환
decoder_input_train = tar_tokenizer.texts_to_sequences(decoder_input_train)
decoder_target_train = tar_tokenizer.texts_to_sequences(decoder_target_train)
decoder_input_test = tar_tokenizer.texts_to_sequences(decoder_input_test)
decoder_target_test = tar_tokenizer.texts_to_sequences(decoder_target_test)
# 잘 변환되었는지 확인
print('input')
print('input ',decoder_input_train[:5])
print('target')
print('decoder ',decoder_target_train[:5])
input input [[1, 217, 1823, 86, 3460, 301, 2229, 178, 275, 6501, 1865], [1, 11, 40, 5429, 5430, 1824, 406, 235, 935, 384], [1, 693, 4900, 102, 1762, 3967, 6959, 13, 6502], [1, 53, 500, 6, 6106, 8228, 4472, 3690, 62], [1, 598, 174, 88, 6, 335, 488, 27, 185, 6503, 47]] target decoder [[217, 1823, 86, 3460, 301, 2229, 178, 275, 6501, 1865, 2], [11, 40, 5429, 5430, 1824, 406, 235, 935, 384, 2], [693, 4900, 102, 1762, 3967, 6959, 13, 6502, 2], [53, 500, 6, 6106, 8228, 4472, 3690, 62, 2], [598, 174, 88, 6, 335, 488, 27, 185, 6503, 47, 2]]
# empty sample 확인 및 제거
drop_train = [index for index, sentence in enumerate(decoder_input_train) if len(sentence) == 1]
drop_test = [index for index, sentence in enumerate(decoder_input_test) if len(sentence) == 1]
print('삭제할 훈련 데이터의 개수 :', len(drop_train))
print('삭제할 테스트 데이터의 개수 :', len(drop_test))
encoder_input_train = [sentence for index, sentence in enumerate(encoder_input_train) if index not in drop_train]
decoder_input_train = [sentence for index, sentence in enumerate(decoder_input_train) if index not in drop_train]
decoder_target_train = [sentence for index, sentence in enumerate(decoder_target_train) if index not in drop_train]
encoder_input_test = [sentence for index, sentence in enumerate(encoder_input_test) if index not in drop_test]
decoder_input_test = [sentence for index, sentence in enumerate(decoder_input_test) if index not in drop_test]
decoder_target_test = [sentence for index, sentence in enumerate(decoder_target_test) if index not in drop_test]
print('훈련 데이터의 개수 :', len(encoder_input_train))
print('훈련 레이블의 개수 :', len(decoder_input_train))
print('테스트 데이터의 개수 :', len(encoder_input_test))
print('테스트 레이블의 개수 :', len(decoder_input_test))
삭제할 훈련 데이터의 개수 : 1 삭제할 테스트 데이터의 개수 : 0 훈련 데이터의 개수 : 59281 훈련 레이블의 개수 : 59281 테스트 데이터의 개수 : 14820 테스트 레이블의 개수 : 14820
# 패딩
encoder_input_train = pad_sequences(encoder_input_train, maxlen=text_max_len, padding='post')
encoder_input_test = pad_sequences(encoder_input_test, maxlen=text_max_len, padding='post')
decoder_input_train = pad_sequences(decoder_input_train, maxlen=headlines_max_len, padding='post')
decoder_target_train = pad_sequences(decoder_target_train, maxlen=headlines_max_len, padding='post')
decoder_input_test = pad_sequences(decoder_input_test, maxlen=headlines_max_len, padding='post')
decoder_target_test = pad_sequences(decoder_target_test, maxlen=headlines_max_len, padding='post')
# 인코더 설계 시작
embedding_dim = 128 # 임베딩 벡터 차원
hidden_size = 256 # LSTM 용량의 크기나, 뉴런의 개수
# 인코더
encoder_inputs = Input(shape=(text_max_len,))
# 인코더의 임베딩 층
enc_emb = Embedding(src_vocab, embedding_dim)(encoder_inputs)
# 인코더의 LSTM 1
# encoder_lstm1 = LSTM(hidden_size, return_sequences=True, return_state=True ,dropout = 0.4, recurrent_dropout = 0.4)
encoder_lstm1 = LSTM(hidden_size, return_sequences=True, return_state=True ,dropout = 0.4)
encoder_output1, state_h1, state_c1 = encoder_lstm1(enc_emb)
# 인코더의 LSTM 2
encoder_lstm2 = LSTM(hidden_size, return_sequences=True, return_state=True, dropout=0.4, recurrent_dropout=0.4)
encoder_output2, state_h2, state_c2 = encoder_lstm2(encoder_output1)
# 인코더의 LSTM 3
encoder_lstm3 = LSTM(hidden_size, return_state=True, return_sequences=True, dropout=0.4, recurrent_dropout=0.4)
encoder_outputs, state_h, state_c= encoder_lstm3(encoder_output2)
WARNING:tensorflow:Layer lstm_1 will not use cuDNN kernels since it doesn't meet the criteria. It will use a generic GPU kernel as fallback when running on GPU. WARNING:tensorflow:Layer lstm_2 will not use cuDNN kernels since it doesn't meet the criteria. It will use a generic GPU kernel as fallback when running on GPU.
# 디코더 설계
decoder_inputs = Input(shape=(None,))
# 디코더의 임베딩 층
dec_emb_layer = Embedding(tar_vocab, embedding_dim)
dec_emb = dec_emb_layer(decoder_inputs)
# 디코더의 LSTM
# decoder_lstm = LSTM(hidden_size, return_sequences=True, return_state=True, dropout=0.4, recurrent_dropout=0.2)
decoder_lstm = LSTM(hidden_size, return_sequences=True, return_state=True, dropout=0.4)
decoder_outputs, _, _ = decoder_lstm(dec_emb, initial_state=[state_h, state_c])
# 디코더의 출력층
decoder_softmax_layer = Dense(tar_vocab, activation='softmax')
decoder_softmax_outputs = decoder_softmax_layer(decoder_outputs)
# 모델 정의
model = Model([encoder_inputs, decoder_inputs], decoder_softmax_outputs)
model.summary()
Model: "model"
__________________________________________________________________________________________________
Layer (type) Output Shape Param # Connected to
==================================================================================================
input_1 (InputLayer) [(None, 40)] 0
__________________________________________________________________________________________________
embedding (Embedding) (None, 40, 128) 2432000 input_1[0][0]
__________________________________________________________________________________________________
lstm (LSTM) [(None, 40, 256), (N 394240 embedding[0][0]
__________________________________________________________________________________________________
input_2 (InputLayer) [(None, None)] 0
__________________________________________________________________________________________________
lstm_1 (LSTM) [(None, 40, 256), (N 525312 lstm[0][0]
__________________________________________________________________________________________________
embedding_1 (Embedding) (None, None, 128) 1152000 input_2[0][0]
__________________________________________________________________________________________________
lstm_2 (LSTM) [(None, 40, 256), (N 525312 lstm_1[0][0]
__________________________________________________________________________________________________
lstm_3 (LSTM) [(None, None, 256), 394240 embedding_1[0][0]
lstm_2[0][1]
lstm_2[0][2]
__________________________________________________________________________________________________
dense (Dense) (None, None, 9000) 2313000 lstm_3[0][0]
==================================================================================================
Total params: 7,736,104
Trainable params: 7,736,104
Non-trainable params: 0
__________________________________________________________________________________________________
# 어텐션 층(어텐션 함수)
attn_layer = AdditiveAttention(name='attention_layer')
# 인코더와 디코더의 모든 time step의 hidden state를 어텐션 층에 전달하고 결과를 리턴
attn_out = attn_layer([decoder_outputs, encoder_outputs])
# 어텐션의 결과와 디코더의 hidden state들을 연결
decoder_concat_input = Concatenate(axis=-1, name='concat_layer')([decoder_outputs, attn_out])
# 디코더의 출력층
decoder_softmax_layer = Dense(tar_vocab, activation='softmax')
decoder_softmax_outputs = decoder_softmax_layer(decoder_concat_input)
# 모델 정의
model = Model([encoder_inputs, decoder_inputs], decoder_softmax_outputs)
model.summary()
Model: "model_1"
__________________________________________________________________________________________________
Layer (type) Output Shape Param # Connected to
==================================================================================================
input_1 (InputLayer) [(None, 40)] 0
__________________________________________________________________________________________________
embedding (Embedding) (None, 40, 128) 2432000 input_1[0][0]
__________________________________________________________________________________________________
lstm (LSTM) [(None, 40, 256), (N 394240 embedding[0][0]
__________________________________________________________________________________________________
input_2 (InputLayer) [(None, None)] 0
__________________________________________________________________________________________________
lstm_1 (LSTM) [(None, 40, 256), (N 525312 lstm[0][0]
__________________________________________________________________________________________________
embedding_1 (Embedding) (None, None, 128) 1152000 input_2[0][0]
__________________________________________________________________________________________________
lstm_2 (LSTM) [(None, 40, 256), (N 525312 lstm_1[0][0]
__________________________________________________________________________________________________
lstm_3 (LSTM) [(None, None, 256), 394240 embedding_1[0][0]
lstm_2[0][1]
lstm_2[0][2]
__________________________________________________________________________________________________
attention_layer (AdditiveAttent (None, None, 256) 256 lstm_3[0][0]
lstm_2[0][0]
__________________________________________________________________________________________________
concat_layer (Concatenate) (None, None, 512) 0 lstm_3[0][0]
attention_layer[0][0]
__________________________________________________________________________________________________
dense_1 (Dense) (None, None, 9000) 4617000 concat_layer[0][0]
==================================================================================================
Total params: 10,040,360
Trainable params: 10,040,360
Non-trainable params: 0
__________________________________________________________________________________________________
model.compile(optimizer='rmsprop', loss='sparse_categorical_crossentropy')
es = EarlyStopping(monitor='val_loss', patience=2, verbose=1)
history = model.fit(x=[encoder_input_train, decoder_input_train], y=decoder_target_train, \
validation_data=([encoder_input_test, decoder_input_test], decoder_target_test), \
batch_size=256, callbacks=[es], epochs=50)
Epoch 1/50 232/232 [==============================] - 129s 393ms/step - loss: 6.3094 - val_loss: 5.9223 Epoch 2/50 232/232 [==============================] - 90s 389ms/step - loss: 5.7786 - val_loss: 5.5310 Epoch 3/50 232/232 [==============================] - 90s 387ms/step - loss: 5.4382 - val_loss: 5.2591 Epoch 4/50 232/232 [==============================] - 90s 386ms/step - loss: 5.1589 - val_loss: 5.0654 Epoch 5/50 232/232 [==============================] - 91s 390ms/step - loss: 4.9181 - val_loss: 4.8779 Epoch 6/50 232/232 [==============================] - 91s 390ms/step - loss: 4.7155 - val_loss: 4.7684 Epoch 7/50 232/232 [==============================] - 91s 392ms/step - loss: 4.5421 - val_loss: 4.6468 Epoch 8/50 232/232 [==============================] - 92s 396ms/step - loss: 4.3920 - val_loss: 4.5736 Epoch 9/50 232/232 [==============================] - 91s 392ms/step - loss: 4.2591 - val_loss: 4.5290 Epoch 10/50 232/232 [==============================] - 90s 390ms/step - loss: 4.1347 - val_loss: 4.4536 Epoch 11/50 232/232 [==============================] - 90s 386ms/step - loss: 4.0199 - val_loss: 4.4279 Epoch 12/50 232/232 [==============================] - 89s 384ms/step - loss: 3.9158 - val_loss: 4.3699 Epoch 13/50 232/232 [==============================] - 89s 382ms/step - loss: 3.8214 - val_loss: 4.3298 Epoch 14/50 232/232 [==============================] - 89s 384ms/step - loss: 3.7312 - val_loss: 4.3095 Epoch 15/50 232/232 [==============================] - 89s 383ms/step - loss: 3.6490 - val_loss: 4.2884 Epoch 16/50 232/232 [==============================] - 89s 383ms/step - loss: 3.5721 - val_loss: 4.2676 Epoch 17/50 232/232 [==============================] - 89s 382ms/step - loss: 3.5001 - val_loss: 4.2598 Epoch 18/50 232/232 [==============================] - 88s 380ms/step - loss: 3.4290 - val_loss: 4.2435 Epoch 19/50 232/232 [==============================] - 88s 381ms/step - loss: 3.3614 - val_loss: 4.2358 Epoch 20/50 232/232 [==============================] - 88s 381ms/step - loss: 3.2992 - val_loss: 4.2336 Epoch 21/50 232/232 [==============================] - 88s 381ms/step - loss: 3.2378 - val_loss: 4.2240 Epoch 22/50 232/232 [==============================] - 89s 382ms/step - loss: 3.1816 - val_loss: 4.2238 Epoch 23/50 232/232 [==============================] - 89s 382ms/step - loss: 3.1309 - val_loss: 4.2202 Epoch 24/50 232/232 [==============================] - 89s 382ms/step - loss: 3.0796 - val_loss: 4.2249 Epoch 25/50 232/232 [==============================] - 89s 382ms/step - loss: 3.0319 - val_loss: 4.2232 Epoch 00025: early stopping
plt.plot(history.history['loss'], label='train')
plt.plot(history.history['val_loss'], label='test')
plt.legend()
plt.show()
원래의 요약문(headlines 열)과 학습을 통해 얻은 추상적 요약의 결과를 비교해 보세요.
# 데이터 복원
src_index_to_word = src_tokenizer.index_word # 원문 단어 집합에서 정수 -> 단어를 얻음
tar_word_to_index = tar_tokenizer.word_index # 요약 단어 집합에서 단어 -> 정수를 얻음
tar_index_to_word = tar_tokenizer.index_word # 요약 단어 집합에서 정수 -> 단어를 얻음
# 인코더 설계
encoder_model = Model(inputs=encoder_inputs, outputs=[encoder_outputs, state_h, state_c])
# 이전 시점의 상태들을 저장하는 텐서
decoder_state_input_h = Input(shape=(hidden_size,))
decoder_state_input_c = Input(shape=(hidden_size,))
dec_emb2 = dec_emb_layer(decoder_inputs)
# 문장의 다음 단어를 예측하기 위해서 초기 상태(initial_state)를 이전 시점의 상태로 사용. 이는 뒤의 함수 decode_sequence()에 구현
# 훈련 과정에서와 달리 LSTM의 리턴하는 은닉 상태와 셀 상태인 state_h와 state_c를 버리지 않음.
decoder_outputs2, state_h2, state_c2 = decoder_lstm(dec_emb2, initial_state=[decoder_state_input_h, decoder_state_input_c])
# 어텐션 함수
decoder_hidden_state_input = Input(shape=(text_max_len, hidden_size))
attn_out_inf = attn_layer([decoder_outputs2, decoder_hidden_state_input])
decoder_inf_concat = Concatenate(axis=-1, name='concat')([decoder_outputs2, attn_out_inf])
# 디코더의 출력층
decoder_outputs2 = decoder_softmax_layer(decoder_inf_concat)
# 최종 디코더 모델
decoder_model = Model(
[decoder_inputs] + [decoder_hidden_state_input,decoder_state_input_h, decoder_state_input_c],
[decoder_outputs2] + [state_h2, state_c2])
def decode_sequence(input_seq):
# 입력으로부터 인코더의 상태를 얻음
e_out, e_h, e_c = encoder_model.predict(input_seq)
# <SOS>에 해당하는 토큰 생성
target_seq = np.zeros((1,1))
target_seq[0, 0] = tar_word_to_index['sostoken']
stop_condition = False
decoded_sentence = ''
while not stop_condition: # stop_condition이 True가 될 때까지 루프 반복
output_tokens, h, c = decoder_model.predict([target_seq] + [e_out, e_h, e_c])
sampled_token_index = np.argmax(output_tokens[0, -1, :])
sampled_token = tar_index_to_word[sampled_token_index]
if (sampled_token!='eostoken'):
decoded_sentence += ' '+sampled_token
# <eos>에 도달하거나 최대 길이를 넘으면 중단.
if (sampled_token == 'eostoken' or len(decoded_sentence.split()) >= (headlines_max_len-1)):
stop_condition = True
# 길이가 1인 타겟 시퀀스를 업데이트
target_seq = np.zeros((1,1))
target_seq[0, 0] = sampled_token_index
# 상태를 업데이트 합니다.
e_h, e_c = h, c
return decoded_sentence
# 원문의 정수 시퀀스를 텍스트 시퀀스로 변환
def seq2text(input_seq):
temp=''
for i in input_seq:
if (i!=0):
temp = temp + src_index_to_word[i]+' '
return temp
# 요약문의 정수 시퀀스를 텍스트 시퀀스로 변환
def seq2summary(input_seq):
temp=''
for i in input_seq:
if ((i!=0 and i!=tar_word_to_index['sostoken']) and i!=tar_word_to_index['eostoken']):
temp = temp + tar_index_to_word[i] + ' '
return temp
# 50개의 샘플에 대해 실제 요약과 예측된 요약 비교
for i in range(50, 100):
print("원문 :", seq2text(encoder_input_test[i]))
print("실제 요약 :", seq2summary(decoder_input_test[i]))
print("예측 요약 :", decode_sequence(encoder_input_test[i].reshape(1, text_max_len)))
print("\n")
원문 : actress esha gupta speaking outsider bollywood said wish surname surname still treated like outsider called industry people added esha said cannot blame even made effort part 실제 요약 : wish had another surname esha on being in wood 예측 요약 : am not anything in my relationship with sunny khanna 원문 : congress leader sanjay nirupam said around auto rickshaw drivers welcome congress president rahul gandhi vehicles trip mumbai added drivers decision depicts common man love rahul nirupam said rahul ji ensures common man opinions grievances inputs reach also responded 실제 요약 : will welcome rahul gandhi in mumbai congress 예측 요약 : rahul gandhi is fake women at delhi airport 원문 : year old boy indonesia married woman violating law requiring men aged get married boy underage village officials permitted unregistered marriage couple reportedly threatened commit suicide two developed feelings woman sick 실제 요약 : indonesian teen threatens suicide to marry woman in 예측 요약 : woman delivers baby girl in marrying husband 원문 : archaeologists egypt opened cursed tombs containing remains workers built great pyramid giza public viewing first time believed supervisor workers filled tombs protect dead thieves tombs discovered opened public viewing 실제 요약 : opened in egypt yrs after being discovered 예측 요약 : year old tree found in egypt 원문 : four time world champion lewis hamilton german grand prix despite starting th position grid sunday hamilton championship rival sebastian vettel crashed leading race laps go mercedes driver leads vettel points championship races go 실제 요약 : time world champ hamilton wins race after starting th 예측 요약 : champ wins world career title after 원문 : world largest education publisher rewarded ceo john fallon pay increase despite pre tax loss billion biggest history fallon compensation valued million compared million earlier forced put penguin random house stake sale raise cash 실제 요약 : education firm hikes ceo pay despite record loss 예측 요약 : world bank cuts over crore 원문 : amazon vice president michael george disclosed departure commerce giant linkedin profile farewell note written binary code series ones translates retired amazon years loved every minute checking changing game george helped oversee development amazon smart speaker echo 실제 요약 : amazon vp posts retirement note in code 예측 요약 : former india captain says it is the new company 원문 : dmk principal opposition tamil nadu assembly said might move confidence motion ruling aiadmk government statement made dmk working president mk stalin amid ongoing merger talks two aiadmk factions meanwhile ousted aiadmk leader ttv dinakaran also threatened destabilise government 실제 요약 : might bring no confidence motion against ruling aiadmk dmk 예측 요약 : aiadmk bans bypoll for not in 원문 : national green tribunal directed national highways authority india maintain mandatory green cover along national state highways direction reportedly aimed maintaining balance tribunal hearing plea filed ngo sought maintenance mandatory metres green cover sides national highways 실제 요약 : highways body directed to maintain green cover along highways 예측 요약 : centre to make new schools for parliament 원문 : cbi team planning arrest agency special director rakesh asthana accused bribery case delhi high court gave orders barring coercive action report said hours court order centre sent cbi chief alok verma asthana leave appointed rao interim chief 실제 요약 : cbi was planning to arrest asthana before hc order report 예측 요약 : cbi files complaint against cbi for assaulting gravitational koregaon 원문 : world oldest steam engine heritage special locomotive completed heritage run railway stations chennai sunday steam engine built withdrawn service engine made compatible recent technological developments equipped gps based 실제 요약 : world oldest engine finishes heritage run in chennai 예측 요약 : world largest bike bike in china 원문 : nigerian government confirmed schoolgirls missing following attack suspected members boko haram militant group last week armed insurgents attacked school state additional troops planes used search missing girls police security officials deployed schools state 실제 요약 : schoolgirls missing after boko haram attack nigeria 예측 요약 : philippine man who killed over grenade to grenade grenade 원문 : india motors subsidiary heavy industries japan launched lakh bike assembled country bike runs cc liquid cooled four cylinder engine produces power nm peak torque weighing around kg bike offers top speed kmph 실제 요약 : launches india at 예측 요약 : india to build its first floating floating market 원문 : austria also known gentle defeated two time world champion gary anderson win champions league cardiff year old world number seven five matches weekend second edition championship phil taylor winning inaugural edition tournament 실제 요약 : beats time world champ in champions league 예측 요약 : indian team beats french open to win title 원문 : ex england players david john morris turn respectively today flew wwii planes stadium getting warm match australia planes supposed fly feet convinced pilot hover feet players fined 실제 요약 : eng players once flew planes over stadium during their match 예측 요약 : world cup champions trophy is 원문 : apple chairman arthur billionaire world valuable company fortune billion according bloomberg apple stock accounts fortune served google board notably apple market capitalisation billion ceo tim cook net worth stands million 실제 요약 : world most valuable firm apple has just billionaire 예측 요약 : apple loses billion in apple value after apple ipo 원문 : new york museum turned request white house borrow painting painter vincent van gogh instead offering karat gold toilet president first lady interest installing white house artwork fully functional toilet called america used lakh people 실제 요약 : trump asks for loan of painting museum offers golden toilet 예측 요약 : uk queen eatery to be auctioned for 원문 : actor sanjay dutt took instagram share picture childhood late father actor sunil dutt occasion birth anniversary today lives happy birthday dad wrote caption sunil dutt passed away may suffering heart attack 실제 요약 : you live in me dutt on father sunil birth anniversary 예측 요약 : sanjay dutt shares pic with mother from mother birth 원문 : special train delhi travelled wrong route km reached madhya pradesh instead destination maharashtra express carrying farmers protesting delhi redirected original course farmers informed driver mistake alleged conspiracy behind wrong route 실제 요약 : train travelling to maharashtra ends up in mp by mistake 예측 요약 : bus driver attacked by traffic in uttar pradesh 원문 : year old us girl left critically injured fractured skull attempted viral kiki challenge recently said last thing remembered opening car door taken hospital accident fractured skull blood ears bleeding brain 실제 요약 : kiki challenge attempt leaves us teen with skull 예측 요약 : man dies after falling from man stomach 원문 : congress mp booked inaugurating government medical college day mp cm shivraj singh chouhan scheduled said inaugurated college tuesday auspicious day project approved upa government college inaugurated chouhan wednesday 실제 요약 : congress mp booked for college before mp cm 예측 요약 : mp cm kumar to celebrate mp assembly elections 원문 : lok sabha mps allowed ask maximum five questions house per day upcoming monsoon session lok sabha questions cell bulletin revealed mps earlier permitted ask questions due number notices questions exceeded per day bulletin added 실제 요약 : lok sabha mps can ask only questions from next session 예측 요약 : lok sabha speaker passes away from parliament 원문 : american comedian actor bill cosby monday faced topless protester alleged sexual assault former cosby show actress confronted women lives matter phrases written body accusations former basketball player cosby drugged sexually assaulted 실제 요약 : bill faces topless at sexual assault 예측 요약 : comedian comedian comedian sexual harassment victims 원문 : saina nehwal became first indian woman win indonesia masters title opponent carolina marin pulled due injury first game final marin leading first game forced retire due knee injury nehwal finished runner edition tournament 실제 요약 : nehwal wins indonesia masters after marin pulls out with injury 예측 요약 : wins st ever title in the world ship 원문 : actor sanjay dutt biopic sanju starring ranbir kapoor earned crore worldwide crossed crore mark worldwide two weeks release india film entered crore club week becoming ranbir first film achieve milestone also highest opening day grosser 실제 요약 : ranbir kapoor starrer sanju earns over crore worldwide 예측 요약 : sanju ranbir ranbir starrer ranbir hits crore 원문 : manchester city record setting match win streak came end draw crystal palace sunday city two wins away breaking bayern munich record consecutive top flight wins europe top five leagues elsewhere arsenal pegged back late penalty end year draw west 실제 요약 : man city record game win streak ends with draw 예측 요약 : manchester city to become world most city city 원문 : starbucks opened first us signing store capital washington dc employees american sign language outlet employees deaf hard hearing required communicate sign language store modelled similar one kuala lumpur malaysia opened 실제 요약 : starbucks opens its first us sign language store 예측 요약 : airbnb fires its first employee 원문 : land degradation drought cost india gross domestic product according study commissioned environment ministry pointing globally lose hectares minute drought environment minister harsh vardhan said converts million tonne loss potential production year 실제 요약 : land drought cost india of gdp study 예측 요약 : govt to build lakh for lakh 원문 : noting alarming pollution levels toxic haze covering delhi fire services water trees near delhi secretariat thursday air quality city remains severe plus due delhi government decided implement third round odd even scheme november november 실제 요약 : fire services water on trees near delhi secretariat 예측 요약 : mumbai buildings to get crore after bird waste 원문 : first diamond mined depth less km south africa found containing calcium usually formed deep mantle km earth surface researchers said finding proves slabs oceanic crust sink deep within earth recycled lower mantle 실제 요약 : diamond from km found with km deep 예측 요약 : scientists find of the world st ever 원문 : philippine president rodrigo duterte declared martial law days southern island mindanao muslim fighters laid siege region following violent clashes government forces according reports violence erupted tuesday army searched leader militant group pledged allegiance isis reports added 실제 요약 : duterte declares martial law in besieged south philippines 예측 요약 : philippine prez duterte declares philippines killings 원문 : addressing speculations surrounding divorce sachin shroff actress juhi parmar said foul temper people writing assuming reason divorce decided best part ways atmosphere must child added referring daughter 실제 요약 : do not have foul juhi on divorce with sachin 예측 요약 : am not just quitting pooja on divorce 원문 : oneplus launched another teaser oneplus first looks like oneplus closer examination oneplus placed oneplus reports state positioning volume switched alert always integral oneplus list features taken notch 실제 요약 : oneplus has come out with another teaser for the oneplus 예측 요약 : oneplus launched launched in first ever oneplus 원문 : knife wielding man attacked soldier patrolling central ch metro station paris friday attacker made statements referring allah isis assault immediately seized soldier notably soldiers police officers frequently target attackers france recent years 실제 요약 : knife man attacks soldier in paris 예측 요약 : man carrying indian origin man arrested in london 원문 : around students institutes run nashik mandal maharashtra created record achieving target completing surya within year record registered world amazing records wonder book records surya ek event students started performing surya february 실제 요약 : students set record for crore 예측 요약 : students in tn village highest guinness world record 원문 : filmmaker mehra built toilets slums last four years obtained permission mumbai bmc build twenty toilets ghatkopar shooting upcoming film mere prime minister ghatkopar build toilets walk away also make sure locals maintain said 실제 요약 : builds toilets in slum areas 예측 요약 : mumbai to get its first train board 원문 : gold medals gold coast games australia topped commonwealth games medal tally th time overall gold medals india managed finish inside top medal tally second time medals india ranked fifth list nations commonwealth games medals 실제 요약 : australia tops cwg medal tally for the th time 예측 요약 : wins indian gold wins gold at asian games 원문 : diamond ring sold auction london years owner purchased thinking costume jewel previous owner bought carat diamond ring car boot sale learning value jeweller said could valuable 실제 요약 : diamond ring bought for sold for crore 예측 요약 : sells for lakh sells for crore 원문 : justice graffiti commemorating victims london grenfell tower fire even get finish justice grenfell piece historic community memorial wall artist made street art said least people killed blaze engulfed tower june year 실제 요약 : for london tower fire victims 예측 요약 : german politician to stop bomb at speeding airport 원문 : mother ag one convicts rajiv gandhi assassination case met tamil nadu governor banwarilal purohit seeking son release following cabinet recommendation matter along petition presented judge kt thomas reported remarks serious flaws cbi investigation details son behaviour earlier parole nnnn 실제 요약 : mother of convict in rajiv gandhi murder meets tn governor 예측 요약 : former journalist of family death away at 원문 : deputy cm manish sisodia ordered release funds one month salary staff delhi university colleges interim relief comes months government stopped giving funds colleges failure appoint governing bodies release funds ordered request delhi university teachers association sisodia said 실제 요약 : govt releases salary funds for delhi university colleges 예측 요약 : delhi govt to pay lakh for burning insurance scheme 원문 : delhi court friday awarded seven years imprisonment two men pleaded guilty conspiring raise funds recruit people islamic state accused identified sheikh azhar ul islam jammu kashmir mohammed farhan maharashtra earlier submitted acts wanted 실제 요약 : two sentenced to years in jail for isis related activities 예측 요약 : delhi court sentences lakh to hizbul mujahideen 원문 : artificial intelligence create million jobs eliminating million according american research company gartner jobs industry education see continuous growing job demand report said one five workers engaged mostly non routine tasks rely ai job report added 실제 요약 : ai will create more jobs than it by report 예측 요약 : microsoft plans billion to ai startups 원문 : fifa warned india football federation governance cannot influenced legal political comes delhi high court ruling annulled aiff recent presidential election praful patel elected third successive term fifa also sought information steps aiff intends undertake matter 실제 요약 : fifa warns indian over third party interference 예측 요약 : icc football court to ban over fifa 원문 : ajay devgn starrer golmaal become actor highest grossing film earnings crore surpassed lifetime earnings devgn film singham returns earned crore golmaal also second highest hindi grosser hindi version baahubali conclusion 실제 요약 : golmaal again becomes ajay devgn highest grossing film 예측 요약 : golmaal again starrer earns cr worldwide 원문 : south korean tennis player took instagram share picture foot injury caused retire australian open semi final roger federer friday tried hard bring utmost energy however make tough decision given cannot compete roger wrote 실제 요약 : player shares pic of injury after retiring against federer 예측 요약 : french footballer shares picture of his son 원문 : wonder woman become highest grossing film dc extended universe domestic box office north america posting earnings crore film surpassed million earnings batman superman dawn justice achieve feat man steel suicide squad films 실제 요약 : wonder woman becomes extended universe top grossing film 예측 요약 : wonder woman earns crore in the world 원문 : indian railways install cctvs stations cost crore using nirbhaya fund present stations already provided cctvs besides stations important trains also equipped cctvs centre created nirbhaya fund crore december gang rape incident 실제 요약 : railways to put up cctvs at stations using nirbhaya fund 예측 요약 : railways to get crore insurance by tickets 원문 : arsenal manager arsene wenger surpassed former manchester united manager sir alex ferguson longest serving premier league manager completing days monday wenger took arsenal winning premier league title thrice wenger managed matches team winning losing matches 실제 요약 : wenger replaces as longest serving manager 예측 요약 : man utd lose his club in last months 원문 : television actor amit tandon wife ruby held prisoner dubai almost month reportedly arrested threatening government officials amit trying get bail said influential people could stand see succeed levied false accusations 실제 요약 : actor amit tandon wife held prisoner in dubai for month 예측 요약 : veteran actor son arrested for extortion
text = data['text'].copy()
text.head(10)
0 Saurav Kant, an alumnus of upGrad and IIIT-B's... 1 Kunal Shah's credit card bill payment platform... 2 New Zealand defeated India by 8 wickets in the... 3 With Aegon Life iTerm Insurance plan, customer... 4 Speaking about the sexual harassment allegatio... 5 Pakistani singer Rahat Fateh Ali Khan has deni... 6 India recorded their lowest ODI total in New Z... 7 Weeks after ex-CBI Director Alok Verma told th... 8 Andhra Pradesh CM N Chandrababu Naidu has said... 9 Congress candidate Shafia Zubair won the Ramga... Name: text, dtype: object
for t in text:
print('Summary:')
print(summarize(t, ratio=0.5))
Summary:
upGrad's Online Power Learning has powered 3 lakh+ careers.
Summary:
Users get one CRED coin per rupee of bill paid, which can be used to avail rewards from brands like Ixigo, BookMyShow, UberEats, Cult.Fit and more.
Summary:
The match witnessed India getting all out for 92, their seventh lowest total in ODI cricket history.
Summary:
Also, customers have options to insure against Critical Illnesses, Disability and Accidental Death Benefit Rider with a life cover up to the age of 80 years.
Summary:
Speaking about the sexual harassment allegations against Rajkumar Hirani, Sonam Kapoor said, "I've known Hirani for many years...What if it's not true, the [#MeToo] movement will get derailed." "In the #MeToo movement, I always believe a woman.
Summary:
Pakistani singer Rahat Fateh Ali Khan has denied receiving any notice from the Enforcement Directorate over allegedly smuggling foreign currency out of India.
Summary:
India's previous lowest ODI total in New Zealand was 108.
Summary:
Weeks after ex-CBI Director Alok Verma told the Department of Personnel and Training to consider him retired, the Home Ministry asked him to join work on the last day of his fixed tenure as Director on Thursday.
Summary:
Andhra Pradesh CM N Chandrababu Naidu has said, "When I met then US President Bill Clinton, I addressed him as Mr Clinton, not as 'sir'.
Summary:
Congress candidate Shafia Zubair won the Ramgarh Assembly seat in Rajasthan, by defeating BJP's Sukhwant Singh with a margin of 12,228 votes in the bypoll.
Summary:
Two minor cousins in Uttar Pradesh's Gorakhpur were allegedly repeatedly burnt with tongs and forced to eat human excreta by their family for being friends with two boys from the same school.
Summary:
Isha Ghosh, an 81-year-old member of Bharat Scouts and Guides (BSG), has been imparting physical and mental training to schoolchildren in Jharkhand for several decades.
Summary:
Urging saints and seers at the Kumbh Mela to quit smoking, Yoga guru Ramdev said, "We follow Ram and Krishna who never smoked in their life then why should we?" Making them take a pledge to quit tobacco, he collected chillum (clay pipe) from several sadhus.
Summary:
Former stripper and regional sales director of a pharmaceutical company, Sunrise Lee, gave a doctor a lap dance in a nightclub to persuade him to prescribe an addictive fentanyl spray in 2012, the company's sales representative told a US court.
Summary:
"It was a very emotional affair for everyone in my family," said Isha.
Summary:
Louis Vuitton owner LVMH, which makes high-end beverages like Moët & Chandon champagne and Hennessy cognac, said it's stockpiling four months' worth of wine and spirits in UK in preparation for Brexit.
Summary:
Filmmaker Karan Johar and actress Tabu turned showstoppers for Gaurav Gupta on the opening night of Lakmé Fashion Week Summer/ Resort 2019.
Summary:
Summary:
Summary:
Union Minister Dharmendra Pradhan on Wednesday claimed the illegal mining mafia in Odisha operates under the control of CM Naveen Patnaik and state Congress chief Niranjan Patnaik.
Summary:
Summary:
It'll also pursue activities for sustained human space flight missions, ISRO added.
Summary:
At least 12 people have been killed and 170 others have been injured in Saudi Arabia this week due to flooding from heavy rain.
Summary:
Reliance Industries' Chairman Mukesh Ambani's daughter Isha Ambani has featured on the cover of the February edition of Vogue India.
Summary:
The US had in November granted a six-month waiver to India from sanctions against Iran and restricted the country's monthly intake of Iranian oil to 3,00,000 barrels per day.
Summary:
Ambrose ended with first-innings figures of 18-9-25-7.
Summary:
The names will appear on zoo's 'roach board' on February 14.
Summary:
Rohit scored 7,799 runs in his first 199 ODIs at an average of 48.14.
Summary:
Notably, Shubman was named Player of the Under-19 World Cup in New Zealand last year.
Summary:
Investigators searching for a lost plane carrying Argentine forward Emiliano Sala found two seat cushions on French coast that "likely" belonged to the aircraft.
Summary:
Italian third division football side Lucchese's head coach Giancarlo Favarin has been banned for five months for headbutting Alessandria's assistant coach Gaetano Mancino during a brawl following the teams' 2-2 draw on Sunday.
Summary:
Cyclists taking part in National Track Cycling Championship in Jaipur opted to sleep on the floor inside the stadium instead of hotels over expensive cycles.
Summary:
Silvia Grecco, a 56-year-old Brazilian mother narrates her local football team Palmeiras' matches live to her 12-year-old blind and autistic son Nickollas from the stands.
Summary:
A TechCrunch report has claimed that IndiaâÂÂs largest bank SBI secured a passwordless server "overnight" on being alerted it allowed anyone to access phone numbers, bank balances, and transactions of millions of its customers.
Summary:
Rahul Gandhi has replied to Goa CM Manohar Parrikar's letter, which accused the Congress President of using his "visit to an ailing man for political gains".
Summary:
Twenty-seven-year-old Mohammed Mahuwala was arrested in Indore on Wednesday for allegedly cheating e-commerce giant Amazon of nearly â¹30 lakh.
Mahuwala was a member of a gang who ordered costly gadgets from Amazon.
Summary:
AgustaWestland chopper scam co-accused Rajiv Saxena was extradited to India from UAE on Wednesday.
Summary:
Afghan President Ashraf Ghani has said the "keys to war" are in Pakistan's Islamabad, Quetta and Rawalpindi, accusing the country of providing safe havens to militants, including those belonging to the Taliban.
Summary:
A Singapore-based insurance agent has been jailed for two years and five months for threatening to harm his clients unless they paid him in bitcoins.
Summary:
"I absolutely refuse to lose them (AirPods)...So I made earrings," she explained.
Summary:
Adding that she hasn't been given a copy of the independent probe report, Kochhar said none of ICICI's credit decisions are unilateral
Summary:
Swedish multinational fast-fashion brand Hennes & Mauritz AB (H&M) has hired Christopher Wylie, the whistleblower who exposed Facebook's Cambridge Analytica data scandal.
Summary:
Micro-blogging platform Twitter is testing a new feature on Android to put news on the top of a user's timeline.
Summary:
Samsung has started mass producing its one terabyte 'embedded Universal Flash Storage (eUFS) 2.1' technology for "use in next-generation mobile applications", which it claims is the industry's first such eUFS.
Summary:
Prime Minister Narendra Modi on Wednesday said the people with 'negative mindset' are questioning him and his government for floating pro-poor schemes.
Summary:
Union Minister Anantkumar Hegde took a dig at Congress President Rahul Gandhi by calling him a "hybrid specimen" who has no clue about religion.
He added such "hybrid specimen" cannot be found in any laboratory in the world.
Summary:
Several parts of the US are set to experience record low temperatures as the polar vortex hit the Upper Midwest, with more than 200 million people expected to experience below-freezing temperatures this week.
Summary:
The police on Wednesday registered cases against 13 persons, including a woman leader of Hindu Mahasabha, in Aligarh for firing at an effigy of Mahatma Gandhi with an air pistol.
Summary:
Railway police has rescued a woman travelling on a train in Chennai who got her leg stuck inside the commode of a toilet.
Summary:
The US on Tuesday began returning asylum seekers to Mexico, sending back a migrant from a Central American nation and called the move a "response to the illegal migration crisis" faced by it.
Summary:
Former Finance Minister Yashwant Sinha on Tuesday demanded a probe into the alleged diversion of loans worth â¹31,000 crore by Dewan Housing Finance (DHFL).
Summary:
Boeing retained its position as the world's largest planemaker for the seventh straight year, delivering 806 aircraft in 2018.
Summary:
Summary:
Further, its OnePlus 6 emerged as the highest selling premium smartphone of 2018 followed by OnePlus 6T.
Summary:
Filmmaker Pooja Bhatt, while talking about the presentation of women in her films, said, "I can never look at a female body, even if it's naked, in a vulgar manner." "Our audience can say...the women in my films are bold or sensual, but never ever vulgar," she added.
Summary:
Actress Mishti, who has featured in 'Manikarnika: The Queen of Jhansi', has said the film's co-director Kangana Ranaut made false promises to the cast.
Summary:
The high-powered committee led by PM Narendra Modi to select the next CBI Director will meet again on February 1, Congress leader Mallikarjun Kharge has said.
Summary:
Nevada State Athletic Commission has banned MMA fighters Conor McGregor and Khabib Nurmagomedov for six months and nine months respectively over their roles in the mass brawl that occurred after their fight at UFC 229 last October.
Summary:
Pakistan captain Sarfaraz Ahmed, who has been banned for four matches over racist remarks, took an apparent dig at his critics by sharing a video of a child reciting 'log hai na' poem on Twitter.
Summary:
Sreesanth further said the bookie tried dragging him into spot-fixing but he didn't fall for it.
Summary:
The Finance Ministry on Wednesday said the government will present an Interim Budget on February 1.
Summary:
US President Donald Trump on Wednesday called his country's top intelligence chiefs "naive" and "wrong" on Iran and added that they should perhaps "go back to school".
Summary:
A senior priest at the Vatican who handled cases of sexual abuse has quit after being accused of sexual abuse by a former nun.
Summary:
A 22-year-old writer turned down a job offer, claiming she was bullied to the point of tears during her two-hour interview by a UK company's CEO.
Summary:
Noida Police has arrested Sector 20 station in-charge Manoj Pant and three journalists for allegedly extorting money from a call centre owner for removing his name from an FIR.
Summary:
Airtel Africa, the holding company for Airtel's operations in 14 African countries, is preparing for an initial public offering.
Summary:
Actor Shreyas Talpade said that 'Golmaal' filmmaker Rohit Shetty is still working on the script for the fifth instalment of the 'Golmaal' film franchise.
Once he's done with the...scripting, he'll take a call,â the actor added.
Summary:
A 72-year-old man named Terry Sanderson has sued 'Avengers' actress Gwyneth Paltrow for allegedly crashing into him while skiing, and is seeking $3.1 million (over â¹22 crore) in damages.
Summary:
Yami Gautam was felicitated by Border Security Force (BSF) in Amritsar for her performance in 'Uri: The Surgical Strike'.
Summary:
Social media giant Facebook has hired privacy critic Nate Cardozo, formerly the top legal counsel for US privacy watchdog EFF, as a privacy policy manager for WhatsApp. Cardozo had called Facebook a "faceless corporation" whose business model depends on user's confusion and indifference about privacy, in October 2015.
Summary:
"WeâÂÂve decided to go back to (iPhone prices) more commensurate with...local prices...a year ago," Cook added.
Summary:
"The majority of fatalities from shark bites is due to blood loss...shock from blood loss," a scientist said.
Summary:
BJP National Secretary Rahul Sinha on Wednesday asked the party workers in West Bengal to come armed with sticks to PM Narendra Modi's rally in the state on February 2.
Summary:
BJP President Amit Shah on Wednesday took a dig at the Opposition parties saying that the 'mahagathbandhan' for the Opposition is 4B - "Bua-Bhatija-Bhai-Behen".
Summary:
Volkswagen's sales, including its MAN and Scania heavy trucks and buses, rose 0.9% to 10.83 million in 2018, the company had said.
Summary:
Ousted Nissan Chairman Carlos Ghosn has said his arrest over alleged financial misconduct was led by "plot and treason" by the Japanese carmaker's executives who opposed its deeper integration with Renault and Mitsubishi.
Summary:
The government has cut down customs duty on import of parts and components for electric vehicles to 10-15%, down from the previous 15-30%.
Summary:
Government officials on Wednesday said that a swine flu outbreak has killed 76 people this year in Rajasthan.
Summary:
"North Korean leaders view nuclear arms as critical to regime survival," he added.
Summary:
Further, three aircraft have been temporarily grounded to carry out an engine normalisation exercise, it added.
Summary:
Retired Justice Srikrishna's enquiry panel has found that ex-CEO Chanda Kochhar violated ICICI Bank's code of conduct.
Summary:
Ex-India cricketer Jacob Martin has been shifted to general ward from the ICU after being on a ventilator for nearly a month following a road accident, wherein he severely injured his lungs.
Summary:
Tanya accused Perera of meeting country's Sports Minister to secure his place in the team.
Summary:
Goa CM and ex-Defence Minister Manohar Parrikar has written a letter to Congress President Rahul Gandhi over his claim that Parrikar told him he has nothing to do with new Rafale deal.
Summary:
PM Modi then asked his officers to urgently arrange for an ambulance for the cameraman.
Summary:
A couple got divorced minutes after their wedding ceremony got over in Gujarat's Gondal as a disagreement broke out and relatives from both sides started throwing dishes at each other during lunch.
Summary:
Gujarat Education Minister Bhupendrasinh Chudasma has written a congratulatory message to a yoga ashram run by rape-convict Asaram's organisation for observing February 14 as "Matru-Pitru Pujan Divas" (Mother-Father worship day).
Summary:
Venezuelan President Nicolás Maduro has claimed that his American counterpart Donald Trump ordered the Colombian government and the Colombian mafia to kill him.
Summary:
The richest among them is Hong Kong's Li Ka Shing with a net worth of $30.5 billion.
Summary:
Tamil Nadu food safety officials on Wednesday raided and seized 1,000 kgs of banned plastic items from Hotel Saravana Bhavan in Chennai's Vadapalani.
Summary:
Actress Shamita Shetty was verbally abused and her driver was slapped in an incident of road rage in Mumbai on Tuesday, as per reports.
Summary:
Actress Vaani Kapoor said that trolling has become a norm on social media, adding, "There's no one who hasn't got trolled on social media." "Everybody is out there to pull the other person down but it'll only bother [you] if you let it bother you," Vaani added.
Summary:
Actress Sushmita Sen took to Instagram to share a joke on the subject of marriage.
"This is an insult to [the] beauty of marriage," an Instagram user commented on her post.
Summary:
Television actor Karanvir Bohra, who flew to Russia on Tuesday to attend a film festival, has been detained in Moscow due to passport damage.
Summary:
While speaking about winning awards for his films, Shah Rukh Khan said, "If I don't get an award, that award is at a loss." "Sometimes, the prestige of an award increases when I receive it," the actor jokingly added.
Summary:
Actress Patralekhaa will make her debut in the Kannada film industry with the action-comedy film 'Where is my Kannadaka?' "I can definitely say that itâÂÂs a kind of role that I havenâÂÂt portrayed on screen so far and that makes it special for me," the actress said in a statement.
Summary:
Gmail on Tuesday faced a global outage, which also affected India, wherein certain users complained they faced a '404 error' message while trying to sign-in to their accounts.
The error message read: "The requested URL was not found on this server.
Summary:
Shiv Sena chief Uddhav Thackeray has asked the BJP to decide about the alliance with the Sena within 15 days and said the BJP should make a concrete proposal on the alliance.
Summary:
He said the Opposition is thinking about leading the country but does not have a leader.
Summary:
He added decisions like demonetisation and RERA have put a check on black money that used to be "parked in the real estate sector".
Summary:
German multinational engineering and electronics firm Bosch has made its first investment in India in Bengaluru-based deep-tech startup SimYog. SimYog has raised about â¹6.3 crore in the funding round, with participation from early-stage venture capital firm Ideaspring Capital.
Summary:
Mumbai-headquartered talent technology startup Shortlist has raised $2 million in a Series A round of funding.
Summary:
MIT engineers have developed a jelly-like ingestible pill that expands inside the stomach and can be used to monitor conditions like cancers and ulcers for up to a month.
Summary:
New York's Columbia University neuro-engineers claim to have developed a system that can convert human brain signals directly into speech using artificial intelligence.
Summary:
"Flowing water can generate hundred times more power than wind of same velocity," Saini added.
Summary:
Only about a quarter of New York City's 472 subway stations have elevators, making the rest inaccessible to people in wheelchairs and parents carrying prams.
Summary:
The fall in profit came amid increased expenses which stood at â¹1.6 lakh crore and rise in foreign exchange loss.
Summary:
Speaking about the incident when her private pictures were leaked online, actress Hansika Motwani said, "Certain people [said] since I anyway did bikini shoots...what's the big deal if such pictures are leaked?" "When I do...bikini shoot, I'm doing it out of my own choice.
Summary:
Pakistan captain Sarfaraz Ahmed has said that former fast bowler Shoaib Akhtar was not criticising but personally attacking him over the four-match ban handed to him by the ICC over his 'Abey Kaale' remark on South Africa's Andile Phehlukwayo.
Summary:
Apple's overall revenue fell 4.5% to $84.3 billion during the quarter while profit fell slightly to $19.97 billion.
Summary:
After Congress President Rahul Gandhi's recent poll promises like Minimum Income Guarantee and women's reservation, scholar and activist Madhu Kishwar tweeted, "Wait till Rahul Gandhi also promises free sex for every adult male for a certain number of days every year!" Several people criticised her for the remark, with one saying, "I can't believe you have written it.
Summary:
Summary:
BJP MLA Surendra Singh on Wednesday compared Congress President Rahul Gandhi and his sister, Priyanka Gandhi, to 'Ravana' and 'Surpanakha' from Ramayana.
Summary:
All India Anna Dravida Munnetra Kazhagam (AIADMK) has told party leaders who want to contest the upcoming Lok Sabha polls to pay â¹25,000 while submitting their application forms.
Summary:
A special CBI court in Guwahati has awarded life sentence to National Democratic Front of Bodoland founder and chief Ranjan Daimary and nine others in connection with the 2008 Assam serial blasts, which killed 88 people.
Summary:
Summary:
Wayanad District Congress Committee member OM George has been booked for allegedly sexually assaulting a minor tribal girl for one and a half years in Kerala.
Summary:
Goa CM Manohar Parrikar, who is also the state Finance Minister, presented the annual budget in the state Assembly on Wednesday with a tube in his nose.
Summary:
The Delhi Police has registered an FIR against SpiceJet Chairman and MD Ajay Singh and seven other directors in a cheating case.
Summary:
Don't want her getting any creative ideas....!" Reacting to his tweet, a user commented, "Doesn't the wife roast the husband daily?"
Summary:
Deepika Padukone has taken over as chairperson of Mumbai Academy of Moving Image (MAMI), replacing filmmaker Kiran Rao, who served as chairperson for four years.
Summary:
A 14-year-old US boy's mother claims he found Apple's Group FaceTime call bug over a week before it went viral while setting up call to play Fortnite with his friends.
Summary:
Facebook has been paying some users up to $20 a month since 2016 to install VPN app 'Facebook Research' to access their private data, according to a TechCrunch report.
Summary:
The state government on Tuesday ordered all Commissioners and District Collectors to put on hold disbursement of pension for MISA detainees from February onwards.
Summary:
Summary:
Uttar Pradesh minister Om Prakash Rajbhar on Wednesday took a dig at the state cabinet ministers who had gone to take a holy dip in the Sangam, saying that they were washing off their sins in the river.
Summary:
After Congress leader Shashi Tharoor took a jibe at UP CM Yogi Adityanath's holy dip in the Ganga, BJP spokesman Nalin Kohli said, "This is very unfortunate." Nalin added, "An extremely educated and respected person like Tharoor always comes up with such kind of comments related to practices of the Hindu religion...
Summary:
The state energy department, led by Gujarat's Energy Minister Saurabh Patel, is working on creating a policy to provide required infrastructure to mass-run electric vehicles.
Summary:
NASA's OSIRIS-REx spacecraft has sent the most detailed images of asteroid Bennu, which has a one-in-2,700 chance of hitting Earth in the next century as per NASA.
Summary:
Congress President Rahul Gandhi also paid his tribute to Mahatma Gandhi.
Summary:
Venezuela has barred Juan Guaidó, who declared himself the interim President, from leaving the country and froze his bank accounts.
Summary:
At least two people were killed and four others were injured on Wednesday after a grenade was thrown into a mosque in Zamboanga, Philippines, authorities said.
Summary:
A serial killer in Canada has pleaded guilty to killing eight men, most of whom were linked to Toronto's Gay Village neighbourhood.
Summary:
The Supreme Court on Wednesday asked Karti Chidambaram to deposit â¹10 crore with the court registry as a precondition to his travelling abroad in February and March.
Summary:
Pakistani singer Rahat Fateh Ali Khan has been issued a show cause notice by the Enforcement Directorate (ED) for allegedly smuggling illegal foreign currency out of India for three years.
Summary:
Arka Patra, a 30-year-old groom from West Bengal, arrived for his wedding ceremony in a road roller on Sunday.
Patra said his wife also agreed to his idea when he had discussed it with her.
Summary:
Actress Mishti, who has featured in 'Manikarnika: The Queen of Jhansi', has said she's really upset about some of her scenes being removed from the film.
"[From] a selfish perspective, as an artiste I think my character has turned into a caricature," said Mishti.
Summary:
Actor Kartik Aaryan, while speaking about the tweet in which he shared a 'backfie' taken by Imtiaz Ali showing PM Narendra Modi from behind, said, "We were...worried [it would backfire]." "We were calling ourselves losers but agar wo galat le liya hota toh backfire ho jata," he added.
Summary:
Shraddha Kapoor has been criticised over cultural appropriation for wearing a Native American headdress in a shoot by Dabboo Ratnani.
Summary:
Summary:
MP CM Kamal Nath has ordered the reinstatement of a government school teacher suspended for an objectionable online post on Congress President Rahul Gandhi.
Summary:
Summary:
"You want to keep the Ganga clean and also wash your sins in it.
Jai Ganga Maiya ki," Tharoor's caption on the picture read.
Summary:
Three women were arrested on Tuesday in connection with the poisoning of prasad at a temple in Chikkaballapur district, Karnataka.
Summary:
The report claimed communal clashes "could alienate Indian Muslims and allow Islamist terrorist groups in India to expand their influence."
Summary:
Padma Vibhushan awardee and retired non-executive chairman of L&T Group, Anil Manibhai Naik, received at least â¹19 crore after encashing his accumulated leaves of over 50 years.
Summary:
A video of a mother removing black jacket of her three-year-old child on orders of security personnel before entering an event addressed by CM Sarbananda Sonowal in Assam has surfaced online.
Summary:
The woman took the toddler to her home after lying to his sister that someone was calling her inside the house.
Summary:
A 53-year-old priest in Namakkal Anjaneyar temple in Tamil Nadu died after he slipped and fell down from an 11-foot-high platform after garlanding 18-foot-high Lord Anjaneyar statue, officials said.
Summary:
The Madhya Pradesh government will open 1,000 cow shelters to provide shelter to one lakh cows by May, a senior official revealed.
Summary:
The only two non-government members of National Statistical Commission (NSC), including its acting chief PC Mohanan, have resigned and cited government withholding the release of employment survey data for 2017-18 as one of the reasons.
Summary:
The singer was accompanied by her husband Nikhil Bhatia, who survived the accident.
Summary:
Summary:
Founded in 2014 by Vivek Garipalli and Kris Gale, the startup has raised a total of $925 million in funding.
Summary:
German luxury carmaker Porsche has revealed its all-electric Taycan will feature an 800-volt battery that has fast-charging rates of up to 350 kilowatts.
Summary:
Founded in 2018, the Bengaluru-based startup offers a learning environment for developers.
Summary:
NASA's Curiosity rover has shared its last selfie clicked on Mars' Vera Rubin Ridge, which was its home for over a year.
Summary:
Cash-strapped carrier Jet Airways cancelled 15 flights on Wednesday after grounding six Boeing 737 planes over non-payment of lease rentals.
Summary:
A 25-year-old man named Saif Ali Sharafat Ali was allegedly killed by the two brothers of his girlfriend in Mumbai on Tuesday.
Summary:
Onasanya was found texting and speeding in an incident last year.
Summary:
Two thieves in Texas, US, took back a flat-screen television inside a house after it did not fit in the vehicle that they had stolen.
Summary:
A bank employee in Brazil went to work dressed in a Spider-Man costume on his last working day, pictures and videos of whom have gone viral on the internet.
Summary:
Actress Alia Bhatt has reportedly bought a 2,300-square feet apartment for â¹13.11 crore on the first floor of a posh building in Mumbai's Juhu.
Summary:
Of the 19 sailors who started out last July, only five were still in the race on Tuesday.
Summary:
Everywhere, we try our best to give something to the people back home...There is nothing else that can bring such a smile on their faces," Rashid added.
Summary:
Sarfaraz was called back from South Africa by Pakistan Cricket Board after being banned by the ICC.
Summary:
A bee attack forced officials to stop play for around 15 minutes during fourth India A-England Lions one-day at Greenfield International Stadium in Thiruvananthapuram on Tuesday.
Summary:
US' National Security Advisor John Bolton was photographed with a notepad that had "5,000 troops to Colombia" written on it, as he talked to reporters about neighbouring Venezuela.
Summary:
I did brighten their day," Robert said when asked about his climb.
He holds the Guinness World Record for 'most buildings climbed', having scaled over 120 structures.
Summary:
Ruias made a â¹54,389-crore offer on the day the Committee of Creditors approved ArcelorMittal's â¹42,000-crore resolution plan.
Summary:
While speaking about the work of Urdu poet Mirza Ghalib, veteran lyricist-screenwriter Javed Akhtar said, "[The] language and depth used in his work could have only found meaning in India." "His work wouldn't have been nurtured and preserved if not for this country," the lyricist added.
Summary:
It is further considering revealing identities of users who make public posts, the report added.
Summary:
AAP will again file the affidavits in 2020 elections detailing the assets, the party said.
Summary:
Nationalist Congress Party (NCP) chief Sharad Pawar on Tuesday said there's no need to think about the prime ministerial candidate of the proposed grand alliance of opposition parties before 2019 polls.
He further said BJP had failed to keep its promises.
Summary:
The actor-politician also inaugurated various projects at the Mathura Junction.
Summary:
BJP leader Sitaram Adivasi, a first-time MLA from Vijaypur constituency in Madhya Pradesh, is being weighed against coins by his supporters to make a concrete house.
Summary:
However, his resignation was rejected by Punjab AAP last week.
Summary:
Flipkart CEO Kalyan Krishnamurthy reportedly opposed the February 1 deadline of the revised FDI norms on e-commerce saying the regulations could cause "significant customer disruption" if the deadline wasn't extended.
Summary:
Researchers have found geological evidence for a palaeo-tsunami in northern Arabian Sea, believed to have taken place in 1008 AD, in the coastlines of Kachchh.
Summary:
The US has been ranked 22, dropping out of top 20 on the index for the first time since 2011.
Summary:
Uttar Pradesh government has asked officials to barcode stray cows and set up temporary cow shelters at unused government buildings.
Summary:
Ahmedabad-headquartered Lambda Therapeutic Research on Tuesday announced the acquisition of US-based Novum Pharmaceutical Research Services.
Summary:
The Income Tax Department on Tuesday said it has confiscated assets worth â¹6,900 crore so far under the anti-benami transactions law.
Summary:
The net interest income rose 16.6% to â¹4,744 crore compared to â¹4,068 crore in the same period a year ago.
Summary:
Conclusion of cases under the bankruptcy law by the NCLT within 180-270 days mandated by law can release up to â¹67,000 crore to lenders, rating agency ICRA said.
Summary:
Dewan Housing Finance (DHFL) shares fell as much as 11% on Tuesday following a media report that alleged over â¹31,000-crore fraud by its controlling shareholders, the Wadhawans.
Summary:
The number of aircraft grounded by the carrier due to rental payment issues now stand at six, reports added.
Summary:
While signing autographs for fans following his Australian Open 2019 victory, world number one men's tennis player Novak Djokovic approached a fan who had climbed a partition to get close to him.
Summary:
Brisbane Heat wicketkeeper Jimmy Peirson slammed a six off Hobart Hurricanes' James Faulkner which ended up hitting a spectator on his face.
Summary:
Former world number one men's tennis player Andy Murray underwent a hip resurfacing surgery in London on Monday.
Summary:
The ceremony marks the event when the troops ceased fighting, sheathed their arms and returned to the camps at the sounding of the Retreat.
Summary:
The cabinet meeting at Kumbh Mela was the first by UP CM Yogi outside Lucknow.
Summary:
Accenture's SynOps system suggests ways to streamline and automate processes in areas such as finance and accounting, marketing and procurement.
Summary:
Actors Manoj Joshi and Prashant Narayanan have also been roped in for the biopic, the film's makers announced.
Summary:
Actor Rajkummar Rao has said that he finds it "overwhelming" to be compared to Ranbir Kapoor and Ranveer Singh.
Summary:
The Income Tax Department issued an attachment order in February 2018, stating that the property was held by the company 'Deja Vu Farms', further naming Shah Rukh as a beneficiary.
Summary:
Nana Patekar's mother Nirmala Patekar passed away on Tuesday morning, aged 99.
Summary:
The film will reportedly be directed by Karan Kashyap and produced by filmmaker Nitin Manmohan's daughter Prachi.
Summary:
Balaji was recently transferred from Delhi Anti-Corruption Branch to Ghaziabad CBI Academy.
Summary:
After India registered a 3-0 lead over New Zealand, Harbhajan Singh said, " [N]o team can stand in front of our team.
Summary:
Australia's wicketkeeper-batswoman Alyssa Healy has said that the Australian team needs to be wary of India's women's T20I team captain Harmanpreet Kaur at the ICC Women's T20 World Cup next year.
Summary:
England cricketer Tom Curran praised Indian captain Virat Kohli, saying, "He's an unbelievable player." Curran on being asked about his plans to dismiss the Indian captain at the next T20 World Cup, said, "Hopefully not with a no-ball!
Summary:
Rio Olympics gold-winner Carolina Marin is set to undergo knee surgery after having withdrawn from the final of the Indonesia Masters while playing against India's Saina Nehwal.
Summary:
Amazon-owned video platform Twitch streamer 'JesseDStreams' fell asleep for about three hours while live streaming on the platform and woke up to over 200 viewers and multiple money donations.
Summary:
The Bill seeks 33% reservation of seats for women in Lok Sabha and all legislative assemblies.
Summary:
TMC chief Mamata Banerjee will take final call on ticket distributions, official added.
Summary:
Talking about Priyanka Gandhi's entry into politics, BJP President Amit Shah on Tuesday said that with the entry of a third 'G', Congress will indulge in more corruption.
Shah was referring to the 2G spectrum scam under the erstwhile Congress-led Centre.
Summary:
US-based wellness startup Hims has become a unicorn after it raised $100 million in a venture-funding round with a pre-money valuation of $1 billion, as confirmed by TechCrunch.
Summary:
Arctic Canada glaciers have retreated to reveal landscapes, which were continuously covered with ice for over 40,000 years, as per Colorado University Boulder researchers.
Summary:
A man allegedly stabbed his wife to death in her office on Tuesday in Thane's Bhayander, police said.
Summary:
Proceeds from purchases of Venezuelan oil by US entities would flow into blocked accounts and be released only to the legitimate leaders of Venezuela, the US said.
Summary:
At least five people were killed and around 25 others were injured when gunmen attacked a police station in Pakistan's Balochistan on Tuesday.
Summary:
The two promoter groups of Yes Bank, led by Rana Kapoor and Madhu Kapur, have agreed to nominate one representative director each on the bank's board.
Summary:
Private lender Axis Bank on Tuesday reported 131% year-on-year rise in its profit at â¹1,681 crore for the December quarter, beating estimates.
Summary:
A video of 64-year-old actress Rekha has gone viral, which shows her moving to another place on realising she was posing for the photographers in front of 76-year-old actor Amitabh Bachchan's photo.
Summary:
nAfter a man commented 'too old' on 46-year-old actress Lisa Ray's picture, she responded to him by tweeting, "It's a blessing to be wise, a cancer survivor and living my best life at 46.â "Honestly not hurt, but adding 'too' to 'old' is a symptom of society's unrealistic expectations for women.
Summary:
On being asked why he plays "so many negative roles" on screen, Nawazuddin said negative characters used to exist in earlier films when the villains only had negative qualities.
Summary:
A recent tweet by Scientific American has been criticised by Indian users including Congress MP Shashi Tharoor for calling ancient technique of pranayama "cardiac coherence breathing".
Summary:
The doctor previously prescribed medical marijuana to the boy's father and his older brother, to treat similar conditions.
Summary:
A former Indian Air Force officer's son from Kerala has been sentenced to 10 years in jail and fined around â¹30 lakh in Saudi Arabia on charges of blasphemy.
Summary:
A US woman is recovering in a hospital after she was rescued from an elevator of a billionaire's townhouse in New York where she was stuck for three days.
Summary:
He smashed the car's window and pulled her out before giving CPR.
Summary:
Ex-Chief Economic Adviser Arvind Subramanian has proposed a Quasi-Universal Basic Rural Income of â¹18,000 annually to each rural household, except those that are "demonstrably well-off".
Summary:
The film is based on the Indian Army's 2016 surgical strike operation.
Summary:
Pakistani singer Shafqat Amanat Ali has said that he believes it's "high time" India lifts the ban that prevents Pakistani artistes from performing in the country.
Shafqat further said that he misses performing in India.
Summary:
Delhi's Patiala House Court on Tuesday issued summons to journalist Priya Ramani as an accused in the defamation case filed by former Union Minister MJ Akbar.
Summary:
Former Pakistan pacer Sarfraz Nawaz criticised the Pakistan Cricket Board for appointing Shoaib Malik as the team's stand-in captain after Sarfraz Ahmed was handed a four-match ban for his racial comments.
Summary:
Unlike others, Vault lets users join the network by downloading only a fraction of total transaction data, researchers said.
Summary:
An artificial intelligence (AI) clone of late Spanish artist Salvador Dali will welcome visitors to The Dali Museum in Florida, US.
Summary:
Apple revealed its App Store developers have earned $120 billion since the launch of the App Store in 2008.
Summary:
As per the guidelines, apps will have to clearly highlight the subscription rates and mention the exact duration of trial period and the amount charged at the end of it.
Summary:
Former Gujarat Chief Minister Shankersinh Vaghela joined the Nationalist Congress Party (NCP) on Tuesday in presence of party chief Sharad Pawar.
Summary:
BJP President Amit Shah on Tuesday claimed that every fifth person in West Bengal is poor and has no access to food.
He further alleged that one has to pay bribes to avail any service in Bengal.
Summary:
Retail chain Shoppers Stop has said it is seeking more clarity on whether the revised FDI norms in e-commerce could affect its stake sale to Amazon.
Summary:
The BHOG (Blissful Hygienic Offering to God) project, which mandates food safety licence for 'prasads' in temples, will be made compulsory in Kerala temples.
Summary:
Bihar Chief Minister Nitish Kumar on Tuesday broke down while speaking on the demise of former Defence Minister George Fernandes.
Summary:
A decapitated head of a man stuck between springs of a freight train's engine which travelled 110 km was found by the inspecting staff at Birur Junction in Karnataka's Chikkamagaluru district.
Summary:
A platoon of Indian Army on Monday joined the rescue operations to search the miners trapped inside a rat-hole mine in Meghalaya, officials said.
Summary:
Indian-origin activist Gina Miller has along with two other British lawmakers launched a new anti-Brexit campaign named 'Lead Not Leave'.
Summary:
Ten children who were kidnapped in Tanzania were found dead with their body parts mutilated, the authorities said on Monday.
Summary:
US President Donald Trump told White House visitors that his predecessor Barack Obama sat in the Oval Office's private dining room and "watched basketball all day", The Washington Post reported citing unnamed White House officials.
Summary:
Google India used the "Really Really Really" meme to ask followers on Twitter why they keep asking the Google Assistant to marry them.
Summary:
Ahead of 'Jan Akanksha Rally', Congress posters depicting party chief Rahul Gandhi as Lord Ram have come up in Bihar's Patna.
Summary:
This comes ahead of 2019 polls as the commission hopes to prevent negative media influence in the conduct of a fair election.
Summary:
A 2017 letter by investors to Uber Co-founder and then CEO Travis Kalanick has now become public, in which the investors told Kalanick they need a "trusted, experienced, and energetic new CEO." "The public perception is that Uber fundamentally lacks ethical and moral values," the investors had said.
Summary:
Summary:
Fernandes asked CocaâÂÂCola to transfer 60% of ownership in Indian operations and its formula to a local company.
Summary:
Her conviction was overturned by the top court last year, prompting protests by Islamists calling for her death.
Summary:
Endore-Kaiser added when he ordered using the gift card, a Starbucks barista told, "You still owe fifteen cents."
Summary:
Sanya Malhotra will play Vidya Balan's daughter in the upcoming biopic on mathematician Shakuntala Devi, as per reports.
Summary:
Actress Sonam Kapoor will star in the third instalment of filmmaker Vidhu Vinod Chopra's 'Munna Bhai' franchise, as per reports.
Summary:
Sonam Kapoor revealed that she planned her wedding with Anand Ahuja while shooting for her upcoming film 'Ek Ladki Ko Dekha Toh Aisa Laga', along with her father Anil Kapoor.
Summary:
Former Indian captain Sourav Ganguly said, "It has been complete domination and it's good to see them dominate at home and away as well." "The confidence has been great and it's quite impressive to see the bowlers get them out in 50 overs.
Summary:
Summary:
Pant and Deepak Hooda put on 120 for the fifth wicket to help India chase down the target of 222 runs.
Summary:
Huawei has, however, said the companies settled their dispute in 2017.
Summary:
However, Glow, Ovia and Clue apps claim they don't sell data to third parties, it added.
Summary:
Talking about Congress President Rahul Gandhi's Minimum Income Guarantee, BSP chief Mayawati on Tuesday said, âÂÂIs this promise also a fake one like âÂÂGaribi Hataoâ and current governmentâÂÂs promises on...achhe din?" "Both the Congress and the BJP have failed,â she added.
Summary:
Prime Minister Narendra Modi on Tuesday condoled the demise of former Defence Minister George Fernandes saying he resisted the Emergency tooth and nail.
Summary:
BJP MP Satish Gautam has demanded that the word 'Muslim' should be dropped from the name Aligarh Muslim University.
Summary:
Summary:
"Most political parties in the region were protesting against the bill in their own states...so we decided to come together," Sangma added.
Summary:
As per the lawsuit, Munchery employees weren't given legally required 60-day notice prior to the shutdown of the startup.
Summary:
It can be used to power wearable electronics and medical devices, they added.
Summary:
The Cabinet had earlier said that the bill wasn't applicable to the state.
Summary:
US President Donald Trump has said that former Starbucks CEO Howard Schultz doesn't have the "guts" to run for President.
His remarks came after Schultz announced that he was considering running for US President in 2020 as an independent candidate.
Summary:
Cash-strapped Jet Airways on Monday said it is seeking shareholders' approval for allowing lenders to have a say in the airline's operations by converting loans into shares.
Summary:
State Bank of India (SBI) will reportedly take at least 15% stake in cash-strapped Jet Airways as its lenders plan to convert some loans into equity.
Summary:
"Juhi called me up...when she got to know about my divorce with Reena," he added.
"Juhi somewhere knew I might not pick up her call, but still she called me.
Summary:
Fernandes had been charged with smuggling dynamite in an alleged plot to blow up railway tracks and government buildings in the case.
Summary:
India's Irfan Pathan is the only cricketer to take a hat-trick in a Test's first over, in the format's nearly 142-year-history featuring 2,343 matches.
Summary:
Rajkummar Rao, during his appearance on 'Koffee With Karan', revealed he had a "crush" on Aishwarya Rai Bachchan when he met her for the first time.
Summary:
The Windies-England Test that began on January 29, 1998, in Jamaica, is the only match in Test cricket's nearly 142-year history which was abandoned as drawn due to 'dangerous pitch'.
Summary:
A bug in Apple's video calling feature FaceTime has gone viral where audio can be heard on the caller's phone before the person on the other end has accepted or rejected the call.
Summary:
Congress President Rahul Gandhi on Tuesday held a meeting with Goa CM Manohar Parrikar at his office in Goa.
"This morning I visited Goa CM, Manohar Parrikar, to wish him a speedy recovery.
Summary:
Telangana's rebel Congress leader Uppu Hymavathi's husband Prabhakar went back to voters demanding them to return the money the couple distributed before elections.
Summary:
Addressing parents during 'Pariksha Pe Charcha 2.0', Prime Minister Narendra Modi said, "Do not expect your children to fulfil your unfulfilled dreams.
Summary:
The Income Tax department conducted raids at 74 locations in Chennai and Coimbatore in connection with a tax evasion probe against realty business holders and Saravana Stores.
Summary:
Suman Kumari has become the first Hindu woman to have been appointed as a civil judge in Pakistan after passing an examination for induction of judicial officers.
Summary:
A video of a girl who slipped from a third floor balcony in China's Yunlong County has surfaced online.
Summary:
As several parts of the US experience extreme cold weather conditions, US President Donald Trump claimed in a tweet we "need global waming" which should "come back fast".
What the hell is going on with Global Waming?" he tweeted.
Summary:
Confirming Amoudi's release, Ethiopian Prime Minister Abiy Ahmed said he raised the issue during a visit to Saudi last year.
Summary:
Actor Manoj Bajpayee, who was conferred with the Padma Shri award on Friday, said that he is happy as nobody has objected on him getting the award.
Summary:
Earlier, there were reports that Shah Rukh has opted out of the biopic for Farhan Akhtar's 'Don 3' and that Vicky Kaushal will replace him in the film.
Summary:
Kartik Aaryan, while talking about his struggling days and the audition process, revealed, "Shakal dekh ke baahar kar dete the, kuch bolne nahi dete the." "They will look at you and say, 'Unfit'.
Summary:
"India doesnâÂÂt need Muslim youth like Kasab, Yakub...Ishrat Jahan but...those who walk on path shown by Kalam," he further said.
Summary:
Smriti Mandhana and Mithali Raj scored unbeaten fifties, while Jhulan Goswami registered figures of 3/23 to help India take a 2-0 lead over New Zealand in the three-match ICC Women's Championship one-day international series.
Summary:
The T20 World Cup 2020 is set to be ICC's first tournament since World Cup 2011 to not feature an India-Pakistan group match.
Summary:
An Italian court directed Francesco Firano, owner of cryptocurrency exchange BitGrail, to repay cryptocurrency worth over â¹1,200 crore, which went 'missing' last year, as per a BitGrail victims advocacy group.
Summary:
Malaysia-based startup SalamWeb has created a new mobile and desktop browser which they claim is the "world's first Shariah certified web browser".
Summary:
Suheldev Bhartiya Samaj Party chief OP Rajbhar said that if BJP doesn't implement report on division of reservation to backward classes, then it will "give divorce" to the party.
Summary:
Edinburgh University's Roslin Institute researchers have genetically modified (GM) chickens to lay eggs that contain proteins that are used in drugs to treat some cancers and arthritis.
Summary:
Maharashtra received an assistance of â¹4,714.28 crore for being affected by drought during 2018-19.
Summary:
Addressing a summit at the Parmarth Niketan Camp in Kumbh Mela, Lok Sabha Speaker Sumitra Mahajan on Monday described child marriage as a dangerous burden on girls.
Summary:
The National Investigation Agency in Kolkata has arrested a 32-year-old suspected militant named Kadar Kazi in connection with the Burdwan blasts case.
Summary:
Honor View20 launched in India at a starting price of â¹37,999 and will be available for sale starting January 30 on Amazon.in and their official website hihonor.in.
Summary:
Summary:
'Simran' writer Apurva Asrani in a tweet said, "Kangana Ranaut's game is brutal.
Summary:
Waugh was talking about McCullum's favourite hobby outside of cricket, horse racing, when he uttered the word.
He's a lucky c***...lucky punter too," Waugh said.
Summary:
Following Hardik Pandya's return from suspension after his comments on women on 'Koffee with Karan', India captain Virat Kohli said that the controversy will help the 25-year-old all-rounder scale new heights in his career.
Summary:
In an apparent attack on Congress President Rahul Gandhi, Gujarat BJP chief Jitu Vaghani said, "He was born with commandos around his cradle...I'm not sure if commandos were there when he was being fed milk." Congress said his remark reflected BJP leaders' "low-level mentality".
Summary:
The head constable, Pramod Walke, was reportedly in an inebriated condition when the incident occurred.
Summary:
After six journalists were not allowed to enter the Republic Day function in Srinagar despite having entry passes, Editors Guild of India said, "It is shocking...This is an unprecedented state-sponsored attack on freedom of press." The police said the journalists were stopped after an "adverse" report was received from CID.
Summary:
After a Class 9 student's mother told him her son was avoiding studies due to online games and asked for a solution during 'Pariksha Pe Charcha 2.0', PM Narendra Modi responded, "Yeh PUBG wala hai kya?" "Explore ways...to...encourage your children towards...understanding technology.
Summary:
The Centre on Tuesday moved the Supreme Court to seek permission for lifting the status quo on non-disputed land around the disputed Ayodhya site and hand over the excess land to its original owners.
Summary:
Police said that according to CCTV footage, the accused, who was the son of the elderly couple's masseuse, stayed inside the house for almost 24 hours, during which he killed the couple.
Summary:
The accused, who has two sons, reportedly did not harm the girls and told his family they were his colleagues' children after taking them home.
Summary:
Aamir Khan, who took the full responsibility for the failure of his film 'Thugs of Hindostan', said, "I didn't give a flop film since a long time!
Summary:
Actress Kareena Kapoor Khan has said that her character 'Poo' in 2001 film 'Kabhi Khushi Kabhie Gham...' was way ahead of its time.
I don't think any Indian actor could think of doing it...I think 'Poo' is a character that can't be replaced.
Summary:
'Kanpur Dehaat' will be based on a true incident and Ayushmann will play a cop for the first time, reports suggested.
Summary:
Emraan Hashmi, who made his Bollywood debut in 2003 with multi-starrer 'Footpath', has said that it is easier to make solo lead films as there are no "flying egos" on the sets.
Summary:
Over 50 Aam Aadmi Party MLAs have refused to declare their assets and liabilities to Lokayukta on Monday.
Summary:
After a video of Congress leader Siddaramaiah 'misbehaving' with a party worker surfaced online, Minister of State Mahesh Sharma said, "It is one of the double-standards of the party." "On one hand they call themselves protectors of women rights and dignity while their leaders misbehave with women," he added.
Summary:
Summary:
Goa Congress President Girish Chodankar on Monday said party chief Rahul Gandhi will visit the Atal Setu bridge after he becomes Prime Minister.
Chodankar made the statement after BJP invited Rahul, who is vacationing in Goa, to visit the bridge.
Summary:
As many as 12 people, including three children, were killed on Monday after two cars had a head-on collision in Madhya Pradesh's Ujjain.
Summary:
The accused then killed them and threw their bodies in a nearby well, police said.
Summary:
No security personnel involved in the operation has been reported injured so far.
Summary:
West Bengal CM Mamata Banerjee on Monday called the National Register of Citizens (NRC) an "electoral gimmick".
Summary:
As many as 325 children were rescued as part of 'Operation Smile' in Hyderabad since 1 January, Commissioner of Police Anjani Kumar said on Monday.
Summary:
Users can place products after consumption in a 'Loop tote', which will then be collected, cleaned and reused.
Summary:
Former Defence Minister George Fernandes passed away on Tuesday in Delhi at the age of 88.
Summary:
Responding to a fan's request to wear saree in public, singer Chinmayi Sripaada said, "Groups of men...take photographs of my waist + side of my chest, circle it and upload it on soft porn websites." "I get messages on how they're masturbating to it," she said.
Summary:
Trevor, dubbed the world's loneliest duck, has died after being attacked by dogs on the remote Pacific island nation of Niue, a Facebook page dedicated to the duck said.
Summary:
Talking about her Australian Open triumph, world number one Naomi Osaka revealed she called her mother after giving interviews following her victory but she didn't even congratulate her.
Osaka is the first Asian tennis player to top the men's or women's rankings.
Summary:
Pandya took a diving catch and picked up two wickets against New Zealand on Monday.
Summary:
"Congratulations...okay...7 Australian Opens, 15 Grand Slams," the journalist said before Djokovic interrupted, saying, "Not too bad," in Italian accent.
Summary:
"If you respect the game, only then it will reward you," Kohli added.
Summary:
Passenger traffic at the airport rose to over 8.9 crore in 2018.
Summary:
His comment came after Shah said that for Congress party, OROP means 'only Rahul, only Priyanka'.
Summary:
Congress MP Mausam Noor on Monday joined the Trinamool Congress (TMC) in the presence of West Bengal CM Mamata Banerjee.
She further said she is confident that the TMC will win all 42 seats in Bengal in the upcoming polls.
Summary:
Aam Aadmi Party (AAP) leader Raghav Chadha on Monday claimed that several senior and veteran BJP members in South Delhi constituency were eager to join his party ahead of the 2019 polls.
Summary:
She allegedly committed suicide after a man whom she had befriended online didn't pick her calls following an argument, the police said.
Summary:
Chief Education Officer Jagmohan Soni from Uttarakhand's Almora was sacked from his position over allegations of corruption, hours after receiving the Chief Minister's award for excellence and good governance on Republic Day. The officer has been attached to the education directorate in Dehradun.
Summary:
State Cabinet minister Sidharth Nath Singh said the ministers will also watch the movie 'Uri: The Surgical Strike'.
Summary:
Summary:
It's never easy." Gavaskar further said, "He is a young man, he has had things that have happened and he just wants to forget it.
Summary:
The I-League organisers said on Monday that the fixture between Real Kashmir and Chennai City could not be telecast or live streamed due to 'adverse climatic conditions'.
Summary:
Summary:
American online file-sharing platform Dropbox has entered into an agreement to acquire electronic signature startup HelloSign for $230 million.
Summary:
Antibiotic-resistant genes (ARGs) linked to superbugs have been found in remote High Arctic region after first being detected over 12,000 kilometres away in India, nearly a decade ago.
Summary:
Speaking at a government program, West Bengal Chief Minister Mamata Banerjee said that she prefers to use "only Mamata" and not her surname.
Summary:
After a video of former Karnataka CM Siddaramaiah 'misbehaving' with a party worker, Jamalar, surfaced online, Siddaramaiah called it an accident and said the woman is like her sister.
"I tried to stop our party worker (Jamalar) from taking more time...I've known her for 15 years," he added.
Summary:
Former Finance Commission Chairman Vijay Kelkar has pitched for setting up 'Niti Aayog 2.0' for allocating capital and revenue grants to the states.
Summary:
Andhra Pradesh Chief Minister Chandrababu Naidu on Monday announced that his government will provide 100 units free power to Most Backward Classes (MBCs).
Summary:
The US and Taliban agreed in principle to the framework of a peace deal that seeks to end the 17-year war in Afghanistan, the US Special Representative for Afghanistan Reconciliation, Zalmay Khalilzad, said.
Summary:
Zee Entertainment shares on Monday rallied 17% after it denied links with large deposits made after demonetisation.
Summary:
Indian-American pharma entrepreneur John Kapoor will go on trial this week in US for bribing doctors with cash, dinners and strippers.
Summary:
Actress Sara Ali Khan has said that Congress leader Sushil Kumar Shinde's grandson Veer Pahariya is the only man she has dated in the past.
Summary:
Talking about 19-year-old batsman Shubman Gill, who was called up to India squad for the New Zealand series, India captain Virat Kohli said he is a "very exciting" talent.
Summary:
Former New Zealand fast bowler-turned-taxi driver Ewen Chatfield has retired from club cricket at the age of 68.
Summary:
He added it's a "conspiracy" to defame him before voters of his constituency.
Summary:
Congress President Rahul Gandhi during his visit to Chhattisgarh on Monday said that if voted to power in 2019, the Congress is committed to a Minimum Income Guarantee for every poor person to help eradicate poverty and hunger.
Summary:
Pakistan minister Fawad Chaudhry on Sunday said the country will try to resume peace talks with India only after the 2019 election results are out.
Summary:
A â¹10,000 reward on information on Patidar was announced by police.
Summary:
A groom and 25 family members trekked for over 6 kilometres in heavy snow on Friday to reach the wedding destination in Uttarakhand.
Summary:
An 18-month-old toddler on Monday died after falling from the escalator at a Bengaluru Metro station onto the main road 50-foot below, an official said.
Summary:
Mehta turned down the award citing its timing ahead of the 2019 general elections.
Summary:
An annual gender balance awards in the UAE has been criticised as they were received entirely by men.
Summary:
A three-year-old boy who survived two nights alone in the woods in US' North Carolina told police and his family that he was kept safe by a bear.
Summary:
WWE has released a video of Brock Lesnar throwing his WWE Universal title belt at the current Chairman and CEO of WWE, Vince McMahon, who was sitting backstage.
Summary:
Nepal had earlier lost the first ODI of the three-match series.
Summary:
Ronaldo, whose penalty was saved last week against Chievo, scored in his eighth consecutive away match to bring his league tally to 15 goals.
Summary:
Singapore's health ministry said details of 14,200 individuals, diagnosed with HIV, were "illegally disclosed online" by a US citizen.
Summary:
Paytm CEO Vijay Shekhar Sharma, denying reports of scaling down the startup's e-commerce unit Paytm Mall's B2C operations, said, there's "no truth" to these claims.
Summary:
This comes after the company's ousted Chairman Carlos Ghosn's arrest over allegations of under-reporting income.
Summary:
Mumbai-based work messaging service startup Flock's Founder Bhavin Turakhia while denying reports of selling the startup to America's Dropbox said, "There is no credence to the rumours".
Summary:
Burglars broke into a Punjab National Bank (PNB) branch in Tamil Nadu's Trichy district and escaped with jewellery worth over â¹5 crore, some cash and the CCTV footage.
Summary:
The Supreme Court has asked the Centre and Meghalaya government to continue operations to rescue the miners trapped in a rat-hole mine in Meghalaya since December 13.
Summary:
Amid reports that a full-fledged budget may be presented during the interim budget session, former Union Finance Minister Yashwant Sinha has said that doing so will be "unconstitutional".
Summary:
While hearing Karti Chidambaram's plea seeking permission to travel to France, Spain, Germany and the UK for tennis tournaments, the Supreme Court said, "No tennis for him if he evades [the Enforcement Directorate]." The apex court further directed the ED to fix a date for the interrogation.
Summary:
Starbucks' former CEO Howard Schultz has said he's "seriously thinking" of running for the US President.
Summary:
Onlookers watched as the suspect removed the painting from the wall and walked out of the gallery before the alarm went off.
Summary:
Nine militants were killed after the Taliban clashed with the security forces during the operation.
Summary:
At least three people were killed and 172 others were injured after a tornado hit the Cuban capital Havana.
Summary:
Summary:
Speaking at the Umang Police Show 2019, Ranbir Kapoor revealed a policeman once stopped his car and told him he's doing the wrong kind of films.
Summary:
Shami answered to Doull in English despite Virat Kohli being called to interpret.
Summary:
Williamson came down the track and flicked the ball near the midwicket, where Pandya flew to his left and plucked the catch.
Summary:
Maharashtra Navnirman Sena (MNS) president Raj Thackeray's son Amit Thackeray married his fiancée and fashion designer Mitali Borude in Mumbai on Sunday in a traditional Maharashtrian-style marriage ceremony.
Summary:
The BJP has decided to shift the venue of PM Narendra Modi's rally in West Bengal's North 24 Parganas' Thakurnagar to another nearby ground.
Summary:
American author Stephen King praised Tesla car's 'fart' app in a tweet saying, "I'm sort of liking the 'fart' app.
Summary:
In a video that has gone viral, former Karnataka CM Siddaramaiah was seen losing his cool and snatching a woman complainant's mic at a public meeting in Mysuru.
Summary:
The Bombay High Court has imposed a fine of â¹25 lakh on a Haryana woman who allegedly threatened to file fake molestation case against the court receiver and representatives of a Mumbai-based company.
Summary:
With the help of locals, the man removed the snake from the bike, the report added.
Summary:
The wedding of Varsha Sonawa and Vallabh Pancholi in Madhya Pradesh was cancelled after their families fought after the bride refused to cover her head.
Summary:
The accused who barged into the farmhouse had covered their faces, said the police.
Summary:
First-term US Democratic Senator Kamala Harris launched her 2020 presidential campaign on Sunday at a rally in her hometown Oakland.
Summary:
Saurashtra are aiming to win their maiden Ranji Trophy title while Vidarbha are the current defending champions.
Summary:
Australian team coach Justin Langer said that he had not been able to sleep much before the first Test against Sri Lanka as he kept imagining the situation where Australia would get beaten at the Gabba.
Summary:
Reacting to wrestler Brock Lesnar's photo from the Royal Rumble shared by the WWE Universe Twitter account, a user tweeted, "When you hit just your pinky toe against a nightstand in the dark.#RoyalRumble".
Summary:
Google may be working on a face scanning feature for its voice-enabled Assistant that would scan users' faces to provide personalised commands on camera-equipped devices, as per a report.
Summary:
Ford Fiesta, Volkswagen Golf, Nissan Qashqai and Ford Focus were reportedly among susceptible top-selling cars.
Summary:
They added BuzzFeed is paying PTO to fired employees in California, where it's required by law.
Summary:
Accusing Karnataka Congress MLAs of "crossing the line", state CM HD Kumaraswamy on Monday threatened to step down from his post.
Summary:
"But the government is thinking that if it makes a law...it'll be challenged in court," he added.
Summary:
After Karnataka Chief Minister HD Kumaraswamy threatened to step down as the CM, Congress leader Siddaramaiah said, "There is no trouble, I will speak to HD Kumaraswamy." "You (media) are the people who create trouble," he added.
Summary:
"While BJP's OROP is for jawans' families...Congress' OROP is for the Gandhi and Vadra family," he added.
Summary:
With the theme âÂÂEmpowering Rural Economy the Gandhian WayâÂÂ, Tripura has won the award for the best state tableau at the 70th Republic Day parade.
Summary:
Human rights lawyer Wang Quanzhang has been sentenced to four and a half years in prison in China for 'subversion of state power'.
Summary:
The death toll from the mine dam collapse in Brazil last week has risen to 58 and more than 300 others are still missing, authorities said.
Summary:
Tata Steel on Monday announced its subsidiary TS Global Holdings will sell majority stake in its South-East Asian operations NatSteel Holdings (NSH) and Tata Steel Thailand (TSTH) to China's HBIS Group for $327 million.
Summary:
India defeated New Zealand by 7 wickets in the third ODI today to take an unassailable 3-0 lead in the five-match series.
Summary:
An 81-year-old woman named Eileen Macken who grew up in a Dublin orphanage said she's not an orphan anymore after discovering her 103-year-old mother is alive after a 61-year-long search this month.
Summary:
Priya Prakash Varrier, who got famous after her wink in song 'Manikya Malaraya Poovi' became viral, has said she gets bored when people ask her to wink.
Summary:
'Manikarnika: The Queen of Jhansi' co-director Krish, while speaking about Kangana Ranaut's claim that she directed 70% of the film, said, "It's bulls**t." "In the first-half of Manikarnika, 20-25% film has been shot by Kangana, while in the second-half only 10% is shot by her," he claimed.
Summary:
Actress Esha Gupta has apologised on Twitter following criticism after she shared a screenshot of a chat with a friend, wherein the friend called Nigerian footballer Alexander Iwobi a gorilla.
Summary:
Speaking on Priyanka Gandhi's induction as the Congress' general secretary, Tharoor said she has the charisma to galvanise voters.
Summary:
He claimed Flipkart initially agreed to replace the product but didn't replace it.
Summary:
An Indian Air Force (IAF) Jaguar fighter plane on Monday crashed in Uttar Pradesh's Kushinagar.
The fighter plane crashed in a non-residential area of Kushinagar and no casuality has been reported.
Summary:
Gabbard was born in American Samoa to a Samoan-European father and a mother who is of European descent but practises Hinduism.
Summary:
"I have taken an appointment in April with Dr Müller-Wohlfahrt," Anil added.
Summary:
Summary:
Nick Jonas' parents, Denise Jonas and Paul Kevin Jonas Sr, threw a reception for him and Priyanka Chopra in the US on Sunday.
Summary:
The Indian duo of Virat Kohli and Rohit Sharma reached the joint third place in the list of most century stands in ODI cricket after going past the landmark in the 3rd India-New Zealand ODI.
Summary:
Barcelona regained their five-point lead at the top of the La Liga points table after Lionel Messi scored his 26th goal of the season to help his side register a 2-0 victory over 10-man Girona.
Summary:
The Rashtrapati Bhavan's Mughal Gardens will be open to public from February 6 to March 10, during the 2019 edition of Udyanotsav.
Summary:
Domestic online retailers like Snapdeal and ShopClues have opposed the extension of the February 1 deadline for implementation of revised FDI policy on e-commerce.
Summary:
E-Cell, IIT Roorkee is hosting its annual Entrepreneurship Summit 2019 on 2nd and 3rd February.
Summary:
The team shifted by Ola to Foodpanda has been shifted back to the ride-hailing startup, the report added.
Summary:
The National Green Tribunal (NGT) has asked the Railways to identify at least 36 model 'eco-smart stations' within two weeks.
Summary:
A case has been filed against Congress leader Mallikarjun Kharge for his remarks on Bharat Ratna being conferred to Assamese artiste Bhupen Hazarika.
Summary:
The bus was reportedly carrying over 50 students to school and overturned after hitting a culvert.
Summary:
Talking about Goa CM Manohar Parrikar's 'How's the josh' remark, state Congress chief Girish Chodankar said, "Pehle hosh me aao, baad me josh ki baat karo (First come to your senses, then talk about josh)." "The administration has collapsed...inauguration of the bridge isn't enough to bring josh," he added.
Summary:
The UP Police Special Task Force (STF) busted three gangs which provided fraud candidates who wrote the offline exams, officials said.
Summary:
India has replaced Japan as the world's second-largest steel producing country, according to a report by World Steel Association (worldsteel).
Summary:
Around 10,000 people took part in the 'red scarves' march in France on Sunday, chanting slogans like "yes to democracy, no to revolution" to condemn the violence in the 'yellow vest' protests.
Summary:
Senior Congress leader P Chidambaram has criticised CBI for "indiscriminately targeting" bankers.
Summary:
Customers can personalise their Kicks with 27 different accessory categories.
Summary:
Sports Minister Rajyavardhan Singh Rathoreâ shared an incident where Kerala football player named Ridvan asked his bride to excuse him for five minutes and went to play football for his team on their wedding night.
Summary:
A video showing UK-based delivery company Hermes' employee standing on the top of a delivery van and throwing the parcel on the first floor of a building has gone viral.
Summary:
Kangana Ranaut starrer 'Manikarnika: The Queen of Jhansi', which released on Friday, has been leaked online by piracy site TamilRockers.
Summary:
Bhumi Pednekar, during her appearance on 'Koffee With Karan', revealed when she worked as a casting director, she auditioned Rajkummar Rao, Ranveer Singh, Parineeti Chopra, Kriti Sanon and Disha Patani.
Summary:
India's Ambati Rayudu has been suspended from bowling in international cricket after not undergoing bowling action test within the stipulated time set by the ICC.
Summary:
Virat Kohli has become the fifth Indian batsman to hit at least 100 50-plus scores in List A cricket, achieving the feat in the third ODI against New Zealand at Mount Maunganui on Monday.
Summary:
India A and India Under-19 coach Rahul Dravid has said that Hardik Pandya and KL Rahul can still be role models if they can reach their "obvious potential" in cricket.
Summary:
In alligators, brumation can last from four to five months.
Summary:
Tamil Nadu MDMK leader Sathiyaraj Balu was arrested on Sunday for posting a picture on Facebook which portrayed Prime Minister Narendra Modi as a beggar.
Summary:
A 25-year-old police constable, Harsh Chaudhary, was martyred in a gunfight with a gangster in Uttar Pradesh's Amroha district on Sunday.
Summary:
The woman whose body was found in the bed box of a Gurugram residence on Saturday was one and a half months pregnant, said senior forensic expert Dr Deepak Mathur, who conducted an autopsy on the body.
Summary:
UK Queen Elizabeth II's husband Prince Philip has apologised to a woman who broke her wrist after being involved in a crash with his car.
Summary:
Actress Manisha Koirala, who was diagnosed with ovarian cancer in 2012, said that she had to make peace with her death.
Summary:
Summary:
Salman Khan and Rohit Shetty will reportedly collaborate for a police drama which will be an action film.
Summary:
On being asked about Shah Rukh Khan quitting Rakesh Sharma's biopic titled 'Saare Jahaan Se Achcha', Aamir Khan said, "Those are only reports, let's wait until he makes an announcement about it." Aamir had revealed that he suggested Shah Rukh's name for the biopic.
Summary:
Denying the reports that his film 'Womaniya' has been shelved, Anurag Kashyap said, "Shoot will begin on February 10...Tushar Hiranandani is the director.
Summary:
Summary:
Former Madhya Pradesh CM Shivraj Singh Chouhan on Sunday said, âÂÂOpposition unity is nothing but a 'bina dulhe ki baraat' (a wedding procession without groom)." He further said that the Opposition doesn't have a leader and is coming together for their survival.
Summary:
US-based roadside assistance startup Urgent.ly has raised $21 million (about â¹149 crore) from investors including the investment arms of automakers BMW, Porsche and Jaguar Land Rover.
Summary:
Those over 40 lakh people left out of NRC are still in voters' list and they will cast their vote, he further said.
Summary:
The scam relates to alleged irregularities in granting operational contracts of two IRCTC hotels.
Summary:
A 'mahapanchayat' called by the Gujjar community in Sawai Madhopur, Rajasthan has demanded a 5% reservation in government jobs and academic institutions in the next 11 days.
Summary:
AIMIM chief Asaduddin Owaisi on Sunday said, "Babasaheb (Ambedkar) was given Bharat Ratna...out of compulsion and not by heart." "Of all Bharat Ratna awards, how many have been given to Dalit, Adivasi, Muslim, poor, upper caste and Brahmin?" he added.
Summary:
Aamir Khan, while speaking about the failure of his latest release 'Thugs of Hindostan', jokingly said, "It has been a long time that I have not given any flop film." "I think the audience has the full right to say exactly what they want," he added.
Summary:
Hrithik Roshan-starrer film 'Kaabil' director Sanjay Gupta on Saturday accused Hotel Seagull in Kerala's Kochi of racism, and tweeted, "Got my first hand experience of absolute racism." "The deck on the waterfront in this pathetic place is for goras only," alleged Gupta.
Summary:
Actress Sophie Turner on Sunday called out a Twitter user for posting a now-deleted racist meme featuring her 'Game of Thrones' character Sansa Stark and tweeted, "Ew. Please donâÂÂt use me to promote racism." The meme promoted "purity in race and cultureâ and read, "Do it right!
Summary:
Thai idol girl group BNK48's 19-year-old singer Pichayapa 'Namsai' Natha tearfully apologised onstage during a concert for wearing a t-shirt showing swastika flag of Nazi Germany during a televised rehearsal.
Summary:
Hardik Pandya, who was drafted into Team India squad immediately after his suspension was lifted by CoA, has been included in playing XI for the third ODI against New Zealand today.
Summary:
A private search for Argentine footballer Emiliano Sala, who went missing after his plane disappeared from radar over English Channel on Monday, has begun after over â¹2.6 crore was raised online to fund the operation.
Summary:
South Africa fast bowler Dale Steyn took to Instagram to reveal that his mother wished him for the third ODI against Pakistan, a day after the match took place.
Summary:
Union Minister Anantkumar Hegde on Sunday said that the hand that touches a Hindu girl should not exist and should be cut.
Summary:
Summary:
The ailing Goa CM attended the function wearing a medical pipe in his nose.
Summary:
Lack of proper charging facilities has led to organised rackets of power theft, discom sources claimed.
Summary:
At least 15 people were killed and more than 30 others injured during a wedding after a landslide following heavy rains caused a hotel wall to collapse in Peru on Sunday.
Summary:
After winning his 15th Grand Slam title on Sunday, Serbian tennis player Novak Djokovic said that he wants to get closer to Swiss tennis player Roger Federer's tally of 20 Grand Slam titles.
Summary:
Summary:
Pujara, who went on to hit his 49th First-Class hundred, had earlier been given a reprieve in the match's first innings.
Summary:
Indian shuttler Saina Nehwal wished Carolina Marin a speedy recovery after Marin got injured midway during their title match at the Indonesia Masters on Sunday.
Summary:
Razy can alter cryptocurrency websites to show planted offers to buy or sell cryptocurrency and embed phishing sites on search results.
Summary:
As per method, researchers put an AI system through simulation training and asked a human to monitor its activities and give feedback.
Summary:
Patidar reservation leader Hardik Patel on Sunday said that he and his wife will together fight for 'Navnirman' of the country.
Summary:
PM Narendra Modi on Sunday said the opposition can abuse him as much as it wants, but it shouldn't mislead farmers.
All they have is hatred for Modi," he further said.
Summary:
An MIT study has found that Amazon's facial recognition technology, 'Rekognition', showed both gender and race bias.
Summary:
The factory will produce 'BE-4' engines, used to power its New Glenn rocket and United Launch Alliance's Vulcan Centaur rocket.
Summary:
As many as eight people died and ten were injured when a van fell into a gorge in Uttarakhand's Champawat on Sunday.
Summary:
The Delhi High Court has said that municipal corporations cannot ask school principals and teachers to perform duties outside the scope of Right of Children to Free and Compulsory Education (RTE) Act. It also set aside notifications requiring teachers to conduct household surveys.
Summary:
Indian-origin retailer brothers Simon Arora, Bobby Arora and Robin Arora have been ranked Britain's 24th highest taxpayers, according to a top 50 list compiled by The Sunday Times.
Summary:
Hyderabad-based drugmaker Aurobindo Pharma's US arm is recalling nearly 5 lakh bottles of blood pressure lowering drugs from the US market.
Summary:
Subhash Chandra-led Essel Group companies Zee Entertainment and Dish TV have denied links with Nityank Infrapower and Multiventures, which is reportedly under probe over suspicious demonetisation deposits.
Summary:
Odisha's 59-year-old Devarapalli Prakash Rao, who was awarded with country's fourth highest civilian award Padma Shri this year, provides education and food to slum children.
Summary:
Actress Ankita Lokhande, who made her Bollywood debut with 'Manikarnika: The Queen of Jhansi', took to social media and wrote, "I saw myself on the big screen for the first time.
Summary:
Isha has been a part of hit films like Don, Salaam-e-Ishq and several others.
Summary:
Batsman KL Rahul got out for 13 in his first professional match after return from suspension.
Summary:
The 31-year-old batsman didn't walk despite being caught behind once each in both the innings.
Summary:
Former Uttar Pradesh CM Akhilesh Yadav on Sunday took a dig at the state CM Yogi Adityanath saying the government should save the farmers of the state first and leave the Ram Temple issue to the Supreme Court.
Summary:
A Bangalore Metropolitan Transport Corporation (BMTC) bus conductor returned a bag of a passenger containing â¹1 lakh in cash and other valuables on January 19.
Summary:
Defence Minister Nirmala Sitharaman on Sunday watched the movie, "Uri: The Surgical Strike", along with a group of war veterans at a Bengaluru cinema hall.
Summary:
America's David Matheson, a prominent anti-gay activist who was a practitioner of 'conversion therapy', which promotes the false idea that being gay is something that should be 'cured', has come out as gay.
Summary:
The mural was painted on an emergency door of the theatre and depicted a veiled woman gazing mournfully.
Summary:
With his seventh win, Djokovic extended his 100% record in the final of the Australian Open.
Summary:
The event saw participation from 50 duos, one of which featured Kyrgios.
Summary:
The French pair of Pierre-Hugues Herbert and Nicolas Mahut beat 2017 champions Finn Henri Kontinen and Australian player John Peers 6-4, 7-6(7-1) to win their maiden Australian Open men's doubles title on Sunday.
Summary:
Argentina's Gonzalo Higuain revealed that he almost quit football after Argentina's loss in the Copa America 2016 final.
Higuain said he wanted to quit football to look after his ailing mother.
Summary:
Pakistan beat South Africa by eight wickets to level the ODI series 2-2 on Sunday.
This is the first time Pakistan have beaten South Africa at the Wanderers, while it was the first loss for South Africa in a 'Pink' ODI.
Summary:
On opening the 'Media' menu, Android users will be able to trace where the image was shared in the chat via the option.
Summary:
It doesn't make her fit to lead a public life," he added.
"The public should know that no one knows when she will lose her mental balance," Swamy further said.
Summary:
Pragatisheel Samajwadi Party (Lohia) chief Shivpal Yadav on Saturday announced that he will contest the 2019 Lok Sabha elections from Uttar Pradesh's Firozabad constituency.
Summary:
According to the National Judicial Data Grid, 4,419 cases are pending before each High Court judge, while 1,288 are pending before each lower court judge.
Summary:
"Ward boy asked her to change in...room different from the one designatedâÂÂ, police said.
Summary:
The complex would transform Kochi Refinery as the largest state-run refinery in the country, he said.
Summary:
TRAI Chairman RS Sharma has said 90% TV viewer onboarding is expected before the February 1 deadline for migration to the new regulatory tariff for DTH and cable operators.
Summary:
In a raid conducted at the Jaipur residence of Indian Revenue Service (IRS) officer Sahi Ram Meena, the Anti Corruption Bureau has recovered around â¹2.3 crore in cash.
Summary:
PM Narendra Modi on Sunday said that over 5 lakh villages in India have been declared open defecation free (ODF) and 98% of rural India is under sanitation coverage.
Summary:
Over 70 World Trade Organization (WTO) member countries agreed to discuss new e-commerce framework while other member countries including India decided to keep off it.
Summary:
Saudi Arabia's Energy Minister Khalid al-Falih said the kingdom is seeking nearly $430 billion in investment by 2030 for infrastructure and other industrial projects in order to cut its reliance on oil.
Summary:
Vedanta Founder and Chairman Anil Agarwal has indicated that his son or daughter may not head the group as it is "too big to have a family succession plan".
and they are doing very well," he added.
Summary:
Djokovic has now won 15 Grand Slam titles, third-most by a male tennis player.
Summary:
Patidar quota's 25-year-old leader Hardik Patel on Sunday married Kinjal Parikh, his childhood friend to whom he was engaged for a while, at a temple in Digsar village of Gujarat's Surendranagar district.
Summary:
Chief Justice of India Ranjan Gogoi had reconstituted the bench to hear the case.
Summary:
CBI officer-in-charge Sudhanshu Dhar Mishra, who lodged an FIR into the alleged irregularities in loan disbursement by ICICI Bank, was transferred from Delhi to Jharkhand.
Summary:
Amrita Rao has said she's uncomfortable doing love-making scenes, while adding, "Love-making is so personal to me...if I do it on screen, it's like I'm leaving a part of my soul.
Summary:
"There was one voice, who said 'this boy cannot be...terrorist because his family has always worked for the people of the country'.
Summary:
Actress Bhumi Pednekar has revealed that she didn't know she was actually being auditioned during her audition for her debut film 'Dum Laga Ke Haisha' as casting director Shanoo Sharma had told her that it was a "mock audition".
Summary:
NO excuses!!" The belt that Divyanka is wearing in the photo is from 'Rimayu'.
Summary:
'Nari Shakti' (women empowerment) has been chosen as the Hindi Word of the Year 2018 by Oxford Dictionaries.
Summary:
India's bullet train service will say "sorry" to every passenger even if the train is delayed by only a minute, the National High Speed Rail Corporation (NHSRCL) has decided.
Summary:
Prime Minister Narendra Modi on Sunday said an atmosphere of "mistrust" was being created in Tamil Nadu by a "few people" to serve their "interest" over 10% quota for the EWS of the general category.
Summary:
Union Minister Dharmendra Pradhan on Sunday said Odisha Chief Minister Naveen Patnaik was "shaken" with the BJP's rise.
Summary:
He said India now propels satellites of both the developing and developed nations.
Summary:
As many as eight students were injured in Madhya Pradesh's Seoni on Saturday after a school teacher mistakenly pressed his new car's accelerator instead of the brake, leading to the car ramming into the students.
Summary:
The train will run between Delhi and Varanasi at a maximum speed of 160 km per hour.
Summary:
Summary:
Sunny Kaushal, Harrdy Sandhu and Tahir Raj Bhasin will star in Ranveer Singh's upcoming film '83, as per reports.
Summary:
The India A side clinched the unofficial one-day series after defeating England Lions by 60 runs in the third unofficial one-day match at Greenfield International Stadium in Thiruvananthapuram.
Summary:
Windies spinner Roston Chase picked up eight wickets in the second innings to help his side beat England by 381 runs in the first Test.
Summary:
Windies captain Jason Holder became the top-ranked all-rounder in Test cricket after his efforts with both the bat and the ball helped his side defeat England in the first Test on Saturday.
Summary:
Facebook attributed the discontinuation to lesser people using the app but didn't share user numbers.
Summary:
Bengaluru-based student lending startup SlicePay has secured "(Non-Banking Financial Company) NBFC licence" from the Reserve Bank of India.
Summary:
Yoga guru Baba Ramdev on Sunday said it was unfortunate that not even one 'sanyasi' (saint) was awarded the Bharat Ratna in the last 70 years.
Summary:
Prime Minister Narendra Modi on Sunday said, "The numbers of undergraduate medical seats have been increased by almost 30% in the last 4.5 years." "The launch of Ayushman Bharat is also a big step," he added.
Summary:
Malaysia's Economic Affairs Minister on Saturday said the country will cancel its $20-billion East Coast Rail Link (ECRL) project with contractor China Communications Construction.
Summary:
Vedanta Resources Founder and Chairman Anil Agarwal said he won't retire soon and added the conglomerate's growth requires his "aggression" and "risk-taking" ability.
I have a task [to finish]," he said.
Summary:
Drugmaker Lupin on Saturday said it has again received six observations from the US health regulator after the inspection of its Indore facility in Madhya Pradesh.
Summary:
Saina Nehwal became the first Indian woman to win Indonesia Masters title after her opponent Carolina Marin pulled out due to injury during the first game in the final.
Summary:
A student in France has been accused of calling in a hoax bomb threat on an easyJet flight to stop his parents from visiting him.
Summary:
They jokingly issued a warning, saying witnesses reported India "badly assaulting an innocent looking bunch of New Zealanders" in Napier and Mount Maunganui.
Summary:
The Australian Open 2012 men's singles final match between Novak Djokovic and Rafael Nadal was the longest Grand Slam title match (by duration) in history.
Summary:
Summary:
Sarfaraz will miss the remaining two matches of the ongoing ODI series and the first two matches of the upcoming T20I series.
Summary:
The Uttar Pradesh police on Saturday recovered the mobile phone of late Subodh Kumar Singh, the policeman who was killed in mob violence in Bulandshahr last year.
The phone was recovered from the killing's main accused Prashant Natt's house.
Summary:
While returning, Kanak went near the animal to take photographs when it caught him with its trunk.
Summary:
At least 27 people were killed and 77 others injured after two bombs exploded at a Roman Catholic cathedral on Jolo island in southern Philippines on Sunday.
Summary:
An African practice of "ironing" a girl's chest with a hot stone to delay breast formation is spreading in the UK, a report by The Guardian revealed.
Summary:
Sinar Mas Group Founder Eka Tjipta Widjaja, who had a net worth of $9.3 billion, passed away on Saturday in the Indonesian capital Jakarta at the age of 98.
Summary:
Parmeet Sethi, who played the role of Kuljeet in 1995 film 'Dilwale Dulhania Le Jayenge' [DDLJ], said the film helped him to transform as an actor.
Summary:
Actor Vicky Kaushal will replace Shah Rukh Khan in Rakesh Sharma's biopic titled 'Saare Jahaan Se Achcha', as per reports.
Summary:
Summary:
Talking about her sons Aaryamann and Ayushmaan, Archana Puran Singh, said, "They have a plan to enter into the industry...in two-three years, I hope they would be able to fulfil their dreams." She added that currently her sons are studying and learning drama and theatre.
Summary:
Summary:
Shreyas Talpade has said, "One can't eat 'dal-chawal' all day, otherwise you would get bored.
Summary:
On the occasion of their 1989 film 'Ram Lakhan' completing 30 years since its release on Sunday, Anil Kapoor and Madhuri Dixit shared a video wherein both recreated 'My Name Is Lakhan' song from the film.
Summary:
Further, it also references a possible seventh-generation iPod Touch device that has neither the Face ID nor the Touch ID feature.
Summary:
Punjab Finance Minister Manpreet Badal on Friday said, "Punjab is Congress party's fort." "BJP's magic may have worked across the country, but it never worked in Punjab," he added.
Summary:
RJD leader Tejashwi Yadav has said that Congress President Rahul Gandhi has "all the qualities" required to become a good Prime Minister.
Summary:
Directorate of Revenue Intelligence officials on Friday arrested five persons, including two airline staff for attempting to smuggle gold into India at the Coimbatore Airport.
Summary:
PM Narendra Modi on Sunday laid the foundation stone of All India Institute of Medical Sciences (AIIMS) in Madurai as a part of his visit to Tamil Nadu.
Summary:
Andhra Pradesh CM Chandrababu Naidu has said that there was 100% chance for hacking Electronic Voting Machines (EVMs).
Summary:
The Defence Ministry has announced that "disability or war injury pension, special family pension and liberalised family pension shall be minimum â¹18,000 per month." The amount has been revised with effect from 1 January 2016.
Summary:
As many as two people were killed and 24 others were injured on Sunday after a bus carrying Vaishno Devi pilgrims overturned in Kathua district of Jammu and Kashmir, police said.
Summary:
The Goa Tamil Sangam (GTS) has urged Union Minister Nitin Gadkari to name the new Mandovi Bridge in Panaji after CM Manohar Parrikar.
Summary:
Visitors can interact with delegates of 80+ universities and solve queries on a personal level related to courses, fees, visa and loans.
Summary:
American show 'Top Chef' Season 15 contestant, Pakistani-American chef Fatima Ali, passed away on Friday at the age of 29 after her battle with cancer.
Summary:
Praising Naomi Osaka for becoming the first Japanese tennis player to win Australian Open, Japanese Prime Minister Shinzo Abe tweeted, "I am very proud of the emergence of a new queen.
Summary:
Following India's 90-run victory over New Zealand in the second ODI on Saturday, all-rounder Kedar Jadhav said that it helps if MS Dhoni is there till the last ball during India's innings.
Summary:
Pakistani cricketer-turned-commentator Ramiz Raja has said he won't be translating anything from Urdu to English anymore after Pakistan captain Sarfaraz Ahmed was caught on stump mic calling South Africa's Andile Phehlukwayo 'Abey Kaale' during an ODI.
Summary:
City have now scored 30 goals in seven games in 2019.
Summary:
CoA chief Vinod Rai has said he revoked Hardik Pandya and KL Rahul's suspensions as it was "becoming uncertain" and also "hurting the team morale".
Pandya and Rahul were suspended over their comments on women on 'Koffee with Karan'.
Summary:
More than â¹1.55 crore has been raised so far towards a private search for Cardiff City footballer Emiliano Sala, who has been missing since his plane disappeared from radar over English Channel on Monday.
Summary:
After being conferred with Padma Shri, India's fourth highest civilian award, former India cricketer Gautam Gambhir said that it's an honour which "also comes with responsibility".
I'm living for the day when Gautam Gambhir the human being beats Gautam Gambhir the cricketer.
Summary:
I haven't ever applied for any award.
I'd like to dedicate this award to my parents," the 64-year-old added.
Summary:
India A and India Under-19 coach Rahul Dravid has said wealth is not the only reason why young cricketers feel entitled.
"Entitlement can come in many ways in any environment.
Summary:
Indian football team captain Sunil Chhetri has said it makes him a bit "nervous" to be honoured with Padma Shri award.
Summary:
The body of a woman was found in a residence in Gurugram, inside a bed box, over five days after the woman went missing.
Summary:
Essel Group Chairman Subhash Chandra said he's compelled to apologise to banks for first time in his 52-year career for not living up to expectations.
Summary:
Siddhartha, who owns 21% of Mindtree along with his affiliates, is reportedly in advanced discussions with various entities to sell his shares in the company.
Summary:
Apple currently assembles the lower-cost SE and 6S models in India through Wistron's local unit in Bengaluru.
Summary:
The film, for which Kangana has been credited as co-director, released on January 25.
Summary:
Virat Kohli, while talking about himself and wife Anushka Sharma, said it's the simplest things that give them a lot of joy.
"We're always in public eye and we're always doing things in front of people.
Summary:
On the occasion of his film 'Agneepath' completing seven years since its release on Saturday, Hrithik Roshan wrote, "After I heard the narration, I just couldn't say no [to the film]." "'Agneepath' gave me the opportunity of going all guns blazing.
Summary:
Maisie Williams, who portrays 'Arya Stark' in 'Game of Thrones', has said, "I'm really proud of this final season...I've always felt ashamed to say things like that but...I'm really proud of all the work we've put in." "I don't know [if] anyone's going to be satisfied.
Summary:
Indian spinner Kuldeep Yadav equalled Anil Kumble's tally of registering five four-plus-wicket hauls in ODI cricket outside Asia.
Summary:
After Priyanka Gandhi's entry into politics, BJP General Secretary Kailash Vijayvargiya on Saturday said, "[Congress] wants to contest the elections while banking on chocolaty faces." "Somebody takes Kareena Kapoor's name, while others ask for Salman Khan.
Summary:
The contingent was led by Major Khushboo Kanwar, the daughter of a bus conductor.
ItâÂÂs a...gift for him [and] to struggles he has seen in life," Kanwar said on leading the contingent.
Summary:
Commander Vijay Varma, a pilot in the Indian Navy, has been awarded the Nao Sena Medal for gallantry.
Summary:
Speaking on the occasion of 70th Republic Day, Assam Governor Jagdish Mukhi on Saturday said that there is no place for illegal immigrants in Assam.
Summary:
A woman died and nine people, including two children, were hospitalised after consuming prasad from a temple in Karnataka's Chikkaballapur on Friday.
According to police, people started complaining of stomach ache after consuming the prasad.
Summary:
Laura reached out to Microsoft after not receiving their call on January 18, thinking it was February 18, day of her scheduled interview.
Summary:
Actress Sonam Kapoor revealed on 'The Kapil Sharma Show' that during her wedding, her husband Anand Ahuja outsmarted actress Swara Bhasker into stealing his brother's shoes during 'joote chupane ki rasam'.
Summary:
US-based 19-year-old YouTuber twins, Grayson Dolan and Ethan Dolan, were forced to request their fans to not come to their father Sean Dolan's funeral who passed away due to cancer.
Summary:
Actor Manoj Bajpayee has said he feels he did something good somewhere that he got the fourth highest civilian award Padma Shri "without being close to anybody".
Summary:
'Manikarnika' co-director Krish, while speaking about the controversy involving the film's direction credits, said, "Kangana told me...[My version] was looking like a Bhojpuri film." "We argued but she wanted her way," he added.
Summary:
India wicketkeeper-batsman MS Dhoni dislodged the bails in no time to stump Ross Taylor on the bowling of Kedar Jadhav during the second ODI on Saturday.
Summary:
Not just a great tennis player but a great human being as well," Kohli added.
Summary:
Apple's next generation AirPods, which are rumoured to launch later this year, will let users talk to Siri without having to touch the AirPods at all, a report said.
Summary:
Microsoft Co-founder and the world's second-richest person Bill Gates on Saturday shared the 'World's 10 Year Challenge' showing the human progress in life expectancy, youth literacy, child mortality and reducing extreme poverty.
Summary:
"With a single focus..no external help and her own efforts, she finally qualified in fourth attempt," NGO's Co-founder Sunitha Krishnan said.
Summary:
British newspaper The Telegraph has apologised "unreservedly" to Melania Trump and agreed to pay her "substantial damages" after it published an article containing "a number of false statements".
Summary:
Kering, the French owner of the Gucci luxury brand, owes about $1.6 billion to Italy in back taxes, according to a government audit.
Summary:
Kanye reportedly informed the company that he wouldn't pay for the order after they had manufactured the fabric.
Summary:
The five-time National Film Award winning actor was earlier honoured with the Padma Shri in 2001.
Summary:
Actor Prateik Babbar and his wife Sanya Sagar hosted a wedding reception in Mumbai on Friday, the theme of which was inspired by American author F Scott Fitzgerald's 1925 novel 'The Great Gatsby'.
Summary:
Speaking about being trolled for her dialogue, "My business is my business, none of your business" in the film 'Race 3', actress Daisy Shah said that the memes made her more popular.
Summary:
A case has been filed against singer Zubeen Garg for allegedly using 'unparliamentary' language defaming the Bharat Ratna, IndiaâÂÂs highest civilian honour, in an audio clip doing rounds on WhatsApp. An FIR was lodged against Garg by Satya Ranjan Borah, State Vice President BJP, Kisan Morcha, Assam.
Summary:
Sood reportedly sent a proposal to the municipal body in June 2018, which was rejected as it didn't comply with its norms.
Summary:
Summary:
Third seeds Barbora Krejcikova and Rajeev Ram defeated local favourites Astra Sharma and John-Patrick Smith 7-6(3), 6-1 to win the mixed doubles title at the Australian Open on Saturday.
Summary:
Speaking about his opening partner Shikhar Dhawan, Rohit Sharma said, "We know each other since long and have a good understanding...
Summary:
Manchester United made it eight wins from eight matches after beating Arsenal 3-1 in the FA Cup fourth round on Friday.
Summary:
Former South African international cricketer AB de Villiers in his tweet about Naomi Osaka's Australian Open win took a dig at Osaka's opponent from the US Open 2018, Serena Williams.
Much deserved #OsakaKvitova #AustralianOpen," read De Villiers' tweet after Osaka's win.
Summary:
"The court should give its verdict soon, and if it is unable to do so, it should hand over the issue to us," he further said.
Summary:
Since 1994, India has gifted 722 ambulances and 142 buses to various Nepalese organisations.
Summary:
Goa Governor Mridula Sinha on Saturday said the crime rate in the state dropped by 8.26% in last one year.
Summary:
"Naxals killed [a] village head," a police official said.
Summary:
He also said Essel Infra made "incorrect bids" which cost it â¹4,000-5,000 crore.
Summary:
Priyanka further said the purpose of social media is "connectivity" and "not creating a cesspool for people to put out their angst and hate".
Summary:
Rishi Kapoor, while speaking about his ongoing treatment in New York, said, "It's on, hopefully I'll recover soon and God willing I'll return." "The procedure is long and tedious and one needs immense patience which unfortunately isn't one of my virtues," he added.
Summary:
Nepal batsman Rohit Paudel has become the youngest male cricketer to score a fifty in an international match, achieving the feat at the age of 16 years and 146 days in an ODI against UAE on Saturday.
Summary:
The Federation of Hotel and Restaurant Associations of India (FHRAI) has claimed over 200 hotels ended agreements with OYO over mismanagement of contracts, arbitrary charges and other disputes.
Summary:
The police on Friday arrested Hyderabad-based job portal 'wisdomjobs.com' CEO Ajay Kolla and 13 other employees for cheating over one lakh job seekers of nearly â¹70 crore.
Summary:
A woman constable named Rekha Gohil who was riding a stunt motorcycle, and six children were injured when the bike slipped at a state-level Republic Day parade organised in Gujarat's Palanpur on Saturday.
Summary:
Trump on Friday agreed to end the 35-day partial shutdown, the longest in history, without getting the $5.7 billion.
Summary:
Options including orange juice, sugarcane juice and carrot juice were given in the poll.
Summary:
Consumer goods maker Emami on Friday said it has acquired German personal care brand Creme 21 for around â¹100 crore.
Summary:
Asher further claimed the group did not properly investigate the allegations against him.
Summary:
Veteran poet-lyricist Gulzar, while talking about his daughter Meghna Gulzar's career, said, "She was in a sanyaas for good 6-7 years.
Summary:
Oscar-winning French music composer Michel Legrand passed away aged 86, his spokesperson said.
Summary:
Summary:
Shankar Mahadevan, who has been awarded Padma Shri, has said, "A lot of my music has been created with my two partners- Ehsaan and Loy- so, I would consider them as equal recipients of this." "I don't know if I'm worthy of this but yeah, I definitely feel happy," he added.
Summary:
Varun will be seen playing the role of a Punjabi boy in the film, reports added.
Summary:
Indian openers Rohit Sharma and Shikhar Dhawan went past Sachin Tendulkar and Virender Sehwag on the list of most centuries stands by Indian opening pairs after going past the landmark in the 2nd ODI against New Zealand.
Summary:
Australia won the first Test against Sri Lanka after Australian pacer Pat Cummins took a ten-wicket haul, his first 10-wicket match haul and the best-ever match figures by a bowler in Day-Night Tests.
Summary:
Indian shuttler Saina Nehwal beat China's He Bingjiao in the Indonesia Masters semi-final to reach the final of the tournament on Saturday.
Summary:
She further said that over 8 lakh beneficiaries have been admitted to hospitals under the scheme.
Summary:
Talking about Priyanka Gandhi entering active politics, Samajwadi Party President Akhilesh Yadav on Saturday said, "I would like to congratulate Congress party and their President that they took a right decision." "Young people are being given chance, Samajwadi Party is happy," he added.
Summary:
Gujarat CM Vijay Rupani on Friday declared 500-metre radius of Ambaji and Somnath temples as 'vegetarian zone'.
Summary:
In December 2018, the newly elected Baghel government waived off farm loans worth â¹6,100 crore of over 16 lakh farmers.
Summary:
Kamal Nath led-Madhya Pradesh government on Saturday launched an employment scheme, Yuva Swabhiman Yojana, for urban youths belonging to economically weaker sections (EWS).
Summary:
Senior advocate HS Phoolka, who was awarded the Padma Shri, has dedicated his award to "everyone who is working for the protection of human rights, who is working for downtrodden and to uphold the rule of law".
Summary:
The United Nation's human rights office announced a three-member team of international experts who will probe into the murder of Saudi journalist Jamal Khashoggi.
Summary:
Afghan Taliban co-founder Mullah Abdul Ghani Baradar has been named the head of Taliban's political office in Qatar to lead the peace talks with the US, aimed at ending the war in Afghanistan.
Summary:
With Great Learning's PGP-AIML program, learners can gain practical experience in Artificial Intelligence and Machine Learning by working on real-world projects and industry-sponsored hackathons.
Summary:
Osaka also became the youngest female world number one since Caroline Wozniacki (20) in 2010.
Summary:
'Shankhnaad', a martial tune created for the Indian armed forces, was played for the first time on the Republic Day as the defence forces earlier used the martial tune created by Britishers before Independence.
Summary:
Each person can claim either $25 in cash, 25 additional Super Likes or a month's subscription to either Tinder Plus or Tinder Gold.
Summary:
Summary:
Summary:
Two weeks ago, four people were promoted to Senior Vice President posts, the report added.
Summary:
Around 50 youngsters from the Uttar Pradesh's Nagla Maya village have decided to auction themselves on Republic Day to raise money for drinking water in their village.
So we decided to auction ourselves," a participant said.
Summary:
Indian Navy divers on Saturday detected the body of another miner at a depth of 280 feet inside the flooded rat-hole in Meghalaya's East Jaintia Hills district, where 15 miners were trapped on December 13.
Summary:
Gautam Khaitan, a lawyer accused in the â¹3,600-crore AgustaWestland case, was on Friday arrested by the Enforcement Directorate in connection with a fresh case of money laundering and possession of black money.
Summary:
Madhya Pradesh Minister, Imarti Devi, failed to read out what was written in her Republic Day speech, following which she asked the District Collector Bharat Yadav to read it for her.
Summary:
"We need to get a stable Afghanistan that can ensure the security of our democratic rights and institutions", he added.
Summary:
Police are investigating a case where a customer found a part of what is believed to a human bone in a pair of socks bought from Irish fashion retailer Primark's store in December in the UK.
Summary:
While India celebrates its Republic Day on January 26, Australians celebrate their national day- Australia Day on the same date.
Summary:
Zee and Essel Group Chairman Subhash Chandra said the stock crash in his group companies was caused by "negative forces" trying to sabotage Zee Entertainment stake sale.
Summary:
Actress Fatima Sana Shaikh, who is currently shooting for Anurag Basu's upcoming film in Bhopal, shared Basu's pictures from the sets and wrote, "Unreal!
Magical." The untitled film, which also stars Rajkummar Rao, is said to be on the lines of Basu's 2007 directorial, 'Life in a...Metro'.
Summary:
Summary:
Brisbane Heat won their maiden Women's Big Bash League title after beating defending champions Sydney Sixers by three wickets in the final at Sydney's Drummoyne Oval.
The Sixers were chasing their third successive title.
Summary:
Indian spinner Ravichandran Ashwin praised Windies captain Jason Holder who scored his maiden double century in the ongoing first Test against England in Bridgetown.
The hosts, helped by Holder and Shane Dowrich's 295-run stand, have set England a target of 628.
Summary:
After the CBI raided former Haryana CM Bhupinder Singh Hooda's residence, Trinamool Congress on Friday tweeted, "For 2019, BJP gets new ally CBI." "One headless agency has now become spineless BJP," TMC's Chairperson and West Bengal CM Mamata Banerjee also tweeted.
Summary:
Priyanka was appointed Congress' General Secretary in charge of Eastern Uttar Pradesh on Wednesday.
Summary:
JD(S) leader Kunwar Danish Ali said that former President Pranab Mukherjee was awarded Bharat Ratna because "he visited RSS headquarters and described the founder KB Hedgewar, as 'son of soil'".
Summary:
Andhra Pradesh CM Chandrababu Naidu on Friday announced a â¹10,000 cash bonus for each of nearly 94 lakh members of the Development of Women and Children in Rural Areas programme.
Summary:
India and South Africa have signed a Three-Year Strategic Programme of Cooperation (2019-2021), aimed at further enhancing the strategic partnership between the two countries.
Summary:
Julen's parents had lost another son two years ago, the local media had reported.
Summary:
A political crisis has erupted in Venezuela after opposition leader Juan Guaidó declared himself as the country's interim President.
Summary:
Six of India's brightest youngsters have now been shortlisted under the category 'Promising game changers'.
Summary:
India's previous biggest ODI victory in New Zealand had come in March 2009 when they defeated New Zealand by 84 runs in Hamilton.
Summary:
Actress Ankita Lokhande has said she doesn't need any godfather in the film industry, while adding, "There are many newcomers who don't have a godfather and still they are working." "I am not in any competition.
Summary:
Govinda has revealed he was the first choice for the 1997 film 'Judwaa' but left the project on Salman Khan's request.
I wasn't a part of Judwaa, but I had started the project," Govinda added.
Summary:
Team India all-rounder Hardik Pandya's mentor Kiran More has revealed that the cricketer hit 1,000 balls in Australia after being suspended pending inquiry by the CoA over his comments on women on 'Koffee with Karan'.
Summary:
Praising the Maharashtra Anti-Terrorism Squad for arresting nine people planning an attack during Kumbh Mela, UP CM Yogi Adityanath said, "If they had entered UP, I would have finished them on the UP border itself." He added, "We have no hesitation in doing so...
Summary:
Summary:
During her recent trip to India, Maldivian Defence Minister Mariya Ahmed Didi said the island nation will have "very limited" ties with China in the defence sector and engage more with India.
Summary:
Lieutenant Bhavana Kasturi has become the first woman to lead an all-men Army contingent in Republic Day parade by leading the Indian Army Service Corps contingent.
Summary:
To celebrate the 70th Republic Day, the Indo-Tibetan Border Police (ITBP) personnel hoisted the National Flag at an altitude of 18,000 feet with temperature around -30 degree Celsius in Ladakh.
Summary:
The Indian Air Force showcased three Sukhoi Su-30MKI aircraft in the flypast during Republic Day celebrations.
Summary:
At least seven people have died and around 200 others are missing after a dam burst on Friday at an iron-ore mine in Brazil, officials said.
Summary:
A Jewish couple and their 19-month-old daughter from Detroit were removed from an American Airlines flight after the airline told them other passengers complained about their body odour.
Summary:
Japan's Supreme Court has upheld a law that forces transgenders to be sterilised before they can legally change their gender.
Summary:
Actress Amrita Rao, who played Bal Thackeray's wife Meena Thackeray in the biopic 'Thackeray', said, "Initially I was apprehensive to play a character that is much older than me." Amrita added that she was worried if she will be able to justify everything with her performance.
Summary:
Sara Ali Khan, while talking about her relationship with grandmother Sharmila Tagore, said, "I strike a balance between respect and closeness.
Summary:
Kriti Sanon has said that she doesn't want to get comfortable in one space or genre of films.
Summary:
Deepika Padukone, on the occasion of her film 'Padmaavat' completing 1 year since its release on Friday, said, "The film surpassed all my previous highs professionally.
Summary:
Thierry Henry, who was part of France's 1998 World Cup-winning team, has been sacked by French club Monaco FC three months after taking charge of the side.
Summary:
Former Gujarat Chief Minister Shankersinh Vaghela on Friday revealed his plans to join Nationalist Congress Party, stating, "I have discussed this issue with (NCP President Sharad) Pawar Saheb.
Summary:
Accusing BJP of attempting to topple the Congress-JD(S) government, Karnataka Chief Minister HD Kumaraswamy on Friday said, "Operation Lotus is on.
Summary:
The student bodies include All Manipur Students' Union, Manipuri Students' Federation and Kangleipak Students' Association.
Summary:
After BJP accused Congress of playing "family politics" when Priyanka Gandhi Vadra entered active politics, Indian Youth Congress sent mirrors to five BJP leaders who are children of other prominent leaders of the party.
Summary:
IRCTC on Friday added 2,191 Point of Sale (POS) machines in trains with pantry cars for electronic payment of food items.
Summary:
People in the southern Philippines have voted to create a new Muslim autonomous region known as the Bangsamoro Autonomous Region which will replace the Autonomous Region in Muslim Mindanao.
Summary:
Trump on Friday agreed to end the shutdown without getting funds to build a wall along the border with Mexico.
Summary:
Croma has launched the first ever loyalty programme in the world of electronic retail that promises to offer an ultimate shopping experience.
Summary:
US President Donald Trump signed a bill on Friday night to reopen the government for three weeks, until February 15, ending the longest government shutdown in the nation's history.
Summary:
"What was your impression?" Nadal asked McEnroe.
Summary:
Windies captain Jason Holder slammed 202*(229) in the second innings of the first Test against England, becoming only the third batsman in Test cricket history to score a double ton batting at number eight.
Summary:
"CoA should've appointed the Ombudsman in the first place.
Azharuddin further said the CoA should have taken the decision immediately.
Summary:
"When you come to South Africa, you have to be very careful when you make racial comments," Du Plessis added.
Summary:
Barcelona forward Lionel Messi has urged authorities to resume the search for missing 28-year-old Argentine forward Emiliano Sala after police called off rescue operations on Thursday.
Summary:
The government on Friday announced Padma Bhushan for former ISRO scientist Nambi Narayanan, who was cleared in the 1994 spying case by the Supreme Court last year.
Summary:
A 38-year-old man who killed 10 people in over six months in Prayagraj (formerly Allahabad) and nearby areas was arrested from Kumbh Mela, said the police.
Summary:
Odisha CM Naveen Patnaik's elder sister and author Gita Mehta has declined to accept the Padma Shri announced on Friday.
Summary:
The Pakistan government on Friday announced to ease travel restrictions in a bid to revive tourism, with the Information Minister Chaudhry Fawad Hussain calling the country "heaven for tourists".
Summary:
The three suspects were arrested earlier this month over initial allegations that they stole $150,000 from Mugabe's rural house in Zvimba.
Summary:
Photoshop maker Adobe's India-born CEO Shantanu Narayen was conferred Padma Shri.
Summary:
In addition to costing people their careers, such adventurism leads to media leaks, ruins reputations, and not convictions, Jaitley added.
Summary:
RSS' economic wing Swadeshi Jagran Manch has urged Prime Minister Narendra Modi to resist pressure from the US and not postpone new e-commerce sector regulations.
Summary:
Malayalam film actor Mohanlal will be awarded India's third highest civilian honour, Padma Bhushan, for his contribution to cinema.
Summary:
Late music maestro Bhupen Hazarika, widely known as 'Sudhakantha', was awarded India's highest civilian honour Bharat Ratna seven years after his death, on the eve of Republic Day 2019.
Summary:
Veteran poet-lyricist Gulzar has said that it was because of AR Rahman that the 'Jai Ho' song from the 2009 film 'Slumdog Millionaire' won an Academy Award in the Best Music (Original Score) and Best Music (Original Song) categories.
Summary:
Late actor-screenwriter Kader Khan on Friday was conferred with the Padma Shri, India's fourth highest civilian honour.
Summary:
CoA chief Vinod Rai has said that an agency will be hired within the next 10 days to deal with gender sensitisation classes for BCCI CEO Rahul Johri.
Summary:
Indian shuttler Saina Nehwal beat Thailand's Pornpawee Chochuwong to reach the last four of women's singles event at the Indonesia Masters on Friday.
Summary:
Sobti had received numerous awards, including the Sahitya Akademi in 1980 and Jnanpith Award in 2017, and was also offered Padma Bhushan, which she declined.
Summary:
"It is with a deep sense of humility...to the people of India that I accept this great honour," he tweeted.
Summary:
In his customary address to the nation on the eve of Republic Day, President Ram Nath Kovind said electing the 17th Lok Sabha is not just a "once-in-a-generation moment, but a once-in-a-century moment".
Summary:
Information and Broadcasting (I&B) Ministry on Friday increased the rates at which it offers advertisements to private TV channels.
Summary:
Singapore will reduce the length, intensity and frequency of its training programs following the death of actor Aloysius Pang who died from injuries suffered during a military exercise in New Zealand.
Summary:
Roger Stone, an ally of US President Donald Trump, was arrested in connection with the probe into alleged Russian interference in 2016 US presidential election and Russia's ties to the Trump campaign.
Summary:
President Ram Nath Kovind today awarded India's highest civilian honour Bharat Ratna to ex-President Pranab Mukherjee, late social activist Nanaji Deshmukh and late music maestro Bhupen Hazarika.
Summary:
The Government of India on Friday announced four Padma Vibhushan, 14 Padma Bhushan and 94 Padma Shri Awards for 113 personalities.
Summary:
Chief Justice of India (CJI) Ranjan Gogoi today reconstituted the five-judge Constitution bench for hearing Ayodhya land dispute case on January 29.
Summary:
After all-rounder Yuvraj Singh posted a picture with the caption "Red car or red shoes?
Summary:
Pakistan captain Sarfaraz Ahmed personally apologised to South Africa's Andile Phehlukwayo for calling him 'Abey Kaale' during the second ODI on Tuesday.
Summary:
Ex-cricketer Gautam Gambhir, football team captain Sunil Chhetri, table tennis player Sharath Kamal and wrestler Bajrang Punia have been conferred with Padma Shri, India's fourth highest civilian award.
Summary:
Filmmaker Karan Johar has said that cricketers Hardik Pandya and KL Rahul were gracious to him when he apologised to them after they were suspended by CoA over their comments on women on 'Koffee with Karan'.
Summary:
After the changes, a Facebook user, for instance, will be able to send encrypted messages to someone who has only a WhatsApp account, according to the report.
Summary:
Apple CEO Tim Cook on Thursday recalled the day when late Co-founder Steve Jobs unveiled Macintosh, Apple's first successful computer with a graphic user interface.
"35 years ago, Macintosh said hello.
Summary:
The African nation of Angola has decriminalised homosexuality after the parliament removed the "vices against nature" provision.
Summary:
Archaeologists have found the remains of British explorer Captain Matthew Flinders, who is credited with naming Australia, near a railway station in London.
Summary:
Two Sikh groups in the US will donate gift/grocery cards and food to Transportation Security Administration (TSA) workers at the Indianapolis Airport, as they continue to be unpaid amid the ongoing partial US government shutdown.
Summary:
Zee Group companies' market capitalisation fell nearly â¹14,000 crore on Friday after a report said promoter Essel Group's name emerged in a probe linked to large deposits made after demonetisation.
Summary:
Maharashtra's Raigad collectorate on Friday started demolishing PNB scam-accused diamantaire Nirav Modi's seaside mansion in Alibaug, reportedly worth â¹100 crore.
Summary:
Mexican actor Jorge Antonio Guerrero, who featured in the Oscar-nominated film 'Roma', might miss the Oscar award ceremony after three of his visa applications were rejected by the United States Embassy in Mexico.
Summary:
Malayalam actress Manju Warrier has denied reports that stated she was going to campaign for the Congress party in Kerala ahead of the 2019 Lok Sabha elections.
Summary:
Lyricist and filmmaker Gulzar said the "kind of language" used by politicians today may "spoil the younger generation" as the youth has started to take an interest in politics.
Summary:
Speaking about Ranveer Singh, filmmaker Karan Johar said that other actors like Ranbir Kapoor and Varun Dhawan don't have as much energy as Ranveer, but are "unique" in their own way.
Summary:
Former Indian batsman Sanjay Manjrekar praised pacer Mohammad Shami, saying, "Shami's Test match form prompted them to play in the [Australia] ODIs and he has been a revelation since then".
Summary:
Summary:
India's Yuvraj Singh hit 80 off just 57 balls for Air India in the ongoing DY Patil T20 Cup tournament in Mumbai, registering his first fifty in competitive cricket since early October last year.
Summary:
Addressing a rally in Bhubaneswar, Congress President Rahul Gandhi said if the party is voted to power in 2019 elections, it will waive off loans of Odisha's farmers within 10 days.
Summary:
Speaking about Priyanka Gandhi Vadra joining active politics, actor and BJP MP Paresh Rawal said if Priyanka is Congress' 'trump card' then why was the party 'playing with a joker till now'.
Summary:
Bengaluru-based bike taxi app Rapido has raised â¹52.67 crore led by Integrated Capital in a Series A funding round.
Summary:
The solar-powered rover was designed to travel about 1 km and operate for 90 Martian days (sols).
Summary:
Addressing the nation on the eve of the 70th Republic Day, President Ram Nath Kovind said that IndiaâÂÂs pluralism is its greatest strength and its greatest example to the world.
We must...and we'll have all three," he further said.
Summary:
Andhra Pradesh CM N Chandrababu Naidu has said that even if people have four children, it will be "encouraged".
This is shocking," Naidu added.
Summary:
After search for the missing plane carrying 28-year-old Cardiff City forward Emiliano Sala was called off, the sister of the Argentine footballer urged police and authorities to not give up searching.
The plane has been missing since Monday night.
Summary:
Behtar bante jaane ka yeh safar rukega nahin, mere humsafar," Google said.
Summary:
A month after one of Zomato's delivery executives was caught on camera eating from the food he was to deliver, the Gurugram-based food delivery unicorn has hired psychiatrist Dr Rohit Garg to offer counselling to its staff.
Summary:
A lunar sample returned by the Apollo 14 astronauts in 1971 may contain fragments of Earth's oldest rock from about 4 billion years ago, a NASA study has found.
Summary:
The Clock is set since 1947 by scientists worldwide including 14 Nobel Laureates.
Summary:
A woman who killed her husband after he called her a "prostitute" has been absolved of murder charges by the Supreme Court.
Summary:
India has called upon the people of Venezuela to find a solution to resolve the political crisis through dialogue without resorting to violence.
Summary:
A woman was abducted from outside a beauty parlour on Friday, hours before her wedding in Punjab's Muktsar.
Summary:
The Gujarat Forest Department has started relocating mugger crocodiles, an endangered species, from two ponds near the Statue of Unity to make way for a seaplane service.
Summary:
Passengers experienced various symptoms including dizziness and vomiting during the plane's de-icing before takeoff.
Summary:
As many as 8 lakh federal workers continue to be unpaid amid the partial government shutdown, which is the longest in US history.
Summary:
Veteran investor Mark Mobius has said that he is "particularly interested in India at this stage".
Summary:
The Supreme Court on Friday upheld the constitutional validity of the Insolvency and Bankruptcy Code, 2016, in its entirety.
Summary:
Tabu further said that actors today are open to "experimenting" with their film choices.
Summary:
"[The series is] completely mad, and...family oriented...There is no reason not to make it," the actor added.
Summary:
Actor Boman Irani has joined the cast of the upcoming biopic 'PM Narendra Modi', starring Vivek Oberoi.
Summary:
Speaking about the contribution he wants to make to the LGBTQ community as a filmmaker, Karan Johar said, "I am ready to make a legit gay story." "I would want to start working on it right after I am done directing 'Takht'," the filmmaker added.
Summary:
Indian batsman Wasim Jaffer became the first batsman to have scored 1,000 runs in a season twice in the history of the Ranji Trophy.
Summary:
Notably, this was Zhang's first Grand Slam title of any kind.
Summary:
Vidarbha will face the winner of the semifinal between Saurashtra and Karnataka.
Summary:
Taylor will rejoin the team for the ODI series in Dubai.
Summary:
Former New Zealand captain Brendon McCullum helped Team Rugby, comprising New Zealand's rugby players, beat Team Cricket in the inaugural Black Clash T20 at Christchurch's Hagley Oval on Friday.
Summary:
On Tuesday, Jaitley underwent a surgery at a hospital in New York, as per reports.
Summary:
The girl was playing in front of her house when the man, her neighbour, took her to an isolated place and raped her, a police official said.
Summary:
Of these, 146 were awarded Police Medals for Gallantry (PMG) and three personnel were decorated with the PresidentâÂÂs Police Medal for Gallantry (PPMG) award.
Summary:
The US recognised opposition leader Juan Guaidó as Venezuela's interim President.
Summary:
Sequoia & Y-combinator backed investment platform Groww uses technology to make investing free and accessible to everyone in India.
Summary:
Discussing about gender discrimination, screenplay writer Juhi Chaturvedi said at home, concepts like man being head of the family and 'kanya daan' need to change.
Summary:
"Nawazuddin is [an] outstanding performer in a film best left alone," said NDTV.
It has been rated 2.5/5 (Times Now), 1.5/5 (NDTV) and 3/5 (Koimoi).
Summary:
Shiv Sena workers staged a protest inside the premises of a movie hall in Navi Mumbai on Thursday for not displaying 'Thackeray' movie poster.
Summary:
World number one Novak Djokovic defeated Lucas Pouille in the semi-final to reach Australian Open men's singles final for the seventh time.
Summary:
Facebook CEO Mark Zuckerberg has said that "we don't sell people's data, even though it's often reported that we do".
Summary:
A video of Congress President Rahul Gandhi has surfaced online, showing him helping a photographer who fell down the stairs get up.
Summary:
Claiming Congress has realised there's "nothing to gain from hate," party President Rahul Gandhi today said, "I look at Mr (Narendra) Modi and when he abuses me, I feel like giving him a hug." He added, "The best thing that's happened to me is the abuse I've got from BJP and RSS.
Summary:
Lingerie retailer Clovia's parent company Purple Panda Fashions has raised $10 million in a fresh funding round led by Singapore-based firm AT Capital.
Summary:
India on Thursday became the first country to use the fourth and final stage of a rocket as an orbital platform for experiments, which normally turns into debris after ejecting a satellite.
Summary:
The chargesheet filed in the murder case of 20-year-old aspiring model Mansi Dixit, who was killed in October in Mumbai, revealed that 19-year-old aspiring photographer Syed Muzammil killed her because she refused to have sex with him.
Summary:
Wyllys' Socialism and Liberty Party said that he'll be replaced by another gay lawmaker, David Miranda.
Summary:
US Senator Elizabeth Warren has proposed a new wealth tax which would cost the world's richest person Jeff Bezos $4.1 billion in the first year.
Summary:
The CBI has said it may investigate current ICICI Bank CEO Sandeep Bakhshi and Goldman Sachs India co-CEO Sonjoy Chatterjee in the Kochhar-Videocon loan case.
Summary:
Shilpa Shetty has said that women don't need to prove their capabilities to anyone.
One of the acts highlighted the challenges that women face.
Summary:
Swara Bhasker, along with her brother Ishan, will launch her production house Kahaaniwaaley.
Summary:
Wishing wife Soha Ali Khan on their fourth wedding anniversary on Friday, Kunal Kemmu shared their wedding picture and wrote, "To friendship to love to parenting together.
Summary:
Mizoram Chief Minister Zoramthanga on Thursday said that the Mizo National Front (MNF) "would withdraw its support to NDA" if the Citizenship (Amendment) Bill is not revoked.
Summary:
After his sister Priyanka Gandhi Vadra entered active politics, Congress President Rahul Gandhi said, "The discussion to include Priyanka was going on for years." He added, "She then said her children were young and she needed to take care of them.
Summary:
"RSS...believes it is the only institution in the country.
He further said that Congress "respects decentralisation, independence of institutions and constitutional advances".
Summary:
After Priyanka Gandhi Vadra entered active politics, the Shiv Sena on Friday said Priyanka will emerge as the "queen" if she plays her cards well.
Summary:
A teacher has been arrested for allegedly raping a Class 2 student in a school in Krishna district, Andhra Pradesh.
Summary:
Former Madhya Pradesh CM Shivraj Singh Chouhan on Thursday said, "Reports about people being given â¹10, â¹20...in the name of farm loan waiver is a cruel joke." He further claimed the list of beneficiaries being published in English was confusing for farmers.
Summary:
While Gaikwad was trying to control the assembled crowd, the cameramen were trying to record a video of the animal when it pounced on them, an official said.
Summary:
Delhi Metro services will be partially curtailed on Saturday as part of security arrangement for Republic Day, Delhi Metro Rail Corporation said.
Summary:
At least seven people have died due to swine flu in the past 24 days in Punjab's Ludhiana, district Civil Surgeon Parvinder Pal Singh Sidhu said.
Summary:
It was followed by Gujarat with 438 cases and eight deaths and Delhi with 387 cases.
Summary:
Celebrating its 25th year, Mercedes-Benz India is set to redefine India's luxury space in the automotive segment by launching the new V-Class.
Summary:
The Supreme Court on Friday refused to stay the implementation of 10% reservation in jobs and education for economically weaker section of the general category.
Summary:
In a world where negative news is all around us, RPG has introduced Happiness Studios, a platform of positive stories.
Summary:
"We've worked with this person for nine years.
Summary:
After Hardik Pandya and KL Rahul were suspended over their comments on women on 'Koffee with Karan', filmmaker Karan Johar revealed his mother was "very upset" with him over the incident.
Summary:
A probe is on," said police.
I suspect RSS-BJP workers were behind the attack," Priyanandan said.
Summary:
BJP has demanded an unconditional apology from Congress President Rahul Gandhi after a cartoon put up by the party in Telangana used 'Draupadi Vastraharan' from Mahabharata as an analogy during the protests on Thursday.
Summary:
The Rohtak residence of former Haryana CM Bhupinder Singh Hooda is among the 30 premises that have been raided on Friday in Haryana and Delhi-NCR in connection with an alleged land scam in Gurugram.
Summary:
After Priyanka Gandhi Vadra was appointed as Congress General Secretary of Uttar Pradesh East, Bihar Minister Vinod Narayan Jha said, "Votes cannot be won on basis of beautiful faces...
Summary:
Discussing the resemblance between Priyanka and late PM Indira Gandhi, he said, "Duplicates do not work in politics.
Summary:
Notably, UK Prime Minister Theresa May's Brexit plan was defeated in parliament last week.
Summary:
Mahajabeen, wife of militant-turned-soldier Lance Naik Nazir Ahmad Wani who'll be awarded with Ashoka Chakra, said, "I didn't cry when I was told he's no more.
Wani gave up terrorism and joined Army in 2004.
Summary:
nThe Goa Cabinet has approved a proposal to impose a fine of â¹2,000 on people who drink alcohol or cook in public and a fine of â¹10,000 if a group of people is doing so.
Summary:
The power was reportedly disrupted on Tuesday and resumed after 14 hours on Wednesday.
Summary:
Katrina Kaif, who opted out of choreographer-filmmaker Remo D'souza's upcoming dance film 'ABCD 3', said, "'Bharat' needs an Eid release which is in June...Unfortunately, we couldn't fit in the time for that one." Katrina had stepped in for Priyanka Chopra in Salman Khan starrer 'Bharat' after Priyanka cited personal reasons to opt out.
Summary:
Pankaj Tripathi has said now he's very particular when it comes to choosing a film, adding, "Now I know the kind of work that I would like to associate myself with." "I've nothing against smaller roles...they made me what I'm today.
Summary:
American singer Alecia Beth Moore, professionally known as Pink, will be honoured with a star on the Hollywood Walk of Fame on February 5.
Summary:
Reacting to the sexual harassment allegations against Rajkumar Hirani, actress Sayani Gupta said, "I was like 'Oh my god!
Sayani further said every single person who comes out needs to be heard.
Summary:
Karan Johar, while talking about working with Kangana Ranaut, said, "I have no problem with her...If the film demands a Kangana, if a filmmaker wants her then why not?" "Just because we had personal differences doesn't mean we are not going to work together," he added.
Summary:
Grammy-winning 29-year-old singer-songwriter Chris Brown, who was arrested after a 24-year-old woman accused him of raping her, has filed a defamation case against the woman.
Summary:
England pacer James Anderson matched Sir Ian Botham's tally of 27 Test five-wicket hauls for England on day two of the first Test against the Windies.
Summary:
After Priyanka Gandhi Vadra entered active politics, SAD chief Sukhbir Singh Badal said, "I think they are training her so that when (Congress President) Rahul Gandhi will fail they can bring in Priyanka Gandhi." He added, "This is all drama and their media strategy.
Summary:
Summary:
Talking about the 10% reservation for economically weaker section of general category, RJD leader Tejashwi Yadav said, "How can someone earning â¹8 lakh a year be called poor?" "ItâÂÂs strange mathematics...one who can pay â¹72,500 as tax is being given reservation by this government,â he added.
Summary:
A 6-year-old girl named Rimjhim has gifted wooden clogs crafted by her deceased father to UP CM Yogi Adityanath.
Summary:
Jammu and Kashmir Governor Satya Pal Malik on Thursday approved the J&K Reservation Act (Amendment) Bill, 2014, which grants reservation to Pahari community.
Summary:
Following CoA's decision to lift the bans on Hardik Pandya and KL Rahul, the BCCI has decided to include Pandya in India's limited-overs squad for the series against New Zealand.
Summary:
The Indian Space Research Organisation (ISRO) on Thursday successfully launched a small communication student-made satellite Kalamsat-V2 and imaging satellite Microsat-R through its PSLV-C44 into the intended orbit.
Summary:
He was part of the crew responsible for functioning of the generator being used in the shoot.
Summary:
"The magistrate ordered them to be sent outside the city for eight days," said a police officer.
Summary:
Kangana Ranaut starrer 'Manikarnika: The Queen of Jhansi', which released today, "is a well-made historical with the right scale, emotional quotient and battle sequences," said Bollywood Hungama.
It has been rated 3.5/5 (Bollywood Hungama, TOI, Koimoi).
Summary:
Reacting to Pakistan captain Sarfaraz Ahmed calling South Africa's Andile Phehlukwayo 'Abey Kaale' during the second ODI, ex-Pakistan captain Wasim Akram said Sarfaraz needs to be more responsible.
Summary:
India Women opener Smriti Mandhana, who slammed a match-winning knock of 105(104) against New Zealand Women at Napier on Thursday, said she watched the India-New Zealand men's ODI at Napier to understand the pitch.
Summary:
Two suspected Jaish-e-Mohammad terrorists, Abdul Latif Ganai and Hilal Ahmad Bhat, have been arrested on charges of planning to carry out terror strikes in Delhi during Republic Day celebrations.
Summary:
At a White House event on the Reciprocal Trade Act, US President Donald Trump said that he got India to cut tariffs on motorcycles from 100% to 50% "just by talking for about two minutes".
Summary:
Setia then got his licensed gun and opened fire at them, though they escaped unhurt.
Summary:
A Tamil Nadu man, who was facing death penalty in Kuwait, had his sentence commuted to life imprisonment by the government after his family raised â¹30 lakh 'blood money' to pay the victim's family.
Summary:
I'd like to do something in this, other than comedy." "I'm offered a lot of comedy films.
Kartik further said comedy's the most difficult thing to do.
Summary:
The deadline of the PMP has moved ahead from anytime in 2019-20, to February 2019, according to reports.
Summary:
After Priyanka Gandhi Vadra was appointed as the Congress General Secretary of Uttar Pradesh East, Union Home Minister Rajnath Singh said, "We do not consider Congress a challenge in UP.
Summary:
McLaren has revealed its concept car for Formula 1 in 2050, 'MCLExtreme', that could feature an AI co-pilot.
Summary:
Gurugram-based fresh milk startup Country Delight has reportedly raised around $7-10 million in a Series B round of funding.
Summary:
The methods use water vapour in the air to absorb light and create sound.
Summary:
The Maharashtra government on Thursday announced disbursement of â¹2,900 crore for relief measures in drought-affected areas of the state.
Summary:
Around 25,000 security personnel will be deployed in and around Delhi's Rajpath to prevent any untoward incident during the 70th Republic Day celebrations.
Summary:
Summary:
Pakistan's jailed former Prime Minister Nawaz Sharif on Thursday quoted Mirza Ghalib to describe his condition when his party leaders visited him in jail in Lahore, the local media reported.
Summary:
WikiLeaks said that US prosecutors have approached people in the US, Germany and Iceland "and pressed them to testify against Assange".
Summary:
Former Scottish First Minister Alex Salmond was on Thursday charged with attempted rape and sexual assault.
Summary:
Media and entertainment company Reliance Entertainment on Thursday said it has elevated Shibasish Sarkar to the role of Group CEO for the content, digital and gaming segments.
Summary:
The CBI has booked former Air India Chairman and Managing Director Arvind Jadhav for allegedly violating procedures during promotions.
Summary:
TRAI has launched a web application for Direct-To-Home (DTH) and cable TV subscribers to help them preview subscription packs and prices.
Summary:
Presenting an ode to friendship that lasts through thick and thin, 'Four More Shots Please' traces the journey of 4 women best friends who face their highs and lows together in the city of Mumbai and more often than not, end the day with some shots.
Summary:
A Tamil Nadu milk dealers' association has approached Chennai Police seeking a ban on the practice of celebrating movie releases with 'paalabishekam', which involves pouring milk over stars' posters and cutouts.
Summary:
Rajkummar Rao's girlfriend Patralekhaa has revealed to 'Humans of Bombay' she first saw him in 'Love, Sex Aur Dhokha', while adding, "I thought the weird guy he played was...what he was like." "He first saw me in an ad and thought, 'I'm going to marry her'," she added.
Summary:
The boys were taken to Syria by their father who was an ISIS fighter in 2014.
Summary:
Ex-England captain Kevin Pietersen trolled India captain Virat Kohli after the latter shared a picture with the caption, "Basking in the sun." Pietersen pointed out Kohli was "more in the shade" after which Kohli said his first caption was "much worse" and that his face was still in the sun.
Summary:
"Investigate the football mafia because I don't believe this was an accident," she wrote in a now deleted Twitter post.
Summary:
The search for the missing plane carrying 28-year-old Cardiff City forward Emiliano Sala has been called off, the police has said.
Summary:
Reacting to sun stopping play in the first New Zealand-India ODI at Napier for around 37 minutes, Napier's Mayor Bill Dalton said that players need to toughen up as cricket is an outdoor sport.
Summary:
Speaking about Congress President Rahul Gandhi's sister Priyanka Gandhi Vadra joining active politics, Lok Sabha Speaker Sumitra Mahajan said, "Rahulji has accepted he canâÂÂt do politics all alone, and for that he is taking PriyankaâÂÂs help." "She (Priyanka Gandhi Vadra) is a good woman," Mahajan added.
Summary:
Names of as many as 80 officers from four IPS batches were presented before the committee.
Summary:
Their families began looking for the girls about an hour after they went outside to play.
Summary:
Pictures of memes-inspired gowns worn by models at a fashion show in Paris have gone viral.
The gowns had writings like 'Sorry, I'm late.
Summary:
India's biggest airline IndiGo has named Ronojoy Dutta as its CEO for a period of five years.
Summary:
Yes Bank on Thursday named Deutsche Bank's India head Ravneet Gill as its next CEO.
Summary:
Mohta had reportedly taken â¹25 crore from jailed Rose Valley chairman Gautam Kundu and had threatened Kundu when asked to return the money.
Summary:
'The Gandhi Murder', a film based on Mahatma Gandhi's assassination, will not release in India as "certain elements have issued threats", the film's producer Lakshmi R Iyer said.
Summary:
According to data reported by OpenSignal, India experiences its fastest average 4G download speed of 16.8 Mbps at 4 am and its slowest average speed of 3.7 Mbps at 10 pm.
Summary:
Facebook Chief Operating Officer (COO) Sheryl Sandberg, in an interview at the World Economic Forum in Davos, said the social media platform needs to win back trust.
Summary:
Renault on Thursday said it has appointed tyre giant Michelin's CEO Jean-Dominique Senard as its new Chairman and Thierry Bolloré as CEO.
Summary:
Elon Musk-led SpaceX's 30-foot-wide Starship rocket prototype, to be launched to suborbital heights, was damaged after strong winds blew over the upper section of the rocket.
Summary:
A container of radioactive isotope Cs-137, which went missing from ONGC base in Andhra Pradesh earlier this month, was located by police in a scrapyard on Wednesday.
Summary:
US space agency NASA has discovered a fresh "two-toned blast pattern" near the south pole of Mars, captured by the Mars Reconnaissance Orbiter (MRO).
Summary:
Malik added his administration was in the process of formulating a new package for the rehabilitation of terrorists.
Summary:
The new 10% quota for the Economically Weaker Sections (EWS) in the general category will be applicable to all central government posts from February 1, an official order said.
Summary:
The Barak 8 LRSAM missile defence system has been jointly developed by DRDO and Israel Aerospace Industries.
Summary:
A gunman killed all five people on Wednesday inside a bank in Florida, US, police said.
Summary:
Tamil Nadu CM Edappadi K Palaniswami on Thursday announced the state has signed agreements amounting to over â¹3 lakh crore during the second edition of the Global Investors Meet (GIM).
Summary:
Hardik Pandya and KL Rahul, who were suspended pending inquiry for their comments on women on 'Koffee with Karan', are available for Team India selection after the CoA lifted the ban on them with immediate effect today.
Summary:
Speaking to 'Humans of Bombay', Rajkummar Rao's girlfriend Patralekhaa revealed, "He [Rao] would...go out of his way for me.
Summary:
Actor Kartik Aaryan has revealed his parents still scold him and sometimes even hit him to keep him grounded.
Summary:
Actor Govinda's 34-year-old nephew Janmendra Ahuja passed away on Thursday morning after suffering from a heart attack.
Summary:
Punjabi singer-actor Ammy Virk will be making his Bollywood debut with Kabir Khan directorial '83, which is based on India's first World Cup victory in 1983.
Summary:
"It wasn't only physical but mentally it was very tough...It really took me a while to believe.
Summary:
"Well, there was a year when he (Mark Zuckerberg) was only eating what he was killing," said Dorsey.
Summary:
He replaces Sultan Muhammad V of Kelantan, who stepped down earlier this month, making it the first abdication in Malaysia's history.
Summary:
The leaves will be given every year over the Chinese New Year to "go home and date", the company said.
Summary:
Billionaire Ken Griffin, who bought the most expensive US home for $238 million (â¹1,700 crore) in New York, is the CEO of $28-billion Citadel hedge fund.
Summary:
Around 167,500 shares traded at prices less than 25% of the previous day's close.
Summary:
The show will reportedly be aired on the radio channel 92.7 Big FM and will be launched in March, this year.
Summary:
Speaking about the #MeToo movement in India, filmmaker Karan Johar said, "The movement has led to tremendous accountability in the environment I occupy." "I am a feminist.
Summary:
The Bombay High Court on Thursday rejected a plea seeking a stay on the release of the upcoming Kangana Ranaut starrer 'Manikarnika: The Queen Of Jhansi'.
Summary:
Actress Kangana Ranaut revealed that she had decided she wanted to become a director while shooting for her film 'Queen', adding, "After 'Queen', I started to feel absolutely underutilised." "I started thinking that acting isn't...for me and I must pursue direction," she said.
Summary:
"Everybody has done a great job in the film, but Kangana...immortalised the character of Rani Lakshmi Bai,â Manoj added.
Summary:
Earlier in 2017, SoundCloud Co-founder and then CEO Alexander Ljung had stepped down from his role as CEO.
Summary:
Speaking at World Economic Forum 2019, Microsoft CEO Satya Nadella said, the company welcomes regulation on facial recognition technology that'll help the marketplace "not be a race to the bottom".
Summary:
"We've confirmed that Bing is currently inaccessible in China and are engaged to determine next steps," Microsoft said.
Summary:
Venture capital firm Sequoia Capital India has unveiled its startup incubator and accelerator programme 'Surge', open to startups based out of, or building for, Indian and Southeast Asian markets.
Summary:
Delhi-based live sports engagement app Rooter has raised â¹1 crore funding from Anthill Ventures along with its network of investors.
Summary:
In the mission, funded by late Microsoft Co-founder Paul Allen's foundation, Seagliders made 18 trips into the ice shelf's cavity.
Summary:
Hengjun, a writer and former Chinese diplomat, is now an Australian citizen.
Summary:
Saudi Arabia, which does not currently possess nuclear weapons, has built its first-known ballistic missile factory, reports quoting weapons experts and image analysts said.
Summary:
Gill, who is currently heading Deutsche Bank India, will join Yes Bank by March 1.
Summary:
European planemaker Airbus' CEO Thomas Enders has branded the UK government's handling of Brexit a "disgrace" and warned the aerospace firm could pull out of the UK.
"If there's a no-deal Brexit, we'll have to make potentially harmful decisions for the UK," he said.
Summary:
Australia captain Tim Paine's wife Bonnie took to Instagram to react to ICC's sketch for India wicketkeeper-batsman Rishabh Pant, which showed him sitting with Paine and his family.
Summary:
Deutsche Bank's India Chief Executive Officer (CEO) Ravneet Singh Gill will replace Rana Kapoor as YES Bank's Managing Director and CEO, the private lender announced on Thursday.
Summary:
Nawazuddin Siddiqui, while speaking about his understanding of Thackeray's character, said, "I think all his anger and arrogance [were] justified considering the situation...the society went through during that time." "There was a time in Maharashtra when all the mills were shut down...The youth suddenly faced unemployment.
Summary:
Actress Ankita Lokhande has said she has been constantly misunderstood just like her 'Manikarnika: The Queen of Jhansi' co-star Kangana Ranaut, adding, "It's because our personalities are like that, hum kisi ke aage peeche nahi ghumte, we don't bow down to anything." "I want to tell everyone that Kangana has a very beautiful soul.
Summary:
World number two Rafael Nadal defeated 20-year-old Stefanos Tsitsipas in Australian Open semi-final on Thursday to reach his 25th Grand Slam final.
Summary:
Summary:
After Congress announced Priyanka Gandhi Vadra's entry into active politics, the party shared a childhood photograph of Priyanka playing with her grandmother and former PM Indira Gandhi.
Summary:
Karnataka Congress MLA JN Ganesh is absconding days after he was booked by police for attempt to murder for allegedly assaulting his fellow party MLA Anand Singh.
Summary:
Ghosn, earlier fired by Nissan as Chairman, has been in a Tokyo jail since November 19, when he was arrested over charges of alleged financial misconduct.
Summary:
Chinese scientists have cloned five monkeys from a macaque monkey which was gene-edited to induce 'circadian rhythm disorders' associated with human diseases like depression, cancer and Alzheimer's.
Summary:
A day after security forces killed three terrorists in Jammu and Kashmir's Baramulla district, state DGP Dilbag Singh on Thursday announced Baramulla as "the first district of Kashmir with no surviving militant, as on date".
Summary:
The Supreme Court has refused to stay the proposed amendments to the SC/ST (Prevention of Atrocities) Act by which the Centre had restored the no anticipatory bail provision.
Summary:
Venezuela opposition leader Juan Guaidó on Wednesday declared himself as the country's interim President.
Summary:
North Korean leader Kim Jong-un has expressed "great satisfaction" after receiving a letter from US President Donald Trump.
Summary:
China's Hebei province has launched an app that shows people if they are within 500 metres of someone who is in debt and encourages them to report these debtors to the authorities, the Chinese state media reported.
Summary:
Chicago-based hedge fund billionaire Ken Griffin has purchased a 24,000-square-foot New York penthouse for $238 million (â¹1,700 crore), setting the record for most expensive home ever sold in US.
Summary:
Actor Boman Irani launched his own production house 'Irani Movietone' in Mumbai on Thursday.
Summary:
E-commerce major Amazon on Wednesday began testing its self-driving fully-electric robot, 'Amazon Scout', to deliver packages to users in Snohomish County in US' Washington.
Summary:
Jaguar Land Rover tested a system that projects the direction of travel onto the road ahead of self-driving vehicles.
Summary:
Summary:
Former Madhya Pradesh Chief Minister and BJP leader Babulal Gaur on Thursday claimed he is considering contesting the Lok Sabha polls from the Congress.
Summary:
Online media outlet BuzzFeed has announced it will lay off 15% of its employees next week.
Summary:
A fast track court in Muzaffarnagar has sentenced a man to seven years' imprisonment for forcing his wife to commit suicide in 2013 over dowry demands.
Summary:
Four people were killed by a speeding train while trying to cross a railway track in Hathras district on Thursday, Uttar Pradesh police said.
Summary:
US President Donald Trump recognised Venezuelan opposition leader Juan Guaidó as the interim President.
Summary:
The government proposed to privatise six airports including Jaipur, Lucknow and Guwahati.
Summary:
Finance Minister Arun Jaitley underwent surgery on Tuesday at a hospital in New York and has been advised at least two weeks' rest, according to reports.
Summary:
Get job-ready in Business Analytics with Great Learning's PGP-BABI, offered in collaboration with Great Lakes and UT Austin's McCombs School of Business, which is ranked No.2 in the world for Business Analytics.
Summary:
The CBI has registered a case against former ICICI Bank CEO Chanda Kochhar, her husband Deepak Kochhar and Videocon Group MD Venugopal Dhoot in connection with alleged irregularities in the â¹3,250-crore Videocon loan case.
Summary:
Lance Naik Nazir Wani, who joined Indian Army giving up terrorism in 2004, will be awarded Ashoka Chakra, highest peacetime gallantry award, posthumously on Republic Day. The 38-year-old lost his life in November.
Summary:
Poundland has called the product 'just a bit of fun'.
Summary:
Actor Prateik Babbar got married to his girlfriend Sanya Sagar, who is the daughter of BSP leader Pawan Sagar, earlier today in a traditional Maharashtrian ceremony.
Summary:
Singer's lawyer Andrew Brettler has denied the allegations against his client.
Summary:
She appeared to have pasted the text meant as a message to her, which was included in the now deleted post.
Summary:
American television show host Jimmy Fallon retweeted a picture of him and Anupam Kher shared by the actor and responded to it.
Summary:
World number four Naomi Osaka defeated world number eight Karolina Pliskova in the Australian Open 2019 semi-finals to reach her second straight Grand Slam final.
Summary:
Apple has fired 200 employees working for its secretive self-driving car division, codenamed Project Titan, a company spokesperson confirmed.
Summary:
After several parties asked for conducting General elections through ballot paper, Chief Election Commissioner Sunil Arora said, "I would like to make it very clear that we're not going back to the era of ballot papers." "We'll continue to use EVMs and VVPATs," he added.
Summary:
RJD leader Raghuvar Rai was shot dead by two motorcycle-borne assailants when he was out on a morning walk near his home in the Samastipur district of Bihar on Thursday morning, said the police.
Summary:
Farmers staged a protest against Congress President Rahul Gandhi during his visit to his parliamentary constituency Amethi in Uttar Pradesh, demanding employment or the land they gave for now shut cycle factory be returned.
Summary:
For the first time, four veterans from Netaji Subhas Chandra Bose's Indian National Army, all aged between 95 and 100, will take part in the Republic Day parade.
Summary:
Two occupants of the van and an occupant from the SUV were killed.
Summary:
The accused men took help of Google Maps to identify temples located at isolated places and steal valuables worth â¹2.9 lakh since September last year.
Summary:
A 40-year-old man has been arrested for allegedly killing and chopping his friend into pieces over a financial dispute, said Maharashtra police on Wednesday.
Summary:
CBI has registered an FIR in connection with alleged transactions between NuPower Renewables Private Limited controlled by Deepak Kochhar, husband of former ICICI Bank CEO Chanda Kochhar, and Venugopal Dhoot-controlled Videocon Group.
Summary:
Airtel Chairman Sunil Mittal has said that after Jio started operations, most other operators disappeared and lots of jobs were lost.
"One player is still playing the low tariff, high subsidy game; we've already started raising tariffs," he further said.
Summary:
Summary:
Addressing a function attended by Delhi Chief Minister Arvind Kejriwal, AAP MLA Amanatullah Khan on Wednesday claimed AAP will extend support to Congress if the next Prime Minister will be from the latter party.
Summary:
University of Massachusetts Amherst researchers have created fabric that can harvest body heat to power small wearable devices like activity trackers.
Summary:
An 18-year-old private tutor has been arrested for allegedly raping and murdering his six-year-old student in Ghaziabad, said the police on Wednesday.
Summary:
A woman gave birth to a baby girl on a âÂÂroad in Uttar Pradesh's Jalaun district after a government hospital allegedly refused to admit her and told her to come back after three days.
Summary:
The ATS seized chemicals, powder, phones, hard drives, SIM cards, knives and acid during the raids.
Summary:
"Both the companies are ready to sign definitive agreements, but ArcelorMittal is busy with Essar Steel acquisition," Singh added.
Summary:
With an unmatched performance coupled with great fuel efficiency, customers can take on every journey in full stride with the Big New WagonR.
Summary:
India captain Virat Kohli has become the tenth highest ODI run-getter, achieving the feat during his 45-run knock against New Zealand in the first ODI on Wednesday.
Summary:
Dhawan is the second fastest Indian batsman to reach the milestone.
Summary:
Eight-time Olympic gold medallist Usain Bolt has given up on his dream of becoming a professional footballer after having failed to agree a contract with Australian side Central Coast Mariners last year following a trial.
Summary:
Former India captain MS Dhoni and current captain Virat Kohli were seen riding a Segway on the ground following India's victory against New Zealand in the first ODI at Napier on Wednesday.
Summary:
Two-time Commonwealth Games gold medal-winning weightlifter Sanjita Chanu, whose provisional suspension from weightlifting over doping was revoked on Tuesday, said that she is distraught thinking about the mental trauma she went through.
I couldn't eat and sleep properly.
Summary:
"My words weren't directed towards anyone...and...
I didn't even mean for my words to be heard, understood or communicated to the opposing team or...cricket fans," he wrote.
Summary:
A comparison of last two General elections show that Congress performed better in the eastern region.
Summary:
Janata Dal (United) Vice President Prashant Kishor on Wednesday described the appointment of Priyanka Gandhi Vadra as the Congress General Secretary for Uttar Pradesh East as "one of the most awaited entries in Indian politics".
Summary:
A 21-year-old transgender woman was allegedly shot at for refusing to have sex with two men who offered her a ride in their car in Delhi, mistaking her for a girl.
Summary:
Summary:
Rajasthan's 23-year-old Shadab Hussain, a tailor's son, has topped the CA (old syllabus) final exam in his first attempt, the results of which were announced on Wednesday by the Institute of Chartered Accountants of India (ICAI).
Summary:
Haryana Fire Service personnel are attempting to identify the spot where people are trapped.
Summary:
"I was expecting a complete waiver of my loan," the farmer said.
Summary:
As many as six Indian sailors were killed and six others are missing after two ships caught fire in the Kerch Strait separating Crimea from Russia, where the blaze was still raging, the Ministry of External Affairs said.
Summary:
US President Donald Trump offered "build a wall and crime will fall" as the new Republican Party theme, referring to his demands to build a wall along the US-Mexico border in a bid to curb illegal migration and crime.
Summary:
Talking about the competition after Jio's entry, Airtel Chairman Sunil Mittal said, "All I have consistently said is that when the chips will fall, we will be the last man standing." "We've spent over $40-50 billion building Airtel...the company is still in great shape," Mittal added.
Summary:
Team India fast bowler Mohammad Shami, who on Wednesday became the fastest Indian bowler to reach 100 wickets in ODI cricket, has said that he likes Test cricket more than other formats.
Summary:
US-based company Boeing completed the first test flight of its self-driving electric vertical takeoff and landing (eVTOL) air taxi prototype.
Summary:
Huawei's ad video, allegedly similar to Stanford's video 'Cymatics: Science Vs. Music' released in 2014, was flagged by Stanford himself.
Summary:
The rocket also carried around eight NASA experiments.
Summary:
Egypt Antiquities Ministry on Wednesday said archaeologists have uncovered ancient tombs dating back to the Second Intermediate Period, 1782-1570 BC, in the Nile Delta.
Summary:
Researchers in Sweden's Lund University have created a camera that shows how birds see colours in the surroundings.
Summary:
The US' Federal Bureau of Investigation is not able to pay its informants and risks losing them and the information they provide amid the ongoing partial US government shutdown, an FBI Agents Association (FBIAA) report said.
Summary:
Australian MP Bob Katter has been criticised for calling homosexuality a "fashion trend" while on a campaign trail in Queensland ahead of the upcoming federal election.
Summary:
Canada's ambassador to China John McCallum has said that Huawei CFO Meng Wanzhou has "good arguments on her side" against being extradited to the US.
Summary:
The Supreme Court on Wednesday refused bail to Unitech promoters Sanjay Chandra and Ajay Chandra in a case relating to alleged siphoning of homebuyers' money.
Summary:
"Your claim to have memorized pi to two decimal places falls some distance short of the current record," Guinness said.
Summary:
During the period of Jaitley's indisposition, Goyal will hold these portfolios in addition to his existing portfolios.
Summary:
My fans are extremely possessive about me." "When there are negative comments about me or people troll me, my feed's flooded by fan messages," she said.
Summary:
UK's two-time Olympic gold medal-winning cyclist Victoria Pendleton has revealed she considered committing suicide last summer.
Summary:
The family of Netaji Subhas Chandra Bose has presented a cap worn by the leader to Prime Minister Narendra Modi.
Summary:
Railway Minister Piyush Goyal on Wednesday announced 2.3 lakh additional vacancies that will be filled over the next two years.
Summary:
The Punjab Institute of Cardiology had on Tuesday said that Sharif's heart is "bigger than normal", citing his echocardiogram report.
Summary:
Chinese model Zuo Ye who featured in a Dolce & Gabbana ad campaign accused of racism has said the controversy almost ruined her career.
Myself, my agent and my family got harassed through phone calls and emails," she said.
Summary:
A 49-year-old UK woman named Pascale Sellick says she is in "love" with her duvet (a soft quilt filled with feathers or synthetic fibre) and wants to 'marry' it on February 10.
Summary:
They've pre-booked most of the fleets," Congress leader Anand Sharma alleged.
Denying the charge, BJP called Congress a "machine of lies".
Summary:
Aamir Khan screened his upcoming short film 'Rubaru Roshni' for Art of Living founder Sri Sri Ravi Shankar in Bengaluru.
Summary:
Amrita Rao, who plays Bal Thackeray's wife Meena Thackeray in the upcoming biopic 'Thackeray', said it was "an honour" for her to portray the Shiv Sena founder's wife in the film.
Summary:
Earlier, Kangana had responded to the Karni Sena's threats against her film 'Manikarnika: The Queen of Jhansi', and had said she would "destroy" each of them.
Summary:
Sharing a picture with US talk show host Jimmy Fallon, Anupam Kher wrote, "When you meet someone whose work you admire, says he's a fan of your work, it's a wonderful and...humbling feeling." "Thank you dear [Jimmy Fallon] for your warmth, appreciation and generosity," Anupam added.
Summary:
The drawing was bought by a man in his 60s, reports said.
Summary:
On being asked about sunstrike break in the first New Zealand-India ODI, India captain Virat Kohli said, "I had never experienced it in my life [before]." "I actually got out in a game in 2014 because the sun was in my eyes.
Summary:
After India wicketkeeper-batsman Rishabh Pant was named Men's Emerging Cricketer of 2018, the ICC took to Twitter to share a sketch showing the 21-year-old sitting with Australia Test wicketkeeper-captain Tim Paine's family.
Summary:
Mumbai Police used a dialogue from the film 'Uri: The Surgical Strike' on Twitter to promote cybersecurity.
Summary:
Tonga Cable said it could take about two weeks to fix the cable damaged by "magnetic storm" and "lightning".
Summary:
Further, its screen will serve as a speaker and it will use eSIM instead of a physical SIM.
Summary:
Technology incubator Jigsaw, a subsidiary of Google-parent Alphabet, has created an online quiz to help test users' ability to detect fake emails meant for 'phishing' attacks to steal passwords or download malware.
Summary:
The platform said it never hides posts from the people that a user is following.
Summary:
Trained through this algorithm, the AI system can recognise radiological abnormalities in real-time, researchers said.
Summary:
The government could also sell shares in IRCTC, RailTel through IPOs, reports further said.
Summary:
India's largest airline IndiGo's operator InterGlobe Aviation on Wednesday reported a third-quarter profit of â¹191 crore, a 75% decline from the corresponding quarter last year.
Summary:
The company added that promoters Vodafone Group and Aditya Birla Group will contribute â¹11,000 crore and â¹7,250 crore, respectively.
Summary:
Actress-turned-politician Moushumi Chatterjee on Monday criticised a woman anchoring an event at a Surat hotel for wearing pants.
Summary:
Shilpa's father passed away in 2016 and since then Shilpa and her family have refused to repay the loan, he alleged.
Summary:
Actor Johnny Depp's attorney has claimed they have evidence that they'll use to disprove allegations of physical abuse against Depp by ex-wife Amber Heard.
Summary:
India captain Virat Kohli will be rested for the final two ODIs of the ongoing five-match series against New Zealand and the subsequent three-match T20I series, the BCCI announced.
Summary:
Mohammad Shami, who became the fastest Indian to reach 100 ODI wickets, dedicated the feat to his daughter Aairah.
Summary:
India wicketkeeper-batsman MS Dhoni advised Chinaman bowler Kuldeep Yadav to bowl from round the wicket to New Zealand's Trent Boult on the last delivery of the 38th over.
Udhar se [round the wicket] daal sakta hai," Dhoni told Kuldeep.
Summary:
The 337-run knock helped Pakistan draw the match.
Summary:
Speaking at the World Economic Forum in Davos on Wednesday, Chinese e-commerce giant Alibaba's billionaire Co-founder Jack Ma said, "When I hire people, I hire people smarter than me." "I think 'In 4 or 5 years he could be my boss, I'd like to work for him'," Ma added.
Summary:
Madras High Court has said that late Tamil Nadu CM J Jayalalithaa cannot be termed a convict in a disproportionate assets case and dismissed a petition challenging construction of a memorial for her stating she's a convict.
Summary:
The Chinese Army now accounts for less than half of the total number of People's Liberation Army (PLA) troops, the Chinese state media said.
Summary:
Shares of the company, where Zhu is Honorary Chairman and the senior adviser to the board, surged 30% on Wednesday, the most in over three years.
Summary:
Global marketing firm Kantar's CEO Eric Salama was stabbed in the chest with an "enormous knife" in an attempted carjacking as he walked to his car from a cafe in London on Sunday.
Summary:
TV actor Ashiesh Roy, known for his role in the show 'Sasural Simar Ka', suffered a paralytic stroke that reportedly rendered the left side of his body immobile.
Summary:
Diet Sabya has accused Purple Paisley of ripping off a dress from Balmain's fall 2018 collection.
Summary:
Kangana Ranaut, who has been credited as the co-director of the upcoming film 'Manikarnika: The Queen of Jhansi', said that "deep-rooted sexism" made people doubt her abilities as a director.
Summary:
Actress Richa Chadha, while praising actor Akshaye Khanna, said, "He is brilliant, so underrated and intelligent." "I have admired Akshaye Khanna's work in offbeat films like 'Gandhi, My Father' and the cult film 'Dil Chahta Hai'," she added.
Summary:
Nawazuddin Siddiqui has said he doesn't endorse an ideology as it will affect his growth as an actor.
Summary:
Google.org announced it is donating $2 million (over â¹14 crore) to Wikipedia's parent organisation's fund, the Wikimedia Endowment.
Summary:
Users said they were unable to send and receive messages, however, WhatsApp has not yet confirmed the outage.
Summary:
Chinese electronics company Xiaomi, in a teaser video, revealed its flexible phone concept with a dual-folding display.
Summary:
US social game developer Zynga's Co-founder Mark Pincus is reportedly raising up to $700 million for a new investment fund.
Summary:
This comes days after a class action lawsuit against Oracle alleged it systematically underpaid its female employees.
Summary:
Summary:
British academic Matthew Hedges has said that he was forced by the UAE to confess to spying for his country.
Summary:
He was already on probation for stalking and threatening women, police said.
Summary:
Of all the countries taking part, Norway had the highest representation of women attendees at 37% with 10 participants.
Summary:
The tribunal is the forum of second appeal in GST laws and the first common forum of dispute resolution between Centre and states.
Summary:
India defeated New Zealand by eight wickets (DLS) in the first ODI of the five-match series at Napier on Wednesday.
Summary:
Actor Rajinikanth's younger daughter Soundarya is set to get married to actor and businessman Vishagan Vanangamudi on February 11 in Chennai, as per reports.
Summary:
Karan Johar, while opening up about the controversy over Hardik Pandya and KL Rahul's comments on women in 'Koffee With Karan', said, "I've had...sleepless nights just wondering...how I can undo this damage." "I feel very responsible because it was my show," he added.
Summary:
The Instagram account which broke American television personality Kylie Jenner's record of most liked Instagram picture by posting just a brown egg's picture, has now posted two more pictures.
Summary:
World number one Novak Djokovic reached Grand Slam semi-finals for the 34th time after Kei Nishikori retired with an upper thigh injury in the second set of their Australian Open 2019 quarter-final on Wednesday.
Summary:
Argentine forward Emiliano Sala's audio messages sent to his friends and relatives before the small passenger plane carrying him from France's Nantes to Wales' Cardiff vanished over English Channel have surfaced online.
Summary:
BSP, which extended support to Congress in forming government in Madhya Pradesh, has threatened the Kamal Nath-led government of "Karnataka-like situation" if its two MLAs aren't given ministerial post in the state cabinet.
Summary:
In BJP, the party is family," Patra added.
Summary:
After Priyanka Gandhi Vadra was appointed as the Congress General Secretary of Uttar Pradesh East on Wednesday, her husband Robert Vadra posted, "Congratulations P...always by your side in every phase of your life.
Summary:
A 32-year-old man died in Delhi after he allegedly shot himself in the head while showing safety catch feature of his new gun to his friends.
Summary:
The newly elected MLAs in Telangana will soon move into 120 houses, each having 3 bedrooms and spread over 2,400 square feet, that have been built at a total cost of â¹166 crore.
Summary:
JSW Group Chairman Sajjan Jindal's daughter-in-law Anushree Jindal has launched a microfinance company, Svamaan Financial Services, with family money as initial capital.
Summary:
Known for vacuum cleaners and hand dryers, Dyson said it was a "global technology company", with 96% of its sales outside Britain.
Summary:
She paid tribute ahead of the release of her film 'Manikarnika: The Queen of Jhansi' which will be clashing with the release of the biopic 'Thackeray'.
Summary:
Summary:
Summary:
'Taarak Mehta Ka Ooltah Chashmah' producer Asit Modi, while talking about Disha Vakani [who plays 'Daya Ben'] quitting the show, said, "Maybe true.
Summary:
Ranveer Singh, who will be seen playing a street rapper in the upcoming film 'Gully Boy', revealed, "Hip-hop is something that's very alive inside me...I have a natural affinity and inclination towards it." "I was in class 3 or 4 when I first got into hip-hop," he added.
Summary:
Summary:
Gurugram-based car servicing startup GoMechanic has raised â¹30-35 crore ($4-5 million) in a Series A funding round from Sequoia Capital.
Summary:
Bengaluru-based online investment startup Groww has raised $6.2 million in its Series A round of funding led by Sequoia Capital India.
Summary:
Astronomers have captured the best-ever image of Sagittarius A*, the supermassive black hole at the centre of Milky Way galaxy.
Summary:
The UAE's support comes amid the current financial crisis in Pakistan.
Summary:
At least three crew members were killed after a nuclear-capable Tupolev-22M3 supersonic bomber crashed while trying to land in a snowstorm on Tuesday in Russia's Murmansk region.
Summary:
Two Saudi sisters whose bodies were found taped together on the shore of the Hudson River in New York last year committed suicide, the city's medical examiner said.
Summary:
Mukesh Ambani-led Reliance Industries has received the Competition Commission of India's (CCI) approval to acquire majority stakes in Den Networks, and Hathway Cable & Datacom, two of India's largest cable operators.
Summary:
The government said Mumbai's Jawaharlal Nehru Port Trust (JNPT) has become India's only port to be among the top 30 global container ports as per a Lloyds Report.
Summary:
UpGrad's 1-1 mentorship, resume building and mock interviews have been instrumental in helping learners transition.
Summary:
Priyanka Gandhi Vadra has joined active politics after being appointed as the Congress General Secretary for Uttar Pradesh East by party President and her brother Rahul Gandhi.
Summary:
Swara further said, "My learning for every girl out there is, do not subscribe to this notion of shame."
Summary:
Singer Chris Brown, who was released on Wednesday a day after being arrested by French police following rape accusations, took to social media and wrote, "For my daughter and my family this is so disrespectful and is against my character and morals!!!!" "I wanna make it...clear...This is false," he added.
Summary:
Actress Ankita Lokhande, on being asked if she'll reunite with ex-boyfriend Sushant Singh Rajput, said, "There's no way." Ankita added she's not on talking terms with Sushant.
Summary:
Summary:
Summary:
The first New Zealand-India ODI was stopped during India's 11th over due to the Sun being straight into the batsman's eyes from one end.
Summary:
Pliskova will face Naomi Osaka in her first Australian Open semi-final.
Summary:
In an interview with the Humans of Bombay, PM Narendra Modi revealed that every year for five days during Diwali, he would go to "a jungle- a place with only clean water and no people." "There would be no radios or newspapers, and during that time, there was no TV or internet anyway.
Summary:
Meanwhile, National Commission for Protection of Child Rights has recommended to ban the game across the country.
Summary:
The museum showcases various artefacts related to Netaji including the wooden chair and sword used by the leader.
Summary:
Kerala's oldest student, 97-year-old Karthiyani Amma, has been chosen to be the Commonwealth of Learning Goodwill Ambassador.
Summary:
The Supreme Court has granted bail to four men convicted in the Naroda Patiya case, in which at least 97 people were killed during the Gujarat riots in 2002.
Summary:
The woman's husband also admitted to hiring them.
Summary:
A man in Uttar Pradesh's Kannauj received an electricity bill of over â¹23 crore after consuming just 178 units of electricity.
The man approached the authorities after receiving the bill.
Summary:
A Russian passenger plane made an emergency landing in Siberia on Tuesday after a drunk man tried to hijack it and reportedly demanded that it be diverted to Afghanistan.
Summary:
JSW Steel's Chairman Sajjan Jindal on Tuesday said that Ruias must be given a "fair chance" to regain control of insolvent Essar Steel despite legal restrictions.
Summary:
Summary:
Sunny Leone will star in Mammootty's upcoming Malayalam film 'Madhura Raja', as per reports.
Summary:
Nawazuddin further said that despite hailing from a small village in Uttar Pradesh, he made his "dreams come true" in Mumbai.
Summary:
Summary:
Summary:
On testing the apps, Stefanko found that fake apps claimed to be navigation apps but simply opened Google Maps or used their interface to display ads.
Summary:
Self-driving delivery robot startup Starship with company Sodexo has launched a 25-robot-strong fleet to deliver food like coffee and pizza to US' George Mason University students, faculty and staff.
Summary:
European Space Agency has signed a contract with rocket maker ArianeGroup with plans to mine the Moon to extract regolith before 2025.
Summary:
Mexico registered more than 33,000 murders in 2018, the highest number since the government began keeping records over 20 years ago, figures released by the Interior Ministry showed.
Summary:
Suzuki Connect helps you connect to your car through a wealth of features and information that enhance your on-road experience.
In case of a technical malfunction, you can get immediate assistance from Maruti Suzuki support centre.
Summary:
"I took rest in the room you occupied in 2013, which has been converted into a shrine for you & #ChennaiExpress," Tharoor wrote.
No place for rest," Tharoor added.
Summary:
Speaking about his film Rangeela Raja's failure, producer and former Censor Board chief Pahlaj Nihalani said, "Govinda and I have the maximum number of enemies in the industry." He claimed the film didn't get the theatres required as the industry is run by a "glamorous mafia".
Summary:
The BCCI has announced all the five members of All-India Senior Selection Committee will be awarded â¹20 lakh each following India's historic tour of Australia, which saw them win both the ODI and Test series.
Summary:
Ex-cricketer Gautam Gambhir has said India should consider off-spinner Ravichandran Ashwin for 2019 World Cup irrespective of the fact that he last played an ODI in June 2017.
Summary:
US Open 2018 winner Naomi Osaka defeated world number seven Elina Svitolina in the Australian Open 2019 quarter-finals on Wednesday to win her 12th straight Grand Slam match.
Summary:
(Black guy, where's your mother sitting today?
What [prayer] have you got her to say for you today?)" Sarfraz was heard saying.
Summary:
Mohammad Shami has become the fastest Indian bowler to reach 100 wickets in ODI cricket, achieving the feat by dismissing opener Martin Guptill during the first ODI against New Zealand at Napier on Wednesday.
Summary:
The world's longest 3D-printed concrete pedestrian bridge, which is 26.3 metre-long and 3.6-metre-wide, opened in China's Shanghai last week.
Summary:
The passenger also asked the female crew members to help him remove his underwear and threatened to relieve himself on the floor.
Summary:
Prime Minister Narendra Modi wrote a letter to a Gujarat couple who defended the Rafale deal in their wedding card.
Summary:
The US Supreme Court has allowed President Donald Trump to enforce his policy of banning certain transgender people from the military.
Summary:
Bradley Cooper, who wrote, directed and acted in 'A Star Is Born', earned a nomination in the Best Actor category at the Oscars 2019.
Summary:
Spike Lee's BlacKkKlansman has landed the 61-year-old veteran filmmaker his first nomination in this category.
Summary:
Lady Gaga earned her first nomination in the Best Actress category for A Star Is Born at Oscars 2019.
Summary:
LCD display supplier Japan Display, which provided the LCD displays for the iPhone XR, is facing 'hardships' because of slow sales of the model, the report added.
Summary:
PM Narendra Modi has said that despite Congress being aware that only "15% of a rupee reached masses" during its rule, the party did nothing to stop the corruption.
Summary:
Mumbai-based used car marketplace Truebil has raised â¹100 crore in a Series B funding round led by Tokyo-based investor Joe Hirao.
Summary:
Some of the fired employees had reportedly helped construct the tunnel.
Summary:
Traders' body CAIT has urged Commerce Minister Suresh Prabhu to probe Amazon and Samara CapitalâÂÂs acquisition of billionaire Kumar Mangalam Birla's supermarket chain 'More'.
Summary:
Fossilised remains of a foot-long slimy sea creature have been identified as belonging to a 100 million-year-old hagfish, a creature with no jaws, eyes or true vertebrae.
Summary:
A school, Saraswati Shishu Mandir, in Uttarakhand's Chamoli collapsed on Tuesday after heavy rainfall in the region.
Summary:
At least 27 people were killed in a fire after a bus collided with an oil tanker in Pakistan on Monday, officials said.
Summary:
A 61-year-old Indian-origin man has been jailed for four months in Singapore over a 2004 hoax call about a bomb at the house of first Singapore Prime Minister Lee Kuan Yew. Ganesan Singaravel drank alcohol till early morning and then made the hoax call to the police.
Summary:
The external candidates could include those from other Tata Group companies, Bhat said.
Summary:
It said these people could do so now and file their Income Tax Returns within 21 days.
Summary:
The European Commission has said it fined MasterCard nearly $648 million for imposing rules that may have artificially raised card payment costs in the region.
Summary:
Davide is supporting YouTube channel PewDiePie in the race with T-Series to remain the world's most subscribed YouTube channel.
Summary:
A model who became a viral sensation after photo bombing celebrities while carrying a tray of Fiji Water on the Golden Globes red carpet has landed a cameo on American TV show 'The Bold and the Beautiful'.
Summary:
Hollywood's 36-year-old actress Anne Hathaway has revealed that she quit drinking alcohol in October last year for 18 years because she doesn't want to drink around her two-year-old son.
Summary:
In a tweet, ex-New Zealand men's team wicketkeeper Peter McGlashan revealed commentator Mitchell McClenaghan earned $575 for the final, while Wellington Blaze's all-rounder Sophie Devine got just $55.
Summary:
The couple didn't know who Pogba was and thought he was offering to click their picture.
Summary:
Reacting to Hardik Pandya and KL Rahul being suspended for their comments on women on 'Koffee with Karan', ex-India captain Rahul Dravid said the case shouldn't be taken too far as this hasn't happened for the first time.
Summary:
The Border Security Force (BSF) on Tuesday handed over a group of 31 Rohingya Muslims, stranded on the border after they were denied entry into Bangladesh, to the Tripura Police.
Summary:
The Loyola College in Chennai has issued an apology after a controversy over some paintings at an exhibition in its campus, which BJP and other outfits termed as desecration of Hindu symbols.
Summary:
Shuja, at a London event, claimed EVMs used by ECI can be tampered with.
Summary:
Pakistan on Monday said that it has shared a draft agreement on the Kartarpur corridor with India.
Summary:
The court was hearing a property dispute case.
Summary:
US billionaire Ken Griffin, the founder of $28-billion Citadel hedge fund, has purchased 3 Carlton Gardens, a 200-year-old home near Buckingham Palace in central London.
Summary:
An IndiGo flight returned to Lucknow shortly after it took off after the pilot observed "high vibration" in one of its engines, the airline said.
Summary:
Egyptian TV host Mohamed al-Gheiti has been sentenced to one year in prison for interviewing a gay man last year.
Summary:
While speaking about the #MeToo movement, actor Ajay Devgn said that allegations of sexual harassment and misconduct must be "investigated".
Summary:
Speaking about her upcoming film 'Manikarnika: The Queen of Jhansi', Kangana Ranaut revealed, "When...I had to direct 'Manikarnika', a lot of people said, '...This is like committing suicide'." "I donâÂÂt think from my head.
My film needed me," the actress said, explaining her decision to co-direct the film.
Summary:
Speaking about his film choices, actor Nawazuddin Siddiqui said, "I hate doing roles in my comfort zone." "I want to be a versatile actor.
Summary:
Researchers analysed about 8,800 shots by tennis players Novak Djokovic, Rafael Nadal and Roger Federer to structure the system.
Summary:
DJI has reportedly fired 29 employees in connection with the fraud.
Summary:
Criticising GST and demonetisation at the rally, Sinha had said he will continue to "show mirror" to BJP.
Summary:
US-based food delivery startup Munchery, which has raised a total of about $125 million in funding, has announced it is ceasing its operations effective immediately.
Summary:
As many as 102 one-horned rhinoceros have been poached and killed in the country since 2008, Ministry of Environment and Forests revealed in an RTI reply.
Summary:
Going by a popular belief, the girl's family thought the naturally formed dreadlocks were 'god-given' and prohibited her from cutting them, causing her health to deteriorate.
Summary:
Antarrashtriya Hindu Parishad President Pravin Togadia on Tuesday said he will launch a new political party on February 9 in New Delhi.
Summary:
The incident happened when the main accused allegedly lured her to a room in the school while two teachers locked the room's door from outside.
Summary:
The deadline for filing the extradition request is January 30.
Summary:
Oscar-winning director Alfonso Cuarón's Roma and Yorgos Lanthimos' The Favourite have received 10 Oscars 2019 nominations each, including those for Best Picture and Production Design.
Summary:
"One guy was slightly offbeat...with really big hair...that was me," said Shahid.
Summary:
Nadal will next face 20-year-old Stefanos Tsitsipas, who knocked Federer out in the round-of-16.
Summary:
A small passenger plane carrying 28-year-old Argentine footballer Emiliano Sala from France's Nantes to Wales' Cardiff vanished over the English Channel on Monday evening, according to the French civil aviation authority.
Summary:
In order to help ease passenger flow during rush hours, the Tokyo Metro service is offering free food coupons to early morning passengers on Tozai Line to convince more people to travel at different timings.
Summary:
Shamsul Haq, brother of an IPS officer, was among three terrorists killed on Tuesday in an encounter in Jammu and Kashmir's Shopian after security forces busted their hide-out.
Summary:
Sweety suspected her husband had an extra-marital affair and feared he may transfer his property to the other woman.
Summary:
Addressing the Pravasi Bharatiya Divas on Monday, Foreign Minister Sushma Swaraj said that while countries like the US, Japan and China are rapidly ageing, India is getting younger.
Summary:
The physical auction would be held on January 27 and 28 and e-auction from January 29-30 for remaining items.
Summary:
The body of a 31-year-old man, who was thought to have committed suicide on Saturday, was brought back to Uttar Pradesh's Noida before his last rites after his four-year-old daughter told the family that she witnessed his murder.
Summary:
Kanakadurga, one of the two women who entered the Sabarimala temple, has been shifted to a government-run home after her in-laws refused her entry in their house.
Summary:
The 69-year-old former PM is serving a seven-year jail sentence in Lahore.
Summary:
British Prime Minister Theresa May on Monday unveiled her Brexit 'Plan B' after the original deal was rejected by the Parliament last week.
Summary:
Swiss watchmaker Patek Philippe, the maker of $10,000-plus Calatrava watches, may be put up for sale, analysts at German investment bank Berenberg said citing industry talk.
Summary:
Karti Chidambaram has sought permission from the Supreme Court to travel to France, Spain, Germany and the UK over the next few months in connection with various tennis tournaments.
Summary:
Amid the trade war with the US, China's GDP expanded at 6.6% in 2018, the slowest annual pace since 1990.
Summary:
Hip-hop music producer Sajeel Kapoor said the makers of the upcoming film 'Gully Boy' used his song 'Mere Gully Mein', without paying him.
Summary:
CBFC chairman and screenwriter Prasoon Joshi, who wrote the dialogues and lyrics for the upcoming Kangana Ranaut starrer 'Manikarnika: The Queen of Jhansi', revealed, "Kangana as Rani Lakshmi Bai was [a] key reason to do the film." "She has the inherent emotion and talent required to play this role," he added.
Summary:
Apple announced its employees donated over $125 million to help non-profit organisations worldwide in 2018 as part of its 'Giving' programme.
Summary:
BJP President Amit Shah on Tuesday said there were nine Prime Ministerial candidates at the United India Rally held in Kolkata on Saturday.
They didn't even chant 'Vande Mataram' and 'Bharat Mata Ki Jai' in the rally," Shah further said.
Summary:
Paytm's e-commerce unit Paytm Mall has been affected by its cashback service and is "very close" to scaling down its B2C (business-to-consumer) business, as per a report.
Summary:
In a case of suspected human trafficking, a missing fishing boat carrying 100-200 Indian migrants may be headed to New Zealand, the Kerala Police has said.
Summary:
US President Donald Trump defended high school students who appeared to confront a Native American man in a viral video.
Summary:
A Swiss court has convicted a former UBS banker of economic espionage for selling information about wealthy German tax evaders to German authorities.
Summary:
The country's largest lender State Bank of India (SBI) has said Hitachi Payment Services has agreed to pick up 26% stake in its card acceptance and digital payment platform SBI Payment Services.
Summary:
India has been following the April-March fiscal year since 1867, in line with what the British government had followed.
Summary:
As part of the agreement, the Sunil Mittal-led company will absorb Tata consumer mobile business operations in 19 telecom circles.
Summary:
The arrest comes reportedly after a 24-year-old woman accused Brown of raping her on the evening of January 15 at a hotel in Paris.
Summary:
Juventus forward Cristiano Ronaldo has accepted a 23-month suspended jail sentence and a ã16.5-million (over â¹150-crore) fine over tax fraud.
Summary:
Greece's 20-year-old Stefanos Tsitsipas, who knocked Roger Federer out in the fourth round, defeated Roberto Bautista Agut in the quarter-finals on Tuesday to reach Australian Open semi-finals for the first time.
Summary:
Congress-led Rajasthan government on Monday announced that it has decided to reverse name of Atal Seva Kendra, help centres at village panchayat level, to Rajiv Gandhi Seva Kendra, which was its original name.
Summary:
The police went to the accused's hometown in Uttar Pradesh to verify his claim and produced him in court on Monday after re-arresting him.
Summary:
The officer has been placed on administrative leave pending an investigation into the incident.
Summary:
His statement comes after Israel launched air raids on Iranian targets inside Syria.
Summary:
China recorded its lowest birth rate last year in nearly 60 years, data provided by the National Bureau of Statistics (NBS) revealed.
Summary:
Over 120 security personnel were killed in a Taliban attack on a military base in Afghanistan on Monday, an official in Afghanistan's Defence Ministry said.
Summary:
Referring to some countries restricting Huawei, Ren said, "It would be their loss."
Summary:
Bajaj Auto MD Rajiv Bajaj on Monday said that Budgets don't have anything worthwhile in them and he hasn't seen one in the last 28 years he has been at Bajaj.
Summary:
Ambani added $27.8 billion, while Mark Zuckerberg and Bill Gates added $55.6 billion and $43.7 billion respectively.
Summary:
If the script is good I will definitely work with him." Recently, Sushant had praised Ankita's look in her upcoming debut film 'Manikarnika: The Queen of Jhansi'.
Summary:
Actor Ryan Reynolds cancelled surgery for an arm injury to promote his film 'Deadpool 2' in Beijing, ahead of its theatrical release in China.
Summary:
Facebook account of Shah Rukh Khan's son Aryan Khan has been hacked.
Summary:
Responding to Rani Mukerji's stance on #MeToo movement where Rani had said women should be strong enough to say back off, Kangana Ranaut said, "Maybe Rani was not able to articulate herself." Kangana added it's sad to see a woman being "bullied" and "trolled" for the cause of women's empowerment.
Summary:
Tabu, who played dark characters in films like 'Maachis', 'Haider' and 'AndhaDhun', said, "Playing dark characters has become a thing now for female actors.
Summary:
Speaking about the 'serial kisser' tag given to him, Emraan Hashmi said, "I got many hit films in my career because of the...tag." "I got a fair bit of acceptance from it," he added.
Summary:
AIESEC's global vice president of information management confirmed the leak but said that no more than 40 users had been affected by it.
Summary:
Google on Tuesday announced its updated election ads policy to reveal data about the advertisers along with the money spent on the ads in India for the 2019 Lok Sabha elections.
Summary:
The startup has reportedly raised a total of $4 million (â¹28 crore) in the last 12 months with the latest funding.
Summary:
FSSAI had also come out with new food quality standards earlier this month.
Summary:
Pune-based baby products startup FirstCry has raised nearly $150 million in the first tranche of larger funding from Japanese conglomerate SoftBank, regulatory filings revealed.
Summary:
As many as 11 people were killed and over 25 injured after a truck overturned in Odisha's Kandhamal on Tuesday.
Summary:
Stating that madrasas promote ISIS ideology, Uttar Pradesh Shia Central Waqf Board chief Waseem Rizvi wrote to PM Narendra Modi, asking him to shut down primary-level madrasas in the country.
Summary:
The incident came to light after officials found a felineâÂÂs skull and partially eaten paw.
Summary:
Lactalis' Indian subsidiary Tirumala Milk Products will buy Prabhat's milk business as well as its subsidiary Sunfresh Agro Industries.
Summary:
It is the world's first smartphone to feature a 48-megapixel rear camera, along with secondary TOF sensor and comes with an in-display selfie snapper.
Summary:
Kohli was named Men's Test Player of the Year for the first time, while he also won Cricketer and ODI Player of Year awards.
Summary:
One of the ships had a 17-member crew, including nine Turkish citizens and eight Indian nationals.
Summary:
Stating that women have to be responsible for their own safety, Kangana Ranaut has revealed she was pinched on her butt by a man in public.
Summary:
Indian spinner Harbhajan Singh has said that slapping fast bowler Sreesanth during IPL 2008 was a mistake and he shouldn't have done that.
Summary:
Last year, Pant became the first Indian wicketkeeper to score a Test hundred in England and equalled the record for most catches taken in a Test, with 11 in Adelaide in December.
Summary:
Recovering from an ankle injury that forced him out of the Australia tour, 19-year-old opener Prithvi Shaw said he'll be fit in time for Indian Premier League 2019.
Shaw had suffered the injury in a tour match.
Summary:
All-rounder Krunal Pandya has handed a blank cheque to the family of hospitalised ex-India cricketer Jacob Martin.
Summary:
"The booklet was published months before Akbar quit as a minister," said a government official.
Summary:
The Indian High Commission has reportedly sent a "note" to Pakistan Foreign Ministry accusing its intelligence agencies of threatening to lodge retaliatory complaints against two Indian diplomats.
Summary:
Bindu Ammini, one of the two women who entered Sabarimala temple earlier this month, has said, "They may attack me, they may kill me, but I feel no fear." "We were not trying to start trouble...Our goal was only to visit the temple.
Summary:
Speaking at the Pravasi Bharatiya Divas conclave in Varanasi, Mauritius Prime Minister Pravind Jugnauth on Tuesday said that Mauritius will organise Bhojpuri Mahotsav next year.
Summary:
A video showing a barefoot two-year-old girl getting out of a vehicle and walking toward police officers with her hands up as her father gets arrested has gone viral.
Put your hands down, you're fine," a police officer can be heard saying to the girl.
Summary:
One of 20 undeclared ballistic missile operating bases in North Korea serves as a missile headquarters, according to a report by US-based think tank Center for Strategic and International Studies (CSIS).
Summary:
A 36-year-old Taiwanese woman who climbed mountains wearing bikinis froze to death after falling 65 feet into a ravine in Taiwan's Yushan mountain.
Summary:
Talking about the success of his latest film 'Uri: The Surgical Strike', Vicky Kaushal said, "A film can turn an actor into a star, but a star can't guarantee a great film on his own." "A hero cannot make a film hit.
Summary:
Summary:
Summary:
Wishing parents Rishi Kapoor and Neetu Kapoor on their 39th marriage anniversary on Tuesday, daughter Riddhima Kapoor Sahni posted a collage of their pictures and wrote, "You two are my life - Centre of my universe." "I love you both endlessly!
Summary:
Praising Vicky Kaushal's work in his latest film 'Uri: The Surgical Strike', Anupam Kher tweeted, "Dear Vicky, Welcome to the 'actors' world.
Summary:
Summary:
Reacting to the sexual harassment allegations against filmmaker Rajkumar Hirani, Nawazuddin Siddiqui said, "I just don't want to talk about it.
Summary:
France's data protection watchdog has imposed an over â¹400-crore ($57 million) fine on Google for "lack of transparency" under the new EU data privacy rules.
Summary:
Karnataka Congress MLA Anand Singh was hospitalised on Sunday after a fight broke out between him and party MLA JN Ganesh at the resort housing them and 74 other Congress legislators.
Summary:
While addressing women entrepreneurs and students, Uber Senior Director Komal Mangtani said, "Unless we don't have more women in workforce...biases will stay".
Summary:
Police are yet to confirm if the window was broken before it fell.
Summary:
Ajay Singh Sengar, president of Maharashtra Karni Sena, while responding to Kangana Ranaut's threats, said, "If she continues to threaten...we'll not let her walk freely in Maharashtra and will burn her film sets." He added if 'Manikarnika' insults the queen of Jhansi, the Hindu society won't forgive her.
Summary:
Talking about having actress Kareena Kapoor as her stepmother in a recent interview, actress Sara Ali Khan said that people tell her that she "willed this to happen" to her.
Summary:
Kangana Ranaut has revealed that although she hasn't been sexually harassed in Bollywood, she has faced harassment on many other fronts.
Summary:
Local Congress leaders from Bhopal Guddu Chauhan and Anees Khan have written to party president Rahul Gandhi requesting him to field actress Kareena Kapoor as their candidate for Lok Sabha elections.
Summary:
A car mechanic complained against Aditya Pancholi to Mumbai Police alleging the actor threatened to kill him on asking to pay repair charges of â¹2.8 lakh.
Summary:
CoA is mulling a behavioural counselling programme for India cricketers in the wake of the Hardik Pandya-KL Rahul controversy.
Pandya and Rahul have been banned pending inquiry over their comments on women on Koffee with Karan.
Summary:
Pacer Ishant Sharma has revealed he cried for 15 days after conceding 30 runs in 48th over in the Mohali ODI against Australia in 2013.
Ishant's wife Pratima revealed she had then told the pacer, "Bahut badi zindagi hai.
Summary:
Coach Anand Kumar had allegedly told the players during the half-time that he will have their heads tonsured if they lost.
Summary:
A picture of West Bengal CM Mamata Banerjee serving food at a meeting for the opposition and public leaders has gone viral.
Summary:
The Election Commission on Monday dismissed a US-based Indian 'cyber expert's' claim that EVMs were hacked in 2014 Lok Sabha elections, saying that the machines used in the polls were "foolproof".
Summary:
The West Bengal government on Monday denied permission to the state BJP to land party chief Amit Shah's chopper at the Malda airstrip ahead of his rally on Tuesday.
Summary:
At least eight people died and 18 were rescued on Monday after a boat reportedly carrying 33 people capsized in Karnataka's Kali river.
Summary:
The government has made every possible effort with promptitude, Meghalaya government added.
Summary:
The first-term Democratic Senator of California, 54-year-old Indian-origin Kamala Harris on Monday launched her 2020 campaign for the post of the US President.
An outspoken critic of US President Donald TrumpâÂÂs immigration policies, Harris is the daughter of immigrants from Jamaica and India.
Summary:
Earlier this month, a Wall Street Journal report said Motorola RAZR could return as a $1,500-foldable screen phone.
Summary:
Facebook is reportedly testing solar-powered internet drones, to beam internet connectivity from the Earth's stratosphere, in Australia with aeronautics company Airbus.
Summary:
The transport department had asked for the removal of child locks by January 16.
Summary:
The deal will be announced early next month, the report further stated.
Summary:
The apex court also favoured widening judicial scrutiny of the case to bring other automakers under scanner.
Summary:
Chinese scientist He Jiankui, who claimed to have made the world's first gene-edited babies, has been accused of violating national laws, Chinese state media reported.
Summary:
Ratings agency CRISIL observed that economic growth in 12 states beat India's GDP growth of 6.7% in FY18 but failed to open more job avenues.
Summary:
Nearly half of the cheques and demand drafts (DD), in terms of value, sent to Chief MinisterâÂÂs Distress Relief Fund (CMDRF) in view of the 2018 Kerala floods were dishonoured, CM Pinarayi Vijayan said.
Summary:
Kerala Finance Minister Thomas Isaac has said the state government will announce a â¹1,000-crore comprehensive health insurance scheme in its budget on January 31.
Summary:
As many as 49 people have died due to swine flu in Rajasthan since the beginning of the year, state Health Minister Raghu Sharma said.
Summary:
He further asked them to ensure no power cuts in domestic connections between 7am-11am, and 6pm-10pm.
Summary:
Among the nine major real estate markets, NCR is the only region to register negative year-on-year growth in pricing, the report added.
Summary:
Adding that inequality has a "female face" in India, it observed that unpaid work by women in the country is worth 3.1% of its GDP.
Summary:
Germany's 83-year-old Paul Brockmann bought 55,000 dresses for his wife Margot because he "never wanted to see her in the same one twice".
Summary:
Former Australia captain Michael Clarke has said that Team India captain Virat Kohli is the greatest batsman to have ever played ODI cricket.
Summary:
Former England players David Gower and John Morris flew WWII planes over the stadium after getting out in a warm-up match on January 21, 1991 in Australia.
Summary:
Djokovic returns to the last eight at Australian Open for the first time since 2016.
Summary:
Ex-world number one Serena Williams, who is currently ranked 16, mistakenly entered the court after the announcement "Please welcome to the court, world no.1..." was made for her opponent Simona Halep ahead of their Australian Open fourth-round clash.
Summary:
World number four Alexander Zverev smashed his racquet eight times into the ground before throwing it away during the second set of his 1-6, 1-6, 6-7(5-7) Australian Open fourth-round loss against Milos Raonic on Monday.
Summary:
Shiv Sena spokesperson Manisha Kayande has said the alliance with the BJP is not on the priority list of the party.
Summary:
BJP's Leader of Opposition in Rajasthan Assembly Gulab Chand Kataria has said Muslims should limit themselves to two children.
Summary:
The HC has asked the Centre to file its reply by February 18.
Summary:
A police constable was killed while trying to stop a truck carrying 12 bullocks in Maharashtra's Chandrapur, police said on Monday.
Summary:
Tyagi named his studio worker named Akibul as an accused.
Summary:
While the richest 1% own 51.53% of the national wealth, the bottom 60% own merely 4.8% of it, the report said.
Summary:
Tribals protesting the foundation-laying ceremony of 'Haryana Bhavan' in the vicinity of Statue of Unity in Gujarat's Kevadiya on Saturday were baton charged by the police.
Summary:
An Oxfam report on Monday stated that 1% wealth of the world's richest person Jeff Bezos, who topped the Forbes richest list 2018 with $112 billion wealth, equals the entire health budget of Ethiopia, a country of 105 million population.
Summary:
Passengers were unable to leave the aircraft as customs officials were not available overnight.
Summary:
Finance Minister Arun Jaitley in a blog post said the 2019 elections will be PM Narendra Modi versus Chaos.
It is Modi versus an unviable and unworkable short-lived combination," he wrote.
Summary:
Calling West Bengal CM Mamata Banerjee a "good administrator", Karnataka CM HD Kumaraswamy said that she has all capabilities required to lead the country.
"This shows her generosity in her tactics in fighting the BJP," he further said.
Summary:
Bengaluru-based bike and scooter-sharing startup Bounce has raised nearly â¹50 crore ($7 million) in a funding round from investors including Chiratae Ventures, Sequoia India and Accel India.
Summary:
Harley-Davidson had announced plans to launch its electric motorcycle 'LiveWire' in 2018.
Summary:
Uber has started hiring engineers for a new "Micromobility Robotics" division to work on autonomous bikes and scooters.
Summary:
PM Narendra Modi took to Twitter to express his condolences over the demise of seer Shivakumara Swami who headed the Siddaganga Mutt in Karnataka.
Summary:
The Karnataka government has declared a three-day state mourning over the demise of the chief seer of Sree Siddaganga Mutt in Karnataka, Shivakumara Swami.
Summary:
Haryana CM Manohar Lal Khattar has said his government will bring a law to make it mandatory for investors to employ maximum workforce from the state itself.
Summary:
The decision to procure Milan 2T ATGMs is a stopgap arrangement while the Army gets its own homegrown third-generation ATGM in its arsenal, reports added.
Summary:
Kotak Mahindra Bank's net profit for the December quarter rose 23% year-on-year to â¹1,291 crore, against a profit of â¹1,053 crore in the same period last year.
Summary:
Disney has said in a filing that its investment in streaming platform Hulu "primarily" contributed to a $580-million loss in the fiscal ended September 2018.
Summary:
Britain's largest drugmaker GlaxoSmithKline's (GSK) Chairman Philip Hampton will step down after over three and a half years in the role.
Summary:
British comedian Stephen Fry has said that he found it "decidedly odd" to spot an 'Adarsh Balak' or 'the ideal child' poster hanging at his doctor's office.
Summary:
A picture shared by a Twitter account showing eight different ways to draw the letter 'X' has gone viral on the internet, leaving people surprised.
"Never realised people might draw an X in so many ways!
Summary:
Lianna Shakhnazaryan, the former assistant of Mariah Carey has claimed she was physically, sexually and racially abused by Carey's former manager Stella Bulochnikov while working for the singer.
Summary:
Amitabh Bachchan has said if it hadn't been for late Shiv Sena founder Bal Thackeray, he wouldn't have been alive today.
Summary:
Esha and Bharat, who got married in 2012, welcomed Radhya in 2017.
Summary:
Summary:
Chief Justice of India (CJI) Ranjan Gogoi on Monday recused himself from hearing the petition challenging the appointment of M Nageswara Rao as the interim CBI Director.
Summary:
Twenty-three-time Grand Slam champion Serena Williams defeated world number one Simona Halep on Monday to reach Australian Open quarter-finals for the 12th time.
Summary:
In order to fight "misinformation and rumours", Facebook-owned messenger service WhatsApp is limiting the text forwards to five chats at a time for users worldwide.
Summary:
The person did not identify himself but said he was calling from Vikaspuri.
Summary:
The Uttar Pradesh Police have booked Irfan Hussain, NSUI district president of Shahjahanpur, for allegedly threatening a female student after she complained of molestation.
NSUI has suspended Hussain from the organisation.
Summary:
The chief seer of Sree Siddaganga Mutt in Karnataka, Shivakumara Swami, passed away on Monday after a prolonged illness at an age of 111.
Summary:
AAP leader and Sangrur MP Bhagwant Mann has said he left taking liquor from January 1 on his mother's advice.
Summary:
Two spectators were killed on Sunday in Jallikattu event that created a world record for hosting the maximum number of 1,353 bulls in Tamil Nadu's Pudukkottai district.
Summary:
Finance Minister Arun Jaitley, who is in the US for a medical check-up, missed the traditional 'Halwa Ceremony' to mark the beginning of printing the budget documents.
Summary:
Rohit Shetty, who worked with Sara Ali Khan in 'Simmba', said that Sara has the quality of a superstar, adding, "She can do a 'Kedarnath' and also can do a 'Simmba'." "Rarely, we have this combination in a younger lot and she fits that bill," Rohit further said.
Summary:
R Madhavan, who is starring in 'Rocketry: The Nambi Effect', has taken over as the film's director as filmmaker Ananth Mahadevan had to leave the project due to other commitments.
Summary:
Denying the rumours of his daughter Nysa joining the film industry, Ajay Devgn said, "She is not in the country, she's studying right now.
Summary:
Confirming that there will be a third film in the 'Tanu Weds Manu' franchise, Kangana Ranaut said she and director Aanand L Rai will be making the announcement soon.
Summary:
Andhra Pradesh CM N Chandrababu Naidu on Monday alleged that the Centre was threatening to impose President's Rule in the state.
Summary:
Both Nagaram and Vasudev will report to Flipkart CEO Kalyan Krishnamurthy, the report added.
Summary:
It asked users to report profiles with problematic content, reviewed the complaints and then took appropriate action.
Summary:
Security forces had launched a cordon and search operation in Hapat Naalah area of Zinpanchal, and the encounter ensued after the militants fired upon them, as per reports.
Summary:
Reports added that the additional cost is expected to be limited to â¹70,000 crore annually after a full roll-out of the program.
Summary:
Germany has reportedly revoked Iran's Mahan Air's right to operate in the country giving both safety concerns and the suspicion that the airline was being used for military purposes as reasons.
Summary:
IDBI Bank on Monday said the country's largest life insurer LIC has completed acquisition of 51% stake in the bank, making it the lender's majority shareholder.
Summary:
E-commerce conglomerate Infibeam Avenues has agreed to sell its subsidiary Infinium India to Ingenius E-commerce, which owns B2B industrial goods aggregator Tradohub, for â¹60 crore, as per BSE filings.
Summary:
Shweta further said, "You think he has had it...easy because he's Amitabh Bachchan's son, whatever it is...I'm going to react to him as a sister."
Summary:
Choksi and his nephew Nirav Modi are under probe by both CBI and ED.
Summary:
A video of a 40-year-old Chinese school principal, Zhang Pengfei, leading his pupils through a shuffle dance routine has gone viral.
Summary:
Four robbers of the 'Thak Thak' gang assaulted and robbed actress and former cricketer Manoj Prabhakar's wife Farheen Prabhakar of her wallet and mobile phones when she was on her way to a mall in Delhi on Saturday.
Summary:
Actress Kangana Ranaut has responded to reports that said a dialogue from her upcoming film 'Manikarnika: The Queen of Jhansi' has been copied from Hrithik Roshan's 2016 film 'Mohenjo Daro'.
Earlier, Manikarnika's producer Kamal Jain had said, "You can't have a copyright on one dialogue."
Summary:
Aamir Khan, while recalling his childhood, said, "We kids were pretty much kept away from the glamour of filmmaking." "We rarely went to shoots.
Summary:
Mendez had Parkinson's disease, which he had been diagnosed with more than 10 years ago.
Summary:
Talking about India's 2-1 ODI series win over Australia, ex-Australia captain Allan Border said, "I thought the one-day series was quite close.
Evenly balanced...most of the games." Further talking about MS Dhoni, who slammed three consecutive fifties in the series, Border said, "Old MS Dhoni is back with a vengeance.
Summary:
Reacting to Indian cricketers KL Rahul and Hardik Pandya being suspended over their comments on women on Koffee with Karan, ex-Australia captain Michael Clarke said "respecting every individual is important".
Summary:
Chair umpire Alison Hughes narrowly escaped injury after a spidercam crashed into the sun shield of her chair just after the conclusion of the Australian Open fourth-round match between Ashleigh Barty and Maria Sharapova.
Summary:
An unidentified man was killed by two lions at Punjab's Chhatbir Zoo, situated near Chandigarh, on Sunday.
Summary:
The Bengaluru City Police posted a 10 seconds challenge on Facebook showing an image of a motorist using a mobile and driving without a helmet, and a blank image.
Summary:
The Indian Navy has abandoned all efforts to pull out the decomposed body of a miner that it spotted days ago inside the illegal coal mine in Meghalaya's East Jaintia Hills district.
Summary:
US Senator Lindsey Graham vowed on Sunday to urge President Donald Trump to meet Imran Khan, calling the Pakistani Prime Minister an "agent of change".
Summary:
Oxfam said 2018 had been a year in which the rich had grown richer and the poor poorer.
Summary:
The mother of an over 1-year-old UK baby boy, who survived 25 heart attacks on January 31, 2018, has said, "Everyone expected him to die." Theo Fry has had 30 cardiac arrests and has been through 17 operations.
But...his recovery was amazing," the doctor who operated on the baby said.
Summary:
Ousted Nissan Chairman Carlos Ghosn has offered to wear an electronic monitoring ankle tag, give up his passport and pay for security guards approved by prosecutors to gain release from detention on bail.
Summary:
Abhishek Bachchan will star in the upcoming Kamal Haasan starrer 'Indian 2', as per reports.
The film also stars Akshay Kumar, Siddharth and Kajal Aggarwal, according to reports.
Summary:
Vicky Kaushal said he wants to have the responsibility of audiences' expectations at all times, adding, "I'd never want that pressure to come down, and only want it to go up." Vicky further said he wants people to keep expecting from him because it's a good sign.
Summary:
Actress Bhumi Pednekar, while talking about the kind of roles she plays in her films, said, "My characters are amazing.
Summary:
Kajol has said that she is "way smarter" and "cooler" than what she was at the age of 16.
I believe my personality has a lot to do with it.
Summary:
Mahesh Manjrekar, who appeared in a cameo in Rajkumar Hirani's 'Sanju' and has directed Sanjay Dutt in several films, said, "I've seen 'Sanju'...As a film, I enjoyed it but as a biopic, I was a little disappointed." Manjrekar added that he would have directed the film with a different approach.
Summary:
Sophie Turner, who plays the role of 'Sansa Stark' in 'Game of Thrones', revealed, "I'm so bad at keeping secrets...I've already told the ending of 'Game of Thrones' to a few people." "But it's people that I know, not random people.
Summary:
Ankita Lokhande, who will be seen as 'Jhalkari Bai' in her debut film 'Manikarnika: The Queen of Jhansi', said the film is about "women empowerment and women standing up against the wrong".
Summary:
Summary:
Last year, Musk unveiled the first underground transportation tunnel in Los Angeles by The Boring Company.
Summary:
UK's Avon & Somerset Police force's policeman named 'PC Rob Banks' has gone viral on the internet after he was interviewed for a special feature by ITV News.
Summary:
Actor Kartik Aaryan has shared a "backfie" taken by director Imtiaz Ali, which showed PM Narendra Modi from the behind after they failed to take a selfie with him.
Responding to Kartik, PM Modi tweeted, "Not losers but Rockstars!
Summary:
"Mai Delhi hoon...Kadvi hawa main saanse ginti mai Delhi hoon," wrote Gambhir criticising air pollution in the capital city.
Summary:
Ex-world number one Maria Sharapova took a seven-minute-long toilet break between the second and third sets of her 6-4, 1-6, 4-6 Australian Open fourth-round loss to Australia's Ashleigh Barty.
Summary:
Similarly, the MCA must also introduce counselling for its young players," the 62-year-old added.
Summary:
Sachin Tendulkar praised 20-time Grand Slam champion Roger Federer for cooperating with a security guard outside a locker room at Australian Open.
Summary:
RJD leader Tejashwi Yadav on Sunday said the Congress is "best equipped" to lead the Opposition's charge against the BJP in the upcoming general polls.
Summary:
RTI activist Narasimha Murthy has alleged that jailed AIADMK leader VK Sasikala has been given five rooms, instead of entitled one, and a personal cook in the jail.
Summary:
BJP General Secretary Ram Madhav on Sunday said that all corrupt political families have ganged up against Prime Minister Narendra Modi.
Summary:
PM Narendra Modi has said the Opposition was staring at a defeat in the upcoming elections and are looking for excuses ahead of their impending loss and thus vilifying EVMs. Taking a dig at the opposition parties' rally in Kolkata, PM said "mahagathbandhan" was an alliance of "corruption".
Summary:
Union Minister Prakash Javadekar has said there was no alternative to PM Narendra Modi and that there would be "anarchy" in his absence.
Summary:
Irani was speaking at the Textile Conclave at Gandhinagar, a part of the Vibrant Gujarat Global Summit.
Summary:
Two workers were killed and four others injured after a cable car of the under-construction Jammu ropeway project crashed, police said on Sunday.
Summary:
In the video, 75-year-old Brahma Devi can be seen pleading Singh, who is seated on a chair.
Summary:
Engineers claimed that it can clean water twice as fast as commercially available ultrafiltration membranes.
Summary:
World's largest aircraft maker Stratolaunch, founded by late Microsoft Co-founder Paul Allen, will stop development of its "family of launch vehicles and rocket engine".
Summary:
The institute will "explore fundamental issues affecting the use and impact of AI," Facebook said.
Summary:
Dolby Labs is reportedly secretly testing a smartphone app codenamed '234' that records studio quality audio.
Summary:
Congress had shifted its MLAs to resort allegedly after three MLAs skipped its party meeting.
Summary:
"They have formed alliances with each other.
"Their âÂÂmahagathbandhanâ is an alliance of corruption, negativity and instability," PM Modi further said.
Summary:
French Finance Minister Bruno Le Maire said there are no plans "on the table" to change the alliance between Renault and Nissan, following reports that the government is proposing an integration of the two carmakers.
Summary:
Volkswagen plans to spend over $50 billion on developing electric cars and other mobility services by 2023.
Summary:
President of Akhil Bharatiya Akhara Parishad Mahant Narendra Giri has said that seers and saints will gather in Ayodhya after the Kumbh Mela ends and will start construction of the Ram Temple.
Summary:
A temporary VVIP bathing island has been constructed in the middle of Triveni Sangam at the Kumbh Mela.
Summary:
Telecom operator Vodafone Idea has sought two-years moratorium on annual spectrum payment of about â¹10,000 crore, citing high debt levels.
Summary:
The Indian Pilots' Guild has warned that financial stress could impact flight safety.
Summary:
Billionaire Gautam Adani has announced he'll invest over â¹55,000 crore in the next five years in various projects in Gujarat.
Summary:
Actor Emraan Hashmi, who recently appeared on 'The Kapil Sharma Show', revealed that he had cheated in his second year BCom examinations.
Summary:
Filmmaker Aanand L Rai, while speaking about the failure of his directorial 'Zero', said, "I won't say I'm disappointed.
I'll need to understand (what went wrong)." "This is the story I wanted to say and I made it...
Summary:
Kangana Ranaut has refuted the reports which said 'Manikarnika: The Queen of Jhansi' producer Kamal Jain has suffered from a paralytic stroke.
Kangana further said, "[I] request everyone to please stop backing sensational reports."
Summary:
After comedian Kapil Sharma praised PM Narendra Modi and tweeted the latter has a "great sense of humour", PM Modi replied to him, "When @KapilSharmaK9 appreciates somebody's humour, it sure makes that person happy...I am no exception." "Thank you for the kind words," he added.
Summary:
According to a Home Ministry communique, Aadhaar cards are now valid travel documents for Indians under 15 and over 65 travelling to Nepal and Bhutan.
Summary:
Union Minister Ram Vilas Paswan on Sunday said that the measure for 10% general category quota will boost the BJP-led NDA's vote share by 10%.
Summary:
Punjab's 18-year-old Jayesh Singla is one of the fifteen students who managed to score 100 percentile in JEE Main examination, results of which were announced on Saturday.
Summary:
A bride at a village in Bihar's Bhagalpur district refused to marry the groom, constable Uday Rajak, after he reached the wedding venue inebriated on Thursday.
Summary:
Railways Minister Piyush Goyal has instructed caterers at Varanasi and Raebareli stations to use terracotta-made 'kulhads' which were introduced 15 years ago, for serving tea.
Summary:
Around 10 people sustained injuries on Saturday when a clash broke out between two groups over allegedly playing loud music in Uttar Pradesh's Muzaffarnagar, police said.
Summary:
Despite suffering from pneumonia just before leaving for the expedition, Aparna Kumar became the first woman IPS officer to reach the South Pole last week.
Summary:
Ashok Kumar, a 29-year-old constable with Punjab Police, has won the â¹2-crore Punjab State Lohri Bumper Lottery.
Summary:
Pakistan's tallest man Zia Rasheed, who stands eight feet and three inches tall, said he hasn't been able to find his life partner so far.
"I haven't found someone who is tall enough for me.
Summary:
After knocking 20-time Grand Slam champion Roger Federer out of the Australian Open in the fourth round, 20-year-old Greek tennis player Stefanos Tsitsipas said that he is the "happiest man on Earth right now".
Summary:
A UK man was convicted of murder after his fitness watch's location data placed him near the victim's home ahead of a 2015 murder.
Summary:
Amazon Robotics has made an electronic 'Robotic Tech Vest' that alerts warehouse robots to the location of workers wearing it, to prevent accidents.
Summary:
BJP President Amit Shah, who was being treated for swine flu, was discharged from AIIMS hospital on Sunday.
Summary:
BJP MLA from Uttar Pradesh Sadhana Singh has issued a written apology for calling BSP chief Mayawati a "blot on womanhood".
She added that she "only wanted to remind how the BJP had helped Mayawati in the 1995 Guest House case".
Summary:
Himachal Pradesh BJP MP Anurag Thakur has been bestowed with Sansad Ratna Award for his distinguished performance as a parliamentarian under Jury Committee Special Award category.
Summary:
Singh's statement was in reference to the 1995 Lucknow guest house incident when Mayawati was allegedly assaulted by SP workers.
Summary:
In 2017, Chevrolet had created a nearly seven-foot-tall Batmobile using Lego bricks of 17 colours.
Summary:
Scientists have found preserved carcasses of tiny animals buried in Subglacial Lake Mercer, an Antarctic lake which lies over 1,000 metres beneath the Whillans Ice Plain.
Summary:
A 40-year-old man was stabbed to death allegedly by his wife with the help of her lover in Uttar Pradesh's Muzaffarnagar on Saturday.
Summary:
Commerce Minister Suresh Prabhu said India has the potential to be a $5 trillion economy in 7-8 years.
Summary:
"But the truck driver suddenly swerved right, knocking down the bike," police added.
Summary:
The Confederation of Indian Industry (CII) has said the Kumbh Mela is expected to generate a revenue of â¹1.2 lakh crore for Uttar Pradesh.
Summary:
Private sector lender HDFC Bank's net profit for the December quarter rose 20.3% year-on-year to â¹5,585.85 crore.
Summary:
Rajasthan's newly elected Chief Minister Ashok Gehlot on Saturday issued a strict order to the officials to stop the sale of liquor after 8 pm at all shops in the state.
Summary:
Amrita's maternal uncle, who died of cancer on Saturday, reportedly used to live in the property.
Summary:
"She (Deepika) is happily married...there's no bitterness in my heart...I wish her all the best," said Nihar.
Summary:
"Sir I must say u have a great sense of humor," Kapil captioned the picture.
Summary:
Repeat.' while praising India wicketkeeper-batsman MS Dhoni.
ICC's official World Cup account had tweeted an image of Dhoni with the caption, "Eat. Sleep.
Life as MS Dhoni." "Our royalties may be paid in cash, check, stock or cryptocurrency," Heyman wrote.
Summary:
Greece's 20-year-old Stefanos Tsitsipas knocked two-time defending champion Roger Federer out of Australian Open in the fourth round on Sunday.
Summary:
Peoples Democratic Party (PDP) on Saturday expelled party leader Altaf Bukhari alleging he was involved in anti-party activities.
Summary:
Madhya Pradesh BJP leader Manoj Thackeray on Sunday was found dead in a field in Barwani district of the state.
Summary:
He further said PM Modi speaks one lie and gives 10 more lies free with it.
Summary:
Indore's 17-year-old Dhruv Arora, who scored 100 percentile score in the Joint Entrance Exam (JEE) Main in first attempt, says he might choose IISc over IIT.
Summary:
The two fired executives were accused by the CBI of breaching the RBI guidelines, the reports added.
Summary:
US Senator Lindsey Graham has said he hoped President Donald Trump would slow withdrawal of US troops from Syria until Islamic State is destroyed, warning that the pullout can create an "Iraq on steroids".
Summary:
Notably, Ghani had allowed Hekmatyar to return from exile.
Summary:
He further said that it takes a "lot of Border Agents to stop migrants if there is no border wall".
Summary:
Nonaka, who enjoyed watching sumo wrestling and eating sweets, outlived his wife and three of their five children.
Summary:
A Sikh man in the US was assaulted in an alleged hate crime by a white man who pulled his beard, kicked and punched him in the face.
Summary:
Earlier reports had stated that Jain was in a critical condition and on a ventilator after suffering a paralytic stroke.
Summary:
Actor Amitabh Bachchan, on social media, wrote that sharing thoughts with the young "crew" is "pretty darn awesome" and "it's quite daunting" to be in their company.
Summary:
Rishi Kapoor, after watching Vicky Kaushal starrer 'Uri: The Surgical Strike', tweeted, "'Uri' [brought] home the point India has nothing against the citizens of Pakistan but those terrorists being trained in camps against us." "Terrific warfare film.
Perhaps the best ever made in India...Bravo.
Summary:
Sonu Nigam has said it's not necessary to find a mentor in someone who is senior in age, adding, "I sing better and different than what I did 25 years ago...maybe I've learnt from Arijit Singh, Armaan Malik." The singer added that one must keep their "mind open" and imbibe new things.
Summary:
Former Google executive Eisar Lipkovitz has joined US-based ride-hailing startup Lyft as Executive Vice President of Engineering to lead a team of over 1,000 engineers.
Summary:
Google Maps has launched its feature to show speed limits to users in the US, the UK and Denmark.
Summary:
Nissan showed its concept van NV300 that includes an all-electric carpentry workshop at the Brussels Motor Show in Belgium.
Summary:
VHP working president Alok Kumar said VHP won't support Congress or any other party in the upcoming elections.
Earlier, Kumar had reportedly said VHP might consider supporting Congress if it includes Ram Temple in its election manifesto.
Summary:
Pakistan's Ministry of Commerce and Textile has said it has exported over 1,00,000 kg of human hair worth $132,000 (around â¹94 lakh) to China over the last five years.
Summary:
India is likely to surpass the United Kingdom in the world's largest economy rankings in 2019, according to the Global Economy Watch report by global consultancy firm PwC.
Summary:
Indian drug majors Lupin, Sun Pharma and Glenmark Pharmaceuticals are recalling various drugs from the US market.
Summary:
As part of OnePlus' Assured Upgrade program, OnePlus 6T buyers can avail guaranteed buyback value of a maximum of 70% of the device's purchase value through Servify on the upgrade to a OnePlus flagship.
Summary:
Kangana Ranaut, while speaking about the #MeToo movement, said, "The good thing is that...people have become absolutely cautious of their behaviour." "A person will think 10 times before humiliating anyone and violating their human rights," she added.
Summary:
Recalling the first time he met Mira Rajput, Shahid Kapoor said, "I was like she's so young but I like her...Is something wrong with me?" "It was about 5 in the evening and the light was falling on her face.
Summary:
Summary:
Actor Kartik Aaryan, while speaking about sexual harassment allegations against Rajkumar Hirani, said, "We all have been his fans.
Summary:
Malaika Arora got trolled on Instagram after she posted pictures of herself from 1998 as part of the #10YearChallenge.
Summary:
Former Pakistan captain Wasim Akram has said that India fast bowler Jasprit Bumrah has the best and the most effective yorker among the fast bowlers playing international cricket now.
Summary:
All-rounder Irfan Pathan responded to a Twitter troll, who criticised him saying MS Dhoni wouldn't play him in CSK in IPL.
Summary:
Former India fast bowler Ajit Agarkar has said that suspended all-rounder Hardik Pandya should be reinstated into India squad immediately.
Summary:
Yastremska broke down into tears following her defeat and was consoled by Serena, who was heard telling her, "You are so young.
Don't cry." Later, Serena said that seeing Yastremska cry broke her heart.
Summary:
Stating that the people of Punjab are unhappy and disillusioned with the Shiromani Akali Dal and the Congress, AAP National Convenor Arvind Kejriwal said that party will contest all Lok Sabha seats in Punjab in the upcoming elections.
Summary:
"My daughter told me that the paneer was very hard...When I tasted it, I found fibre," the man said.
Summary:
Two days after he survived a car crash, UK Queen Elizabeth II's 97-year-old husband Prince Philip was spotted driving without a seat belt.
Summary:
However, Democrats rejected it and called on Trump to open the government.
Summary:
The death toll in an explosion caused due to illegal taps on a gasoline pipeline in Mexico has risen to 73.
Summary:
Prime Minister Narendra Modi, while speaking at the inauguration of India's first National Museum of Indian Cinema (NMIC), said that Indian films have played an important role in India's soft power.
Summary:
Sushant Singh Rajput's upcoming film 'Rifleman' is in legal trouble as the makers of recently released '72 Hours: Martyr Who Never Died' claimed they have the original rights to make the film based on Jaswant Singh Rawat's life.
Summary:
Vicky Kaushal and Bhumi Pednekar will star together in Karan Johar's horror film, as per reports.
Summary:
Nawazuddin Siddiqui, while talking about the biopics made in Bollywood, said, "We're not prepared to see [negative side of the hero] because we've only been watching fake films.
The hero cannot be negative, all the negative qualities have to be in the villain only," he added.
Summary:
Kangana Ranaut, while talking about her career and journey in Bollywood, said, "I've sacrificed nothing for my career, I've invested but not sacrificed." "To associate sacrifice with a career is like saying you're doing a favour to yourself.
Summary:
Singer Shaan said he isn't "thrilled" with the trend of recreating old songs, adding that the new versions of old songs lack a good melody.
Summary:
Summary:
RJD leader Misa Bharti, daughter of ex-Bihar CM Lalu Prasad Yadav, said she "felt like chopping off" the hands of Union Minister and former RJD leader Ram Kripal Yadav when he joined BJP.
However, we stopped respecting him when he...joined hands with Sushil Kumar Modi," Bharti added.
Summary:
The ROV's instruments showed oxygen concentrations were one-tenth to one-fortieth as low as those tolerated by other low-oxygen fish.
Summary:
Switzerland-based researchers have made bacteria-inspired microrobots which can adapt to its surroundings.
Summary:
NASA researchers, using new data from Cassini spacecraft, have calculated the length of a day on gas giant Saturn as 10 hours, 33 minutes and 38 seconds.
Summary:
A pregnant woman from Jammu and Kashmir's Kupwara delivered a stillborn child by the roadside after a doctor of a Srinagar hospital allegedly denied her an overnight stay at the medical facility.
Summary:
After actress Sara Ali Khan revealed on Koffee With Karan that she would like to date Kartik Aaryan, the actor said, "I'm ready for a coffee date.
Summary:
Singer Chinmayi has criticised the viral '10 year challenge' meme on Priyanka Chopra and Nick Jonas, tweeting, "Casual sexism ain't cool." "A woman marries someone younger and it's a meme," she added.
Summary:
Kohli also watched Serena Williams play at the Australian Open and shared pictures from his visit.
"What a day at the Australian open.
Summary:
Team India head coach Ravi Shastri has said former India captain MS Dhoni is great with other Team India players and that the other players worship him.
Summary:
Amla has now slammed 55 international hundreds.
Summary:
BCCI acting president CK Khanna has urged CoA to lift the suspension on Hardik Pandya and KL Rahul over comments on women on 'Koffee with Karan' till inquiry is done.
Summary:
Rio Olympic silver medal-winning shuttler PV Sindhu has said that people in India talk of respecting women, but they don't practise or do it.
Summary:
Hardik Pandya was spotted in public for the first time on Saturday after being suspended from Team India pending inquiry over his comments on women on 'Koffee with Karan'.
Summary:
The husband of the woman who was transfused with HIV-infected blood in Tamil Nadu last month, has claimed, "Even my closest friend was standing two feet away when he came to see me.
Summary:
After a pregnant woman approached Madras High Court for being declared unfit for taking 0.30 seconds extra during a running test for selection of Grade-II Constable, the bench said the timing should be considered negligible and she should be selected.
Summary:
The feature added $3 million to the yacht's cost.
Summary:
Reliance Group Chairman Anil Ambani's younger son, 23-year-old Anshul Ambani, has joined the group's Reliance Infrastructure as a management trainee after completing his undergraduate degree in management from NYU Stern School of Business.
Summary:
Actors Aditya Roy Kapur and Disha Patani will star in an upcoming film directed by Mohit Suri, as per reports.
[The film] is said to be a revenge thriller," reports further said.
Summary:
Prime Minister Narendra Modi inaugurated India's first National Museum of Indian Cinema (NMIC) in Mumbai on Saturday.
Summary:
Speaking about his career in the music industry, veteran music composer Bappi Lahiri said, "I feel so proud...to have worked with all the extremely talented people in the industry." "[M]y life is Dilip Kumar to Ranveer Singh.
Summary:
Speaking about the criticism of the timings of Australian Open's matches, Roger Federer said, "This is part of our life and we actually like it like this.
Summary:
London-based EPL side Crystal Palace is offering beds, hot meals and breakfast to homeless sleepers in the club lounge at their home Selhurst Park stadium with temperatures forecast to drop below freezing in the coming week.
Summary:
Rahane will lead the side in the first three matches while Pant will feature in the fourth and fifth matches.
Summary:
Facebook is testing 'LOL' feature, a dedicated feed consisting of meme videos and other viral content.
Summary:
Google parent Alphabet's life sciences division Verily has received US Food and Drug Administration's (FDA) approval for heart-monitoring electrocardiogram (ECG) technology for its 'Study Watch'.
Summary:
A new study based on data from NASA's Cassini spacecraft has suggested that rings around the 4.5 billion-year-old Saturn were formed within the last 10-100 million years.
Summary:
On Monday, a fire had broken out at a camp of the Digambar Akhada at the Kumbh Mela reportedly after a gas cylinder exploded.
Summary:
The children have been taken to a hospital and the condition of five of them is critical, police added.
Summary:
Himachal Pradesh has approved 10% reservation in jobs and educational institutions for economically weaker sections in the general category, becoming the fourth state to do so.
Summary:
Japan will give a loan of â¹3,420 crore to India for the construction of the Chennai Peripheral Ring Road (Phase 1) and for Japan-India cooperative actions towards Sustainable Development Goals (SDGs) in India.
Summary:
Prime Minister of the Czech Republic, Andrej BabiÃ
¡ has hailed the 'Make in India' initiative as a "good strategy" and said that he wants to promote his country's relations with India to a strategic partnership.
Summary:
There has been no sign of life from the boy from inside the well.
Summary:
He has the talent." Shastri added, "His hero is MS.
He's on...phone with MS everyday.
Summary:
The umpire didn't declare it out after Australian players didn't make a convincing appeal despite the replays showing Dhoni had indeed edged the ball.
Summary:
World number one men's tennis player Novak Djokovic shared two pictures of himself in just underwear as part of the viral 10 year challenge.
Summary:
A 20-foot-long shark, believed to be the largest recorded great white shark, was spotted off Hawaii coast near a dead sperm whale on Tuesday.
Summary:
BJP's Rajesh Kalia, who has been elected as the Mayor of Chandigarh, used to pick rags at the dumping ground of Dadu Majra with his father before joining politics.
Summary:
Attacking Narendra Modi-led government at the Opposition rally in Kolkata on Saturday, Congress leader Mallikarjun Kharge said, "Farmers are dying but PM Modi is feeding people like Anil Ambani.
Summary:
Summary:
The organisation failed to refund the amount of over â¹3 crore from the years between 2014 and 2016.
Summary:
An Indian woman killed in a terror attack in Afghanistan earlier this week had said "why to fear bombs...death can descend anywhere" to her relatives before she left for the war-torn country.
Summary:
After inaugurating Armoured Systems Complex of L&T in Gujarat, the first private facility in India where the K9 Vajra Self-Propelled Howitzers will be manufactured, PM Narendra Modi took a ride in the vehicle.
Summary:
The Kerala couple who died after falling more than 800 feet from a popular overlook at the US' Yosemite National Park in October had alcohol in their systems prior to death, an autopsy revealed.
Summary:
Olympic gold-medallist gymnast Simone Biles will be the first guest on Priyanka Chopra's upcoming YouTube web series 'If I Could Tell You Just One Thing'.
Summary:
Speaking about his struggles in the film industry, actor Abhishek Bachchan said, "The industry is a brutal place." "It's heartbreaking to any actor who has been centre stage to be shadowed by another actor in the lead," the actor, who was last seen in 'Manmarziyaan', added.
Summary:
'I Believe I Can Fly' singer R Kelly has been dropped by Sony Music-owned record label RCA Records, as per reports.
Summary:
Italian club Napoli called an Italian court's decision a 'grave defeat for football' after the club's appeal against the two-match ban on Senegalese defender Kalidou Koulibaly was rejected.
Summary:
John said that the incident left the then 17-year-old Bernard traumatised.
Summary:
Microsoft has announced that it will end support for 'Windows 10 Mobile' operating system on December 10, 2019.
Summary:
It said that an analysis of Oracle's payroll data revealed women were paid an average of $13,000 less per year than men for similar jobs.
Summary:
IIT Hyderabad is launching a full-fledged BTech program in Artificial Intelligence (AI) from the coming academic year 2019-20.
Summary:
Cybersecurity researchers have discovered a fake Google Chrome extension which steals credit card data via web forms on visited websites.
Summary:
Earlier, Singh had refused to take oath in front of pro-tem Speaker Mumtaz Ahmed Khan as he belongs to AIMIM party.
Summary:
Targeting the Opposition rally in Kolkata, PM Narendra Modi on Saturday said the entire opposition had gathered in West Bengal and was shouting "bachao, bachao".
Summary:
Speaking at the opposition rally in Kolkata, Andhra Pradesh CM N Chandrababu Naidu called PM Narendra Modi a "publicity PM" and said India needs a performing PM.
"BJP wants to divide India, we want to unite it," he further said.
Summary:
After four nuns who protested against rape-accused Bishop Franco Mulakkal were asked to leave Kuravilangad convent, the nuns wrote to Kerala CM Pinarayi Vijayan asking him to intervene in the matter.
Summary:
"Pakistan should introspect its role in the precarious situation in Afghanistan", he added.
Summary:
Hongwei went missing in September after travelling back to his native China.
Summary:
Iranian Foreign Minister Javad Zarif on Friday mocked US National Security Advisor John Bolton's calls for strikes on Iran using a play on the viral '10 Year Challenge'.
Zarif shared images of two separate articles from 2009 and 2019, where Bolton called for strikes on Iran.
Summary:
Boo the Pomeranian dog, who had over 1.6 crore Facebook followers, has died aged 12.
His owners said that he had showed signs of heart problems ever since his "best friend" and fellow Pomeranian, Buddy, died in 2017.
Summary:
India head coach Ravi Shastri has said that he has never seen an individual so sound as former India captain MS Dhoni.
"Players [like Dhoni] only come once in 30 or 40 years.
Enjoy while it lasts," Shastri further said.
Summary:
Italian tennis player Andreas Seppi ensured his wife Michela Bernardi stayed dry in the rain during his Australian Open third round match against America's Frances Tiafoe on Friday.
Summary:
World number three Roger Federer was stopped by security outside a locker room at Australian Open for not having his accreditation with him.
Summary:
A cutout of TMC chief and West Bengal CM Mamata Banerjee, which is said to be inspired by Goddess Durga, has been erected in Kolkata for the Opposition rally.
Summary:
A Delhi court on Saturday pulled up Delhi Police for filing a 1,200-page chargesheet against former JNU Students Union President Kanhaiya Kumar and others in the 2016 sedition case without approval from the Delhi government.
"Why did you file [the chargesheet] without approval?
Summary:
Telangana's Cyberabad Traffic Police has sent at least 100 letters within a month informing various companies about their employees' traffic violations.
Summary:
Mexican President Andrés Manuel López Obrador pledged to step up efforts to stamp out fuel theft following the explosion.
Summary:
India's richest man Mukesh Ambani on Friday said Reliance Industries will first roll out its e-commerce platform to 1.2 million retailers in Gujarat, as part of a nationwide plan.
Summary:
Market regulator SEBI on Friday rejected India's largest engineering and construction company Larsen & Toubro's (L&T) â¹9,000-crore share buyback.
Summary:
Sy, who stepped down as SM Investments' Chairman in 2017, had a net worth of $19 billion, according to Forbes.
Summary:
Summary:
Kartik Aaryan, Bhumi Pednekar, and Ananya Panday will star in the upcoming remake of the 1978 film 'Pati Patni Aur Woh'.
Summary:
Summary:
The sisters will appear as guests in the opening episode of the show's third season, reports suggested.
Summary:
Indian pacer Umesh Yadav and left-arm bowler Aditya Sarvate grabbed five wickets each in the last innings to help Vidarbha register the win.
Summary:
World number one Romania's Simona Halep beat seven-time Grand Slam champion Venus Williams at the Australian Open 2019 to set up a pre-quarterfinal clash with Venus' sister Serena Williams.
Summary:
Indian para-powerlifter Vikramsingh Adhikari has been handed a four-year ban by the International Paralympic Committee (IPC) for a second anti-doping violation.
Summary:
Sweden-based music streaming service Spotify has accidentally revealed its launch plans for India through its India Terms and Conditions (T&C) page, as per a report.
Summary:
Speaking at 'United India Rally', DMK President MK Stalin said PM Narendra Modi is afraid of a few people and West Bengal CM Mamata Banerjee is among them.
Summary:
Akhilesh further accused BJP of letting down people and disturbing the communal harmony of the nation.
Summary:
The CBDT has reportedly decided to relieve past notices issued to startups and investors over the 'Angel Tax'.
Summary:
Two women of menstruating age, attempting to enter Sabarimala temple on Saturday, the last day of the annual Sabarimala pilgrimage, were sent back by police amid fear of protests.
Summary:
The lawsuit filed last year, alleges the workers were called racial slurs and told "to go back to Africa".
Summary:
The Afghan Taliban has rejected reports of resuming talks with the US in Pakistan.
Summary:
Cohen had pleaded guilty in November 2018 to lying to Congress about the project.
Summary:
Russia and Japan are still "far from being partners in international relations", Russian Foreign Minister Sergey Lavrov has said.
Summary:
"There is so much of culture of silence...around the issue of sexual harassment...that we are just going through our lives without recognising it properly.
Summary:
Sharing an anecdote from his cash-strapped days, Nawazuddin Siddiqui revealed he had once bought bunches of coriander worth â¹200 from a wholesaler to sell and make money.
Summary:
"For the first few seasons, I was allowed to wash my hair because I was an aristocratic young girl," she said.
Summary:
Vicky Kaushal and Yami Gautam's 'Uri: The Surgical Strike' has been leaked online despite the makers' attempt to curb piracy.
Summary:
Saurashtra chased down 372-run target against Uttar Pradesh in the quarter-finals to record the highest successful run chase in Ranji Trophy history.
Summary:
German female coach Imke Wubbenhorst, who manages BV Cloppenburg in the fifth tier of German football, revealed she was once asked by a journalist whether she warns her players to put...pants on when she enters dressing room.
Summary:
During his speech at opposition rally in Kolkata, Delhi CM Arvind Kejriwal said, "What Pakistan could not achieve in 70 years since India's independence, Narendra Modi and Amit Shah have achieved in five years." "They have turned Hindus against Muslims, Muslims against Christians.
Summary:
A WhatsApp chat purportedly between a Madhya Pradesh district collector and her deputy, in which the former asked the latter to ensure BJP's victory in an assembly seat, has gone viral.
If you want to become SDM, then make the BJP win," the messages read.
Summary:
Grimes was in a relationship with Musk while Banks claimed she was staying at his place when the "funding secured" tweet was posted.
Summary:
At least three on the list, Deivasigamani, Kalavathi and Paranjyoti, are men, while many women claim they wrote the wrong age while registering online.
Summary:
India on Friday protested against an order by Pakistan's Supreme Court extending its jurisdiction over Gilgit-Baltistan in Pakistan-occupied Kashmir (PoK), calling it an interference in India's internal affairs.
Summary:
Tuticorin student leader Santhosh Raj, who asked Rajinikanth "Who are you?" when the actor visited him in hospital, has been arrested for allegedly distributing anti-Sterlite pamphlets in his college.
Summary:
The family of inspector Subodh Kumar Singh, who was killed in Bulandshahr mob violence, on Friday received a sum of â¹70 lakh from Uttar Pradesh police, Meerut Zone ADG Prashant Kumar confirmed.
Summary:
A man working at a night club as a bouncer allegedly shot dead a 22-year-old woman on Saturday for not withdrawing a rape case filed by her against him.
Summary:
The head of a 56-year-old woman was smashed and severed after hitting an electric pole when she leaned out of a window of a rashly-driven bus to vomit in Madhya Pradesh on Friday.
Summary:
The 17-year-old was shot dead by Jason Van Dyke after he refused to follow Dyke's command to drop a knife that he was holding.
Summary:
Former US President George W Bush delivered pizzas to thank his Secret Service detail for continuing to work without pay amid the ongoing partial government shutdown.
Summary:
Police said the vehicle was being driven by an 86-year-old man who "had medical issues prior to the car going off roadway".
Summary:
In another video, the girls were seen climbing back into the SUV through the back window.
Summary:
Nick is Jaden's good friend, so he wants to be with the latter at his debut performance in India, reports said.
Summary:
They are all nominated at the awards, the recording academy said in a statement.
Summary:
'Baahubali' actor Prabhas will be reportedly performing with French dancers 'Les Twins', who are known for performing with Beyoncé in her songs.
Summary:
John Carney's 2013 film 'Begin Again' starring Mark Ruffalo, Keira Knightley, Hailee Steinfeld and Adam Levine will get its Bollywood adaptation which will be directed by 'Veere Di Wedding' director Shashanka Ghosh and co-produced by Bhushan Kumar.
Summary:
Speaking about Australian spinner Nathan Lyon, former spinner Shane Warne said that Lyon needs to develop 'something else' if he wants to become a white-ball cricketer.
Summary:
Faulkner ended up scoring 28 runs in 20 balls.
Summary:
Saina Nehwal's run at the Malaysia Masters came to an end following her straight-game loss to reigning Olympic and world champion Carolina Marin of Spain in the women's singles semifinals on Saturday.
Summary:
In a pre-recorded video, Trump told the demonstrators that he "will always defend the first right in our Declaration of Independence, the right to life", which he said extended to "unborn children".
Summary:
The Defence Ministry on Friday called a news report 'factually incorrect' which said the government's decision to buy only 36 Rafale fighter jets increased the price of each aircraft by 41%.
Summary:
"As a team we are totally in sync with what he is doing," Kohli further said.
Summary:
Ex-India captain Sunil Gavaskar criticised hosts Australia for not honouring India with cash award for their ODI series victory.
India were just presented with a trophy, while cash awards for Man of the Match and Man of the Series were donated to charity.
Summary:
After the Appointments Committee of the Cabinet curtailed his tenure as the CBI Special Director, Rakesh Asthana has been appointed as the chief of Bureau of Civil Aviation Security.
Summary:
Talking about MS Dhoni, who slammed three consecutive fifties in the ODI series against Australia and won Man of the Series, Australia head coach Justin Langer said, "Dhoni is 37 years old.
He is literally an all-time great," Langer added.
Summary:
MS Dhoni took the match ball with him following India's ODI series victory against Australia on Friday.
Summary:
Wicketkeeper-batsman Parthiv Patel shared a collage of himself on Instagram having same pictures as part of the '10-year challenge', wherein users share their pictures from 2009 and 2019.
Summary:
The 34-year-old was part of a team led by award-winning journalist Anas Aremeyaw Anas, whose investigation led to the resignation of Ghana Football Association head.
Summary:
Summary:
Actor Prakash Raj, who recently announced his entry into politics, has said, "After six months PM Narendra Modi will be another MP.
But what happened to the jobs he promised?" Raj added, "BJP say they're going to be here for 50 years.
Summary:
Days after Karnataka BJP flew over 100 MLAs to a Gurugram resort amid poaching allegations, Congress also took its state MLAs to a resort allegedly after three MLAs skipped its party meet without prior notice.
Summary:
Japan Aerospace Exploration Agency has launched Tokyo-based startup Star-ALE's mini-satellite aimed to deliver the world's first artificial meteor shower.
Summary:
Family members of at least five of the 15 people trapped inside a coal mine in Meghalaya failed to identify the decomposed body of a victim on Friday.
Summary:
Chaturvedi's legs were out of the car, indicating he tried to leave the car, police added.
Summary:
Adam was later diagnosed with stage three melanoma and doctors discovered more cancerous lumps on his forehead.
Summary:
The White House on Friday announced that US President Donald Trump would hold a second summit with North Korean leader Kim Jong-un in late February.
Summary:
Senior Congress leader P Chidambaram has said that India's economy was in a "perilous state" and that he would have resigned had he been the Finance Minister.
Summary:
US bank JPMorgan Chase awarded its billionaire CEO Jamie Dimon $31 million in total compensation for 2018, a 5.1% increase from previous year.
Summary:
TamilRockers, which uploads pirated versions of Tamil, Telugu, Hindi, English, Malayalam and Kannada films on their site, keeps changing its domain extension.
Summary:
Television actress and host Saumya Tandon and her husband Saurabh have been blessed with a baby boy, as per reports.
Summary:
Congratulating Indian cricket team on their ODI series win over Australia, Anushka Sharma posted a picture of Team India and wrote, "Happy to have witnessed the historic victories by the men...Huge congratulations." "What an unforgettable and outstanding tour it's been," she further wrote.
Summary:
As part of the viral '10 Year Challenge', filmmaker Karan Johar took to Instagram to share two pictures of himself, one taken in 2009 and the other from 2019.
"I hope this feeling lasts!" Karan added.
Summary:
This was reportedly suggested in a meeting with the MoS Civil Aviation Jayant Sinha at the Global Aviation Summit.
Summary:
This comes after previous reports claimed that FirstCry may raise at least $150 million at an $800-900 million valuation from SoftBank.
Summary:
Mostly eighth-standard pass students will be selected for the one-month programme and will be given lectures and access to ISRO's labs, Sivan said.
Summary:
On Tuesday, around 49 people were injured on the first day of the Jallikattu festival in Tamil Nadu.
Summary:
The Myanmar Army has killed 13 rebels belonging to the Arakan Army (AA) in the violence-hit Rakhine State, a military spokesperson said on Friday.
Summary:
Defence Minister Nirmala Sitharaman has approved induction of women as jawans in the Army's Corps of Military Police.
Summary:
Ex-South Africa batsman AB de Villiers slammed the fastest ODI hundred off 31 balls against Windies in 40 minutes on January 18, 2015.
Summary:
Actor Ranveer Singh has said that after his marriage with Deepika Padukone, he moved into the actress' house as she was comfortable there and he did not want to "displace her".
Summary:
Street artist Banksy's artwork, which appeared on a garage wall in UK's Port Talbot in December, was sold for over â¹92 lakh to art dealer John Brandler.
Summary:
The Mumbai Cricket Association has banned Mumbai Under-16 captain for three years for exposing in front of his teammate and using bad words during an altercation.
Summary:
India leg-spinner Yuzvendra Chahal, in a recent interview, said actor Randeep Hooda would be the perfect choice to portray him onscreen if there's a biopic made on his life.
Summary:
Summary:
India's first crematorium for cows, named 'gau mukti dham', will soon be built in Madhya Pradesh's Bhopal, city's Mayor Alok Sharma informed on Thursday.
Summary:
In August 2018, CM Yogi Adityanath's government renamed Mughalsarai Junction, India's biggest British-era railway station, to Deen Dayal Upadhyaya Junction.
Summary:
Richa Chadha said she takes comparisons between her upcoming film 'Shakeela' and Vidya Balan's 'The Dirty Picture' "in the right spirit".
Summary:
The Hindi remake rights for the film have been acquired by filmmaker Nikhil Dwivedi's production house, reports further said.
Summary:
Earlier reports stated the Maharashtra wing of the Karni Sena protested against the film for allegedly maligning Rani Laxmibai's image.
Summary:
Talking about the number four spot in the Indian team's lineup, Indian captain Virat Kohli said, "The number four position, again, has been a sort of an area which we want solidified." "Anyone who bats at four will have to take the responsibility for the World Cup...
Summary:
"Super successful test series and India addressing all the concerns in the ODI side in style," tweeted former cricketer Mohammad Kaif.
Summary:
Cristiano Ronaldo scored the match-winning goal to help his side Juventus beat AC Milan to lift the trophy at the 31st annual Supercoppa Italiana.
He is decisive and scores big goals, but the whole team put in a good performance," Juventus coach Massimiliano Allegri said.
Summary:
Indian wrestler Vinesh Phogat has become the first Indian athlete to receive a nomination in the Laureus World Sports Awards to be held on February 18.
Summary:
Former captain Sardar Singh has been included in a 13-member Hockey India selection committee.
It is a new challenge for me and I am always eager to serve Indian hockey," Sardar said.
Summary:
Micro-blogging platform Twitter has revealed that a bug had exposed private tweets of some Android users for over four years between November 3, 2014, and January 14, 2019.
Summary:
Congress President Rahul Gandhi has written a letter to West Bengal CM Mamata Banerjee, showing his support for her 'United India Rally' that will take place in Kolkata on Saturday.
Summary:
This comes after three Congress MLAs didn't turn up at the Congress Legislature Party meeting held on Friday.
Summary:
Refusing to take oath as a legislator, BJP MLA from Telangana, Raja Singh said he had done so as the pro-tem Speaker, Mumtaz Ahmed Khan, is from AIMIM party.
Khan was appointed as Speaker to preside over the first day of the newly-elected Telangana Assembly.
Summary:
Congress has declared a total income of â¹199 crore for 2017-18, its lowest in 11 years, according to the annual audit report filed by the party.
Summary:
As many as 7,000 persons, mostly graduates, had applied for 13 vacant posts of canteen waiters in Mantralaya, the Maharashtra secretariat, an official said.
Summary:
A Delhi-based man has been arrested for allegedly calling up the police control room (PCR) and threatening to kill Prime Minister Narendra Modi.
Summary:
Sri Lankan President Maithripala Sirisena praised his Filipino counterpart Rodrigo Duterte's war on drugs, calling it an "example to the world".
Summary:
France has triggered a plan for a no-deal Brexit after the British Parliament rejected PM Theresa May's deal.
Summary:
Chinese TV programmes appeared to be censoring earrings worn by male actors by blurring their earlobes as it is reportedly against the Chinese government's view of masculinity.
Summary:
Meanwhile, Justice Arun Mishra said, "It is better not to be in Delhi.
Summary:
Canada's 67-year-old poker player Scott Wellenbach, who came in third at a poker tournament in the Bahamas and won â¹4.8 crore, is donating majority of his prize money to a charity.
Summary:
Actress Kangana Ranaut claimed that Karni Sena is harassing her over her film 'Manikarnika: The Queen of Jhansi' and added, "I am also a Rajput and I will destroy each one of them." Karni Sena reportedly threatened the film's makers of consequences if Rani Laxmibai's image is maligned.
Summary:
After CoA sought Supreme Court's views on punishment to cricketers Hardik Pandya and KL Rahul for their comments on women, actress Swara Bhasker tweeted, "Aur koi kaam nahi hai kya hamaarey courts ke paas?" She added, "I'm a staunch feminist...But really?
Summary:
Washington's 27-year-old Nick Naydev jumped straight into the water from the 11th floor of a Royal Caribbean cruise ship docked in the Bahamas for an Instagram video.
Summary:
A day after his 'pig fever' remark against BJP President Amit Shah, Congress MP BK Hariprasad said, "We have a report that he (Shah) doesn't have any flu." "We also know people in AIIMS, they said he is not admitted because of the flu.
Summary:
Secondly, it has purchased two squadrons that'll cost â¬25 million more per aircraft.
Summary:
Summary:
Taking a dig at BJP, Congress MP Shashi Tharoor shared a collage of before and after pictures of 'Ram Mandir' and BJP headquarters under the '10 Year Challenge'.
Summary:
Musk added Tesla's 4% profit in 2018 third quarter was "small" but the "first meaningful profit in its 15-year history".
Summary:
Almost 12 years after a 55-year-old woman and her 22-year-old daughter were raped and murdered in front of each other in Kerala's Idukki, the second accused, Jomon Poruvelil has been awarded death penalty.
Summary:
A woman in the Indonesian province of West Nusa Tenggara burned her husband alive after he refused to give her the passcode to his mobile phone.
Summary:
Two Russian Su-34 fighter jets collided mid-air over the Sea of Japan during a training flight on Friday, the Russian Defence Ministry said.
Summary:
The two airlines were forced to ground the aircraft on several occasions due to engine-related issues.
Summary:
Reacting to the sexual harassment allegations against filmmaker Rajkumar Hirani, actress Richa Chadha said, "He's one of the directors with the cleanest image." "I'm not defending him or the girl either.
She further said that in such cases people must take a "legal route".
Summary:
Following his Man of the Series-winning performance, Indian wicket-keeper MS Dhoni said that he is happy to bat at any position.
I can't say I can't bat at No. 6 after playing 14 years," Dhoni said.
Summary:
Indian Premier League side Chennai Super Kings congratulated Australian cricketer Shane Watson after he became the oldest player to hit a century in the Big Bash League.
Summary:
Archer was stopped from bowling after having bowled only ten deliveries in the match.
Summary:
India's Saina Nehwal registered a straight-game win over former world champion Nozomi Okuhara of Japan to enter the women's singles semifinals of the $350,000 Malaysia Masters in Kuala Lumpur on Friday.
Summary:
However, Roose further pointed out that leaving reviews for your employer's products is against Amazon's rules.
Summary:
French luxury fashion house Louis Vuitton has reportedly set the price for its Horizon Earphones at $995.
Summary:
The move is part of an industry-wide recall of reportedly around 37 million vehicles containing the airbags.
Summary:
A man claimed that he saw a leopard near a drain on a service lane in Uttar Pradesh's Greater Noida on Wednesday night.
Summary:
Karnataka Chief Minister HD Kumaraswamy on Friday said the Central government should confer the Bharat Ratna on Siddaganga mutt's 111-year-old seer Shivakumara Swami.
Summary:
Justice Asif Saeed Khan Khosa, who was part of the bench that disqualified former Pakistan PM Nawaz Sharif from holding office over corruption, took oath as the Chief Justice of Pakistan on Friday.
Summary:
Self-styled 'sex coach' Anastasia Vashukevich, who claimed to have evidence of Russian meddling in 2016 US Presidential election, has been detained in Moscow on charges of inducement to prostitution after deportation from Thailand.
Summary:
Former Pakistan President Asif Ali Zardari has called PM Imran Khan an "accidental, selected Prime Minister" and told him 'to learn how to govern a country'.
Summary:
With this, India became the first visiting side to win a bilateral series (two or more matches) in all three formats in Australia.
Summary:
This was Dhoni's first Man of the Series award since the five-match home ODI series against England in October 2011.
Summary:
Reacting to Indian cricketers KL Rahul and Hardik Pandya being suspended for their comments on women on Koffee with Karan, ex-India captain Sourav Ganguly said, "We are all human beings, we are not machines that everything you put in comes out perfect." "People make mistakes.
Summary:
Workers exchanged blows and flung chairs at each other in the presence of senior leaders, including Virbhadra Singh.
Summary:
Bharatiya Janata Yuva Morcha Mumbai President Mohit Kamboj on Thursday said he has changed his surname to "Bharatiya" to unite people under a common national identity of "Bharatiyata".
Summary:
Shiv Sena, in its mouthpiece Saamana, said, "The season of announcements starts ahead of the polls.
Summary:
A Chinese surgeon has performed the world's first 5G remote surgery operating from about 50 km away, according to state media.
Summary:
Performances based on Bollywood and Sandalwood songs at annual day functions in schools will be banned in Bengaluru from next year, the department of primary and secondary education said.
Summary:
Summary:
A man is suspected to have committed suicide in Odisha's Khordha after he recorded a video alleging he failed to get a house under rural housing scheme after he wasn't able to pay â¹15,000-â¹20,000 as bribe.
I work as labourer," the man said in the video.
Summary:
Two Uttar Pradesh sisters, 18-year-old Jyoti Kumari and 16-year-old Neha, pretended to be boys for over four years to run their ill father's barber shop.
Summary:
The US has discussed potential missile defence cooperation with India, the US said in its '2019 Missile Defence Review' (MDR).
Summary:
While no birth defects were immediately observed, an HIV screening would be conducted in 45 days to ascertain whether the baby contracted the infection.
Summary:
Oxford said the ban was linked to "public concerns raised in recent months surrounding UK partnerships with Huawei".
Summary:
Speaking at the 9th Vibrant Gujarat summit, Reliance Industries Chairman Mukesh Ambani said that "Gujarat is Reliance's janmabhoomi (birthplace) as well as its karmabhoomi (workplace)".
Summary:
The film will not be a sequel or a remake of the original and will feature a different story, reports said.
Summary:
Shraddha Kapoor's brother and actor Siddhanth Kapoor, who has done films like 'Shootout At Wadala' and 'Ugly', has said, "I'd rather play twisted, crazier characters than a plain Bollywood hero with abs." "I'm always looking for a lot of rawness in the characters I choose to play.
Summary:
The film, which is scheduled to release on March 8, will also be premiered at the Sundance Film Festival which will be held from January 24 to February 3.
Summary:
Actress Deepika Padukone revealed that she turned down a film as its makers offered her less pay only to accommodate the fee of the male lead actor.
Deepika further said a woman's role in the film industry has evolved with time.
Summary:
Summary:
Wozniacki is the highest-ranked opponent Sharapova has beaten since her first-round victory over Simona Halep at the US Open in 2017.
Summary:
Technology giant Google has entered into an agreement with Fossil Group to buy its intellectual property (IP) related to a smartwatch technology currently under development for $40 million.
"As part of the transaction, a portion of Fossil GroupâÂÂs research and development (R&D) team...
Summary:
Competition Commission of India (CCI) has approved the acquisition of billionaire Kumar Mangalam Birla's supermarket chain 'More' by Amazon and private equity fund Samara Capital.
Summary:
Pune-based digital lending platform LoanTap has raised $8 million (around â¹57 crore) in its fifth fundraising round led by Bengaluru-based early-stage venture capital fund 3one4 Capital.
Summary:
Uttar Pradesh government on Friday approved 10% reservation in jobs and educational institutions for the economically weaker sections in general category.
Summary:
Reacting to an armed guard taking doughnuts to Downing Street which houses UK PM's residence, a user tweeted, "Surely doughnuts should always be given this much protection." Others wrote, "This is a vision of post #Brexit future.
Summary:
US Representative Tulsi Gabbard has apologised for her past comments and actions against the gay community.
Summary:
To know the time, the user needs to sound a minute repeater, whose chimes tell the time.
"It's not a time-wasting 'smart' device displaying notifications," the company said.
Summary:
After a picture of an egg became the most liked photo on Instagram by beating Kylie Jenner's picture of her daughter Stormi, singer Diljit Dosanjh shared a video of him frying an egg.
Summary:
Earlier Alia had tweeted saying the movie is about empathy and compassion, and CBFC should lift the "ban" on it.
Summary:
India's 28-year-old leg-spinner Yuzvendra Chahal recorded the joint-best bowling figures in an ODI in Australia, achieving the feat by registering figures of 10-0-42-6 in the third ODI against Australia in Melbourne today.
Summary:
Umpire Michael Gough declared it dead-ball as the batsman pulled out despite the ball being legal.
Summary:
Team India captain Virat Kohli has said that he wants India to become a superpower in Test cricket.
Summary:
The Supreme Court on Friday directed the Kerala government to provide round-the-clock security to two women, Bindu and Kanakadurga, who entered the Sabarimala temple on January 2.
Summary:
A bride who was shot in the leg by an unknown person at her wedding in Delhi's Shakarpur area on Thursday returned from hospital for the ceremony.
Summary:
Three people were killed and 7 others were trapped after an avalanche hit Khardung La pass in J&K's Ladakh on Friday.
Summary:
At least 51 women under the age of 50 have entered the Sabarimala temple since the Supreme Court's verdict allowing women of all ages to enter the temple.
Summary:
Additional Director General (ADG) PAC, Binod Kumar Singh said the personnel's allowance for maintaining a moustache will be increased from â¹50 to â¹250 a month.
Summary:
Mexican drug lord Joaquin 'El Chapo' Guzman's ex-lover Lucero Sanchez while testifying against him at a US court revealed that he drew her into marijuana trafficking and didn't pay her for her work.
Summary:
An Israeli museum plans to withdraw a sculpture, entitled 'McJesus', depicting the McDonald's mascot as the crucified Jesus following protests.
Summary:
Malaysia on Friday said that criminal charges filed against Goldman Sachs for its role in the 1MDB scandal could be dropped if the bank pays $7.5 billion.
There must be the necessary reparations and compensations," Malaysia said.
Summary:
Streaming giant Netflix said in a letter to shareholders that it competes with and loses to battle royale game Fortnite more than HBO.
Summary:
Emraan Hashmi's 'Why Cheat India', is "not about hero-worshipping but focuses mainly on story and the content", according to Times Now.
Summary:
Arshad Warsi, who made Bollywood debut in 1996 with 'Tere Mere Sapne', said, "I wish I had studied and learnt about the Hindi film industry before entering it." "During the course of my life, I understood...acting's a very tiny part of the job.
Summary:
'Makkhi' actor Sudeep will be playing the role of the villain in Salman Khan's 'Dabangg 3', as per reports.
Summary:
Ankita Lokhande, who'll be seen as 'Jhalkari Bai' in her debut film 'Manikarnika: The Queen of Jhansi', said, "At least once, I wish to play Sanjay Leela Bhansali's heroine opposite Salman Khan." "I'd love to work with Bhansali as I admire his knowledge and his sense for cinema," she added.
Summary:
We are still working on the script." Akshay will reportedly be seen playing an Anti-Terrorism Squad (ATS) officer in the film.
Summary:
Sonakshi Sinha and Varun Sharma will be collaborating for a film which will also star Annu Kapoor, as per reports.
Summary:
Six-time Australian Open champion Roger Federer registered a straight-set win in his 100th appearance at Australian Open's Rod Laver Arena.
Federer, who is the defending champion, is chasing a record seventh Australian Open title in Melbourne.
Summary:
Gurugram-based hotel startup OYO's parent Oravel Stays has reportedly been issued notices by the Income Tax Department over filing inaccurate income details for financial year 2016-17.
Summary:
Experts have dated a periodic table chart found in Scotland's University of St Andrews as being printed between 1879 and 1886, believed to be the oldest surviving periodic table.
Summary:
A grenade attack took place at Ghanta Ghar in Srinagar's Lal Chowk on Friday.
Summary:
Rashtriya Swayamsevak Sangh (RSS) General Secretary Suresh Bhaiyaji Joshi on Friday said that RSS wants Ram Temple to be constructed by 2025.
Summary:
US rapper Snoop Dogg has invested in Swedish online payments startup Klarna, which was last valued at $2.5 billion.
Summary:
Ex-pacer Tanvir Ahmed has said some of the former Pakistani cricketers are so desperate for employment opportunities in Pakistan Cricket Board (PCB) that they would be willing to work even in toilets if the board employs them.
Summary:
"Can't wait..would have loved to shout when you are batting..oh wait Punjab didn't go through to knockouts..isn't it?" replied Parthiv.
Summary:
"No player made a mistake.
"The simmering anger among...players for being treated like this...brought about the victory [in 2018].
Summary:
Kerala defeated Gujarat by 113 runs on Thursday to qualify for the Ranji Trophy semi-finals for the first time in their 61-year history.
Summary:
Former Pakistan captain Rashid Latif has slammed the selectors and team management for their "extended Champions Trophy hangover" and "inappropriate preparation" as reasons for their downfall in Test cricket.
Summary:
A picture shared by a former Microsoft employee shows the company's Co-founder and the world's second richest person, Bill Gates, waiting in line to buy food at a fast-food restaurant in the US.
Summary:
When water in the eddy flows more slowly than the main current, it's more likely to freeze, creating the disc.
Summary:
Son of former BSF constable Tej Bahadur Yadav, who was dismissed from service after he had released a video last year on quality of food served to soldiers, was found dead.
Summary:
Jaipur Municipal Corporation (JMC) has banned non-veg food, alcohol and hookah in events held at government community halls in the city.
Summary:
She made four separate hospital visits over a three week period before doctors found the packet.
Summary:
Britain's Prince Philip, husband of Queen Elizabeth II, has emerged unhurt after a car crash in which the 97-year-old's Land Rover flipped onto its side.
Summary:
A US hotel dishwasher, whose employer failed to honour her religious beliefs by repeatedly scheduling her to work on Sundays and eventually firing her, has been awarded $21.5 million (over â¹150 crore).
Summary:
Kylie Jenner and Travis Scott are amongst the celebrities who have received the wedding invitation, according to reports.
Summary:
Actress Katrina Kaif was approached to star opposite Akshay Kumar in the upcoming Rohit Shetty directorial 'Sooryavanshi', as per reports.
Summary:
Speaking about the #MeToo movement, actor Emraan Hashmi said, "ItâÂÂs a great movement but there has to be some kind of due process." "We just jump the gun and start making accusations," he added.
Summary:
Actress Kangana Ranaut recently got a Shakti temple built in her hometown Himachal Pradesh, as per reports.
The actress visited the temple to seek blessings, ahead of the release of her upcoming film 'Manikarnika: The Queen of Jhansi'.
Summary:
Former Facebook employee Serkan Piantino's artificial intelligence (AI) platform Spell has raised $15 million in its Series A round of funding.
Summary:
BJP MP Poonam Mahajan has said Lord Ram was the first north Indian to enter Maharashtra.
Summary:
The man claimed his wife spent most of her time clicking selfies, adding that she even forgot to serve him food at times, following which he took her phone away.
Summary:
The US became the first country in the world to recognise Jerusalem as Israel's capital after it moved its embassy to the city last year.
Summary:
The INF treaty required the elimination of both US' and Russia's land-based nuclear missiles from Europe.
Summary:
At least eight people were killed and 10 others were injured on Thursday after a car bomb exploded at a police academy in Colombia's capital Bogotá, the Defence Ministry said.
Summary:
This also includes setting up an oil pipeline from Paradip to Numaligarh and product pipeline from Numaligarh to Siliguri.
Summary:
Consumer goods giant Hindustan Unilever's (HUL) December quarter profit rose 8.9% to â¹1,444 crore.
Summary:
The Bombay High Court on Thursday adjourned the hearing of Kotak Mahindra Bank's petition against the Reserve Bank of India (RBI) over promoter stake reduction to March 12.
Summary:
It has reportedly asked the four state-run refiners to share the 9 million barrels of Iranian oil available monthly under a 180-day waiver from US sanctions.
Summary:
Days after Alok Verma was removed from his post of CBI Director, the Appointments Committee of the Cabinet has curtailed the tenure of the investigative agency's Special Director Rakesh Asthana.
Summary:
To check the illegal download of 'Uri: The Surgical Strike', its makers have uploaded a fake video of the film on Torrent.
Summary:
The CBI arrested six officials and private persons in connection with a case of alleged corruption in the Sports Authority of India (SAI) on Thursday.
Summary:
While discussing suspension of Hardik Pandya and KL Rahul with CoA chief Vinod Rai, Diana Edulji cited example of Croatia sending home a player during 2018 FIFA World Cup.
Summary:
Rai suggested a penalty for Pandya and KL Rahul, saying "it could be different for both players".
Summary:
Jaffer had hit his first double hundred after turning 40 against Rest of India last year.
Summary:
Responding to the viral '10 Year Challenge' inspired by Facebook's memories feature, the social media giant said, "The challenge is a user-generated meme that started on its own...without our involvement." "It's evidence of the fun people have on Facebook...that's it," Facebook added.
Summary:
"[Kulkarni] claims he was selling the weapons because he wanted to make money quickly to pay off loans," police said.
Summary:
Hitting out at rebel BJP MP Shatrughan Sinha, Bihar Deputy CM Sushil Modi dared Sinha to quit the party "if he doesn't like it".
Summary:
Methanol in Nhat's body oxidised and turned into formic acid, making him unconscious, doctors said.
Summary:
The Indian Space Research Organisation has shared two satellite images of the Kumbh Mela 2019 which shows key areas of the festivities in Prayagraj (formerly Allahabad), including the Triveni Sangam.
Summary:
Police pulled out a 50-year-old woman's body from a burning funeral pyre at a village in Uttar Pradesh's Muzaffarnagar and booked her husband and four others, suspecting foul play behind her death.
Summary:
A 22-year-old Delhi man was arrested by police after a gift-wrapped Taj Mahal replica he threw at the terrace of his female love interest's house hit her father in the head.
Summary:
Filmmaker Sanjay Tripathy is reportedly working on the script of Infosys Co-founder Narayana Murthy's biopic.
Summary:
Rapper Cardi B criticised US President Donald Trump for ordering federal government workers to return to work without pay amid the ongoing partial government shutdown.
Summary:
Speaking about her career as an actress, Jacqueline Fernandez said, "Whatever I am today is a result of all the choices I made through the journey." "The love and support of the audience is my biggest asset that I have earned in my...career," she added.
Summary:
"Our...team is...looking forward to present 'Manikarnika'...to the most important entity of the Republic of India, our Hon'ble President," Kangana said.
Summary:
Opening up about being dropped from the cast of the upcoming remake of the 1978 film 'Pati Patni Aur Woh', actress Taapsee Pannu said she wasnâÂÂt given a "proper reason" by the film's makers.
This is disheartening,â Taapsee further said.
Summary:
The complainant reportedly alleged Kumar had offered her a three-film role in exchange for sex and later blackmailed her.
Summary:
New Zealand-based cloud service platform MEGA has reportedly been breached and 87 GB of data with 12,000 files have been compromised, containing nearly 2.7 billion records.
Summary:
Cook said the US Federal Trade Commission should establish a "data-broker clearinghouse" to help users track their information.
Summary:
Goyal added, "The kind of ugly and indecent comments Congress MP BK Hariprasad" have made, show the "standards of the Congress".
Summary:
The teen reportedly carried the body to a nearby forest to bury it.
Summary:
After the Supreme Court paved the way for reopening of dance bars in Mumbai, the Shiv Sena on Thursday said not making the bill foolproof is a failure of the Maharashtra government.
Summary:
The money was transferred in the bank accounts of 65 people, police said.
Summary:
On being called a "fat lady" by a pensioner on Wednesday, the Duchess of Sussex Meghan Markle said, "I'll take it." The elderly woman made the comment meant as a compliment about Markle's growing baby bump, as the 37-year-old visited an animal welfare charity in London.
Summary:
India's new foreign investment restrictions for e-commerce sector could reduce online sales by $46 billion by 2022, a draft report by PwC stated.
Summary:
In several videos shared online, the dog can be seen on the ramp before the actor begins his walk.
Summary:
In several posts with #18yearchallenge, actress Twinkle Khanna on her 18th marriage anniversary revealed what her husband and actor Akshay Kumar gave her on the occasion.
Summary:
"Lunch date...this is what happens after 38 years of marriage...husband on the phone and I am clicking selfies," Neetu wrote alongside the picture.
Summary:
India wicketkeeper-batsman Rishabh Pant has said that it makes him happy that his mother and sister enjoyed his sledging during the Test series against Australia.
Pant had sledged various Australian cricketers including Usman Khawaja, Tim Paine and Pat Cummins.
Summary:
The 32-year-old scored two batting left handed off the first three deliveries in Gayle's third over.
Summary:
The police will be investigating the matter and Whyte is expected to be penalised by his club.
Summary:
Microsoft Co-founder and the world's second richest person, Bill Gates on Thursday praised National Health Protection Scheme or Ayushman Bharat scheme on completing 100 days of its launch.
Summary:
Summary:
The first full assessment of risks to the world's coffee plants has found 60% of 124 known species are on the edge of extinction due to climate change, deforestation, and diseases.
Summary:
Canada will extradite two accused in an honour killing case to India to face trial.
Summary:
At least 1,300 Rohingyas have fled India for Bangladesh since the start of the year over fears of deportation to Myanmar amid the government's crackdown on illegal migration.
Summary:
The employees of a Chinese company were forced to crawl on a busy road with traffic after they failed to meet their targets.
Summary:
One of her colleagues said he was shocked to discover her body when he arrived at the laboratory.
Summary:
The Washington Post said the fake copies look "strikingly similar to actual copies" of the newspaper.
Summary:
An Irish man spent 18 months injecting himself with his own semen in an effort to cure his back pain.
Summary:
The picture of 74-year-old Sikh model Pritam Singh from California, who has been featured on a billboard at New York's Times Square, is doing rounds on social media.
Summary:
Amul has sent a legal notice to Google India over alleged fake advertisements regarding Amul Parlours and distributors on its platform.
Summary:
Reliance Jio posted a nearly 65% profit jump to â¹831 crore, its fifth consecutive profitable quarter.
Summary:
Speaking about the changing trends in films, actress Deepika Padukone said, "I see a trend that films that are being led by women are doing much better." "But as a creative person, I wouldn't like to make a distinction like male-led, female-led and all of that," she added.
Summary:
Addressing the controversy surrounding the title of her upcoming film 'Sridevi Bungalow', actress Priya Prakash Varrier said, "Sridevi is just the name of my character." This comes after late actress Sridevi's husband Boney Kapoor served a legal notice to the film's makers.
Summary:
Former Uttar Pradesh CM Mayawati on Thursday announced that she will make her nephew join the BSP "movement".
Summary:
This came after NGT said failure to deposit could lead to punitive actions including the country MD's arrest.
Summary:
Gurugram-based bus service startup Shuttl has raised around â¹10 crore debt fund from venture debt provider Trifecta Capital.
Summary:
Bengaluru-based ride-hailing startup Ola has said it aims to launch the postpaid billing feature, 'Ola Money Postpaid', for all its users over "the coming months".
Summary:
Odisha Director General of Police (DGP) RP Sharma on Thursday said conducting simultaneous Lok Sabha and the Assembly elections will be a huge challenge for the state administration.
Summary:
The Mumbai Police on Thursday took the recent viral #10YearChallenge on social media and shared a picture on Twitter.
The challenge requires participants to contrast a recent picture of themselves with one from ten years ago in a collage.
Summary:
Currently, women account for half of Citigroup employees but only 37% of employees at the Assistant VP level through the Managing Director level.
Summary:
The CBI court in Panchkula, through video-conferencing, has sentenced Dera Sacha Sauda's Gurmeet Ram Rahim to life imprisonment for ordering the killing of journalist Ram Chander in 2002.
Summary:
"I'm not 'Egg-xpecting' but it's 'Egg-celent' to hear everyone is so 'Happy For Us'...we're happy for us too!
Summary:
India wicketkeeper-batsman Rishabh Pant, who was involved in on-field banter with Australia captain Tim Paine during the Test series, said when someone provokes him, he doesn't hesitate to give it back.
"That's how I'm.
Summary:
A Mumbai police official on Thursday said that an employee of a city-based five-star hotel has been arrested for allegedly molesting a 35-year-old Canadian woman during her stay in the hotel.
Summary:
The accused also stabbed the couple's 20-year-old son, while the locals and other neighbours present there filmed the incident instead of helping them.
Summary:
A student at Kolkata's Jadavpur University has revealed that professor Kanak Sarkar had asked her if "she would like to bathe with him in any river".
Summary:
A Nagpur family court granted divorce to a couple after recording the wife's consent via a WhatsApp video call on Monday.
Summary:
Navy divers and underwater Remotely Operated Vehicles (ROVs) have reportedly spotted a few skeletons during the search for 15 trapped men in a rat-hole mine in Meghalaya since December 13.
Summary:
The Supreme Court has asked the Search Committee to shortlist names for Lokpal and its members by February end, stating it'll hear the plea for Lokpal appointment on March 7.
Summary:
Nearly 900 people are believed to have been killed over three days in December 2018 in ethnic violence in the Democratic Republic of Congo, the United Nations (UN) said citing reports.
Summary:
Aiia Maasarwe had been in Australia for about six months on a study abroad program at La Trobe University.
Summary:
America's 40-year-old businessman Jason Spindler, CEO and Managing Director of business development firm I-DEV International, was among those killed on Tuesday in a terror attack on a Kenyan hotel.
Summary:
The auditors issued notices to 655 such homebuyers.
Summary:
John Bogle, the Founder of Vanguard Group who popularised low-cost index funds, died of oesophageal cancer on Wednesday at the age of 89.
Summary:
Akshay previously played the villain in Shankar's directorial '2.0', opposite Rajinikanth.
Summary:
Alia Bhatt took to Twitter to urge the Censor Board to release the film 'No Fathers In Kashmir', which features her mother Soni Razdan.
Summary:
Pokémon Go creator Niantic has finalised a Series C funding round of $245 million at a valuation of nearly $4 billion.
Summary:
BJP National General Secretary (Organisation) Ram Lal was admitted to Kailash Hospital, Noida due to high fever.
Summary:
On the appointment of Sheila Dikshit as Delhi Congress chief, Rai said Congress has lost its ground in Delhi and is "leaderless".
Summary:
The French government, which is the biggest shareholder in Renault, has called for Carlos Ghosn's dismissal as Chairman and Chief Executive Officer (CEO) of the automaker.
Summary:
This comes after previous reports said Delhivery could turn into a billion-dollar startup with around $450-million investment from SoftBank.
Summary:
Gurugram-based budget hospitality startup OYO Rooms is facing heavy criticism over its plans to share guest data with the government.
Summary:
Northern Command chief Lieutenant General Ranbir Singh on Thursday said the security forces killed more than 250 terrorists in 2018.
Summary:
The suspended lawmakers cannot participate in the legislative process.
Summary:
Hasher Jallal Taheb was arrested while trying to trade his car for explosives and guns.
Summary:
The court, however, asked HUL to deposit â¹90 crore in Consumer Welfare Fund by mid-May pending a detailed examination of the matter.
Summary:
Billionaire Gautam Adani-led Adani Group on Thursday announced it will partner with Germany's BASF to foray into the petrochemicals sector with a â¹16,000-crore factory at Gujarat's Mundra.
Summary:
Jio customers can avail benefits worth â¹4,450 along with 100GB 4G data on its purchase.
10 lucky buyers will get Amazon coupons worth â¹2000.
Summary:
Thirty five days after 15 miners were trapped inside an illegal coal mine in Meghalaya, the Navy on Thursday found the body of one of them.
Summary:
The Supreme Court has paved the way for reopening of dance bars in Mumbai.
Summary:
Speaking at India Today Mind Rocks 2019, Taapsee Pannu revealed her first relationship was in ninth standard and added, "I thought I was late, compared to [my] friends." "[He] left me after a few months...Usne [kahaa] tha tenth ke boards aa rahe hai," she said.
Summary:
Former Australian wicket-keeper Adam Gilchrist has tweeted that Indian batsman MS Dhoni wasnâÂÂt doing anything against the rules when he didn't ground his bat inside the crease while completing a run.
Summary:
India wicketkeeper-batsman Rishabh Pant took to Instagram on Wednesday to make his relationship public by sharing a picture of himself with his girlfriend Isha Negi.
Summary:
IPL franchise Royal Challengers Bangalore (RCB) took to Twitter to share a collage of their captain Virat Kohli with his pictures from 2009 and 2019 as part of '10-year challenge'.
Notably, Kohli has been part of RCB since the inaugural IPL season.
Summary:
Election watchdog Association for Democratic Reforms has revealed that the Bharatiya Janata Party received â¹437 crore in donations above â¹20,000 in 2017-18.
Summary:
The National Green Tribunal (NGT) has directed Volkswagen India to deposit â¹100 crore by Friday in a case involving emissions violations.
Summary:
The men said in a video they were duped of around â¹2 lakh each and were sent to Iraq on a visit visa.
Summary:
Two women, Bindu Ammini and Kanaka DurgaâÂÂ, who became the first under the age of 50 to enter the Sabarimala hill temple in Kerala have approached the Supreme Court seeking protection.
Summary:
District magistrate of Uttarakhand's Champawat district, Ranbir Singh Chauhan, has ordered a probe into alleged "confinement of women and girls" during their menstrual period in a government building.
Summary:
A 48-year-old doctor in West Bengal collapsed and died of heart attack, minutes after reviving a newborn girl to life in labour room.
Summary:
Armed men on Thursday entered the Jammu-Delhi Duronto Express on the outskirts of Delhi and looted passengers, the police has said.
Summary:
Police on Wednesday filed an FIR against six people after they clicked their pictures inside Ahmedabad's Vastrapur police station and posted them on social media.
Summary:
US President Donald Trump has nominated three Indian-Americans to key positions in his administration.
Summary:
UK PM Theresa May on Wednesday won the no-confidence vote tabled by Opposition and Labour Party leader Jeremy Corbyn by 325 to 306.
Summary:
Goldman helped 1MDB raise $6.5 billion in debt.
Summary:
Goyal is currently the largest shareholder with a 51% stake.
Summary:
Reacting to the sexual harassment allegations against filmmaker Rajkumar Hirani, actress Karishma Tanna said, "You can't just put any false allegations, that is very immature." "When I heard the news, more than being shocked I was very upset," the actress added.
Summary:
Speaking about being labelled as a 'rule-breaker' for the choices she's made in her career, actress Tabu said, "I've never made the choices thinking I want to be called the rule-breaker." "I donâÂÂt feel that there's just one...correct way to do things," Tabu added.
Summary:
According to App Annie's report, China accounted for nearly 50% of global app downloads across iOS and third-party Android apps and 40% of consumer spending in 2018.
Summary:
He was admitted to the old private ward of AIIMS.
Summary:
Mumbai-based Drums Food International, the parent company of Greek yoghurt brand Epigamia, has raised around â¹182 crore in a Series C round of funding.
Summary:
Upskirting, secretly taking photos up a woman's skirt, is to become a criminal offence punishable by up to two years in prison in England and Wales.
Summary:
China has surpassed its rivals in fielding some of the world's most advanced weapon systems by acquiring foreign technology in exchange for granting access to its market, the US' Defence Department said in a report.
Summary:
The plant relied on sunlight on the Moon's far side but died within nine days, after the beginning of Chinese rover's first lunar night on Sunday.
Summary:
UK-based online fashion retailer Boohoo has begun selling 'Reverse Stitched' jeans for over â¹1,500, which appear like they have been worn inside out.
Summary:
Actress Hazel Keech, who married cricketer Yuvraj Singh in 2016, used the viral '10 Year Challenge' to reveal her battle with depression.
Summary:
Team India captain Virat Kohli has said that the team has given the nickname 'White Walker' from TV show 'Game of Thrones' to batsman Cheteshwar Pujara as he is unbreakable at the moment.
Summary:
Talking about his match-winning 82-run partnership with wicketkeeper-batsman MS Dhoni in the second ODI against Australia, India captain Virat Kohli said Dhoni talks a lot while batting and that helps.
Summary:
BJP National President Amit Shah has been admitted to AIIMS for treatment after he was diagnosed with swine flu on Wednesday.
"I have swine flu, for which I am being treated.
Summary:
After Finance Minister Arun Jaitley reportedly flew to the US for medical check-up, Congress President Rahul Gandhi tweeted, "I'm upset to hear Jaitley Ji isn't well." "We fight him on a daily basis for his ideas...However, I and Congress send best wishes for speedy recovery," he added.
Summary:
Chief Justices of Delhi and Rajasthan High Courts were recommended for elevation earlier.
Summary:
Summary:
Infosys will develop the next-generation income tax filing system, which will reduce the processing time for returns to one day from the current average of 63 days, the government said.
Summary:
While speaking about 'political films' being labelled as propaganda, 'Raajneeti' director Prakash Jha said these films have no effect on the outcome of the elections.
He further said, a film "will only stand" when it has the power to engage people.
Summary:
Opening up about the controversy surrounding her film 'Manikarnika: The Queen Of Jhansi', actress Ankita Lokhande said, "I was confident that there'll be a way out." "I did feel bad that it went through so many ups and downs," the actress added.
Summary:
Anil Kapoor shared a picture from his meeting with Prime Minister Narendra Modi and wrote, "I stand humbled and inspired in the wake of our conversation." "His vision and his charisma are infectious and I'm grateful for the chance to have witnessed it in person," Anil added.
Summary:
Summary:
A man who allegedly sent 0.5 kilograms of methamphetamine (meth) to an Apple Store in New York City, US, is facing charges in connection with multiple shipments of meth to the city.
Summary:
Congress leader Shashi Tharoor introduced a private member's bill in the Lok Sabha that seeks to regulate online gaming.
Summary:
Edtech startup Byju's has acquired US-based startup Osmo, that develops apps for kids, for over â¹850 crore ($120 million).
Summary:
Researchers have identified the 'messy' star that made its partner star in a twin-star system explode as a supernova 545 million light-years away.
Summary:
A previous study by the same team revealed 93% of the Earth's energy imbalance ends up in the ocean.
Summary:
The system has taken into account over 300 genetic indicators of breast cancer.
Summary:
Police have arrested a man for allegedly raping a three-month pregnant goat in Bihar's Patna.
The owner accused the man of raping her goat in a drunken state.
Summary:
He said the project aims to cut down the processing time for Income Tax Returns from 63 days to one day.
Summary:
Delhi airport operator DIAL will start charging airlines an X-ray baggage fee ranging from â¹110 to â¹880 on each domestic flight from February 1.
Summary:
Maharashtra CMO's Principal Secretary Bhushan Gagarani has said the state government and LIC are among bidders for the iconic Air India building in Mumbai.
Summary:
India's Ambassador to the US Harsh Vardhan Shringla said India will purchase $5 billion worth of oil and gas from the US every year.
Summary:
Jet Airways on Wednesday said SBI, along with other lenders and stakeholders, is working on a comprehensive resolution plan to turnaround the cash-strapped airline.
Summary:
The government on Wednesday decided to recapitalise state-owned Export-Import Bank of India (Exim Bank) to the tune of â¹6,000 crore.
Summary:
English actor Hugh Grant has revealed his bag was stolen by unidentified thief/thieves who broke into his car.
Summary:
Lyricist Javed Akhtar has defended filmmaker Rajkumar Hirani against sexual harassment allegations.
Summary:
Summary:
Supreme Court judge AK Sikri, whose deciding vote in the PM Narendra Modi-led panel led to the removal of Alok Verma as CBI Director has said, "I don't want the controversy to be dragged.
Summary:
India wicketkeeper-batsman MS Dhoni didn't ground his bat inside the crease while completing a run off the 45th over's last ball during the second Australia ODI.
Summary:
Kohli has now scored an ODI hundred in seven countries as captain, the joint-most by any player.
Summary:
Twenty-time Grand Slam champion Roger Federer has reached the Australian Open third round for the 20th straight year.
Summary:
Twenty three-time Grand Slam champion Serena Williams has said she always wanted her daughter Alexis Olympia's first doll to be black.
Summary:
According to her family members, the girl kept watching as well as uploading videos using a popular video-editing application.
Summary:
Several cows were made to walk over burning hay in Bengaluru to celebrate Makar Sankranti in a ritual seeking good fortune and protection from harm.
Summary:
American fast-food chain Burger King trolled US President Donald Trump for his tweet about ordering more than 1,000 "hamberders" for the Clemson Tigers, winners of the US college football championship.
Mocking Trump, Burger King tweeted, "due to a large order placed yesterday, we're all out of hamberders.
Summary:
Four US soldiers were killed and three others were wounded on Wednesday, US officials said, in a suicide bombing targeting the US-led coalition patrol in Syria's Manbij.
Summary:
Notably, Anil Ambani has been a regular at the biennial business summit.
Summary:
American singer Mariah Carey has reportedly sued her former personal assistant (PA) Lianna Azarian, for secretly filming the singer and using the videos to blackmail her.
Summary:
"New Home," Drake wrote, sharing a picture from his earlier performance at the nightclub.
Summary:
CBI Special Director Rakesh Asthana has moved an application in the Delhi High Court seeking correction in a recent judgment.
Summary:
A leaked internal United Airlines promotional sign on Twitter has revealed that Apple spends $150 million per year on airfare with the airline and books 50 seats daily on flights to China.
Summary:
Congress leader Shashi Tharoor on Wednesday demanded that the PMO should return the "fake" Philip Kotler award received by PM Narendra Modi on Monday.
Summary:
Automobile manufacturer Mahindra & Mahindra (M&M) on Wednesday said it has increased stake in its South Korean arm SsangYong Motor to 74.65% with subscription of additional shares worth â¹316.5 crore.
Summary:
Former Quikr executives' Mumbai-based startup Turtlemint has raised about â¹177 crore in a Series B funding round led by investor Sequoia India.
Summary:
Flipkart's Singapore-based parent entity, controlled by Walmart, has invested â¹1,431 crore in its India wholesale arm, Flipkart India Private Limited.
Summary:
Officials on Wednesday said around 49 people were injured on the first day of the Jallikattu festival in Tamil Nadu.
Summary:
The maximum of 71 tigers were killed in Madhya Pradesh during the period, it revealed.
Summary:
A government official on Wednesday said that a total of 1,428 people died due to extreme weather events in 2018.
Summary:
Russian President Vladimir Putin does not need Twitter to become closer to people, Kremlin spokesman Dmitry Peskov said on being asked if Putin will follow his US counterpart Donald Trump in communicating through social media.
Summary:
Further, SBI disclosed that as per the ArcelorMittal's resolution plan, approved by Essar Steel's committee of creditors, the minimum recovery amount on these loans is â¹11,313 crore.
Summary:
Australia's Anthony Stuart took a hat-trick in his third ODI against Pakistan on January 16, 1997, becoming the second Australian to register an ODI hat-trick.
Summary:
Romeo, dubbed the world's loneliest frog, who spent 10 years in isolation at a Bolivia aquarium, would now be meeting with its mate named 'Juliet'.
Summary:
A 34-year-old man has installed a vending machine for insect-based snacks in Japanese city of Kumamoto, which dispenses about 10 different snacks.
Summary:
Ayushmann Khurrana's wife Tahira Kashyap, who is battling breast cancer, took to social media to reveal her bald look and wrote, "That's a new me with the old self!" "Was getting tired of the extensions, so this is how it is and it's so liberating," she added.
Summary:
Alok Verma was earlier removed as CBI Director in a 2-1 panel vote, dissented by Kharge.
Summary:
Bangladesh Premier League side Rajshahi Kings' players and officials wore jerseys with their mothers' names during their match against Dhaka Dynamites on Wednesday.
Summary:
In October, Tfue asked Musk if he could help him "get better internet", to which the Tesla CEO replied "Yes".
Summary:
Russian startup StartRocket is aiming to launch cube satellites to create a programmable display in the night sky with a "potential audience of 7 billion people".
Summary:
A video shows attendants of hospitals in Ganderbal and Uri carrying patients on their shoulders for several kilometres.
Summary:
A female student also alleged that Sarkar told her that her figure is "model-like", which "men would enjoy".
Summary:
Four of the five nuns who supported their fellow nun in her protest against the rape-accused Bishop Franco Mulakkal have been asked to leave the Kuravilangad convent in Kerala.
Summary:
US President Donald Trump has been trolled for misspelling 'hamburgers' as 'hamberders' in a tweet about a White House event.
Summary:
Reckitt Benckiser, the British maker of Dettol antiseptic and Durex condoms, announced that CEO Rakesh Kapoor would retire by the end of 2019 after 32 years with the company.
Summary:
Bhumi Pednekar said acting for her is a process of "metamorphosis", adding, "ItâÂÂs about forgetting who I am and becoming someone entirely new." "Every artiste has his or her method and every character requires a different approach," the actress said.
Summary:
He insisted that my voice was required for this number," Faisal said.
He has lent his voice for a romantic track titled 'Ishq Tera'.
Summary:
American rapper Kanye West donated $10 million towards the construction of the 'Roden Crater' art project by artist James Turrell in US' Arizona.
Summary:
Salman Khan, who is co-producing 'The Kapil Sharma Show', reportedly urged Sunil to join the show's cast.
Summary:
Earlier, she had said that her blood has been used to create "healing factors" made by her own cells.
Summary:
Social media platform Facebook on Tuesday said it plans to invest $300 million over the next three years in various local journalism projects.
Summary:
Silicon Valley-based cloud data management startup Rubrik, led by Indian origin co-founders, has raised $261 million at a valuation of $3.3 billion in Series E funding round.
Summary:
Bengaluru-based digital payments and e-commerce platform Instamojo has raised about â¹50 crore ($7 million) in a Series B funding round.
Summary:
Notably, the last cricket frog species in Pune was found in 1915, called 'Fejervarya syhadrensis'.
Summary:
Gujarat Chief Minister Vijay Rupani on Wednesday said that no delegation from Pakistan would be attending the upcoming Vibrant Gujarat Global Summit 2019.
Summary:
"That's another conversation about white privilege, things that you have the privilege of doing, that people of colour don't have", Martin said in disagreement.
Summary:
Trudeau should "respect China's judicial sovereignty and stop making irresponsible remarks," China said.
Summary:
Jet Airways will not be able to continue funding operations beyond the next week, Douglas reportedly said.
Summary:
The decision-making process behind the merger is a "blatant circumvention and disregard for statutory procedures", the unions claimed.
Summary:
He also said that he has decided to stop consuming alcohol until his live concerts are over.
Summary:
Suspended all-rounder Hardik Pandya's father Himanshu Pandya has revealed the cricketer hasn't stepped out of the house ever since he returned from Australia.
He is very disappointed with the suspension and repents the views he expressed on [Koffee with Karan].
Summary:
US-based local search service Yelp has revealed that they had trained a neural net to eliminate all the bugs on its app, but it deleted everything on the app.
"We apologise to anyone who had problems with the app this week," Yelp said.
Summary:
CERN has unveiled a concept design of a particle accelerator over three times bigger than the 27-km-long Large Hadron Collider (LHC), currently the world's largest.
Summary:
Congress leader Jagdish Tytler, accused in 1984 anti-Sikh riots, was seen attending an event where Sheila Dikshit took charge as Delhi Congress chief.
Summary:
Home Minister Rajnath Singh on Tuesday said that if someone accepts a religion on their own, there should not be any objections but mass conversion is a matter of concern for any country.
Summary:
The photos of the question paper surfaced online while the first sitting of the examination was underway.
Summary:
Britain's Opposition and Labour Party leader Jeremy Corbyn tabled a no-confidence vote in Prime Minister Theresa May's leadership after the Parliament rejected her Brexit deal.
Summary:
Kenyan President Uhuru Kenyatta announced on Wednesday that all terrorists behind the hotel complex attack in the capital Nairobi have been killed after an almost 20-hour siege that left 14 civilians dead.
Summary:
McDonald's has lost its rights to the trademark "Big Mac" in a European Union (EU) case ruling in favour of Irish chain Supermac's.
Summary:
Rihanna claimed her father and his business partner were profiting off her brand name after they launched a talent development company called Fenty Entertainment in 2017.
Summary:
New models of Apple's iPhones featuring 5G network connectivity may reportedly get delayed due to the ongoing patent disputes with chipmaker Qualcomm.
Summary:
Japanese robot hotel, 'Henn-na Hotel', has fired over half of its 243 robot workers after they began to malfunction.
Summary:
YouTube has updated its creator guidelines that ban dangerous challenges, pranks and dares like the 'Bird Box' challenge.
Summary:
Facebook-owned messaging platform WhatsApp has encountered a bug that is deleting old chats for some Android users.
Summary:
Summary:
Modi.
Nirav Modi, Lalit Modi and Narendra Modi." He added, "Inn BJP waalon ko toh dauda dauda kar maarenge.
Summary:
His comment came a day after Kumar claimed BJP chief Amit Shah asked him twice to give Prashant Kishor a post in the JD(U).
Summary:
Nadda said the people's affection towards the PM will be "instrumental in BJP's win".
Summary:
Summary:
AAP MLA Baldev Singh announced his resignation from the party on Wednesday and said he would join the Sukhpal Khaira-led Punjabi Ekta Party.
Summary:
E-commerce platforms Flipkart and Amazon have asked the government to extend the February 1, 2019 deadline for the revised FDI policy on e-commerce.
Summary:
The strike called by Brihanmumbai Electric Supply and Transport (BEST) employees ended on Wednesday after nine days as the Bombay High Court appointed a mediator for negotiations between the management and the union.
Summary:
Former Vishva Hindu Parishad (VHP) chief Vishnu Hari Dalmia passed away on Wednesday at his residence in Delhi's Golf Links aged 91.
Summary:
Drug lord Joaquin 'El Chapo' Guzman paid a bribe of $100 million to ex-Mexican President Enrique Peña Nieto, a trial witness testified.
Summary:
Only one in three people said that they took action after experiencing sexual harassment.
Summary:
London-based Vakt on Tuesday said oil majors Chevron, Total and Mukesh Ambani-led Reliance Industries have joined its blockchain-based commodities trading platform.
Summary:
A man was charged on Christmas Eve for attempting to smuggle a 40-centimetre-long live boa constrictor onto an airplane by hiding it in a cloth bag inside his pants at Germany's Berlin-Schönefeld Airport.
Summary:
UP police shared the video on Twitter and tagged Meerut police, requesting an investigation into the incident.
However, Meerut police denied video was shot in the city.
Summary:
It's got a ring to it." "I dropped my surname [Bhavnani] so I needed a new one anyway.
Summary:
Summary:
Former India captain Sunil Gavaskar has said that wicketkeeper-batsman MS Dhoni is not getting any younger but is still a tremendous value to the team.
Summary:
Indian tennis player Leander Paes and his Mexican partner Miguel ÃÂngel Reyes-Varela crashed out of Australian Open after losing in the first round to American-Kiwi duo of Austin Krajicek and Artem Sitak.
Summary:
English commentator Mark Nicholas mistook dwarfs playing cricket for children while commentating during the third Test between South Africa and Pakistan.
Summary:
Tim Stone, Snap's Chief Financial Officer has resigned from the Snapchat parent within eight months of joining.
Tim's transition is not related to any disagreement with us," CEO Evan Spiegel wrote.
Summary:
Congress MP Shashi Tharoor has alleged he was not allowed to enter Sree Padmanabhaswamy Temple during PM Narendra Modi's visit to Kerala on Tuesday.
Summary:
Bihar CM Nitish Kumar has revealed that BJP President Amit Shah had told him twice to take election strategist Prashant Kishor in JD(U).
Summary:
Retired Delhi High Court judge Kailash Gambhir has written to President Ram Nath Kovind, objecting against the Collegium's recommendation to elevate Dinesh Maheshwari and Sanjiv Khanna to the Supreme Court.
Summary:
Two nursing students of state-run Nil Ratan Sircar Medical College and Hospital were arrested on Tuesday for allegedly being involved in the killing of 16 puppies in Kolkata.
Summary:
The UP government has allocated â¹4,200 crore for Kumbh Mela being held in Prayagraj, spread over 3,200 hectares as compared to 1,600 hectares in the previous melas.
Summary:
A 32-year-old man was arrested for allegedly groping a 16-year-old girl while boarding a train at Mumbai's Dadar station.
The man, who left hurriedly when the victim raised an alarm, was spotted by her and her friend at Mulund station and pulled out of train when it halted.
Summary:
The Supreme Court on Tuesday declined a plea by Karti Chidambaram, an accused in Aircel-Maxis case, seeking an urgent hearing for permission to travel abroad.
Earlier when Chidambaram sought an urgent hearing for travelling abroad, Gogoi had said, "Don't go...
Summary:
The Brexit deal, rejected by the British Parliament, includes both the Withdrawal Agreement on the terms on which Britain leaves the European Union (EU) and a Political Declaration for the future relationship.
Summary:
The White House is considering former PepsiCo Chief Executive Officer (CEO) Indra Nooyi for the position of World Bank President, the New York Times reported.
Summary:
Former Delhi Chief Minister Sheila Dikshit, who took charge as the chief of Delhi Congress on Wednesday, said there have been no talks of an alliance with AAP.
Summary:
Summary:
Former Arunachal Pradesh Chief Minister Gegong Apang on Tuesday resigned from the BJP, claiming it used "every dirty trick in the trade" to install late politician Kalikho Pul as chief minister but did not investigate his suicide properly.
Summary:
He further said that he respects the leaders of the Hurriyat and is available for them.
Summary:
The Delhi University on Tuesday formally promoted student union Vice-President and ABVP leader Shakti Singh to the post of President for the academic year 2018-19.
Summary:
Uttar Pradesh police stopped a 70-year-old woman in Banda district from committing the outlawed practice of 'sati' by immolating herself on the funeral pyre of her husband.
Summary:
Two villagers were shot dead by Naxals on the suspicion of being police informers in Jamui district, Bihar.
Summary:
A 24-year-old woman was allegedly gangraped by her friend and his two accomplices in a stationary car near Cross River Mall in Delhi on Monday night after they made her drink juice containing sedatives, said the police.
Summary:
He had earlier misled the police, claiming he was shot by an unidentified man.
Summary:
Aishwarya Ramachandran, a learner of UpGrad and IIIT-Bangalore's PG Program in Machine learning & AI transitioned from Research to Sr Data Analyst at Cerner with 230% salary hike within a year.
Summary:
UK Members of Parliament on Tuesday rejected a deal reached by Prime Minister Theresa May with the European Union on the terms of Britain's exit from the bloc.
Summary:
American reality television personality Kim Kardashian has confirmed that she and husbandâ Kanye West are expecting their fourth child via surrogacy.
Summary:
After smashing two sixes in the second ODI against Australia in Adelaide on Tuesday, India opener Rohit Sharma broke the world record for hitting most sixes against an opponent in international cricket across all formats.
Summary:
He is a great player and India have hardly lost whenever he has scored a century," added Azharuddin.
Summary:
"Technically his balance is unbelievable.
For him to play 360-degree shots in all formats of the game, his balance is unbelievable," he added.
Summary:
Dhoni signalled to Khaleel he should have avoided walking on the pitch and later appeared to say, "Chu***e."
Summary:
Batsman Shubman Gill, who has been included in India's squad for the tour of New Zealand, has said that he is excited to play under Virat Kohli's captaincy.
Summary:
A man has created a 3D printed mouse which has a colour display and a slide-out keyboard fitted into it and works like a computer.
Summary:
K Dhanya Sanal, a Defence Ministry spokesperson, has become the first woman to trek 1,868-metre-high Agasthyarkoodam peak since the Kerala High Court lifted an unofficial ban on women trekkers.
The 38-year-old was among the 100 people who started the trek on Monday morning.
Summary:
The Supreme Court has refused to grant additional time for transportation of coal that was extracted before National Green Tribunal's 2014 ban on illegal mining in Meghalaya.
Summary:
Responding to his remarks including "Will you buy cold drink with broken seal?" on women's virginity, Kolkata's Jadavpur University professor Kanak Sarkar said he was having "Sunday fun".
Summary:
The Bombay High Court has disposed of a petition against the makers of the film 'Zero' for hurting Sikh sentiments by allegedly showing Shah Rukh Khan wearing 'Gatra Kirpan'.
Summary:
Rahman further said that music was more than just a profession for him.
Summary:
Dinesh Karthik, who took India to victory in the second India-Australia ODI, said the team management wants him to finish matches after coming in to bat at number six.
This is probably one of the hardest skills in the game," Karthik said.
Summary:
Chennai's D Gukesh on Tuesday became the second youngest Grandmaster in the world and the youngest Indian to achieve the feat at 12 years, seven months and 17 days.
Summary:
Twenty-one-year-old all-rounder Aniket Sharma on Tuesday collapsed on a cricket field and died moments later owing to a possible cardiac arrest, hospital officials said.
"He was a brilliant team man and a good fielder too," said Sharma's coach.
Summary:
The NGO-filed petition alleged WhatsApp hasn't complied with RBI's data localisation circular dated April 6, 2018.
Summary:
He said though India is the fastest-growing major economy in the world presently, "we aren't satisfied with...7% to 7.5% growth rate".
Summary:
Toyota on Monday showed its 2020 GR Supra, the first new Supra in the US in 21 years, that can go from 0-100 kmph in 4.1 seconds, in Detroit, US.
Summary:
Venture fund Valar Ventures, co-founded by PayPal Co-founder Peter Thiel, has filed paperwork with the US Securities and Exchange Commission to raise $350 million across two new funds.
Summary:
A study led by the University of Warwick has found the first confirmed example of a double star system that has flipped its surrounding planet-forming disc towards its poles.
Summary:
Summary:
The Centre on Tuesday said it allocated an additional over â¹6,000 crore for Mahatma Gandhi National Rural Employment Guarantee Act. This takes the total allocation to â¹61,084 crore in 2018-19, making it the highest ever in a financial year.
Summary:
Pakistan on Tuesday killed two Islamic State militants who were allegedly involved in the kidnapping of former Prime Minister Yousaf Raza Gillani's son in 2013.
Summary:
Sri Lanka faces record high repayments of $5.9 billion this year.
Summary:
The Goods and Services Tax (GST) Council has formed a ministerial panel to study problems faced by the real estate sector under the GST regime and suggest remedial measures.
Summary:
Actress Ankita Lokhande, who is making her Bollywood debut with 'Manikarnika: The Queen of Jhansi', has confirmed dating businessman Vicky Jain.
Lokhande, who earlier dated Sushant Singh Rajput, had said she's "okay" being friends with an ex-boyfriend.
Summary:
Celebrities including Diana Penty, Shruti Haasan, Ellen DeGeneres, Nicki Minaj and others took the challenge.
Summary:
Actor Emraan Hashmi, while speaking about the 'serial kisser' tag given to him, said, "I had 10 kisses in my first film and one in my upcoming film, so that's progress according to me." "Perhaps, I will not have a kiss in the next one; no wait, that has one too.
Summary:
On January 15, 2017, he had become the fastest batsman to hit 27 ODI tons.
Summary:
After MS Dhoni slammed a last-over six and scored an unbeaten 55 to help India beat Australia in the second ODI, India captain Virat Kohli said, "Tonight was an MS Dhoni classic." "There's no doubt...he shouldn't be a part of this team.
Summary:
Louise, usually dubbed the world's first test-tube baby, was actually conceived in a petri dish.
Summary:
The BJP-led Jharkhand government on Tuesday announced implementation of 10% reservation in government jobs and education for the economically weaker sections in general category.
Summary:
A man who was stabbed 13 times by his girlfriend proposed to her in a Russian court before her sentencing and appealed the judge not to jail her, saying they intended to arrange their wedding date.
Summary:
Turkish billionaire Ferit Sahenk is reportedly in talks to sell some of Europe's most famous luxury hotels to the investment firm owned by Dubai ruler Sheikh Mohammed bin Rashid Al Maktoum.
Summary:
While speaking about the roles written for older women in Indian films, veteran actress Farida Jalal said, "After a certain age you are given nothing to do." "Same old thing again and again...Do a motherâÂÂs role here and a motherâÂÂs role there,â the actress added.
Summary:
"I might've had some thoughts earlier in my films but they weren't so cinematic and good as these films are now," Gulzar added.
Summary:
Summary:
Ali Qamar has been an assistant coach at the national camp for more than a year.
Summary:
He moved to Arsenal in 2015 and went onto win another FA Cup in 2017.
Summary:
American tennis player Serena Williams returned to the Australian Open with a win in the opening round of the tournament.
Summary:
The International Cricket Council (ICC) on Tuesday announced that Manu Sawhney has been appointed as the organisation's new Chief Executive Officer (CEO).
Summary:
A user can then tighten or loosen the shoes as required through physical buttons on the shoes or through a connected app.
Summary:
RJD leader and son of former Bihar CM Lalu Prasad Yadav, Tej Pratap Yadav has said he will launch 'Badlav Yatra' and 'Lalu Prasad Yadav (LP)' movement in Bihar.
Summary:
He further said only BJP has "stood with Kerala and its culture".
Summary:
A National Green Tribunal (NGT) committee has recommended a â¹171.34-crore fine on German automaker Volkswagen as "health damage" for causing air pollution in Delhi due to excess nitrogen oxide (NOx) emissions.
Summary:
The bypass has three major bridges over the Ashtamudi Lake, with a total length of 1,540 metres.
Summary:
Adamowicz underwent a five-hour operation before succumbing to his injuries.
Summary:
The accused, Stewart, carried out the attack after he was heard threatening to kill someone "with kindness".
Summary:
The country's largest liquor company United Spirits has agreed to sell its subsidiary Four Seasons Wines and associated brands to Grover Zampa Vineyards, the country's second-largest winemaker in terms of volumes, for â¹31.86 crore.
Summary:
Gill and Yes Bank Senior Group President Rajat Monga were the candidates recommended by the lender's board to replace Rana Kapoor, reports added.
Summary:
Merchandise exports rose just 0.34% from a year earlier to $27.93 billion, while imports fell 2.44% to $41.01 billion during the month.
Summary:
Aviation Secretary Rajiv Nayan Choubey has said the country will add 1,000 aircraft over the next 7-8 years.
Summary:
They are young, it's a challenge for such young minds to be mature," he added.
"It's important to teach them how to conduct themselves," he added.
Summary:
Ex-South Africa captain Jacques Kallis got married to his longtime girlfriend Charlene Engels at Bona Dea Estate in Western Cape last weekend.
Summary:
Williams added that Qualcomm's royalty fee of $7.50 per iPhone is too high.
Summary:
After Congress President Rahul Gandhi took a dig at PM Narendra Modi on winning first-ever Philip Kotler Presidential Award, Union Minister Smriti Irani said, "Rich!!!
Summary:
Elon Musk-led electric carmaker Tesla has announced it will offer a brand new Model 3 car to cybersecurity researchers who will identify security bugs with the car's software at an annual cybersecurity contest 'Pwn2Own' in Canada.
Summary:
Two men from Rajasthan's Hanumangarh district got used condoms wrapped in old newspaper in response to their RTI queries seeking details of development projects undertaken since 2001.
Summary:
"The boat was carrying around 60 people who were on...way to perform a river worship ritual," an official said.
Summary:
A Russian man, whose car was loaded by authorities on a tow truck, got inside his vehicle and freed it before escaping.
Summary:
Siddiq said it was "worth fighting for a strong relationship between Britain and Europe" even if she had to delay giving birth.
Summary:
Ren Zhengfei, the billionaire Founder and CEO of Huawei, broke a years-long silence to reject claims that his company is used by China for spying.
Summary:
In his first interview with the foreign media since 2015, Huawei Founder and CEO Ren Zhengfei said that he missed his daughter Meng Wanzhou "very much".
Summary:
Two weeks ago, the Hong Kong-based airline mistakenly sold business-class return tickets costing $16,000 from Vietnam to New York at $675.
Summary:
Kangana Ranaut revealed that she felt "suffocated" after the failure of her film 'Simran', as filmmakers Karan Johar, Rakesh Roshan and several others, singled her out for criticism.
Summary:
Actor Ranveer Singh said that when it comes to his film choices, playing it safe doesn't excite him as an artiste.
Summary:
Kohli scored his 32nd ton in a winning cause in the second India-Australia ODI, helping India level the series 1-1.
Summary:
Croatian tennis player Ivo Karlovic became the oldest man to win a match at the Australian Open in over 40 years after serving 39 aces to go past Poland's Hubert Hurkacz.
Summary:
Microsoft has revealed that it will not provide any security updates or support for PCs running on 'Windows 7' after January 14, 2020.
Summary:
Reacting to the two Independent MLAs withdrawing their support from the Karnataka government, CM HD Kumaraswamy on Tuesday said he was completely relaxed about the scenario.
Summary:
Named as 'Jai Kisan Rin Mukti Yojana', Nath added that the scheme would benefit 55 lakh small and marginal farmers.
Summary:
He said, "I want to tell them...this Chowkidaar would foil all the games of these people who want to loot money of poor people".
Summary:
Further, the vehicle is equipped with a seven-speed dual-clutch transmission that can shift gears in less than one-tenth of a second, Ford added.
Summary:
E-scooter startup Bird has apologised for trying to remove a December 2018 blog post published by 'Boing Boing' about $30 conversion kits that can be used to hack its scooters.
Summary:
Speaking on the occasion of Army Day, Army chief General Bipin Rawat said that the Indian Army has caused heavy damage to terrorist groups in Jammu and Kashmir.
Summary:
Several people have been killed during protests in Zimbabwe after President Emmerson Mnangagwa hiked the fuel prices by nearly 150%.
Summary:
Venezuelan President Nicolás Maduro on Monday called his Brazilian counterpart Jair Bolsonaro a "Hitler of the modern era", days after Brazil refused to recognise Maduro's second term as President.
Summary:
Singapore state investor Temasek, which owns Ascendas, would have about 51% stake in CapitaLand after the transaction.
Summary:
Finance Minister Arun Jaitley has left for the United States for a "regular medical check-up", following a kidney transplant operation last year, according to reports.
Summary:
Mumbai's Chhatrapati Shivaji Maharaj International Airport (CSMIA) on Monday said it will soon stop stamping of boarding passes by security personnel for domestic passengers.
Summary:
Producer Boney Kapoor, while defending filmmaker Rajkumar Hirani against sexual harassment allegations, said, "Hirani is too good a man to do something like this." "I don't believe this allegation.
Summary:
Mumbai's Khar Gymkhana has revoked the honorary three-year membership of suspended cricketer Hardik Pandya in the wake of his comments on women on 'Koffee with Karan'.
Summary:
After PM Narendra Modi received Philip Kotler Presidential Award, Congress President Rahul Gandhi tweeted, "I want to congratulate our PM, on winning the world famous "Kotler Presidential Award"!" "In fact it's so famous it has no jury, has never been given out before & is backed by an unheard of Aligarh company.
Summary:
Former Congress MP Nilesh Rane has claimed that late Shiv Sena Founder "Bal Thackeray wanted to get Sonu Nigam killed", adding, "the attempt was made by Shiv Sainiks at the orders of Balasaheb".
Summary:
Faesal had resigned citing "unabated killings in Kashmir and absence of credible political initiative from the Centre".
Summary:
An Indian national was among the four people killed in a car bomb blast in Afghanistan's capital, Kabul on Monday, India's Ministry of External Affairs (MEA) said.
Summary:
Summary:
Apologising at his sentencing on Monday, Gong said he's ashamed of what he did.
Summary:
He took the girl to a hospital after she lost consciousness and initially claimed she had fallen.
Summary:
Qatar Airways CEO Akbar al-Baker on Monday said the airline won't buy a stake in Jet Airways as it's part-owned by Etihad, whose owner Abu Dhabi is an "enemy" of Qatar.
Summary:
Confirming the news, producer Sandip Ssingh said, "It's wonderful to be teaming up with [Darshan] for 'PM Narendra Modi'.
Summary:
Addressing the criticism he received for his portrayal of former PM Manmohan Singh in the film 'The Accidental Prime Minister', Anupam Kher said, "Some critics have a much larger political agenda." "The comments are uncalled for and irrelevant," he added.
Summary:
Indian openers Rohit Sharma and Shikhar Dhawan became only the fourth opening pair in the history of ODI cricket to complete 4,000 partnership runs after crossing the landmark figure in the second India-Australia ODI on Tuesday.
Summary:
La Liga champions and current table leaders Barcelona have become the first football club in the world to spend more than half a billion Euros in wages.
Summary:
Google Doodle on Tuesday honoured Sake Dean Mahomed, the man who opened the first Indian restaurant in England in 1810.
Summary:
Claiming his supporters are urging him to join BJD, Odisha Congress Working President Naba Kisore Das said, "I will do what my people want." Das, the sitting MLA from Jharsuguda, said he plans to join BJD when Chief Minister Naveen Patnaik visits Jharsuguda district on January 24.
Summary:
He added the projects in Odisha are aimed at improving "education, connectivity, culture and tourism".
Summary:
People can be seen with huge chunks of cake in their hands taken from the cake kept on table.
Summary:
Meanwhile, Congress has accused the BJP of trying to indulge in horse-trading.
Summary:
As many as 5,000 chickens were burnt alive at a poultry farm in Uttar Pradesh's Shamli district, the police said on Tuesday.
Summary:
West Bengal CM Mamata Banerjee on Monday accused the University Grants Commission (UGC) of stopping scholarship grants to researchers for PhD projects under National Eligibility Test (NET) in the state.
Summary:
Addressing a gathering at Balangir, PM Modi said Sahu was killed by "cowardly" Naxals while performing duty of presenting India's democratic picture through Doordarshan.
Summary:
The Jammu and Kashmir State Administrative Council (SAC) under the chairmanship of Governor Satya Pal Malik on Monday approved the formation of two women police battalions.
Summary:
DIG Gagandeep Gambhir, the CBI officer investigating the alleged role of former UP Chief Minister Akhilesh Yadav in an illegal sand mining scam, has been transferred, according to reports.
Summary:
US President Donald Trump said on Monday that he has never worked for Russia after a report claimed that the FBI investigated whether he worked against American interests.
Summary:
India's second-largest telecom operator Bharti Airtel is reportedly in talks regarding a potential takeover of Telkom Kenya, which is the East African nation's smallest operator.
Summary:
Captain Virat Kohli slammed his 39th ODI hundred as India defeated Australia by 6 wickets in the last over in the second ODI on Tuesday and levelled the three-match series 1-1.
Summary:
With this, Kohli became only the second Indian batsman after Rohit Sharma to slam at least five ODI hundreds on Australian soil.
Summary:
The apex court said the BJP can hold normal rallies with the approval of the state government.
Summary:
The sectors losing the most ice mass are adjacent to warm ocean water, researchers added.
Summary:
The protestors alleged that the Gaya Police is trying to shield the culprits and coerce the victim's parents' confession.
Summary:
The Delhi Police has detained one man for questioning in connection with an anonymous email sent to the Chief Minister's Office, threatening to kidnap CM Arvind Kejriwal's daughter.
A police officer was assigned to protect Kejriwal's daughter after the threat.
Summary:
Pandya in May 2014 had spent â¹50,000 on 25 tickets to fly guests from Ahmedabad to Mumbai for his daughterâÂÂs wedding.
Summary:
To mark the beginning of the Kumbh Mela in Prayagraj, over 1.5 crore people took 'Shahi Snan' (royal dip) at Sangam, the confluence of rivers Ganga, Yamuna and Saraswati till 1:30pm, Uttar Pradesh government said.
Summary:
Himachal Pradesh will soon implement 10% reservation in government jobs and education for the economically weak section in the general category in letter and spirit, CM Jai Ram Thakur announced on Monday.
Summary:
Raj Shah, a top Indian-origin White House spokesman has left US President Donald Trump's administration to head an arm of a lobbying firm.
Summary:
Canadian citizen Robert Schellenberg has been sentenced to death in China for planning to smuggle over 220 kilograms of methamphetamine from China to Australia.
Summary:
US President Donald Trump's daughter and senior adviser Ivanka Trump will help manage US nomination of the next World Bank President, the White House said.
Summary:
Anupam plays the role of former Prime Minister Manmohan Singh while Akshaye Khanna plays the role of Singh's media adviser Sanjaya Baru in the film.
Summary:
Summary:
Former Indian captain Sourav Ganguly said that Indian batsman Ambati Rayudu has not convinced him yet while batting at the number four position in the ODI side.
Summary:
In a letter to PM Narendra Modi, Congress leader Mallikarjun Kharge demanded documents and details relating to the selection committee meeting, wherein the decision to remove Alok Verma as CBI Director was taken, to be made public.
Summary:
Stephen Constantine resigned as the Indian football team's head coach after India were knocked out of the AFC Asian Cup following a 1-0 defeat by Bahrain on Monday.
Summary:
The feature will let users swipe forward to play the next recommended video and backward to play the last video watched by them.
Summary:
âÂÂThe people have taught BJP a lesson in the recently concluded five states," she added.
Summary:
Two Independent MLAs, H Nagesh and R Shankar, on Tuesday withdrew their support from the Karnataka government, amid allegations of poaching by both the BJP and the ruling JD(S)-Congress coalition.
Summary:
Addressing a BJP rally in Odisha, Prime Minister Narendra Modi on Tuesday said, "Past governments ruled like sultanates and neglected our rich heritage." "They ignored our glorious civilization and failed to pay attention to their preservation," he added.
Summary:
Addressing a gathering in Odisha's Balangir, PM Narendra Modi on Tuesday said all ration cards have been digitised and around 80% of them have been linked with Aadhaar.
Summary:
OYO has started a digital record system that will provide real-time updates including check-in and check-out of the visitors to state governments and concerned authorities.
Summary:
A scuffle broke out between police officials and lawyers on Monday after the latter started demonstrating against a traffic police official in Gwalior, Madhya Pradesh.
Summary:
A cow was stuck on the bank of Alaknanda river in Uttarakhand's Chamoli and was saved by State Disaster Response Force (SDRF) in an hour-long operation on Monday.
Summary:
The US had warned Iran against three planned rocket launches, saying they are in violation of a United Nations Security Council resolution because they use ballistic missile technology.
Summary:
Aviation Minister Suresh Prabhu has said the government won't intervene in matters of cash-strapped private carrier Jet Airways.
Summary:
Abhishek Bachchan's sister Shweta Bachchan, during their appearance on 'Koffee With Karan', said he's more scared of wife Aishwarya Rai Bachchan than he's scared of their mother Jaya Bachchan.
Summary:
I told Boney that Sridevi is a common name." Mambully reportedly added the film is a work of fiction.
Summary:
World number two Rafael Nadal woke up a sleeping journalist midway through his press conference after his first round win in the Australian Open on Monday.
Summary:
China National Space Administration has said that cotton seeds taken by its Chang'e 4 mission have sprouted, marking the first time that biological matter has grown on the Moon.
Summary:
On calling the number, the fraudster asked Marwa for his bank details "to deposit...money to the account" and transferred the amount from his account.
Summary:
The district administration in Bulandshahr has invoked the National Security Act (NSA) against three men accused of alleged cow slaughter that led to mob violence in December in which a policeman and youth were killed.
Summary:
Union Minister Smriti Irani took a dip in river Ganga as Kumbh Mela began with 'shahi snan' at Uttar Pradesh's Prayagraj on Tuesday.
Summary:
The Uttar Pradesh police will be using RFID (radio-frequency identification) tags to locate kids under 14 years if they are lost during the Kumbh Mela in Prayagraj.
Summary:
India has issued a note verbale to Pakistan's Foreign Office protesting against the treatment of its diplomats, reports said.
Summary:
Howard had initially planned to remove the tree as its branches turned "huge" and she feared "someone could get hurt".
Summary:
A mynah bird was discovered 12 hours into a 14-hour flight between Singapore and London.
Summary:
Summary:
"Indian artists like Blackstratblues, Arjun Vagale and Lost Stories among others will also be performing," stated reports.
Summary:
She was rumoured to be making her acting debut with 'ABCD 2', a couple of years back.
Summary:
The untitled film is said to be on the lines of Basu's 2007 directorial, 'Life in a...Metro'.
Summary:
Writers, activists and journalists in Pakistan held a nationwide protest against a ban on Nandita Das' 'Manto', based on the life of the late Urdu writer Saadat Hasan Manto.
"Amazing to see people out on the streets to protest.
Summary:
Incidentally, Siraj also has India's second-most expensive figures on T20I debut.
Summary:
The senior Congress leader added the BJP will spend money it does not have and it will leave a huge unpaid bill for the next government.
Summary:
Deshmukh passed away in the Bombay Hospital, where he was admitted due to several health issues.
Summary:
On her 63rd birthday on Tuesday, Bahujan Samaj Party (BSP) chief Mayawati told party workers that the best birthday gift for her would be if all the BSP-Samajwadi Party candidates win in the Lok Sabha elections.
Summary:
Former Deputy Inspector General Mushtaq Sadiq and Kashmiri singer Waheed Jeelani joined the ex-Jammu and Kashmir Chief Minister Farooq Abdullah-led National Conference on Monday.
Summary:
E-Cell, IIT Bombay is set to host its 14th edition of the Entrepreneurship Summit on 19th and 20th January.
Summary:
The Central Crime Branch police on Monday arrested 16 people across Karnataka who allegedly cheated sub-inspector aspirants by promising to leak the question paper for the recruitment test.
Summary:
The Delhi High Court on Monday stayed an order issued by the Jawaharlal Nehru University (JNU) administration which made it mandatory for the faculty to mark attendance, failing which no leave requests or proposals will be considered.
Summary:
Vikas Kumar, an 18-year-old student of Industrial Training Institute in Haryana, allegedly murdered his 28-year-old instructor over suspicions that the latter had an affair with his mother.
Summary:
Nearly 90 lawmakers and 160 other eminent citizens and activists have written an open letter to PM Narendra Modi raising concerns over fund crunch in rural employment scheme MGNREGA.
Summary:
At least three people, including an eight-year-old boy, were killed after their throat got slit by kite string during Uttarayan festivities in Gujarat, police said on Monday.
Summary:
To commemorate a year of its digital banking app, YONO, State Bank of India is encouraging and celebrating the achievements of the youth of India with their 20 Under Twenty Awards.
Summary:
The service on Delhi Metro's Blue Line were temporarily disrupted on Tuesday after a man jumped onto the track between Rajiv Chowk and Noida City Centre.
Summary:
Summary:
Indian football team crashed out of Asian Cup 2019 after losing 0-1 to Bahrain in their last Group A match on Monday.
Summary:
Hollywood actor Dwayne Johnson, while sharing a video on Instagram, accused a British publication of presenting a fake interview which quoted him as criticising millennials, stating that the interview never happened.
"This generation looking for a reason to be offended," the publication had attributed the quote to him.
Summary:
Former India captain Sunil Gavaskar has said suspension of Hardik Pandya and KL Rahul and the drama that it caused has taken the sheen off the huge achievement of India's first ever Test series victory in Australia.
Summary:
"My HOD, in front of a class of 52 students...reduced me to nothing," she added.
Summary:
Ex-India batsman VVS Laxman, during an event, said that no one sacked Anil Kumble as head coach in 2017.
We felt Anil did a fantastic job but the circumstances led him to resign," he added.
Summary:
Meanwhile, state minister DK Shivakumar alleged BJP had lured 3 Congress MLAs to a Mumbai hotel to destabilise their government.
Summary:
A portion of a road near Maujpur metro station in Delhi's Shahdara caved in on Monday, taking down a car and an autorickshaw.
Summary:
After authorities recovered around 300 cartons of Indian made foreign liquor from the residence of the SHO of Bihar's Motipur police station, the entire staff at the police station was replaced.
Summary:
Kanaka Durga, one of the two women who entered Kerala's Sabarimala and became the first to defy the temple's ban on women of menstrual age, was beaten up by her mother-in-law upon her return home.
Summary:
A court in Delhi on Monday allowed Christian Michel, the alleged middleman in the AgustaWestland VVIP chopper case, to make phone calls to his family and lawyers.
Summary:
Trump paid for the food himself, as White House chefs are furloughed amid the partial government shutdown.
Summary:
Shah Rukh Khan, who had earlier revealed that his son Aryan Khan wants to become a director, said, "[Aryan] is writing, directing and learning stuff for four years." Shah Rukh added that his daughter Suhana Khan, who wants to act, also has to attend a four-year course in theatre.
Summary:
Denying the rumours of her marriage, Ankita Lokhande said, "I can't say anything right now, but there are no plans, yet." "If it happens, I will let you know and invite you for the wedding," she added.
Summary:
Veteran Indian footballer Sunil Chhetri, on Monday, equalled retired footballer Bhaichung Bhutia's record of most international appearances for India in the game against Bahrain in India's Group-A tie in the Asian Cup 2019.
Summary:
Facebook announced it is testing an option that lets users share events on their Stories.
Summary:
Suspecting the man may be armed, police began negotiations with him where he asked for a cigarette.
Summary:
After RJD leader Tejashwi Yadav accused PM Narendra Modi of "tricking" the public during a press conference in Lucknow, UP BJP chief Mahendra Nath Pandey responded, "The statements...
Summary:
AAP MP Sanjay Singh on Monday filed a petition in the Supreme Court seeking review of the verdict wherein several pleas demanding a court-monitored CBI probe into the alleged irregularities in the Rafale deal were dismissed.
Summary:
Delhi CM Arvind Kejriwal on Sunday said, "BJP is...planning to amend the constitution and eventually abolish the practice of elections altogether." He added that BJP's rule was similar to Adolf Hitler's rule in Germany.
Summary:
He pointed out a 'stage prop white line' in a photo of the rover captured by the probe.
Summary:
A 35-year-old mother of two hanged herself from the roof of her residence in UP's Gonda district on Monday, a fortnight after two men she had accused of raping her and videotaping the act were given a clean chit by the local police and district crime branch.
Summary:
The Election Commission of India (ECI) on Monday announced the setting up of Voter Awareness Forums (VAF) in ministries, government departments, non-government departments and other institutions to promote electoral awareness.
Summary:
This comes after high levels of formalin and heavy metals were found in samples of fish.
Summary:
The new formats include an all-kids theatre and its luxury multiplex screens, Insignia.
Summary:
Shahid Kapoor, on being asked which of his ex's memories he'd like to delete, Kareena Kapoor or Priyanka Chopra, said, "I wouldn't want to delete...[them].
Summary:
Actress Deepika Padukone, on being asked if she and her husband Ranveer Singh would change their surnames after marriage, said, "I've worked extremely hard to create my own identity and so has he.
Summary:
Singer Asha Bhosle shared a picture of herself sitting with four men including singer Sudesh Bhosle, who were busy with their phones and captioned it, "Such good company but still, no one to talk to." "Thank you Alexander Graham Bell," the singer said.
Summary:
All-rounder Hardik Pandya and batsman KL Rahul, who have been suspended pending inquiry, today tendered unconditional apologies to BCCI for their comments on women on Koffee with Karan.
Summary:
Adelaide Strikers' Billy Stanlake got run-out after his bat got stuck in the ground near the crease and slipped out of his hand while running for a single in the 18th over against Sydney Thunder in BBL.
Summary:
Sydney Thunder all-rounder Shane Watson's five-year-old son William entered the ground and took his father's autograph during the Sydney-based side's BBL match against Adelaide Strikers.
Summary:
Taking a dig at cricketers Hardik Pandya and KL Rahul, who have been suspended pending inquiry for their remarks on women on Koffee with Karan, Mumbai Police tweeted, "A 'Gentleman' is a Gentleman, always and everywhere." It also shared a graphic which read, "How to be a great player?
Summary:
Mumbai-based 57-year-old Suhas Nerlekar and his 32-year-old son Swapnil Nerlekar, who used to eat at 5-star hotels for free, were arrested on Saturday.
Summary:
Canadian air traffic controllers have bought hundreds of pizzas for their American counterparts, who haven't received their salaries due to the partial US government shutdown.
Summary:
A woman was banned by Walmart for life after she drank wine from a Pringles chips box and rode an electric shopping cart at its Texas store's parking lot.
Summary:
A plea has been filed in the Supreme Court on Monday against M Nageswara Rao's appointment as interim Director of the CBI.
Summary:
The club had unveiled a statue of three-time Wimbledon champion Fred Perry in 1984.
Summary:
This comes weeks after his wife Victoria Beckham's fashion label posted a loss of $13.1 million during the period.
Summary:
Former South African international cricketer AB de Villiers announced that he is set to visit Pakistan after 11 years to play in the Pakistan Super League.
Summary:
Umpire Simon Taufel, who won five consecutive ICC Umpire of the Year awards, spoke about KL Rahul and Hardik Pandya, saying, "They too will learn." "[W]e all make mistakes from time to time.
Summary:
England pacer Stuart Broad is set to reveal a new bowling action inspired by watching Sir Richard Hadlee's videos.
Summary:
Rajasthan's Deputy Chief Minister Sachin Pilot on Monday said that it is Congress which can challenge and defeat BJP in the upcoming Lok Sabha elections.
Summary:
"We are implementing various schemes of the central and state governments for farmers," he said.
Summary:
Senior Congress leader CP Joshi will soon become the speaker of the 15th Rajasthan Assembly, reports said on Monday.
Joshi has been elected from the Nathdwara Assembly constituency.
Summary:
Ousted Nissan Chairman Carlos Ghosn's wife has in a letter to Human Rights Watch claimed that Ghosn is "browbeaten" in jail and allowed to take bath only twice or thrice a week.
Summary:
Scooter rental startup Vogo has raised nearly â¹63 crore ($8.87 million) as part of its ongoing Series B funding round, as per filings.
Summary:
Atiyah was best known for his co-development of a branch of mathematics called topological K-theory and the Atiyah-Singer index theorem.
Summary:
Navigation model updates for ships and planes in the Arctic region were made necessary due to the Earth's rapidly shifting north magnetic pole.
Summary:
Union Minister Rajnath Singh on Monday said Kashmir is still a challenge due to "destabilising activities" by Pakistan.
Summary:
Private lender ICICI Bank on Monday appointed former State Bank of India (SBI) Managing Director (MD) B Sriram on its board as an independent director.
Summary:
Dilution of government stake will help banks to meet 25% public float norms of market regulator SEBI.
Summary:
During the quarter, Avenue Supermarts posted a profit of â¹257.11 crore as compared to â¹251.77 crore in the year-ago period.
Summary:
Amar Nagaram, who was moved to Myntra from Flipkart, has been named as Head of Myntra and Jabong.
Summary:
Earlier on Monday, the data showed that India's wholesale price inflation eased to an eight-month low at 3.8% in December.
Summary:
"You can only see this optical illusion if you shake your head," Dickinson tweeted.
Summary:
'Avengers' actor Chris Pratt took to Instagram to reveal that he got engaged to his girlfriend, Arnold Schwarzenegger's daughter author Katherine Schwarzenegger and shared the first picture.
Here we go!" The couple reportedly met through Schwarzenegger's mother.
Summary:
Former world number one and three-time Grand Slam winner Andy Murray crashed out of the Australian Open 2019 in the first round on Monday.
Summary:
Summary:
Kanak Sarkar, a professor from West Bengal's Jadavpur University has been criticised for his remarks on virginity in a now-deleted Facebook post.
Summary:
A Class 8 student delivered a baby in a tribal residential school's hostel bathroom in Odisha's Kandhamal district on Sunday, eight months after she was raped, police said.
Summary:
Earlier, reports said Kartik Aaryan will star in the film.
Summary:
Sonam's uncle and Anil's brother Sanjay Kapoor will reportedly play the role of Sonam's father in the film.
Summary:
This was the 109th-ranked Indian tennis player's maiden Grand Slam appearance.
Summary:
Pakistan have now lost by a 0-3 scoreline in their last two Test series in South Africa.
Summary:
Further, the e-reader reportedly supports the download of any text that has been translated into braille format.
Summary:
Various eateries listed in the UK-headquartered food delivery app Just Eat have been found to sell food that could cause allergic reactions by BBC Panorama reporters.
Summary:
BJP ally Suheldev Bhartiya Samaj Party's (SBSP) President OP Rajbhar on Sunday said, "Burn the politician who tries to make you fight on the basis of religion." "Did any big politician die in Hindu-Muslim violence?
Summary:
Talking about the Samajwadi Party(SP)-Bahujan Samaj Party(BSP) alliance, SP MLA Hariom Yadav on Sunday said, "This gathbandhan will run only till our president (Akhilesh Yadav)...kneels down before [Mayawati]." He added, "The alliance will not work in Firozabad.
Summary:
Former Jawaharlal Nehru University Students' Union President Kanhaiya Kumar on Monday said that the chargesheet filed against him in February 2016 sedition case is "politically motivated".
Summary:
Talking about seat sharing in the Lok Sabha elections, Karnataka Chief Minister HD Kumaraswamy said that Congress should not treat JD(S) as "third-grade citizens".
Summary:
Goa Forward Party (GFP) chief Vijai Sardesai on Monday said if Goa's mining crisis isn't solved before Lok Sabha elections, then people will "react" towards the BJP in the polls.
"Mining is the backbone of the (Goa) economy.
Summary:
Russian space agency Roscosmos chief Dmitry Rogozin has said, "It is a disgrace" that NASA cancelled his planned visit to the US.
Summary:
At least three workers were killed on Sunday after being run over by the Mumbai-bound Tejas Express in Maharashtra's Raigad district, police said.
Summary:
Assam Rifles troopers have arrested one alleged smuggler reportedly carrying 1,44,000 party drugs popularly known as WY (World is Yours) tablets and 732 grams of brown sugar worth â¹5.78 crore in Manipur.
Summary:
Uttar Pradesh Director General of Police (DGP) OP Singh on Monday said the state police is determined to ensure incident-free Kumbh which begins on Tuesday at Prayagraj.
Summary:
Wholesale inflation in the country fell to an eight-month low of 3.8% in the month of December as compared to 4.64% in November.
Summary:
Prime Minister Narendra Modi on Monday received the first-ever Philip Kotler Presidential award in New Delhi.
According to the award citation, PM Modi was selected for his "outstanding leadership for the nation".
Summary:
Speaking on the Sabarimala issue, Congress President Rahul Gandhi said, "I cannot give you an open-and-shut position.â He added that his stand on the issue has changed and now he sees validity in both the arguments of protecting tradition and women's rights.
Summary:
Goyal would trim his 51% stake to 20-25%, reports added.
Summary:
Flipkart Co-founder Sachin Bansal has invested nearly â¹150 crore ($21 million) in ride-hailing startup Ola in Series J funding round.
Summary:
Responding to this, Kylie has shared a video which shows her cracking an egg on a road.
Summary:
Assamese singer Zubeen Garg, who sang 'Axomor Ananda Sarbananda' for BJP's 2016 campaign for Assam Assembly elections, has offered to refund his remuneration in protest against the BJP-led Centre's Citizenship (Amendment) Bill, 2016.
Summary:
Robert Baptiste, a French security expert and ethical hacker, today tweeted that "an anonymous source" has full access to database of PM Narendra Modi's website.
Summary:
Watson had apologised for similar remarks in 2007 but later sold his Nobel Prize medal in protest.
Summary:
Along with the puppies, an adult dog who was bleeding profusely was also found tied up in a bag.
Summary:
The second black box from the Lion Air flight which crashed off the coast of Jakarta on October 29, 2018, has been recovered.
Summary:
Consulting major Accenture's 59-year-old Chief Executive Officer (CEO) Pierre Nanterme has stepped down from his position citing health reasons.
Summary:
Summary:
"We made the film with the kind of budget that would be reasonable for a film with Vicky in the lead," added Dhar.
Summary:
Malayalam actress Priya Prakash Varrier revealed she wanted to be a part of the Ranveer Singh starrer 'Simmba'.
Summary:
Former Indian team coach Greg Chappell hailed Indian captain Virat Kohli, saying, "He values Test cricket and the effect that this has back into India must be enormous.
Summary:
Manchester United are yet to lose a match under new manager Ole Gunnar Solskjaer.
Summary:
India were set to host Zimbabwe for one Test and three ODIs in March.
Summary:
Former Ranji cricketer Rajesh Ghodge, who represented Goa in two first-class matches and eight List A matches, collapsed and died aged 43 while batting in a local match.
Summary:
Argentine attacker Lionel Messi became the first player in any of the top-5 leagues in Europe to score 400 league goals after he got on the scoresheet in Barcelona's 3-0 win over Eibar.
Summary:
The guidelines ban 100 types of 'inappropriate' content including videos of users dressing up in Communist party costumes and videos promoting "money worship".
Summary:
Ryuk, which generally targets enterprises, begins its attack by infiltrating target's systems with TrickBot malware via methods like spam email.
Summary:
The Delhi Police has filed a 1,200-page chargesheet in 2016 JNU sedition case against then student union president Kanhaiya Kumar, Umar Khalid, Shehla Rashid and CPI leader D Raja's daughter Aparajita Raja, among others.
Summary:
Mephedrone, a prohibited drug, worth â¹40 lakh was seized from two drug peddlers in Mumbai, a police official said on Monday.
Summary:
Varghese was running the resort on a 40-acre cardamom plantation that had been bought by his father.
Summary:
The Supreme Court on Monday refused to quash the Pune Police's FIR against activist Anand Teltumbde for his alleged role in the Bhima-Koregaon violence and for his alleged Maoist links.
Summary:
The Directorate of Gopalan, Government of Rajasthan has directed all district collectors to felicitate people who adopt stray cows on Republic and Independence days.
Summary:
The accident took place when Deputy Speaker Hina Kawre was returning from her constituency while the policemen were in another car behind her vehicle, police said.
Summary:
A fire broke out on Monday at a camp of the Digambar Akhada at the Kumbh Mela in Uttar Pradesh, reportedly after a gas cylinder exploded.
Summary:
India's largest IT firm Tata Consultancy Services' (TCS) Chief Financial Officer (CFO) V Ramakrishnan has said the company will not sacrifice margins for growth in revenue.
Summary:
Advertising agency Mullen Lintas on Monday announced the appointment of Vikas Mehta as its new Chief Executive Officer (CEO).
Summary:
Sonam Kapoor, while speaking about a friend of hers who faced sexual harassment in the film industry, revealed the latter kept quiet about it as she had seven siblings to look after.
Summary:
Reacting to the sexual harassment allegations against filmmaker Rajkumar Hirani, writer-director Vinta Nanda tweeted, "The latest on #MeToo is so disturbing.
Summary:
A 49-year-old civil surgeon from Ujjain district hospital in Madhya Pradesh has been removed from his post.
Summary:
Thank you for all your prayers and wishes.
Love and prayers for all the cancer fighters out there, hope and belief [go] a long way.
Summary:
Actor-filmmaker Farhan Akhtar shared a photo with rumoured girlfriend Shibani Dandekar, on Sunday with the caption, "As long as I have you, As long as you are, I'll never be lost." "Shine on beautiful star...love you loads," he further wrote.
Summary:
Banned cricketer Sreesanth, who finished as runner-up in reality TV show 'Bigg Boss 12', has said that he wants to work with Hollywood director Steven Spielberg.
Summary:
Earth's north magnetic pole is shifting by 50 km per year, forcing urgent updates to navigation models for ships and planes in the Arctic, scientists said.
Summary:
Security personnel on duty at the India Gate stopped the woman from entering the Amar Jawan Jyoti.
Summary:
They further said that the robbers first slit her throat and then chopped off her legs with a sharp weapon.
Summary:
The strike called by Brihanmumbai Electric Supply and Transport (BEST) workers entered its seventh day on Monday, with commuters in Mumbai facing traffic jams, crowded trains and high-charging autorickshaws.
Summary:
Puducherry government has decided to ban the production, sale and use of single-use plastic products in the union territory from March 1, CM V Narayanasamy announced on Sunday.
Summary:
US President Donald Trump has threatened to "devastate Turkey economically" if it attacks Kurds in the region.
Summary:
A US Navy submarine commander, who was demoted in August last year, had admitted during a probe to hiring 10 prostitutes while being stationed in the Philippines.
Summary:
The aircraft reportedly made an emergency landing at Fath airport before overshooting the runway and crashing into nearby residential buildings.
Summary:
Ranveer Singh, while talking about Anushka Sharma attending his and Deepika Padukone's wedding reception, said, "It was very significant and special for me that Anushka came.
It really did." Ranveer and Anushka reportedly dated each other for quite some time during their initial years in the industry.
Summary:
Christian Bale won the Best Actor Award for 'Vice' while 'Roma' was named the Best Picture.
Summary:
Pooja Bhatt, while talking about #MeToo movement, said, "Ranting on Twitter and not backing it up with a police complaint [doesn't help]...One should take names...file a case and take the person to court." "Women can be equally vile, big bullies.
Summary:
Harinder Sikka, who wrote 'Calling Sehmat', revealed that he is currently writing the sequel 'Remembering Sehmat'.
Summary:
Summary:
Summary:
The Congress has demanded the removal of Chief Vigilance Commissioner KV Chowdary, alleging that he had acted "like a puppet" in the hands of the government in the CBI case.
Summary:
During a visit to a cow shelter in Haryana's Sonipat, Delhi CM Arvind Kejriwal on Sunday claimed that his government was running the country's best cow shelter in Bawana.
Summary:
Vice President M Venkaiah Naidu on Sunday said, "We need to follow the customs and practices of our forefathers and abandon west-oriented lifestyles." "Our traditions and customs not only strengthen the social fabric, but also create bonding among different sections of society," he added.
Summary:
The Supreme Court has sought a reply from the CBI on a plea filed by Congress leader Sajjan Kumar against a Delhi High Court order sentencing him to life imprisonment for his role in 1984 anti-Sikh riots case.
Summary:
As of March 23, 2018, only 73 out of 670 judges (nearly 11%) in various high courts are women, Department of Justice, Law Ministry informed a parliamentary committee.
Summary:
The Supreme Court on Monday sought a reply from the Centre within six weeks on a plea challenging the government's notification authorising 10 central agencies to intercept, monitor and decrypt any computer system.
Summary:
Balangir Divisional Forest Officer (DFO) Samir Satapathy said that around 1,000 to 1,200 trees have been felled to prepare the helipad.
Summary:
A video shows Ranveer Singh breaking down while recalling his friend, casting director Shanoo Sharma's reaction to his performance in the 2015 film 'Bajirao Mastani'.
Summary:
Diet Sabya has clarified it deleted the post calling out fashion designer Anamika Khanna "out of empathy", and not under "influence from any A-list celebrity or their emotional public cry".
Summary:
The 34-run victory against India in the first ODI was Australia's 1,000th win in 1,852 international matches across all formats.
Summary:
Former world number 13 Ukrainian tennis player Alexandr Dolgopolov took to Instagram to reveal that he got bitten by his pet wild cat.
Summary:
Perth Scorchers' opener Michael Klinger was dismissed on the 'seventh legal delivery' of the second over against Sydney Sixers in the BBL after a miscount by umpires allowed pacer Ben Dwarshuis to bowl a seven-ball over.
Summary:
China Women recorded the lowest total ever in T20I history (both men's and women's) after getting all out for just 14 runs in 10 overs against UAE on Sunday.
Summary:
WhatsApp Co-founder Jan Koum is selling his 10 Porsche cars at a US auction on March 8 this year.
Summary:
RJD leader Tejashwi Yadav on Sunday met BSP chief Mayawati in Lucknow, a day after the latter announced an alliance with Akhilesh Yadav's Samajwadi Party.
Summary:
Gujarat will become the first state to implement the 10% reservation for economically weaker sections of the general category on Monday.
Summary:
"I saw smoke coming from the foot area and possibly AC ducts...The driver hadn't spotted it or taken any action," said Singh.
Summary:
Biocon Chairperson, Managing Director and self-made woman billionaire, Kiran Mazumdar-Shaw on Sunday tweeted that the Bengaluru Traffic Police needs to "dent the bonnets of erring drivers with lathis." "If our traffic police can enforce lane discipline like they do in Chennai & Mumbai half of Bengaluru's traffic gridlock will be eliminated," she said.
Summary:
Pakistan's University of Agriculture Faisalabad (UAF) will observe February 14 (Valentine's Day) as Sisters' Day "to promote Eastern culture and Islamic traditions among the youth." "In our culture...women are more empowered and earned their due respects as sisters, mothers, daughters and wife," the university's Vice Chancellor said.
Summary:
Aamir Khan, who was earlier part of the film, had suggested Shah Rukh's name for the biopic.
Summary:
Australian pacer Jason Behrendorff picked up a wicket in his very first over after he had joked about it ahead of the India-Australia 1st ODI.
Summary:
Sreesanth said that Harbhajan was followed by Yuvraj Singh and that he himself was good at the 'party scene' as he used to dance.
Summary:
The staff at Manchester United's home ground Old Trafford were forced to protect the computers at the premises after visiting fans damaged a bathroom that led to water leaking into the offices situated underneath.
Summary:
Pakistan skipper Sarfraz Ahmed took 10 catches in the Johannesburg Test against South Africa to go past Adam Gilchrist, MS Dhoni and Alec Stewart to become the wicket-keeper captain with the most number of catches in a Test.
Summary:
It sends warm or cold waves to the temperature-sensitive skin on a user's wrist to moderate the body temperature.
Summary:
Senior BJP legislator Gulab Chand Kataria was on Sunday unanimously chosen as the Leader of Opposition in the Rajasthan Assembly by the BJP legislature party during a meeting at the party office in Jaipur.
Summary:
Mumbai Ola and Uber drivers have threatened to go on strike if their demands for better earnings are ignored by the state government, a drivers' union leader said.
Summary:
A German court has ruled that Amazon's 'Dash buttons', that let users re-order products like coffee and laundry detergent by pushing a WiFi-connected button, violate the law.
Summary:
The probe will measure temperature differences between lunar day and night to help scientists estimate properties of lunar soil, a probe project official said.
Summary:
India, Central Asia and Afghan are societies which are tolerant and plural, she said.
Summary:
The petitioner alleged that fuel stations are installing "microchips" to speed up the pulse meter to give lesser fuel to customers.
Summary:
Multinational media conglomerate Viacom is reportedly in talks to sell a majority stake in some of its China operations.
Summary:
This comes after the prototype, Airlander 10, was retired post successful testing.
Summary:
The market share of state-owned Life Insurance Corporation (LIC) fell below 70% in the financial year ended March 2018.
Summary:
"At first, I thought it was a joke...People just couldn't believe that she was a real dog," Sandra said.
Summary:
After a female assistant who worked in 'Sanju' accused the film's director Rajkumar Hirani of sexual harassment, the filmmaker said it is a "false, malicious and mischievous story".
Summary:
Summary:
On being asked by a journalist about "her friend" Hardik Pandya's comments on women on Koffee with Karan, actress Esha Gupta said, "Who's the one who told you [Hardik] is my friend?" "[Women] are the best in every respect...why don't [men] give birth to a child?" she added.
Summary:
After being included in India's squad for New Zealand tour, Shubman Gill said there can't be a better place to start his international career than New Zealand, where he was named player of 2018 Under-19 World Cup.
Summary:
Aam Aadmi Party today said that its convenor and Delhi CM Arvind Kejriwal will not contest in the upcoming Lok Sabha elections from Varanasi, where he lost to PM Narendra Modi by 3.71 lakh votes in 2014.
Summary:
The complaints were received through 'SHe-box', an online system for women to file sexual harassment complaints, in both government and private sectors.
Summary:
Former Indian captain Sourav Ganguly feels that a bowling attack without pacer Jasprit Bumrah is 'weak'.
[T]his is, however, a new bowling attack in ODIs," Ganguly said.
Summary:
Former Australia captain Allan Border reckons that Glenn Maxwell is 'wasted' when he is sent out to bat at number seven in ODIs. During the opening one-dayer against India, Maxwell entered in the 48th over and scored 11 runs off the five deliveries he faced.
Summary:
David Warner, Steve Smith and Cameron Bancroft, players banned for their roles in the ball-tampering scandal, have not been invited to the Cricket Australia awards as they are not under a Cricket Australia contract.
Summary:
Apple is planning to launch three new iPhones in 2019, according to a WSJ report.
Summary:
The quota system was introduced to give representation to socially and educationally backward people, he added.
Summary:
Shiv Sena chief Uddhav Thackeray on Sunday said that the one who will trounce the Sena was yet to be born.
Summary:
BJP General Secretary Ram Madhav on Sunday said PM Narendra Modi says things that glorify India while Congress President Rahul Gandhi says things that can create a bad impression of India.
Madhav's statements come amid Rahul's visit to the UAE.
Summary:
Union Minister Mukhtar Abbas Naqvi has said the PM Narendra Modi-led government has built a "highway of development" by removing "speed breakers" posed by issues related to religion, region and caste.
Summary:
Commenting on 10% reservation for economically weaker sections in general category, Shiv Sena chief Uddhav Thackeray said if Centre wants to help the financially weak, it should exempt them from paying taxes.
Summary:
Pragatisheel Samajwadi Party (Lohia) chief Shivpal Singh Yadav on Sunday said that he was ready to form an alliance with Congress in Uttar Pradesh for the upcoming Lok Sabha elections.
Summary:
US-based e-scooter startup Lime has paused its services in Switzerland after it received reports of its e-scooters abruptly halting mid-ride, throwing off and injuring users.
Summary:
Future Group CEO Kishore Biyani said, "We're talking about cloud kitchen and ready-to-eat food at customers' home at â¹40".
Summary:
An Army jawan has been arrested for allegedly passing sensitive information to operatives of Pakistan's spy agency ISI.
Summary:
The government will construct 44 "strategically important" roads along the India-China border spanning across five states, as per a Central Public Works Department report.
Summary:
At least two people were killed and 34 injured after a tourist bus collided with a truck in Bihar's Sitamarhi on Saturday.
Summary:
The Central Bureau of Investigation (CBI) on Saturday arrested Vicky, a relative of Shaista Parveen alias Madhu, one of the key accused in Bihar's Muzaffarpur shelter home rape case.
Summary:
The Enforcement Directorate (ED) has attached properties worth â¹1.92 crore of L Raghu, a Karnataka executive engineer under the Prevention of Money Laundering Act. The investigation was initiated based on an FIR and chargesheet filed by Karnataka Lokayukta.
Summary:
The company also plans to take its fashion discount retail chain Brand Factory online by March this year.
Summary:
Capital First Founder and Chairman V Vaidyanathan has been appointed the Managing Director and CEO of the merged entity.
Summary:
She had also sent an email to 'Sanju' co-producer Vidhu Vinod Chopra, as per HuffPost India.
Summary:
A 6.5-foot-long cast bronze hippopotamus sculpture weighing 680 kilograms was stolen from a garden ornament business in Tunbridge Wells, England, by unidentified thieves.
Summary:
Asha Paswan, the daughter of Union Minister Ram Vilas Paswan, on Sunday staged a protest against her father claiming he had insulted former Bihar Chief Minister Rabri Devi.
Summary:
Summary:
In a video clip, he was seen clearing vehicles choked at a turn on the highway.
Summary:
Summary:
A total of 87 people were working underground in the Shaanxi province mine at the time of the accident on Saturday.
Summary:
Air India has defended its move to stock extra meals for two-way trips to some foreign destinations like Stockholm and Copenhagen to save on catering expenses.
Summary:
Summary:
Summary:
Criticising the "immediate ouster" of Alok Verma as CBI Director, Shiv Sena accused the government of setting "wrong precedents" by not allowing him to defend himself.
Summary:
Following the win, Chelsea coach Maurizio Sarri said, "For us Willian is really a very important player...
Summary:
Argentina's World Cup-winning captain Diego Maradona has been recovering after successfully undergoing an operation for stomach bleeding.
Summary:
NCP chief Sharad Pawar on Sunday said that amending the Constitution to increase the reservation limit is "harmful" to its basic principles according to experts.
Summary:
PM further said, "We are here to serve the country in every way".
Summary:
Russia's space agency Roscosmos has said it's unable to control its only radio telescope satellite Spektr-R since Friday.
Summary:
The fishermen were surrounded by the Sri Lankan Navy on early Sunday morning and were later taken for interrogation.
Summary:
A 79-year-old man has been arrested for allegedly murdering his wife by slitting her throat in Tamil Nadu's Madurai.
Summary:
The Mumbai-Ahmedabad bullet train will consume 40% more electricity than what the entire Delhi Metro network requires, as per National High Speed Rail Corporation Limited (NHSRCL), which is executing the project.
Summary:
As many as nine children fell ill after they were allegedly administered expired medicines at a health centre in Rajasthan's Kushalgarh on Saturday.
Summary:
Only six states including Andhra Pradesh and Mizoram have recorded a revenue increase after GST was implemented.
Summary:
Two others who tried to save the students also suffered burn injuries, he added.
Summary:
Speaking on Guru Gobind Singh's 352nd birth anniversary, PM Narendra Modi hailed building of Kartarpur corridor and called it an "atonement" for the "mistake" made in August 1947.
Summary:
The Pakistan Supreme Court has suspended the execution of a mentally ill former policeman sentenced to death in 2003 for killing a fellow officer.
Summary:
Yes Bank on Saturday announced the appointment of Brahm Dutt as non-executive part-time Chairman.
Summary:
The Mumbai-based company has a total debt of around â¹7,000 crore.
Summary:
Responding to social media users trolling her for her lip job, television actress Sara Khan said, "I'm...laughing at it.
Summary:
"So good," Gwyneth wrote while praising the video, which shows Tiger dancing to 'Ek Pal Ka Jeena'.
Summary:
Kangana Ranaut, while speaking about her contemporary actresses not praising her work, said, "Why is everyone like, 'Oh, oh, oh she doesn't exist'?" "I will praise Alia or I would praise Anushka or I would praise everyone...Everyone I have praised in my capacity," she added.
Summary:
Actor Amitabh Bachchan took to Twitter to reveal that Tumblr has prevented him from posting a fresh blog post.
Summary:
Batsman Shubman Gill, who has been called up to India squad for the first time, was born in PunjabâÂÂs Fazilka on September 8, 1999.
Summary:
Punjab's 19-year-old batsman Shubman Gill and Tamil Nadu all-rounder Vijay Shankar will replace suspended cricketers KL Rahul and Hardik Pandya, who have been sent home from Australia mid-tour.
Summary:
India's Ambati Rayudu has been reported for a suspect bowling action during the first ODI against Australia in Sydney on Saturday.
Summary:
Punjab's 19-year-old batsman Shubman Gill said he was shocked for the first 15-20 seconds after news of him being included in India's squad for New Zealand tour broke out.
Summary:
Congress has announced that it will contest all the 80 Lok Sabha seats in Uttar Pradesh in the upcoming general elections.
Summary:
Summary:
Summary:
Five people, including 65-year-old MP BJP leader Jagdish Karotiya and his sons, were arrested for allegedly murdering a 22-year-old Congress worker in 2016.
Summary:
The Milwaukee County Transit System said the baby was wearing only a diaper and a onesie when Irena Ivic spotted it on December 22.
Summary:
Saudi teenager Rahaf Mohammed al-Qunun who was granted asylum in Canada after she fled her family this week has said, "(Australia) took too long.
Summary:
Crowdfunding platform GoFundMe has said that over $20 million in donations will be refunded after a campaign to raise $1 billion for US President Donald Trump's wall on the border with Mexico fell short of its goal.
Summary:
A US surgeon who removed a woman's kidney after mistaking it for a tumour in April 2016 has to pay a fine of $3,000 (over â¹2 lakh) and undergo extra training.
Summary:
Kaye launched a series of attacks on Liberian cell phone operator Lonestar, after being hired by a senior employee of rival operator Cellcom in 2015.
Summary:
Summary:
Playing for Southend in the third-tier League One, the 17-year-old lobbed the Plymouth goalkeeper in the second minute of stoppage time.
Summary:
Reacting to Shubman Gill's call-up to the Indian team, part of a user's tweet read, "Playing lakhs of balls in practice has finally paid off".
Summary:
Summary:
The Nationalist Congress Party has expelled all 18 of its newly elected corporators in Maharashtra's Ahmednagar for voting in favour of BJP's Babasaheb Wakale during the mayoral poll in the civic body.
Summary:
Summary:
This is the fourth capital infusion in Amazon Pay in financial year 2018-19 after it received â¹220 crore in November, â¹590 crore in October and â¹230 crore in July.
Summary:
One person died and three others were injured after a bus carrying over 50 passengers lost control and rammed into a crowd in Hyderabad on Saturday.
Summary:
A 17-year-old girl was allegedly poisoned and threatened by two bike-borne men for refusing to withdraw a rape case she had filed against a 20-year-old man, said Delhi Police.
Summary:
Top Al-Badr commander Zeenat-ul-Islam was among the two militants killed in an encounter with security forces in Jammu and Kashmir's Kulgam district, said the police on Sunday.
Summary:
A 17-year-old girl driving blindfolded crashed into another vehicle while doing the Bird Box challenge in US' Utah.
Summary:
CoA member Diana Edulji has said inquiry against Hardik Pandya and KL Rahul should not be rushed as suggested by CoA chief Vinod Rai. Rai had suggested the inquiry against the suspended duo should be over before the second ODI against Australia.
Summary:
Team India captain Virat Kohli was dismissed caught out for three runs off eight balls in the first ODI against Australia in Sydney, which the hosts won by 34 runs.
Summary:
Former India captain MS Dhoni met his 87-year-old Australian fan Edith Kochanek after a practice session at Sydney Cricket Ground (SCG).
Edith had come to the stadium with her son Norman to watch Dhoni train.
Summary:
The game was about having sex with as many girls as possible.
Summary:
Continental partnered with Swiss robotics company ANYbotics for the dog named 'ANYmal'.
Summary:
Talking about the price of weaponised Rafale jets, Defence Minister Nirmala Sitharaman said, "[Congress] isn't disclosing the price with weapons system because they didn't have a deal in the first place.
Summary:
The rocky planet is believed to have surface temperatures about -170ðC.
Summary:
Delhi CM Arvind Kejriwal has received a threat e-mail from an unknown person/group that read, "We will kidnap your daughter.
Meanwhile, Delhi Police has deployed an officer for protection of Kejriwal's daughter.
Summary:
Republican Congressman Andy Biggs has introduced a bill in the US Congress to terminate Pakistan's designation as a 'Major non-NATO ally'.
Summary:
Saudi wants to make Pakistan's economic development stable through establishing the refinery and partnership with Pakistan in the China Pakistan Economic Corridor, he added.
Summary:
Chinese telecom equipment maker Huawei said it fired Wang Weijing, a Chinese employee arrested in Poland on suspicion of spying for the Chinese government.
The incident in question has brought Huawei into disrepute," it said.
Summary:
IT major Infosys has dropped plans to sell Panaya, Skava and Kallidus that were acquired in 2015 during former CEO Vishal Sikka's tenure.
Summary:
Shriya will reportedly play a journalist in the film, which will see 'Bahubali' actor Rana Daggubati in a lead role.
Summary:
Speaking about Shiv Sena founder Bal Thackeray's take on the Muslim community, 'Thackeray' writer and Shiv Sena MP Sanjay Raut said, "Bala saab was never an anti-Muslim man." He added, casting Nawazuddin Siddiqui to play Bal Thackeray in the biopic was the "biggest salute" to "the ideology of Bala saab".
Summary:
Actress Shabana Azmi has said that Indian film institutes should offer their students training in production skills.
Summary:
Former world number one Andy Murray said that the feeling of helplessness he felt against rival Novak Djokovic during a practice session this week made him announce his retirement.
Summary:
UEFA has banned defender Dejan Lovren from Croatia's European Championship qualifier match against Azerbaijan after he appeared in a video insulting Spain.
Summary:
Former Indian selector Kiran More is hopeful that BCCI will allow all-rounder Hardik Pandya to play in New Zealand as it is important for Pandya to get enough game time before the World Cup 2019.
Summary:
Liverpool edged past Brighton by beating them 1-0 to go seven points clear at the top of the EPL points table on Saturday.
Summary:
Chief of Army Staff of Nepali Army, Purna Chandra Thapa, has been conferred the Honorary Rank of General of Indian Army by President Ram Nath Kovind.
Summary:
Following the resignation of IAS topper Shah Faesal, Jammu and Kashmir Governor Satya Pal Malik stated Faesal could have served people better as an officer.
Summary:
He further said government has targeted 252 colleges to provide free coaching for preparation of competitive exams.
Summary:
Madhya Pradesh CM Kamal Nath has revoked suspension of the headmaster of a Jabalpur school who called him a "daaku" (dacoit).
Summary:
The UK government is considering scrapping jail terms of six months or less in England and Wales in a bid to ease pressure on prisons, Justice Minister Rory Stewart said.
Summary:
Saudi Arabia's Rahaf Mohammed al-Qunun arrived in Canada on Saturday after she was granted asylum in the North American country.
Summary:
The Malaysian state of Pahang has appointed Tengku Abdullah Sultan Ahmad Shah as the new Sultan.
Summary:
Twitter user Mohit Rao shared his SpiceJet experience, where the pilot started the flight with "Our company is not doing well...so thank you for flying with us".
Summary:
Actor Vishal Thakkar, who is known for his role in âÂÂMunna Bhai MBBSâÂÂ, has been missing for three years.
Summary:
Richardson picked up a total of four wickets in the ODI and was named Man of the Match.
Summary:
Retired Supreme Court judge AK Patnaik, who was appointed by the top court to monitor the Central Vigilance Commission inquiry against ex-CBI Director Alok Verma, said the decision to remove Verma was "very, very hasty".
Summary:
Following the announcement, on June 2, SP workers marched into the State Guest House in Lucknow, where BSP supremo Mayawati was in a meeting, and held her hostage.
Summary:
Summary:
NASA-backed researchers have designed a spacecraft prototype that can propel between several celestial objects using steam.
Summary:
A white human lungs 'model' to measure air pollution turned black within 24 hours of installation in Lucknow.
Summary:
Japan failed to pay a total of 53.7 billion yen (over â¹3,480 crore) in unemployment benefits for as long as 15 years after it emerged that the government has been incorrectly collecting job data.
Summary:
Two firefighters were killed and 47 others were injured on Saturday after a gas leak sparked an explosion inside a bakery in the French capital of Paris, officials said.
Summary:
India's oil imports from Iran fell by 41% in December to 302,000 barrels per day (bpd) after US sanctions took effect, according to Reuters.
Summary:
The websites allegedly lure people by promising rents of â¹15,000-35,000 per month and one-time payment of â¹10-25 lakh.
Summary:
Anupam Kher criticised Congress President Rahul Gandhi after Congress workers in Kolkata allegedly vandalised a theatre during the screening of his film 'The Accidental Prime Minister'.
Summary:
Speaking about making her debut as a director with her upcoming film 'Manikarnika: The Queen of Jhansi', Kangana Ranaut said, "People have been so unappreciative." "Everyone is saying why am I directing as they love me as an actor," Kangana added.
Summary:
Sushmita Sen shared a post on the occasion of completing 25 years since she was crowned Miss Universe and said, "[H]ate has no place in my life." "The heart often sends out a desire...to be someone...and boom, the universe begins to conspire in all its abundance to make it possible!" Sushmita wrote.
Summary:
Australian pacer Jhye Richardson, who picked up the Man of the Match for his figures of 4/26 in the 1st ODI against India, said that Australia were lucky to have MS Dhoni dismissed by LBW.
Summary:
Dhawan was fielding at the boundary ropes when the Bharat Army was playing the drum.
Summary:
Summary:
WWE Executive Vice President Paul âÂÂTriple Hâ Levesque said the WWE is looking to set up a performance center in India.
Summary:
Hitting out at PM Narendra Modi for his 'majboot vs majboor' remark, Congress spokesperson Manish Tewari said 2019 polls will be a "fight between dictatorship and democracy".
Summary:
He further said that in 2019, BJP will perform better than it did in 2014.
Summary:
Calling for the reconvening of the SAARC Summit, Nepal's Foreign Minister Pradeep Kumar Gyawali asked that if US President Donald Trump and North Korean leader Kim Jong-un can meet, then why not leaders of other countries.
Summary:
Chennai Municipal Corporation has designated 4,258 parking slots in congested areas across Chennai under its 'smart parking management system'.
Summary:
The body of a woman was found hanging at Dhanbad Railway Station in Jharkhand on Saturday.
Summary:
Former Pakistan Prime Minister Nawaz Sharif's health has deteriorated in jail and authorities are not letting cardiologists examine him, Sharif's daughter Maryam Nawaz said on Friday.
Summary:
Biocon Chairperson Kiran Mazumdar-Shaw has been re-appointed as the lead independent director of Infosys from April 1 for five years.
Summary:
President Ram Nath Kovind has approved The Constitution (One Hundred And Third Amendment) Act, 2019, which introduces a 10% reservation for economically weaker sections among general category for jobs and educational institutions.
Summary:
In a viral video shared by poet Kumar Vishwas, a Bihar teacher is seen singing "aeiou" to teach students difference between vowels and consonants.
by such a musical teacher, then even we would have spoken English with the same fluency as Shashi Tharoor," Dr Vishwas tweeted.
Summary:
Stating that she would "definitely like to do" a movie with Priyanka Chopra in future, Kangana Ranaut said, "I think if we both are like supergirls...that would work.
Summary:
CBI DSP AK Gupta and DSP AK Bassi would be moving the Supreme Court seeking 'contempt of court' proceedings against their transfer issued by interim chief Nageswara Rao. Both DSPs were part of ousted CBI Director Alok Verma's investigating team in corruption cases.
Summary:
Suspended all-rounder Hardik Pandya's mentor Kiran More has said the cricketer will be a changed person now.
Summary:
Criticising Hardik Pandya and KL Rahul over their "sexist" comments in 'Koffee with Karan', Harbhajan Singh said BCCI did the right thing by suspending them.
Summary:
Amid their ongoing patent disputes, Qualcomm CEO Steve Mollenkopf has testified that Apple demanded $1 billion without assuring how many iPhone chips it would buy in 2011.
Summary:
After announcing SP-BSP alliance for the General elections, SP President Akhilesh Yadav said, "[BJP] should know any insult to Mayawati is my insult." "We've come together to rid the state and country of BJP's religion and caste politics.
Summary:
A probe committee, headed by former Supreme Court judge HS Bedi, has told the apex court that three out of 17 encounters that took place in Gujarat from 2002-2006 were fake.
Summary:
Tulsi Gabbard, the first-ever Hindu elected to the US Congress, has announced that she will run for President in 2020.
Summary:
The US will grant no more waivers for Iranian oil after the reimposition of sanctions, the US special representative for Iran Brian Hook said.
Summary:
A snake catcher has rescued a python with more than 500 ticks attached to it from a swimming pool in Australia's Brisbane.
Summary:
RBI board member S Gurumurthy has sent a defamation notice to The Economist over its article titled "The person who is doing most to undermine the Reserve Bank of India".
Summary:
Veteran actor Kishore Pradhan, who is known for his work in both Hindi and Marathi cinema, passed away at the age of 86.
Summary:
Varun Dhawan will play the role of late Indian industrialist Dhirubhai Ambani in the upcoming Salman Khan starrer 'Bharat', as per reports.
Summary:
Saif Ali Khan will reportedly make a comeback in the 'Race' franchise by starring in 'Race 4'.
Summary:
Dhoni, who reached the landmark figure in 93 balls, scored his career's second-slowest ODI half-century.
Summary:
Summary:
India's Rohit Sharma hit his 64th six against Australia, setting the record for the most number of sixes hit by a batsman against an opposition in ODIs. Sharma went past former Pakistan captain Shahid Afridi's tally of 63 sixes hit against Sri Lanka.
Summary:
After Samajwadi Party (SP) and Bahujan Samaj Party (BSP) announced their alliance, Union Law Minister Ravi Shankar Prasad on Saturday said, "The SP-BSP alliance is for their survival." "It's not in the interest of the country or Uttar Pradesh," he added.
Summary:
Finance Minister Arun Jaitley on Saturday said that coalition governments don't last long due to conflict of ideologies.
Summary:
PM Narendra Modi on Saturday claimed that the current BJP-led central government is the first government in India's history to have no corruption charges against it.
Summary:
External Affairs Minister Sushma Swaraj on Friday said, "It's because of our PM's (Narendra Modi) will that everyone has a bank account today." When BJP came to power in 2014, only one-third of the population had bank accounts, she added.
Summary:
After the arrest, the traffickers are handed over to Government Railway Police for appropriate action under the law, the spokesperson added.
Summary:
Kumbh Mela, which is to be held in Prayagraj, will for the first time witness a Kinnar (transgender) 'akhada'.
Summary:
US President Donald Trump's daughter Ivanka is being considered to replace Jim Yong Kim as the World Bank's next President, according to the Financial Times.
Summary:
The Federal Bureau of Investigation opened a probe in 2017 into whether US President Donald Trump was secretly working for Russia, according to The New York Times (NYT).
Summary:
Australia defeated India by 34 runs in the first ODI today to become the first country to win 1,000 international matches.
Summary:
Opener Rohit Sharma has become the first India batsman to smash five hundreds in ODI cricket in Australia, achieving the feat in the first ODI against Australia in Sydney on Saturday.
Summary:
Replying to paparazzi who schooled him for wearing headphones while riding a bicycle, actor Ishaan Khatter wrote, "Thanks for looking out...Also not very safe for your photographers to chase and click pictures while on a motorbike." The actor clarified that he was on a call.
Summary:
This was the first instance since 2001 that India failed to hit a four in their first 20 overs in an ODI.
Summary:
"To continue delivering for our customers and to succeed in developing interplanetary spacecraft and a global space-based Internet, SpaceX must become a leaner company.
Summary:
A video has surfaced online, showing a truck driver in Rajasthan being assaulted by dacoits, who looted â¹22,000 from him.
Summary:
India on Thursday rejected Pakistan's accusations of the involvement of RAW in the terrorist attack at the Chinese consulate in Karachi last year, calling it a "fabricated and scurrilous" attempt.
Summary:
Participants at All India Congress of Obstetrics and Gynaecology in Bengaluru have set a Guinness World Record for the longest line of sanitary napkins, in a move to promote menstrual hygiene.
Summary:
A 31-year-old Indian man in Singapore has been sentenced to 13 years in jail and 12 strokes of the cane after pleading guilty to one charge of sexual assault of a 12-year-old girl and two charges of attempted statutory rape.
Summary:
Output in only 10 of the 23 industry groups saw positive growth in November.
Summary:
Disney CEO Bob Iger missed out on a $60-million bonus tied to the company's operating income but still collected his largest-ever compensation package in 2018.
Summary:
Kartik Aaryan will star in the remake of Sanjeev Kumar and Vidya Sinha starrer 1978 film 'Pati Patni Aur Woh', suggested reports.
Summary:
Ranveer Singh has said that he will continue taking risks as an actor and continue experimenting, adding, "I don't think I will be creatively satisfied doing the same thing over and over again." "I want to give audiences a different side of me every time they see me on screen.
Summary:
Responding to Rani Mukerji's stance on #MeToo movement where Rani had said that women should be strong enough to say back off, Neha Dhupia said, "That's extremely legitimate." "That breed of men [shouldn't] exist who actually want to exploit women.
Summary:
Summary:
Indian pacer Bhuvneshwar Kumar reached 100 wickets in ODI cricket after reaching the landmark in the first ODI against Australia in Sydney on Saturday.
Summary:
Smith and David Warner's suspensions are set to end on March 29.
Summary:
Summary:
Madhya Pradesh Congress leader Pradeep Saxena passed away after suffering a heart attack while participating in a 'Surya Namaskar' event in Chhindwara on Saturday.
Summary:
BJP leader Subramanian Swamy has said he'd like to "warn his party" that "not building a Ram Temple will be a betrayal of the public".
Summary:
Summary:
After SP and BSP formed an alliance ahead of the upcoming Lok Sabha elections, BJP leader Nitin Gadkari said, "Those who want to come together can do so, but remember we will throw you all on the ground." Gadkari added, "Only because of our fear...
Summary:
However, the women received no profits, police said.
Summary:
The customs officials at the Chennai International Airport on Saturday detained two South Korean women for allegedly smuggling 24 kg of gold worth â¹8 crore.
Summary:
Passengers travelling up to 10 km will be charged â¹20, beyond which BEST rates will be applicable.
Summary:
A 23-year-old man named Gautam Kumar was allegedly thrashed to death with a digging fork by his neighbour Dhan Kumar on Thursday after an argument broke out between them, said the Delhi Police.
Summary:
Bahujan Samaj Party (BSP) chief Mayawati and Samajwadi Party (SP) chief Akhilesh Yadav on Saturday announced that their parties will contest the upcoming Lok Sabha elections in an alliance.
Summary:
The ongoing US partial government shutdown entered its 22nd day, breaking the record to become the longest government shutdown in US history.
Summary:
After cricketers KL Rahul and Hardik Pandya were suspended over their remarks on women in 'Koffee with Karan', Harbhajan Singh said that he wouldn't want to travel with them on the same bus with his wife and daughter.
Summary:
Nadkarni gave only five runs in the innings, finishing with figures of 32-27-5-0 and the all-time best economy rate of 0.15 (minimum 60 balls).
Summary:
Former captain MS Dhoni has become the fifth batsman to score 10,000 runs in ODI cricket for India, achieving the feat in the first ODI against Australia on Saturday.
Summary:
Italy's Maire Tecnimont has reportedly fired its India chief and accounts and finance head after the firm lost around â¹130 crore in cyber fraud, allegedly carried out by Chinese hackers.
Summary:
The man, Ashish Kumar Sharma, has accused Yadav and 19 others of trying to extort â¹5 lakh from him.
Summary:
The name of a deceased Deputy Superintendent of Police (DSP), Satya Narain Singh, featured in the latest officers transfers list issued by Uttar Pradesh Police.
Summary:
The Renukaji Dam Multipurpose Project is yet to receive Stage-II forest clearance from the Environment Ministry.
Summary:
A couple in Telangana's Vikarabad got married in a hospital where they were admitted following a suicide attempt after their parents objected to the union.
Summary:
"These four men have had their history wrongly written for crimes they did not commit," authorities said.
Summary:
Magufuli said that Airtel had also agreed to pay dividends to the state.n
Summary:
Summary:
Farah Khan will be launching former Miss World Manushi Chhillar in Bollywood, as per reports.
Summary:
Summary:
They threatened moviegoers and damaged the screen, following which the show was cancelled.
Summary:
Ayushmann Khurrana, on being asked if he'd ever publish a book of poems, said, "I would love to do it...What I write, I want to share with people.
Summary:
West Bengal CM Mamata Banerjee on Friday said, "Those who are making films like 'The Accidental Prime Minister' must also watch another film titled 'The Disastrous Prime Minister'." "All are accidental prime ministers," she further claimed.
Summary:
This comes after Union Minister Rajnath Singh recently said that no country is as tolerant as India.
Summary:
Delhi CM Arvind Kejriwal on Friday said that AAP is serving cows and not seeking votes in the name of cows.
Summary:
Union Minister and BJP leader Prakash Javadekar on Friday said, "Congress politics is about not removing poverty and not bringing poor people out of the clutches of poverty." "They do politics of entitlement, our's is politics of empowerment," he added.
Summary:
Senior TMC leader Abhishek Banerjee on Friday issued a "challenge" to BJP chief Amit Shah, stating, "If he has the guts he should contest elections from any of the 42 Lok Sabha seats in West Bengal." Abhishek, who was addressing a rally, added, "I would ensure that he loses the election...
Summary:
A study by Northwestern University researchers suggests the mysterious 'Cow' blast, first observed on June 16, 2018, was generated by birth of a black hole or neutron star.
Summary:
Naidu had earlier increased the pension from â¹200 to â¹1,000 in 2014 when TDP came to power in the state.
Summary:
The deceased were travelling in the ambulance when a car coming from the opposite direction lost control and collided with it.
Summary:
Israel said the highway is "an example of the ability to create coexistence between Israelis and Palestinians while addressing the security challenges".
Summary:
During a visit to the state of Texas on Thursday, US President Donald Trump asked officials how many Pakistanis were apprehended at the border with Mexico earlier this week.
Summary:
Hardik Pandya and KL Rahul, who have been suspended from playing any form of cricket till further action after their comments on women on 'Koffee with Karan', will return to India mid-tour from Australia.
Summary:
Banker-turned-politician Meera Sanyal passed away at the age of 57 on Friday after suffering from cancer.
Summary:
Rahaf Mohammed al-Qunun, the 18-year-old Saudi girl who fled alleged abuse by her family, has been granted asylum in Canada, the Thai immigration chief said.
Summary:
Sonam Kapoor and her sister Rhea defended designer Anamika Khanna after an Instagram account called 'Diet Sabya' alleged her 'AK-OK' collection was copied from Anna Wintour's AWOK Jordan's collection.
Summary:
BCCI treasurer Anirudh Chaudhry has asked CoA whether cricketer KL Rahul and Hardik Pandya sought any permission before appearing on 'Koffee with Karan'.
Summary:
Ex-spinner Brad Hogg held the previous Australian record, missing 156 ODIs between two appearances.
Summary:
In the video, the man, who was later detained, can be seen brandishing a stick and asking them to support the UAE.
Summary:
Happy B'day to a gentleman...a Champion...Rahul Dravid," he replied to Trump's tweet which read, "Sadly, there can be no REAL Border Security without the Wall!"
Summary:
As per official data, 498 people were held for pickpocketing in Delhi metro in 2018 of which 94% cases involved women pickpockets.
Summary:
The truck driver, unaware of the accident, kept driving.
Summary:
A police official said the officer, who's currently posted in Mizoram, was walking out of the courtroom on Thursday when the advocates began misbehaving with her.
Summary:
Poland has arrested a Huawei employee and a former Polish security official over alleged spying for China, Polish authorities said on Friday.
Summary:
As many as 70 private jets are stranded at airports across Saudi Arabia following the corruption crackdown launched in late 2017, according to Reuters.
Summary:
Ashok Chawla on Friday resigned as the Chairman of National Stock Exchange of India (NSE), India's biggest stock exchange.
Summary:
Authorities at the multiplex cancelled the screening after the activists gathered outside to protest against the film.
Summary:
After Pakistan Chief Justice Saqib Nisar said that Indian content will not be allowed on Pakistani television channels, lyricist Javed Akhtar said, "This is all wrong." "There shouldn't be any such talks coming from here, neither from there, as well," Javed added.
Summary:
Speaking about her role in the upcoming sequel to the 1991 film 'Sadak', filmmaker and actress Pooja Bhatt said, "I'm glad...I'm getting to play my age." "One thing I don't see happening is women of certain age being represented correctly," Pooja added.
Summary:
Their batting is not showing quality and because of this their bowlers have also struggled badly," Yousuf added.
Summary:
Former world number one tennis player Andy Murray embraced his mother Judy Murray after announcing his impending retirement in a press conference ahead of the Australian Open 2019.
Summary:
I wish I could have a couple of times with him to make him a good wicketkeeper," Engineer said about Pant's wicket-keeping skills.
Summary:
A study by MIT researchers into long-term health in zero gravity has suggested that long-duration space missions cause back pains which may last up to four years.
Summary:
Chinese space agency CNSA on Friday shared the first panoramic images of the Moon's far side, captured by its lunar probe Chang'e 4.
Summary:
Scientists have revealed they have obtained "very high-quality data at the very high resolutions necessary to observe the shadow" of the black hole at Milky Way galaxy's centre.
Summary:
Cases of rape and murder decreased by 7.63% and 7.08% respectively in 2018 as compared to 2017.
Summary:
An Army Major and a soldier were martyred in an improvised explosive device (IED) blast along the Line of Control (LoC) in Jammu and Kashmir's Rajouri on Friday.
Summary:
A video shared online shows a woman, who fell into the gap between the railway platform and a moving train, being rescued by two men at Gujarat's Dahod Railway Station.
Summary:
Union Minister Nitin Gadkari on Friday said the government is spending above â¹20,000 crore to rectify accident-prone spots, and to make underpasses, flyovers across India to reduce road-related accidents.
Summary:
Actress Zareen Khan, while recalling an incident wherein she slapped a man while being mobbed in Aurangabad, said, "I am not someone who is up for shit." "I don't know what's this sick mentality of men who want to grab women in an inappropriate manner.
Summary:
India captain Virat Kohli has said once he retires from cricket, he won't pick up the bat again.
Summary:
World number 51 Nick Kyrgios took to Instagram to share a message for ex-world number one Andy Murray, who earlier today hinted that Australian Open could be his last tournament as a professional player.
Summary:
"We offered free repair or a new device...He instead demanded two next-gen Pixel phones.
Summary:
US-headquartered startup Royole displayed the world's first commercial foldable smartphone FlexPai at Consumer Electronics Show (CES) 2019 in Las Vegas.
Summary:
But does he speak it?
We speak impromptu," she added.
Summary:
The boy had failed Class 10 exams two years ago and was reportedly pressurised by his mother to retake them.
Summary:
Journalist Ram Chander Chhatrapati, who was killed on orders of Dera Sacha Sauda's Gurmeet Ram Rahim, ran a regional daily newspaper 'Poora Sach'.
Summary:
Even though they sold five of the stolen scooters, police recovered nine of them.
Summary:
Responding to Pakistan PM Imran Khan's comments on the treatment of minorities in India, Foreign Ministry spokesperson Raveesh Kumar said, "Pakistan should be the last country to lecture us on plurality and inclusive society." The world is aware of the situation of minorities in Pakistan, he added.
Summary:
India's second-largest IT services firm Infosys reported a nearly 30% fall in third-quarter profit at â¹3,609 crore, missing analyst estimates.
Summary:
US President Donald Trump on Friday said he is planning changes to H-1B visas that would create "simplicity and certainty to your stay, including a potential path to citizenship".
Summary:
Hrithik Roshan took to Twitter to share a picture with his father Rakesh Roshan and their family after his father underwent surgery for throat cancer.
Summary:
Kevin was then taken to a hospital where he was pronounced dead, reports further said.
Summary:
The Censor Board reportedly proposed the change as it felt the original title was misleading for the audience.
Summary:
Reacting to the impending retirement of former number one tennis player Andy Murray, Indian tennis player Sania Mirza wrote, "#Andy Murray #foreverfavourite #foreverachampion @andy_murray." "You are a champion on and off the court.
Summary:
The President of Japan's Olympic Committee, Tsunekazu Takeda, is under formal investigation by French prosecutors for suspected corruption related to Japan's successful bid to host the 2020 Olympic Games.
Summary:
India's first Formula One driver Narain Karthikeyan on Friday made a full-time switch to sports car racing, ending his around two-decade-old single-seater racing career.
Summary:
Google has built a theme park ride to display its AI-powered Assistant's features at CES (Consumer Electronics Show) 2019 in Las Vegas.
Summary:
Senior Congress leader Rajiv Bakshi on Friday said, "We...are ready to fight the coming elections alone in Uttar Pradesh." "We alone have 45 seats in the Lok Sabha and it is any day many more than the regional players," he added.
Summary:
Addressing Indian workers in Dubai on Friday, Congress President Rahul Gandhi said he is there to listen to the workers and not to tell them his "mann ki baat".
Summary:
Addressing a gathering of Indian workers in Dubai, Congress President Rahul Gandhi on Friday said, "We will give special category status to Andhra Pradesh." "It's the first thing we will do after coming to power in 2019," he added.
Summary:
BJP President Amit Shah on Friday said that BJP is committed to the construction of Ram Temple as promised in 2014.
Summary:
According to the police, Nagaraj killed his daughter by feeding her water mixed with pesticide.
Summary:
"For the first time, waterways, roadways, and airways have extended connectivity to...Kumbh," Yogi added.
Summary:
Police in Canada can now demand breath samples from people in bars, at home or anywhere else under a revised law aimed at curbing drunk driving.
Summary:
Expressing concerns over the human rights abuses in North Korea, UN Special Rapporteur on the situation of human rights in North Korea, Tomás Ojea Quintana quoted a source as saying that "the whole country is a prison".
Summary:
Indian cricketers Hardik Pandya and KL Rahul have been suspended pending an inquiry over their offensive comments on women in 'Koffee with Karan', CoA chief Vinod Rai said.
Summary:
That's why people think decent people are stupid.
Summary:
Google shareholder James Martin has said Android Co-founder Andy Rubin was alleged to have engaged in human sex trafficking while at Google.
Summary:
The first IAS topper from Jammu & Kashmir, Shah Faesal, who announced his resignation from the civil services on Wednesday, has said he is deeply inspired by Pakistan PM Imran Khan and Delhi CM Arvind Kejriwal.
Summary:
Summary:
"We will bring the Indian students to ISRO.
The ISRO chief further said that Indian astronauts could be trained at Institute of Aerospace Medicine (IAM) in Bengaluru.
Summary:
US President Donald Trump had ordered the withdrawal of all troops last month after claiming that the Islamic State militant group has been defeated in Syria.
Summary:
A Chinese farmer-turned-mechanic has constructed a life-sized Airbus A320 replica to fulfil his childhood dream of owning a plane.
Summary:
As many as 277 passengers and crew members aboard the Royal Caribbean's Oasis of the Seas cruise ship became sick with a gastrointestinal illness, according to the cruise line.
Summary:
Singapore Airlines has fired a pilot for failing an alcohol test in September 2018 before a flight from Melbourne, Australia.
Summary:
The aerospace unit of Wipro Infrastructure Engineering (WIN) has started shipments of part supplies to Boeing from its plant in Devanahalli near Bengaluru.
Summary:
Billionaire Anand Mahindra has suggested crowdsourcing the funding for the next trip of a Kochi-based tea shop owner couple.
Summary:
Virat Kohli has topped the celebrity brand valuation list of Duff & Phelps with a brand value of $170.9 million and following him is Deepika Padukone with a brand value of $102.5 million.
Summary:
Speaking about the upcoming biopic based on the life of Prime Minister Narendra Modi, the film's producer Sandip Ssingh said, "ItâÂÂs not a political film." "We are telling a human story.
Summary:
Speaking about working with women directors, actor Vikrant Massey said he could "undeniably connect with them on a...personal level".
Summary:
The screening of the film 'The Accidental Prime Minister' was cancelled at Kolkata's Hind Cinema due to security concerns amid protests by Youth Congress activists.
Summary:
Indian captain Virat Kohli and coach Ravi Shastri received the honorary membership of the Sydney Cricket Ground (SCG) ahead of the India-Australia ODI series.
Summary:
Goyal said, "When Shri Alok Verma was appointed CBI chief by the selection committee, he dissented.
Summary:
New Zealand went from 55/5 to 179/7 to register a 35-run win over Sri Lanka in the sole T20I between the sides on Friday.
Summary:
Indian tennis player Prajnesh Gunneswaran, who has qualified for the main draw of the Australian Open 2019, is set to become only the third Indian tennis player in the last five years to play in a Grand Slam.
Summary:
Shareholder James Martin has filed a lawsuit against Google-parent Alphabet's board including Google Co-founders Larry Page and Sergey Brin, for allegedly covering up sexual harassment by many senior executives.
Summary:
After reports claimed Samajwadi Party President Akhilesh Yadav may be questioned by CBI in an illegal mining case, Akhilesh said, "From time to time a probe should happen, it helps in updating papers, documentation." He added, "A CBI probe will not be the first time for us...
Summary:
Punjab CM Captain Amarinder Singh has accused Union Minister Harsimrat Kaur Badal of playing with people's religious sentiments to "promote vested interests of the Badals".
Summary:
Summary:
SpaceX Founder Elon Musk has shared the first image of the 30-foot-wide Starship test flight rocket, saying, "This is an actual picture, not a rendering." The current Starship, previously called the 'Big Falcon Rocket', is a suborbital version designed for vertical take-off and landing tests.
Summary:
The capsizing of the boat carrying Maharashtra government officials to Shivaji Memorial, that killed one in October 2018, was due to "human error", Maharashtra Maritime Board officials said.
Summary:
Rahaf was granted refugee status by the UN earlier this week.
Summary:
The Delhi High Court has refused to cancel the bribery case against CBI No. 2 Rakesh Asthana.
Summary:
Alok Verma has refused to take charge as Director General, Fire Services after he was removed and transferred from the post of CBI Director.
Summary:
Chander's newspaper 'Poora Sach' had published an anonymous letter alleging how women sadhvis in the dera were raped by Ram Rahim.
Summary:
Interim CBI director M Nageswara Rao on Friday cancelled all transfer decisions taken by Alok Verma during his two days in office after a 77-day forced leave.
Summary:
Wishing ex-India captain Rahul Dravid on his 46th birthday, former batsman Virender Sehwag tweeted, "Deewaron ke bhi kaan hote hain, is deewar ka bahut saaf Mann aur hriday bhi hai!
Summary:
The headmaster of a government school in Madhya Pradesh's Jabalpur was suspended on Thursday after a video showing him call CM Kamal Nath a "daku" (dacoit) went viral online.
Summary:
ISRO Chairman K Sivan has said the agency is aiming to launch India's first human space mission by December 2021, adding it wants to train both male and female astronauts.
Summary:
The British High Commission in India has got consular access to AgustaWestland scam accused middleman Christian Michel, who was brought to Delhi from the United Arab Emirates on December 4.
Summary:
Eleven other envelopes addressed to universities across Greece, with some having a printed note of "Islamist content" inside, were also found.
Summary:
A Myanmar court has rejected the appeal of two Reuters reporters sentenced to seven years in jail on charges of breaking the Official Secrets Act. The court said the defence had not provided sufficient evidence to show they were innocent.
Summary:
Talking to the brother of Indian-origin police officer Corporal Ronil Singh who was allegedly killed by an illegal immigrant last month, US President Donald Trump said, "We're with you." "He was so beloved by the people of the department and beyond", Trump added.
Summary:
A Mumbai court recently dismissed Gautam's plea for an injunction against his father's autobiography, 'The Incomplete Man'.
Summary:
Sonam Kapoor's sister Rhea Kapoor will get married to her rumoured boyfriend Karan Boolani by the end of this year, as per reports.
"Anil [Kapoor] has already accepted Karan as part of his family.
Summary:
Sushant Singh Rajput will be starring in Madhur Bhandarkar's next film based on sand mafias titled 'Inspector Ghalib', as per reports.
Summary:
"From the acting community, Deepika emerged as a unanimous choice," the book's co-author Lakshmi Nambiar said.
Summary:
Ranveer Singh has said that he wants to be the best entertainer, adding, "It's a single point agenda for me and personal ambition." "It is not about the numbers for me, it is basically to entertain people, to entertain as many as I can and as much as possible.
Summary:
Kangana Ranaut has said words like "chest-thumping nationalism and jingoism" are used for shaming these days.
Summary:
BCCI on Thursday announced the schedule for the home series against Australia set to take place in February-March.
Summary:
BJP leader GVL Narasimha Rao on Friday said, âÂÂRahul Gandhi is crying more than Alok Verma in CBI matter." "The real investigation that is going on in the CBI is AgustaWestland and other defence deals," he added.
Summary:
After Alok Verma was removed from the post of CBI Director by a panel led by Prime Minister Narendra Modi, Congress leader Kapil Sibal tweeted, "The caged parrot will remain caged." He added that the panel feared "the parrot might spill the beans by parroting the goings on".
Summary:
Barcelona, playing without Lionel Messi, suffered a 1-2 loss against Levante in the first leg in the last-16 stage of the Copa Del Rey. Philippe Coutinho, making his first start in almost a month, converted an 85th-minute penalty to score Barcelona's only goal.
Summary:
Summary:
BJP General Secretary Kailash Vijayvargiya on Wednesday said that the Congress government in Madhya Pradesh "is being run because of our mercy".
Summary:
Senior Congress leader Kuldeep Singh Rathore was appointed as the president of the Himachal Pradesh Congress Committee on Thursday.
Summary:
Delhi police arrested a 57-year-old man after he duped over 2,000 people of over â¹3 crore on the pretext of providing cheap houses under the Pradhan Mantri Awas Yojana.
Summary:
The Karnataka government on Thursday approved the suburban rail project connecting Bengaluru and its suburbs.
Summary:
A French court jailed exiled Russian artist Pyotr Pavlensky for setting fire to the facade of a Bank of France building in 2017.
Summary:
Wanting to reach 500 off the last ball to give his captain the option to declare overnight, Hanif got run-out while attempting the second run.
Summary:
The couple got married in traditional South Indian style on the premises of the theatre.
Summary:
After he was removed from the post of CBI Director, Alok Verma said, "It is sad that I was transferred to another post...
Summary:
The BCCI's legal cell has said cricketers Hardik Pandya and KL Rahul's comments on women in Koffee with Karan don't fall under the 'Code of Conduct' ambit, but CoA can suspend them and conduct inquiry.
Summary:
Reacting to Hardik Pandya and KL Rahul's comments on women in 'Koffee with Karan', India captain Virat Kohli said the Indian cricket team "doesn't align with those views and those are purely individual views".
Summary:
Australia-born county cricketer Alex Hepburn, accused of raping a sleeping woman shortly after she had sex with his ex-teammate Joe Clarke over a WhatsApp 'sex conquest game', broke down while denying the allegations in court.
Summary:
Former world number one Andy Murray broke down during a press conference and said that the upcoming Australian Open could be his last tournament.
Summary:
Summary:
After Andhra Pradesh and West Bengal, Chhattisgarh has become the third state to withdraw the General Consent given to CBI to probe cases in the state.
Summary:
Policemen in Uttar Pradesh's Baghpat allegedly burnt an unclaimed body along with plastic waste and tyres using kerosene and kept â¹2,700 they got from the department to ensure the body gets a proper cremation.
Summary:
The Supreme Court on Friday asked the Centre and the Meghalaya government to take help of experts and continue efforts to rescue 15 miners trapped in an illegal coal mine in Meghalaya's East Jaintia Hills since December 13.
Summary:
A partially mutilated body of a 15-year-old girl was found hanging from a tree in Malda district, West Bengal on Thursday.
Summary:
Bijay was upset over his nephew Jai Prakash's friendship with his girlfriend.
Summary:
A video has gone viral where a pilot partially landed on a steep mountainside in the French Alps with the helicopter's nose and blades inches away from the snow during the rescue of a 19-year-old injured skier.
Summary:
However, some copper pennies were created by mistake.
Summary:
Raymond Chairman & MD Gautam Singhania has said he'll step down as Chairman from all group companies to ensure promoter family is away from day-to-day functioning.
Summary:
"The film is slickly made, and...keeps you watching despite some clunky passages," according to The Indian Express.
Summary:
Alia Bhatt and Ranbir Kapoor will get engaged this year after the release of their upcoming film 'Brahmastra', reports suggested.
Summary:
Anupam Kher's 'The Accidental Prime Minister', which released today, is "an entertaining affair...keeps you hooked throughout," wrote Times Now. According to NDTV, "The film...is neither hugely entertaining nor engagingly dramatic." The film "is an inelegant adaptation with blatant disregard for Manmohan Singh," wrote Firstpost.
Summary:
Former Australian team captain Steve Smith is heading home after picking up an elbow injury while playing in the Bangladesh Premier League Twenty20 tournament.
Summary:
Claiming he listens to his opponents without getting angry, Congress President Rahul Gandhi has said, "(Prime Minister) Narendra Modi has a lot of anger and a lot of what he says about me comes from that anger.
Summary:
Talking about PM Narendra Modi, Congress leader Sushil Kumar Shinde said, "What else is he if not Hitler?...He works like (Vladimir) Putin.
Summary:
The company operates a just-in-time production system, usually holding parts for no more than 24 hours.
Summary:
Scientists at the University of Arizona have discovered a protein named EOF-1, found exclusively in mosquitoes that could be used to make drugs to curb their reproduction.
Summary:
The Environment Ministry on Thursday launched National Clean Air Programme (NCAP) aimed at reducing toxic particulate matter in 102 Indian cities by 2024.
Summary:
The AIIMS at Gujarat will be set in Rajkot, nwhile those in Jammu and Kashmir will be set in Vijaynagar and Awantipora.
Summary:
The Central Industrial Security Force (CISF) on Wednesday seized foreign currency worth around â¹38.7 lakh at the Rajiv Gandhi International Airport, Hyderabad.
Summary:
Responding to the show cause notice, Pandya had said he is "sincerely regretful".
Summary:
Praising India batsman Cheteshwar Pujara's performance in the Australia-India Test series, Australia head coach Justin Langer said that Pujara watches the ball closely than even former India batsmen Rahul Dravid and Sachin Tendulkar.
Summary:
India batsman Cheteshwar Pujara took to Twitter to thank former Windies captain Viv Richards for the latter's congratulatory message following India's Test series win.
Praising Pujara for "excellent batsmanship", Richards had said, "Exceptional batting..in such difficult conditions, going on to make history."
Summary:
Australian cricket team members will don retro jerseys in the upcoming ODI series against India.
Summary:
âÂÂHe has finished so many games for us, that role he plays is very important in terms of his batting.
Summary:
Las Vegas police have issued a warrant to collect DNA from Juventus forward Cristiano Ronaldo in the wake of allegations that he raped a woman in the city in 2009.
Summary:
Ukraine's 22-year-old boxer Hanna Okhota is ranked second, with 1100 points.
Summary:
India are currently placed second in Group A with three points and a goal difference of one, while UAE are on top with four points.
Summary:
An organised crime group involved in manipulating professional tennis competitions was dismantled in Spain after 83 people, including 28 professional tennis players, were arrested in an operation led by Spanish Civil Guard and supported by Europol.
Summary:
A Robotics Innovation Award at CES 2019 was revoked after being offered to a "female-focused" sex toy developed by startup Lora DiCarlo, over claims that it was "immoral, obscene, indecent or profane".
Summary:
A male nurse allegedly decapitated a baby while helping a woman deliver at a Rajasthan health centre and sent her off to another hospital after hiding its torso.
Summary:
According to the airline, the pilot had let his wife into the cockpit on two flights last year.
Summary:
When asked by a reporter to comment on the divorce of world's richest person Jeff Bezos, twice-divorced US President Donald Trump said, "I wish him luck.
Trump has in the past criticised his administration's coverage by Bezos-owned Washington Post.
Summary:
Sunil Grover's 'Kanpur Waale Khuranas' will go off air soon, as the show was intended as a miniseries that would air for eight weeks.
Summary:
While speaking about replacing filmmaker Sajid Khan as director for the upcoming film 'Housefull 4', Farhad Samji said, "It wasn't difficult at all." "We had fun shooting it and we completed the film, laughing along the way," Farhad said.
Summary:
The Supreme Court has rejected an urgent hearing on a plea challenging the Delhi High Court's decision to dismiss a petition against the film 'The Accidental Prime Minister'.
Summary:
Lady Gaga announced she will be taking down the song 'Do What U Want (With My Body)', that she recorded with sexual abuse accused singer R Kelly, from various streaming services.
Summary:
After Alok Verma was removed from the post of CBI Director by a panel led by Prime Minister Narendra Modi, Congress President Rahul Gandhi tweeted, "Fear is now rampaging through Mr Modi's mind.
Summary:
The right lets European citizens request removal of links containing "irrelevant" information about them.
Summary:
Tata Motors-owned Jaguar Land Rover plans to slash 4,500 jobs worldwide amid sales slowdown caused by Brexit, falling demand for diesel-powered vehicles and downturn in China.
Summary:
MIT astronomers have studied a periodic pulse of X-rays through different observations of a black hole consuming a star which suggests it is spinning at half the speed of light.
Summary:
NASA's Hubble Space Telescope has observed early Universe's brightest-ever known object, a star-producing quasar as bright as 600 trillion Suns.
Summary:
Posts on participants' timelines were then checked against a list of domains which historically shared fake news.
Summary:
The CBSE has issued a circular announcing 2 levels of Mathematics for class 10 students for CBSE Board Examinations 2020.
Summary:
Nicolás Maduro was sworn in for a second term as Venezuela's President on Thursday amid the economic and humanitarian crisis faced by the Latin American country.
Summary:
Iran would not comply with the "fully illegal" US sanctions and would not discuss the volume or destination of its oil exports amidst the sanctions, Iranian Oil Minister Bijan Zanganeh said on Thursday.
Summary:
The Taliban militant group killed 32 members of the Afghan security forces and pro-government militias in a series of attacks on Thursday, provincial officials said.
Summary:
The title of Emraan Hashmi's 'Cheat India' has been changed to 'Why Cheat India' a week before its release, after the Censor Board raised objection to the previous title.
Summary:
India all-rounder Ravindra Jadeja trolled a fan who criticised his batting on Instagram after the cricketer shared a picture of himself, asking suggestions for hairstyle.
Jadeja responded, saying, "Tere ghar pe TV nai hai kya.
Summary:
Ex-India captain Mohammed Azharuddin, while talking about his ex-wife and former Bollywood actress Sangeeta Bijlani during an event, said, "I met Sangeeta during an ad shoot in 1985.
Summary:
India captain Virat Kohli has been named as India's most valuable celebrity brand for the second year in a row in Duff & Phelps' latest celebrity brand valuation report.
Summary:
Cutting fell down and managed to catch but threw the ball immediately.
Summary:
NASA's OSIRIS-REx has captured asteroid Bennu, Earth, and the Moon in a single frame.
Summary:
Babu got into an argument with Narayana and beat him until he lost consciousness and fell down.
Summary:
After removal of Alok Verma as CBI chief, senior Supreme Court lawyer Prashant Bhushan tweeted, "The Committee headed by (PM Narendra) Modi again transfers out Alok Verma...fearing the prospect of his registering an FIR against Modi in the Rafale scam!
Summary:
The man reportedly passed lewd comments at the woman daily, however, the women took the step after he threatened to harm her son.
Summary:
They haven't commented on the likely division of their assets, including a 16% stake in Amazon worth $130 billion.
Summary:
Actress Ashley Judd's sexual harassment claim against rape-accused Hollywood producer Harvey Weinstein was dismissed by a district judge in Los Angeles, US.
Summary:
Actor Salman Khan will start filming for the third instalment of the action film series 'Dabangg', producer Arbaaz Khan revealed.
Actress Sonakshi Sinha earlier confirmed she will be starring in the film opposite Salman.
Summary:
Sharing a picture from PM Narendra Modi's meeting with Bollywood actors and filmmakers, Karan Johar wrote, "Powerful and timely conversations can bring about change".
Summary:
The app provides voice-assisted directions to a chosen destination for different modes of transportation including walking or driving and lets users find available Ola and Uber cabs from within it.
Summary:
Photographer Paul Macro has shared an image of a bloodied female seal with a plastic net strangling its neck, spotted at Norfolk's coast in England.
Summary:
The BJP has appointed former Chief Ministers Shivraj Singh Chouhan, Vasundhara Raje and Raman Singh as national Vice Presidents of the party on Thursday.
Summary:
Former Maharashtra CM Sushil Kumar Shinde has said Congress chief Rahul Gandhi has always "respected women" and has always spoken highly about them in his rallies.
Summary:
Tesla CEO Elon Musk responded to a tweet of a GIF showing a car hovering above the ground saying, "[N]ew Roadster will actually do something like this." Musk explained the Roadster will use "SpaceX cold gas thruster system with ultra high-pressure air in a composite over-wrapped pressure vessel" to float.
Summary:
Tesla CEO Elon Musk was offered a 'Chinese green card' by Chinese Premier Li Keqiang after he said, "I really love China, I am willing to visit here more".
Summary:
The sensor wraps around the healing vessel, where blood pulsing past pushes on its inner surface.
Summary:
Warwick University astronomers have observed the first-ever evidence of white dwarf stars solidifying to crystals.
Summary:
NASA has said that its Hubble Space Telescope's premier camera stopped working after a hardware problem on Tuesday.
Summary:
A cyberstalker in Pakistan has been jailed for 24 years for blackmailing and harassing nearly 200 lady doctors and nurses.
Summary:
At least 250 drug tunnels have been built connecting Mexico's Sonora state with the US state of Arizona since 1990, according to the US Drug Enforcement Administration.
Summary:
A hunter shot dead his 18-year-old son after mistaking him for a moose in Russia, the authorities said.
Summary:
Union Minister Suresh Prabhu on Thursday said India will not violate any international law in trade with Iran.
Bilateral trade between India and Iran increased to $13.8 billion in 2017-18 from $12.9 billion in the previous fiscal.
Summary:
The revenue of India's largest IT services company increased by 20.8% to â¹37,338 crore during the quarter.
Summary:
The committee included Supreme Court judge AK Sikri and Congress leader Mallikarjun Kharge.
Summary:
Neha Dhupia has said her husband, actor Angad Bedi revealed everything meant to be hidden when he came on her podcast.
Summary:
Five people were injured in Tamil Nadu's Viluppuram district after a cut-out of actor Ajith collapsed during 'paal abhishekam' (milk pouring ceremony).
Summary:
Adding that Hardik's comments should not be viewed very seriously, his father said, "It was an entertainment show and his comments were made in a light-hearted manner.
Summary:
Former Pakistan cricketer Ramiz Raja has revealed that 1992 World Cup-winning captain Imran Khan compared Virat Kohli to Sachin Tendulkar when he met Imran at his oath-taking ceremony as Prime Minister of Pakistan.
Summary:
After J&K's first IAS topper Shah Faesal announced his resignation from civil services over "killings in Kashmir", Congress MP P Chidambaram tweeted, "The world will take note of his cry of anguish and defiance." "Though sad, I salute Mr @shahfaesal IAS (now resigned).
Summary:
A day after being installed in Noida, tyre killers were removed on Tuesday after heavy vehicular movement damaged them at several places, officials said.
Summary:
The cartridges were found during the baggage-screening process, after which he was questioned by the airline staff and handed over to CISF personnel.
Summary:
Over 500 villagers attended the last rites of a crocodile named 'Gangaram' who died aged around 130 years in Chhattisgarh's Bemetara district.
If he saw anyone swimming near him, he used to go to the other side of the pond," a villager said.
Summary:
After Rajya Sabha Deputy Chairman Harivansh Narayan Singh asked DMK MP Kanimozhi to conclude her speech in Hindi, she retorted, "Sir, can you speak in a language that I can understand." Singh then repeated himself in English.
Summary:
Mumbai's 35-year-old Rehana Shaikh, who was cheated of â¹10,000 by 36-year-old Bhupendra Mishra who met her at a Bandra ATM on December 18, caught him after visiting the same ATM for 17 days.
Summary:
While speaking about the importance of hard work to achieve success, actress Madhuri Dixit said, "There is no substitute [for] hard work." "I have tried to give my best in every role in my life...from being an actor, dancer, mother, wife," the actress added.
Summary:
Amitabh Bachchan and Aishwarya Rai Bachchan have been approached for a historical drama film directed by filmmaker Mani Ratnam, as per reports.
Summary:
Actress Sara Ali Khan will star opposite Varun Dhawan in the upcoming remake of the 1995 film 'Coolie No. 1', as per reports.
Summary:
The platform currently lets users post the content to different social media platform accounts such as Facebook, Twitter and Tumblr.
Summary:
Apple has reportedly hired former Facebook employee Sandy Parakilas who had claimed the social media platform had known about the security and privacy-related concerns which were exposed during the Cambridge Analytica data scandal.
Summary:
Billions of Xiaomi shares have been unlocked for sale after the six-month lockup period that followed the company's IPO expired.
Summary:
Actor Prakash Raj on Thursday said Congress chief Rahul Gandhi is "not against women" as "he has appointed a transgender in an important position".
Summary:
"I am open for an alliance with like-minded parties to keep the communal BJP at bay", he said.
Summary:
West Bengal CM Mamata Banerjee has withdrawn from the Centre's flagship 'Ayushman Bharat' scheme saying the state will not contribute 40% of the funds for the scheme.
Summary:
Ousted Nissan Chairman Carlos Ghosn, who has been in detention for nearly two months, has developed a fever, prompting Japanese authorities to stop his interrogation.
Summary:
Similar rooms will also be visible in Nizamuddin and Old Delhi railway stations soon, he said.
Summary:
Sri Lanka's Prime Minister Ranil Wickremesinghe said that his government is struggling to pay the record foreign debt of $5.9 billion this year.
Summary:
US President Donald Trump misspelt the word 'forest' as "forrest" in a tweet as he cut funds to tackle the wildfires in California.
Summary:
The US Coast Guard has suggested its employees to consider babysitting and dog-walking, among other things, to survive the partial government shutdown.
Summary:
Finance Minister Arun Jaitley on Thursday said the GST Council has raised the scope of composition scheme from â¹1 crore to â¹1.5 crore.
Summary:
Reserve Bank of India's (RBI) reserves panel Chairman Bimal Jalan has said the central bank is accountable to the government.
have to be resolved internally in the country's interest," the former RBI Governor further said.
Summary:
Senior Congress leader Sheila Dikshit has taken over as the chief of Delhi Congress, days after party leader Ajay Maken resigned from the post citing health reasons.
Summary:
Actor Sushant Singh Rajput, who was accused of inappropriate behaviour with a female co-star in the light of the #MeToo movement, said, "Many paid campaigners were used to give it a burst." "It was paradoxical because it [the #MeToo movement] was something that I stand for.
Summary:
CBI DIG MK Sinha, who was supervising a probe against CBI Special Director Rakesh Asthana, has requested to recuse himself from the investigation amid the ongoing feud between Asthana and Director Alok Verma, according to a PTI report.
Summary:
In the video, Kher can be seen giggling, gesturing to someone and talking to other members of the Parliament.
Summary:
After IAS officer Shah Faesal resigned in protest against "unabated killings in Kashmir" and "absence of any credible political initiative", Minister of State in PMO Jitendra Singh said the officer failed to condemn terror.
Summary:
People in Bihar's Gaya took to streets after a 16-year-old girl was found beheaded on Sunday.
Summary:
On complaint by the girl's parents, police registered a case against the man under POCSO Act and the recently amended section of 376(AB) of IPC.
Summary:
The police have arrested over 35 people in the case so far.
Summary:
The girl and her brother were playing in a field when the incident took place.
Summary:
A woman in Gonda district in Uttar Pradesh had to deliver her baby on the floor at a Community Health Centre (CHC) due to non-availability of doctors.
Summary:
Mexican authorities on Wednesday discovered the bodies of 20 people, 17 of them burned, in the state of Tamaulipas, close to the US border, an official said.
Summary:
Speaking about his upcoming film 'Gully Boy', actor Ranveer Singh said, "I was born to do âÂÂGully Boyâ and I knew only I can pull off this character." "If any other actor would've been part of this film instead of me then I would've...burnt with jealousy," Ranveer added.
Summary:
Google on Wednesday launched a new 'activity cards' feature for Search that lets users view threads of their past searches.
Summary:
David Carroll had requested copies of information including predictions on his political opinions and the basis for making the predictions from SCL.
Summary:
Rahul further asked why PM isn't allowing Verma to present his case in front of the selection committee.
Summary:
During an interaction with booth workers in Tamil Nadu, Prime Minister Narendra Modi on Thursday said, "Not many know how much damage Congress culture did to our defence sector." He added, "Many people think that the Congress' biggest failure was in their mismanagement of the economy and their corruption.
Summary:
After Congress President Rahul Gandhi asked PM Narendra Modi to "be a man", former J&K CM Mehbooba Mufti tweeted, "As a woman, feel deeply disappointed when misogynistic comments are normalised in our political discourse." She added, "Be a man/ man up...such phrases reek of blatant sexism.
Summary:
Summary:
A day after it was passed in the Rajya Sabha, the 10% quota bill for poorer sections in the general category has been challenged in the Supreme Court.
Summary:
A man who photoshopped and shared images of former Indian PM Manmohan Singh and Bangladesh PM Sheikh Hasina, among others, has been sentenced to seven years in prison in Bangladesh.
Summary:
Some passengers were also thrashed for resisting the robbers.
Summary:
The Jharkhand High Court on Thursday rejected a bail plea filed by RJD chief Lalu Prasad Yadav in three cases of the multi-crore fodder scam.
Summary:
He further said that the Army is using "quadcopters" for surveillance of areas for information and then cautiously approaching that area for action.
Summary:
Local BJP leader Baiju Prasad Gupta was shot dead in Muzaffarpur district, Bihar on Wednesday.
Summary:
The airline had defaulted on a debt payment due on December 31.
Summary:
The minimum balance for semi-urban branches will be increased from â¹500 to â¹1,000 while there is no change for such accounts in rural branches.
Summary:
Huawei launches the Huawei Y9 2019 in India today with free Boat ROCKERZ 255 SPORTS earphones worth â¹2,990.
Summary:
Mumbai Police has tweeted a meme which uses a scene from Ranveer Singh and Alia Bhatt starrer 'Gully Boy'.
Summary:
P Manju, a 36-year-old woman Dalit activist has claimed that she entered Sabarimala shrine by dyeing her hair grey and pretending to be an old woman who was over 50.
Summary:
The 2019 Academy Awards, also known as the Oscars, will be held without a host for the first time in 30 years, as per reports.
Summary:
In a five-over Adarsh Cricket Club match between Desai and Juni Dombivli, Desai required six runs to win off the last ball after scoring 70/4 in 4.5 overs while chasing a 76-run target.
Summary:
CoA chief Vinod Rai has recommended a two-match ban for all-rounder Hardik Pandya and batsman KL Rahul over offensive comments on women during their appearance in 'Koffee with Karan'.
Summary:
Summary:
A 48-year-old Australian man has been arrested for allegedly sending suspicious packages to embassies and consulates in Canberra, Melbourne and Sydney.
Summary:
Human Resource Development Minister Prakash Javadekar has denied reports that a draft of the New Education Policy seeks to make Hindi compulsory till Class 8.
Summary:
A 30-year-old man, identified as Dharmendra Kumar, died after he fell from ninth floor of a building in Ghaziabad while trying to flee with jewellery from a flat.
Summary:
The GST Council on Thursday raised the exemption threshold to â¹40 lakh with effect from April 1.
Summary:
Punjab minister Navjot Singh Sidhu's security cover has been upgraded to Z plus and a bullet-proof Land Cruiser from CM Captain Amarinder Singh's fleet has been given to him.
Summary:
Summary:
A 45-year-old woman was arrested this week for allegedly sexually abusing her friend's 11-year old son.
Summary:
A man from Tamil Nadu has alleged he was denied immigration clearance and humiliated at an immigration counter of Mumbai's international airport "for knowing only Tamil and English and NOT Hindi".
Summary:
US President's son Donald Trump Jr posted a story on Instagram in apparent support of the Mexico border wall saying, "You know why you can enjoy a day at the zoo?
Summary:
A 35-year-old Nepalese woman and her two sons died of suffocation in a windowless hut, where she was forced to stay during her period over a centuries-old tradition.
Summary:
Technology giant Google on Tuesday said it has added a new 'Interpreter Mode' on its AI-based Assistant which offers real-time translations to conversations in different languages.
Summary:
Users can also play music and activate the e-bike's lights using Alexa.
Summary:
Discussing the proposed 10% reservation for economically backward people in general category, Nobel laureate Amartya Sen on Wednesday said, "If the whole of the population is covered by reservation then that would be removal of reservation." He added, "Ultimately this is a muddled thinking.
Summary:
After Army Chief General Bipin Rawat suggested dialogue with Taliban for peace in Afghanistan, former J&K CM Mehbooba Mufti tweeted, "Why different standards when it comes to our own people?
Summary:
Summary:
Three Asom Gana Parishad (AGP) ministers on Wednesday resigned from the Assam Cabinet, days after their party exited the government over the Citizenship (Amendment) Bill, 2016.
Summary:
External Affairs Minister Sushma Swaraj has criticised Congress chief Rahul Gandhi for his remarks on her colleague Defence Minister Nirmala Sitharaman, tweeting that it was "a new low in the history of Indian politics".
Summary:
After the Parliament cleared 10% reservation for economically weaker sections in general category, the Shiv Sena asked, "What about employment?
Summary:
Earlier, reports had claimed that Ola may raise $100 million funding at $5.5-billion valuation from Steadview Capital.
Summary:
The Indian Army rescued 150 stranded tourists in Sikkim on Wednesday night after routes of all places in Lachung Valley were blocked due to heavy snowfall.
Summary:
Rated 4.4 stars by 500+ learners, the program helps learners to improve skills with 12+ hands-on projects to build their Github repository and e-portfolio.
Summary:
Justice UU Lalit, one of the five judges of the Supreme Court that was to hear the Ayodhya case, opted out of the Constitution bench on Thursday.
Summary:
Bihar captain Ashutosh Aman has set the record for taking most wickets in a Ranji Trophy season.
Summary:
The car was moving at 186 kmph before it crashed into a wall, allegedly setting its battery on fire.
Summary:
Canada-based CHIME telescope recorded 13 FRBs, including the repeating signal last summer.
Summary:
CBI Director Alok Verma, who resumed office after 77 days following a Supreme Court order, has revoked most of the transfer orders issued by interim chief M Nageswara Rao, as per reports.
Summary:
Prosecutors in the US trial of Mexican drug lord Joaquin 'El Chapo' Guzmán have shown jurors text messages they said he sent to his wife and his lover.
Summary:
The owners of New York's iconic Chrysler Building have hired CBRE Group to sell the 77-story skyscraper.
Summary:
The banks will also handle transactions relating to operation at Iran's Chabahar Port which India is developing.
Summary:
Air India has started carrying food from India on some of its international flights for the return routes as well in a bid to cut costs.
Summary:
The wife of Norwegian real estate investor Tom Hagen, who's reported to be worth $200 million, has gone missing in a suspected kidnapping, police said.
Summary:
Brazil-based startup HOOBOX Robotics, in partnership with Intel, demonstrated an AI-powered adapter kit, Wheelie 7, to move a wheelchair with facial expressions and gestures at the Consumer Electronics Show (CES) 2019 in Las Vegas.
Summary:
The Kaithal MLA earlier served as a minister in the Congress government led by ex-CM Bhupinder Singh Hooda.
Summary:
Shiv Sena chief Uddhav Thackeray took a dig at the BJP government saying it should solve the issues of farmers first and then talk of a coalition.
Summary:
The TMC on Wednesday said it expelled Lok Sabha MP Anupam Hazra, who is from Bolpur in West Bengal, for "anti-party activities".
Summary:
IIT-Madras scientists have created a 'space fuel' which they claim could help curb greenhouse gases and provide a new, sustainable source of energy.
Summary:
The President of Akhil Bharatiya Marathi Sahitya Mahamandal, Shripad Joshi, on Wednesday resigned amidst criticism after an invite for a literary meet extended to writer Nayantara Sahgal was withdrawn.
I plan to meet Nayantara Sahgal...explain my situation," he said.
Summary:
A man named Fareed was allegedly stabbed on a street in Hyderabad for not returning a sum of â¹5,000 borrowed from the attacker one year ago.
Summary:
The Delhi Police has claimed that there has been an 11.72% decline in heinous crimes in the national capital.
Summary:
A man was tied to an electricity pole and thrashed by several people in the Baripada town of Odisha on Wednesday after they suspected him of committing theft.
Summary:
Police in the US have sought the DNA of all male workers at a care centre where a woman gave birth on 29 December, 2018 despite being in a coma for 14 years.
Summary:
Afghan Chief Executive Abdullah Abdullah has said that ending the war in Afghanistan amid the Taliban's refusal to include the Afghan government in peace talks can only remain a "dream".
Summary:
Pakistan's Civil Aviation Authority (CAA) has suspended the licences of 16 pilots and 65 cabin crew members of various airlines for holding fake educational degrees.
Summary:
Mexican President Andrés Manuel López Obrador has said that the debate over US President Donald Trump's proposed wall along the US-Mexico border to stop illegal migration, is an internal US matter.
Summary:
The Philippine President had earlier said that a state auditor "should be pushed down the stairs".
Summary:
US drugmaker Pfizer on Wednesday said it will be shutting down two of its manufacturing facilities in Tamil Nadu's Chennai and Maharashtra's Aurangabad due to non-viability of operations.
Summary:
Finance Minister Arun Jaitley on Wednesday said the trade unions taking part in the Bharat Bandh were protesting over "non-existent" issues.
Summary:
The bill was supported by 165 members while seven members voted against it.
Summary:
Aishwarya Rai Bachchan, while speaking about carrying her pregnancy "gracefully", said, "I've been in the front line of the army to take all the bullets...then it was a cakewalk for everybody else." "I've done that in so many things.
Summary:
Replying to India wicketkeeper Rishabh Pant's 'Good Morning' Twitter post, batsman Rohit Sharma, who recently became a father, tweeted, "Morning buddy.
Summary:
Madhya Pradesh lost six wickets without adding a run during their second innings in their Ranji Trophy match against Andhra, getting reduced to 35 all out from 35/3 at one stage.
Summary:
South Korea's double Olympic short track gold medallist Shim Suk-hee has accused her former coach, who has already been convicted and jailed for 10 months for repeatedly beating her, of sexual assault.
Summary:
An island in San Francisco Bay of the United States is offering â¹91.6 lakh salary, split between two people, to look after a historic lighthouse, which also serves as an inn.
Summary:
After IAS topper Shah Faesal announced his resignation from civil services, former J&K CM Omar Abdullah tweeted, "The bureaucracy's loss is politics' gain.
Abdullah later clarified he was welcoming Faesal to politics and his future plans are his to announce.
Summary:
After PM Narendra Modi criticised him for his 'PM with 56-inch chest hid behind woman Defence Minister' remark, Congress President Rahul Gandhi tweeted, "With all due respect Modi Ji, in our culture respect for women begins at home." Rahul added, "Stop shaking.
Summary:
Amazon has stopped the sale of a series of items including toilet covers, doormats and bathmats bearing verses from the Quran after it faced a backlash from the Islamic community.
Summary:
Delhi High Court has observed that a woman slapping her husband in front of others doesn't amount to instigating the husband to commit suicide.
Summary:
The Reserve Bank of India (RBI) has agreed to provide $400 million to the Central Bank of Sri Lanka (CBSL) under the SAARC swap facility.
Summary:
Addressing the controversy surrounding the release date of 'Thackeray' clashing with her film 'Manikarnika: The Queen of Jhansi', Kangana Ranaut said there was no pressure to shift her release date.
Summary:
Speaking about being criticised for making films that are centred around the 'elite class', filmmaker Zoya Akhtar said, "I'm always pleasantly surprised by the criticism." "I feel human beings are same everywhere, they work from a gamut of emotions.
Summary:
While speaking about her 'Gully Boy' co-star Ranveer Singh and her boyfriend Ranbir Kapoor, Alia Bhatt said, "Both are superb human beings and outstanding actors." "Both of them are really special to me," the actress added.
Summary:
Speaking about the FIR ordered by a Bihar court against Anupam Kher and several others associated with the film 'The Accidental Prime Minister', filmmaker Mahesh Bhatt said he "condemns" the act.
Summary:
In 2018 Pakistan's Supreme Court had imposed a complete ban on the transmission of Indian content on local television channels.
Summary:
Researchers at Princeton Plasma Physics Laboratory have discovered a process that can help control plasma disruptions in fusion devices, which are being developed to generate electricity.
Summary:
Twitter already has 'Experiments Program' that lets users test and give feedback on features secretly.
Summary:
A senior TMC leader said Khan was not working in his area properly and was not in touch with the party for a long time.
Summary:
"Sellers are prohibited from selling any Schedule H drugs on Snapdeal," the company said.
Summary:
The round is being led by new investor Corisol Holding AG, a Switzerland-based family office.
Summary:
They re-analysed Kepler's data and found evidence of the planet that its software had overlooked.
Summary:
Prime Minister Narendra Modi on Wednesday launched civic projects worth â¹3,500 crore during his visit to Agra.
Summary:
He added that the entire process will be carried out online, due to reports of irregularities in the admission process last year.
Summary:
US-based Boeing has retained its position as the world's largest planemaker for the seventh year in a row, delivering a record 806 aircraft in 2018.
Summary:
With this transaction, Shell now has a 100% equity interest in the Gujarat-based terminal.
Summary:
The firm invests in projects in wealthy and developing countries.
Summary:
World's richest person and Amazon Founder with $136.6 billion wealth, 54-year-old Jeff Bezos and his 48-year-old wife MacKenzie on Wednesday announced they're getting divorced after 25 years of marriage.
Summary:
Speaking about the court case filed against Sara Ali Khan and the makers of 'Simmba', 'Kedarnath' director Abhishek Kapoor said, "Sara has no clue what IâÂÂve been through." Sara had reportedly joined the cast of 'Simmba' soon after 'Kedarnath' was stalled due to a rift between its makers.
Summary:
Summary:
Michael Carson, aged 75, was accused of sexual abuse of boys aged under 16, from 1978 to 2009.
Summary:
Twenty-time Grand Slam champion Roger Federer broke down in tears while talking about his late Australian coach Peter Carter.
Peter Carter died aged 37 in a road accident while on honeymoon in South Africa in 2002.
Summary:
Japan has retained its top spot as the world's most powerful passport this year, with its citizens able to enter 190 countries without requiring a visa, according to the Henley Passport Index.
Summary:
Speaking about PM Narendra Modi's absence during the debate on Rafale deal in the Parliament, Congress President Rahul Gandhi said, "PM with a 56-inch chest asked a female minister to protect him." "PM didn't come to the Parliament even once," he added.
Summary:
Prime Minister Narendra Modi on Wednesday attacked the Congress party and alleged AgustaWestland middleman Christian Michel was also lobbying for French manufacturer Dassault Aviation's rivals in the Rafale fighter jet deal.
Summary:
Addressing a farmers' rally in Rajasthan, Congress President Rahul Gandhi said, "The PM always plays on the backfoot, I want the youth of the country to play on frontfoot and hit a sixer." "With demonetisation, he wrecked small businesses.
Summary:
During a raid at RSS' district office in Kerala's Nedumangad on Wednesday, police seized daggers, scythes and hydrogen peroxide, a chemical substance used to make crude bombs, from the premises.
Summary:
After Congress chief Rahul Gandhi's 'PM with 56-inch chest hid behind a woman' remark, PM Narendra Modi said, "[Congress] didn't insult just a woman defence minister, but all women of the country.
Summary:
Car sales in China fell 6% to 22.7 million units last year, the first annual decline in at least 20 years, the China Passenger Car Association said.
Summary:
Finance Minister Arun Jaitley will present the interim budget for 2019-20 fiscal on February 1, as decided in the meeting by the Cabinet Committee on Parliamentary Affairs.
Summary:
China is developing an advanced compact size radar for the Navy which can maintain constant surveillance over an area of the size of India, according to a media report.
Summary:
Speaking about his upcoming film 'Uri: The Surgical Strike', actor Vicky Kaushal revealed it was "the most physically challenging" project of his career.
Summary:
Speaking about filmmaker Rakesh Roshan, who has been diagnosed with throat cancer, actress Manisha Koirala said, "I am sure he will come out of it as a winner." "One should not give up because there is treatment available to this disease," the actress added.
Summary:
US-based chipmaker Qualcomm has said Apple CEO Tim Cook's comments that there were no recent settlement discussions between the two firms were "misleading".
Summary:
The patents were granted to over 8,500 IBM inventors in around 48 countries.
Summary:
Google on Tuesday announced it has added a feature on its AI-based Assistant that enables users to check-in to flights via voice commands.
Summary:
Facebook CEO Mark Zuckerberg in a Facebook post revealed his plans to host public discussions about the future of technology in society as his personal challenge for 2019.
Summary:
YouTube confirmed that the website "wasn't loading" or was showing "error messages" to certain users.
The issue has been fixed, the company tweeted, saying, "YouTube is back!
Summary:
A Facebook spokesperson said the disabled app doesn't collect and send data to Facebook, the report added.
Summary:
Prime Minister Narendra Modi on Wednesday said the passage of the bill in Lok Sabha to grant a 10% reservation for the economically backward in the general category is a strong answer to those "spreading lies" about the BJP.
Summary:
The experiment's results revealed oysters were most open in lowered levels of moonlight.
Summary:
The World Bank has said that India's economy will accelerate to 7.5% in 2019-20 as consumption remains robust and investment growth continues in the country.
Summary:
Budget carriers IndiGo and GoAir grounded A320neo aircraft on several occasions due to engine issues.
Summary:
The central bank has asked Rana Kapoor to step down by January 31.
Summary:
Civil services topper and IAS officer Shah Faesal on Wednesday announced his resignation from civil services.
"To protest the unabated killings in Kashmir and absence of any credible political initiative from Union Government, I have decided to resign from IAS.
Summary:
Cook also received perks worth $6,82,000 which include private air travel and security expenses.
Summary:
Sarfaraz criticised Govinda after he called Kader his 'father figure' on Instagram while condoling his demise.
Summary:
The wheel-shaped device uses LED lights, which move along the centre of the ring, encouraging cats to follow it.
Summary:
Speaking about the eligibility criteria of income below â¹8 lakh/annum for reservation in the new bill, TMC MP Derek O'Brien said, "It redefines India's poverty line of â¹32 a day.
Summary:
Samajwadi Party MP Ram Gopal Yadav has said that OBCs must be given 54% reservation in proportion to their population, adding the government has broken the 50% reservation ceiling.
Summary:
The body of a 25-year-old woman was found on Tuesday inside an abandoned suitcase near New Ashok Nagar in Delhi.
Summary:
An NGO in Rajasthan has filed a complaint against police in Ajmer for erroneous investigation after they concluded that a minor girl who was allegedly raped and impregnated by a religious leader was 'possessed by evil spirits'.
Summary:
The Noida Authority on Monday installed 'tyre killers' at the intersection of sectors 76 and 77 to stop vehicles from being driven on the wrong side.
Summary:
A Kerala nun, who published poems, bought a car and took part in a protest against rape-accused former bishop of Jalandhar, has been issued a notice by her congregation for leading a life "against principles of religious life".
Summary:
Turkish journalist Pelin ÃÂnker has been jailed over the Paradise Papers investigation which revealed offshore companies owned in Malta by former Turkish PM Binali Yildirim and his sons.
Summary:
A spokesman for Morrison said that the photo was edited by Prime Minister's staff without his authorisation.
Summary:
To make card transactions more secure, the RBI has permitted card networks to offer tokenisation services to any token requestor (a third-party app provider).
Summary:
Bhumi Pednekar and Vicky Kaushal will star together in a horror comedy film, as per reports.
Summary:
Earlier, reports suggested Boney had registered three titles for a documentary on Sridevi's life.
Summary:
Actor Kartik Aaryan took to social media to share an old picture of himself and revealed that the photo enabled him to get an audition for his debut film 'Pyaar Ka Punchnama'.
The photo that got me my debut film's audition," he wrote.
Summary:
The smart pet features a camera in its nose and can track a person by moving its head.
Summary:
In-car sensor technology is deemed critical to the full deployment of self-driving cars, reports said.
Summary:
Summary:
Senior Congress leader Salman Khurshid on Tuesday criticised the central government over the Citizenship (Amendment) Bill, saying, "When you have a brute majority, you can pass anything." He added that there should be a uniform law for people seeking citizenship of India.
Summary:
The six-year-old startup posted a nearly 50% fall in revenue at â¹3.61 crore this fiscal as compared to â¹7.21 crore in the last.
Summary:
PM also laid the foundation stone for a â¹1,811 crore housing project of 30,000 units under the Pradhan Mantri Awas Yojana.
Summary:
A major fire broke out at an under-construction hospital on Kingsway Road in Maharashtra's Nagpur on Wednesday.
The fire broke out due to a short circuit in the building, according to the reports.
Summary:
Iran's Supreme Leader Ayatollah Ali Khamenei on Wednesday called some US officials "first-class idiots".
He added, "A US official recently said Iran should learn human rights observation from Saudi Arabia!
Summary:
The Taliban refused to allow Afghan officials to join the talks which is aimed at ending the war in Afghanistan.
Summary:
Brown became the oldest person in the US following the death of 114-year-old Delphine Gibson on May 9, 2018.
Summary:
Jet Airways' lenders, led by State Bank of India, have reportedly proposed a $900-million turnaround plan for the cash-strapped airline.
Summary:
The Committee of Administrators that runs the BCCI on Wednesday issued a show cause notice to cricketers Hardik Pandya and KL Rahul, seeking an explanation within 24 hours for their remarks on women on 'Koffee With Karan'.
Summary:
Hrithik Roshan's father Rakesh Roshan, who underwent surgery for early-stage throat cancer on Tuesday, said after his surgery, "I am feeling all right, thank you.
On Tuesday, Hrithik had revealed about the diagnosis on Instagram.
Summary:
CBI chief Alok Verma on Wednesday resumed work, 77 days after he was sent on a leave by the Centre through a late-night order.
Summary:
Bharat Army, the official Indian cricket supporters' group, shared a video on Twitter of India wicketkeeper-batsman Rishabh Pant dancing to a song dedicated to him.
Summary:
As many as six Indians have been penalised for illegal betting through their mobile phones at Dhaka's Sher-e-Bangla National Stadium in the Bangladesh Premier League 2019.
Summary:
Amazon's virtual assistant Alexa interrupted Qualcomm executive Nakul Duggal's presentation at the ongoing technology event CES 2019 in Las Vegas by saying, "No, that's not true." The Qualcomm executive was giving a live demo on how Alexa works with automobiles and suggests local restaurants while driving.
Summary:
Summary:
The Income Tax Department has reportedly slapped a tax notice of â¹100 crore on Congress leaders Sonia Gandhi and Rahul Gandhi over undeclared incomes relating to the National Herald case.
Summary:
A coal-laden truck in Rajasthan's Bali caught fire, following which the truck driver drove the vehicle to an isolated location to avoid danger to others and jumped out of the truck.
Summary:
The deceased, identified as Shantavva, had vomited when a memorandum was being submitted to the tehsildar, police said.
Summary:
Similar packages were also delivered at consulates of at least 10 countries, including that of the US, UK and Pakistan, in Australia.
Summary:
A fitness trainer in Jammu and Kashmir has been hospitalised over his addiction to PlayerUnknown's Battlegrounds (PUBG), an online multiplayer battle royale game.
Summary:
Passengers on an Air New Zealand Hong Kong-Auckland flight were left grounded with a dead body for two hours after a man died mid flight.
Summary:
Saudi Arabia's 18-year-old Rahaf Mohammed al-Qunun who pleaded for asylum has been found to be a legitimate refugee by the United Nations (UN), the Australian government said.
Summary:
He added that the companies will be making deposits into the accounts of nine Iranian banks held with UCO.
Summary:
If WhatsApp is unable to detect the fingerprint, then the phone's credentials can be used, reports said.
Summary:
US-based telco AT&T received criticism from its rivals for misleading users after it labelled a faster 4G network logo as '5G E'.
Summary:
Former Chhattisgarh Chief Minister Raman Singh on Tuesday took a dig at the Congress party saying the party has made fake promises during elections, only to win votes.
Summary:
He said Congress should explain why the deal was dropped when it was in power, adding, "Before they seek answers, they must first give answers to the nation." He added, "They are not seeking the truth.
Summary:
Bengaluru-based ride-hailing major Ola is reportedly in talks to invest in or even acquire Bengaluru-based e-pharmacy startup Myra Medicines.
Summary:
Lucknow Mayor Sanyukta Bhatia has said that places addressed as 'Andhe Ki Chowki' and 'Langda Phatak' will be renamed after martyrs.
Summary:
Notably, as many as 22 political parties were registered by the Election Commission in November 2018.
Summary:
Summary:
Thane Crime Branch Unit arrested two persons and seized a pangolin worth â¹40 lakh in the international market from their possession.
Summary:
The Union Cabinet has approved Scheduled Tribe (ST) status for six communities in Assam, including the Moran and Matak communities.
Summary:
In this compliance window, which closed on September 30, 2015, 648 declarations involving undisclosed foreign assets worth over â¹4,100 crore were made.
Summary:
UpGrad and IIIT-Bangalore's PG program in Data Science, ranked among the top 5 by AIM, has seen a 90% increase in enrolments from 2017 to 2018.
Summary:
Speaking about filmmaker Rakesh Roshan's health status, who underwent surgery for throat cancer on Tuesday, his brother Rajesh Roshan said, "He's better now and recovering well." "We were all very tense...and the entire family was in the hospital with him.
Summary:
Summary:
Actress Deepika Padukone, while speaking on featuring in top 5 in Forbes' 2018 list of highest-earning Indian celebrities, said when she received the email informing her about the same, she thought it was a prank.
Summary:
A Mumbai sessions court has said actor Alok Nath may have been falsely implicated in a rape case by writer-director Vinta Nanda and she may have delayed filing a complaint for "her own benefit".
Summary:
After Hardik Pandya was criticised for his "misogynistic" comments on 'Koffee With Karan', the all-rounder issued an apology, saying he got a "bit carried away" with the show's nature.
Summary:
Australia Test captain Tim Paine's wife Bonnie shared a video of herself on Instagram carrying her baby while unpacking at her home.
Earlier, Bonnie shared a picture of Pant carrying one of her babies with the caption, "Best babysitter".
Summary:
Sri Lankan spinner Malinda Pushpakumara took all 10 wickets in an innings while playing for Colombo Cricket Club against Saracens Sports Club on Sunday.
Summary:
Earlier, it was reported that he was released to return to Pakistan due to knee injury.
Summary:
The Congress on Tuesday appointed transgender activist Apsara Reddy as a National General Secretary of its women's wing, the Mahila Congress, making her the first transgender office-bearer in the party.
and help contribute to the Congress party's manifesto with women-centric policies," Reddy said.
Summary:
Tamil Nadu CM EK Palaniswami on Tuesday announced in the state Assembly the creation of the 33rd district named Kallakurichi, which will be carved out by bifurcating Viluppuram.
Summary:
Adding that her daughter's Tamil has improved since she joined the anganwadi, Satish said, "The centre is...equipped with all facilities."
Summary:
Senior Staff Sergeant Kalaivani Kalimuthu had forged the victim's signature to "quickly" complete the investigation.
Summary:
The Centre on Tuesday announced private FM stations will be allowed to air news from public broadcaster All India Radio in English or Hindi.
Summary:
India and Norway have agreed to collaborate closely on the ocean economy and achieve global Sustainable Development Goals (SDGs) during Norway PM Erna Solberg's three-day state visit.
Summary:
Australia has said that it will "carefully" consider the asylum plea of Saudi Arabia's 18-year-old Rahaf Mohammed al-Qunun who fled alleged abuse by her family.
Summary:
In a televised speech demanding $5.7 billion for Mexico border wall, US President Donald Trump called Indian-origin police officer Corporal Ronil Singh a national hero.
Summary:
Iran on Tuesday said it hopes India will seek another waiver from US sanctions as it plans to continue buying Iranian oil.
Summary:
The adware apps have now been removed from Google Play Store, the firm added.
Summary:
"Ultimate goal of reanimation is to restore dynamic motion of the entire (face)," researchers said.
Summary:
A 10-year-old boy in a village in Madhya Pradesh told the National Commission for Protection of Child Rights he consumed insecticide to fulfil his hunger as there was no food at home, a senior state official revealed.
Summary:
The deceased include Vegraj, his wife Ramvati Devi, son Nem Chandra, daughter-in-law Mamta Devi and daughter Gayatri Kumari.
Summary:
A man was found dead at a night shelter for the homeless, run by the Municipal Corporation in Aligarh, on Tuesday.
Summary:
He said the Nagaland state government has not supported the extension of notification declaring Nagaland as 'Disturbed Area' under AFSPA.
Summary:
Summary:
Ram Bahadur Bomjan, the Nepali spiritual leader believed to be a reincarnation of Lord Buddha by his followers, is under investigation over the disappearance of several devotees from his ashrams, police said.
Summary:
The Information and Broadcasting (I&B) Ministry on Tuesday increased the rates at which the government releases advertisements to the print media by 25%.
Summary:
The Lok Sabha on Tuesday cleared the constitution amendment bill to introduce a 10% reservation for poorer sections among general category aspirants for jobs and educational institutions.
Summary:
"She wasnâÂÂt screaming or anything, just hanging out with another girl, presumably her sister," the person who took the video said.
Summary:
Actress Aishwarya Rai Bachchan in an interview said that 'fake and plastic' is the worst comment she has heard about herself.
Summary:
Poor Modi ji has to settle for Vivek Oberoi.
Kher has played former PM Manmohan Singh in 'The Accidental Prime Minister' while Vivek Oberoi is playing the lead in PM Modi's biopic.
Summary:
Protesting against Narendra Modi-led government on Tuesday over the Citizenship (Amendment) Bill 2019, a TMC MP wore a PM Modi mask and wielded a stick in his hand while threatening other MPs who played victims.
Summary:
After reports of BJP MP Shatrughan Sinha losing VIP privileges at Patna airport, Union Minister Ram Vilas Paswan has lost the privileges at the airport as well.
Summary:
One of the accused even broke a beer bottle on the head of the pub's maintenance in-charge.
Summary:
Speaking about the upcoming instalment of the 'Munna Bhai' franchise, actor Arshad Warsi said, "I do know that the script is pretty much ready." "[T]he film will go on floors this year, either mid or the end of the year," the actor added.
Summary:
Summary:
'PM Narendra Modi' producer Sandip Ssingh revealed the film's lead actor Vivek Oberoi, who plays PM Modi in the biopic, sat through seven hours of makeup for his look in the poster.
Summary:
Money collected from Indian footballers as fines for minor breaches of discipline will be donated to the Indian Blind Football Federation.
Summary:
WhatsApp in its newest update added a feature which lets users reply privately on a group chat for iOS users.
Summary:
The touch-sensitive smart plank lets users adjust the temperature and use Google Assistant through its interface.
Summary:
Jaitley's comment came after the Opposition questioned the timing behind government's move to include economically weaker categories within the general category for reservation.
Summary:
Goa Police on Monday said it has invented a technology in association with a Bengaluru-based startup IIO Technologies to detect unauthorised drones.
Summary:
Royal Enfield on Tuesday said its President Rudratej Singh has resigned from the company with immediate effect.
Summary:
Pune-based medtech startup In-Med Prognostics has received an 18-month-long, â¹50-lakh grant from government enterprise Biotechnology Industry Research Assistance Council.
Summary:
Mumbai-based health-tech startup Vantage Health has raised $50 million in its first funding round led by Founder Aman Iqbal's Cayman Islands-based firm IQGEN.
Summary:
US-based Mayo Clinic researchers have applied artificial intelligence (AI) to existing electrocardiogram (EKG) test to develop a system which detects 'asymptomatic left ventricular dysfunction' (ALVD), a precursor to heart failure.
Summary:
"Our aim is to make incense from at least 20% of flowers collected," founder of the social enterprise Harshit Sonker said.
Summary:
Following the request, the officers discussed the issue and concluded that no Indian law deals with such a complaint.
Summary:
He was banned from leaving Saudi Arabia.
Summary:
Russian President Vladimir Putin on Monday marked the Russian Christmas by firing the traditional daily howitzer shot at noon over the Neva River.
Summary:
Hundreds of people were feared trapped inside and under the train.
Summary:
Over 34.73 crore mobile wallet transactions worth â¹16,108 crore were conducted in November, as compared to 36.84 crore transactions amounting to â¹18,786 crore in October, RBI data showed.
Summary:
The group's holding company Essar Global Holdings has repaid its last tranche of debt of â¹12,000 crore to various banks.
Summary:
Swadeshi Jagran Manch (SJM), the economic wing of RSS, has said it would seek legislative amendments to rules governing patents.
Summary:
The bench will hear at least 14 pleas.
Summary:
The barber asked the man if he wanted the 'play' icon too with the haircut.
Summary:
Hepburn was part of WhatsApp group called "stat chat", wherein members competed to see who had sex with the most women in Worcester.
Summary:
Shares of the US e-commerce giant rose 3.4%, giving the company a market capitalisation of $797 billion, while Microsoft had a market value of about $783 billion.
Summary:
Paris' first nudist restaurant O'naturel is set to close in February 2019 because it failed to attract enough customers.
Summary:
Moments after the Citizenship (Amendment) Bill was passed in Lok Sabha, BJP Assam spokesperson Mehdi Alam Bora resigned from the party on Tuesday.
"I oppose the Citizenship Amendment Bill.
Summary:
A makeup artist placed the diamonds individually on a model's lips in two and a half hours for the record.
Summary:
Vijaypat Singhania said his book contains only the truth.
Summary:
When asked what she would change in the film industry, director Zoya Akhtar said that she felt film technicians need to be paid more for their work.
Summary:
The petitioner claimed the film undermines the authority of the Office of the Prime Minister and requested an urgent hearing.
Summary:
Speaking about actor Amrish Puri, who passed away in 2005, Javed Akhtar said filmmaker Steven Spielberg once mentioned he had never seen a villain as good as Puri in a film.
Summary:
Summary:
Former Australian cricketer Shane Warne criticised the Australian team, saying that Australian cricket is in need of a complete overhaul.
Summary:
New Zealand's Ross Taylor went past Sachin Tendulkar and Virat Kohli's tally of five consecutive fifty-plus scores after scoring 137 against Sri Lanka in the final match of the three-match ODI series.
Summary:
Speaking about the Indian team's critics, coach Ravi Shastri said, "I feel the people who jabber away are minority, you don't know the millions of fans this Indian cricket has." "Thank you for picking us up when we are down and you outnumber the jabbering crowd," Shastri added.
Summary:
In his new role, Mohan will be responsible for aligning teams and driving overall strategy.
Summary:
Uber's flying taxi partner Bell revealed the design of a hybrid-electric powered air taxi, called Bell Nexus, at the Consumer Electronics Show (CES) 2019 in Las Vegas.
Summary:
PDP President Mehbooba Mufti has said coalition governments deliver better results than single-party majorities.
Summary:
At the ongoing technology event CES 2019 in Las Vegas, automaker Hyundai unveiled its car concept 'Elevate' that can walk over difficult terrain.
Summary:
Shenzhen city in southern China has announced 99% of the taxis operating in the city are now electric, becoming China's second and largest city to do so.
Summary:
The nearly 2,000-foot-long U-shaped floating system, propelled by ocean winds and waves, was designed to collect plastic to be taken to land for recycling.
Summary:
The Delhi High Court on Tuesday dismissed a plea seeking removal of AAP leader Arvind Kejriwal as Delhi Chief Minister.
The petitioner sought KejriwalâÂÂs removal saying he was accused in a case relating to alleged assault of then Delhi Chief Secretary Anshu Prakash.
Summary:
He added the economic, financial and social conditions of Muslims are even worse than Dalits.
Summary:
The MFB has directed the MIDC fire brigade to take action against the hospital.
Summary:
The Rwandan government has begun enforcing a ban on cosmetic products used for lightening or bleaching skin over fears that they may be harmful to health.
Summary:
An estimated 8.56 lakh Jews fled 10 Arab countries after Israel was established.
Summary:
Budget carrier GoAir has reportedly grounded seven A320neo aircraft powered by Pratt & Whitney (P&W) engines due to recurring glitches.
Summary:
Ojha filed the petition claiming the film allegedly damaged the image of some top leaders.
Summary:
The coaches will get â¹25 lakh each, while bonuses for non-coaching support staff will be equivalent to the pro-rata salary/professional fee.
Summary:
Brisbane Heat captain Chris Lynn has revealed pacer James Pattinson sledged Perth Scorchers batsman Cameron Bancroft, who recently returned to professional cricket after serving a nine-month ban, in a BBL match.
Summary:
After BJP MP Anurag Thakur wore a sweatshirt with 'NaMo Again' written on its front and back, on the last day of the winter session of the Parliament, PM Narendra Modi tweeted, "Looking good" and tagged the leader.
Summary:
Google search results for 'bad chief minister' displayed the Wikipedia page of Kerala Chief Minister Pinarayi Vijayan.
Summary:
The Citizenship (Amendment) Bill 2019, which makes minority immigrants from Afghanistan, Bangladesh and Pakistan who have entered India before December 31, 2014 eligible for Indian citizenship, has been passed in the Lok Sabha.
Summary:
During a telephonic conversation on Monday, Russian President Vladimir Putin invited Prime Minister Narendra Modi as a main guest to the Eastern Economic Forum in September.
Summary:
Avengers' actor Samuel Jackson supported new Michigan congresswoman Rashida Tlaib's referring to President Trump as a "motherf**ker" and calling for his impeachment at a private event in Washington DC last week.
Summary:
At least 20 children were injured after being attacked by a hammer at their primary school in the Chinese capital of Beijing on Tuesday.
Summary:
Fifty-year-old award-winning French author Yann Moix has been criticised for saying that he's "incapable" of loving women in their 50s as they're "too, too old".
"The body of a 25-year-old woman is extraordinary.
Summary:
Japanese tabloid magazine 'Spa!' has apologised after it published a list ranking women's universities on how easy it is to convince students to have sex at drinking parties.
Summary:
Almost a month after they got married in Mumbai, Isha Ambani and Anand Piramal's haldi ceremony pictures were shared online by designer Sabyasachi Mukherjee on Tuesday.
Summary:
Ellison, who was recently appointed to Tesla board, said Tesla was his second-largest investment in October last year.
Summary:
While speaking about his role in the upcoming biopic titled 'PM Narendra Modi', Vivek Oberoi who plays PM Modi in the film said, "This is a role of a lifetime." "At the end of the journey, I pray I become a better actor and a better human being," Vivek added.
Summary:
New Zealand cricketer Martin Guptill took a leaping one-handed catch to deny Thisara Perera a second straight ton in the final ODI between the teams on Tuesday.
Summary:
The German police on Tuesday said they have arrested a 20-year-old man in connection with a security breach which affected an estimated 1,000 people including hundreds of the country's politicians.
Summary:
Following his resignation from AAP, Punjab MLA Sukhpal Singh Khaira, has announced the formation of a new political party, Punjabi Ekta Party.
Summary:
Ghosn was arrested for allegedly understating his compensation.
Summary:
E-commerce major Amazon is reportedly acquiring Infosys-backed Israeli cloud computing startup CloudEndure for around $250 million.
Summary:
AAI has also banned single-use plastic across 129 of its airports.
Summary:
Ahir added, since 2014 till December 31, 2018, there were 1,213 incidents involving terrorists in J&K.
Summary:
The accused driver allegedly harassed the female passenger who was sitting in the front seat, police said.
Summary:
As many as 16.5 lakh bottles of liquor were sold by all entities, including liquor shops, restobars and clubs in Delhi on December 31, a Delhi government official said.
Summary:
Delhi police have registered a case of attempt to murder against four unknown persons who attacked a man after he confronted them for misbehaving with his sister.
Summary:
He added Iranian government is in the process to resolve all the issues related to the Chabahar port "as early as possible".
Summary:
Delhi's Patiala Court has deferred hearing in the death case of Sunanda Pushkar, wife of Congress MP Shashi Tharoor, to January 14.
Summary:
Anil Ambani-led Reliance Communications (RCom) has said it deposited â¹131 crore with the Supreme Court registry as part payment of the total â¹550-crore dues to Ericsson.
Summary:
Summary:
Akshaye Khanna, who was offered the role of Sunil Dutt in Rajkumar Hirani's directorial 'Sanju', has said he didn't do the film as he couldn't pass the look test.
Akshaye further said he feels sad for not being able to work in 'Sanju'.
Summary:
"Jab paper leak hota tha exam ka...vo unko laakar deta tha," he added.
Summary:
Summary:
Summary:
Talking about Team India batsman Cheteshwar Pujara's performances in the recently concluded Test series against Australia, chief selector MSK Prasad said that Pujara is actually a living Buddha.
Summary:
The 2019 edition of the Indian Premier League will take place entirely in India despite the upcoming general elections which are expected to take place in April-May, according to the BCCI.
Summary:
He told the police he made the call just for fun.
Summary:
Pakistan Prime Minister Imran Khan has said that a war between two nuclear-armed countries like India and Pakistan is like "suicide".
Summary:
Cyntoia Brown's sentence was commuted because of her exemplary behaviour while in prison.
Summary:
The RBI has formed a committee on "deepening of digital payments" under the Chairmanship of Infosys Co-founder Nandan Nilekani.
Summary:
Actor Ali Fazal will be seen in an upcoming Hollywood biopic, the actor's spokesperson revealed.
Summary:
While speaking about his upcoming film, based on the life of Prime Minister Narendra Modi, director Omung Kumar said he is proud to direct the project.
Summary:
Veteran actor Mithun Chakraborty, who is currently undergoing treatment for his chronic backache in a hospital in Los Angeles, has started recovering and is expected to return to India soon, reports suggested.
Summary:
Vicky Kaushal has said his "only attempt" is to keep "surprising" the audience, adding, "I might fall, might get up, then again fall and rise and this will continue to happen.
Summary:
Indian captain Virat Kohli said that he is surprised by the magnitude of criticism being aimed at Australian pacer Mitchell Starc.
Summary:
Indian pacer Jasprit Bumrah has been rested for the upcoming ODI series against Australia and the Indian team's tour of New Zealand.
Summary:
Former England captain Michael Vaughan has said that the return of Steve Smith and David Warner from their suspensions won't solve the problems being faced by the Australian cricket team.
Summary:
Following the SC verdict on the CBI case, former Jammu and Kashmir CM Mehbooba Mufti tweeted, "Time for the Central government to stop misusing...NIA and CBI for political vendetta." The verdict "reinstates belief in independent institutions of our democracy that are its pillars", she added.
Summary:
US company Chico's FAS' Soma brand showed a smart bra that can determine its user's "accurate" bra size at the ongoing technology event CES 2019 in Las Vegas.
Summary:
The court asked them to file a response on the allotment of government bungalows for life and why it shouldn't be cancelled.
Summary:
A 1989-batch Indian Foreign Service officer, Misri replaced Gautam Bambawale, who had retired in November.
Summary:
Union Minister Kiren Rijiju on Tuesday said that women representation in the CRPF and CISF will be made 15%.
Summary:
Moses' friend V Praveen, who had uploaded a picture with the python around his neck, has also been arrested.
Summary:
At least 23 members of the US-backed Syrian Democratic Forces were killed in an attack by the Islamic State in eastern Syria, the Syrian Observatory for Human Rights said.
Summary:
Infosys' Global Head of Energy, Utilities, Resources & Services segment, Sudip Singh, has resigned after nearly two decades at the IT services firm.
Summary:
India's private equity firm ChrysCapital has completed the fundraising for its eighth private equity fund.
Summary:
A 30-year-old woman died and her husband was injured after falling off Delhi's Barapula Flyover after their bike was hit by a car.
Summary:
Rishabh Pant has achieved the highest-ever Test batting rating for an India wicketkeeper, taking his aggregate of rating points to 673.
Summary:
"Congratulations to Virat Kohli and the Indian cricket team for the first ever win by a subcontinent team in a Test series in Australia," he tweeted.
Summary:
A humanoid robot was allegedly hit by a Tesla car ahead of CES 2019 on Sunday.
"Look @elonmusk at a Tesla Model S hitting and killing a guiltless robot in Vegas.
Summary:
Taking a dig at BJP over introduction of reservation for economically backward section bill, former J&K CM Omar Abdullah said, "Only after defeat in Madhya Pradesh, Chhattisgarh, Rajasthan...[BJP] remembered to give reservation after 4.5 years." "They actually don't intend to give reservation.
Summary:
Gurugram-based food startup InnerChef has raised $6.5 million (about â¹45 crore) in a pre-Series B funding round from investors including billionaire Masayoshi Son's brother Taizo Son-owned Mistletoe.
Summary:
The girls said they were disappointed over not being able to save all of the passengers.
Summary:
PM Narendra Modi and US President Donald Trump discussed prospects on how to reduce the US trade deficit with India and increase cooperation in Afghanistan, during a phone call, the White House said.
Summary:
Jasmer Singh allegedly also wanted to take revenge for his brother's death, who was killed in a 1991 police encounter.
Summary:
Calling the Supreme Court's order on the reinstatement of CBI Director Alok Verma a "balanced decision", Finance Minister Arun Jaitley said the government is not against any individual.
Summary:
Several Australian beaches were shut after nearly 3,600 people were stung by bluebottle jellyfish over the weekend.
A sting from bluebottle jellyfish can be painful, but not life-threatening.
Summary:
Rahaf Mohammed al-Qunun, the 18-year-old Saudi girl who pleaded for asylum after barricading herself in a Bangkok airport hotel room, left the airport under the care of UN refugee agency (UNHCR), Thai officials said.
Summary:
The Delhi High Court will now decide if Indian companies infringed Monsanto's patent on Bt cotton seeds.
Summary:
The deal will help Bandhan Bank's promoter to reduce its stake in the lender to 60.2%.
Summary:
Reacting to Naseeruddin Shah's statement that he fears for his children's safety in India, Paresh Rawal said, "It's not right to say India's not worth living in.
Summary:
Speaking about India's recent Test series win in Australia, VVS Laxman said, "This series victory will add a new dimension to Indian cricket.
It will, I am certain, inspire young cricketers." "It was my dream to be part of a winning side in Australia.
Summary:
Following the Supreme Court's verdict reinstating Alok Verma as the CBI Director, Congress spokesperson Randeep Surjewala tweeted, "Law catches up in the end".
Summary:
Speaking about spinner Ravichandran Ashwin, spinner Harbhajan Singh said, "[H]is away record has been shaky and he has struggled." "The best I have seen R Ashwin bowl was in the first Test in England.
Summary:
Monday's loss was the first time Liverpool have suffered back-to-back defeats this season.
Summary:
An Android version of Microsoft's video calling platform Skype bypassed the phone's lock code and provided access to several apps, as per a report.
Summary:
The Karnataka State Tourism Development Corporation and Bengaluru International Airport on Monday launched a women-only taxi service called 'Go Pink Cabs' on a trial basis.
Summary:
Summary:
"It could be a water planet or have some other type of substantial atmosphere," NASA said.
Summary:
Congress President Rahul Gandhi on Tuesday said no one can save Prime Minister Narendra Modi from Rafale investigation.
Summary:
A gang robbed gold and silver jewellery worth over â¹98 lakh from a vehicle owned by Kalyan Jewellers in KG Chavadi, Tamil Nadu on Monday, said the company.
Summary:
Around 25 lakh commuters in Mumbai are likely to be affected as employees of Brihanmumbai Electric Supply and Transport went on an indefinite strike on Monday night.
Summary:
An 11-hour bandh called by student organisations and indigenous groups across northeast began on Tuesday at 5 am, in protest against Centre's decision to table Citizenship (Amendment) Bill in Parliament.
Summary:
Hrithik Roshan has revealed his father, filmmaker Rakesh Roshan was diagnosed with early stage throat cancer a few weeks ago.
Summary:
Verma was asked to proceed on leave following his fallout with CBI Special Director Rakesh Asthana.
Summary:
Summary:
Rohit Sharma took to Twitter to praise Cheteshwar Pujara for his three match-winning hundreds in the Test series against Australia.
Summary:
Cheteshwar Pujara, who scored 521 runs in the recently concluded Australia-India Test series, has said batting is like meditation for him.
Summary:
The Supreme Court while reinstating Alok Verma as the CBI Director today said that he cannot take major decisions till the Selection Committee, comprising the CJI, PM and Leader of Opposition, decides if any action must be taken against him.
Summary:
Female mixed martial arts (MMA) fighter Polyana Viana left a robber bruised and bloodied after he tried to rob her using a cardboard gun.
Summary:
Summary:
Women constitute 13% of the IAF's workforce, the highest among the three armed services, Minister of State for Defence Subhash Bhamre informed the Rajya Sabha on Monday.
Summary:
Former BJP MLA Jayantilal Bhanusali has been shot dead by unidentified assailants while he was onboard an Ahmedabad-bound train.
Summary:
A plea against the NGT order was filed by the state government, which had earlier shut the plant over alleged pollution.
Summary:
North Korean leader Kim Jong-un is visiting China at the invitation of Chinese President Xi Jinping, only days after warning he may take an alternative path if the US doesn't ease sanctions and pressure on his country.
Summary:
India-born Harvard University professor Gita Gopinath has joined International Monetary Fund as its first woman Chief Economist.
Summary:
'The Accidental Prime Minister' director Vijay Ratnakar Gutte's firm VRG Digital Corporation has been found to be indulging in "circuitous transactions" with a few firms to "defraud" the British Film Institute, as per reports.
Summary:
Shah Rukh Khan, while talking about producing his films, said, "I believe every film I do is like my daughter.
Summary:
Ayushmann Khurrana has said that if there is a need to go bald for a film, he will go for it.
Summary:
Prateik Babbar will get married to his fiancée Sanya Sagar on January 22 and 23 in Lucknow, as per reports.
Last year, he got engaged to Sanya on January 22.
Summary:
After Supreme Court overturned the Centre's decision to send CBI Director Alok Verma on indefinite leave, Congress tweeted, "The SC has proven to PM Modi that democracy will always fight back." Congress further claimed Verma was "undemocratically removed from his position" as he was investigating the Rafale deal.
Summary:
Rajasthan Chief Minister Ashok Gehlot on Monday said, "People in the BJP have started believing that (party chief) Amit Shah and (Prime Minister) Narendra Modi are ruling the country and not the BJP." Claiming that the BJP has done "no concrete work," Gehlot added, "They are exposed.
Summary:
She said, "The intention behind the decision seems to be not good...It has come just ahead of the Lok Sabha elections.
Summary:
Priya entered electoral politics in 2005 and had fought three general assembly elections, the last one being in 2014.
Summary:
The Army, Navy and Air Force have lost 334 personnel to suicide-related cases since 2016, Minister of State for Defence Subhash Bhamre informed Rajya Sabha on Monday.
Summary:
A police official said, "The man touched the woman inappropriately.
The woman thought the act happened accidentally.
Summary:
This comes after one of the speakers claimed that Kauravas were test tube babies.
Summary:
The Kerala government has decided to bring an ordinance to prevent the damage of private property in the name of hartals and communal violence, CM Pinarayi Vijayan said on Monday.
Summary:
Talking about the trade unions-called strike, West Bengal CM Mamata Banerjee on Monday said that there will be no strike in the state.
Summary:
Around 20 crore workers of the central trade unions have gone on a two-day nationwide strike beginning on Tuesday.
Summary:
Actor Arjun Rampal on Monday posted a picture with rumoured girlfriend Gabriella Demetriades on Instagram and captioned it, "At a wedding, not mine!!!" Arjun and his wife former supermodel Mehr Jesia announced their separation after 20 years of marriage in May last year.
Summary:
Team India captain Virat Kohli danced to 'Mere Desh Ki Dharti' song with the Bharat Army, the official Indian cricket supporters' group, following India's first ever Test series victory in Australia on Monday.
Summary:
After India's 2-1 Test series victory against Australia on their soil, captain Virat Kohli said he sees this series as a stepping stone for the team India to inspire the next lot of Test cricketers.
Summary:
US-based startup Volo Beauty showed a â¹28,000 cordless hair dryer at ongoing technology event CES 2019 in Las Vegas, which uses infrared bulbs and radiant heat to dry hair.
Summary:
Addressing the 'Ek Shaam Babri Masjid Ke Naam' event in Delhi, Congress leader Mani Shankar Aiyar on Monday said, "I am from the Congress and we did a mistake." "(The then PM PV) Narasimha Rao did not take the right steps at the right time and a mistake happened," he added.
Summary:
Khosla, who has been conducting research for over 25 years on existence of dinosaurs in India, added a dinosaur named Rajasaurus had originated in India.
Summary:
Tamil Nadu Sports Minister P Balakrishna Reddy on Monday resigned after a special court convicted him and 15 others in a 1998 stone-pelting case.
Summary:
China's 50-year-old Liu Zhonglin was awarded â¹4.7 crore in compensation on Monday for being wrongly jailed for 25 years over the murder of a woman.
Summary:
World Bank President Jim Yong Kim on Monday announced that he will be leaving his post on February 1, more than three years ahead of the end of his term.
Summary:
Fatima Sana Shaikh, who has worked with Amitabh Bachchan and Aamir Khan in 'Thugs of Hindostan', revealed that Amitabh is more technology savvy than Aamir.
He is backward that way but Bachchan sir is at it.
Summary:
Aishwarya Rai Bachchan and Abhishek Bachchan have opted out of Anurag Kashyap's next production 'Gulab Jamun', as per reports.
While things were being worked out, the two seem to have had a change of mind," stated reports.
Summary:
The film, which also stars Varun Dhawan, Shraddha Kapoor and Prabhudheva, will reportedly be released on November 8.
Summary:
Now we've got no more Test cricket and no more alarms in the morning," Kohli added.
Summary:
Speaking about his teammate from Punjab's Ranji Trophy side, Yuvraj Singh said that Under-19 World Cup-winner Shubman Gill can represent India for a long time.
Summary:
The Football Association has launched an investigation after Renée Hector, a Tottenham Hotspur Ladies footballer, alleged monkey noises were directed at her by a Sheffield United Women's team player during a game on Sunday.
Summary:
Non-tracking search engine DuckDuckGo has denied claims that it's using browser fingerprinting to track its users.
Summary:
The touchless, voice-controlled mirror can show users how they will look with different coloured hair and lets them see the back of their head with its 360-degree viewing feature.
Summary:
Apna Dal (Sonelal) on Monday said that the party would go to "any extent" if the BJP does not change its attitude towards smaller parties in the ruling coalition.
Summary:
The regulator is concerned that Amazon may violate the revised FDI policy for e-commerce sector through the deal.
Summary:
Chief Election Commissioner Sunil Arora on Monday said that Electronic Voting Machines (EVMs) cannot be tampered with.
He further said that the functioning of EVMs is being looked after by a "highly-qualified technical committee", the members of which are not the kind to be influenced by anybody.
Summary:
The Supreme Court has sought the Centre and Election Commission's reply on a plea seeking increase in verification of Voter Verifiable Paper Audit Trails (VVPATs) with EVM votes to 30%.
Summary:
A woman and her one-year-old daughter were trampled to death after 18 elephants went on a rampage in a Jharkhand village, authorities said.
Summary:
Addressing a function in Kolkata, Nobel laureate Amartya Sen on Monday asked whether the construction of Ram Temple and entry of women at Sabarimala Temple should be considered central issues for upcoming General Elections.
Summary:
It was one of the 328 fixed dose combination (FDC) drugs banned by Centre in September 2018.
Summary:
Summary:
Lunch boxes distributed during a rally organised by UP BJP leader Naresh AgrawalâÂÂs son Nitin Agrawal, have been found to contain liquor bottles.
Summary:
It attributed the GDP growth mainly to improvement in the performance of agriculture and manufacturing sectors.
Summary:
The caterer was arrested after the bride reached the police station in her wedding dress.
Summary:
John Abraham has said he's not the kind of actor who dances at shows or weddings for money.
John further questioned, "As an actor you are here to show your craft...Why is it important to be on a list of highest earners?"
Summary:
Actress Janhvi Kapoor, while speaking about the topic of nepotism, said, "The whole nepotism debate (when I was making my debut in 'Dhadak') did make me question if I deserved to be in this position." "I do come from a place of privilege.
Summary:
I'm not an actor who dances at shows or weddings for money.
John further criticised the actors' money-making ambitions.
Summary:
In a tweet meant to congratulate India for their first ever Test series victory in Australia, actress and KXIP owner Preity Zinta mistakenly wrote that India became the first Asian team to win a "Test match" Down Under.
Summary:
India captain Virat Kohli has said the Test series victory in Australia is more "emotional and special" for him than 2011 World Cup win.
Summary:
People with residential plot below 100 square yards in a notified municipality will also benefit, reports said.
Summary:
Thailand has said it won't deport an 18-year-old Saudi girl who barricaded herself inside a Bangkok airport hotel to escape being deported after allegedly running away from her family.
We'll protect her," Thailand's chief of immigration police said.
Summary:
Speaking about India's 4-1 Asian Cup win over Thailand, Indian captain Sunil Chhetri wrote that the win was special since the win "made a country happy" even if only for a day.
Summary:
Summary:
Thailand's 1-4 loss to India in the Asian Cup has resulted in Thailand head coach Milovan Rajevac's sacking.
Summary:
WikiLeaks in an email to media organisations has instructed journalists to not report 140 "false and misleading" statements about its founder Julian Assange.
Summary:
Infosys Co-founder Narayana Murthy has said that technologies like AI won't render people jobless in future but create more opportunities.
Summary:
Asom Gana Parishad (AGP), an Assam-based party, on Monday announced its decision to break ties with the BJP over the Citizenship (Amendment) Bill.
Summary:
In the wake of violent protests against entry of two women aged below 50 in Sabarimala temple, Kerala CM Pinarayi Vijayan said 91.71% people engaged in violence in recent days are from Sangh Parivar groups.
Summary:
Commending the government's decision of 10% reservation in jobs and educational institutions for economically weaker sections in the general category, Union Minister Ramdas Athawale called it a "masterstroke".
Summary:
Tesla CEO Elon Musk on Monday formally began the construction of the automaker's Shanghai Gigafactory, which is its first factory outside the US.
Summary:
Nissan CEO Hiroto Saikawa has said the Japanese automaker's alliance with France's Renault, which also includes Mitsubishi Motors, is not in danger "at all".
energy [and] direction of activities are not at all affected," Saikawa further said.
Summary:
Southern Railways on Monday said it has refunded over â¹7.68 crores to passengers affected during the floods that caused havoc in Kerala and parts of Tamil Nadu last year.
Summary:
Ram Janmabhoomi Trust Chairman Mahant Nritya Gopal Das on Monday said construction of a grand Ram Temple in Ayodhya should start at the earliest.
Summary:
BJP MP Harish Dwivedi has urged PM Narendra Modi to increase the salary of parliamentarians, stating that the move will curb corruption in the country.
Summary:
Jammu and Kashmir recorded 2,936 instances of ceasefire violations by Pakistan in 2018, the highest in the past 15 years, a senior Army official said.
Summary:
Madame Tussauds-owner Merlin Entertainments on Monday said it has entered into a partnership agreement with the Gangwon Provincial Government to build a Legoland theme park in South Korea.
Summary:
The net collection after refunds rose 13.6% from the year-ago period to â¹7.43 lakh crore.
Summary:
The Income Tax Return (ITR) filing reportedly rose 43% to 6.21 crore in the current fiscal till December 30.
Summary:
The RBI recently announced additional infusion of liquidity through Open Market Operations (OMO) of â¹60,000 crore for December and January.n
Summary:
A model in a violet dress handing out Fiji Water bottles has gone viral on the internet after she appeared in the background of almost every celebrity's pictures at the Golden Globe Awards' red carpet on Monday.
Summary:
The actor released the posters of the film in 23 languages with Maharashtra's CM Devendra Fadnavis in Mumbai on Monday.
Summary:
India head coach Ravi Shastri has said India's maiden Test series victory in Australia is "as big or even bigger" than 1983 World Cup and 1985 World Championship victories for him.
Summary:
A UK court has cleared extradition of 50-year-old bookie Sanjeev Chawla, a key accused in the 2000 match-fixing scandal involving late South Africa captain Hansie Cronje, to India.
Summary:
Ex-Barcelona captain Andrés Iniesta has been criticised for sharing a picture showing him with a group of people, including two in blackface, during Three Kings Day celebration in Spain.
"I cannot believe in 2019 famous people are still doing or are around people doing "blackface" and tweeting it," a user tweeted.
Summary:
He had offered to share around â¹6.5 crore between 100 randomly selected people who retweeted the tweet.
Summary:
Nationalist Congress Party's 67-year-old MP Madhukar Kukde broke into a dance on the song 'Aankh Marey' from 'Simmba' on Saturday during a school function in Maharashtra.
Summary:
This is Hasina's fourth term in office overall.
Summary:
'No One Killed Jessica' director Raj Kumar Gupta, on the occasionâ of the film completing 8 years since its release, said that he'd "love" to work with Rani Mukerji and Vidya Balan once again.
Summary:
Niki Lauda, three-time Formula One world champion, has been admitted to the hospital with flu, five months after undergoing a lung transplant.
Summary:
Lionel Messi and Luis Suarez were on the scoresheet as Barcelona registered a 2-1 win over Getafe in the La Liga.
The win helps Barcelona stretch their lead at the top of the La Liga points table to five points.
Summary:
French startup Ellcie Healthy has created smart glasses which can alert users who fall asleep while driving.
Summary:
Former Uttar Pradesh Chief Minister Mayawati on Monday said that the BJP is trying to arm-twist SP chief Akhilesh Yadav through the CBI.
Summary:
Punjab CM Captain Amarinder Singh on Monday said that "there was absolutely no need" for Congress in the state to go in alliance with AAP.
Summary:
Inviting them over a lunch of fish and rice, Sahni coined 'Maach bhaat khayenge aur mahagathbandhan ko jeetayenge' as the party's slogan.
Summary:
Samajwadi Party on Monday took a dig at the BJP saying it is "allying" with the CBI due to alliance talks between SP and BSP.
Summary:
"AliExpress, as a marketplace...forbids any illegal activities by sellers on its platform," the e-tailer said.
Summary:
Online classifieds platform OLX acquired Mumbai-based recruitment portal Aasaanjobs for an undisclosed amount.
Summary:
Norway PM Erna Solberg on Monday said that there is a great scope to develop bilateral relations with India in areas such as business, trade and investments.
Summary:
Around 125 of the 178 criminals are involved in dacoity-related cases, police said.
Summary:
Jammu and Kashmir Governor Satya Pal Malik has said the number of murders in Patna in a day is equivalent to the number of deaths in J&K in a week.
Summary:
Congress leader Harish Rawat said the Centre's move of reserving 10% in jobs and educational institutions for economically backward section in the general category, won't save the BJP-led NDA government.
Summary:
Bodies of two teenage girls were found on Monday on the railway tracks in Uttar Pradesh's Pratapgarh district, police said.
Summary:
According to Tamil Nadu State AIDS Control Society (TANSACS), every year, around 10% of blood donors who are found to be HIV+ are not informed.
Summary:
Shareholders of Gruh Finance, in which HDFC has 57.83% stake, will receive three Bandhan Bank shares for every five shares held in the home financier, reports said.
Summary:
The nine major Indian carriers including Air India and Vistara inducted over 120 aircraft comprising both twin and single-aisle as well as regional jets last year as compared to 88 planes inducted in 2017.
Summary:
The Ministry of Corporate Affairs (MCA) is planning to collect Know Your Customer (KYC) details of companies, chartered accountants, cost accountants and company secretaries.
Summary:
This reservation will be over and above the existing 50% reservation, the reports added.
Summary:
Fifty-year-old Richard Mason from UK sued his ex-wife on discovering after 20 years the three boys he raised as his sons weren't his own and has offered ã5,000 to find their real father's identity.
Summary:
"For once, let's not debate or dissect the impact of absence of Warner & Smith, let's just savour the moment and be proud.
Summary:
Following India's Test series victory in Australia, off-spinner Ravichandran Ashwin shared Cheteshwar Pujara's picture on Instagram, writing, "The White Walker seals the deal Down Under." In the picture, Pujara can be seen behind a smartphone showing images of 'White Walkers', humanoid creatures in TV series 'Game of Thrones'.
Summary:
The RBI may reportedly transfer an interim dividend of â¹30,000-â¹40,000 crore to the government by March.
Summary:
MNS chief Raj Thackeray has issued an apology after organisers of a Marathi literary meet withdrew an invitation extended to writer Nayantara Sahgal based on threats from a MNS worker.
Summary:
Nobel laureate Amartya Sen on Sunday came out in support of actor Naseeruddin Shah, who was criticised over his remarks on mob violence and later on an alleged crackdown on freedom of expression.
Summary:
Organisers of a Marathi literary meet have withdrawn an invitation extended to writer Nayantara Sahgal after receiving threats to disrupt the function.
Summary:
The Andheri police on Sunday arrested a 23-year-old waiter, Nishant Gowda, for allegedly attacking an NRI woman named Farzana Mirat with a knife after she had asked for one to cut her cake.
Summary:
The 18-year-old was on a trip to Kuwait with her family when she fled.
Summary:
United Arab Emirates' (UAE) largest bank First Abu Dhabi Bank (FAB) has said it is working to repay customers wrongly charged $47.7 on their accounts.
Summary:
The Delhi High Court on Monday rejected a plea seeking a ban on the trailer of the film 'The Accidental Prime Minister'.
Summary:
Denying the reports that said Kapil Sharma has slashed his fees for 'The Kapil Sharma Show', his colleague Krushna Abhishek said, "These pay cut rumours are false.
Summary:
Alok Nath, who has been granted anticipatory bail by a sessions court in Mumbai, said, "We [Alok and his team of lawyers] are very grateful for that." "Now, when I'm in a position to speak I'll have a heart-to-heart with you," he added.
Summary:
Reacting to India's first-ever Test series win in Australia, President Ram Nath Kovind congratulated Virat Kohli and the Indian team, urging them to make a "habit of it".
Summary:
Senior Assam minister and BJP leader Himanta Biswa Sarma on Sunday said that if the Citizenship (Amendment) Bill, 2016 is not passed, Assam will go to the "Jinnahs".
Summary:
Former Indian cricketer Sunil Gavaskar said that the absence of Steve Smith and David Warner from the Australian team is not India's fault and that the Australian cricket board could have handed shorter bans to the duo.
Summary:
After Australia's first-ever Test series loss to India on home soil, captain Tim Paine admitted his side were outplayed by a superior team and that they had to tip their hat to the Indian team.
Summary:
He further said his party desired that both issues should be resolved peacefully and by consensus.
Summary:
The parliamentarians had continued to protest in the Well despite warning from the Speaker, following which Mahajan suspended them for "abusing the law of the House".
Summary:
The Election Commission has cancelled the bypoll for Tamil Nadu Assembly seat of Thiruvarur, which has been lying vacant since the death of DMK leader M Karunanidhi in August last year.
Summary:
Union Minister Nitin Gadkari on Monday lauded former PM Indira Gandhi, saying she proved her mettle in her party among other dedicated male leaders without reservation.
Summary:
Bengaluru-based accommodation startup Zolo raised $30 million (about â¹210 crore) in Series B funding round from investors Nexus Venture Partners, IDFC Alternatives and Mirae Asset.
Summary:
Union Human Resource Development Minister Prakash Javadekar has announced the addition of 5,000 seats to Jawahar Navodaya Vidyalayas (JNVs), residential schools primarily focused on rural children, from academic session 2019-2020.
Summary:
Patna High Court on Monday rejected RJD leader Tejashwi Yadav's plea challenging Bihar government's order asking him to vacate the bungalow allotted to him while he was the deputy CM.
Summary:
At least five people were killed and one was critical after a car collided with a truck in Kendrapara district of Odisha on Monday.
Summary:
Reliance Communications (RCom) has accused Swedish telecom equipment maker Ericsson of "distorting issues" by trying to sensationalise its contempt petition against the telco's Chairman Anil Ambani.
Summary:
Brajesh Thakur, the prime accused in Muzaffarpur shelter home sexual abuse case, used to force girls to dance to vulgar songs and have sex with his guests, the CBI said in a charge sheet.
Summary:
Amid the partial US government shutdown, rapper Snoop Dogg has called on federal workers, who aren't being paid right now, to not re-elect Donald Trump as the President in 2020.
So f**k him too," Snoop Dogg further said.
Summary:
Meanwhile, Alfonso Cuaron won the Best Director award for 'Roma'.
Summary:
After winning the four-match Test series against Australia 2-1, Team India captain Virat Kohli said that by far the historic series victory is his best achievement.
Summary:
"When Pujara walks...he doesn't move his hands...[the dance] is more of an extension of his walk...Rishabh Pant came up with it," Kohli explained.
Summary:
This was India's 12th Test series in Australia, having earlier lost eight and drawn three.
Summary:
The construction of world's largest cricket stadium in Gujarat's Ahmedabad is underway.
Summary:
Ex-Manchester United and England captain Wayne Rooney was arrested in the US on December 16 for public intoxication and swearing at an airport in Virginia.
Summary:
Delhi Chief Minister Arvind Kejriwal on Monday said that it was time to throw out the "dictatorial and undemocratic regime" of Prime Minister Narendra Modi.
Summary:
One-third of this fund has been invested by half a dozen former and current Flipkart executives.
Summary:
A 26-year-old electrical engineer from Telangana has been shot in the mouth by robbers while returning from work in US' Detroit.
Summary:
Odisha Agriculture Minister Pradeep Maharathy has resigned a day after being criticised by PM Narendra Modi over his remarks on the acquittal of two accused in 2011 gangrape and murder of a Dalit girl.
The government couldn't ensure justice for the victim, PM Modi later remarked.
Summary:
A 30-year-old man was shot dead by the owner of a dog in Delhi's Welcome Colony after he threw stones at the canine as it tried to bite him.
Summary:
"It was pretty much a miracle," the man said.
Summary:
Hailey Bieber took to her Instagram and wrote, "No matter how amazing life may look from the outside I struggle...I'm insecure, I'm fragile, I'm hurting, I've fears, I've doubts, I've anxiety, I get sad, I get angry." "I constantly feel like I am just not good enough.
Summary:
Pooja Hegde will star opposite Akshay Kumar in Rohit Shetty's 'Sooryavanshi', as per reports.
Summary:
Rami Malek won the Best Actor Award in the drama category for 'Bohemian Rhapsody' at the 76th Golden Globe Awards while Glenn Close got the Best Actress Award in the drama category for 'The Wife'.
Summary:
On being asked what would be his advice for Priyanka Chopra's husband Nick Jonas, Shahid Kapoor said, "Never back down buddy, you are with the original 'desi girl'." Shahid said this on 'Koffee With Karan Season 6'.
Summary:
Summary:
Summary:
Vidarbha's 40-year-old batsman Wasim Jaffer on Monday appeared in his 146th Ranji match to become the most capped player in the history of the Ranji Trophy.
Summary:
Attacking BJP over its pre-poll alliance remarks, Shiv Sena on Sunday said that with the statement, BJP has made it clear that it is going to ally with Electronic Voting Machines (EVMs).
Summary:
He further said that India's unemployment rate increased to 7.4% in December last year.
Summary:
"He also faced several allegations in Purti Group scam...That memory still rankles with Gadkari," Raut said.
Summary:
Shekar alleged police were unnecessarily filing cases against his followers and letting unauthorised sand miners go scot free.
Summary:
Talking about the Mahatma Gandhi National Rural Employment Guarantee Act (MGNREGA), Congress leader P Chidambaram on Monday said that the programme was in "doldrums".
Summary:
The members were arrested while they were appearing for other candidates in UP Assistant Teacher Examination 2019.
Summary:
In a new commercial, Alia Bhatt is seen working her way around dinner with the help of Uber Eats when instead of a delicious meal all she gets are Tindas.
Summary:
India won the four-match Test series against Australia 2-1 as the Sydney Test ended in a draw after the fifth day's play was washed out due to rain.
Summary:
Malaysia's 49-year-old Sultan Muhammad V stepped down as the 15th king on Sunday, marking the first time a king has abdicated in the country since it gained independence from Britain in 1957.
Summary:
She was arrested by the police in May 2018 after she went to the man's workplace pretending to be his wife.
Summary:
Filmmaker Rohit Shetty has said whatever he's today is because of actor Ajay Devgn and added that Ajay has been a great support system.
[Ajay] is like my elder brother and that can never change."
Summary:
Canadian rapper and singer Drake has been criticised after a video of him kissing and fondling a 17-year-old girl during a 2010 concert resurfaced.
Summary:
The BJP Sunday appointed senior leader Rajnath Singh to lead the party's 20-member 'sankalp patra' (manifesto) committee for the 2019 Lok Sabha polls.
Summary:
Paytm apologised on Sunday after some users received a notification from its app consisting of 'hey' and random alphabets 'ghvkjfjg'.
Paytm later said, "We apologize for the test push notification some of you may have received.
Summary:
Officials suspect the miners died when boulders hit them as they were trying to extract coal.
Summary:
The complainant claimed that the accused called her to enrol for a policy.
Summary:
Christian Bale won Best Performance by an Actor in a Motion Picture Musical or Comedy for 'Vice' at the 76th Golden Globe Awards, while Lady Gaga's song 'Shallow' from 'A Star is Born' won Best Original Song.
Summary:
The match saw Sylhet Sixers' Warner getting run-out on 14, while Comilla Victorians' Smith got dismissed for a 17-ball 16.
Summary:
South Africa's captain Faf du Plessis has been suspended from playing in the third South Africa-Pakistan Test for maintaining a slow over-rate during South Africa's nine-wicket win in the second Test on Sunday.
Summary:
Taiwanese smartphone company HTC's revenue dropped to $770 million in 2018, which is its lowest to date, as per reports.
Summary:
Responding to the bent iPad Pro controversy, Apple in a new support page said, "[N]ew straight edges and presence of antenna splits (in iPad Pro) may make subtle deviations in flatness more visible".
Summary:
Over two million users' data was exposed after password management platform Blur suffered a data breach.
Summary:
US venture capitalist Jonathan Teo, who has been accused of harassment and defamation by a former employee of his firm Binary Capital, was served summons via Twitter on Saturday.
Summary:
Telangana BJP MLA Raja Singh on Sunday said he will not take part in the swearing-in ceremony in presence of pro-tem Speaker who is from AIMIM and whose party wants to 'vanish Hindus'.
Summary:
Criticising CM Pinarayi Vijayan for the law and order situation in Kerala, Union Minister Rajyavardhan Rathore said that Vijayan's one-sided statement is flaring up Kerala's situation.
"The...situation is very serious.
Summary:
Irani also accused Gandhi of "hurting" Parliament's and Union Minister Nirmala Sitharaman's dignity by allegedly 'winking' in the Lok Sabha.
Summary:
Hitting out at Congress President Rahul Gandhi, BJP President Amit Shah has said that while Rahul's family has a legacy of corruption, there isn't a single blot on PM Modi.
Summary:
The body further said if labelling is allowed, it will go against the government's decision to make e-commerce free of malpractices.
Summary:
Biju George Joseph, Inspector General (IG) of Police, Ajmer, was transferred to Jodhpur as commissioner.
Jodhpur range IG, Sanjib Kumar, will now be Ajmer IG, according to the state orders.
Summary:
A ministerial panel on Sunday allowed flood-hit Kerala to levy 1% calamity cess under GST for a period of two years to fund rehabilitation work.
Summary:
SBI spent â¹427.87 crore on Hindi ads, while it spent â¹131.37 crore on regional ads.
Summary:
After defaulting on salary payment to its senior management including pilots and engineers, cash-strapped Jet Airways has reportedly failed to disburse the December salary to some other categories of employees as well.
Summary:
Summary:
On being asked about the most embarrassing thing he walked into the locker room, batsman KL Rahul said it was awkward for him to see half-naked India cricketers roaming around dressing room.
Summary:
Indian cricketer KL Rahul, during his appearance on 'Koffee With Karan', revealed that he used to have a crush on Malaika Arora but added he doesn't have a crush on her anymore.
Summary:
India batsman KL Rahul, while appearing on 'Koffee with Karan', revealed his mother was quite unhappy about his choice of career as both his parents are professors and his sister is an engineer.
Summary:
Team India batsman KL Rahul, while appearing on the show 'Koffee With Karan', revealed that his parents were the happiest when he got a "stable" job with the Reserve Bank of India a couple of years ago.
Summary:
Speaking about her parents' divorce, actress Sara Ali Khan said, "In many ways, I'm glad my parents weren't together...I know they would've never been happy together." "Having two happy parents in different homes is much more preferable than two unhappy parents in the same home," she added.
Summary:
Indian football team captain Sunil Chhetri scored twice as India opened their Asian Cup 2019 campaign with a 4-1 victory over Thailand in Abu Dhabi on Sunday.
Summary:
Team India batsman KL Rahul, while appearing on 'Koffee With Karan', suggested that captain Virat Kohli needs to go on a holiday.
On being asked who he thought should go for therapy, Rahul said, "I think Virat.
Summary:
Pakistan International Airlines (PIA) has reportedly warned its cabin crew members with "excess weight" to lose weight within six months or face the risk of being grounded.
Summary:
Rapper Divine, on whom the film 'Gully Boy' is loosely based, has said he can't take credit for the film's lead actor Ranveer Singh's "smooth rap delivery".
'Gully Boy' is scheduled to release on February 14.
Summary:
Summary:
Praising Jasprit Bumrah, former Indian cricketer Sachin Tendulkar said, "I can say that he is a complete bowler.
Summary:
South Africa registered a nine-wicket win over Pakistan in the second Test in Cape Town to take an unassailable 2-0 lead in the series.
Summary:
US hotel giant Marriott has said 383 million guest records were affected in a cyber-security breach at its Starwood unit.
Summary:
BJP MP Udit Raj has said that BJP's decision to cook 5,000 kg of khichdi for its Bhim Mahasangam Vijay Sankalp rally on Sunday won't translate into electoral gains.
Summary:
Shiv Sena on Sunday said it would oppose the Citizenship (Amendment) Bill 2016 in Parliament.
Summary:
Union Minister Smriti Irani accused the CPM-led Kerala government of detaining those who are raising voices against it.
Above 3,170 people were detained," Irani said.
Summary:
Taxi drivers including Ola and Uber drivers in Bengaluru have opposed the central government's move to install GPS systems and emergency panic buttons in vehicles for passengers.
Summary:
India and US-based AI data analytics startup Fractal Analytics is reportedly in talks with Apax Partners to raise over $200 million.
Summary:
According to the Department of Land and Natural Resources Hawaii, Achatinella apexfulva was the first of over 750 land snails of the region described in Western medicine.
Summary:
Prasad said with linkage of Aadhaar-driving licence, the guilty cannot change his/her biometrics and fingerprints.
Summary:
Uttar Pradesh Special Task Force (STF) has arrested four people and recovered 1,305 smartphones worth â¹1.31 crore which were robbed by the gang to which the accused belong, an official said.
Summary:
Maoists shot dead a watchman, suspecting him to be a police informer, in Odisha's Kandhamal district, police said on Sunday.
Summary:
At least 10 people returning from KeralaâÂÂs Sabarimala temple were killed in a road accident in Tamil NaduâÂÂs Pudukkottai on Sunday.
Summary:
According to budget documents, Air India will receive â¹3,000 crore in the current fiscal from the NSSF.
Summary:
US President Donald Trump on Saturday took to Twitter to say that drugmakers are not "living up to their commitments on pricing." "[The drugmakers are] not being fair to the consumer, or to our Country!" he added.
Summary:
Garg further said the government is trying to work with RBI towards better management of NBFCs.
Summary:
Fatima Sana Shaikh, on being asked how Aamir Khan is being an influence as far as her career is concerned, said, "We talk about scripts and characters but I won't ask him what I'm lacking in as an actor." Fatima has worked with Aamir in 'Dangal' and 'Thugs of Hindostan'.
Summary:
Johnny Depp's ex-wife Amber Heard has alleged the actor had an alter-ego they called 'the monster' which used to emerge when he 'beat' her.
Summary:
Recalling getting out at 99 after slog sweeping in a Test against New Zealand in 2001, ex-Australia leg-spinner Shane Warne said he still "genuinely" asks himself why he didn't go for a single.
Summary:
Chinese gay dating app 'Blued' has stopped new users' registration for a week after a report claimed that its underage users caught AIDS-causing virus HIV after going on dates.
Summary:
Pakistan PM Imran Khan's political party Pakistan Tehreek-e-Insaf (PTI) took to Twitter to compare his 'Naya Pakistan' with PM Narendra Modi's India.
Summary:
Ten thieves wearing Santa Claus masks to avoid being recognised through the CCTV footage looted 14 shops in Gurugram on Friday morning.
Summary:
Student organisations and indigenous groups have called for an 11-hour bandh across the northeastern states on January 8 from 5 am-4 pm in protest against Centre's decision to table Citizenship (Amendment) Bill, 2016 in Parliament.
Summary:
Around 200 police personnel went to Karnataka's Kattigenahalli village on Saturday to arrest a father-son duo who smuggled sandalwood.
Summary:
Congress President Rahul Gandhi demanded Defence Minister Nirmala Sitharaman to prove the Modi government has given â¹1 lakh-crore worth of orders to Hindustan Aeronautics Limited, or resign.
Summary:
The US police have accused a 32-year-old woman of pretending to be a homeless teenager in order to enrol in high school despite having a diploma.
Summary:
Villagers had dug the 220-foot deep but makeshift shaft in a river bed to hunt for gold and were caught in its collapse.
Summary:
Christian Maire, who led a group that lured young girls into performing sexual acts online, was attacked by seven other inmates and died after being taken to hospital.
Summary:
AR Rahman, who turned 52 on Sunday, said, "I feel the desire to give back, nurturing some of the younger generations and also spend time learning and refining many things I do not know." Talking about celebrating his birthday, he said, "[I will] just spend time with family and friends.
Summary:
Sharing a picture with Kangana Ranaut, Raveena Tandon wrote, "With the one who started it all...Kangana Ranaut got us out of our slumber and onto the airport catwalk!
Summary:
Former Australia captain Ricky Ponting criticised the Australian team's mindset, saying, "There's no desperation there whatsoever." Ponting made the comments after Nathan Lyon and Mitchell Starc did not opt for DRS following Lyon's LBW dismissal off Kuldeep Yadav.
Summary:
[W]e thought hard as to where we went wrong," Arun said.
Summary:
The malware had reportedly affected 10 million Android users in 2017.
Summary:
The government will reportedly form an inter-ministerial panel to roll out In Flight and Maritime Connectivity (IFMC) services by March.
Summary:
Calling Congress an "insignificant force" in Uttar Pradesh, Samajwadi Party (SP) national Vice-President Kiranmay Nanda on Sunday said that it does not need Congress to defeat BJP in the state.
Summary:
Senior advocate HS Phoolka on Sunday responded to speculations of him joining BJP following a meeting with Union minister Vijay Goel, saying, "Meeting Vijay Goel is no news." "We are good friends and meet often...He has been helping me in 1984 Sikh Genocide cases," he added.
Summary:
A day after reports claimed that he may be investigated by the CBI in an illegal mining case, Samajwadi Party chief Akhilesh Yadav has said the ruling BJP showed its true colours.
Summary:
The SP-BSP alliance is strong enough to defeat BJP in UP, SP National Vice President Kiranmoy Nanda said.
Summary:
Talking about Andhra Pradesh CM Chandrababu Naidu, PM Narendra Modi on Sunday said, "The chief minister is...fixated with the rise of his own son." "He does not realise how his policies and corruption can lead to sunset of the state," he added.
Summary:
"Khaira started revolting against party since post of LoP (Leader of Opposition) in Punjab was given to a Dalit leader," Sisodia tweeted.
Summary:
Union HRD Minister Prakash Javadekar after chairing a meeting of NCERT General Council on Saturday said there will be "10-15 % reduction" in the curriculum from the academic year 2019-20.
Summary:
The girls allegedly ended their life as they were upset after being scolded by their mother, police said.
Summary:
A parliamentary panel has asked the Reserve Bank of India (RBI) to address the issue of dysfunctional ATMs to avoid any situation of a forced cash crunch.
Summary:
Addressing a joint session of Parliament a day before the Interim Budget will be presented, President Ram Nath Kovind said the Indian Air Force will soon fly "ultra-modernâ Rafale jets" to strengthen its capabilities.
Summary:
Reliance Industries' Chairman Mukesh Ambani's daughter Isha Ambani has featured on the cover of the February edition of Vogue India.
Summary:
The US had in November granted a six-month waiver to India from sanctions against Iran and restricted the country's monthly intake of Iranian oil to 3,00,000 barrels per day.nn
Summary:
India batsman Cheteshwar Pujara's father Arvind Pujara couldn't see his son's 373-ball 193-run knock in the Sydney Test as he had to fly out of Rajkot for a cardiac procedure in Mumbai's Holy Family Hospital.
Summary:
Apple, which never attends technology event CES, has put up an advertisement near the event's Las Vegas venue, to take a dig at its rival companies over user privacy.
Summary:
Railways plans to implement the process at 202 more stations, Railway Protection Force Director General Arun Kumar said.
Summary:
Awdesh Yadav, a resident of Jharkhand's Barmasia, escaped with his wife after allegedly killing his father Ramvilash Yadav on Friday night over a property dispute.
Summary:
The girls had fruit salad followed by dinner in their hostel on Saturday and were taken to hospital after they vomited today morning, police said.
Summary:
"The lease is still valid and subsisting", said a public notice released by the SMKT.
Summary:
Summary:
Summary:
Former Team India captain MS Dhoni visited the Deori temple in Ranchi to offer prayers ahead of the upcoming ODI series against Australia.
Summary:
[F]eels like I'm starting all over again." "[H]ad my 34th birthday a few weeks ago and to have not played for a number of years...
Summary:
Last year, Ajinkya Rahane led Rajasthan Royals to the knockout stage of the tournament.
Summary:
Attacking BJP, senior Congress leader Shashi Tharoor said, "Some allies of BJP are now beginning to desert the sinking ship." This is a "telling sign that all is not well within the alliance", he added.
Summary:
One of the pictures showed Tejashwi touching Tej's feet.
Preparations are on and victory is necessary," Tej tweeted.
Summary:
BJP ally Lok Janshakti Party (LJP) leader Chirag Paswan has stated that "contentious issues like Ram Temple" harms the NDA.
"I had said this even when results of the three (Chhattisgarh, Rajasthan and Madhya Pradesh) states came out," he added.
Summary:
Janata Dal United JD(U) spokesperson Rajiv Ranjan has said that the party chief and Bihar Chief Minister Nitish Kumar can also be a Prime Ministerial face for the forthcoming polls.
Summary:
West Bengal BJP President Dilip Ghosh on Saturday said that CM Mamata Banerjee has the "brightest chance" to be the PM if selection was made from Bengal.
Summary:
Punjab MLA Sukhpal Singh Khaira on Sunday resigned from the primary membership of AAP, alleging that the party had "totally deviated" from the ideology and principles on which it was formed post the Anna Hazare movement.
Summary:
A day after saying that West Bengal CM Mamata Banerjee has the brightest chance from Bengal to be PM, state BJP chief Dilip Ghosh said there is no possibility of that happening.
Summary:
SpaceX CEO Elon Musk on Saturday in a tweet posted an "illustration" of what the company's Starship test vehicle, which is currently being assembled, will look like when finished.
Summary:
The Kerala Forest Department on Saturday opened online registration for women to trek Agastyaarkoodam.
Summary:
The Associated Journals Limited (AJL), the publisher of National Herald newspaper, has moved a division bench of the Delhi High Court challenging a single-judge bench's order directing it to vacate the Herald House.
Summary:
Finance Minister Arun Jaitley has said using Aadhaar has helped the government save around â¹90,000 crore till March 2018 by eliminating duplicate, non-existent and fake beneficiaries.
Summary:
The trooper had locked himself inside a bathroom and shot himself dead with his service rifle, after injuring his colleagues, police added.
Summary:
Lenders of cash-strapped Jet Airways have reportedly asked promoter Naresh Goyal to submit a formal revival plan by January 21.
Summary:
Seven of the eleven candidates who scored a perfect 100 percentile in the Common Admission Test (CAT) 2018 are from Maharashtra, said Sumanta Basu, CAT Convener 2018.
Summary:
Sara Ali Khan, on being asked why she doesn't send a message on Instagram to Kartik Aaryan, whom she had confessed to having a crush on, jokingly said, "Mom said you must wait.
Summary:
Australia ended the rain-curtailed fourth day of the Sydney Test at 6/0 in the second innings, trailing India by 316 runs.
Summary:
England were the last team to achieve the feat, having done it during the Test that started on January 29, 1988.
Summary:
Rohit shared lyrics of the song, writing, "This [song's] video never fails to give me goosebumps."
Summary:
Indian Olympic Association President Dr Narinder Dhruv Batra has requested Haryana Sports Minister Anil Vij to stop intimidating and threatening 2018 Youth Olympic Games gold medallist Manu Bhaker.
Summary:
BJP President Amit Shah will address the rally being held to showcase BJP's reach within the Dalit community in Delhi.
Summary:
Amid violent protests in Kerala after two women aged below 50 years entered Sabarimala Temple, the UK has updated its travel advisory to India warning its citizens to avoid large public gatherings in the state.
Summary:
A 42-year-old man was arrested for accidentally shooting to death his 8-year-old son during a celebratory firing in Delhi, police said.
Summary:
The Home Ministry rejected the highest proportion of RTI requests, 15% of the nearly 58,000 applications it had received, according to the annual report released by Central Information Commission.
Summary:
US Department of Defence Chief of Staff Kevin Sweeney has resigned days after Defence Secretary James Mattis' exit.
Summary:
A US woman, who pepper-sprayed a dog after the canine attacked her while she was jogging through a park in Oakland, was bitten by its owner, a 19-year-old girl.
Summary:
Fatima Sana Shaikh will be starring opposite Shah Rukh Khan in the upcoming biopic on astronaut Rakesh Sharma who was the first Indian to go to space in 1984, as per reports.
Summary:
Karan and Saher's debut film is being produced by the Deol family's production house Vijayta Films.
Summary:
Summary:
Summary:
Former Indian cricketer Sunil Gavaskar has said that Virat Kohli can be the best captain the Indian team has ever had.
Summary:
Former Australian spinner Shane Warne congratulated Kuldeep Yadav on picking up five wickets in Australia's first innings in the Syndey Test.
Summary:
Mir added that he will forward his formal resignation to the party on Sunday.
Summary:
Senior Samajwadi Party leader Ram Gopal Yadav has said party patriarch Mulayam Singh Yadav will contest the 2019 Lok Sabha elections from Mainpuri constituency.
Summary:
The investigation team found the charges against them to be true.
Summary:
Road Transport Minister Nitin Gadkari on Saturday inaugurated or laid the foundation stone for six road projects worth over â¹5,300 crore in Jodhpur.
Summary:
Human Resource Development Minister Prakash Javadekar has announced that states will now be graded on their performance in education on the basis of 70 parameters.
Summary:
Electronics and Information Technology Minister Ravi Shankar Prasad on Saturday said, "We are planning to bring Data Protection Law to protect personal and professional sensitive data of individuals of India." He added that the law will prevent misuse of data in "foreign countries by Google".
Summary:
The Breakthrough Science Society on Saturday condemned the 'Kauravas were test tube babies' claim made by Andhra University Vice-Chancellorâ G Nageswara Rao, calling it "chauvinistic claims".
Summary:
The election in DRC was held on December 30 after more than two years of delay.
Summary:
Late actor Kader Khan's elder son Sarfaraz Khan said his father tried to kiss him during his last days, but failed as he couldn't lift himself up at the hospital.
Summary:
A stranger found her phone and returned it to her, which she called "miracle".
Summary:
The more responsibility you give him at the number, he will convert a lot of those 30s and 40s into 100s," Gavaskar added.
Summary:
Haryana CM Manohar Lal Khattar has said 2018 Youth Olympics gold medallist Manu Bhaker will get the â¹2-crore reward as promised last year but criticised the shooter for tweeting about the matter.
Summary:
After laying foundation stone for six irrigation projects in Odisha, PM Narendra Modi said, "Our government preferred to complete the irrigation projects instead of waiving loans." "The previous government first made the farmer take a loan and is now doing the drama of loan waiving.
Summary:
A 21-year-old woman in Haryana's Charkhi Dadri underwent sex change to marry her 19-year-old girlfriend.
Summary:
A Rajasthan court recently annulled the marriage of a 19-year-old girl, who was married off to a boy in 1999 when she was just 10 months old.
Summary:
The fresh loan is subject to the bank satisfactorily completing a forensic audit of the airline's books, reports added.
Summary:
Addressing the income tax raids on multiple Kannada film stars and producers, Karnataka CM HD Kumaraswamy said there was no political motive behind the raids.
Summary:
Actor Prakash Raj on Saturday confirmed he would be contesting in the 2019 Lok Sabha elections from Karnataka's Bengaluru Central constituency, as an independent candidate.
Summary:
Bengaluru Bulls beat Gujarat Fortune Giants in the Pro Kabaddi Season 6 final in Mumbai on Saturday to lift their maiden trophy.
Summary:
Grove, the oldest participant in the event, had won the men's 90-94 sprint title in July.
Summary:
Federer, who is the first person in history to win the Hopman Cup on three occasions, helped Switzerland retain the title this year.
Summary:
Rohit Danu, Indian Arrows' 16-year-old footballer, became the youngest goal-scorer in the I-League after helping his side win the match against Aizawl FC.
Summary:
"Coalition can't give a strong government.
Congress-led coalition has forgotten...that people want a strong government, not a helpless one," he added.
Summary:
BJP MLA Ajit Kumar in a letter to Uttar Pradesh CM Yogi Adityanath said the party may face "unimaginable consequences" if corruption of officials in the state's Sambhal district isn't controlled.
Summary:
Taking a dig at Naveen Patnaik-led Odisha government, Oil Minister Dharmendra Pradhan said the people of Odisha want a change in leadership.
Summary:
The researchers developed a centrifuge system where beans could be sprouted in varying amounts of gravity.
Someday that'll...be possible," a researcher said.
Summary:
Union Minister Smriti Irani on Saturday said female scientific community is the "largest minority" in India while inaugurating the eighth edition of the Women Science Congress.
Summary:
Police have arrested a five-year-old boy's aunt and two male cousins after his body was found dumped in a pond, 50 metres from his residence in West Bengal.
Summary:
Kerala PWD Minister G Sudhakaran on Saturday said the Sabarimala templeâÂÂs head priest is not a 'pure' Brahmin but a âÂÂBrahmin monsterâ for conducting a âÂÂpurificationâ ceremony at the temple.
Summary:
He also announced seed money worth â¹15,000 for new SHGs and â¹3,000 to purchase smartphones for digital empowerment.
Summary:
DarwinâÂÂs theory spoke only about evolution from marine animal to a human, Rao said.
Summary:
The United Nations has called for an independent and impartial investigation into the recently held general elections in Bangladesh amid accusations of violence and voting irregularities.
Summary:
Among those taken hostage was the captain of the vessel, the embassy added.
Summary:
Edinburgh Zoo scientists discovered DNA of the woolly mammoth, a species extinct for around 10,000 years, in Cambodian market items while performing genetic analysis to look for illegal trade of elephant ivory.
Summary:
Insurgents belonging to the Arakan Army (AA) killed 13 police officers in Myanmar's violence-hit Rakhine State on Friday as the country marked its Independence Day. Over 200 insurgents from the AA attacked four police posts in the Buthidaung area.
Summary:
Actress Aishwarya Rai Bachchan while recalling her 'sudden engagement' with Abhishek Bachchan in 2007 said, "We're South Indians, so, I don't know what a 'roka' is." She added, "Suddenly there is this call from their house to ours; 'we are coming'." After Bachchan family arrived at their house, Aishwarya asked her mother, "Is this an engagement?
Summary:
India off-spinner Ravichandran Ashwin took to Instagram to share a 'Statue of Patience' meme of batsman Cheteshwar Pujara after the latter's 373-ball 193-run knock against Australia in the Sydney Test.
Summary:
Explaining how to pronounce his name, Australia's South Africa-born all-rounder Marnus Labuschagne said, "My wife says..this is how we should explain it...Lah-boo-shane like champagne...That's the perfect pronunciation." He further said that the South African pronunciation is "Lah-boo-skuhk-knee".
Summary:
The investors cited media reports placing Musk in the company of Grimes, and rapper Azealia Banks, around the time of the tweet.
Summary:
Apple, which was the world's most valuable public company three months ago, lost about $450 billion in market capitalisation from October 3, 2018, to January 3, 2019.
Summary:
Taking a dig at Congress over AgustaWestland scam, PM Narendra Modi during his address in Odisha said, "Samajh nahi aata ki Congress ne sarkar chalayi hai ya apne Michel mama ka darbaar".
Summary:
Goa Congress on Saturday wrote to President Ram Nath Kovind to provide enhanced security to CM Manohar Parrikar as he allegedly has files on Rafale deal.
Summary:
Summary:
A seven-year-old boy in Maharashtra's Palghar died on Saturday after his leg got stuck in a gap between an elevator and its shaft in the building where he lived.
Summary:
Following the incident, emergency services, including a search helicopter, were deployed.
Summary:
The door locks of the house were broken and cupboards were ransacked.
Summary:
A fight between two large groups of people at the alley led to the shooting, as per witnesses.
Summary:
A 28-year-old US babysitter who allegedly killed a 2-month-old boy and then pretended he was alive has been charged with murder.
Summary:
Iran has said that India and other countries that were granted waivers from the US to import Iranian oil are not willing to buy even one barrel more from them.
Summary:
Nirav, reportedly seeking asylum in UK, claimed the Enforcement Directorate "falsely implicated" him for offences "backed by shallow claims".
Summary:
A petition was earlier filed by a lawyer in Bihar against Anupam Kher and other associated members of the film.
Summary:
Ayushmann Khurrana's wife Tahira Kashyap, who was earlier diagnosed with stage 1A cancer, took to Instagram to reveal she had completed her final session of chemotherapy.
In an earlier post, Tahira revealed that she would have to go through 12 sessions of chemotherapy.
Summary:
While speaking about the attention she has received following her acting debut, Sara Ali Khan said, "I donâÂÂt think I will ever let myself feel like a star." "The minute you do, others will stop seeing you in a favourable light," the 'Kedarnath' actress added.
Summary:
Diana Edulji, who is a member of the Supreme Court-appointed Committee of Administrators, questioned why the BCCI was in a rush to replace Ramesh Powar as the women's team's head coach.
Summary:
It was expected that Maradona would appear at the team's first game of the season on Saturday.
Summary:
Speaking about the relationship with ODI captain Mithali Raj, Indian women's T20I captain Harmanpreet Kaur said, "I don't think there has been any problem between me and Mithali." "I can speak for myself...I have always respected her [Mithali] as a senior.
Summary:
Uttar Pradesh minister SP Baghel on Friday said the state government tried to invite West Bengal CM Mamata Banerjee for the Kumbh Mela, but failed to get an appointment.
Summary:
He further highlighted that PM Modi had promised two crore jobs to the youth every year.
Summary:
The collision will cause "cosmic fireworks", which are unlikely to affect Earth, researchers said.
Summary:
The United Nations Refugee Agency, UNHCR, has sought clarification from India over the circumstances under which a second group of Rohingya Muslims was deported to Myanmar earlier this week.
Summary:
Five teenage girls were killed in Poland on Friday after a fire broke out in a room where they were playing an 'escape room' game, officials said.
Summary:
The US is continuously evaluating the sanctions imposed on Iran as well as the waivers on the sanctions, US State Secretary Mike Pompeo said.
"The sanctions and waivers are for six months.
Summary:
Perera overtook Sanath Jayasuriya, who had slammed 11 sixes in an ODI against Pakistan in 1996.
Summary:
Padma Shri Arunima Sinha, who became the world's first woman amputee to climb Mount Everest in 2013, has now conquered Mount Vinson, making her the world's first woman amputee to scale Antarctica's highest peak.
Summary:
During the discussion on the Rafale deal in the Lok Sabha on Friday, Speaker Sumitra Mahajan told Congress leaders, "Aap baithiya na.
Summary:
Stating that in March, he'll complete two years in power as the Uttar Pradesh CM, Yogi Adityanath tweeted that no riots took place in the state during his tenure.
Summary:
Nobel laureates, including biochemist Avram Hershko and physicist Duncan Haldane, lowered a time capsule 10 feet into the ground on the second day of the 106th Indian Science Congress.
Summary:
Following the court hearing, Michel was sent to judicial custody till February 26.
Summary:
The neighbours said that the family was unable to pay loans due to failed crops.
Summary:
The CBI raided 12 places across Delhi and Uttar Pradesh, including the residence of a senior IAS officer in Lucknow, in connection with the multi-crore mining scam in UP's Bundelkhand.
Summary:
Girls returning to school after the Christmas break in Kenya's Narok County are undergoing compulsory tests for pregnancy and female genital mutilation (FGM).
Summary:
The government will present a bill on the amendment to the Senior Citizens Act, 2063 (2006) with such a provision.
Summary:
Kiyoshi Kimura bought the 278 kg fish for over twice the previous record of $1.4 million, which he paid in 2013.
Summary:
Fugitive diamantaire Nirav Modi in his response to a PMLA court said all his dealings with PNB were "civil transactions" that had been "blown out of proportion".
Summary:
US Federal Reserve Chairman Jerome Powell on Friday said he would not quit if asked to resign by President Donald Trump.
Summary:
While speaking about the films she has acted in, Alia Bhatt said, "I would like to think that most of my films are enjoyed across age groups." "I feel the kids connect with me through the various projects that I take on," the actress added.
Summary:
The producer had accused Alok Nath of rape and sexual harassment in a Facebook post shared in October, 2018.
Summary:
Rajkummar Rao has said that he has never left and will never leave a film because of money, adding, "I never wanted to be an actor because I wanted to earn a lot of money." "My reason was only my love for my work...I've never thought or talked about money," he further said.
Summary:
Speaking about the controversy surrounding his upcoming film 'The Accidental Prime Minister', actor Akshaye Khanna said, "What you call controversy, I am calling a debate." "In a democratic country, the debate should be on," the actor added.
Summary:
He plays the fast bowlers with ease and hits them for boundaries," Ganguly said about Pant.
Summary:
The more you play with red ball the more you can improve," Yadav said after having picked three wickets in the Sydney Test so far.
Summary:
Praising India's wicket-keeper Rishabh Pant, former Australian wicket-keeper Adam Gilchrist said that he would happily pay to watch Pant play.
Summary:
PM Narendra Modi on Saturday said, âÂÂFarmers are a vote bank for Congress, while we consider them 'annadata' (provider of food)." "The Congress government first forced the farmers to take loans and is now misleading them in the name of loan waivers," he added.
Summary:
Traders' body CAIT met with Commerce Minister Suresh Prabhu on Thursday to condemn the joint opposition by e-commerce giants Amazon and Flipkart of the recently revised FDI policy in e-commerce, calling it "economic terrorism".
Summary:
A 30% 'Angel Tax' is levied on investments above "fair value" of startups by external investors.
Summary:
Maharashtra CM Devendra Fadnavis on Saturday said, âÂÂEven if reservation is given to all the communities, the government cannot give jobs to 90% of youth." He added that the government can only give 25,000 jobs per year and that reservation is not a solution.
Summary:
At least seven people, including a 5-year-old child, were killed after a cylinder blast caused part of a factory building to collapse in Moti Nagar on Wednesday.
Summary:
PM Narendra Modi has laid the foundation of several irrigation projects, including the revival of Mandal Dam project worth â¹2,391.36-crore, in Jharkhand.
Summary:
Chinese President Xi Jinping has called upon the armed forces to be ready for war as the world "is facing a period of major changes never seen in a century".
Summary:
After shooter Manu Bhaker asked Haryana Sports Minister Anil Vij whether the â¹2-crore cash reward promise was just a 'jumla', he tweeted, "Bhaker should feel sorry for creating this controversy...She should focus on her game only." "Bhaker will will will get 2 crores," he added.
Summary:
As many as 11 candidates scored perfect 100 percentile, with all of them being male and from engineering or technology background.
Summary:
Spinners Kuldeep Yadav and Ravindra Jadeja picked up five wickets as Australia ended the third day of the fourth Test in Sydney at 236/6 on Saturday, trailing India by 386 runs.
Summary:
Auction house Sotheby's India MD Gaurav Bhatia has resigned about a month after he went on a "leave of absence" following allegations of sexual misconduct.
Summary:
Journalist and former AAP leader Ashutosh has hinted that AAP and Congress will form an alliance in Delhi for the Lok Sabha elections.
Summary:
West Bengal Chief Minister Mamata Banerjee on Friday posted a video of herself playing badminton on Twitter.
The 32-second video, which ends with Mamata losing a point, was captioned, "We love sports.
Summary:
Come, touch it.
If you are a man, come and touch it," Aiyer dares the protestors.
Summary:
As many as six children and a driver were killed after a school bus fell into a gorge in Sirmaur district of Himachal Pradesh on Saturday.
Summary:
Police officials said that the piece of wood that was unsecured flew off another truck and struck the vehicle.
Summary:
A UK court last month said Mallya can be extradited to India to face fraud charges.
Summary:
Hindustan Aeronautics Limited (HAL) has been forced to borrow around â¹1,000 crore to pay salaries to its employees, as per a report.
Summary:
Summary:
Talking about Vidya's role in the remake, Boney said that her character has been written according to the Tamil market.
Summary:
Rohit Shetty, who was criticised for using a subject like rape for the redemption of a corrupt police officer in 'Simmba', said, "At this point in my career...I don't require a plot...like this to sell my product." "The film has been censored without a single cut," added Rohit.
Summary:
India's cricketers on Saturday presented former Australian cricketer Glenn McGrath signed pink caps, while also donning attires with the same colour in memory of the former cricketer's late wife Jane.
Summary:
Indian batsman Shreyas Iyer said that playing in the Ranji Trophy is more difficult than playing for India A.
Summary:
Former Madhya Pradesh Chief Minister Shivraj Singh Chouhan on Friday said he is not in any race for Leader of Opposition post in Madhya Pradesh.
Summary:
Summary:
Gurugram-based online used-phone selling startup Cashify has acqui-hired Chandigarh-based hyperlocal gadget repairing platform Teksolvr.
Summary:
Initial data analysis of Ultima Thule, the farthest cosmic object ever explored, by New Horizons spacecraft has found no signs of an atmosphere yet, NASA said.
Summary:
Summary:
She said she hadn't revealed the incident earlier because she was afraid of being expelled from the class.
Summary:
A Mumbai-based medical aspirant, who was reportedly preparing for the entrance examination for Doctor of Medicine (MD) course, allegedly committed suicide on Saturday.
Summary:
On being asked if India will see a Maharashtrian PM by 2050, Maharashtra CM Devendra Fadnavis on Friday said, "By 2050...more than one Maharashtrian would occupy PM's post.â "If anyone has really ruled India...it is Maharashtrians and we have the capability to reach Attock," he added.
Summary:
As many as 40 lakh government workers in Uttar Pradesh will go on strike from February 6 to demand the restoration of old pension schemes, said Harikishor Tiwari, convenor of the old pension restoration forum.
Summary:
China's relations with India are on a "fast track" and "have shown a sound momentum of improvement with frequent high-level exchanges" under the leadership of PM Narendra Modi and Chinese President Xi Jinping, Chinese Foreign Ministry spokesperson Lu Kang said.
Summary:
The Iranian Navy will deploy warships in the Atlantic Ocean from March amid tensions with the US.
Summary:
Former Windies' captain Brian Lara named his first daughter as Sydney after the city where he went on to convert his maiden Test ton into a double hundred on January 5, 1993.
Summary:
The first-ever One Day International was an impromptu one, played between England and Australia in Melbourne on January 5, 1971.
Summary:
Surat-based Chintan, a web designer, and his fiancee Arzoo have created a WhatsApp-themed invitation card for their wedding.
Summary:
Jadeja started celebrating thinking the catch was taken, however, Rahul gestured the ball landed short.
Summary:
India batsman Cheteshwar Pujara has revealed that off-spinner Ravichandran Ashwin and team's fitness trainer Shankar Basu gave him the nickname 'White Walker', which is a humanoid creature in TV series 'Game of Thrones'.
Summary:
Greek female tennis player Maria Sakkari stole 20-time men's Grand Slam champion Roger Federer's towel to keep it as a souvenir after defeating him in a mixed doubles match at Hopman Cup. After shaking hands with Federer, the 23-year-old noticed he left a towel on his seat.
Summary:
Ex-JD(U) MLA Raju Singh, who was arrested for shooting a woman during a New Year party at his farmhouse in Delhi's Mandi village, was dancing with a pistol in one hand and drink in the other, DJs at the party told police.
Summary:
Congress President Rahul Gandhi on Friday said Defence Minister Nirmala Sitharaman gave a two-and-a-half-hour speech in Parliament but "ran away" from the questions he posed.
Summary:
The billionaire shared an article by a Forbes contributor that incorrectly said Tesla became America's number one premium carmaker.
Summary:
Summary:
A US woman in a coma for more than 14 years has given birth at a nursing facility in Arizona, sparking a sexual abuse investigation.
Summary:
US President Donald Trump has said he could declare a national emergency to build a wall along the Mexico border without the approval of Congress.
Summary:
Railway Minister Piyush Goyal has instructed officials that a tin plate saying, "No tips please, if no bill, your meal is free", along with a menu rate list should be displayed on trains by March.
Summary:
The government on Thursday removed the price control on innovative medicines developed by foreign companies for five years from the date of commencement of their commercial marketing.
Summary:
Ayushmann Khurrana has said being a "rule breaker" has been his "USP", adding, "It's important to be a rule breaker in this day and age." "And to do that, you've to be someone who defies the norms.
Summary:
Summary:
Ranveer Singh, who got married to Deepika Padukone in November last year, has revealed, "My wife and I will not have a film together this year." "The chemistry between us is extra special.
Summary:
Kangana Ranaut, who will be seen as Rani Laxmibai in her upcoming film 'Manikarnika: The Queen of Jhansi', said, "I don't think we make this kind of movies." "It's very unfortunate that in my 12 years of career, I never got to do a film which is about the love for the land.
Summary:
Vicky Kaushal, while responding to Katrina Kaif's comment that she would like to work with him, said, "I was surprised that she knows about my existence.
Summary:
The Congress has sought the names of party leaders from each assembly constituency of Rajasthan "who worked against party candidates" in the December 7 Assembly polls, state Congress chief and Deputy CM Sachin Pilot said.
Summary:
Summary:
As many as 27 people were killed in tiger attacks in 2018 Minister of State for Environment, Mahesh Sharma told Lok Sabha on Friday.
Summary:
Karnataka CM HD Kumaraswamy on Friday said, "Right To Education (RTE) is a bogus scheme and private institutions are minting money on a big scale in the name of RTE." He stated that the Kannada language has been vanishing due to English.
Summary:
The National Green Tribunal (NGT) on Friday imposed a â¹100 crore fine on Meghalaya government for failing to curb illegal mining in the state.
Summary:
Women and Child Development Ministry informed Lok Sabha that the calls received by child helpline in the last four years increased more than three-fold.
Summary:
As many as 237 people have been taken into preventive detention in connection with violence in Kannur and Pathanamthitta districts in Kerala, said the police.
Summary:
In a video released by Amnesty India, actor Naseeruddin Shah says, "Poore mulk me nafrat aur zulm ka bekhauf naach jari hai," adding those opposing it are suppressed.
Summary:
Amnesty India has released a video in which veteran actor Naseeruddin Shah says, "Where there once was law, there is now only darkness." "In the name of religion, walls of hate are being erected.
Summary:
'Bigg Boss 12' runner-up Sreesanth has revealed that his fellow participant Surbhi Rana once held show's winner Dipika Kakar Ibrahim's neck so hard that she fell but it wasn't shown on TV.
Summary:
The Bharat Army, the official Indian cricket supporters' group, has come up with a chant for wicketkeeper-batsman Rishabh Pant which includes references from banter in Australia-India Test series.
Summary:
Following his 373-ball 193-run knock in the fourth Test against Australia, India batsman Cheteshwar Pujara took to Twitter to thank Team India physio Patrick Farhart for helping in keeping him "up and running".
Summary:
Australia captain Tim Paine answered a journalist's phone on his behalf in the middle of a press conference after the fourth Test's second day on Friday.
"Tim Paine speaking...Who is it sorry?
Summary:
Shooter Manu Bhaker, who won gold in 2018 Youth Olympic Games, asked Haryana Sports Minister Anil Vij whether the â¹2-crore cash reward promise for her achievement was just a 'jumla'.
Summary:
Bhogle added Achrekar did so as he thought the attention might spoil the batsman.
Summary:
Shares of the world's first trillion-dollar public company, Apple, have fallen over 38% between October 2018 and January 2019, costing it over $450 billion in market capitalisation.
Summary:
CBI Joint Director V Murugesan who was leading investigations into corruption allegations against Special Director Rakesh Asthana has been transferred to probe coal scam cases, an internal order said Friday.
Summary:
Local media have called it the Chinese version of US' Massive Ordnance Air Blast (MOAB), which is often dubbed the "Mother of All Bombs".
Summary:
After a Japanese monk was fined by police for driving while wearing a robe, monks in the country have protested by posting videos showing them skipping, skating and juggling along with the hashtag 'I can do this in monks' robes'.
Summary:
Meng, who is facing extradition to the US, was released on a $7.4 million bail on December 11.
Summary:
Reports earlier suggested the release dates of several films were changed to avoid clashing with 'Thackeray'.
Summary:
Speaking about the controversy surrounding his upcoming film 'The Accidental Prime Minister', actor Akshaye Khanna said, "Any subject like this is bound to create a little...controversy." "I'd be surprised if it didn't happen.
Summary:
While speaking about his upcoming film 'Uri: The Surgical Strike', director Aditya Dhar said that the film is about fighting terrorism and isn't "anti-Pakistan".
Summary:
Bhojwani had earlier issued a public notice claiming ownership of the property.
Summary:
A rape case has been registered against Malayalam film producer Vaishak Rajan based on a complaint filed by a model.
Summary:
Following the announcement of Australia's ODI team for the upcoming series against India, Shane Warne wrote that according to him the selection does not make "any sense whatsoever".
Summary:
Former Australian wicket-keeper Adam Gilchrist congratulated Rishabh Pant on scoring a century on his mother's birthday.
Summary:
Australia's bowling coach David Saker revealed there was "some confusion" between captain Tim Paine and the Australian bowlers about the team's tactics against India on day one of the fourth Test.
Summary:
Personal data and documents of hundreds of German politicians, including Chancellor Angela Merkel, have been published online.
Summary:
Following his resignation from AAP, Senior advocate HS Phoolka on Friday said that converting the anti-corruption movement initiated by activist Anna Hazare into a political party (AAP) was "wrong".
Summary:
Researchers from the University of Illinois and the US Agricultural Department have 'hacked' the photosynthesis process to boost tobacco plant growth and productivity by 40%.
Summary:
A National Flag was hoisted on a 100-foot-tall pole at Hyderabad Railway Station on Friday.
Summary:
It appears to be a case of rash and negligent driving, a police official said.
Summary:
Public broadcaster Prasar Bharati has decided to close All India RadioâÂÂs National Channel as part of its âÂÂcost-cutting measuresâ and to âÂÂrationaliseâ services.
Summary:
Swedish telecom equipment maker Ericsson has asked the Supreme Court to prevent Reliance Communications (RCom) Chairman Anil Ambani from leaving India till â¹550 crore dues owed to it are cleared.
Summary:
Singer Neha Kakkar took to Instagram to share she is suffering from depression, saying negative people have been successful in giving her "worst days" of her life.
Summary:
Talking about meeting Australia captain Tim Paine's wife and children at Australia Prime Minister Scott Morrison's official residence on New Year's Day, India wicketkeeper-batsman Rishabh Pant said it was "lovely meeting them".
Summary:
The Dutch subsidiary is used to shift revenue from royalties earned outside America to Google Ireland Holdings, an affiliate based in Bermuda, where companies pay no income tax.
Summary:
Defence Minister Nirmala Sitharaman ended her two-hour Lok Sabha speech on Friday saying, "Bofors was a scam that brought Congress down...Rafale will bring Modi back to make a new India." Sitharaman added Congress should "do homework" on Rafale before levelling allegations.
Summary:
Congress President Rahul Gandhi mistakenly referred to Emmanuel Macron as France's "ex-President" during the Lok Sabha debate and said, "I make mistakes...he is the current President." Rahul said Macron told him Rafale jet pricing was not part of the secrecy pact between India and France.
Summary:
The government has said that it's on track to meet its official March 31 target to electrify every home.
Summary:
Manoj was part of a police team stationed at Alianekpur tri-junction following a tip-off regarding two criminals.
Summary:
The Supreme Court on Friday reprimanded the CBI for its failure to produce a witness in a 1983 case and said "a person facing trial for 35 years is itself a punishment".
That too, you are the CBI," the court said.
Summary:
While speaking about dealing with the attention she has received following her acting debut, Sara Ali Khan said, "I go back home as a normal girl to a normal household." The 'Kedarnath' actress added that this allows her to keep the attention from getting to her head.
Summary:
The poster for the film, starring actor Vivek Oberoi, will reportedly be released on January 7.
Summary:
Former Australian captain Steve Waugh praised pacer Jasprit Bumrah, saying, "Bumrah has been a revelation, he's been the difference between the two sides.
Summary:
Rishabh Pant, who became the first Indian wicket-keeper to score a Test ton in Australia, said that he was 'nervous' when he reached the 90s in his innings which finished at an unbeaten 159.
Summary:
Former Australian captain Michael Clarke said that Indian batsman Cheteshwar Pujara reminds him of former world number one Test batsmen Sachin Tendulkar and Brian Lara.
Summary:
Former Australian captain Ricky Ponting said that Indian wicket-keeper Rishabh Pant will make more Test centuries than former Indian captain and wicket-keeper MS Dhoni.
Summary:
The security guards at the sidelines during the Manchester City-Liverpool match chased City defender Benjamin Mendy mistaking him for a pitch invader after he ran towards his teammates to celebrate their win.
Summary:
World BankâÂÂs Chief Economist Pinelopi Koujianou Goldberg has said, "This fear that robots have eliminated jobs...this fear is not supported by the evidence so far." The World Development Report 2019 said rise of jobs in the industrial sector in East Asia has compensated for job losses in advanced economies.
Summary:
Google parent Alphabet's life sciences division Verily has announced a $1 billion investment round led by private equity firm Silver Lake.
Summary:
Union Minister Smriti Irani on Friday said that Congress President Rahul Gandhi is frequently visiting his parliamentary constituency, Amethi, as BJP's efforts have made him nervous.
Summary:
BJP MP Meenakshi Lekhi has claimed that the two women who entered Kerala's Sabarimala temple on Wednesday were disguised as transgenders.
"Women posing as transgenders were made to enter the temple at 1 am.
Summary:
Punjab CM Captain Amarinder Singh on Friday called PM Narendra Modi a master of "deceit and disinformation".
Summary:
The funding round saw participation from existing investors Kalaari Capital, Perceptive Advisors and Romulus Capital.
Summary:
"We're making these tools to understand how different parts of the brain work," lead researcher Philipp Gutruf said.
Summary:
China's rover Yutu-2, or Jade Rabbit-2, has left the first-ever 'footprint' on far side of the Moon, Chinese officials said.
Summary:
The incident happened when the truck's driver lost control of the vehicle and the truck overturned and fell on the two cars, police said.
Summary:
Addressing a gathering in Assam's Silchar, PM Narendra Modi said that no Indian citizen will be left out of the National Register of Citizens (NRC).
Summary:
Adelaide Strikers' 20-year-old Afghan leg-spinner Rashid Khan has revealed that his family encouraged him to stay in Australia and play Big Bash League for his father, who passed away on Sunday.
Summary:
He further said the EC is responsible for conducting polls, not the government.
Summary:
The Supreme Court on Friday deferred the Ayodhya land dispute case to January 10 in a hearing that lasted just 60 seconds and did not see any arguments from either side.
Summary:
Kerala Police have confirmed that Sasikala, a 46-year-old Sri Lankan woman, visited the Sabarimala temple with her husband at around 11 pm on Thursday, which can be seen in CCTV footage.
Summary:
Economic Affairs Secretary SC Garg has denied reports that the RBI stopped production of â¹2,000 notes.
"There has been no decision regarding â¹2,000 note production recently," he added.
Summary:
A lioness in Gujarat's Gir Forest has "adopted" a leopard cub separated from its mother, according to officials at the sanctuary.
Summary:
Speaking during the Lok Sabha debate over the Rafale deal, Defence Minister Nirmala Sitharaman has said, "There is a difference between defence dealings and dealing in defence." "We deal in defence with national security as a priority.
Summary:
Saudi women will from Sunday receive a text message when a court issues their husbands divorce decrees, according to a new Justice Ministry regulation.
Summary:
China's Huawei demoted two employees by one rank and reduced their monthly salaries by 5,000 yuan (â¹50,800) for a New Year's greeting tweeted from Huawei's official account using an iPhone.
Summary:
Summary:
About 30 teams of the Income Tax department conducted simultaneous searches in the premises of four Kannada film actors and three producers in Bengaluru for alleged tax evasion.
Summary:
Satish earlier wanted to make the film with Anil Kapoor, according to reports.
Summary:
Responding to Sunil Grover's tweet where Sunil had wished him on his wedding with Ginni Chatrath, Kapil Sharma wrote, "Thank you so much paji...we missed you...love and best wishes always." Sunil had tweeted, "Wishing Kapil and Ginni happy married life.
Summary:
Rishabh Pant became the youngest wicket-keeper to go past the 150-run landmark in Test cricket after he beat former Zimbabwe cricketer Tatenda Taibu who had achieved the feat aged 21 years and 245 days in 2005.
Summary:
Former Australian captain Ricky Ponting urged the crowd at the Sydney Cricket Ground to show respect to Indian captain Virat Kohli after he was greeted with boos by the crowd during the ongoing fourth Test.
Summary:
Microsoft is reportedly testing out a project, called 'Bali', to offer users with more control over their personal data.
Summary:
Technology giant Google has acqui-hired its former workers' startup Superpod to enhance its AI-powered Assistant's ability to accurately answer questions.
Summary:
Summary:
JD(S) supremo Deve Gowda has asked Congress to treat regional parties well, stating, "Congress is the big brother of secular parties.
Summary:
Union Finance Minister Arun Jaitley on Friday accused the Congress of alienating Kashmir, and stated, "Their mistakes are hurting Kashmir." He said, "The problem in Kashmir did not begin in 2014 after the arrival of BJP.
Summary:
Uttar Pradesh BJP leader Vineet Agarwal Sharda on Thursday said that Lord Hanuman belonged to Vaishya caste.
Summary:
RJD leader and son of former Chief Minister Lalu Prasad Yadav, Tej Pratap Yadav on Thursday said that his sister Misa Bharti will contest from Patliputra's Lok Sabha seat.
Summary:
Bengaluru-based vernacular knowledge-sharing startup Manch has raised around â¹5 crore in its seed funding.
Summary:
Gurugram-based health-tech startup Abita Healthcare has raised an undisclosed amount in its seed round of funding.
Summary:
Former Jammu and Kashmir CM Farooq Abdullah on Friday called for early resolution of the Ayodhya dispute through dialogue instead of a judicial verdict.
Summary:
Responding to Uttar Pradesh BJP MLA Vikram Saini's 'bomb people' remark, state Congress chief Raj Babbar said, "He's speaking like a terrorist." "Chief Minister (Yogi Adityanath) says 'thok do'.
Summary:
Andhra Pradesh CM Chandrababu Naidu on Thursday said that the state government is planning to distribute a smartphone to each family for ease of living.
Summary:
Speaking in the Lok Sabha, Defence Minister Nirmala Sitharaman said that post Kargil, China added 400 aircraft and Pakistan more than doubled aircraft while India's squadrons reduced from 42 to 33 from 2002-2015.
Summary:
Police officials said that the video was not edited or altered.
Summary:
"Labuschagneâ the bowler whose name only O'Keeffe can pronounce," said Gavaskar when Australia's Marnus Labuschagne came to bowl.
Summary:
Former J&K CM Omar Abdullah has criticised rival Mehbooba Mufti after she visited militants' families.
Summary:
Why did you not go to HAL?
Because HAL won't give you anything.
Summary:
Summary:
Doctors surgically removed an 18-centimetre-long piece of iron that pierced through the neck and came out of the mouth of a 24-year-old man who met with a road accident in Lucknow on Thursday.
Summary:
A 14-month-old baby who fell from a window of a fourth-floor apartment in Mumbai's Govandi was saved by a tree, which helped minimise the impact of the fall.
Summary:
Trump's post came amid the partial government shutdown which was imposed after opposition Democrats resisted his demand for $5 billion for Mexico border wall.
Summary:
Twenty-three years after leaving a refugee camp in Kenya, Ilhan Omar on Thursday became the first woman to wear a hijab in the US Congress.
Summary:
The analysis showed Maggi samples contained lead within permissible limits.
Summary:
Denying the reports of playing the female lead in Imtiaz Ali's 'Love Aaj Kal 2', Kiara Advani tweeted, "While I wish the news was true, I'd like to clarify that it's not.
Summary:
Actor Randhir Kapoor, while talking about his brother and actor Rishi Kapoor who is currently in the US for medical treatment, said, "He will soon be coming back to India.
Summary:
Katrina Kaif has said the film industry is "almost" like a dysfunctional family, adding, "You may not like some of your family members in some cases, but they're still your family members." "For me, at least, it has become like that.
Summary:
Alia Bhatt and Varun Dhawan will be reuniting for the remake of David Dhawan's 1995 film 'Coolie No. 1', as per reports.
Summary:
After scoring two half-centuries in his first two Test matches, India opener Mayank Agarwal said, "[Rahul Dravid's] advice has been very, very helpful.
Summary:
India's 622/7d is their second highest total in Sydney after 705/7d in January 2004.
Summary:
Manchester City registered a 2-1 win over table toppers Liverpool, who suffered their first league loss of the season.
Summary:
Google is reportedly working on a foldable smartphone to be released in its Pixel lineup of devices.
Summary:
Punjab AAP leader and anti-Sikh riots petitioner Harvinder SinghâÂÂPhoolka on Thursday announced his resignation from the party.
Summary:
A case has been filed against Samajwadi Party leader Azam Khan, his wife Tazeen Fatma and his son Abdullah Azam Khan in connection with allegedly getting two birth certificates made for Abdullah.
Summary:
One person was killed and 15 others were injured after several vehicles piled up due to dense fog on National Highway 28 in Muzaffarpur, Bihar on Friday morning.
Summary:
The girl, who was tricked into the marriage by her uncle, escaped by jumping from the second floor of the accused's house.
Summary:
A 70-year-old man has been arrested for allegedly molesting a woman and attacking her friend with a knife in Goa, said the police.
Summary:
The Supreme Court appointed Environment Pollution Control Authority (EPCA) has restricted entry of trucks in Delhi from 11 pm on January 4 to 11 pm on January 5.
Summary:
The Maharashtra government on Thursday declared another 931 villages in the state 'drought-affected'.
Summary:
The Maharashtra Andhashraddha Nirmoolan Samiti (MANS) on Thursday demanded action against some member of Kanjarbhat community in Maharashtra over 'virginity tests'.
Summary:
Rishabh Pant smashed a 137-ball hundred in the first innings of the fourth Test against Australia in Sydney on Friday, becoming the first ever Indian wicketkeeper to slam a Test century on Australian soil.
Summary:
Rishabh Pant scored an unbeaten 159 off 189 balls in the first innings of the fourth Test against Australia in Sydney on Friday to record the highest ever score by an Indian wicketkeeper in an away Test.
Summary:
England captain Mike Denness left himself out of the team for an Ashes Test that started on January 4, 1975, after scoring 65 runs in previous six innings.
Summary:
Cricket legend Don Bradman reversed the Australian batting order to protect batsmen from 'wet' wicket in the second innings of the third Ashes Test in 1937.
Summary:
The photoshoot of a 28-year-old US woman named Nicole Ham for her birthday has gone viral on the internet, where she's dressed like a baby in a blanket.
Summary:
Cheteshwar Pujara has set the record for facing the most number of balls by an Indian in a Test series in Australia, achieving the feat in the Sydney Test on Friday.
Summary:
This is the first quarter in over two years that Zuckerberg has refrained from doing so, according to Bloomberg.
Summary:
In September, the Congress had denied media reports suggesting that Maken had offered his resignation due to health reasons.
Summary:
Seven people, including a 5-year-old child, were killed after a cylinder blast caused part of a factory building to collapse in Delhi's Moti Nagar on Wednesday, said the police.
Summary:
The Supreme Court has deferred hearing in Ayodhya land dispute case to January 10 when it will decide on the constitution of a bench to hear a batch of petitions filed against the 2010 Allahabad HC judgment.
Summary:
"The Indian media is itself doubting the claims of their government," Pakistan Foreign Office spokesperson Mohammad Faisal said.
Summary:
However, after the police arrived at the home in suburban Perth, they found the man had been trying to kill a spider.
Summary:
A Chinese serial killer who targeted females dressed in red has been executed after he was found guilty of the murder of 10 women and a girl between 1988 and 2002.
Summary:
The US House of Representatives, where Democrats now hold a majority, approved a legislation on Thursday to end a partial government shutdown without funding President Donald Trump's promised border wall.
Summary:
Trump displayed a poster-sized version of the meme on the table in front of him.
Summary:
I can't believe India would've been better off if (Kotak)...monetised early," Mahindra added.
Summary:
Summary:
"She [Sara] came and begged me for a role in 'Simmba'.
Imagine, Saif and Amrita Singh's daughter begging me for a role," added Rohit.
Summary:
The pre-Hispanic 'Flayed Lord' or Xipe Tótec was linked with fertility and regeneration.
Summary:
Scientists at German research organisation Fraunhofer have developed a pocket-sized food scanner to check if food is stale or fresh.
Summary:
Swedish health-tech startup Lifesum has unveiled a new Google Assistant app to track user's dietary habits via voice commands.
Summary:
Apple CEO Tim Cook has said iPhone users are preferring to just change the batteries of their old iPhones instead of upgrading to a newer model, which in turn is hurting sales.
Summary:
US-based physicists have found a new, long-lived state of matter trapped in an iron pnictide superconductor.
Summary:
The Odisha government has put seven districts on alert in view of cyclonic storm 'Pabuk', formed over South China Sea. The seven districts are Balasore, Bhadrak, Jagatsinghpur, Kendrapara, Puri, Ganjam and Khordha.
Summary:
Yogi further directed strict action against owners of stray cattle and those locking up the animals in government buildings.
Summary:
Bristol-Myers Squibb shareholders will own approximately 69% of the new company and Celgene shareholders are expected to own around 31%.
Summary:
Out of 129 airports owned and managed by Airports Authority of India (AAI), 94 were in losses in the financial year 2017-18, the government said.
Summary:
It will be offered at discounted bundle price of â¹69,990 with one of the world's fastest 15W wireless charger worth â¹3,999.
Summary:
Photos of a tearful Kerala-based camerawoman continuing to shoot Sabarimala protests despite being allegedly assaulted by protestors have gone viral on social media.
Summary:
To make satellite calls, astronauts are required to dial 9 followed by 011 for an international line.
Summary:
Kangana Ranaut has revealed she was 16 when she filed her first FIR against sexual assault while adding, "There are people who can stand up for themselves, they shouldn't be discouraged." "People who need support, who need to be empowered, we must empower," she added.
Summary:
German Formula One legend Michael Schumacher, who won record seven championships, obtained his kart license from Luxembourg aged 12.
Summary:
Maharashtra Housing Minister Prakash Mehta has attributed Sachin Tendulkar's childhood coach Ramakant Achrekar not being given a state funeral to a "communication gap" at the government level.
Summary:
Team India batsman Rohit Sharma, who recently became father, took to Twitter on Thursday to share the first glimpse of his newborn daughter.
Summary:
The family of seven-time Formula One world champion Michael Schumacher, who was paralysed in a ski accident in December 2013 said in a statement that it's doing everything humanly possible to help him.
Summary:
Uttar Pradesh Deputy CM Dinesh Sharma on Thursday said, "I want to invite Rahul Gandhi, who probably has Dattatreya Gotra, to come to Kumbh".
Summary:
Upholding Gujarat High Court's order, Supreme Court asked Congress MP Ahmed Patel to face trial in connection with his election to the Rajya Sabha in 2017, which has been challenged by rival BJP candidate Balwant Singh Rajput.
Summary:
BJP MLA Manjinder Singh Sirsa on Thursday alleged he was manhandled in Delhi Assembly and his turban was "forcefully removed" when he was marshalled out of the House.
Summary:
BJP leader Tajinder Pal Singh Bagga has mocked Delhi CM Arvind Kejriwal over a video he had liked on Twitter recently.
Summary:
Talking about the protests after two women's entry into Kerala's Sabarimala temple, Union Minister and BJP's Bihar ally Ram Vilas Paswan on Thursday said, "Women are going to space, then why canâÂÂt they enter a temple?" "There should be no discrimination in the name of gender," he added.
Summary:
Around 40,000 Rohingya Muslims live in India, according to government estimates.
Summary:
Officials said Sharif's case was highly sensitive and he could not be allowed to go outside his barracks in the prison.
Summary:
The RBI has reportedly scaled down the printing of â¹2,000 notes, introduced after demonetisation, to a "minimum".
Summary:
Hollywood actors Halle Berry and Harrison Ford have been announced as presenters for the upcoming 76th Golden Globe Awards.
Summary:
While speaking about his marriage with actress Priyanka Chopra, American singer Nick Jonas said, "I knew once we locked in together that I had a partner for life and a teammate." "It was kind of an instant thing," Nick added.
Summary:
Singer Ankit Tiwari, who recently welcomed a baby girl named Aryaa with his wife Pallavi, revealed his daughter's name was suggested by 'Aashiqui' filmmaker Mahesh Bhatt.
Summary:
Ex-cricketer Virender Sehwag has praised Cheteshwar Pujara for scoring his third hundred of the Australia-India Test series.
"The respect you get as cricketer for what Pujara is doing in Tests...is greater than any wonderfully skilful T20 innings," wrote ex-England captain Kevin Pietersen.
Summary:
The university students will be able to order the company's products via an app and then meet the robot at over 50 locations on campus.
Summary:
Intel and NGO Resolve have created a human index finger-sized smart camera to stop poachers before they kill endangered animals in Africa.
Summary:
Qualcomm on Thursday said it posted security bonds of $1.52 billion in order to enforce a court order banning sales of some iPhone models in Germany.
Summary:
Retired justice Chandrashekhar Shankar Dharmadhikari passed away aged 91 on Thursday in Nagpur following a brief illness.
Summary:
Summary:
The government on Tuesday issued a tender to build 7.5-gigawatt of solar power projects in Jammu and Kashmir.
Summary:
Cyber frauds constituted almost one-third of all banking frauds.
Summary:
The Mumbai Police first celebrated Lalita's birthday in 2016, following which they have been celebrating her birthday every year.
Summary:
Alia Bhatt, who's currently dating actor Ranbir Kapoor, has revealed she first met him when she was 11 years old.
The couple started dating around New Year's Eve last year, said reports.
Summary:
Aishwarya said it felt "surreal" when she was dressed as a bride and was filming for song 'Khwaja Mere Khwaja'.
Summary:
Gautam Gambhir, who recently retired from cricket, took to Twitter to clarify that there is no truth in the "speculative stories" that claim he is joining politics.
Summary:
Sachin Tendulkar once revealed his late coach Ramakant Achrekar slapped him in front of everyone for missing a match.
Summary:
Explaining the offset policy, Jaitley said, "If we buy defence equipment from a foreign country, we ask them to spend 30-50% of the deal cost in India".
Summary:
Chang'e 4 landed in the South Pole-Aitken basin, the largest and oldest impact basin on the Moon.
Summary:
Summary:
BJP National General Secretary Ram Madhav, who was stuck in a flight at Delhi airport for nearly three hours due to dense fog, tweeted, "No technology can conquer nature".
Fog in Delhi can cripple air movement at 12 noon," his tweet read.
Summary:
Earlier, he didn't tell the doctors about the toothbrush and kept taking painkillers.
Summary:
A video of a 40-year-old US man attacking a female McDonald's employee over no straws at the store's counter on New Year's Eve has gone viral.
Summary:
Netflix's new CFO Spencer Neumann, who was fired by video-game maker Activision Blizzard, had a provision in his contract that barred him from negotiating with other potential employers.
Summary:
Rest in peace my cricket guru," the billionaire further said.
Summary:
While speaking about the controversy surrounding his upcoming film 'The Accidental Prime Minister', actor Anupam Kher said, when an audience watches a movie they don't enter the hall as voters.
Summary:
Online handle 'TheHackerGiraffe' has claimed to have hacked around 72,341 Chromecasts, Google Homes, and Smart TVs to promote YouTube's currently most subscribed channel PewDiePie. The same handle had earlier claimed responsibility of hacking around 50,000 printers worldwide to print "help defeat T-Series".
Summary:
Payment services provider PayU India's CEO Amrish Rau will take over as Head of Financial Technology Partnerships and Investments for parent company Naspers.
Summary:
Established in 2000, SoftBank Ventures Korea had initially focused on the Korean market and had expanded to make investments in startups globally in 2011.
Summary:
Gurugram-based online car marketplace CarDekho has raised $110 million in its Series C round of funding at a valuation of around $400-450 million.
Summary:
ISRO's second Moon mission, Chandrayaan-2, which was scheduled to launch on Thursday, has been delayed for the third time while the new launch dates are not yet confirmed.
Summary:
"We want to have a great relationship with Pakistan...I look forward to meeting with the new leadership," he further said.
Summary:
The real Jeanne Calment died in 1934 and her daughter Yvonne assumed her identity to avoid paying inheritance taxes, they added.
Summary:
Emotional and psychological abuse has become a crime in Ireland under a new domestic violence law that came into effect on Tuesday.
Summary:
Fashion group Michael Kors has been renamed as Capri Holdings after completing the acquisition of Italian brand Versace.
Summary:
Johnson & Johnson's (J&J) sales in India dipped 3% to â¹5,828 crore in the year ended March 2018.
Summary:
India has been postponing enforcing the tariffs despite announcing it over six months ago.
Summary:
It further asked RBI to ease its rules on capital requirements for banks in order to increase lending.
Summary:
Sarfaraz, son of veteran actor Kader Khan who recently passed away, has said he wants Amitabh Bachchan to know that his father spoke about him till the end.
Summary:
After India's Cheteshwar Pujara slammed his third hundred of the series in the fourth Test at Sydney on Thursday, Australia off-spinner Nathan Lyon was heard asking the 30-year-old batsman, "Aren't you bored yet?" Pujara reached the three-figure-mark in 199 balls, his fastest century of the series.
Summary:
The Australian cricketers were wearing theirs in honour of former Australia batsman Bill Watson, who died recently at the age of 87.
Summary:
Australian commentator Kerry O'Keeffe has been blacked out by Indian broadcaster Sony Pictures Networks India for the ongoing Australia-India Test in Sydney.
Summary:
Former India cricketers Sachin Tendulkar and Vinod Kambli attended their childhood coach Ramakant Achrekar's funeral in Mumbai on Thursday.
Summary:
A 60-year-old man from a village in Rajasthan's Chittorgarh died after a feature phone which was kept in his vest's pocket exploded at 2:30 am in the morning.
Summary:
Summary:
The spheres joined as early as 99% of the way back to the formation of the solar system, NASA said.
Summary:
Several people with psychological disorders are being tied with iron chains and padlocked for days and years in sheds in Uttar Pradesh.
Summary:
US President Donald Trump questioned why India, Pakistan and Russia aren't fighting the Taliban in Afghanistan, purportedly referring to their military presence in the country.
Summary:
On getting arrested after 38 years in an attempt to murder case, 71-year-old Suresh Singh in Uttarakhand said, "Aaj meri daud khatm ho gayi hai.
Summary:
The government is likely to announce a relief package for farmers that may cost as much as â¹2.3 lakh crore annually, according to reports.
Summary:
Congress leader Ahmed Patel on Thursday said the tone used by US President Donald Trump while describing PM Narendra Modi was not in good taste and completely unacceptable.
Summary:
Four BJP workers were allegedly stabbed in Kerala's Thrissur while enforcing a state shutdown after two women in menstruating age entered Sabarimala temple on Wednesday.
Summary:
While speaking about working on content-driven films and the concept of "stardom", 'Badhaai Ho' director Amit Sharma said, "Content and stardom aren't here to replace each other but co-exist and complement each other".
Summary:
It definitely helped the film," she added.
The film, which features Rajkummar Rao and Juhi Chawla, will release in February.
Summary:
Ranveer further said that since filmmaking is a collaborative process, a film's failure is not entirely an actor's doing.
Summary:
US-based touchscreen vending machine-making startup Vengo has raised $7 million in fresh equity funding, according to filings.
Summary:
South Korean electronics company LG has filed for a US patent for a smartwatch with a camera.
Summary:
Personal device management startup Servify has announced its acquisition of Bengaluru-based gadget repair startup iService through a cash and stock deal.
Summary:
Prime Minister Narendra Modi on Thursday added 'Jai Anusandhan' (hail research) to the slogan, 'Jai Jawan, Jai Kisan, Jai Vigyan' while inaugurating the 106th Indian Science Congress (ISC).
Summary:
A 21-year-old man named Suresh Pande has been arrested by Mumbai police for allegedly slitting the throat of his 25-year-old friend after the victim refused to give him â¹150 to buy drugs.
Summary:
The death toll from an apartment building that partially collapsed in Russia earlier this week reportedly due to a gas explosion has risen to 37, the Emergencies Ministry said.
Summary:
Indonesia's Lion Air has ended the search for the second black box of the plane that crashed into the Java Sea in October last year.
Summary:
Jo Song-gil, North Korea's acting ambassador to Italy, is in hiding, South Korean MP Kim Min-ki said quoting the country's intelligence agency, after Jo reportedly sought asylum from an unidentified western country.
Summary:
Shares of Dena Bank on Thursday plunged nearly 20% after the share swap ratio for its proposed merger with Vijaya Bank and Bank of Baroda (BoB) was announced.
Summary:
Finance Minister Arun Jaitley has said commercial banks were likely to recover â¹70,000-crore bad loans by March-end.
Summary:
After Govinda condoled veteran actor Kader Khan's demise and called him a 'father figure' on Instagram, Kader's son Sarfaraz questioned, "Has he...bothered to call us even once after my father's passing away?" "Please ask Govinda how many times he inquired about his 'father figure's' health," Sarfaraz added.
Summary:
Australia wicketkeeper-captain Tim Paine has said that he enjoys the way India's 21-year-old wicketkeeper Rishabh Pant goes about his wicketkeeping.
Further, Paine praised Pant for taking a picture with his wife and kids.
Summary:
Batsman Cheteshwar Pujara slammed his 18th Test hundred and third of the series as India ended the first day of the fourth Test in Sydney at 303/4 on Thursday.
Summary:
The value of Apple stake held by billionaire Warren Buffett's Berkshire Hathaway has fallen by over $22 billion in the last 3 months.
Summary:
Iran is planning to ban photo-sharing app Instagram in the country over 'national security concerns', Javad Javidnia, Deputy for Cyberspace Affairs at the Public Prosecutor's Office said.
Summary:
Apple posted $88.3 billion sales in the first quarter a year earlier.
Summary:
Meanwhile, ANI Editor Smita Prakash, who conducted the interview, said Gandhi's remark was a "cheap shot".
Summary:
After the Congress-led Madhya Pradesh government stopped the tradition of singing Vande Mataram at the Secretariat, Madhya Pradesh CM Kamal Nath announced not just Vande Mataram, but National Anthem will also be sung.
Summary:
After PM Narendra Modi's absence in Lok Sabha, Congress President Rahul Gandhi tweeted, "So it seems our PM has fled Parliament & his own open book Rafale exam & is instead lecturing students at Lovely Univ".
Summary:
The Supreme Court on Thursday revived the class-action suit by the Central government against Nestle India saying, "Why should we eat noodles having lead and monosodium glutamate (MSG)?" Nestle had argued that toxic lead content in Maggi noodles was within 'permissible limits'.
Summary:
Police have arrested Bajrang Dal activist Yogesh Raj, the main accused in the Bulandshahr violence in which a policeman and a youth were killed in December.
Summary:
The Income Tax department on Thursday conducted raids at five restaurant chains, including the Saravana Bhavan and Anjappar group, in Tamil Nadu's Chennai.
Summary:
The Supreme Court on Thursday directed the government to bring out the workers trapped in Meghalaya mine for over 20 days "no matter whether they are all dead...or all alive".
Summary:
A Colonel of the Indian Army will face a general court-martial for allegedly having an "inappropriate relationship" with another Colonel's wife.
Summary:
A 42-year-old woman, who was allegedly shot in the head during celebratory firing by former Bihar MLA Raju Singh at a New Year's Eve party at a farmhouse in Delhi, succumbed to injuries on Thursday.
Summary:
US President Donald Trump has said the former Soviet Union was "right" to invade Afghanistan in 1979 as "terrorists were going into Russia".
Afghanistan made it Russia because they went bankrupt fighting in Afghanistan," Trump added.
Summary:
Vodafone Idea was the market leader with 42.7 crore users, followed by Airtel (34.1 crore) and Jio (26.2 crore).
Summary:
Veteran actor Kader Khan, who recently passed away, was buried on January 3 at a cemetery in Toronto, Canada.
Kader Khan passed away at the age of 81 at a hospital in Canada.
Summary:
Luxury fashion label Ralph Lauren has released a video that shows the making of actress Priyanka Chopra's wedding gown which was overlaid with a high-neck coat.
Summary:
Lok Sabha Speaker Sumitra Mahajan today suspended 19 AIADMK and TDP MPs from attending the proceedings of the House for four days for creating an uproar over the Cauvery issue and Special Category status demand for Andhra Pradesh.
Summary:
Around 20 BJP Mahila Morcha activists were detained after they allegedly quarrelled with security personnel while marching toward Odisha CM Naveen Patnaik's residence.
Summary:
Amid violent protests against the entry of two women aged below 50 in Sabarimala Temple, Kerala CM Pinarayi Vijayan on Thursday said, "The Sangh Parivar is trying to make Sabarimala a clash zone." Police vehicles and state-run buses are being damaged while police and media personnel are being attacked, Vijayan added.
Summary:
Summary:
Summary:
After two women below the age of 50 entered Sabarimala Temple in Kerala, BJP leader V Muraleedharan on Thursday said, "They were not devotees.
Summary:
Restaurants accused the companies of using deep-discounting, in-house kitchens and internal sourcing to take away their business.
Summary:
Meanwhile, officials predicted another spell of snowfall in the Valley from Friday onwards.
Summary:
A Mumbai sessions court recently sentenced a casting director named Ravindranath Ghosh to life imprisonment for harassing and raping a 23-year-old aspiring actress.
Summary:
India captain Virat Kohli has become the fastest batsman to reach 19,000 international runs, achieving the feat in his 399th innings during the fourth Test against Australia on Thursday.
Summary:
Batsman Cheteshwar Pujara has become the third Indian batsman after Virat Kohli and Sunil Gavaskar to smash three hundreds in a Test series in Australia, achieving the feat during the fourth Test on Thursday.
Summary:
The China National Space Administration's (CNSA) robotic probe, Chang'e 4 has become the first ever to land on face of the Moon not seen from the Earth, state-run media said.
Summary:
Janhvi Kapoor, while speaking about her parents' reaction to her dating life, revealed, "Mom and dad were very dramatic about it." "(They'd say) 'When you like a guy, come to us and we'll get you married.' And I'm like what!?
Summary:
Arbaaz Khan, while joking about why his brother Salman Khan doesn't kiss onscreen, said, "Woh itna karlete hain off-screen ki on-screen zaroorat hi nahi padti (He does it so often off-screen that he doesn't need to do it on-screen)." He said this during their appearance on 'The Kapil Sharma Show'.
Summary:
Summary:
A petition has been filed by a lawyer against actor Anupam Kher and other associated members of 'The Accidental Prime Minister' in a Bihar court on Wednesday for allegedly damaging the image of some top leaders.
Summary:
"A lot of Pant fans I think," she said after a person commented that the number of her followers increased to 36,000 from 5,000.
Summary:
Police in Jharkhand's Palamu has revoked the ban on black that was imposed on the public expected to attend PM Narendra Modi's event on Saturday.
Summary:
ANI Editor Smita Prakash, who conducted the interview, said it was a "cheap shot" and "not expected of a President of the oldest political party in the country".
Summary:
A man in Kerala on Thursday died in violence that erupted after two women under the age of 50 years entered the Sabarimala Temple.
Summary:
The Supreme Court on Wednesday maintained that consensual sex between live-in partners doesn't amount to rape if they don't get married due to reasons beyond control.
Summary:
A mega container ship lost a part of its cargo in heavy seas resulting in dozens of containers washing up on Dutch islands of Terschelling and Vlieland.
Summary:
US streaming giant Netflix on Wednesday announced Spencer Neumann is joining the company from 'Call of Duty' publisher Activision Blizzard as its Chief Financial Officer (CFO).
Summary:
An IndiGo flight from Delhi made a priority landing at Ahmedabad airport on Tuesday after smoke was detected in the cockpit, said an official.
Summary:
Hailing the Congress' victory in panchayat elections, Punjab CM Captain Amarinder Singh said people saw progress and development in the last 21 months, against the "utter ruination" under SAD and BJP's governance.
Summary:
He said, "I fear that anyone can kill anybody.
I fear walking on the roads."
Summary:
Summary:
Following a debate in Parliament on the Rafale deal, Congress President Rahul Gandhi tweeted, "The PM faces an Open Book #RafaleDeal Exam in Parliament." Purportedly referring to Anil Ambani, he listed several questions including, "Why AA instead of HAL?" and "Why 36 aircraft, instead of the 126 the IAF needed?" Rahul added, "Will he show up?
Summary:
Her family members have accused her uncle, who they say is 16 years old, of raping and murdering her.
Summary:
Minister of State for External Affairs, VK Singh, said the government is in touch with the US for the extradition of US-based individuals wanted in connection with the 26/11 Mumbai terror attacks, under the terms of the India-US Extradition Treaty of 1997.
Summary:
At least nine people drowned and one was reported to be missing after a fishing boat capsized in Mahanadi river in the Kendrapara district of Odisha on Wednesday, said media reports.
Summary:
PM Narendra Modi on Wednesday met victims of the 1984 anti-Sikh riots and assured them of the government's full support.
PM Modi commended the victims for their 34-year-long fight for justice, she said.
Summary:
Bangladeshi journalist Hedait Hossain Molla has been arrested for publishing "false information" about voting irregularities in the recently held general elections.
Summary:
Former Indian pacer Chetan Sharma bowled out three New Zealand batsmen in three successive deliveries on October 31, 1987, in Nagpur, becoming the first bowler to take a hat-trick in World Cup. It was the first hat-trick taken by an Indian and the first all-bowled hat-trick in international cricket.
Summary:
Alia Bhatt, on being asked about media writing about her relationship with Ranbir Kapoor, said, "It's not as if a relationship is an achievement.
Summary:
Summary:
The letter mentioned Team India includes grilled chicken in its diet and due to higher cholesterol and fat in it, Kohli adopted vegan diet.
Summary:
Microsoft Co-founder Bill Gates calculated the number of slices that can serve the guests before cutting his wedding cake, his wife Melinda Gates revealed on Tuesday.
Summary:
Speaking on the law and order situation in Kerala due to controversy over the Sabarimala temple issue, Union Minister Anantkumar Hegde said, "Kerala government entirely failed.
Summary:
This would help the state earn additional â¹34 crore for constructing and maintaining cattle shelters to accommodate at least 1,000 stray cattle per district.
Summary:
US President Donald Trump on Wednesday referred to the library built in Afghanistan with funding from India saying, "Don't know who's using it in Afghanistan." He also said that regional countries like India, Russia and Pakistan should fight the Taliban in Afghanistan.
Summary:
"People who need support, who need to be empowered, we must empower," Kangana said in response.
Summary:
While addressing Priyanka Chopra's exit from his upcoming film 'Bharat', filmmaker Ali Abbas Zafar said, "ThereâÂÂs only happiness between us." "There were a lot of things that she was busy with...we, as team 'Bharat', are extremely happy for Priyanka and where sheâÂÂs in life right now," Ali added.
Summary:
Mourning the demise of actor Kader Khan, filmmaker David Dhawan said, "Bhaijaan, that's what I called him, was the backbone of my cinema." "After we worked together for the first time in 'Bol Radha Bol', I couldn't think of directing a film without Bhaijaan," the filmmaker added.
Summary:
Condoling the demise of Ramakant Achrekar, who was former cricketer Sachin Tendulkar's childhood coach, Aamir Khan said, "My heartfelt condolences to the family...to Sachin, and to all those close to him." "We will always remember him with great fondness and respect for his contribution to Indian cricket," Aamir added.
Summary:
CBI issued a notice requesting social media platforms like Facebook and Twitter to use Microsoft-owned technology PhotoDNA to scan photos in order to track suspects for investigative purposes.
Summary:
New York Police Department (NYPD) Chief said the department cancelled its plans to deploy camera-equipped drones on New Year's Eve "due to rain and wind", adding the "safety of all those celebrating is paramount".
Summary:
SoftBank has reportedly dropped plans to invest in Gurugram-based foodtech startup Zomato and may invest in its Bengaluru-based rival Swiggy instead.
Summary:
India's largest two-wheeler maker Hero MotoCorp has called for reduction in Goods and Services Tax (GST) rate on two-wheelers to 18% from 28%.
Summary:
The device is autonomous and can simultaneously stimulate and record electrical signals in the brain, researchers said.
Summary:
Indian Space Research Organisation (ISRO) Chairman K Sivan said on Tuesday the organisation plans to launch 32 space missions in 2019.
Summary:
The observation implies misalignment of planet's orbits in many planetary systems may be caused by distortions in the planet-forming disk.
Summary:
The government on Wednesday introduced a bill in Lok Sabha to allow voluntary use of Aadhaar for services like opening bank accounts and obtaining new SIM cards.
Summary:
Government is reportedly considering to impose fine of up to â¹1 crore on companies failing to comply with the Aadhaar Act. It may also impose an additional fine of â¹10 lakh per day in cases of continued non-compliance, the report said.
Summary:
Following the US and Israel's withdrawal from UNESCO, Iran's Foreign Minister Javad Zarif mockingly suggested that both the countries should leave planet Earth.
Summary:
The Finance Ministry has said the direct tax-to-GDP ratio of 5.98% achieved during 2017-18 was the best in 10 years.
Summary:
The fee for late filing of the returns is â¹25 per day for both CGST and SGST.
Summary:
World's largest cigarette maker China National Tobacco has planned to list its international unit on the Hong Kong stock exchange.
Summary:
The Reserve Bank of India (RBI) on Wednesday set up a committee under former SEBI Chairman UK Sinha to address issues regarding the sustainability of Micro, Small and Medium Enterprises (MSMEs).
Summary:
The government on Wednesday approved incentives amounting to â¹600 crore to merchant exporters of select goods to enhance liquidity with a view to boosting outbound shipments.
Summary:
The actor had promised the guests that singer Ankit Tiwari will be performing at the party.
Summary:
Talking about her fake pornographic video that racked up over 1.5 million views, actress Scarlett Johansson has said, "Nothing can stop someone from cutting and pasting my image or anyone else's onto a different body." "This doesn't affect me...people assume it's not actually me in a porno, however demeaning it is," she said.
Summary:
Television actress Tinaa Dattaa, who starred in 'Uttaran', has revealed she was in an abusive relationship with a man who wasn't from the entertainment industry.
Tinaa said her "confidence took a beating" due to the relationship.
Summary:
Summary:
However, the BCCI said that a decision on Ashwin's availability will be taken on the morning of the Test.
Summary:
"My heartfelt condolences on the passing away of Ramakant Achrekar Sir, who was instrumental in giving a jewel to Indian cricket," he wrote.
Summary:
Commenting on the death of his childhood coach Ramakant Achrekar, former India batsman Sachin Tendulkar said, "His contribution to my life cannot be captured in words.
Summary:
During a press conference on Wednesday, Congress President Rahul Gandhi said, "Just give me 20 minutes with the Prime Minister for one-on-one debate on Rafale, and then you decide what is what." "But the Prime Minister does not have the guts.
Summary:
Congress President Rahul Gandhi has accused Goa CM Manohar Parrikar of blackmailing PM Narendra Modi "because [Parrikar] has information on Rafale deal".
Summary:
Summary:
Lok Sabha Speaker Sumitra Mahajan rebuked Congress MPs for throwing paper planes at Finance Minister Arun Jaitley during Rafale jet debate on Wednesday.
Abhi bachche ho ya bade ho?" asked Mahajan.
Summary:
Summary:
The accused reportedly bought a new SIM card on the businessman's name and deactivated his old one.
Summary:
All the missing passports belonged to Sikh pilgrims.
Summary:
Six people, including three organisers, have been taken in police custody.
Summary:
World's richest person Jeff Bezos celebrated New Year by riding a horse into US cowboy apparel store Kemo Sabe.
You look pretty damn good on a horse," Kemo Sabe said.
Summary:
State-owned fuel retailers Indian Oil, Hindustan Petroleum and Bharat Petroleum have stopped absorbing government-mandated â¹1 cut on every litre of petrol and diesel sold.
Summary:
Reports suggest the actress is likely to contest in the upcoming Lok Sabha elections from the BJP.
Summary:
Actress Sara Ali Khan is being considered to star in choreographer-filmmaker Remo D'souza's upcoming dance film after Katrina Kaif backed out of the film, as per reports.
Summary:
Kim and Kanye are also parents to a 5-year-old daughter named North, and a three-year-old son named Saint.
Summary:
Google has reportedly never charged for Android and its apps before.
Summary:
Trinamool Congress leader Derek O'Brien tweeted that Finance Minister Arun Jaitley "misquoted James Bond in Parliament to suit himself".
Summary:
Zomato is reportedly in talks to raise $500 million to $1 billion in funding from China-based equity firm Primavera Capital and existing investor Alibaba Holdings' investment arm Ant Financial.
Summary:
Bengaluru-based trucking logistics startup 4TiGO's parent company Fortigo is set to raise around $50 million to offer working-capital loans to members on its platform.
Summary:
The drug, once injected, inhibits the function of certain proteins which help the ageing cells survive in mice bodies.
Summary:
At least six people were killed and 16 others were injured on Wednesday in a train accident on Denmark's Great Belt Bridge, police said.
Summary:
The National Company Law Tribunal (NCLT) has allowed the government to reopen the accounts of crisis-hit Infrastructure Leasing and Financial Services (IL&FS) and two of its subsidiaries, for the past five years.
Summary:
Besides Tendulkar, he had also coached ex-India cricketers Vinod Kambli, Pravin Amre, Sameer Dighe and Balwinder Singh Sandhu.
Summary:
The Cabinet on Wednesday approved the merger of Vijaya Bank and Dena Bank with Bank of Baroda.
Summary:
American singer Ariana Grande, while replying to a recent article with a headline that read, 'Who is Ariana dating now?' responded by saying, "Can they tell me too?" "Spoiler for the rest of this year / probably my life: it's no one.
Summary:
Speaking about the sudden demise of her mother Sridevi in February last year, Janhvi Kapoor said, "I'm still in shock.
Summary:
Lok Sabha was adjourned on Wednesday after Congress MPs hurled paper-planes at Finance Minister Arun Jaitley while he was refuting the allegations levelled against the Centre by Congress.
Following a complaint, Lok Sabha Speaker Sumitra Mahajan reprimanded the MPs saying, "What is this happening?
Summary:
Summary:
Congress MP Gurjeet Singh Aujla has said that his party members threw paper planes at Finance Minister Arun Jaitley in the Lok Sabha as the discussion was on Rafale fighter jet deal.
Summary:
A 44-year-old civil supplies employee named Kanakadurga, one of the first two women in menstruating age to enter Sabarimala temple on Wednesday, has said they faced no protest or violence from devotees while praying.
Summary:
He said pilgrims offered â¹1.90 crore in banned notes from November 9-December 9, 2016.
Summary:
The Supreme Court will hear a plea on Thursday seeking deployment of adequate manpower and equipment for the rescue of 15 miners trapped in a flooded mine in Meghalaya.
Summary:
Rajasthan Police arrested three Punjab National Bank employees, including Deeg branch manager and security guard, for allegedly drinking alcohol and consuming chicken on New Year's Eve. The police were patrolling when they saw the bank's shutter half-open and found the employees partying inside around midnight.
Summary:
China is constructing the first of the four "most advanced" naval warships for Pakistan as part of an arms deal, state-owned China Daily quoted the China State Shipbuilding Corporation as saying.
Summary:
Iran will invest about â¹1,500 crore to expand a refinery run by Chennai Petroleum in Tamil Nadu's Nagapattinam, the company's Managing Director SN Pandey said.
Summary:
While speaking about the welfare of animals, actor Randeep Hooda said, "We have voices but animals are voiceless.
Summary:
Netflix is facing criticism for taking down an episode of comedian Hasan Minhaj's show 'Patriot Act' in Saudi Arabia due to its criticism of the country's rulers.
Summary:
While speaking about the #MeToo movement in India, Tanushree Dutta said, "I was not the doer but just a...vessel through which some change or awareness had to come about in society." "The media is just making a heroine out of an ordinary person's organic journey," she added.
Summary:
The ED attached the Fixed Deposits in 2012 before Tech Mahindra merged Satyam Computer with itself in 2013.
Summary:
The AI tool uses some of the people-analytics programmes developed by Google to study behavioural changes in an organisation's employees.
Summary:
The central government had initiated amendments to the act in August.
Summary:
US' Federal Communications Commission (FCC) in an order on Monday said it would allow Google to operate its radar-based hand motion sensor, Project Soli.
Summary:
Google spinoff Waymo-owned self-driving vehicles have reportedly been vandalised by people using knives and rocks in US' Arizona.
Summary:
As part of the investment, Ola had added 1,00,000 scooters to its fleet.
Summary:
The Earth will be closest to the Sun at a point in its orbit called perihelion for the year 2019 on January 3, 10:50 am IST.
Summary:
India and Pakistan on Tuesday exchanged a list of their nuclear installations and facilities under a bilateral agreement that prohibits both the countries from destroying each other's nuclear facilities.
Summary:
The US has officially quit the United Nations Educational, Scientific and Cultural Organisation (UNESCO), accusing the UN agency of "anti-Israel bias".
Summary:
Alejandro Aparicio, the Mayor of the Mexican town of Tlaxiaco, was shot dead less than two hours after taking office on Tuesday, local prosecutors said.
Summary:
Bhargava, who founded LIC Cards Services, was appointed as the Managing Director of LIC in February 2017.
Summary:
Former Australian leg-spinner Shane Warne was smashed for 150 runs by the Indian batsmen in his debut Test, which started on January 2, 1992, in Sydney.
Summary:
A Filipino woman named Louisa Erispe, who took a Philippine Airlines flight from Davao to Manila last week, realised she was the only passenger besides the crew on the flight.
Summary:
Actress Priyanka Chopra has featured on the cover of the January issue of fashion magazine Vogue India.
Summary:
In a tweet addressed to YouTube, Anupam Kher wrote he's getting messages and calls that in parts of India, the trailer of 'The Accidental Prime Minister' is either not appearing or at the 50th position.
The trailer reportedly garnered over 5 million views within 20 hours of release on YouTube.
Summary:
Adding that Sydney will be a turning wicket, Morrison said, "Nathan, do your best mate...
Summary:
Summary:
Congress has released an audio clip wherein Goa Health Minister Vishwajit Pratapsingh Rane can be purportedly heard saying Chief Minister Manohar Parrikar has "all the files related to Rafale deal in his bedroom".
Summary:
After RJD leader Indal Paswan was shot dead on Tuesday night in Bihar's Nalanda, a mob on Wednesday thrashed a 13-year-old son of the man accused of shooting Paswan.
"He (RJD leader) was shot dead due to personal enmity.
Summary:
Summary:
Earlier, reports said Sachin Bansal sold his entire 5.5% stake in Flipkart for about $1 billion to Walmart.
Summary:
A video has surfaced online, wherein a speeding car could be seen hitting a girl walking on the roadside in Mumbai on Sunday.
Summary:
The Pakistan Army shot down an "Indian Spy Quadcopter" along the Line of Control (LoC), Pakistan Army's spokesperson Major General Asif Ghafoor claimed on Tuesday.
Summary:
Former JD(U) MLA Raju Singh who allegedly shot a woman in the head during celebratory firing at New Year's Eve party at his farmhouse in Delhi, has been arrested from Uttar Pradesh.
Summary:
The Unique Identification Authority of India (UIDAI) has issued nearly 123 crore Aadhaar cards to people as of November 30 last year, Union Minister Hansraj Ahir said in the Rajya Sabha on Wednesday.
Summary:
Kerala CM Pinarayi Vijayan on Wednesday confirmed that two women had entered the Sabarimala Temple, stating, "We had issued standing orders to police to provide all possible protection to any woman who wants to enter the temple." A video showing the two women, who are aged below 50 years, entering the shrine surfaced online.
Summary:
Claiming that the island's independence would lead to a "disaster", Xi called for a peaceful reunification with Taiwan.
Summary:
Jet Airways has reported three consecutive quarterly losses of over â¹1,000 crore each and already has over â¹8,000 crore of debt on its books.
Summary:
A business-class return ticket on the same route in July and September costs around $16,000 (â¹11.2 lakh), according to Cathay's website.
Summary:
Responding to Prime Minister Narendra Modi's 95-minute interview, AAP MP Sanjay Singh said the NDA government at the Centre is in its last days and the words of an "outgoing" PM will have no effect.
Summary:
Summary:
Former Madhya Pradesh CM Shivraj Singh Chouhan has demanded that the new Congress government reintroduce the tradition of singing 'Vande Mataram' in the Secretariat on the first working day of every month.
Summary:
The BJP on Wednesday called for two-day protests in Kerala after two women below the age of 50 entered Sabarimala temple.
Summary:
A 35-year-old man in Maharashtra's Virar has been arrested for allegedly setting his 16-year-old daughter ablaze because he thought she was talking to a boy on her phone.
Summary:
Former Union Ministers Yashwant Sinha and Arun Shourie and advocate Prashant Bhushan have moved the Supreme Court, seeking review of its verdict dismissing all PILs alleging irregularities in the Rafale deal.
Summary:
The Tamil Nadu government has moved the Supreme Court challenging a National Green Tribunal (NGT) order to reopen Vedanta's Sterlite Copper plant in Thoothukudi.
Summary:
Brazil's newly inaugurated President Jair Bolsonaro said in his first address to the nation that the country has been liberated from "socialism, inverted values and political correctness", after he assumed office on Tuesday.
Summary:
The Reserve Bank of India (RBI) has allowed one-time restructuring of loans of up to â¹25 crore to Micro, Small and Medium Enterprises (MSMEs) that were in default as of January 1.
Summary:
Additionally, CRED rewards customers for paying bills on time.
Summary:
Two women devotees Bindu and Kanakdurga in their 40s have claimed that they entered and offered prayers at Kerala's Sabarimala Temple at 3:45 am on Wednesday.
Summary:
Govinda, while condoling veteran actor Kader Khan's demise, said, "He was not just my 'ustaad' but a father figure to me, his midas touch and his aura made every actor he worked with a superstar." "The entire film industry and my family deeply mourns this loss," he added.
Summary:
Actress Amy Jackson has revealed that she got engaged to her boyfriend, British businessman George Panayiotou.
"1st January 2019 - The start of our new adventure in life.
Summary:
Deepika Padukone has shared the picture of a US restaurant's menu, which has a dosa named after her, in her Instagram story and captioned it, "Hungry anyone?!" The details of the dosa read 'topped with fiery hot ghost chilli and stuffed with our potato mix'.
Summary:
Ex-India captain Kapil Dev has said that when he first saw India fast bowler Jasprit Bumrah, he had thought he would not last long in international cricket with his kind of action.
"Bumrah has proved me wrong.
Summary:
You sledge right?" "You are very welcome, we like competitive game," Morrison added.
Summary:
Ex-India captain Sunil Gavaskar is reportedly set to miss handing over the Border-Gavaskar Trophy to India captain Virat Kohli after the fourth Australia-India Test in Sydney.
Summary:
Banned cricketer Sreesanth has said that if his ban is lifted and he gets to play for six months, he will give a lot of youngsters a run for their money.
Summary:
The Madras High Court has ordered that the autopsy of the HIV+ teenager, who allegedly committed suicide after learning his blood was mistakenly transfused to a pregnant woman, be recorded on video.
Summary:
The Sabarimala Temple in Kerala has been shut for purification after two women below the age of 50 claimed on Wednesday that they had entered Lord Ayyappa's shrine.
Summary:
The song 'Vande Mataram' was not sung in the Madhya Pradesh Secretariat on January 1 as the new government put on hold the long-standing tradition of singing it on the first working day of every month.
Summary:
Lakhs of women on Tuesday participated in 'Women's Wall' campaign to form a 620-km long human chain from Kasaragod to Thiruvananthapuram and took a pledge to "resist attempts to make Kerala a lunatic asylum".
Summary:
A 25-year-old PhD scholar was found hanging in her hostel room at IIT Madras in Chennai on Tuesday night.
Summary:
The victim's husband alleged Singh fired two-three rounds in the air after which she fell down and started bleeding.
Summary:
A Thai man who felt neglected by his in-laws shot dead six family members including his two children at a New Year party before killing himself.
Summary:
Addressing allegations of corruption in the Rafale jet deal during a 95-minute interview, Prime Minister Narendra Modi said, "Those people who want to weaken the Army are levelling allegations...
Summary:
Summary:
After PM Narendra Modi said his government can consider an ordinance for Ram temple's construction once the judicial process concludes, RSS called his decision a "positive" step.
Summary:
Summary:
Summary:
The Federation of Hotel and Restaurant Associations of India (FHRAI) has sought the Tourism Ministry's help amid ongoing disputes with online hotel platforms like OYO, MakeMyTrip (MMT) among others.
Summary:
Tax authorities have issued notices to startups asking them to pay 'Angel Tax' by March-end, despite government intervention.
Summary:
After it was made mandatory for schoolchildren in Gujarat to answer roll calls with 'Jai Hind' or 'Jai Bharat', Union Minister Mansukh Lal Mandaviya on Tuesday said, "It is necessary for every Indian citizen to say 'Jai Hind' and 'Jai Bharat'." He added, "This is not a political issue.
Summary:
Shiv Sena leader Sanjay Raut tweeted, "(PM Narendra Modi says he) won't bring an ordinance for the Ram temple.
Summary:
UPI transactions crossed the 500 million-mark for the first time in November.
Summary:
An Amazon employee talking about working conditions at its New York-based warehouse said, "If an employee is a picker, [Amazon wants them] to pick up 400 items per hour." "I support the effort [to unionise]," the employee added.
Summary:
An 11-month-old baby boy was found alive after 35 hours in the rubble of an apartment block that collapsed in a gas explosion in Russia's Magnitogorsk, where the current temperature is -21ðC.
Summary:
And why are actors left so alone when they are sick or not doing too well?" Shakti asked.
Summary:
Late actor Kader Khan, in an old interview, had revealed his mother died on April 1 and when he informed his friends, no one believed him as it was April 1.
Summary:
Rishi Kapoor's wife Neetu Kapoor took to Instagram to share a family picture on the occasion of New Year's Eve, writing, "Hope in future cancer is only a zodiac sign." "Happy 2019...no resolutions only wishes this year...loads of love togetherness, happiness and most imp.
Summary:
A web series based on ghost stories written by author Ruskin Bond will release in January.
Summary:
Summary:
As many as seven Asian cricketers featured in the team.
Summary:
Twenty-time Grand Slam champion Roger Federer took to Twitter to share a selfie with 23-time Grand Slam winner Serena Williams after defeating her in a mixed doubles match at Hopman Cup on Tuesday.
Summary:
Summary:
Country is suffering your 'I's & 'Lies'!" "Bereft of ground reality, 'jumlas' (rhetoric) galore, Modiji's interview looks like a parody.
Summary:
A 42-year-old Delhi resident was allegedly gang-raped multiple times, first in a room and then in a moving auto rickshaw in Gurugram on Saturday.
Summary:
"I can't wait to spend 25 more years laughing together," wrote Bill.
Twenty-five years and three kids later, we're still laughing this hard."
Summary:
State-owned oil firms on Tuesday reduced the price of jet fuel by a record 14.7%, making it cheaper than both petrol and diesel.
Summary:
"Kader Khan has given so much to our entertainment industry...What a sad start to 2019," the actor-turned-politician added.
Summary:
A judge has additionally denied Spacey's request to skip his court appearance in connection with the sexual assault charges.
Summary:
A BCCI executive reportedly said that Indian captain Virat Kohli and pacer Jasprit Bumrah should be rested in the Indian Premier League ahead of the World Cup 2019.
I think our bowlers are much fitter than that," the official reportedly said.
Summary:
If you ask any batsman, he is one of the most dangerous bowlers to face." "He is quick, very accurate and moves the ball both ways, which is what you want from a Test match bowler," Hodge added.
Summary:
Indian spinner Ravichandran Ashwin was seen undergoing a solo indoor bowling session while the rest of the Indian team preferred to take a day off ahead of the Sydney Test.
Summary:
Summary:
The flaw could be used to "spread fake news and disinformation via influential celebrities and journalists," Insinia said.
Summary:
Google has added a new feature to its Assistant which lets users in the US make donations to charitable organisations through it using commands like, "Ok Google, make a donation".
Summary:
PM Narendra Modi on Tuesday said the majority of farmers do not benefit from the loan waivers announced recently by the Congress government, as only a few of them take loans from banks.
Summary:
A 50-year-old man has been arrested in Germany after driving his car into a crowd of people, injuring at least four after midnight on New Year's Day. Authorities said the injured included Syrians and Afghans and driver made anti-immigrant comments during his arrest.
Summary:
The government will infuse â¹10,884 crore in four state-run banks, including Bank of Maharashtra and UCO Bank.
Summary:
Amitabh Chaudhry will be the new MD and CEO of the bank with effect from January 1, 2019.
Summary:
Passenger growth rate on overseas routes was 12.8% during the month as compared to 11% on domestic routes.
Summary:
India has cut import taxes on crude and refined palm oil from Southeast Asian (ASEAN) countries following a request from suppliers.
Summary:
Twenty-time Grand Slam winner Roger Federer and 23-time Grand Slam winner Serena Williams played a professional match against each other for the first time in history, in a mixed doubles match at Hopman Cup on Tuesday.
Summary:
Prime Minister Narendra Modi in an interview said that former Reserve Bank of India Governor Urjit Patel himself requested to resign because of personal reasons.
He wrote to me personally," PM Modi added.
Summary:
NBA side Golden State Warriors' swingman Andre Iguodala has been fined $25,000 (â¹17 lakh) for throwing the ball at the fans in the stands during a match against Portland Trail Blazers.
Summary:
Summary:
NASA's New Horizons spacecraft conducted a New Year flyby of Ultima Thule, the farthest cosmic object ever explored by humans at over 6.4 billion kilometres.
Summary:
"I knew it was a big risk.
I never care about any political risk to me.
Summary:
Sahib Ali, a 21-year-old miner said he "felt a cold wind followed by the roar of water" before 15 workers were trapped when water from a river flooded the Meghalaya mine.
Summary:
On being asked why cross-border attacks haven't stopped after the surgical strike, PM Narendra Modi said, "It will be a huge mistake to believe that Pakistan will mend its ways after a war.
Summary:
A 28-year-old man died after falling off the balcony of his fifth-floor apartment in Sector 120, Noida, while talking on his phone on early morning of New Year's Day.
Summary:
A signage beamed onto one of the Sydney Harbour Bridge pylons during New Year's celebrations had the words "Happy New Year 2018!" "We had one job Australia!!
Summary:
'Call of Duty' publisher Activision Blizzard has said that it plans to fire Chief Financial Officer (CFO) Spencer Neumann and has placed him on paid leave.
Summary:
Excluding TCS, which added â¹1.94 lakh crore of market capitalisation, Tata Group's value fell â¹1.12 lakh crore.n
Summary:
Sussanne Khan wished actress Sonali Bendre on the occasion of her 44th birthday and said, "You are my inspiration, my fireball".
Summary:
"BSP candidate can file nomination paper from January 3 to January 10," Kumar said.
Summary:
India's Virat Kohli and Jasprit Bumrah were the only Indian cricketers to have found a place in Cricket Australia's best Test XI.
Summary:
Ahead of the 4th Test between India and Australia, Australian Prime Minister Scott Morrison hosted the Indian and Australian cricket teams at his official residence, the Kirribilli House in Sydney, on the New Year's Day. BCCI's official Twitter account shared photos from the event.
Summary:
Vietnam's cybersecurity law, which tightens government control over technology and internet firms, came into effect on Tuesday.
Summary:
Prime Minister Narendra Modi on Tuesday said that the 2019 Lok Sabha polls will be "janta vs gathbandhan" (people vs coalition).
Summary:
Elon Musk, responding to a user query, tweeted there's a 30% chance the first resident of Mars could be an artificial intelligence machine.
Summary:
Online sellers representative body AIOVA on Monday alleged Flipkart's delivery unit Ekart has fired about 300 seasonal workers in Kheda, Gujarat.
Summary:
US-based scientists have modelled the processes leading to glacier formation at the permanently shadowed, cratered poles of Mercury, the planet closest to the Sun. The model suggests the nearly 50 million-year-old glaciers were likely formed when ice deposited on impact by water-rich comets and remained stable in the planet.
Summary:
Mumbai-born Shyamkumar Bhaskaran is playing a key role in steering NASA's New Horizons space probe, which recently conducted a flyby of the most distant cosmic object ever explored, Ultima Thule.
Summary:
He added, on an average 5,000 claims are being settled every day since the scheme rolled out.
Summary:
A woman gave birth to twins inside a waiting room of Maharashtra's Palghar railway station on New Year's Day. The woman went into labour when she was travelling in a suburban train and was taken to the waiting room as the train reached the station, an official said.
Summary:
Sudhir Bhargava on Tuesday took oath as the Chief Information Commissioner in the Central Information Commission (CIC).
Summary:
The Goods and Services Tax (GST) collection dropped to â¹94,726 crore in December 2018, lower than the â¹97,637 crore collected in the previous month.
Summary:
The disinvestments include Oil and Natural Gas Corporation's (ONGC) acquisition of government's 51.1% stake in Hindustan Petroleum for â¹36,915 crore and the stake sale in Coal India for around â¹5,300 crore.
Summary:
nBanned Australian cricketer David Warner and his wife Candice have revealed they are expecting their third child.
Summary:
The government has brought electricity connections to about 2.39 crore households across 25 states since launch of the â¹16,320-crore Saubhagya scheme in 2017.
Summary:
The kidnapper offered chocolates to the boy but when he refused, the accused caught the boy and signalled his accomplice in a car.
Summary:
Soldiers deployed on the Siachen glacier may soon be supplied with waterless bath gels made by IIT Delhi alumni for their three-month stay.
Summary:
A man, his wife, his mother and two children aged 10 and 5 allegedly committed suicide on Monday by drinking pesticide at their residence in Gujarat's Jamnagar over financial issues.
Summary:
In a recent press release, Delhi Police explained effects of smoking different types of imported ganja (marijuana) like Blue Cookie and Bubble Gum. A table explained 'Bubba Kush' will give smokers contagious laugh while those smoking 'Pineapple Express' seek inner peace and 'Alien OG' laugh at their own jokes.
Summary:
Speaking about the demonetisation move during an interview on Tuesday, PM Narendra Modi said, "This wasn't a jhatka." "We had warned people a year before, that if you have [black money], you can deposit it, pay penalties and you will be helped out.
Summary:
The government has exempted rupee payments made to the National Iranian Oil Company for crude oil imports from payment of any tax.
Summary:
American singer Ricky Martin and his husband Jwan Yosef have become parents to a baby girl named Lucia, the singer announced on Instagram.
Summary:
Singers Vishal Dadlani and Kanika Kapoor will reportedly join Rahman as part of the judging panel for the reality series.
Summary:
Alia Bhatt and Ranveer Singh took to social media to share the first poster for their upcoming film 'Gully Boy'.
Summary:
Wishing Sonali Bendre on her 44th birthday on Tuesday, husband Goldie Behl posted their picture and wrote, "Not only did you help me find my own strength...you imparted that to every soul who followed your life closely." "Thank you for being the person you are.
Summary:
Summary:
Shane Warne had reckoned that Cummins could captain Australia in the future.
Summary:
Portuguese forward Cristiano Ronaldo ended the year 2018 as the highest-scorer for his former club Real Madrid and the second-highest goalscorer for his new club Juventus.
Summary:
A study by Stanford University and Google revealed that artificial intelligence (AI) tool CycleGAN was hiding information to cheat on another task it was assigned to do later.
Summary:
Union Finance Minister Arun Jaitley has said that the grand alliance of Opposition parties to take on the BJP is "a tried, tested and rejected idea".
Summary:
Recently, Kerala was listed among "top performers" in first-ever state-wise startup rankings released by Department of Industrial Policy and Promotion.
Summary:
The team used a high-pressure, hot water drill to create a 1,084-metre-deep borehole in about three days' time.
Summary:
Mumbai Police registered at least 455 cases of drunk driving till 6 am on New Year's day, an official said.
Summary:
A female corporator of the Srinagar Municipal Corporation (SMC) on Monday accused its Mayor Junaid Mattu of sexual harassment.
Summary:
Pakistan on Tuesday shared a list of 537 Indian prisoners lodged in Pakistani jails with India as per the provisions of a bilateral agreement, the Foreign Office said.
Summary:
The Congress-led Rajasthan government promoted a total of 120 officers, including 51 Indian Administrative Service (IAS) and 41 Indian Police Service (IPS) officers, on the first day of the new year.
Summary:
He further said that 400 habitations have been affected with water contaminated with uranium.
Summary:
Commercial borrowings were the largest component of external debt with a 37.1% share.
Summary:
The six-member panel will be headed by former RBI Governor Bimal Jalan.
Summary:
Indian equity benchmark Sensex closed 186.24 points higher at 36,254.57 on the first trading session of 2019 on Tuesday.
Summary:
Summary:
Summary:
Addressing a gathering in Alwar on Monday, Rajasthan Minister Mamta Bhupesh said, "I assure you I will never let you down because my first priority will be my caste...then society and everyone else." "We intend to work for everyone else, give benefits to everyone," she added.
Summary:
A man named Kalua, who is accused of attacking Inspector Subodh Kumar Singh with an axe during mob violence in Uttar Pradesh's Bulandshahr, has been arrested by the police.
Summary:
Justice TB Radhakrishnan was on Tuesday sworn in as the first Chief Justice of Telangana High Court, which came into existence on January 1, 2019 after the bifurcation of the High Court at Hyderabad.
Summary:
Around 15,000 police personnel were deployed to ensure that celebrations went off smoothly.
Summary:
A Hyderabad police constable breastfed a two-month-old baby girl, whose drunk mother had left her with a man while she went to get water.
Summary:
The Delhi Metro Rail Corporation has announced that the first coach in the moving direction of all trains, except in Red Line, will be reserved for women from January 1.
Summary:
Ailing Goa CM Manohar Parrikar on Tuesday attended his office for the first time in four months and held a meeting with his cabinet colleagues.
Summary:
Two UP women who had been in love for around six years, divorced their husbands and tied the knot at a temple in the Bundelkhand region.
Summary:
A 22-year-old intern, Alexandra Black was mauled to death by a lion at a private wildlife sanctuary in North Carolina, US, on Sunday.
Summary:
Union Minister Santosh Gangwar rewarded â¹1 lakh to Sidhu Humanabade, a food delivery boy who saved 10 lives from the fire at Mumbai's ESIC Kamgar Hospital.
Summary:
Paytm Payments Bank, which has around 42 million accounts, registered a loss of â¹20 crore in 2017-18.
Summary:
Ranveer Singh, while talking about his marriage to Deepika Padukone, said, "It's the first time I feel that I have achieved something." "It's a really warm and wonderful feeling.
Summary:
The species were named Drogoni, Rhaegali and Viserioni, which are Latin versions of Drogon, Rhaegal and Viserion.
Summary:
Ranveer Singh was the first choice for Shah Rukh Khan's 'Zero', suggested reports.
"The cast was changed overnight and Ranveer found himself out of 'Zero'," reports stated.
Summary:
Summary:
Congress President Rahul Gandhi on Tuesday condoled the demise of Bollywood actor Kader Khan, who passed away on Monday after a prolonged illness.
Summary:
Sreesanth, while talking about Dipika Kakar winning 'Bigg Boss 12', said, "I'm really happy for Dipika.
Sreesanth finished as first runner-up of the show.
Summary:
A 'below average' rating would have resulted in one demerit point while a 'poor' rating would have meant three demerit points.
Summary:
Sri Lanka and Bangladesh will have to contend with the other six qualifiers in the group stage.
Summary:
BJP leader Subramanian Swamy on Tuesday said, "Congress party thinks only of Italian women's interest and not of Muslim women's interest in India." Swamy made the remark after the Opposition thwarted the government's attempt to push the Triple Talaq Bill in Rajya Sabha.
Summary:
OSIRIS-REx entered into the 492-metre-wide asteroid's orbit on Monday, 110 million kilometres away from Earth, and will circle around it about 1.75 kilometres from its centre.
Summary:
President Ram Nath Kovind wished the nation a Happy New Year, tweeting, "May 2019 bring joy, peace and prosperity to our families, to our country, and to our beautiful planet".
Meanwhile, Prime Minister Narendra Modi tweeted, "Wishing everyone a joyous 2019!
Summary:
Fearing protests by teachers on contract, administration in Jharkhand's Palamu has banned any kind of black clothing for those attending PM Narendra Modi's rally in the district on January 5.
Summary:
Sikh inmates will be kept away from former Congress leader Sajjan Kumar's jail ward in Delhi's Mandoli jail complex, reports said.
Summary:
Karnataka Transport Department has made GPS systems and emergency 'panic' buttons mandatory for passenger and commercial vehicles in the state from Tuesday.
Summary:
Reports added that Khan suffered from Progressive Supranuclear Palsy (PSP), a degenerative disease that causes loss of balance, difficulty in walking and dementia.
Summary:
Late Bollywood actor Kader Khan taught at Mumbai's MH Saboo Siddik College of Engineering as a Civil Engineering professor before he entered the film industry.
Summary:
The funeral of veteran Bollywood actor Kader Khan, who passed away at the age of 81, will be held today in Canada, his son Sarfaraz said.
Summary:
In a tweet ringing in the New Year, actor Prakash Raj announced that he will be joining politics and will contest 2019 Lok Sabha elections as an Independent candidate.
more responsibility," Raj wrote, adding that he will soon share details of the constituency from where he will contest.
Summary:
BJP leader Shatrughan Sinha is no longer exempted from security checks or treated like a VIP at the Patna airport, Jay Prakash Narayan Airport Director Rajendra Singh Lahauriya said on Monday.
Summary:
The family of the woman, who suddenly collapsed at her residence last week, agreed to donate her heart, liver and kidneys.
Summary:
Around 30 lakh women are expected to form a 620-kilometre long human chain from Kasargod to Thiruvananthapuram today and take a pledge to protect "renaissance values" and "resist attempts to make Kerala a lunatic asylum".
Summary:
The deceased was identified as Praveen Tiwari, a resident of JNU's Brahmaputra Hostel, the police said.
Summary:
Nearly â¹580 crore was spent in 2015-16 and â¹628 crore in 2016-17.
Summary:
While defending his planned border wall along Mexico border amid partial government shutdown, US President Donald Trump claimed the Washington home of Barack Obama is surrounded by a 10-foot wall.
Summary:
The US military has apologised for a New Year's Eve tweet about dropping bombs.
Summary:
Actor Hrithik Roshan will be starring in S Shankar's science fiction film, as per reports.
Summary:
Summary:
Mourning the demise of Kader Khan, actor Amitabh Bachchan tweeted, "Sad (and) depressing news...my prayers and condolences." "A brilliant stage artist, a most compassionate and accomplished talent on film...in most of my very successful films...a delightful company...and a mathematician," Amitabh further wrote.
Summary:
Summary:
Summary:
In April, Dalit groups organised a Bharat Bandh demanding implementation of the SC/ST (Prevention of Atrocities) Act.
Summary:
Congress leader Mallikarjun Kharge on Monday said the party is ready for a debate on the Rafale deal in Lok Sabha, stating, "(Finance Minister Arun) Jaitleyji has thrown a challenge...we're ready for a debate on January 2.
Summary:
Uda Devi, who belonged to the Pasi community, became a symbol of Dalit resistance against colonial rule.
Summary:
Summary:
The High-Level Committee chaired by Union Home Minister Rajnath Singh on Monday approved additional assistance of over â¹1,146 crore from the National Disaster Response Fund for Tamil Nadu, which was affected by cyclone Gaja recently.
Summary:
At least four people were killed and seven others are feared trapped after a fire broke out in a snacks factory in Bihar's Muzaffarpur on Monday, police said.
Summary:
After former Congress leader Sajjan Kumar surrendered on Monday, Union Minister Harsimrat Kaur Badal tweeted, "One Congress 'magarmach (crocodile)' down." "Two more â Jagdish Tytler & Kamal Nath left before case reaches Gandhi family & their role in killing Sikhs is exposed," she added.
Summary:
A 42-year-old man was arrested for allegedly trying to click obscene pictures of an 18-year-old girl in Delhi, said the police on Monday.
Summary:
The Lajpat Nagar-Mayur Vihar Pocket-1 corridor of the Delhi Metro's Pink Line was thrown open for public commutation on Monday evening.
Summary:
Nearly a month after resigning from the BJP, Savitribai Phule on Monday said, "The country cannot be governed by a temple or God but by the Constitution." She added, "Can Kumbh or temples feed people of Scheduled Castes, tribes and the Muslim community?
Summary:
The Delhi Traffic Police issued a total of 509 challans for cases of drinking and driving on New Year's Eve on Monday.
Summary:
Former model Frieha Altaf made an appearance at the party as Beyoncé.
Summary:
To celebrate the arrival of New Year 2019, a total of 2,019 snowmen have been built by people in a park in China's Harbin, dubbed as the country's 'ice city'.
Summary:
Actress Manisha Koirala, who was diagnosed with ovarian cancer in 2012, said that she thinks cancer came into her life as a "gift".
Summary:
Anupam Kher has shared a video with a 101-year-old woman who earns a living by selling tea under a tree.
Summary:
Summary:
Around 600 objections were submitted by unknown individuals who suspect the citizenship of others who are included in the list.
Summary:
"Coaching's about man management and looking after people, caring for people," he added.
Summary:
Former India captain Sourav Ganguly mocked former Australia captain Steve Waugh suggesting Australia XI for the Sydney Test against India on the photo-sharing platform, Instagram.
India are leading the four-match Test series 2-1.
Summary:
Undefeated boxing champion Floyd Mayweather took nearly 140 seconds to defeat Japanese kickboxer Tenshin Nasukawa in an exhibition boxing bout, worth a reported $9 million (â¹62.5 crore), in Japan's Tokyo.
I'm still retired," Mayweather later said.
Summary:
The 22-year-old, who scored 669 runs in 12 ODIs at an average of 66.90 in 2018, was also named ICC ODI Player of the Year.
Summary:
The rule is applicable to Class 1-12 students in government, grant-in-aid and self-financed schools.
Summary:
Devotees at a temple in Gujarat's Botad clothed a statue of Lord Hanuman with a Santa Claus dress.
Summary:
The price of subsidised LPG was on Monday cut by â¹5.91 while that of non-subsidised LPG was reduced by â¹120.50.
Summary:
The men can be seen entering the residence of Saudi consul general in Istanbul.
Summary:
Praising the Indian cricket team's bowling coach Bharat Arun after the Melbourne Test win, head coach Ravi Shastri tweeted, "Excellent job, Guys.
Summary:
Following Australia's loss in the 3rd Test, Australia coach Justin Langer said, "At this stage, the difference in the series is Pujara and Kohli, if we're frank." "Pujara averages 53 and Kohli has averaged 46 and got a duck in the second innings.
Summary:
The scientists were able to convert molten glass into 3-metre-tall columns using the system.
Summary:
The government recently barred online retailers from selling products of companies in which they have a stake.
Summary:
Madhya Pradesh CM Kamal Nath on Monday said he wants to see 'gau matas' (cows) in cow shelters and not on the roads of the state.
Summary:
The Election Commission of India has announced that by-elections to former Chief Minister M Karunanidhi's vacant Thiruvarur seat in Tamil Nadu will be held on January 28.
Summary:
Ahead of the 2019 Lok Sabha elections, the Congress on Monday appointed 10 more national spokespersons, including Syed Naseer Hussain and Pawan Khera.
Summary:
"As per FDI policy, e-commerce platforms can't influence market prices," CCI had said.
Summary:
Further, monthly assistance worth â¹10 lakh was sanctioned in favour of four startups.
Summary:
The Reserve Bank of India (RBI) has issued a tender inviting software or hardware solutions to help visually challenged citizens identify banknotes.
Summary:
The government appointed Sudhir Bhargava as the new Chief Information Commissioner in the Central Information Commission (CIC).
Summary:
Jaitley had assured government is on track to meet fiscal deficit target of 3.3% of GDP.
Summary:
Reliance Communications and Reliance Jio said they have extended the validity for sale of RCom's wireless assets to June 28, 2019.
Summary:
Ronita Sharma, manager of Bigg Boss 12's first runner-up Sreesanth, said the show's winner TV actress Dipika Kakar Ibrahim is "fake winner of a fake show".
Summary:
In Mumbai, the concept is to live in apartments...Eventually, when I saw Mannat, it felt like that Delhi wala kothi and so I bought it," he added.
Summary:
"When I entered the show, I thought that I would get evicted in a week or two, but I survived.
Summary:
Undefeated boxing champion Floyd Mayweather is set to earn around â¹11.5 lakh/second from his nine-minute boxing bout against Japanese kickboxer and mixed martial arts fighter Tenshin Nasukawa.
Summary:
This is the third straight time that Kohli has ended a calendar year as the highest run-scorer in international cricket.
Summary:
Bangladesh ODI captain Mashrafe Mortaza has become a member of parliament after winning from the Narail 2 constituency in the country's 11th general elections.
Summary:
Iran's state broadcaster Islamic Republic of Iran Broadcasting's (IRIB) regional boss has been fired after a sex scene featuring Jackie Chan was broadcasted on the television despite tight censorship rules.
Summary:
Summary:
Swiss tennis player Roger Federer and American tennis player Serena Williams are set to face off against each other for the first time in their careers in a mixed-doubles match in the Hopman Cup in Perth on Tuesday.
Summary:
"They told me that the problem was not limited to bookies, but even the local game's links with the underworld," Fernando said.
Summary:
Australian T20 league Big Bash's sides Adelaide Strikers and Sydney Thunder paid tribute to Afghan spinner Rashid Khan's father, who passed away on Sunday.
Summary:
Meanwhile, New Zealand's Suzie Bates was named the captain of the ICC women's ODI team of the year.
Summary:
According to a Privacy International study, at least 20 of 34 popular Android apps like TripAdvisor and Skyscanner send sensitive information to Facebook without users' permission.
Summary:
A Ministry of Home Affairs (MHA) senior official has said that the government hasn't given any "blanket power" to ten agencies to intercept information from any computer.
Summary:
Gujarat CM Vijay Rupani on Sunday tweeted that Congress President Rahul Gandhi is "desperate...to see Gujarat fail".
Summary:
Congress MP Anand Sharma on Monday, during a discussion on Triple Talaq Bill, said that even if the Lok Sabha has passed the Bill, "the Rajya Sabha is not a rubber stamp".
Summary:
Union Minister Mukhtar Abbas Naqvi on Monday asserted that the BJP was not facing any pressure from allies ahead of the 2019 general elections.
Summary:
As the Congress members again raised the issue of the alleged scam in Rafale deal in the Lok Sabha on Monday, Union Minister Rajnath Singh said repeating a lie would not make it a truth.
Summary:
German bus service startup FlixBus has started testing VR headsets on its passengers on certain routes in the US.
Summary:
West Bengal CM Mamata Banerjee on Monday announced that in case a farmer between the age of 18 to 60 dies, compensation of up to â¹2 lakh will be provided to their family.
Summary:
"As a policy, the government doesn't encourage establishment of satellite campuses of such educational institutions," Union Minister Satyapal Singh said.
Summary:
The Home Ministry has declared Nagaland âÂÂdisturbed areaâ for six more months till June-end under Armed Forces (Special Powers) Act (AFSPA).
Summary:
Phone and internet traffic interceptions done by security agencies between 2014 and 2018 have reduced by 25% compared to those done from 2011 to 2014, a Union Ministry official said.
Summary:
Four engineering students were killed and four others critically injured on Monday when their car collided with a garbage dumper in Andhra Pradesh's Guntur, the police said.
Summary:
India's largest airline IndiGo has added the longer range Airbus A321neo plane to its fleet, reportedly becoming the first domestic airline to have the aircraft.
Summary:
The country attracted nearly $35 billion during the year by way of private equity.
Summary:
Rani Mukerji has been criticised for her remark on the #MeToo movement during her appearance on 'The Actresses Roundtable 2018'.
Summary:
Sonali Bendre, who has been diagnosed with cancer, has shared a series of photos on Instagram from her last blow-dry before getting her hair cut ahead of chemotherapy sessions.
She wrote, "Now that my hair is gradually growing back...Maybe I can look forward to another blow-dry in 2019!" "Here's looking towards a healthier...
Summary:
The Army on Monday said it had foiled a "likely treacherous attack" on its forward posts along the Line of Control in J&K on New Year's Eve and killed two intruders who are "likely Pakistani soldiers".
Summary:
A 38-year-old woman in Maharashtra's Beed district died due to excessive bleeding after she delivered a stillborn baby in her tenth pregnancy.
Summary:
A farmer from Madhya Pradesh's Shivpuri district broke down and fell at the feet of the newly appointed Collector Anugrah P, seeking her intervention for installation of a new transformer in his village.
Summary:
A video of toads riding on the back of a 3.5-metre python to escape a storm in Australia has surfaced online.
Summary:
The recalled condoms are "not expected to meet the registered burst pressure specification at end of shelf-life," Canadian health department said.
Summary:
Actress Janhvi Kapoor has featured on the January cover of the magazine 'Cosmopolitan India'.
Summary:
Talking about Karan Johar's upcoming film 'Takht', Ranveer Singh said, "The story is on such delicious scale and there's so much meat in it.
Summary:
Sharing his mother Ata's video on Instagram, Dwayne Johnson wrote, "Surprise!
Summary:
Summary:
Shraddha Kapoor will be playing the female lead in choreographer-filmmaker Remo D'souza's upcoming dance film after Katrina Kaif's exit, as per reports.
Summary:
Summary:
Kohli, who attained the highest rating points (937) ever by an India batsman during the year, scored 1,322 runs in all.
Summary:
The Karnataka State Cricket Association announced that Indian batsman Manish Pandey will replace Vinay Kumar as the captain of the state team across three formats in the domestic circuit.
Summary:
Early internet pioneer Lawrence Roberts passed away on December 26 at the age of 81, reportedly due to a heart attack.
Summary:
Former Jammu and Kashmir Chief Minister Mehbooba Mufti on Monday said that the BJP is "entering our houses" by bringing the Triple Talaq bill.
Summary:
Finance Minister Arun Jaitley on Monday said it would have been more appropriate if Congress chief Rahul Gandhi had asked the right question, namely who killed the investigation into the death of Sohrabuddin Sheikh.
Summary:
Attacking Karnataka CM HD Kumaraswamy, state BJP President BS Yeddyurappa on Monday said that while "farmers are committing suicide...Karnataka CM has gone to Singapore to celebrate New Year".
Summary:
Government-backed initiative Startup India allocated only 19% of its â¹10,000-crore fund to venture capitalist (VC) firms in three years, Chairman of Small Industries Development Bank of India said.
Summary:
Ghosn, whose detention was earlier extended to January 1, has been in jail since November 19 for allegedly understating his income.
Summary:
Bhatt said that synergy between the Army, the Jammu and Kashmir Police and the Paramilitary was responsible for the success in eliminating terrorists.
Summary:
As many as 27 people have been arrested in connection with the death of constable Suresh Vats who was killed by a stone-pelting mob in Uttar Pradesh's Ghazipur while returning from duty at PM Narendra Modi's rally.
Summary:
Congress leader Sajjan Kumar on Monday surrendered before Delhi's Karkardooma Court and was sent to Mandoli jail for his involvement in the 1984 anti-Sikh riots.
Summary:
The Jammu and Kashmir police have arrested a man for allegedly raping his own 18-year-old daughter in Reasi district.
Summary:
The National Confederation of Human Rights Organisations (NCHRO) has said the Bulandshahr violence was a "targeted attempt" to "instil fear" in the Muslims.
Summary:
Cash-strapped Jet Airways is reportedly in discussions with the State Bank of India (SBI) for raising â¹1,500 crore short-term loan to meet its working capital requirement and some payment obligations.
Summary:
Team India batsman Rohit Sharma and his wife Ritika Sajdeh were blessed with a baby girl on Sunday.
Summary:
A trailer truck carrying salt jumped over the divider and onto another lane, where it collided with the car.
Summary:
Jennifer added the security had to take her away from the woman.
Summary:
Indian cricketer KL Rahul, while appearing on 'Koffee With Karan' with fellow cricketer Hardik Pandya, revealed people have asked them if they're together.
Rahul also revealed Hardik had once sent the same "flirty text" to multiple women.
Summary:
Veteran actor Kader Khan's son Sarfaraz has said that his father has been admitted to a hospital in Canada, dismissing media reports of his demise.
My father is in the hospital," his statement read.
Summary:
Afghanistan's 20-year-old leg-spinner Rashid Khan is playing for his side Adelaide Strikers against Sydney Thunder in the Big Bash League today in honour of his father, who passed away on Sunday.
Summary:
Opener Priya Punia's father Surendra Punia bought a 1.5-bigha plot on the outskirts of Jaipur for â¹22 lakh in 2010 and built a cricket ground for his daughter.
Summary:
The Delhi Metro Rail Corporation (DMRC) will not permit passengers to exit the Rajiv Chowk metro station after 9 pm on December 31.
Summary:
A student died after he slipped into the Bhimkund waterfall in Odisha while taking a selfie with his friends.
Summary:
Before the incident, the woman had warned him of dire consequences if he did not stop stalking her.
Summary:
Karan Chowdhary said the thief asked for his motorbike's keys after which he sought help from people at the petrol pump.
Summary:
Rejecting US' allegations of human rights violations as an attempt to topple the regime, North Korea has called itself a "utopia envied by humankind" and a "flower garden of human love".
Summary:
Duterte has in the past called God "stupid" and questioned the Bible's story of creation.
Summary:
At least three people have been killed and several others have been injured after a section of a 10-storey residential tower collapsed in Russia's Magnitogorsk following a gas blast.
Summary:
Deepika Padukone, while talking about pay disparity, said, "I will not settle for being paid less because they need to compensate for the male actor." "I'm...aware of how much I deliver vis-ÃÂ -vis the Khans, vis-ÃÂ -vis the newer boys like Ranveer Singh, Ranbir Kapoor or Varun Dhawan.
Summary:
Talking about his film 'Zero', Shah Rukh Khan said, "I don't want to make a normal film.
Summary:
'Housefull 4' director Farhad Samji has revealed that 'Baahubali' actor Rana Daggubati will be seen playing a "threat" in the film.
Further, talking about the film, Samji said, "It is a period comedy...something that we are doing for the first time.
Summary:
Nora Fatehi has said that the song 'Dilbar' from John Abraham starrer 'Satyameva Jayate' was a "turning point" in her career.
Summary:
Dipika Kakar, while talking about winning 'Bigg Boss 12' and her co-contestant Sreesanth, said, "I never fought against him.
Summary:
Summary:
The BCCI has announced there will be no replacement player in the Test squad.
Summary:
The Telangana Police has planned to install 15 lakh CCTV cameras across the state during the next three years, Director General of Police M Mahendar Reddy said.
Summary:
"If you ever get into a fight, beat them...if possible murder them," Yadav was heard telling students.
Summary:
PM Modi on Saturday had said that only 800 farmers benefited from the loan waiver in Karnataka.
Summary:
After Telangana CM K Chandrashekar Rao called Andhra Pradesh CM Chandrababu Naidu the "dirtiest politician" in India, Naidu on Sunday said, "Persons in power should be much more dignified." He added that civic society won't accept the "filthy language" used by Rao.
Summary:
Delhi Police is going to deploy around 15,000 police personnel on New Year's Eve to ensure that law and order is maintained.
Summary:
Television actress Dipika Kakar Ibrahim has been declared the winner of reality TV show 'Bigg Boss 12'.
Summary:
Bangladesh PM Sheikh Hasina has secured her third consecutive term, with her alliance winning 287 of the 298 seats for which results have been declared for the 300-strong parliament, the country's Election Commission said on Monday.
Summary:
Actor Salman Khan has shared a video of him and Shah Rukh Khan watching the song 'Yeh Bandhan Toh' from their 1995 film 'Karan Arjun'.
The video is from Salman's 53rd birthday party, which was held at his farmhouse in Panvel.
Summary:
Vicky Kaushal has said box office numbers can't decide whether it's a good film or not.
"In 2018, only the films that were good and appreciated did the numbers...If it's a good film, it'll do the nnumbers," Vicky further said.
Summary:
Sonam said this when Karan Johar asked which couple amongst Anushka-Virat, Priyanka-Nick and Deepika-Ranveer looked the most gorgeous at their wedding.
Summary:
Afghanistan's 20-year-old leg-spinner Rashid Khan's father Haji Khalil passed away on Sunday.
Summary:
Australian wicketkeeper-batsman Cameron Bancroft got out for two runs off three balls on his return from a nine-month ban for ball-tampering as his team Perth Scorchers lost to Hobart Hurricanes in the BBL on Sunday.
Summary:
A US man named Josh Hillard has claimed his three-week-old iPhone XS Max smartphone exploded after heating up in the back pocket of his pants on December 12, burning his skin.
Summary:
Summary:
After Indian pacer Jasprit Bumrah was named Man of the Match in the Melbourne Test for taking nine wickets, off-spinner Ravichandran Ashwin termed him as "our very own Malcolm M".
Summary:
Manchester City thrashed Southampton 3-1 to return to winning ways after having endured back-to-back defeats before this match.
Summary:
A US judge dismissed a 2016 lawsuit which alleged Google violated Illinois state law by using facial recognition technology through Google Photos to collect users' biometric data without their permission.
Summary:
Police will deploy a camera-equipped drone above New York City's Times Square on New Year's Eve for surveillance purposes.
Summary:
Andhra Pradesh CM N Chandrababu Naidu on Sunday again took a dig at PM Narendra Modi calling him a "blackmailer" who "threatens" everybody to make them fall in line.
Summary:
Opposition leader Sharad Yadav on Sunday said PM Narendra Modi-led government's only agenda was to defame one family.
Summary:
The tool, Notiva Prime, acts as a link between domestic banking software and global messaging system SWIFT used by financial institutions to securely transmit instructions in code language.
Summary:
A Chinese space probe, ChangâÂÂe-4, has entered the elliptical lunar orbit in preparation to land on the dark side of the Moon for the first time, Chinese state media reported.
Summary:
Glucose is used to produce food sweeteners while acetic acid is used to make paint.
Summary:
Aligarh Police personnel will be adopting one stray cow each from January 1 with an aim to send a positive message to the public.
Summary:
The Chhattisgarh government on Sunday decided to discontinue printing the logo of RSS ideologue Deendayal Upadhyaya on official documents, circulars and letterheads of any department.
The logo was used by the previous BJP government for Upadhyaya's birth centenary celebrations.
Summary:
The Railways has devised a first-of-its-kind policy to allow companies to advertise on trains in exchange for their goods and services for passengers.
Items like soaps, dispensers and bedrolls can be offered by companies.
"Lakhs of passengers travel by train [every day].
Summary:
An official said lack of basic fire-fighting system led to the accident.
Summary:
Rashtriya Swayamsevak Sangh (RSS) chief Mohan Bhagwat on Sunday said if India is able to establish its dominance in sports, the world will accept it as a superpower.
Summary:
Railway Minister Piyush Goyal on Sunday said that those found guilty in Uttar Pradesh's Ghazipur incident will not be spared and termed the killing of head constable as 'unfortunate'.
Summary:
The loans were recovered through channels like the Insolvency and Bankruptcy Code (IBC), SARFAESI Act, Debt Recovery Tribunals and Lok Adalats.
taken for resolution under IBC," RBI said.
Summary:
Finance Minister Arun Jaitley has denied that the government is not satisfied with the RBI's functioning.
Summary:
This is 33% higher than the previous year when unclaimed deposits stood at â¹14,697 crore.
Summary:
Prime Minister Narendra Modi during his visit to Port Blair on Sunday announced the renaming of three islands in Andaman & Nicobar.
Summary:
After being dubbed as "racist" for insulting Indian cricketers during the Melbourne Test, Australian commentator Kerry O'Keeffe wrote an open letter to Indians, saying he has been devastated by the reaction to his comments.
He further said that he was certainly not disrespecting Indian cricket.
Summary:
The Indian pace trio of Ishant Sharma, Mohammad Shami and Jasprit Bumrah picked up 130 wickets in away Test matches in 2018, equalling the record of most away Test wickets by a pace trio in a calendar year.
Summary:
A video of Team India head coach Ravi Shastri coming out of the team bus drinking beer after India's 137-run victory against Australia in the Melbourne Test has gone viral.
Summary:
The 28-year-old billionaire Co-founder and CEO of Snapchat's parent company Snap, Evan Spiegel said he allows his 7-year-old stepson Flynn 1.5 hours of screen time (time spent on tablets, smartphones) a week.
Summary:
Gates said he will learn about two areas where technology can improve the human life.
Summary:
An amateur photographer named John Evered has taken a photo of a seal's newborn pup with its umbilical cord still attached to the stomach, taking a nap on a plastic bottle on a UK beach.
Summary:
A male passenger who stripped naked and walked down the aisle on a Dubai to Lucknow Air India flight said he was frustrated at work in Dubai and had tendered his resignation.
Summary:
She was suffering from fever and was taken to a hospital after being freed from the cage.
Summary:
Pakistan's Civil Aviation Authority revealed before a Supreme Court bench on Friday that academic credentials of seven pilots of the state-run PIA had been found to be bogus and five of them had not even done matric.
Summary:
Ahead of the Test, Archie was presented with his baggy green cap.
Summary:
Former Indian cricketer VVS Laxman compared Jasprit Bumrah to former Pakistani pacer Wasim Akram, saying that the variations that the Indian pacer possesses 'almost' reminds him of Akram.
Summary:
Former Australian captain Allan Border praised the Indian team, saying, "They're the real deal now, they're the no.
Summary:
Director General of Sports Authority of India, Neelam Kapur said that the Sports Ministry has earmarked â¹100 crore for funding the athletes under the Target Olympic Podium Scheme (TOPS) ahead of 2020 Olympics in Tokyo.
Summary:
Tribune Publishing, which owns some of the affected newspapers, said, there was no evidence that customers' personal information was compromised.
Summary:
The report accused Facebook's moderation team of relying on guidelines of over 1,400 pages which contained 'inaccurate' information.
Summary:
A company spokesperson said that all existing phones had been sold out and that the company wouldn't be replenishing its inventory.
Summary:
He added BJP's attempt to project former PM Manmohan Singh as a "weak" PM is "not only childish but brazenly politically motivated".
Summary:
The Hindu Janajagruti Samiti (HJS) has appealed to Hindus of the country to celebrate New Year on Chaitra Shuddha Pratipada, also known as Gudipadwa instead of celebrating it on January 1.
Summary:
At least eight people were injured on Sunday after a small iron bridge collapsed near Mahabaleshwar in Maharashtra's Satara district.
Summary:
Former Uttar Pradesh CM Akhilesh Yadav on Sunday said the stone-pelting incident in Ghazipur on Saturday was a 'failure of administration'.
Summary:
At least six people were killed and four were injured on Sunday in a collision between two speeding cars in Karnataka's Gadag.
Summary:
All the four policemen attached with the MLC have been summoned for questioning, police said.
Summary:
US President Donald Trump tweeted there was "big progress being made" in a possible trade deal between the US and China.
Summary:
The number of ATMs in the country declined by 1,000 to 2.07 lakh in 2017-18, according to a Reserve Bank of India (RBI) report.
Summary:
The Reserve Bank of India (RBI) said loan recoveries and resolutions improved in 2017-18 primarily because of evolution of the Insolvency and Bankruptcy Code.
Summary:
He further said GST evasion not only affects government revenue but also makes tax-compliant businesses less competitive.
Summary:
Shah Rukh Khan has revealed he once stole a car's tyres after his tyres got punctured.
Shah Rukh further revealed he also left a thank you note on that car.
Summary:
Captain Virat Kohli gifted his batting pads to a young fan and signed an autograph on his miniature bat after Team India's 137-run victory against Australia in the Boxing Day Test on Sunday.
Summary:
After India pacer Jasprit Bumrah won Man of the Match for taking nine wickets in the Melbourne Test against Australia, captain Virat Kohli declared him "the best bowler in the world".
Summary:
After New Zealand registered their fourth consecutive series victory for the first time in their 88-year Test history, captain Kane Williamson said, "That's quite a cool thing to achieve." "[Record] wasn't the focus.
Summary:
Claiming that BJP sees an opportunity in the movie 'The Accidental Prime Minister' to re-write history, Congress leader Salman Khurshid said, "BJP is putting a big question on the Congress leaders." "We are definitely going to fight back," he added.
Summary:
In the last 'Mann ki Baat' address of 2018, PM Narendra Modi on Sunday lauded websites that share "inspiring life stories of...remarkable gems" saying, "Let's come together to make positivity viral." "Spreading negativity is fairly easy.
Summary:
Philippine President Rodrigo Duterte has confessed that when he was a teenager he "tried to touch inside his maid's panty while she was sleeping".
Duterte further said that he returned to the maid's room and again tried to molest her.
Summary:
Ranveer Singh has said that 2018 has been a phenomenal year for him professionally and personally.
Summary:
Alia Bhatt, took to her Instagram story and wrote, "This past year has been the most challenging phase in my life...But my love for the movies kept me going." "It was all work work work...At one point I thought I wouldn't be able to do it anymore," she further wrote.
Summary:
Summary:
Following Australia's defeat in the third Test, Australian captain Tim Paine said that the Australian team's batting failed against the Indian bowling attack in the absence of banned Steve Smith and David Warner.
Summary:
Praising pacer Jasprit Bumrah, former Indian cricketer Sunil Gavaskar said, "What makes him [Bumrah] special is that he is a learner, he is a better bowler than what he was yesterday." "He wants to bowl better than what he has bowled in the previous over.
Summary:
Summary:
New Zealand beat Sri Lanka by 423 runs to claim the Test series and jump above South Africa into the third spot in the ICC Test team rankings.
Summary:
Notably, Kerala Police's page is more popular than New York Police Department's page which has 7.9 lakh followers.
Summary:
Microsoft Taiwan and Taiwan AI Labs have jointly launched an AI-based genetic analysis platform named TaiGenomics.
Summary:
BJP National General Secretary P Muralidhar Rao on Sunday said the Opposition is still divided and except for being anti-Modi, unanimity and consensus among Opposition parties are missing.
Summary:
Prime Minister Narendra Modi on Sunday said the government is working to ensure better facilities for the people in the Andamans.
Summary:
At least three AAP workers were arrested on Saturday for allegedly spreading fake news attributed to Haryana CM Manohar Lal Khattar on social media.
Summary:
Congress leader Shashi Tharoor on Sunday said that Congress President Rahul Gandhi has "all the right qualities to make an excellent Prime Minister".
Summary:
After a constable in Uttar Pradesh was killed by a stone-pelting mob, BJP MP Udit Raj said one or two isolated incidents in the state cannot prove that something is wrong with the law and order situation.
Summary:
Indian Navy will patrol the seas for any suspicious sightings, the police said.
Summary:
Attacking the previous governments, PM Narendra Modi on Saturday said, âÂÂFor maintaining the âÂÂnirmaltaaâ (cleanliness) of Ganga, the power of money is not enough, clean intentions are also needed." "We, with full honesty and clean intentions, have undertaken a campaign to clean river nGanga,â he added.
Summary:
A commission examining the sub-categorisation of the central list of OBCs has decided to conduct a countrywide survey to estimate the caste-wise population figures.
Summary:
Petrol price was on Sunday cut by 22 paise per litre to its lowest level in 2018 while diesel price was reduced by 23 paise to a nine-month low.
Summary:
PM Narendra Modi on Sunday paid tribute to those who lost their lives in the 2004 tsunami at a memorial in Andaman and Nicobar Islands and assured to provide better facilities to the people in the region.
Summary:
This comes after Civil Aviation Ministry said it has prepared a revival plan for the cash-strapped carrier.
Summary:
Actor Ayushmann Khurrana, while speaking about his wife Tahira being diagnosed with breast cancer, said, "She hasn't questioned even once 'Why me?', she's always been so positive." He added that he gets his strength entirely from her and called her a "fighter".
Summary:
Tamil singer Chinmayi Sripaada has been asked by the dubbing union to pay â¹1.5 lakh as membership fee and write an apology, after she voiced her support for #MeToo movement.
Summary:
Sen, a Padma Bhushan and Dada Saheb Phalke awardee is known for Hindi films like 'Ek Din Achanak' and 'Khandhar' and Bengali films such as 'Baishey Sravan', 'Padatik', 'Kharij' and 'Mrigayaa'.
Summary:
After taking a 2-1 lead in the four-match Test series against Australia, India captain Virat Kohli said, "We are not going to stop here.
Summary:
With this, he equalled Sourav Ganguly's record of most overseas Test victories as India captain.
Summary:
Turkish football club Galatasaray has reportedly placed defender Serdar Aziz on the transfer list after he missed a match complaining of stomach bug despite his wife later sharing pictures of the couple holidaying in the Maldives on Instagram.
Summary:
Samajwadi Party chief Akhilesh Yadav has blamed UP CM Yogi Adityanath's "thok do" mentality for the death of a police constable in Ghazipur.
Summary:
Veer Bahadur Singh Purvanchal University Vice Chancellor Raja Ram Yadav during an event said, "If you are a student of this institute, don't come to me crying.
Yadav's speech was criticised by various political parties.
Summary:
Sahib Ali, one of the men who had managed to escape before the illegal coal mine in Meghalaya got flooded, has said, "There is no way the trapped men will be alive." "How long can a person hold his breath underwater?" he added.
Summary:
The 19-year-old donor whose HIV+ blood was transfused to a 23-year-old pregnant woman at a government hospital in Tamil Nadu, died on Sunday following a suicide attempt.
Summary:
Two miners from Madhya Pradesh's Panna district, Motilal and Raghuveer Prajapati, have become crorepatis after a big diamond they found two months ago was sold for â¹2.55 crore at an auction.
Summary:
The newly-formed Madhya Pradesh government on Saturday announced it is forming an Adhyatmik Vibhag (spiritual department) by merging several existing departments.
Summary:
The son of the constable who was killed in Uttar Pradesh's Ghazipur has criticised the force, saying, "Police is not being able to protect their own.
Summary:
Summary:
British cave diver Vernon Unsworth, whom Tesla's Elon Musk called a "pedo guy", has been awarded the Member of the Most Excellent Order of the British Empire.
Summary:
Saudi Arabia recruited children from Sudan's conflict-hit Darfur region to fight on the front lines in Yemen, according to a report by The New York Times.
Summary:
Singer Sonu Nigam has said that he doesn't plan to open any music company, adding, "It is not easy to run a music company.
Summary:
Sonam Kapoor has said she is a "huge" advocate for LGBTQI (Lesbian, gay, bisexual, transgender, queer and intersex) rights.
Summary:
Ayushmann Khurrana has said he doesn't watch his older films, adding, "I would probably watch it once during the edit and then cast and crew screening, when you are mostly busy ushering in guests." "I think you don't grow if you are obsessed with your own craft and your own films.
Summary:
Ajay Devgn and Ranveer Singh will make a special appearance in Rohit Shetty's next film titled 'Sooryavanshi' starring Akshay Kumar, as per reports.
Ajay has collaborated with Rohit in films like 'Singham', 'Golmaal' series, 'Bol Bachchan' and 'Simmba'.
Summary:
Vivek has reportedly replaced Paresh Rawal who had earlier said, "Only I can play Modi ji," while confirming his role in the film.
Summary:
With the win, Liverpool have opened up a nine-point gap at the top of the table.
The other two scorers for the Liverpool team were Mohamed Salah and Sadio Mane.
Summary:
Telangana CM K Chandrashekar Rao on Saturday called Andhra Pradesh CM Chandrababu Naidu the "dirtiest politician in India" and a "rakshasa (demon)" and accused him of corruption.
Summary:
Addressing current and former members of BJP's student wing Akhil Bharatiya Vidyarthi Parishad (ABVP), Shah said that the workers should work towards spreading BJP's ideology.
Summary:
At least one person was shot dead and four buses were set ablaze in an attack by Naxals in Bihar's Aurangabad area on Saturday night.
Summary:
The Central Pollution Control Board (CPCB) has asked the Delhi Police to ensure that the Supreme Court's order on burning of crackers is followed on New Year's Eve. According to the order, only green crackers can be used for a stipulated time of two hours.
Summary:
This is the first time since 1977-1978 that India have won two matches in a Test series in Australia.
Summary:
An Uttar Pradesh Police constable, identified as Suresh Vats, was killed today by a stone-pelting mob in Ghazipur when he was returning from his duty at Prime Minister Narendra Modi's rally in the area.
Summary:
A 54-year-old UK woman who was staying at a five-star hotel in IT Park, Chandigarh, was raped at the hotel's spa by a 28-year-old masseur on December 20, police said on Saturday.
Summary:
Katrina Kaif has opted out of choreographer-filmmaker Remo D'souza's upcoming dance film, also starring actor Varun Dhawan.
Touted to be India's biggest dance film, the movie will also star Prabhudheva.
Summary:
Australia's Brad Haddin holds the record for taking most catches in a Test series (29).
Summary:
Bumrah took 48 wickets in Tests, 22 in ODIs and 8 in T20Is in 2018.
Summary:
Reacting to Australian commentator Kerry O'Keeffe's "offensive" commentary during the Melbourne Test, India bowling coach Bharat Arun said, "It hurts you when people make those remarks." "There's nothing you can do about it because it's beyond your control," he added.
Summary:
Ex-India captain MS Dhoni has said India international players who have chosen to skip Ranji Trophy shouldn't be criticised for their "individual preferences".
Notably, Dhoni and Shikhar Dhawan were criticised for not playing Ranji while not on national duty.
Summary:
Ex-South Africa captain Shaun Pollock ripped his pants on live TV while demonstrating slip catching alongside fellow commentator and ex-South Africa captain Graeme Smith in a segment during lunch break in the South Africa-Pakistan Test on Friday.
Summary:
After the 1996 general elections, Gowda had led a coalition government with Congress support.
Summary:
A male passenger in Dubai-Lucknow Air India Express flight on Saturday stripped mid-air and started walking down the aisle naked.
Summary:
A fake Instagram account of IGP Roopa Moudgil was created that cheated people of money by sharing posts seeking donations for "destitute women".
Summary:
A UP man who called up Gautam Buddh Nagar (Rural) SP Vineet Jaiswal and said he is an IAS officer, pressuring him to get the work of a relative done quickly has been arrested.
Summary:
Bangladesh PM Sheikh Hasina considers being called authoritarian by the Western media a "badge of honour", her son Sajeeb Wazed said ahead of the national election today, adding there was space for dissent in the country.
Summary:
Abdullah Hassan, the two-year-old boy whose Yemeni mother sued the US to meet him has died, the Council on American-Islamic Relations said.
Summary:
Bank of India on Saturday said the government has decided to infuse â¹10,086 crore in the bank.
Summary:
Tata Motors MD Guenter Butschek's resolution read, "Managing quality time for personal priorities and hobbies that have taken a back seat lately."
Summary:
Regina Cassandra will play Sonam Kapoor's love interest in her upcoming film 'Ek Ladki Ko Dekha Toh Aisa Laga', suggested reports.
Summary:
Deepika Padukone has said Priyanka Chopra is someone who has craved stability in a relationship, adding, "It's been a roller coaster for her." "I don't know Nick (Jonas) that well but you can tell that she feels settled," Deepika further said.
Summary:
Archaeologists from the Museum of London Archaeology have re-discovered a commercial ice house from the 18th century under a street in London's RegentâÂÂs Park area.
Summary:
Chinese athletes who use performance-enhancing drugs will receive criminal punishments and jail terms from next year, the state media reported on Friday.
Summary:
Dell returned to the New York Stock Exchange (NYSE) on Friday, turning public once again after about six years.
Summary:
US biotech startup iota Biosciences has raised $15 million in its Series A round of funding to produce in-body sensors "smaller than a grain of sand".
Summary:
Uttarakhand BJP President Ajay Bhatt on Saturday distributed radios to block presidents of Dehradun so that people can listen to PM Narendra Modi's 'Mann ki Baat' radio programme.
Summary:
A 1,000-pound (over 453 kilograms) World War II bomb was found during dredging operations at the Netaji Subhas Dock in Kolkata on Friday.
Summary:
A 45-year-old man from Assam was allegedly lynched by four members of a non-governmental organisation (NGO) in Meghalaya's East Garo Hills district.
Summary:
German authorities on Friday gave their approval to an $8 billion rail and road tunnel linking Denmark and Germany.
Summary:
Ali captioned the picture of the policemen standing on zebra crossing "Kannur's Beatles".
Summary:
"Whether it was one year, two years or three years, they were always proper relationships," Padukone said.
Summary:
Actress Deepika Padukone has said that when she met Ranveer Singh in 2012, she wanted to try the concept of casual dating and told Ranveer, "I really like you but I want to keep it open." "I did not emotionally invest in this relationship," said Padukone.
Summary:
Summary:
Ex-England captain Andrew Strauss' wife Ruth Strauss died aged 46 following a battle with cancer.
Summary:
Talking about the Cape Town Test ball-tampering scandal, former Australia batsman Dean Jones said, "It feels like we have a huge tattoo on our foreheads that we cannot erase." "These three boys (David Warner, Cameron Bancroft and Steve Smith) were old enough to make the right decisions.
Summary:
BJP MLA Devendra Singh Lodhi in Uttar Pradesh on Friday said that police inspector Subodh Kumar Singh, who was killed in the December 3 Bulandshahr violence, must have shot himself "accidentally".
Summary:
Enforcement Directorate on Saturday told a Delhi court that AgustaWestland accused middleman Christian Michel passes chits to his lawyers during their meetings, asking how to tackle questions on Congress leader Sonia Gandhi.
Summary:
BJP's Karnataka unit took a dig at the state's Chief Minister HD Kumaraswamy, calling him an 'accidental chief minister'.
Summary:
Further, the online platforms can only sell products with a shelf life of 30% or 45 days before expiry, at the time of delivery.
Summary:
Only 500 Sikh pilgrims will be allowed per day through the Kartarpur corridor and the pilgrims must constitute a group of 15 people, according to a draft agreement by Pakistan.
Summary:
Reportedly, the boy had been working for the farm owner for 20 days.
Summary:
A Madhya Pradesh woman's newborn girl, born with six fingers each on her both hands and six toes each on both feet, died after her mother cut her extra toes and fingers with a sickle.
Summary:
A passenger has claimed that he suffered food poisoning on December 18 after eating a muffin he purchased from a shop at Delhi's IGI airport, in which he found parts of a dead lizard.
Summary:
Meanwhile, over 40,000 security personnel will be deployed all over the city on the New Year's Eve, DCP Mumbai Police PRO Manjunath Singe said.
Summary:
A 30-year-old BSc graduate from Karnataka, Sanjay Kumar was arrested after he forged Prime Minister Narendra Modi's signature on a recommendation letter for a government job.
Summary:
Russia has finished building a 60-kilometre security fence separating annexed Crimea from mainland Ukraine.
Summary:
The Union Cabinet headed by PM Narendra Modi has approved a plan to list six government-owned companies and dilute stake in Kudremukh Iron Ore Company.
Summary:
"To contain the situation, it has been decided...to encourage exports of onions so that the domestic prices stabilize," the government said.
Summary:
Praising Indian captain Virat Kohli, Australia's batting coach Graeme Hick said that the Australian batsmen should learn from Kohli and show more intent.
Summary:
Praising Indian pacer Jasprit Bumrah, former Indian cricketer Aakash Chopra called the 25-year-old pacer the Virat Kohli of Indian bowling.
Summary:
Organisers of the Australian Open, the year's first Grand Slam tournament, have introduced an Extreme Heat Policy (EHP) ahead of the 2019 edition of the tournament.
Summary:
Ronaldo had opened the scoring in the second minute before scoring with a penalty in the 65th minute.
Summary:
Sports scientist Danny Deigan, who has helped raise the fitness levels of the Indian football team, says the methods followed by the team are "very similar" to the ones in leading clubs such as EPL's Arsenal.
Summary:
Google has reportedly begun rolling out its spam protection feature for Messages app, after over six months of developing it for Android operating system.
Spam protection", reports said.
Summary:
US President Donald Trump has not ordered the withdrawal of American troops from Afghanistan, a White House spokesperson said.
Summary:
Egyptian forces on Saturday claimed to have killed 40 terrorists, a day after four people were killed in an explosion that hit a bus near the Giza pyramids.
Summary:
Backed by the observation that breakfast is the most skipped meal of the day, MTR has the perfect answer with its '3 Minute Breakfast' range.
Summary:
During the Melbourne Test, Australian commentator Kerry O'Keeffe, who earlier insulted debutant Mayank Agarwal, was heard saying, "Why'd you name your kid Cheteshwar Jadeja?" O'Keeffe made the remark after being asked by Shane Warne about his trouble pronouncing names like Cheteshwar Pujara and Ravindra Jadeja.
Summary:
Steve Smith and David Warner's bans will end in March next year.
Summary:
Former England captain Alastair Cook, who retired from international cricket in September this year, has been knighted in the New Year's Honours.
Summary:
Enforcement Directorate on Saturday told a Delhi court that AgustaWestland accused middleman Christian Michel talked about "the son of the Italian lady" and how he's going to become the "next prime minister of the country".
Summary:
India's largest carmaker Maruti Suzuki is reportedly planning to shut its diesel engine assembly line in its Gurugram plant.
Summary:
The incident's video was recorded by people in the car that hit the child.
Summary:
Two AK assault rifles, a hand grenade, four magazines with 256 rounds and 59 rounds of sniper ammunition were seized during the operation.
Summary:
A self radicalised teenager from Jammu and Kashmir has been prevented from joining terrorist outfits by the Army and the state police, officials said on Friday.
Summary:
Seven other people who misled the authorities about his whereabouts or aided him in fleeing were also arrested.
Summary:
"There is now a small potential for Anak Krakatau to trigger another tsunami," the agency added.
Summary:
Sarandos, who is managing Netflix's $8-billion content budget this year, saw his base compensation rise 50% to $18 million.
Summary:
After the government revised the FDI policy in e-commerce sector, Amazon may have to sell its stake in Cloudtail, which is a large seller on Amazon's marketplace platform.
Summary:
The euro's share of reserves climbed to 20.5%, the highest since late-2015, while reserves held in Japanese yen reached a 16-year peak.
Summary:
Deepika Padukone has revealed that she is working on a superhero film, adding, "There's no script as yet.
Summary:
On the occasion of her film 'Maine Pyar Kiya' completing 29 years of its release on Saturday, Bhagyashree tweeted a picture with Salman Khan and wrote, "29 years flown by...and love still makes the world go round." Bhagyashree, who made her Bollywood debut with Sooraj R.
Summary:
Indian wicket-keeper Rishabh Pant equalled Naren Tamhane's and Syed Kirmani's record for the most number of dismissals registered by an Indian wicket-keeper in a Test series.
With his catch to dismiss Australian skipper Tim Paine, Pant reached 19 dismissals.
Summary:
Praising Indian pacer Jasprit Bumrah, former Australian captain Michael Clarke said, "He (Bumrah) must be a great guy to play with and to captain...
Summary:
Former Indian coach Anil Kumble has backed the idea of resting India's key bowlers in the next Indian Premier League ahead of the 2019 World Cup.
Summary:
Security researchers at an annual hacking conference in Germany said they successfully defeated vein biometric authentication by creating a fake hand out of wax.
Summary:
Claiming NDA will win 2019 Lok Sabha polls in Bihar, RLSP Vice President Bhagwan Singh Kushwaha left the party and joined the ruling JD(U), along with over 1,200 supporters.
Summary:
Attacking Congress over its "chowkidar hi chor hai" jibe, PM Narendra Modi on Saturday said, "This chowkidar will one day send these thieves to their right place.â "Chowkidar is working day and night with honesty and dedication to better your and your childrenâÂÂs future," he added.
Summary:
BJP ally Suheldev Bharatiya Samaj Party's (SBSP) President OP Rajbhar said his party will boycott all BJP events until their demand of 27% quota division for OBC category is fulfilled.
Summary:
Infibeam had announced it had acquired 100% stake in the Snapdeal-owned warehouse management platform in May.
Summary:
The investment comes after the startup raised â¹202 crore in a funding round led by new investor Sequoia Capital India in October.
Summary:
Delhi recorded the lowest temperature of the season at 2.6 degrees Celsius on Saturday morning, a Meteorological Department official said.
Summary:
However, they allegedly exchanged the ornaments and jewellery with fake gold.
Summary:
Seconds after she won the Miss Africa pageant, a celebratory sparkler set Miss Congo Dorcas Kasinde's hair on fire.
I feel good now," Kasinde later said.
Summary:
Responding to the controversy surrounding her husband and actor Anupam Kher's upcoming film 'The Accidental Prime Minister', BJP MP Kirron Kher said, "It (the film) should be India's official entry to the Oscars." "It's a pathbreaking film.
Summary:
The authority said Mahesh Babu owes â¹73.5 lakh for brand ambassador services rendered in 2007-08.
Summary:
Paine had said he'd support Mumbai Indians if Rohit hit a six.
Summary:
Australia ended the fourth day of Melbourne Test at 258/8 on Saturday, requiring another 141 runs to win.
Summary:
Delhi Capitals captain Shreyas Iyer, who last played an ODI in February and didn't get to play a single match in India's last two T20I series, said he is "emotionless now".
Summary:
In an end-of-year post, Facebook CEO Mark Zuckerberg has said that election interference and harmful speech are some of the issues that "can never fully be solved" by Facebook.
Summary:
Jharkhand Chief Minister Raghubar Das on Friday became the first Chief Minister of the state to complete four years in office.
Summary:
It alleged that the detention was over their Facebook posts stating the Khattar-led government in Haryana was working only for Punjabis.
Summary:
A German female member of Islamic State is facing war crimes charges in her home country for letting a five-year-old girl die of thirst in scorching sun.
Summary:
The New York City's skyline recently turned blue in colour after a power company in Queens experienced an electrical fault, causing an electrical arc flash and transmission disturbance.
Summary:
Talking about motherhood and planning a family, Deepika Padukone said, "It will happen when it has to happen.
That's what I hear from people who have had children." Talking about tackling her pregnancy rumours, she said, "I don't think there's anything to tackle.
Summary:
Kangana Ranaut will collaborate with 'Baahubali' writer K V Vijayendra Prasad and direct a film which will be a love story.
Summary:
Veteran actor Mithun Chakraborty is currently undergoing treatment for his chronic backache in Los Angeles, as per reports.
Summary:
Summary:
Angelina Jolie, while talking about her and Brad Pitt's children, said, "All [my children] have a good rebellious streak that is wonderful and curious." "I don't want them to be perfectly behaved little people that just say what's absolutely appropriate because I say so.
Summary:
Former Indian captain MS Dhoni reckons that IPL 2019 will be good preparation for the Indian bowlers ahead of the 2019 World Cup, which is scheduled to be held in England.
Summary:
Pakistan coach Mickey Arthur was handed an official warning and one demerit point for breaching the ICC Code of Conduct during the third day's play of the first South Africa-Pakistan Test.
Summary:
Summary:
Union Minister Jitendra Singh on Friday blamed former PM Jawaharlal Nehru for the situation in Jammu and Kashmir, saying that the crisis in the state began with "Nehruvian blunder".
Summary:
After authorities of national carrier Air India reportedly called back their personnel from an air show in Visakhapatnam, Andhra Pradesh CM N Chandrababu Naidu accused the Centre of not allowing his government to hold the event.
Summary:
The first-ever woman to hold an executive position at NASA, Nancy Grace Roman, passed away at the age of 93 on December 25.
Summary:
The search operation turned into an encounter after the terrorists opened fire at the security forces.
Summary:
The Aircraft Accident Incident Bureau (AAIB) will summon the pilots of three international flights that narrowly escaped a mid-air collision in Delhi flight information region on December 23, said reports on Friday.
Summary:
At least seven people were killed and four others were injured on the Ambala-Chandigarh National Highway, Haryana on Saturday after two SUVs collided with a vehicle due to heavy fog.
Summary:
US President Donald Trump has vowed to cut aid to Honduras, Guatemala and El Salvador, accusing the Central American countries of "doing nothing for the US".
Summary:
Three Vietnamese tourists and an Egyptian guide were killed on Friday after a bomb hit a bus near the Giza pyramids in Egypt, officials said.
Summary:
A US mother's video of catching her six-year-old son taking help from Amazon's artificial assistant Alexa to solve a math problem has gone viral on social media.
Summary:
A day after Tim Paine teased India wicketkeeper Rishabh Pant in the Melbourne Test over his exclusion from ODI squad, Pant taunted the Australia wicketkeeper-captain by calling him "temporary captain".
Summary:
Former India captain MS Dhoni has said him joining Chennai Super Kings was like a "perfect mixture of rum and coke".
Summary:
A National Airlines flight and EVA Air flight breached mandatory separation, following which the former came on the path of a KLM flight.
Summary:
Delhi High Court has allowed that Section 354A of Indian Penal Code can be used by transgenders to register complaints of sexual harassment.
Summary:
The tourists were provided with food, shelter, medicines and warm clothes by the Army.
Summary:
Pakistan Railways Minister Sheikh Rashid has said Indian Prime Minister Narendra Modi may order surgical strike against the country "to appease his far-right constituents" before the 2019 elections.
Summary:
The Delhi Commission for Women (DCW) has said that female staff at a shelter home in Dwarka allegedly abused the girls by putting chilli powder in their private parts as punishment.
Summary:
The shutdown was imposed after opposition Democrats resisted Trump's demand for $5 billion for his Mexico border wall.
Summary:
The 25-year-old confessed to the incident but said she did not mean to commit an indecent act and that she was tickling the monkey.
Summary:
Following a phone call with Nelson Mandela in June 1990, former UK PM Margaret Thatcher had told her then-Foreign Affairs Adviser that the ex-South African President had "a closed mind", according to newly released secret files.
Summary:
Deepika Padukone, while talking about her relationship with husband Ranveer Singh during their courtship days, said, "We've fought...we've had our ups and downs.
Summary:
Summary:
Summary:
Madhur Bhandarkar, while talking about the agitations and controversies surrounding the upcoming film 'The Accidental Prime Minister', said, "These agitations are uncalled for, especially when we talk about freedom of expression." "It is just the trailer that has been released and people are already agitated about it...
Summary:
Summary:
UK-based medtech startup TestCard has created an at-home postcard-sized urine test, similar to a pregnancy test, which is analysed by an accompanying app to provide immediate results.
Summary:
Taking a dig at BJP for its proposed Rath Yatra, West Bengal CM Mamata Banerjee on Friday said that Rath Yatras are not carried out to "kill people".
Summary:
PM Modi further said that people of the country will teach them a lesson for their "misgovernance".
Summary:
The measures are part of fresh initiatives announced by the CM to fight against drugs.
Summary:
BJP MPs Om Prakash Yadav and Harish Dwivedi on Friday asked the Centre about steps it proposes to take to treat people suffering from "Selfitis", demanding details about how many people approached therapists over the "disorder".
Summary:
He further said that some people shield wrong people in the name of human rights violation.
Summary:
He further said that government has developed Cybercrime Reporting Portal for addressing complaints of online harassment of women.
Summary:
Saudi Arabia had imposed a travel ban on Lebanon last year over a political crisis following the resignation of PM Saad Hariri.
Summary:
Three men were found guilty of murder on Friday for causing an explosion in a shop in February in Leicester, UK, that killed five people, including three members of an Indian-origin family.
Summary:
The Syrian Army said on Friday it had entered the Kurdish-held Manbij for the first time in six years after the Kurdish YPG forces urged the regime of Bashar al-Assad to protect the town from Turkish attacks.
Summary:
Shah Rukh Khan has revealed he told his daughter Suhana that if a boy comes and tells her 'Rahul, naam to suna hoga', his dialogue from 'Dil To Pagal Hai', then he's a stalker.
Summary:
Summary:
Several spectators were reportedly evicted from Melbourne Cricket Ground's (MCG) Bay 13 during the ongoing Australia-India Test for their racially motivated taunts at Indians.
Summary:
India pacer Jasprit Bumrah has revealed his 113-kmph yorker that dismissed Australia's Shaun Marsh in the Melbourne Test was Rohit Sharma's idea.
Summary:
"Bagging a champion when he is smashing your national team into a pulp is just dumb," a user tweeted reacting to it.
Summary:
Summary:
A US man said his New York house was booked through Airbnb by a man in December 2017 who threw a New Year's party for 300 people without his permission.
Summary:
A video of a Chinese soldier teaching tai-chi, a martial art form, to an Indian soldier is being widely shared online.
Summary:
A passenger was arrested from Hyderabad airport for hiding over two kilograms of smuggled gold worth â¹66 lakh in a microwave oven.
Summary:
Headless bodies of a 32-year-old woman, a 12-year-old girl and a toddler were found inside a drum on the Rohtak-Bhiwani road in Haryana on Friday.
Summary:
The US' oldest known WWII military veteran, who credited whisky and cigars for his long life, has died in Texas at the age of 112.
He was honoured on Veterans Day in 2013 by ex-President Barack Obama.
Summary:
The court, however, rejected Amul's claim that the ads were not depicting frozen desserts in a disparaging manner.
Summary:
Swiss company Nestle is planning to launch meat-free burger made from soy and wheat protein under the Garden Gourmet label in 2019.
Summary:
Congress spokesperson Randeep Singh Surjewala on Friday denied reports claiming that the Madhya Pradesh government will ban the film 'The Accidental Prime Minister'.
Summary:
Barcelona forward Lionel Messi, who has won a joint record five Ballon d'Or awards, said that he was not surprised on not winning the award this year.
Summary:
Blyth Spartans announced that the company had bought a pitch-side advertising board that was unveiled this week at the club's home ground Croft Park.
Summary:
The Karnataka government has developed a software to check misuse of the farm loan waiver.
Summary:
"The Centre has agreed...to allot a 1000 square yards plot for the office's construction," a party leader said.
Summary:
BJP leader Anurag Thakur on Friday alleged that a few parties delayed the Triple Talaq Bill to secure their vote bank "in the name of caste and communalism".
Summary:
Telangana Congress President N Uttam Kumar Reddy has said TDP chief N Chandrababu Naidu isn't responsible for the defeat of the Maha Kootami alliance in the state assembly elections.
Summary:
Future Group Founder and Group CEO Kishore Biyani, while talking about the government's new e-commerce policy, said, "Many companies, including a lot of online groceries, will have to shut shopâÂÂ.
Summary:
China's Ministry of Education has asked universities to inspect all research work on gene-editing since 2013 and submit a report by the year-end proving the work does not cross ethical boundaries.
Summary:
At 32,925, Madhya Pradesh accounts for the second highest number of missing children.
Summary:
The provision is to ensure that the students' exams and sports events do not clash.
Summary:
The police said they "strongly suspect" this after analysing CCTV footage of nine chain snatching crimes, the report said.
Summary:
The court has awarded Rajkumar imprisonment of 10 years and has imposed a fine of â¹42,000.
Summary:
She has also been barred from working with minors for five years after serving her sentence.
Summary:
Amid the controversy over the film 'The Accidental Prime Minister', former Jammu and Kashmir Chief Minister Omar Abdullah tweeted, "Can't wait for when they make The Insensitive Prime Minister.
Summary:
Reacting to controversies surrounding his upcoming film 'The Accidental Prime Minister', actor Anupam Kher on Friday tweeted, "I am not going to back off.
Summary:
BJP tweeted trailer of the film 'The Accidental Prime Minister' and wrote, "Riveting tale of how a family held the country to ransom for 10 long years." "Was Dr Singh just a regent who was holding on to the PM's chair till the time heir was ready?
Summary:
Summary:
India batsman Rohit Sharma has revealed that his teammates laughed at him when they got to know that he is going to be a father.
Summary:
Pakistan's Sarfraz Ahmed and South Africa's Faf du Plessis got out for 0(4) and 0(1) in their first innings, respectively.
Summary:
Ellison, who calls himself a close friend of Musk, had revealed that Tesla is his second-largest investment.
Summary:
Gurugram-based hospitality startup OYO has said it will hold the first round of share buyback offered to current and former employees in January, which is estimated at about â¹40-50 crore.
Summary:
Prime Minister Narendra Modi on Friday announced financial assistance of â¹4,500 crore to Bhutan for its 12th Five Year Plan after holding talks with his Bhutanese counterpart Lotay Tshering.
Summary:
The 30-year-old alleged she had tested HIV negative before blood transfusion, but tested positive during another check-up months later.
Summary:
The Union Cabinet has approved amendments to the Protection of Children from Sexual Offences (POCSO) Act, including the provision for death penalty for "committing aggravated penetrative sexual assault crime" on children.
Summary:
Five men in a drunken state obstructed the way of a Zomato delivery man and attacked him on refusing to give them food meant to be delivered for a client in Hyderabad on Wednesday.
Summary:
Broadcast regulator TRAI has given time till January 31 for consumers to opt for channels of their choice under the new framework for broadcasting and cable services.
Summary:
US President Donald Trump accidentally revealed the details of a Navy SEAL team in Iraq after he shared a video of himself posing with them, a report said.
Summary:
China's stock market is currently the world's second biggest with a market capitalisation of $5.46 trillion.
Summary:
Dismissing a plea by Ramdev's Divya Pharmacy, the Uttarakhand High Court said the company should share revenues derived from selling biological resources as 'herbal products' with farmers.
Summary:
Speaking about Tamil Nadu spinner Varun Chakravarthy, who was bought by KXIP for â¹8.4 crore, KXIP co-owner Preity Zinta said, "Varun is an underexposed mystery bowler...
Summary:
His dream XI included four other Indian players with Afghanistan spinner Rashid Khan being included alongside England's Joe Root and Jos Buttler.
Summary:
South Africa beat Pakistan by six wickets to take a 1-0 lead in the three-match Test series on Friday.
Summary:
Italian club Inter Milan were ordered to play their next two home games behind closed doors on Thursday after their supporters racially insulted Napoli defender Kalidou Koulibaly during Wednesday's Serie A match at San Siro.
Summary:
Software services provider Tech Mahindra has launched an open-source artificial intelligence (AI) platform GAiA for enterprises, powered by The Linux Foundation's project Acumos.
Summary:
Moderators were also told Facebook may get banned in India over the same, report added.
Summary:
Lemon Tree Hotels on Thursday announced a â¹3,000 crore joint venture with global private equity firm Warburg Pincus to develop a co-living platform.
Summary:
Yogi Adityanath led-Uttar Pradesh government has suspended three personal secretaries of UP ministers over corruption charges, following a sting operation by a news channel.
Summary:
On Thursday, the police had stopped a priest from taking three devotees inside the temple as they suspected the devotees of not being Hindus.
Summary:
The United Nations International Children's Emergency Fund (UNICEF) has said the world has "continued to fail children" in conflict zones as they suffered "extreme levels of violence" in 2018.
Summary:
Defending his proposal of building a wall along the US-Mexico border, US President Donald Trump said that Israel's wall "works 99.9%", referring to Israel's security fence on the border with Egypt.
Summary:
Katrina Kaif has clarified her story in 'Zero' isn't inspired by her breakup with Ranbir Kapoor.
"I knew...people are gonna try (and connect the dots) but I also knew that when they see the film they can't do that because the pitch of that character is so different," said Katrina.
Summary:
After Anupam Kher reacted to Naseeruddin Shah's comment that he fears for his children in India, Shah responded, "He doesn't talk reasonably...It's so infantile...I don't even need to react to that." Anupam had earlier said, "There's so much freedom in the country that you can abuse the army...pelt stones at the soldiers.
Summary:
Speaking about respecting the privacy of women, Shah Rukh Khan said, "I've been married for 30 years, I've never looked into my wife's [Gauri] purse.
Summary:
Reacting to her 'Gangs of Wasseypur' co-star Nawazuddin Siddiqui appearing as Shiv Sena founder Bal Thackeray in his upcoming film 'Thackeray', actress Richa Chadha said, "Are e humara Faizal toh bipolar nikla be!" Nawazuddin last appeared in the film 'Manto' as Urdu author Saadat Hasan Manto.
Summary:
Summary:
Speaking about respecting the privacy of women, Shah Rukh Khan said, "I've been married for 30 years, I've never looked into my wife's purse.
Summary:
Summary:
In his notice for adjournment, he said there was a need to rescue the 15 miners trapped in Mizoram, even though the miners are trapped in Meghalaya.
Summary:
Summary:
The police have claimed that a 'gang of rats' drank away nearly 1,000 litres of seized liquor stored in plastic cans at a police storeroom in Uttar Pradesh's Bareilly.
Summary:
The gang, which has been active since 2010, would drive in a Scorpio car and rob houses.
Summary:
The programme will help India become the fourth nation to have a manned mission to space.
Summary:
Addressing American troops in Iraq, President Donald Trump said the US is "no longer the (sucker) of the world", claiming it's "respected again as a nation".
Summary:
The vehicle landed on a dry river bank several metres below.
Summary:
French infrastructure giant Vinci has agreed to acquire control of London's Gatwick Airport, the world's second-busiest single runway airport after Mumbai, for $3.7 billion.
Summary:
Aviation regulator DGCA has issued an advisory stating that airlines should make in-flight announcements in local language "to the extent feasible".
Summary:
Archie Schiller, the co-captain of Australia for the ongoing Boxing Day Test match, said that he wants to dismiss Indian captain Virat Kohli as according to him Kohli is the best batsman in the world.
Summary:
"India should have bowled fifteen overs and made sure they pick two wickets," Laxman said.
Summary:
Olympics 2020 will use a judging system developed by Japanese IT firm Fujitsu which uses artificial intelligence (AI) and LIDAR technology found in autonomous cars.
Summary:
Indian cricketer Arshdeep Singh, who was part of India's Under-19 World Cup-winning squad, thanked God after getting picked by Kings XI Punjab in the recent IPL auction.
Summary:
The warrant has been issued against Patra as he did not appear in court despite a summon.
Summary:
The CBI has registered a case against several persons for allegedly trafficking three girls to Kenya under the pretext of offering them employment.
Summary:
Union Minister for water resources, Nitin Gadkari said his ministry will ensure that River Ganga is 100% clean by March 2020.
Summary:
The National Human Rights Commission today issued notices to the UP government after a Dalit man allegedly died in police custody in Amroha district.
Summary:
"NIA must learn from earlier episodes in which the accused were acquitted after decades," she added.
Summary:
The MP from Chittoor has previously dressed up as a schoolboy, tantrik, magician, Ravana and Lord Krishna.
Summary:
Crocker's wifeâ the children's stepmother and his mother-in-law were also arrested.
Summary:
Customers purchasing the smartphone from Amazon, OnePlus India, Croma and OnePlus offline stores will get no-cost EMI offer for 6 months.
Further, existing OnePlus users will get an additional â¹2,000 discount on exchanging their device for OnePlus 6T.
Summary:
The Hyderabad GST Commissionerate has attached two bank accounts of Telugu actor Mahesh Babu to recover tax dues of â¹73.5 lakh.
Summary:
Anupam Kher has said he doesn't need to have political ambitions to talk about the country.
"Unfortunately, when you speak about politics in [India] people think you've political ambition," said Kher.
Summary:
During India's second innings in Melbourne Test, Australia wicketkeeper-captain Tim Paine teased Rishabh Pant over his exclusion from the ODI squad.
"Big MS [Dhoni] is back in...one-day squad, we might get [Pant]...to [Hobart] Hurricanes," he said.
Summary:
India ended the third day of the Melbourne Test against Australia at 54/5 today, leading Australia by 346 runs.
Summary:
Billionaire Elon Musk has asked a judge to dismiss a defamation lawsuit by British caver Vernon Unsworth whom he called a paedophile on Twitter.
Summary:
Kejriwal, who managed to resume his speech following the intervention, said, "Gadkari never made us feel like he's from an opposition party." Kejriwal underwent surgery in 2016 for chronic coughing.
Summary:
Snapdeal Co-founder and CEO Kunal Bahl on Thursday said that the revised Foreign Direct Investment (FDI) policy on e-commerce would create lasting gains for both sellers and buyers.
Summary:
The Karnataka Anti-Corruption Bureau conducted raids at 17 locations as part of its investigations against five government officials on Friday.
Summary:
Ahead of New Year celebrations, Gujarat's Vadodara Police have issued an advisory stating, "People have been advised not to wear clothes that may have an adverse effect on a child's psychology." The advisory adds, "Alcohol and drugs are banned.
Summary:
A man recited the Hanuman Chalisa as a team of doctors removed a tumour from his brain at a hospital in Jaipur.
Summary:
"I totally agree!" Trump wrote along with Obama's tweet.
Summary:
A 12-year-old boy was found alive 40 minutes after being swept away and buried by an avalanche while skiing with his parents in the French Alps on Wednesday.
"We can call it a miracle.
Summary:
Australia's Travis Head said that he was "disappointed" at the booing of Mitchell Marsh in the ongoing third Test against India in Melbourne.
I don't think any Australian cricketer in Australia deserves to be booed," Head said.
Summary:
The Australian Cricketers' Association (ACA) has expressed concerns over the use of stump microphones, with the body's chief, Alistair Nicholson, saying that they don't want players to get unnecessary sanctions for "unintentional and accidental" on-field conversations.
Summary:
Australian cricketer Usman Khawaja's brother Arsalan was re-arrested on Thursday "after he allegedly attempted to influence a witness" in the counter-terror investigation.
Summary:
Defending the Muslim Women (Protection of Rights on Marriage) Bill, 2018, BJP leader Meenakshi Lekhi said, "In which suraa of the holy Quran is talaq-e-biddat mentioned?
Summary:
Former PM Manmohan Singh and Congress President Rahul Gandhi cut a cake at the party's headquarters on the occasion of Congress Foundation Day on Friday.
Summary:
Around 20 Odisha Fire Service personnel were sent to Shillong on Friday to rescue trapped miners in Meghalaya.
Summary:
Justice Chagari Praveen Kumar has been appointed as acting Chief Justice of Andhra Pradesh High Court with effect from January 1.
Summary:
Lok Sabha on Thursday passed the bill which makes instant Triple Talaq a criminal offence.
Summary:
The High Court bench also suggested the government to consider a complete ban on the use of plastic in any form.
Summary:
Srinagar witnessed the coldest night in 28 years on Thursday, with the temperature dipping to minus 7.7 degree Celsius, an India Meteorological Department (IMD) official said.
Summary:
At least two people were killed and three others were injured after a bridge collapsed in Dehradun district of Uttarakhand on Friday.
Summary:
Bajrang Dal on Thursday said that they will protest against New Year celebrations in Bengaluru, terming the celebration as anti-Hindu and anti-Indian.
Summary:
Bangladesh slowed down Internet services across the country and suspended 3G and 4G services for 10 hours to "prevent propaganda and misleading content spreading on the Internet" ahead of the general elections, an official said.
Summary:
Nearly 1,000 North Korean defectors have had their personal data leaked after a computer at a South Korean resettlement centre was hacked, the Unification Ministry said.
Summary:
A 65-year-old woman on Wednesday gave birth to a healthy baby girl at a hospital in Poonch district of Jammu & Kashmir.
Summary:
The couple had a Hindu wedding on December 12 followed by a Sikh wedding on December 13.
Summary:
Veteran actor Kader Khan, who has been admitted to a hospital, is in critical condition and has been put on a BiPAP ventilator, as per reports.
Summary:
Hindustan Times (HT) praised Ranveer's performance and wrote that he "lifts [the]...blockbuster." It has been rated 4/5 (Bollywood Hungama), 3.5/5 (TOI) and 3/5 (HT).
Summary:
Kerala's 90-year-old Narayanan Nambiar met his 86-year-old wife Sarada, after 72 years of being separated from each other.
Summary:
Ponting added that scoring rate of two runs per over makes it "pretty hard" to win Tests.
Summary:
Ex-Australia fast bowler Dennis Lillee has criticised the pitch used for the second Australia-India Test at the new Optus Stadium in Perth for having variable bounce.
Summary:
Responding to Australian captain Tim Paine's "changing to Mumbai" comment, Indian batsman Rohit Sharma said that if Paine gets a hundred, he will ask his boss at Mumbai Indians to buy him.
Summary:
PUBG confirmed the notice claiming a ban on the game is completely fake.
Summary:
While the police haven't been able to find the gun used to kill Singh, they said Nat has confessed to the crime.
Summary:
Aviation regulator DGCA has asked airlines to direct pilots to make announcements of important monuments and sites like Taj Mahal, Statue of Unity and Ajanta Ellora while flying over them.
Summary:
At least 5 people were killed and several others were injured after a fire broke out on the 14th floor of a residential tower in Mumbai's Chembur on Thursday.
Summary:
Former US President Barack Obama has been named the most admired man by Americans for the 11th year in a row, according to an annual poll conducted by Gallup.
Summary:
Adding that the funding is one of the largest deals in India at the family holding company level, Biyani said it will help the group to diversify its investments.
Summary:
In a year-end message to over 7 lakh employees, Chandrasekaran said 2019 will bring a number of macro challenges.
Summary:
The feature, which let users scroll their feed similar to the interface of Instagram Stories, launched on a broader scale than anticipated.
Summary:
The app contains a database of five lakh criminals collected from criminal records of the state police, the prisons department and Government Railway Police.
Summary:
Alphabet-owned drone delivery startup Wing is reportedly working on making quieter drones after facing noise-related issues in its trial, which it has been conducting in Australia since 2014.
Summary:
Summary:
The group's automobile arm had won a government contract for supplying electric cars.
Summary:
The firm has created 10 cloned dogs so far, with 10 more being gestated currently.
Summary:
After 35 students were injured in a bus accident in Himachal Pradesh while on their way to attend Prime Minister Narendra Modi's rally, the PM said, "I pray for them." He also urged people to exercise caution while returning from the rally, and stated, "I do not want an accident to take place.
Summary:
Haryana CM Manohar Lal Khattar on Thursday announced that around 44,000 tube well connections pending since 1 January 2014 will be issued demand notices by 31 March 2019.
Summary:
Indian Railways has decided to grant 40% fare concession to transgender citizens aged 60 or above, Chief Public Relations Officer of the Central Railways, Sunil Udasi said.
Summary:
Pictures and videos of the incident surfaced online, following which the Mandal Education Officer filed a complaint against the teacher.
Summary:
Pakistan has called the Kartarpur corridor the "high point of diplomacy" for the Imran Khan government.
Summary:
Actress Deepika Padukone has revealed she got engaged to Ranveer Singh four years ago, a Filmfare magazine report quoting the actress said on Thursday.
Summary:
Actress Twinkle Khanna has said that she did not change her surname after marrying Akshay Kumar as she is not a tiny company that a big firm like Godrej has taken over following which she needs to change her brand name.
Summary:
With his 82-run knock against Australia in the first innings of the third Test, India captain Virat Kohli took his tally of runs in away Test matches in 2018 to 1,138.
Summary:
Talking about his critics after scoring 106(319) in the first innings of the Melbourne Test against Australia, India batsman Cheteshwar Pujara said when he plays international cricket, he doesn't need to silence anyone.
Summary:
Ex-Australia coach Darren Lehmann has suggested the then captain Steve Smith shouldn't have turned a blind eye to the ball-tampering plan during the Cape Town Test against South Africa last year.
Summary:
Liverpool thrashed Newcastle United 4-0 on the Boxing Day, which marked the halfway point of the Premier League season, and are on top of the Premier League points table with a six-point lead over second-placed Tottenham.
Summary:
Croatia captain Luka ModriÃÂ was named Balkan Athlete of the Year on Thursday, becoming only the second footballer to clinch the award after ex-Bulgaria footballer Hristo Stoichkov in 1994.
Summary:
YouTube later tweeted "Our mistake - we forgot to credit Lily Hevesh for this video!"
Summary:
Union Minister Smriti Irani on Thursday said, "People earlier claimed dowry was a mutual agreement between two agreeing parties, it was a civil matter.
Summary:
An eight-year-old student of a private school in Madhya Pradesh's Bhopal was allegedly raped by her classmate, police said on Thursday.
Summary:
Police have seized 1,000 kilograms of adulterated butter being packed in Amul packaging for sale after raiding a factory at Maharashtra's Ghodbunder village.
Summary:
A 71-year-old Frenchman has started a journey across the Atlantic Ocean in a barrel-shaped orange capsule which contains a sleeping bunk, kitchen and storage.
Summary:
Williamson further revealed that he would have liked to bat alongside ex-Australia captain Ricky Ponting.
Summary:
RJD leader Tejashwi Yadav, while taking a dig at the NDA government, said, "arithmetic does not always work, chemistry certainly does in a democracy".
Summary:
BJP National General Secretary Kailash Vijayvargiya on Thursday said Congress President Rahul Gandhi should stop dreaming of becoming the next Prime Minister of the country.
Summary:
Kerala-based artificial intelligence startup Tranzmeo has secured an undisclosed pre-seed fund from Hindustan Petroleum (HPCL) for its AI-powered product, T-connect OneView.
Summary:
Scientists at Francis Crick Institute in London are developing a new method to treat cancer using immune cells.
Summary:
Further, 15-20% of India's new leprosy cases were reported in Bihar.
Summary:
BJP General Secretary Ram Madhav has said Pakistan PM Imran Khan teaching India on how to deal with minorities is like a "demon preaching the Vedas".
Summary:
He further said that this law aims to put Muslim men in jail.
Summary:
Russia has said that the US shouldn't try to influence the line of succession in Saudi Arabia, adding that Crown Prince Mohammed bin Salman has "every right" to succeed his father.
Summary:
Authorities have warned that the crater of Anak Krakatau remains fragile, which could cause another collapse and tsunami.
Summary:
Pakistan announced on Thursday that it would place the name of former President Asif Ali Zardari on the Exit Control List (ECL), thereby barring him from leaving the country, over the ongoing money laundering probe against him.
Summary:
US-based payments group Visa has said it will buy UK-based Earthport for around $250 million.
Summary:
Indian Oil Corporation, Oil and Natural Gas Corporation (ONGC) and NTPC emerged as the top three most profitable Public Sector Undertakings (PSUs) in 2017-18.
Summary:
Corporate Affairs Secretary Injeti Srinivas has said non-adherence to timelines and inordinate delay in admission of cases are major concerns under the Insolvency and Bankruptcy Code (IBC).
Summary:
India's fiscal deficit in the April-November period stood at â¹7.17 lakh crore or 114.8% of the budgeted target for the current financial year.
Summary:
The Lok Sabha has passed the Muslim Women (Protection of Rights on Marriage) Bill, 2018, following a debate.
Summary:
A picture shared by Priyanka Chopra on her Instagram story reveals American singer Nick Jonas had 'Om Priyankaya Namah' written in Sanskrit on his hand during their Mehendi ceremony.
Summary:
Kohli wanted to come back for a fourth run when Pujara had just started running the third.
Summary:
O'Keeffe had said that Mayank's highest first-class score of 304* had come against "railway canteen staff" and the bowlers included "chefs and waiters".
Summary:
Days after calling Team India captain Virat Kohli the "world's worst behaved player", actor Naseeruddin Shah said Kohli should "behave with dignity like his predecessors".
"His cricketing brilliance pales beside his arrogance and bad manners," Naseeruddin had earlier said.
Summary:
Arsenal midfielder Mesut ÃÂzil surprised Kerala-based fan Inzamam-ul-Haq by sending an Arsenal jersey for his son Mehd Ozil, who is named after him and will turn one on December 29.
You will always be in our prayers," Inzamam said in a video message for ÃÂzil.
Summary:
Taiwanese contract manufacturer Foxconn will reportedly begin assembling top-end iPhones in India in 2019 at its plant in Tamil Nadu's Sriperumbudur.
Summary:
During a debate on Triple Talaq Bill in Lok Sabha on Thursday, Law Minister Ravi Shankar Prasad said, "20 Islamic nations have banned Triple Talaq, then why can't a secular nation like India?" "I request this shouldn't be looked through the prism of politics," Prasad added.
Summary:
Opposing the Triple Talaq Bill in its current form, Congress MP Sushmita Dev said, "The aim of the bill is not to empower Muslim women but to penalise Muslim men".
Summary:
Over 100 students were hospitalised from Karnataka's Chikkaballapur on Thursday due to food poisoning allegedly after eating food from their hostel mess.
Summary:
Several passengers travelling in the Kolkata Metro fell ill and had to be evacuated after smoke filled the coach they were travelling in following a fire on the train on Thursday.
Summary:
Santosh Singh, supervisor of the 71-personnel team to rescue 15 Meghalaya miners trapped since December 13, has said that divers have not gone inside the pit since Monday as the crane operator had not turned up because of Christmas.
Summary:
China's former deputy intelligence chief Ma Jian was sentenced to life in prison on Thursday for taking bribes.
Summary:
A Parliamentary Standing Committee led by Derek O'Brien has said that India's largest airline IndiGo is the "worst-performing" carrier for consumers.
Indigo even charges for 1-2 kg overweight of baggage," O'Brien said.
Summary:
This was higher than the â¹10.38 lakh crore market value of 25 listed companies of the Tata Group.
Summary:
Shiv Sena leader Sanjay Raut, who has written the story of the film 'Thackeray', has said nobody can ban the film.
Summary:
Deepika Padukone, who'll be seen portraying acid attack victim Laxmi in 'Chhapaak', has said the upcoming film is about the "human spirit".
Deepika further said there is a lot to learn from Laxmi's journey.
Summary:
Summary:
"The camera...can be rotated in any direction as per command given by the engineers," Railways said.
Summary:
During the discussion on Triple Talaq Bill in Lok Sabha, Union Textiles Minister Smriti Irani on Thursday said that like dowry and sati, triple talaq must be penalised.
Summary:
NCR-based High Street Essentials, the parent company of online fashion portals FabAlley and Indya, has raised around â¹60 crore in a Series B round of funding led by SAIF Partners.
Summary:
Russian cosmonauts had conducted a nearly eight-hour-long spacewalk to examine the hole earlier this month.
Summary:
Naqvi added all Indians are secure and Khan should worry about the people of Pakistan.
Summary:
The protests in Taiwan follow the 'yellow vest' protests in France against rising taxes and government policies.
Summary:
Israeli PM Benjamin Netanyahu announced earlier this week his decision to disband his coalition.
Summary:
Aviation regulator Directorate General of Civil Aviation (DGCA) has proposed to limit the working hours of air traffic controllers to 12 hours a day to tackle fatigue among employees.
Summary:
The Corporate Affairs Ministry's inspection of the books of six companies linked to the ICICI Bank controversy is at an "advanced stage", a senior official said.
Summary:
Late English umpire David Shepherd would hop and skip on the cricket field every time the scoreboard read 111, 222, 333 and so on.
Summary:
Sushmita Sen has shared a video on Instagram which shows her dancing with Salman Khan at his birthday party held last night.
Summary:
Comedian Bharti Singh has revealed she waited for around 8-9 months to be part of Kapil Sharma's show, which is set to go on air on December 29.
Summary:
Earlier, a 55-year-old British explorer died while attempting similar trek in 2016.
Summary:
In comparison, around 25 Indian companies that floated IPOs together raised $4.97 billion (around â¹34,117 crores) from the investors.
Summary:
In a letter to Maharashtra CM Devendra Fadnavis, Shiv Sena youth wing chief Aaditya Thackeray has requested that cities including Mumbai be allowed to remain open all night for New Year celebrations.
Summary:
Summary:
A 17-year-old girl's rape by her uncle came to light after she was taken to a Maharashtra hospital for stomach ache and delivered a baby in her seventh month.
Summary:
He had donated blood several times at the District Headquarters Hospital, they added.
Summary:
The man was born with Senior Loken Syndrome, a genetic condition that resulted in kidney failure and visual impairment.
Summary:
A private school in Andhra Pradesh's Chittoor punished six students who came late by forcing them to stand naked outside the school building.
Summary:
The donor was unaware of his condition when he donated the blood and tried to kill himself in guilt, reports claimed.
Summary:
An FIR has been filed against the girl, who alleged she was raped by Unnao MLA Kuldeep Singh Sengar, and her family members for allegedly forging documents as proof that she was a minor.
Summary:
Hasleen, who had participated in the Miss India pageant in 2011, had earlier shared pictures from her Mehendi ceremony on Instagram.
Summary:
Ramdev's Patanjali Ayurved witnessed a 10% decline in revenues to â¹8,135 crore in 2017-18, compared to â¹9,030 crore the previous year.
Summary:
Commerce Minister Suresh Prabhu has said India aims to receive $100 billion in foreign direct investments (FDI) in the next two years.
Summary:
Scientists at IIT Roorkee have claimed to develop a warning system that alerts people up to a minute before an earthquake strikes.
Summary:
Kerala BJP President PS Sreedharan Pillai on Thursday said PM Narendra Modi will arrive in Kerala's Pathanamthitta on January 6 to kick-off the campaign for the upcoming Lok Sabha elections.
Summary:
Newly-appointed BJP Uttar Pradesh election in-charge Gordhan Zadafia on Thursday said, "Touched by responsibility given by PM (Narendra Modi) to me.
Summary:
Ahead of the 2019 Lok Sabha polls, BJP President Amit Shah on Wednesday appointed in-charges for 17 states.
Summary:
Gurugram-based dockless bicycle sharing startup Mobycy has added e-bike and e-scooter sharing to its business.
Summary:
President Ram Nath Kovind on Wednesday issued orders stating that Andhra Pradesh will have a separate HC which will function from Amravati, the capital of the state.
Summary:
The United Television Media Association (UTMA) held protests in Guwahati on Thursday against All India United Democratic Front (AIUDF) chief Badruddin Ajmal after he abused a journalist and threatened to break his head.
Summary:
Eight policemen, including the Station House Officer of Dhanaura police station in UP's Amroha, were suspended for "dereliction of duty" after a Dalit man allegedly died in custody.
Summary:
The Indo-Tibetan Border Police, Pithoragarh police, revenue and forest officers on Wednesday rescued 11 trekkers from Uttarakhand's Munsiyari tehsil after they got lost following heavy snowfall, officials said.
Summary:
Russian President Vladimir Putin hailed the successful launch and said that the new missile system will be deployed in 2019.
Summary:
Till date, Air India has realised an amount of â¹410 crore through sale of non-core assets, Sinha added.
Summary:
With its Custom-fit car loan, customers can now purchase a bigger car at the EMI of a smaller one.
Summary:
Indian-American Rajesh Subramaniam, an IIT Bombay graduate from Thiruvananthapuram, has been named as the President and Chief Executive Officer of US courier delivery giant FedEx Express.
Summary:
Union Minister Smriti Irani took to Instagram to share a Boomerang video featuring her with actress Janhvi Kapoor and revealed that Janhvi ended up calling her 'aunty'.
Summary:
One of my friends was dancing there...he took me...for fun." "It went up to â¹750 for Campa Cola...Then it was â¹1,500 for the longest time.
Then I got â¹31,000 for 'Maine Pyar Kiya'," he had added.
Summary:
He tweeted, "Nawazuddin has repeated 'Uthao lungi bajao pungi'...in the film...Hate speech against South Indians...Scary stuff!" "Conveniently un-subtitled #Marathi trailer of #Thackeray.
Summary:
During India's first innings in the Melbourne Test, Australia wicketkeeper-captain Tim Paine taunted Rohit Sharma by saying, "There is a toss-up between [Rajasthan] Royals and [Mumbai] Indians for me.
Summary:
Australia ended the second day of the Melbourne Test at 8/0 on Thursday, trailing India by 435 runs in the first innings.
Summary:
Two Indian Navy personnel succumbed to their injuries after the door of a helicopter storage and maintenance facility fell on them at the Kochi naval base on Thursday.
Summary:
A Coal India official has said that moving big pumps to the Meghalaya mine, where 15 miners are trapped since December 13, would take another 3-4 days.
Summary:
A government lawyer allegedly slapped a Nagpur district court judge on Wednesday after the latter delivered a judgment against his father in a land dispute case, said the police.
Summary:
A 34-year-old doctor working at AIIMS Delhi allegedly jumped to death from the balcony of his house in Gautam Nagar on Tuesday after a fight with his wife.
Summary:
The Delhi High Court has sent a notice to Centre and Army chief, seeking their response to a petition alleging that only three castesâ Jats, Rajputs and Jat Sikhsâ are considered for recruitment of President's Bodyguard.
Summary:
Hours after celebrating Christmas with his family, a 33-year-old Indian-origin police officer was shot dead by an unidentified gunman in California while "working overtime".
Summary:
A police constable in Gurugram was kidnapped from his residence on Wednesday afternoon for allegedly objecting to a man abusing in front of his house.
Summary:
US President Donald Trump on Wednesday visited American troops at the Al Asad Air Base in Iraq, making it his first visit to a war zone since he assumed office in January last year.
Summary:
Baba Ramdev's Patanjali has reportedly dropped plans of relaunching its messaging app 'Kimbho'.
The company made two unsuccessful attempts to launch the app in May and August after facing security-related challenges.
Summary:
US Patent and Trademark Office reportedly published a patent filed by Samsung for a transformable drone earlier this year.
Summary:
The AAP will undertake a statewide "Bhajpa Bhagao, Bhagwan Bachao Yatra" in Uttar Pradesh starting January 12, party leader Sanjay Singh announced on Wednesday.
Summary:
MLA Raj Ballabh Yadav, who was recently awarded life imprisonment by a special court for the rape of a minor girl in 2016, has been disqualified from the Bihar Assembly.
Summary:
Criticising Prime Minister Narendra Modi ahead of his upcoming visit to Andhra Pradesh, Chief Minister Chandrababu Naidu asked, "I am unable to understand with what face is PM Modi coming to Andhra Pradesh?
Summary:
Reacting to the exclusion of the lone Samajwadi Party (SP) MLA from the Madhya Pradesh cabinet, SP chief Akhilesh Yadav said, "We thank Congress...
Summary:
The automaker also directed staff to report any attempted contact to the company's legal department.
Summary:
It added the cost is inclusive of the installation, running and maintenance of the Wi-Fi facilities.
Summary:
Five students are reported to be critically injured, while several others have sustained fractures and minor injuries.
Summary:
A 55-year-old Canadian national named Rayan Adward Glad Stone was arrested for allegedly using forged documents to live in Vrindavan for 24 years, UP police said on Wednesday.
Summary:
David Kaye, UN Special Rapporteur on freedom of opinion and expression, has called US President Donald Trump "the worst perpetrator of false information" in the country.
Summary:
Former two-time Pakistani Prime Minister Benazir Bhutto was the first-ever female leader of a Muslim nation.
Summary:
Anna and Lucy DeCinque, 33-year-old sisters dubbed the 'world's most identical twins' have revealed that they both want to marry their boyfriend after six years of dating but Australian laws do not allow polygamy.
Summary:
American singer Miley Cyrus took to Instagram to confirm her wedding with actor Liam Hemsworth.
Summary:
This is the second time in his career that Pujara has hit multiple hundreds in an away Test series.
Summary:
Talking about the ball-tampering scandal, banned Australian cricketer Steve Smith said he could've stopped the "negative outcome that happened out in the middle" after having witnessed it being planned in the dressing room.
"I should've said 'What are you guys doing?
Summary:
New Zealand fast bowler Trent Boult took his last five wickets without conceding a run within 12 balls during Sri Lanka's first innings in the second Test at Christchurch on Thursday.
Summary:
Talking about banned Australian cricketer Steve Smith, ex-Australia captain Ricky Ponting said that he "will come back a much better person and a much better leader because of what's happened." "He's owned up about what his leadership failures were...and he's been pretty open with that over the last week.
Summary:
All India United Democratic Front (AIUDF) chief Badruddin Ajmal on Wednesday hurled abuses at a journalist and threatened to break his head upon being asked if he will ally with Congress or BJP in future.
Summary:
Railway Minister Piyush Goyal on Wednesday officially declared Train 18 as India's fastest train.
Summary:
The council of ministers in Rajasthan Cabinet were allocated portfolios on Wednesday night, with CM Ashok Gehlot keeping nine departments including finance, home and excise.
Summary:
A 22-year-old man took money from a neighbour's father pretending to be his son and killed the real son.
Summary:
The US had granted exemptions to eight countries allowing them to temporarily continue buying Iranian oil after reimposing the oil sanctions.
Summary:
McDonald's India posted a profit of â¹65.2 lakh in 2017-18, compared with a loss of â¹305 crore a year ago.
Summary:
The wedding took place in his apartment in Gurugram, reports added.
Summary:
The BJP has appointed Gordhan Zadafia, along with Dushyant Gautam and Narottam Mishra, as in-charge for Uttar Pradesh ahead of 2019 general elections.
Summary:
Summary:
Telangana CM KC Rao on Wednesday paid a "courtesy" visit to PM Narendra Modi, their first meeting since the TRS leader was sworn-in as CM for second time.
Summary:
He called Law Minister Ravi Shankar Prasad's proposal of advocating for SCs and STs reservation through the judicial service "highly relevant".
Summary:
Cambridge University researchers have developed a new way to visualise cancer tumours by creating virtual reality 3D models of the same.
Summary:
Further, once the flight landed in Goa, the passenger was detained by the CISF.
Summary:
The CM has also asked the state officials to protect the pasture land from the menace of encroachment.
Summary:
Maharashtra police said, "The man had allegedly made unwanted advances towards the woman.
Summary:
The survivor, a class 11 student, knew one of the accused and was coaxed into visiting him at a flat.
Summary:
The US has ordered medical checks on all migrant children in custody after an 8-year-old boy from Guatemala died on Monday, marking the second death of a migrant child in custody this month.
Summary:
Consumer goods company Hindustan Unilever has said it's considering legal options after GST anti-profiteering authority found it guilty of not passing on rate cut benefits to consumers.
Summary:
This comes amid speculations of blackouts across existing subscribed TV channels after the transition.
Summary:
It further demanded that the central bank provide a liquidity window for NBFCs and HFCs to restore confidence in the sector.
Summary:
The North Yorkshire Police revealed it received an emergency call from a woman who was angry at a shop for sending her a sausage instead of two portions of fish and chips she had asked for.
Summary:
Singer Justin Bieber on Monday appeared to accidentally tweet out his phone number before quickly deleting it.
Summary:
Summary:
The widows of two Sherpa climbers, who died on Mount Everest, will try to climb the mountain to complete the unfinished ascents of their husbands.
Summary:
Banned Australian cricketer Steve Smith has revealed after Australia lost the Hobart Test against South Africa in 2016, Cricket Australia executives told Australian players that the board pays them to win and not just play matches.
Summary:
Banned Australian cricketer Cameron Bancroft has revealed David Warner asked him to rub the ball with the sandpaper during the Cape Town Test against South Africa in March.
Summary:
An 18-year-old Delhi boy has run away with his parents' car after withdrawing â¹13 lakh from his mother's account and stealing â¹50,000 from her almirah, said police.
Summary:
The ISIS-inspired module busted on Wednesday after raids at 17 locations in Delhi and Uttar Pradesh was largely self-financed, National Investigation Agency (NIA) IG Alok Mittal revealed.
Summary:
Pakistani national Abdullah Shah, who was freed by India on Wednesday after 19 months, said that he couldn't fulfill his childhood dream of meeting Shah Rukh Khan.
Abdullah had illegally crossed into India last year, claiming he wanted to meet Shah Rukh.
Summary:
Former Punjab minister and BJP veteran Laxmi Kanta Chawla has asked PM Narendra Modi and Railway Minister Piyush Goyal to "forget bullet trains and focus on the ones that are already running".
Summary:
Pawan was pronounced dead as his body has not been found for four days.
Summary:
Madhya Pradesh CM Kamal Nath, who is leading the first Congress government in the state after 15 years, today helped Congress worker Durga Lal Kirar wear shoes to fulfil his vow.
Summary:
The RBI has appointed former Governor Bimal Jalan as the Chairman of the Economic Capital Framework committee formed to address the issue of RBI reserves.
Summary:
The Ministry of Commerce and Industry has barred online retailers from selling products of companies in which they have a stake.
It also said that e-commerce firms cannot mandate any seller to sell any product exclusively on its platform only.
Summary:
Google search for Bhojpuri films overtook search for Bollywood movies in India in 2018, data analysed from Google Trends revealed.
Summary:
Google India on Wednesday opened applications inviting artificial intelligence and machine learning-based startups for the second batch of its mentorship programme "Launchpad Accelerator".
Summary:
Several users in Europe complained that Amazon's voice assistant Alexa crashed down on Christmas Day for nearly two hours.
Summary:
Union Minister Giriraj Singh on Wednesday took a dig at AIMIM chief Asaduddin Owaisi over his comment on Noida Police order barring namaz in open, saying Owaisi was talking in the Pakistani PM Imran Khan's language.
Summary:
West Bengal CM Mamata Banerjee on Wednesday accused the BJP-led central government of making false claims of providing crop insurance to farmers in the state.
Summary:
BJP General Secretary Ram Madhav on Wednesday said though smaller allies like RLSP have decided to leave the party, the BJP is working on bringing new allies into the fold from southern and eastern India.
Summary:
Nissan's former Representative Director Greg Kelly was on Tuesday released from jail after being granted bail by a court in Tokyo, Japan.
Summary:
Harvard University researchers have developed a soft, non-toxic wearable sensor to detect disabilities in premature babies.
Summary:
The Vishva Hindu Parishad (VHP) leader Vinod Bansal has accused the Muslim community saying that offering namaz in open space is a ploy by the community to grab land for constructing a mosque.
Summary:
Ukraine imposed martial law in parts of the country most vulnerable to an attack from Russia after it seized three Ukrainian naval ships and detained their crew.
Summary:
Syed Ali Raza Abidi, former Member of Pakistan's National Assembly, was shot dead by unknown assailants outside his home in Karachi on Tuesday.
Summary:
The government has directed all airports to start making public announcements in the local language, in addition to Hindi and English.
Summary:
Union Minister Suresh Prabhu has said the Commerce Ministry is in favour of hiking import duty on aluminium with a view to support domestic manufacturers.
Summary:
Ten people including a civil engineering student were arrested.
Summary:
Actress Kangana Ranaut, while speaking about her critics, said, "I feel people who are not saying good things about me or my film will have to shut their mouths after watching the film." "People who are saying good things, their mouths can't be shut by anyone," she added.
Summary:
The Censor Board has raised objection to scenes and dialogues in 'Thackeray', the biopic on Shiv Sena founder Bal Thackeray starring Nawazuddin Siddiqui.
Summary:
Team India batsman KL Rahul took to Twitter to congratulate Mayank Agarwal on making his debut for India in the third Test against Australia in Melbourne on Wednesday.
Summary:
A 37-year-old Zimbabwean Tawanda Kanhema has spent $5,000 (over â¹3.5 lakh) of his own money to put his country on Google Street View.
Summary:
India on Wednesday released Pakistani national Imran Qureshi Warsi who had been lodged at a Bhopal police station for the last nine months after the completion of his 10-year jail term.
Summary:
Bogibeel bridge reduces rail journey from Dibrugarh to Arunachal Pradesh's capital Itanagar by over 700 km.
Summary:
The rough weather "could potentially cause landslides at the cliffs of the crater into the sea, and we fear that could trigger a tsunami", officials said.
Summary:
ICICI was followed by state-run banks SBI (1,287) and Punjab National Bank (1,127).
Summary:
The market recovery was led by gains in financials such as HDFC Bank and Housing Development Finance Corporation.
Summary:
Finance Minister Arun Jaitley had said the government is working towards a single GST rate which could be a mid-point between 12% and 18%.
Summary:
Sanjeev Sanyal, Principal Economic Adviser in the Finance Ministry, has said that as far as he knows, the government has no plans of doing a nationwide farm loan waiver.
Summary:
The AIADMK on Wednesday said Tamil Nadu Deputy Chief Minister O Panneerselvam's brother O Raja, who was sacked last week, was reinducted into the party following the "forget and forgive" policy.
Summary:
She further said this is condemnable and the BJP has been "exposed".
Summary:
Baxi was founded in 2015 and had reportedly ended its services in mid-2017.
Summary:
Chinese homework app and online tutoring portal Yuanfudao has raised $300 million in a funding round led by existing investor Tencent at a valuation of over $3 billion.
Summary:
This comes amid the government's aim to increase electric vehicles to 30% of vehicles on the road by 2030.
Summary:
The scientists are working to increase the plant's capabilities to remove other harmful pollutants.
Summary:
A team of scientists and other specialists have launched an expedition to map Antarctica's Larsen C ice shelf from which the trillion-tonne iceberg A68 had separated in 2017.
Summary:
They hit her on the head and left her body in a water tank, police added.
Summary:
A 63-year-old man has been arrested in Karnataka after he shot his wife dead reportedly for refusing to divorce him for 20 years.
Summary:
"The boy, accompanied by his siblings, mother and...other relatives, was playing on the road near the elephant enclosure when a battery-operated vehicle hit him," the police added.
Summary:
Iran is holding talks with the Afghan Taliban with the knowledge of the Afghan government, an Iranian official has confirmed.
Summary:
US President Donald Trump has said that the partial government shutdown will last until the Congress approves the funds to build the wall along the border with Mexico.
Summary:
Further, Birupaksha Mishra was appointed as Executive Director in Corporation Bank.
Summary:
The government in October took management control of IL&FS and appointed a board led by Uday Kotak for the group's turnaround.
Summary:
Studds, which plans to raise â¹98 crore in fresh capital through its proposed IPO, reported a revenue of â¹341.7 crore in the last financial year.
Summary:
Australian commentator Kerry O'Keeffe mocked India debutant Mayank Agarwal and Ranji Trophy during the Melbourne Test on Wednesday, saying Mayank's highest first-class score of 304* must have come against "some canteen staff or waiters".
Summary:
Opener Mayank Agarwal scored 76 runs off 161 balls in his first-ever Test innings as India ended the first day of the third Test against Australia at 215/2.
Summary:
Ex-Australia pacer Mitchell Johnson has said that Team India captain Virat Kohli should retire if he doesn't score a hundred in the ongoing Test at the Melbourne Cricket Ground (MCG).
Summary:
Perth Scorchers' captain Ashton Turner and his Adelaide Strikers' counterpart Colin Ingram had to do the bat flip twice after the bat landed on its edge on the first attempt on Wednesday.
Summary:
They each own a third of the company, which in turn owns Victoria's fashion business and the David Beckham brand.
Summary:
Fast bowler Dale Steyn has become the highest wicket-taker for South Africa in Test cricket, achieving the feat by dismissing Pakistan opener Fakhar Zaman in the first Test at Centurion on Wednesday.
Summary:
Japan on Wednesday announced it will withdraw from the International Whaling Commission and resume commercial hunting from July 2019, sparking criticism from various countries.
Summary:
NASA astronaut AJ (Drew) Feustel, who landed on Earth in October after spending 197 days in space, has shared a video of him struggling to walk on Earth.
Summary:
A 21-year-old woman on Monday night delivered a baby on the platform of Dadar railway station in Mumbai.
Summary:
The West Bengal education department will be introducing lessons in the school curriculum on the importance of maintaining healthy lifestyles in an attempt to raise awareness about obesity.
Summary:
After a video showing him assaulting a disabled man surfaced, BJP leader Mohammad Miya said the man was abusing PM Narendra Modi and Uttar Pradesh CM Yogi Adityanath.
Summary:
The National Investigation Agency (NIA) on Wednesday conducted searches across 16 locations in Uttar Pradesh and Delhi in connection with its probe into a new ISIS module.
Summary:
After the Army participated in a 21-day operation to clean Dal Lake, newly-appointed Srinagar Mayor Junaid Mattu tweeted that it was not their job and that they do not need to "venture into civil governance domains".
Summary:
Four people, including three teenage siblings from Telangana, were killed in a fire at a house in US' Tennessee two days before Christmas, the local media reported.
Summary:
Actor Salman Khan took to Instagram to share a video which shows him dancing with his brothers Arbaaz Khan and Sohail Khan at a Christmas party organised by him.
Summary:
Summary:
Union Minister Mukhtar Abbas Naqvi on Tuesday said the Mahagathbandhan is like "begaani shaadi mein Abdullah diwana" (a stranger getting too involved in somebody else's marriage).
Summary:
Summary:
Summary:
Summary:
Apna Dal(S) chief Ashish Patel on Tuesday said, "We small parties...
Summary:
Congress chief Rahul Gandhi on Wednesday slammed PM Narendra Modi for "posing for cameras" during the inauguration of Bogibeel Bridge while "15 miners have been struggling for air in a flooded coal mine for two weeks".
Summary:
An Army jawan was allegedly shot dead by his colleague after a verbal spat in an Army camp in Jammu and Kashmir's Doda district, police said on Tuesday.
Summary:
While trying to avoid hitting a rickshaw, the driver of the bus hit the truck coming from the opposite direction.
Summary:
The construction of the projects would require exemptions from the sanctions imposed on North Korea by the United Nations.
Summary:
Excessive competition has led to a decline in tariffs affecting GST collections from telecom and airline industries, Jaitley further said.
Summary:
International golfer Jyoti Randhawa, who is actress Chitrangda Singh's ex-husband, and Mahesh Virajdar have been arrested on poaching charges in Uttar Pradesh's Bahraich.
Summary:
The Test match that starts on December 26, primarily at Australia's Melbourne Cricket Ground, is called the Boxing Day Test.
Summary:
After uncapped batsman Mayank Agarwal was included in India's playing XI for Boxing Day Test against Australia, his coach Irfan Sait said he is expecting an "aggressive Virender Sehwag-like innings" from him.
Summary:
After a reporter asked if he got an invite for the inauguration of the country's longest rail-road bridge Bogibeel in Assam, former PM HD Deve Gowda said, "Aiyo Rama!
Summary:
He further accused the Congress of treating the Muslims as a "mere votebank" for more than 50 years.
Summary:
A 47-year-old owner of Mumbai paying guest house was arrested for allegedly filming the girls residing in his hostel with a camera hidden in his phone's adapter.
Summary:
The negligence came to light after the blood donor informed the authorities that he had tested positive for HIV.
Summary:
A video of Home Minister Rajnath Singh being interrupted during his speech in Lucknow on Monday has surfaced online.
Summary:
Riefian Fajarsyah, the sole survivor of Indonesian band 'Seventeen', which was struck by a tsunami while performing live, buried his wife Dylan Sahara on Tuesday.
Summary:
Thailand has become the first Southeast Asian nation to legalise the use of marijuana for medical use and research.
Summary:
India's aircraft accident probe agency AAIB has sought assistance from its US counterpart in investigating the incident of an IndiGo plane's Pratt & Whitney (P&W) engine emitting smoke mid-air, an official said.
Summary:
Last Friday, an officers' union of state-run banks observed a day-long strike to protest against the merger.
Summary:
"I believe, majority of IPS, IAS officers are good and it's not just they who are lacking [in good work]," he added.
Summary:
He further alleged that BJPâÂÂs allies were quitting NDA due to arrogance of the saffron party's leaders.
Summary:
Union Home Minister Rajnath Singh inaugurated as many as 158 development projects in Lucknow on Tuesday, which was the 94th birth anniversary of late Prime Minister Atal Bihari Vajpayee.
Summary:
The court is scheduled to hear petitions in the Ayodhya dispute case on January 4.
Summary:
The Hyderabad Police on Tuesday booked three people for allegedly vandalising a hospital after the death of a patient named Shameem Begum.
Summary:
A 30-year-old man was arrested at Jaipur airport for allegedly trying to smuggle six pieces of gold into the country by hiding it in his rectum, a Customs official said on Tuesday.
Summary:
The ropeway would reduce one-way journey between Bhawan and Bhairon Mandir from one hour to three minutes, an official statement said.
Summary:
Gurdeep Singh Gosha, a Youth Akali leader was on Tuesday arrested for vandalising a statue of late PM Rajiv Gandhi in Punjab's Ludhiana.
Blaming Gandhi for 1984 anti-Sikh riots, Gosha said, "He doesn't deserve any respect.
Summary:
The Madras High Court has quashed criminal cases against 400 members of the Popular Front of India (PFI) for staging a protest without permission against the ban on the outfit imposed by Jharkhand government.
Summary:
As many as 18 motorcycles were set ablaze at Panchpakhadi area in MaharashtraâÂÂs Thane, officials said.
Summary:
The newly elected Congress-led Rajasthan government transferred as many as 68 Indian Administrative Service (IAS) officers on Tuesday.
Summary:
Gold jewellery worth over â¹31 lakh was seized from the toilet of an Air India flight, said the Goa Customs Department on Tuesday.
Summary:
Google on Wednesday paid tribute to social activist Murlidhar Devidas Amte, popularly called 'Baba Amte', on his 104th birth anniversary with a doodle slideshow.
Summary:
A new law earlier this year banned licenced sellers from dealing in puppies and kittens under the age of eight weeks.
Summary:
A student pilot came out of a plane and moved to the roadside to urinate after it made an emergency landing on a highway in the US following an engine failure.
Summary:
Team India captain Virat Kohli has said that he and Australia captain Tim Paine "definitely" don't want to do something unnecessary in the third Test, which will begin in Melbourne on Wednesday.
Summary:
Talking about his perceived image, Team India captain Virat Kohli said, "I am not going to take a banner outside to the world and explain that this is who I am." "I honestly have no idea on any of the articles or anything that people say because that doesn't concern me.
Summary:
Vaibhav Kesarkar, a 24-year-old cricketer from Mumbai, died after suffering a heart attack on the field while playing a local cricket match.
Summary:
Former India cricketer Sachin Tendulkar paid a surprise visit to Ashray Child Care Centre in Mumbai dressed as Santa Claus on the occasion of Christmas on Tuesday.
Summary:
Pacer Dale Steyn, who is one wicket away from becoming the highest Test wicket-taker for South Africa, has said he hasn't saved himself just to take one more wicket than ex-captain Shaun Pollock.
Summary:
Werder Bremen have admitted they used a drone to spy on their Bundesliga rivals Hoffenheim's training ahead of their 1-1 draw last Wednesday.
Summary:
Taking a dig at PM Narendra Modi for allegedly dodging a question from a BJP worker about the government's taxation policy for the middle class, Congress President Rahul Gandhi tweeted, "Vanakam Puducherry!
Summary:
Maruti Suzuki Chairman RC Bhargava said at a company event that Suzuki Chairman Osamu Suzuki once asked how manufacturing is possible if Gurugram plant site is overrun with monkeys.
Summary:
A 17-year-old student from Uttar Pradesh preparing for NEET medical entrance exam was found dead on Sunday.
Summary:
Padma Shri awardee Sulagitti Narasamma, who helped deliver over 15,000 babies free of charge in rural Karnataka has passed away aged 98 in Bengaluru on Tuesday.
Summary:
A 19-year-old girl, along with her boyfriend and two minors aged 16 and 17, has been arrested in Tamil Nadu for allegedly killing her mother.
Summary:
Presenting the first budget since the US restored sanctions on Iran, President Hassan Rouhani said "America's goal is to bring Iran's Islamic system to its knees".
Summary:
Ryder Cup-winning captain Thomas Bjorn has got the result of the European team's victory over the USA in the final tattooed on his backside.
Ahead of the event, Bjorn had vowed to get the scoreline etched onto his back should his team win.
Summary:
The company's video-sharing platform YouTube had committed $25 million for the same in July.
Summary:
The Triple Talaq bill will be taken up for discussion and likely be put to vote on December 27 in the Lok Sabha.
Summary:
Yoga guru Ramdev on Tuesday said that the existing political situation in the country is "very difficult" and it is not easy to say who will be the next Prime Minister of the country.
Summary:
Referring to Shiv Sena chief Uddhav Thackeray's speech in Maharashtra's Pandharpur, Maharashtra Navnirman Sena (MNS) leader Sandeep Deshpande said the party will give â¹151 as a reward to anyone who can decode the speech.
Summary:
Calling the slashing of GST a "patchwork", Congress leader and Punjab Finance Minister Manpreet Singh Badal on Tuesday stated the introduction of GST was "ill-prepared".
Summary:
SpaceX CEO Elon Musk in a tweet said, "It's embarrassing that Boeing/Lockheed need to use a Russian engine on Atlas." Lockheed Martin and Boeing have been using the Russian-made engine RD-180, based on an older Soviet model, to power the first stage of their Atlas carrier rockets, for over a decade.
Summary:
Researchers at the Queen Mary University of London through computer simulations of bees' brains have discovered they can count with just four nerve cells in their brain.
Summary:
Scientists at Israel's Tel Aviv University have developed bioplastics derived from microbes that feed on seaweed.
Summary:
Uttar Pradesh cabinet has approved a scheme under which families of police personnel who get injured in line of duty and slip into coma, will be provided 'extraordinary' pension.
Summary:
She also alleged that her in-laws were demanding â¹2 lakh as dowry.
Summary:
A Patna-based zoo was shut down on Tuesday, following the death of six peacocks after they got infected with H5N1 virus.
Summary:
He further said several key infrastructure projects of Vajpayee's era were not completed, as Vajpayee's government lost in 2004 polls.
Summary:
Russian state-owned news network RT shared a Christmas video that purportedly mocked US President Donald Trump.
The video shows an actor playing Trump, who opens presents from other world leaders.
Summary:
Opening up about her alcohol addiction in her memoir 'Healed: How cancer gave me a new life', actress Manisha Koirala wrote, "If I was on a diet, it'd be vodka." "To take my mind off shoots, to numb myself, I started drinking," she revealed.
Summary:
Summary:
Police said there was swelling on the back of the cow.
Summary:
A man named Satish, against whom a non-bailable warrant had been issued, escaped from custody on Monday after surrendering before a court in UP, after it ordered to send him to police custody.
Summary:
A 45-year-old engineer, identified as Pawan Dhiman, died after being trapped in his car when it caught fire on Tuesday in Greater Noida.
Pawan, a native of Himachal Pradesh, was working at a private company.
Summary:
A group of 10-12 people attacked a Sunday mass with swords, iron rods and glass bottles, injuring at least 12 people in Maharashtra's Kolhapur, police said.
Summary:
PM Narendra Modi on Tuesday inaugurated the 4.94-km-long Bogibeel bridge, India's longest rail-road bridge, which would cut the travel time between Assam's Dibrugarh to Delhi by three hours.
Summary:
While talking to children on Christmas Eve, US President Donald Trump asked a seven-year-old girl if he's still a believer in Santa Claus, adding that "it's marginal" at the age of seven.
Summary:
The UAE on Monday released the first pictures of Princess Sheikha Latifa bint Mohammed al-Maktoum since she attempted to escape from the emirate earlier this year.
Summary:
Patanjali has said that it's still interested in taking over bankrupt edible oil firm Ruchi Soya even as successful bidder Adani Wilmar is withdrawing its offer.
Summary:
Billionaire Anil Agarwal's Vedanta on Tuesday said it will set up a new steel plant in Jharkhand's Bokaro with a capacity of 4.5-million-tonne-per-annum at an investment of up to $4 billion.
Summary:
Trump has frequently criticised the Fed's raising of interest rates this year.
Summary:
Singh said Max Group "almost ceased to be natural owners" of Max Healthcare due to its inability to fund expansion.
Summary:
Vidhu Vinod Chopra, who is producing Anil Kapoor's upcoming film 'Ek Ladki Ko Dekha Toh Aisa Laga', said, "I didn't write a story for Anil Kapoor, but he was a perfect choice that's why I cast him." "There's no fight between the script and the star...
Summary:
Speaking about the Indian team's batting unit, captain Virat Kohli said, "[B]owlers won't be able to do anything with the totals that we have been compiling." "The batsmen must step up collectively.
Summary:
The 2019 edition of the Indian Premier League is set to go ahead without the presence of a Chairman or a Governing Council.
Summary:
Speaking about Rishabh Pant's exclusion from India's ODI squad for the series in Australia and New Zealand, Indian team's chief selector MSK Prasad said that MS Dhoni had been rested earlier to give chance to Dinesh Karthik and Pant.
Summary:
Over 20 Chinese companies said they would increase the purchase of Huawei products.
Summary:
The requests, in formats like subpoenas and warrants, sought information on 27 devices, 18 accounts, and 34 financial identifiers.
Summary:
Albinder Dhindsa, Co-founder and CEO of online grocery delivery platform Grofers, in an interview, said, "2015 was a good year...2016 was a struggle for us." Grofers had reported a substantial revenue hike after shifting from a marketplace to an inventory model in 2017.
Summary:
MakeMyTrip (MMT) Chairman Deep Kalra has said, the Federation of Hotel and Restaurant Associations of India (FHRAI) has no right to dictate the online travel portal's commercial deals.
Summary:
"We applied a novel algorithm that controls an array of 256 small loudspeakers...that is what allows us to create the intricate, tweezer-like, acoustic fields," a scientist said.
Summary:
A 17-year-old mentally challenged girl, who had gone missing in Kedarnath during the 2013 floods, has reunited with her family in Aligarh after five years.
Summary:
Russia's Foreign Minister Sergey Lavrov has said that his country is not going to wage a war with Ukraine but is prepared to respond to any provocations on the Crimean border.
Summary:
At least three people were killed on Tuesday after three attackers opened fire at the headquarters of Libya's Foreign Ministry in Tripoli, the Health Ministry said.
Summary:
Egyptian President Abdel Fattah al-Sisi has been trolled on social media after he asked his citizens to lose weight amid the rising obesity rate in the country, which some critics termed as "fat-shaming".
Summary:
India on Tuesday announced their playing XI for the third Test against Australia, which will begin in Melbourne on Wednesday.
Summary:
Reacting to Pakistan PM Imran Khan's remark that he'd "show India how to treat minorities", ex-India cricketer Mohammad Kaif suggested India doesn't need a lecture from him.
Summary:
Electric carmaking company Tesla's rival Automobili Pininfarina's CEO Michael Perschke on Tuesday wished Merry Christmas to Tesla CEO Elon Musk by posting a video on Twitter.
Summary:
Unhappy about being lodged in a shelter home in Lucknow, a 15-year-old scaled a 14-foot-tall wall in just 76 seconds to escape from the government facility after four days.
Summary:
"India is the only place where modern education meets ancient knowledge...My return to Tibet is of no use if there is no freedom.
Summary:
Pakistan PM Imran Khan on Tuesday tweeted, "We'll ensure that our minorities are treated as equal citizens, unlike in India." He added that Muhammad Ali Jinnah created a separate Muslim nation when "he realised that they would not be treated as equal citizens by the Hindu majority".
Summary:
Police in Noida Sector-58 has sent notices to companies, asking them to direct their Muslim employees to stop offering namaz in a public park.
Summary:
The announcement comes on the occasion of 94th birth anniversary of Vajpayee.
Summary:
Farmers in Uttar Pradesh's Bulandshahr are using alcohol as 'medicine' to increase the production of potatoes.
I appeal to farmers to use the right medicines," a Plant Production Officer said.
Summary:
A doctor in Tamil Nadu left a pair of scissors inside a woman's abdominal cavity during a surgery in May. Recently, she started complaining about severe stomach pain and nausea, following which she went back to the same doctor and learnt about the error through scans.
Summary:
Police officers wrestled a bus hijacker to the ground after he ploughed the vehicle into pedestrians in China's Fujian province on Tuesday.
Summary:
The GST anti-profiteering authority has found Hindustan Unilever guilty of not passing on rate cut benefits of â¹383 crore to consumers.
Summary:
In a letter to a special anti-money laundering court, Choksi complained about the "tortoise speed" at which investigation was proceeding in India.
Summary:
"I love it immensely to feel tired.
You can't feel tired of breathing because that's something you have to do.
Summary:
American rapper Nicki Minaj will lend her voice to a character in the upcoming animated film titled 'The Angry Birds Movie 2', as per reports.
Summary:
Sonu Nigam, while talking about singer Sona Mohapatra who criticised him for supporting Anu Malik amid #MeToo allegations, said, "The kind of language she used, there is so much hatred...The kind of language people use is unbelievable." "I am very concerned about the country's anger.
Summary:
Reacting to coach Ravi Shastri's claim that all-rounder Ravindra Jadeja was not fully fit ahead of the second Test, Indian team's chief selector MSK Prasad said that Jadeja was "absolutely fit" when picked for the Australia tour.
Summary:
Former Australian cricketer Shane Warne called Indian captain Virat Kohli the greatest cricketer on the planet in a preview video ahead of the third Test between India and Australia.
Summary:
Speaking about spinner Nathan Lyon, Indian captain Virat Kohli said Lyon becomes more dangerous when allowed to bowl at one spot for a long time.
So we have to have our plans against such a bowler," said Kohli, who has been dismissed by Lyon seven times in Tests.
Summary:
The team demands it and definitely, I hope he will come out successful," Prasad added about Vihari.
Summary:
Former Uttar Pradesh CM Akhilesh Yadav on Monday alleged that the BJP government in the state has failed to create job opportunities in the state and address farmer's issues.
He further said that students who raise their issues "are sent to jail".
Summary:
The Model 3 prices were reportedly lowered by 7.6% in China.
Summary:
Out of the 2,061 border fencing light poles along the international border in Gujarat's Bhuj and Gandhinagar sector, only 616 are "functional", Border Security Force (BSF) said.
Summary:
An eight-year-old boy was allegedly sexually assaulted by a 26-year-old man who took him to a secluded spot in a civil hospital in Nabha under the pretext of giving him a kite, the Punjab police said.
Summary:
The caution from UIDAI comes at a time when admissions to nursery and entry-level classes have just begun in over 1,500 private schools in Delhi.
Summary:
With the air-pollution reaching 'severe' category in Delhi, CM Arvind Kejriwal on Tuesday said the government will implement the odd-even scheme if needed in the national capital.
Summary:
Prime Minister Narendra Modi today inaugurated the Bogibeel Bridge, which is India's longest road-cum-rail bridge, in Assam's Dibrugarh.
Summary:
Despite the new notes coming into circulation, the old â¹20 notes will not be withdrawn, the report added.
Summary:
Actress Fatima Sana Shaikh, while addressing link-up rumours with her 'Dangal' co-stars Aamir Khan and Aparshakti Khurana, said, "Logo ka kaam hai bolna woh bolenge." "I feel no matter what you do, people are going to talk," she added.
Summary:
Chhattisgarh Chief Minister Bhupesh Baghel on Tuesday expanded his council of ministers, with nine newly elected MLAs taking oath as cabinet ministers at Police Parade Ground in Raipur.
Summary:
Olympic bronze medallist Saina Nehwal has revealed she was ten years old when she first met fellow shuttler and husband Parupalli Kashyap.
I had a different group and he was in a different group," she added.
Summary:
The occasion is to mark the 75th anniversary of Netaji's visit to the islands.
Summary:
The accused was arrested after his father filed a complaint.
Summary:
Hindu religious leaders have raised objections over the gathering of sex workers, saying Morari Bapu is trying to make Ayodhya "impious".
Summary:
Minister of State in PMO Jitendra Singh on Tuesday clarified that the government is not planning to change the age criteria for eligibility to appear in civil services examinations.
Summary:
A newborn baby boy, who was found alive after being strangled and flushed down the toilet of a Howrah Express coach in Punjab's Amritsar, died in hospital on Sunday.
Summary:
US President Donald Trump has said that Saudi Arabia will spend the necessary money to help rebuild Syria following the US' exit from the war-torn country.
Summary:
A US court on Monday ordered North Korea to pay $501 million in damages for the torture and death of US college student Otto Warmbier, who passed away in 2017 following his release from a North Korea prison.
Summary:
At least 43 people were killed as gunmen attacked a government building in Afghanistan's capital Kabul on Monday, officials said.
Summary:
Kriti Sanon will be appearing on 'Koffee with Karan' for the first time.
Summary:
Summary:
Photos posted to the Instagram story by the couple's friend shows Miley wearing an off-shoulder white dress, while Hemsworth is seen dressed in a traditional tuxedo.
Summary:
Odisha CM and Biju Janata Dal (BJD) President Naveen Patnaik has asked party MPs, MLAs and office-bearers to donate at least one month's salary to the party funds.
Summary:
The move was taken in protest against the 1984 anti-Sikh riots and the workers demanded the revocation of Bharat Ratna bestowed on Gandhi.
Summary:
PM Narendra Modi, Vice President Venkaiah Naidu and BJP chief Amit Shah on Tuesday paid tribute to late PM Atal Bihari Vajpayee at the Rashtriya Smriti Sthal on his 94th birth anniversary.
Summary:
Union Minister Nitin Gadkari on Monday said tolerance is the biggest asset of our system and unity in diversity is the speciality of our country.
Summary:
Meanwhile, the police claimed she was extorting money from the accused and there was evidence contradicting claims of gangrape.
Summary:
Although the police termed it a case of suicide, his family has claimed he was murdered by his enemy.
Summary:
Prime Minister Narendra Modi extended greetings to the nation on the occasion of Christmas, tweeting, "Wishing everyone a Merry Christmas.
Summary:
The project, which will cost an estimated â¹120 crore, aims to ensure rich and influential inmates do not get any special treatment in prisons.
Summary:
The dense fog had led to low visibility on the runway and minimum visibility of 125 metres is needed for safe flight operations.
Summary:
Animal rights organisation PETA India on Monday submitted a petition to the Environment Ministry backing the Centre's proposal to ban the use of animals in circuses.
Summary:
Spacey allegedly stuck his hands into her son's pants and grabbed his genitals.
Summary:
Summary:
Team India all-rounder Hardik Pandya has said his life story would have been different without former India captain MS Dhoni.
"MS Dhoni was someone who I started my career with," he further said.
Summary:
Bangladeshi umpire Tanvir Ahmed, whose wrong no-ball calls during the third Bangladesh-Windies T20I led to an eight-minute halt in play, has admitted he made a mistake.
I had a bad day," Ahmed added.
Summary:
Summary:
Uttar Pradesh Congress chief Raj Babbar has warned BJP, saying, "Don't trouble Lord Hanuman too much." "With a swipe of his tail...BJP lost elections in three states.
Summary:
Accusing police of lodging "false" cases against his party workers, West Bengal BJP president Dilip Ghosh threatened to "strip policemen of their uniforms".
"Police aren't worth wearing the uniform," he said.
Summary:
A Bhopal man was awarded death sentence by a special court on Monday for raping and killing his six-year-old daughter.
Summary:
A video showing Karnataka CM HD Kumaraswamy instructing someone on phone to avenge the killing of a local leader of his party has surfaced online.
Kumaraswamy later said, "It was not an order passed by me as the CM.
Summary:
Indian firm India Ports Global Limited on Monday formally took over the operations of Chabahar's Shaheed Behesti port in Iran, which opens a trade route between India and central Asia bypassing Pakistan.
Summary:
The death toll in Indonesia tsunami triggered by a volcanic eruption on Saturday has reached 373 with at least 1,459 people reported injured, IndonesiaâÂÂs disaster mitigation agency said on Monday.
Summary:
The Indonesia tsunami that has killed 373 people and injured over 1,400 others was caused by a large chunk of a flank of the volcanic Anak Krakatau island slipping into the ocean, officials and scientists said on Monday.
Summary:
Calling himself poor, US President Donald Trump on Monday tweeted, "I am all alone...in the White House." Trump cancelled plans to go to his Florida resort for Christmas amid the partial US government shutdown.
Summary:
Actors Ranveer Singh and Vicky Kaushal have revealed that they will be playing the roles of Dara Shikoh and Aurangzeb respectively in the upcoming film 'Takht'.
Summary:
Summary:
'Dil Le Gayi Kudi Gujarat Di' singer Jasbir Jassi has said if a Punjabi song doesn't talk about 'Gucci', 'Armani' and 'Ferrari', it is considered "old-school" these days.
Summary:
Ukrainian Oleksiy Torokhtiy, London 2012 105kg weightlifting gold medallist, and Uzbek Ruslan Nurudinov, Rio 2016's gold-winner in the same category, were suspended after their samples tested positive for banned substances on reanalysis.
Summary:
The app would be fed with videos of people at various stages of intoxication, which it will use to determine if a user is drunk.
Summary:
The technology giant had issued the latest update to fix a problem with network connectivity for iPhone users in Turkey.
Summary:
DMK President MK Stalin on Monday hit back at PM Narendra Modi for describing its alliance with the Congress as "opportunistic" and said BJP-led rule "is worse than the Emergency".
Summary:
Summary:
The Karnataka Congress on Monday expelled nine party workers for six years after a disciplinary committee found them guilty of anti-party activities.
Summary:
A 17-year-old girl preparing for the National Eligibility cum Entrance Test (NEET) hanged herself from the ceiling fan of her hostel room in Rajasthan's Kota on Sunday evening, said the police.
Summary:
There's a strong possibility that the drugs were meant to be supplied to party organisers on Christmas and New Year, a police official said.
Summary:
Newly-elected Chhattisgarh CM Bhupesh Baghel on Monday directed officials to start the process of returning land acquired from tribal farmers in Bastar for a now-abandoned Tata Steel project.
Summary:
The Gujarat government built the statue at a cost of around â¹3,000 crore in 33 months.
Summary:
At least three people, including two women, were killed and one was injured after a state transport bus ran over them in Gujarat's Navsari district on Monday, police said.
Summary:
Huawei has announced exciting offers and deals on pre-bookings of the Mate 20 Pro. Customers who pay â¹2000 on the day of pre-booking will get the latest Sennheiser PXC 550 along with the Mate 20 Pro at a total price of â¹71,990.
Summary:
The Delhi government has withdrawn its order increasing one-time parking charges for cars by up to 18 times from January 1, 2019.
Summary:
They hosted a reception in Amritsar on December 14 for their friends and relatives.
Summary:
Singer Sonu Nigam today said, "What's the difference between you and Islamic terrorists?" to singer Sona Mohapatra after she urged Delhi CM Arvind Kejriwal to cancel Kailash Kher's participation in a government event.
Summary:
Sharing a picture of a man dressed as Santa Claus wearing a mask, Gambhir wrote, "If you permit, sir, may I come?
Summary:
Billionaire Jack Ma-led Alibaba has opened a hi-tech 'Future Hotel' in China named FlyZoo, that lets guests check-in at the hotel and access their rooms by scanning their faces.
Summary:
Nilanshi stopped taking haircuts after receiving a bad haircut at the age of six.
Summary:
Mumbai Police have arrested a 23-year-old married man who allegedly cheated his girlfriend of â¹6.5 lakh and used â¹60,000 from it for the abortion of another girlfriend.
Summary:
He added that lowering the tax rate on cement from 28% was a priority.
Summary:
"It definitely was not the intent, obviously, to hurt anybody," LeBron said about his Instagram post.
Summary:
Former Indian coach Anil Kumble praised Indian captain Virat Kohli, saying, "He is a great player of the modern era." "He has matured and you can see it.
Summary:
The President of India, Ram Nath Kovind hosted several dignitaries including tennis player Sania Mirza at his residence at the Rashtrapati Nilayam, Bollaram.
Summary:
Sir Alex Ferguson, who managed Manchester United for 26 years, is the English club's new consultant.
Summary:
BT has been removing Huawei equipment from its own core 3G and 4G networks since acquiring EE, which used Huawei gear, in 2016.
Summary:
He further said that no Prime Minister in Indian history has disrespected the post like PM Modi.
Summary:
Shiv Sena chief Uddhav Thackeray on Monday criticised PM Narendra Modi-led government over Ram Mandir issue saying "Hindus are innocent but not fools".
Summary:
Sinha further said he has done everything in national interest.
Summary:
"They (Congress) have not waived off their (farmers') loans," he alleged.
Summary:
Union Minister and BJP leader Giriraj Singh on Monday likened West Bengal CM Mamata Banerjee to North Korean leader Kim Jong-un.
Summary:
PDP leader and former IAS officer, Bashir Ahmed Runyal, resigned from the party on Monday.
Summary:
Uber's India research centres have been credited with the creation of the Uber Lite app, which can work in areas with low internet connectivity and on smartphones with low processing power.
Summary:
Former NASA astronaut Bill Anders, who was among the first men to orbit the Moon, said, it was "stupid" to plan human missions to Mars.
Summary:
Speaking in reference to Manipur journalist Kishorechandra Wangkhem's detention, Manipur CM N Biren Singh said he can't tolerate humiliation of national heroes like Rani of Jhansi and PM Narendra Modi.
Summary:
Former Union Minister Captain Jai Narain Prasad Nishad passed away at the age of 88 on Monday, owing to prolonged illness.
Summary:
The police broke open the door of the house late on Sunday and found the man sitting with the body.
Summary:
The PIL also requests the apex court to hear the case on an urgent basis and in a time-bound manner.
Summary:
Markets regulator SEBI imposed a total penalty of over â¹20 lakh on four firms for indulging in fraudulent trades in illiquid stock options segment on the BSE.
Summary:
India's 21-year-old wicketkeeper-batsman Rishabh Pant has been dropped from India squad for the ODI series against Australia, which will commence on January 12.
Summary:
Australia coach Justin Langer has said that banned cricketer Steve Smith is the Virat Kohli of Australian cricket team and he can't wait to have him back.
Smith's ban will end on March 29 next year.
Summary:
Dhoni was not named in the T20I squads for India's previous two T20I series, against Windies and Australia.
Summary:
The Supreme Court has declined urgent hearing on BJP's plea challenging a Calcutta High Court order rejecting permission to take out rath yatras in West Bengal.
Summary:
A Central Pollution Control Board-led task force has recommended to the Supreme Court-appointed Environment Pollution (Prevention and Control) Authority that factories located in hotspot industrial areas in Delh-NCR be shut and construction activities be banned till December 26.
Summary:
PM Narendra Modi on Sunday took to Twitter to express grief at the "loss of lives and destruction" caused due to a volcano-triggered tsunami in Indonesia.
Summary:
He laid foundation for Indian Institutes of Science Education and Research campus which is estimated to cost â¹1,583 crore.
Summary:
US-based craft and floral products company named FloraCraft's owner Lee Schoenherr announced at a company lunch that a â¹28 crore Christmas bonus will be divided amongst all of its 200 employees.
Summary:
Union Minister Uma Bharti on Monday criticised actor Naseeruddin Shah's remark on Bulandshahr violence saying his remark is part of a big conspiracy.
Summary:
Former Australian pacer Mitchell Johnson praised India's Test vice-captain Ajinkya Rahane by saying that he would make a 'great captain'.
Summary:
Speaking about the verbal exchanges between the Indian and Australian players during the ongoing Test series, Australian coach Justin Langer said that he loved watching it.
There was a bit of humour to it, and we pride ourselves on that," Langer said.
Summary:
Australian pacer Mitchell Starc, who has played under Virat Kohli's captaincy for the Royal Challengers Bangalore in the IPL, said, "I've played a couple of IPLs with Virat and he's been fantastic to play under, as a captain." "Obviously, he's a fantastic player.
Summary:
Bollywood actor Amitabh Bachchan posted photos of himself playing with a football, alongside a caption that says that he is preparing for the FIFA World Cup 2022.
Summary:
Apple has removed religious group Living Home Ministries' app from App Store after it was accused of portraying homosexuality as a 'sin' by an LGBTQ rights group.
Summary:
PlayerUnknown's Battlegrounds (PUBG) has reportedly banned over 30,000 accounts including several pro players' accounts for using 'Radar Hacking' to cheat in the game.
Summary:
BJP spokesperson GVL Narasimha Rao on Monday said that Congress President Rahul Gandhi is not acceptable as a pivot to many parties outside the NDA.
Summary:
Addressing a rally in Odisha, PM also criticised the state government for not adopting the Centre's mega health scheme Ayushman Bharat.
Summary:
After reports claimed Delhi Assembly passed a resolution seeking to revoke late PM Rajiv Gandhi's Bharat Ratna, Speaker Ram Niwas Goel said, "The word 'Rajiv Gandhi' wasn't part of the original text placed before the House." Reports said that the withdrawal was sought over Gandhi's role in 1984 anti-Sikh riots.
Summary:
He claimed PM Modi was resorting to such manipulation to paint a rosy picture of his government.
Summary:
Online interior design startup Design Cafe has raised â¹200 crore in an equity financing round led by private equity firm WestBridge Capital.
Summary:
Police have seized illicit liquor worth â¹19.34 lakh from a fishing boat in Gujarat's Gir Somnath district.
Summary:
The parents of a 22-year-old Telangana woman murdered her before burning her body and throwing the ashes in a stream for marrying a man from a different caste, police said.
Summary:
Union Power Minister (independent charge) RK Singh has said that the central government is considering providing subsidy on buying electric vehicles.
Summary:
Srinagar witnessed the coldest night in 11 years on Sunday night, with the temperature dipping to minus 6.8 degrees Celsius, an official of meteorological department said.
Summary:
External Affairs Minister Sushma Swaraj on Monday expressed grief over the loss of lives in Indonesia in the volcano-triggered tsunami and said India stands by Indonesians in this hour of grief.
Summary:
"We've temporarily suspended pumping of water...as the exercise didn't yield any positive result," district Deputy Commissioner FM Dopth said.
Summary:
A fisherman named Yadi who witnessed Indonesia's tsunami on Saturday said that people were screaming, 'run, run a wave is coming', following which he saw three waves in a row.
Many people were left behind," he said, adding that his family survived by running to higher ground.
Summary:
An accountability court on Monday handed former Pakistan PM Nawaz Sharif seven years in jail in the Al-Azizia Steel Mills corruption case.
Summary:
The healthcare business of Radiant Life Care will be merged into Max Healthcare.
Summary:
Reacting to Naseeruddin Shah's statement of fearing for his children's safety in India, actor Ashutosh Rana on Sunday said that people have the right to speak their mind and there's no need of conducting a "social trial".
Summary:
The newspaper also shared a picture of Johnson with the journalist, who took the interview.
Summary:
South African pacer Anrich Nortje has revealed he was buying meat for barbecue when Kolkata Knight Riders bought him for â¹20 lakh in the IPL 2019 auction.
Summary:
The BJP has moved Supreme Court against an order of a division bench of the Calcutta High Court that put a stay on the national party's proposed Rath Yatra in West Bengal.
Summary:
After Telangana CM KC Rao paid a visit to Odisha CM Naveen Patnaik, BJD said it was "totally personal" and there's "no political motive" behind it.
Summary:
Police said the surgeon's ex-wife had been blackmailing him to get money and property.
Summary:
A youth was detained on Sunday for allegedly faking his identity in a written exam for the recruitment of police constables in Haryana.
Summary:
Trump spoke with ErdoÃÂan about "a slow and highly coordinated" withdrawal of US troops from Syria.
Summary:
The cover was first showed to her father by a driver in Britain, where Malala was undergoing treatment.
Summary:
Supporters of Andhra Pradesh's CM N Chandrababu Naidu burnt posters of Ram Gopal Varma while protesting against a song titled 'Vennupotu' from Varma's upcoming film 'Lakshmi's NTR'.
Summary:
Salman Khan will be launching Mahesh Manjrekar's daughter Ashwami in Bollywood.
Confirming the news, Mahesh said, "Yes, Salman is launching my daughter.
Summary:
Talking about planning a family next year, comedian Bharti Singh said, "I want to work till the last day of my pregnancy.
Summary:
Salman Ali from Haryana was named the winner of 'Indian Idol 10' on Sunday.
So, I would like to use the money for all this," said Salman who won â¹25 lakh cash prize.
Summary:
Sonu Nigam, while talking about #MeToo movement, said, "The day society decides to start passing judgements, instead of the law, there will be terror in society." "It was a needed movement.
Summary:
Nick Jonas has been voted as the Most Stylish Man of 2018 in a poll conducted by international men's magazine GQ.
being stylish.
Not just stylish...
Summary:
Summary:
You need the combination because you need a bowling attack which can bowl in all conditions," the former Indian Test team captain said about the team selection.
Summary:
Speaking ahead of the third Australia-India Test, that is scheduled to start in Melbourne on December 26, India's vice-captain Ajinkya Rahane said that he will score two hundreds in the Test.
Summary:
The Mercedes driver registered 11 victories alongside 11 pole positions and 17 podium finishes from 21 races.
Summary:
Naidu said that though the Congress caused loss to the state earlier, they are ready to support AP for special status.
Summary:
Vajpayee always chose ideology over power, Modi further said.
Summary:
At least four workers were killed after a fire broke out in a cloth factory in Mumbai's Kandivali on Sunday.
Summary:
Referring to actor Naseeruddin Shah's comment on Bulandshahr violence, Union Minister Prakash Javadekar on Sunday said, "If anyone feels insecure in the most secure country then it reflects their insecure mentality." "Such an accusation is not appropriate," he added.
Summary:
Veteran Communist Party of India (Marxist) leader and former West Bengal minister Nirupam Sen passed away in Kolkata on Monday aged 72.
Summary:
Of the 23, 13 are cabinet ministers and 10 are ministers of state.
Summary:
Fifty years ago on Christmas Eve, NASA astronauts Frank Borman, James Lovell, and William Anders became the first humans to orbit the Moon in the Apollo 8 mission known for capturing the "Earthrise".
Summary:
Web series 'Sacred Games' actress Kubbra Sait said she took a lot of pride playing a maid in the Salman Khan starrer film 'Ready' in 2011.
Summary:
An Indian newspaper recently published an interview with ex-Australia fast bowler Mitchell Johnson, wherein he praised India fast bowler Jasprit Bumrah, saying, "Any batsman will think twice before taking him on." However, the 37-year-old Australian claimed he "never sat down for a Q&A with the newspaper".
I don't recall this.
Summary:
Prime Minister Narendra Modi on Monday released a â¹100 commemorative coin in honour of former Prime Minister Atal Bihari Vajpayee, who passed away earlier this year.
Summary:
"We got only three years...nearly 50% of our tenure is still left.
Summary:
Rao was working as a Senior Technical Officer at the National Geophysical Research Institute in Hyderabad and is an explosive expert.
Summary:
At least one Indo-Tibetan Border Police (ITBP) soldier died and 24 were injured when the bus they were travelling in fell into a gorge near Khooni Nala in Jammu and Kashmir on Monday.
Summary:
The Lokayukta Police on Sunday raided the premises of a forest officer in Madhya Pradesh and found unaccounted assets worth more than â¹2 crore.
Summary:
He added that the country was moving towards prosperity under the leadership of PM Narendra Modi.
Summary:
At least eight people, including seven from the same family, have been killed and several others have been injured after nearly 50 vehicles piled up on Haryana's Rewari-Rohtak highway, according to reports.
Summary:
A teacher of a private school in Lucknow's outskirts has been accused of beating up a Class 1 girl and uprooting her hair after she failed to answer a question, police said on Saturday.
Summary:
The construction would cost â¹2,581 crore, while â¹309 crore would be the GST on the amount.
Summary:
Indonesia is frequently hit by tsunamis and earthquakes as it sits on the seismically active Ring of Fire, an arc of volcanoes and fault lines in the basin of Pacific Ocean.
Summary:
US President Donald Trump has announced that Deputy Defence Secretary Patrick Shanahan would take over as the acting Defence Secretary from January 1, replacing Jim Mattis two months earlier than had been expected.
Summary:
Neha Dhupia, who gave birth to a baby girl, said, "I want to be a mom, be on stage, do everything." "To play a part, something like a 'Tumhari Sulu', I need to be there physically 100%.
Summary:
Summary:
Fatima Sana Shaikh, on her film 'Dangal' completing two years of its release, shared pictures from the film's sets and wrote, "'Dangal' has been a beautiful journey." "Everybody I've met during the process are extremely special and precious to me.
'Dangal' released on December 23, 2016.
Summary:
Summary:
Criticising Pakistan PM Imran Khan, AIMIM President Asaduddin Owaisi on Sunday tweeted that he should learn "something from us about inclusive politics and minority rights".
Summary:
Andhra Pradesh Chief Minister N Chandrababu Naidu on Sunday called PM Narendra Modi a "hollow" man and said the PM has "done nothing" for the country.
Summary:
Vikassheel Insaan Party chief Mukesh Sahni on Sunday joined the Grand Alliance in Bihar, in the presence of RJD leader Tejashwi Yadav.
Summary:
The 229-foot-tall rocket, carrying the nearly $500-million satellite, was launched from Florida's Cape Canaveral.
Summary:
The feature was made available on the updated version of the Tesla app.
Commenting on the feature a user said, "Tesla just made my Model 3 winter experience 5-10% better with a simple mobile app update.
Summary:
The Border Security Force (BSF) on Sunday recovered 17 kg of heroin, two arms, three magazines and 26 live rounds of ammunition from Punjab's Ferozepur sector.
Summary:
PM Narendra Modi on Saturday announced the institution of 'Sardar Patel Award for National Integration', which would be given for "outstanding efforts to further national integration".
Summary:
Indian Railways bagged 17 awards at the 'National Energy Conservation Awards (NECA) 2018' held in New Delhi.
Summary:
Actor Ranveer Singh on Sunday took to Instagram to share a meme on actress Sara Ali Khan's name, which read, "Sara...Bohot Sara." The actress responded to him with a meme of her before and after pictures showing how her outfit choices changed after working with Ranveer Singh.
Summary:
Archie's wish was fulfilled by Cricket Australia under Make-A-Wish Australia campaign.
Summary:
Melbourne Renegades' Afghan all-rounder Mohammad Nabi failed to recognise his Australian teammate Dan Christian during an interview, minutes after recording a 94-run match-winning partnership with him.
Summary:
Vedangi achieved the feat by completing the 29,000-km distance required to qualify as bicycling across the globe in 159 days.
Summary:
Earlier, a PewDiePie fan had hacked 50,000 printers, causing them to print messages encouraging people to "help defeat T-Series".
Summary:
Congress party's Twitter handle on Sunday goofed up after it posted a tweet remembering former Prime Minister Narasimha Rao on his "birth anniversary".
Summary:
Indian all-rounder Hardik Pandya shared a selfie with the entire Indian team when they were visiting the Indian Summer Festival which was held in Melbourne ahead of the 3rd India-Australia Test.
Summary:
Former Australian batsman Matthew Hayden backed India coach Ravi Shastri's remark that the current Indian team is the 'best travelling team'.
Summary:
Australian pacer Josh Hazlewood has suggested adding a 'public poll' for the ratings that are given to the pitches by the ICC would be helpful.
Summary:
The Supreme Court-appointed Committee of Administrators (CoA) member Diana Edulji has reportedly accused BCCI CEO Rahul Johri of lacking professionalism.
Summary:
The UK's Gatwick Airport has offered a â¹44.3-lakh reward for information to help catch the drone culprit, who caused it to shut down three times last week.
Summary:
Rao is also scheduled to meet West Bengal CM Mamata Banerjee and former Uttar Pradesh CMs Mayawati and Akhilesh Yadav.
Summary:
US-based driverless car startup Zoox has received a permit by authorities in California, US to transport public passengers in its self-driving cars.
Summary:
It said ASI has formulated scientific cleaning to protect the Taj Mahal's surface.
Summary:
The police on Sunday said a 10-year-old boy was allegedly killed by a 15-year-old teenager in Mumbai after the victim refused him sex.
Summary:
Congress President Rahul Gandhi on the occasion of 'Kisan Diwas' on Sunday promised the farmers that he will make all efforts to secure their future.
Summary:
Following a heated argument the accused stoned her to death, the police added.
Summary:
Uttar Pradesh has topped the list of cases of police atrocities registered in India between 2014 to 2016, as per National Crime Records Bureau data.
Summary:
Union Minister Nitin Gadkari on Saturday said if a bank is in a "crisis", attempts are made to make it "worse".
Summary:
The study also suggested that about 15 million face poverty because of spending on tobacco and associated health costs.
Summary:
Former Mumbai Mayor and Padma Shri awardee Nana Chudasama died at the age of 85 on Sunday in Mumbai.
Summary:
He said over 400 computer systems were seized in the raids.n
Summary:
Finance Minister Arun Jaitley said the government will meet fiscal deficit target of 3.3% of GDP for 2018-19 despite revenue loss due to reduced GST rates.
Summary:
World's largest furniture retailer Ikea will invest â¹5,000 crore in Uttar Pradesh's Noida to set up large and small format stores.
Summary:
Currently, GST is levied at 12% for under-construction property or ready-to-move-in flats where completion certificate hasn't been issued at the time of sale.
Summary:
There is, however, no minimum balance requirement for accounts opened under Jan Dhan Yojana and Basic Savings Bank Deposit Accounts.
Summary:
The Confederation of Indian Industry (CII) has urged the government to not cap remunerations of independent directors under the amendments to the Companies Act, 2013.
Summary:
The Central Board of Secondary Education (CBSE) today released the board examinations date sheet for the academic year 2018-19.
Summary:
If Indian cricket has become aggressive, they think of winning then it's because of Kohli," Shetty added.
Summary:
On being asked which cricketer he would like to play onscreen, Bollywood actor Shah Rukh Khan revealed he would like to portray Team India captain Virat Kohli.
"In Jab Harry Met Sejal, I looked just like Virat Kohli.
Summary:
Zero's director Aanand L Rai later spotted Singh at an event.
Summary:
After the ICC rated the pitch used for the second Australia-India Test at Perth as 'average', Sachin Tendulkar criticised the governing body, saying "the pitch was by no means average".
Summary:
UP Sports Minister and ex-India cricketer Chetan Chauhan has said Lord Hanuman's caste should not be discussed.
Summary:
"Every move involves molecular self-reconfiguration for swapping in and out hundreds of DNA strands at once," a researcher said.
Summary:
The hospital refused to comply with the couple's demands.
Summary:
Summary:
Speaking about his injury that he suffered in the second India-Australia Test, Australian batsman Aaron Finch said that he felt like his finger was going to explode after he got struck by a delivery from Mohammad Shami.
Summary:
Former Indian cricketer VVS Laxman picked Sourav Ganguly as the best captain he has ever played under.
Summary:
ECB CEO Tom Harrison has said that he hopes that England all-rounder Ben Stokes will learn from his mistake and eventually become a better cricketer than before.
Summary:
Former Indian cricket team captain Sourav Ganguly visited Spanish football side FC Barcelona's home ground Camp Nou where he was presented with a customised club jersey with the name 'Dada' written on the back.
Summary:
The device uses inbuilt sensors to detect when the inhaler is used and measure the strength of the user's inhalation.
Summary:
The researchers said the engine sounds successfully calmed 11 out of 12 babies aged six months to 1.5 years.
Summary:
Chhattisgarh Chief Minister Bhupesh Baghel on Sunday said that the state will not withdraw security forces from Maoist-hit areas in the state.
Summary:
Uttar Pradesh BJP General Secretary Pankaj Singh on Sunday exuded confidence that the BJP will register a bigger win in the 2019 Lok Sabha elections compared to the 2014 elections.
Summary:
BJP President Amit Shah has said that Congress chief Rahul Gandhi is worried about infiltrators but not about citizens "who die in bomb blasts conducted by infiltrators".
Soon Rahul baba and company started creating ruckus in the Parliament," Shah added.
Summary:
West Bengal CM Mamata Banerjee on Sunday said the average annual income of farmers in the state has tripled during the past seven years of TMC rule.
Summary:
Terming 'Mahagathbandhan' as a club of rich dynasties, PM Narendra Modi said that the 'grand alliance' was formed for "personal survival" of its leaders and not in support of an ideology.
Summary:
Founded in 2018, the startup provides a platform for physical post-trade processing using blockchain technologies.
Summary:
Ousted Nissan Chairman Carlos Ghosn will be spending Christmas and New Year in prison after a Tokyo court on Sunday extended his detention to January 1.
Summary:
The power department will celebrate symbolic Diwali on January 26, 2019 to mark the 100% electrification, Sharma said.
Summary:
A group of 11 women, aged less than 50 years, was blocked by protestors from entering the Sabarimala Temple in Kerala on Sunday.
Summary:
Uttar Pradesh CM Yogi Adityanath on Sunday said only the BJP will build the Ram Mandir and no one else.
Summary:
Union Home Minister Rajnath Singh on Sunday said that no country is as tolerant as India.
Summary:
Vedanta has said it would move Supreme Court to challenge Madras High Court's order to keep Sterlite copper plant shut.
Summary:
After being asked what he made of India captain Virat Kohli's behaviour in the ongoing Test series against Australia, head coach Ravi Shastri said, "He has been fantastic." "What's wrong with his behaviour?
Summary:
"Conspiracies to create a wedge between me and the BJP leadership will never succeed," he added.
Summary:
Real moved ahead of their Spanish rivals Barcelona as the team to have won the title the most times.
Summary:
After SAD chief Sukhbir Singh Badal criticised Congress chief Rahul Gandhi over 1984 anti-Sikh riots, Punjab CM Captain Amarinder Singh said Badal had packed his bags and left for the US for studies when the riots erupted.
Summary:
An eight-year-old boy from Hyderabad, who became the youngest to climb Africa's highest peak Mount Kilimanjaro earlier this year, has now scaled Australia's highest peak Mount Kosciuszko.
Summary:
A student of Jamia Millia Islamia has alleged that she was not allowed to appear for the UGC-NET exam after she refused to remove her hijab.
Summary:
Saudi King Salman bin Abdulaziz Al Saud's half-brother Prince Talal bin Abdulaziz has died aged 87, the royal court said on Saturday.
Summary:
The band's drummer, guitarist and Fajarsyah's wife are missing after the incident.
Summary:
Most women included their photos with the letters expressing love for Watts and the belief that he was innocent.
Summary:
Virat Kohli, after watching his wife Anushka Sharma's 'Zero', tweeted, "Loved Anushka's performance because I felt it was a very challenging role and she was outstanding." "Saw 'Zero' and loved the entertainment it brought.
Everyone played their parts well," wrote Virat.
Summary:
Ayushmann Khurrana has said he would "love" to do conventional films, adding, "I have grown up watching conventional films.
Summary:
Talking about the advice he has given to son Ahan Shetty who will make his Bollywood debut, Suniel Shetty said, "I've told him to be honest with his work." "I've also told him to love your producer because he's the one who invests money in films," added Suniel.
Summary:
Summary:
Pakistan's opener Sharjeel Khan, who is serving a five-year ban for his role in a spot-fixing case, has agreed to undertake the rehabilitation program of the Pakistan Cricket Board.
Summary:
This was the first time since Sir Alex Ferguson's last match in charge in 2013 that United netted five goals in a Premier League match.
Summary:
The Hyderabad Hunters defeated the Pune team on the day, winning the tie 6 to -1.
Summary:
Responding to the criticism faced by the Indian team over the team selection, coach Ravi Shastri said, "When you are millions of miles away, it is very easy to fire blanks." "Their comments are too far away and we are in the Southern hemisphere.
Summary:
The wireless device uses an array of strain gauges to detect users' grip strength while conducting tasks like opening a jar or writing.
Summary:
The by-election was necessitated after Bavaliya, who won the seat from Congress ticket in 2017, quit the party and Assembly to join BJP.
Summary:
Two people were killed and one got injured on Sunday when a truck fell down a bridge at Gambarpull Nallah in Himachal Pradesh's Solan district.
Summary:
At least three people were killed and eight injured after a portion of an under-construction building collapsed in Mumbai's Goregaon on Sunday.
Summary:
This is the seventh trial of Agni-IV missile.
Summary:
Remembering former PM Chaudhary Charan Singh on his birth anniversary, PM Narendra Modi on Sunday tweeted, "We recall his noteworthy contribution to India's development, particularly in safeguarding the interests of farmers." West Bengal CM Mamata Banerjee also paid homage to Singh, tweeting, "This day is also observed as #KisanDiwas.
Summary:
BJP leader Subramanian Swamy on Saturday alleged that the newly appointed RBI Governor Shaktikanta Das was a "highly corrupt" person.
Summary:
Naqvi said this in response to Pakistan PM Imran Khan's statement wherein he said he will show PM Narendra Modi-led government "how to treat minorities".
Summary:
BJP MP Subramanian Swamy has said that women attempting to enter Kerala's Sabarimala temple are inspired by Naxal forces "who hate Hinduism".
Summary:
Reserve Bank of India has shortlisted six IT majors including TCS, Wipro and IBM India to set up Public Credit Registry (PCR) for capturing details of borrowers and wilful defaulters.
Summary:
The BJP and the Nitish Kumar-led JD(U) will contest on 17 seats each out of the 40 Lok Sabha seats in Bihar.
Summary:
Richard Anthony was freed this June after Ricky Amos was found and robbery victims couldn't differentiate between the two.
Summary:
Officials added that rescue workers and ambulances were finding it difficult to reach affected areas.
Summary:
Naseeruddin Shah has advised Pakistan Prime Minister Imran Khan to take care of his own country and stay away from "issues that don't concern him".
Summary:
Reacting to Naseeruddin Shah's remark on Bulandshahr mob violence, Union Minister Mukhtar Abbas Naqvi on Saturday said there's no need for the actor's children to feel scared.
Summary:
Road Transport Minister Nitin Gadkari on Saturday said the leadership should have the tendency to own up to defeat and failures, adding that loyalty towards the organisation is not proved until one takes responsibility for defeat.
Summary:
The start of Delhi-Madhya Pradesh Ranji match was delayed by over two hours after BCCI's North Zone curator Sunil Chauhan overwatered the Feroz Shah Kotla pitch.
Summary:
Karnataka CM HD Kumaraswamy on Saturday expanded his cabinet, inducting eight members from coalition partner Congress, whereas two others were removed.
Summary:
A court in Haryana's Rewari has awarded death penalty to a 19-year-old boy for raping and strangulating to death an eight-year-old girl in June this year.
Summary:
Police have arrested members of a 'cab gang' who used to rob commuters on the Delhi-Gurugram Expressway by offering them cab rides at night and targeted at least 220 people in Delhi-NCR.
Summary:
At least 21 women were arrested for consuming liquor during a kitty party at a hotel in Gujarat's Surat.
Summary:
Baring Private Equity Asia has reportedly emerged as the front-runner to buy Café Coffee Day (CCD) Founder VG Siddhartha and his affiliates' 21% stake in Mindtree for at least â¹3,300 crore.
Summary:
He is followed by Alibaba's Jack Ma, who lost $10.5 billion and Tencent Chairman Ma Huateng, whose wealth fell $8.61 billion.
Summary:
Summary:
On being asked by a fan on Twitter about working with Arjun Kapoor again, Ranveer Singh said, "I miss him a lot.
Summary:
The film, which revolves around the relationship between a father and a daughter, also stars Anil Kapoor who will play the role of Sonam's father.
Summary:
Anurag Kashyap, after watching Shah Rukh Khan's 'Zero', tweeted, "'Zero' deserves a viewing just for so many new grounds it breaks within the mainstream." "And then seeing all the stars getting out of their comfort zones and pushing themselves by breaking the typecasts, breaking the expectations and not playing safe.
Summary:
The couple, who got married on December 12 in Jalandhar, hosted their first wedding reception in Amritsar which was attended by Daler Mehndi.
Summary:
In a recent interview, Law Minister Ravi Shankar Prasad has said the Opposition and Gandhi family refuse to acknowledge Narendra Modi as PM of India.
Summary:
Congress leader Sanjay Nirupam has said Delhi CM Arvind Kejriwal should apologise after reports claimed that Delhi Assembly passed a resolution seeking withdrawal of Bharat Ratna conferred on late PM Rajiv Gandhi over 1984 anti-Sikh riots.
Summary:
This is my only request." This follows a recent software update by Musk-led Tesla for its electric vehicles, which allows drivers to choose from six different fart noises.
Summary:
At least five students were killed and several others were injured on Saturday after a bus carrying over 50 students fell into a gorge in Dang district in Gujarat.
Summary:
This is the biggest quantity of the drug seized in the national capital this year, police claimed.
Summary:
Criticising PM Narendra Modi, former JNU Students Union President Kanhaiya Kumar on Saturday said, "The PM is an encyclopedia of fake news." "Fake Prime Minister cannot fool people with fake news," he added.
Summary:
A government contractor was shot dead at his residence in Uttar Pradesh on Saturday and the police filed a case against BJP MLA Indra Pratap for his alleged involvement.
Summary:
Meghalaya government on Saturday announced interim relief of â¹1 lakh each to the families of those trapped in an illegal coal mine in East Jaintia Hills district of the state.
Summary:
Manipur Assembly on Friday passed the 'Manipur Protection from Mob Violence Bill' to reduce the number of mob lynchings in the state.
Summary:
At least 43 people have been killed and over 500 others have been injured in a tsunami that hit Indonesia.
Summary:
Luxury brand Tom Ford's manager Tatyana Gleyzerman, accused of sexual harassment in November, had allegedly told another female ex-employee she "needs sex every day" and "can't live without it".
Summary:
Ex-Windies batsman Viv Richards has said he loves Virat Kohli's captaincy.
I love it (aggression)...why not?
They now love to give it back.
Summary:
Bangladesh's Liton Das got caught off Oshane Thomas and Ahmed wrongly declared it a no-ball.
Summary:
A high school wrestler in US' New Jersey had his dreadlocks cut off minutes before his match after referee Alan Maloney asked him to cut his hair or forfeit the competition.
Summary:
Hindu Yuva Vahini has filed an FIR against organisers of Juloos-e-Ghousia in Uttar Pradesh for allegedly replacing Ashok Chakra in the National Flag with the picture of a mosque.
Summary:
Railway authorities said that they washed the baby, took him to a hospital, and informed the Government Railway Police.
Summary:
Another RTI reply disclosed that ten agencies, including Intelligence Bureau, CBI and ED, were authorised the interception under Indian Telegraph Act, 1885.
Summary:
Summary:
RJD chief Lalu Prasad Yadav's son Tej Pratap Yadav on Saturday said he hasn't withdrawn his petition of divorce from Aishwarya Rai and that he is steadfast in his decision.
Tej had filed a petition in a Patna Court seeking divorce from Aishwarya on November 2.
Summary:
Pakistan PM Imran Khan has said that he'll show PM Narendra Modi-led Indian government "how to treat minorities".
Summary:
Brett McGurk, the US Special Presidential Envoy for the Global Coalition to Defeat ISIS, has resigned over US President Donald Trump's decision to withdraw American troops from Syria.
Summary:
Malaysia argued that Goldman should return $6.5 billion it helped raise for the fund which "were not used for national development but was siphoned out".
Summary:
Actors Sara Ali Khan and Kartik Aaryan will star in the sequel to the 2009 film 'Love Aaj Kal', as per reports.
Summary:
While speaking about the roles she would want to portray, actress Ratna Pathak Shah said, "I'm headstrong, I'm bossy and I am who I am.
Summary:
Summary:
The government in Pakistan's Khyber Pakhtunkhwa province has plans to acquire 25 pre-partition era buildings, including the ancestral houses of Bollywood actors Raj Kapoor and Dilip Kumar.
Summary:
Manchester City's 100% home record in this season's Premier League came to an end after Crystal Palace beat them 3-2.
Summary:
V Narayanasamy-led Puducherry government and its allies will stage a protest in front of Parliament on January 4, demanding statehood for the Union Territory.
Summary:
Commenting on judicial verdicts in cases of alleged encounters and suspicious deaths, Congress President Rahul Gandhi tweeted a list of seven names and said, "No one killed [them]...they just died." The list included names like Tulsiram Prajapati, Justice Loya, Kauser Bi and Sohrabuddin Sheikh, among others.
Summary:
"We are committed so that Muslim women can get rid of a big life threat," PM Modi added.
Summary:
His brother claimed that Singh, who took a loan after March 31, was disturbed as he was unable to meet the cut-off date for farm loan waiver.
Summary:
The Supreme Court in 2006 had prohibited mining within 1 km of national parks and sanctuaries.
Summary:
Amid reports of the withdrawal of over 5,000 American troops from Afghanistan, Pakistan's Foreign Minister Shah Mahmood Qureshi has said that the reported move will help boost the ongoing peace talks to end the 17-year war in the country.
Summary:
The estimated number of babies born in Japan in 2018 fell to a record low since comparable data became available in 1899, with less than 1 million babies being born for the third straight year.
Summary:
A Test is considered drawn, and not tied if the batting team has wickets remaining when the time expires, even if the scores are level.
Summary:
On December 8, 2011, India had achieved their highest-ever ODI total by putting up 418/5 against Windies at the same stadium.
Summary:
Reacting to Naseeruddin Shah's remark that he fears for his children in India, Anupam Kher on Saturday said, "There's so much freedom in the country...you can abuse the Army, badmouth the Air Chief...pelt stones at soldiers." "How much more freedom do you need?" he added.
Summary:
After the Centre announced GST reduction on cinema tickets, Subhash Ghai tweeted, "Happy days are here again for Indian Film Industry." "Government addressed our concern...A welcome move for the industry and audiences as well," Akshay Kumar's post read.
Summary:
After Centre announced reduction of GST on cinema tickets, Central Board of Film Certification chief Prasoon Joshi said, "It's a significant decision after fruitful interaction of industry representatives with PM (Narendra Modi)." "It was reassuring that PM addressed important issues and challenges faced by the industry and took prompt action," he added.
Summary:
Talking about Women's WT20 controversy, Indian women's ODI team captain Mithali Raj has said that the last few days were very stressful for her and her parents.
Summary:
No resolution mentioning late PM Rajiv Gandhi was passed," Deputy CM Manish Sisodia said.
Summary:
South African jazz artiste Musa Manzini strummed his guitar during a six-hour brain tumour surgery last week.
This allowed doctors to preserve the brain areas he used to play music and restore some movement to his fingers affected by the tumour.
Summary:
Launched on May 21, 2018, CAL is producing the ultracold atoms daily to study atoms under vacuum, NASA said.
Summary:
The tax rate on music books has been reduced to nil while wheelchair parts will now attract 5% GST from 28%.
Summary:
Pakistani national Imran Warsi, who has been staying at a Bhopal police station for the last nine months after a 10-year jail term, would be sent back to Pakistan on December 26.
Summary:
"Actually Bhai is saying jiski biwi Smriti ho uska bhi bada naam hai," responded Zubin.
Summary:
He climbed down after a mimicry artist posing as PM talked to him over the phone.
Summary:
Slovakian police have released a video of a single-car crash which shows a BMW being launched around 20 feet into the air and crashing into the tunnel roof after hitting a ramp.
Summary:
The regulator also barred them from disposing or alienating their assets and diverting funds except to meet business operation expenses.
Summary:
The domestic air passenger traffic growth during November fell to a nearly four-year low of 11%.
Summary:
The film is about a young boy who makes an appeal to the Prime Minister to build a toilet for his single mother.
Summary:
The Pakistan Cricket Board's new Managing Director Wasim Khan said, "I'd like to see Pakistan players welcomed into the IPL." "I want to sit down with my counterpart at the BCCI and see if I can improve that relationship," Wasim said.
Summary:
New Zealand captain Kane Williamson said that he would like to have most of the shots that Indian captain Virat Kohli plays.
Summary:
Former India batsman VVS Laxman has revealed that he came to know about former India captain MS Dhoni's struggles after watching the movie 'MS Dhoni: The Untold Story'.
What is so great about MS is that he never ever gives excuses for not getting opportunities," Laxman added.
Summary:
Facebook-owned messaging platform WhatsApp's desktop version WhatsApp Web has launched the Picture-in-Picture (PiP) feature, which lets users watch videos while simultaneously using the platform.
Summary:
Commenting on the ongoing debate over the religion of Lord Hanuman, BJP-ally Shiv Sena said that other characters from Ramayana should keep their caste certificates ready.
Summary:
US space agency NASA has shared photos of asteroid 2003 SD220, set to fly past Earth on December 22.
Summary:
A study by researchers from US' Johns Hopkins and two Pune Government Hospitals has suggested that the use of kerosene as a cooking fuel in Indian kitchens may be promoting tuberculosis.
Summary:
CBI's investigation is of more than â¬37 million." The court also dismissed Michel's bail plea.
Summary:
Activists criticised the government over the "inhumane and ruthless" treatment of the deceased professor.
Summary:
Trump earlier warned ISIS is "doomed" if it attacks the US.
Summary:
Deepika Padukone replied to Elon Musk with a namaste emoji a day after the billionaire entrepreneur had tweeted 'Bajirao Mastani' and shared a GIF of Ranveer Singh's character from the 2015 film.
Summary:
Actress Swara Bhasker, while praising boyfriend Himanshu Sharma for his writing in the film 'Zero', wrote on Twitter, "I've gotta say I've fallen in love all over again.
Summary:
Summary:
Indian tennis player Sania Mirza introduced her son Izhaan Mirza-Malik on social media on Saturday by sharing a picture of him smiling.
Sania and her husband Pakistani cricketer Shoaib Malik were blessed with Izhaan in October.
Summary:
Samson had made his relationship with Charulatha public in September this year after their parents agreed to their relationship.
Summary:
Australian cricketer Cameron Bancroft has revealed he considered walking away from cricket to become a yoga teacher during his ban for ball-tampering.
Summary:
David Kaye, UN Special Rapporteur on freedom of opinion and expression, has written to Twitter CEO Jack Dorsey asking him why the social media platform has been censoring Kashmir-related content.
Summary:
Talking about prospective alliances, Haasan said MNM is open to forming an alliance with "like-minded parties".
Summary:
Twelve of the 13 protestors killed when police opened fire on anti-Sterlite protestors in Tamil Nadu's Tuticorin were hit by bullets in the head or chest and half of those were shot from behind, autopsies revealed.
Summary:
India and the US have coordinated over the Sri Lankan and Maldivian crisis, he further said.
Summary:
People began sharing screenshots of the same on Twitter, with a person tweeting, "Combination of odd, even and prime numbers." Another person tweeted, "This OTP is no longer valid.
Summary:
The Punjab Assembly had passed a resolution seeking a land swap deal with Pakistan on Kartarpur, home to Guru Nanak Dev's final resting place.
Summary:
Karmakar had complained of uneasiness and his pulse rate dropped as soon as the flight took off.
Summary:
A video has surfaced online, showing a patient being dragged to OPD on a bedsheet allegedly due to lack of stretchers at a government-run hospital in Madhya Pradesh's Jabalpur.
Summary:
Prices of vehicles will rise in Delhi as outgoing Transport Commissioner Varsha Joshi has approved a recommendation by three municipal corporations to hike one-time parking charges in 2019 by up to 18 times.
Summary:
The suspect was caught soon after the robbery, which took place on Norway's archipelago of Svalbard.
Summary:
After his glitter bomb video to trap parcel thieves went viral, YouTuber and former NASA engineer Mark Rober apologised saying two out of the five reactions in his video were staged.
Summary:
'Sonu Ke Titu Ki Sweety' actress Nushrat Bharucha will feature in the upcoming film 'Marjaavaan', starring Sidharth Malhotra, as per reports.
Summary:
Shiv Sena said Naseeruddin Shah should move to Pakistan if he's dissatisfied in India.
Summary:
Hollywood actor Leonardo DiCaprio's charity, the Leonardo DiCaprio Foundation, has raised over $100 million to fight against climate change.
Summary:
Ranveer Singh will play former Indian cricket team captain Kapil Dev in the film, as per reports.
Summary:
Those natural instincts in their blood cannot be changed", added Kirmani, a member of India's 1983 World Cup-winning squad.
Summary:
Former Indian cricketer and former national selector Sandeep Patil said that Indian captain Virat Kohli should not stop being aggressive as he wants to see the 'tiger in the wild and not put in a cage'.
Summary:
Prasad further said that the Gandhi family has "misused the public properties".
Summary:
Shiv Sena leader Manisha Kayande on Saturday said that PM Narendra Modi should declare an emergency instead of authorising ten central agencies to intercept information stored on any computer.
Summary:
As many as 37 of 41 locations reported moderate to severe water pollution in the pre-monsoon period in 2017-18, the report read.
Summary:
Telecom Regulatory Authority of India (TRAI) has imposed a fine of â¹56 lakh on telcos for failing to meet call drop benchmark in the first and second quarter of 2018, Telecom Minister Manoj Sinha informed the Parliament on Friday.
Summary:
The GST Council has reduced the GST rate for cinema tickets above â¹100 to 18% from 28% while the tax on tickets of up to â¹100 has been cut to 12% from 18%.
Summary:
After take off!" The woman later shared her picture with Kumble and tweeted, "Thank you for being so gracious."
Summary:
Amazon said their AI research aims at making Alexa mimic human banter and users can participate in chatbot trials by saying "let's chat" to their devices.
Summary:
Summary:
Former Congress leader Sajjan Kumar on Saturday moved the Supreme Court challenging the life imprisonment awarded to him by the Delhi High Court in a 1984 anti-Sikh riots case.
Summary:
Punjab National Bank's Customer Service Point in-charge was abducted and killed by unidentified assailants in Bihar's Gaya district.
Summary:
German scientists are producing the 'no-kill eggs' by determining the chick's gender before it is born and male eggs are then being processed into animal feed.
Summary:
A passenger onboard Vistara airline's Amritsar-Delhi-Kolkata flight had to be offloaded on Thursday at Delhi airport after he insisted on smoking onboard.
Summary:
To mislead the search for the body, the accused made a fake ransom call demanding â¹5 lakh from the victim's parents, who then reported his kidnapping.
Summary:
Summary:
A video of invigilators using an otoscope to check students' ears for hidden Bluetooth devices, that might be used to relay exam answers from outsiders, has been shared online.
Summary:
Chinese e-commerce giant JD.com's billionaire Founder and CEO Richard Liu won't be charged in connection with a rape investigation in Minneapolis.
Summary:
Bobby Deol will make his digital debut with a web series titled 'India Strikes' where he will be seen playing an "interesting" role, as per reports.
Summary:
Anupam Kher took to Twitter to wish Priyanka Chopra-Nick Jonas, Deepika Padukone-Ranveer Singh and Saina Nehwal-Parupalli Kashyap for their weddings.
Summary:
Summary:
Former Australian cricketer Michael Hussey defended Virat Kohli's on-field behaviour, saying, "It did not go over the top.
It showed both teams will play tough cricket and they are not going to back down," Hussey added.
Summary:
Indian cricketer Yuvraj Singh praised his new IPL team Mumbai Indians' captain Rohit Sharma, saying, "I think Rohit is a terrific captain and he is someone who keeps his nerves pretty calm." "I have seen Rohit grow in front of me as a player, a cricketer and as a human...
Summary:
Los Angeles Lakers' player LeBron James said that NFL owners have a "slave mentality".
Or we get rid of y'all,'" LeBron added.
LeBron also made comparisons between NBA and NFL.
Summary:
A non-bailable warrant was issued against Congress leader Digvijaya Singh on Friday by a Hyderabad court, for failing to appear before it with regard to a defamation case.
Summary:
Summary:
After AAP MLA Alka Lamba claimed Delhi CM Arvind Kejriwal asked her to resign from AAP, Deputy CM Manish Sisodia said, "No resignation has been sought...
Summary:
Hindustan Aeronautics Limited Chairman R Madhavan said HAL was capable of producing Rafale jets when initial talks were held but the government bought 36 aircraft separately for "quick delivery".
Summary:
Info Edge had picked up around 28% stake in NoPaperForms in November 2017.
Summary:
Former Union Minister Yashwant Sinha said that his new book "India Unmade: How the Modi Government Broke the Economy" demonstrates how PM Narendra Modi "unmade India".
Summary:
Talking about Congress president Rahul Gandhi, Union Minister Mukhtar Abbas Naqvi said that Rahul is no longer a "pappu (fool)" but has now turned to a "gappu (chatterbox)".
Summary:
The US called on Russia to return to Ukraine the seized vessels and detained sailors.
Summary:
There had been reports of more than 50 sightings of the drones since Wednesday, following which the Army was deployed.
Summary:
National Mathematics Day is celebrated on December 22, since 2012, after former Prime Minister Manmohan Singh made the declaration to pay tribute to Srinivasa Ramanujan on his birth anniversary.
Summary:
#WhistlePodu," CSK tweeted.
The picture was originally shared by a fan, Mainak Mondal, who had tweeted, "Must be a great fan of MSD.
Summary:
Shah Rukh Khan, Anushka Sharma and Katrina Kaif starrer 'Zero' has earned â¹20.14 crore in India on the first day of its release.
Summary:
The ICC has asked the BCCI to pay $23 million (â¹161 crore) to compensate for the tax deductions incurred in hosting the 2016 World T20 before December 31.
Summary:
AAP MLA Alka Lamba has claimed that Delhi Chief Minister Arvind Kejriwal asked her to resign from AAP after a controversy erupted over a resolution in Delhi Assembly seeking withdrawal of the Bharat Ratna awarded to late Prime Minister Rajiv Gandhi.
Summary:
Introduced in 2012 to prevent money laundering, 'Angel Tax' is a 30% tax levied when unlisted companies receive funding at a valuation higher than its "fair market value", which Indian government counts as income and hence taxes it.
Summary:
Indian diplomats in Pakistan aren't being issued new gas connections, electricity at their residences is being randomly switched off and internet services of some senior officials are being blocked, as per reports.
Summary:
India's stock market has overtaken Germany's to become the seventh-largest in the world with a market capitalisation of $2.08 trillion.
Summary:
The world's richest 500 people collectively lost $511 billion wealth in 2018 owing to market selloffs and global trade tensions, according to Bloomberg.
Summary:
ONGC evacuated all 111 crew members from the rig on December 14 and 15 following forecast of Phethai.
Summary:
May God bless him." Ranveer had earlier said he's a "huge" Govinda fan.
Summary:
Zeeshan Ayyub, who played the role of Shah Rukh Khan's friend in 'Zero', said, "If Shah Rukh Khan or Salman Khan are taking any risk, people are like they want to watch them in the same pattern." "Then, we keep on complaining that they work in similar kind of films.
Summary:
Summary:
Sara Ali Khan, who recently made her Bollywood debut with 'Kedarnath', has said that it will be a "dream come true" for her to work with Sanjay Leela Bhansali in a period drama.
Summary:
Former England captain Michael Vaughan also agreed with Johnson's view that the pitch deserved a better rating.
Summary:
Speaking about Indian team's current captain Virat Kohli, Australia's former coach John Buchanan said, "He continues Sourav Ganguly's tradition and that is not to take a back step at any point of time." "He brings wonderful colour to the game.
Summary:
French club Paris St Germain has given permission to their Brazilian forward Neymar Jr to go on an early Christmas vacation.
Summary:
Stating ailing Goa CM Manohar Parrikar was Defence Minister during the Rafale deal, Congress leader Jaipal Reddy asked, "Is he blackmailing PM Narendra Modi to keep him in the chair as CM?
Summary:
Punjab Chief Minister Captain Amarinder Singh on Friday said the Badals, who lead Shiromani Akali Dal (SAD), are running around like "scared rabbits with no hole to hide" as they fear defeat in the 2019 Lok Sabha polls.
Summary:
Accusing Kerala BJP of using the Sabarimala issue for gaining political mileage, BJP leaders Vellanad Krishnakumar, Uzhamalackal Jaykumar, Thelicode Surendran and V Sukumaran resigned from the party on Friday.
Summary:
Taking a jibe at the Opposition, Gujarat CM Vijay Rupani on Friday said, "The way a family feels with the birth of a son after many years...
Congress is similarly overwhelmed with recent wins." Rupani, who was addressing the two-day BJP national women's wing convention, added, "In Madhya Pradesh, their lead is very thin...
Summary:
Delhi Congress chief Ajay Maken on Friday tweeted, "AAP is the B team of BJP," after AAP passed a resolution demanding the withdrawal of the Bharat Ratna awarded to late Prime Minister Rajiv Gandhi.
Summary:
Security forces had launched a cordon and search operation in Arampora village in Pulwama district, and the encounter ensued after the militants fired upon them.
Summary:
In a letter to Maharashtra CM Devendra Fadnavis, Hazare said that the government gave assurance but never implemented the law.
Summary:
West Bengal CM Mamata Banerjee on Friday said, "The infrastructure that has been built across West Bengal can be compared with any European country." She further said that Kolkata has changed drastically under the Trinamool Congress' rule.
Summary:
The UN Working Group on Arbitrary Detention has asked the UK to allow WikiLeaks founder Julian Assange to leave Ecuador's embassy in London without fear of arrest or extradition.
Summary:
Turkey will take over the fight against the Islamic State in Syria as the US withdraws its troops from the country, Turkey's President Recep Tayyip ErdoÃÂan said.
Summary:
Kartik Aaryan is coming today for a live unboxing & interactive session on Huawei Mate 20 Pro, touted in media reports as the King of smartphones, at Ambience Mall, Gurugram, 5 PM onwards.
Summary:
Actress Kareena Kapoor Khan, while speaking about her regrets on her radio show 'What Women Want', said, "I don't have a degree...I always feel that I should have started my career a little later." "I took a very quick decision and started shooting at the age of 17.
Summary:
Congress MP Shashi Tharoor has suggested that off-spinner Ravichandran Ashwin should open with Mayank Agarwal for India in the third Test against Australia, which will commence on December 26.
Summary:
The Congress recently shared "throwback" pictures of UPA Chairperson Sonia Gandhi via its Instagram account.
Summary:
A clash broke out between BJP and Congress workers near Goa Congress headquarters on Friday after BJP workers organised a protest rally criticising Congress' leadership for raking up the Rafale issue.
Summary:
However, AAP MLA Saurabh Bharadwaj claimed the original resolution did not mention Rajiv.
Summary:
Earlier studies have found microplastics in stomachs of animals from the deep-sea region.
Summary:
India has interpreted the US' new South Asia strategy as an opportunity to increase its economic involvement in Afghanistan.
Summary:
It is yet to be ascertained why Bhaskar attacked Narnawre.
Summary:
The UAE's support comes amid the current financial crisis in Pakistan.
Summary:
More than 4 lakh federal âÂÂessentialâ employees will work without pay and another 3.8 lakh will be put on temporary leave as the US government partially shut down on Saturday.
Summary:
Summary:
Actor Randeep Hooda has said that Christmas is not a religious affair for him but has always been special because of all the "funky and unusual presents" he receives.
Summary:
Tisca Chopra, on her film 'Taare Zameen Par' completing 11 years of its release, shared a still from the film and wrote, "The love endures!!" Tisca had played the role of Darsheel Safary's mother in the film.
Summary:
'Baaghi 3' director Ahmed Khan has said, "We want to shoot the film in Syria and Iraq because it requires that kind of terrain." He added that since shooting at these places can be difficult, they will have to check the possibility of doing so first.
Summary:
The organisers of Ajmer Literature Festival have cancelled an event in which Naseeruddin Shah was to deliver a speech, after protests by right-wing groups over his remarks on 'mob-violence'.
Summary:
Ex-India batsman and BCCI's Cricket Advisory Committee (CAC) member VVS Laxman has revealed the committee wanted Anil Kumble to continue as India's coach but the ex-captain thought the right decision was to quit and move ahead.
Summary:
Devmani Dwivedi, a BJP MLA from Uttar Pradesh, on Friday said, "I want Sultanpur to be again called as Kushbhawanpur." It was named Sultanpur by the Khilji dynasty, he added.
Summary:
Speaking at a conference in Kolkata, National Conference leader and former Jammu and Kashmir CM Farooq Abdullah said, "Hindus, Muslims, Sikhs and Christians have the same blood flowing through their veins." "No religion is greater than the other," he added.
Summary:
Uber had failed to report the data breach on time, which had affected around 57 million users, including 1.4 million users in France.
Summary:
US Federal Communications Commission (FCC) has fined former Google engineer Sara Spangelo-led space startup Swarm Technologies for $900,000 over unauthorised satellite launch.
Summary:
The crater is named after Sergei Korolev, Russian rocket engineer and spacecraft designer, known as the father of Soviet space technology.
Summary:
Around 4,000 cases have been registered till November this year by Hyderabad Traffic Police against minors, parents and vehicle owners for letting unlicensed minors drive in the city.
Summary:
Odisha CM Naveen Patnaik on Friday announced a â¹10,000 crore scheme for the overall development of farmers.
Summary:
The scheme will start from 2019-20 financial year, CM Raghubar Das said.
Summary:
A Delhi court on Friday directed the CBI to cancel the Look Out Circular (LOC) issued against former IAF chief SP Tyagi, an accused in the AgustaWestland VVIP chopper deal.
Summary:
The statement, written on the department's Facebook page, followed two murders in Covington County in two days and added that five murders had occurred in 2018.
Summary:
He added Shah shouldn't call himself a patriot after sympathising with terrorists.
Summary:
Uttar Pradesh BJP chief Mahendra Nath Pandey has said, "In one of his movies, [Naseeruddin Shah] had played the role of a Pakistani agent.
Summary:
Musk accompanied his tweet with GIF of Ranveer Singh from the song 'Malhari'.
Summary:
Sydney Thunder's 19-year-old Indian-origin batsman Jason Sangha on Friday became the youngest ever batsman to smash a fifty in the Big Bash League.
Summary:
Notably, Kumble had stepped down, saying Kohli had reservations with his style.
Summary:
After Congress attacked BJP on its recent surveillance order, BJP President Amit Shah tweeted, "Tum itna kyun jhuthla rahe ho, kya darr hai jisko chhupa rahe ho!" "There were only 2 insecure dictators in the history of India.
Summary:
Employees of Juul are getting a $2 billion bonus as part of the tobacco giant Altria's investment in the e-cigarette maker, according to reports.
Summary:
PM Narendra Modi on Friday urged fliers to spot the world's tallest statue, Gujarat's 'Statue of Unity' during Delhi-Mumbai flights.
"Some friends told me that the Statue can also be seen during Delhi-Mumbai flights.
Summary:
Summary:
Madras High Court on Friday ordered Vedanta's Sterlite copper plant to remain shut till further orders despite Sterlite getting a green signal from the National Green Tribunal.
Summary:
At least 16 people, including students and teachers, were killed and 11 others were injured on Friday after a bus fell some 700 metres down the road into a ravine in Nepal's Dang district.
Summary:
The astronauts orbited the Moon 10 times over the course of 20 hours and returned to the Earth on December 27, 1968.
Summary:
As per the previous order, the ban would have come into effect at 10:30 pm on December 20.
Summary:
While speaking about his 'Rajma Chawal' co-star Rishi Kapoor, actor Anirudh Tanwar said, "He is the most honest person I have seen." "He is very open and will say if he likes something of yours and share dislike as well," he added.
Summary:
Actor Samir Soni will feature in the upcoming web series 'Cartel' along with Vivek Oberoi and Kubra Sait.
Summary:
An administrator of the Rajini Makkal Mandram, a fan association for actor Rajinikanth, has applied for multiple trademarks for TV channels with the actor's name.
Summary:
The International Cricket Council has rated the pitch for the second Test between India and Australia at Perth as "average".
Summary:
A FIFA report stated on Friday that a combined global audience of 1.12 billion watched the World Cup final between France and Croatia in July.
Summary:
Mithali Raj and Harmanpreet Kaur were named as Indian women's ODI and T20I captains respectively for the tour of New Zealand which starts next month.
Summary:
The Australian Open has joined Wimbledon in introducing a final set tiebreak from next year's competition.
Summary:
John had joined Google in 2010 after it acquired his startup Metaweb Technologies and led the companyâÂÂs research on its search engine and AI.
Summary:
Masayoshi Son-led Japanese conglomerate SoftBank's $100-billion Vision Fund is planning to invest over $1 billion in Southeast Asian ride-hailing startup Grab, which may even rise up to $1.5 billion, as per reports.
Summary:
Ursids meteor shower, the year's last meteor shower, will be visible from India starting December 22, a day after Northern hemisphere's Winter Solstice.
Summary:
Cell migration and wound-healing related processes were enhanced by the electric field that accelerated healing, scientists said.
Summary:
The workers would call up US citizens and say there were problems with their Social Security number and then demand money to fix it, a police official said.
Summary:
The mastermind behind the kidnapping worked as domestic help at the children's house.
Summary:
An estimated 15,86,571 cases of cancer have been reported so far this year, she added.
Summary:
Notably, OnePlus rose several ranks to become the brand with the second highest brand loyalty with 31%.
Summary:
A day after actor Naseeruddin Shah said that cow is given more importance than policeman and he fears for his children in India, Uttar Pradesh Navnirman Sena President Amit Jani booked Shah a flight ticket to Pakistan's Karachi.
Summary:
Perth Scorchers batsman Ashton Turner was awarded a six after he hit the roof over the ground at Melbourne's Docklands Stadium during their BBL match against Melbourne Renegades.
Summary:
A Bihar court has awarded life imprisonment to MLA Raj Ballabh Yadav, who was suspended by RJD, in connection with the rape of a minor girl in Nawada in 2016.
Summary:
After the government authorised 10 agencies to access and decrypt "any information generated, transmitted, received or stored in any computer", Congress tweeted, "From Modi Sarkar to Stalker Sarkar".
The authorised agencies include CBI, Delhi Police Commissioner, RAW and National Investigation Agency, among others.
Summary:
Flipkart Co-founder and former Group CEO Binny Bansal may invest $25 million (over â¹175 crore) in Mumbai-based online insurance startup Acko, as per reports.
Summary:
Ousted Nissan Chairman Carlos Ghosn was re-arrested by Japanese authorities on Friday on suspicion that he shifted over $16 million in personal losses to Nissan.
Summary:
The US also ignored Pakistan's nuclear programme to gain its support against Soviet invasion of Afghanistan.
Summary:
During a telephonic conversation with UN Secretary-General António Guterres, Pakistan PM Imran Khan said that Kashmir is not a "bilateral issue between Pakistan and India, but an internationally recognised dispute", a statement by the Pakistan Prime Minister's Office said.
Summary:
India's drugs regulator has ordered Johnson & Johnson (J&J) to stop manufacturing Baby Powder using talc raw materials from two of its Indian factories till further directions.
Summary:
The 23 richest Indians in the 500-member Bloomberg Billionaires Index saw a wealth erosion of $21 billion this year.
Summary:
The albums, titled 'Back Up, Rewind' and 'Have Your Way', were reportedly taken down hours after they appeared online.
Summary:
Ajay will produce the film along with 'Total Dhamaal' director Indra Kumar and 'Grand Masti' producer Ashok Thakeria, as per reports.
Summary:
Deepika added she was able to recover from depression because of "timely professional help" and "support of caregivers".
Summary:
Summary:
Indian women's cricket team captain Harmanpreet Kaur dismissed her compatriot Smriti Mandhana by taking her catch while playing against Mandhana's team in the Women's Big Bash League.
Summary:
The organisers of the Tokyo 2020 Olympic Games unveiled the latest version of the Games' budget on Friday.
Summary:
Gigi Becali, owner of Romanian club Steaua Bucharest, believes it is 'against human nature' and 'dangerous' for women to play football and that he would 'quit' football if forced to create a women's team.
"She isn't built for playing football.
Summary:
Sandeep Lamichhane, who is the first Nepalese cricketer to take part in Australia's Big Bash League, took two wickets in his very first over in the league.
Summary:
The social media giant's first focus will reportedly be India, the world's largest remittances market as per World Bank.
Summary:
Summary:
Congress leader P Chidambaram on Friday said that the "â¹60,000 crore" Rafale deal cannot go "unchallenged or unexamined".
Summary:
The Bombay High Court has dismissed a petition filed by activist Anand Teltumbde, seeking to quash the FIR lodged against him by Pune Police in connection with the Bhima-Koregaon violence.
Summary:
The deceased, who had bought the mobile phone worth around â¹20,000 from his earnings, feared that his parents would scold him for losing it, a police official said.
Summary:
At least three people were killed and seven were injured when an SUV hit an auto-rickshaw near Bunda village in Jahanganj area of Uttar Pradesh, police said.
Summary:
About 1.09 lakh Anganwadi worker positions are vacant, while 1.18 lakh positions for Anganwadi helpers are unoccupied, MoS for Women and Child Development Virendra Kumar said.
Summary:
The US will send back migrants who cross into the country illegally back to Mexico while their asylum requests are processed.
Summary:
Earth's Northern Hemisphere observes the Winter Solstice, the shortest day and longest night of the year, on December 21.
Summary:
The couple hosted their third wedding reception at Taj Lands End in Mumbai on Thursday night.
Summary:
A video shows photographers addressing actress Priyanka Chopra's husband, American singer Nick Jonas as 'Jijaji' at their third wedding reception held on Thursday.
Summary:
Banned Australian cricketer Steve Smith has revealed that when ball-tampering was being plotted in the dressing room during the Test against South Africa at Cape Town in March, he walked away and said he didn't want to know about it.
Summary:
A day after allowing BJP to hold three 'yatras' in West Bengal, a division bench of the Calcutta High Court on Friday took back its order after the state government challenged the court's decision.
Summary:
Amid uproar by the Opposition over the Home Ministry authorising 10 agencies to access and decrypt any information in any computer, Finance Minister Arun Jaitley said the government just repeated authorisation of the order that has been existing since 2009.
Summary:
The Delhi High Court on Friday ordered the immediate release of former Youth Congress President Sushil Sharma, convicted for killing and burning his wife in a tandoor in 1995.
Summary:
A one-week-old girl succumbed to her injuries today after suffering lung injuries in the fire at ESIC Kamgar Hospital in Andheri, taking the death toll to 11.
Summary:
After an astrologer told a Jharkhand couple their newborn boy would bring them bad luck, they approached the Child Welfare Committee to exchange him for a girl.
Summary:
Seven labourers working on the Char Dham all-weather highway development project were crushed to death following a landslide on the Kedarnath roadway in Uttarakhand's Rudraprayag district, said Rudraprayag District Magistrate Mangesh Ghildiyal.
Summary:
Special CBI Judge SJ Sharma, while acquitting all 22 accused in the Sohrabuddin Sheikh encounter case, said he was helpless due to lack of evidence.
Summary:
The court was hearing Associated Journals' petition challenging the October 30 order by the Centre ending its 56-year-old lease.
Summary:
Home Minister Rajnath Singh said Pakistan and Sikh extremist elements based abroad are trying to revive terrorism in Punjab.
Summary:
A German police officer has received a suspended jail sentence of eight months after he was found guilty of sexual assault for removing his condom during sexual intercourse without the consent of his partner, an act known as 'stealthing'.
Summary:
The country's November crude imports fell 11.4% to 17.01 million tonnes, registering their biggest percentage fall since February 2015, when it tumbled 21.3%.
Summary:
Hollywood unions including the Screen Actors Guild-American Federation of Television and Radio Artists (SAG-AFTRA), Actors' Equity, the Directors Guild of America and the Writers Guild of America, East, have come together to fight against sexual harassment.
Summary:
The 37-year-old was filmed 'hugging' two women as he emerged from the club.
Summary:
India's Supreme Court had earlier said these firms were not doing enough to suppress such content.
Summary:
Opposition parties Congress and Nationalist Congress Party on Thursday called Maharashtra government's announcement of â¹200 per quintal ex-gratia to onion farmers a "cruel joke".
Summary:
After RLSP chief Upendra Kushwaha joined the Congress-led Mahagathbandhan in Bihar, Union Minister Nitin Gadkari said Prime Minister Narendra Modi's strength has forced "those who used to avoid each other to hug each other." He added, "The meaning of Mahagathbandhan is politics is a game of compromises...
Summary:
The Netherlands-based Takeaway has agreed to acquire the German operations of rival firm Delivery Hero for around $1 billion in Europe's largest acquisition in online food delivery space till date.
Summary:
A seven-year-old girl was allegedly gangraped and murdered in West Bengal's Bardhaman district on Thursday.
Summary:
Following the acquittal of all 22 accused in the 2005 Sohrabuddin Sheikh encounter case, Gujarat's former DIG DG Vanzara said if Sheikh hadn't been killed, he would have murdered then Gujarat CM Narendra Modi.
Summary:
According to a study conducted by Central Pollution Control Board, high level of heavy metals were found in urine samples of patients due to exposure to firecrackers after Diwali last year.
Summary:
A 30-year-old man from Tamil Nadu has been arrested for allegedly raping and robbing a 48-year-old British woman near Palolem beach, Goa. The accused was nabbed based on the description given by the woman and CCTV footage from a railway station.
Summary:
Congress President Rahul Gandhi played chess with differently abled children at the Institute for Children with Special Abilities (ICSA) in Shimla.
Summary:
At least eight demonstrators were killed in Sudan on Thursday during protests against the rising prices of bread.
Summary:
Flipkart Co-founder Sachin Bansal, along with investment banker and IIT Delhi batchmate Ankit Agarwal, has registered his new company, BAC Acquisitions Private Limited.
Summary:
Additionally, a person is allowed to bring only two bottles from abroad at a time.
Summary:
Naseeruddin Shah, while defending himself over his comments on cow vigilantism in India, said, "What did I say this time that I'm being termed as a traitor?
Summary:
Apichet was explaining to children what they can do if a snake wraps itself around them.
Summary:
Defending India captain Virat Kohli's on-field aggression, ex-Pakistan pacer Shoaib Akhtar said Virat Kohli shouldn't be criticised for it.
"[Kohli] is one of the modern greats of the game.
Summary:
After being issued a bailable warrant for not appearing before a Delhi court despite repeated summons in a real estate fraud case, Gautam Gambhir said he was merely a brand ambassador of the accused company.
Summary:
Twenty-year-old batsman Anmolpreet, who plays for Punjab in Ranji Trophy, was bought for â¹80 lakh, while 18-year-old wicketkeeper-batsman Prabhsimran fetched â¹4.8 crore.
Summary:
The Delhi High Court on Friday dismissed former Congress leader Sajjan Kumar's plea seeking time till January 30 to surrender after being sentenced to life imprisonment in a 1984 anti-Sikh riots case.
Summary:
Michel is among the three alleged middlemen being probed in connection with the â¹3,600-crore chopper scam.
Summary:
The government can direct any agency in the interest of the sovereignty, defence of India and security of the state among others.
Summary:
US President Donald Trump is planning to withdraw over 5,000 of the 14,000 American troops in Afghanistan, according to a US official.
Summary:
Danish lawmakers have approved a government-backed proposal to make citizenship applicants shake hands with the official conducting the naturalisation ceremony.
Summary:
The United Forum of Bank Unions also called a strike on December 26.
Summary:
Summary:
Later, in her complaint, she details the assault and remembers the brand of whiskey poured down her throat," said Goburdhun.
Summary:
On the occasion of Govinda's 55th birthday on Friday, Ranveer Singh shared a picture with him and wrote, "Hero No. 1." Ranveer had earlier said that he's a "huge" Govinda fan.
Summary:
A video shows Priyanka Chopra and Deepika Padukone dancing to song 'Pinga' from their 2015 film 'Bajirao Mastani' at Priyanka and Nick Jonas' wedding reception in Mumbai.
Summary:
Brisbane Heat's 17-year-old Afghan spinner Mujeeb Ur Rahman set the record for most runs scored by a number 11 in a T20 after hitting 27(22) on his Big Bash League (BBL) debut.
Summary:
Former world number one Spanish tennis player Rafael Nadal has donated â¬1 million to the victims of floods in his native Mallorca.
Summary:
Minister of Road Transport and Highways Nitin Gadkari on being questioned about him being the Prime Ministerial candidate in 2019 elections said that there is no such probability.
Summary:
Summary:
Shiv Sena on Thursday criticised BJP over the Ram temple issue, questioning when will "acche din (good days)" come for Lord Ram. In its mouthpiece 'Saamana', Shiv Sena further said that the construction of Ram temple in Ayodhya has become another "jumla (rhetoric)" for BJP.
Summary:
This comes amid reports of farmers selling onions at â¹1.5 per kg.
Summary:
Summary:
The Directorate of Revenue Intelligence arrested an Afghan and a Singaporean national in two separate incidents at Delhi and Bengaluru airport for trying to smuggle foreign currency out of India.
Summary:
The couple had been staying with the deceased's relative since their marriage.
Summary:
The Army was deployed at the UK's second-biggest airport, the Gatwick Airport in London, after drones caused the airport to shut down for more than a day.
Summary:
Myntra will host End Of Reason Sale (EORS) from December 22 to December 25.
Myntra is also offering VIP passes for early access to the sale.
Summary:
The special CBI judge observed in his order that all the witnesses and proofs are not satisfactory to prove conspiracy and murder.
Summary:
US Defence Secretary James Mattis on Thursday resigned, a day after President Donald Trump decided to pull all US troops out of Syria saying ISIS has been defeated there.
Summary:
The Indian Express said 'Zero' "fails...at giving us anything we can believe in." It has been rated 3.5/5 (HT), 3/5 (TOI) and 1/5 (The Indian Express).
Summary:
The reception will be attended by Bollywood celebrities.
Summary:
"People outside can say what they want," the pacer further said.
Summary:
Australian cricketer Steve Smith, who is serving a one-year ban over his involvement in a ball-tampering scandal, has said there have been some "dark days" when he didn't want to get out of bed.
Summary:
A German court has ruled that Apple infringed a hardware patent of Qualcomm and said it could no longer sell some iPhone models in Germany.
Summary:
Congress President Rahul Gandhi, his sister Priyanka Gandhi Vadra and her children are holidaying in Shimla, a local Congress leader said.
Summary:
Bhagat had been expelled by the BJP for "anti-party activities" after he challenged the dissolution of the J&K nassembly in the Supreme Court.
Summary:
Summary:
A user can pick from multiple fart sounds, including Not a Fart (a reference to Not a Flamethrower), Short Shorts Ripper (referring to Tesla short sellers), and Neurastink.
Summary:
When Sahni reached the spot, the baby boy was found tangled between his mother's legs, with the umbilical cord still attached.
Summary:
Indian Railways' fastest train, Train 18, was pelted with stones on Thursday during a trial run between Delhi and Agra.
Summary:
Ansari was arrested in Pakistan in 2012 for illegally entering the country from Afghanistan to meet the woman he befriended online.
Summary:
US President Donald Trump on Thursday said that Russia, Iran, Syria and others will have to fight ISIS without the US, following his decision to withdraw American troops from Syria.
Summary:
Twitter has suspended a few fake accounts which gave positive and negative reviews of Shah Rukh Khan's film 'Zero' and also leaked stills and short clips from the film which released on Friday.
Summary:
In a note shared on social media, Anushka Sharma revealed that her 'Zero' co-star Shah Rukh Khan is the "most giving actor" she has worked with.
Summary:
The Kardashian-Jenner sisters in a joint statement announced that they will stop updating their personal apps in 2019.
Summary:
The record was previously held by the 2015 film 'Straight Outta Compton', which earned over $200 million globally.
Summary:
Priyanka wore a statement Victorian necklace in rose cut and fine cut diamonds from the Sabyasachi Heritage Jewelry collection.
Summary:
Tamil Nadu spinner Varun Chakravarthy, who was IPL 2019 auction's joint-most expensive buy at â¹8.4 crore, has revealed Kings XI Punjab captain Ravichandran Ashwin called him from Australia to welcome him to the team.
"The moment I was hugging my father, Ashwin called...and said, 'Welcome to KXIP.
Summary:
Apple claimed the cooling process during manufacturing resulted in the bent frames.
Summary:
âÂÂYouâÂÂre seeing deaths of only Sumit and a police officer...not the deaths of 21 cows,â he said.
Summary:
CESU was already fined â¹1 crore in October over the death of elephants.
Summary:
A 24-year-old woman on Thursday said officials conducting the National Eligibility Test in Goa didn't let her appear for the examination after she refused to take off her hijab.
Summary:
OnePlus 6T has been named as the 'Smartphone of the year 2018' by Marques Brownlee in his famous annual 'Smartphone Awards'.
Summary:
A woman named Emily Cochran solved a case when she matched with a thief who stole a crate of sparkling water and also the theft's victim on Tinder.
Summary:
A former NASA engineer has made a 'glitter bomb trap' to trick thieves after some parcels were stolen from his doorstep.
Summary:
Actress Amber Heard has revealed she received death threats after she spoke up about the alleged domestic violenceâ by her ex-husband Johnny Depp.
Summary:
Ex-Indian men's cricket team opener WV Raman has been appointed as the coach of the Indian women's cricket team despite India's 2011 men's World Cup-winning coach Gary Kirsten being the first choice.
Summary:
The customer asked for recordings of his activities but was also able to access recordings from a stranger when Amazon sent him a link.
Summary:
After PM Narendra Modi announced plans of placing 99% goods below 18% GST slab, Congress President Rahul Gandhi tweeted, "Congress Party has finally jolted Narendra Ji from his deep slumber on Gabbar Singh Tax." "Though still drowsy, he now wants to implement what he had earlier called Congress Party's, 'Grand Stupid Thought'.
Summary:
Responding to Pakistan PM Imran Khan's statement on the death of civilians in Kashmir, India on Thursday said that Pakistan should "mind (its) own business and look at their internal affairs which are quite a mess in their own country".
Summary:
After External Affairs Minister Sushma Swaraj revealed the ministry is in process of transferring Jinnah House in Mumbai to its name, Pakistan's Foreign Office asserted, "We have a claim over [the house] and we don't accept that anyone tries to take custody of it." "They (Indians) have already accepted it belongs to Pakistan.
Summary:
J&K Governor Satya Pal Malik said he considers upper-class people in India, who don't "have any sensitivity towards society" or do charity, as "sade se aloo (rotten potatoes)".
Summary:
A Nepal court has sentenced a 27-year-old man convicted of the rape and murder of a 10-year-old girl, to life imprisonment.
Summary:
A 20-year-old Taiwanese restaurant worker named Lin Chin-hsiang, who fell asleep in his Mitsubishi car and crashed it into three Ferraris, is being helped by many strangers to pay the nearly â¹2.8 crore repairs bill.
Summary:
Three people onboard a helicopter were killed in New Zealand after a pair of trousers flew from the cabin and got wrapped around the helicopter's tail rotor, resulting in a crash.
Summary:
"ItâÂÂs the title track of the film...I think that it is my careerâÂÂs biggest song," the director said.
Summary:
While speaking about his relationship with his children, 34-year-old actor Ayushmann Khurrana said it's good to be a young father.
Summary:
While speaking about mental health and depression, actress Katrina Kaif said, "There may be times when you are completely consumed by your emotions." "It's not a factual situation.
Summary:
Marvel Studios' upcoming film 'Captain Marvel' has been named the most anticipated film of 2019 by the global film and TV website IMDb. Marvel's 'Avengers: End Game' was second on the list, followed by Sophie Turner starrer 'Dark Phoenix'.
Summary:
The first trailer for the upcoming film 'Men in Black: International', the fourth film in the 'Men in Black' franchise released on Thursday.
Gary Gray, the film will hit theatres on June 14, next year.
Summary:
Weinstein, who denied all allegations of non-consensual sex, has been accused of rape and sexual assault by multiple women.
Summary:
All-rounder Jayant Yadav has been traded from Delhi Capitals to Mumbai Indians ahead of Indian Premier League 2019.
Summary:
The lawsuit alleges the social media giant allowed the British firm to exploit data of around 70 million users to influence the 2016 US elections.
Summary:
Researchers at University of Cambridge have created a 3D-printed robotic hand which can play simple musical phrases on the piano.
Summary:
Narayanan, a Harvard University alumnus, had previously worked as the India Managing Director for music-streaming platform Saavn and Google India head of its mobile ads business.
Summary:
The data reportedly included users' dating profiles and healthcare information and was collected via FacebookâÂÂs Software Development Kit that lets users log in to third-party apps with Facebook.
Summary:
Alphabet incubated energy spinoff Malta has raised $26 million in Series A funding round led by fund Breakthrough Energy Ventures, which is backed by Jeff Bezos and Bill Gates.
Summary:
NASA announced that its $993-million InSight lander has placed its first instrument, a seismometer, on Mars on Wednesday to study quakes on the planet.
Summary:
Dia Mirza, while sharing a tweet by Akshay Kumar on the recent meeting of Bollywood personalities with PM Narendra Modi over issues concerning film industry, questioned why there were no women in the meeting.
Summary:
Two research students and a foreign scholar accused at least five IIT-R professors of harassment recently, police said on Wednesday.
Summary:
Former Australia captain Allan Border has defended India captain Virat Kohli's aggression, saying cricket needs characters like the Indian skipper who exude passion on the field.
Summary:
All-rounder Yuvraj Singh, who was bought by Mumbai Indians for his base price of â¹1 crore after going unsold in the first round of IPL 2019 auction, said he is not playing for the sake of playing.
There is fire in the belly, I am keen to be competitive.
Summary:
Former Congress leader Sajjan Kumar, convicted by the Delhi High Court in the 1984 anti-Sikh riots case, has sought for 30 more days to surrender, stating, "I need time to settle my children and grandchildren.
Summary:
Summary:
Days after quitting the NDA government over seat allocation for Lok Sabha elections, former Union Minister Upendra Kushwaha-led Rashtriya Lok Samata Party on Thursday joined Congress' Mahagathbandhan in Bihar.
I was humiliated in NDA," said Kushwaha.
Summary:
Bowen and Monsees own stakes of $1.36 billion each in Juul, now more valuable than Elon Musk's SpaceX.
Summary:
Scientists have discovered remains of a new species of snake from the stomach of a snake specimen recovered in Mexico in 1976.
Summary:
Engineer Hamid Ansari, who reached his Mumbai residence on Thursday said he learnt three lessons from the last six years in Pakistan.
Summary:
Harsh Vardhan Shringla, presently India's High Commissioner to Bangladesh, has been appointed as the new Indian Ambassador to the US.
Summary:
A 48-year-old British tourist was allegedly raped on Thursday near Palolem beach in Goa by an unidentified man, who later ran away with her belongings.
Summary:
The Islamic State has killed more than 700 prisoners in eastern Syria, the Syrian Observatory for Human Rights said.
Summary:
Former US President Barack Obama paid a surprise visit to a children's hospital in US' capital Washington dressed as Santa Claus on Wednesday.
Summary:
Following US President Donald Trump's claim that the Islamic State has been defeated in Syria, France has said that the militant group "has not been wiped from the map (in Syria) nor has its roots".
Summary:
The US doesn't want to be the "policeman of the Middle East", US President Donald Trump said on Thursday following his decision to withdraw all American troops from Syria.
Summary:
Fashion retailer Zara has been mocked on social media for showing models in poses that included a model wearing a coat backwards on its website.
Summary:
China's Shanghai RAAS Blood Products, which manufactures and develops human blood products, has lost $9.2 billion in value in just 10 days.
Summary:
Infosys announced the appointment of Nilanjan Roy as its Chief Financial Officer (CFO) 1 hour and 8 minutes after Airtel said he resigned as its Global CFO.
Summary:
While speaking about the film industry, Hindi dialogue writer for 'Bahubali' Manoj Muntashir said, "The film industry is a market and every market has its own set of rules." "The limelight is focused on the most selling commodities," Manoj further said.
Summary:
While talking about the potential of web series, actor Emraan Hashmi said that stories that were previously considered "artsy" are no longer left behind due to these digital platforms.
Summary:
An Indian fan tried to troll ex-Australia pacer Mitchell Johnson by calling him "silly unsold" on Twitter, thinking the bowler had gone unsold in the IPL 2019 auction.
Summary:
TikTok parent ByteDance has sued a Chinese news site for alleged defamation after it published an article accusing its Indian-language news app Helo of spreading fake news.
Summary:
Android Co-founder Andy Rubin backed AI-powered smart security camera startup Lighthouse has shut down its operations.
Summary:
The startup had raised $12 million (around â¹83 crore) of the round in October, led by Chinese conglomerate Fosun International's venture capital arm Fosun RZ Capital.
Summary:
Mumbai-based social commerce startup Shop101 has raised â¹80 crore (over $11 million) in a Series B funding round led by Kalaari Capital and Unilever Ventures.
Existing investors including Stellaris Venture Partners and Vy Capital also participated in the round.
Summary:
The French government agreed to give a â¬300-bonus to police officers following the strikes.
Summary:
"The man stopped his car whenever I stopped my car to make calls...and even made hand gestures," said Bindra.
Summary:
Actor Naseeruddin Shah said he's worried about his children as a cow's death is more significant than that of a police officer in the country.
Summary:
Ex-India captain Sourav Ganguly has said he had thought of sending a text to captain Virat Kohli to tell him India shouldn't give so many wickets to spinners like Nathan Lyon outside the subcontinent.
Summary:
Australian cricketer Steve Smith, who is currently serving a one-year ban from international and Australian domestic cricket for his involvement in ball-tampering, has been barred from the upcoming edition of the Bangladesh Premier League (BPL).
Summary:
After the TMC-led West Bengal government denied permission to BJP for rath yatra, the Calcutta High Court has allowed BJP to hold three rallies in the state.
Summary:
After the Delhi government cleared Metro Phase IV project, the Aam Aadmi Party asked state BJP President Manoj Tiwari to fulfill his promise of donating â¹1.11 lakh.
Summary:
Gujarat topped the first-ever state-wise rankings for providing a strong ecosystem to startups released by the Department of Industrial Policy and Promotion (DIPP) on Thursday.
Summary:
An SIT investigation into the murder of Apple executive Vivek Tiwari has revealed his SUV was moving at a slow speed when intercepted by two constables.
The accused constable had claimed he fired after Tiwari hit his motorcycle.
Summary:
Karnataka Police has said 15 bottles of pesticides were added to the temple prasad by a priest in Chamarajanagar that killed 15 devotees and hospitalised around 120 people.
Summary:
A man who was stopped by Gurugram traffic police on Wednesday for driving on the wrong side, said, "Chacha hain mere police mein...SHO se baat karwa deta hoon...jo karna hai kar lo." The man also attempted to drive off, hitting and dragging a policeman on his carâÂÂs bonnet.
Summary:
It imposed a â¹5-lakh fine on Al Rehman Trust, saying the petition's aim was to "waste court's time".
Summary:
The festival was organised following reports of sexual offences against women at other events in the country last year.
Summary:
The government has sought Parliament's approval for an equity infusion of â¹2,300 crore in Air India after a failed attempt to sell the state-owned carrier.
Summary:
Reliance Industries Chairman Mukesh Ambani on Wednesday said that "data colonisation" is as bad as previous forms of colonisation and India's data must be controlled and owned by Indians.
Summary:
Paytm Payments Bank also violated the end-of-the-day â¹1 lakh limit per account, RBI added.
Summary:
The court had previously dismissed a lawsuit filed by Bothra against Rajinikanth.
Summary:
Summary:
After President's rule was imposed in J&K, former CM Omar Abdullah asked PM Narendra Modi to ensure Assembly polls are held within the stipulated six months following dissolution of the House.
Summary:
These words were being wrongly labelled and that is why the dirty game came about."
Summary:
Bengaluru-based car-rental startup Zoomcar has said it will temporarily discontinue its cycle-sharing service PEDL by December 21.
the problem was the hardware, availability of the vehicles, and their quality," Zoomcar CEO Greg Moran reportedly said.
Summary:
The three-member crew of the Soyuz MS-09 spacecraft successfully landed on Earth on Thursday from the International Space Station (ISS) after orbiting Earth for 197 days.
Summary:
Tej, who recently filed for divorce from his wife, had earlier said he wanted a separate government residence to focus on his fight against BJP.
Summary:
The newly elected Congress-led Chhattisgarh government on Wednesday replaced Director General of Police (DGP) AN Upadhyay with DMâÂÂAwasthi.
Summary:
The accused, who threatened to push her off the terrace if she told anyone, fled the scene.
Summary:
Relotius "made up stories and invented protagonists" in at least 14 out of 60 articles he wrote for Der Spiegel, the German magazine said.
Summary:
Russia has praised US President Donald Trump's decision to pull out the American troops from Syria, saying the move "creates good prospects for a political solution" in the war-torn country.
Summary:
The authorities said that at least 5,050 people have lost their lives since the drug war began after Duterte became the President in 2016.
Summary:
Bengaluru-based food delivery startup Swiggy on Thursday raised $1 billion in a funding round led by Naspers in the largest-ever investment in a food delivery company outside of China.
Summary:
With additional premium, customers can insure themselves against critical illnesses, disability and even accidental death under this plan up to 80 years.
Summary:
Around 51% believe that corporate frauds have decreased, while 20% feel there has been no change.
Summary:
A picture of actress Rachel McAdams wearing breast pumps for 'Girls.Girls.Girls.' magazine shoot, to break the taboo around breastfeeding, has gone viral.
Summary:
A video of a man dragging a traffic policeman on the bonnet of his car in an attempt to escape, after he was signalled to stop for driving on the wrong side, has surfaced online.
Summary:
After singer Sona Mohapatra criticised Sonu Nigam for supporting Anu Malik amid #MeToo allegations and his comments on Pakistani singers, Sonu said, "The respectable lady vomiting on Twitter, is the wife of someone...I consider very close to me." "Although she has forgotten the relationship, I'd like to maintain...decorum," he added.
Summary:
India's 1983 World Cup-winning captain Kapil Dev has said that MS Dhoni is the greatest cricketer India has ever produced.
Dhoni is the only cricketer to win all the three ICC tournaments as captain.
Summary:
Gambhir was brand ambassador of a housing project, which didn't take off despite buyers paying to book flats in 2011.
Summary:
The startup, which also has offices in Singapore, India and US, will be firing all of its employees.
Summary:
A Delhi court has granted interim bail to RJD chief Lalu Prasad Yadav in two cases filed by the CBI and Enforcement Directorate in connection with the alleged IRCTC hotel scam.
Summary:
A report submitted by a Special Investigation Team (SIT) has claimed that Uttar Pradesh Police constable Prashant Chaudhary shot dead Apple executive Vivek Tiwari "without any provocation".
Summary:
"Our heart goes out to his family at this tragic time," a spokesperson for Genpact said.
Summary:
Uttar Pradesh CM Yogi Adityanath on Wednesday said that the Bulandshahr violence earlier this month in which a policeman and youth were killed, was a "political conspiracy (hatched) by those who have lost political ground".
Summary:
In a letter to MLA Mangal Prabhat Lodha, External Affairs Minister Sushma Swaraj revealed the ministry is in the process of transferring Jinnah House in Mumbai to its name.
Summary:
Tamil Nadu farmers mimicked hanging themselves from electricity transmission towers on Wednesday, objecting to an electricity project by Power Grid Corporation of India Limited and Tamil Nadu Transmission Corporation Limited.
Summary:
The corridor will be built by the National Highways Authority of India.
Summary:
The two accused had overpowered the victim on her two-wheeler and forced her to sit between them after which they drove the vehicle to Poiya ghat.
Summary:
Russell Horning, also known as Backpack Kid, has sued Epic Games alleging they breached his copyright for including his signature dance move "flossing" in their game Fortnite.
Summary:
Referring to Salman Khan-starrer Tiger Zinda Hai while addressing people from his constituency Budhni, former MP CM Shivraj Singh Chouhan said, "I'm still here.
Summary:
RJD leader Tejashwi Yadav on Thursday hinted at the possibility of Rashtriya Lok Samata Party (RLSP) joining the grand alliance, saying, "If (RLSP chief) Upendra Kushwaha ji wants good for country, we've invited him." "Things will be clear by evening, you'll get to know," Yadav added.
Summary:
West Bengal Chief Minister Mamata Banerjee on Wednesday expanded the state Cabinet and inducted four new MLAs. The MLAs are Bidhan Nagar MLA Sujit Bose, Uluberia MLA Dr Nirmal Maji, Baranagar MLA Tapas Roy and Chakdah MLA Ratna Ghosh.
Summary:
BJP chief Amit Shah on Wednesday said he is confident his party will forge an alliance with the Shiv Sena for the General Elections and Maharashtra Assembly elections due next year.
Summary:
A 15-year-old girl succumbed to burn injuries at the Safdarjung Hospital in Delhi on Thursday, two days after she was allegedly set ablaze by two unidentified men in Agra.
Summary:
The Phase-IV project will cost over â¹45,000 crore.
Summary:
Kumar was on Monday convicted and sentenced to life imprisonment in another riots case.
Summary:
The White House has said that the US troops were stationed in Syria to defeat the Islamic State militant group and not to help end the 7-year civil war in the country.
Summary:
UK's Opposition and Labour Party leader Jeremy Corbyn purportedly called Prime Minister Theresa May a "stupid woman" during a Parliament debate.
Summary:
Master Deep Learning from modules designed and lectured by IIT-Bombay faculty.
Summary:
Bengal's 16-year-old leg-spinner Prayas Ray Barman became the youngest crorepati in IPL after being bought by RCB for â¹1.5 crore on Tuesday.
Summary:
A 28-year-old Bengaluru-based engineer working with Wipro, Vikram Vijayan, died on Monday night after he came under a moving train at the Carmelaram railway station.
Summary:
OnePlus 6T supports the Google Lens functionality natively in its camera app, a feature usually available only in phones that run stock Android.
Summary:
While promoting her latest film 'Zero' with Shah Rukh Khan and Anushka Sharma, Katrina Kaif said, "Honestly...in the last 10 years, minimum, nobody has asked me out on a date." Reacting to it Shah Rukh said, "I feel sad.
Summary:
Former Indian cricket team captain Sunil Gavaskar has said that the utility of Virat Kohli and Ravi Shastri as captain and coach must be assessed if India fail to win the next two Tests against Australia.
Summary:
Prayas Ray Barman, the youngest crorepati in IPL aged 16, has said he always had a dream to click a photo with Virat Kohli.
Barman was bought by RCB for â¹1.5 crore on Tuesday.
Summary:
India's 2011 World Cup-winning coach Gary Kirsten, ex-South Africa cricketer Herschelle Gibbs and Ramesh Powar are among the shortlisted candidates, who will appear for interviews for the post of Indian women's cricket team coach on Thursday.
Summary:
He was taken into custody hours later under NSA.
Summary:
The Delhi High Court on Wednesday acquitted a man, 10 months after his death, in a case of alleged rape of his minor daughter.
At this distance in time, this court can only deplore the inaction," the High Court said.
Summary:
A case has been filed in Bihar against Madhya Pradesh CM Kamal Nath for his remark on migrants from Uttar Pradesh and Bihar.
Summary:
Religare Finvest, a subsidiary of Religare Enterprises, has filed a criminal complaint with Delhi Police against Malvinder Singh, Shivinder Singh and their associates for allegedly siphoning and misappropriating â¹740 crore.
Summary:
The police will now file an application with Bombay High Court to cancel Bhojwani's bail.
Summary:
US rapper Lil Pump has been criticised for posting on Instagram a video of a song that contains racially-offensive lyrics and gestures towards the Chinese people.
Summary:
In his petition, Dileep claimed the police had conducted an "unfair" and "biased" investigation in the case.
Summary:
While speaking about actress Kareena Kapoor Khan, Swara Bhasker said, "She (Kareena) is an inspiration for the working girls." "She has proved that one can have a successful career along with enjoying their personal life," Swara added.
Summary:
The BJP has made a clean sweep in the recently held Haryana Municipal Corporation elections, winning all five mayoral seats.
Summary:
After DMK chief MK Stalin proposed that Congress President Rahul Gandhi be projected as the 2019 PM candidate, West Bengal CM Mamata Banerjee said, "It could be discussed only after the 2019 Lok Sabha elections, once the opposition alliance emerged winners." She added, "All (opposition) parties will meet and decide on the issue.
Summary:
Claiming the Supreme Court was misled by the government, Congress MP Anand Sharma said, "It's up to the SC to correct the situation by recalling the self-contradictory verdict." He added, "The government...insulted it with a curative petition saying the court had misinterpreted (the information it submitted)".
Summary:
A NASA-backed study by researchers from US' Johns Hopkins University has found the presence of oxygen in a planetâÂÂs atmosphere is not necessarily an indicator of life.
Summary:
Two teachers were injured when unidentified assailants allegedly opened fire at a private school in Cooch Behar, West Bengal on Wednesday.
Summary:
A Hyderabad man has been booked for divorcing his wife by way of triple talaq during a phone call.
Summary:
Women will hold 32 of the 63 seats in the state's legislature, with over 22 women in the state Assembly and nine women in the state Senate.
Summary:
US President Donald Trump on Wednesday said Mexico is indirectly paying for his proposed border wall through the new US-Mexico-Canada Agreement (USMCA).
Summary:
IDFC Bank Founder, MD and CEO Rajiv Lall will serve as Part-Time Chairman of IDFC First Bank.n
Summary:
Finance Minister Arun Jaitley on Tuesday said while enjoying functional autonomy, a regulator cannot be "isolationist" and has to consult all stakeholders.
Summary:
Economic Affairs Secretary Subhash Chandra Garg on Wednesday said the government will seek interim dividend from the Reserve Bank of India (RBI).
Summary:
To waive these farm loans, the state government will bear a burden of â¹18,000 crore.
Summary:
US President Donald Trump has ordered the withdrawal of US troops from Syria, according to an official.
Summary:
A newly discovered blind and burrowing amphibian is to be officially named 'Dermophis donaldtrumpi', after US President Donald Trump.
Summary:
A viral video shows Pakistani journalist Amin Hafeez sitting on a donkey while reporting about the country's growing donkey population and interviewing donkey owners at a donkey hospital in Lahore.
Summary:
"When I used to hear my songs, I wanted it to pass quickly," he said.
Summary:
The reception at JW Marriott is being held for Priyanka and Nick's extended family and friends as well as the media.
Summary:
Former Australia fast bowler Mitchell Johnson described Team India captain Virat Kohli's behaviour as "disrespectful" and "silly" during the second Test against Australia at Perth.
Summary:
Australia spinner Nathan Lyon has revealed Australian cricketers present a gold blazer in memory of late Phil Hughes to their best performer after a Test.
Summary:
Mumbai Indians' Director of Cricket Operations, Zaheer Khan, has said Virat Kohli should stick to his aggression.
It doesn't matter what others are saying (about Kohli)," the former India pacer said.
Summary:
Summary:
Rajasthan, Madhya Pradesh & Chhattisgarh have waived farm loans.
We did it in 2." While Rajasthan CM Ashok Gehlot announced farm loan waivers two days after assuming post, Madhya Pradesh CM Kamal Nath announced it two hours after taking oath.
Summary:
A Tesla Model S electric car reportedly caught fire in California after being towed to a garage due to a flat tire.
Summary:
The Surrogacy (Regulation) Bill, 2016 passed in Lok Sabha allows only altruistic surrogacy by infertile Indian couples, married for at least five years.
Summary:
Reportedly, an electric box in the hospital premises caught fire.
Summary:
The Uttar Pradesh Police have said four men, Sarfuddin, Sajid Ali, Nanhe and Asif, who were arrested on December 5 in connection with Bulandshahr violence are innocent and will be released soon.
Summary:
TRAI has assured viewers they won't have to pay more for television channels under the new regulation.
Summary:
Unilever, the Anglo-Dutch maker of Dove soap and Knorr soup has agreed to buy 'The Vegetarian Butcher', a Dutch producer of plant-based meat replacements.
Summary:
Producer Prernaa Arora, who was arrested for allegedly cheating producer Vashu Bhagnani of â¹32 crore, told Mumbai Police that she could not repay investors as her production firm was suffering losses.
Summary:
Actors R Madhavan and Abhay Deol will have cameos in the upcoming film 'Zero', starring Shah Rukh Khan, as per reports.
Summary:
All-rounder Shivam Dube, who has been bought by RCB for â¹5 crore, said, "Virat sir is one of the legends right now.
Summary:
US-based indoor sports training startup Zwift has raised $120 million in a Series B funding round led by Highland Europe, to aid expansion in esports.
Summary:
Facebook reportedly gave tech giants like Microsoft, Yahoo and Amazon access to user data through partnerships with them that exempted them from privacy restrictions.
Summary:
Google on Monday announced it added a feature to its AI-based Assistant which predicts flight delays.
Summary:
Yemen's Shaima Swileh has been granted a US visa to meet her dying two-year-old son, the Council on American-Islamic Relations said.
Summary:
These centres enable MSMEs to access advanced manufacturing technologies, skilled manpower and provide technical and business advisory support.
Summary:
RBI has already injected â¹20,000 crore through two Open Market Operation (OMO) purchases.
Summary:
The state was under the Governor's rule since June 20, when BJP withdrew its support to PDP leading to the fall of Mehbooba Mufti-led government.
Summary:
Saqib Saleem has revealed he was depressed after people made fun of his acting in 'Race 3'.
However, Saqib further said he had a great experience working in the film.
Summary:
Filmmaker Rohit Shetty has said Sara Ali Khan wasn't approached for his directorial 'Simmba', but it was the actress who had approached him herself.
Speaking about this, Sara said, "I messaged Rohit sir thrice and he responded on the third message.
Summary:
Brisbane Heat's James Pattinson was declared out by the third umpire despite appearing to be in his crease in the first Big Bash League 8 match against Adelaide Strikers on Wednesday.
Summary:
After buying all-rounder Yuvraj Singh at his base price of â¹1 crore in the IPL 2019 auction, Mumbai Indians owner Akash Ambani said that they are not saving Yuvraj Singh's career.
"We always wanted Yuvraj.
Summary:
After Centre sought correction in the Supreme Court's verdict on Rafale deal citing a typing error, Congress leader Mallikarjun Kharge said, "Had it been one word it would've been understandable, entire paragraph can't be a typo." Kharge also sought Joint Parliamentary Committee on the deal.
Summary:
While unveiling the first tunnel of his The Boring Company in Los Angeles, billionaire Elon Musk on Tuesday said that he spent $40 million of his own funds on the SpaceX subsidiary hoping the venture would eventually pay off.
Summary:
Sikh body 'Sikh Coalition' called out e-commerce company Amazon accusing that doormats, rugs and toilet seat covers with the image of the Golden Temple were being sold on the platform.
Summary:
A video has surfaced online, showing a phenomenon called 'fish rain' in Andhra Pradesh's Amalapuram after cyclone Phethai on Monday.
Summary:
Rajesh Yadav, a 25-year-old man who lost his two-month-old daughter in Mumbai's ESIC Hospital fire, covered her body with a doormat outside the morgue on Tuesday.
Summary:
Sidhu reached the hospital's smoke-filled fourth floor with a ladder and safely brought 10 people out.
Summary:
The bill allows 'altruistic' surrogacy, which involves an arrangement where the couple does not pay the surrogate mother any compensation other than the medical and insurance expenses related to the pregnancy.
Summary:
The Federal Commission on School Safety panel established by US President Donald Trump in the aftermath of the mass shooting at a Florida school earlier this year has recommended arming school staff.
Summary:
Iran may use part of the deposits for purchasing essential goods from India.
Summary:
Johnson & Johnson (J&J) has said that Indian drug regulators visited some of its facilities and took samples of its talcum powder.
Summary:
India will need 2,300 airplanes worth $320 billion over the next 20 years, US aircraft maker Boeing said on Wednesday.
Summary:
"My best wishes are always with Isha and her husband Anand,â Lata added.
Summary:
'Manikarnika: The Queen of Jhansi' producer Kamal Jain said that the film, starring Kangana Ranaut, is "looking much bigger and larger" than the fantasy-drama film series 'Bahubali'.
Summary:
Gurugram-based grocery delivery startup Milkbasket has raised $7 million in an extended Series A funding round led by US-based venture capital firm Mayfield Fund.
Summary:
Jamaat-ud-Dawa chief and 26/11 Mumbai attacks mastermind Hafiz Saeed has written a column for a Pakistani newspaper on the Kashmir issue and creation of Bangladesh.
Summary:
The Punjab government had banned kite-flying in 2007 following a rise in deaths caused by sharp threads used for flying kites.
Summary:
South Africa has banned an advertisement for restaurant chain Chicken Licken that shows a black man 'discovering' a foreign land and naming it Europe, saying colonisation is "not open for humorous exploitation".
Summary:
Luxury brand Dior has faced criticism for using an animated character, developed through computer-generated imagery (CGI), as a model for its latest beauty campaign.
Summary:
Indian benchmark index Sensex on Wednesday gained for the seventh straight session, marking its longest winning streak since July.
Summary:
GSK will have a majority stake of 68% in the business.
Summary:
Shares of Anil Ambani-led Reliance Communications (RCom) on Wednesday plunged as much as 13% following reports that telecom department rejected its proposed spectrum sale to Reliance Jio. This comes after Jio reportedly informed the government it won't be liable for RCom's dues related to airwaves.
Summary:
It is very sad because we all tried our best to make a good film." "That's what we tried to do.
But unfortunately, the film didn't work, people didn't like it.
Summary:
Singer Sonu Nigam has claimed journalists changed his 'I wish I were from Pakistan, at least I'd get work in India' remark.
Summary:
The 47-year-old flipped the bat as Adelaide Strikers' captain Colin Ingram called 'roofs' and won the toss.
Summary:
Ex-India captain Sunil Gavaskar said that 1983 World Cup-winning captain Kapil Dev would've been sold for â¹25 crore in the IPL auction if he was playing.
Summary:
The 45-year-old replaces José Mourinho, who was fired after the club suffered its worst start to a Premier League season.
Summary:
Technology reviewer Marques Brownlee on Tuesday pointed out that Apple Music used an Android device to promote a music album by American singer Ariana Grande.
Summary:
Billionaire entrepreneur Elon Musk on Tuesday unveiled the first underground transportation tunnel dug in Los Angeles by The Boring Company, a subsidiary of his space startup SpaceX.
The over 1.83-km-long tunnel, featuring car elevators, was built for around $10 million, Musk said.
Summary:
An 'angel tax' of 30.9% is levied on funds raised by unlisted companies in excess to 'fair value'.
Summary:
The Indian Space Research Organisation (ISRO) on Wednesday successfully launched its 35th communications satellite GSAT-7A from Sriharikota, Andhra Pradesh.
Summary:
A report by ZDNet has said that an internal memo was sent to all NASA employees where the US space agency admitted to getting hacked in October, almost two months after the breach was discovered.
Summary:
On 19 December, 1927, Ram Prasad Bismil and Ashfaqulla Khan were hanged to death for their involvement in the Kakori train conspiracy where they looted cash belonging to the British treasury.
Summary:
The Madras High Court has passed an order barring political parties from erecting digital banners on roadsides all over Tamil Nadu until further orders.
Summary:
A 14-year-old boy in Hyderabad has been booked for allegedly recording videos and taking pictures of women taking bath in a hostel adjacent to his building.
Summary:
US President Donald Trump on Tuesday issued an order to establish a Space Command to oversee the US military's operations in space.
Summary:
US President Donald Trump's personal charity, the Trump Foundation, would be dissolved amid allegations that he and his three eldest children misused its funds.
Summary:
An American named Rory Benson has been sentenced to 15 months in prison after he pleaded guilty to attacking Indian-origin Sikh taxi driver Swarn Singh with a hammer in Seattle last year.
Summary:
Wong Ching-kit, a 24-year-old man claiming to be cryptocurrency entrepreneur, was arrested for throwing cash worth â¹18 lakh from the top of building in Hong Kong.
Summary:
Actor Vikrant Massey will star opposite Deepika Padukone in filmmaker Meghna Gulzar's upcoming film 'Chhapaak', based on the life of acid attack survivor Laxmi Agarwal.
Summary:
'Lipstick Under My Burkha' filmmaker Alankrita Shrivastava took to Twitter and wrote, "Would be great to have female representation in these delegations.
Summary:
Uber has received approval to resume self-driving car testing on public roads in Pennsylvania, US.
Summary:
Ailing Goa CM Manohar Parrikar is being projected as a "He-Man or Superman" by BJP and is being made to pose in "staged" pictures, Congress has claimed.
Summary:
Speaking on the possibility of Congress forging an alliance with AAP, former Delhi CM Sheila Dikshit on Wednesday said she will accept whatever the party and the high command decide.
Summary:
Summary:
The Supreme Court has sought the Centre's reply on a plea seeking to tackle situations arising out of man-animal conflicts in and around reserved forests.
Summary:
Nearly 5,000 people were convicted in cases of drunk driving in Hyderabad this year and over 1,300 driving licenses were cancelled, a senior traffic police official said on Tuesday.
Summary:
Extending greetings on Goa Liberation Day, CM Manohar Parrikar urged the public to unite to keep the state clean and tidy, and to achieve development in all spheres.
Summary:
Indian drug regulator Central Drugs Standard Control Organization (CDSCO) on Tuesday said a report that Johnson & Johnson (J&J) had known its baby powder has cancer-causing asbestos was "under consideration".
Summary:
OnePlus 5, OnePlus 5T have got the Android Pie update in open beta which means users will be able to experience the almost final version of the OxygenOS based Android 9.0 Pie update.
Summary:
Sona tweeted, "So much sympathy for a millionaire losing work?
Summary:
Mumbai all-rounder Shivam Dube's selling price to base price ratio was the second-highest as he fetched â¹5 crore, 25 times his base price.
Summary:
Karandeep Anand, an Indian-origin senior Facebook executive, has been named the Head of Workplace, the social media giant's communications tool for businesses.
Summary:
Flipkart Co-founder and former Group CEO Binny Bansal has reportedly negotiated an immediate payout of $100 million from Walmart, with the remaining due by August 2020.
Summary:
The National Disaster Response Force (NDRF) on Tuesday said that it had not been able to locate the 13 miners who got trapped while working in an illegal coal mine in Meghalaya's East Jaintia Hills district.
Summary:
A priest has confessed to mixing insecticides in the temple prasad in Karnataka's Chamarajanagar that killed 15 devotees, police said.
Summary:
Indian engineer Hamid Ansari and his mother Fauzia met Foreign Minister Sushma Swaraj on Wednesday, a day after he was released from a Pakistan jail.
Summary:
After a video showing him shouting at Sub-Divisional Magistrate Garima Singh in Uttar Pradesh surfaced, BJP MLA Udaybhan Chaudhary said he scolded her just like he would scold his daughter.
Summary:
An order issued by the Zonal Education Officer (ZEO), Langate in Jammu and Kashmir that prohibited officers from wearing a pheran in office, was withdrawn on Tuesday after being criticised on social media.
Summary:
TDP Denduluru MLA Chintamaneni Prabhakar abandoned his car on the premises of Kaza toll plaza in Mangalagiri mandal, after the staff there didn't allow his car to pass through the gate without paying toll.
Summary:
Social media giant Facebook's messaging platform Messenger on Monday announced there are now five modes to its camera, including video-looping effect 'Boomerang' and a 'Selfie' mode.
Summary:
The delivery service is using NuroâÂÂs R1 custom autonomous pods on public roads with no driver.
Summary:
Women were abused every 30 seconds on Twitter in 2017, according to a study by Amnesty International and Element AI.
Summary:
Advertisers will also be visited by Facebook's India-based team, the platform further said.
Summary:
In a video that has gone viral, Madhya Pradesh MP Jyotiraditya Scindia can be seen telling Congress President Rahul Gandhi what to say while addressing the press.
Summary:
The Delhi High Court today quashed the summons issued against Union Minister Smriti Irani in a defamation case filed by Congress leader Sanjay Nirupam.
Summary:
Referring to Congress President Rahul Gandhi, Union Minister Smriti Irani said, "Aajkal sapna dikhane ke liye bhi tuition leni padti hai?" She was referring to a video wherein Madhya Pradesh MP Jyotiraditya Scindia tells Rahul what to say to the media.
Summary:
Commenting on DMK President MK Stalin's proposal to name Congress President Rahul Gandhi as Prime Ministerial candidate, Samajwadi Party chief Akhilesh Yadav said one's opinion isn't the entire alliance's opinion.
Summary:
Claiming the whole nation watched as Congress President Rahul Gandhi hugged PM Narendra Modi in Lok Sabha, TRS MP Kalvakuntla Kavitha said, "Everybody felt it was a very silly move." Defending her father and Telangana CM K Chandrasekhar Rao for calling Rahul a buffoon, she added, "The definition...
Summary:
Mumbai-based edtech startup Toppr has raised $35 million (around â¹245 crore) in its Series C round of funding.
Summary:
The Delhi High Court had passed interim orders for a few companies restraining their associated firms from using similar names.
Summary:
Two men were booked for allegedly molesting, slapping and disrobing a woman while her husband was sleeping in an adjacent room in her house in Hariahera village, said the Haryana police on Tuesday.
Summary:
The Pathanamthitta Magistrate Court has extended the prohibitory orders in Sabarimala Temple till the midnight of December 22.
Summary:
A 20-year-old man got injured in his stomach after his friend allegedly shot at him with a country-made revolver, in Maharashtra's Wagle Estate area.
Summary:
Indian national Hamid Ansari, who returned to India on Tuesday after spending six years in custody in Pakistan, said, "I feel really good coming back home.
Summary:
Yes Bank on Tuesday said it has sold over 2% stake in hospital chain Fortis Healthcare.
Summary:
The 'Surprise Christmas Sale' by Beardo, The Male Grooming Experts is live now, only for today.
Summary:
Before trying to fit it in the car, the thief fell with the television in front of the house.
Summary:
A woman tried to fill an electric Tesla car with petrol at a fuel station in US, the video of which was shared by the onlookers.
Summary:
"India, I think, made an error in going with four seamers, specially with Umesh Yadav and not Bhuvneshwar Kumar," Manjrekar added.
Summary:
A 15-year-old visually-challenged girl, who was molested by a man on a Mumbai local train, caught his hand and twisted it till he was forced down to his knees in pain.
The girl, trained in self-defence, was travelling with her 56-year-old father.
Summary:
As much as â¹1.17 crore was spent on food alone during the 75 days that former Tamil Nadu CM Jayalalithaa was admitted to Apollo Hospitals in Chennai in 2016.
Summary:
The Noida Police has arrested Mumbai-based man Sunil Gupta, along with his wife and son, for allegedly showing his dead mother as alive on documents to get property worth â¹285 crore.
Summary:
A total of 80 journalists were killed, 348 others were jailed and 60 others were held hostage this year, the report claimed.
Summary:
Ex-Prime Minister Manmohan Singh has said the relationship between RBI and the government is similar to the ties between husband and wife.
Summary:
Actor Andy von Eich, who features in 'Manikarnika: The Queen of Jhansi', alleged he is yet to be paid the full amount owed to him for his role in the film.
Summary:
A delegation representing the Indian film and entertainment industry met with Prime Minister Narendra Modi in Mumbai.
Summary:
Union Home Minister Rajnath Singh on Tuesday urged two Uttar Pradesh BJP MPs to be "patient" after they asked him about the party's stand on the Ram Mandir issue during a meeting of BJP parliamentarians, according to two leaders present there.
Summary:
Suggesting he wasn't a silent Prime Minister, former PM Manmohan Singh said, "I wasn't the PM...
Summary:
He added the technology has already been transferred to BHEL for production of space-grade lithium-ion batteries.
Summary:
Speaking at the launch of his book, 'Changing India', former PM Manmohan Singh stated that he wasn't just an accidental PM but also an accidental Finance Minister.
Summary:
Kuldeep Ranka, who was Principal Secretary Tourism and Forest, has been appointed as the Principal Secretary to the CM.
Summary:
North India will reportedly get its first air-conditioned local train in February next year.
Summary:
A neo-Nazi couple in the UK who named their baby after German dictator Adolf Hitler has been jailed for membership of the far-right group National Action, which is banned under anti-terror laws.
Summary:
India on Monday again postponed enforcing retaliatory tariffs by 45 days against 29 US products worth $235 million.
Summary:
CBI's Joint Director M Nageswara Rao, who is currently the interim CBI Director, was on Tuesday promoted to the rank of Additional Director by the Appointments Committee of the Cabinet.
Summary:
Speaking about the recent defeat in Rajasthan Assembly elections on Monday, Information and Broadcasting Minister Rajyavardhan Singh Rathore said, "Vasundhara Raje worked with full devotion." He added that lack of communication with people could be one of the reasons for the loss.
Summary:
Indian all-rounder Yuvraj Singh, who is the most expensive buy (â¹16 crore) in IPL auction history, was bought by Mumbai Indians at his base price of â¹1 crore after going unsold in the first round of IPL 2019 auction.
Summary:
KXIP spent â¹7.2 crore on England all-rounder Sam Curran, the most expensive overseas player at the auction.
Summary:
Elon Musk-led SpaceX is raising $500 million in a new funding round which would put its valuation at $30.5 billion, according to the Wall Street Journal.
Summary:
Loganathan, who met with a road accident in 2010, complained of intense headaches and pain in his ear.
Summary:
Indian phone maker Lava International has delayed the payment of November salaries to employees and said they will be paid in two parts.
Summary:
Actress Deepika Padukone has been named the top Indian star of 2018, by the global film and TV website IMDb. The '2018 Top 10 Stars of Indian Cinema' list, based on IMDb's 'StarMeter' stats and page views, was released on Tuesday.
Summary:
The Indian Test team equalled its worst-ever year in terms of number of Tests lost, after registering its seventh Test loss of the year at Perth on Tuesday.
Summary:
After Indian all-rounder Yuvraj Singh was bought by Mumbai Indians after going unsold in the first round of auctions, a user tweeted, "Finally a reason to support MI".
The official accounts of CSK, KXIP also tweeted about Yuvraj's auction.
Summary:
New Zealand's Martin Guptill, who is the highest run-scorer in T20I cricket, was bought by SunRisers Hyderabad after going unsold in the first round of bidding at the IPL auction on Tuesday.
Summary:
China's retired NBA star Yao Ming and China's richest man Jack Ma are among the 110 people who were felicitated by the nation's Communist Party for their 'outstanding contributions' to the country's 40-year economic rise.
Summary:
South African cricketer Colin Ingram was bought by Delhi Capitals for â¹6.4 crore, while New Zealand's Lockie Ferguson was sold to Kolkata Knight Riders for â¹1.6 crore.
Summary:
Hackers used memes posted on Twitter to deliver hidden malware commands to retrieve user data from infected computers, according to Japanese cybersecurity firm Trend Micro.
Summary:
The boot is embroidered with 'Armstrong' on the inside and has a silver, gold and blue exterior.
Summary:
Russia's Kalashnikov, known for making AK-47 rifles, has revealed a pair of smart drones designed for surveillance of the country's assets in the Arctic.
Summary:
"Everywhere we look, the gas in the universe is polluted by waste heavy elements from exploding stars.
Summary:
A government-run school in Bihar's Vaishali has been reportedly segregating students based on religion and caste.
Summary:
The trio called the man into an abandoned plot on the pretext of a party, and beheaded him with coconut choppers, the police added.
Summary:
The Assam government has announced a farm loan waiver of â¹600 crore that will reportedly benefit around 8 lakh farmers.
Summary:
Union Minister Nitin Gadkari on Tuesday said Ram temple in Ayodhya should be built through mutual consent.
Summary:
A student had come forward with a recording of Akindele demanding that she either sleep with him or fail the course.
Summary:
The US no longer seeks to oust Syrian President Bashar al-Assad but rather aims to achieve a "regime that is fundamentally different", the US Special Representative for Syria Engagement, Ambassador James Jeffrey said.
Summary:
Brazilian faith healer João Teixeira de Faria, also referred to as "John of God", has been accused of sexual abuse by more than 300 women.
Summary:
India's Tata Steel and Germany-based Thyssenkrupp appointed Andreas Goss, currently Chief Executive Officer (CEO) of Thyssenkrupp's steel division, as the future CEO of their proposed European joint venture.
Summary:
Former Reserve Bank of India (RBI) Governor Raghuram Rajan has said transfer of excess reserve to the government may bring down credit rating of the central bank.
Summary:
While Boeing will have operational and management control of the company, Embraer will keep consent rights for some decisions, such as transfer of operations from Brazil.
Summary:
A man found a pearl which experts claim could be worth up to â¹2.8 lakh while having an oyster pan roast costing over â¹1,000 at a New York restaurant.
Summary:
Google Search for the word 'cerebrum' shot up in India from Monday after actress Taapsee Pannu responded "Wow!
Mine is the cerebrum" to a person who wrote, "Taapsee I love your body parts" on Twitter.
Summary:
Summary:
Grammy-winning American rapper T-Pain's latest song 'That's Yo Money' was removed by YouTube over accusations of stealing Aashiqui 2's song 'Tum Hi Ho's melody.
Summary:
Varun Chakravarthy, who was bought by KXIP for â¹8.4 crore, 42 times his base price of â¹20 lakh, at IPL 2019 auction, is a spinner who plays for Tamil Nadu.
Summary:
KXIP also bought 19-year-old pacer Arshdeep Singh, who was a part of India's victorious 2018 Under-19 World Cup team.
Summary:
Sri Lanka's ODI and T20I captain Lasith Malinga, who was Mumbai Indians' bowling mentor in the 2018 IPL season, has been bought by Mumbai Indians for his base price of â¹2 crore.
Summary:
Summary:
British Airways, owned by Spanish-registered IAG, will be the first Western airline to restart services to the South Asian nation.
Summary:
Vijay Mallya has said he had left India in 2016 with "only five pieces of luggage" and not 300 bags as claimed by the Enforcement Directorate.
Summary:
Finance Minister Arun Jaitley on Tuesday said the government never sought the resignation of Urjit Patel as the Governor of the Reserve Bank of India (RBI).
Summary:
The organisers claim the event was cancelled as the "students were overly enthusiastic".
Summary:
Actress Sonam Kapoor has been named IndiaâÂÂs Person of the Year for 2018, by animal rights organisation People for the Ethical Treatment of Animals (PETA).
Summary:
Former Windies captain Sir Vivian Richards on being asked about Virat Kohli said, "Oh!
I think my favourite Kohli as captain will lead the team [to a series win]," Richards added.
Summary:
SunRisers Hyderabad's Afghan spinner Rashid Khan welcomed England's Jonny Bairstow after he got sold for the first time ever in the Indian Premier League.
Summary:
Qualcomm had sued the group last year over alleged non-payment of patent royalties related to Apple products.
Summary:
He said that Stalin used "absolutely unfortunate" language.
Summary:
BJP's Delhi spokesperson Tajinder Pal Singh Bagga began an indefinite fast on Monday, demanding removal of Kamal Nath as Madhya Pradesh's Chief Minister for his alleged involvement in 1984 anti-Sikh riots.
Summary:
Tata Motors-owned Jaguar Land Rover (JLR) will reportedly cut up to 5,000 jobs as part of a turnaround strategy.
Summary:
Homegrown co-working startup 91springboard has raised $10.2 million in a funding round led by Singapore-based marketing technology company FreakOut and JapanâÂÂs Shinsei Bank.
Summary:
nMobile payments startup MobiKwik has raised nearly â¹24 crore in a bridge round led by Sequoia Capital with a contribution of â¹15 crore, according to a report.
Summary:
His comment came hours after Rahul said Congress won't let PM Narendra Modi to sleep till he waives farmers' loans.
Summary:
Russia has said that it has built new barracks on a disputed chain of islands near Japan.
Summary:
Playboy model Marisa Papen has been arrested after doing a nude photo shoot of herself at the Vatican.
Summary:
Luxury fashion brand Prada has removed some of its products, including a $550 keychain, from its stores, after it was accused of using racist, 'anti-black' imagery.
Summary:
This comes after government cleared a proposal to privatise six AAI-run airports.
Summary:
This comes after a recent report suggested that the company had known its baby powder contained cancer-causing asbestos.
Summary:
Sunny further said she gets disturbed when media exaggerates things that they know is nonsense.
Summary:
Comedian Kapil Sharma, who recently got married to Ginni Chatrath, donated the leftover food from his wedding celebrations to an NGO named 'Feeding India'.
Summary:
After reports of India captain Virat Kohli calling Australia captain Tim Paine "stand-in captain" surfaced online, the BCCI clarified the claims were based on hearsay.
Summary:
Kings XI Punjab bought 27-year-old Tamil Nadu spinner Varun Chakravarthy for â¹8.4 crore, 42 times his base price of â¹20 lakh, in the IPL 2019 auction.
Summary:
Team India fast bowler Ishant Sharma, who had a base price of â¹75 lakh, has been bought by Delhi Capitals in the IPL 2019 auction today for â¹1.1 crore.
Summary:
Indian all-rounder Yuvraj Singh, who is the most expensive buy in IPL auction history, went unsold in the first round of IPL 2019 auction on Tuesday.
Summary:
RCB also bought uncapped Kerala-born batsman Devdutt Padikkal for â¹20 lakh.
Summary:
French hacker Robert Baptiste, who challenged UIDAI's security earlier this year, on Monday tweeted, "I used to work with Indian developers and sometimes it's very painful." "Seriously, you are a senior developer and you don't know how to use git?" he tweeted.
Summary:
Dutch engineers have created an artificial archipelago of five islands in "one of the largest rewilding operations in Europe".
Summary:
According to a bill summary submitted by Apollo hospital, the total bill of late Tamil Nadu CM J Jayalalithaa's over 70-day hospitalisation is â¹6.86 crore, but an amount of â¹44 lakh is still due.
Summary:
Lok Sabha Speaker Sumitra Mahajan on Tuesday adjourned the lower house after ruckus over Rafale deal and scolded the parliamentarians, saying they were "worse than school kids".
Summary:
Sinogene, China's first biotech company to provide commercial pet cloning services, has cloned a nine-year-old celebrity dog.
Summary:
Former vice-president of a tech company Sumit Sengupta, along with his accomplice, was arrested in Mumbai for allegedly stealing a car and snatching a chain to sustain luxurious lifestyle, police said.
Summary:
On the same day, Chhattisgarh Chief Minister Bhupesh Bhagel announced â¹6,100-crore farm loan waiver benefitting over 16 lakh farmers.
Summary:
A software engineer, 33-year-old Ansari was taken into custody by Pakistani intelligence agencies in 2012 claiming him to be an Indian spy.
Summary:
Thomas said in an interview that he had not spoken to his daughter since her wedding and added that she hasn't replied to his text messages.
Summary:
Axis Bank shareholders have approved a basic salary of â¹3.6 crore for Amitabh Chaudhry, who will take over as CEO from January 1, 2019.
Summary:
Indian pacer Mohammad Shami was bought by Kings XI Punjab for â¹4.8 crore, after beginning the auction at a base price of â¹1 crore.
Summary:
A statue of former Indian captain MS Dhoni has been unveiled at a wax museum in Jaipur.
Summary:
They can provide the services to airlines operating domestic flights and international flights flying over the Indian airspace above an altitude of 3,000 metres.
Summary:
Ford has developed a prototype of noise-cancelling shelter for dogs to protect them from noise of fireworks.
Microphones inside the shelter detect the sound of fireworks and a built-in audio system emits opposing frequencies that reduce the noise significantly.
Summary:
The CM has called the meeting to discuss the situation that arose after the Supreme Court upheld nomination of 3 BJP members to the Assembly.
Summary:
PM Narendra Modi on Tuesday laid the foundation stone of Thane-Bhiwandi-Kalyan Metro and Dahisar-Mira-Bhayander Metro corridors in Maharashtra.
Summary:
Pakistan has organised peace talks between the US and Afghan Taliban with an aim to end the Afghan war.
Summary:
The order, however, doesn't impact IHH Healthcare's acquisition of 31.1% stake in Fortis, the Malaysian company added.
Summary:
Malaysia is seeking fines in excess of the alleged $2.7 billion diverted from the fund and $600 million in fees received by Goldman.
Summary:
Before GST's implementation, only 65 lakh registered enterprises were there but the number has now increased by 55 lakh, he further said.
Summary:
BJP-led Gujarat government has announced that it will waive off pending electricity bills of connection holders in rural areas worth â¹650 crore.
Summary:
Singer Sonu Nigam, while speaking about the #MeToo movement at Agenda Aaj Tak 2018, said, "I myself am a witness to how power is misused.
Summary:
At Agenda Aaj Tak 2018, Sonu Nigam took a dig at the offers coming to Pakistani singers and said, "Sometimes, I feel like it'd be better if I was from Pakistan.
Summary:
Assamese film 'Village Rockstars', India's official entry to Oscars 2019, has failed to make it to the Best Foreign Language Film category's new shortlist for the 91st Academy Awards.
Summary:
Talking about his banter with India captain Virat Kohli in the second Test at Perth, Australia captain Tim Paine said that his team will definitely invite Team India for beer after the series.
Summary:
Further, SunRisers Hyderabad bought wicketkeeper Wriddhiman Saha for â¹1.2 crore after releasing him in November.
Summary:
The 30-year-old, who had set his base price at â¹75 lakh, had represented SunRisers Hyderabad last season.
Summary:
Hours after assuming office on Monday, Madhya Pradesh CM Kamal Nath announced, "All our investment schemes, the incentives that we provide will only be applicable when 70% employment is provided to local people of Madhya Pradesh." "Many industries are set up where people from outside the state are employed..people from Bihar and UP.
Summary:
A self-driving food delivery robot created by California-based startup Kiwi burst into flames in University of California, Berkeley's campus.
Summary:
A video has emerged online that shows Pakistan's Minister of State for Interior, Shehryar Afridi vowing to protect 26/11 Mumbai terror attack mastermind Hafiz Saeed and his Milli Muslim League (MML) party.
Summary:
Two Indian nationals drowned and one other is still missing, after they jumped into the water to save drowning children who were reportedly their family members at Moonee beach in Australia.
Summary:
Jinping further called for support of the state economy and the development of the private sector.
Summary:
Global human rights group Amnesty International has removed a magazine cover after it was criticised for "sexualising" the refugee crisis.
"We made a glossy magazine to draw attention...We apologise for any offence this may have caused.
Summary:
A Mumbai court has summoned Ratan Tata and certain Tata Sons directors in a criminal defamation case filed by Nusli Wadia, previously a director in several Tata group firms.
Summary:
The Prime Minister's Office (PMO) has taken note of alleged "land mafia" threats by a builder named Samir Bhojwani to Dilip Kumar and his wife Saira Banu.
Summary:
Summary:
The actress and her driver were taken into custody after the police reportedly seized MDMA, worth several lakh from Aswathy's flat in Kochi.
Summary:
Tanushree Dutta, who started #MeToo movement in India when she accused Nana Patekar of sexually harassing her during the shoot of film 'Horn 'OK' Pleassss' in 2008, said, "I'm glad I was of some help and service." "Through this, I also achieved some retribution," she added.
Summary:
Australian all-rounder Moises Henriques, who used to play for SunRisers Hyderabad, was bought by Kings XI Punjab for â¹1 crore.
Summary:
Arnaud Mercier, France's former national artistic roller-skating coach, has been sentenced to 13 years in prison after being found guilty of sexual assault and rape of a minor.
Summary:
He said the BJP's defeat in Rajasthan, MP and Chhattisgarh was due to "arrogant" leaders' devastating decisions like demonetisation.
Summary:
An all-women political party named 'National Women's Party (NWP)' was launched in Delhi on Tuesday.
Summary:
Congress President Rahul Gandhi on Tuesday said, "We will not let PM Narendra Modi sleep till he waives off loans of farmers." "PM has not waived off a single rupee of farmers," he added.
Summary:
A new NASA research has confirmed Saturn is losing its rings at "worst-case-scenario" rate, estimated from Voyager 1 and 2 observations.
Summary:
Three Asiatic lions were killed after being run over by a goods train in Gujarat's Amreli district on Tuesday.
Summary:
The Union Home Ministry has approved the assistance of â¹1,023 crore to Odisha as part of the National Disaster Response Fund.
Summary:
Venezuelan President Nicolás Maduro said on Monday that the strength of the National Bolivarian Militia members has reached 16 lakh.
Summary:
United have won just seven out of 17 matches in the Premier League 2018-19 so far.
Summary:
Actress Taapsee Pannu took to Twitter to respond to a troll who said he 'loves her body parts'.
Reacting to her response, a user wrote "Slay, slay...you boss lady" while another commented, "Terribly mean of you to boast about the body part which the troll doesn't have."
Summary:
The 146-run victory in the second Test against India at Perth was Australia's 999th win in international cricket across formats.
Summary:
Former Sri Lanka captain Angelo Mathews celebrated his hundred against New Zealand in the first Test at Wellington by doing 10 push-ups and flexing his biceps.
Summary:
Hanuma Vihari, who made his debut for India in September this year, became the first buy of the IPL 2019 auction after being bought by Delhi Capitals for â¹2 crore.
Summary:
Reacting to a query on Madhya Pradesh CM Kamal Nath's decision to waive off farm loans of up to â¹2 lakh, Congress chief Rahul Gandhi on Tuesday said, "Dekha apne (Did you see)?" "The work has started," Gandhi added.
Summary:
The object, provisionally termed '2018 VG18', is 120 astronomical units (AU) from the Sun.
Summary:
Tribals locked the executive engineer of Sardar Sarovar Punarvasvat Agency in his office to protest against lack of jobs for local villagers at the Statue of Unity site in Gujarat.
Summary:
PM Narendra Modi on Tuesday remarked that four years ago, nobody had ever thought that Congress leaders will get convicted in the 1984 anti-Sikh riots and that the victims would get justice.
Summary:
A 40-year-old para-teacher died during a night-long protest outside the house of Jharkhand Welfare Minister Louis Marandi in Dumka.
Summary:
A video showing BJP MLA Udaybhan Chaudhary shouting at Sub-Divisional Magistrate (SDM) Garima Singh in Uttar Pradesh has surfaced online.
Summary:
US television network CBS has announced that it fired CEO Leslie Moonves for cause and has denied a $120-million (â¹850 crore) severance package after an inquiry into alleged sexual misconduct.
Summary:
Al-Falih has known Ambani for more than a decade now.
Summary:
Shah Rukh Khan and Kajol will star in the sequel to the Irrfan Khan starrer 2017 film 'Hindi Medium', as per reports.
Summary:
A documentary by Guneet Monga called 'Period.
Summary:
Lyon was seen helping Ishant take guard following which both of them and the on-field umpire Kumar Dharmasena were seen smiling.
Summary:
Kim worked with the electric carmaker Tesla for two years after a three-and-a-half-year stint with Microsoft.
Summary:
After Delhi High Court sentenced ex-Congress leader Sajjan Kumar to life imprisonment for involvement in 1984 anti-Sikh riots, Punjab CM Captain Amarinder Singh termed it a case of "justice finally delivered".
Summary:
Bengaluru-based self-drive vehicle rental startup Drivezy is reportedly in last-stage talks to raise $60 million (around â¹430 crore) in its Series C round of funding.
Summary:
Ride-hailing startup Ola on Tuesday announced it is investing $100 million in scooter rental startup Vogo by adding 1,00,000 scooters to its fleet.
Summary:
Russian space agency Roscosmos' head Dmitry Rogozin said three-hour-long manned spaceflights to International Space Station (ISS) will begin in the next 18 months.
Summary:
West Bengal Chief Minister Mamata Banerjee on Tuesday tweeted, "It is our humanitarian obligation to give refuge to migrants." "In #Bangla we will take care of anyone who seeks shelter in our State, to the best of our abilities," she added.
Summary:
The four transgender women, who were earlier stopped by the Kerala Police from proceeding to Sabarimala temple, offered prayers at the shrine on Tuesday.
Summary:
Maharashtra Chief Minister Devendra Fadnavis has ordered an inquiry after a fire at the government-run ESIC Kamgar Hospital in Andheri left at least eight people dead.
Summary:
The man has been apprehended by Pakistani authoritiesâÂÂ, his family further claimed.
Summary:
Former Chief Justice of India Dipak Misra on Monday said a terminally ill patient or a person in a âÂÂpersistent vegetative state shouldn't be made an "experimental object".
Summary:
Handa had allegedly killed Dwivedi after she refused to marry him.
Summary:
Notably, the movie shows a hunter kill the mother of a baby deer named Bambi.
Summary:
Deepika Padukone has revealed that actor Ranveer Singh had once flirted with her even though he was dating somebody else at that point.
Summary:
Team India fast bowler Ishant Sharma and all-rounder Ravindra Jadeja were caught arguing with each other on the field during Australia's second innings in the second Test at Perth.
Summary:
Explaining his decision to not include available specialist spinner Ravindra Jadeja in the playing XI for the Perth Test, India captain Virat Kohli said, "When we looked at the pitch, we didn't think about the Jadeja option.
Summary:
The 40-year-old was part of the Mumbai Indians as a player in IPL seasons 2009, 2010 and 2014.
Summary:
England all-rounder Ben Stokes was the IPL 2018 auction's most expensive buy after being bought by Rajasthan Royals for â¹12.5 crore.
Summary:
IPL 2019 auction will be conducted by Hugh Edmeades, who is a 60-year-old freelance auctioneer hailing from United Kingdom.
Summary:
Kings XI Punjab will have the maximum amount to spend at â¹36.2 crore followed by Delhi Capitals, who can spend â¹25.5 crore.
Summary:
This comes after the Delhi High Court convicted Kumar for his role in the 1984 anti-Sikh riots and sentenced him to imprisonment for life.
Summary:
The flyover between Kherki Daula toll plaza and IMT Manesar was opened last year by the National Highways Authority of India (NHAI) to ease traffic congestion on the road leading to Manesar.
Summary:
It was later revealed that the car that hit the entrance barrier was a ferry for MPs.
Summary:
At least 18 couples who got married at a mass marriage event organised by the Jaiswal Samaj in Uttar Pradesh were given toilet seats as wedding gifts.
Summary:
The death toll in a level-four fire that broke out at government-run ESIC Kamgar Hospital in Mumbai on Monday has risen to eight, while another 147 people have been rescued, officials said.
Summary:
His mother wants to see him one last time before doctors take him off life-support.
Summary:
That perception or image doesn't mean anything to me," added Shah Rukh.
Summary:
Sara Ali Khan, when asked what kind of man she wants for herself, said, "You don't need to be an Albert Einstein, but there needs to be a balance between intellect and humour." "Money is not important...humour is of prime importance," she added.
Summary:
Producer Kumar Mangat Pathak of Panorama Studios has come up with a no-harassment form for aspiring actors which they fill post their auditions.
Summary:
Micro-blogging platform Twitter on Monday warned of suspicious traffic which it said appeared to be a part of government-backed activity coming from China and Saudi Arabia.
Summary:
"The tax...will be for the whole of 2019 for an amount that we estimate at â¬500 million (around $570 million)," he added.
Summary:
KM Ashokan, who had moved court against the marriage of his daughter, Hadiya, to a Muslim man, has joined BJP.
Summary:
Goa Pradesh Congress Committee President Girish Chodankar on Monday said that he will appreciate if CM Manohar Parrikar unfurled the Tricolour on Goa Liberation Day. This comes after Parrikar, who is suffering from a pancreatic ailment, inspected two under construction bridges on Sunday.
Summary:
Summary:
NASA's New Horizons spacecraft will begin transmitting data from the Kuiper Belt, a zone of icy bodies and mysterious small objects orbiting beyond Neptune, on January 1, 2019.
Summary:
Eighteen people, including Vishwa Hindu Parishad member Vishal Tyagi, have been arrested in connection with the violence that took place in Uttar Pradesh's Bulandshahr earlier this month.
Summary:
The Supreme Court has sought an explanation from the Rajasthan government on whether Shambhu Lal Regar, who had allegedly hacked and burnt alive a Muslim labourer, uploaded videos while in jail.
Summary:
The accused would befriend people on Facebook and would then convince them to transfer money on the pretext of sending them high-value gifts and foreign currency.
Summary:
Patidar leader Hardik Patel on Monday said, "We do not need reservation if there are two crore jobs for the youth." He further said that reservation won't be needed if farmers are paid a suitable price for their agriculture produce.
Summary:
With its 'Fly Higher' campaign, Vistara inspires travelers to settle for nothing but the best.
Summary:
Australia had lost five and drawn one of their previous six matches and had last won a Test in March this year.
Summary:
Vivek said he only got to know in October that he would be covering Ambani's wedding.
Summary:
Gill has scored 739 runs in 10 first-class innings in his career.
Summary:
The BJP has declared a total income of â¹1,027 crore for 2017-18, during which it spent over â¹750 crore, according to Association for Democratic Reforms report.
Summary:
Pakistan has released 33-year-old Indian national, Hamid Ansari, after he spent three years in jail on charges of possessing false documents.
Summary:
The Union Cabinet on Monday approved the establishment of two new All India Institute of Medical Sciences (AIIMS) at Tamil Nadu and Telangana.
Summary:
A Texas mother whose two kids died in a hot car while she partied last year has been jailed for 40 years.
Summary:
Vishal Bhardwaj, while talking about his 2017 film 'Rangoon', said, "The actors...in the film [Saif Ali Khan, Shahid Kapoor, Kangana Ranaut] didn't gel well with each other.
Summary:
Deepika Padukone, while talking about Ranbir Kapoor not attending her and Ranveer Singh's wedding reception, said, "We spoke before the reception but we have not spoken after.
Summary:
Australian pacer Josh Hazlewood played down the verbal exchange between Indian captain Virat Kohli and Australian captain Tim Paine by saying that the exchange was done in good spirits.
Summary:
Field trials for 5G services are currently going on, DoT further said.
Summary:
Supporting simultaneous elections at the cost of newly elected governments, Uttarakhand CM Trivendra Singh Rawat said, "To kill Ravana, Lanka will have to be burned...and someone will have to be Hanuman." "If things have to change...some sacrifices will have to be made," the BJP leader added.
Summary:
Summary:
US-based job platform for mothers returning to work 'The Mom Project' has raised $8 million in a Series A funding round led by Grotech Ventures and Initialized Capital.
Summary:
Advocate Madhavi Divan has been appointed as the Additional Solicitor General (ASG) by the central government to represent it in the Supreme Court, becoming only the third woman to be appointed as ASG in the top court.
Summary:
An 18-year-old girl was allegedly set ablaze by a 31-year-old driver while on her way home from college after she repeatedly rejected his proposal, Uttarakhand Police have said.
Summary:
Union Minister Satya Pal Singh informed the Parliament that less than 60% graduates from management, technical and engineering institutions get campus placements.
Summary:
Former RBI Governor Raghuram Rajan has said that note ban slowed down India's economic growth at a time when the world economy was growing and it impacted the GDP significantly.
Summary:
The government-run ESIC Kamgar Hospital in Mumbai, where at least six people died after a fire broke out in the building, had reportedly failed the fire safety test and was denied final No Objection Certificate (NOC) 15 days ago.
Summary:
Karnataka government has revealed that the 'prasad' served to people at the temple in Chamarajanagar, that claimed the lives of 14 people, had a "dangerous substance".
Summary:
"Names of all people entering the temple's kitchen and preparing the prasadam will be noted," an official said.n
Summary:
Shares of Jet Airways on Monday fell as much as nearly 5% amid reports that former two-time CEO Nikos Kardassis has quit from an advisory role in the airline.
Summary:
The total number of frauds involving an amount more than â¹1 lakh each year, has gone up by around 20%, the data observed.
Summary:
Canada's Brookfield Asset Management will reportedly buy at least four of five luxury hotels and a large land parcel owned by debt-ridden Hotel Leelaventure for about â¹4,500 crore.
Summary:
The Central Information Commission (CIC) has ordered disclosure of data on â¹2,000 and â¹500 notes printed post note ban.
This comes after the note-printing unit of the RBI claimed sharing the data will result in "proliferation of counterfeit currency and economic chaos".
Summary:
At least six people, including a two-month-old baby, were killed while 147 others were rescued as a 'Level-3' fire broke out at government-run ESIC Kamgar Hospital in Mumbai's Andheri (East) on Monday, officials said.
Summary:
Aadhaar details for bank accounts or mobile phone connections will no longer be mandatory as Union Cabinet on Monday approved an amendment to the existing law, making Aadhaar details optional for these services.
Summary:
Actor Ranveer Singh gatecrashed a wedding in Mumbai and surprised the couple after he approached the 'mandap' and wished them.
Summary:
"It's always 4 am somewhere in the world," a person jokingly commented on Rowling's tweet.
Summary:
Actress Sushmita Sen, who became the 1st Indian to win the Miss Universe title in 1994, took to Twitter to congratulateâ Miss Universe 2018 Catriona Gray on her victory at the beauty pageant.
A stunning & well-spoken #MissUniverse2018 Catriona Gray," she wrote.
Summary:
Talking about his early days in Bollywood, Shah Rukh Khan revealed, "A director once told me...he could use me anywhere because I was so ugly and not the hero-type." "I was practical and knew that I didn't look the hero type, nor could I dance like one," he added.
Summary:
Australia are used to playing like that, we aren't.
It's not in our DNA to play cricket like that," he added.
Summary:
Prithvi Shaw will miss the entire Test series against Australia after failing to recover from the ankle injury he sustained during the warm-up match last month.
Summary:
Responding to Shane Warne's criticism, Australia pacer Mitchell Starc said, "If I keep listening to Warne, I may as well retire." "I'll just keep going about my stuff as I've done over the weeks," Starc added.
Summary:
Meanwhile, former Australia captain Allan Border commented, "I don't think I've ever seen any captain carry on like that."
Summary:
RJD Chief Lalu Prasad Yadav's son Tej Pratap Yadav announced his "return" to active politics at the party's state headquarters in Bihar's Patna on Sunday.
Summary:
Summary:
Speaking about the Indian team for the ongoing second Test in Perth, pacer Mohammad Shami said, "We had one spinner who didn't bowl badly.
Summary:
The Indian players, led by Kohli, checked on Lyon after the bouncer.
Summary:
Cristiano Ronaldo will face his former club Real Madrid's city rivals Atletico Madrid in the last 16 of the UEFA Champions League while reigning German league champions Bayern Munich have drawn Liverpool for the round of 16.
Summary:
Prime Minister Narendra Modi sent a letter praising the recently-retired cricketer Gautam Gambhir for his contribution to the sport as well for his efforts to bring "positive difference in the lives of the lesser privileged".
Summary:
Former Indian cricketer Sachin Tendulkar lauded pacer Mohammad Shami after he picked up a six-wicket haul in the Perth Test on Monday.
Your 6 wickets have been an absolute joy to watch," read Sachin's tweet about the pacer's performance.
Summary:
The over 1.7 million square foot new campus will include two buildings located at 315 and 345 Hudson Street.
Summary:
Google Maps on Monday launched an âÂÂauto rickshawâ mode for commuters in Delhi that shows the route and estimated fares.
Summary:
He added he took oath as CM in 1991 and "several times" after that, but "no one said anything".
Summary:
Goa BJP leader Sadanand Shet Tanavde on Monday rejected claims that ailing Goa Chief Minister Manohar Parrikar's visit to an under-construction bridge near Panaji was a political stunt.
Summary:
Amazon will eliminate some items and work with manufacturers or vendors to repackage certain items to increase their profitability.
Summary:
Dubai's billion-dollar ride-hailing startup Careem on Monday launched its food delivery service Careem NOW in the Middle East, starting with Dubai and Jeddah.
Summary:
The injured has been taken to a hospital in Lucknow, the police added.
Summary:
Congress leader Sajjan Kumar will move an appeal to the Supreme Court against the Delhi High Court's conviction and sentencing in 1984 anti-Sikh riots case, his lawyer said.
Summary:
The decision came after contaminated hooch claimed 12 lives in West Bengal's Shantipur.
Summary:
Star India's Chairman and CEO Uday Shankar has been elected Vice President of Federation of Indian Chambers of Commerce and Industry (FICCI) for 2018-19.
Summary:
Bhupesh Baghel on Monday took oath as Chief Minister of Chhattisgarh at Balbir Singh Juneja Indoor Stadium in Raipur.
Summary:
Actor Vicky Kaushal, while confirming that he is in a relationship, said, "Let's see what happens.
Summary:
Katrina Kaif has said she never felt "objectified" in 'Chikni Chameli' but instead enjoyed doing the song.
Her statement comes after filmmaker Karan Johar earlier apologised for including 'item songs' like 'Chikni Chameli' in his films.
Summary:
Kohli, during practice, took a low catch and made the 'out' gesture like Handscomb did after taking his catch.
Summary:
Australia wicketkeeper-captain Tim Paine sledged about India captain Virat Kohli to opener Murali Vijay during India's second innings of the second Test on Monday.
Summary:
Actor Naseeruddin Shah took to Facebook to criticise India captain Virat Kohli, saying he's not only the "world's best batsman" but also the "world's worst behaved player".
Summary:
Congress leader Kamal Nath waived farm loans of up to â¹2 lakh, two hours after taking over as CM of Madhya Pradesh today.
Congress President Rahul Gandhi had announced that farm loans of up to â¹2 lakh will be waived within 10 days of the new government.
Summary:
The round values Byju's at nearly $4 billion, making it one of India's most-valuable startups, according to reports.
Summary:
He won Lok Sabha elections from Outer Delhi thrice.
Summary:
Smith has been barred from holding a leadership position in international and domestic cricket for another 12 months after his suspension lapses.
Summary:
Windies' Shai Hope scored T20I cricket's third fastest half-century to lead his side to victory with 55 balls to spare in the first T20I against Bangladesh on Monday.
Summary:
The Badminton Association of India (BAI) has decided to give PV Sindhu a cash reward of â¹10 lakh after she became the first Indian to win gold at year-ending World Tour Finals.
Summary:
Lionel Messi scored a hat-trick while also creating the other two goals in his side's 5-0 win over Levante in the La Liga on Sunday.
Summary:
Hailing Delhi High Court's verdict convicting Congress leader Sajjan Kumar in 1984 anti-Sikh riots, Union Minister Harsimrat Kaur Badal said, "Wheels of justice have finally moved." "It is Sajjan Kumar today...will be Jagdish Tytler tomorrow, then Kamal Nath and eventually the Gandhi family," she added.
Summary:
Rebel AAP leaders Sukhpal Singh Khaira and Dharamvira Gandhi along with Balwinder Singh Bains and Simarjeet Singh Bains of Lok Insaaf Party announced the formation of 'Punjab Democratic Alliance (PDA)'.
Summary:
Lok Janshakti Party (LJP) chief Ram Vilas Paswan's son Chirag Paswan on Monday brushed away the speculation that LJP will quit NDA saying, "We are with the NDA, and are going to be with the NDA." He added that LJP's alliance with the BJP was "strong".
Summary:
Union Minister Rajyavardhan Rathore on Monday criticised Congress by calling it a synonym of corruption and added that Congress President Rahul Gandhi is still learning.
Summary:
RJD leader and Lalu Prasad Yadav's son Tej Pratap Yadav on Sunday said that he wants a separate government residence to focus on his fight against BJP.
Summary:
CPI(M) General Secretary Sitaram Yechury on Monday said PM Narendra Modi will be defeated in 2019 Lok Sabha elections like former PM Atal Bihari Vajpayee was defeated in 2004.
Summary:
Delhivery reported a 38% growth in net sales in the financial year 2017-18 as compared to 50% growth in the previous year.
Summary:
Police said that a worker accidentally went inside a non-functional tunnel of the mine where the oxygen level was low and a poisonous gas was emanating.
Summary:
His comment came soon after the Delhi High Court held Congress leader Sajjan Kumar guilty in a 1984 anti-Sikh riot case.
Summary:
Nearly one-fourth pesticides sold in open market are substandard, farmers' body Bharatiya Krishak Samaj (BKS) said.
Summary:
A fresh bill that makes Triple Talaq a criminal offence has been introduced in the Lok Sabha.
Summary:
Japanese conglomerate Hitachi on Monday announced plans to purchase 80.1% of Swiss engineering giant ABB's power grid business for $6.4 billion, in its biggest-ever deal.
Summary:
The government has said public sector banks don't have any plans to shut down their ATMs. This comes amidst a report by Confederation of ATM industry (CATMi) that half of 2.38 lakh machines may close down by March 2019 due to regulatory compliance changes making the business unviable.
Summary:
Congress won 114 seats in the 230-member Madhya Pradesh Assembly.
Summary:
A Chinese man has developed a fungal infection in his lungs after smelling his own socks every day after work.
Summary:
"On my janam patri, it still says Rahul Kumar Johar," Karan further revealed.
Summary:
After a wicketless first session, India took Australia's remaining six wickets in the second session as fast bowler Mohammad Shami registered second-innings figures of 24-8-56-6.
Summary:
On-field umpire Chris Gaffaney intervened after India captain Virat Kohli and Australia captain Tim Paine got involved in banter during Australia's second innings of the second Test.
Paine told Gaffaney that there was no swearing involved and also asked Kohli to keep his cool.
Summary:
UK's Newcastle University professor and the 2013 Ted Prize winner Sugata Mitra has said that the children should be allowed to use the internet in their exams.
Summary:
Tamil Nadu IAS officer and Health Secretary J Radhakrishnan recently surprised 16-year-old Meena at her school, whom he helped during the 2004 tsunami.
Summary:
PM Narendra Modi on Monday announced $1.4 billion in financial aid to Maldives during President Ibrahim Mohamed Solih's three-day visit to India, his first foreign trip after he assumed office.
Summary:
The Bangladesh government will be building a war memorial in Chittagong's Brahmanbaria to pay homage to Indian soldiers who were martyred in the 1971 war against Pakistan.
Summary:
Finance Minister Arun Jaitley on Monday said the legacy of 1984 anti-Sikh riots hangs around the neck of Congress and Gandhi family.
Summary:
Warning that new US sanctions against senior figures in the regime are a "deliberate provocation", North Korea has said the US is "bent on bringing relations back to the status of last year which was marked by exchanges of fire".
Summary:
Rajkummar Rao will star in Deepika Padukone's film on acid attack survivor Laxmi Agarwal, as per reports.
"The role is substantial and has excited Rao. He has not yet worked with Deepika.
Summary:
Summary:
Confirming the news, Dinesh said, "He plays a small-time goon whose plans go haywire when he discovers that he might be in store for some supernatural encounters." This will be their third film together after 'Stree' and 'Made In China'.
Summary:
'Manikarnika: The Queen of Jhansi' producer Kamal Jain, while talking about giving directorial credit to Kangana Ranaut, said, "Kangana has shot more than 70% of the film.
Summary:
Summary:
India's Mohammad Shami, who registered career-best figures of 6/56 in the Perth Test's 2nd innings, set the record for most wickets on away soil in a calendar year by an Indian pacer.
Summary:
A researcher successfully unlocked four Android smartphones using a 3D printed life-size human head.
Summary:
Sitharaman said the country's "first family" not listening to the top court's order on the Rafale deal can be termed as "amazing audacity".
Summary:
Telangana Chief Minister K Chandrashekar Rao on Sunday directed officials to begin the process of forming two new districts in the state, Mulugu and Narayanpet.
Summary:
A 64-year-old man has been arrested in Maharashtra for allegedly throwing his neighbour's cat from the 15th floor of the building where they reside.
Summary:
The injured students are undergoing treatment at a local hospital, a police official said.
Summary:
National Conference leader Omar Abdullah on Monday said that its "inhuman" to force Goa CM Manohar Parrikar to continue working and doing "photo ops".
Summary:
The Railways will be giving Emotional Intelligence training to its senior officials to help them deal with situations where emotions are involved, especially with customers.
Summary:
The authorities have imposed restrictions in J&K's Srinagar after separatists called for a march to the Army base in protest against the death of seven civilians during an encounter between security forces and militants.
Summary:
Canadian Prime Minister Justin Trudeau has said that his government was looking for a way out of a $13-billion arms deal with Saudi Arabia.
Summary:
The lender had moved court after RBI restricted it from reducing promoter holding through a preference share sale.
Summary:
Great Learning's Analytics program, ranked India's No.1 by Analytics India Magazine, has announced its collaboration with the University of Texas at Austin McCombs, ranked No. 2 globally in Analytics.
Summary:
NTPC is organising a grand challenge and inviting ideas for ash utilisation to achieve 100% sustainable utilisation of ash, till December 24, 2018.
Summary:
Philippines' Catriona Gray has been crowned Miss Universe 2018, becoming the fourth woman from the country to win the title.
Summary:
Congress leader Sajjan Kumar has been sentenced to life imprisonment in a 1984 anti-Sikh riots case by the Delhi High Court.
Summary:
Ashok Gehlot was on Monday sworn-in as the Chief Minister of Rajasthan for the third time at the Albert Hall Museum in Jaipur.
Summary:
In the final round, Philippines' Catriona Gray was asked how she'd apply the most important lesson she has learned to her time as Miss Universe.
Summary:
Actress Zareen Khan, while recounting an incident wherein she was mobbed in Aurangabad a few days ago, said, "Some as***les from that mob did try to touch me inappropriately." Zareen, who slapped a man during the incident, added she somehow manoeuvredâ her way towards her car.
Summary:
Union Minister Ramdas Athawale on Sunday said his suggestion to Congress chief Rahul Gandhi is that instead of being called 'Pappu', he should be called 'Papa' now.
Summary:
Spaceflight company Virgin Galactic's billionaire Founder Richard Branson has said that he is "itching" to take a spaceflight and might take his first one within the next six months.
Summary:
The Goa CMO has released a photo showing CM Manohar Parrikar, who is recovering from a pancreatic condition, inspecting a half-constructed bridge over Mandovi river.
Summary:
Convicting Congress leader Sajjan Kumar for his involvement in a 1984 anti-Sikh riots case, the Delhi High Court on Monday called it an "extraordinary case" in which "it was going to be impossible to proceed against Kumar".
Summary:
Welcoming the Delhi High Court's verdict convicting Congress leader Sajjan Kumar in 1984 anti-Sikh riots case, CM Arvind Kejriwal on Monday tweeted that it was "a very long (and) painful wait for innocent victims".
Summary:
The daughter shared the story of the stranger, who turned out to be former Virginia Congressman Tom Perriello, on Twitter.
Summary:
Summary:
Summary:
Pakistan's Federal Minister for Information and Broadcasting Chaudhry Fawad Hussain has offered his help to filmmaker Nandita Das in lifting the ban on her directorial 'Manto' in the country.
Summary:
Swara Bhasker, while talking about her work and choice of films, said, "As actors, when we die, we're only going to leave behind our body of work.
Summary:
Talking about the performance of his latest film 'Kedarnath', Sushant Singh Rajput said, "I am really happy with the audience response to the film." "The kind of minute detail we have shown in the film, they are getting connected to it and appreciating it," he added.
Summary:
Sharing her first look from the Akshay Kumar starrer 'Kesari', Parineeti Chopra wrote, "Anytime I watched a war movie, it was the love story of those brave men that kept me going." Akshay also shared his look from the film and wrote, "A film which swells up my chest with immense pride.
Summary:
Sriram Raghavan won the Best Director award for 'AndhaDhun' and 'Stree' was named Best Film.
Summary:
After announcing his resignation from BJP-led National Democratic Alliance (NDA), Upendra Kushwaha on Sunday said, "Joining the mahagathbandhan (grand alliance) is one of the many options before our party." He added that the final decision is yet to be taken.
Summary:
Rebel Shiromani Akali Dal (SAD) leaders, who were expelled last month for 'anti-party activities', on Sunday launched a new party with Khadoor Sahib MP Ranjit Singh Brahmpura as its President.
Summary:
A three-year-old girl was allegedly raped in Delhi on Sunday by her 40-year-old neighbour who worked as a guard.
Summary:
Cyclone Phethai is predicted to make a landfall in Andhra Pradesh by Monday afternoon and an alert has been sounded in the state.
Summary:
The Senate had backed a resolution blaming Saudi Crown Prince Mohammed bin Salman for Khashoggi's murder.
Summary:
Israel Prime Minister Benjamin Netanyahu's son Yair has tweeted that Facebook blocked his page for 24 hours, calling the social network a "dictatorship".
Yair's account was blocked over posts that called for "all Muslims (to) leave" Israel.
Summary:
The Chief Justice of India Ranjan Gogoi, CBI Director Alok Kumar Verma, RBI Governor Shaktikanta Das and Comptroller and Auditor General Rajiv Mehrishi studied at St Stephen's College in New Delhi.
Summary:
Actor Vicky Kaushal's friend Amritpal Singh revealed on 'Koffee With Karan' that a girl, who had a crush on Vicky, once came to Mumbai from another city to hook up with him.
Summary:
Commentator Mark Howard was talking to Lyon near the pitch at Perth's Optus Stadium when Starc came running and pulled down Lyon's shorts.
Summary:
India captain Virat Kohli taunted Australia captain Tim Paine after a caught-behind appeal against Paine was turned down in the final over on day three of the second Test.
Summary:
Belgium defeated Netherlands in the final in Bhubaneswar on Sunday to clinch the men's Hockey World Cup for the first time.
Summary:
After ex-Windies pacer Tino Best criticised Harbhajan Singh for not having any remorse over the 2008 monkeygate scandal, the spinner tweeted, "Who is this?
Summary:
Badminton players Saina Nehwal and Parupalli Kashyap, who got married on December 14, hosted their wedding reception in Hyderabad on Sunday.
Summary:
After ex-Australia all-rounder Andrew Symonds claimed Harbhajan Singh broke down while apologising to him for racially abusing him in 2008, the spinner said Symonds has become a "good fiction writer".
Summary:
Colin Kroll, the Co-founder of HQ Trivia and Vine, died at the age of 35 of an apparent drug overdose.
Summary:
Former US First Lady Hillary Clinton revisited a Gujarat Self Employed Women's Association (SEWA) in Ahmedabad, she first visited in 1995, and said, "I'm so inspired by these women." She made a special mention of Ela Bhatt, who started the organisation in 1972.
Summary:
After Sachin Tendulkar praised Nathan Lyon for his performance in the 2nd Test, Lyon said, "He's obviously one of the greatest of all time...
Summary:
Talking about the current Indian crop of pacers, former Indian cricketer Gautam Gambhir said that current captain Virat Kohli is 'fortunate' to have such a pace attack.
Summary:
Juventus' Cristiano Ronaldo was criticised for his chest bump with the opposition goal-keeper after scoring a penalty against him in his side's Serie A match against Torino.
Summary:
Fans of the Serbian professional football club, Partizan Belgrade, pelted snowballs at the assistant referee of a match against Macva Sabac, which was being played in the snow.
Summary:
Xherdan Shaqiri came off the bench to score a brace for Liverpool as the Reds took the top spot in the table by registering their first league win over Manchester United since 2014.
Summary:
The couple's son had actually tripped while dribbling the ball.
Summary:
Southampton, playing their first home match under their new coach Ralph Hasenhuttl, scored three headers with the final one coming in the 85th minute.
Summary:
Patent applications filed by female innovators will get examined faster, as per a proposal by Department of Industrial Policy and Promotion (DIPP).
Summary:
"Welcome Rahul Gandhi, give the nation good governance," he added.
Summary:
After the Supreme Court's judgement on Rafale deal, Union Minister Arun Jaitley on Sunday took a dig at Congress President Rahul Gandhi saying all the lies spoken on the deal has been "exposed".
Summary:
Union Minister Dharmendra Pradhan on Sunday said that Prime Minister Narendra Modi will inaugurate a new campus of IIT-Bhubaneswar on December 24.
Summary:
The health ministry has identified 68 fake mobile applications and 54 fake websites for spreading incorrect news about the government's flagship healthcare scheme Ayushman Bharat.
Summary:
Former two-time Chief Executive Officer (CEO) of Jet Airways, Nikos Kardassis, has reportedly resigned as an advisor from the airline.
Summary:
Many of these laws were drafted during the British rule with the aim of curbing the freedom of the people, he said.
Summary:
The All India Bank Employees Association (AIBEA) has said the decision to merge Bank of Baroda, Dena Bank and Vijaya Bank was unwarranted as it wouldn't be beneficial to the economy.
Summary:
The Delhi High Court has dismissed Vodafone's plea seeking over â¹4,759-crore refund towards returns filed for 2014-15 to 2017-18.
Summary:
It comes with the business." Reports have said that following her divorce from Arbaaz Khan, Malaika is currently dating actor Arjun Kapoor.
Summary:
Actor Dilip Kumar's wife and actress Saira Banu has sought PM Narendra Modi's help alleging that "land mafia" Samir Bhojwani, recently released from jail, is threatening them with muscle and power.
Summary:
Fifty-seven-year-old deep sea diver Alejandro Ramos was left with swollen arms and chest after a diving accident four years ago.
Summary:
The third umpire stayed with on-field umpires' decision after failing to conclude that the ball had bounced.
Summary:
Harbhajan Singh has rubbished ex-Australia cricketer Andrew Symonds' claims that he broke down crying while apologising to him over the monkeygate scandal.
Symonds, who had accused Harbhajan of racially abusing him in 2008 Sydney Test, had claimed that Harbhajan apologised to him while they both were playing for Mumbai Indians.
Summary:
Facebook's 34-year-old Co-founder and CEO Mark Zuckerberg's wealth has dropped by over $15 billion in 2018, the most among the world's 500 richest people, according to Bloomberg.
Summary:
Karan Johar, while speaking about directing the period film 'Takht', said, "It doesn't necessarily mean that they should compare me with Sanjay Leela Bhansali." "He's a master of the craft and I hope the audience enjoys my period film just as much," he added.
Summary:
Following the delivery, Finch was rushed to a nearby hospital for an X-ray.
Summary:
After being named the Chief Minister of Chhattisgarh on Sunday, Bhupesh Baghel said, "The problem of Naxalism is a very serious problem." "Nobody can solve it instantly.
Summary:
English Premier League side Southampton's new coach Ralph Hasenhuttl has offered a free drink to season-ticket holders attending his first match at their home stadium.
Summary:
US-based rocket propulsion company Rocket Lab on Sunday launched 13 cube satellites on its Electron rocket from New Zealand into low Earth orbit for NASAâÂÂs ELaNa-19 mission.
Summary:
âÂÂWe will do comparative evaluation of all states and highlight best policies for other states to adopt,â she added.
Summary:
He said the country will never forgive the Congress over its attitude towards the Army.
Summary:
Taking a dig at PM Narendra Modi, Congress leader Pramod Tiwari said, "PM Modi should be named Mr Gumrah." "PM has misled Supreme Court [on Rafale], the country, farmers and the youth," Tiwari added.
Summary:
Karunanidhi's son MK Stalin and Congress chief Rahul Gandhi were also present at the occasion.
Summary:
PM Narendra Modi on Sunday accused Congress of destroying those democratic institutions that refused to function according to its wishes.
Summary:
Union Textiles Minister Smriti Irani while addressing a rally in Delhi on Sunday said that under the leadership of PM Narendra Modi, the BJP-led government will again come to power in 2019 Lok Sabha elections.
Summary:
"The idea of working five days a week with two day weekends...wasn't always the case, and it won't be in the future," Branson added.
He further said, "Could people eventually take three and even four day weekends?
Summary:
Automakers have reportedly proposed a one-time incentive in the form of rebate in taxes for replacing vehicles registered before 2000 to facilitate taking them off the roads.
Summary:
As many as 31 monkeys and 14 pigeons died due to a suspected gas leak in Maharashtra's Raigad district.
Summary:
She said the incident shook the nation and asked the people to "say no to violence against women".
Summary:
A 62-year-old man was sentenced to 20 years of imprisonment for allegedly raping an eight-year-old girl in Bengaluru.
Summary:
Union Minister Nitin Gadkari on Saturday urged private companies to invest in expressways, waterways, irrigation projects and 'Clean Ganga Mission'.
Summary:
Samajwadi Party chief Akhilesh Yadav on Saturday said that "doubts" over Rafale deal should be raised in the Supreme Court instead of a Joint Parliamentary Committee.
Summary:
A man has been detained for allegedly making a hoax call, threatening to trigger bomb blasts at three locations in Rajasthan's Jaipur.
Summary:
We suspect the employer's wife asked her brothers to commit the crime," a police official said.
Six people, including the employer's two brothers-in-law have been arrested.
Summary:
She was followed by Karlie Kloss, who has $13 million in earnings and Chrissy Teigen who earned $11.5 million.
Summary:
Late actor Vinod Khanna's first wife Geetanjali Khanna, mother of actors Akshaye Khanna and Rahul Khanna passed away at the age of 70 on Saturday.
Summary:
Kohli took off his helmet, kept it on ground, tapped his bat and did the gesture.
Summary:
Australia ended the third day of the second Test in Perth at 132/4 in the second innings, leading India by 175 runs.
Summary:
Two more people who ate prasad at a temple in Karnataka's Chamarajnagar died on Sunday, taking the death toll to 13.
Summary:
On being asked why women are not offered combat roles, Army chief General Bipin Rawat said a woman officer would accuse "jawans of peeping as she changes clothes".
Summary:
The Uttar Pradesh Police has released photos of 18 accused in Bulandshahr violence, in which a policeman and youth were killed.
Summary:
After Ranil Wickremesinghe was reinstated as Sri Lanka's PM, India's Ministry of External Affairs on Sunday said it welcomes the resolution of the political situation as a "true friend" and "close neighbour".
Summary:
A 28-year-old man has been booked for allegedly raping a nine-year-old girl on the ground floor of his building in Delhi's Samaypur Badli while his wife and daughter were upstairs.
Summary:
Keshav Suri, the son of the late hotelier Lalit Suri and Executive Director of Lalit Hotels, shared a video showing him dressed as a woman and dancing with his mother in Suri's first "Drag performance".
Summary:
Filmmaker Aanand L Rai said it's important to have "fearless approach" while making a film.
Summary:
AR Rahman performed at the second wedding reception of Reliance Industries Chairman Mukesh Ambani's daughter Isha Ambani and Anand Piramal which was held at Mumbai's Jio Garden.
Summary:
Sara Ali Khan, who made Bollywood debut with 'Kedarnath', said, "People appreciate the fact that I'm real.
Summary:
Indian wicket-keeper Rishabh Pant set the record for the most number of dismissals effected by an Indian wicket-keeper in a Test series against Australia after effecting his 15th dismissal of the India-Australia series so far on Sunday.
Summary:
After being named as the Chief Minister of Chhattisgarh, Bhupesh Baghel said, "Our first priority is to waive off loans of farmers as promised by Congress in its rallies." "Second will be to procure paddy crops on increased Minimum Support Price (MSP)," he added.
Summary:
Pokémon Go creator Niantic is raising $200 million in Series C funding round led by US-based venture capital firm IVP at a valuation of $3.9 billion, according to a report.
Summary:
Delhi Chief Minister Arvind Kejriwal on Saturday said, "The pairing of PM Narendra Modi and Amit Shah is dangerous for the present and future of the nation." "If they come to power in 2019, they will not even spare the Constitution," he added.
Summary:
Criticising Congress, Prime Minister Narendra Modi on Sunday said, "Country will neither forget nor forgive previous government's attitude towards Army." For the present government, country comes first and not the party, he added.
Summary:
The Bengal government on Saturday denied permission for BJP's rath yatra in the state.
Summary:
Central Pollution Control Board (CPCB) member secretary P Gargava on Saturday said that the air quality of Delhi has improved by 10% to 15% in the past couple of years.
Summary:
The incident reportedly happened after Rubal went to a wedding without her father's permission.
Summary:
The Railways has proposed to run 800 special trains from various stations of Prayagraj district in order to facilitate the arrival of tourists for Kumbh Mela 2019.
Summary:
Six people were killed and five others were injured after a boiler blast occurred in a sugar factory in Karnataka's Bagalkot district on Sunday.
Summary:
One man has been arrested for his alleged involvement in operating an illegal coal mine in Meghalaya, where 13 miners are trapped and feared dead due to flooding.
Summary:
Former Pakistan envoy to the US Husain Haqqani has said that terrorism and international isolation are real threats to Pakistan, however the country's authorities refuse to recognise them.
Summary:
Donald Trump's choice of acting White House Chief of Staff, Mick Mulvaney, described the US President as "a terrible human being" shortly before the presidential election in November 2016.
Summary:
The father of the 7-year-old Guatemalan girl who died in US Border Patrol custody has said that she was healthy and had no pre-existing conditions.
Summary:
The order could, however, impact IHH's proposed open offer to acquire additional 26% stake in Fortis.
Summary:
Congress ousted BJP in Chhattisgarh after 15 years by winning 68 out of 90 seats.
Summary:
PV Sindhu defeated world number five Nozomi Okuhara of Japan to record her 300th career match victory across categories and clinch the BWF World Tour Finals women's singles title.
Summary:
Speaking about the 25-year age gap between him and his wife Ankita Konwar, model-actor Milind Soman said, "I don't really consider the age gap." "Two people are...different, in terms of age, background...So there are...things that need to be understood and accepted," he added.
Summary:
His post came after Ariana joked about Kanye West's tweets discussing mental health.
Summary:
After pictures of Bollywood celebrities including Amitabh Bachchan and Aamir Khan serving food at Isha Ambani's wedding surfaced online, a woman asked on Twitter why they were doing so.
Summary:
Finch scored 25 runs off 30 balls.
Summary:
AAP MLA Aman Arora on Saturday said he had surrendered his travel, dearness allowances and other perks for the first day of Punjab Assembly's winter session after the House was adjourned within 11 minutes.
Summary:
On six years of Delhi's Nirbhaya gangrape incident, the 23-year-old victim's mother Asha Devi said, "Culprits in a criminal case like this are still alive.
Summary:
On the occasion of Vijay Diwas on Sunday, President Ram Nath Kovind took to Twitter to express gratitude towards the armed forces who fought in 1971 war against Pakistan.
Summary:
Police officials said the girls were ashamed of finding the graffiti with their names.
Summary:
Lashkar-e-Taiba terrorist Sheikh Abdullah Nayeem has been sentenced to death by a fast-track court in West Bengal on Saturday for his involvement in the 2006 Mumbai blasts and attacks on Indian Army camps in Kashmir.
Summary:
Indian-origin woman Jasmin Mistry was sentenced to four years imprisonment by a UK court for lying to her family about suffering from terminal brain cancer to trick them into paying ã250,000 (over â¹2 crore).
Summary:
Wickremesinghe was sacked by Sirisena following differences over policy making and other issues.
Summary:
Summary:
Sushant Singh has said that short film is the "most challenging" format in filmmaking, adding, "From duration to budget, there is every possible constraint.
Summary:
Angad Bedi will replace Dulquer Salmaan who was to star opposite Janhvi Kapoor in Karan Johar's upcoming biopic on the first woman IAF chopper pilot Gunjan Saxena, as per reports.
Summary:
The film will be directed by choreographer-turned-director Ahmed Khan who had also directed the film franchise's second film 'Baaghi 2' starring Disha Patani.
'Baaghi' had starred Shraddha Kapoor.
Summary:
Sanya Malhotra has said that she is not in a hurry to be anywhere and to become anyone, adding, "I just want to do nice work with nice people." "I am very happy that I am an actor and I am getting to work in such amazing projects...with such amazing people.
Summary:
Virat Kohli became only the third captain in the history of Test cricket to go past 1,000 away runs in a calendar year.
Summary:
I think the year has ended on a beautiful note," Sindhu added.
Summary:
This is the victory of our ideology," Adityanath said while addressing a gathering after inaugurating the Samrasta Kumbh in Ayodhya.
Summary:
Astronomers using NASA's Hubble Space Telescope have discovered a Neptune-sized exoplanet evaporating 100 times faster than planets of similar size.
Summary:
Congress leader Kapil Sibal on Saturday said that the Supreme Court verdict on Rafale deal was based on "factual-bloomers".
Summary:
Separatists in Jammu and Kashmir have called for a 3-day bandh after seven civilians were killed in an encounter between security forces and militants in the state's Pulwama district on Saturday.
Summary:
Kerala police allegedly stopped four transgender women from proceeding to Lord Ayyappa's temple in Sabarimala on Sunday.
However, the police refuted the claims of threatening or misbehaving with the transgenders.
Summary:
Indian Army chief Bipin Rawat has said that Pakistan should "make terrorism the enemy" if it wants internal and external peace.
Summary:
The central bank had in April mandated payments companies to store data of Indian customers within the country.
Summary:
Kohli has now smashed 63 international hundreds and is only behind Ricky Ponting (71) and Sachin Tendulkar (100).
Summary:
A senior assistant manager at a bank in West Bengal stole coins worth â¹84 lakh over a period of 17 months to buy lottery tickets.
Summary:
In her lawsuit, the actress has accused Weinstein of forcing oral sex on her.
Summary:
Prosecutors in Spain have charged Colombian singer Shakira with tax evasion, alleging she avoided â¬14.5 million (â¹118 crore) in taxes.
Summary:
Three days after BJP's defeat in the Madhya Pradesh Assembly elections, former Chief Minister Shivraj Singh Chouhan changed his Twitter bio from "the Chief Minister of Madhya Pradesh" to "The Common Man of Madhya Pradesh".
Summary:
Only late Australian batsman Don Bradman had reached 25 Test tons in fewer innings (68) than Kohli.
Summary:
Congress MP Shashi Tharoor on Saturday defended Madhya Pradesh CM-designate Kamal Nath over allegations of involvement in the 1984 anti-Sikh riots, saying the court did not find any evidence against him.
Summary:
On being asked if the no-ball controversy has affected him mentally in the second Test, pacer Ishant Sharma said, "Maybe Australian media should answer...because it doesn't affect me." "I'm also human so you're bound to make mistakes...I wasn't worried about all these things," he added.
Summary:
Swiss skier Marc Gisin was airlifted to hospital after suffering a high-speed crash while competing in the downhill race at the men's World Cup in Italy.
Summary:
"Australians work very hard to get one baggy green but Khawaja wearing three," wrote another.
Summary:
The members of Wimbledon Park golf club have voted to sell their 120-year-old club to Wimbledon's organisers All England Lawn Tennis Club (AELTC) for ã65 million (â¹587 crore).
Summary:
Summary:
India has demanded the immediate release of Indian national Hamid Nehal Ansari whose three-year jail term ended on Saturday.
Summary:
A Lahore sessions court on Saturday acquitted two prime suspects accused of killing Indian national Sarabjit Singh inside the Kot Lakhpat jail in 2013, citing "lack of evidence" against them.
Summary:
An armoured truck scattered money across a US highway, causing several crashes as motorists exited vehicles to pick up the cash.
Summary:
Belmond owns hotels, high-end river cruises and train services across 24 countries.
Summary:
I will happily announce whenever I am getting married!" There were reports that after her cousin Priyanka Chopra's marriage, Parineeti will get married to her rumoured boyfriend Charit Desai.
Summary:
The actress reportedly told the police that she has received several threatening calls asking her to pay â¹25 crore to the gang.
Summary:
UEFA said its club finance panel ruled the ban will be activated if AC Milan fails to break even on football-related business in June 2021.
Summary:
Manchester City reclaimed the top position in the EPL points table after registering a 3-1 win over Everton on Saturday.
This was City's 9th league win in a row at home this season.
Summary:
A district-level Trinamool Congress (TMC) leader, Hamid Ansari, was allegedly shot dead in West Bengal's Purulia district on Friday.
Summary:
Members of Rashtriya Lok Samata Party (RLSP) have declared that they aren't going to break political ties with the BJP-led National Democratic Alliance (NDA).
Summary:
Congress, with 82 out of 99 crorepatis, accounts for the maximum number of crorepati legislators in the assembly.
Summary:
India and France have agreed to fight terrorism together, India's External Affairs Minister Sushma Swaraj and French Minister for Europe and Foreign Affairs Jean-Yves Le Drian said in a joint statement on Saturday.
Summary:
Event organisers apologised and said the Santa was trying to help.
Summary:
India's second-largest IT services firm Infosys on Saturday announced that it will divest its stake in Israeli startup CloudEndure for around $15.3 million (â¹110 crore).The Bengaluru-based company had picked up a minority stake in the startup for $4 million in 2015.
Summary:
The diamond was unearthed at the Diavik Diamond Mine in Canada's Northwest Territories in October by mining company Dominion Diamond Mines, which made the announcement earlier this week.
Summary:
Ahead of new Chhattisgarh Chief Minister announcement, Congress President Rahul Gandhi tweeted a picture of himself with contenders Bhupesh Baghel, TS Singh Deo, Tamradhwaj Sahu and CD Mahant.
Summary:
"The email read, 'Your services are not required as we have chosen a replacement auctioneer'," Madley revealed.
Summary:
Facebook-owned messaging platform WhatsApp has launched a new feature that lets users watch videos while they use the app.
Summary:
Congress leader Jyotiraditya Scindia was surrounded by supporters outside his residence in Delhi on Saturday, after senior leader Kamal Nath was announced as the CM designate of Madhya Pradesh on December 13.
Summary:
Summary:
Gowda ran away with â¹90 lakh, which she allegedly collected from 45 persons.
Summary:
Delhi police has arrested a 35-year-old jeweller-turned-robber accused of shooting dead a 21-year-old man following an altercation between the two after the victim's car brushed past the accused on Monday.
Summary:
AgustaWestland scam accused middleman Christian Michel's Italian lawyer Rosemary Patrizi said, "I'm afraid they'll (CBI) arrest me because I know everything about Christian Michel." "I hope nothing bad happens to me, I came here to help.
Summary:
Zee News has sent a â¹1,000-crore defamation notice to Punjab Minister Navjot Singh Sidhu for "his defamatory and false allegations against Zee Media" and asked him to apologise within 24 hours.
Summary:
A 54-year-old US man has been arrested for allegedly attacking a 20-year-old Indian-origin woman on the subway that left her with a fractured spine.
Summary:
Former RBI Governor Raghuram Rajan has said that India's growth is "clearly" not creating enough jobs.
So, it does suggest enormous demand for jobs," Rajan said, adding that growth is not benefiting all sectors and all people.
Summary:
The man, a music composer named Anand Tripathi, had reportedly rented Shrivastava's studio in 2016 for â¹1 lakh a month.
Summary:
'Rang Rasiya' director Ketan Mehta has said he has no curiosity to watch Kangana Ranaut starrer 'Manikarnika: The Queen of Jhansi'.
Summary:
The makers of Kangana Ranaut starrer 'Manikarnika: The Queen of Jhansi' have released the first look of actor Danny Denzongpa, who plays Ghulam Ghaus Khan, an Indian freedom fighter.
Summary:
Belgium thrashed England 6-0 to advance to their first-ever World Cup final on Saturday.
England, for the third consecutive time, lost their World Cup semi-final.
Summary:
Following the Indian hockey team coach's complaint against umpires at the Hockey World Cup, FIH's CEO said, "We will not review anything.
We will review the teams who have made such complaints against the umpires." "Be graceful whether you win or lose.
Summary:
NBA side Sacramento Kings trolled Golden State Warriors' Stephen Curry after he had jokingly claimed that he does not believe that man ever landed on the moon.
Summary:
After Bangladeshi cricketer Mashrafe Mortaza announced his entry into politics, he stated, "To be honest, the level where Imran Khan has reached, people cannot always reach there even if they want to." "My desire is to do something for sports...
Summary:
Google has launched an AI-based program in Thailand to help screen for diabetic retinopathy, which can cause permanent blindness.
Summary:
Mizoram CM and Mizo National Front (MNF) chief Zoramthanga has said that his party has no intention of leaving BJP-led National Democratic Alliance (NDA) and North East Democratic Alliance (NEDA).
Summary:
"For wormholes to be traversable and not to collapse because of gravitational effects, the repulsion force in their bottleneck should be extremely high," Konoplya added.
Summary:
Uttar Pradesh Director General of Police (DGP) OP Singh has claimed that out of fear, criminals are voluntarily cancelling their bail pleas and are preferring to surrender in the state.
Summary:
Tamil Nadu CM Edappadi K Palaniswami has said the state will move the Supreme Court, challenging National Green Tribunal's (NGT) decision to reopen Vedanta's Sterlite copper plant in Tuticorin.
Summary:
The project is reportedly estimated to cost around â¹406 crore, with the statue costing over â¹155 crore.
Summary:
The US and North Korea had signed an agreement at the Singapore summit to completely denuclearise the Korean Peninsula.
Summary:
A US federal judge on Friday ruled that the Affordable Care Act, commonly called Obamacare, is unconstitutional.
Summary:
The government said the court misinterpreted its previous affidavit and stated in the ruling that the deal's pricing and details were examined by CAG and Public Accounts Committee (PAC).
Summary:
Eliza, who featured in the series, was written off the show soon after accusing Weatherly of inappropriate behaviour.
Summary:
Actor Nafisa Ali, who has been diagnosed with stage 3 cancer, shared a video of her grandchildren cutting her hair.
"Asked my grandchildren to cut my hair as then they will not realise that I am going through Chemo.
Summary:
MIT engineers have devised a way to create 3D nanoscale structures by shrinking objects to one-thousandth of their original volume (10-fold reduction in each dimension).
Summary:
The ministry has revoked all missing passports and raised the issue with the Pakistan High Commission, the report added.
Summary:
Days after Meghalaya High Court judge SR Sen claimed India should've been declared a Hindu country (at the time of partition), he issued a clarification stating his judgement was "misinterpreted".
Summary:
A CBI investigation has revealed that Christian Michel, alleged middleman in the AgustaWestland VVIP chopper deal, had borne foreign travel expenses worth â¹92 lakh for serving and retired Indian Air Force officials during 2009-2013.
Summary:
US-based planemaker Boeing on Saturday opened its first 737 completion and delivery centre in China amid the ongoing US-China trade war.
It's a challenging environment," Boeing China President John Bruns said.
Summary:
The stay was sought by Japanese drugmaker Daiichi Sankyo, which alleged that Fortis promoters Malvinder Singh and Shivinder Singh created encumbrances on their shares despite the court's order.
Summary:
Stoney Westmoreland, a 48-year-old actor who plays the grandfather on Disney channel sitcom 'Andi Mack', has been fired by the channel following his arrest for allegedly trying to arrange a sexual connection with a 13-year-old he met online.
Summary:
I'll head out early next year," Tanushree said.
Calling the #MeToo movement in India a "revolution", Tanushree said, "What matters is its impact in the future".
Summary:
I was keen as he belongs to both countries equally." The film is based on the life of the Pakistani playwright and author born in British India, Saadat Hasan Manto.
Summary:
The film is based on Khanna's book of the same name.
Summary:
Talking about the delay, the film's director Anand Surapur said, "It was purely attributed to production issues.
Summary:
Zareen Khan was mobbed in Aurangabad where she had gone for a store launch on Saturday.
The police had to resort to lathi charge to control the mob.
Summary:
Oscar-winning actor Natalie Portman has said that Israel's nation-state law which declares the country as a Jewish state is "racist".
The 37-year-old actress is an Israel-born Jew.
Summary:
Former captain Sunil Gavaskar said that he was "astonished, baffled not just surprised" by Indian captain Virat Kohli's decision to open the second day's play with Ishant Sharma instead of Jasprit Bumrah.
Summary:
Summary:
Giles was a part of England's 2005 Ashes-winning team.
Summary:
A lawsuit filed against Apple has claimed its iPhone X is not 'all screen' as marketed by the company, saying it counts non-screen areas like notch and corners to make the claim.
Summary:
The Uttar Pradesh government has announced that it will install four new statues in the state, including a 25-foot-tall statue of late Prime Minister Atal Bihari Vajpayee at Lok Bhawan in Lucknow.
Summary:
Hitting out at RBI Governor Shaktikanta Das, BJP-ally Shiv Sena on Saturday said that Das is "dangerous" and has the potential to unleash "financial terror" in the country.
Summary:
Reacting to Supreme Court's verdict on Rafale deal, BJP spokesperson GVL Narasimha Rao said, "(Rahul Gandhi) may have trust in Pakistani courts but he'll not trust our SC." "He can have faith in Imran Khan & Hafiz Saeed but he'll not trust IAF or Army," he added.
Summary:
Finance Minister Arun Jaitley on Friday said that India cannot afford to have "fragile coalitions" for stable policy decisions and to continue on the path of reform.
Summary:
PM Narendra Modi, while interacting with booth-level workers from Tamil Nadu, said, "Our government has kept inflation on a tight leash." "We've successfully addressed issue of inflation which hurts the middle class.
Summary:
A Delhi court granted CBI four days extended custody of AgustaWestland scam accused middleman Christian Michel.
Summary:
Clashes erupted in Yemen's Hodeidah on Friday, residents said, a day after a ceasefire was agreed to between the warring parties of the Yemeni government and the Houthi rebels.
Summary:
American magazine Wired has reported that after split from Hollywood actress Amber Heard, Tesla CEO Elon Musk addressed a press conference by saying "We're going to go through six months of manufacturing hell." "Sorry for being a little dry...Got a lot on my mind right now," Musk reportedly added.
Summary:
Filmmaker Karan Johar has revealed that when directors Abbas-Mustan approached Anil Kapoor for the role of Sonam's reel-life father in their 2012 film 'Players', he refused, saying, "You think I look like her father?" The role eventually went to the late Vinod Khanna.
Summary:
Virat Kohli's 82*(181) and Ajinkya Rahane's 51*(103) helped India end the second day of the second Test in Perth at 172/3, trailing Australia by 154 runs.
Summary:
Summary:
Suspended RJD MLA Raj Ballabh Yadav and five other accused have been convicted by a Bihar court in connection with the rape of a minor girl in Nawada in 2016.
Summary:
"We have a bit more work to make sure the taste is 100% similar to conventional meat," Aleph Farms' Co-founder Didier Toubia said.
Summary:
An IndiGo aircraft set to fly from Mumbai to Lucknow via Delhi was grounded in Mumbai today following a bomb threat call, said officials.
Summary:
Former RBI Governor Raghuram Rajan has said farm loan waivers should not form part of poll promises.
Summary:
Adani Defence and Aerospace and Israel's Elbit Systems on Friday inaugurated India's first private Unmanned Aerial Vehicle (UAV) manufacturing facility in Hyderabad.
Summary:
Boney Kapoor has announced that he will be producing the Tamil remake of the legal-drama film 'Pink', which released in 2016 with Amitabh Bachchan and Taapsee Pannu in lead roles.
Summary:
Responding to the petition, the makers stated, an "ornamental dagger" was used in the scenes and not a 'Kirpan'.
Summary:
Anushka Sharma has said that in comparison to her earlier days in the film industry, she has "loosened up" and is now "more settled as an actor".
Summary:
Indian all-rounder Hardik Pandya took a five-wicket haul on his return to domestic cricket after an injury break.
Summary:
Summary:
The ball hit the helmet after Rahim failed to collect it off the bowling of Mohammad Saifuddin when Windies batsman Roston Chase missed it.
Summary:
Indian badminton player PV Sindhu defeated Thailand's Ratchanok Intanon 21-16, 25-23 in 54 minutes to reach her second straight final at the BWF World Tour Finals.
Summary:
Zurich University and EPFL engineers have developed a drone that can shrink itself to fit through narrow gaps.
is to develop drones which can be used in the aftermath of a disaster, as for example an earthquake," a researcher said.
Summary:
The technology needs considerations "to ensure its use...avoids abuse and harmful outcomes," Google Senior VP of Global Affairs Kent Walker said.
Summary:
Qualcomm on Thursday said it is asking to ban sales of Apple's 2018 iPhone models XS, XS Max and XR in China.
Summary:
RJD chief Lalu Prasad Yadav has had "four episodes of infection" in the last three months, Dr DK Jha of Rajendra Institute of Medical Sciences (RIMS) said on Saturday.
He further said that Lalu is in a stable condition now.
Summary:
A woman was allegedly burned to death by her in-laws for being unable to meet their dowry demands in Uttar Pradesh's Muzaffarnagar district.
Summary:
Around two weeks after clashes erupted in Uttar Pradesh's Bulandshahr over alleged cow slaughter, police officers in Meerut are making villagers take a pledge against cow slaughter.
Summary:
Two of the accused, Rajesh Bangera and Amit Degvekar, are in custody of the Karnataka SIT probing Gauri Lankesh's murder.
Summary:
West Bengal Chief Minister Mamata Banerjee on Saturday tweeted, "In (West Bengal), we have allocated more than â¹1,000 crore for the welfare of tea garden workers since 2011." "We give 35 kg rice at â¹2 per kg, electricity, and water supply for free to tea gardens," she added.
Summary:
Karnataka Pradesh Congress Committee has announced â¹1-lakh compensation to the kin of the people who died after eating prasad from a temple in the state's Chamarajnagar.
Summary:
The Nigerian military has revoked its earlier decision to suspend the UNICEF's activities in the northeast, hours after accusing the agency's staff of spying for Islamist militants.
Summary:
Announcing his appointment, the US President on Friday tweeted that Mulvaney has done an "outstanding job" in his administration.
Summary:
Nissan India commenced bookings of the new Nissan Kicks at â¹25,000 across all Nissan dealerships in India.
Summary:
IIIT-Bangalore and UpGrad's PG program in Machine Learning and Al has been ranked No 1 by AIM in 2018.
Summary:
The National Green Tribunal (NGT) on Saturday set aside Tamil Nadu government's order to close Vedanta's Sterlite copper plant in Tuticorin permanently.
Summary:
However, Reuters said the article was based entirely on J&J's internal documents.
Summary:
Summary:
Responding to a social media user's comment on her wedding expenses, Deepika Padukone said, "Mere paas bahut paise hai.
Summary:
Shortly after being named Rajasthan Deputy CM, Sachin Pilot took to Twitter to congratulate CM-designate Ashok Gehlot on Friday.
Summary:
Rajasthan Congress President and Deputy CM-designate Sachin Pilot earned his first salary as a journalist at BBC, where he interned after graduating from Delhi University's St Stephens College.
Summary:
Ex-South African cricketer Gary Kirsten, who coached the Indian men's team to 2011 World Cup victory, has reportedly applied for the Indian women's team head coach position.
Summary:
Former Indian cricketer Sachin Tendulkar shared a picture of shuttler Kidambi Srikanth and Saina Nehwal in a tweet congratulating Nehwal and Parupalli Kashyap on their marriage.
Summary:
Mizo National Front chief Zoramthanga was sworn in as the Chief Minister of Mizoram on Saturday.
Summary:
Two people have been arrested after 11 people died and over 60 others were hospitalised after consuming prasad from a temple in Chamarajanagar district, Karnataka.
Summary:
Seven civilians were killed and several others were injured in firing by security forces during clashes that followed an encounter which broke out between terrorists and security forces in Kashmir's Pulwama district on Saturday.
Summary:
Talking about a picture which appeared to show her underwater in Bengaluru's toxic Bellandur lake, South Indian actress Rashmika Mandanna has revealed it was actually taken in a swimming pool.
Summary:
The Centre had claimed its decision would prevent Oxytocin's misuse in dairy farming.
Summary:
Australia formally recognises West Jerusalem as Israel's capital, reversing decades of Middle East policy, Prime Minister Scott Morrison said on Saturday.
Summary:
Ranveer further said that Deepika is "truly" an independent woman.
Summary:
Tulsi had co-directed 'The Zee Horror Show' with his brother Shyam Ramsay.
Summary:
Priyanka Chopra and Nick Jonas will be visiting Switzerland for their honeymoon, as per reports.
Summary:
Former Jammu and Kashmir CM Mehbooba Mufti on Friday said BJP should welcome the Supreme Court's verdict in the Ayodhya case the same way it has hailed the Rafale deal ruling.
Summary:
Bengaluru and New Jersey-based intra-city logistics solution providing platform Sagisu has raised a seed fund of over â¹15 crore.
Summary:
Union Minister of State for Women and Child Development (WCD) Virendra Kumar on Friday said that so far, 134 complaints have been registered on the 'SHe-Box' portal from the central ministries.
Summary:
After a man set himself ablaze in front of a tent wherein a BJP leader was fasting to demand lifting of prohibitory orders at Sabarimala Temple, PM Narendra Modi asked BJP workers to inspire people "to avoid taking extreme steps".
Summary:
Writer Amitav Ghosh has been conferred with the 54th Jnanpith Award, a literary award presented to an author for "outstanding contribution towards literature".
Summary:
The Central Pollution Control Board (CPCB) has imposed a fine of â¹1 crore each on three oil companies for their failure to install anti-pollution "vapour recovery" systems at fuel stations in Delhi.
Summary:
The encounter began after security forces launched a cordon and search operation in Pulwama after receiving specific intelligence inputs on the presence of militants in the narea, a police official said.
Summary:
The accused reportedly sent emails to people saying they have won a lottery but would have to pay some money to get the amount.
Summary:
Talking about actors demanding high fee after delivering few box office hits, filmmaker Karan Johar has said that such actors are "crazy" and have a "swollen ego".
Summary:
Tamil Nadu's Pattali Makkal Katchi (PMK) party has filed a complaint against Hansika Motwani and director UR Jameel after the poster of upcoming movie 'Maha' showed the actress smoking a 'chillum'.
Summary:
He said this during a discussion on how some actors increase their fees after delivering a few box office hits.
Summary:
The couple got married in a traditional Hindu ceremony, however, they took an extra 'phera'.
Summary:
Saina and Kashyap will reportedly host a reception on December 16 in Hyderabad.
Summary:
Jibin Sunny, a second-year student at KJ Somaiya College of Nursing, was rushed to a hospital, however, doctors pronounced him dead on arrival.
Summary:
Spain's Angela Ponce is the first transgender contestant in Miss Universe's 66-year history.
Summary:
The foundation will be overseen by Perron's 52-year-old daughter.
Summary:
The Piramal family hosted the couple's first reception on December 13 at the newlyweds' â¹450-crore sea-facing marital home, Gulita, in Mumbai.
Summary:
IL&FS has set a base price of nearly â¹9 crore for these vehicles.
Summary:
A 17-year-old Canadian filmed himself quitting his job at Walmart over the store's intercom.
Summary:
Shankar is currently President, 21st Century Fox, Asia, and Chairman and CEO of Star India.
Summary:
Deepika Padukone and Ranveer Singh's wedding, which took place on November 14-15, is the fifth most googled wedding.
Summary:
Sona Mohapatra, who accused Kailash Kher of sexual harassment, has started a petition demanding Kher's withdrawal as performer at a cultural event organised by the Delhi government.
Summary:
Actor Riteish Deshmukh will play a dwarf in the upcoming action-drama film 'Marjaavaan'.
Even though he is a dwarf, his character is larger than life," the film's director Milap Zaveri said about Deshmukh's character.
Summary:
Indian shuttlers PV Sindhu and Sameer Verma progressed to the semi-finals stage of the BWF Tour Finals.
Summary:
Former Indian cricketer Sachin Tendulkar tweeted a message in Chinese to wish Indian chinaman spinner Kuldeep Yadav on his 24th birthday.
Have a wonderful year ahead." "Happy birthday Mr Chinaman @imkuldeep18 Hope you have a spin-full year ahead," tweeted Yusuf Pathan.
Summary:
NBA star Stephen Curry has accepted space agency NASA's offer to tour its lunar lab after he had jokingly said that he did not believe humans had ever been to the Moon.
Summary:
The Wrestling Federation of India (WFI) has handed Indian wrestlers Sakshi Malik and Sushil Kumar Grade A contracts after admitting that not placing India's Olympic medallists in the top contract bracket was a mistake.
Summary:
Facebook further announced it will roll out an alert to users and also a set of tools to help delete the leaked images.
Summary:
PDP chief Mehbooba Mufti on Friday stated, "Despite knowing alliance with BJP was suicidal for PDP, we put everything at stake." "For a party which...encourages talks with separatists, we thought Modi...will reach out to Pakistan and Jammu and Kashmir's people," she said.
Summary:
Hailing the Supreme Court's verdict on Rafale deal, Oil Minister Dharmendra Pradhan has accused Congress of raising questions on Rafale deal in order to hide its own failures.
Summary:
A bus driver was allegedly stabbed by two men after he refused them to get down from the rear door of the vehicle in Delhi on Wednesday.
Summary:
At least four people, including a newly married woman, were killed after a car collided with a truck in Gujarat on Friday.
Summary:
One of the killers of Saudi journalist Jamal Khashoggi was heard saying "I know how to cut" on an audio tape of the killing, Turkish President Recep Tayyip ErdoÃÂan said.
Summary:
A statue of Mahatma Gandhi has been removed from the University of Ghana following protests by students and faculty.
Summary:
At least 10 people, including a 12-year-old girl, died and more than 80 people were hospitalised after consuming prasad from a temple in Karnataka's Chamarajanagar district.
Summary:
Mumbai Police wrongly criticised Sonam Kapoor's 'The Zoya Factor' co-star Dulquer Salmaan in a Twitter post where he can be seen using mobile while 'driving'.
Summary:
Ishant reportedly overstepped 16 times in the first innings of the Test.
Summary:
Criticising coach Ravi Shastri for his statement that the Virat Kohli-led side is the best Indian travelling side in the last 15-20 years, ex-cricketer Gautam Gambhir said people who haven't won anything give such statements.
Summary:
Dilwar Hussain, who was arrested twice over alleged involvement in rhino poaching, has won the gram panchayat president seat from Suwaguri in Assam's Biswanath district on a Congress ticket.
Summary:
Summary:
US President Donald Trump calls India a "true friend", Alice Wells, US' Principal Deputy Assistant Secretary for South and Central Asian Affairs, said.
Summary:
Union Minister Nitin Gadkari on Friday clarified that his 'Unfair to call one-time loan defaulter a chor' remark for Vijay Mallya has been taken out of context.
Summary:
A 55-year-old farmer, who came to a Mumbai civic hospital from Konkan, was given an appointment for February 15, 2020 by the hospital's MRI department that has only one MRI machine.
Summary:
Sri Lanka's Mahinda Rajapaksa will resign from the post of Prime Minister on Saturday amid the political crisis in the country, his son Namal Rajapaksa announced on Twitter.
Summary:
The new law requires people who wish to change their gender to obtain a certificate from a doctor.
Summary:
Low, the alleged mastermind behind the theft of $4.5 billion from a government fund, allegedly paid $250 million for the yacht in 2014.
Summary:
Iraq and Saudi Arabia continued to be the top two oil sellers to India.
Summary:
Al Amoudi also owns gold mines, coffee plantations, a fuel company and hotels in Ethiopia.
Summary:
Abhishek Bachchan took to Twitter to announce that he will be starring in the second season of the web series 'Breathe', opposite actor Amit Sadh.
Summary:
When asked how it feels to be called "senior" to actresses Janhvi Kapoor and Sara Ali Khan, Alia Bhatt said, "I am not a senior".
Summary:
Actor Rajpal Yadav, who is serving a three-month prison sentence in Delhi's Tihar jail, performed a comedy act as part of a cultural programme organised for the inmates.
Summary:
Australia's former captain Michael Clarke said that the Indian team made an error by not picking a specialist spinner for the ongoing second Test in Perth.
Summary:
Summary:
Rashid, who had earlier pulled off the shot in the T10 League, pulled off the shot in the MSL match off his very first delivery.
Summary:
The Windies failed to win a bilateral ODI series for the 13th successive time after Bangladesh won the third and final ODI by eight wickets.
Summary:
Taking a jibe at BJP, Congress President Rahul Gandhi said, "Defence Minister Nirmala Sitharaman says 'Rafale's price is a secret'.
How can price be a secret?
Summary:
PM Narendra Modi on Friday said, "Currently, Kerala is governed by two models.
Summary:
Hailing the Supreme Court's verdict on Rafale deal, Reliance Group Chairman Anil Ambani said Reliance Defence is "committed to India's national security".
Summary:
Himanshu Sharma, a 22-year-old Indian guitarist was found dead at his apartment in Dubai on Wednesday.
Summary:
The Irish Parliament on Thursday passed a bill to legalise abortions following a landmark referendum earlier this year.
Summary:
She's the first Russian to be convicted of attempting to influence American politics during the 2016 presidential elections.
Summary:
Saina, who has been in a relationship with the 32-year-old shuttler since 2007, had a court marriage in Hyderabad.
Summary:
A leopard entered a courtroom in Gujarat's Surendranagar district in the middle of proceedings, following which the judge, lawyers and other staff managed to escape and lock the leopard inside.
Summary:
Thanks for making this special day, perfect!!!!" Responding to it, the actor tweeted, "God Bless You."
Summary:
Summary:
After the Supreme Court rejected all petitions asking for an investigation into the Rafale deal, former J&K CM Omar Abdullah tweeted, "The BJP really has the devil's luck (relax I'm not calling you devils, it's only an idiom)".
Summary:
Congress MP Shashi Tharoor has shared a chemistry teacher's wedding invitation that represented the bride and the groom as two atoms with their name as unique symbols 'Sa' and 'Vn', calling it 'Perfect Chemistry'.
Summary:
In an apparent attack on Congress after the Supreme Court declined to order a CBI probe into the Rafale deal, Finance Minister Arun Jaitley said, "Falsehood is bound to fall apart." He added, "Falsehood has a very short life.
Summary:
Summary:
Police claimed Kaushik's co-anchor was also in the flat and they reportedly had an argument before she fell.
Summary:
A statement was issued by the traffic police, saying Fadnavis' convoy vehicles are exempted from speed limits over "security threat perception."
Summary:
IIT Madras has opened two separate entrances besides setting up separate utensils and wash basins for students having vegetarian and non-vegetarian food in a campus mess.
Summary:
It said it wanted to celebrate the "once in a lifetime" inter-Korean summits earlier this year.
Summary:
She died 10 days after the machine was turned off.
Summary:
Newly-weds Isha Ambani and Anand Piramal hosted their first wedding reception at 'Gulita', their new â¹450-crore sea-facing bungalow in Mumbai.
Summary:
TV show host Ellen DeGeneres revealed in an interview that she is considering retiring from her 15-year-old show 'The Ellen DeGeneres Show'.
Summary:
A rape case was filed against the actor based on a complaint by producer Vinta Nanda.
Summary:
With the mega superstar girls!" Sharing another picture of them, Karan wrote, "Girls just wanna have fun!" Shahid Kapoor, with his half-brother Ishaan Khatter, will also appear on the show.
Summary:
Speaking about the current Australian team and its performance in the series against India, Former Indian cricketer Gautam Gambhir said, "If Australia continues to play with a defensive mindset, India will win the series." "Australia's batting is currently their weakness.
Summary:
Sri Lankan pacer Lasith Malinga has been named the team's captain for the ODI series and the lone T20I against New Zealand.
Summary:
YouTube also removed over 224 million comments and nearly 1.7 million channels.
Summary:
"The current AIADMK government...is working with the BJP to undermine the state," Balaji said while talking about his decision to join DMK.
Summary:
Another executive alleged Musk would say, "I've got to fire someone today".
Summary:
The Supreme Court on Thursday dismissed a PIL demanding the immediate execution of the four death row convicts in the 2012 Nirbhaya gangrape and murder case.
Summary:
Following the accident, the injured were admitted to a hospital.
Summary:
The court has prohibited her from entering the premises of Pampa police station, and from posting online content that can hurt people's sentiments.
Summary:
An 11-year-old girl was allegedly raped by a Class 9 student in Gujarat's Banaskantha district on Wednesday.
They added, "He allegedly took her to a castor field...
Summary:
After the Supreme Court dismissed all petitions seeking an investigation into the Rafale deal, Finance Minister Arun Jaitley said, "Truth has only one version and falsehood has many." "All figures by the government are correct and all figures by Rahul Gandhi are false and I have justified it," he added.
Summary:
State Congress President Sachin Pilot has been selected as the state's Deputy Chief Minister.
Summary:
A Pakistan-based journalist had reportedly gifted the stuffed partridge to Sidhu.
Summary:
Reacting to Kohli's one-handed flying catch in the second over after tea during Australia's first innings in the second Test on Friday, a user tweeted, "That's what tea does to Indians." Other tweets read, "Superman Kohli.
Super catch!!
Summary:
India captain Virat Kohli, while fielding at second slip, completed a diving catch to dismiss Peter Handscomb on the bowling of pacer Ishant Sharma during Australia's first innings in the second Test on Friday.
Summary:
The 25-year-old, who is playing his second Test, first dismissed Marcus Harris, who top-scored on the first day with 70 runs.
Summary:
Ahead of announcing the new Chief Minister of Rajasthan, Congress President Rahul Gandhi tweeted a picture with contenders Sachin Pilot and Ashok Gehlot.
Summary:
Numeric combination '123456' has been ranked as the worst password for the fifth consecutive year in 'Top 100 Worst Passwords of 2018' by US-based company SplashData, which analysed over 50 million leaked passwords.
Summary:
Officials further said people bet on how many times the finches chirp.
Summary:
A man has been rescued after being trapped for almost two days inside the grease duct of a Chinese restaurant in US, which had been shut.
Summary:
Miss USA 2018, Sarah Rose Summers, has apologised for mocking fellow Miss Universe contestants Miss Vietnam and Miss Cambodia for not speaking English.
Summary:
Eleven state-run banks are currently under the framework, which imposes lending and other restrictions.
Summary:
Reliance Group Chairman Anil Ambani on Friday welcomed the Supreme Court's order on the $8.7-billion Rafale warplane deal.
Summary:
Denying the rumours of being hospitalised, veteran singer Lata Mangeshkar tweeted, "Meri sehat ke baare mein kuch afwaahein uth rahi hain.
Summary:
Ankita replied, "Thank you Sushant and I wish you the same."
Summary:
Ranveer Singh has said that the #MeToo movement in India was historic and revolutionary.
"You had perpetrators who aren't working anymore...In my perception, what the movement should have done, I think it has," Ranveer further said.
Summary:
Yuvraj Singh's wife Hazel Keech, responding to her pregnancy rumours, said, "I'm...just a little embarrassed because each time I put on a little weight, the reports say I'm pregnant." "This is like the 3rd or 4th time.
Summary:
Congress leader Kamal Nath will take oath as the Chief Minister of Madhya Pradesh on December 17 at the Lal Parade Ground in Bhopal.
Summary:
Indian hockey team's chief coach Harendra Singh blamed poor umpiring for the team's exit from the ongoing men's Hockey World Cup in the quarterfinal stage of the tournament.
Summary:
Speaking about the condition of hockey in Pakistan, Asian Hockey Federation CEO Tayyab Ikram said, "The sport in Pakistan is almost dead.
Summary:
Apple is reportedly planning to self-produce its cellular network modems amid existing lawsuits with US-based chipmaker Qualcomm over patents and royalty.
Summary:
Telangana CM K Chandrashekar Rao (KCR) on Friday appointed his son KT Rama Rao (KTR) as the working president of Telangana Rashtra Samithi.
Summary:
After the Supreme Court dismissed all petitions seeking an investigation into the Rafale deal, BJP President Amit Shah said, "Truth always triumphs!" He also said the judgement "exposes the campaign of misinformation spearheaded by Congress President for political gains".
Summary:
Summary:
At least seven people were killed and three others were injured after a vehicle skidded off the road in Reasi district of Jammu and Kashmir.
Summary:
Tibetan spiritual leader the Dalai Lama on Friday said "the Buddhist tradition is very liberal" and that there could be a "female Dalai Lama" in the future.
Summary:
Odisha Chief Minister Naveen Patnaik watched a Hockey World Cup match alongside about 30 surrendered Naxals in Bhubaneswar on Thursday.
Summary:
The Supreme Court on Friday dismissed all petitions seeking investigation into $8-billion Rafale deal with French company Dassault, stating it's not the court's job to compare pricing details.
Summary:
MTV Roadies creator Raghu Ram's former wife, actress Sugandha Garg, shared a picture from Raghu's second marriage to Italian-Canadian singer Natalie Di Luccio on Wednesday.
Summary:
After being officially declared as Madhya Pradesh Chief Minister-designate, Kamal Nath on Thursday said, "I was not hungry for the chief minister's post...I was hungry to get Congress back in Madhya Pradesh." The nine-time Lok Sabha MP said there were no Scindia or Digvijay camps in the party, adding, "Everyone will be accommodated.
Summary:
However, the plane did not cross the Kármán line which is commonly agreed upon as the boundary between Earth's atmosphere and space.
Summary:
Flipkart Co-founder and former Group CEO Binny Bansal is reportedly planning to launch a Bengaluru-based startup xto10x Technologies along with former McKinsey consultant Saikiran Krishnamurthy.
Summary:
A 20-year-old man working as a sweeper at Domino's Pizza was among four youths arrested for allegedly robbing the outlet of over â¹1.5 lakh at gunpoint in outer Delhi.
Summary:
South Indian actress Rashmika Mandanna did an underwater photoshoot in Bengaluru's toxic Bellandur lake to raise awareness about water pollution.
Summary:
The Himachal Pradesh Assembly on Thursday passed a resolution to declare cow as 'Rashtra Mata (mother of the nation)'.
Summary:
A Dallas-bound Southwest Airlines plane was forced to turn around after a human heart was mistakenly kept on the connecting flight instead of being taken out of the cargo hold in Seattle.
Summary:
A 62-year-old Spanish man who lived with the body of his 92-year-old dead mother for "almost a year" to continue to collect her pension has been arrested for fraud, the police said on Thursday.
Summary:
An Iranian political activist who was jailed over a Facebook post on Supreme Leader Ayatollah Ali Khamenei and other offences has died after spending 60 days on hunger strike.
Summary:
Summary:
Ranveer Singh, while talking about his wife and actress Deepika Padukone, revealed, "I allow her to make most of the decisions because she is just better at everything." "I have no qualms in admitting that she is a much more evolved, much more mature person than me," he added.
Summary:
Shweta and Rohit have been in a relationship for around four years and she proposed to him in Goa, as per reports.
Summary:
Summary:
American singer Taylor Swift had used a hidden camera with facial recognition technology to detect stalkers at her Los Angeles concert in May, as per a Rolling Stone report.
Summary:
Summary:
Summary:
Summary:
However, in 2016, India signed a deal to purchase 36 jets from France.
Summary:
Summary:
The image showing bright coronal streamers was captured on November 8 from a distance of over 2.7 crore kilometres from the Sun.
Summary:
Indian Space Research Organisation (ISRO) is planning to reuse PSLV rocket's last stage, which becomes "dead" after it releases the primary satellite in orbit.
Summary:
The counter-intelligence wing of Punjab Police arrested two suspected drug peddlers and recovered four kilograms of heroin from their possession, police said on Thursday.
Summary:
A Trinamool Congress leader and two other people were killed near Kolkata when unidentified men hurled bombs and opened gunfire at the vehicle of Trinamool MLA Biswanath Das. The incident occurred shortly after Das disembarked from the vehicle at a party office nearby, escaping unhurt.
Summary:
At least 13 people were trapped after flooding occurred in an illegal coal mine in Meghalaya's East Jaintia Hills district, police said on Thursday.
Summary:
Talking about the Supreme Court verdict on Rafale deal, Union Minister Rajnath Singh said, "The matter was crystal clear from the beginning." "The allegations levelled by Congress were baseless and to gain political mileage," he added.
Summary:
The residential development at Sector 85 contains host of air purification and medicinal plants across the vicinity to provide best air quality in the city.
Summary:
After emerging as single-largest party with 114 seats in Madhya Pradesh, Congress announced that nine-time Lok Sabha MP Kamal Nath will be sworn in as the state's Chief Minister.
Summary:
Ajit Agarkar, who is the quickest fast bowler to reach 50 ODI wickets, slammed the fastest ODI fifty for India off 21 deliveries against Zimbabwe on December 14, 2000.
Summary:
Australia needed one run off two balls with one wicket remaining when Windies' Joe Solomon's direct hit resulted in the first-ever tied Test.
Summary:
A drop-in pitch is prepared away from the venue in which it is used, and is dropped into the site by a crane.
Summary:
Rathore said â¹979.78 crore was spent in 2014-15, â¹1,160.16 crore in 2015-16, â¹1,264.26 crore in 2016-17 and â¹1,313.57 crore in 2017-18.
Summary:
All four Premier League clubs, which qualified in the UEFA Champions League 2018-19 group stage, have advanced to the Round of 16 of the competition.
Summary:
Reports had said that Ghosn's sister was paid $100,000 a year as remuneration for a non-existent "advisory role" since 2002.n
Summary:
The government has spent more than â¹2,012 crore on chartered flights, maintenance of aircraft and secure hotline facilities for PM Narendra Modi's foreign visits since 2014.
Summary:
Union Minister Nitin Gadkari on Thursday said it's unfair to tag a "one-time loan defaulter Vijay Mallyaji" as a "chor" (thief).
Mallya defaulted on loans worth â¹9,000 crore.
Summary:
A 35-year-old IT professional from Tamil Nadu, on a US work visa, was awarded nine years in prison for molesting a sleeping woman during a flight.
Summary:
The US Senate has voted 56-41 to end US military support for the Saudi-led coalition in Yemen's civil war.
Summary:
The agreement included the deployment of neutral forces and the establishment of humanitarian corridors.
Summary:
Summary:
Instead of a 'bundled' personal accident cover, vehicle owners can buy CPA cover separately.
Summary:
While speaking about actors and their "delusions" about their status in Bollywood, filmmaker Karan Johar said, "It is a disease.
Summary:
In a post shared on Instagram, actress Kangana Ranaut revealed she was "fascinated with the 150-year-old weapons" used in her film 'Manikarnika: The Queen of Jhansi'.
Summary:
The Alia Bhatt and Ranveer Singh starrer 'Gully Boy' will have a world premiere at the 69th Berlin International Film Festival.
Summary:
Creator of Indian TV show 'CID' Brijendra Pal Singh has been appointed as the new president of the Film and Television Institute of India (FTII) Society and Chairman of Governing Council.
Summary:
Team India captain Virat Kohli's post on Instagram, wishing his wife Anushka Sharma on her birthday, was the most 'loved' post in India this year, Instagram revealed in its 'Year in Review' feature.
Summary:
It further added that restricting Google Photos from automatically compressing content will also result in taking up the storage quota.
Summary:
The French foreign ministry on Thursday confirmed that âÂÂArianeâÂÂ, its website for citizens travelling abroad, had been hacked and usersâ personal data had been stolen.
Summary:
Further, a BJP Mahila Morcha meeting will be held on December 21 and 22 in Ahmedabad.
Summary:
Army personnel who feign illness or disability in order to avoid duty will soon face action from the Army, he added.
Summary:
She said a total of 546 districts were declared Open Defecation Free (ODF) during last three years and the current financial year.
Summary:
The Supreme Court on Thursday rejected a petition by Reliance Communications (RCom), seeking to extend the December 15 deadline to repay â¹550-crore dues to Ericsson.
Summary:
Finance Minister Arun Jaitley has said that former PM Jawaharlal Nehru had written to RBI stating that economic policy is determined by government, while RBI has autonomy over monetary policy.
"We are the sovereign government...
Summary:
Following the 2018 Assembly elections in five states, the BJP and its allies now control governments in 16 of the 29 states in India.
Summary:
Ahead of announcing the new Chief Minister for Madhya Pradesh, Congress President Rahul Gandhi tweeted a picture with contenders Kamal Nath and Jyotiraditya Scindia.
Meanwhile, the party is yet to announce the CM face for Rajasthan as well as Chhattisgarh.
Summary:
After BCCI shared the picture of the 'bright green' pitch to be used for the second Australia-India Test at Perth, a user tweeted, "Kahan hai pitch?" Another user wrote, "Where is the pitch?
Summary:
India crashed out of the men's Hockey World Cup after losing in the quarter-final to Netherlands 1-2 on Thursday.
Summary:
India's only state Happiness Minister Lal Singh Arya lost his Gohad seat to Congress candidate Ranvir Jatav by a margin of 23,989 votes.
Summary:
Congress lost Mizoram Assembly elections to Mizo National Front (MNF), after having ruled the state since 2008.
Summary:
"Had I accepted the money even after underperforming then I would've spent my entire life in guilt," he added.
Summary:
Recently, Gambhir had criticised authorities for allowing Azharuddin to ring the bell at Eden Gardens before a match.
Summary:
The Supreme Court has issued a notice to Maharashtra CM Devendra Fadnavis on a petition seeking his disqualification as a legislator for allegedly not disclosing two criminal cases pending against him in his 2014 poll affidavit.
Summary:
So both physically and mentally I'm from this country and that's how I'm a son of India," he added.
Summary:
A 55-year-old woman was killed while two others were injured after a car driven by a doctor named Ambuj Garg allegedly hit them in central Delhi on Tuesday.
I wasn't speeding," said Garg.
Summary:
A Mumbai-based company's woman CEO said she was "harassed and nearly assaulted" by an Ola cab driver in Bengaluru and Ola charged for her "life's scariest ride".
Summary:
"Little did he know the rookie will turn into a Jumbo Jet," Smriti added.
Summary:
Vyas, who was crowned Femina Miss India Earth in 2008, reportedly met Nagar in Mumbai during a short-term acting course.
Summary:
The average assets per MLA in the newly elected Assembly is worth â¹15.71 crore, it added.
Summary:
The Mizoram Assembly will not have a single woman MLA as all the 15 female candidates lost in the Assembly elections in the state.
Summary:
State regulators in California, US are considering charging a tax on texting services to help support public programs that make phone services accessible to the poor.
Summary:
Three engineers including Co-founders Vinay NP and Praneeth Doguparthy from int.ai will join Walmart Labs.
Summary:
US-based biotech firm Zymergen on Thursday announced that it raised $400 million in a Series C funding round led by SoftBank Vision Fund.
Summary:
BJP General Secretary Bhupender Yadav on Thursday said that the moment court clears the matter of organising rallies and yatras in West Bengal, the party will undertake its proposed programmes.
Summary:
Former Jammu and Kashmir CM Omar Abdullah on Thursday took a dig at PM Narendra Modi and said he talks a "great deal" but does not listen as much as he should.
Summary:
The computer was then able to reconstruct the transparent object from a new dark image.
Summary:
US President Donald Trump on Thursday said that he never directed his former personal attorney Michael Cohen to break the law, adding that Cohen pleaded guilty to two campaign charges "to embarrass the president".
Summary:
Sri Lanka's Supreme Court has called the Parliament's dissolution by President Maithripala Sirisena illegal.
Summary:
An Indian-origin man has been sentenced to seven years in prison with six strokes of the cane in Singapore for stabbing his pregnant wife after he saw her talking to a man.
Summary:
"[India has] a government that is pro-business...
"[Going] forward, [India is] going to have a large amount of liquidity put into the system," he further said.
Summary:
Minister of State for Civil Aviation Jayant Sinha on Thursday said the government owes cash-strapped Air India â¹1,000.62 crore.
and normally such dues are cleared from time to time," he said.
Summary:
Following BJP's defeat in Madhya Pradesh, where it ruled for 15 straight years, outgoing CM Shivraj Singh Chouhan said he wouldn't aspire for a post in the Centre.
Summary:
Comedian Ali Asgar has revealed that he was once molested by drunk men at a Delhi wedding, where he was performing as the character 'Dadi'.
Summary:
YouTube Rewind 2018 has become the platform's most-disliked video ever in 7 days.
Summary:
Chinese smartphone maker Vivo on Thursday said it has acquired 169 acres of land in Uttar Pradesh and will spend â¹4,000 crore to set up its second plant in India.
Summary:
Indian and Chinese soldiers performed bhangra together during the 7th Sino-India joint exercise 'Hand-in-Hand' in China.
Summary:
Ministry of Earth Sciences issued a cyclone warning for Andhra Pradesh on Thursday, stating that a depression over the southeast Bay of Bengal is likely to result in a cyclonic storm over the next 24 hours.
Summary:
"Students are asked to concentrate on physical games...and give more importance to their career growth," the circular read.
Summary:
Goa CM Manohar Parrikar, who's suffering from a pancreatic ailment, didn't celebrate his 63rd birthday on Thursday in public for the first time after becoming an MLA over two decades ago.
Summary:
Canada has listed Khalistani extremism as a security concern in its '2018 Public Report on the Terrorism Threat to Canada' for the first time since the inception of the report in 2013.
Summary:
Rahul Walke, a Buddhist monk, was killed in an alleged leopard attack while he was meditating in Maharashtra's Tadoba forest, which is also a protected tiger reserve.
Summary:
US-based Fox News channel is being trolled for mistakenly flashing President Donald Trump's name as 'David Trump' during a broadcast on runners-up for Time magazine's 2018 Person of the Year.
Summary:
An East German Stasi secret police identity card belonging to Russian President Vladimir Putin when he was a Soviet spy has been found in police archives in the city of Dresden.
Summary:
Asia's richest person Mukesh Ambani's daughter Isha Ambani wore her mother Nita Ambani's 33-year-old wedding saree at her own wedding to Anand Piramal on Wednesday.
Summary:
He further said the state governments are competent to frame regulations for enabling bike taxis.
Summary:
Since its trailer released in November, the makers of 'Zero' have released three songs from the film so far.
Summary:
Akshay had allegedly facilitated the meeting to get his 2015 film 'Singh is Bliing' cleared.
Summary:
American TV drama series 'Whiskey Cavalier', starring Indian comedian Vir Das, will release on February 27, next year.
Summary:
The CBI submitted the CCTV footage to a forensic lab, based on a petition filed by Jiah's mother in the Bombay High Court.
Summary:
Apple on Thursday announced that it is investing $1 billion to build a new campus in Austin, Texas.
Summary:
The Association for Democratic Reforms (ADR), a watchdog, has claimed that as many as 73 out of 119 newly elected MLAs in Telangana have declared "criminal cases" against themselves.
Summary:
A man has been convicted by a court for raping an 11-year-old girl and sentenced him to seven years in prison in Uttar Pradesh's Muzaffarnagar.
Summary:
MoS for Highways Mansukh L Mandaviya on Thursday said India will develop 4.5 kilometres stretch of Kartarpur Sahib corridor from Dera Baba Nanak in Punjab's Gurdaspur to International Border with Pakistan.
Summary:
"I think it is right that another (Conservative Party) leader takes us into that general election," she said.
Summary:
Private lender Yes Bank on Thursday said its board has chosen a new non-executive, part-time Chairman and shortlisted names for the Chief Executive Officer (CEO) post.
Summary:
GST has proven to be a game changer and is positively impacting taxation practices, he added.
Summary:
A European Union (EU) court has upheld a decision to impose a â¬40-million (â¹325 crore) fine on India's Lupin in a litigation over blood pressure lowering drug Perindopril.
Summary:
Bandhan Bank CEO Chandra Shekhar Ghosh has said the Kolkata-based lender will open 40 branches by end of December after RBI approved the move.
Summary:
As part of the launch offer, Axis Bank card users can either avail a cashback worth â¹1,500 on all transactions or a cashback worth â¹2,000 on EMI transactions.
Summary:
Off-spinner Ravichandran Ashwin, who bowled 86.5 overs and took six wickets in the first Test against Australia, has been ruled out of the second Test due to an abdominal injury.
Summary:
If BJP had got a total of 4,337 more votes in the seven constituencies it lost with less than 1,000 votes in Madhya Pradesh, it would've been able to form the government.
Summary:
The Supreme Court on Wednesday extended to December 31 the deadline for filing claims and objections for the inclusion of names in the National Register of Citizens (NRC) for Assam.
Summary:
Fugitive liquor baron Vijay Mallya tweeted "Young Champions", congratulating Congress leaders Sachin Pilot over his victory in Rajasthan and Jyotiraditya Scindia for the party's win in Madhya Pradesh.
Summary:
A court in Ranchi has issued summons to Congress chief Rahul Gandhi for an alleged remark he made against BJP chief Amit Shah.
Summary:
The BSE-listed company had forayed into engineering after the production of the Premier Padmini ceased in 1997.
Summary:
Scientists have discovered that the Dracula ants can snap their jaws at a speed of over 322 kmph, the fastest animal movement on record.
Summary:
The farmer, Sanjay Sathe, sent his earnings in the money order as a sign of protest.
Summary:
After Enforcement Directorate (ED) remarked "Who leaves for a meeting with 300 bags and a cargo", fugitive Vijay Mallya responded, "Next the ED will say that I chartered the Jet Airways 777 !" The ED made the remark after Mallya claimed he left India to attend an event in Switzerland.
Summary:
Taking a dig at new RBI Governor Shaktikanta Das, Gujarat BJP leader Jay Narayan Vyas on Wednesday said, "The New RBI Governor Das' educational qualification is MA (History).
Summary:
Meghalaya High Court judge SR Sen on Wednesday said, "(At the time of partition) Pakistan declared themselves as an Islamic country and India since was divided on the basis of religion should have also been declared as a Hindu country".
Summary:
Miss Universe 2018 candidates Miss USA, Miss Colombia and Miss Australia have been criticised for mocking fellow contestants for not speaking English.
Summary:
Harvard Medical School professor Timothy Springer's $5 million investment in biotech firm Moderna in 2010 has turned into $400 million in value at the company's recent IPO.
Summary:
Speaking about her film 'Thugs of Hindostan' and its performance at the box office, Katrina Kaif said, "Everyone tried their best but it didn't work with the audience on that level".
Summary:
After TRS chief K Chandrashekar Rao said he'll "actively participate" in national politics, BJP national spokesperson GVL Narasimha Rao claimed he was pursuing his ambitions like other regional parties.
Summary:
Ahead of the 2019 elections, the Shiromani Akali Dal (SAD) chief Sukhbir Singh Badal on Thursday dissolved the party units in Delhi, Uttar Pradesh and Rajasthan with immediate effect.
Summary:
Congress leader Karan Singh has written a letter to UP CM Yogi Adityanath, requesting him to construct a statue of Sita in addition to the proposed Lord Ram statue in Ayodhya.
Summary:
The Lok Sabha was on Thursday adjourned for the day following protests by opposition parties over various issues, including the Rafale deal and Cauvery river water.
Summary:
Bengaluru-based home-cooked food distribution startup FoodyBuddy on Wednesday announced it has raised â¹6 crore in pre-Series A from Prime Venture Partners.
Summary:
Reacting to Meghalaya High Court judge SR Sen's remark that India should have been declared a Hindu country in 1947, former J&K CM Farooq Abdullah said, "It is a secular country and will remain secular." "Those who want to talk anything else...
Summary:
Around 49 pilots tested positive for alcohol till November this year, MoS for Civil Aviation Jayant Sinha said.
Summary:
Panel also expressed anguish over subhuman conditions of jawans in the country.
Summary:
At least three labourers were killed and two others were injured in a boiler explosion on Thursday at the Krishna Steel Company in Dadra and Nagar Haveli's Silvassa district, according to a media report.
Summary:
The Supreme Leader further called on Iranians to remain "vigilant".
Summary:
As many as 48 MPs from the Conservative Party had triggered the no-confidence vote in protest against May's Brexit plan.
Summary:
The rate of gun deaths in the US rose to its highest level in over 20 years in 2017, data provided by the Centers for Disease Control and Prevention (CDC) revealed.
Summary:
The quality of fly ash produced at NTPC's power stations is good with respect to fineness, low unburnt carbon and is ideal for use in the manufacture of cement, concrete, bricks/blocks/tiles etc.
Summary:
Notably, Rao had dissolved the state assembly in September to call for an early election.
Summary:
The Interpol has issued Red Corner Notice against fugitive businessman Mehul Choksi on the request of Central Bureau of Investigation (CBI).
Summary:
"It's an extremely emotional moment when...father of the bride hands her over to the groom," read Bachchan.
Summary:
Actor Shah Rukh Khan, who will be seen portraying a vertically-challenged man in 'Zero', has said he doesn't want anyone's sympathy or empathy for the upcoming film.
Summary:
Bilal, a class 11 student, had left home on the day he disappeared to "buy groceries", said his uncle.
Summary:
Comedian Kapil Sharma, who got married to his girlfriend Ginni Chatrath in Jalandhar on Wednesday, took to Instagram to share the first photo.
Summary:
Jailed RJD chief Lalu Prasad Yadav has moved the Jharkhand High Court, seeking bail in fodder scam cases on grounds that his party requires his presence for 2019 general elections.
Summary:
Turkey's state-run Anadolu press agency said 206 passengers were on board the train at the time of the crash.
Summary:
A 26-year-old Australian man was arrested on Sunday after he was accused of hitting his pregnant girlfriend on live-stream video of online game Fortnite.
Summary:
Singh had offered his resignation from the post, taking responsibility for the party's performance in the state Assembly elections.
Summary:
Congress chief Rahul Gandhi, who is soon expected to announce the names of CMs of three states, on Thursday said they are taking inputs from MLAs and workers.
Summary:
She was one of the first to join Netflix's India team and has worked at the platform for around 2.5 years.
Summary:
After Russia imposed its minimum fine of 500,000 roubles (around $7,500) on Google on Tuesday, telecom watchdog Roskomnadzor has warned it may ban the technology giant.
Summary:
Days after he was expelled from the Jammu and Kashmir BJP unit for his alleged "anti-party and anti-Jammu activities", Gagan Bhagat claimed he was victimised for being a Dalit and accused the state party leadership of being "anti-Dalit".
Summary:
Summary:
TDP has been demanding Special Category Status for Andhra, although the Centre had earlier ruled this out.
Summary:
Former Army chief JJ Singh has resigned from the Shiromani Akali Dal (SAD) citing personal reasons.
Summary:
The startup had last raised Series B funding of $23 million in December 2015 led by Matrix, Vertex and Amazon.
Summary:
This comes after Roscosmos chief Dmitry Rogozin in November announced Russia will launch a mission to verify US' Moon landings.
Summary:
It said, "The state government has said it is filling up the vacancies as and when they arise.
Summary:
PM Narendra Modi, Vice President Venkaiah Naidu and BJP chief Amit Shah on Thursday paid tribute to people who lost their lives in the terrorist attack on Parliament on December 13, 2001.
Summary:
The entire nation prays for Parrikar Ji's good health." BJP President Amit Shah and Union Minister Suresh Prabhu also extended birthday greetings to Parrikar.
Summary:
The North Eastern Railway (NER) has cancelled 20 trains, including eight trains plying in Uttar Pradesh, due to fog and inclement weather.
Summary:
Singapore-based waste management firm Blue Planet on Tuesday announced it has acquired Mumbai-based organic waste processing firm Yasasu for an undisclosed amount.
Summary:
Himalaya has launched a new campaign, 'Ek Nayi Muskaan', as part of its social impact initiative, Muskaan.
Summary:
The car's occupants also sustained minor injuries.
Summary:
The maximum number of 22 crorepati MLAs are from Mizo National Front, which won the election with n26 seats.
Summary:
Election Commission of India's website was not updated for two hours on Tuesday morning, the day when the poll results for five states were being declared.
Summary:
"It should've been '281 and beyond and that saved Sourav Ganguly's career'.
Summary:
This comes after former Sri Lankan cricketers Sanath Jayasuriya and Nuwan Zoysa were charged under the ICC Anti-Corruption Code.
Summary:
Indian table tennis player Manika Batra became the first Indian to win the ITTF's 'Breakthrough Table Tennis Star' award on Wednesday.
Summary:
Eight look-out circulars have been issued for absconding husbands by Integrated Nodal Agency, the Ministry added.
Summary:
More than 28,500 Indian nationals died in the Gulf countries of UAE, Bahrain, Kuwait, Oman, Qatar and Saudi Arabia between 2014-2018, Minister of State VK Singh informed the Lok Sabha on Wednesday.
Summary:
Iranian oil minister Bijan Zanganeh has joined Twitter, which is officially banned in the country.
Summary:
The European Parliament on Wednesday approved a free trade deal between Japan and the European Union, which is believed to be the world's largest free trade agreement.
Summary:
Countering Vijay Mallya's claim that he left India only to attend an event in Switzerland, the Enforcement Directorate (ED) said, "Who goes to attend a meeting with 300 bags and huge cargo?" "They don't have anything to show that he left India to attend a meeting," the agency told a court.
Summary:
Praising his daughter Sara Ali Khan's performance in her debut film 'Kedarnath', Saif Ali Khan said, "ItâÂÂs amazing.
I see a fantastic future for her," Saif added.
Summary:
Reports had claimed Cena would replace Chris Evans as Captain America after the upcoming film 'Avengers: Endgame'.
Summary:
Lauding Congress for its "remarkable performance" in the Assembly polls, Punjab Cabinet Minister Navjot Singh Sidhu on Wednesday said he is "sure" Congress President Rahul Gandhi will hoist the Tricolour at Red Fort in the near future.
Summary:
Uttar Pradesh Chief Minister Yogi Adityanath on Wednesday said the BJP "put up a good fight under the leadership of Prime Minister Narendra Modi" in the Rajasthan and Madhya Pradesh Assembly elections.
Summary:
Summary:
Tripp had earlier accused Tesla of using damaged battery modules in Model 3 vehicles.
Summary:
Bengaluru-based online agriculture-marketing startup Ninjacart on Wednesday announced it has raised around â¹250 crore in a Series B round of funding.
Summary:
Starbucksâ China rival Luckin Coffee on Wednesday announced that it has raised $200 million in a Series B funding round at a $2.2-billion valuation.
Summary:
US-based female-centric coworking startup The Riveter on Tuesday announced that it raised $15 million in a Series A funding round led by Alpha Edison.
Summary:
US space agency NASA on Tuesday shared the first-ever selfie captured by InSight lander, the first-ever mission to study the deep interior of Mars.
Summary:
Turkey claims that the Syrian Kurdish militia, the YPG, is a terrorist organisation because of its links to the Kurdish insurgency inside Turkey.
Summary:
Rajapaksa, the former Sri Lankan President, has refused to resign despite two no-confidence votes being passed against him.
Summary:
Kapur, who has worked at Ambuja Cements for 26 years, will leave the company on March 1, 2019.
Summary:
TVS Motor Chairman Venu Srinivasan and former Defence Secretary Vijay Singh were on Wednesday appointed Vice Chairmen of seven Tata trusts.
Summary:
The French unit of Air France-KLM Group on Wednesday named Anne Rigail as its new CEO, making her the first woman to lead the airline.
Summary:
Earlier, a two-day pre-wedding celebration was held in Udaipur, where American singer Beyoncé performed.
Summary:
MNF won 26 seats in the 40-member assembly, bringing down Congress to five seats as compared to 34 in 2013.
Summary:
US President Donald Trump's former personal attorney Michael Cohen was sentenced to three years in prison on Wednesday for crimes including hush-money payments to two women who alleged affairs with Trump.
Summary:
Television reality show MTV Roadies' 43-year-old creator Raghu Ram on Wednesday got married for the second time with his 29-year-old Italian-Canadian singer girlfriend Natalie Di Luccio in a beach wedding.
Summary:
"Your (Amazon's) customer service doesn't even want to help, that's what makes it even worse," tweeted Sonakshi.
Summary:
BJP candidate and India's first state cow minister, Otaram Dewasi, lost his seat in Sirohi to Independent candidate Sanyam Lodha by 10,253 votes in the Rajasthan Assembly elections.
Summary:
Indian hockey team players, including captain Manpreet Singh, were yelled at by a top Hockey India official after being seen at VIP lounge of the Kalinga Stadium during Netherlands-Canada World Cup match.
Summary:
Wishing Indian all-rounder Yuvraj Singh on the occasion of his 37th birthday, former cricketer Mohammad Kaif tweeted, "Life ke full mazzey lete raho...Sabke jeevan mein manoranjan failaate raho, Yuhin Yuvi #HappyBirthdayYuvi." Further, Irfan Pathan tweeted, "Ye banda agar so bhi raha hay tab bhi bowlers sukooon se nahi Reh sakte.
Summary:
World Cup-winning former Indian cricketer Mohinder Amarnath has said ex-India captain MS Dhoni and other senior players must play domestic cricket to be eligible for Team India selection.
A lot of senior players don't play domestic cricket," he added.
Summary:
A Kerala-based application security engineer named Sahad Nk has won a bug bounty from Microsoft for discovering a bug that left over 400 million Microsoft accounts, including Office 365 and Outlook emails, open to hacking.
Summary:
"It was a quality issue...we've spoken to the freezer's contractors," hospital's Chief Medical Officer said.
Summary:
A UAE man was fined â¹4 lakh and sent to jail for 60 days after his fiancée took serious offence when he jokingly called her habla (idiot in Arabic) on messaging app WhatsApp. Following the message, his fiancée filed a court case against him.
Summary:
The Indian Film and Television Directorsâ Association (IFTDA) has suspended Sajid Khan for one year after the filmmaker was accused of sexual harassment by multiple women.
He didn't give any explanation...or defence to the allegations," IFTDA President Ashoke Pandit said.
Summary:
While speaking about late actress Sridevi's cameo in his upcoming film 'Zero', Shah Rukh Khan said she would have been the first person he would call to see the film.
Summary:
Amitabh Bachchan took to Twitter to wish Rajinikanth on the occasion of his 68th birthday and wrote, "Happy birthday Rajni...Friend, colleague and a sensation ever!" "A dream co-star and a legend in every right!" wrote Akshay Kumar in a tweet.
Summary:
Malayalam actress Priya Varrier has become the most searched personality of the year, Google India announced on Wednesday.
Summary:
While speaking about her acting career, Katrina Kaif said, "I feel very fortunate that I've experienced so many beautiful things in all these years." "I've seen...the worst times and the highest of times, I just feel fortunate for everything I've gone through," the actress added.
Summary:
"Neither my son nor my daughter have been groomed to be actors," Shah Rukh further said.
Summary:
Former UP CM Akhilesh Yadav on Wednesday took a dig at CM Yogi Adityanath, asking him to reveal the caste of other Gods so he could pray to the God belonging to his caste.
Summary:
Punjab Minister Navjot Singh Sidhu on Wednesday said the Congress' win in the Assembly elections of three states will change the "picture and fate" of the country.
Summary:
Nationalist Congress Party President Sharad Pawar on Wednesday said the Ram temple issue might not benefit the BJP if it is raised ahead of 2019 Lok Sabha elections.
Summary:
SoftBank Ventures Korea and other existing investors also participated in the deal that reportedly valued Tokopedia at $7 billion.
Summary:
Audi on Wednesday announced that interim CEO Bram Schot will become Chairman of the Board of Management of AUDI AG, which includes Ducati, Lamborghini, Italdesign Giugiaro and the Audi brand, effective January 1, 2019.
Summary:
The Tamil Nadu government will soon rename more than 3,000 locations in the state, Minister for Tamil Official Language K Pandiarajan said.
A government order regarding the same will be issued soon, he added.
Summary:
Former member of the 15th Finance Commission, Das was appointed RBI Governor, a day after Urjit Patel quit the post.
Summary:
The UK government on Wednesday put on hold its plan to suspend the Tier 1 Investor visas, known as "golden visas", a move aimed to tackle organised crime and money laundering.
Summary:
Keller, who is artistic director for the luxury fashion brand Givenchy, was named 'British Designer of the Year Womenswear' at the event.
Summary:
A US-based plus-size fashion blogger Anna O'Brien released a video to tell people that the reports calling her a "Russian millionaire searching for an Indian husband" are fake.
Summary:
American actor Stephen Keys, who has appeared in films like 'Soul Plane' and 'Big Time Rush', has filed a lawsuit against two US airlines after his finger got stuck in a first-class seat armrest.
Summary:
Summary:
As Congress emerged victorious in Chhattisgarh and the single largest party in Madhya Pradesh and Rajasthan, MNS chief Raj Thackeray said, "Rahul Gandhi was alone in Gujarat, even in Karnataka and now too.
Summary:
While Congress emerged as the single largest party with 114 seats in the 230-member Madhya Pradesh Assembly, BJP with 109 seats got more number of votes in the state.
Summary:
In the 2013 Assembly elections, Lalchhandama had contested from the Aizawl North-iii constituency and had lost to Congress' Lal Thanzara by 750 votes.
Summary:
Henry then stopped and stared at Badiashile, who came back and arranged the chair.
Summary:
A US lawmaker on Tuesday asked Google CEO Sundar Pichai that why do US President Donald Trump's pictures show up on Google search for 'idiot'.
Summary:
The owner of the car said the glass of the front passenger window was shattered, and her pet, along with her purse, was missing.
Summary:
Canadian PM Justin Trudeau said his government has raised the case with Chinese officials.
Summary:
Pornstar Stormy Daniels has been ordered to pay US President Donald Trump nearly $293,000 in legal fees and sanctions after her defamation suit against him was dismissed.
Summary:
Summary:
The Income Tax Department on Monday seized â¹5.5 crore cash from Faqir Chand Lockers and Vaults in Delhi's Chandni Chowk.
Summary:
Ayushmann Khurrana and Tabu starrer 'AndhaDhun' has been named the top Indian movie of 2018 by the global film and TV website IMDb. The website on Wednesday released the names of India's top ten movies, based on IMDb customer ratings.
Summary:
While speaking about working with Salman Khan, actor Sunil Grover said, "I havenâÂÂt seen a disciplined human being and artist like him." "He is a very busy artist.
Summary:
Reports further claim that Priyanka and Nick will also host a reception on December 20, which will be attended by Bollywood celebrities.
Summary:
Former Union Minister MJ Akbar and former editor-in-chief of Tehelka magazine Tarun Tejpal on Wednesday were suspended from the Editors Guild of India over allegations of sexual harassment against them.
Summary:
As per the information by Indian Computer Emergency Response Team (CERT-In), 33,147 and 30,067 Indian websites were hacked in 2016 and 2017 respectively, he added.
Summary:
She said, last month India had called upon Pakistan to immediately vacate all areas under its illegal occupation.
Summary:
Around 482 fishermen are in custody in Pakistan while 18 are in Sri Lankan jails, MoS for External Affairs, VK Singh, said.
Summary:
Instances of stone pelting were reported during anti-militancy operations in the state, MoS for Home Affairs, Hansraj Ahir, said.
Summary:
Juncker added that the EU was willing to give Britain further clarifications on its Brexit deal.
It's the only deal possible," he further said.
Summary:
US President Donald Trump has said people would revolt if he was impeached, adding he was not concerned about it.
Summary:
North and South Korean soldiers on Wednesday crossed into each other's territory for the first time.
Summary:
Former Chief Economic Advisor Arvind Subramanian on Wednesday said the RBI's autonomy is "absolutely sacred" and shouldn't be compromised.
Summary:
"The government isn't just a stakeholder, [it] runs the economy and the country," he further said.
Summary:
Syfte's team of designers will be absorbed within Wipro's design arm, Designit, the Bengaluru-based company said.
Summary:
TRS chief K Chandrashekar Rao will be sworn-in as the Chief Minister of Telangana on December 13 after he was unanimously elected as the leader of the state legislative party.
Summary:
India's retail inflation measured by the Consumer Price Index (CPI) fell to a 17-month low of 2.33% in November compared to 3.38% the previous month.
Summary:
He is lucky." Shah Rukh's first onscreen kiss was in the 2012 film 'Jab Tak Hai Jaan'.
Summary:
Billionaire Sanjay Hinduja's 2015 Udaipur wedding, that cost â¹147 crore, witnessed singer Jennifer Lopez's performance.
Summary:
Interestingly, BJP candidate Jitu Jirati had won the election from the constituency in 2008.
Summary:
Yuvraj Singh, before venturing into cricket, had acted in Punjabi movies as a child artiste.
Summary:
Delhi government on Tuesday informed the Supreme Court that it is planning to implement a policy to limit the number of guests at weddings and institutionalise catering arrangements to check food wastage at such functions.
Summary:
Lawmakers in British PM Theresa May's Conservative Party on Wednesday triggered a vote of no confidence in her leadership, in protest against her Brexit proposal.
Summary:
A member of PM May's staff was seen struggling to pull the door handle to let her out, while Merkel waited on the red carpet.
Summary:
Mukesh Ambani-led telecom operator Reliance Jio on Tuesday said its board has approved schemes to spin off the company's fibre and tower assets to separate entities.
Summary:
Indian benchmark index Sensex rallied 629 points on Wednesday after the government appointed Shaktikanta Das as the Governor of Reserve Bank of India (RBI), just a day after Urjit Patel resigned.
Summary:
Samajwadi Party President Akhilesh Yadav on Wednesday announced the party's support to the Congress to form the government in Madhya Pradesh.
Summary:
Summary:
RJD leader Tejashwi Yadav on Wednesday asked Bihar CM Nitish Kumar if he was willing to take back his assertion that there would be no challenge to PM Narendra Modi in 2019 General Elections.
Summary:
A day after the BJP received a poll defeat in three states where it was in power, the Shiv Sena on Wednesday said the election results indicate people's desire to have a "BJP-mukt" India.
Summary:
A few buildings of Facebook's headquarters in Menlo Park, California were evacuated on Tuesday after a reported bomb threat on its campus, as per a Facebook spokesperson.
Summary:
Twitter CEO Jack Dorsey on Wednesday tweeted he was "aware of the human rights atrocities and suffering in Myanmar" in response to criticism over his tweets about a meditation retreat in the country.
Summary:
Google CEO Sundar Pichai on Tuesday said the technology giant has no plans to launch a search engine in China.
Summary:
Gurugram-based video app Roposo has raised over â¹72 crore from existing investors Tiger Global Management and Bertelsmann India Investments in an extended Series C funding round.
Summary:
While Congress MPs shouted slogans and held placards demanding a Joint Parliamentary Committee probe into the alleged corruption in Rafale deal, Shiv Sena MPs staged protests demanding immediate construction of the Ram Mandir in Ayodhya.
Summary:
The body of a Kashmiri man has been recovered from an orchard in Kulgam around 45 days after he was abducted by militants, the police said.
Summary:
The children were stated to be out of danger, police said, adding, the man was in serious condition.
Summary:
India will increase its public health spending to 2.5% of its GDP by 2025, Prime Minister Narendra Modi said on Wednesday.
Summary:
Aceh is the only Indonesian province to implement the Sharia law.
Summary:
US State Secretary Mike Pompeo designated Pakistan among 'Countries of Particular Concern' for having engaged in or tolerated "systematic, ongoing, [and] egregious violations of religious freedom".
Summary:
Indiabulls Ventures promoter Sameer Gehlaut and five other promoter entities settled a SEBI probe over alleged violation of 'takeover regulations' after paying â¹48 lakh towards settlement fee.
Summary:
Almost â¹8,000 crore worth GST evasion has been recovered by the tax officials, CBIC further said.n
Summary:
With over a million trips across 14+ countries, Uber Lite has helped riders get a ride in low connectivity areas with ease and reliability.
Summary:
Participants from Great Learning's first batch of Data Science and Engineering, offered in association with Great Lakes, have successfully transitioned with an average salary hike of 45%.
Summary:
Retired IAS officer Shaktikanta Das is the first non-economist RBI Governor since 1990, when S Venkitaraman was appointed to the post.
Summary:
"To keep BJP out of power we have agreed to support Congress in Madhya Pradesh," said BSP chief Mayawati.
Summary:
Shaktikanta Das has assumed charge as the 25th Governor of the RBI, effective December 12, 2018.
"Assumed charge as Governor, Reserve Bank of India.
Summary:
Groundsman Chris Scott and his staff were awarded Man of the Match for their efforts to make play happen during a rain-affected Test match between New Zealand and South Africa, which ended on December 12, 2000.
Summary:
Priyanka Chopra's mother Madhu Chopra has responded to activist Deepika Bhardwaj, who criticised Priyanka for wearing sindoor after marriage.
Summary:
Shivraj Singh Chouhan on Wednesday tendered his resignation as the Chief Minister of Madhya Pradesh, and said, "Ab mein mukt hoon." He added, "The responsibility of defeat is totally mine.
Summary:
Summary:
Rajkumar's figures of 9.5-6-11-10 in the second innings helped Manipur dismiss Arunachal for 36 runs in 18.5 overs.
Summary:
Meng was arrested on December 1 in Vancouver on US' request over alleged trade sanction violations.
Summary:
A US man named Leo has claimed he got a pair of thigh-length underwear, stained with what looked like faeces, with his Uber Eats food order.
Summary:
Flipkart CEO Kalyan Krishnamurthy has said that in the last 10 years, Flipkart has innovated and people have just copied.
We are happy with that, by the way," Krishnamurthy added.
Summary:
Chairman of RPG Group Harsh Goenka on Tuesday tweeted on the Assembly election 2018 results.
Summary:
The previous Congress party-led coalition government announced farm loan waivers worth nearly â¹72,000 crore in 2008.
Summary:
Japan has picked the kanji character for "disaster" as its "defining symbol" for the year 2018, following a series of natural disasters that struck the country this year.
Summary:
A gunman shot dead at least two people on Tuesday near a Christmas market in the French city of Strasbourg before fleeing the scene, Interior Minister Christophe Castaner said.
Summary:
Japanese conglomerate SoftBank is reportedly planning on selling its stake in the US graphics chipmaker Nvidia early next year.
Summary:
Congress MP Anand Sharma on Wednesday moved a notice for suspension of business in the Rajya Sabha to discuss the alleged corruption in the purchase of 36 jets from France.
Summary:
After Telangana Rashtra Samithi secured a majority in the 119-member Telangana Assembly, caretaker CM K Chandrashekar Rao's son KT Rama Rao said, "A non-Congress and non-BJP force is emerging from Telangana." He added, "We are very keen on a federal front.
Summary:
Summary:
Summary:
Flipkart's Singapore-based parent entity, controlled by Walmart, has reportedly invested around â¹2,190 crore in its India wholesale subsidiary, Flipkart India Private Limited.
Summary:
The researchers suggest that using sleeping bags with water insulation and consumption of mineral water will reduce the harmful effects of the radiations.
Summary:
The cosmonauts took images and sample of the two-millimetre hole which will be brought back to the Earth on December 20.
Summary:
Those applying through physical channels can avail interest rates up to 8.8%.
Mahindra Finance Fixed Deposits are rated FAAA by Crisil, indicating highest safety.
Summary:
Notably, Congress had won 39 seats in Chhattisgarh in 2013.
Summary:
Bharatiya Janata Party (BJP) secured a total of 109 seats.
Summary:
Madhya Pradesh Congress chief Kamal Nath has staked claim to form the government in the state.
Summary:
Congress has emerged as the single largest party in Rajasthan with 99 seats and its ally party RLD securing one seat in the 200-member state assembly.
Summary:
Taking a dig at BJP over Assembly Elections results, Congress leader Shashi Tharoor tweeted, "No wonder the BJP is so upset today.
The voters just gave them a triple talaaq." Earlier, Tharoor had tweeted, "Wonderful news pouring in from #Elections2018.
Summary:
Ramesh Powar has re-applied for the Indian women's team head coach position after receiving support from T20I captain Harmanpreet Kaur and vice-captain Smriti Mandhana.
Summary:
T Raja Singh, who was contesting from Goshamahal seat, is the only BJP candidate who won in Telangana Assembly elections.
Summary:
This comes as President Kovind is on an official visit to Myanmar.
Summary:
I learnt a lot from that election.
Summary:
An investigation conducted by Zomato revealed the video was shot in Madurai in Tamil Nadu.
Summary:
Another worker, hailing from Bihar, also managed to score full marks in the examination.
Summary:
Qureshi added Pakistan alone cannot bring peace to Afghanistan as it was a "shared responsibility" of regional countries.
Summary:
University authorities said they "regretted" the question and decided to "delete" it.
Summary:
The nuns, who are said to be best friends, took funds from an account holding tuition fees and donations.
Summary:
He also had a stint with Mahindra Industrial Park in Chennai as Joint Secretary on deputation to a private sector company from 1998 to 2001.
Summary:
American tyre manufacturing company Goodyear has said it is halting operations in Venezuela and laying off its local workforce because of dire economic conditions and US sanctions.
Summary:
NASA on Sunday took to Twitter to offer advice to Marvel Studios to help find Tony Stark aka Iron Man. This comes after several fans of the Avengers franchise requested the space agency to help the character, who can be seen isolated in space in the movie's latest trailer.
Summary:
TRS has won in 88 out of the 119 constituencies in the state Assembly elections.
Summary:
Summary:
Following the performance of Congress in the Assembly elections in five states, party chief Rahul Gandhi on Tuesday said the Congress has defeated the BJP now and it will defeat it in 2019 Lok Sabha polls again.
Summary:
Juventus' Portuguese forward Cristiano Ronaldo congratulated his son Cristiano Jr on winning a trophy.
Summary:
Government policy think-tank NITI Aayog is developing a virtual assistant device like AmazonâÂÂs Alexa for vernacular users.
Summary:
Walmart-owned online retailer Flipkart's Chief Financial Officer (CFO) Sriram Venkataraman has been given additional charge as the company's Chief Operating Officer (COO).
Summary:
The woman had left her home alone and fell into the drain while walking as one of its walls was broken, the police said.
Summary:
Baskakov later issued an apology and said that most of the items did not belong to him.
Summary:
IT services major Wipro on Tuesday said it opened an automotive innovation centre in US' Detroit.
Summary:
Rajasthan CM and BJP leader Vasundhara Raje has tendered her resignation to state's Governor Kalyan Singh after conceding defeat in the state Assembly elections.
BJP has worked a lot for them in these five years...I hope the next party takes those policies and works forward," she said.
Summary:
Summary:
American tourist Jerry Hart said he can't believe his luck after the taxi driver of a taxi in which he forgot â¹7 lakh returned the money back to him.
Summary:
He won the seat for the first time in 1990 and then in 2006 and 2008.
In 2013 Assembly elections, he won the seat by over 84,000 votes.
Summary:
Supreme Court-appointed Committee of Administrators (CoA) member Diana Edulji, in an email to CoA chief Vinod Rai, claimed that Anil Kumble was replaced as coach after Virat Kohli's frequent SMSes to BCCI CEO Rahul Johri.
Summary:
This comes after BCCI didn't extend coach Ramesh Powar's contract following the Women's WT20 controversy.
Summary:
Tesla CEO Elon Musk, who recently settled fraud charges with the US Securities and Exchange Commission (SEC), in an interview said, "I want to be clear.
Summary:
The funding was secured from CanadaâÂÂs CPP Investment Board, Naspers Ventures, General Atlantic and some existing investors.
Summary:
At least 4 people were killed on Tuesday after a gunman opened fire inside a cathedral in Brazil, fire department officials said.
Summary:
Singer Ila Arun revealed she was stalked during the early stages of her career, adding that she would ask people to go through all the couriers she received at the time.
Summary:
Producer Prernaa Arora, who was arrested for allegedly cheating producer Vashu Bhagnani of â¹32 crore, has accused Bhagnani of threatening her family to fulfil his demands.
Summary:
Rajkummar Rao, Alia Bhatt were named India's Hottest Vegetarians by PETA last year.
Summary:
Producer Dinesh Vijan will reportedly pull out of 'Go Goa Gone 2' due to the ongoing dispute between him and the film's directors Raj Nidimoru and Krishna DK.
Summary:
A lightsaber, said to have been used by the 'Star Wars' franchise's lead character Luke Skywalker, has been pulled from auction over alleged authenticity issues.
Summary:
Amid the Assembly election results, Maharashtra Navnirman Sena (MNS) President Raj Thackeray took a dig at BJP and said, "India needs a 'Ram rajya' and not a Ram temple." "The results are a slap on BJP's tyrant governance," he added.
Summary:
Hailing the results of the Assembly elections in five states, actor-turned-politician Kamal Haasan on Tuesday said that it was the first sign of a new beginning.
Summary:
Australian Test team captain Tim Paine has questioned the DRS, calling it a frustrating and an imperfect system.
Summary:
Facebook has filed patents with the US Patent and Trademark Office for technology that uses location data to predict where users are going and when they will be offline.
Summary:
Instagram on Monday announced Vishal Shah's promotion to Head of Product, effective immediately.
Summary:
Ghosn has been held in a Tokyo jail since his arrest on November 19 for allegedly understating his pay for five years.
Summary:
Bengaluru-based mattress manufacturing startup Wakefit has raised â¹65 crore in its first institutional round from Sequoia Capital at a post-money valuation of â¹210 crore.
Summary:
The police on Monday said that a 34-year-old man was allegedly shot dead following a quarrel after his car collided with a scooter in Delhi's Shahdara.
Summary:
The current government breaching its "limits" triggered the resignation, he further said.
Summary:
SWIFT India, the local unit of SWIFT (Society for Worldwide Interbank Financial Telecommunication), has appointed former SBI chief Arundhati Bhattacharya as its Chairperson.
Summary:
Mustache, which was founded in 2010, specialises in creating branded content for digital, broadcast and social mediums.
Summary:
The Supreme Court on Tuesday refused to recall its order imposing â¹50,000-fine on a lawyer for filing a PIL against Finance Minister Arun Jaitley.
The PIL had accused Jaitley of "plundering" the capital reserve of the RBI.
Summary:
American newspaper Post-Journal made a typo in its headline on Hollywood actress Julia Roberts and wrote 'Julia Roberts finds life and her holes get better with age'.
Summary:
She had joined the Congress party in 2013 and had lost the Sadulpur seat in the 2013 Assembly elections.
Summary:
Speaking on Congress' lead in Rajasthan, Madhya Pradesh and Chhattisgarh assembly elections, party President Rahul Gandhi during a press conference said, "Do not want to make India 'mukt' (free) of anyone." "If we don't agree with somebody, we will fight them, not try to obliterate them," he added.
Summary:
India's previous Test victory against Australia at Adelaide had come in 2003, when Wright was the coach.
Summary:
Summary:
Congress leader and outgoing Mizoram CM Lal Thanhawla submitted his resignation before the state Governor Kummanam Rajasekharan after MNF attained majority with 26 seats in the state Assembly elections.
Congress won five seats in the 40-member assembly.
Summary:
Former world number one men's badminton player Lee Chong Wei has revealed that he slumped on the sofa crying after his wife told him he had nose cancer.
Summary:
Shaktikanta Das, the 61-year-old former Economic Affairs Secretary from 2015 to 2017, has been appointed RBI Governor for three years.
Summary:
TIME magazine has named 'The Guardians', a group of journalists, as its 'Person of the Year 2018'.
Summary:
A day after Urjit Patel resigned as RBI Governor, NITI Aayog Vice Chairman Rajiv Kumar said, "It's not as if the RBI is dependent on any particular individual." "RBI's institutional capabilities are very strong and they will do whatever is required for the markets and economy," Kumar added.
Summary:
Kejriwal's comment came after the Assembly election results showed the BJP trailing in all the five states.
Summary:
Attributing BJP's performance in the Assembly polls to its "arrogance", the Nationalist Congress Party (NCP) on Tuesday said it hinted "farewell" of the NDA government in 2019 Lok Sabha elections.
Summary:
Australian pacer Mitchell Starc's wife Alyssa Healy took a dig at former pacer Mitchell Johnson, who had criticised her husband's performance during the first Test against India.
Summary:
Calling the Assembly elections in the five states a "semi-final match", West Bengal CM Mamata Banerjee hit out at BJP saying, "This is the beginning of the end." "For 2019 final match, the game is clear...Now we are just waiting for the elections," she said.
Summary:
After Australia's captain Tim Paine endured a blow on his right index finger on the final day of the first India-Australia Test, coach Justin Langer said, "Painey is the toughest pretty boy I've ever met in my life." "Even if it was snapped in about four places he'd still be right.
Summary:
Jaydev Unadkat, who was sold for â¹11.5 crore to become the costliest Indian player at the 2018 IPL auction, is now the Indian player with the highest base price at the upcoming IPL 2019 auction.
Summary:
The Aligarh Muslim University is set to have its own girl's hockey team for the first time since 1920.
Summary:
A former Uber manager Robert Miller had reportedly warned UberâÂÂs executives about safety issues before the fatal self-driving car crash in Arizona in March.
This is not how we should be operating,â Miller had said.
Summary:
YouTube Rewind 2018 has become the second-most disliked video on the platform with 8.1 million dislikes after Justin BieberâÂÂs âÂÂBabyâÂÂ, leading with 9.7 million dislikes.
Summary:
Mumbai-based skincare startup Pureplay Skin Sciences (India), the parent company of Plum, has raised an undisclosed amount in Series A funding from Unilever Ventures.
Summary:
It adds that OYO revised commission rates and used coercion against protesting hotels.
Summary:
After the attack, the militants reportedly fled with rifles belonging to the policemen.n
Summary:
Thailand's military junta on Tuesday lifted a ban on political campaigning ahead of elections, more than four years after it was introduced following the coup.
Summary:
As many as 164 countries on Monday adopted the first-ever global migration pact in Morocco.
Summary:
The US military on Tuesday said that the five Marines, who had gone missing since two planes crashed off Japan's coast last week, were dead.
Summary:
The Reserve Bank of India (RBI) has said it imposed a fine of â¹1 crore on state-owned Indian Bank for violating cyber security norms.
Summary:
State Bank of India on Tuesday said the extradition of fugitive businessman Vijay Mallya from UK will speed up the loan recovery process.
Summary:
Bharatiya Janata Party's longest-serving Chief Minister, Chhattisgarh's Raman Singh has submitted his resignation letter to the state's Governor Anandiben Patel.
"I take the moral responsibility for the party's defeat.
Summary:
TRS has won 60 seats in Telangana so far, while Congress is in second position with 13 seats.
Summary:
Shaktikanta Das, who was Economic Affairs Secretary when demonetisation was announced, has been appointed as the RBI's 25th Governor for a period of three years.
Summary:
Telangana Chief Minister K Chandrashekar Rao, who won from the Gajwel constituency by over 50,000 votes on Tuesday, has lost just one election is his 35-year-long political career.
Summary:
Luke Pomersbach had gone to watch Australia-New Zealand T20I in Perth on December 11, 2007, with his girlfriend and was parking his car when Australia's team manager called him to play the match.
Summary:
Actress Vidya Balan said she asked to be introduced to someone for the first time in her life after seeing former US First lady Hillary Clinton in Udaipur.
Summary:
Former Mizoram CM Zoramthanga has been unanimously elected leader of MNF legislature party in the state.
Summary:
Telangana Rashtra Samithi (TRS) President and Telangana caretaker Chief Minister K Chandrashekar Rao (KCR) on Tuesday said that he will actively participate in national politics.
Summary:
Reacting to the party's lead in three out of five states in Assembly Elections, Congress' Mumbai unit tweeted, "First they ignore you, then they laugh at you, then they fight you, then you win," quoting Mahatma Gandhi.
Summary:
Amid the announcement of Assembly election results, Delhi CM Arvind Kejriwal took a dig at the Narendra Modi-government and tweeted, "Modi raj ki ulti ginti shuru ho gayi." In the states of Rajasthan, Madhya Pradesh and Chhattisgarh, Congress is ahead of the Bharatiya Janata Party (BJP).
Summary:
Amid the announcement of the Assembly election results, the official Twitter handle of Congress tweeted, "Aaj Bharat jeet gaya aur ahankaar haar gaya." "Chhattisgarh ki janta aur Congress ke kaaryakartao ki mehnat ko salaam," the tweet further read.
Summary:
After Mizo National Front (MNF) won majority in Mizoram, its President Zoramthanga said, "My first priorities will be three things, to impose a prohibition on liquor, repair roads and implement Social Economic Development Programme (SEDP) which is our flagship programme." Zoramthanga is said to be the party's CM candidate.
Summary:
The Ministry of External Affairs (MEA) on Monday expressed "deep satisfaction" over a UK court's order allowing the extradition of fugitive liquor baron Vijay Mallya to India.
Summary:
Patel quit citing "personal reasons" nine months before the end of his three-year term as Governor.
Summary:
Sir Osborne Smith, the first Governor, resigned in 1937 over differences with the government while Benegal Rama Rau quit in 1957 due to differences with the Finance Minister.
Summary:
While talking about women empowerment, Kangana Ranaut said women don't have to be empowered as they are already powerful.
Summary:
While talking about returning to acting after a four-year break, Arshad Warsi revealed that he felt "a little bit of fear about being written off".
Summary:
Punjab Minister Navjot Singh Sidhu, while reacting to early trends of Assembly election results, on Tuesday said the results have created a stir in the BJP.
Summary:
BJP MLA from Uttar Pradesh Surendra Singh has said that BJP's decision to bring amendments to the SC/ST Act has proved suicidal for the party.
Summary:
Amid Telangana Congress' claims of manipulation of EVMs, TRS MP K Kavitha said, "The losing party always says the EVMs have been tampered with." "Even Chief Election Commissioner in a press meeting said it is not possible to tamper with EVMs," she added.
Summary:
With Congress set to end 15 years of BJP rule in Chhattisgarh, Baghel added Congress strengthened under party chief Rahul Gandhi's leadership.
Summary:
Indian spinner Ravichandran Ashwin moved one spot to sixth in the ICC Test rankings for bowlers.
Summary:
English Premier League side Chelsea have banned four of its supporters from attending matches over an alleged racial abuse of Manchester City's Raheem Sterling.
Summary:
Indian archer Deepika Kumari, who won two gold medals at the Commonwealth Games 2010, got engaged to fellow Indian archer Atanu Das. Former Jharkhand Chief Minister Arjun Munda and his wife also attended the event.
Summary:
Lloyd Russell-Moyle, an MP from the UK's Labour Party, was expelled from the House of Commons after he picked up the ceremonial mace in protest against the postponement of the vote on Prime Minister Theresa May's Brexit deal.
Summary:
Singapore has charged two Chinese migrant workers for taking bribes of S$1 (over â¹52) each, the Corrupt Practices Investigation Bureau said.
Summary:
Russia has sent two Tu-160, strategic bombers capable of carrying nuclear weapons, to Venezuela in an apparent show of support to President Nicolás Maduro's regime.
Summary:
Rajasthan CM and BJP candidate Vasundhara Raje has won from Jhalrapatan seat for the fourth time in a row by defeating former BJP and now Congress leader Manvendra Singh.
Summary:
So far, Congress has secured five seats and BJP has won one seat in the state Assembly.
Summary:
Asia's richest person Mukesh Ambani's daughter Isha Ambani's wedding to billionaire Ajay PiramalâÂÂs son Anand Piramal is reportedly estimated to cost $100 million (over â¹718 crore).
Summary:
Meanwhile, former CM and Congress candidate Ashok Gehlot won from Sardarpura constituency by defeating BJP candidate Shambhu Singh.
Summary:
Telangana Rashtra Samithi (TRS) leader T Harish Rao on Tuesday won the Siddipet constituency for the sixth straight time.
Summary:
Gambhir, who was bought by KKR for around â¹11 crore in 2011, added that there was huge pressure on him to justify himself to the owners.
Summary:
Juventus forward Cristiano Ronaldo has challenged Lionel Messi to leave Spanish club Barcelona and sign for a club in Italy.
I've played in England, Spain, Italy and Portugal...while he's always been in Spain...he needs me more," he said on being asked if he misses Messi.
Summary:
The Telangana Rashtra Samithi (TRS) celebrated its President and Telangana caretaker Chief Minister K Chandrashekar Rao's election victory with a 90-kg cake at their headquarters.
Summary:
Indian national Bhavin Patel has been arrested for allegedly smuggling foreign nationals into the US.
Summary:
The bodies of two mountaineering friends, Kristinn Rúnarsson and ÃÂorsteinn Guðjónsson, who were last seen alive at a height of 21,650 feet in October 1988 in the Himalayas, have been found.
Summary:
David Sproul, the head of a global accountancy firm Deloitte, on Monday admitted that it had fired 20 senior staff over the last four years for bad behaviour including bullying and harassment.
Summary:
Wishing Dilip Kumar on his 96th birthday on Tuesday, Amitabh Bachchan tweeted, "The ultimate master of his craft...Dilip Kumar - Mohammed Yusuf Khan...turns 96...prayers and duas for his good health and happiness always." "The history of Indian cinema shall always be written as 'before Dilip Kumar and after Dilip Kumar'," Amitabh further wrote.
Summary:
Gulshan Grover has said that he is unable to take up the post of the chairman of Film and Television Institute of India [FTII], after Anupam Kher's resignation.
Summary:
Ayushmann Khurrana has said that he had "tremendous self-belief" and "faith in his sensibilities", adding, "I always aspired to do something different.
Summary:
Actress Jennifer Aniston has revealed that she likes watching TV naked.
Summary:
Ranveer Singh, while talking about acting, said that he doesn't get pressurised and sees it as a responsibility towards what he loves doing.
Summary:
Actor Ali Fazal has said that a web show is no less than a film, adding, "This is the same phase Hollywood went through five years ago...they offered their audience...great content.
Summary:
Summary:
"Thanks Telangana for keeping...faith in KCR Garu and giving us another opportunity to serve you," he tweeted.
Summary:
Taking a jibe at BJP, senior AAP leader Sanjay Singh on Tuesday said, "The results of Assembly polls indicate that people are fed up with jumla (rhetoric)." "2019 will be BJP-mukt Bharat (BJP-free India)," he added.
Summary:
Stating the poll trends in Madhya Pradesh have come as a "surprise", BJP MP Sanjay Kakade said, "We forgot the issue of development (PM Narendra) Modi took up in 2014.
Summary:
Kushwaha said that the Union Cabinet "has been reduced to a mere rubber stamp" and charged Prime Minister Narendra Modi for betraying Bihar.
Summary:
Former Kerala Minister and senior Congress leader CN Balakrishnan passed away on Monday after his health deteriorated due to pneumonia.
Summary:
The ATS further said that the accused was very active on social media and used the platform to procure weapons and radicalise youths.
Summary:
Macron announced a monthly increase in the minimum wage by â¬100.
Summary:
The net collection after refunds rose 14.7% from the year-ago period to â¹5.51 lakh crore.
Summary:
Fly ash, a by-product of coal, can be effectively utilised in the cement industry, bricks industry, road embankment, mine filling, land development and is also a source of micro and macro-nutrients in agriculture.
Summary:
Meanwhile, the trends show that TRS is ahead in the state with leads in 83 seats.
Summary:
Mizoram CM and Congress candidate Lal Thanhawla has lost from both Serchhip and Champhai South in the state assembly elections.
Summary:
Filmmaker Mahesh Bhatt, while talking about his daughter Alia Bhatt and her boyfriend Ranbir Kapoor, said, "Well, of course they're in love.
Summary:
Summary:
Rajasthan CM Vasundhara Raje is also leading from her constituency Jhalrapatan, so is Chhattisgarh's CM Raman Singh from his seat Rajnandgaon.
Summary:
A backyard-cricket-style bat flip will replace the coin toss in the upcoming season of Australia's Big Bash League (BBL) to decide which captain has choice of batting or bowling first.
Summary:
After RBI Governor Urjit Patel announced his resignation on Monday, Congress President Rahul Gandhi said, "The BJP has demolished every temple of modern India and if not stopped, will surely destroy India itself." "With the RBI Governor's resignation one more independent institution has fallen," he added.
Summary:
And I can just call for a shareholder vote and get anything done," Musk said.
He also said that he handpicked Denholm as the new Chairperson of Tesla.
Summary:
Trump believes he won't be convicted in Republican-controlled Senate even if he is impeached in the House, another source stated.
Summary:
Actress Disha Patani, who will be seen in Salman Khan's 'Bharat', has said, "'Bharat' has been very special to me since I bagged a role opposite Salman Khan so early in my career." She added that her role in the film has been "the most challenging one so far".
Summary:
The song also became the most streamed classic rock song of all time, Universal added.
Summary:
He is an excellent modern-day bowler." "Of course, his yorkers are good and his bouncers are deceptive...
He has been consistently good and is a great asset for India," McGrath added.
Summary:
Summary:
Commenting on trends in counting of votes for results of Assembly elections in five states, Congress leader Navjot Singh Sidhu said, "People have the power to take decisions in democracy.
Summary:
After equalling a world record in the first India-Australia Test, Rishabh Pant praised MS Dhoni, saying, "He's the hero of the country.
Summary:
Commenting on the early trends in the counting of votes in Assembly elections, Congress leader Navjot Singh Sidhu said, "Bure din jaane wale hain aur Rahul Gandhi aane wale hain." Adding that BJP's downfall from power has begun, Sidhu further said, "People have the power to take decisions in democracy.
Summary:
Amid early trends showing Congress leading in 102 seats in Rajasthan, former CM Ashok Gehlot said, "We'll get a clear majority, still, we would want independent candidates and parties other than BJP to support us if they want." He added, "Congress has won the mandate.
Summary:
Former Rajasthan CM Ashok Gehlot on Tuesday said he was confident that Congress will form the government in Rajasthan and party chief Rahul Gandhi and MLAs will take the decision on chief minister's post.
Summary:
The Telangana Pradesh Congress Committee has submitted a complaint to Telangana Chief Electoral Officer Rajat Kumar, claiming Electronic Voting Machines may have been manipulated in the state.
Summary:
Following the Indian team's win in the first Test, former Indian captain Sourav Ganguly said, "It will be a competitive series.
Summary:
Users can send voice messages of up to one-minute duration in private and group chats.
Summary:
BJP president Amit Shah said that although he respected economist and former PM Manmohan Singh, "a chaiwala (Narendra Modi) did a better job of running the countryâÂÂ.
Summary:
Miami-based digital parking management platform ParkJockey has raised its latest funding from Japanese conglomerate SoftBank at a reported valuation of over $1 billion, turning it into the city's first billion-dollar startup.
Summary:
A global team of scientists has discovered ecosystem below the Earth that is almost twice as big as its oceans.
Summary:
The Centre has rejected Karnataka government's request to recognise Lingayat as a separate religion.
Summary:
No one who cheats India will go scot free," quoting Finance Minister Arun Jaitley.
Jaitley had made this statement on Monday in response to the extradition of liquor baron Vijay Mallya.
Summary:
Congress is leading in 114 seats out of 199 in Rajasthan, while it is leading in 59 seats in the 90-seat Chhattisgarh Assembly.
Summary:
It also said that the names of victims cannot be used at public rallies or on social media platforms.
Summary:
It's heaven, when you marry a good 'man'," she wrote.
Anushka and Virat got married last year in Tuscany, Italy.
Summary:
Telangana Rashtra Samithi (TRS) is leading in 91 seats in Telangana, crossing the halfway mark as per the early trends in the state assembly elections.
Summary:
Early trends in the counting of votes show that the Mizo National Front (MNF) has crossed the halfway mark in leads in Mizoram.
Summary:
Election Commission has postponed polls in the constituency, with the new date yet to be announced.
Summary:
India captain Virat Kohli and his wife Anushka Sharma gave up their business class seats for the Indian fast bowlers to give them more comfort and space on the team's flight from Adelaide to Perth.
Summary:
Meanwhile, trends show Janta Congress Chhattisgarh leader Renu Jogi leading in Kota and BJP leader Kashi Sahu trailing.
Summary:
All India Majlis-e-Ittehadul Muslimeen (AIMIM) chief Asaduddin Owaisi's brother Akbaruddin Owaisi has been declared winner from Chandrayangutta seat in the Telangana Assembly elections.
Summary:
After trends showed Congress' lead in Rajasthan, party candidate from Tonk Sachin Pilot said, "Rahul Gandhi became party president exactly a year ago this day, so this result is a gift for him." "Congress will form the government in three states (Rajasthan, Madhya Pradesh and Chhattisgarh)," he added.
Summary:
The Election Commission's revamped website developed a glitch on Tuesday morning, resulting in a delay of official figures for the early trends of poll results.
Summary:
Minal Modi, the wife of former Indian Premier League chief Lalit Modi, died at the age of 64 due to cancer on Monday.
Lalit had tied the knot with Minal in 1991.
Summary:
A two-minute long video of a Zomato delivery person has gone viral on social media, which shows him eating food from two delivery boxes and repackaging them with tape.
Summary:
NASA revealed the space probe was now over 18 billion km from the Earth.
Summary:
Admitting that her Brexit deal "would be rejected by a significant margin" if MPs voted on it, UK PM Theresa May called off Tuesday's vote on the deal in the parliament.
Summary:
Indian cricket team captain Virat Kohli, while talking about his wife and actress Anushka Sharma, said that she has changed him a lot, adding, "I've learnt so much from her." "It was amazing to just see myself - how much different things were to the way I think.
Summary:
The co-producers of the Rajkummar Rao and Shraddha Kapoor starrer 'Stree' namely Dinesh Vijan of Maddock Films and Raj Nidimoru and Krishna DK of D2R Films have reportedly got into a dispute over non-payment of dues.
Summary:
Katrina Kaif, who will be seen with Shah Rukh Khan in their upcoming film 'Zero', has said, "Shah Rukh played a huge role in me landing a part in 'Zero'...said 'I want Katrina to do this role'." "He encourages...women in his films to shine, which is great," added Katrina.
Summary:
We hope to perform well." Early trends show Congress leading in Madhya Pradesh, Rajasthan and Chhattisgarh.
Summary:
Congress workers burst crackers and danced outside the AICC headquarters in Delhi, as trends showed Congress leading in Rajasthan, Chhattisgarh and Madhya Pradesh.
Summary:
Ministry of Electronics and Information Technology has asked Facebook-owned messaging platform WhatsApp to roll out a new feature to seek users' consent before adding them to chat groups.
Summary:
Technology major Google on Monday announced it will be shutting down its social networking platform Google+ in April 2019, four months earlier than previously decided, over a second data leak.
Summary:
Bengaluru-based ride-hailing unicorn Ola may reportedly promote Co-founder and current CEO Bhavish Aggarwal to Group CEO.
Summary:
NASA on Monday said that data obtained from probe OSIRIS-REx has revealed the presence of water locked inside clays that make up asteroid Bennu.
Summary:
Former Prime Minister Manmohan Singh on Monday said that RBI Governor Urjit Patel's resignation was "very unfortunate and a severe blow to the nationâÂÂs economy".
Summary:
At least three people were killed and five others went missing in Prayagraj after a boat capsized in River Yamuna on Monday.
Summary:
With JetPrivilege, members can redeem their accumulated JPMiles for free flights and travel the world to a destination of their choice.
Summary:
Early trends in the counting of votes in Assembly elections show Congress ahead in 94 seats in Rajasthan and 50 seats in Chhattisgarh, while BJP is leading in 65 seats in Rajasthan and 19 seats in Chhattisgarh.
Summary:
Rajasthan and Telangana witnessed a voter turnout of over 74% and over 73% respectively.
Summary:
A new beauty trend named 'Fire Therapy' has surfaced in Vietnam where alcohol-soaked burning towels are placed on women's faces and bodies to "burn away impurities." The towels are set alight for between 30 seconds and a minute.
Summary:
Malaysia's 37-year-old absconding businessman Jho Low, accused of stealing $4.5 billion from government, gifted expensive jewellery and a grand see-through piano to 35-year-old supermodel Miranda Kerr.
Summary:
India wicketkeeper Rishabh Pant, who was seen continuously giving remarks to batsmen from behind the stumps in the first Test against Australia, said that he enjoys troubling batsmen.
Summary:
Rajasthan Chief Minister Vasundhara Raje has taken early leads over Congress leader Manvendra Singh in Jhalrapatan, as per initial trends.
Summary:
Other tweets read, "Disappointing tweet from a lead broadcaster," and "Cleaner than Ponting's 2008 Sydney catch."
Summary:
While giving the verdict allowing extradition of fugitive businessman Vijay Mallya, a UK court described him as "glamorous, flashy, famous, bejewelled, bodyguarded, ostensibly billionaire playboy who charmed and cajoled these bankers into losing their common sense".
Summary:
Economist Surjit Bhalla has said he resigned as a part-time member of the Economic Advisory Council to the Prime Minister on December 1.
Summary:
The amount was transferred from his SBI account through the UPI app in seven transactions.
Summary:
After a UK court ruled on Monday that fugitive liquor baron Vijay Mallya will be extradited to India, former Kingfisher employee Neetu Sharma said, "He should face the music." "It sets things in motion, he has got charges like siphoning, diverting funds.
Summary:
Meanwhile, firecrackers were brought to the Congress offices in Jaipur and Delhi.
Summary:
The International Cricket Council (ICC) has suspended Sri Lankan spinner Akila Dananjaya from bowling in international cricket with immediate effect after an independent assessment found the off-spinner's action to be illegal.
Summary:
Former England cricketer Owais Shah and former Indian cricketer Manoj Prabhakar have applied for the position of the Indian women's team coach.
Summary:
Qualcomm on Monday announced it won a Chinese court order banning the import and sale of AppleâÂÂs iPhone 6S through iPhone X models in China due to software patent violations.
Summary:
Chinese AI-based facial recognition startup Face++ is in talks to raise $500 million in funding at a $3.5-billion valuation, according to a report.
Summary:
Huawei CFO Meng Wanzhou has argued that she should be released on bail, citing her health concerns and properties she owns in Canada.
Summary:
Commenting on RBI Governor Urjit Patel's resignation, Delhi CM Arvind Kejriwal said PM Modi-led government will now bring in a "more pliable RBI governor".
Summary:
While addressing an event on Monday, Congress President Rahul Gandhi hit out at the BJP government saying all institutions including media are under attack during the BJP regime.
Summary:
West Bengal Chief Minister Mamata Banerjee on Monday said that the exit of Urjit Patel as the RBI Governor is the beginning of financial emergency in the country.
Summary:
Former Finance Minister P Chidambaram on Monday said he is "saddened" and not surprised by the resignation of RBI Governor Urjit Patel.
Summary:
Former PM Manmohan Singh on Monday alleged the central government was taking the country towards a "wrong path" and said there's a need for people to "strongly fight against it".
Summary:
Defending his party National Conference's (NC) decision of joining hands with PDP and Congress, he said it was a difficult decision, taken to "save the state".
Summary:
Responding to the "jobless growth" criticism, Finance Minister Arun Jaitley said, "If there was no job creation...
Summary:
Besra works as the Chief Inspector of Ticket in Asansol Division of Eastern Railway.
Summary:
Fugitive businessman Vijay Mallya, whose extradition to India was ordered by a UK court on Monday, has 14 days to appeal against the order.
Summary:
The reports of Acharya's resignation began doing rounds on the internet after RBI Governor Urjit Patel quit from his post citing "personal reasons".
Summary:
Former RBI Governor Raghuram Rajan on Monday said that all Indians should be concerned about Governor Patel's resignation after RBI Governor Urjit Patel quit from his post with immediate effect.
Summary:
Shah Rukh Khan, while reacting to falling out of the top 10 in Forbes India Celebrity 100 list, said, "That's the life of a star." "I've become dearer on Twitter and poorer according to the survey," he added.
Summary:
A Facebook post by a US mother named Kelsey Zwick, thanking a man who gave his first-class flight seat to her and her 11-month-old daughter on their flight to hospital, has gone viral.
Summary:
He added that Ishant felt that as a "senior guy", he shouldn't have committed the mistake.
Summary:
After Urjit Patel announced his resignation from the post of RBI Governor, Congress MP nAhmed Patel said, "BJP Government has unleashed a de facto financial emergency.
Summary:
Reacting to Urjit Patel resigning from the post of RBI Governor on Monday, Congress party tweeted, "Another one bites the dust." "This is the result of our 'chowkidar's' assault on democratic institutions - RBI Governor, Urjit Patel steps down," the party added.
Summary:
Stating he's "saddened, not surprised" by RBI Governor Urjit Patel's resignation, Congress MP and former Finance Minister P Chidambaram tweeted, "Good he quit before another humiliating meeting." Adding that no "self respecting scholar or academic can work in this government," Chidambaram asserted, "November 19 was the day of reckoning.
Summary:
Summary:
After Urjit Patel resigned as Reserve Bank of India's Governor, Prime Minister Narendra Modi tweeted, "We will miss him immensely." Calling Patel an economist of a very high calibre, PM Modi further said, "He steered the banking system from chaos to order and ensured discipline.....[He] is a thorough professional with impeccable integrity.
Summary:
Finance Minister Arun Jaitley on Monday announced that the Centre has decided to increase its contribution to the National Pension System for the central government employees to 14% from 10%.
Summary:
Indian captain Virat Kohli broke out into a laughter after he was shown his on-field dance moves from the first Test in Adelaide by Shane Warne.
Summary:
Speaking about Rishabh Pant's sledging of Australian pacer Pat Cummins, Sunil Gavaskar said, "[D]irectly saying something to a fast bowler...
Summary:
On the field, I did everything I could to win it," the five-time Ballon d'Or winner further said.
Summary:
Jimmy Gressier won the European U23 cross-country men's race in the Netherlands after falling face-first onto the tape that marked the race's finish line.
Summary:
South Korean payment services startup Toss has raised $80 million in a funding round at a $1.2-billion valuation, entering South KoreaâÂÂs billion-dollar club.
Summary:
Google has acquired Bengaluru-based Sigmoid Labs, which runs offline train tracking app âÂÂWhere is My TrainâÂÂ, for an undisclosed amount.
Summary:
Airports Authority of India (AAI) employees are on a three-day relay hunger strike from Monday to protest against government's move to privatise six airports.
Summary:
Prime Minister Narendra Modi on Monday, while speaking at an all-party meeting, appealed to all MPs to utilise the Winter session of Parliament well as it will be the last full-fledged session before the 2019 Lok Sabha polls.
Summary:
BJP organised protest on Monday across Kerala demanding withdrawal of section 144 orders clamped at Sabarimala.
Summary:
Bengaluru-based fresh meat and seafood delivery startup Licious on Monday said it has raised $25 million in a Series D round led by Japan-based Nichirei Corporation.
Summary:
Finance Minister Arun Jaitley on Monday welcomed the UK court's verdict of extraditing fugitive liquor baron Vijay Mallya to India saying it was a "great day" for the country.
Summary:
The police have said that it is not clear whether the woman committed suicide or she fell from the apartment accidentally.
Summary:
Delhi High Court has issued a notice to the Centre, Delhi government and Nizamuddin Dargah trust, demanding their reply on a PIL seeking entry of women into Delhi's Hazrat Nizamuddin Aulia Dargah.
Summary:
The Indian Hotels Company (IHCL), owned by Tata Group, is revamping its budget hotel brand Ginger.
Summary:
RBI may introduce a digital method that would use XML internet format to extract limited information on customers from the Aadhaar database.
Summary:
International Monetary Fund (IMF) Chief Economist Maurice Obstfeld on Sunday said India's growth has been "very solid" over the past four years.
"India under...
Summary:
Mallya, who left India in March 2016, challenged his extradition on grounds of "human rights conditions" in Indian jails in the past.
Summary:
The support and hard work of RBI staff, officers and management have been the proximate driver of BankâÂÂs accomplishments in recent years," he said.
Summary:
The cell will have facilities like TV, personal toilet and washing area.
Summary:
Sara Ali Khan has revealed her mother Amrita Singh couldn't recognise her at the airport due to her weight-loss when Sara came back to India from the US.
Summary:
During the 76th over of Australia's second innings in the first Test at Adelaide, India's wicketkeeper Rishabh Pant taunted number eight batsman Pat Cummins by saying, "It's not easy to survive." "Come on...Patty, not easy to play here, man.
Summary:
Summary:
The court granted five days of extended custody and allowed his counsel 30 minutes in morning and evening for consultancy.
Summary:
A 20-year-old woman died after she fell from a Ferris wheel at a fair in Uttar Pradesh's Ballia allegedly while clicking a selfie, on Sunday.
Summary:
Ahead of UK court's verdict on fugitive liquor baron Vijay Mallya's extradition to India, Mumbai's Arthur Road Jail official said, "We're fully prepared to lodge him safely at our correction centre." If extradited, Mallya will be lodged in a high-security barrack located in the prison complex.
Summary:
Summary:
American singer Beyoncé performed at the sangeet ceremony of Reliance Industries Chairman Mukesh Ambani's daughter Isha Ambani and Anand Piramal which was held at The Oberoi Udaivilas in Udaipur.
Summary:
Denying the reports that said, Anushka Sharma will be collaborating with Salman Khan for Sanjay Leela Bhansali's next film, Anushka's spokesperson said, "There's no truth to the speculations claiming Anushka has been signed for [Bhansali's] next." "Request you to kindly refrain from reporting on the same," the spokesperson added.
Summary:
American singer Beyoncé, who attended the pre-wedding celebrations of Reliance Industries Chairman Mukesh Ambani's daughter Isha Ambani and Anand Piramal, wore outfits by Indian designers while performing at the sangeet.
Summary:
BCCI compared Cheteshwar Pujara's Man of the Match award to the Man of the Match Award won by Rahul Dravid for helping India register a win at the same venue in 2003.
Summary:
AIMIM President Asaduddin Owaisi on Monday tweeted that TRS President K Chandrashekar Rao will form government in Telangana on his own strength.
This comes after Telangana BJP Chief K Laxman had said that in absence of a clear mandate, BJP is ready to support TRS.
Summary:
Speaking about Rishabh Pant's style of play in the Adelaide Test, coach Ravi Shastri said, "You make a mistake now, but don't repeat it, then I'll be in his ears." "You have to allow him to play his game, but he has to be a little more sensible now...
Summary:
BJP General Secretary Kailash Vijayvargiya on Sunday mocked the Opposition's all-party meet, asking them to reveal the name of their Prime Ministerial candidate.
Summary:
He said that without protecting farmers' future, the country cannot move forward.
Summary:
Jammu & Kashmir National Conference leader Omar Abdullah on Monday said that BJP has "cheated the people of Jammu and Kashmir twice".
Summary:
BJP spokesperson Sambit Patra on Monday said that Congress President Rahul Gandhi is "Alibaba" who is "embroiled in corruption".
Summary:
Guo claims that Tencent Music Co-president Guomin Xie used misinformation, threats and intimidation to compel him to sell his $26-million equity stakes in Ocean Music, which eventually merged with Tencent Music.
Summary:
The incident reportedly happened after the infant's mother got into an argument with her neighbour Ramvati, following which Ramvati's drunk husband threw the infant on the ground.
Summary:
An argument broke between them and the accused fired bullets at the man after he came out the shop.
Summary:
Indigenously developed surface-to-surface nuclear-capable ballistic missile Agni-5, which has a strike range of 5,000 km, has been successfully test-fired from Dr Abdul Kalam Island off the Odisha coast.
Summary:
Talking about the Bulandshahr violence, Bhim Army chief Chandrashekhar Azad said, "PM (Narendra) Modi doesn't understand the pain of losing children as he doesn't have any of his own." He added that cow should rather be declared the national animal if such incidences of cow vigilantism are to take place.
Summary:
Kotak Mahindra Bank has moved Bombay High Court after the RBI restricted it from reducing promoter holding to mandated level using Perpetual Non-Convertible Preference Shares (PNCPS).
Summary:
Indian equity benchmark Sensex on Monday crashed 714 points to close at 34,959.72, following sell-off in global markets and amid uncertainty over the outcome of state assembly elections, due on Tuesday.
Summary:
After announcing his resignation from the post of Union Minister, Rashtriya Lok Samata Party (RLSP) chief Upendra Kushwaha said that he has left BJP-led National Democratic Alliance (NDA).
Summary:
Flipkart-owned Myntra's CEO Ananth Narayanan has resigned from his role with his position set to be abolished, according to reports.
Summary:
The Supreme Court on Monday dismissed prime accused Brajesh Thakur's plea to stay the demolition of the building of Muzaffarpur shelter home, where minor girls were allegedly raped.
Summary:
Rapper Badshah, during his appearance on 'Koffee With Karan', revealed that he has been with two women at the same time.
Summary:
Shah Rukh Khan and his wife Gauri Khan danced to the song 'Dilli Wali Girlfriend' from the film 'Yeh Jawaani Hai Deewani' at Isha Ambani's pre-wedding celebrations in Udaipur.
Summary:
Singer Diljit Dosanjh, while appearing on 'Koffee With Karan', revealed he has made out in a car.
Summary:
Summary:
Summary:
Summary:
Responding to Donald Trump's tweets on the ongoing 'yellow vest' protests in France, French Foreign Minister Jean-Yves Le Drian has said the US President should not meddle in the country's affairs.
Summary:
The company's employees spent more than an hour decorating the tree with the coins and topped it with a golden star.
Summary:
Ahead of his extradition hearing on Monday, liquor baron Vijay Mallya has claimed innocence and said he did not steal and instead had infused â¹4,000 crore of his own money to save Kingfisher Airlines.
Summary:
Announcing the date, Salman tweeted, "The most beautiful love story has a release date...Trailer coming soon." The film will be Salman's home production.
Summary:
Summary:
"What a way to start the series!#TeamIndia never released the pressure," read part of Sachin's tweet after the win.
Summary:
I'd like to thank him for all his support," Pujara added.
Summary:
Re-polling in RajasthanâÂÂs Karanpur assembly constituency began on Monday after the Election Commission nullified the votes that were cast on Friday.
Summary:
Indian captain Virat Kohli said that he does not want anyone to go through what Steve Smith and David Warner experienced after the ball-tampering scandal in March this year.
I felt like that the things [that] happened after shouldn't have happened," Kohli said.
Summary:
Reacting to India's win in the first Test against Australia, users reacted with tweets like, "Test cricket, you crazy beauty" and "Wowdelaide!".
Another user reacted to the win with a tweet that read, "India win their first-ever first Test in Australia.
Summary:
Bale's goal helped his side climb back to within five points of La Liga leaders Barcelona.
Summary:
Rashtriya Lok Samata Party (RLSP) chief Upendra Kushwaha, who resigned as Minister of State for Human Resource Development today, said, "PM Modi ji couldn't meet expectations of Bihar's people." "Bihar is still where it was earlier.
Summary:
The incident happened when Ghosh, on his way home from a party meeting, was attacked and shot dead by unidentified assailants, as per reports.
Summary:
Union Minister Rajnath Singh on Sunday said that ending terrorist activities was a prerequisite for any dialogue with Pakistan.
Summary:
At least two people were killed and three were injured after a portion of a godown collapsed in Mumbai's Andheri on Sunday.
Summary:
Union Minister of State Jitendra Singh on Sunday said, "Mainstream politicians of Kashmir are more dangerous than separatist leaders." "Stand taken by separatists is relatively predictable, while the so-called mainstream leaders...turn separatists or mainstreamers by convenience,â he added.
Summary:
Senior journalist and Public Relations Officer in Prime Minister's Office (PMO) Jagdish Thakkar passed away aged 72 on Monday.
Summary:
The official data from Ministry of Home Affairs has revealed that disenchantment among Maoist cadre has led to more surrenders in 2018.
Summary:
India defeated Australia by 31 runs in the Adelaide Test on Monday to register victory in the opening match of a Test series in Australia for the first time ever.
Summary:
The chief of BJP ally Rashtriya Lok Samata Party, Upendra Kushwaha, resigned on Monday as Minister of State for Human Resource Development.
Summary:
Virat Kohli has become the first Asian captain to win Tests in England, Australia and South Africa after leading India to a 31-run victory over Australia in Adelaide on Monday.
Summary:
The two-day long celebrations were held at The Oberoi Udaivilas in Udaipur.
Summary:
Shahid Kapoor, while denying rumours that he is suffering from cancer, tweeted, "Guys I'm totally fine [please] don't believe random stuff." Earlier, a member of his family was quoted as saying, "How can people write just anything?...
Summary:
The last film in the 'Avengers' film series, 'Avengers: Endgame' is scheduled to release on April 26, 2019.
Summary:
Ex-India captain Sourav Ganguly has criticised Australia coach Justin Langer for his remark that Australian cricketers would be the "worst blokes" if they celebrated like Virat Kohli.
Summary:
India's Rishabh Pant took 11 catches in the first Test against Australia at Adelaide to equal the world record for effecting most dismissals by a wicketkeeper in a Test match.
Summary:
"Part of umpiring is to get the no-ball decisions right as well," he stated.
Summary:
"A lot of people around me say that I could have been diplomatic but that is simply not me," he added.
Summary:
"I've played under a lot of captains, but there was only one leader and that was Anil Kumble," he added.
Summary:
"We've enjoyed some of the best moments of Indian cricket inside the dressing room together," he further said.
Summary:
The plea by former BJP MLA Gagan Bhagat had termed the Governor's decision as "arbitrary and illegal".
Summary:
The body of a 22-year-old man was found on Sunday at the same spot in a Maharashtra village where his wife was allegedly killed by her parents in October in a suspected honour killing case.
Summary:
Earlier, a farmer who sold 750 kg onions for â¹1,064, sent his earnings to PM Narendra Modi.
Summary:
The US should not give Pakistan even a dollar until it acts against terrorism, outgoing US Ambassador to the UN Nikki Haley has said.
Summary:
"Shivani [Rani's character] will face a cold, merciless villain who has no empathy, no fear of God and is pure evil.
Summary:
Summary:
Ayushmann Khurrana will be speaking in three different dialects in his upcoming film 'Dream Girl', as per reports.
He will reportedly be speaking in Hindi, Haryanvi and Braj Bhasha.
Summary:
Summary:
Sara Ali Khan, while talking about the ban on her debut film 'Kedarnath' in Uttarakhand, said, "It's very disheartening to not give back to them because they've given me so much." "The dream was that I could pass on this story to some people.
Summary:
Dhubri district recorded the highest voter turnout at 86%, he added.
Summary:
Aam Aadmi Party (AAP) leader Sanjay Singh on Sunday said that BJP is pursuing a politics of "hate and lies".
Summary:
The government has mandated preference to be given to domestically-manufactured vehicles with minimum 65% local content in public procurement of automobiles.
Summary:
Exiled Tibetan spiritual leader the Dalai Lama has said in order to create a peaceful world, first demilitarise the nations.
Summary:
The Nifty 50 Index fell over 200 points to breach 10,500 levels.
Summary:
The customer sued the bank for furnishing three years' account statement to his wife without consulting him.
Summary:
Australia opener Aaron Finch decided not to review umpire Kumar Dharmasena's decision after he was declared caught out in the second innings of the first India Test on Sunday.
Summary:
Recalling the then India captain MS Dhoni's selection policy for the 2012 CB series, Gautam Gambhir said it was a massive shock to him when Dhoni declared that he can't play him, Sachin Tendulkar and Virender Sehwag together.
Summary:
Retiring cricketer Gautam Gambhir has dismissed reports of him joining politics, saying it was nothing more than a rumour.
He further said that he didn't tweet against AAP with an idea of joining politics.
Summary:
A seven-year-old boy from Ganderbal district of Jammu and Kashmir earned praise from Australian spin legend Shane Warne after a video of him bowling a googly surfaced online.
Warne retweeted the video and wrote, "This is outstanding!
Summary:
Scott Krulcik, a 22-year-old software engineer, was found dead in Google's New York City headquarters, police said.
Summary:
The daughter of a retired Inspector General of Police allegedly committed suicide by jumping off the terrace of her residence in Patna on Sunday, a day before her marriage.
Summary:
Authorities say Bearse admitted to sending the nude photos on Snapchat.
Summary:
Speaking about KL Rahul's performance in the 1st India-Australia Test, VVS Laxman said, "I think somehow over the last two years since he achieved success in T20 cricket...
Summary:
India's World Cup-winning former captain Kapil Dev is reportedly set to interview former Indian cricketer and teammate Manoj Prabhakar for the position of the Indian women's team's head coach.
Summary:
Afghanistan has suspended officials, including the president of the country's football federation, over allegations of sexual and physical abuse against the national women's team, officials said Sunday.
Summary:
Smriti scored 69 off 41 balls to help Hobart Hurricanes register a win over Melbourne Stars.
Summary:
With the win, Bangladesh have now taken a 1-0 lead in the series.
Summary:
YouTuber Logan Paul has created a trackable subscription link for viewers to automatically subscribe to the most-subscribed YouTube channel PewDiePie amidst recent competition from T-Series.
Summary:
This comes days after Sidhu had remarked that Congress President Rahul Gandhi was his "captain" while Singh was an "Army captain".
Summary:
Addressing a rally, Dushyant urged the public to oust the Congress, the BJP and the INLD from power.
Summary:
Swaraj India President Yogendra Yadav on Sunday said that the party will not be part of any 'Mahagathbandhan' (grand alliance) of opposition parties for the upcoming Lok Sabha polls.
Summary:
The Bill seeks 33% reservation of seats for women in Lok Sabha and assemblies.
Summary:
According to last yearâÂÂs annual filing, the fund had raised $93.15 billion from 8 investors.
Summary:
According to a report, Pötsch received a presentation in June 2015 stating that US emissions rules were being violated.
Summary:
A mob of around 400 people rampaged through a village in Bulandshahr district on December 3 apparently after cow carcasses were found in a jungle nearby.
Summary:
Punjab CM Captain Amarinder Singh has alleged the opening of Kartarpur corridor is a game plan of ISI to destabilise Punjab.
Summary:
The World Bank has said India will retain its position as the worldâÂÂs top recipient of remittances this year with $80 billion.
Summary:
A 20-year-old Bengaluru man had set his mother ablaze after she denied giving him money.
The accused reportedly got into a heated argument with his mother over money.
Summary:
Historian and author Ramachandra Guha has said that he is receiving threats after he posted a photo of him on Twitter in which he is eating beef.
"I have received threatening calls from a man calling himself Sanjay from Delhi," he tweeted.
Summary:
Police arrested wanted Hizbul Mujahideen militant Reyaz Ahmad at Jammu and Kashmir's Kishtwar on Sunday.
Summary:
As part of the "execution" strategy, it was essential to ensure more notes of the right denomination were made available, he further said.
Summary:
India's current account deficit stood at $19.1 billion, widening to 2.9% of the GDP in the September quarter, compared with 1.1% in the year-ago period.
Summary:
An FIR has been filed against self-proclaimed critic Kamaal R Khan for allegedly making disrespectful comments against LGBTQ community in a video on his YouTube channel.
Summary:
Television actress Devoleena Bhattacharjee, who was questioned in the murder case of Mumbai diamond merchant Rajeshwar Udani, has said she wasn't in a live-in relationship with Sachin Pawar, who has been arrested in the case.
Summary:
"Devoleena has not been detained.
Speaking about the same, Devoleena said, "There's nothing to be tensed...
Summary:
BJP MLA and a member of the erstwhile Jaipur royal family, 47-year-old Diya Kumari has filed for divorce from Narendra Singh after 21 years of marriage.
Summary:
The boy was addicted to smoking and alcohol, and would attack his mother whenever she advised him to change habits, police said.
Summary:
Talking about the Madhya Pradesh polls, Chief Minister Shivraj Singh Chouhan on Sunday said that Congress will "try to create obstacles at the time of (vote) counting".
Summary:
We still believe we're in this game," Lyon said.
Summary:
Senior Telangana Rashtra Samithi (TRS) leader Abid Rasool Khan on Sunday denied any chances of forming an alliance with the BJP in Telangana.
This comes after Telangana BJP chief K Laxman said that the BJP "will support the TRS if it drops AIMIM".
Summary:
BCCI uploaded a photo of Kuldeep, Warne and Indian coach Ravi Shastri, captioning it, "Morning wisdom courtesy @ShaneWarne".
Summary:
After scoring with two free-kicks in Barcelona's match against Espanyol, forward Lionel Messi said that being snubbed for the Ballon d'Or this year did not serve as an extra motivation for his performance in the match.
Summary:
Former South African batsman Herschelle Gibbs is reportedly in the race to become the Indian women team's head coach after Ramesh Powar's tenure came to an end recently.
Summary:
nFather of Android Andy Rubin's startup Essential Products has acquired Indian origin e-mail management startup CloudMagic for an undisclosed amount.
Summary:
Politicians, corporate heads and Bollywood stars reportedly flew in private jets from Mumbai for the party.
Summary:
Congress used to call Vadra a private citizen after his name cropped up in corruption cases but now the whole party stands behind him, he added.
Summary:
Mumbai-based venture-capital firm Lightbox's Co-founder and Partner Siddharth Talwar in an interview talked about venture capital activity in India in comparison to the US and said, "ThereâÂÂs a long way to go".
Summary:
Assam's largest tea garden union has criticised PM Modi for ignoring the plights of the state's tea growers, while calling himself a 'chaiwala'.
Summary:
Senior RSS leader Suresh 'Bhaiyyaji' Joshi on Sunday criticised the BJP government saying we are not begging for the Ram temple but those who are in power had promised for its construction.
Summary:
This comes after the caretaker of a shelter home in Odisha was arrested for allegedly sexually exploiting female inmates this month.
Summary:
Bond said he was amazed to see the cleanliness in the city.
Summary:
The 12-coach train consists of a mini library, foot massager, touch-less taps and individual lockers, among others.
Summary:
Completely digitalized Haj process has helped in making the entire process transparent, he said.
Summary:
Vice President M Venkaiah Naidu on Saturday said, "It's indeed a matter of grave concern that there are nearly 4,127 cases against politicians waiting to be disposed of." "We must ensure that cases against politicians should be fast-tracked," he added.
Summary:
In October, the Uttar Pradesh government had officially renamed Allahabad as Prayagraj.
Summary:
Axis Bank on Saturday inducted Amitabh Chaudhry as additional director on its board, three weeks ahead of his taking over as the new Managing Director and CEO of the private sector lender.
Summary:
State-run Punjab National Bank (PNB) has put up for sale 24 bad loan accounts to recover dues of over â¹1,779.18 crore.
Summary:
Speaking at the launch of his book 'Of Counsel: The Challenges of the Modi-Jaitley Economy', former Chief Economic Adviser Arvind Subramanian revealed, "I was up 24 hours and was sleeping very little for much of the period here." Subramanian, who returned to academia after quitting Finance Ministry, said the transition was "tough".
Summary:
A Brazil court has granted Ghosn access to the property but Nissan is petitioning a higher court to reverse the decision.
Summary:
Beyoncé's team of 60 dancers had already arrived in Udaipur before her, reports added.n
Summary:
UK's 29-year-old Rachael Knappier's upper lip swelled over thrice its original size on receiving a lip filler injection at her friend's house during a 'Botox party'.
Summary:
India restricted Australia at 104/4 in the second innings on the fourth day of the first Test at Adelaide on Sunday, needing another six wickets to win.
Summary:
Former chief of India's Research and Analysis Wing (RAW) AS Dulat has said Pakistan's PM Imran Khan is India's best bet after former President Pervez Musharraf.
Summary:
The CBI has established that AgustaWestland chopper deal scam accused middleman Christian Michel transferred bribe money to Delhi-based businessman RK Nanda to invest in a shell company started in 2005.
Summary:
In an effort to lower wastage of water, around 400 restaurants in Pune have begun serving only half-filled glasses of water to the guests.
Summary:
Around 136,000 people took part in Saturday's protests across France, the ministry added.
Summary:
The Duchess of Sussex Meghan Markle's father Thomas Markle said Meghan would be nothing without him, adding, "I made her the Duchess she is today.
Summary:
Dulquer Salmaan will star opposite Janhvi Kapoor in Karan Johar's upcoming biopic on the first woman IAF chopper pilot Gunjan Saxena, as per reports.
Summary:
'Kedarnath' director Abhishek Kapoor has tweeted, "I plead with the Uttarakhand government to please lift the ban on my film 'Kedarnath'." "It is an attempt to bring peace, harmony and healing to the people of this country.
Summary:
Summary:
Salman Khan won the Best Entertainment Host for 'Bigg Boss', and Anurag Kashyap won the Best Direction [Fiction] for season one of 'Sacred Games' at the inaugural Asian Academy Creative Awards in Singapore.
Summary:
My own dates would have clashed as I am doing a film with Salman sir," Sunil further revealed.
Summary:
Speaking about Indian batsman Cheteshwar Pujara's contribution in the ongoing first Test between India and Australia, former Australian team captain Allan Border said that the batsman's two innings have been the difference between the two teams.
Summary:
Telangana BJP chief K Laxman on Sunday said that in absence of a clear mandate, BJP is ready to support Telangana Rashtra Samithi (TRS) to form government in the state.
Summary:
Indian spinner Ravichandran Ashwin failed to spot India's limited-overs' vice-captain Rohit Sharma's gesture for a handshake right before the tea break on the Day 4 of the Adelaide Test.
Summary:
Lionel Messi scored with two free-kicks to help his side Barcelona thrash Espanyol 4-0 in the sides' Catalan derby on Saturday.
Summary:
China has threatened Canada with consequences if Huawei CFO Meng Wanzhou is not immediately released, calling her arrest âÂÂunreasonable, unconscionable and vile in nature.â Chinese Vice Foreign Minister Le Yucheng urged Canadian ambassador to China John McCallum to release Meng.
Summary:
Former Jammu and Kashmir MLA Abid Ansari quit the Peoples Democratic Party on Saturday.
Summary:
Slack hopes to fetch a valuation of well over $10 billion in its offering, the report added.
Summary:
The surgical strike was a show of strength by our armed forces, he added.
Summary:
Security forces killed 3 militants on the outskirts of Srinagar on Sunday after an 18-hour long overnight encounter.
Summary:
Less than 2% of river Yamuna accounts for 76% of its pollution, a National Green Tribunal appointed-monitoring committee said.
Summary:
The Uttar Pradesh Special Task Force (STF) arrested ten people for providing 'solvers' to candidates in the Railway Recruitment Board Group D examinations.
Summary:
The son of Uttar Pradesh Police SHO Subodh Kumar Singh, who was killed in the Bulandshahr mob violence on December 3, has said that his only priority is to seek justice for his father.
Summary:
At least eleven people, including seven women and two minors, were killed and four others were critically injured in a road accident in Maharashtra's Chandrapur district early on Sunday.
Summary:
The teenager allegedly posted a photo of Lord Hanuman seated along with BR Ambedkar saying some objectionable words.
Summary:
A man from US' Ohio tweeted a picture, wherein he used a long bill to replace his broken window blind.
Summary:
Reliance Industries Chairman Mukesh Ambani's daughter Isha Ambani and her fiancé Anand Piramal danced to the song 'Mitwa' from 'Kabhi Alvida Naa Kehna' at their pre-wedding celebrations in Udaipur.
Summary:
Television actress Devoleena Bhattacharjee was interrogated and detained by Mumbai Police three days after the body of Mumbai diamond trader Rajeshwar Udani was recovered in the forests of adjoining Raigad district.
Summary:
Nita Ambani and her sons Anant and Akash danced to the song 'Maahi Ve' from the film 'Kal Ho Naa Ho' at Isha Ambani and her fiancé Anand Piramal's pre-wedding celebrations held on Saturday in Udaipur.
Summary:
The incident happened when Athawale was leaving the event.
Summary:
A 28-year-old doctor named R Sankara Rao, who took medical coaching at Hyderabad's Bhatia medical institute, sued the coaching centre after he failed to crack AIIMS entrance test.
Summary:
The police claimed the boy had entered into the oven at his father's biscuit factory in the basement of their home.
Summary:
Summary:
Bhadoria can be seen pushing Bhatia in the video.
Summary:
Hundreds of people have been arrested in the worst protests in France in decades.
Summary:
US President Donald Trump on Saturday nominated four-star Army General Mark Milley to be the next Chairman of the Joint Chiefs of Staff.
Summary:
White House Chief of Staff John Kelly will be leaving his position by the end of the year, US President Donald Trump said on Saturday.
Summary:
Mexico's 26-year-old Vanessa Ponce de Leon, who was crowned Miss World 2018 on Saturday, has completed her degree in International Business.
Summary:
Manju Baruah has become the first woman tea garden manager in Assam's nearly 200-year-old tea industry when she was promoted as the manager of Apeejay Tea's Hilika Tea Estate in Tinsukia.
Summary:
Chinese developer Country Garden has elevated the country's richest woman Yang Huiyan to Co-chairman alongside her father.
Summary:
The Finance Ministry on Saturday said the buyers of properties for which completion certificate has been issued at the time of sale will not have to pay Goods and Services Tax (GST).
Summary:
Adani started billing Mumbai consumers from September after it acquired Mumbai power distribution business from Anil Ambani's Reliance Infrastructure.
Summary:
Summary:
Salman Khan will be starring opposite Anushka Sharma in Sanjay Leela Bhansali's next film, as per reports.
Summary:
Mr India Prathamesh Maulingkar was named Mr Supranational 2018 on Saturday during the third edition of the pageant that took place in Poland.
Summary:
Gautam Gambhir, who recently announced his retirement from cricket, said that he had to pay the price for being vocal about "ridiculous things in our system" by having an unfulfilled career.
Summary:
Commenting on the Ram temple issue, Former Jammu & Kashmir CM on Saturday said, "Is Lord Ram going to come from heaven and give farmers something better?" "Will unemployment disappear in a day because Ram is coming?" he added.
Summary:
Summary:
At least two people were killed and one was injured after an under-construction wall in Tardeo region of Mumbai collapsed on Saturday.
Summary:
Jammu and Kashmir on Saturday recorded a total voter turnout of 79.9% in the eighth phase of its panchayat polls.
Summary:
Kerala Chief Minister Pinarayi Vijayan and Minister for Commerce and Industry and Civil Aviation Suresh Prabhu on Sunday inaugurated the Kannur International Airport, the state's fourth international airport.
Summary:
US President Donald Trump on Saturday blamed the Paris climate agreement as protests continued in France over an increase in fuel taxes and other government policies.
Summary:
During the post New Zealand-Pakistan Test series presentation ceremony, victorious Kiwi captain Kane Williamson did not wait for the sponsor to hand him the Oye Hoye Trophy.
Doesn't matter," presenter Ramiz Raja was heard saying.
Summary:
Mexico's Vanessa Ponce de Leon was crowned Miss World 2018 by the outgoing pageant winner, India's Manushi Chhillar, in China's Sanya on Saturday.
Summary:
Frere's 41-year-old daughter Segolene Gallienne and 67-year-old son Gerald Frere now control the family's Groupe Frere-Bourgeois.
Summary:
"Anup ji told Salman we were entering as guru-shishya....I thought of playing...a prank with Salman," said Jasleen.
Summary:
Addressing people ahead of local elections in Haryana, BJP candidate Manish Grover said, "I'm ready to provide you guns, gunmen, money, or anything you want." "I'll make sure you people don't fall short of anything till December 16 (polling date)," Grover added.
Summary:
A 23-year-old man in Pune was allegedly killed by five members of a rival group after he tried to resolve a fight between them and his friend on Thursday.
Summary:
The letter demanding his transfer was sent to Bulandshahr MP Bhola Singh, who forwarded it to SSP KB Singh, PTI reported.
Summary:
The animal shelter described the rescue as "one of the saddest cases we have had in a long time".
Summary:
In Miss World 2018's final round, Mexico's Vanessa Ponce was asked how she would use her influence as Miss World to help others.
Vanessa's winning answer was, "I'd use my position...by being an example.
Summary:
Huawei allegedly used Skycom to do business in Iran, breaching US sanctions.
Summary:
'Udta Punjab' star Diljit Dosanjh has revealed that people told him to get rid of his turban or "not become an actor".
Summary:
Akshay Kumar, whose film '2.0' is set to release in China next May, said, "It feels great to have my films being loved by the Chinese audience".
Summary:
Producer Prernaa Arora has been arrested for her alleged involvement in a fraud of â¹16 crore, as per reports.
Summary:
Actress Janhvi Kapoor will be honoured with the 'Arets Stjerneskudd' Rising Talent of the Year award by the Norwegian Consulate General.
Janhvi made her Bollywood debut with 'Dhadak', this year.
Summary:
Australian cricket team coach Justin Langer said that he needed to be "wary" of criticism from Sachin Tendulkar and that it "could really hurt us" if the players let it get under their skin.
Summary:
With the win, Australia gained a direct entry into the quarter-finals as Pool B winners.
England knocked Ireland out of the tournament after registering a 4-2 win.
Summary:
He knows his game in and out, he knows his strengths," Bumrah added about Pujara, who is currently playing unbeaten on 40.
Summary:
India have gained a direct entry as they are the Pool C toppers.
Summary:
Liverpool registered a 4-0 win over Bournemouth after Mohamed Salah hit a hat-trick on Saturday.
Manchester United registered a 4-1 win over Fulham, who were reduced to ten men in the 68th minute.
Summary:
Summary:
The vessel will be deployed on the seabed at a depth of 26 metres, seven kilometres off the coast.
Summary:
Funds for irrigation worth â¹28,000 crore are currently lying idle with the state government, Munde claimed.
Summary:
The children, aged below 12, reportedly complained of acute headache and giddiness immediately after receiving the vaccine.
Summary:
A man tied up and beat his son-in-law Dnyaneshwar Bamne to death at a village in Maharashtra on Saturday.
Summary:
At 26.6 deaths per 1 lakh people, Africa's road fatality rate is the worst in the world.
Summary:
The number of foreign workers in Japan hit a record high of 12.8 lakh as of October last year.
Summary:
Scaling the pyramids is illegal in Egypt.
Summary:
The 119-metre ship used its crane to lift Goodall onboard.
Summary:
Madhya Pradesh's 21-year-old opener Ajay Rohera has set the world record for the highest score on debut in first-class cricket, achieving the feat against Hyderabad in Ranji Trophy.
Summary:
De Lange conceded back-to-back sixes off back-to-back no-balls as Stars reached 131/9 in 19.4 overs.
Summary:
Chinese telecoms giant Huawei's CFO Meng Wanzhou was arrested in Canada's Vancouver on December 1 while changing planes during a trip from Hong Kong to Mexico.
Summary:
The UN agency for information and communication technologies, ITU, has said that 51.2% of the world's population or 3.9 billion people will be using the Internet by the end of 2018.
Summary:
A 69-year-old doctor from Mysuru, Prabhulingaswamy Sanganalmath, has received a special thanks and a gift voucher of â¬100 (â¹8,000) from Air France for saving an elderly man's life on a flight from Paris to Bengaluru last month.
Summary:
A group of transgenders in Uttar Pradesh rescued a 15-year-old girl from a train, in which she was travelling with a 50-year-old man from Jharkhand.
Summary:
Dubai-based airline Emirates has clarified that an aeroplane which appears to look 'diamond-studded' in a picture shared by the airline earlier this week, is "not real".
Many people considered the aeroplane's image made by artist Sara Shakeel to be real.
Summary:
The clarification came after a media report claimed Berkshire was looking to pick up a 10% stake in Kotak Mahindra Bank.
Summary:
NGO Founder Ravi Kalra, who participated in a recent episode of 'Kaun Banega Crorepati', revealed that Bachchan was moved by the NGO's efforts towards taking care of the elderly.
Summary:
Addressing Mika Singh's recent arrest in Dubai, the singer's spokesperson said, "Mika is being framed." Singh was detained on Thursday after a 17-year-old Brazilian girl filed a complaint alleging that the singer had sent her inappropriate pictures.
Summary:
Sara Ali Khan, who recently made her Bollywood debut with Sushant Singh Rajput's 'Kedarnath', said, "Had my mom not liked the narration of 'Kedarnath', I would've done it anyway." "I value my mother's opinion a lot, but this is your job.
Summary:
Summary:
On the third day of the first Test at Adelaide Oval, Rishabh Pant completed six catches in Australia's first innings to equal MS Dhoni's record for most catches taken in an innings.
Summary:
Facebook also discouraged users from trying to limit how the company shares their data, it added.
Summary:
Civil Aviation Ministry Joint Secretary Shefali Juneja has said, âÂÂWe are looking to form a drone alliance on the lines of Solar Alliance wherein other countries will accept regulations made collectively.â The Ministry plans to brainstorm further on the body during the Global Aviation Summit in January.
Summary:
Northwestern University researchers have developed the world's smallest wearable, battery-free device that measures exposure to light, including UV radiations.
Summary:
Citing breach of Right to Privacy, Goa government opposed a plea submitted in Bombay High Court at Goa seeking disclosure of CM Manohar Parrikar's health status.
Summary:
His tweet came after Lieutenant General (retired) DS Hooda called the hype around the 2016 surgical strikes "unwarranted".
Summary:
Tesla Co-founder and CEO Elon Musk in an interview said that he may buy General Motors plants in North America if they're "going to sell a plant or not use it".
Summary:
A female teacher of a private school in Haryana's Gurugram was suspended for allegedly putting tape on the mouths of two four-year-old LKG children.
Summary:
As many as 240 militants, including foreigners, are still active in the Kashmir valley, the official further said.
Summary:
At least 14 people were killed on Friday when a shootout broke out between the police and bank robbers in Milagres in the Brazilian state of Ceará.
Summary:
US President Donald Trump on Saturday called former Secretary of State Rex Tillerson "dumb as a rock" after the former diplomat claimed Trump asked him to do things that were illegal.
Trump had fired Tillerson in March.
Summary:
A Chinese consortium led by Anta Sports has reached a $5.2-billion deal to acquire Finland's Amer Sports.
Summary:
Virender Sehwag was captaining India when he hit 219 runs against Windies on December 8, 2011, becoming the second cricketer after Sachin Tendulkar to score a double hundred in ODIs. Sehwag's 219(149) is the highest individual score by a captain in ODI cricket history.
Summary:
"I take full responsibility for what I wrote...I was wrong.
I am truly sorry," Mariah Smith wrote.
Summary:
An All India Radio (AIR) official accused of sexual harassment by nine women employees has been demoted from his position as he was found guilty, National Commission for Women said on Friday.
Summary:
Cheteshwar Pujara's 40*(127) and Lokesh Rahul's 44(67) helped India end the third day of the Adelaide Test at 151/3 in the second innings, leading Australia by 166 runs.
Summary:
Armstrong's investment gave him about $20 million in return, according to Bloomberg.
Summary:
Meanwhile, Malik's mother said she would kill him herself if he is found guilty.
Summary:
A Delhi court has summoned Dr PK Gupta for allegedly calling homosexuality a 'genetic mental disorder' and using hormonal and shock therapy to "treat" homosexuals.
Summary:
Isha Ambani and her fiancé Anand Piramal's families have kickstarted the couple's two-day-long pre-wedding celebrations at The Oberoi Udaivilas in Udaipur.
Summary:
After Malvinder Singh alleged he was physically assaulted by younger brother Shivinder Singh, Shivinder said, "Malvinder attempted to forcibly restrain me and pinned me to the wall choking me." "I tried to push him away in self-defence," he added.
Summary:
Katrina Kaif, who attended Deepika Padukone and Ranveer Singh's wedding reception in Mumbai on December 1, has revealed that she was one of the last people to leave the party.
Summary:
Baahubali's Rana Daggubati, Prabhas and director SS Rajamouli will appear together on the sixth season of talk show 'Koffee With Karan', as per reports.
Summary:
Summary:
Pakistan's Prime Minister and former World Cup-winning captain Imran Khan took to Twitter to congratulate spinner Yasir Shah on becoming the fastest cricketer to reach 200 Test wickets.
Summary:
Kohli went past the mark in his 34-run innings in the first Test against Australia in Adelaide on Saturday.
Summary:
England cricketers Ben Stokes and Alex Hales were fined for their involvement in a nightclub altercation that took place in Bristol last year, while their subsequent bans were adjudged to be either suspended or already served.
Summary:
"These apps drain (users') phoneâÂÂs battery and may cause data overages...and can potentially install any malicious modules," Sophos said.
Summary:
Technology major Google has started rolling out a feature which provides both feminine and masculine translations for some gender-neutral terms on Google Translate website in a bid to reduce gender bias.
Summary:
Social media giant Facebook's Board approved a buyback of an additional $9 billion worth of its shares on Thursday, a regulatory filing showed.
"Board had previously authorised repurchases of up to $15 billion...under the program since it commenced in 2017," the filing said.
Summary:
Claiming JNU initially didn't allow his personal security guards inside its premises, BJP MP Subramanian Swamy tweeted the campus "will have to be first brought under AFSPA (Armed Forces Special Powers Act)." Swamy claimed JNU didn't want many students to attend his gathering as it didn't want to overshadow CPI(M) leader Prakash Karat's lecture.
Summary:
The Telugu Desam Party (TDP) will contest Lok Sabha and Assembly elections in Odisha next year, TDP State unit in-charge Rajesh Putra said.
Summary:
After UP CM Yogi Adityanath claimed Lord Hanuman was a Dalit, Congress leader Mallikarjun Kharge accused Yogi of making "inflammatory" remarks and said his conduct is unbecoming of both a saint and a politician.
Summary:
Lok Sabha Speaker Sumitra Mahajan on Friday said that the media portrays a gloomy image of women's safety in India which is not always true.
Summary:
Telangana Chief Electoral Officer Rajat Kumar has said that 1,444 Voter Verifiable Paper Audit Trails (VVPATs) and 754 ballot units were replaced during the state Assembly polls held on Friday.
Summary:
Summary:
A Gujarat court on Friday rejected a bail application filed by former IPS officer Sanjiv Bhatt, who has been behind bars since September in connection with a 22-year-old drug seizure case.
Summary:
The surrendered militant, Ali Mohmmad, was a trained terrorist who later turned to drug smuggling.
Summary:
Iranian President Hassan Rouhani has warned that there could be a "deluge" of drugs, refugees and attacks on the West if US sanctions weaken Iran's ability to deal with them.
Summary:
UpGrad is awarding scholarships worth â¹5 crore to top 200 meritorious candidates who get shortlisted, to help them make a career transition.
Summary:
Gautam Gambhir on Saturday smashed a hundred in the first innings of his last professional cricket match, achieving the feat against Andhra in a Ranji Trophy match at his home ground Feroz Shah Kotla in Delhi.
Summary:
Australia head coach Justin Langer has said if Australian cricketers celebrate wickets like Virat Kohli, they would be considered "the worst blokes in the world".
Summary:
An EVM machine was found lying unattended on the national highway in Shahabad area of Kishanganj constituency in Rajasthan.
Summary:
Five days after a police officer and a civilian were killed in mob violence over alleged cow slaughter in Uttar Pradesh's Bulandshahr, the district's Senior Superintendent of Police Krishna Bahadur Singh has been transferred.
Summary:
Talking about the 2016 surgical strikes, Lieutenant General (retired) DS Hooda on Friday said that "the constant maintenance of hype around the military operations was unwarranted." "We can't take military action to suit someone politically," he further added.
Summary:
At least 11 people have been killed and several others have been injured after a bus skidded off the road and fell into a gorge in Jammu and Kashmir's Poonch, reports said.
Summary:
A Chinese property developer painted floor plans on the backs of topless women during a promotional event for a new apartment complex in Nanning.
Summary:
At least 6 people were killed and around 35 people were injured in a stampede at an Italian nightclub on Saturday.
Summary:
Former US State Secretary Rex Tillerson has called Donald Trump "undisciplined", adding he feels the US President acted on his instincts.
Summary:
Vladimir Furdik, known for portraying 'Night King' in 'Game of Thrones', said the final season of the show is going to have "a lot of surprises".
The final season of the show will air next year.
Summary:
Priyanka Chopra and Nick Jonas will be hosting their wedding reception in Mumbai on December 20, as per reports.
Summary:
Ayushmann Khurrana will star opposite Bhumi Pednekar in Amar Kaushik's upcoming film 'Bala'.
Summary:
Sunil Grover has said he is very happy that Kapil Sharma is getting married, adding, "I wish him a very happy married life...he is about to embrace a new journey." "I pray he keeps laughing and entertains others too, he is very talented," Sunil further said.
Summary:
Hema Malini, who played the character of 'Basanti' in her 1975 film 'Sholay', has said 'Basanti' "remains a symbol of women's empowerment till this date".
Summary:
Summary:
Summary:
Facebook-owned messaging platform WhatsApp on Friday said that child pornography is 'vile' and has no place on the platform.
Summary:
Xiaomi Co-founder and President Lin Bin confirmed that the Chinese smartphone manufacturer will launch the world's first smartphone featuring a 48-megapixel camera sensor in January next year.
Summary:
Summary:
Talking about Prime Minister Narendra Modi, Congress leader Shashi Tharoor on Friday said, "There is incredible disillusionment against Modi." "There definitely is a perception of regime change at the Centre," he added.
Summary:
Punjab Chief Minister Captain Amarinder Singh on Friday gave debt relief against commercial bank loans to the tune of â¹1,771 crore to over 1 lakh eligible marginal farmers in Ludhiana, Patiala, Sangrur and Fatehgarh Sahib districts.
Summary:
This comes after Uber rival Lyft said in a public statement that it had filed for an IPO with the Securities and Exchange Commission on Thursday.
Summary:
InSight had landed on Mars after completing its nearly seven-month-long 458-million-kilometre journey on November 26.
Summary:
The report attributed residential burning of solid fuels for cooking as the main reason for household air pollution.
Summary:
Jammu and Kashmir Police on Friday arrested an agent of Pakistan's Inter-Services Intelligence from Kishtwar.
Summary:
The deceased, Manish Yadav, had been deployed for Kumbh Mela duty.
Summary:
Future Group's fbb has launched its latest men's wear collection with the 'Always Hatke' campaign starring Varun Dhawan.
Summary:
India's new Chief Economic Adviser Krishnamurthy Subramanian, an alumnus of IIT Kanpur and IIM Calcutta, is an Associate Professor at Indian School of Business.
Summary:
Summary:
Summary:
Congress President Rahul Gandhi on Friday tweeted, "In Modi's India, the EVMs have mysterious powers." "In MP, EVMs behaved strangely after polling: Some stole a school bus and vanished for 2 days.
Summary:
Sreesanth has told the Supreme Court through his lawyers that the life ban imposed on him by BCCI is "too harsh".
Summary:
The ball ricocheted towards the goal and bounced off the dog, who was crossing the goal.
Summary:
China on Saturday launched the first-ever spacecraft that will attempt landing on far side of the Moon, which always shows the same face to Earth as it's close enough to be locked by the planet's gravitational field.
Summary:
The incident came to light when the boys refused to go for the classes and one of them told his parents about the sexual assault.
Summary:
The Enforcement Directorate (ED) on Friday conducted raids at premises of the employees of Robert Vadra, the brother-in-law of Congress President Rahul Gandhi.
Summary:
The Bulandshahr incident is an accident and law is taking its course.
Summary:
Calling the 26/11 Mumbai attacks an "act of terrorism", Pakistan PM Imran Khan said, "We want something done about the bombers of Mumbai." "I have asked our government to find out the status of the case.
Summary:
A video shows a 9-year-old boy, who was overwhelmed after meeting Queen Elizabeth II, dropping to the floor and crawling out of the room.
Summary:
US President Donald Trump on Friday nominated William Barr to be the new Attorney General.
Summary:
Germany's ruling Christian Democrat Union (CDU) on Friday elected Annegret Kramp-Karrenbauer to replace Angela Merkel as the party leader.
Summary:
The man shared a selfie of himself at the police station after he surrendered earlier this week and wrote, "Thank you...for letting me do this on my own."
Summary:
Altria Group, the US maker of Marlboro cigarettes, has agreed to invest $1.8 billion for a 45% stake in Canadian cannabis producer Cronos Group.
Summary:
Subramanian obtained MBA and PhD in Financial Economics from the University of Chicago Booth School of Business, where Rajan is currently a professor.
Summary:
Jet Airways Chairman and controlling shareholder Naresh Goyal has reportedly approached Abu Dhabi-based NRI billionaire Yusuffali MA for investing in the struggling airline.
Summary:
The trailer of Marvel Studios' 'Avengers: Endgame' released on Friday.
Summary:
Sharmila Tagore, while talking about her granddaughter Sara Ali Khan, said, "I'm very impressed by her...She's never tongue-tied." "Though I don't see why her self-confidence should surprise me...her confidence, humility and charm made me so happy...it's so heartwarming to see her the way she has turned out," added Sharmila.
Summary:
Telangana Congress candidate Vamshichand Reddy was attacked and his vehicle was pelted with stones near a polling booth in Jangareddy Pally village on Friday.
Summary:
After announcing his retirement from cricket, Delhi cricketer Gautam Gambhir was given a guard of honour by the players during Delhi's Ranji Trophy match against Andhra Pradesh.
Summary:
Congress spokesperson Randeep Surjewala on Friday accused PM Narendra Modi of "behaving like Muhammad bin Tughluq", the 14th century Sultan of Delhi.
Summary:
Activist Sambhaji Bhide, against whom a case was filed in July for stating that mangoes from his farm cured infertility, has been granted bail.
Summary:
Germany has offered â¹720-crore low-interest loan to support reconstruction of bridges and roads that were damaged in Kerala flood.
Summary:
The Ukrainian Parliament on Thursday approved a bill to terminate the Treaty on Friendship, Cooperation and Partnership with Russia.
Summary:
Fugitive businessman Vijay Mallya on Friday said that he didn't borrow a single rupee and that the borrower was Kingfisher Airlines.
Mallya earlier said he had offered to repay 100% of the principal amount.n
Summary:
Sustainable ash utilisation is one of the key concerns at NTPC.
Summary:
Referring to Australia's batting in the first innings of the first India Test on Friday, Sachin Tendulkar tweeted, "The defensive mindset by the Australian batsmen at home is something I've not seen before in my experience." "India should make the most of this situation and not lose their grip," he added.
Summary:
A footage of Premier League club Arsenal's players passing out after inhaling nitrous oxide, which is also known as laughing gas or hippy crack, in a London nightclub surfaced online.
Summary:
Gautam Gambhir, who recently announced his retirement from cricket, has said he had to fight for every inch in his career since he was 12 and he couldn't relax on the cricket pitch.
Summary:
The Kolkata Police on Friday used the reference of Cheteshwar Pujara's recent century against Australia in one of its tweets spreading seat belt awareness.
Summary:
China's state media called technology giant Huawei's CFO Meng Wanzhou's arrest in Canada a "despicable rogue's approach".
Summary:
A six-year-old boy and his two-year-old sister died after a gas explosion occurred in their house at Malakka near Thekkumkara Panchayat of Wadakkanchery in Kerala's Thrissur district.
Summary:
Summary:
Appreciating photojournalist Waseem Andrabi for immediately rushing to help an injured CRPF constable on November 28 during an encounter in Jammu and Kashmir, CRPF DG RR Bhatnagar said, "We are grateful to the photojournalist".
Summary:
After farmer Chandrakant Bhikan Deshmukh from Maharashtra's Nashik got â¹216 for 545 kg onions, he sent a money order of the same amount to CM Devendra Fadnavis.
Summary:
US President Donald Trump on Friday nominated State Department spokeswoman Heather Nauert as the US Ambassador to the United Nations.
Summary:
India's new Chief Economic Adviser Krishnamurthy Subramanian had supported demonetisation, describing it as a "refreshing change".
Summary:
Madhuri Dixit's spokesperson has denied reports that stated the actress will contest the Lok Sabha elections from Pune for the Bharatiya Janata Party (BJP).
Summary:
Fashion designer Sabyasachi Mukherjee has released a video on social media that shows the making of Priyanka Chopra's wedding lehenga and jewellery.
Summary:
Ariana Grande has said this year has been one of the best of her career, while being one of the worst of her life.
Summary:
The Pakistani hockey team's manager Hasan Sardar claimed that a Dutch official named Christian Deckenbrock held a bias against them while handing Pakistan's vice-captain Ammad Butt a one-match ban ahead of Pakistan's match against the Netherlands.
Summary:
The incident reportedly disrupted the voting process for 30 minutes.
Summary:
This is also the New Zealand cricket team's first Test series win in Asia since 2008.
Summary:
Australia's David Warner, who is serving a year-long international suspension for being involved in the ball-tampering scandal, will lead the Sylhet Sixers in the upcoming edition of the Bangladesh Premier League.
Summary:
Huawei Chief Financial Officer Meng Wanzhou, who was recently arrested in Canada, is set to appear in a Canada court on Friday.
Summary:
English yachtswoman Susie Goodall has been stranded in the Southern Ocean after her boat was destroyed in a storm, earlier this week.
Summary:
Researchers from Australia's University of Queensland have developed a test that can detect cancers of all types through the patient's blood with up to 90% accuracy.
Summary:
During a UN General Assembly debate on Afghanistan, India criticised the UN for its failure to sanction new Taliban leaders.
Summary:
Kammenos also pledged to donate his salary to the effort.
Summary:
United Nations Secretary-General António Guterres launched the UN Global Counter-Terrorism Coordination Compact, a new framework to combat international terrorism by coordinating efforts across peace and security and humanitarian sectors, among others.
Summary:
Union Minister Arjun Ram Meghwal had to wait in a queue to cast his vote for over three hours in Rajasthan's Bikaner after the Electronic Voting Machine (EVM) at the booth wasn't functioning properly.
Summary:
Meanwhile, in Jaipur, a 105-year-old woman was also carried inside a booth to cast her vote as there was no wheelchair facility.
Summary:
"What should I do with my original IPL gavel...now that I'm no longer needed to conduct auction?
"The IPL gavel is an icon," he further wrote.
Summary:
The jawan is said to be untraceable since the incident.
Summary:
"Bullying is unacceptable...This is my small way of trying to stop it in my household," the father said.
Summary:
Japan's SoftBank has hired India-born Kirthiga Reddy as the first female partner at its $100 billion Vision Fund.
Summary:
Ramdev met Chief Minister Chandrababu Naidu at the Secretariat on Thursday to discuss the proposed food park.
Summary:
Others in the list include Serena Williams and Melinda Gates.
Summary:
"Being a trained Taekwondo player, I fit the bill and landed a role in the drama," Neetu said.
Summary:
TRS president and Telangana Chief Minister K Chandrashekar Rao cast his vote at his native village Chintamadaka in Telangana's Siddipet district on Friday afternoon.
Summary:
Pakistan hockey player Muhammad Irfan sang the Bollywood song, 'Dil Diyan Gallan' from the Salman Khan movie 'Tiger Zinda Hai'.
Summary:
Cricket Australia has urged BCCI to reconsider its stance on day-night Test matches after a decline in the turnout at the ongoing first Test.
Summary:
A group of labourers living at a makeshift settlement near Telangana's Adloor Yellareddy village, on Friday travelled over 100 km to reach their respective polling stations to cast votes.
Summary:
Marsh became the first Australian since 1888 to register single-digit scores in six consecutive Test innings.
Summary:
An international chess championship has been moved from Saudi Arabia to Russia after concerns over Israeli players being barred from the tournament.
Summary:
Paras Dogra, a 34-year-old batsman who currently plays for Puducherry, set a new record of having the most double tons in Ranji Trophy history after slamming his eighth double ton in the competition against Sikkim.
Summary:
After Indian batsman Cheteshwar Pujara scored his 16th Test ton in the first Test against Australia, former Indian cricketer Sunil Gavaskar said, "With this knock, he has cemented his place for at least a year." "He is someone who drops anchor when things are tough.
Summary:
Social media giant Facebook has confirmed it is testing a video shopping feature on its 'Live' platform.
Summary:
Asrarul won the Kishanganj seat on Congress' ticket in 2009 and retained his constituency in 2014.
Summary:
Kerala BJP General Secretary K Surendran has been granted conditional bail by the High Court for allegedly plotting to attack a 52-year-old woman, who wanted to enter Sabarimala Temple in November.
Summary:
Summary:
Attacking West Bengal CM Mamata Banerjee for denying BJP permission to hold a 'Rath Yatra' in the state, BJP President Amit Shah said Mamata stopped the procession as she is scared of BJP.
Summary:
The Supreme Court on Friday dismissed a PIL filed against Union Minister Arun Jaitley, accusing him of plundering the capital reserve of Reserve Bank of India.
Summary:
The United Nations General Assembly (UNGA) on Thursday rejected a US-sponsored resolution to condemn the Palestinian militant group Hamas for the first time.
Summary:
Ecuador said the UK has guaranteed that Assange won't be extradited to a country where his life is in danger.
Summary:
Located in the Baltic Sea, the island houses animal research laboratories and crematoria.
Summary:
A PhD from University of Chicago Booth School of Business and a top-ranking IIT-IIM alumnus, Subramanian is one of the world's leading experts in banking, corporate governance and economic policy.
Summary:
Speaking about her former boyfriend, Tesla and SpaceX CEO Elon Musk, Hollywood actress Amber Heard has said, "Elon and I had a beautiful relationship, and we have a beautiful friendship now".
Summary:
Khawaja was dismissed for 28(125) after being caught by Pant off Ravichandran Ashwin in the 40th over.
Summary:
Off-spinner Ravichandran Ashwin registered figures of 33-9-50-3 as Australia ended the second day of the first Test at 191/7 on Friday, trailing India by 59 runs.
Summary:
India captain Virat Kohli has said he was "so bad" on his first tour of Australia in 2011-12 but he's "now massively different" from the last two tours.
Summary:
Union Minister Nitin Gadkari was taken to hospital after he fainted during a convocation ceremony at the Mahatma Phule Krishi Vidyapeeth in Maharashtra's Ahmednagar.
Summary:
The anchor can be seen getting out of the frame and saving himself from the fire ball while the panelist answers his question.
Summary:
Pakistan PM Imran Khan has said, "We'd like a proper relationship with the US...I would never want to have a relationship where Pakistan is treated like a hired gun." Commenting on the US operation in which Osama bin Laden was killed, Khan said, "The US should have tipped off Pakistan.
Summary:
Amid the ongoing feud between Fortis Healthcare Founders, Malvinder Singh has accused younger brother Shivinder of physical assault.
And refused to budge until the team here...separated him," Malvinder alleged.
Their feud had surfaced when Shivinder accused Malvinder of mismanagement of Fortis and other group companies.
Summary:
Billionaire Warren Buffett's Berkshire Hathaway is planning to pick up a 10% stake in Kotak Mahindra Bank, a media report said.
Summary:
Salman Khan, along with his brothers Arbaaz Khan and Sohail Khan, will be the first guest on the new version of Kapil Sharma's 'The Kapil Sharma Show', as per reports.
Summary:
Sonam Kapoor, along with her siblings Rhea Kapoor and Harshvardhan Kapoor, will appear on the sixth season of talk show 'Koffee with Karan'.
Summary:
Akshay Kumar has said he doesn't like his children Aarav and Nitara getting photographed, adding, "I'll never bring my kids in front of the camera on purpose.
Summary:
Kevin Hart on Friday announced that he was stepping down as host of next year's Oscars ceremony after homophobic comments the comedian had earlier made surfaced on social media.
Summary:
Kareena Kapoor Khan has said that she is "quite sure" she would do a web series if the content is as "wonderful" as 'Sacred Games'.
Summary:
However, the state government decided not to declare an official ban on the film.
Summary:
India's former Test and ODI captain and former men's cricket team head coach Anil Kumble attended the Hockey World Cup 2018 match between Argentina and France after he was invited as a special guest.
Summary:
After Loktantrik Janata Dal leader Sharad Yadav claimed Rajasthan CM Vasundhara Raje has become "fat", she said, "I actually feel insulted and I think even women are insulted." She said the Election Commission should take cognisance of such language to set an example for the future.
Summary:
Google on Thursday said it will launch an on-demand audio news feed feature which will be managed by its AI program Google Assistant.
Summary:
Summary:
A study by researchers from the University of Washington and Stanford University claims global warming caused the biggest known mass extinction in Earth's history.
Summary:
The National Green Tribunal asked the Karnataka government to set aside â¹500 crore in an escrow account for the cleaning of lakes in Bengaluru like Bellandur and Varthur.
Summary:
She revealed the ordeal to her mother and complained about pain in her private parts upon returning home, following which her relatives and neighbours vandalised the school.
Summary:
Four men have been arrested for allegedly raping a Rajasthani woman who had arrived in Tamil Nadu's Kumbakonam to work at a bank.
Summary:
Former Jammu and Kashmir CM Farooq Abdullah on Thursday asked PM Narendra Modi to take everyone along and "be tolerant like (late PM Atal Bihari) Vajpayee ji".
Referring to PM Modi, he added, "He is the PM.
Summary:
One in every eight deaths in India in 2017 was attributed to air pollution according to a report by the Indian Council of Medical Research (ICMR).
Summary:
The US became a net oil exporter last week for the first time in almost 75 years.
Summary:
Talking about her wedding dress, Priyanka Chopra revealed, "I wanted something unique.
Summary:
Anjali was allegedly accepting money on Zareen's behalf even after her services were terminated.
Summary:
"Surprised to see my name disappear from the voting list after checking online!!" Gutta tweeted.
Summary:
During a Supreme Court hearing, CBI Director Alok Verma's lawyers said on his behalf, "I'm a CBI Director only on my visiting card.
Summary:
The deal includes the transfer of some IBM employees, CFO Prateek Aggarwal said.
Summary:
A convicted killer on the run for the last three years, who recently got a hair transplant for a new look, has been arrested by police from Delhi's Dwarka.
Summary:
Summary:
Pilots flying Boeing's 737 MAX jets in India should be trained on a simulator that replicates the suspected scenario that led to the Lion Air crash, aviation regulator DGCA said.
Summary:
US rapper 2 Milly has sued Epic Games saying they illegally used his dance moves in their popular video game Fortnite.
Summary:
The release date of Parineeti Chopra and Sidharth Malhotra starrer 'Jabariya Jodi' has been announced as May 17, 2019.
Summary:
Summary:
Priyanka Chopra's mother Madhu Chopra, while talking about Priyanka's wedding gown which she wore at her Christian wedding, said, "The white gown was so beautiful.
She further said Priyanka's wedding lehenga was "simple yet classy".
Summary:
DC Comics has featured Russian President Vladimir Putin in the latest issue of its Superman comic 'Doomsday Clock'.
Summary:
Raje, who is contesting from Jhalrapatan constituency, faces former Union Minister Jaswant Singh's son Manvendra Singh.
Summary:
Congress leader and former Rajasthan Chief Minister Ashok Gehlot cast his vote for the state Assembly elections at a polling booth in Jodhpur.
Summary:
Facebook-owned photo sharing app Instagram took to Twitter to acknowledge a glitch on its platform that was causing lines to appear over some posted images.
"That instagram glitch is lowkey the most aesthetically pleasing thing to ever happen to the app," a user tweeted.
Summary:
Facebook has announced it will confirm the identity and location of Indian advertisers wanting to run political ads on the platform ahead of the 2019 Lok Sabha elections.
Summary:
Former Jammu and Kashmir Finance Minister Haseeb Drabu resigned from the Peoples Democratic Party on Thursday.
Summary:
Jethmalani had challenged BJP's decision and sought â¹50 lakh in damages.
Summary:
Bengaluru-based online buy-and-sell platform Quikr has raised around â¹55 crore (around $8 million) venture debt from Temasek-backed InnoVen Capital.
Summary:
Gurugram-headquartered online auto-parts startup Boodmo has raised a Foreign Direct Investment (FDI) of â¹7 crore from an undisclosed Ukrainian private investment fund.
Summary:
The rest 95% is theoretically made up of dark matter and dark energy, which Farnes said may exist as a fluid.
Summary:
Two men have been arrested for allegedly molesting a Canadian woman after inviting her and her male friend to their Mumbai home on Wednesday night.
Summary:
The seizure is among the biggest by an Indian agency along the India-Pakistan border in 25 years, Customs said.
Summary:
He further said that nearly â¹26,000 crore is being spent to clean the river under the National Mission for Clean Ganga.
Summary:
The UK has suspended the Tier 1 visas, known as "golden visas", which offer foreign investors a fast-track to settle in the UK, as part of a crackdown on money laundering and organised crime.
Summary:
Global rating agency Fitch on Thursday lowered India's GDP growth forecast to 7.2% in 2018-19, from 7.8% projected in September, citing higher financing costs and reduced credit availability.
Summary:
He was later arrested by the police from the shop.
Summary:
The girl alleged that Mika, who was in Dubai for an award show, had sent her an inappropriate picture.
Summary:
Australia's Usman Khawaja pulled off a one-handed leaping catch to dismiss India captain Virat Kohli in the 11th over of India's innings in the first Test on Thursday.
Summary:
Australia's Pat Cummins dived and produced a direct hit with just one stump to aim at from short midwicket to dismiss India's Cheteshwar Pujara for 123(246) in the first Test's first innings on Thursday.
Summary:
Voting for 119-member Telangana Assembly and 200-member Rajasthan Assembly began today.
Summary:
The helicopter crash in which Leicester City owner, Vichai Srivaddhanaprabha, and four others were killed, was caused after a pedal controlling the tail rotor became disconnected, investigators said.
Summary:
An FIR has been lodged against members of Dalit outfit Valmiki Kranti Dal for allegedly manhandling a priest and forcing him out of a Hanuman temple on Tuesday.
Summary:
A man committed suicide after allegedly killing his wife in front of his 11-year-old son in a hotel room in Maharashtra's Mahabaleshwar.
Summary:
India on Thursday said that "it was unfortunate that Pakistan attempted to politicise a religious issue", referring to the Kartarpur corridor event.
Summary:
Pakistan's PM Imran Khan said that the Indian media has given a "political colour" to the opening of the Kartarpur corridor.
Summary:
India on Thursday objected to Pakistan's reported move to declare Gilgit-Baltistan in Pakistan-occupied Kashmir (PoK) as an interim province.
Summary:
Pakistan-origin councillor of UK's Sheffield City, Mohammad Maroof was suspended by the Labour council after he sent a photo of a topless woman to women's WhatsApp group 'Mums United' during a meeting.
Summary:
He added that OPEC did not "need permission from anyone to cut" oil production.
Summary:
Billionaire Michael Bloomberg said he is likely to sell his financial data and news company Bloomberg LP if he runs for US President.
Summary:
Comedy-drama film 'Vice' has landed six nominations, including one in the 'Best Film - Musical or Comedy' category.
Summary:
Cooper was nominated in the 'Best Actor - Drama' category along with 'Bohemian Rhapsody' star Rami Malek, among others.
Summary:
Temporary, vendor and contractual employees at Google wrote to CEO Sundar Pichai on Wednesday to protest discrimination against them.
Summary:
"Uber doubled its engineering team in the country as of the third quarter,â Parameswaran said.
Summary:
A magisterial probe into the Amritsar train tragedy in which around 60 people were killed, has given a clean chit to Punjab minister Navjot Singh Sidhu and his wife Navjot Kaur Sidhu.
Summary:
An Amazon automated machine at its New Jersey warehouse punctured a can of bear repellant, releasing toxic fumes on Wednesday, hospitalising 24 employees.
âÂÂAll of the impacted employees have been or are expected to be released from hospital within...
Summary:
US-based ride-hailing startup Lyft on Thursday confidentially filed a statement with the US Securities and Exchange Commission for an initial public offering.
Summary:
A group of female law students from Pune has moved a plea in Delhi High Court seeking directions to the Centre to permit entry of women in Delhi's Hazrat Nizamuddin Aulia Dargah.
Summary:
It disposed of various petitions against a memorandum saying vehicle drivers should carry original documents.
Summary:
The Catholic Church in the Philippines has criticised Duterte's war on drugs which has killed nearly 5,000 people.
Summary:
The National Company Law Tribunal (NCLT) on Thursday dismissed HDFC's plea to initiate insolvency proceedings against RHC Holding, a Non-Banking Financial Company (NBFC) promoted by brothers Malvinder Singh and Shivinder Singh.
Summary:
CAIT also urged the format should be made available in regional languages.
Summary:
Cash-strapped Jet Airways has sought a soft loan of $350 million from its investment partner Etihad Airways, according to reports.
Summary:
Reportedly, the 5G OnePlus device will not be the official OnePlus 7 but will rather be a part of a separate product line.
Summary:
Vinta Nanda has said she's desperately trying to get back to her normal life after she opened up about her alleged rape by Alok Nath 20 years ago.
Vinta further said, "I woke up to the fact that 'I've done it'.
Summary:
Ahead of Telangana Assembly elections, a man from Andhra Pradesh cut his tongue and dropped it in a Hyderabad temple's donation box on Wednesday to allegedly wish for certain politicians' victory in elections.
Summary:
Loktantrik Janata Dal leader Sharad Yadav, who was campaigning in Rajasthan's Alwar, said, "Vasundhara Raje (Rajasthan CM) ko aaram do, bahut thak gayi hain, bahut moti ho gayi hain...pehle patli thi." "Humare Madhya Pradesh ki beti hai," Yadav added.
Summary:
Auctioneer Richard Madley, who has been replaced by Hugh Edmeades for the upcoming IPL auction, said selling MS Dhoni in the first auction is still a "career highlight" for him.
Further, talking about being replaced, Madley said, "A great shock to me being released by BCCI.
Summary:
After the BCCI revealed that UK's Hugh Edmeades will be the gavel master for the 2019 IPL auction, Welsh career auctioneer Richard Madley revealed that BCCI did not invite him to conduct the auction.
Notably, Madley had conducted all the IPL auctions from the start.
Summary:
US-based app-based helicopter and small-planes aggregator, Fly Blade has announced plans to launch services from Mumbai starting March 2019.
Summary:
The court added the rally can't take place till the next hearing date, January 9.
Summary:
Pininfarina, which has designed Ferrari sports cars, was acquired by Mahindra in 2015.
Summary:
Chairman and Chief Interventional Cardiologist at Ahmedabad's Apex Heart Institute, Dr Tejas Patel is credited with over 85,000 cardiac procedures.
Summary:
A Class 7 girl who allegedly committed suicide at her house in Delhi on December 1, had written on her palm that she didn't want to go to school anymore.
Summary:
Furthermore, the cost of manufacturing â¹5 and â¹10 coins is â¹3.69 and â¹5.54 respectively, the RBI said.
Summary:
A 16-year-old girl in Kerala's Kannur has alleged 19 men raped her at various spots across the district.
Summary:
The wife of Uttar Pradesh policeman Subodh Kumar Singh, who was killed in mob violence in Bulandshahr on Monday, told CM Yogi Adityanath that her husband used to receive threat calls.
This record has all gone with the mobile missing after his killing," she told media.
Summary:
World's largest furniture retailer Ikea's parent Ingka Holding has said it will build a $1.2-billion shopping mall in Shanghai which, the company says, is its single biggest investment.
Summary:
"The crew recovered the aircraft at about 200 feet above mean sea level before performing a go around," Hong Kong authorities said.
Summary:
All the top 10 fastest growing cities in the world from 2019 to 2035 are in India, according to a study by Oxford Economics.
Summary:
"If your priority is work, thatâÂÂs right.
If your priority is honeymoon, thatâÂÂs right," the actress said.
Summary:
The film had earned over â¹100 crore worldwide on its opening day.
Summary:
The service is currently only available to riders who signed up on the platform last year.
Summary:
Facebook showed an error in users' passwords and prompted them to reset their passwords by receiving a code in their email, which reportedly did not work.
Summary:
Rashtriya Lok Samata Party (RLSP) chief Upendra Kushwaha while taking a dig at the BJP and the JD(U) has said that political parties should not be building temples, instead they should build schools to help educate the people of the state.
Summary:
Addressing a gathering, she alleged that the common man and farmers are suffering under the BJP rule.
Summary:
Accounting for 7% of global emissions in 2017, India is the fourth highest emitter of carbon dioxide in the world, a study by Global Carbon Project said.
Summary:
Forged Indian and Afghan government visa stamps and documents were recovered during a raid at a printing press in Pakistan's Peshawar.
Summary:
This comes a day after two army personnel were injured in Pakistani firing in Uri sector of Baramulla district.
Both the personnel were hospitalised after sustaining injuries.
Summary:
Hyderabad-based Aurobindo Pharma is reportedly facing a class action lawsuit in the US over cancer-causing elements in its drug.
Summary:
The BJP has shortlisted actress Madhuri Dixit to field her from the Pune Lok Sabha constituency in the 2019 General Elections, reports said on Thursday.
Summary:
While Priyanka came second on the list titled '50 Sexiest Asian Women', television actress Nia Sharma secured the third spot.
Summary:
India batsman Ajinkya Rahane played with a bat signed by former India captain Rahul Dravid in the first innings in the first Test against Australia in Adelaide on Thursday.
Summary:
The Supreme Court on Thursday reserved its order on the plea by CBI Director Alok Verma against the Centre's decision to divest him of his powers and send him on forced leave amid the CBI infighting.
Summary:
"Some players who played with me got opportunity to play in 2-3 World Cups," he further said.
Summary:
The West Bengal government on Thursday informed the Calcutta High Court that it will not grant permission for BJP chief Amit Shah's proposed 'Save Democracy Rally' on grounds that it might cause communal tension.
Summary:
Bahraich MP Savitri Bai Phoole has resigned from BJP saying the party is trying to create divisions in the society.
BJP is doing nothing for Dalit reservation," she said, adding that she will continue as MP till the end of the term.
Summary:
Sitting at Akshardham temple, Patel operated the patient located in Ahmedabad's Apex Heart Institute in a 15-minute procedure.
Summary:
The woman, however, left the corpse inside the toilet after she heard other people entering the facility.
Summary:
Christian Michel, the alleged middleman in the AgustaWestland helicopter deal, reportedly suffered an anxiety attack when he reached the CBI headquarters and doctors had to be called to attend to him.
Summary:
US President Donald Trump on Wednesday called on OPEC nations to not cut oil production ahead of a meeting of the cartel to consider a reduction in output.
"Hopefully OPEC will be keeping oil flows as is, not restricted.
Summary:
Former US President George W Bush purportedly slipped a candy to ex-First Lady Michelle Obama during his father and former US President George HW Bush's funeral on Wednesday.
Summary:
The Chinese Commerce Ministry on Thursday said that it'll "immediately" implement the measures agreed under a trade truce with the US.
Summary:
At least three people were killed and 24 others were injured on Thursday after a suicide car bomber attacked the police headquarters in Iran's port city of Chabahar, Iranian state media said.
Summary:
The plant met 80-90% of the country's demand for sulphuric acid, Ramnath further said.
Summary:
Indian equity benchmarks registered their biggest single-day drop since October 11 on Thursday ahead of assembly election results amid a global market selloff.
Summary:
IndiGo on Thursday became India's first airline to have 200 aircraft in its fleet.
Summary:
The film is based on India's Mars Orbiter Mission, or 'Mangalyaan', launched in 2013.
Summary:
While addressing rumours of her retirement from singing, Lata Mangeshkar said this "seems like the work of an idle mind".
Mangeshkar added that she started receiving texts and calls inquiring about her retirement, two days ago.
Summary:
Claiming Mughal emperor Babur demolished Ram Temple when he was powerful, Haryana Health Minister Anil Vij tweeted that Lord Ram's devotees will construct Ram Temple in Ayodhya when they "become more powerful".
He added, "When Ram bhakts became powerful, they demolished the mosque.
Summary:
President Ram Nath Kovind and Vice President M Venkaiah Naidu paid homage to Dr BR Ambedkar on his death anniversary on Thursday at Parliament House Lawns in Delhi.
Summary:
A large-sized enterprise in India loses an average of $10.3 million annually owing to cyber attacks, a Microsoft-led study said on Wednesday.
Summary:
Indore-based e-commerce startup ShopKirana has raised $2 million (around â¹14 crore) in investment led by Info Edge.
Summary:
The family of the deceased filed a complaint alleging he had committed suicide due to being constantly harassed by his wife.
Summary:
The bases can be launch sites for North Korea's new long-range missiles, including ones that can carry nuclear warheads, analysts said.
Summary:
If the loan doesn't come through, the carrier will approach the government during the winter session of the Parliament for fund infusion, reports further said.
Summary:
Consumer goods giant Unilever's outgoing CEO Paul Polman said he regrets not designing products for e-commerce channels sooner.
for e-commerce channels versus our competitors," the 62-year-old said.
Summary:
Huawei has announced that Huawei Mate 20 Pro, touted in the media reports as the king of smartphones, has sold out completely during the first round of sale on Amazon.
Summary:
Summary:
A goat owned by a Serbian family ate â¬20,000 (â¹16 lakh) the family had saved to buy 10 hectares of land, following which the family cooked the goat and fed it to reporters.
Summary:
Summary:
Cheteshwar Pujara slammed 123 runs off 246 balls as India ended the first day of the Adelaide Test against Australia at 250/9.
Summary:
"Messi told me 'once you get a little older, I'll fix things for you'," Murtaza said.
Summary:
Pakistan leg-spinner Yasir Shah on Thursday became the fastest cricketer to take 200 Test wickets, breaking an 82-year-old record during the third Test against New Zealand.
Summary:
Punjab minister Navjot Singh Sidhu has been advised complete rest for 3-5 days after an "intensive" 17-day election campaign, his office said.
Summary:
Several videos going viral on social media show mob shouting "maaro, maaro", throwing stones and hurling abuses at policemen in Uttar Pradesh's Bulandshahr, where an SHO was killed on Monday.
Summary:
A high alert was sounded in Punjab's Ferozepur and Bathinda on Thursday based on intelligence reports that wanted terrorist Zakir Musa could be hiding in these areas.
Summary:
The Supreme Court on Thursday upheld the decision of Puducherry Lieutenant Governor Kiran Bedi to nominate three BJP-affiliated persons as MLAs, ruling, "L-G has the power to nominate." Bedi's decision was challenged by the Congress which argued that she should have consulted the ruling party.
Summary:
Summary:
Luxembourg is set to become the first country in the world to make all public transport free, implementing the move in 2020.
Summary:
Meng was arrested over potential violations of US sanctions on Iran and faces extradition to the US.
Summary:
After UP CM Yogi Adityanath pledged to rename Hyderabad as Bhagyanagar if BJP is elected in Telangana, Shiv Sena claimed he is busy renaming cities but has failed to address basic issues in his state.
Summary:
A day after the Supreme Court ordered to reopen IT cases against Sonia and Rahul Gandhi, PM Narendra Modi on Wednesday said, "look at the courage of a chaiwala" who took Gandhi family to court's door.
Summary:
Google also turned down reports that it is shutting down Hangouts for its users.
Summary:
He is not a God...That's his wishful thinking." Zoramthanga, whose party is a constituent of the BJP-led North East Democratic Alliance, added, "He cannot predict that in politics.
Summary:
After Union Minister Prakash Javadekar claimed the Congress-JD(S) coalition government in Karnataka would fall any time, CM HD Kumaraswamy dismissed the claim and said, "Our government is as strong as a rock." He added, "For the past six months, they (BJP) have been making noise but it remained a noise.
Summary:
Online food delivery startup Swiggy's services were disrupted on Wednesday in some parts of Chennai after several of its delivery workers went on a strike over its revised salary plan.
Summary:
The launch was reportedly delayed as fungus had grown on the food meant for the mice.
Summary:
During the week of December 6, 1993, seven NASA astronauts went to space to fix errors on Hubble Space Telescope's primary mirror which was leading to blurry images.
Summary:
The government is also considering naming a college after the slain SHO.
Summary:
Patna High Court lawyer Jitendra Kumar was shot dead by assailants on Wednesday, following which advocates protested near the court.
Summary:
"India bows to Babasaheb Ambedkar on Mahaparinirvan Diwas," PM tweeted.
Summary:
Professionals can transition to the field of Data Science through this program with a scholarship of up to â¹1 lakh.
Summary:
Summary:
The Christian wedding was followed by a Hindu wedding ceremony at Jodhpur's Umaid Bhawan Palace.
Summary:
Following the wedding, Priyanka and Nick hosted a reception in Delhi's Taj Palace Hotel on Tuesday and will reportedly host another reception in Mumbai.
Summary:
Priyanka Chopra, on being asked about the article by US magazine 'The Cut' which called her a "global scam artist" for marrying Nick Jonas, said, "I don't even want to react or comment." "I'm in a happy place at this moment.
Summary:
Mexico's Juan Pedro Franco, who was named World's Heaviest Man by Guinness World Records in 2016, has lost the title after reducing nearly 300 kilograms from his original weight of 595 kilograms.
Summary:
During his innings, the 30-year-old also reached 5,000 runs in Test cricket, becoming the 12th Indian batsman to achieve the feat.
Summary:
Further, Pujara and Dravid also reached 3,000 and 4,000 Test runs in same number of innings (67 and 84 respectively).
Summary:
Meng Wanzhou, the Chief Financial Officer of Huawei and daughter of Founder Ren Zhengfei, has been arrested in Canada, reportedly on suspicion that she violated US trade sanctions.
Summary:
RJD workers and lawmakers on Wednesday staged a protest outside the government bungalow occupied by Tejashwi Yadav after authorities tried to get it vacated.
Summary:
Summary:
The draft states that it's the first attempt at the national level to holistically provide protection to witnesses, who are "eyes and ears of justice".
Summary:
The Babri Masjid-Ram Janmabhoomi dispute case is pending in Supreme Court, which will decide the schedule of hearing in January.
Summary:
However, after an investigation, police revealed that the woman in the video wasn't his wife.
Summary:
Uttar Pradesh CM Yogi Adityanath on Thursday met the family of police inspector Subodh Kumar who was killed in violent clashes in Bulandshahr on Monday.
Summary:
A Chicago woman has sued Hilton Worldwide for $100 million saying she was filmed naked in the shower by an employee, who uploaded her footage onto multiple porn sites.
Summary:
After Telangana BJP leader T Raja Singh dared AIMIM chief Asaduddin Owaisi to leave his security and fight him for 15 minutes, Owaisi responded, "Come on, kill me.
Summary:
UK parliament has publicly released a 250-page cache of Facebook's internal documents that its investigatory committee seized last month.
Summary:
IIT Kharagpur researchers have developed a decision support system to diagnose cancerous tumours and others diseased tissues in human lungs.
"While one system can refer to CT scan images to detect lung nodules...second can detect Interstitial Lung Disease patterns", researchers said.
Summary:
Congress has moved Assam State Election Commission against the Prime Minister's Office for allegedly violating the model code of conduct for panchayat polls by announcing the inauguration date of Bogibeel Bridge.
Summary:
Two days before the elections, JD(U) Vice President Prashant Kishor was attacked by students after he held a meeting with university Vice-Chancellor.
Summary:
A Class 7 student from a Delhi school allegedly committed suicide after being scolded by her teacher.
Summary:
A 50-year-old man has been booked for allegedly raping a minor girl repeatedly between October 15 and 20 in Goa, the police said.
Summary:
The police, who have arrested his nephew as well, became suspicious when a labourer who worked with Aakash was reported missing.
Summary:
Questioning the government on delay in implementing its orders against misuse of premises in Delhi's Khan Market, the Supreme Court on Wednesday remarked that orders affecting the rich are not implemented.
Summary:
A man who had helped register their marriage had claimed her death could be a case of honour killing.
Summary:
Inspired by the unpredictable asymmetry of natural stones, Titan Raga launches its latest collection of watches for women with 'I Am' campaign.
Summary:
Six US marines went missing after two military aircraft crashed during a refuelling operation off the Japan coast on Thursday.
Summary:
Actress Priyanka Chopra's future sister-in-law Sophie Turner on Wednesday called a US magazine's article "wildly inappropriate and totally disgusting" for calling Priyanka a "global scam artist" for marrying Nick Jonas.
Summary:
After a journalist asked Delhi Capitals' co-owner Parth Jindal about the meaning of the IPL franchise's new name, the latter said, "You are from the capital, that's what it means." "It's a way of calling the team...Mumbai Indians.
Summary:
Gautam Gambhir, who announced his retirement on Tuesday, said he wants to open both batting and bowling in his "next life".
Summary:
Sachin Tendulkar, in his tweet for Gautam Gambhir, who announced his retirement on Tuesday, wrote, "You were a special talent and had a Gambhir role in our win in the World Cup finals.
Summary:
At least 20 other Indian men and six Thai women are said to be absconding.
Summary:
Kotak Mahindra Bank said promoter Uday Kotak doesn't have any stake in Business Standard and that its ownership is with Kotak family.
Summary:
Padma Shri awardee Piyush Pandey has been appointed as the Global Chief Creative Officer of WPP-owned creative agency Ogilvy.
Summary:
The court also ordered attachment of 86 luxury cars bought using homebuyers' money.
Summary:
The Bombay High Court on Wednesday dismissed an application filed by late actress Jiah Khan's mother to retrieve the messages her daughter exchanged with ex-boyfriend Sooraj Pancholi on BlackBerry Messenger.
Summary:
RussiaâÂÂs largest search engine Yandex has launched its first smartphone 'Yandex.Phone'.
Summary:
MIT scientists, including Punjabi University alumnus Harpreet Sareen, have created a robot called Elowan which when connected to a plant, responds to its need for light.
Summary:
Facebook is no longer the best place to work and has slipped down to rank 7, according to job site GlassdoorâÂÂs âÂÂ2019 Best Places to Workâ list for the US.
Summary:
Apple has filed a patent for a technology reportedly dubbed iSheet which can be woven into a bed cover to monitor user sleep patterns.
Summary:
The infra-red metamaterials reduce thermal emission to avoid detection.
Summary:
Christy Lawton said she created Righter to cater to those conservatives who've been rejected on mainstream dating apps over their political beliefs.
Summary:
IIT Delhi-based startup Nanoclean Global has developed a 'Pollution Net' to filter PM2.5 air pollutants.
Summary:
Gurugram-based property-tech startup BuildSupply has raised $3.5 million (around â¹25 crore) in a Series A round of funding led by Venture Highway, a venture capital fund founded by former Google Corporate Development head for South Asia and Australia Samir Sood.
Summary:
Albert EinsteinâÂÂs 1954 letter about God to German philosopher Eric Gutkind, written a year before his death has sold for nearly $2.9 million at a New York auction.
Summary:
Following the violence in UP's Bulandshahr, Mamata directed West Bengal police to step up vigil near the inter-state boundary.
Summary:
The father of the youth has said, they will continue the strike till their demands are met.
Summary:
"Some 1,500 youngsters start smoking in Pakistan every day, and we want to reduce that number," Kiani added.
Summary:
The Reserve Bank of India on Wednesday said it will constitute a committee to propose long-term solutions for the economic and financial sustainability of Micro, Small and Medium Enterprises (MSMEs).
"[MSMEs] remain...
Summary:
Construction firm Dilip Buildcon has been fined â¹33.78 crore by authorities for allegedly excavating murum (soft rock) illegally in Maharashtra's Beed district.
Summary:
Telecom Minister Manoj Sinha on Wednesday said new norms allowing the use of mobile phones for making calls and surfing Internet during flights in the Indian airspace could come by January.
Summary:
British national Christian Michel, who was extradited from Dubai on Tuesday, is one of the three alleged middlemen in the â¹3,600-crore AgustaWestland chopper scam.
Summary:
"Nick wanted a fling...but ended up in a fraudulent relationship against his will," the article said.
Summary:
Kamini Jindal, a 30-year-old MLA from National Unionist Zamindara Party is the richest candidate contesting Rajasthan Assembly Elections with assets worth â¹287 crore, according to Association for Democratic Reforms and Rajasthan Election Watch.
Summary:
Pakistan's Yasir Shah got run-out for 1(25) in the first innings of the third Test against New Zealand today after losing his shoe at the striker's end.
Summary:
Welsh career auctioneer Richard Madley has been replaced as the gavel master by Hugh Edmeades for the 2019 IPL auction, which will be held in Jaipur on December 18.
Summary:
Actor and KKR owner Shah Rukh Khan, in his tweet for cricketer Gautam Gambhir, who announced his retirement on Tuesday, wrote, "You should smile a bit more." "Thank you for the love and leadership my Captain.
Summary:
Congress Joint Secretary Krishna Allavaru has announced Aljo K Joseph has been removed from Indian Youth Congress' (IYC) legal department and expelled from the party after he represented AgustaWestland scam accused middleman Christian Michel in court.
He didn't consult Youth Congress before appearing in the case.
Summary:
Aljo K Joseph, National in-charge of Indian Youth Congress legal department, is representing AgustaWestland scam accused middleman Christian Michel in court in India.
Summary:
RBI Governor Urjit Patel today refused to answer reporters' questions on the alleged rift between RBI and government, and said, "Is this related to the monetary policy committee resolution?
Summary:
Yogesh Raj, the main accused in the Uttar Pradesh's Bulandshahr violence in which a police inspector and a youth were killed, has released a video claiming he was not at the incident's spot when the clashes broke out.
Summary:
The WTO's Dispute Settlement Body has agreed to create a separate panel to hear the complaints by India, after it filed a second request.
Summary:
Hindustan Unilever (HUL) on Wednesday became only the fifth Indian company to reach a market capitalisation of â¹4 lakh crore.
Summary:
"I'm very comfortable with the comedy films that I have done because they have a certain premise and subtext," Nushrat added.
Summary:
Singer Cardi B took to social media to announce that she and her husband, rapper Offset, have split up after one year of marriage.
But we're not together anymore," Cardi B said in a video uploaded on Instagram.
Summary:
Addressing a rally in Telangana, he said, "the Congress-TDP alliance is coming only to exploit you".
Summary:
BJP would work towards the sentiments of the people of the state, he added.
Summary:
Google has invested in Japanese artificial intelligence and machine learning startup ABEJA as part of its Series C round, bringing the total funding raised by ABEJA to over $53 million to date.
Summary:
Jaipur-based GirnarSoft, the parent company of online car classifieds platform CarDekho, is reportedly raising around $100 million (around â¹700 crore) in a fresh funding round.
Summary:
Miscreants have vandalised the face of the statue.
Summary:
Prime Minister Narendra Modi will inaugurate the Bogibeel Bridge, India's longest railroad bridge, falling in the eastern part of Assam and Arunachal Pradesh on December 25, an official said.
Summary:
Pakistan doesn't appear to be using the full extent of its influence to bring the Taliban to the negotiating table and the militant group is "being utilised as a hedge against India", Joint Staff Director Lt Gen Kenneth McKenzie said.
Summary:
The INF treaty requires the elimination of both US' and Russia's land-based nuclear missiles from Europe.
Summary:
Special Counsel Robert Mueller, who's investigating alleged Russian collusion in the 2016 US presidential elections, has recommended that ex-National Security Adviser Michael Flynn shouldn't serve prison time as he provided "substantial assistance" to the investigation.
Summary:
China established diplomatic relations with Panama last year.
Summary:
This year's Victoria's Secret Fashion Show was watched by fewer people than ever before, ratings revealed.
Summary:
He will replace Lok Ranjan, a 1989-batch IAS officer, on the private sector lender's board.
Summary:
Drugmaker Novartis India on Wednesday said its Vice Chairman and Managing Director Milan Paleja has decided to step down from his post.
Summary:
Pakistani actress Mahira Khan corrected a user who misspelled Ranbir Kapoor's name while trolling her over the pictures which showed her smoking with Ranbir Kapoor in New York.
Summary:
Designers Falguni and Shane Peacock, who designed the lehenga worn by Priyanka Chopra for her Delhi wedding reception, have revealed that it took 12,000 man-hours to make the ensemble.
Summary:
The 6-tier cake was made by chefs flown in by Nick from Dubai and Kuwait, reports added.
Summary:
Rohit Sharma has been included in Team India's final XII for the first Test against Australia, which will begin on December 6 in Adelaide.
Summary:
Ahead of the Adelaide Test, captain Virat Kohli said India wouldn't cross the line but would get into Australian cricketers' heads.
Summary:
As many as 1,003 cricketers, including 232 overseas players, have signed up for upcoming IPL auction to fill up the 70 available spots.
Summary:
South Korean smartphone maker Samsung showed its 5G phone prototype at Qualcomm's Snapdragon Summit in Hawaii, which has a notch on the corner of the display.
Not necessarily indicative of what the final device will look like," Samsung said.
Summary:
Felix Kjellberg, who runs YouTube's most-subscribed channel PewDiePie, has raised ã181,301 (â¹1.6 crore) in just a day for Indian charity CRY, which works with underprivileged children.
Summary:
Christian Michel, the alleged middleman in the â¹3,600-crore AgustaWestland chopper scam extradited from Dubai on Tuesday night, has been sent to five-day CBI custody by a CBI court in Delhi.
Summary:
Researcher Manoj K was killed and three others were injured on Wednesday after a hydrogen cylinder exploded inside the Indian Institute of Science (IISc) laboratory in Bengaluru, police said.
Summary:
CBI investigators said their probe revealed that AgustaWestland's competitor Sikorsky was disqualified during trials.
Summary:
The man approached Bengaluru Police after the fake policemen demanded â¹65 lakh more.
Summary:
South African President Cyril Ramaphosa has appointed Indian-origin Shamila Batohi as the country's first female chief prosecutor.
Summary:
Summary:
Comedian and actor Kevin Hart took to social media to announce that he will be hosting the 91st Academy Awards, also known as the Oscars, next year.
Summary:
Actor Alok Nath has gone missing after a rape and sexual assault case was registered against him last month, said police.
Summary:
While campaigning in poll-bound Rajasthan, BJP President Amit Shah on Wednesday said that BJP has transformed Rajasthan from a 'bimaru' state to a developed one.
Summary:
Former India batsman Virender Sehwag took to Twitter to share a picture of opener Shikhar Dhawan on the occasion of the latter's 33rd birthday and wrote, "Moochhe hon toh Nathulal jaisi hon, warna Gabbar jaisi hon." "Happy Birthday, Shikhar Dhawan!
Summary:
Cuban citizens will be able to fully access the internet on their mobile phones for the first time on Thursday after the government announced the launch of 3G service.
Summary:
The rating was downgraded citing weak profitability at JLR.
Summary:
Volkswagen CEO Herbert Diess on Tuesday said the German automaker was building an alliance with Ford Motor and might use the US automaker's plants to build cars.
Summary:
Cash-strapped automaker Faraday Future on Tuesday said it will send some employees on a temporary unpaid leave due to an ongoing dispute with investor Evergrande Health.
Summary:
A team of French investigators will interrogate suspected ISIS operative Subahani Haja Moideen at the Viyyur Central Jail in Kerala in connection with the 2015 Paris terror attacks.
Summary:
All the passengers were rescued by the police and locals, and were admitted to a hospital.
Summary:
Uttar Pradesh Director General of Police OP Singh on Wednesday called the incident in Bulandshahr a "big conspiracy".
Summary:
UK MPs passed the contempt of parliament motion by 311 votes to 293.
Summary:
Former captain MS Dhoni follows Kohli as the second highest-paid sportsperson in the 2018 list with â¹101.77-crore earnings.
Summary:
Former Coal Secretary HC Gupta was today sentenced to three years in jail by Delhi's Patiala House Court in the coal scam case relating to allotment of coal blocks in West Bengal.
Summary:
Shah Rukh, who had â¹170.50 crore earnings in 2017, featured on nthe 13th spot this year with â¹56 crore earnings.
Summary:
Deepika, who featured on the fourth spot, had earnings of â¹112.8 crore.
Summary:
Her channel, which has over 12 lakh subscribers, has cooking videos of dishes ranging from egg dosas, fish fry to bamboo chicken biryani.
Summary:
Defending the government's decision to send CBI Director Alok Verma and his deputy Rakesh Asthana on leave, Attorney General KK Venugopal on Wednesday said they were "fighting like cats" which was becoming a "matter of public debate".
Summary:
Ahead of the first Test, Australia head coach Justin Langer has said that India are "smelling blood" but they would also be under great pressure to perform.
Summary:
Sudhir Yadav, the BJP candidate from Surkhi constituency in Madhya Pradesh, has been booked under the SC/ST act for allegedly abusing and thrashing a 22-year-old Dalit man.
Summary:
Samsung has been accused of using a DSLR photo for promoting the camera quality of Galaxy A8 Star on their Malaysian website.
Summary:
Summary:
The Orissa High Court on Wednesday granted bail to journalist Abhijit Iyer-Mitra, one month after he was arrested for alleged derogatory remarks on Konark Sun Temple, Lord Jagannath and the Odia community.
Summary:
"There are two ways for India and Pakistan to settle their issuesâ either dialogue or war.
Summary:
Two boys aged 11 and 12 are among the seven people named in an FIR over alleged cow slaughter that led to violence in Bulandshahr, killing a policeman and a youth.
Summary:
A suspected smuggler was seen dropping two migrant children from an 18-foot border wall into Arizona, US, from Mexico.
Summary:
Kingfisher...also contributed handsomely to the States," Mallya added.
Summary:
PM Narendra Modi, who attended Priyanka Chopra and Nick Jonas' wedding reception in Delhi, on Wednesday shared a picture of himself with the couple captioned, "Congratulations Priyanka Chopra and Nick Jonas.
Summary:
Summary:
Summary:
Calling the violence in Bulandshahr that killed one policeman and a youth "unfortunate", BJP chief Amit Shah on Wednesday said it would be unfair to give "political colour" to the incident.
Summary:
Online booking platform Cleartrip has fired nearly 100 employees in India and is shifting its focus to the Middle East, according to a report.
Summary:
Online food delivery startup Zomato has acquired Lucknow-based drone delivery startup TechEagle Innovations.
Summary:
Days after the Enforcement Directorate summoned him in connection with a money-laundering probe in a land deal case, Congress chief Rahul Gandhi's brother-in-law Robert Vadra has claimed that it is a "political witch-hunt" against him.
Summary:
The Vishwa Hindu Parishad has said it'll observe Shaurya Diwas in Ayodhya on December 6, the anniversary of Babri Masjid demolition.
Summary:
Four to six injury marks consistent with stone pelting were also revealed in the post-mortem report.
Summary:
Twenty CRPF personnel collected funds among themselves to purchase a sewing machine for a Kashmiri girl and decided to pay for her younger sister's education.
Summary:
Kerala Social Justice Minister KK Shailaja today said children are being used as "shields" during agitations like the Sabarimala stir.
Summary:
Abu Dhabi-based Etihad Airways, the second largest shareholder of Jet Airways, is reportedly holding talks with Jet Airways and its bankers on a rescue plan.
Summary:
Ahead of his extradition hearing, liquor baron Vijay Mallya on Wednesday made a series of tweets saying, "I'm offering to pay 100% back.
Summary:
The Reserve Bank of India has kept the repo rate, the rate at which banks borrow from RBI, unchanged at 6.50% in its fifth bi-monthly monetary policy review of 2018-19.
Summary:
Shikhar Dhawan smashed the fastest debut hundred in Test history off 85 balls against Australia in Mohali in 2013.
Summary:
Zomato's Chief Financial Officer (CFO) Sameer Maheshwary has quit the food ordering and discovery platform within five months of taking over the position in July this year, Zomato confirmed.
Summary:
Doctors have reported the birth of a healthy baby in Brazil, born last December to a mother who received a womb transplant from a 45-year-old deceased woman.
Summary:
A faculty member of the Indian Institute of Technology Madras has allegedly committed suicide at her quarters inside the campus.
Summary:
A 36-acre lake in Karnataka's Morab is being drained as villagers refused to use its water after the body of a woman suspected to be HIV-positive was found floating in it.
Summary:
The 37-year-old killed her to start a new life with his boyfriend whom he reportedly met on a gay dating app.
Summary:
The commission conducting inquiries into the death of ex-Tamil Nadu CM J Jayalalithaa has ordered the media to not telecast or report any news related to her death.
Summary:
Sampath reportedly kept changing the camera positions during renovations till he got a proper view.
Summary:
The priest at Sankat Mochan Temple in Varanasi has claimed that they received a letter threatening a bomb blast in the temple and have handed it to the police.
Summary:
Leingang planned to drive the forklift into Trump's motorcade while he was visiting the city of Mandan.
Summary:
Jet Airways would bring on board a new investor in 2-3 months to help fund the cash-strapped full-service airline, CEO Vinay Dube reportedly told pilots last week.
Summary:
Prime Minister Narendra Modi has claimed Congress gave tickets to family members of party leaders accused or convicted of rape.
Summary:
Summary:
Congress leaders have approached the Election Commission demanding action against BJP chief Amit Shah and accused him of spreading misinformation and "stoking communal tensions" in Telangana.
Summary:
Social media giant Facebook temporarily deleted an internal memo, shared with its employees globally by former Partnerships Manager Mark Luckie, which had accused it of "failing its black employees and...users." Facebook had said the memo about racial discrimination violated its âÂÂcommunity standards,â but restored it later.
Summary:
German firm BigRep claims it has produced the world's first fully functioning e-motorbike NERA using a 3D printer.
Summary:
The patent, which was filed in May 2018, shows a smartphone with two displays, each on the front and back, with six different display modes.
Summary:
BJP spokesperson GVL Narasimha Rao has said the extradition of Christian Michel, the alleged middleman in the AgustaWestland scam, "could spell serious trouble for the Congress' first family".
Summary:
Amazon's Indian marketplace arm Amazon Seller Services received its fourth internal investment of â¹2,200 crore on November 19, as per filings.
Summary:
A proposal to construct a new bridge will soon be submitted by the authorities.
Summary:
State-owned Airports Authority of India (AAI) employees staged protests across the country against the government's decision to privatise six profit-making airports, a union representative said.
Summary:
Section 144, which prohibits assembly of four or more people, has been extended till December 8 midnight in Sabarimala, Nilakkal and Pamba areas.
Summary:
Italian police on Tuesday arrested the suspected new head of the Sicilian mafia Settimo Mineo along with 45 other associates.
Summary:
Central Board of Direct Taxes (CBDT) Chairman Sushil Chandra on Tuesday said the number of income tax return filings has increased by 50% to 6.08 crore so far this year, compared to the year-ago period.
Summary:
Anushka Sharma, while denying rumours of her pregnancy, said, "[Spreading rumours] is something people will do anyway...You can hide a marriage but not pregnancy." "I feel every female actor goes through it, people...make you a mother before you are pregnant," she added.
Summary:
Only 2 Indians have taken more ODI wickets than him, Anil Bhai and Sri Srinath !
Mast, Saral manus @imAagarkar, Happy Birthday." Notably, Agarkar holds the record for the fastest ODI fifty by an Indian.
Summary:
nCristiano Ronaldo's sisters Elma and Katia took to social media to put the blame for his Ballon d'Or snub on the mafia after Luka ModriÃÂ was crowned winner.
Summary:
The duo had registered a third-wicket partnership of 224 runs to help India chase down a target of 316, with Gambhir scoring 150*(137).
Summary:
Gautam Gambhir, who announced his retirement from cricket on Tuesday, said he knew his time was up after six matches of Indian Premier League 2018.
But I was wrong," added Gambhir, who scored 85 runs in six IPL 2018 matches.
Summary:
France-based Arianespace on Tuesday successfully launched GSAT-11, the heaviest satellite built by ISRO from its port in French Guiana.
Summary:
The usage of colistin and other such drugs in livestock has been linked to antibiotic resistance in humans.
Summary:
Kerala CM Pinarayi Vijayan has said they have given an in-principle approval to build a greenfield airport near Erumeli for Sabarimala Temple pilgrims.
Summary:
Parents who had sent their children on a school trip to Chennai's Chokhi Dhani have alleged that the resort's staff hit their children with an iron rod and threatened to make them drink camel urine.
Summary:
India and UAE on Tuesday signed a â¹3,500-crore currency swap agreement during External Affairs Minister Sushma Swaraj's Abu Dhabi visit.
Summary:
US President Donald Trump has called himself a "Tariff Man", warning China he would impose duties if a trade deal between the two countries doesn't materialise.
Summary:
Employees of UK luxury fashion brand Ted Baker have started a petition calling for an end to alleged culture of "forced hugging" by the firm's 62-year-old Founder and CEO Ray Kelvin.
Summary:
Priyanka Chopra's wedding gown, designed by Ralph Lauren, had the words 'Family', 'Hope' and 'Compassion' embroidered on it, the luxury fashion brand announced on Instagram.
Summary:
While speaking about the controversy surrounding her upcoming film 'Kedarnath' and its director Abhishek Kapoor, Sara Ali Khan said it was "terrifying" as they were so attached to the project.
Summary:
Minority Affairs Minister Mukhtar Abbas Naqvi on Tuesday said Telangana Rashtra Samithi (TRS) government's decision to give 12% quota to Muslims is a move aimed at hijacking voters in the state.
Summary:
A Telangana candidate ordered 'Indian eagle-owls' to bring misfortune to his political rivals in the state, according to reports.
Summary:
Summary:
Ten kids from different parts of India, including four girls, have been selected to represent India as the official ball kids at the Australian Open 2019, it was announced on Tuesday.
Summary:
Australia is set to pass legislation giving police and intelligence agencies access to encrypted messages on platforms such as WhatsApp. The government reached an in-principle agreement after changes were made to âÂÂinclude limiting the application of the powers in this bill to only serious offences,â Shadow Attorney-General Mark Dreyfus said.
Summary:
Two fitness apps on the App Store 'Fitness Balance' and 'Calories Tracker' were using Touch ID to scam users, according to a security researcher who reported the apps.
Summary:
Telangana Congress Working President Revanth Reddy was released from police custody on Tuesday evening following a direction from the Hyderabad High Court.
Summary:
The Congress on Tuesday criticised PM Narendra Modi over Uttar Pradesh's Bulandshahr violence asking if this was the "change" PM promised to the country.
Summary:
Names of Punjab CM Captain Amarinder Singh and Karnataka CM HD Kumaraswamy appeared in the list of lawmakers facing criminal charges submitted to Supreme Court on Tuesday.
Summary:
Supreme Court has imposed a fine of â¹2 lakh on Delhi over its failure to create an online link for monitoring mid-day meal scheme in schools.
Summary:
A panel constituted by Securities and Exchange Board of India (SEBI) on Tuesday proposed to allow Indian companies to directly list on overseas stock exchanges.
Summary:
IndonesiaâÂÂs Lion Air is reviewing purchases from Boeing and may cancel orders âÂÂfrom the next deliveryâÂÂ, according to reports.
Summary:
Priyanka and Nick got married in a Christian wedding ceremony on Saturday, followed by a Hindu wedding.
Summary:
Prime Minister Narendra Modi attended actress Priyanka Chopra and American singer Nick Jonas' wedding reception held in Delhi's Taj Palace Hotel on Tuesday.
Summary:
Gautam Gambhir, who announced his retirement from cricket on Tuesday, was the top scorer for India in the 2007 and 2011 World Cup finals that India won.
Summary:
The restaurant witnessed a car crash just two weeks ago.
Summary:
Ada Hegerberg, who won the first ever women's Ballon d'Or, was born in Norway's Molde on July 10, 1995.
Summary:
"In my tough times, mom was and is my favourite punching bag.
I'm extremely sorry, mom, I've been an absolute jughead," he further said.
Summary:
Four former employees of Uber Technologies have accused the company of blocking them from disclosing "a number of deeply troubling practices at Uber that have not been publicly revealed." They were responding to Uber's complaint accusing them of improperly taking confidential records when they left the company.
Summary:
The accused reportedly had a room with a bed inside the premises to run the prostitution business.
Summary:
Pakistan PM Imran Khan on Monday said India's former PM Atal Bihari Vajpayee had told him that Kashmir issue would've been resolved if BJP hadn't lost the 2004 Lok Sabha elections.
Summary:
A probe has been ordered by Aligarh Muslim University (AMU) administration after a group of vegetarian students alleged that the oil used for preparing 'chicken fry' was reused for making 'pooris' for them at a university hostel.
Summary:
Dubai has passed order to extradite British national Christian Michel James, a key accused in the â¹3,600 crore AgustaWestland VVIP chopper scam, to India.
Summary:
"[You're] remembering protocol and she says 'Oh it's all rubbish, just get in'," Obama said.
Summary:
Schuurman's 19% stake in Elastic is valued at $1.1 billion.
Summary:
The groom, American singer Nick Jonas, had worn a beige hand-quilted silk sherwani by Sabyasachi.
Summary:
Congress President Rahul Gandhi on Tuesday criticised PM Narendra Modi over his promise of providing employment to two crore youths and said if he gave employment, "why did four youths commit suicide in [Rajasthan's] Alwar?" The youths allegedly jumped before moving train in a suspected suicide pact in Alwar.
Summary:
As of Monday, officials have reportedly seized illegal goods and unaccounted cash worth about â¹111 crore in poll-bound Telangana.
The cash and goods' seizure figures were â¹76 crore in [undivided] Andhra Pradesh during 2014 elections," an official said.
Summary:
Rajasthan CM Vasundhara Raje's son Dushyant Singh has said BJP's development work will "talk" and help BJP cross the "hurdle" of 100 Assembly seats in the state.
Summary:
Swiss tennis star Roger Federer completed 1,000 weeks inside the top-100 of the ATP men's singles rankings.
Summary:
Reacting to Gautam Gambhir announcing his retirement from cricket, a user tweeted, "Thank you Gambhir for the two world cup innings ..@GautamGambhir all the very best for your future endeavours." "I gotta say..
Congratulations @GautamGambhir on an amazing career," read part of Robin Uthappa's tweet.
Summary:
âÂÂAs we showed this year, we wonâÂÂt give a platform to violent conspiracy theorists on the App Store,â Cook said.
Summary:
Due to aggressiveness and violence promoted by BJP, its leaders were also suffering in UP, she said.
Summary:
They investigated 227 exoplanets found during NASAâÂÂs K2 mission and confirmed 104 of them.
Summary:
A resident of Delhi's Rohini, the policeman was posted as a constable at Parliament Street, a senior police officer added.
Summary:
The treaty required the elimination of US' and Russia's nuclear missiles from Europe.
Summary:
Russia has partially unblocked the Ukrainian seaports on the Azov Sea amid the ongoing standoff between the two countries, Ukraine's Infrastructure Minister Volodymyr Omelyan said.
Summary:
The National Company Law Tribunal's (NCLT) Mumbai bench on Monday restrained nine former officials of Infrastructure Leasing and Financial Services (IL&FS) from selling their personal assets.
Summary:
Central Board of Direct Taxes (CBDT) Chairman Sushil Chandra on Tuesday said Income Tax Return (ITR) forms will soon be pre-filled.
Summary:
The 37-year-old, who was India's highest run-scorer in both the 2007 WT20 and 2011 World Cup finals, played 58 Tests, 147 ODIs and 37 T20Is.
Summary:
Varun Dhawan will be paid â¹21 crore for Remo D'souza directorial ABCD 3, as per reports.
Summary:
Gavaskar cited the example of batsman Siddhesh Lad, who hasn't earned a call-up to the India 'A' squad despite his consistency in domestic cricket.
Summary:
Congress President Rahul Gandhi while addressing a rally in Rajasthan on Tuesday wrongly called 'Kumbharam Lift Yojana' as 'Kumbhakarna Lift Yojana'.
Summary:
BJP leader and Union Minister Uma Bharti on Tuesday announced she'll not contest the Lok Sabha elections in 2019 and will concentrate on the issues of Ram temple and cleanliness of the river Ganga.
Summary:
"It's against the law for foreign nationals to partake in such meetings...We will arrest him soon," a police official said.
Summary:
Talking about granting India a possible sanctions waiver for purchasing Russian S-400 missile defence systems, US Defence Secretary James Mattis said, "We'll sort out all those issues." His statement came as Defence Minister Nirmala Sitharaman is currently on an official visit to the US.
Summary:
A transwoman police officer from Tamil Nadu's Ramanathapuram district was admitted to a hospital after she attempted suicide allegedly after she was verbally abused by three superior officers while on duty.
Summary:
Patricia, who was wearing a half-sleeve pantsuit, tweeted a picture of herself, which went viral.
Summary:
This comes after his fans started posting offensive comments about India amid concerns that T-Series will take over as YouTube's most subscribed channel.
Summary:
Tiger and his co-stars shot a song with Will Smith for the film.
Summary:
"To save...chair, you (TRS) are conspiring to steal their rights (Dalits, STs and OBCs) from...back door," he said.
Summary:
Prime Minister Narendra Modi on Tuesday hit back at Congress chief Rahul Gandhi saying 'Naamdar' (Rahul) has come up with a "fatwa" that "I shouldn't begin my rallies with 'Bharat Mata Ki Jai'".
Summary:
Commonwealth Games gold medal-winning javelin thrower Neeraj Chopra said, "In India, there are good diets you can follow but it is about taste as well.
Summary:
Pakistani all-rounder and former captain Mohammad Hafeez announced that he will retire from Test cricket at the end of the ongoing third and final Test match of the series between Pakistan and New Zealand in Abu Dhabi.
Summary:
Canada's now-retired weightlifter Christine Girard was given the London 2012 gold medal and the Beijing 2008 bronze medal after the urine samples of the weightlifters finishing above her at the events tested positive for banned substances.
Summary:
Microsoft Azure recently launched the Virtual Assistant Accelerator, which promises to develop conversational bots to enhance personalised content delivery across multiple devices.
Summary:
Gift platform 1-800-Flowers' Canadian branch in a filing said that malware on its website had unauthorised access to customers' credit cards for four years, between August 15, 2014 to September 15, 2018.
Summary:
AlibabaâÂÂs video streaming unit Youku's President Yang Weidong has stepped down amid an anti-corruption probe.
Summary:
Ahmed's comments were in an apparent reference to the hug between Bajwa and Punjab Minister Navjot Singh Sidhu during Pakistan PM Imran Khan's swearing-in ceremony.
Summary:
Citing personal problems for drinking alcohol, Krishnan pleaded guilty to charges of molestation.
Summary:
Talking about the Doklam issue, he said both India and China should resolve the issue together.
Summary:
Ex-US First Lady Michelle Obama has said that the world's most powerful people "are not that smart".
They don't solve problems any better," she further said.
Summary:
US State Secretary Mike Pompeo has said that President Donald Trump is rallying the world to build a new liberal world order.
Summary:
French fashion house Chanel will no longer make use of exotic animal skins and fur in their collections, announced Chanel's President Bruno Pavlovsky.
Summary:
US-based private equity firm Blackstone Group is reportedly in talks to acquire Adani Realty's commercial office project at Mumbai's Bandra Kurla Complex for around â¹1,900 crore.
Summary:
They had also shared pictures from their Mehendi and Sangeet ceremony on social media.
Summary:
US Defence Secretary Jim Mattis has said it is time for every "responsible nation" to support peace efforts by Indian Prime Minister Narendra Modi, the UN and Afghanistan President Ashraf Ghani in South Asia.
Summary:
On December 4, 2009, Virender Sehwag was dismissed for 293(254) on the third day of the Mumbai Test against Sri Lanka, falling short by just seven runs to become the first cricketer to hit three Test triple centuries.
Summary:
Manisha Koirala, while posting a message for Sonali Bendre who has returned to Mumbai amid her cancer treatment, wrote, "Welcome dear...discovering "the new normal" will be exciting." She added, "Navigating mindfully, it's indeed a soulful time!!
Summary:
The Indian Olympic Association (IOA) has submitted a formal expression of interest to bid for 2032 Olympics.
"We are dead serious about this bid for the 2032 Olympics.
Summary:
"We wanted this name to mean something to each and everyone from Delhi," Parth Jindal, the co-owner of the franchise said.
Summary:
University of Leeds researchers led by Devesh Mistry have discovered the first synthetic material that becomes thicker at the molecular level as it is stretched.
Auxetic materials...get thicker," Mistry said.
Summary:
The Kerala High Court has rejected a PIL filed by BJP leader Sobha Surendran against alleged police action at Sabarimala Temple and imposed a fine of â¹25,000 for wasting the court's time.
Summary:
The US' Federal Bureau of Investigation (FBI) has assisted the Noida and Gurugram Police to bust a call centre scam.
Summary:
A 19-year-old student of National Fire Service College, Nagpur, allegedly committed suicide at the railway tracks near the New Delhi Railway Station on Sunday.
Summary:
More than 130 people were injured and over 400 were arrested as protests turned violent in Paris.
Summary:
A female journalist was on Monday removed from the Australian parliament for allegedly breaching the dress code.
Summary:
Confusion of Confusions, the first book known to be written about a stock exchange, went on sale at a Sotheby's online auction with a reserve price of $190,000 (â¹1.3 crore).
Summary:
"The reason I stayed away...was that the nature of the beast is such that it becomes a business," Aishwarya explained.
Summary:
Hours after Telangana Congress Working President Revanth Reddy was taken into preventive custody, Congress leader GN Reddy said he is not an ordinary man but instead a "BrahMos missile" that is going to "finish" the Telangana Rashtra Samithi.
Summary:
Rajasthan Congress chief Sachin Pilot has said Rajasthan CM Vasundhara Raje has failed to deliver results of the promises she made for the state on all counts.
The palpable unrest is because of non-delivery of promises, he said.
Summary:
France's 19-year-old World Cup-winning forward Kylian Mbappe won the Trophee Kopa, awarded at the Ballon d'Or ceremony to the best young player under 21 years of age at Monday's ceremony in Paris.
Summary:
Blogging platform Tumblr has said that it will ban all "adult content", which includes "real-life human genitals or female-presenting nipples, and any content...that depicts sex acts," starting December 17.
Summary:
Congress chief Rahul Gandhi on Monday claimed PM Narendra Modi is creating "two Hindustans".
Summary:
Premium automaker Audi on Tuesday said it would invest $15.9 billion through 2023 in electric mobility, digitalisation and autonomous driving.
Summary:
California and Bengaluru-based marketing cloud startup MoEngage has raised $9 million (around â¹63 crore) in a Series B round of funding led by new investors Matrix Partners and VenturEast.
Summary:
Chinese scientist He Jiankui, who claimed the creation of world's first gene-edited babies, has reportedly gone missing since the medical conference in Hong Kong last week.
Summary:
Russian Ambassador to India Nikolay Kudashev on Monday said Russia is ready to assist India, particularly in training astronauts, for Gaganyaan, its first manned mission to space planned for 2022.
Summary:
The local lawyers' association launched a 24-hour bandh in Odisha's Balangir district on Monday to demand the establishment of a permanent High Court bench in the district.
Summary:
Uttar Pradesh CM Yogi Adityanath on Tuesday said that if Jaish-e-Mohammed chief Masood Azhar will "threaten us over Ram temple," then he will be eliminated in next surgical strike.
Summary:
Talking about the January 12 press conference organised by the four Supreme Court judges, former SC judge Kurian Joseph said, "Barking wasn't yielding the result, [so] we decided to bite." He added that there was a perception that the then CJI Dipak Misra was not taking decisions independently.
Summary:
The government-appointed board at Infrastructure Leasing & Financial Services (IL&FS) plans to cut 65% of the jobs in a bid to revive the conglomerate.
Summary:
Pakistan Railways dismissed Dera Ismail Khan for 59 runs combined in two innings after registering 910/6 in their first innings in a first-class match which ended on December 4, 1964.
Summary:
At Monday's close, Apple was back on top with a market value of $877 billion followed by Amazon at $866.6 billion.
Summary:
A pledge to stop offering single-use plastic bags by Australia's two largest supermarkets has prevented the introduction of an estimated 1.5 billion bags into the environment.
Summary:
The Supreme Court was on Tuesday informed that there are over 4,000 criminal cases pending, some for over three decades, against former and present parliamentarians and legislators.
Summary:
Summary:
The Supreme Court on Tuesday allowed a two-member Special Investigation Team (SIT) to supervise the probe in 186 cases related to the 1984 anti-Sikh riots.
Summary:
Qureshi had said that PM Khan had 'bowled a googly' to ensure India's presence at the Kartarpur corridor event.
Summary:
The accused had promised to get the doctor's friends jobs in the state health department, according to her complaint.
Summary:
Summary:
Ryan's YouTube channel Ryan ToysReview has amassed more than 17 million followers and 26 billion views since its launch in 2015.
Summary:
We all family members have believed...whatever makes the other person happy, makes us happy," added Anil.
Summary:
The complainant alleged that she was abused by Dilip at a recent party in Versova, which was followed by Armaan calling her up and using foul language.
Summary:
Irrfan Khan, who is currently undergoing treatment for neuroendocrine tumour in the United Kingdom, has said, "I am still waiting for all the tests to be done and their results.
Summary:
Summary:
Ajinkya Rahane said that Australia are still favourites to win the four-test series against India even without Steve Smith and David Warner because of the strength of their bowling attack.
Summary:
Accusing the CM of misusing the police, Congress leader GN Reddy said, "The manner in which police entered his bedroom, it has never happened in India."
Summary:
Archie Schiller, a six-year-old, was added to the Australian team's practice session before the first Test of the series which will be played in Adelaide from December 6.
Summary:
Summary:
On the occasion of World Disability Day, the Cricket Association of Bengal (CAB) on Monday announced reserving 50 seats for the differently-abled for spectating international matches at the Eden Gardens in Kolkata.
Summary:
Luka Modric, who ended the 10-year-long Lionel Messi-Cristiano Ronaldo duopoly over the Ballon d'Or award, said, "It's a unique feeling...
Summary:
The police said incriminating materials, including arms and ammunition, were recovered from the terrorists.
Summary:
A leader of Bharatiya Janata Yuva Morcha, the youth wing of BJP, was stabbed to death on Monday night allegedly by some unidentified persons in Uttar Pradesh's Lucknow, police said.
Summary:
Delhi witnessed the coldest morning of the season on Tuesday with the minimum temperature plunging to 8 degrees Celsius, a MeT official said.
Summary:
Uttar Pradesh CM Yogi Adityanath on Monday declared compensation of â¹40 lakh for the wife and â¹10 lakh for parents of the SHO killed in Uttar Pradesh's Bulandshahr violence.
Summary:
US President Donald Trump has written a letter to Pakistan PM Imran Khan, seeking help with the negotiations to end the 17-year-old war between Afghan security forces and the Taliban.
Summary:
Britain can cancel its withdrawal from the European Union (EU) unilaterally, European Court of Justice's Advocate General Manual Campos Sánchez-Bordona said.
Summary:
Sun Pharmaceutical Industries' Founder and Managing Director Dilip Shanghvi has said the drugmaker was not involved in any insider trading norm violation in the Ranbaxy deal.
Summary:
The new store is also its official launch in the east region.
Summary:
India were dismissed for 58 in the first innings and 98 in the second and their combined score of 156 could not overhaul Bradman's individual score.
Summary:
Actress Katrina Kaif, while opening up about her breakup, said, "I now see it as a blessing because I was able to recognise my patterns...thought processes." "I could see them from a whole different perspective," she added.
Summary:
Deepika Padukone, in her first post-marriage interview, said, "I was clear...from the start...I didn't want to have a live-in relationship to figure out if I wanted to marry someone or not." "Now [I'm expecting] everything that comes with being a newly-wed: sharing space...or the bills," she added.
Summary:
Addressing a rally in poll-bound Rajasthan, PM Narendra Modi on Tuesday said the Kartarpur gurdwara, where Guru Nanak spent his last years, was in Pakistan because of Congress' mistake.
Summary:
Talking about MS Dhoni and Shikhar Dhawan not featuring in Ranji Trophy, ex-India captain Sunil Gavaskar said the BCCI and selectors should answer why are they allowing players to skip domestic cricket when not on national duty.
Summary:
Congress President Rahul Gandhi today said that PM Narendra Modi begins his speeches with 'Bharat Mata ki jai' but he works for Anil Ambani.
Summary:
The Election Commission is likely to hold Assembly elections in Andhra Pradesh, Odisha, Sikkim and Arunachal Pradesh with the 2019 Lok Sabha elections, reports said.
Summary:
Two holes, weighing over 50 and 34 times the mass of Sun, united to form an 80-solar-mass black hole in the biggest such merger known so far.
Summary:
The driver of Subodh Kumar Singh, the SHO who was killed during Bulandshahr clashes, said that he tried to save Kumar but had to run to save his own life when people began firing.
Summary:
A massive fire engulfed a forested area of about four kilometres in Mumbai's Aarey Colony in Goregaon but was doused before it reached residential buildings.
Summary:
The Delhi High Court has allowed a 16-year-old rape survivor, who was 22 weeks pregnant, to terminate her pregnancy noting the victim and her father were explained the risks by the hospital and they were "adamant" about the abortion.
Summary:
The lower court had, however, acquitted Kaur of murder charges.
Summary:
India celebrates Navy Day to commemorate the success of Operation Trident during the 1971 Indo-Pakistan war.
Summary:
Summary:
Madhuri Dixit will play the lead role in a film which will be the directorial debut of Ayushmann Khurrana's wife Tahira Kashyap, reports suggested.
The actress to play her daughter will be soon finalised as well," stated reports.
Summary:
Summary:
"Felicitating...para-athletes is a step forward in achieving the dream of representing India at the Paralympics," said Shah Rukh.
Summary:
Online multiplayer battlefield game PlayerUnknown's Battlegrounds (PUBG) has won three awards in Google's 'Best of 2018' awards for Android apps on Play Store.
Summary:
Congress President Rahul Gandhi on Monday said Congress will provide â¹5 lakh to every homeless person to build homes and an allowance of â¹3,000 to the unemployed if it is voted to power in Telangana.
Summary:
Mumbai-based travel experience provider Guiddoo has raised $800,000 (around â¹6 crore) in its extended pre-Series A round of funding.
Summary:
GST provisions, beginning October 1, required e-commerce companies to deduct 1% TCS before making payments to suppliers.
Summary:
Bengaluru-based ride-hailing startup Ola has reportedly been offered a $1-billion investment by Japanese conglomerate SoftBank, which owns around 26% stake in it.
Summary:
The Directorate of Revenue Intelligence busted a foreign currency smuggling racket and seized $80,000 (over â¹56 lakh) at the Kolkata airport, an official said on Monday.
Summary:
Summary:
United Nations Secretary General Antonio Guterres on Monday said that Prime Minister Narendra Modi had told him that the "strong commitment to climate action...is in the Vedas." Guterres further said that this commitment is found in all religions.
Summary:
Infibeam Avenues has invested â¹6 crore in Mumbai-based digital payments solution provider Instant Global Paytech which operates Go Payments, as per a regulatory filing.
Summary:
OPPO's patented Super VOOC flash charge technology has set foot in India with the new OPPO R17 Pro. It can charge your phone up to 40% in almost 10 minutes.
Summary:
Midfielder Luka ModriÃÂ, who led Croatia to their first-ever FIFA World Cup final, won this year's Ballon d'Or on Monday.
Summary:
The notebook resulted in the wrongful arrest of PhD student Mohamed Kamer Nizamdeen in August.
Summary:
The first women's Ballon d'Or winner, Ada Hegerberg, was asked if she knew "how to twerk" live on stage by the host DJ Martin Solveig.
I was just happy to win the Ballon d'Or," she said.
Summary:
Question-and-answer website Quora on Monday said it discovered last week that hackers stole data of up to 100 million users possibly including usernames, email addresses, and an encrypted version of their passwords.
Summary:
Election strategist Prashant Kishor, who was recently appointed JD(U) Vice President, was on Monday attacked by Patna University students after a meeting with university Vice-Chancellor Rash Bihari Singh at the latter's residence.
Summary:
Elon Musk-led startup SpaceX on Monday successfully launched 64 satellites aboard its Falcon 9 rocket into Earth's orbit, setting a new US record.
Summary:
NASA's OSIRIS-REx has arrived at asteroid Bennu after flying over 2 billion kilometres in over two years.
OSIRIS-REx was launched to collect rock samples from Bennu and return to Earth by 2023 for study.
Summary:
Two people have been arrested and four have been detained for their alleged involvement in the violent clashes that took place in Bulandshahr, in which a police inspector and a youth were killed.
Summary:
A Pune-based woman, who was terminated by her company for being HIV positive, has got back her job after three years after a Labour Court verdict.
Summary:
There was a crowd of 300-500 people during the clashes that took place in Bulandshahr on Monday and the entire police force was attacked, Sub-Inspector Suresh Kumar, who was an eyewitness, has claimed.
Summary:
Three people, including a disc jockey (DJ), have been arrested in Delhi for opening fire at Shanky Bhardwaj and his cousin Tushar Bhardwaj, after they repeatedly requested the DJ to play 'Tamanche pe Disco'.
Summary:
Subodh Kumar Singh, a SHO posted at Syana who was killed during clashes in Bulandshahr, was the first investigating officer in 2015 Dadri lynching case.
Summary:
However, he later retracted his statement and said that he was joking.
Summary:
Calling it a violation of their privacy, students alleged that hostel officials barged into their rooms and clicked pictures without their consent.
Summary:
Passengers will instead have the option to buy meals on board, the airline added.
Summary:
On being asked who will be winning the debut award- Janhvi Kapoor or Sara Ali Khan, Karan Johar answered, "I think it's not fair to compare...the girls." "Awards don't matter but the work they do is what matters," added Karan.
Summary:
Filmmaker Meghna Gulzar, while talking about her 2015 film 'Talvar' which was based on the Aarushi Talwar murder case, said, "The film has, to some extent, changed the perspective of the people." "Our judiciary operates free from all biases.
Summary:
Anil Kapoor, who played Ranveer Singh's father in 2015 film 'Dil Dhadakne Do', said, "I remember on the sets of 'Dil Dhadakne Do' when Deepika [Padukone] came to meet [Ranveer]...I was like, 'You can't get a better boy'." "We were going on the ship...she was there and I was like, 'Chhodna mat isko.
Summary:
At an election rally in Rajasthan on Monday, BJP chief Amit Shah said, "Rahul Gandhi uses the name of Modi ji more than BJP.
Summary:
Seemingly referring to Congress President Rahul Gandhi as "naamdaar" during an election rally, Prime Minister Narendra Modi said Rahul "always...
Summary:
Calling PM Narendra Modi a democratically elected leader who can be criticised, AIMIM President Asaduddin Owaisi asked, "A BJP CM said he'll make us flee.
Summary:
Russian space agency Roscosmos has said the Soyuz MS-11 carrying three crew members, successfully docked at the International Space Station (ISS).
Summary:
Five teenage boys were traced and handed over to their parents after bunking school on Monday and threatening to join militancy, said J&K police.
Summary:
As many as 3,026 buildings in Mumbai have been issued notices for flouting fire safety norms by the Mumbai Fire Brigade department.
Summary:
The Punjab government will provide over 135 acres of land, free of charge, for the terminal.
Summary:
American television host Oprah Winfrey has worn a custom-made saree by fashion designer Sabyasachi on the December 2018 cover of Elle India magazine.
Summary:
Actress Sara Ali Khan has sent handwritten letter to the paparazzi, thanking them for being warm and welcoming towards her.
And a letter without emojis appreciated."
Summary:
This comes after Mithali Raj accused Powar of humiliating her.
Summary:
Indian women's T20I captain Harmanpreet Kaur and vice-captain Smriti Mandhana have written to the BCCI, urging it to let Ramesh Powar continue as head coach.
"He has changed the face of Indian women's cricket team both technically and strategically.
Summary:
The player auction for the 2019 Indian Premier League season will take place on December 18 in Jaipur.
Summary:
Dutch court has rejected a 69-year-old man named Emile Ratelband's request to reduce his official age by 20 years to get more matches on dating app Tinder.
Summary:
Political writer Tavleen Singh has been criticised on social media after she commented on a female journalist's clothes on stage during a #MeToo interaction.
Summary:
Reddy visited the targeted areas and zeroed-in on houses which were either locked or whose residents were mostly outside.
Summary:
The girl had witnessed Special Sub Inspector K Vasu make lewd gestures earlier as well and had also complained about him twice to her parents.
Summary:
Ajay Narayan Jha, the Secretary of Department of Expenditure, has been appointed as new Finance Secretary to succeed Hasmukh Adhia who retired on November 30, a government order said Monday.
Summary:
A picture of the late US President George HW Bush's service dog Sully lying in front of a US flag-draped casket has gone viral on social media.
The picture was posted by the late president's spokesman Jim McGrath, who captioned it, "Mission complete.
Summary:
Speaking about Virat Kohli's weaknesses, former Indian cricketer Sanjay Manjrekar tweeted, "The problem is the opposition's general lack of success in exploiting them.
Summary:
Addressing a rally in Rajasthan, Union Home Minister Rajnath Singh on Monday asserted India would soon be counted among the top three countries in the world as its economy is poised to expand at a fast rate.
Summary:
His response came a day after the BJP slammed the Congress for raising the issue.
Summary:
The Congress on Monday said their doubts on late arrival of Electronic Voting Machines (EVMs) in few constituencies of Madhya Pradesh aren't clear even after the top poll officer's explanation about the security of EVMs.
Summary:
Pakistani pacer Wahab Riaz has claimed that Pakistan will make plans to tackle Indian captain Virat Kohli in the World Cup 2019.
Summary:
A member of the Bengal Tigers franchise support staff was approached during the second week of the T10 League that concluded in Sharjah on Sunday.
Summary:
WhatsApp on Monday launched its first-ever television campaign in India called 'Share Joy, Not Rumours' to address fake news ahead of 2019 general elections.
Summary:
IntelâÂÂs current 5G chip is reportedly facing problems with heat dissipation and power consumption and it would not have a viable chip ready before 2020.
Summary:
West Bengal Chief Minister Mamata Banerjee on Monday said that BJP will be ousted from power at the Centre like the CPI(M) was removed from the state.
Summary:
Russia's Soyuz MS-11 on Monday was successfully launched from Kazakhstan to the International Space Station with a three-astronaut crew, after a failed launch in October.
Summary:
A complaint case was filed on Monday against Maharashtra Navnirman Sena (MNS) chief Raj Thackeray in Bihar's Muzaffarpur court for allegedly insulting and abusing the Hindi language.
Summary:
The girls were found to be missing on December 2, six months after they disappeared, Delhi Commission for Women said.
Summary:
A 25-year-old man in Bihar's Sitamarhi was burnt alive for eloping with married woman.
The duo eloped and got married before returning back to the village to live together.
Summary:
Out of 18.10 lakh registered companies in the country, only 62% were actively functioning at the end of October, according to official data.
Summary:
British pharmaceutical giant GlaxoSmithKline (GSK) on Monday announced it will acquire US-based cancer drugmaker Tesaro for nearly $5.1 billion.
Summary:
The government is looking to raise around â¹9,000 crore from the sale of debt-laden Air India's land and real estate properties.
Summary:
Actress Deepika Padukone, while speaking about her husband Ranveer Singh, said, "He's a real people's person, but there's a quiet side to him too." "That's not to say that his irrepressible energy isn't him, it's very him," she added.
Summary:
A Tottenham supporter was arrested during the north London derby at Emirates on Sunday for throwing a banana skin after Arsenal's Pierre-Emerick Aubameyang scored the opening goal.
Summary:
Former Australian batsman Dean Jones mocked Team India batsman Cheteshwar Pujara over his comments on India's bowling performance in the four-day tour match against Cricket Australia XI.
Reacting to it, Jones tweeted, "Well..it does to the Australian boys who scored those 500.
Summary:
Davies slammed 17 sixes in total during his 115-ball 207-run knock.
Summary:
The @SamsungMobileNG account was shut and the tweet was deleted after the mistake was widely shared online.
Summary:
Recently, an onion-grower from Maharashtra who had to sell his 750 kilograms of onion produce for â¹1,064, sent his earnings to PM Narendra Modi in protest.
Summary:
Ex-Supreme Court Justice Kurian Joseph has claimed he and the three other top court judges who held a press conference in January felt that outside forces were "remote-controlling" the then Chief Justice of India Dipak Misra.
Summary:
Patna businessman Neeraj Kumar spent a night in jail after policemen mistook the word 'warrant' written on top of a court order for an arrest 'warrant'.
Summary:
Chandra took the students' parents and the other teachers into confidence and developed a habit of teaching the students separately.
Summary:
Amid rumours that he has died and has been replaced by a lookalike, Nigerian President Muhammadu Buhari said, "It's real me, I assure you." "I will soon celebrate my 76th birthday and I'll still go strong," he added.
Summary:
Summary:
PM Narendra Modi on Monday hit back at Congress chief Rahul Gandhi, who questioned the knowledge of his Hinduism, saying "will Rajasthan vote over power, water and roads or over my knowledge on Hinduism?" Addressing a rally in Rajasthan, he said even Hindu sages didn't have complete knowledge of Hinduism.
Summary:
Windies cricketer Dwayne Bravo was seen celebrating a dismissal with a new 'chicken-like dance' even before taking a catch to complete the dismissal while playing in the T10 league.
Summary:
Former World Cup-winning Argentine footballer Diego Maradona was seen trying to land punches on a news reporter after his side Dorados lost to Atletico San Luis.
Summary:
The Zimbabwe cricket team's former captain Tatenda Taibu is set to return to professional cricket six years after he quit the sport to focus on 'Lord's work'.
Summary:
"Problem is to decide where to stop building feature or scale," Sharma added.
Summary:
UAE passport holders can now fly to 113 countries without a visa, and 54 others with a visa-on-arrival.
Summary:
Former Rajasthan CM Ashok Gehlot has sought an apology from BJP President Amit Shah for allegedly saying that people should hold Congress leaders by their collars to seek their work's accountability.
Summary:
This comes after Omar sent a letter to Malik, objecting to alterations in the act governing PRC.
Summary:
BJP MP Varun Gandhi has said that the country needs a national conversation on rural distress to mitigate farmers' plight.
Summary:
British luxury automaker Rolls-Royce has launched its first luxury SUV Cullinan in India at an ex-showroom price of â¹6.95 crore.
Summary:
The World Bank Group on Monday said it will double its 5-year investments to $200 billion to fight climate change between 2021-2025.
Summary:
"Huge quantity of incriminating material was recovered from this terror module," it added.
Summary:
National Green Tribunal has imposed a fine of â¹25 crore on Delhi government over its failure to curb pollution in the national capital.
Summary:
The Tata Sons board has reportedly rejected a proposal for Tata Global Beverages to purchase Mumbai-based Prabhat Dairy for about â¹400 crore.
Summary:
Private sector lender Yes Bank on Monday appointed former IRDAI Chairman TS Vijayan as an independent director for a period of five years.
Summary:
The operator will sell its spectrum to Reliance Jio after receiving a no-objection certificate from telecom department.
Summary:
A video has surfaced from actors Deepika Padukone and Ranveer Singh's Mumbai reception, where a photographer clicking Mukesh Ambani and his family's photos, says, "Sir, Jio chal nahi raha hai," to the Reliance Chairman.
Summary:
Also starring Sonu Sood and Ashutosh Rana, the film is scheduled to release on December 28.
Summary:
A news tabloid in Australia has been criticised for calling Indian cricketers 'The Scaredy Bats' upon their arrival in Adelaide.
Summary:
"In 1590, Quli Qutub Shah came to Hyderabad, he changed Bhagyanagar to Hyderabad," Singh had earlier said.
Summary:
England Test captain Joe Root got married to his longtime girlfriend Carrie Cotterell in Sheffield on Saturday.
Summary:
Kejriwal and others had held a demonstration against coal scam in front of PM's house.
Summary:
After being criticised by his fellow Punjab cabinet ministers over his 'captain' remark, Navjot Singh Sidhu on Monday said, "(CM Amarinder Singh) is a fatherly figure, I love him...
Summary:
Replying to a query on whether the Tamil Nadu education department had banned female students at state-run schools from wearing anklets and flowers, Education Minister KA Sengottaiyan said he was not aware of any such development.
Summary:
Seven people have been arrested so far for helping Chau visit the island.
Summary:
Subodh Kumar Singh, a Station House Officer (SHO) posted at Syana in Uttar Pradesh's Bulandshahr, was killed in clashes with a mob protesting against illegal slaughterhouses on Monday.
Summary:
A Sri Lankan court has issued an order blocking Mahinda Rajapaksa from acting as Prime Minister and holding cabinet meetings.
Summary:
Karan further said he is in a relationship with himself.
Summary:
Actress Kajal Aggarwal has confirmed that she is working with Kamal Haasan in the upcoming film 'Indian 2'.
"I...have a film with Kamal Haasan sir.
Summary:
Summary:
[T]hey know what line and lengths to bowl in Australia," Pujara added.
Summary:
Congress President Rahul Gandhi on Monday alleged that Prime Minister Narendra Modi, TRS chief K Chandrashekar Rao and AIMIM leader Asaduddin Owaisi were "one".
He said Owaisi's AIMIM is the BJP's "C" team, whose role is to split the anti BJP/KCR vote.
Summary:
The crowd attending the Hershey Bears' NHL game set a new world record by throwing 34,798 stuffed animals on the ice during the Teddy Bear Toss.
Summary:
Pakistani cricketer Mohammad Asif, who was found to be involved in spot-fixing in 2010, sustained injuries after his car rammed into a footpath in Lahore in the early hours of Monday morning.
Summary:
As many as 149 Muslims from Chitrakoot district of Uttar Pradesh joined BJP on Sunday in the presence of state party President Mahendra Nath Pandey.
Summary:
The investment would be at the $5-billion valuation that OYO received in September when it raised $800 million led by SoftBank.
Summary:
Mehrotra was the Business Head of Consumer Business at Tata Teleservices prior to this.
Summary:
The Supreme Court on Monday directed the Maharashtra government to submit before it by December 8 the chargesheet filed by the police against activists arrested in connection with the Bhima-Koregaon case.
Summary:
The men, who were brothers, allegedly poured kerosene on her and set her ablaze for filing a police complaint against them.
Summary:
Navy Chief Admiral Sunil Lanba on Monday said the Navy is looking at inducting 56 warships and submarines to enhance its maritime capability.
Summary:
The Supreme Court has deferred till the third week of January the hearing on a plea challenging the clean chit given to PM Narendra Modi in 2002 Gujarat riots that took place when he was CM.
Summary:
"They apparently inhaled toxic fumes and fell unconscious inside," a police official said, adding that they were declared dead on arrival at a hospital.
Summary:
Sun Pharma shares plunged as much as 10.4% on Monday following reports that SEBI may reopen an insider trading case against the drugmaker.
Summary:
Recognizing the importance of an employee friendly work environment, they released a TVC talking about cool commutes to work.
Summary:
Qatar will withdraw from the Organisation of the Petroleum Exporting Countries (OPEC) in January after nearly 60 years, country's energy minister Saad al-Kaabi said.
Summary:
Karan Johar apologised to Kajol on 'Koffee With Karan' for writing a chapter on their fallout in his 2017 biography.
The fallout happened after Kajol supported her husband Ajay Devgn amidst the clash of Karan's 'Ae Dil Hai Mushkil' and Devgn's film 'Shivaay'.
Summary:
Speaking about her marriage celebrations, Priyanka had earlier said guests will need vacations after the wedding.
Summary:
Chris Gayle has been awarded $220,770 in damages in a defamation case against an Australian newspaper that claimed the Windies cricketer had exposed himself in front of a female masseur during the 2015 Cricket World Cup.
Summary:
Recently, Punjab minister Navjot Singh Sidhu had said that Congress chief Rahul Gandhi is his captain while Singh is an Army captain.
Summary:
Former Chief Election Commissioner OP Rawat, who retired from office last week, on Monday claimed that more money was seized during elections that took place after demonetisation.
Summary:
A journalist working with a private news channel has been arrested in Delhi for allegedly raping his female co-worker.
Summary:
The police in Raipur on Sunday arrested a UPSC aspirant and his wife, and seized fake currency notes with a face value of â¹5 crore.
Summary:
Jet Airways cancelled at least 14 flights to various destinations on Sunday after some of its pilots reported "sick" over non-payment of their dues, as per reports.
Summary:
After Uttar Pradesh CM Yogi Adityanath commented that if BJP comes to power in Telangana, AIMIM president Asaduddin Owaisi will have to flee, Owasi responded, "Ye Hindustan mere baap ka mulk hai." "Koi nahi nikal sakta mujhe," he added.
Summary:
The 'Rakhi with Khaki' initiative by Chhattisgarh's Bilaspur police, as part of which girls and women tied rakhis to 50,033 police personnel and took selfies, has been acknowledged by the Guinness World Records.
Summary:
Indian minister Sushma Swaraj had criticised him, saying his 'googly' remark showed he had no respect for Sikh sentiments.
Summary:
US President Donald Trump will grant North Korean leader Kim Jong-un's wishes if he delivers on denuclearisation, South Korean President Moon Jae-in has said.
Summary:
A train, which was driven by former US President George HW Bush 13 years ago, will carry his last remains on Thursday.
Summary:
Estelle said she had a "light-bulb head" after applying the hair dye.
I do not want this to happen to others," the 19-year-old, who had applied a small amount of the dye in order to test the product first, said.
Summary:
Hindustan Unilever Limited (HUL) on Monday agreed to take over GlaxoSmithKline (GSK) Consumer Healthcare, the maker of malted-milk drink Horlicks, in a ã3.1 billion all-stock deal, India's biggest consumer goods deal.
Summary:
Vidya Balan, while talking about her 2011 film 'The Dirty Picture', said that the film changed her life forever.
'The Dirty Picture', which released on December 2, 2011, also starred Emraan Hashmi.
Summary:
Nick's father Paul Kevin Jonas Sr officiated their Christian wedding ceremony.
Summary:
Summary:
Sonali Bendre, who has been undergoing treatment for 'high grade' cancer in New York since July, has arrived in Mumbai.
Summary:
Actress Katrina Kaif has featured on the cover of the December edition of fashion magazine Vogue India.
Summary:
A signed jersey donated by current captain Virat Kohli following the completion of India's Test series against Australia in 2014-15 has been placed next to Sachin Tendulkar's portrait at the Bradman Museum.
Summary:
Substitute Divock Origi scored a 96th-minute winner to give Liverpool a victory in the Merseyside derby at Anfield on Sunday.
Summary:
Expelled Shiromani Akali Dal (SAD) leaders Ranjit Singh Brahmpura, Rattan Singh Ajnala and Sewa Singh Sekhwan announced that they will float a new political party.
Summary:
The victims were pushing their carts after loading them from a nearby market when the driver of the luxury car lost control and rammed into them, eyewitnesses claimed.
Summary:
Delhi Deputy CM Manish Sisodia has suggested that a university be built at the disputed Ayodhya site, saying Ram Rajya will come through education and not by building temple.
Summary:
Post Graduate Program in Machine Learning and Artificial Intelligence offered by Great Learning and Great Lakes has been ranked among the top 3 programs in India by Analytics India Magazine.
Summary:
The cheapest five-wicket haul in international cricket was taken by former Windies' pacer Courtney Walsh in an ODI against Sri Lanka on December 3, 1986, wherein he gave away just one run.
Summary:
Mithali Raj was aged 16 years and 205 days when she smashed 114* on her ODI debut, becoming the youngest player to score a hundred across formats in both men's and women's international cricket.
Summary:
Former South African wicketkeeper Mark Boucher retired from international cricket in 2012 with 999 fielding dismissals, the most by a cricketer in history, after sustaining an eye injury.
Summary:
Pakhtoons' captain Shahid Afridi smashed unbeaten 59 runs off 17 balls to help his team register a total of 135 runs against Northern Warriors in a T10 League match on Saturday.
Summary:
Summary:
After HDFC Bank's mobile app was down for four days in a row, Flipkart Co-founder Sachin Bansal on Sunday tweeted, "In this day and age, how can the largest private bank of India do this?" HDFC had released a revamped mobile app earlier this week, but users were unable to access it.
Summary:
A Kashmiri student, who went missing from a private university in Uttar Pradesh and joined the militancy, has returned home to Srinagar on Sunday.
Summary:
A former general manager of a Mumbai-based infrastructure firm was arrested for extorting â¹3.5 crore from the company using information he gathered on irregularities in the firm's projects using the RTI Act. He then filed complaints against the firm over the irregularities and demanded money to retract them.
Summary:
Kerala PWD Minister G Sudhakaran on Sunday slammed the priest at Sabarimala Temple saying the donkeys at the temple town have more grace than the tantri.
Earlier, the priest had threatened to close the temple if a woman entered the shrine.
Summary:
Police found Dharambir Das wandering near a West Bengal railway station two years ago, however he wasn't able to recall his name or where he came from.
Summary:
According to Jain scriptures, Hanuman was a part of 169 great persons identified in Jainism, he added.
Summary:
Sanjay Dutt and Salman Khan's brother-in-law Aayush Sharma will star together in a gangster film, as per reports.
This would be reportedly Aayush's second film after his debut film 'Loveyatri'.
Summary:
The earrings reportedly have 170 stones and are of 6.7 carats.
Summary:
Arsenal came back from being 1-2 down after 34 minutes to defeat Tottenham Hotspur (Spurs) 4-2 in the Premier League on Sunday.
Summary:
It aims to assist astronauts in space and provide companionship.
Summary:
The European Union antitrust regulators have asked GoogleâÂÂs rivals if Google unfairly demotes local search competitors, according to Reuters.
Summary:
After Congress President Rahul Gandhi questioned PM Narendra Modi's knowledge of Hinduism, Union Minister Smriti Irani criticised him saying Rahul, who once called Hindus terrorists, is now talking about Hindutva.
Summary:
People's Conference President Sajad Lone has said changes pertaining to Permanent Resident Certificate (PRC) rules are unacceptable.
Summary:
Sarode had won Lok Sabha elections in 1991 and 1996 on the BJP ticket from Jalgaon constituency.
Summary:
âÂÂWe have been surprised by the demand in Tier 2 and Tier 3 cities,â Mohit Gupta, Food Delivery CEO at Zomato, said.
Summary:
Talking about Ram temple issue, actor Nana Patekar has said 'bread is more important than Ram Mandir'.
While speaking at a function, he said those who want to build Ram temple can hold on to their opinions.
Summary:
The Switzerland government has agreed to share with Indian authorities details of two Indian firms, Geodesic and Aadhi Enterprises, which are facing multiple black money probes in the country.
Summary:
London-based banking and financial services company Standard Chartered is reportedly cutting jobs in Dubai and Singapore to curb expenses.
Summary:
Cash-strapped Jet Airways is reportedly withdrawing flight services on seven Gulf routes from December 5.
Summary:
The 54-year-old previously served as the Executive Director of Indian Bank and had also been the CFO of Vijaya Bank.
Summary:
HDFC Bank has withdrawn its mobile app from Google Play Store and Apple App Store after users complained of being unable to access it.
Summary:
The tour, which started on December 2, 1932, came to be known as the Bodyline series for its controversial bowling tactics.
Summary:
Actress Sonali Bendre, who has been undergoing treatment for âÂÂhigh gradeâ cancer in New York since July, said she's returning to her home in Mumbai, adding that "the fight is not yet over".
Summary:
Actress Priyanka Chopra on Sunday shared a video and several pictures from her and husband Nick Jonas' sangeet ceremony held at Jodhpur's Umaid Bhawan Palace.
Summary:
Kajol had earlier said she took relationship advice from Ajay while dating someone else.
Summary:
Despite the draw, India top the Pool C with four points and a goal difference of five.
Summary:
He added Wright told him that he put personal glory ahead of the team after getting out in a silly manner.
Summary:
Ex-India batsman VVS Laxman, in his autobiography, claimed that ex-India coach Greg Chappell didn't know how to run an international team.
"Chappell arrived in India to a groundswell of goodwill and support.
Summary:
Spinner Harbhajan Singh took to Twitter to clarify after a statement attributed to him was circulated online.
"I don't know who and how these people are attributing these stupid quotes to me!
Summary:
The drones, which malfunctioned due to 'electromagnetic interference', belonged to Chinese company High Great.
Summary:
An Ola driver named Somashekhar was robbed by four men who boarded his cab on Friday in Bengaluru and made his wife strip for them on video call.
Summary:
The Income Tax Department raided a soap and dry fruit shop in Delhi's Chandni Chowk and seized around â¹25-crore cash from over 100 private lockers in the basement of the shop.
Summary:
A video shows US President Donald Trump getting confused and leaving the G20 Summit's stage right after shaking hands with Argentina's President Mauricio Macri, leaving him alone on the stage during a photo opportunity.
Summary:
"Wanted for dropping his fiancée's ring," the New York Police Department tweeted.
Summary:
Speaking at a rally in poll-bound Telangana, Uttar Pradesh CM Yogi Adityanath said, "If BJP comes to power...Owaisi will have to flee from Telangana just like the Nizam had to flee from Hyderabad." This comes days after AIMIM chief Asaduddin Owaisi accused Adityanath of "insulting" Muslims.
Summary:
A handwritten advertisement by Steve Jobs, offering a circuit board and manual for AppleâÂÂs first computer for $75, is set for auction on December 5 in New York.
Summary:
WhatsApp has written to the Reserve Bank of India, seeking a formal approval to expand its payment services to all of its users in India.
Summary:
British wildlife photographer Will Burrard-Lucas in an interview said, âÂÂDrones are inherently no worse than a human cameraman in a full-sized helicopter...
Summary:
Union Home Minister Rajnath Singh has said that Pakistan could seek India's help if it cannot handle the fight against terrorism alone.
Summary:
It directed web-hosting firms such as GoDaddy to suspend infringing domain names and ordered that bank accounts of these entities be frozen.
Summary:
'Train 18', India's first engineless train on Sunday breached the 180 kmph speed limit during a test run, a top official said.
Summary:
The HRD Ministry has issued an order to schools, stating the government will reimburse expenditure incurred on books, uniforms and transport of children with disabilities.
Summary:
A man was attacked with swords and shot by a group of people over a property dispute on Saturday in Ahmedabad, police said.
Summary:
Retired Supreme Court judge Kurian Joseph on Saturday said the retirement age for all judges in different layers of the judiciary must go up to 70 years for the better utilisation of their experience.
Summary:
The trust will not charge any interest on it, an official said.
Summary:
"It was painful to see such paltry returns on four months of toil," the farmer said.
Summary:
SBI recently auctioned 11 bad loan accounts with dues worth â¹1,019 crore.
Summary:
The government has reportedly constituted a six-member committee to oversee the sale of 149 oil and gas fields of state-owned ONGC, Oil India and other explorers.
Summary:
Mahendra Singh Dhoni is the only wicketkeeper to have captained India in its 86-year Test cricket history.
Summary:
Priyanka Chopra was criticised for bursting firecrackers at her wedding on Saturday despite being the ambassador of an anti-pollution campaign on Diwali.
Summary:
Speaking at a rally in poll-bound Rajasthan, Punjab minister Navjot Singh Sidhu said the Congress gave four Gandhis - Rajiv Gandhi, Indira Gandhi, Sonia Gandhi and Rahul Gandhi, while the BJP gave three Modis.
Summary:
This was the first instance in 141-year Test history that spinners took all 40 wickets for a team in a two-match series.
Summary:
PM Narendra Modi on Saturday took to Twitter to thank FIFA President Gianni Infantino for gifting him a football jersey that read 'Modi G20'.
Argentinian players are tremendously popular in India," PM Modi wrote.
Summary:
Former Google and SoftBank Group executive Nikesh Arora today thanked electric carmaker Tesla's CEO Elon Musk after he met with an accident and his Tesla X saved his life.
Summary:
US Defence Secretary Jim Mattis has accused Russian President Vladimir Putin of being a "slow learner" who again tried to meddle in US elections in November, saying that he had no trust in the Russian leader.
Summary:
At least 300 people have been arrested amid the ongoing protests against rise in fuel prices and living costs in Paris.
Summary:
Pope Francis has said there is "no room" for gay people in consecrated and priestly life.
Summary:
Riteish Deshmukh and his wife Genelia D'Souza will reunite onscreen after four years for a song in Riteish's upcoming Marathi film 'Mauli'.
Summary:
Summary:
Kit Harington, who portrays 'Jon Snow' in 'Game of Thrones', said it was a "huge emotional upheaval" to finish TV series, adding, "But would I want to go back and do more?
Summary:
Summary:
While addressing a rally in poll-bound Telangana, BJP President Amit Shah on Sunday said there's going to be a 'tripartite battle' in the state.
Summary:
Qualcomm, on the other hand, charged Apple with intellectual property theft.
Summary:
A key Bodo students' organisation and a rebel group that has joined the peace process have issued a warning to BJP that it would lose Bodo people's support in upcoming 2019 polls if it failed to fulfil their demand of separate Bodoland.
Summary:
Abdullah's letter was regarding the Governor's plans to make changes in permanent resident certificate rules of J&K.
Summary:
Former Uttar Pradesh CM Akhilesh Yadav has said most encounters in the state are "fake", adding that law and order situation is deteriorating because of this.
Summary:
Gurugram-based hospitality startup OYO has reportedly ventured into Spain and Portugal and hired Groupon Spain's former CEO Tobias Jörk as Country Manager.
Summary:
BJP National General Secretary Kailash Vijayvargiya has said the party isn't thinking of bringing an ordinance "as of now" to build Ram Mandir on the disputed site in Ayodhya.
Summary:
The Ministry of Road Transport and Highways has asked states and union territories to build at least one bus port, equipped with modern facilities.
Summary:
At least three people have died and over 250 others have fallen sick due to alleged food poisoning in Uttarakhand's Bageshwar district.
Summary:
A 70-year-old woman died and 19 were hospitalised after a fire broke out in an 18-storey building near Mumbai's Mahalaxmi Racecourse in early hours of Sunday.
Summary:
Kerala minister Thomas Isaac on Sunday announced that a million women will raise a 600-km long "Great Wall of Kerala" on new year's day.
Summary:
India had made a proposal to China for rupee-renminbi trade to boost its exports and tackle the widening trade deficit with the neighbouring country.
Summary:
Israeli police have said they have found sufficient evidence for bribery and fraud charges to be brought against PM Benjamin Netanyahu and his wife in a third corruption case against the Israeli leader.
Summary:
Foreign Portfolio Investors (FPIs) infused â¹12,260 crore in the country's capital markets in November, marking the highest inflow in 10 months.
Summary:
The 1980-batch IAS officer of Rajasthan cadre will have nearly a two-and-a-half-year tenure during which he will oversee the 2019 Lok Sabha elections.
Summary:
The driver of a pickup truck, who threw a cigarette butt out of the window while driving in China, ended up setting his own vehicle on fire.
Summary:
A video shows actor Ranveer Singh dancing to the song 'Jumma Chumma' with Amitabh Bachchan at his wedding reception held on Saturday.
Summary:
Ranveer Singh, while speaking about his wife Deepika Padukone at their wedding reception on Saturday, said, "The key to success in life is to say yes to everything that she says." "So, when baby says, 'Change the vibe of the music', I have to oblige," he added.
Summary:
A video shows Ranveer Singh dancing with Shah Rukh Khan to the song 'Chaiyya Chaiyya' at his wedding reception held on Saturday.
Summary:
Charges against the actress were brought by two lawyers known for taking celebrities to court.
Summary:
Bangladesh recorded their first ever innings victory in Test cricket history by defeating Windies by an innings and 184 runs in the second Test at Dhaka on Sunday.
Summary:
A court in Jodhpur has directed the police to file an FIR against Twitter CEO Jack Dorsey for allegedly hurting the sentiments of the Brahmin community after he posed with a poster that read, "Smash Brahminical Patriarchy".
Summary:
Four Punjab ministers have called for their colleague Navjot Singh Sidhu's resignation after his remark that Congress chief Rahul Gandhi was his "captain" while CM Amarinder Singh was an "Army captain".
Summary:
The Election Commission (EC) has admitted that CCTV cameras installed at an electronic voting machines (EVMs) storage room in Bhopal, Madhya Pradesh, did not function for over an hour due to a power cut.
Summary:
The Mumbai Police on Tuesday arrested a groom named Ajay Sunil Dhote and his friend from the former's wedding procession, as they had snatched a cellphone from a woman while riding a bike the previous morning.
Summary:
In a letter to PM Narendra Modi, ex-J&K CM Mehbooba Mufti has urged him to consider opening a route to Sharda Peeth pilgrimage site in Pakistan-occupied Kashmir.
Summary:
Days after attending Kartarpur corridor's groundbreaking ceremony in Pakistan, Union Minister Hardeep Singh Puri has said PM Narendra Modi wants peace but it takes two to tango.
Summary:
Venezuela's President Nicolás Maduro has ordered a 150% increase in the monthly minimum wage to 4,500 sovereign bolivars, worth about â¹660 at the black market rate.
Summary:
US has imposed tariffs on $250 billion in Chinese goods, and China has responded by imposing duties on $110 billion in US goods.
Summary:
Summary:
Shah Rukh Khan has said that we need to have video literacy in our country, adding, "One has to learn to differentiate between good and bad content on internet." "Cinema is an audio-visual medium and our culture is mainly based on talking.
Summary:
Nick Jonas' brother Joe Jonas will marry his fiancée and 'Game of Thrones' actress Sophie Turner next year in a chapel in France, as per reports.
Summary:
Summary:
Bollywood celebrities including Katrina Kaif, Kareena Kapoor Khan and Anushka Sharma attended Deepika Padukone and Ranveer Singh's third wedding reception held at Mumbai's Grand Hyatt hotel for the film industry on Saturday.
Summary:
The film, based on the life and times of Gangubai, is titled 'Heera Mandi', reports said.
Summary:
The landmine blast reportedly took place when the Army men were patrolling the area.
Summary:
A day after retiring, ex-Supreme Court judge Kurian Joseph has said the crisis that forced him and three other judges to hold a press conference in January isn't over "because it was an institutional crisis".
Summary:
Jammu and Kashmir on Saturday recorded a total voter turnout of 76.9% in the sixth phase of the panchayat polls, the highest so far.
Summary:
PM Narendra Modi on Saturday met European Council President Donald Tusk and European Commission President Jean-Claude Juncker on the sidelines of the G20 summit in Argentina.
Summary:
Two women pilgrims from Andhra Pradesh, who were aged less than 50 years, were stopped by devotees from entering Lord Ayyappa's shrine at Sabarimala Temple in Kerala.
Summary:
President Ramaphosa accepted India's invitation on the sidelines of the G20 summit in Argentina's capital Buenos Aires.
Summary:
India will host the G20 summit in 2022, when the country celebrates its 75th year of Independence, Prime Minister Narendra Modi announced on Saturday.
Know India's rich history and diversity, and experience the warm Indian hospitality," PM Modi tweeted.
Summary:
Summary:
Actors Deepika Padukone and Ranveer Singh today shared the first pictures from their third wedding reception being held at Mumbai's Grand Hyatt hotel for the film industry.
Summary:
Taking a dig at PM Narendra Modi at a rally in poll-bound Rajasthan, Congress leader Navjot Singh Sidhu said, "â¹1,600 crore for a â¹500 crore plane?
Whose pockets did the â¹1,100 crore fill?" "Who benefited from this shady deal?
Summary:
The Supreme Court-appointed Committee of Administrators wants the Cricket Advisory Committee, comprising ex-cricketers Sachin Tendulkar, Sourav Ganguly and VVS Laxman, to appoint the new women's cricket team coach, as per reports.
Summary:
Bangladesh's number seven batsman Mahmudullah top-scored with 136(242), while their number 11 batsman scored 12*(29), the lowest score in the innings.
Summary:
US space agency NASA's Administrator Jim Bridenstine said that SpaceX founder Elon Musk won't be smoking weed in public again.
Summary:
America's 26-year-old Cameron Underwood, who got a face transplant this year after he shot himself under his chin while attempting suicide in 2016, says he has a nose and mouth again.
Summary:
Responding to Pakistani Foreign Minister Shah Mahmood Qureshi's 'PM Imran Khan bowled a googly at India' remark in connection with Kartarpur corridor, External Affairs Minister Sushma Swaraj tweeted, "This shows that you have no respect for Sikh sentiments.
Summary:
A 27-year-old woman in Pune has accused her husband, who is a homeopathic medical practitioner, of injecting her with HIV to enable divorce between them.
Summary:
A Mumbai man allegedly killed his 80-year-old mother by slitting her throat and sat by her body for over seven hours before surrendering to the police.
Summary:
Home Minister Rajnath Singh on Friday approved the release of the second instalment of the central share of State Disaster Response Fund of â¹353.7 crore to Tamil Nadu as assistance for the damage caused by cyclone 'Gaja'.
Summary:
Saudi Crown Prince Mohammed bin Salman sent at least 11 messages to the aide overseeing Jamal Khashoggi hit squad in the hours surrounding the journalist's death, the Wall Street Journal reported.
Summary:
Vijay Mallya left India legally and cannot be declared a fugitive because he was arrested in the UK, his lawyer told a court.
The lawyer also said Mallya cannot leave the UK as per the terms of the bail granted.
Summary:
Ayushmann Khurrana and Bhumi Pednekar will star in their third film together, a romantic comedy directed by RS Prasanna, as per reports.
Summary:
John Abraham surprised a group of acid attack survivors at a cafe run by them in Lucknow.
Summary:
The Australian cricket team's former coach John Buchanan feels that Indian captain Virat Kohli will not be able to dominate the Australian team in the upcoming Test series.
Summary:
Technology giant Google may reportedly shut down its messaging platform Hangouts for users by 2020.
Summary:
"It is yet to be confirmed if the blast was caused due to an explosive or an electrical short-circuit," a railway official said.
Summary:
The number of AIDS patients in the state has reduced by 0.7%, Sawant added.
Summary:
The Defence Acquisition Council also approved the procurement of Armoured Recovery Vehicles (ARVs) for the Indian ArmyâÂÂs main battle tank, Arjun.
Summary:
Severe damage to infrastructure including roads and buildings has been reported in Alaska, US, after a 7.0-magnitude earthquake struck near the city of Anchorage on Friday.
Summary:
US President Donald Trump has said that the ongoing standoff between Russia and Ukraine is the "sole reason" he cancelled the scheduled meeting with his Russian counterpart Vladimir Putin.
Russia has seized three Ukrainian vessels and captured 24 sailors.
Summary:
Aid agency Médecins Sans Frontières (MSF) has said that 125 women were raped by unknown gunmen during 10 days of violence in the African nation of South Sudan.
Summary:
Tehreek-e-Labbaik Pakistan (TLP) chief Khadim Hussain Rizvi who led the nationwide protests against the acquittal of Christian woman, Asia Bibi, in a blasphemy case has been booked under treason and terrorism charges.
Summary:
The Goods and Services Tax (GST) collection in November dropped to â¹97,637 crore, lower than the â¹1 lakh crore collected the previous month.
Summary:
A company named 'Pure Himalayan Air' is selling 'fresh air' in aluminium cans at â¹550 per can, which contains 10 litres of fresh air that can be inhaled approximately 160 times.
Summary:
The Cambridge Dictionary has declared 'nomophobia' as the People's Word of 2018 after running a public poll to choose between four shortlisted words by the dictionary's editors.
Summary:
Ahead of Rajasthan Assembly elections, a video has surfaced online wherein BJP candidate Shobha Chauhan from Sojat could be heard promising the people that she would not interfere in child marriages if she is voted to power.
Summary:
After rumours of his brother Nathan McCullum's death spread on social media, ex-New Zealand captain Brendon McCullum said he will find the person who released the false information somewhere and somehow.
Summary:
After Rashtriya Loktantrik Party published an advertisement claiming Virender Sehwag would campaign for it and attend a 'Vishal Kisan Sammelan' in Rajasthan's Asind, the former cricketer claimed the party was lying.
Summary:
Windies' first five batsmen were dismissed bowled against Bangladesh in their first innings in the second Test at Dhaka on Saturday.
Summary:
The government began the registration process for drones on Saturday, however, drones which weigh less than 250 grams will not need to go through the registration process.
Summary:
DMK on Friday reinstated the party worker, S Selvakumar, who was suspended for defaming the party in September after videos of him physically abusing a woman inside a beauty parlour surfaced online.
Summary:
Police said his wife had left home after the argument and when she returned the next day, she found her daughter unconscious and bleeding.
Summary:
A 52-year-old farmer from Maharashtra, who participated in the two-day kisan rally in Delhi to demand loan waiver and remunerative prices for crop, died after he accidentally fell off from a building in the National Capital.
Summary:
More than 20,000 Indians have sought asylum in the US since 2014, according to the information provided by the US Department of Homeland Security to the North American Punjabi Association (NAPA).
Summary:
Reacting to Pakistan Foreign Minister's comment that PM Imran Khan 'bowled a googly' to ensure India's presence at Kartarpur corridor event, Union minister Harsimrat Kaur Badal said no one was bowled over by any 'googly'.
Summary:
Amid suspicions of Saudi Crown Prince Mohammed bin Salman's possible involvement in the killing of journalist Jamal Khashoggi, French President Emmanuel Macron was heard telling him, "You never listen to me." "No, I listen...It's ok.
Summary:
Nirav Modi told a court through his lawyer that he cannot return to India as he is afraid of "getting lynched" and is being compared to 'Ravan'.
Summary:
Talking about her relationship with 'Zero' director Aanand L Rai, Anushka Sharma revealed that he came to her for "food advice".
Anushka plays a NASA scientist with cerebral palsy in 'Zero'.
Summary:
Kangana Ranaut has said that she will not promote her upcoming film 'Manikarnika: the Queen of Jhansi' if workers' dues aren't cleared by the film's makers.
Summary:
NFL side Kansas City Chiefs have released their running back position player Kareem Hunt after a footage showed the NFL player kicking a woman in an altercation.
Summary:
Former Indian captain MS Dhoni's coach from Chennai Super Kings, Stephen Fleming, has backed the Indian wicketkeeper to play in the World Cup 2019 as his strength is "immeasurable".
Summary:
"If tomorrow Ravi Shastri makes someone sit out, will you remove him as well?...
Summary:
TRAI in July had imposed a deadline of January 2019 to avoid a ban on iPhones in India.
Summary:
External Affairs Minister Sushma Swaraj today said, "God forbid the day when we will have to learn the meaning of being a Hindu from Rahul Gandhi." Swaraj was referring to Congress President Rahul's statement questioning PM ModiâÂÂs knowledge of Hinduism.
Summary:
Union Minister Satya Pal Singh on Friday said that there was no caste system during the time of Lord Ram and Hanuman.
Summary:
The action may come from hotel alliances in cities like Bengaluru, Delhi, Mumbai, among others.
Summary:
Congress MP Shashi Tharoor took to Twitter to pay homage to former US President George HW Bush who passed away on Friday.
Summary:
Authorities in the UK's Leicester city have recovered the body of Indian-origin man named Paresh Patel after a 20-day search involving a large number of people.
Summary:
An Argentine honour guard mistook a Chinese official for President Xi Jinping, starting the welcoming ceremony as the former disembarked from the presidential plane.
Summary:
Pakistani lawmakers Ali Wazir and Mohsin Dawar, who are critical of the country's Army, have claimed that they've been barred from leaving the country.
Summary:
Actress Priyanka Chopra on Saturday got married to 26-year-old American singer Nick Jonas in a Christian wedding ceremony, officiated by Nick's father, at Jodhpur's Umaid Bhawan Palace Hotel.
Summary:
Despite suffering from Parkinson's and being wheelchair-bound, the 41st US President marked his 90th birthday with an assisted parachute jump from 1920 metres.
Summary:
Team India opener Murali Vijay, who scored 52 runs off 91 balls, reached his hundred off just 118 balls in the tour match against Cricket Australia XI on Saturday.
Summary:
Former Team India captain MS Dhoni and his partner Sumeet won the men's doubles event of the Country Cricket Club Tennis Championship in Dhoni's hometown Ranchi.
Summary:
Ex-New Zealand all-rounder Nathan McCullum took to Twitter to rubbish false reports of his death.
Nathan shared a selfie and wrote, "I'm alive and kicking more than ever before.
Summary:
PM Narendra Modi, Chinese President Xi Jinping and Russian President Vladimir Putin met for the second Russia-India-China 'RIC' Trilateral Summit at the leaders' level after 12 years.
Summary:
The girls had alleged that the head and the caretaker of the organisation touched them inappropriately and sexually harassed them.
Summary:
"F*ck BJP...f*ck the BJP-led government in Manipur...come and arrest me if you can," he said in the video.
Summary:
A 33-year-old Indian woman working as a maid in Singapore has been sentenced to 18 months jail for grooming her employer's 11-year-old son for sexual acts.
Summary:
Court officials in Tamil Nadu's Kancheepuram attempted to seize a train engine over the Railways' failure to pay compensation for land acquired in 1999.
Summary:
Reserve Bank of India's (RBI) central board member Satish Marathe on Friday said that companies should disclose the manufacturing cost of a product along with the MRP.
Summary:
Scottish brewery Tempest Brewing has apologised and confirmed it will remove all references to Lord Ganesha from its beer brand 'India Pils' following objections by a US-based Hindu organisation.
Summary:
The government has cleared a plan to transfer about â¹29,000 crore of Air India's â¹55,000 crore debt to a Special Purpose Vehicle (SPV).
Summary:
People worldwide have reported getting printouts asking them to "help defeat T-Series" by subscribing to YouTube channel PewDiePie, currently with the most number of subscribers.
Summary:
Brad Pitt and Angelina Jolie have reached an agreement over child custody and the news of it has come a few days before their trial which was scheduled for December 4.
Summary:
Anushka Sharma, while speaking on not signing any film post her upcoming film 'Zero', said, "I don't want to sign films just for the heck of it." "I've been doing...many roles back to back which was difficult and that took a lot from me," she added.
Summary:
Shah Rukh Khan took to social media to share a picture with his daughter Suhana, along with the poster of a play she performed in, and wrote, "With my Juliet in London".
Summary:
Summary:
Wishing his former teammate Mohammad Kaif on his 38th birthday, Yuvraj Singh tweeted a photo of him posing alongside Kaif while holding a phone's receiver.
Yuvraj and Kaif helped India clinch the NatWest Trophy in 2002.
Summary:
The Afghanistan and Ireland cricket teams will play five ODIs, three T20Is and a one-off Test against each other in Dehradun.
Summary:
Former Indian cricketer Sachin Tendulkar posed with his son and under-19 cricketer Arjun from a location in Rajasthan where a scene from the Bollywood film 'Sholay' was shot.
Sachin, who shared the photo on Instagram, captioned the post, "Kitne Aadmi The?
Summary:
Previously, the Uttar Pradesh CM was under security cover when he traveled by road.
Summary:
Scientist Werner Neuhausser has said Harvard will soon use gene-editing tool CRISPR to change the DNA code inside sperm cells to study the possibility of reducing the risk of AlzheimerâÂÂs disease.
Summary:
A healthy portion of fries should have only six of them, Professor Eric Rimm of Harvard University's nutrition department has said.
Summary:
At least two people were killed and ten others were injured after a jeep collided with a tractor trolley near Uttar Pradesh's Matera, police said.
Summary:
Six blackbucks died in Sayaji Baug zoo in Gujarat's Vadodara after allegedly being attacked by a pack of stray dogs on Friday, officials said.
They might have died of shock and not because of dog bites," the zoo curator said.
Summary:
A Scottish man named John Stevenson has been barred from entering the US after he accidentally declared himself a terrorist on an important online visa form.
Summary:
I just won the Miss World title." "She was a brilliant student...I hadn't got in sync with the impact of a Miss World title," Priyanka's mother said.
Summary:
American singer-songwriter Ariana Grande released a music video 'thank u, next' on Friday, which delayed the posting of YouTube comments.
Summary:
Actor Ajay Devgn has said that his wife Kajol has moved to online shopping in a major way and keeps buying stuff worth â¹500 to â¹1,200 on a routine basis.
Summary:
Aseem Chhabra, who penned 'Priyanka Chopra- The Incredible Story of a Global Bollywood Star', said, "It's fascinating how a big star from Bollywood gives it all up, moves to another country...[Priyanka] succeeded where Aishwarya Rai failed." "[Aishwarya] was very coy...
Summary:
Mary Kom, who recently became the first female boxer to win six world championship titles, has said she wants to win world championship again and also wants to win a gold medal in Olympics.
Summary:
Team India captain Virat Kohli burst into laughter after dismissing Cricket Australia XI batsman Harry Nielsen during a practice match in Sydney, which ended in a draw.
Summary:
A day after claiming, "Rahul Gandhi is my captain.
Summary:
After Uttar Pradesh CM Yogi Adityanath called Lord Hanuman a Dalit during an election rally in Rajasthan, Dalits in Agra have demanded that management of all Hanuman temples across the country be handed over to them.
Summary:
Koo has been with Hyundai for 34 years.
Summary:
Globally, 3 million children and adolescents are living with HIV.
Summary:
An Argentine news channel was criticised for airing an image of 'Apu', a fictional character of Indian ethnicity from 'The Simpsons', when PM Narendra Modi arrived in Buenos Aires for the G20 summit.
Summary:
The store, which was opened as part of an advertising campaign, sold about $3,000 worth of shoes within a few hours.
Summary:
Japan Airlines President Yuji Akasaka has voluntarily taken a pay cut of 20% for three months after a pilot was found drunk.
Summary:
Anushka Sharma, who recently unveiled her interactive wax statue at Madame Tussauds wax museum in Singapore, stood in place of her wax figure in the same pose and pranked her fans.
Summary:
Summary:
Priyanka Chopra and Nick Jonas' sangeet ceremony which took place on Friday at Umaid Bhawan Palace in Jodhpur was attended by Mukesh Ambani, Nita Ambani, Isha Ambani, Anant Ambani and Radhika Merchant.
Summary:
The video of Ariana Grande's song 'Thank u, next' has been released.
In the video, Ariana has re-enacted scenes from films like 'Mean Girls', 'Bring It On', 'Legally Blonde' and '13 Going on 30'.
Summary:
Summary:
I just took off my jewellery and said 'bye-bye'.
Summary:
Katrina Kaif's sister Isabelle Kaif who will be making her debut in Bollywood next year with Sooraj Pancholi's 'Time to Dance', has been advised by her sister to "keep her head down and work hard".
Summary:
Summary:
Addressing a public gathering in poll-bound Rajasthan, Congress President Rahul Gandhi on Saturday questioned PM Narendra Modi's knowledge of Hinduism, saying, "What kind of a Hindu is he?â "Our PM says he is a Hindu but he doesn't understand foundation of Hinduism," he further said.
Summary:
Force India, the British Formula One team formerly owned by businessman Vijay Mallya, has been renamed to Racing Point F1 after being taken over in August by Canadian billionaire Lawrence Stroll.
Summary:
Meanwhile, senior officers with Swiggy and Zomato said that they have not been informed about the move by KHRA.
Summary:
The Directorate of Revenue Intelligence (DRI) has arrested five people, including two South Koreans in Chennai for allegedly smuggling 7 kg gold worth â¹2.20 crore from Hong Kong.
Summary:
A 19-year-old British student, who clicked a photograph from a plane which also included a military helicopter, is facing trial in Egypt for spying.
Summary:
The UK government has confirmed an amendment to a new weapons bill going through the Parliament to ensure that it does not impact the right of the British Sikh community to possess and supply kirpans, or religious swords.
Summary:
Microsoft's valuation surpassed multiple times this week during intraday trade but Apple beat Microsoft at market close.
Summary:
Bush, the last veteran of World War II to serve as President, was officially the longest living President in US history.
Summary:
The woman said her daughter didn't know she was a sex worker and went into depression after being teased by classmates.
Summary:
Summary:
The government is also planning to create "drone ports" in hospitals for transport of organs and emergency medical supplies, Sinha added.
Summary:
Co-founder, CTO of streaming platform Confluent Neha Narkhede and Senior Director at Uber Komal Mangtani were also named.
Summary:
RJD supremo Lalu Prasad Yadav's son Tej Pratap, after the first hearing of his divorce petition in a Patna court on Thursday, said, "I will fight for justice till my last breath." Tej Pratap had requested the court to hold an in-camera hearing, asking the crowd present in the court to leave.
Summary:
The policemen called the owner and arrested the thief after confirmation.
Summary:
The Supreme Court has dismissed pleas of over 350 Army men who challenged the FIRs against armed forces members for carrying out operations in Manipur and J&K, where AFSPA is in force.
Summary:
Following a trilateral meeting with Japanese Prime Minister Shinzo Abe and US President Donald Trump, Prime Minister Narendra Modi said, "If I put it differently, Japan, America and India is 'JAI'.
Summary:
Russian President Vladimir Putin and Saudi Crown Prince Mohammed bin Salman's high-five on Friday at the G20 summit in Argentina has gone viral.
Summary:
Two sons of late Hong Kong tycoon Walter Kwok have inherited a $3.1-billion stake in Sun Hung Kai Properties, which has a market value of about $41 billion.
Summary:
Challenging RBI's argument that it was maintaining high reserves for emergencies, Finance Minister Arun Jaitley said, "You are keeping reserves for a rainy day while generations of people are waiting for rain." "Surplus RBI reserves can be used for poverty alleviation," he added.
Summary:
Around 20 major suppliers have reportedly filed for bankruptcy reorganisation with a Chinese court after Gionee failed to make payments.
Summary:
Priyanka Chopra will wear a Ralph Lauren bridal gown for her Christian wedding, as per reports.
Summary:
Priyanka Chopra and Nick Jonas have hired designer Punit Balana to design clothes for the guests, bridesmaids and groomsmen at their wedding, as per reports.
Summary:
Rajinikanth, while talking about his wife Latha Rajinikanth, said that she helps him as a friend and a philosopher.
Talking about his daughters, director Aishwarya Dhanush and director-producer Soundarya, he said, "They are doing what they want to do and...enjoying it."
Summary:
The Blue Cross is the highest laurel for shooters given by the ISSF.
Summary:
The mosquito's population was claimed to be down by 95% in a trial city.
Summary:
China had earlier halted the trial, saying it violated the country's laws.
Summary:
Experts from India and the European Union met and discussed various aspects of the proposed museum.
Summary:
The price of subsidised LPG has been reduced by â¹6.52 per cylinder, while that of non-subsidised LPG has been reduced by â¹133 per cylinder in Delhi.
Summary:
A group of 58 prison inmates in Iowa, US are suing the state to overturn a new law that bans pornography in prisons, alleging the ban violates their constitutional rights.
Summary:
The city of Paris will strip Myanmar leader Aung San Suu Kyi of her honorary freedom of the French capital over her failure to speak out against a crackdown on Rohingya Muslims, Mayor Anne Hidalgo's spokesperson said.
Summary:
Economic Affairs Secretary SC Garg tweeted on Friday that India's growth in the July-September quarter "seems disappointing".
Summary:
A Venezuelan student, who secured an internship through youth organisation AIESEC, has alleged sexual harassment by her bosses during her internship with Pune real estate firm Xrbia.
Summary:
The Delhi High Court today sentenced Bollywood actor Rajpal Yadav to three months of civil prison for failing to repay a loan of â¹5 crore.
Summary:
Talking about people trolling her on social media, actress Sara Ali Khan recalled a comment which read 'Ya toh salwar kameez ya toh adhnangi ghumti hai.' "That's...funny, because it's true, either I'm in hot shorts or I'm in a salwar kameez," she added.
Summary:
The BCCI has decided to not extend Indian women's cricket team coach Ramesh Powar's contract and has invited fresh applications for the post.
Summary:
After former Pakistan captain Wasim Akram's wife Shaniera shared a video of a "Lahori bride" entering her mehndi venue inside a cake, Akram tweeted, "Love, I'm a diabetic remember!" "What the....?
"Shaniera Bhabhi, Sugar free cakes are available too," a user tweeted.
Summary:
Congress leader Navjot Singh Sidhu on Friday said, "When I first went to Pakistan and talked about them promising Kartarpur corridor, the critics mocked...now the same people are licking their own spit and taking U-turns." "At least 20 Congress leaders asked me to go (to Pakistan).
Summary:
Talking about Punjab CM Captain Amarinder Singh opposing his recent Pakistan visit, Congress leader Navjot Singh Sidhu said, "Rahul Gandhi is my captain.
Summary:
While meeting Chinese President Xi Jinping on the sidelines of the G20 Summit in Argentina, Prime Minister Narendra Modi on Friday said that 2018 has been a very important year for Indo-China relations.
Summary:
A group of Naxals in Chhattisgarh's Sukma district installed several effigies along with dummy weapons made of wood to mislead and confuse security personnel about their presence.
Summary:
"We accepted [the marriage]...but village elders couldn't," the girl's mother said.
Summary:
USMCA will govern over a trillion dollars worth of trade between the three countries.
Summary:
As per estimates, 80% of children living in the world's orphanages have at least one living parent.
Summary:
The Supreme Court has asked the government to clear Reliance Communications' spectrum sale to Reliance Jio in seven days, once it submits a corporate guarantee of â¹1,400 crore.
Summary:
US hotel giant Marriott on Friday said the guest reservation system at its Starwood unit has been hacked, potentially exposing the personal information of around 500 million guests.
Summary:
Indian patients suffering due to Johnson & Johnson (J&J) faulty ASR hip implants will get up to â¹1.23 crore each and an additional â¹10 lakh for 'non pecuniary' losses as compensation.
Summary:
While speaking about his experience as an actor, Sushant Singh Rajput said, "When doing a movie, I am possessed to a point of avoiding analysis".
Summary:
The film reportedly made a total of about â¹85 crore in India.
Summary:
'Manikarnika: the Queen of Jhansi' producer Kamal Jain has said that all "legitimate and due payments" have been cleared by the film's makers.
Summary:
Reacting to captain Virat Kohli bowling in India's tour match against Cricket Australia XI, Ravichandran Ashwin jokingly said, "I think he was just dishing out a lesson to all the bowlers on probably where to bowl".
Summary:
"Loans given through corrupt practices during Congress government have turned into NPAs," Shah said.
Summary:
If my captain asks me to open, I will." "I scored a fifty in England and if given a chance I would like to convert it into a century," Vihari added.
Summary:
Members of the New Zealand hockey team sported moustaches to raise awareness about men's health issues, such as prostate cancer and testicular cancer among others.
Summary:
Norway's world champion chess player Magnus Carlsen has revealed that he wouldn't have played another World Championship match if he had failed to retain the title this year.
Summary:
"I demand the Centre implement the report, else farmers will wreak havoc in 2019 elections," he added.
Summary:
The victim had been admitted for treatment at Sri Krishna Medical College and Hospital on November 11.
Summary:
Uttarakhand Chief Minister Trivendra Singh Rawat on Friday demanded a one-time assistance of â¹4,570 crore from the Centre for organising the 2021 Mahakumbh fair.
Summary:
Prime Minister Narendra Modi met Saudi Crown Prince Mohammed bin Salman on the sidelines of the G20 Summit in Argentina with an aim to further boost economic, cultural and energy ties between the two countries.
Summary:
Police in the Russian city of Yekaterinburg has seized children's drawings depicting same-sex couples to investigate whether they amount to "gay propaganda".
Summary:
Horlicks recently organized India's first-of-its-kind talent mentorship workshop Passion Paathshaala to help kids discover their passions and encourage them to do more.
Summary:
From November 30 for a limited period customers exchanging their old OnePlus or Apple phone will get a â¹3,000 discount.
Summary:
Twitter posted a blank tweet from their official handle on Thursday, which led to several users trolling the social media company via memes.
Summary:
Addressing a rally in Telangana, CM K Chandrashekhar Rao on Thursday asked a man to sit down who asked him about 12% reservation for Muslim minorities.
The state had passed a bill increasing reservation for Muslims from 4% to 12%, which is pending Centre's approval.
Summary:
Organisers found 18 runners with fake bib numbers, three imposters, and 237 runners who took shortcuts.
Summary:
Tata Motors' luxury carmaking unit Jaguar Land Rover will reduce the workforce at its engine factory in the UK by about 500 in a temporary move.
Summary:
UrbanClap is also facilitating a secondary sale of stocks and Employee Stock Ownership Plans (ESOPs) worth $4 million to employees and angel investors, the company revealed.
Summary:
The Jammu University professor, who has been suspended for allegedly calling freedom fighter Bhagat Singh a 'terrorist', has said, "It was not right on my part to say so.
Summary:
She reportedly sold 29.5-acre land for â¹30,234.30.
Summary:
Indian Army chief General Bipin Rawat on Friday said the Army wasn't yet ready to have women in combat roles.
Summary:
Pakistan's Foreign Minister Shah Mahmood Qureshi has said that PM Imran Khan "bowled a googly" at India by opening the Kartarpur corridor following which India sent two ministers for the groundbreaking ceremony.
Summary:
After US President Donald Trump cancelled scheduled talks with his Russian counterpart Vladimir Putin, Russia has said that Putin will have "a couple more hours" for "useful meetings" with other leaders.
Summary:
"What is employee's fault...even we didn't get salary from last 5 months...help please [before it's too late]," a tweet read.
Summary:
Coffee giant Starbucks has announced it will block access to pornography on its free WiFi in all its US outlets from 2019.
Summary:
India retained its position as the world's fastest-growing major economy in the July-September quarter, surpassing China's 6.5% growth.
Summary:
The Bombay High Court on Friday directed the Central Board of Film Certification (CBFC) to examine Shah Rukh Khan starrer 'Zero' amid allegations of hurting Sikh sentiments.
Summary:
Revealing her favourite actor in Bollywood, Freida Pinto said, "One of my favourite actors in India...is...Richa Chadha.
Summary:
Summary:
Kohli, who is a right-arm medium pace bowler, bowled two overs.
Summary:
India's Olympic medal winning wrestlers Sushil Kumar and Sakshi Malik have been given Grade B contracts worth â¹20 lakh in what is Wrestling Federation of India's first-ever contract system.
Summary:
Allen Erasmus 'Naka' Drotské, a member of South Africa's 1995 Rugby World Cup-winning team, was shot at thrice during an attempted robbery in Pretoria on Thursday.
Summary:
Facebook-owned photo-sharing app Instagram has said it's rolling out a new feature called 'Close Friends' that will let users build a single private list of their close friends and share stories exclusively with them.
Summary:
Senior Odisha BJP leaders Dilip Ray and Bijoy Mohapatra resigned from the party on Friday.
Summary:
Anil Arya, who cofounded mosquito repellent brand All Out, is set to acquire dairy technology startup Mr.Milkman, according to a media report.
Summary:
Army Chief General Bipin Rawat has said Pakistan needs to "develop as a secular state" to "stay together" with India.
Summary:
Approximately 8,000 barrels of crude oil spilled into the Peruvian Amazon after members of the Mayuriaga indigenous community severed a major pipeline, according to state-owned oil company Petroperu.
Summary:
The Sri Lankan Parliament has voted to block the salaries and travel expenses of ministers with an aim to exert pressure on Prime Minister Mahinda Rajapaksa.
Summary:
At the time, an over constituted of eight balls and Bradman hit 33, 40, and 27 runs respectively in three consecutive overs.
Summary:
"Of course, I am a normal person," Sara said about stalking people on social media.
Summary:
She further said, "I do wish that I had spoken up sooner."
Summary:
Abu Jani and Sandeep Khosla, who designed the ensemble Deepika Padukone wore at her Mumbai reception, revealed it took approximately 16,000 man-hours to create the outfit.
We decided to give her many drapes to carry," said the designers.
Summary:
Jammu University has suspended the Head of the Political Science Department for referring to freedom fighter Bhagat Singh as a 'terrorist' during his lecture.
Summary:
Arunachal Pradesh Governor Retired Brigadier BD Mishra on Thursday took a pregnant woman in urgent need of medical attention in his helicopter from Tawang to a Itanagar hospital.
Summary:
The aid would help the Maldives repay its debt to China, the reports further claimed.
Summary:
The Centre has proposed a prohibition on the use of all animals for performances, exhibition at any circus or mobile entertainment facilities and has invited comments from various stakeholders on the issue within 30 days.
Summary:
Delhi Police on Thursday withdrew the terror alert advisory in the city after an official of a Pakistani religious university confirmed that the two alleged Jaish-e-Mohammed operatives in the posters were actually its students.
Summary:
Summary:
Summary:
Deepika Padukone and Ranveer Singh, who got married on November 14 and 15, visited Mumbai's Siddhivinayak Temple with their family on Friday.
Summary:
Justin and Hailey had confirmed their engagement in July.
Summary:
Summary:
Indian all-rounder Hardik Pandya, who suffered a back injury during the Asia Cup in September, has reportedly been asked to prove his fitness by the National Cricket Academy in Bengaluru.
Summary:
Rajasthan Royals' Barbados-born cricketer Jofra Archer could make his England debut in 2019 after the England Cricket Board changed its eligibility criteria for selection by reducing down the seven-year residency requirement to three years.
Summary:
India's 13-year-old shooter Esha Singh beat the likes of Manu Bhaker and Heena Sidhu to win three gold medals in women's air pistol events at the 62nd National Shooting Championships.
Summary:
Twitter shares fell by around 8.7% on Thursday after reports claimed that the micro-blogging platform is facing a boycott from agencies such as Fox News.
Summary:
Gay dating app Grindr's President, Scott Chen, has been criticised for saying that "marriage is a holy matrimony between a man and woman".
Summary:
The Income Tax Department has issued notices to overseas investors involved in Walmart's $16-billion acquisition of Flipkart.
Summary:
Three fragments of rocks brought from the Moon by a Soviet space mission in 1970 were sold for $855,000 at a New York auction on Thursday, auction house Sotheby's said.
Summary:
While the states share a 380-km border, she ordered vigilance along 110 km of once Maoists-dominated area.
Summary:
At least 654 Indian flapshell turtles were recovered from a pond in Uttar Pradesh's Etawah district on Wednesday, 482 of which were found to be dead.
Summary:
Air New Zealand has mocked Donald Trump in its Christmas ad by replicating the US President's UN laughter moment.
Summary:
A US woman spent three months in jail after her bag of candy floss was declared as methamphetamine by Georgia police following a drug test.
Summary:
More than 47,000 cases of suicides were registered in the US last year, up from nearly 45,000 in 2016.
Summary:
The police complaint filed by the boy's mother alleged the woman was a two-time divorcee and had "enticed" her son.
Summary:
Amazon has announced a 'Lucky Star' offer for customers buying the OnePlus 6T, wherein customers buying the smartphone between November 30 and December 2 will stand a chance to win 600 gifts along with it.
Summary:
Actress Priyanka Chopra's fiancé Nick Jonas revealed the actress took 45 seconds when he went down on his knee and proposed to her with a Tiffany ring.
Summary:
Actress Priyanka Chopra has revealed that when she invited Nick Jonas to her house for their first date, he did not kiss her but patted her on the back before leaving.
"She's still upset about that (not kissing her on first date)," Nick said.
Summary:
But she...grounded me." "Before she had her blockbuster year, we'd already started dating, I've seen her deal with success and failure," added Ranveer.
Ranveer had earlier said that "six months into the relationship, I knew she was the one".
Summary:
India's 19-year-old opener Prithvi Shaw has been ruled out of the opening Test against Australia owing to an ankle injury.
Summary:
This comes after reports of Azharuddin being unhappy with his treatment within the party.
Summary:
Former Anthropological Survey of India researcher Madhumala Chattopadhyay successfully made friendly contact with the Sentinelese in 1991 after escaping an initial arrow attack.
Summary:
Deepak told police he wanted to "send a message" that people leaking information would meet the same fate.
Summary:
Pakistan Prime Minister Imran Khan has said that his September tweet about "small men occupying big offices" did not refer to Indian Prime Minister Narendra Modi.
Summary:
Thousands of farmers on Friday marched to Delhi's Ramlila Maidan from different locations on the second day of protest to demand farm loan waivers and higher crop prices.
Summary:
The broker said that the idea was aimed at making the building more desirable to rich buyers.
Summary:
A train carrying South Korean engineers and officials crossed into the North on Friday, becoming the first train from the South to enter North Korea since 2008.
Summary:
Cohen pleaded guilty to lying to Congress, saying he did so out of loyalty to Trump.
Summary:
During the drive, authorities arrested several people who were found violating the rules.
Summary:
Nick Jonas' father Paul Kevin Jonas Sr, who is a pastor, will officiate Nick and Priyanka Chopra's Christian wedding ceremony that will take place on December 1, as per reports.
Summary:
Priyanka Chopra and Nick Jonas will give personalised 'NP' silver coins to all the guests as return gifts at their wedding, as per reports.
Summary:
My friend made up a story saying that the food in our college mess got over and that we didn't have anything to eat," added Kapil.
Summary:
Former CBI Joint Director VV Lakshminarayana has announced to launch his own political party, ending speculations about joining Loksatta party.
Summary:
Hike Messenger Founder and CEO Kavin Bharti Mittal while talking about building an app-based startup on Thursday said, "You have to continuously make big bets, without betting the company." He revealed a lot of "trial-and-error" attempts like âÂÂstickersâ and âÂÂhidden modeâ helped Hike gain desired user growth.
Summary:
UK-based scientists have created artificial 'mini-placentas' which can mimic early pregnancy and help study human placentaâÂÂs earliest stages during pregnancy.
Summary:
US space agency NASA on Thursday unveiled a list of nine new partners contracted to design and build lunar landers for Moon exploration.
Summary:
The UN World Meteorological Organization on Thursday said that global temperatures are on track to rise by 3-5ðC by 2100, exceeding the global target of limiting the increase to 2ðC or less.
Summary:
Nand Kumar Sai, Chairperson of National Commission for Scheduled Tribes (NCST) on Thursday said that Lord Hanuman was a tribal.
Summary:
The Kerala government has issued an alert to all District Medical Officers to take necessary precautions ahead of the Nipah virus transmission season.
Summary:
The ban comes amid fears of a Russian invasion after Russian forces seized three Ukrainian vessels and 24 sailors.
Summary:
CEAT has introduced new Gripp X3 Tyres for motorcycles with an 'Everlasting Grip' feature that provides the same grip throughout the life of the tyre.
Summary:
On his return, Bradman scored 79 and 112 against England.
Summary:
England played the match with a 1-1-8 formation while Scotland used 2-2-6.
Summary:
India's 19-year-old opener Prithvi Shaw injured his left ankle while fielding during the warm-up match at Sydney Cricket Ground on Friday.
Summary:
Taking a dig at Telangana CM K Chandrashekar Rao, who is popularly known as KCR, Congress President Rahul Gandhi said, "KCR stands for 'Khao Commission Rao'." "KCR's only job has been to rename old Congress projects by enhancing their costs, and getting commission for himself and his family," he added.
Summary:
Maratha Arabians' 20-year-old Afghan leg-spinner Rashid Khan smashed a six with an MS Dhoni-like helicopter shot on the bowling of Pakhtoon's seven-foot-one-inch tall Pakistani fast bowler Mohammad Irfan in the T10 League on Wednesday.
Summary:
Summary:
Chinese state-owned news channel China Global Television Network excluded Pakistan occupied Kashmir (PoK) from Pakistan and portrayed it as part of India while it reported the terror attack on China's consulate in Karachi.
Summary:
Nearly one-third of the world's 150.8 million stunted children live in India, the 2018 Global Nutrition Report revealed.
Summary:
Maharashtra has stayed the process to buy land for the $44-billion refinery that state-run oil companies are building with Saudi Aramco, CM Devendra Fadnavis said.
Summary:
The accused were allegedly engaged in the business of share trading, holiday package booking and air ticketing without any approvals.
Summary:
Georg Schaeffler and his mother Maria-Elisabeth Schaeffler-Thumann, the majority shareholders of Germany's Continental, have lost about $16 billion so far in 2018.
Summary:
Around 1,200 workers of the Hipad Technology India, which makes Xiaomi and Oppo phones, pelted stones at the company building and factory in Noida, after 200 workers claimed they were fired without notice.
Summary:
A fire broke out on the sets of Shah Rukh Khan starrer 'Zero' in Mumbai's Film City on Thursday.
Summary:
Summary:
Comedian Kapil Sharma's fiancée Ginni Chatrath revealed that she used to take home-made food for Kapil when they were in college, adding that she always knew he was "the one".
Summary:
The producer had promised to make the payment by October, FWICE stated.
Summary:
British actor Michael Sheen said he broke up with comedian Sarah Silverman because of Brexit and Donald Trump's presidency.
Summary:
Whom could we [Janhvi and Khushi Kapoor] rely on?" "They are so chilled out, such gracious and strong people, who encourage you and are real with you.
Summary:
YouTube is rolling out its Instagram-like Stories feature to creators with more than 10,000 subscribers.
Summary:
A Samsung supplier's chief and eight of his employees allegedly received $13.8 million between May and August this year for selling the technology.
Summary:
He said Jain had initiated a scheme to turn 'kacchi colonies' into 'pakki colonies' but the BJP government is against this initiative.
Summary:
US-based online education startup Udacity has said it will lay off 125 employees as part of its efforts to reorganise the company and redefine global strategy, according to a report.
Summary:
The Bombay Stock Exchange (BSE) on Wednesday announced the creation of a new division within its small and medium enterprises (SMEs) segment to list startups.
Summary:
Tamil Nadu Governor Banwarilal Purohit on Thursday announced that he would contribute his November salary towards relief and rehabilitation activities in areas affected by Cyclone Gaja.
Summary:
Vehicles heading towards Uttar Pradesh's Prayagaraj for the 2019 Kumbh Mela will be given toll-free entry under 50 km periphery of the mela site for three months between December 15 and March 15, as per reports.
Summary:
Scientists claimed the material is "soft, flexible, durable, very light and easy to handle".
Summary:
US President Donald Trump has cancelled the scheduled meeting with his Russian counterpart Vladimir Putin at the upcoming G20 summit over the ongoing standoff between Russia and Ukraine.
Summary:
A jar bought by a British man for less than ã4 from a car-boot sale, which he used as a toothbrush holder, turned out to be dating back to the Indus Valley or Harappan civilisation.
Summary:
Karanvir then picked it up and kept it on his head, as the other two contestants laughed.
Summary:
Tanushree Dutta, while speaking about her alleged 2008 sexual harassment, brought up the references of late actresses Jiah Khan and Pratyusha Banerjee and said, "[They] committed suicide.
Summary:
A part of Eiffel Tower's staircase was auctioned for â¹1.34 crore (â¬1,69,000), three times the original estimate, at an auction in Paris on Tuesday.
Summary:
Opener Prithvi Shaw slipped while trying to sweep a delivery and got bowled out in the process during India's practice match against Cricket Australia XI on Thursday.
Summary:
The 35-year-old had recently become the first ever female boxer to win six gold medals in world championships.
Summary:
A Congress worker was allegedly made to rub his nose on the ground at a bus stop in Rajasthan's Dungarpur by four men, after his vehicle splashed mud on them.
Summary:
Delhi High Court on Thursday extended Congress MP and former Finance Minister P Chidambaram's interim protection from the arrest in the INX Media case till January 15.
Summary:
The CBI has registered a fresh case of criminal conspiracy, robbery, disobeying law to cause injury and dacoity against Tamil Nadu police and revenue department officials in connection with the firing on anti-Sterlite protestors in Tuticorin.
Summary:
The man was said to be bitten while playing with the snake in the bathtub.
Summary:
Ex-Chief Economic Adviser Arvind Subramanian in his new book said that demonetisation was a "massive, draconian, monetary shock" and an "unprecedented move that no country in recent history had made in normal times".
Summary:
"The gate agent started laughing, pointing at me and my daughter, talking to other employees," the girl's mother said.
Summary:
A consortium backed by Thai conglomerate Minor International is planning to expand Hotel Leelaventure's business in India, Asia and other parts of the world if its bid for the Indian hospitality firm is successful.
Summary:
He said the Congress cannot develop or secure the country.
Summary:
Whistleblower Christopher Wylie, who exposed Facebook data scandal-linked firm Cambridge Analytica, has reportedly claimed it used fashion preferences of Facebook users to target them with political messages.
Summary:
Founded in 2013, the company unveiled its first satellite in the constellation plan on Tuesday.
Summary:
Over 200 carmakers selling electric vehicles in China including Tesla, Volkswagen, Daimler and Ford, send real-time location and other data to the government without car owners' knowledge, according to a report.
Summary:
The Union Home Ministry has reportedly sanctioned the prosecution of Delhi Health Minister Satyendar Jain in a disproportionate assets case.
Summary:
Summary:
China has ordered a halt to the work of scientist He Jiankui who claimed to have created the world's first genetically-edited babies.
Summary:
The National Green Tribunal (NGT) on Wednesday said the Tamil Nadu governmentâÂÂs shutdown of Sterlite Copper's plant in Thoothukudi was unjustified.
Summary:
Maratha community constitutes 30% of the state's population and 76.86% of its families were dependent on agriculture.
Summary:
A street dog on Wednesday attacked at least 26 people including children, senior citizens and others walking on the road in Uttar Pradesh's Rampur district.
Summary:
Bengaluru's Elevated Corridor Project, covering a distance of 102 kilometres with six corridors, is estimated to cost between â¹25,000 and â¹26,000 crore.
Summary:
US National Security Advisor John Bolton has said that he will not listen to the recording related to the murder of Saudi journalist Jamal Khashoggi as it is in Arabic and he doesn't speak the language.
Summary:
Consumer goods giant Unilever's CEO Paul Polman will retire on December 31 after serving in the position for a decade.
Summary:
Pakistan is planning to make late actor Raj Kapoor's ancestral home with 60 rooms in Peshawar into a museum, Pakistan's Foreign Minister Shah Mahmood Qureshi said.
Summary:
Cricketer-turned-commentator Virender Sehwag has said that KL Rahul and Prithvi Shaw should open in each of the four Test matches against Australia.
I am not seeing Vijay playing in Tests in Australia," he added.
Now he has to wait," Sehwag further said.
Summary:
Summary:
Harbhajan Singh has revealed his wife Geeta Basra ignored his first text, wherein he had introduced himself and asked if he could meet her for a coffee.
Summary:
Ex-India captain Sunil Gavaskar criticised journalist Vikrant Gupta after the latter asked him to give his opinion on ex-Australia captain Ian Chappell's view that Rohit Sharma should bat at number three in the Tests against Australia.
Summary:
Team India captain Virat Kohli was criticised on social media for wearing shorts at toss ahead of India's warm-up match against Cricket Australia XI.
Summary:
Purushottam's vehicle had broken midair, however he managed to steer the broken glider before it plummeted 40 feet onto the concrete roof of a building.
Summary:
The wing of an Air India plane with 179 on board went inside a building after the plane struck the building at Stockholm's Arlanda airport.
Summary:
External Affairs Minister Sushma Swaraj on Wednesday said the government would bring a Bill in the coming winter session of the Parliament against NRI husbands who abandon their wives.
Summary:
Summary:
Pakistan PM Imran Khan has said his government has "inherited the issue" of 26/11 Mumbai attack mastermind Hafiz Saeed and hence "cannot be held responsible for the past".
"It's not in Pakistan's interest to allow use of its territory for terror outside," Khan further said.
Summary:
The rupee on Thursday gained 77 paise to close at 69.85 per dollar, the first time it strengthened past 70 in three months.
Summary:
Chidambaram termed GDP data revision as a "hatchet job" by NITI Aayog.
Summary:
Actress Anushka Sharma has said as an actor, she is always trying to put herself in an uncomfortable position and take up roles that are challenging and interesting.
Summary:
Nick Jonas' brother Kevin Jonas arrived in Mumbai on Wednesday along with his wife Danielle, ahead of Nick's wedding to Priyanka Chopra.
Summary:
Rajinikanth and Akshay Kumar starrer '2.0' was leaked online by piracy website TamilRockers, hours after its release on Thursday.
Summary:
Rajasthan BJP's lone Muslim candidate Yoonus Khan has said Rajasthan Congress chief Sachin Pilot is a 'pilot', and "I am just a sevak (servant)".
Summary:
German luxury automaker BMW said that it can force its hybrid cars to switch to electric-only mode in polluted areas, aligning with certain EU cities' attempts to create emissions-free zones.
Summary:
Bengaluru-based HR technology startup Hush has raised â¹4.5 crore in a round of funding from venture capital firm Accel and Shamik Sharma, former CTO of Myntra.
Summary:
E-commerce platform Yebhi's Co-founder Danish Ahmed has launched a medical tourism startup Hospals, along with Obaid and Alok, who were the CEO and COO at medical tourism company Al-Shifa.
Summary:
A group of leading scientists has declared that the world isn't ready for gene-edited babies, following claims from a Chinese researcher that he created genetically modified babies.
Summary:
Scientists have created an atomic clock that ticks at a rate matching the natural frequency to within a possible error of about one billionth of a billionth.
Summary:
I don't know who's Gopal Chawla." Chawla had posted the picture on Facebook, along with the caption, "with sedu pa g".
Summary:
Salome Zurabishvili has become Georgia's first female President after securing over 59% of the votes in the elections.
Summary:
The Senate voted 63 to 37 to bring to the floor a motion to limit presidential powers in wars outside the country.
Summary:
France could instead become the permanent EU ambassador to the UN, he added.
Summary:
Germany's largest lender Deutsche Bank's Frankfurt offices including its headquarters were raided by prosecutors in connection with the Panama Papers probe on Thursday.
Summary:
A video shows Ranveer Singh turning DJ at his second wedding reception held on Wednesday in Mumbai.
Summary:
An American named Chris Gursky was left holding on for his life after his hang gliding pilot forgot to attach him to the glider in Switzerland.
Summary:
After KL Rahul got out for 3(18) in the practice match against Cricket Australia XI, batting coach Sanjay Bangar said that the batsman is "finding new ways to get out".
Summary:
Aaron Hardie, a 19-year-old England-born Australian all-rounder who has not played a first-class match yet, dismissed Team India captain Virat Kohli on Thursday during India's practice match against Cricket Australia XI.
Summary:
Kerala government has decided to donate â¹10 crore as relief to Tamil Nadu over cyclone Gaja that made landfall earlier this month.
Summary:
Kolkata's South City Mall replied, "Funny you found this to be an issue," to a mother who found no place to breastfeed her baby.
Summary:
Summary:
A Delhi court has issued a non-bailable warrant against Ghaziabad SHO for not appearing before it with a report on why all former Provincial Armed Constabulary officials convicted in 1987 Hashimpura case have not surrendered.
Summary:
A group of farmers from Tamil Nadu have arrived in Delhi for the two-day farmers' protest, carrying skulls which they claimed were of their two colleagues who committed suicide after failing to pay their debt.
Summary:
A man and his girlfriend have sued the US state of Hawaii, claiming the false missile alert they received on their cellphones earlier this year caused him to have a heart attack.
Summary:
Indian resources conglomerate Adani Enterprises has said it will fully fund its controversial Carmichael coal mine and rail project in Australia.
Summary:
SpiceJet has said it provided an additional bank guarantee of â¹20 crore to Airports Authority of India (AAI) for unpaid dues.
Summary:
Three people were killed after a fire broke out in a rubber plant at Reliance Industries' complex in Gujarat's Vadodara.
Summary:
A 62-year-old Bahujan Samaj Party (BSP) candidate, Laxman Singh, on Thursday died of heart attack, just a week ahead of Rajasthan Assembly elections.
Election in Ramgarh assembly has been postponed in the wake of Singh's demise.
Summary:
He has instructed all District Collectors and District Election Officers to ensure that polling stations in their respective areas are tobacco-free.
Summary:
Object recognition-based automatic alternative text feature will let visually impaired readers hear descriptions of photos through screen readers.
Summary:
Twitter has said that it has suspended an account for impersonating Russian President Vladimir Putin on its platform.
Summary:
Facebook's internal emails between 2012 and 2014 revealed the social network had considered charging companies for access to its user data, according to the Wall Street Journal.
Summary:
Microsoft beat out other leading augmented reality headset companies, like Magic Leap in a bidding process for the two-year-long contract.
Summary:
Union Minister Harsimrat Kaur Badal on Wednesday took a jibe at Congress leader Navjot Singh Sidhu saying he seems to be getting more love and respect from Pakistan than India.
Summary:
India ranks third in the list, the first being the US with 6,76,773 names, followed by China with 2,62,752 names.
Summary:
New York University researchersâ have successfully regrown hair on damaged mice skin, as per a study published in the journal Nature Communications.
Summary:
The Supreme Court on Thursday told the Uttar Pradesh government that the vision document on the Taj Mahal, being prepared by the School of Planning and Architecture (SPA), Delhi should be made public.
Summary:
As many as 52 students at Shaikh-Ul-Hind Maulana Mahmood Hasan Medical College in Uttar Pradesh's Saharanpur have been suspended from class for one month for ragging their juniors.
Summary:
The survivor claimed her rapist Arshid Hussain was offered the option to apply "parental rights" over her child.
Summary:
Ukrainian President Petro Poroshenko has urged the NATO to deploy naval ships to the Sea of Azov amid a standoff with Russia "in order to assist Ukraine and provide security".
Summary:
Engineering conglomerate L&T's Group Chairman AM Naik was on Wednesday appointed the Chairman of National Skill Development Corporation (NSDC).
Summary:
Whether traveling towards winter or away from it, you can find a space anywhere with OYO.
Summary:
The Maharashtra assembly has unanimously approved 16% reservation for the Maratha community in jobs and educational institutes.
Summary:
The Indian Space Research Organisation (ISRO) on Thursday successfully launched India's Hyperspectral Imaging Satellite (HySIS) along with 30 micro and nanosatellites of eight other countries after a 16-hour countdown.
Summary:
Rao is the only Indian cricketer in first-class history to take two hat-tricks in one innings.
Summary:
A thief who stole a university student's laptop in UK's Birmingham, later sent an e-mail to him apologising for the theft.
Summary:
Actor Ayushmann Khurrana's wife Tahira Kashyap took to Instagram to reveal that she has been diagnosed with stage 1A cancer.
Tahira further wrote, "This post is dedicated to my journey where half the battle is won and the other half I want to fight."
Summary:
substance," wrote Bollywood Hungama.
It has been rated 4.5/5 (Bollywood Hungama), 3/5 (India Today) and 4/5 (Koimoi).
Summary:
The BJP has alleged that names of Rohingya Muslims have been added to voters' list in poll-bound Telangana, despite directions from Home Ministry that they aren't Indian citizens.
Summary:
Reacting to the allegations levelled against her by India Women coach Ramesh Powar, Mithali Raj tweeted it was the darkest day of her life as her patriotism has been doubted.
Summary:
Yuvraj had last played a Ranji Trophy match in October last year, scoring 62 runs in two innings.
Summary:
A 55-year-old Assistant Commissioner of Police, Prem Ballabh, allegedly committed suicide on Thursday by jumping from the 10th floor of the Delhi Police headquarters.
Summary:
Over 1,000 policemen will be deployed in Delhi on Thursday as thousands of farmers are expected to march into the capital for a 2-day protest demanding a special three-week Parliament session to discuss the agrarian crisis.
Summary:
The Supreme Court has allowed candidates aged above 25 to take National Eligibility cum Entrance Test (NEET) 2019.
Summary:
President Ram Nath Kovind has appointed Arvind Saxena as the new chairman of Union Public Service Commission (UPSC), which conducts examinations to select diplomats, bureaucrats and police officers.
Summary:
A picture shared by the Indian Army, showing an Army officer consoling the grieving father of Lance Naik Nazir Ahmad Wani, who lost his life fighting terrorists in Jammu & Kashmir, has gone viral.
Summary:
Summary:
The police was alerted about the group performing these stunts by local residents.
Summary:
Pro-Khalistan leader Gopal Singh Chawla has posted a picture with Punjab minister Navjot Singh Sidhu on Facebook, along with the caption, "with sedu pa g." Singh and Chawla had recently attended the groundbreaking ceremony for Kartarpur corridor in Pakistan.
Summary:
Pakistan's Finance Minister Asad Umar has said that his country is not in a hurry to receive a bailout package from the International Monetary Fund (IMF).
Summary:
The ex-employees who sued TCS accused it of a "systematic pattern and practice of discrimination" by favouring Indians for positions in US offices.
Summary:
The government on Wednesday released revised GDP data for the seven years from 2004-05 to 2011-12 under a new base year.
Summary:
"If the PM...can forgive three lakh fifty thousand crore of 15...richest people in the country, then he should be ready to forgive the loan of India's farmers," he added.
Summary:
The Congress on Thursday released its manifesto for Rajasthan Assembly elections, promising jobs to youth and free education to women.
Summary:
Amazon's cloud unit has unveiled a $400 self-driving toy car, AWS DeepRacer, to let web developers test their self-driving technology.
Summary:
Dell said that investigators found no evidence that the hackers succeeded but some data may still have been stolen.
Summary:
Elon Musk-owned The Boring Company on Tuesday announced it has withdrawn plans to develop a transportation test tunnel in Sepulveda Boulevard, Los Angeles after a lawsuit settlement with community groups.
Summary:
US State Secretary Mike Pompeo has said that there is no direct report connecting Saudi Crown Prince Mohammed bin Salman to the murder of journalist Jamal Khashoggi.
Summary:
IIIT-Bangalore & UpGrad have introduced a PG Certificate Program in Blockchain Technology taught by leading experts from IBM, DCB Bank, BankChain, Elemential, SpringRole.
Summary:
Hunter Shamatt, a 20-year-old who lost his wallet on a Las Vegas-bound flight, was returned his wallet by a stranger with a handwritten note and extra cash to celebrate getting the wallet back.
Summary:
The Cellular Operators Association of India has asked the censor board to revoke the certification and suspend the release of Rajinikanth starrer '2.0'.
Summary:
"I'd been thinking about marriage seriously for almost three years now...I told her the minute you say so, we'll do it," Ranveer further said.
Summary:
Hector Hernandez, a 47-year-old US man, who was teased by his friends for a 'beer belly' despite the fact that he doesn't drink beer, was found to be having a 35 kg cancerous tumour in his abdomen.
Summary:
Adityanath made the remarks at a rally in poll-bound Rajasthan.
Summary:
Indian women's cricket team coach Ramesh Powar has revealed Mithali Raj packed her bags and threatened to retire as she was upset over not being allowed to open in Women's World T20 match against Pakistan.
Summary:
"Relief.
Frustration before that and relief with the goal.
Summary:
"It is not a laughter challenge," Javadekar said.
Summary:
Billionaire Anand Mahindra on Tuesday said that poets should be sent to Mars first, to which SpaceX CEO Elon Musk replied, "Engineers, artists & creators of all kinds.
Or there'll be no one to make sense of why we're there," Mahindra added.
Summary:
Chawla is believed to be close to 26/11 Mumbai attack mastermind and Jamaat-ud-Dawa chief Hafiz Saeed.
Summary:
"She even wore a mask on her face so that she could not be recognised (while leaving)," police added.
Summary:
Summary:
State-run BSNL's employee unions have alleged that the government is favouring Reliance Jio and said they'll go on an indefinite strike from December 3.
Summary:
Lodha Developers has said it will exit the UK property market and sell its equity interest in its two London projects for around â¹4,200 crore.
Summary:
Arjun was an assistant director on the film's sets.
Summary:
While talking about his experience starring in the film '2.0' opposite Rajinikanth, Akshay Kumar said that Southern stars were more professional and punctual than Bollywood actors.
Summary:
Ayushmann Khurrana and Nushrat Bharucha will star together in an upcoming comedy film, produced by Ekta Kapoor.
I am excited to work with Ayushmann," Nushrat said when asked about the film.
Summary:
Talking about his exclusion from India Test squad, Shikhar Dhawan said he was a bit sad initially but he has moved on.
I got a bit of off time," he added.
Summary:
New Zealand's intelligence agency has rejected a telecom carrier's request to use 5G equipment provided by ChinaâÂÂs Huawei Technologies in the country citing national security concerns.
Summary:
"Dragonfly is well aligned with Google's mission...we believe that Google should continue on Dragonfly," the letter reads.
Summary:
Former Samajwadi Party leader Amar Singh has donated his ancestral property, worth crores, in Azamgarh to Sewa Bharti, an organisation affiliated to Rashtriya Swayamsevak Sangh (RSS).
Summary:
Bengaluru-based vehicle sharing marketplace Drivezy has raised $20 million in a Series B funding round led by Das Capital and $100 million in asset financing, to be handled by existing investor Anypay.
Summary:
Hong Kong-based fintech startup Oriente, co-founded by Skype Co-founder Geoffrey Prentice, has raised $105 million funding to scale its business across Southeast Asia.
Summary:
Himachal Pradesh on Wednesday became first Indian state to launch a single emergency number "112".
Summary:
India's largest IT services firm Tata Consultancy Services (TCS) on Wednesday announced that it has acquired US-based management consulting firm BridgePoint Group.
Summary:
The release of his death certificate comes two weeks after his death on November 12 aged 95.
Summary:
Priyanka further said, "Hateful comments can affect even the strongest people.
Summary:
Newlywed couple Deepika Padukone and Ranveer Singh on Wednesday shared pictures of themselves dressed for their Mumbai wedding reception being held at the Grand Hyatt hotel.
Summary:
India will next face Belgium in a Pool C fixture on Sunday.
Summary:
Harbhajan Singh has revealed he saw his wife Geeta Basra for the first time on a poster during the time India won the World Cup.
Summary:
The Indian women's cricket team coach Ramesh Powar has admitted to having a "strained" professional relationship with Mithali Raj. He told a BCCI committee that he always found Mithali "aloof and difficult to handle".
Summary:
Ex-Australia captain Michael Clarke called journalist Gerard Whateley a "headline chasing coward", saying Whateley attacked his leadership and blamed him for ball-tampering scandal.
Summary:
Reacting to Mithali Raj being dropped from the playing XI for the Women's World T20 semi-final against England, Sunil Gavaskar said that he feels sorry for Mithali.
"You can't drop someone like Mithali Raj," he added.
Summary:
Summary:
India on Wednesday criticised Pakistan PM Imran Khan's statement on Kashmir at the Kartarpur corridor groundbreaking ceremony, calling it "deeply regrettable".
Summary:
If the Berlin Wall can fall, then the hatred between India and Pakistan can also end, Union Minister Harsimrat Kaur Badal said on Wednesday at the groundbreaking ceremony of the Kartarpur corridor in Pakistan.
Summary:
Praising Pakistan PM Imran Khan at the Kartarpur corridor groundbreaking ceremony on Wednesday, Punjab Minister Navjot Singh Sidhu said that history will remember Khan for bringing India and Pakistan together.
Summary:
Wipro Chairman Azim Premji on Wednesday received the highest French civilian honour, Chevalier de la Legion d'Honneur (Knight of the Legion of Honour) from French Ambassador to India Alexandre Ziegler.
Summary:
GSK is looking to sell its 72.5% stake in its listed Indian subsidiary GlaxoSmithKline Consumer Healthcare, known for malt-based drinks Horlicks and Boost.
Summary:
Paparazzi and fans reportedly started gathering outside the restaurant and crowding the area, complaints stated.
Summary:
Polling for the 40-member legislative assembly of Mizoram recorded 75% voter turnout till 5 pm on Wednesday.
The BJP, which has never won an assembly election in Mizoram, is contesting in 39 seats.
Summary:
The Chief Electoral Officer (CEO) of Madhya Pradesh has said 74.61% voter turnout was recorded till 6 pm in the state Assembly elections.
Summary:
Taking a jibe at the Congress, Prime Minister Narendra Modi on Wednesday said those who cannot differentiate between 'moong' and 'masoor' dal are talking about farmers.
Summary:
It then organises data about diagnosis, treatments, medical dosage and symptoms in a report for use by healthcare professionals and patients.
Summary:
LG Electronics has announced it is replacing the President of its mobile business Hwang Jeong-hwan after one year.
Summary:
Following the claims of a scientist of creating world's first genetically-edited babies, the co-inventor of the technology Jennifer Doudna has said that she was "horrified" and "disgusted" that it was used in such a way.
Summary:
It was previously believed that the volcanic eruption event took place as far back as 8,300 years ago.
Summary:
An international team of astronomers claims to have discovered a new dwarf galaxy located 130,000 light-years away from the Milky Way. Named Antlia 2 (Ant 2), the dwarf galaxy is a third the size of the Milky Way, the team said.
Summary:
Army Chief General Bipin Rawat on Wednesday said the Kartarpur corridor initiative should be seen in isolation and it should not be linked to "anybody else".
Summary:
At least seven died and around forty were hospitalised on Tuesday night in West Bengal after consuming hooch suspected to be laced with methanol, an official said.
Summary:
According to an earlier judgement, permission to export oil could be granted only after India becomes self-sufficient.
Summary:
The government is considering a proposal to combine two state-run power sector lenders, REC and Power Finance Corporation, according to reports.
Summary:
Dubai-based user Rohit Bharati on Tuesday pointed out that Hindi song 'Abhi Na Jao Chhod Kar' was beeped while using Saavn.
Summary:
Actress Rakhi Sawant on Wednesday said that she is getting married to social media personality Deepak Kalal in Los Angeles on December 31 this year.
Summary:
Hollywood actor Dwayne Johnson will attend Priyanka Chopra and Nick Jonas' wedding, which will be held in Jodhpur's Umaid Bhawan, as per reports.
Summary:
The show's host Karan Johar has reportedly invited them to shoot together for an episode in the second week of December, after Priyanka's wedding.
Summary:
Actress Preity Zinta has revealed she rejected the film 'Jab We Met', while adding, "There is a karmic connection between Kareena and me...She said no to 'Kal Ho Naa Ho' and I said no to 'Jab We Met'." "Both of them are iconic and career-defining films," she added.
Summary:
Fashion designer Sabyasachi Mukherjee has released videos that show the making of Ranveer Singh's Kanjeevaram sherwani and Deepika Padukone's lehenga from their Anand Karaj ceremony.
Summary:
"Feel really sorry for Mithali.
Mithali had claimed that coach Ramesh Powar humiliated her during the Women's World T20.
Summary:
South Africa players have paid from their own pockets to be a part of the men's hockey World Cup, which begins in India's Bhubaneswar today.
Our challenge is to get the funding in place," South Africa coach Mark Hopkins said.
Summary:
After Indian cricketer-turned-commentator Sanjay Manjrekar compared Ben Stokes to the chef who puts little garnish on top of the dish prepared by hardworking chefs, the England all-rounder said that "they don't care about personal credit".
Summary:
A priest in Rajasthan's Pushkar, who presided over the puja offered by Congress President Rahul Gandhi at Brahma temple, said, "(Rahul) Gandhi came and offered prayers at the ghat.
Summary:
The twin girls born were claimed to be HIV resistant.
Summary:
Remco Snoeij, a friend of 26-year-old US missionary John Allen Chau, who was allegedly killed by arrows by Andaman's Sentinelese tribe, said, "He (John) lost his mind, definitely." "But ask any adventurer...You have to lose your mind a little bit, otherwise you don't do it," Snoeij added.
Summary:
A 13-year-old girl collapsed on the stage during her dance performance and died instantly at an event organised by a local corporator in Mumbai on Tuesday.
Summary:
Pakistan PM Imran Khan on Wednesday said that former Indian cricketer and Punjab Minister Navjot Singh Sidhu can come and contest elections in Pakistan, adding he will emerge victorious.
Summary:
Speaking at the launch of the Kartarpur corridor event on Wednesday, Pakistan PM Imran Khan said that his government, party and the country's Army "are all on one page" to have a "civilised" relationship with India.
Summary:
She further called on the Senate to "support the desire of the Sentinelese people to protect their culture and way of life".
Summary:
A Syrian refugee who spent seven months living in a Malaysian airport has arrived in Canada, where he has been granted asylum.
Summary:
Actress Daisy Shah has been summoned by the Mumbai police to submit her statement in the sexual harassment case involving Nana Patekar and Tanushree Dutta.
Summary:
Google has rolled out a feature for Maps which allows users to share their real-time location with family or friends while travelling on the bus or train.
Summary:
YouTube on Tuesday announced that it will remove all existing pop-up annotations in videos starting January 15, 2019.
Summary:
"From...Raj Bhavan to...PM's office, the saffron party has put up its signboard at all important offices," she said at a public rally.
Summary:
Maharashtra Revenue Minister Chandrakant Patil on Tuesday claimed that Shiv Sena chief Uddhav Thackeray has assured support for the Maratha reservation Bill.
Summary:
Talking about his vision of what the future cities would look like, Uber CEO Dara Khosrowshahi has said that in 10 years, "Hopefully, you won't own a car".
Summary:
NASA Administrator Jim Bridenstine on Wednesday tweeted, "The US is returning to surface of the Moon, and weâÂÂre doing it sooner than you think!" The US space agency will announce partnerships with American companies for its Moon mission on Thursday.
Summary:
The paintings, found across European sites, are not simply depictions of wild animals, the study said.
Summary:
Ukrainian President Petro Poroshenko has warned of the threat of "full-scale war" with Russia amid the tensions between the two countries.
Summary:
UK-based private equity firm Actis has agreed to buy Essel Infra's solar power projects for â¹5,500-6,000 crore, according to reports.
Summary:
Indian Union Ministers Harsimrat Kaur Badal and Hardeep Singh Puri and Punjab Minister Navjot Singh Sidhu also attended the event.
Summary:
The couple, along with Nick's brother Joe Jonas and his fiancée Sophie Turner, were spotted dressed in Indian attire.
Summary:
Addressing people in poll-bound Telangana, AIMIM chief Asaduddin Owaisi said, "Amit Shah says Telangana CM K Chandrashekar Rao sends biryani to people of Majlis...If he's jealous...then I'll call KCR and ask him to send parcel of Kalyani Biryani (colloquial- beef biryani) to Shah." Owaisi further said, "If someone is eating, why is your stomach aching?
Summary:
Addressing a rally in Rajasthan on Tuesday UP CM Yogi Adityanath called Hindu God Hanuman a Dalit, adding that Indian community from "north to south and east to west", is united, "thanks to Lord Hanuman".
Summary:
"Australian cricket, I think, needs to stop worrying about being liked and start worrying about being respected," he added.
Summary:
Banned cricketer Sreesanth's wife Bhuvneshwari, in an open letter, questioned why her husband is being punished by BCCI despite being discharged from all the fixing charges in 2015.
Summary:
Banned Indian pacer Sreesanth's wife Bhuvneshwari has shared an open letter seeking BCCI's support saying "a false accusation can ruin person's life".
Summary:
Sreesanth's wife Bhuvneshwari, in an open letter, said her husband was accused of spot-fixing for taking â¹10 lakh to concede 14-plus runs in an over in Mohali in IPL 2013 but he "never gave 14 runs".
Summary:
Summary:
Chinese scientist He Jiankui at a Hong Kong conference on Wednesday apologised for the leak of his trial results which claimed birth of world's first genetically edited babies.
Summary:
While making observations in the 22-year-old appeals of the accused, the court said the convicts will have to complete their old sentence of five years.
Summary:
A drunk man whose car was stopped by traffic police at Delhi's Connaught Place on late Friday night snatched the alcometer from a policeman and sped away.
Summary:
Prime Minister Narendra Modi, his Japanese counterpart Shinzo Abe and US President Donald Trump will participate in a trilateral meeting on the sidelines of the G20 summit in Argentina later this week.
Summary:
Indonesian investigators have said the Lion Air jet that plunged into the sea in October was not in an airworthy condition on its second-to-last flight.
Summary:
Similarly, the interest rate on FDs with maturity period of two to three years has been hiked from 6.75% to 6.8%.
Summary:
Shares of Jet Airways rose as much as 9% on Wednesday following reports that Founder and Chairman Naresh Goyal has agreed to sell his controlling stake.
Summary:
Mizoram Chief Minister Lal Thanhawla has said that the Congress would retain power in the state by getting "full majority".
The Congress would get the votes of the Chakmas apart from the Mizos, the CM said.
Summary:
A former Facebook employee has accused the company of having a 'black people problem' in an internal memo.
Summary:
Audi, Airbus and Italdesign have unveiled an autonomous electric car concept called 'Pop.Up Next' which can also fly.
Summary:
The subsidy would be paid by imposing additional fees on non-electric vehicles, the draft added.
Summary:
Mumbai-based merchandise startup The Souled Store has raised $3 million in a round of funding led by venture capital fund RP-SG Ventures.
Summary:
China's transport authorities on Wednesday criticised the ride-hailing giant Didi Chuxing over riders' safety, saying, "The company's management of people and vehicles is out of control." The transport ministry also said it would fine Didi executives and legal representatives an undisclosed amount of money.
Summary:
Existing investor Omnivore will also participate in the round, Akbari said.
Summary:
Founded in 2015, CloudSEK uses AI and machine learning to focus on customised, intelligent security monitors and systems.
Summary:
The cause of the accident has not yet been ascertained.
"A Court of Inquiry will investigate the cause of the accident," IAF PRO, Anupam Banerjee said.
Summary:
CBI is already probing the Muzaffarpur shelter home case.
Summary:
The authorities have established Little's ties to about 30 of the murders so far.
Summary:
Huawei has launched technology-rich Mate 20 pro with an exclusive bundled offer in India.
Summary:
Voting for 230-member Madhya Pradesh Assembly and 40-member Mizoram Assembly began today.
Summary:
Marcus Elliott had forgotten to keep his phone in the dressing room, as his team had lost three wickets within five minutes.
Summary:
Windies' Gus Logie was adjudged Man of the Match despite him neither batting nor bowling in an ODI against Pakistan on November 28, 1986.
Summary:
The animator had revealed he had amyotrophic lateral sclerosis (ALS), also known as motor neurone disease (MND), in March 2017.
Summary:
Arjun Kapoor, while responding to trolls threatening his sister Anshula with rape, tweeted, "I hope your mom or sister never...go through what you've put us through." "Something I assumed was an absolute non-issue...has escalated into @anshulakapoor being abused," he added.
Summary:
After PM Narendra Modi claimed that Nizamabad was facing electricity and drinking water problems during his speech in poll-bound Telangana, CM K Chandrashekar Rao said, "Don't lie for the sake of votes.
Summary:
One Election Commission official in Guna and two others in Indore have died due to cardiac arrest while on duty at polling booths for Madhya Pradesh Assembly elections on Wednesday.
Summary:
After Indian women's cricket legend Mithali Raj's letter addressed to BCCI CEO Rahul Johri and GM (Cricket Operations) Saba Karim was leaked to the media, BCCI's Acting Secretary Amitabh Choudhary questioned how it was leaked.
Summary:
Chandramukhi Muvvala, the first transgender woman who is contesting for the upcoming Telangana Assembly elections, has gone missing.
Summary:
Defender Marc Bartra and a police officer were wounded in the attack.
Summary:
An artificial intelligence-based traffic camera system in China recognised the face of a woman CEO, Dong Mingzhu, on a bus advertisement and mistakenly charged her for crossing a road during a red light.
Summary:
Responding to an RTI query, the UIDAI has said that an Aadhaar card holder can lock his biometrics but may not opt out of it as suggested by the Supreme Court.
Summary:
After a video of Raebareli jail inmates drinking and making extortion calls surfaced online, Ex-Uttar Pradesh CM and Samajwadi Party President Akhilesh Yadav said, "'Ram Rajya' has come in UP jails." "[CM Yogi Adityanath] intends to bring such 'Ram Rajya'...in which all the facilities are available to inmates inside jails.
Summary:
Summary:
Eighteen-year-old Indian student Astha Sarmah's response to US President Donald Trump's tweet on climate change has gone viral.
Sarmah responded by saying "I am 54 years younger than you...
Summary:
External Affairs Minister Sushma Swaraj on Wednesday said that bilateral dialogue with Pakistan is not connected to only Kartarpur corridor.
Summary:
US missionary John Allen Chau had stripped down to his underpants in an attempt to blend with the Sentinelese tribe in Andaman, as per the fishermen who allegedly facilitated his trip.
Summary:
Pakistani terrorist Naveed Jatt, who was involved in the murder of journalist Shujaat Bukhari, has been shot dead by security forces in Jammu and Kashmir's Budgam.
Summary:
BSNL has suspended their employee and activist Rehana Fathima, who had attempted to enter the Sabarimala temple last month and was arrested on Tuesday for allegedly hurting religious sentiments though her Facebook post.
Summary:
Police suspect that the skeletons that were brought from Uttar Pradesh were meant to be smuggled to China via Bhutan.
Summary:
The black box data of the crashed Indonesian Lion Air flight has revealed the pilots tried to regain control of the plane after it nosedived over two dozen times during the 11-minute flight.
Summary:
Manchester United's Marouane Fellaini scored in the added time at the end of the match to help his side go past Young Boys.
Summary:
Collins found that a Facebook engineer had highlighted suspicious Russian activity on the platform in an internal email he reviewed.
Summary:
Earlier, Google CEO Sundar Pichai had said the project was an 'experiment'.
Summary:
Hospitality startup OYO has appointed Max Healthcare Executive Director Rohit Kapoor as the CEO of its new real estate business.
Summary:
The proceeds will be used to retire a part of Air India's debt.
Summary:
An American teenager recently matched with his own sister on dating app Tinder and their chat has gone viral on the internet.
Once they matched, the teenager messaged his sister, "WTF.
Summary:
The singer's daughter Sana Aziz said he was returning from Kolkata when he collapsed at the airport.
Summary:
Janhvi called Anshula but Arjun told Anshula not to say hello.
Summary:
During a Bigg Boss 12 episode, Sreesanth revealed he was once thrown out of the ground while he was coaching during Celebrity Cricket League because of his ban.
Summary:
Comedian Kapil Sharma has revealed his girlfriend Ginni Chatrath's family had initially rejected his marriage proposal for Ginni and added, "Inke papaji ne bade pyaar se bola, 'Shut up'." "Thereafter, I got busy with work, while she pursued MBA...I guess, she kept studying to avoid marriage proposals," he added.
Summary:
After Shilpa Shetty's husband Raj Kundra mocked Sreesanth by commenting 'Epic' with a laughing emoticon on a video showing Sreesanth crying on 'Bigg Boss 12' over his match-fixing scandal, his wife Bhuvneshwari has criticised him.
Summary:
It also promised to include the details of Gorakhnath in state school textbooks.
Summary:
A government hospital's doctor in Gujarat's Botad district was arrested after he performed a 22-year-old woman's delivery when he was drunk, resulting in the death of both the woman and her newborn child.
Summary:
Voevodina had converted to Islam and changed her name earlier this year, reports added.
Summary:
Moody's has downgraded Yes Bank's ratings to non-investment grade and changed outlook to negative citing corporate governance concerns.
Summary:
Taxi drivers employed by online cab-hailing service providers Ola and Uber in Hyderabad are promoting 'NOTA' as voting option for the upcoming Telangana Assembly elections.
Summary:
While addressing a rally, Prime Minister Narendra Modi on Tuesday accused the Telangana Rashtra Samithi (TRS) government of ruining the Telangana state.
Summary:
Rajasthan Congress chief Sachin Pilot on Tuesday criticised the BJP saying it is not the job of a political party or a government to make or break churches, temples and gurdwaras.
Summary:
Former South African footballer Mike Mangena has stated that he was unaware that his Johannesburg farm housed a drug laboratory that produced 'quaalude' pills, made popular by the film 'The Wolf of Wall Street'.
Summary:
IBM CEO Ginni Rometty at a recent event pointed to the irresponsible handling of personal data by a few dominant consumer-facing platform companies and pushed for regulation on transparency.
Summary:
Lawmakers from the UK and other nations have criticised Facebook CEO Mark Zuckerberg for not appearing to testify over data scandal by sharing a picture of an empty seat.
Summary:
Apple's stock fell about 1.6% in extended trading on Monday following Trump's comments.
Summary:
Huawei is reportedly working on a notchless smartphone with a circular front camera cutout in the top left corner of the screen.
Summary:
Former Jammu and Kashmir CM Mehbooba Mufti lauded Governor Satya Pal Malik for not taking "dictation" from the Centre.
Summary:
InSight landed on Mars after completing its 458-million-kilometre journey, and a 6.5-minute parachuted descent through the Red Planet's atmosphere.
Summary:
Tamil Nadu Police has banned officials below the rank of sub-inspector from using mobile phones while on an important duty.
Summary:
Located in southeastern Peru, the region attracts about a thousand tourists a day to Winikunka, which means the Mountain of Seven Colors in the local Quechua language.
Summary:
A court in Russia-annexed Crimea has ordered one of the 24 Ukrainian Navy sailors captured by Russia to be detained for two months, Russian state media reported.
Summary:
Jailed former Bangladeshi Prime Minister Khaleda Zia has been barred from contesting the upcoming general elections.
Summary:
Swaminathan, who worked at Lupin for nearly 12 years, will pursue other responsibilities outside the pharmaceutical industry, the company said.
Summary:
During the session, Patel didn't answer specific questions on demonetisation, bad loans and RBI's autonomy, reports added.
Summary:
A Zomato user, who was angry over the delay in food delivery, shared his chat with Zomato's customer support, which read, "Every relationship has its ups and downs." "How do I say the words 'I'm sorry' when I know that words aren't enough," the chat further read.
Summary:
Recalling his Test debut against Australia in Melbourne in 2014, KL Rahul revealed Melbourne Cricket Ground's field is so huge that he couldn't see the then captain MS Dhoni while standing at the boundary.
Summary:
In her letter to BCCI regarding her being dropped, Mithali Raj wrote that coach Ramesh Powar was "out to destroy and humiliate" her during Women's World T20.
Summary:
Google Maps also showed similar results on searching for the same.
Summary:
After Congress leader Vilas Muttemwar's 'while everyone knows Rahul Gandhi's father's name, nobody knows who PM Narendra Modi's father was' remark, Finance Minister Arun Jaitley shared a Facebook post titled 'What was the Name of Sardar Patel's Father'.
Summary:
A video has surfaced online, wherein a mob can be seen pulling a man out of a police van in Uttar Pradesh and beating him to death as policemen present there just watch.
Summary:
Pakistan will invite Prime Minister Narendra Modi for the South Asian Association for Regional Cooperation (SAARC) Summit, as per local media reports quoting Pakistan's Foreign Affairs Ministry.
Summary:
The officer said the videos were uploaded on social media by his nephew.
Summary:
China's second richest woman Wu Yajun, the Co-founder and Chairperson of real estate developer Longfor Properties, has transferred her 44% stake to daughter Cai Xinyi.
Summary:
Karan Johar, while talking about the stereotypes surrounding masculinity, said, "Many a time, I have been a son and a daughter; my mother chose whatever part she needs." "Masculinity or femininity is being comfortable in your own skin," Karan added.
Summary:
Actress Amanda Bynes, while talking about her experience with drug abuse, revealed that she started smoked marijuana when she was 16-years-old.
Summary:
Australia's former captain Michael Clarke paid tribute to his late teammate Phil Hughes on his fourth death anniversary with a post that was captioned, "I will see you again".
Summary:
BCCI has reiterated its directive which states that any cricketer found guilty of tampering his/her date of birth will face a two-year ban from participating in any BCCI tournament for a period of 2 years.
Summary:
Pakistani spinner Yasir Shah's figures of 14/184 are the second best bowling figures by a Pakistani bowler in Test cricket.
Summary:
Bollywood actor Shah Rukh Khan gave his '70 minute' monologue from his movie 'Chak De India' at the opening ceremony of the Hockey World Cup taking place in Bhubaneswar, Odisha on Tuesday.
Summary:
This is the highest kind of regard of respect that we can have as drivers," Hamilton said in a video.
Summary:
Punjab Minister Navjot Singh Sidhu on Tuesday said, "I have been a fan of Imran Khan since I was a child." Sidhu is in Pakistan for the groundbreaking ceremony of the Kartarpur corridor in Narowal.
Summary:
A WhatsApp admin has been arrested in Mumbai for allegedly adding a woman without her consent to a group where pornographic content was shared.
Summary:
Elon Musk in a recent interview said that his AI startup Neuralink is working on a technology to link human brains to machines which will be ready "probably" within 10 years.
Summary:
Great-granddaughter of Netaji Subhas Chandra Bose and Akhil Bharat Hindu Mahasabha (ABHM) leader, Rajashree Choudhury, on Monday, said that the ABHM will contest 2019 Lok Sabha elections independently.
Summary:
Finance Minister Arun Jaitley on Monday said Congress 'officially glamorised' Gandhis and "others did not matter" to them.
Summary:
University of Texas researchers have discovered over 20 new species of deep-sea microbes that consume hydrocarbons such as methane to survive and grow.
Summary:
Police have arrested three employees of a children's shelter home, including its director, for allegedly sexually abusing its female inmates in Tamil Nadu's Tiruvannamalai.
Summary:
At least 11 US service members have been killed in Afghanistan this year, according to reports.
Summary:
Juan Antonio Hernández, the brother of Honduran President Juan Orlando Hernández, has been arrested on drug trafficking and weapons charges in the US.
Summary:
Robbers stole computers from the Pakistan High Commission in Bangladesh following which Pakistan lodged a "strong protest" with the Bangladeshi authorities, Pakistan's Foreign Office said.
Summary:
The Punjab and Haryana High Court dismissed a petition by a 2009 batch BTech student of NIT Kurukshetra for a last attempt to clear 17 examinations.
in nine years, how can you clear 17 compartments in one attempt," the court said.
Summary:
Mithali Raj, who was dropped for Women's World T20 semi-final against England, has said that coach Ramesh Powar humiliated her and his behaviour towards her during the tournament was "unfair and discriminatory".
Summary:
The wedding will take place in Jalandhar and will be followed by an 'Akhand Path' at Ginni's house on December 30.
Summary:
Akshay further said he wasn't allowed to eat after putting on prosthetics because his body had to be intact, as the bodysuit was made according to his size.
Summary:
She further wrote that Powar humiliated her during the tournament.
Summary:
Talking about his experience with the crowd during his Test debut against Australia in Melbourne in 2014, KL Rahul said Australian crowds make Indian players' lives hard.
Summary:
Summary:
"Mealworms can be grown on food waste and they taste great," the startup's 28-year-old Founder Katharina Unger said.
Summary:
NASA's InSight landed on Mars after entering its atmosphere at 19,800 kmph in a process dubbed "seven minutes of terror".
Summary:
Activist Rehana Fathima, who attempted to enter the Sabarimala temple last month after the Supreme Court's verdict, was arrested on Tuesday for allegedly hurting religious sentiments through Facebook posts.
Summary:
A man from Haryana's Jhajjar was arrested for allegedly beating up two policemen with a baseball bat after crashing his Scorpio car into a barricade and an electricity pole in Pataudi.
Summary:
Riots broke out in Malaysia over the relocation of the Seafield Sri Maha Mariamman Devasthanam Hindu temple in the Subang Jaya township.
Summary:
The investment bank estimated surplus funds with the RBI at 0.5-1.6% of the country's GDP.
Summary:
Aamir Khan has said the film industry needs fresh writers with different perspectives.
Summary:
Shah Rukh Khan's wife Gauri Khan recently debuted on Fortune India's Most Powerful Women list.
Summary:
Priyanka also said that depression is more than just a low feeling.
Summary:
Madhya Pradesh Chief Electoral Officer VL Kantha Rao on Monday announced that around 65,000 polling booths will be set up in the poll-bound state, of which 2,000 will be operated by women.
Summary:
She added that 30,000 government jobs will be given every year.
Summary:
Virender Sehwag wished Suresh Raina on his 32nd birthday with a tweet that read, "Listening to "Raina Beeti Jaaye", Shaam na aaaaaye.
Summary:
Yasir's 14/184 is second only to Imran Khan's 14/116 as Pakistan's best Test match figures.
Summary:
After several users complained about old messages resurfacing on Facebook Messenger, the social media giant has said that it has fixed the bug.
The bug caused years-old conversations to appear in the Messenger tab on the platform like new unread chats.
Summary:
Google has closed a $1-billion deal to acquire a 51.8-acre property near its Mountain View, California headquarters.
Summary:
British and Dutch regulators on Tuesday fined ride-hailing startup Uber around $1.1 million for a 2016 data hack involving millions of users.
Summary:
The Department of Heavy Industry has proposed a subsidy of â¹13 crore to promote hybrid cars in the country.
Summary:
Bengaluru-based bike-sharing startup Bounce has acquired the India assets of Chinese bike rental startup Ofo. While the terms of the deal were not disclosed, some of the members of Ofo India's senior management team have joined Bounce as part of the agreement.
Summary:
The Border Security Force (BSF) on Monday seized an abandoned Pakistani boat near Sir Creek area off the Gujarat coast in the Arabian Sea, an official said.
Summary:
The Japanese authorities have launched a murder investigation after the bodies of six people, including five members of the same family, were discovered at a farmhouse in the Japanese town of Takachiho.
Summary:
Mithali Raj, who was dropped for Women's World T20 semi-final against England, has said few people in power are out to destroy and break her confidence.
Summary:
The ATSB said it would interview the pilot and review operating procedures.
Summary:
Filmmaker Karan Johar has revealed when he was 15, he went to a speech therapist to make him "sound like a boy" as his voice was "squeaky".
He added, "Everybody would say, 'You sound like a girl.' I heard that...
Summary:
"We're...sorry for not tagging the original designer for an inspirational post of the diamond and pearl earrings by Mikimoto Kokichi," the statement read.
Summary:
Recalling the verbal exchange with the then 18-year-old India wicketkeeper Parthiv Patel during his last Test, ex-Australia captain Steve Waugh said it was not a sledge but a banter.
Summary:
Dhoni is currently on a break after not being selected for the recently concluded Australia-India T20I series.
Summary:
Microsoft on Monday briefly overtook Apple as the world's most valuable company for the first time in over eight years.
Summary:
Summary:
Tesla, SpaceX and Boring Company Founder Elon Musk on Tuesday invited people to join his various startups and said one can change the world by working 80 hours a week.
Summary:
A leopard cub has been rescued by the Forest Department on Tuesday after it was found hiding under a parked car near District Courts Complex in Himachal Pradesh's Shimla.
Summary:
The government has refused to approve RCom's spectrum sale to Jio unless it's given â¹2,940 crore in bank guarantees from either company.
Summary:
Sunny Deol has revealed as a child he had problems with reading and writing and added, "my IQ and reflex was very good." "Though in the class I wasn't a great student, I used to score pass marks.
Summary:
During a rally in Tupelo, Elvis Presley's birthplace, US President Donald Trump said, "When I was growing up [people] said I looked like Elvis...I always considered that a great compliment." "I shouldn't say this, you'll say I'm very [proud of myself]," he added.
Summary:
Australia's former captain Steve Smith, who is serving a year-long suspension from international cricket, met the national team coach Justin Langer for breakfast.
Summary:
Australia's former captain Steve Smith, who has been suspended from international cricket, got knocked down while playing a pull shot when he faced Australian pacers during a net session ahead of the India-Australia Test series.
Summary:
England captain Joe Root played an unplugged guitar while celebrating his side's 3-0 Test series win against Sri Lanka.
Summary:
The block affects less than 1% of cases where Smart Compose would propose something, Gmail product manager Paul Lambert said.
Summary:
Users would be able to add up to five hashtags per review, the report added.
Summary:
Facebook has denied reports claiming the election 'war room' has been disbanded within two months of its launch.
Summary:
Abdullah also accused PM Narendra Modi of not maintaining the dignity of Prime Minister's Office.
Summary:
BJP MP Manoj Tiwari on Tuesday said he would bring a Private Member Bill in Parliament for the construction of the Ram temple in Ayodhya.
Summary:
"The party's motto and leader made me choose BJP which not only assures development but ensures speed in development," Sarangi said.
Summary:
Bengaluru-based healthcare startup Niramai has reportedly raised about $6-7 million from Flipkart Co-founder and ex-Group CEO Binny Bansal, alongside existing investors Pi Ventures, Axilor and Ankur Capital.
Summary:
The company also plans to double the resources for electric vehicle programs in the next two years.
Summary:
It comes after a scientist in China claimed he altered the genes of twin girls born this month to create world's first gene-edited babies.
Summary:
The Human Rights Watch has called on Argentina to investigate Saudi Crown Prince Mohammed bin Salman for possible war crimes in Yemen and murder of journalist Jamal Khashoggi.
Summary:
The last date to register for SNAP Test 2018 has been extended till 28th November.
Summary:
Arora joined WhatsApp in 2011 from Google and was rumoured to be WhatsApp's next CEO after Co-founder Jan Koum's departure in April.
Summary:
Summary:
Union Minister Babul Supriyo took to Twitter on Tuesday to share that he took his pet dog "Puggie Eddie" on Rajdhani Express "hoping that the Vodafone network would follow him through the journey".
Summary:
Former tennis player Mahesh Bhupathi has revealed when his wife Lara Dutta was working with Sajid Khan in 'Housefull', she'd come home and complain about Sajid's "rude, vulgar" behaviour towards a co-star.
Summary:
Summary:
A man has been arrested after a live bullet was seized from him during checking when he went to visit Delhi CM Arvind Kejriwal on Monday.
Summary:
The $993-million mission will measure the Mars' internal heat and study quakes.
Summary:
Punjab Chief Minister Captain Amarinder Singh, while criticising Pakistan Army Chief Qamar Javed Bajwa over the terror attacks in India that emanated from Pakistani-backing, said, "We've a large army and we are prepared." "This shouldn't happen as nobody wants war.
Summary:
Two Muslim sisters and their Sikh brother, who were separated during the 1947 Partition, met for the first time in 71 years at Gurdwara Janam Asthan, Pakistan, on Sunday.
Summary:
The Supreme Court has criticised Bihar government for not taking proper action against all shelter homes where children were allegedly sexually abused, and accused the state for going soft on the perpetrators.
Summary:
This comes after Russia, which annexed Crimea from Ukraine in 2014, seized three Ukrainian naval ships and took their crew prisoner.
Summary:
China's richest man Jack Ma is a Communist Party member, the party's newspaper revealed on Monday, debunking a public assumption the billionaire was politically unattached.
Summary:
Summary:
Mrs Scotland World 2018 winner Natalie Paweleck was forced to give up her title within 36 hours of winning after she was disqualified for not disclosing her previous modelling work.
Summary:
Director Abhishek Kapoor, while talking about choosing Sushant Singh Rajput as the lead actor in his upcoming film 'Kedarnath', said, "He suited the role perfectly.
Summary:
Aamir Khan, who was earlier part of the biopic on astronaut Rakesh Sharma, said he feels sad about not being able to do the film.
Summary:
Actor John Abraham will portray late Indian footballer Shibdas Bhaduri in a film based on a football match set in the pre-independence era.
Summary:
The pre-wedding festivities including sangeet and mehendi ceremonies will begin on November 29 at Umaid Bhawan Palace in Jodhpur, as per reports.
Summary:
Akshay Kumar, who went through an elaborate prosthetic makeup process for his character in the upcoming film '2.0', said, "The whole process of prosthetics made me a much calmer and patient person." "For almost three and a half hours, I sat down quietly and did nothing.
Summary:
The venue of Priyanka Chopra and Nick Jonas' sangeet ceremony has been shifted from Mehrangarh Fort to Umaid Bhawan Palace, as per reports.
Summary:
US Securities and Exchange Commission (SEC) Chairman Jay Clayton on Monday said that SEC would not revisit Tesla's securities fraud settlement, where Tesla and CEO Elon Musk were fined $20 million each.
Summary:
Police officials recovered a suicide note where the man mentioned that there were some relationship issues between the two.
Summary:
The police also seized 54 cars and 59 bikes, as per reports.
Summary:
While the tanker driver was killed, the driver of the other vehicle sustained injuries.
Summary:
The parliament will vote on the deal on December 11.
Summary:
"Right now we're at the cleanest we've ever been and that's very important," he further said.
Summary:
Actor Aamir Khan has taken the full responsibility for the failure of 'Thugs of Hindostan' and apologised to the fans that he couldn't entertain them in the way they wanted.
Summary:
Actress Janhvi Kapoor, who recently appeared on talk show 'Koffee With Karan', said that she's more likely to look for dating prospects on Zomato.
Summary:
Boxer Mary Kom, who recently became the first woman boxer to win six world championship titles, said that she doesn't want to get hit anymore.
"I like to win bouts without getting struck and this is what I largely managed to do this time.
Summary:
"Well played @babarazam258 - loved how the boys went congratulating Mickey Arthur celebrating his "son's" century #PakvNZ," Zainab had tweeted.
Summary:
Summary:
A 21-year-old Indian student was found hanging from a tree outside his home in Canada's Toronto, police said on Sunday.
Summary:
Speaking after an event marking late Amul Founder Dr Verghese Kurien's birth anniversary on Monday, his daughter Nirmala Kurien rubbished claims that her father diverted Amul's profit to fund religious conversions in the country.
Summary:
A video of inmates drinking and making an extortion call inside a jail in Uttar PradeshâÂÂs Raebareli is being widely shared on social media.
Summary:
A 1980 batch IAS officer of the Rajasthan cadre, Arora was appointed to the election body in September last year.
Summary:
Kalinga Sena, a local outfit which had threatened to throw ink at actor Shah Rukh Khan during his Odisha visit for the Men's Hockey World Cup inaugural ceremony, announced its decision to withdraw its agitation.
Summary:
Sharad Singh Kumar, contesting on the election symbol of a shoe, said he will make use of his unique election symbol to "turn it into a blessing".
Summary:
Addressing a rally at Chhindwara, Madhya Pradesh, Congress leader Kamal Nath on Sunday said, âÂÂI wish to know if [Narendra] Modiji can name a single freedom fighter from his party.â He further said that it was Congress that fought the British.
Summary:
Talking about the 'unfortunate' exclusion of Indian batsman Mayank Agarwal from the Indian Test team for Australia, Gautam Gambhir urged the Indian cricket team selectors to stop playing 'musical chair with players'.
Summary:
Pique was stopped by the municipal police in Barcelona as part of a routine check and was found to be driving without any points on his licence.
Summary:
After reports claimed that Hulk Hogan will make a WWE comeback aged 65, his son Nick Hogan said that he doesn't think Hulk Hogan will ever quit professional wrestling.
It runs too deep in his blood, I don't think he'll ever quit," Nick said.
Summary:
On the 10th anniversary of 26/11 Mumbai attacks, Sachin Tendulkar took to Instagram to share a picture of Mumbai's Taj Mahal Palace hotel and wrote, "Life sirf lambi nahi, badi bhi honi chahiye." "This stands true for all the brave people who protected and served during...#MumbaiTerrorAttack.
Summary:
BeiDou, which is currently operational in China and neighbouring regions, will be globally available by 2020.
Summary:
Researchers at MIT and the European Space Agency have developed a smart toilet called 'FitLoo' which screens human waste like urine to detect diseases like cancer and diabetes.
Summary:
Addressing a rally in poll-bound Rajasthan's Makrana, Uttar Pradesh CM Yogi Adityanath on Monday said, "The terrorists which were fed biryani by Congress are now being fed bullets by us." "Congress has done divisive politics.
Summary:
However, a CPI(M)-appointed committee stated Sasi had not sexually assaulted the complainant and has been suspended for conversing inappropriately with her.
Summary:
Mumbai-based health-tech startup DocTalkâÂÂs Co-founder and CEO Akshat Goenka resigned in August after it changed its business model and fired nearly 100 employees in 2018.
for the team to restructure,â Goenka said.
Summary:
A new UN study on Sunday said more than half the women who were murdered worldwide last year were killed by their partners or family members, making home "the most dangerous place for women".
Summary:
Union Minister Uma Bharti on Monday said the BJP does not have a patent on the Ram temple and Lord Ram belongs to everyone.
to come forward and support the construction of the temple," she added.
Summary:
The Supreme Court on Monday pulled up the Karnataka government for "doing nothing and just fooling around" in the investigation of killing of noted scholar and rationalist MM Kalburgi in 2015 at Dharwad.
Summary:
Kolkata has suffered worst air quality across the country in the month of November.
The average daily reading in PM 2.5 Air Quality Index of Kolkata has been higher than 300 this month.
Summary:
The Japanese drugmaker specializes in dermatology products and Sun Pharma aims to strengthen its global presence in dermatology sector with this acquisition.
Summary:
America's Brianna Cry reunited with her childhood friend Heidi Tran after 12 years through Twitter.
Summary:
American reality television personality Kim Kardashian has revealed she was high on ecstasy when she had her first wedding in 2000 and made her 2003 sex tape featuring her then-boyfriend Ray J.
I did it again, I made a sex tape," she said.
Summary:
"Hardik and I don't talk much about cricket.
He was joking and laughing that I went for so many runs.
Summary:
"I'd like to see the third umpire call [no-balls]," England vice-captain Jos Buttler said.
Summary:
Recalling the then Pakistan President Pervez Musharraf's admiration of ex-India captain MS Dhoni during India's 2006 tour of Pakistan, ex-captain Sourav Ganguly said, "I still remember Pervez Musharraf asking me from 'where did you get him?'" "I told him he was walking near the Wagah border and we pulled him in," Ganguly joked.
Summary:
Shah is also the first Pakistani bowler to achieve the feat.
Summary:
The Ministry of Human Resource Development has instructed all states and Union Territories to create guidelines to regulate teaching, wherein it has asked them to follow a 'no homework policy' for class 1 and 2 students.
Summary:
Mohammed Farooq Shaikh, an accused in the 2002 Akshardham temple attack, was arrested by the Ahmedabad Crime Branch from Ahmedabad Airport on Monday.
Summary:
Kasab claimed he was outside Bachchan's bungalow when agents of the Research and Analysis Wing detained him and tore his visa and passport.
Summary:
The Centre has given sanction to the CBI to prosecute veteran Congress leader and former Finance Minister P Chidambaram in the â¹3,500-crore Aircel-Maxis case.
Summary:
Indian opener Shikhar Dhawan lifted a boy on-stage after he was called up to accept the Player of the Series trophy after the third India-Australia T20I on Sunday.
Summary:
Hollywood actor Will Smith posted a video in which Formula One champion Lewis Hamilton is seen tied to a chair while Smith, dressed in the Mercedes driving attire similar to Hamilton's, is seen getting ready to race.
Summary:
Members of the English cricket team paid tribute to Peter Marples, a member of the England cricket team's travelling fan group 'Barmy Army' who passed away in Sri Lanka during the third Test.
Summary:
Mercedes' Lewis Hamilton, Ferrari's Sebastian Vettel and McLaren's Fernando Alonso, who share 11 F1 titles between them, performed the 'synchronised doughnut' celebration after the season-ending Abu Dhabi Grand Prix on Sunday.
Summary:
Facebook disbanded its 'war room' within two months of launch in favour of a strategic response team, a company spokesperson has said.
Summary:
Businesses that operate and pay taxes in the state will be eligible to register on the portal.
Summary:
The government has reportedly proposed up to seven years in jail without bail for people who share child pornography on chat apps like WhatsApp. The proposed rules also make it mandatory for anyone who gets a child porn video to report it to the authorities.
Summary:
The Ministry of Civil Aviation has said it is reviewing private carriers IndiGo and SpiceJet's decision to levy a fee on web check-ins.
This comes in response to passengers' complaints after IndiGo had said it has revised its policies, making all seats selected online chargeable.
Summary:
"(Passengers) can reserve any free seat available at the time of web check-in or will...
be assigned seats at the time of airport check-in," it said.
Summary:
"The people of Delhi are proud of their honest chief minister," he said.
Summary:
Online classifieds platform OLX India on Monday announced the offline expansion of its used-car business in a joint venture with GermanyâÂÂs Frontier Car Group (FCG).
Summary:
The Chinese hospital which allegedly approved the experiment to create world's first gene-edited babies has denied any links to the same.
Summary:
The probe has been travelling through space for over six months.
Summary:
They will first deploy sonar buoys to identify the location of the whales and use drones to collect the orange plumes.
Summary:
Three children, aged 2-10 years, were killed in Anjaw district of Arunachal Pradesh on Saturday when a live bomb they assumed was a toy exploded accidentally.
Summary:
The statue has been installed above a 16-metre radius pedestal in the middle of the lake Ghora Katora.
Ghora Katora lake is a historical place, he added.
Summary:
Punjab Chief Minister Captain Amarinder Singh on Monday said Pakistan is spreading terror in the country.
Warning the Pakistan Army chief he said, "you will not be allowed to enter here (Punjab) and vitiate the atmosphere".
Summary:
Celebrating its 4 year partnership with Amazon, OnePlus has announced various offers on the OnePlus 6T.
Summary:
Chinese scientist He Jiankui has claimed he created the world's first genetically-edited babies, a set of twin girls born this month, whose DNA he said he altered.
Summary:
Sreesanth, in an episode of Bigg Boss 12, revealed he tried to kill himself six-seven times after being banned from cricket over his involvement in spot-fixing.
Summary:
Filmmaker Karan Johar has said it is a "lame, masculine and stupid thing" to say "there's no proof" when women share their #MeToo stories.
Summary:
As many as six New Zealand batsmen were bowled out for ducks, the joint-most ducks in an innings in Test history.
Summary:
Mitsubishi Motors on Monday said its board removed Carlos Ghosn from his role as Chairman, following his arrest and ouster from alliance partner Nissan last week for alleged financial misconduct.
Summary:
On the 10th anniversary of 26/11 Mumbai attacks, Meghalaya Governor Tathagata Roy on Monday said many people, "except Muslims", were killed during the terror attacks.
"I was misinformed of the Paki-sponsored killers...having spared Muslims...Several Muslims were killed.
Summary:
The HRD Ministry instructed all states and Union Territories the maximum weight of school bags for Class 1 and 2 students can't exceed 1.5 kg.
Summary:
Punjab minister Sukhjinder Singh Randhawa on Sunday pasted a black tape on his name, along with names of CM Captain Amarinder Singh and his colleagues, on the foundation stone that was to be laid for Kartarpur corridor.
Summary:
We promised his mother that we will not kill him and despite him firing at us, we...apprehended him alive," Colonel Samar Raghav said.
Summary:
But in the night he wants all lights on.
He can't sleep even in a dim light," she added.
Summary:
"Will never forget 26/11.
Everyone who helped each other through the tough time." "We lost 100s of humans...Please don't forget...or forgive," tweeted Koena Mitra.
Summary:
Actor Varun Dhawan has revealed that he went for the auditions of Kiran Rao's 2011 film 'Dhobi Ghat' but "didn't get the part".
Summary:
After his match-winning figures of 4/36 in the third India-Australia T20I, Indian all-rounder, Krunal Pandya said that it took a while to back himself after registering figures of 0/55 in the first T20I.
Summary:
While addressing a rally in Rajasthan's Bhilwara, Prime Minister Narendra Modi on Monday asked the public at the rally if they ever saw him take a holiday.
Summary:
Australia's former captain Ian Chappell said the Australian team's efforts to temper their on-field behaviour might lead to a reduction in verbal sledging but will not result in a reduction in short-pitched deliveries.
Summary:
BJP President Amit Shah on Monday claimed that Congress leaders are ashamed of saying "Bharat Mata Ki Jai".
Summary:
Indian spinner Kuldeep Yadav jumped 20 places to reach the third spot in the ICC T20I bowler rankings after his performances in the recently-concluded T20I series against Australia.
Summary:
The International Cricket Council has pitched for the inclusion of Women's T20I cricket as an event at the Commonwealth Games 2022, set to be held in England's Birmingham.
Summary:
Mercedes' British driver Lewis Hamilton, who had claimed his fifth world championship in October, won the season-ending Abu Dhabi Grand Prix on Sunday.
Summary:
Following the appointment of Sumer Juneja as its India head, SoftBank is planning to make investments in the country's foodtech space.
Summary:
US and Mumbai-based smart wearable startup GOQii has raised $30-35 million funding led by Japan's Mitsui & Co. New investors Galaxy Digital and Denlow Investment Trust also participated in the round along with existing investors including Paytm's Vijay Shekhar Sharma and Tata Group chairman emeritus Ratan Tata.
Summary:
According to the researchers, the Orbiter's imaging spectrometer can be confused by some high-contrast areas, and produce false signs of perchlorates that hintn at salt water flows.
Summary:
BJP MP Subramanian Swamy on Monday said people from Pakistan shouldn't be allowed on Kartarpur corridor that will link Punjab's Gurdaspur to Gurdwara Darbar Sahib Kartarpur.
Summary:
Police on Monday said eight Naxals and two police personnel were killed in an encounter between ultras and security men in Chhattisgarh's Sukma district.
Summary:
North Korean leader Kim Jong-un had sent two Pungsan dogs to South Korea following the September summit.
Summary:
Earlier, an explosion hit a mosque inside an army base in eastern Khost province, killing at least 26 soldiers.
Summary:
CARS24 has enabled car owners to sell their cars in less than 2 hours with instant payment in their account.
Summary:
On the 10th anniversary of 26/11 Mumbai attacks on Monday, the US announced a reward of up to $5 million for information leading to the arrest or conviction of any individual involved in the attacks.
Summary:
Arjun Kapoor has revealed he once broke up with his girlfriend on Ranbir Kapoor's advice.
He looked into the darkness and said, 'If you're not happy, just let go'," Arjun added.
Summary:
"We've recently made a number of breakthroughs that I'm just really fired up about," said Musk.
Summary:
Staff at Mumbai's Cama and Albless Hospital have revealed that they used a fridge, an X-ray machine, medicine trolleys and chairs to lock the door on the second floor during the 26/11 attacks to restrict the entry of the terrorists.
Summary:
A passenger, travelling on a Kolkata-Mumbai Jet Airways flight, was arrested for uploading a picture with his face covered from inside the aircraft with the caption, "Terrorist on flight, I destroy women's hearts".
Summary:
Summary:
Vice President Venkaiah Naidu on Monday laid the foundation stone for the Indian side of Kartarpur corridor which will provide easy access to Gurdwara Darbar Sahib in Pakistan, in the presence of Punjab CM Captain Amarinder Singh and Union Minister Nitin Gadkari.
Summary:
Following his release, Pawan Kumar Singh found his wife was having an illicit relationship with a man who was once his co-prisoner.
Summary:
British academic Matthew Hedges, who was sentenced to life for spying in the UAE, has been pardoned with immediate effect.
Summary:
The DOC added it decided to euthanise rest of the whales due to their poor condition and the remote location.
Summary:
The Chairman of InterGlobe Aviation, which operates the country's largest airline IndiGo, Devadas Mallya Mangalore passed away on Sunday.
Summary:
The film is expected to be a modern family drama and is to be directed by Renuka Shahane," stated reports.
This film will reportedly mark Renuka's directorial debut in Bollywood.
Summary:
The pre-wedding festivities including sangeet and mehendi ceremonies will reportedly begin on November 29.
Summary:
Akshay Kumar will be reportedly starring in Rohit Shetty's next film.
Summary:
Katrina Kaif will attend Deepika Padukone and Ranveer Singh's wedding reception in Mumbai on December 1, as per reports.
While Deepika didn't send a text to Katrina, Ranveer ensured that he did," stated reports.
Summary:
Filmmaker Karan Johar, while talking about the South Indian film industry, has said, "They have taught us and made us feel inferior in a good way." "The great moves of many of the filmmakers in the south have encouraged that movement even in Hindi cinema," he added.
Summary:
Rajasthan Congress has expelled 28 leaders for contesting as Independents against the official candidates from the party in the upcoming Assembly elections.
Summary:
He also claimed Google withdrew his new contract after he complained about the harassment.
Summary:
A separatist leader said they were "surprised" as this was their first meeting with a foreign dignitary in years.
Summary:
Prime Minister Narendra Modi on Monday criticised the Congress for demanding a video proof of the surgical strike conducted by Army.
Summary:
Addressing Vishva Hindu Parishad's 'Hunkar Rally' in Nagpur, RSS chief Mohan Bhagwat on Sunday called for building the Ram Mandir at the disputed site in Ayodhya, saying, "Justice delayed is justice denied." "It has also been proved that the temple was there.
Summary:
At least five people were detained and Section 144 imposed after violent clashes took place between student groups at Odisha's Kalinga Institute of Industrial Technology.
Summary:
"A grateful nation bows to our brave police and security forces who valiantly fought the terrorists," he added.
Summary:
A Swedish school has added #MeToo movement to its curriculum, requiring all 15-year-olds to take a two-hour lesson on the global campaign against sexual harassment.
Summary:
UpGrad and IIIT-Bangalore's PG Program in Data Science program have launched a track with placement assurance that guarantees a job in the field of Data within 6 months of graduation to 100 shortlisted candidates.
Summary:
Actor Vishal, who is also the President of Tamil Nadu Film Producers Council, has adopted the entire village of KaarkavaiyaI in Tamil Nadu's Thanjavur district, which is heavily hit by cyclone Gaja.
Summary:
Hrithik Roshan has dedicated an Instagram post to his ex-wife Sussanne Khan and wrote, "In a world separated by lines and ideas, it's still possible to be united...You can want different things as people and yet stay undivided." "Here's to a more united, tolerant, brave, open and loving world," he added.
Summary:
Farhan Akhtar has said he felt guilty for not being aware of the behaviour of his cousin Sajid Khan, who has been accused of sexual harassment by several women.
Summary:
Nothing went wrong with me," said Varun.
He added, "The doctor said, 'If you'll stay in an intense environment for a long time, it will happen.'"
Summary:
Varun Dhawan has said there was a time when he was leaning towards 'gritty' cinema and would have probably "given his right hand" to be launched by filmmaker Anurag Kashyap.
Summary:
Reacting to Mithali Raj not featuring in India's playing XI in Women's World T20 semi-final against England, ex-Indian women's cricket team coach Tushar Arothe said that "something is definitely fishy".
Summary:
Both Kohli and Rohit have hit 50-plus scores 19 times in T20I cricket.
Summary:
German driver Nico Hülkenberg suffered a crash on the first lap after colliding with Romain Grosjean at the Abu Dhabi GP on Sunday, which resulted in his car flipping over and catching fire.
Summary:
Reacting to Mithali Raj being dropped for Women's World T20 semi-final, ex-India captain Sourav Ganguly said he was also dropped at his peak.
"When I saw Mithali...being dropped...I said 'Welcome to the group'," he added.
Summary:
Commenting on ex-captain MS Dhoni, who was recently dropped from the T20I squad to give youngsters a chance, ex-captain Sourav Ganguly said that just like everyone else he has to perform.
Summary:
Devika Natwarlal Rotawan, who was 9 years old when the 26/11 Mumbai attacks took place, has revealed that she was called "Kasab ki beti" by her classmates after she testified in court and identified the Lashkar-e-Taiba terrorist.
Summary:
The Nariman House, one of the targets of 26/11 Mumbai attacks, has been renamed as Nariman Light House and will be turned into a memorial for victims killed in the attacks ten years ago.
Summary:
A man waiting for a bus in Kolkata was killed on Sunday after being hit by a car driven by Aditi Agarwal, a woman fashion designer, who was drunk at the time.
Summary:
Sri Lanka President Maithripala Sirisena on Sunday said that he will not reappoint sacked PM Ranil Wickremesinghe in his lifetime even if Wickremesinghe proves majority in parliament.
Summary:
Aamir Khan and Kiran Rao, who hosted an Asterix themed party for their son Azad Rao Khan, were seen dressed as the cartoon characters Obelix and Getafix, respectively.
Summary:
After leading India to a victory in the third T20I against Australia on Sunday, captain Virat Kohli shared a selfie with spinner Kuldeep Yadav on Twitter.
In the post, Kohli praised Kuldeep, writing, "Great to see this guy and everyone else stepping up together.
Summary:
BaliâÂÂs Ayana Resort and Spa has banned all electronic gadgets, including smartphones, cameras and tablets, near one of its swimming pools.
Summary:
IndiaâÂÂs largest airline IndiGo will now charge for web check-in of all seats.
Summary:
Further, the draft policy is expected to look into the issue of deep discounting on e-commerce platforms like Flipkart and Amazon.
Summary:
Summary:
Bhim Army chief Chandrashekhar Azad on Sunday claimed that Ayodhya should have a temple of Lord Buddha instead of Lord Ram.
Summary:
Mother of the Indian pilot who captained the Indonesian Lion Air plane that crashed into the sea said she has found "closure" after his body was identified by the Indonesian authorities.
Summary:
A forest department official on Sunday said two lion cubs were found dead in different parts of Gir forest in Gujarat's Amreli district.
Summary:
At least nine people died and 25 were injured after a private bus fell into a gorge in Himachal PradeshâÂÂs Sirmaur on Sunday.
Summary:
Sameer is the second Indian male shuttler after Kashyap Parupalli to win the tournament twice.
Summary:
World number nine Saina Nehwal bagged silver at Syed Modi International Badminton Championships 2018 on Sunday after losing to world number 27 Han Yue. The 19-year-old Chinese shuttler defeated the 28-year-old Indian 18-21, 8-21 in 34 minutes.
Summary:
UK's 34-year-old Amanda Liberty, who is engaged to a 91-year-old chandelier, said, "As soon as I saw it on eBay...I knew...she was the one...it was love at first sight." Amanda identifies herself as 'Objectum Sexual', which means that she's attracted to objects.
Summary:
Ranveer Singh, while talking about his wife Deepika Padukone's outfit at their wedding party, said, "She has obliged me by wearing this." The actress was seen dressed in an ensemble by designer Sabyasachi Mukherjee.
Summary:
Actor Ranbir Kapoor's sister Riddhima Kapoor Sahni, who runs her own line of jewellery, has been accused of copying the design of a set of earrings from a popular jewellery brand 'Mikimoto'.
Summary:
"Currently, the interiors...are being done and both Malaika and Arjun are looking into the details," the reports added.
Summary:
S Shankar, director of upcoming film '2.0', has revealed that before Akshay Kumar, he had approached Hollywood actor Arnold Schwarzenegger for the role of the villain.
Summary:
After Mary Kom became the first female boxer to win six world championship titles, Amitabh Bachchan took to Twitter to share a picture of boxing gloves gifted to him by Kom.
"I ever value your boxing gloves that you gifted me!
Summary:
A security guard caught a six hit by Virat Kohli on the other side of the deep midwicket boundary during the third Australia-India T20I at Sydney Cricket Ground on Sunday.
Summary:
A police boat seeking to recover American missionary John Allen Chau's body returned from 400 metres off North Sentinel Island's coast after spotting Andaman tribals armed with bows and arrows through binoculars on Saturday.
Summary:
The Brazil-born tycoon said that he did not intend to understate his income.
Summary:
Prime Minister Narendra Modi, while addressing a rally in poll-bound Rajasthan, said the Congress had asked the Supreme Court to delay the Ayodhya case hearing because of 2019 polls.
He further said that Congress is a confused party.
Summary:
Union Minister Uma Bharti on Sunday said Chief Minister Shivraj Singh Chouhan is BJP's "USP" (Unique Selling Point) in the Madhya Pradesh Assembly elections to be held on November 28.
She said, people of the state are with BJP and it will win the elections.
Summary:
Left-handed batsman Rishabh Pant became the first India wicketkeeper to be dismissed for a golden duck in the T20I format after getting dismissed off his very first delivery in the third T20I against Australia on Sunday.
Summary:
Kohli, whose innings helped India win the final T20I, has now scored 488 runs against Australia in the T20I format.
Summary:
BJP chief Amit Shah on Sunday said BJP will not allow Telangana government to implement 12% reservation for minorities.
Summary:
The Supreme Court-appointed Committee of Administrators (CoA) is reportedly set to meet Mithali Raj and current T20I captain Harmanpreet Kaur after the controversy regarding the former captain's exclusion from the Women's World T20 semifinal squad.
Summary:
The Indian men's doubles team of Satwiksairaj Rankireddy and Chirag Shetty and the women's doubles team of Ashwini Ponnappa and N Sikki Reddy lost out in their respective finals at the Syed Modi International Badminton Championships.
Summary:
Summary:
Summary:
Russian space agency Roscosmos chief Dmitry Rogozin has said that Russia will launch a mission to verify if the US landed on the Moon.
Summary:
European Space Agency astronaut and current International Space Station (ISS) resident Alexander Gerst has shared a time-lapse video of a rocket launch as seen from space.
Summary:
The All India Muslim Majlis-e-Mushawarat (AIMMM) on Sunday wrote to President Ram Nath Kovind seeking his intervention in the Ayodhya situation where thousands of Hindu activists and leaders have gathered for a 'Dharma Sabha'.
Summary:
As many as 21 people were injured after a Delhi-bound tourist bus fell into a gorge on the Solan-Shimla border in Himachal Pradesh on Sunday.
Summary:
BSP chief Mayawati on Saturday attacked BJP for raking up the Ram Temple issue saying that they do it "to divert attention from their failures." "Had their intentions been good, they needn't have waited for four years," she further said.
Summary:
The Enforcement Directorate (ED) and Income Tax Department raided the residence and offices of Telugu Desam Party (TDP) MP YS Chowdary, and seized documents revealing â¹5,700-crore bank loan frauds by his group of companies.
Summary:
Attacking PM Narendra Modi, Congress President Rahul Gandhi on Saturday tweeted, "Theft committed by our chowkidar [in Rafale deal] has now put the French government in trouble." "Even the French public is demanding an investigation," he added.
Summary:
India defeated Australia by 6 wickets in the final T20I in Sydney on Sunday to level the three-match series 1-1.
Summary:
The Karnataka government has declared a three-day mourning period for actor and former union minister MH Ambareesh, who passed away aged 66 on Saturday due to a heart attack.
Summary:
Meanwhile, Mitchell Starc had won player of the tournament in 2015 men's World Cup for taking 22 wickets.
Summary:
In an apparent reference to UPA chief Sonia Gandhi's Italian origins, Uttar Pradesh CM Yogi Adityanath said the Congress brought mafia as dowry from Italy.
Summary:
Makkal Needhi Maiam chief Kamal Haasan on Sunday slammed the Tamil Nadu government, saying the rehabilitation after cyclone Gaja will take 4-5 years but the relief work has been bad and slow.
Summary:
The accused filmed the incident and threatened the woman of circulating the video and continued raping her.
Summary:
The UK's withdrawal agreement from the European Union (EU) has been approved by the bloc's 27 heads of state, the President of the European Council Donald Tusk announced on Sunday.
Summary:
Panasonic India is set to increase the prices of its products by up to 7%.
Summary:
The team said they will show me the film once it is ready." "I respect the fact that the makers in Tamil want to have their own interpretation of it [the film]," added Shoojit.
Summary:
"As for the casting [of the film], it is underway," stated reports.
Summary:
Amitabh Bachchan, Naseeruddin Shah and Rajkummar Rao will be starring together in a film, as per reports.
Summary:
Priyanka's brother Siddharth Chopra and fiancé Nick Jonas were also part of the celebration.
Summary:
In the 16 T20Is Jasprit Bumrah and Bhuvneshwar Kumar have played alongside each other, the 3rd T20I against Australia is only the second instance when both the pacers went wicketless in the same innings.
Summary:
After registering figures of 4/36 in the third T20I on Sunday and 0/55 in the first T20I against Australia earlier this week, Indian all-rounder Krunal Pandya holds both the best and worst T20I bowling figures for a spinner in Australia.
Summary:
Dipa Karmakar won bronze in the vault event on the third day of the Artistic Gymnastics World Cup in Cottbus, Germany on Saturday.
Aaj ye bronze bhi gold lag raha hai," Karmakar tweeted after her win.
Summary:
Portuguese captain Cristiano Ronaldo on Saturday became the fastest player in Juventus' history to reach the 10-goal mark in a season after scoring for Juventus in his 16th appearance for the club across all competitions.
Summary:
Arjun later picked another wicket in Delhi's second innings to reduce them to 64/3, following which the match ended in a draw.
Summary:
The UK Parliament has seized some internal Facebook documents from US-based company Six4Three after Mark Zuckerberg refused to testify over the data scandal.
Summary:
Smartphone maker HTC has denied reports claiming the company will shut down its smartphone business, according to reports.
Summary:
Summary:
Expressing grief over the killing of a US tourist in the North Sentinel Island of Andaman, Minister of State for External Affairs VK Singh called it a "very sad" incident.
Summary:
According to the monitoring committee overseeing the cleaning of Yamuna, absence of sewer networks in over 1,500 unauthorised colonies and slums in Delhi is one of the major reasons of pollution in the river.
Summary:
The Prime Minister's Office has refused to share details on the black money brought back from abroad, citing a provision of the RTI Act that bars disclosure of information that may impede investigation and prosecution of offenders.
Summary:
Declining Pakistan's invitation to attend the groundbreaking ceremony for Kartarpur corridor, Punjab CM Captain Amarinder Singh said it had been always been his cherished dream to visit the place where Guru Nanak spent his last years.
Summary:
While addressing 50th episode of 'Mann ki Baat', Prime Minister Narendra Modi on Sunday said when 'Mann ki Baat' commenced it was firmly decided that it "would carry nothing political, or any praise for the government nor Modi".
Summary:
Iranian Supreme Leader Ayatollah Ali Khamenei said the US is targeting the Middle East because it fears Islamic "awakening" in the region.
Summary:
The unveiling was the first time authorities had opened a previously unopened coffin before international media.
Summary:
While the actual statue would be 151-metre tall, the structure would have a 20-metre umbrella and a 50-metre-high pedestal.
Summary:
Actor Ranveer Singh, while addressing guests at his wedding party held in Mumbai on Saturday, said, "Ladies and gentlemen, I married the most beautiful girl in the world." "We are very different," Deepika can be heard saying.
Summary:
The party was reportedly hosted by Ranveer's sister Ritika Bhavnani.
Summary:
A video showing actor Ranveer Singh dancing at his wedding party in Mumbai has surfaced online.
Summary:
Kannada actor and former union minister MH Ambareesh passed away on Saturday at the age of 66 after suffering a heart attack.
Summary:
This comes after Congress leader Raj Babbar compared the falling value of Indian rupee to PM Modi's mother's age.
Summary:
Ahead of the Assembly elections in the state, BJP President Amit Shah slipped from a vehicle while campaigning for his party in Madhya Pradesh on Saturday.
Summary:
Senior Congress leader and former Union Minister CK Jaffer Sharief passed away in a hospital in Bengaluru on Sunday at the age of 85.
Summary:
Summary:
Earlier, External Affairs Minister Sushma Swaraj also said she wouldn't be able to attend the ceremony, citing 'prior commitments'.
Summary:
Police officials also found a money-counting machine, a gun and several cell phones.
Summary:
A nail art salon in Moscow named Nail Sunny has turned women's nails into miniature lipsticks and make-up brushes.
Summary:
Vicky Kaushal has revealed that there was a time when he was an introvert and used to hate limelight, adding, "But you need to face your inhibitions.
Summary:
Ranveer Singh's sister Ritika Bhavnani hosted a party at Grand Hyatt in Mumbai for her brother and sister-in-law Deepika Padukone who got married recently.
Summary:
Talking about his experience while working with Rajinikanth in their upcoming film '2.0', Akshay Kumar said, "I've never got the opportunity to work with Rajinikanth sir.
Summary:
Congratulating boxer MC Mary Kom, who became the first ever boxer to win six AIBA Women's World Boxing Championship titles, Priyanka Chopra tweeted, "It's a proud moment for the nation...you are and always will be my inspiration." "Only you could do it...What an achievement," she further wrote.
Summary:
Saif Ali Khan will be starring in Sriram Raghavan's next film, as per reports.
Summary:
Manchester City and Liverpool continued their winning runs after beating West Ham and Watford respectively.
City, Liverpool and Tottenham respectively occupy the top three spots in the table.
Summary:
Microsoft-owned LinkedIn used the email addresses of 18 million non-users to buy targeted advertisements on Facebook, according to Ireland's Data Protection Commissioner.
Summary:
Jammu and Kashmir on Saturday recorded an overall 75.2% voter turnout in its third phase of panchayat elections, in which over 3.2 lakh people voted.
Summary:
During his ongoing visit to Ayodhya, Shiv Sena chief Uddhav Thackeray on Sunday warned the BJP against playing with the sentiments of the Hindus.
Summary:
Reports said this was the third encounter in less than a week, in which a total of 16 militants have been killed.
Summary:
Speaking on the 50th episode of 'Mann Ki Baat', PM Narendra Modi on Sunday revealed that he got the idea for the programme in 1998 while travelling in Himachal Pradesh.
Summary:
Commenting on the reported CIA finding that Saudi Crown Prince Mohammed bin Salman ordered the killing of journalist Jamal Khashoggi, senior Saudi prince Turki al-Faisal has said the agency could not be counted on to reach a credible conclusion.
Summary:
Taiwan's constitutional court declared in May 2017 that same-sex couples had the right to legally marry.
Summary:
Corporate Affairs Secretary Injeti Srinivas has said the Insolvency and Bankruptcy Code (IBC) has helped in directly and indirectly addressing stressed assets worth around â¹3 lakh crore in two years.
Summary:
The government-appointed board of crisis-hit Infrastructure Leasing and Financial Services (IL&FS) will soon put on sale another 8 to 10 subsidiaries, Corporate Affairs Secretary Injeti Srinivas said.
Summary:
Australia defeated England by 8 wickets in Antigua today to win the Women's World T20 for the fourth time.
Summary:
Summary:
Ahead of Telangana Assembly elections, Siddipet administration has promised lucky draw gifts to people who cast their vote to ensure maximum polling in the district.
Summary:
Attacking Congress leader Kamal Nath over his purported 'Muslim votes' video, Uttar Pradesh CM Yogi Adityanath said, "I just want to tell him that Kamal Nath ji can keep Ali, Bajrangbali will be enough for us (BJP)." "I recently read Kamal Nath ji's statement where he said Congress doesn't want SC/ST votes.
Summary:
Former Pakistan captain Shahid Afridi has said that nobody has the right to tell former Team India captain MS Dhoni when to retire.
Summary:
Five-time major winner Phil Mickelson defeated 14-time major winner Tiger Woods in Las Vegas to win "The Match" and a cash prize of $9 million.
Summary:
Ex-India batsman VVS Laxman has said that Virat Kohli is a good captain but still a work in progress.
Summary:
The proposal was approved by the state cabinet at a meeting chaired by CM Trivendra Singh Rawat.
Summary:
Yoga guru Baba Ramdev on Saturday said that the Centre should bring a law for the construction of Ram Temple in Ayodhya or people will start building it on their own.
Summary:
Indonesian authorities have identified the body of 31-year-old Indian pilot Bhavye Suneja who captained the Lion Air plane that crashed into the sea on October 29.
Summary:
Swaraj said union ministers Harsimrat Kaur Badal and Hardeep Singh Puri would attend the event as Government of India's representatives.
Summary:
In 2000, Coates mortgaged her family's betting shops and bought the Bet365.com domain name on eBay for $25,000.
Summary:
West Bengal Finance Minister Amit Mitra on Friday said the 59-minute loan approval scheme for Micro, Small and Medium Enterprises (MSMEs) announced by Prime Minister Narendra Modi was a gimmick.
Summary:
Sri Lanka and England spinners have taken 82 wickets in the ongoing series so far, breaking the record for most wickets by spinners in a three-Test series.
Summary:
World number one singles tennis player Simona Halep has been awarded an honorary doctorate in her homeland Romania.
Summary:
Pakistani wicket-keeper Kamran Akmal's failed stumping attempt gave his brother and opposition batsman Umar Akmal a reprieve in a match in the ongoing T10 League.
Summary:
Researchers in the US have developed a system called 'BrainGate2' that lets people with neurologic disease or limb loss communicate with unmodified computer tablets.
Summary:
Shiv Sena chief Uddhav Thackeray during his visit to Ayodhya on Saturday said, "Humein aaj mandir banne ki tareekh chahiye." "Unlike Atal ji's coalition, todayâÂÂs government has full majority.
Summary:
National Security Advisor Ajit Doval and Chinese Foreign Minister Wang Yi held the 21st round of border talks on Saturday and resolved to intensify efforts to achieve a mutually acceptable solution to the India-China boundary question, an official statement read.
Summary:
Former PM and senior Congress leader Manmohan Singh on Saturday said the Centre's decision to build the Kartarpur corridor to facilitate pilgrims to visit Gurdwara Darbar Sahib in Pakistan is a "good initiative".
Summary:
Weapons and ammunition, including a US-made pistol, 25 live cartridges and four magazines were recovered from the accused, a police official said.
Summary:
Hawaii-based Teddy's Bigger Burgers closed a restaurant in Honolulu after a video showing a rat being cooked on the grill surfaced on social media.
Summary:
US President Donald Trump, when asked what he was thankful for on this Thanksgiving Day, said, "I made a tremendous difference in this country." "This country is so much stronger now than it was when I took office that you wouldn't believe it," he added.
Summary:
Iranian President Hassan Rouhani on Saturday called on Muslim nations including Saudi Arabia to unite against the US, referring to the kingdom's people as Iran's "brothers".
Summary:
Former Zimbabwe President Robert Mugabe is no longer able to walk, current President Emmerson Mnangagwa said on Saturday.
Summary:
The fire department said it has "95% certainty" that the explosion was caused by a leak in the natural gas line which runs beneath the house.
Summary:
The government has said that it will give a subsidy of 5% for non-basmati rice exports for the four months to March 25, 2019.
Summary:
Late Union Minister Pramod Mahajan's 43-year-old son Rahul Mahajan's former wife Dimpy Ganguly has said that she really hopes that Rahul's new wife, 25-year-old Kazakhstan model Natalya Ilina, doesn't face domestic violence.
Summary:
On being asked if he is now open to marriage, Arjun reportedly responded, "Yes, now I am.
Summary:
The picture is from the couple's Konkani-style wedding held at Italy's Lake Como on November 14.
Summary:
Late Union Minister Pramod Mahajan's 43-year-old son Rahul Mahajan, who got married to 25-year-old Kazakhstan model Natalya Ilina, said that his previous two marriages "happened in a hurry".
Summary:
Pradeep Musipatla, a candidate of Pyramid Party of India for the upcoming Telangana Assembly elections, believes that non-vegetarianism is causing global warming.
Summary:
Reacting to Mithali Raj being dropped for Women's World T20 semi-final against England, her personal coach RSR Murthy said it is extremely disappointing that India Women captain Harmanpreet Kaur doesn't regret dropping Mithali.
Summary:
Sohail then came running behind Shahzad and grabbed his belly.
Summary:
In an apparent attack on BJP amid Shiv Sena chief Uddhav Thackeray's two-day Ayodhya visit, the party said Uddhav is in Ayodhya to wake "Kumbhakarna" from his "deep slumber".
Summary:
Saikawa's letter comes after the arrest of former Chairman Carlos Ghosn on November 19 for financial misconduct.
Summary:
Later, a woman claiming to be customs officer called the victim and sought â¹33.5 lakh on the pretext of completing the fraudster's immigration procedure.
Summary:
American tourist John Allen Chau, who was killed by the Sentinelese in Andaman, in one of his last notes wrote, "God, I don't want to die." "You guys might think I'm crazy in all this but I think it's worthwhile to declare Jesus to these people," his note addressed to his family further read.
Summary:
Delhi Police on Saturday informed that a total of 1,703 challans were issued between November 6 and 20 at Signature Bridge, that was opened for public use on November 5.
Summary:
Pakistan PM Imran Khan had earlier invited former cricketer and Punjab Minister Navjot Singh Sidhu for the ceremony.
Summary:
A video of a jewellery store in Canada has gone viral on the internet, where the staff used swords to fight off masked robbers.
Summary:
The move comes weeks after Travel Food Services, the firm that operates the lounge at Mumbai airport, discontinued the facility for Jet Airways passengers due to non-payment of dues.
Summary:
Djokovic, who recently lost in the final of the ATP World Tour Finals, posted pictures of himself posing in the 'Samurai' attire.
Summary:
Notably, Rabada is ranked second in Tests and fourth in ODI rankings among bowlers.
Summary:
Indian boxer MC Mary Kom, who won a record sixth gold medal at the World Boxing Championships, tweeted, "I have fulfilled my duty.
Summary:
Reacting to MC Mary Kom winning her record sixth gold medal at the Women's World Boxing Championships, boxer Vijender Singh tweeted, "You are an Inspiration @MangteC..
Magnificent Mary Clinches Gold For 6th time.
Summary:
The US government is trying to persuade wireless and internet providers in allied countries to avoid using telecommunications equipment from ChinaâÂÂs Huawei Technologies, according to a media report.
Summary:
Private taxi company Addison Lee will also receive state funds to lead separate trials of driverless taxis in London before the launch of public services.
Summary:
Meituan posted a 97.2% jump in revenues to 19.1 billion yuan ($2.75 billion) during the same period.
Summary:
NASA's experimental mini-satellites (CubeSats), nicknamed 'Wall-E' and 'EVE' after Disney-Pixar characters, will broadcast status of InSight Mars lander.
Summary:
Scientists claim to have discovered three 'well-preserved' skeletons of the oldest long-necked dinosaur in the Brazilian state of Rio Grande do Sul. Called 'Macrocollum itaquii', the vegetarian species weighed nearly 100 kilograms and is about 225 million-years-old.
Summary:
Deforestation of the Amazon rainforest has reached its highest level in a decade, as per official data released by the Brazil government.
Summary:
Karnataka CM HD Kumaraswamy on Saturday visited the site of the accident where around 25 passengers died after a bus fell into a canal near Mandya.
Summary:
Authorities in Alabama, US, have admitted that they might have shot and killed the wrong man while pursuing a suspect involved in a mall shooting.
Summary:
Playing in her first AIBA Women's World Boxing Championship, India's 21-year-old boxer Sonia Chahal won silver medal after losing to Germany's OG Wahner in the 57-kg category.
Summary:
Former Bihar CM Lalu Prasad Yadav's son Tej Pratap Yadav, who filed for divorce with wife Aishwarya Rai this month, tweeted "Tute se fir na jute, jute ganth pari jaaye" on Friday.
Summary:
Congress leader Navjot Singh Sidhu has reportedly accepted Pakistani PM Imran Khan's invite for the groundbreaking ceremony of Kartarpur corridor on the Pakistani side on November 28.
Summary:
Bajaj Auto is the only Indian automaker that makes a quadricycle, which it exports to other countries.
Summary:
Lankesh was shot dead in front of her house last year.
Summary:
Goa agriculture director Nelson Figueiredo is advising farmers to adopt 'cosmic farming', saying they need to chant Vedic mantras for at least 20 days for better crop yield.
Summary:
French NGO Sherpa has filed a complaint with the office of French National Financial Prosecutor against Dassault Aviation, demanding an investigation into alleged corruption in the Rafale deal with India.
Summary:
Ashwin Lalit Jain, a 40-year-old gold businessman sent a text message to his friends saying "My life is over" before allegedly shooting himself inside his car in Mumbai on Friday.
Summary:
Mohamed Nasheed, ex-Maldives President and now advisor to new President Ibrahim Mohamed Solih, said his country is "at a loss to understand how much" it owes China.
Summary:
German financial services major Allianz has tied up with logistics developer e-Shang Redwood (ESR) to jointly invest around $1 billion in India's logistics sector.
Summary:
There are bad people, but there are many good people as well...It also depends [on] how you conduct yourself," added the actress.
Summary:
Kabir Bedi has lent his voice to the character named 'Mufasa' in the Hindi dubbed version of Disney's upcoming live-action film 'The Lion King'.
Summary:
Talking about her film 'Raazi' starring Alia Bhatt, Meghna Gulzar said, "Alia performed quite challenging scenes in the movie...She has raised the bar in acting for herself." "She'd be trembling before you say action...the moment camera rolls, you see the performer in her taking over everything," added Meghna.
Summary:
A total of 32 wickets fell on the second and third day of the first Test between Bangladesh and the Windies.
Summary:
Bangladesh captain Shakib Al Hasan surpassed legendary English cricketer Ian Botham to become the fastest cricketer in the history of Test cricket to complete the double of 200 wickets and 3,000 runs.
Summary:
The allegations had been made against Ramos by German magazine Der Spiegel in a 'Football Leaks' revelation.
Summary:
Facebook is planning to train five million people with digital skills by 2021 in India, the company's Public Policy Director, India, Ankhi Das said on Saturday.
Summary:
Summary:
Astronomers at Hawaii's Keck Observatory claim to have detected water in the atmosphere of a planet 129 light-years away from the Earth.
Summary:
Australian neuroscientist Professor George Paxinos has discovered a hidden region of the human brain called 'Endorestiform Nucleus' which might be responsible for 'fine motor control'.
Summary:
A study led by scientists from Harvard and Yale University has proposed spraying Sun-dimming chemicals into the Earth's atmosphere to cut the rate of global warming by half.
Summary:
Thackeray is expected to perform a 'maha aarti' and visit the disputed site of the temple.
Summary:
Summary:
The Gujarat Anti-Terrorist Squad on Friday said it arrested a person wanted in a case of seizure of high quality Fake Indian Currency Notes (FICN) with a face value of â¹1.61 lakh in 2016 in Bhuj.
Summary:
US President Donald Trump intends to "turn a blind eye" to the murder of Saudi journalist Jamal Khashoggi, Turkey's Foreign Minister Mevlut Cavusoglu has said.
Trump has reiterated the US' support to its ally Saudi Arabia citing deals worth of billions of dollars signed between the two countries.
Summary:
US President Donald Trump has authorised troops to use lethal force if necessary against the migrants at the Mexico border.
Summary:
Protesters part of the 'yellow vest' movement have been marching across France against the rise in fuel taxes.
Summary:
India's Mary Kom has become the first ever boxer to win six AIBA Women's World Boxing Championship titles.
Summary:
Reportedly, the passengers couldn't escape from the bus as it fell to its side, trapping the doors on the floor of the canal.
Summary:
Model Kate Sharma, who accused filmmaker Subhash Ghai of forcibly trying to kiss her, has withdrawn her case against him as she wants to take care of her ill mother and family.
Summary:
The Election Commission has sent a notice to Congress leader CP Joshi over his 'Only Brahmins know about Hinduism' remark against PM Narendra Modi and Union Minister Uma Bharti in poll-bound Rajasthan.
Summary:
Northern Warriors registered the highest ever total in T10 League by scoring 183/2 against Punjabi Legends in Sharjah on Friday night.
Summary:
Havelian area DSP said that elders of both the parties came to police station to register cases against each other.
Summary:
"The decision was taken by...team management.
Earlier, Mithali's manager Annisha Gupta had publicly criticised Harmanpreet for dropping her.
Summary:
During a press conference in Bhopal on Friday, Defence Minister Nirmala Sitharaman said she got "hurt" after a reporter "sarcastically" asked why the NDA government was boasting about the surgical strike two years later.
Every citizen should glorify it (surgical strike).
Summary:
The man had married her in 2017 when the girl placed that as a condition to drop the case.
Summary:
Pakistan has arrested Tehreek-e-Labbaik Pakistan (TLP) chief Khadim Hussain Rizvi who led the nationwide protests against the acquittal of Christian woman, Asia Bibi, in a blasphemy case.
Summary:
India's largest telecom operator Vodafone Idea has said it will reduce the number of distributors by 16,000 by December and branded retail stores by 2,000 by March 2019.
Summary:
We do so with the RBI," Jaitley further said.
Summary:
Harry Potter actor Daniel Radcliffe, who featured in JK Rowling's sequel play 'Harry Potter And The Cursed Child', said he'll never watch his play in the theatre.
Summary:
Veteran actress Julie Andrews will be lending her voice to a character named 'Karathen' in Jason Momoa starrer 'Aquaman'.
Summary:
Preity Zinta, while talking about nepotism, said, "Nepotism does exist.
Summary:
Reciting a poem at an event on her late mother and actress Sridevi, Janhvi Kapoor said, "Apni awaaz kho ke, apni maa ki awaaz mein baat karti hoon.
Summary:
Priyanka Chopra will be arriving in a helicopter for her wedding at Umaid Bhawan Palace in Jodhpur, as per reports.
Summary:
Congress President Rahul Gandhi on Friday said Prime Minister Narendra Modi has brought "disgrace" to chowkidars in India.
Summary:
The Bemetara district administration has constructed a wall in front of the doors of the room where EVMs of three constituencies have been kept after voting for Chhattisgarh Assembly elections concluded.
Summary:
Summary:
The Australian team has called up pacer Mitchell Starc as a replacement for Billy Stanlake for the third and final T20I.
Summary:
Facebook will send Richard Allan, the companyâÂÂs Vice President of Policy Solutions, to testify over data scandals attached to the platform by over seven parliaments.
Summary:
BSP president Mayawati on Saturday claimed some anti-Dalit elements had allegedly conspired to kill her last year during the "heart-wrenching" Shabbirpur violence in Uttar Pradesh.
Summary:
Summary:
Vedantu was co-founded by IIT Bombay graduate Krishna and IIT Roorkee's Pulkit Jain, Anand Prakash and Saurabh Saxena.
Summary:
After a recent study found harmful microbes inside the International Space Station (ISS), Indian-origin scientists at NASA have raised health-related concerns for future missions and predicted a 79% probability that they may potentially cause diseases.
Summary:
The incident occurred when both the driver and passenger reported to the station.
Summary:
The Himalaya Drug Company launched its first brand campaign, 'Khush Raho, Khushaal Raho', bringing to life its vision of "Wellness in Every Home, Happiness in Every Heart".
Summary:
BITS Pilani's PG Program in Big Data Engineering in association with UpGrad enables professionals to make a switch to a career in Big Data.
Summary:
Ex-Manchester United defender Patrice Evra has apologised for sharing a video on social media which showed him kissing a raw chicken.
"I just cuddled, I just kissed the meat.
Summary:
After the ICC announced that the World T20 will be known as T20 World Cup from 2020 edition, former England captain Michael Vaughan mocked the decision, tweeting, "That's the best news I heard all year...it's been affecting me so much !!!!!!!!!!!!!!!
Summary:
The International Cricket Council (ICC) on Friday revealed that the World T20 will be called T20 World Cup from the 2020 edition onwards.
Summary:
Summary:
The accused intercepted the truck with three of his friends, beat up the driver and his son, and fled with the truck.
Summary:
An inspector and two sub-inspectors have been suspended and the entire Sikandara police station of Agra city has been booked for murder after a 32-year-old man died in police custody.
Summary:
Recalling the 26/11 Mumbai terror attacks from 10 years ago, a railway announcer at CSMT station, where over 50 passengers were shot dead, said LeT's Ajmal Kasab "looked like a college boy playing video games while firing".
Summary:
Noida-based sculptor Ram Sutar, who designed the world's tallest statue, the 600-foot Statue of Unity in Gujarat, has been roped in for an 80-foot Buddha statue in capital Gandhinagar by a Buddhist non-profit body Sanghakaya Foundation.
Summary:
Delhi Police have arrested a 32-year-old man for allegedly killing his 38-year-old wife and injuring his 18-month-old and teenaged step-daughters after running his truck over them when he was drunk.
Summary:
A 24-year-old Ghaziabad resident named Shankar died and his 17-year-old cousin Deepak was injured after the motorcycle they were on skidded before hitting a road divider at Delhi's Signature Bridge on Saturday morning.
Summary:
The attack was intended to scare Chinese investors and undermine the China-Pakistan Economic Corridor project, Khan wrote on Twitter.
Summary:
A consortium including Thai conglomerate Minor International is reportedly considering an investment of about $350 million (â¹2,470 crore) in Indian hospitality chain Hotel Leelaventure.
Summary:
The market value of all cryptocurrencies has plunged $700 billion from about $835 billion at the market peak in January, according to CoinMarketCap.com.
Summary:
The heads of state-run banks can now request look-out circulars to be issued against wilful defaulters and prevent them from fleeing India.
Summary:
The Central Board of Direct Taxes (CBDT) has said that service charge collected by restaurants but not passed on to workers will be liable to income tax.
Summary:
Singer Guru Randhawa has collaborated with American rapper Pitbull for a single titled 'Slowly Slowly' produced by T-Series.
Summary:
Sonam Kapoor will be seen playing the role of a policewoman in Nikkhil Advani's next thriller drama titled 'Snow', as per reports.
Summary:
A local group in Odisha's Bhubaneswar, called Kalinga Sena, has threatened that they will throw black ink on actor Shah Rukh Khan if he attends the opening ceremony of the Hockey World Cup in Bhubaneswar.
Summary:
Boney Kapoor said he might direct a film casting his children Arjun Kapoor and Janhvi Kapoor in it.
Summary:
Summary:
Congress leader Vikas Upadhyay has said that party workers are guarding Electronic Voting Machines ahead of counting of votes for Chhattisgarh Assembly elections on December 11.
Summary:
Summary:
The Special Investigation Team probing the murder of journalist Gauri Lankesh has filed an additional chargesheet against 18 people and sought permission from the Special Court for Karnataka Control of Organised Crime Act to investigate further.
Summary:
Three Sikhs were among 32 people killed on Friday when a bomb exploded in a market in Pakistan's Khyber Pakhtunkhwa province, police said.
Summary:
All those killed in the suicide attack belonged to the security forces, an Afghan military spokesperson said.
Summary:
"How is your name 'blac' chyna, but you're promoting a bleaching cream called whitenicious," a user tweeted.
Summary:
Criticising captain Harmanpreet Kaur's decision to not play Mithali Raj in the Women's World T20 semi-final against England, Mithali's manager Annisha Gupta termed Kaur a "shameless, manipulative, lying, immature, and undeserving captain." She also said that the women's team believed in "politics not sport".
Summary:
Auction house SothebyâÂÂs India Managing Director Gaurav Bhatia has taken a leave of absence pending an inquiry following a series of sexual harassment allegations against him.
Summary:
The 44-year-old added he was India's highest scorer "in a series prior to the World Cup" and was determined to play the tournament.
Summary:
Ex-India captain MS Dhoni has revealed one of the main reasons why he promoted himself ahead of Yuvraj Singh in 2011 World Cup final was that Sri Lanka's Muttiah Muralitharan was bowling at the time.
Summary:
Pakistani PM Imran Khan has invited former cricketer and Congress leader Navjot Singh Sidhu for the groundbreaking ceremony of Kartarpur corridor on the Pakistani side on November 28.
Summary:
The Supreme Court has reduced the death penalty of a man, convicted of raping and murdering an eight-year-old girl in Rajasthan five years ago, to life sentence after acquitting him of the rape charge.
Summary:
Four friends aged between 17 and 24 died after they allegedly jumped before a moving train in a suspected suicide pact in Rajasthan's Alwar, police said.
Summary:
The Kerala government on Friday told the High Court that two days can be kept exclusively for women devotees to pray at Sabarimala temple in order to implement the Supreme Court's order allowing entry to women of all ages.
Summary:
Following the terror attack on the Chinese consulate in Karachi, China has warned Pakistan to ensure the safety of its citizens and organisations in the country.
Summary:
Kiran Jagdev, an Indian-origin woman who repeatedly shouted "we are all going to die" on a flight, was jailed for six months in the UK for drunken behaviour.
Summary:
Senior Superintendent of Police Suhai Aziz Talpur led the operation against the terror attack on the Chinese consulate in Pakistan.
Summary:
The security forces retaliated as soon as the terrorists reached the gates of the consulate.
Summary:
Earlier, Sunil Mittal-led Bharti Airtel said the company does not have the appetite to buy 5G spectrum.
Summary:
An Indian-origin Australia-based man has been jailed for three weeks in Singapore for molesting a 25-year-old flight attendant aboard a Singapore-bound flight.
Summary:
Bajaj Auto MD Rajiv Bajaj has described the launch of 'Discover 100cc' as his career's "biggest blunder".
Marketing people said if 125cc Discover sells so much then how many would a 100cc Discover sell?" "We went ahead and made (it).
Summary:
Indian all-rounder Krunal Pandya clean bowled Australia's Glenn Maxwell, who had hit Pandya for four sixes with three of them being off consecutive deliveries in the first T20I between the two sides at Brisbane.
Summary:
Indian cricketer VVS Laxman recalled that the Australian team never sledged him and added that they did not do so perhaps because they knew that it would not affect him.
Summary:
India's 21-year-old boxer Sonia Chahal entered the final of the Women's World Boxing Championships in the 57 kg category after beating her North Korean opponent Jo Son Hwa 5-0.
Summary:
Former Indian hockey player, Sandeep Michael, who captained the Indian junior team to a gold at the Asia Cup 2003, died on Friday at the age of 33 after battling an unspecified neurological problem.
Summary:
A total of 17 wickets fell on the second day of the first Bangladesh-Windies Test in Chittagong on Friday.
Summary:
"Workers are breaking bones, being knocked unconscious and being taken away in ambulances...theyâÂÂre not robots," a UK Trade Union said.
Summary:
Talking about plans to enter the e-vehicle market, Bajaj Auto Managing Director (MD) Rajiv Bajaj has said, "We could have made a Tesla on two-wheels or a Tesla on three-wheels and created different news." "We will try and do that in 2019 now," he further said.
Summary:
Earlier in April, it had invested the same amount in ShoeKonnect for a 20% stake.
Summary:
The Centre on Thursday appointed Vijay Kumar Dev, a 1987-batch IAS officer, as the Chief Secretary of Delhi.
Summary:
Clive Lewis, Member of the Parliament from the UK's Labour Party, has been accused of mocking suicide after he pretended to shoot himself in the mouth during a Parliament debate.
Summary:
Former US presidential nominee Hillary Clinton has said that European leaders "must get a handle on immigration" if they want to curb the growing right-wing populism in the continent.
Summary:
Boney has two kids Arjun, Anshula from late first wife Mona Shourie and Jahnvi, Khushi with Sridevi.
Summary:
The official attendance at the match, which witnessed just 19 overs, was 63,439.
Summary:
Summary:
Ahead of Shiv Sena chief Uddhav Thackeray's visit to Ayodhya, party leader Sanjay Raut said, "We demolished Babri (Masjid) in 17 minutes, how long does it take to pass a law?" "There are many Rajya Sabha members who are in favour of Ram temple.
Summary:
Summary:
Summary:
The Madras High Court has observed that as a result of getting free rice "(Tamil Nadu) people have become lazy and we have to import workers from northern states even for menial works." The court added that people expect everything for free from the government.
Summary:
After a male worker at SRM University in Chennai masturbated in front of an undergraduate student, her friend revealed when they went to complain to the warden, she asked them to change their clothes and sleep.
Summary:
Summary:
Companies will be prohibited from advertising foods and drinks that are high in sugar, fat or salt.
Summary:
Pakistan's Prime Minister Imran Khan has said that there is no mention of Jesus Christ in history.
Summary:
Author Shashank Shah in his book claimed that as Air India Chairman, JRD Tata once "rolled up his sleeves" and helped the crew clean a dirty aircraft toilet.
Summary:
The Italian luxury designers Domenico Dolce and Stefano Gabbana of Dolce & Gabbana brand issued an apology in a video after Chinese e-commerce sites removed their products over a 'racist' Chinese ad campaign.
Summary:
Vicky Kaushal has revealed he can't watch horror films, adding, "I have watched 'The Conjuring'...I had to watch 'Andaz Apna Apna' right after it to erase all the memories of 'The Conjuring'...and that's when I could...sleep." Vicky revealed this while interacting on Neha Dhupia's show 'No Filter Neha'.
Summary:
Summary:
Pakistani commentator and former cricketer Rameez Raja has said that according to him an India-Australia cricket contest can never go without sledging from either side.
Summary:
Following the Australian cricket team's win in the first T20I against India, Australia's coach Justin Langer said that the Australian team has had enough of getting "bashed up".
Summary:
Former UFC champion Conor McGregor's coach has revealed that the UFC fighter has been offered $5 million to fight against an unnamed Chinese kickboxer in a three-round kickboxing bout.
Summary:
Indian boxer MC Mary Kom's opponent, North Korea's Kim Hyang-Mi said that she thought she had won her bout against the Indian boxer in the semifinal stage at the Women's World Championships.
Summary:
Facebook-owned photo-sharing app Instagram has announced that it is testing new user profile layouts to make them "easier and cleaner to use".
Summary:
Asking the BJP to declare a date for the construction of Ram Mandir, Shiv Sena said those in power should be proud of Shiv Sainiks who "destroyed Babur's Raj in Ram Janmabhoomi." It asked those in power not to be "scared or jealous" of such Shiv Sainiks.
Summary:
Mumbai-based wealth management startup CashRich has raised $1 million in equity funding from three undisclosed UK-based angel investors.
Summary:
Roposo had started out as a fashion-focused social network and later shifted to video-sharing.
Summary:
A farmer allegedly committed suicide after Cyclone Gaja uprooted hundreds of coconut trees in his farm in Tamil Nadu's Thanjavur district, the police have said.
Summary:
Beijing aims to cap its population at 23 million by the end of the decade.
Summary:
Spain has demanded that Gibraltar should remain a bilateral issue between itself and Britain and not part of talks between Britain and the European Union (EU).
Summary:
The campaign was promoting a runway show to be held in Shanghai which was reportedly cancelled over the backlash.
Summary:
Its wireless reverse charging technology charges other smartphones that support wireless charging.
Summary:
Recalling the 2008 IPL slapgate controversy in an episode of Bigg Boss 12, banned pacer Sreesanth said that Harbhajan Singh didn't slap him but hit him on the face with the back of his fist.
Summary:
Late Union Minister Pramod Mahajan's son Rahul Mahajan got married to a 25-year-old model from Kazakhstan, Natalya Ilina, in a private ceremony on Tuesday.
Summary:
Summary:
Campaign groups claim that about 240 people have fallen ill after working at Samsung plants, with around 80 of them dying.
Summary:
Bharatiya Janata Party was the most advertised brand on Indian television in the week ending November 16 amid the assembly elections in five states, as per latest Broadcast Audience Research Council (BARC) data.
Summary:
Punjab Minister Navjot Singh Sidhu on Friday credited his visit to Pakistan for Pakistan PM Imran Khan's swearing-in for the decision by Indian and Pakistan governments to build the Kartarpur corridor.
Summary:
Flipkart Co-founder Binny Bansal had reportedly filed a police complaint against a former employee for blackmailing him and levelling false allegations of misconduct.
Summary:
Two bikers, who were killed after falling 25-30 feet from Delhi's Signature Bridge on Friday, have been identified as medical students.
Summary:
Nearly 12 hours after students of the SRM University near Chennai protested against alleged sexual harassment inside the campus, the police have arrested the accused, 26-year-old Arjun, a worker who clears out food waste.
Summary:
Mohit's brother, a CISF personnel, alleged foul play and said an unknown person helped them check-in and left soon.
Summary:
Congress MP Shashi Tharoor took to Twitter to share a picture with five hypothetical names of Delhi street signs inspired by pollution in Delhi.
Summary:
"I don't know if anyone's going to be able to conclude the Crown Prince did it," Trump added.
Summary:
Actress Freida Pinto will be marrying her boyfriend and adventure photographer Cory Tran next year, as per reports.
Freida's co-actor and Cory's best friend Aaron Paul had reportedly introduced the two.
Summary:
The Congress on Thursday approached the Election Commission, seeking withdrawal of the pink-coloured ballot papers that are to be used in the upcoming Telangana Assembly polls.
Summary:
Pakistan's former captain Shahid Afridi has said that Indian captain Virat Kohli is one of his favourite cricketers but needs to improve as a captain.
Summary:
Addressing a public rally in Vidisha, Congress President Rahul Gandhi said, "We do not want to share our 'mann ki baat', instead weâÂÂwant to hear your 'mann ki baat' and develop Madhya Pradesh." He added, "It's guaranteed.
Summary:
English Premier League side Chelsea's former striker Didier Drogba, who hails from the Ivory Coast, has announced his retirement from professional football.
Summary:
Its CEO Hwang Jeong-hwan had earlier said the company is working on a foldable smartphone.
Summary:
Congress President Rahul Gandhi has condemned statements made by party leader Dr CP Joshi, who appeared to suggest only Brahmins and pandits know about Hinduism.
Summary:
Summary:
Samast Technologies, parent of Gurugram-based discovery and rewards platform magicpin, has raised $20 million at an estimated valuation of over $100 million.
Summary:
Scientists have discovered the fossils of an elephant-sized mammal that lived alongside dinosaurs during the Triassic Period about 200 million years ago.
Summary:
Azad Malik, one of the six Lashkar-e-Taiba terrorists killed in an encounter with security forces in Jammu and Kashmir today, was reportedly a suspect in the murder of Rising Kashmir editor Shujaat Bukhari.
Summary:
Earlier, via a post on Facebook, Aparna had encouraged women who wanted to visit the temple to approach her.
Summary:
The Oris Carl Brashear Chronograph Limited Edition was declared the 'Watch Of The Year' at the third edition of the annual Ethos Watch Awards held by Ethos Watch Boutiques, India's largest chain of luxury watch boutiques.
Summary:
The Himalaya Drug Company launched its first brand campaign, 'Khush Raho, Khushaal Raho', bringing to life its vision of "Wellness in Every Home, Happiness in Every Heart".
Summary:
India has launched an official protest after its high commission officials were humiliated and barred from entering two Gurudwaras in Pakistan this week, allegedly by Pakistan's ISI officials posing as Sikhs.
Summary:
At least two police officers were killed after three gunmen attacked the Chinese consulate in Pakistan's Karachi on Friday.
Summary:
Akula Hanumanth, an independent candidate from Telangana's Koratla constituency, is distributing slippers to voters and saying, "If I don't work after winning, you can hit me with the slipper." His campaign video has gone viral with people asking other politicians to follow the suit.
Summary:
Goa Forward Party chief and Agriculture Minister Vijai Sardesai has claimed that ailing CM Manohar Parrikar wanted to resign, but the BJP high command vetoed it.
Summary:
Ghosn's elder sister was paid $100,000 a year as remuneration for a non-existent "advisory role", reports added.
Summary:
The police, however, said no witness has come forward to verify the reports, adding the bikers fell on hitting a divider while "speeding and taking a turn".
Summary:
India's decision to build the Kartarpur corridor is "a step towards (the) right direction", Pakistan's Minister for Information and Broadcasting Chaudhry Fawad Hussain has said.
Summary:
CM Chandrababu Naidu has nearly finalised the design for Andhra Pradesh's 250-metre-high assembly building that would make it taller than the world's tallest statue, Gujarat's 'Statue of Unity', by 68 metres.
Summary:
Hundreds of students protested at SRM University near Chennai on Thursday night after a male worker allegedly masturbated in front of an undergraduate student in the lift.
Summary:
At least six Lashkar-e-Taiba terrorists were killed in an ongoing encounter between terrorists and security forces in Jammu and Kashmir's Anantnag district on Friday, the J&K Police said.
Summary:
The first foreign Governor in Bank of England's 300-year history, Carney is due to step down in January 2020.
Summary:
The seat occupancy of airlines in India, the world's fastest-growing aviation market, fell to its lowest in 19 months because of excess supply, according to data released by DGCA.
Summary:
Denise Coates, the billionaire founder and co-CEO of UK gambling firm Bet365, paid herself a salary of ã220 million (â¹2,000 crore) last fiscal.
Summary:
Priyanka Chopra and Nick Jonas will host two wedding receptions, one in Delhi and another in Mumbai, as per reports.
Summary:
Janhvi Kapoor, while talking about her late mother and actress Sridevi, said that she cannot emulate her even if she wanted to.
But, whatever nhappened was too heavy," added Janhvi.
Summary:
The teaser trailer of Disney's upcoming live-action film 'The Lion King' has been released.
Summary:
Ayushmann Khurrana has said that he was "going through a professional high" when suddenly his wife Tahira Kashyap was diagnosed with breast cancer.
Tahira had revealed about cancer on Instagram.
Summary:
Shahid Kapoor and his half-brother Ishaan Khatter will appear together on the sixth season of talk show 'Koffee with Karan'.
Summary:
Ayushmann Khurrana has said he feels validated as an actor who chose to do good cinema.
Summary:
The Rajasthan BJP on Thursday said it expelled 11 leaders, including four ministers, for six years for contesting against party candidates in the upcoming Assembly elections.
Summary:
It is unfortunate that some section is trying to drag BJP into this." PDP had staked claim to form the government with support from NC and Congress but the Assembly was dissolved.
Summary:
Delhi Deputy CM Manish Sisodia on Thursday announced that a special Assembly session will be held on Monday to discuss the alleged chilli powder attack on CM Arvind Kejriwal and the Centre and Delhi Police's stand in the matter.
Summary:
Jet Airways on Thursday announced former Foreign Secretary Ranjan Mathai's resignation as independent director.
Vikram Mehta's resignation as independent director was announced on November 9, citing similar reasons.
Summary:
England, who had won the inaugural edition of Women's World T20 in 2009, have reached the final of the tournament for the fourth time.
Summary:
The group's leader said "the unique elements of the Satanic Temple's Baphomet statue" have been acknowledged in the credits of the show.
Summary:
The Censor Board in its affidavit to the Bombay HC demanded 20 cuts in the film including these dialogues.
Summary:
Actor Salman Khan, Union Minister Kiren Rijiju and Arunachal Pradesh CM Pema Khandu were seen cycling in the state's Mechuka on Thursday.
Summary:
After journalist Piers Morgan criticised female musicians group 'Little Mix' for posing naked, American singer Ariana Grande slammed him and shared a picture of him in which he posed nearly naked.
Summary:
Replying to a troll who questioned his record in Australia following his tweet on big boundaries there, off-spinner Ravichandran Ashwin wrote, "I can't Google you and find you." "2 for 26, 1 for 27 and 1 for 37 in the 3-0 win last series.
Summary:
Cricket Australia released a special video to reveal the 14-member Australian squad for the first two Test matches against India.
Summary:
Batsman Marcus Harris, who received his maiden call-up to Australia Test squad, has revealed Australia coach Justin Langer sent him a text which read, "Welcome to the brotherhood you little bastard".
Summary:
Cricketer Robin Uthappa, who is commentating in the ongoing Australia-India T20I series, has clarified that he is giving commentary a go instead of playing Ranji Trophy for Saurashtra as he's recovering from an ankle surgery.
Summary:
Millionaire businessman Robert Romawia Royte, the richest candidate in Mizoram's assembly elections, owns the state's first luxury sports car and football club Aizawl FC that bagged the I-League title in 2017.
Summary:
Bihar's Jamui District Magistrate Dharmendra Kumar's wife Vatsala Singh and her mother sat on dharna outside his official residence after she was denied entry by security guards on Wednesday.
Summary:
CRPF jawans are taking classes in schools in Jharkhand amid the ongoing strike of para teachers in the state.
Summary:
Congress is against total prohibition of liquor in the state.
Summary:
Dorsey's tweet showed him posing with a poster that said 'Smash Brahminical Patriarchy'.
Summary:
GoogleâÂÂs neighbourhood-focused question-and-answer app âÂÂNeighbourlyâ on Wednesday launched in Delhi and Bangalore, after debuting in Mumbai in May. It lets users ask questions about events, places and services in their neighbourhood with voice recognition support.
Summary:
Facebook-owned messaging app WhatsApp is planning to add a new feature to iOS beta that would allow users to watch videos directly from push notifications, according to WABetaInfo.
Summary:
Summary:
Earlier, it was reported that Apple cut production orders for all three new iPhone models.
Summary:
Scientists have developed an artificial 'robot nose' device made from living mice cells that could be used to detect bombs and drugs.
Summary:
The patent describes a system where UV light sensors detect sunlight and track exposure over time.
Summary:
Prime Minister Narendra Modi on Thursday said around 400 districts will have city gas distribution facility in next 2 to 3 years.
Summary:
SpaceX plans to launch astronauts to the International Space Station by June 2019.
Summary:
The accused demanded â¹2 crore from the boy's family but later reduced it to â¹3 lakh.
Summary:
Indian diplomats in Pakistan were reportedly humiliated and barred from entering Gurdwara Nankana Sahib on Wednesday night and Gurdwara Sachcha Sauda on Thursday.
Summary:
The Chief Commissioner of Railway Safety (CCRS) has given a clean chit to the railways in the Amritsar train tragedy that took place on the night of Dussehra saying it was the "negligence" of the people that led to the tragedy.
Summary:
Turkey's Hürriyet Daily News has claimed that US' intelligence agency CIA has a recording of Saudi Crown Prince Mohammed bin Salman giving an order to "silence" journalist Jamal Khashoggi as soon as possible.
Summary:
In their places, Bajaj Finance and HCL Technologies will enter the index.
Summary:
An 18-year-old German who was returning from his successful driving test lost his driving licence within 49 minutes after officers found he was travelling almost twice the speed limit.
Summary:
Actress Neha Saxena has made public the messages sent by a man to her public relations manager asking if the actress is available for a one-night stand.
Summary:
Sindhis' 47-year-old Indian leg-spinner Pravin Tambe became the first ever cricketer to take a five-wicket haul in T10 League, achieving the feat against Kerala Knights on Thursday.
Summary:
The 28-year-old bowled 11 dot balls, finishing with figures of 2-1-4-4.
Summary:
Boxer Mary Kom on Thursday defeated North Korea's Kim Hyang-Mi in the semi-finals of the 48-kg event to reach the final of the AIBA World Women's Boxing Championships for the seventh time.
Summary:
Summary:
Pakistan's Foreign Minister Shah Mahmood Qureshi has said his country has conveyed to India that it will open the corridor to Gurdwara Darbar Sahib Kartarpur for Guru Nanak Dev's 550th birth anniversary next year.
Summary:
Only four of the 16 ex-policemen convicted in the 1987 Hashimpura killings case surrendered before a Delhi court on the last day to turn themselves in on Thursday.
Summary:
The Supreme Court on Thursday pulled up the Centre and state governments over "pathetic condition" in the jails and observation homes for children across the country.
Summary:
North and South Korea have connected a road across their shared border inside the Korean Demilitarised Zone (DMZ) for the first time in 14 years, South Korea's Defence Ministry said.
Summary:
While posing for a photograph after a meeting, Malaysia Prime Minister Mahathir Mohamad's wife Siti Hasmah Mohamad Ali on Wednesday asked Pakistan Prime Minister Imran Khan if she could hold his hand.
Summary:
Sandra Parks, a 13-year-old US schoolgirl who wrote an award-winning essay on gun violence two years ago, was shot dead by a stray bullet fired into her house this week.
Summary:
Both sides have already reached a draft agreement on how Britain will leave the EU.
Summary:
A French court has ruled that the posters showing a screaming woman tied to railway tracks are legal.
Summary:
The bank was told to abolish the policy instantly by the Employees' Service Centre.
Summary:
A UK court has ruled in favour of Swiss bank UBS to take possession of Vijay Mallya's Central London house.
Summary:
UBS alleged that Mallya defaulted on a ã20.4-million (â¹185 crore) mortgage loan, which expired in 2017.
Summary:
Under the feature, the users will experience up to 40% fewer interruptions by ads in the session, YouTube said.
Summary:
The company is also encouraging donations to various national and local organisations that are both aiding people and other recovery efforts.
Summary:
Vice-President Venkaiah Naidu on Thursday said loan waivers for farmers are not a permanent solution for the agricultural sector.
Speaking at a conclave he said farm loan waivers will not lead to sustainable development.
Summary:
Former Jammu and Kashmir CM Mehbooba Mufti on Thursday said both PDP and NC have been allies of BJP but their credentials were not questioned then.
Summary:
Carbon dioxide (CO2) levels in the atmosphere hit a new record last year, the UN World Meteorological Organization (WMO) said on Thursday.
Summary:
Australian scientists claim to have discovered a star that is on the verge of a massive supernova explosion.
Summary:
European Space Agency astronaut and current ISS resident Alexander Gerst has discovered old NASA floppy disks on the space station.
Summary:
Punjab Cabinet minister Navjot Singh Sidhu on Thursday said the Union Cabinet's decision on Kartarpur corridor "will act like a soothing balm" for Pakistan and India.
"I welcome this auspicious step by the Union Cabinet, it will be...cup of joy for 12 crore 'Nanak Naam Laivas'," he added.
Summary:
US Congresswoman Tulsi Gabbard has criticised US President Donald Trump for supporting Saudi Arabia, telling him that being "Saudi Arabia's b*tch" is not the kind of 'America First' policy he promotes.
Summary:
This comes a week after the Bengaluru-based firm announced it will open a hub in US' Texas.
Summary:
Nissan added that its alliance with Renault, where Ghosn is Chairman and CEO, remains unchanged.
Summary:
Actress-singer Iulia Vantur has said she has heard men say they don't have courage to say to a girl 'I like you' because of the #MeToo movement.
Iulia further said, "We've to use it in a proper way...to remove...negative things."
Summary:
A Revenue Intelligence official reportedly confirmed supari was smuggled into India from Indonesia via Sri Lanka.
Summary:
Italy's Leaning Tower of Pisa is "leaning about half a degree less" and has lost 4 cm of its tilt in the last 17 years of restoration, according to the University of Pisa.
Summary:
Summary:
Walmart, which bought a 77% stake in Flipkart for $16 billion in May, has increased its stake in Flipkart to 81.3%, according to reports.
Summary:
Tamil Nadu CM EK Palaniswami on Thursday met PM Narendra Modi and sought financial assistance of nearly â¹15,000 crore for restoration and rehabilitation works in the districts affected by cyclone Gaja.
Summary:
Karnataka CM HD Kumaraswamy on Thursday reportedly said, "I have decided not to address any press meets in the future or engage with the media on a daily basis." "I am hurt by the attitude of the media.
They twist every comment made by me.
Summary:
China has built a new platform on the Bombay Reef, part of the Paracel Islands in the disputed South China Sea, US-based think tank Asia Maritime Transparency Initiative has claimed.
Summary:
Summary:
Railways has been using Airtel for over six years as its service provider for 1.95 lakh connections used by its employees in the Closed User Group.
Summary:
Kardashian and West, along with Adidas and West's fashion company Yeezy, donated $400,000 (over â¹2 crore) to the firefighters and wildfire victims.
Summary:
An FIR has been registered against casting director Vicky Sidana in a Mumbai police station, based on sexual assault allegations made against him by actress Kritika Sharma.
Summary:
"Mark (CEO) and Sheryl (COO) relied on me to manage this without controversy," Schrage said.
Summary:
Such ion wind propulsion systems could be used to fly less noisy drones, the team said.
Summary:
Australian startup Ceres Tag is working with the country's national science agency to develop smart ear tags for tracking cows.
Summary:
Microsoft-owned professional networking service LinkedIn added a new privacy setting aimed to stop the email addresses of its users from being exported.
Summary:
Samajwadi Party chief Akhilesh Yadav and Pragatisheel Samajwadi Party's (PSP) Shivpal Singh Yadav celebrated 80th birthday of SP founder Mulayam Singh Yadav separately.
Summary:
Singapore-based startup InstaReM has raised $20 million in a Series C funding round led by venture capital firms MDI Ventures and Beacon Venture Capital.
Summary:
Summary:
"The Cabinet...approved a capital cost of â¹189 crore for the setting up of...medical college," Finance Minister Arun Jaitley said.
Summary:
Five unidentified persons, who were reportedly travelling in a white SUV, allegedly looted around â¹52 lakh from a cash van in Bihar's Muzaffarpur on Thursday.
The police reached the spot.
Summary:
A court in Kerala has granted bail to BJP leader K Surendran and 71 others who were arrested for allegedly flouting prohibitory orders near Sabarimala Temple.
Summary:
US President Donald Trump joked that the "Fake News Media" was blaming him for traffic jams as he had gotten gasoline prices low.
"(M)ore people are driving and I have caused traffic jams throughout our Great Nation.
Summary:
Jet Airways pilots will reportedly meet the airline management on November 26 to discuss issues including delay in salary payment.
Summary:
A US couple found a $1.8-million (â¹12.8 crore) jackpot-winning lottery ticket while they were cleaning their home for Thanksgiving.
Summary:
The Central Board of Film Certification (CBFC), while justifying why it demanded 20 cuts in Govinda starrer 'Rangeela Raja', said, "The hero is shown as having no repentance of his actions and crimes, including rape, adultery." The board added that the film also objectifies women.
Summary:
'Roadies' creator Raghu Ram has announced that he will get married to his fiancée Natalie Di Luccio in December this year.
Summary:
Writer-producer Vinta Nanda, who had accused actor Alok Nath of raping her 20 years ago, said she is "willing to forgive" him if "he shows some remorse or sign of repentance".
Summary:
After slamming eight sixes during his unbeaten knock of 74 runs off 16 balls against Sindhis in T10 League, Rajputs' Afghan wicketkeeper-opener Mohammad Shahzad said he doesn't like Yo-Yo Test.
I do not care about Yo-Yo test," he added.
Summary:
Summary:
Reacting to PDP chief Mehbooba Mufti tweeting her letter to stake claim to form the Jammu and Kashmir government, state Governor Satya Pal Malik said, "Are governments formed through social media?
Summary:
Summary:
A man named Bikramjit Singh, who was arrested for his alleged involvement in a blast at a Nirankari Bhawan in Amritsar, was on Thursday produced before a court and sent to five days in police remand.
Summary:
The Centre has cleared the building of Kartarpur corridor from Dera Baba Nanak in Punjab's Gurdaspur to the International Border to provide pilgrims easy access to Gurdwara Darbar Sahib in Pakistan.
Summary:
A truck from Uttar Pradesh was set on fire by unidentified miscreants in Kokrajhar during Assam Bandh on Tuesday and its driver was run over by a vehicle as he attempted to flee, police said.
Summary:
Talking about her first meeting with her husband and former US President Barack Obama, Michelle said, "Not once, did I think about him as someone I'd want to date." Michelle revealed in her memoir 'Becoming' that she found herself "admiring Barack for both his self-assuredness and his earnest demeanour".
Summary:
Bibi's family has been in hiding since her acquittal, which has been opposed by hardline Islamists.
Summary:
Garrett, who had been dismissed twice, replaced Hodges, as the other on-field umpire had already been substituted earlier by a deputy due to illness.
Summary:
Jitendra Virwani of Bengaluru's Embassy Group follows Lodha with a wealth of â¹23,160 crore.
Summary:
"Every system and machine is capable to be used and misused," the apex court said.
Summary:
The company argued that the UK regulators failed to prove that British users were directly affected by the scandal.
Summary:
Google parent Alphabet's Chairman John Hennessy has said, "Anybody who does business in China compromises some of their core values." Adding that it includes "every single company", Hennessy also said that it's "because the laws in China are quite a bit different than they are in our own (the US) country".
Summary:
Summary:
National Conference leader Omar Abdullah on Thursday said his party backed rival PDP in staking claim to form a government in Jammu and Kashmir to save the state from its "current mess" and uncertainty.
Summary:
Finance Minister Arun Jaitley on Thursday said the Union Cabinet was briefed about the situation in Jammu and Kashmir where the Governor has dissolved the state assembly.
Summary:
Parida, who was suffering from cancer, began his political career with the Communist Party of India but later left the party.
Summary:
Australian Prime Minister Scott Morrison has said that India is the world's fastest-growing major economy and offers more opportunity for Australian businesses over the next 20 years than any other single market.
Summary:
On the second day of his three-day visit to Australia, President Ram Nath Kovind unveiled a statue of Mahatma Gandhi in Parramatta town in the presence of Australian Prime Minister Scott Morrison.
Summary:
The girl was playing outside her residence when the accused allegedly lured her to his house and raped her, police said.
Summary:
BJP General Secretary Ram Madhav claimed the PDP and National Conference came together to form the Jammu and Kashmir government as they "probably had instructions from across the border." PDP chief Mehbooba Mufti had staked claim to form the government with support from the NC and Congress.
Summary:
US Chief Justice John Roberts has called the country's judiciary independent, in response to President Donald Trump calling a judge who ruled against his migrant asylum order an "Obama judge".
Summary:
The Himalaya Drug Company launched its first brand campaign, 'Khush Raho, Khushaal Raho', bringing to life its vision of "Wellness in Every Home, Happiness in Every Heart".
Summary:
Maruti Suzuki, today, unveiled the Next-Gen Ertiga which the company promises will level up the MPV segment in India with its all-new design, enhanced space and the revolutionary Powerful K15 Smart Hybrid Petrol Engine for a powerful performance.
Summary:
The deceased children were students of Lucky Convent School in Birsinghpur, the police added.
Summary:
Badminton player PV Sindhu and former Indian cricket team captain Anil Kumble were among the celebrity guests who attended Deepika Padukone and Ranveer Singh's wedding reception held in Bengaluru on Wednesday.
Summary:
Actress Nafisa Ali, who recently revealed she was diagnosed with cancer, has said she wants to get better to welcome her third grandchild.
Nafisa is suffering from stage 3 peritoneal and ovarian cancer.
Summary:
Actress Udita Goswami and her husband Mohit Suri were blessed with a baby boy on Wednesday, the actress revealed on Instagram on Thursday.
Summary:
While Naidu has assets worth â¹2.99 crore, his son Lokesh has assets worth â¹21.40 crore.
Summary:
Shahzad's knock, which included zero dot balls, is the highest score in T10s.
Summary:
National Conference chief Omar Abdullah has tweeted a meme on the fax machine at J&K Governor Satya Pal Malik's residence after PDP's Mehbooba Mufti claimed she was unable to send a letter to him through fax to stake claim to form government.
Summary:
Jammu and Kashmir Governor Satya Pal Malik has cited several reasons for his decision to dissolve the Assembly amid competing claims to form a government.
Summary:
J&K Governor Satya Pal Malik has clarified that he didn't receive PDP chief Mehbooba Mufti's fax staking claim to form the government as no worker will be sitting near the fax machine on Eid. He added that even he has to do his own work during that time.
Summary:
Before joining Norwest in 2009, Juneja worked at Goldman Sachs.
Summary:
Flipkart Co-founders Sachin Bansal and Binny Bansal with 35 shareholders have been issued notices by the Income Tax Department, asking them to disclose their total earnings from the $16-billion Walmart deal.
Summary:
American missionary John Chau tried to befriend Sentinelese tribesmen with gifts including a football and fishing line before they shot an arrow at him which struck his Bible, his notes read.
Summary:
A woman Naxal, who was carrying a reward of â¹8 lakh on her head, was gunned down by security forces in Chhattisgarh's Sukma on Wednesday.
Summary:
American missionary John Allen Chau, who was killed on an Andaman island by tribals, had asked his family to not be angry if he gets killed in his notes, as per Mat Staver, founder and chairman of Covenant Journey.
Summary:
Mukesh Sharma, a passenger who suffered ear-bleeding during a cabin pressure loss on Jet Airways flight on September 20, has been diagnosed with "permanent hearing loss".
Summary:
The apex court left it to the BJP to take action against its Delhi chief.
Summary:
A passenger, who was allegedly in an inebriated state, reportedly created a ruckus and fought with the crew on a Hyderabad-bound IndiGo flight, minutes before takeoff from Delhi's IGI airport on Tuesday.
Summary:
Addressing a gathering in poll-bound Madhya Pradesh, UP CM Yogi Adityanath said, "Congress has not worked in the interest of the farmers.
Summary:
Summary:
Summary:
A coach of the express train derailed following the incident, but there were no casualties as the train was travelling at a slow speed, the police added.
Summary:
While no casualties and injuries were reported, at least 17 trains were affected as a result of the derailment.
Summary:
A 30-member delegation of farmers and tribals will be meeting Maharashtra CM Devendra Fadnavis to put forth the demands.
Summary:
President John F Kennedy got 1,200 Cuban cigars for himself before he ordered a trade embargo on the communist country in 1962.
Summary:
Skagen was inspired by the Danish coastal town from which they borrow a warm spirit and a minimalist mindset.
Summary:
The Sentinelese are an indigenous tribe who have been residing on the North Sentinel Island of the Andaman for over 55,000 years.
Summary:
Mohammad Shami bowled 26 overs in the first innings for Bengal in their Ranji match against Kerala despite being asked by BCCI to bowl only 15 overs/innings.
Summary:
BCCI CEO Rahul Johri, who resumed office after being cleared of sexual harassment charges, described the last six weeks as the "toughest period" of his life.
Summary:
Ex-India captain Mahendra Singh Dhoni's wife Sakshi Singh Dhoni took to social media to share a picture of herself with cricketer Robin Uthappa and his wife Sheethal.
Summary:
Venus and Barson's wife, who was driving the car, were both previously cleared.
Summary:
Delhi BJP chief Manoj Tiwari has said, "The attack on the CM (Arvind Kejriwal) was scripted by the AAP.
Summary:
National Conference chief Omar Abdullah on Wednesday retweeted PDP chief Mehbooba Mufti's tweets four times in 15 minutes, writing, "I never thought I'd be retweeting anything you said while agreeing with you.
Summary:
Former J&K CM and PDP's current chief Mehbooba Mufti on Wednesday said that it was "very strange" that the fax machine at Governor Satya Pal Malik's residence didn't receive her fax.
Summary:
Indonesia's largest online marketplace Tokopedia has become the country's most valued startup after raising $1 billion at a valuation of $7 billion, according to reports.
Summary:
A 20-year-old man, who was arrested from Uttar Pradesh, has confessed to raping and killing at least nine girls aged between three and seven over the past two years, Gurugram Police said on Wednesday.
Summary:
AAP on Wednesday tweeted a cartoon that compared the case of chilli powder attack on Delhi CM Arvind Kejriwal to Mahatma Gandhi's assassination.
Summary:
The frigate dispatched its aircraft, a Panther from the 36F Flotilla, to rescue the Indians who were clinging to the overturned hull.
Summary:
Brooke Phillips, a 40-year-old Australian woman, survived for six days in the desert by drinking her own urine, pasta sauce, and fluid from her car's windscreen wiper container.
Summary:
China's capital Beijing will assign citizens and firms with 'personal trustworthiness points' by 2021 under the country's 'social credit system'.
Summary:
Italian fashion house Dolce & Gabbana on Wednesday announced that its Instagram account and that of co-founder Stefano Gabbana's had been hacked and used to criticise Chinese people.
Summary:
AirAsia India has appointed IndiGo's former Chief Commercial Officer Sanjay Kumar as its Chief Operating Officer (COO) with effect from December 3.
Summary:
James Cordier, who reportedly managed around $150 million, said the recent volatility in the natural gas market "likely cost me my hedge fund".
Summary:
Ahead of Assembly elections in the state, Scindia said the Congress leaders are working on each others' strengths and are minimising weaknesses.
Summary:
Google has introduced an indoor maps feature on its 'Find My Device' app that will show users indoor layouts of airports, shopping centres or large buildings to help them find their smart devices.
Summary:
Google Play has removed 13 gaming applications with over 5,60,000 installs in total after a security researcher reported that they were Android malware.
Summary:
E-commerce giant Amazon on Wednesday emailed customers admitting that a "technical error" exposed an unknown number of customer names and email addresses on its website.
Amazon also claimed its website or systems were not hacked.
Summary:
Shiv Sena chief Uddhav Thackeray will carry soil from Shivneri fort, the birthplace of Maratha warrior king Chhatrapati Shivaji, during his visit to Ayodhya, his close aide Harshal Pradhan said.
Summary:
German astronaut and current ISS commander Alexander Gerst, on International Space Station's 20th anniversary, said, "I feel privileged to serve on the greatest machine ever built." Russian-built Zarya, the first ISS module, was launched on November 20, 1998.
Summary:
Eighty cloned fingerprints and a biometric machine were seized.
Summary:
US President Donald Trump has defended his daughter Ivanka for using a private email account to conduct official business, claiming, "There was no hiding." Trump added that Ivanka's emails were in the presidential records.
Summary:
Jammu and Kashmir Governor Satya Pal Malik dissolved the Legislative Assembly on Wednesday after PDP chief Mehbooba Mufti and J&K's People's Conference leader Sajad Lone staked claim to form the government.
Summary:
The collective strength of the three parties is 56 seats, she stated.
Summary:
Actors Deepika Padukone and Ranveer Singh on Wednesday took to their social media accounts to share their look for their first wedding reception being held in Bengaluru tonight.
Summary:
Talking to reporters in poll-bound Madhya Pradesh, Union Home Minister Rajnath Singh said, "India (people) has accepted that BJP is a political party which runs the government comparatively better than the Congress." "I said comparatively...no political party is perfect, neither are we, I never made such a claim.
Summary:
But a good thrilling game to start the series." India's target was revised to 174 in 17 overs due to DLS method despite Australia scoring 158 runs.
Summary:
Ahead of Madhya Pradesh Assembly elections, BJP's National Information & Technology cell head Amit Malviya on Wednesday tweeted a video of Congress leader Kamal Nath urging party workers to ensure Muslim votes.
Summary:
Before starting Ezetap in 2011, Abhijit held executive positions at Intuit, ngpay and Oracle Corporation.
Summary:
Reacting to the chilli powder attack on him on Tuesday, Delhi CM Arvind Kejriwal said the opposition is trying to get him killed.
Kejriwal, in the past, has been slapped and attacked with ink and slippers while campaigning.
Summary:
Tharoor had misspelt 'sincerity' as 'sinveroty' in a tweet on Tuesday.
Summary:
Meanwhile, Bharti denied the allegations and said he'll file a defamation case against the news anchor and the channel.
Summary:
The man was escorted by the police to the boarding gate but he walked towards runway instead of boarding the bus to his plane.
Summary:
The 14-year-old actress said that she will use the platform to highlight children's rights and issues.
It's a powerful privilege," the actress said.
Summary:
When asked if he listens to his own songs, 'Tum hi ho' singer Arijit Singh revealed that he feels "claustrophobic" listening to himself.
Summary:
The dashboard can be accessed through Facebook app's âÂÂsettings & privacyâ tab.
Summary:
nDefending Facebook COO Sheryl Sandberg's handling of company's disclosures about RussiaâÂÂs influence on elections, Facebook CEO Mark Zuckerberg has said, "I hope we work together for decades more to come." "Sheryl is a really important part of this company," he added.
Summary:
Delhi Deputy Chief Minister Manish Sisodia on Wednesday alleged the BJP leadership had prior knowledge of the attack on Chief Minister Arvind Kejriwal.
Summary:
Former PM Manmohan Singh on Wednesday said PM Narendra Modi-led regime is making "careful, well-thought-out calibrated effort" to weaken democracy.
He said history shall never forgive present generation if situation is not changed.
Summary:
The move to appoint an interim CEO was reportedly backed by the French government, which owns a 15% stake in Renault.
Summary:
An international team of scientists has claimed to have discovered the world's smallest dinosaur footprints in South Korea.
Summary:
The woman took the extreme step over fear that she might not do well in her examination and consequently not be able to secure a good job, police said.
Summary:
Punjab Chief Minister Amarinder Singh on Wednesday said the grenade that was thrown at a religious gathering in Amritsar killing three people was made in Pakistan.
Summary:
An official on Wednesday said a 6-year-old boy got separated from his parents while alighting from a train at Kolkata's Metro station and was rescued sometime later three stations away.
Summary:
A 26-year-old man has been charged in Norway for sexually abusing over 300 boys in the biggest ever sexual abuse case in the country.
Summary:
British academic Matthew Hedges has been jailed for life in the UAE on charges of spying for the UK government, following a trial that lasted for five minutes, his family said.
Summary:
Yes Bank on Tuesday said the recent resignations of its board members will "bear no impact" on the selection process for a new MD and CEO.
Summary:
The match witnessed Team India opener Shikhar Dhawan become the highest run-scorer in T20I cricket in 2018.
Summary:
Actress Udita Goswami took to social media to reveal that she is pregnant with her second child.
Summary:
Actress Shweta Tripathi, while speaking about her bold scenes in 'Mirzapur', said, "I even for two second didn't think of my scenes as 'bold scenes'.
Summary:
Actress Kareena Kapoor, while speaking about her husband Saif Ali Khan's children from his first marriage, Sara and Ibrahim, said, "I can only be their friend, I can never be their mother." "They already have an amazing mother who has brought them up spectacularly," she added.
Summary:
However, it was not possible to determine if the plastic waste had caused the whale's death due to its decayed body.
Summary:
The anonymous sexual harassment allegations against BCCI CEO Rahul Johri were found to be false by the independent inquiry committee formed by the Committee of Administrators (CoA).
Summary:
Logistics startup Delhivery could become a unicorn, or a startup with $1-billion valuation, with a $450 million investment from SoftBank Vision Fund, according to reports.
Summary:
The incident was shared on Twitter by a person who was on the same flight.
Summary:
Summary:
President Ram Nath Kovind arrived in Australia on Wednesday for a four-day visit, becoming the first Indian head of state to visit the country.
Summary:
A Delhi government school teacher was suspended after a video showing him take head massage from a student in a classroom went viral.
Summary:
Iran has said that its security forces are ready to carry out anti-terror operations on Pakistani soil under the supervision of the Pakistani forces.
Summary:
Dolce & Gabbana has been accused of racism over a new advertising campaign featuring an Asian model trying to eat Italian food with chopsticks.
Summary:
Kotak Mahindra Bank's MD and CEO Uday Kotak welcomed the decisions taken at RBI's recent board meeting and said the outcomes will be positive for the economy.
Summary:
He will build WhatsApp's first country-specific team, which will focus on WhatsApp's business products.
Summary:
Indivior derives 80% of its annual $1 billion revenues from Suboxone.
Summary:
The 75-year-old actor and his wife are now separated and living apart, reports added.
Summary:
After All India Majlis-e-Ittehadul Muslimeen chief Asaduddin Owaisi claimed Congress leader Maheshwar Reddy offered him â¹25 lakh to cancel his campaign rally, Reddy said he will quit politics if the allegations are proved.
Summary:
Researchers from IIT-Hyderabad are developing a smartphone-based sensor system to detect adulteration in milk.
Summary:
Facebook on Tuesday confirmed several users were unable to access the social media platform including its apps Instagram, WhatsApp, and Messenger as "a server configuration caused intermittent problems...globally".
Summary:
Former Karnataka Chief Minister Veerappa Moily on Wednesday said Congress President Rahul Gandhi is the "best material" to become the prime minister.
Summary:
Mumbai-based digital lending startup InCred has raised â¹300 crore in funding led by Founder Bhupinder Singh and its private equity investors including Paragon Partners co-founded by Siddharth Parekh.
Summary:
The highest number of personnel killed in action were from the Border Security Force (BSF).
Summary:
A woman who was allegedly about to be killed by her own parents was rescued from Agra by Delhi Commission for Women and UP Police on Sunday.
Summary:
Pakistan has issued over 3,800 visas to Sikh pilgrims from India to participate in the birth anniversary celebrations of Guru Nanak Dev. This is the largest number of visas issued in recent years to Sikh pilgrims for Guru Nanak Dev's birth anniversary celebrations, according to Pakistan.
Summary:
US President Donald Trump has submitted written responses to questions from Special Counsel Robert Mueller in his probe of Russian meddling in the 2016 presidential elections and the alleged collusion with the Trump campaign.
Summary:
India had about 2.21 lakh ATMs as of September end.
Summary:
Akshay Kumar, who was questioned on Wednesday about his alleged involvement in the 2015 Punjab sacrilege case, said, "All allegations of...meeting look like...movie script." "I was in Punjab in 2011 for a performance that's when I [met] Sukhbir Badal," he added.
Summary:
Fashion designer Sabyasachi Mukherjee has clarified that Deepika Padukone's Kanjeevaram saree, which she wore for her Konkani wedding, wasn't designed by him but bought by her mother Ujjala Padukone from Bengaluru's Angadi Galleria.
Summary:
During the 16th over of Australia's innings in the first India-Australia T20I on Wednesday, all-rounder Glenn Maxwell smashed a Krunal Pandya delivery, which went on to hit the spider cam.
Summary:
"I have to stay a few more days in Macau until I'm transportable," she wrote on Facebook.
Summary:
Ex-Australia coach Darren Lehmann has said no meeting took place to discuss ball-tampering in the Cape Town Test against South Africa in March.
It was just a couple of guys...just doing it," he added.
Summary:
The Florida Supreme Court on Thursday said judges need not disqualify themselves from cases in which they are "Facebook friends" with attorneys, adding "a Facebook friend may or may not be a friend".
Summary:
Home Minister and senior BJP leader Rajnath Singh on Wednesday said the Congress is like "a baraat without a groom", claiming that it is leaderless and lacks command structure.
Summary:
As many as five labourers were killed and nine injured as a car ran over them while they were sleeping on a flyover in Haryana's Hisar on Wednesday morning.
Summary:
Speaking about the 1984 anti-Sikh riots, Union Minister Ravi Shankar Prasad said, "With his statement that Earth shakes when a big tree falls, former PM Rajiv Gandhi tried to justify what had happened." "This was a clear message to everyone to hush-up the investigation," he added.
Summary:
A jail official said the man had told inmates he was trapped in the case, adding that they suspect he was under mental pressure.
Summary:
The CBI on Tuesday arrested a quack in connection with Bihar's Muzaffarpur shelter home sex scandal.
Summary:
Police said they are currently probing if it was an attack or the powder fell unintentionally.
AAP spokesperson Saurabh Bharadwaj tweeted, "@DelhiPolice under @LtGovDelhi already planting stories to protect the attacker.
Summary:
An Italian businessman was arrested at the Rajiv Gandhi International Airport in Hyderabad on Wednesday after he was found carrying 22 live bullets and three used bullets.
Summary:
The survivor dragged the man from the bus and handed him over to the Delhi Police.
Summary:
After a 27-year-old American tourist was killed on an Andaman island by tribals, the local police said, "He was attacked by arrows but he continued walking." "The fishermen saw the tribals tying a rope around his neck and dragging his body," officials added.
Summary:
South Korea's Kim Jong-yang was elected as the Interpol's new President on Wednesday for a two-year term.
Summary:
The Federation of Indian Airlines, which represents Jet Airways, IndiGo, SpiceJet and GoAir, has requested the government to help the airlines obtain penalty-free, one-month unsecured credit from oil companies and airports.
Summary:
Summary:
Days after announcing his resignation from BJP's primary membership, Ladakh MP Thupstan Chhewang said "false" promises and "unwise" decisions were the reason behind his decision and denied reports of his desire to pursue a "spiritual life".
Summary:
The Election Commission has sent a notice to five politicians for allegedly violating the Model Code of Conduct (MCC) ahead of the Telangana Assembly elections on December 7.
Summary:
Former Finance Minister P Chidambaram on Tuesday called External Affairs Minister Sushma Swaraj's decision to not contest the 2019 Lok Sabha elections as "smart".
Summary:
Chennai-based IoT startup DeTect Technologies has raised $3.3 million in a Series A round led by SAIF Partners.
Summary:
SoftBank is reportedly planning to appoint venture capitalist Sumer Juneja as its India head, around three years after searching for an executive to lead its investments in the country.
Summary:
Summary:
A trainer aircraft crashed in an agriculture field near Mokila village in Telangana's Ranga Reddy district.
"As per preliminary information, the aircraft crashed due to some technical problem," Deputy Commissioner of Police (Shamshabad Zone) said.
Summary:
Solheim's air travels were seen as contrary to the efforts to reduce carbon emissions.
Summary:
The Supreme Court has directed Amrapali Group to reveal by December 3 details of all properties held in the name of directors, their family members, relatives, chief financial officers and statutory auditors.
Summary:
Mercedes-Benz India launched the CLS 300 d, the dynamic and elegant four-door coupe, now in its third generation.
Summary:
One such learner, Vivek recently transitioned from a Developer to Data Scientist with 70% hike.
Summary:
Great Learning's and Great Lakes' PG program in Business Analytics and Business Intelligence was ranked the No. 1 analytics program in India for the 4th consecutive year by Analytics India Magazine.
Summary:
Nothing." Trump had earlier alleged that the Pakistan government had helped Osama bin Laden hide in the country.
Summary:
Actor Angad Bedi's father Bishan Singh Bedi took to social media to share the first picture of his newborn granddaughter Mehr Dhupia Bedi.
Mehr, who is Angad and Neha's first child, was born on Sunday.
Summary:
Nick will be arriving in India with his family this weekend and the couple's wedding festivities will begin on November 28, reports added.
Summary:
Alok had denied Vinta's allegations.
Summary:
After Deepika Padukone and Ranveer Singh released new pictures from their wedding, actress Raveena Tandon tweeted, "On a long chatty flight with @deepikapadukone a couple of years ago, she said 'Ranveer makes me feel I'm home'." "I'll never forget those words, and truly she looks like she's Home," Raveena added.
Summary:
Twitter's legal head Vijaya Gadde broke down into tears during a meeting between Twitter CEO Jack Dorsey and female journalists, and apologised for the platform "enabling caste bias", journalist Barkha Dutt claimed.
Summary:
"This woman...is a big actor...Banerjee tried several times to mend his ways," his wife said.
Summary:
SpaceX plans to launch astronauts to ISS by June 2019.
Summary:
The Delhi Police on Tuesday filed an FIR against former Delhi University Students' Union President Ankiv Baisoya for allegedly submitting a fake bachelor's degree from a Tamil Nadu varsity for admission in master's.
Summary:
AAP leader and RTI activist Suresh Sharma was shot at thrice by an unidentified man in Amritsar on Tuesday evening.
Summary:
John Allen Chau, a 27-year-old American tourist was allegedly murdered on Andamans' North Sentinel Island, inhabited by an indigenous tribe known to resist outside contact.
Summary:
The Delhi Police have arrested a man for allegedly masturbating in front of a student in a bus.
Summary:
The Haryana Police has arrested a "serial killer" named Jagtar Sinha, who confessed to killing seven-eight people.
I have murdered people in Faridabad, Palwal, Kurukshetra, and Punjab," Sinha said in front of reporters.
Summary:
External Affairs Minister Sushma Swaraj on Tuesday said India sought diplomatic access to Kulbhushan Jadhav, who is currently lodged in a Pakistani jail after being convicted for spying, two days ago.
Summary:
He joined the network in 2011 as CEO of its general entertainment channel Colors and was elevated to COO of Viacom18 in May 2017.
Summary:
Summary:
After Twitter CEO Jack Dorsey was criticised for posing with a 'Smash Brahminical Patriarchy' poster, Congress leader Manish Tewari tweeted, "Why blame @CreatorOfTwitt.
Summary:
Facebook Co-founder and CEO Mark Zuckerberg in an interview on Tuesday turned down speculations that he may step down as the company's Chairman.
Summary:
In an apparent dig at the BJP, Shiv Sena chief Uddhav Thackeray on Tuesday asked, "Emergency is quietly approaching today.
Summary:
Kerala Pradesh Congress Committee working president MI Shanavas passed away early on Wednesday at a private hospital in Chennai following a prolonged illness.
Summary:
Hundreds of people, including social activists and Congress leaders, marched towards the residence of Goa Chief Minister Manohar Parrikar on Tuesday to demand his resignation.
Summary:
Summary:
Summary:
Saudi Arabia and the UAE have pledged $500 million in aid to war-torn Yemen as millions of people in the country face starvation.
Summary:
He had earlier paid off loans of around 350 farmers in Maharashtra.
Summary:
Preity Zinta, while issuing a statement on her #MeToo comment which was criticised on social media, said, "It's ironic that someone who has gone through abuse, as I have, has to clarify this." "It's unfortunate...some...comments were taken out of context," she added.
Summary:
Talking about Delhi Daredevils and Kings XI Punjab releasing Gautam Gambhir and Yuvraj Singh respectively, former chief selector Sandeep Patil said even he would've dropped them if he was a franchise owner.
Summary:
Summary:
After Delhi Police claimed they have to verify if chilli powder attack on CM Arvind Kejriwal was unintentional, ex-J&K CM Omar Abdullah tweeted, "How does chilli powder that "falls from his hand" defy gravity & fall upwards in to @ArvindKejriwal ji's eyes?" "What a shame!!
Summary:
Summary:
At least nine people died after a bus carrying around 30 passengers fell around 30 feet off the Mahanadi bridge in Odisha's Cuttack.
Summary:
Hizbul Mujahideen terrorist Ansar Ul Haqe, who allegedly killed CID Intelligence Officer of Jammu and Kashmir Police Imtiyaz Ahmad Mir last month, was arrested at Terminal 3 of Delhi's IGI Airport on Tuesday.
Summary:
In a video that went viral, Fida can be seen stopping the security from putting out the fire.
Summary:
As per the new rules, reporters can raise one question at a press conference and follow-ups will be permitted at the President or White House officials' discretion.
Summary:
Following US President Donald Trump's criticism of Pakistan harbouring Osama bin Laden, Pakistan's Foreign Secretary Tehmina Janjua said that the former al-Qaeda chief is part of "a closed chapter of history".
Summary:
More than 50 people were killed after a suicide bomber blew himself up at a religious gathering in the Afghan capital Kabul on Tuesday, officials said.
Summary:
He urged people to think for a moment before voting for Congress.
Summary:
Chhattisgarh has recorded 71.93% voter turnout till 6 pm in the second phase of Assembly elections.
The second and final phase of the Chhattisgarh Assembly elections was held on Tuesday for 72 of 90 seats in the state.
Summary:
Prakash will be responsible for developing and executing strategic direction and priorities of the company.
Summary:
A group of Thane-based fraudsters allegedly used a loophole in Google Maps to edit Bank of India's (BOI) branch contact information to get customers to share sensitive account details, according to Maharashtra cyber police.
Summary:
Odisha Chief Minister Naveen Patnaik on Tuesday moved a resolution in the Assembly, seeking 33% reservation for women in Parliament and Legislative Assemblies.
Summary:
World's richest person Jeff Bezos on Tuesday announced that his 'Day 1 Fund' for the homeless has made its first $97.5 million donation.
Summary:
nBengaluru-based health and fitness startup Cure.fit has acquired mental healthcare startup Seraniti for an undisclosed amount.
Summary:
SoftBank's $100-billion Vision Fund has invested $2 billion in Korean e-commerce firm Coupang.
The funding reportedly values Coupang at $9 billion post-money.
Summary:
Ghosn is also the Chairman and CEO of Renault, in which France holds a 15% stake.
Summary:
The Delhi High Court on Tuesday directed social media platforms Facebook and Twitter to block the weblinks of an offending article levelling "scandalous" allegations against a sitting judge of the High Court.
Summary:
Odisha Chief Minister Naveen Patnaik has announced ex-gratia of â¹2 lakh for the next of kin of those who died when a bus carrying over 50 people fell off the Mahanadi bridge, Cuttack.
Summary:
Maharashtra Navnirman Sena (MNS) chief Raj Thackeray has paid tribute to Stan Lee, the co-creator of Marvel Comics, through his cartoon.
Summary:
The Maldives will rejoin the Commonwealth after two years following the cabinet's approval backing the move.
Summary:
World's largest cryptocurrency Bitcoin tumbled as much as 10% to fall below $4,300 on Tuesday to its lowest level in 13 months.
Summary:
Under sale and leaseback agreement, Air India will sell the aircraft and immediately lease it back from the leasing company.
Summary:
KT Rama Rao has assets worth â¹4.93 crore and total income of â¹74 lakh.
Summary:
After the ICC dismissed PCB's case against BCCI seeking compensation for dishonouring the MoU regarding bilateral series, the BCCI will now move the Dispute Panel to recover its legal cost from PCB.
Summary:
After BCCI asked Bengal to let Mohammad Shami bowl only 15 overs per innings in their Ranji Trophy match against Kerala, ex-chief selector Dilip Vengsarkar termed the move as absurd.
Summary:
After Twitter CEO Jack Dorsey faced criticism for posing with a poster saying 'smash Brahminical patriarchy', Twitter's legal head Vijaya Gadde said, "I'm very sorry for this.
Summary:
Volkswagen Group has announced that Gurpratap Boparai, Managing Director of Skoda Auto India, will also become MD of Volkswagen India with effect from January 1.
Summary:
The CBI on Tuesday arrested Saista Praveen alias Madhu, the woman who managed the NGO which was allegedly involved in the Bihar's Muzaffarpur shelter home sex scandal.
Summary:
The police added Mounica would stay with her in-laws for a few months and then vanish with gold, cash and other valuables.
Summary:
While some of these cars will replace the non-functioning cars with the government, others will be purchased citing security issues at the Kumbh.
Summary:
The Delhi Police have released pictures of two suspected terrorists in the city and issued an advisory to the public to keep a lookout for them.
Summary:
India and Russia on Tuesday signed a $500-million deal to build two warships in Goa for the Indian Navy, officials said.
Summary:
After a nine-hour drive, the stranger took Sanders and her baby safely back to the hospital, which escaped the flames.
Summary:
In April, the department had changed rules to recognise transgenders as an independent category of applicants for obtaining PAN.
Summary:
Billionaire Pallonji Mistry's Shapoorji Pallonji Group is looking to raise about $1 billion by selling up to 30% stake in its solar unit Sterling & Wilson.
Summary:
Singer Zayn Malik took to Instagram to share a dubstep-styled cover of the song 'Allah Duhai Hai' from Salman Khan starrer 'Race 3'.
Summary:
A curling team that included a member of the 2014 Olympic gold-winning Canadian side was kicked out of a Canadian tournament for being "extremely drunk".
Summary:
Former Indian cricketer Sachin Tendulkar said that sports should be included in the school syllabus as lessons learned on the field come in handy even off it.
That is best for children," Sachin said.
Summary:
Uttar Pradesh Minister Shrikant Sharma on Tuesday said Congress President Rahul Gandhi could not develop Amethi in 15 years, "what can he promise for Rajasthan, Chhattisgarh and Madhya Pradesh?" "Over 1.15 lakh houses are without power (in Amethi)," he added.
Summary:
Elon Musk-led Tesla accidentally gave a forum user access to information of 1.5 million accounts on its platform.
Summary:
A team of international scientists has claimed to have discovered a star identical to the Sun. Named HD186302, the star formed in the same cluster as the Sun about 4.6 billion years ago, the team claimed.
Summary:
"We can't wait to see this bird fly!" NASA chief Jim Bridenstine said.
Summary:
The air pollution is so severe that it shortens the average Indian's life expectancy by over four years, according to a study.
Summary:
Four men on Saturday allegedly brutally tortured and raped a male dog in Mumbai.
Summary:
The infant reportedly fell into the gap after she slipped from her mother's arms while she was getting off the train.
Summary:
The Maldives will pull out of a trade deal with China because it was a "mistake" to strike such a deal, Mohamed Nasheed, former Maldivian President and chief of Maldivian Democratic Party which leads the ruling federal alliance, said.
Summary:
Iraq has been carrying out air strikes against ISIS in Syria with the approval of Syrian President Bashar al-Assad and the US-led coalition fighting the militant group.
Summary:
IT services major Wipro has appointed former IBM executive Bill Stith as the Senior Vice President and Global Head of the company's healthcare and life sciences division.
Summary:
India's second-biggest wireless carrier Bharti Airtel is reportedly raising over $2 billion in loans amidst increased competition in the Indian telecom sector.
Summary:
The Delhi Patiala House Court on Tuesday pronounced the death sentence for Yashpal Singh and announced life imprisonment for another convict Naresh Sherawat in the 1984 anti-Sikh riots case.
Summary:
Deepika Padukone and Ranveer Singh took to Instagram to share new pictures from their Konkani wedding ceremony, which was held on November 14.
Summary:
Deepika Padukone and Ranveer Singh took to Instagram to share new pictures from their Sindhi wedding ceremony, which was held on November 15.
Summary:
"Aggression depends on how the situation is on field.
If the opposition is aggressive towards you then you counter it.
Summary:
Summary:
A CCTV footage of the red chilli powder attack on Delhi CM Arvind Kejriwal has surfaced online.
Summary:
Maharashtra State Excise Department on Monday imposed a fine of â¹18.9 lakh on Deepak Wines of Bandra Pali Hill following complaints of liquor being home delivered during the night without a proper license.
Summary:
Guzman is charged with 17 criminal counts, including drug trafficking and conspiring to murder rivals.
Summary:
Jones was summoned over "the unwarranted and unsubstantiated allegations made against Pakistan," the Foreign Ministry said.
Summary:
US payments giant Visa has said the RBI's move asking payments companies to store data in India will increase costs and affect its ability to compete with domestic rivals.
Summary:
Senior Congress leader Kamal Nath on Tuesday said that he has never said that "we will ban the Rashtriya Swayamsevak Sangh (RSS) in Madhya Pradesh".
Summary:
Indian captain Virat Kohli signalled 'it's a six' after hitting a shot in the nets ahead of the first T20I between India and Australia, which is scheduled for Wednesday.
Summary:
The Union Sports Minister, Rajyavardhan Singh Rathore, on Tuesday, said that India will be amongst the top medal-winning nations at the 2028 Olympic Games.
The wheels are turning," said the former Olympic silver medallist.
Summary:
Atletico Madrid's former footballer Yannick Carrasco left a Dalian Yifang teammate needing hospital treatment for a nose injury after a fight reportedly broke out between the players in training at the Chinese Super League (CSL) club.
Summary:
The Indian Institute of Technology Kharagpur has developed an artificial intelligence (AI) tool to filter fake news about natural disasters on social media platforms like Facebook.
Summary:
Facebook-owned Instagram on Monday said that it has started removing fake "likes, follows and comments from accounts that use third-party apps to boost their popularity".
Summary:
Several Facebook Messenger users across the globe on Tuesday reported they were unable to log in or receive messages on the messaging platform.
Summary:
Former Bihar minister Manju Verma who surrendered before a court in Begusarai on Tuesday, arrived in an auto rickshaw and fainted as she entered the court premises.
Summary:
Summary:
Summary:
Bengaluru-based fintech startup Signzy has raised â¹24 crore in a Series A funding round led by Kalaari Capital and Stellaris Venture Partners.
Summary:
Further, a NASA official said that space exploration "has driven us together" as "an example to the outside world".
Summary:
According to the calculations, the phenomenon amounts to 3 billion teragrams of water every million years.
Summary:
In a move to combat the rise in road accidents, drivers caught speeding, talking on the phone and jumping a signal could have their licences confiscated for a minimum of three months in Maharashtra.
Summary:
It also encourages states to adopt measures to eliminate violence and sexual harassment in digital contexts.
Summary:
While addressing criticism that she has a career in fashion because of her parents, Gigi Hadid said her parents "worked their a**es off" and gave her a life with their hard work.
family," Gigi said.
Summary:
Billionaire Mukesh Ambani-led Reliance Industries is reportedly planning a new plant at its Jamnagar refinery with a capacity to process as much as 30 million tons of crude a year.
Summary:
Yes Bank independent director Rentala Chandrashekhar resigned on Monday, marking the third exit from the private lender's board in a week.
Summary:
Sachin ended his career with 34,357 international runs and 100 international hundreds.
Summary:
A video shows the woman being held back by two airport security staff shortly before the Jakarta-bound flight was taking off.
Summary:
Deepika and Ranveer, who returned from Italy on Sunday, have headed to Bengaluru, reportedly to host their wedding reception.
Summary:
The video of the incident shows a man suddenly putting a garland around Shekhawat's neck, following which the MLA and his supporters beat the man up.
Summary:
Ghosn was arrested after Nissan said he engaged in wrongdoing including personal use of company money and under-reporting compensation.
Summary:
However, he returned to complete the wedding with the bullet in his shoulder after undergoing treatment for three hours at hospital.
"The bullet's stuck between the shoulder bones.
Summary:
Summary:
This comes days after the TeH released a statement alleging that Mir had been receiving life threats.
Summary:
Thangasamy, who passed away in September aged 81, had planted lakhs of saplings across the state.
Summary:
A man has been arrested for allegedly throwing red chilli powder at Delhi CM Arvind Kejriwal outside his chamber in Delhi Secretariat on Tuesday.
Summary:
The bronze plaque which read, "In Loving Memory of Saddam Hussein", was removed following a backlash by local residents.
Summary:
The Income Tax Appellate Tribunal [ITAT] passed an order in favour of Sushmita Sen, ruling the â¹95 lakh she received from Coca-Cola for settling a sexual harassment complaint would not be classified as an income.
Summary:
Ganesh Hegde will choreograph Priyanka Chopra and Nick Jonas' sangeet ceremony, as per reports.
Priyanka, who will be performing at her sangeet ceremony, will be wearing an outfit designed by Abu Jani Sandeep Khosla, reports suggested.
Summary:
Rajasthan MLA Gyan Dev Ahuja has been booked for violating the model code of conduct by allegedly distributing money to his supporters before filing his nomination as an independent candidate on Monday.
Summary:
PM Narendra Modi on Tuesday said he used the "bitter medicine" of demonetisation to bring back money into the banking system.
Summary:
The Congress on Tuesday claimed faulty Electronic Voting Machines are being deployed in its strongholds in Chhattisgarh.
Summary:
Indian all-rounder Hardik Pandya, who is recovering from an injury he suffered in the Asia Cup in September, posted a video of him bowling as a part of his training following a 60-day recovery break.
Summary:
Summary:
Indian cricketer and former captain MS Dhoni took to the football field to play a charity match alongside the likes of Abhishek Bachchan and Ranbir Kapoor among others.
Summary:
The company said a routine audit that wasn't part of the industry database discovered the content on the platform.
Content safeguards are a challenging aspect of operating scaled platforms," Tumblr added in a statement.
Summary:
The crater was chosen after a five-year search that examined some 60 other sites on Mars.
Summary:
Scientists have created a 360-degree virtual reality (VR) simulation of the black hole in the centre of the Milky Way known as Sagittarius A*.
Summary:
The youth, who also filmed the act, is absconding.
Summary:
The report attributed the reduction largely to a substantial decline of the disease in "highly malarious Odisha".
Summary:
Sruthi and Julia Huesa, who was appointed Vice President, ran a campaign 'Make Harvard Home'.
Summary:
Union External Affairs Minister and an MP from Madhya Pradesh's Vidisha, 66-year-old Sushma Swaraj in a press conference on Tuesday announced that she will not contest the 2019 Lok Sabha Elections.
Summary:
Raja was batting on 98 before playing the match's last ball.
Summary:
"Mehr Dhupia Bedi says hello to the world," she wrote in the caption to the picture.
Summary:
He claimed, "Congress people...have so much pride in their wealth.
Summary:
Cricket Australia Board has unanimously agreed not to reduce year-long bans imposed on Steve Smith and David Warner and the nine-month ban imposed on Cameron Bancroft for ball-tampering.
Summary:
New Zealand has three India-born players in the side namely Ajaz Patel, Jeet Raval, and Ish Sodhi.
Summary:
The ICC's Dispute Panel has dismissed Pakistan Cricket Board's case demanding â¹497-crore compensation from the BCCI.
Summary:
Punjab Chief Minister Amarinder Singh on Monday said that the Amritsar grenade attack seemed to carry PakistanâÂÂs signature.
Summary:
Former Bihar minister Manju Verma, who had been evading arrest for weeks, on Tuesday surrendered in a Begusarai court in connection with ammunition found at her house during investigation in Muzaffarpur shelter home case.
Summary:
The cyclone had uprooted a coconut tree that fell on the barn, leading to the girl's death.
Summary:
Ahead of the 550th birth anniversary of Guru Nanak next year, the Centre has announced it will set up a telescope along the border for devotees to view Kartarpur Sahib in Pakistan.
Summary:
Railway Minister Piyush Goyal on Tuesday shared a video of the speed trial of India's first engine-less train 'Train 18', which he said was conducted successfully on Moradabad-Bareilly route.
Summary:
A man on Monday tried to commit suicide by slitting his throat in a Visakhapatnam court after he was convicted and sentenced to 14 years in jail in a ganja smuggling case.
Summary:
A US judge has temporarily blocked President Donald Trump's order refusing asylum to migrants who cross the southern border illegally.
Summary:
Actress Priyanka Chopra will be performing at Isha Ambani and Anand Piramal's sangeet ceremony which will take place in December in Udaipur, as per reports.
Summary:
Deepika Padukone and Ranveer Singh left from Mumbai today for Bengaluru where they will be hosting their first wedding reception on November 21, as per reports.
Summary:
Theatre owners are "planning to approach the sub-distributors to get a refund" for the losses of Amitabh Bachchan and Aamir Khan starrer 'Thugs of Hindostan'.
Summary:
Singh claimed he hasn't used the number in four years.
Summary:
Indian all-rounder Krunal Pandya has been named in the 12 member-strong squad for the upcoming first T20I against Australia.
Summary:
Indian boxer MC Mary Kom has assured a medal for herself after reaching the semifinal stage of the AIBA Women's World Championship after beating China's Yu Wu 5-0 in the quarter-final of the 48 kg category.
Summary:
Several users have reported a software glitch in Google Pixel 3 which disables the smartphone's camera.
Summary:
SpaceX CEO Elon Musk on Tuesday said he has renamed the space startup's largest 'BFR' rocket as 'Starship'.
Summary:
Summary:
Summary:
They were honoured at the American Bazaar Women Entrepreneurs and Leaders Gala.
Summary:
Australia has warned Indians not to fall for fake marriage scams offering permanent residency.
Summary:
Further, it said, "There has been no change to our military-to-military relationship with Pakistan."
Summary:
All the clothes collected by Myntra will be delivered to people in rural areas by Goonj as a part of its development work.
Summary:
Akshay Kumar has revealed when he joined Bollywood, no producer or director would "even look at him" thinking "he won't be able to act so just give him action [films]".
Summary:
"Claiming he worked for gangster Chhota Shakeel, Nabi threatened Salim of dire consequences if he didn't get Salman in touch with him," said police.
Summary:
"We don't think any of you deserve a hearing," CJI Ranjan Gogoi said, handing over the media report to Verma's lawyer.
Summary:
Voting for 18 seats had taken place in the first phase of elections on November 12.
Summary:
This was the fourth-narrowest margin of victory by runs in Test cricket history.
Summary:
Twitter CEO Jack Dorsey was criticised for promoting hate speech after he was seen holding a placard that read "Smash Brahminical Patriarchy" during his India visit.
Summary:
Three workers of the ruling AIADMK, who were serving life imprisonment for the death of three female students, were released from a Tamil Nadu jail on Monday.
Summary:
Over â¹1.92 lakh will be given per hectare where 175 coconut trees were cultivated while â¹72,100 per hectare will be given for re-cultivation.
Summary:
Four professors of IIT-Kanpur have been booked under SC/ST anti-atrocities act for allegedly harassing a Dalit faculty member of the institute's aerospace department.
Summary:
Vietnam National University students and the spouses of Indian embassy staff sang 'Yeh Dosti Hum Nahi Todenge' for President Ram Nath Kovind and his wife Savita Kovind.
Summary:
This is the second major blast at the depot after at least 13 people were killed in a fire while disposing explosives in 2016.
Summary:
The live coverage of the Golden Horse Awards was cut in China after a documentary filmmaker called for Taiwan to be recognised as an "independent entity" after receiving the award.
Summary:
However, the selfie taken by Precopia's mother proved he was at a hotel, 70 miles from the accuser's home.
Summary:
Anushka joined celebrities like Oprah Winfrey and Cristiano Ronaldo in having a statue with interactive features.
Summary:
Summary:
A video shows Madhuri Dixit dancing on late actress Sridevi's 'Hawa Hawai' song from her 1987 film 'Mr. India' and paying tribute to her at an award show.
Summary:
Summary:
Senior Congress leader Jyotiraditya Scindia has said the Congress will order a "fast-track" probe into the Vyapam scam and punish the guilty once it comes to power in Madhya Pradesh.
Summary:
Summary:
Gupta, who filed his nomination on Monday, had been denied a ticket by the BJP.
Summary:
Talking about International Space Station (ISS) rocket launches, US aerospace company Northrop Grumman's rocket program head Kurt Eberly has said, "I have about three heart attacks each launch countdown." After the rocket was launched to ISS last week, Eberly added, "I think it's five...heart attacks.
Summary:
In 2015, 111 Indian enclaves had become part of Bangladesh while 51 Bangladeshi enclaves joined India.
Summary:
The Uttarakhand police on Monday arrested four people for allegedly raping a minor girl in Sahaspur.
Summary:
US President Donald Trump's daughter Ivanka used a personal email account to send emails about government business, a Washington Post report has claimed.
Summary:
The White House has restored CNN reporter Jim Acosta's press pass, which was revoked after he had an angry exchange with President Donald Trump during a news conference.
Summary:
Jet Airways' pilots have reportedly threatened not to perform additional duties if their salary dues are not cleared by November 30.
Summary:
Sinha also said Union Minister Haribhai Parthibhai Chaudhary took "a few crores" to help a businessman.
Summary:
In the video, AbRam can be heard shouting "No pictures!" to the photographers after sitting inside the car.
Summary:
The tourists were stuck in the elevator for around two and a half hours before being rescued by firefighters, who had to break walls.
Summary:
Talking about India's Australia tour, ex-India captain Bishan Singh Bedi said, "Our team's made of one person, everything is about Kohli." "The amount of focus there is, [the media] doesn't realise how much pressure [it is] putting on...Kohli," he added.
Summary:
A plane carrying the Otago Volts cricket team was struck by lightning while it was descending towards New Zealand's Dunedin Airport.
Coming into Dunedin was particularly nasty," said Otago Volts' co-captain Jacob Duffy.
Summary:
An increased cash flow was among the issues behind an alleged rift between the Centre and RBI.
Summary:
Purale refused to link his account with Aadhaar citing his fundamental right to privacy.
Summary:
An IndiGo pilot from Chennai, Pradeep Krishnan, touched his grandmother and mother's feet on their first flight before flying the plane.
Summary:
Princess Beatrice of York, who is eighth in line to the British throne, took an Uber cab at the airport after landing in Los Angeles.
Summary:
A team of polio vaccinators was caught faking data and wasting vaccine in Pakistan's capital Islamabad.
Summary:
The police on Monday said a CRPF jawan allegedly committed suicide by shooting himself with the service rifle of a colleague in poll-bound Chhattisgarh's Raipur.
Summary:
Pacer Mitchell Starc praised Indian captain Virat Kohli, saying, "(He's) such a nice guy off the field, he's got a lot of time for everyone and just loves to be part of the boys".
Summary:
The Jordan national team's goalkeeper Amer Shafi beat his Indian counterpart Gurpreet Singh Sandhu after scoring with a kick from near his own penalty area in an international friendly match between the two sides.
Summary:
Former England midfielder Paul Gascoigne has been charged with committing sexual assault on-board a train, police said on Monday.
Summary:
Reacting to Pakistan's four-run loss to New Zealand in the first Test, a user tweeted, "Only Pakistan can snatch defeat from the jaws of victory." Other users reacted to the loss with tweets like, "Wow what a turn around!
Summary:
Summary:
The future of Google News depends on whether the EU is willing to alter the legislation, a company executive said.
Summary:
Facebook CEO Mark Zuckerberg has been asked to testify over data scandals attached to the platform by eight international parliaments.
Summary:
It was also revealed that the company removed more than 1.2 billion pieces of content in the third quarter for violating the spam policies.
Summary:
Naidu said all leaders have agreed to attend a meeting in Delhi which was earlier scheduled for November 22.
Summary:
The Congress on Monday alleged PM Narendra Modi and Haryana CM Manohar Lal Khattar are endangering the lives of commuters by inaugurating an incomplete expressway in Haryana.
Summary:
Earlier in the day, Rahul had sent Israeli banana saplings for Amethi farmers.
Summary:
Shiromani Akali Dal President Sukhbir Singh Badal on Monday told the SIT members he has never met Bollywood actor Akshay Kumar outside Punjab.
Summary:
Delhi CM Arvind Kejriwal on Monday accused the BJP of getting voters' names deleted from electoral rolls in Delhi as a "last resort" to avoid defeat in the next Lok Sabha elections.
Summary:
Punjab Chief Minister Amarinder Singh on Monday said that the Amritsar blast is a clear case of terrorism and "we will deal with it".
I am hopeful that we will soon catch the culprits," he added.
Summary:
The board said it needed time to create adequate infrastructure for women devotees.
Summary:
The Taliban has said it struck no deal with US over deadline to end the Afghan war during a three-day meeting between the militant group and US special envoy for Afghanistan Zalmay Khalilzad.
Summary:
Actress Chahatt Khanna, who appeared in the film 'Thank You' and TV serial 'Bade Achhe Lagte Hain', accused ex-husband Farhan Mirza of sexual and mental abuse, saying, "He accused me of dating his own brother." "During both my pregnancies, he would ask me if the babies were his," said Chahatt.
Summary:
Vicky Kaushal, while speaking about his struggling days, said, "There was a time when I had...knocked on doors to be on...film set, stood in queues for hours behind 150 people to land a role." He added he also faced rejections.
Summary:
Actress Chahatt Khanna, who appeared in films like 'Thank You' and TV serial 'Bade Achhe Lagte Hain', accused her ex-husband Farhan Mirza of sexual and mental abuse, saying, "I've even sold my clothes online to survive." "He sold my car and jewellery for money," she added.
Summary:
Pakistan didn't get out of the #WT20 group stage guys," ICC commented sarcastically.
Notably, Pakistan were knocked out of the tournament in the group stage itself.
Summary:
Left-arm spinner Ajaz Patel, who won the Man of the Match award for taking seven wickets on his Test debut for New Zealand against Pakistan, was born in Mumbai on October 21, 1988.
Summary:
Digvijaya Singh's contact number was mentioned in a letter seized by the Pune police.
Summary:
Ashim Mitra, an Indian-origin professor at US' University of Missouri-Kansas City reportedly used his students as his personal servants.
Summary:
Germany has issued entry bans for 18 Saudi citizens suspected of involvement in the killing of journalist Jamal Khashoggi in Istanbul, effectively banning them from the European Union's (EU) Schengen zone.
Summary:
A Chinese court has sentenced a female author of erotic fiction to more than 10 years in jail for writing and selling a novel that featured gay sex scenes.
Summary:
After US President Donald Trump said that Pakistan "doesn't do a damn thing for us", Pakistan Prime Minister Imran Khan has said the US was making Pakistan a "scapegoat for its own failures".
Summary:
As per reports, the Guru Granth Sahib was brought from a gurdwara to the wedding venue.
Summary:
Uttar Pradesh CM Yogi Adityanath on Monday while campaigning in Madhya Pradesh's Dhar, slammed Congress President Rahul Gandhi for sitting in a Namaz-like position to pray in a temple in Gujarat.
Summary:
Criticising Congress chief Rahul Gandhi, BJP President Amit Shah on Monday said, "In a recent rally...Gandhi uttered Modi's name 44 times in his 22-minute speech." "I'm wondering whether he is campaigning for the BJP or the Congress," he added.
Summary:
Talking about the mandatory Yo-Yo Test needed for Indian cricket team selections, India's former captain Kapil Dev said, "[C]ricketing fitness is more important than anything else and cricketing fitness is different from Yo-Yo Tests." "Ganguly...
Summary:
BCCI's official Twitter account shared a video of Indian pacer Jasprit Bumrah practising batting in the nets in Australia ahead of the first T20I between India and Australia.
Summary:
Indian pacer Ishant Sharma and spinner Ravichandran Ashwin have reportedly been instructed by BCCI to skip their upcoming Ranji Trophy matches as their workload is being managed ahead of the upcoming Test series against Australia.
Summary:
Pakistan lost the first Test to New Zealand by four runs after failing to make 46 runs with seven wickets in hand at one point on the fourth day of the Test on Monday.
Summary:
Thanks @virat.kohli." Gilchrist also visited team India's practice session at the Gabba on Monday.
Summary:
The company hopes to use LauncherOne rocket to carry small craft into the Earth's orbit.n
Summary:
Apple has reportedly cut production orders for all three new iPhone models launched in September.
Summary:
Dutch startup NovioSense has developed a glucose monitor that can be placed in the lower eyelid to measure sugar level in tears.
Summary:
The Shiv Sena on Monday said CM Devendra Fadnavis should announce that Shivaji's statue would be the tallest in the world, and not get scared of PM Narendra Modi and Amit Shah.
Summary:
Noida-based AI-enabled edtech startup Genius Corner has raised â¹2 crore funding from a clutch of angel investors, the startup said.
Summary:
At least four people were killed and one injured after a fire broke out in a factory in Karol Bagh in Delhi.
Summary:
People should've got the expressway 8-9 years ago, he said.
Summary:
Criticising the Kerala government of running a "dictatorship", he said that "Section 144 is imposed for no reason" in Sabarimala.
Summary:
Former RBI board member Indira Rajaraman has said the resignations of RBI Governor Urjit Patel and Deputy Governor Viral Acharya will be "really catastrophic".
Her comments come in the wake of the RBI's board meeting on Monday.
Summary:
Japanese carmaker Nissan's Chairman Carlos Ghosn was reportedly arrested on Monday after an investigation found that he used the company's assets for personal use.
Summary:
Responding to this, Air India wrote, "We're truly humbled when 'King Khan' is the brand ambassador for 'Maharaja'."
Summary:
The Supreme Court on Monday refused urgent hearing of a plea by CBI officer Manish Kumar Sinha, who investigated special director Rakesh Asthana, saying, "Nothing shocks us." Sinha sought quashing of his transfer to Nagpur in Maharashtra.
Summary:
Former Indian cricket team captain Bishan Singh Bedi has said that lower income Indian Premier League players are prone to betting.
"The lower income player doesn't have the skills, how does he catch up?
Summary:
Further, Zverev became the first German to win the season-ending tournament since Boris Becker in 1995.
Summary:
The second edition of the IPL happened in South Africa, millions...were taken out of the country without the permission of Finance Minister," Bedi added.
Summary:
India's 1983 World Cup-winning captain Kapil Dev has said MS Dhoni has done a great job but expecting him to be 20 again isn't going to work.
Summary:
Apple CEO Tim Cook has defended Apple's billion-dollar deal with Google to keep Google Search as default on Apple devices and said, "I think their search engine is the best." "We've tried to come up with ways to help our users through their day," added Cook.
Summary:
The RBI's 18-member board includes Governor Urjit Patel, who is a voting member, and four Deputy Governors - NS Vishwanathan, Viral Acharya, BP Kanungo and M Kumar Jain.
Summary:
An Indian woman based in US has written a letter to a New York pub criticising it over images of Hindu gods on its toilet walls.
Summary:
A 14-year-old boy was accidentally shot dead in firing that took place during the enactment of 'Kans Vadh' in Uttar Pradesh's Bhaduiya Math village.
Summary:
Red carpets were laid out to welcome Punjab CM Captain Amarinder Singh on Monday at the Amritsar blast site where grenade attack took place at Nirankari Bhawan on Sunday.
Summary:
AAP MLA HS Phoolka has expressed regret over his remark that purportedly linked Army chief Bipin Rawat to the blast at Nirankari Bhawan in Amritsar.
Summary:
The farmers of Jodha village in Ludhiana have objected to the shoot of Salman Khan's 'Bharat' as they are unable to access their farms because of the film's set on the adjacent fields, as per reports.
Summary:
Sharing his old pictures with Priyanka Chopra on Instagram, Nick Jonas wrote, "Throwback to that time she kicked my ass in Mortal Kombat.
Summary:
Janhvi Kapoor will portray Indian Air force's female pilot Gunjan Saxena in her biopic which will be produced by Karan Johar, suggested reports.
Summary:
Summary:
"My name was dropped by the party without taking me into confidence.
Summary:
Indian boxer MC Mary Kom advanced to the last eight of the Women's World Boxing Championship by defeating Aigerim Kassenayeva of Kazakhstan in the 48kg category.
Summary:
After Indian captain Virat Kohli said he was okay to play without any kind of altercation, Australian pacer Pat Cummins said that he would be surprised if the Indian captain doesn't have any confrontation during the series.
Summary:
Weighing around 32 kg, the self-driving robot comes with a handle to learn the layout of the space that needs cleaning.
Summary:
Flipkart-owned online fashion portal Jabong is reportedly planning to fire 200 more employees in next three months, after deciding to terminate around 250 employees as part of the restructuring at Flipkart.
Summary:
Bengaluru-based home rental startup NestAway is reportedly in talks to raise around $100 million in funding.
Summary:
Inaugurated by PM Modi on Monday, the expressway will bring down travel time from Sonipat to Manesar to about 45 minutes.
Summary:
The Supreme Court on Monday deferred till November 26 the hearing on the plea challenging the clean chit given to PM Narendra Modi in 2002 Gujarat riots that took place when he was CM.
Summary:
Activist Varavara Rao, who was taken into custody after his court-directed house arrest came to an end, has been hospitalised after he complained of difficulty in breathing.
Summary:
He said the country "owes its identity to Lord Ram".
Summary:
Defending his administration's decision to suspend aid to Pakistan, US President Donald Trump said, "Pakistan doesn't do a damn thing for us".
Summary:
Preity Zinta has claimed a journalist allegedly edited her remark on the #MeToo movement to make it "sound controversial for better traction" and added, "I expected decency...from a journalist." Preity was quoted as saying 'I wish I had' when asked if she has faced harassment.
Summary:
Saif Ali Khan's daughter Sara Ali Khan has revealed her mother, Saif's ex-wife Amrita Singh, dressed her up for his wedding to Kareena Kapoor.
Summary:
Speaking at an election rally in tribal-dominated Chhattisgarh, Uttar Pradesh CM Yogi Adityanath on Sunday said Lord Hanuman is the most prominent tribal.
Summary:
In a letter to the Election Commission, the Madhya Pradesh Congress Committee has alleged that PM Narendra Modi violated the model code of conduct during a speech in the poll-bound state.
Summary:
Talking about the upcoming India's tour of Australia, spin legend Shane Warne said, "For the first that I can remember India come to Australia in the Test matches as favourites." "India, they smell blood and they don't fear Australia," he added.
Summary:
Summary:
Ahead of Maharashtra Assembly's winter session, Congress leader Radhakrishna Vikhe Patil on Sunday said CM Devendra Fadnavis and Shiv Sena's Uddhav Thackeray are behaving like "Thugs of Maharashtra".
Summary:
After PM Narendra Modi's claimed that former Congress President Sitaram Kesri was thrown out of office to make way for Sonia Gandhi, the Congress reacted saying the latter had instead offered to resign.
Summary:
Ahead of RBI's board meeting on Monday, Congress President Rahul Gandhi tweeted, "I hope Mr Patel (RBI Governor Urjit Patel) and his team have a spine and show him (PM Modi) his place." "Mr Modi and his coterie of cronies...continue to destroy every institution they can get their hands on.
Summary:
A postcard aimed at creating awareness about global warming and climate change has been laid out on Switzerland's rapidly shrinking Aletsch glacier.
Summary:
The distributors, who paid a minimum of â¹4,000 for enrolment, then targeted unemployed youth and elderly people.
Summary:
The Kundli-Manesar-Palwal expressway, also known as Western Peripheral Expressway, became fully operational on Monday after PM Narendra Modi inaugurated its Kundli-Manesar stretch in Gurugram.
Summary:
The identity of the informers will be kept secret," media advisor to the CM said.
Summary:
At least 45 people have died and about 2.5 lakh evacuated and shifted to relief camps since cyclone Gaja hit the coast of Tamil Nadu.
Summary:
Reports said the police has identified the bike and rounded up a few people for interrogation.
Summary:
US President Donald Trump has said he has been briefed on a recording of Saudi journalist Jamal Khashoggi's murder but will not listen to it himself.
Summary:
Saif Ali Khan has revealed Kareena Kapoor Khan is the worst secret keeper in the family while Sara Ali Khan and Soha Ali Khan are best at keeping secrets.
Summary:
Summary:
Alia Bhatt was seen in a shimmery gown.
Summary:
Talking about the relationship she shares with Kareena Kapoor Khan, Sara Ali Khan said Kareena would probably have a nervous breakdown if she had to call her "Chhoti Maa".
Summary:
Ranveer and Deepika have bought a new house in Mumbai which costs around â¹50 crore and the work in the interiors of the house is still on, reports suggested.
Summary:
Wishing husband and actor Aayush Sharma on their 4th marriage anniversary on Sunday, Salman Khan's sister Arpita Khan Sharma posted her picture with Aayush and wrote, "Not only are you my husband...You are my best friend too." "I am blessed to have a partner in crime like you," she further wrote.
Summary:
Former Rajasthan CM Ashok Gehlot on Sunday said he did not hold any position in priority and will abide by the decision the party high command takes on the issue of CM post.
Summary:
Speaking after Amritsar blast, SAD chief Sukhbir Singh Badal warned the Congress government against playing with fire, saying it must ensure that Punjab does not slip back into the vortex of violence.
Summary:
In 2017, the startup reportedly posted $100 million in profit on $2.6 billion in revenue.
Summary:
Odisha CM Naveen Patnaik has ordered the authorities to stop tree felling for a â¹102-crore brewery project in the Dhenkanal district's Jhinkargadi forest and ordered a probe, following protests by villagers.
Summary:
Richa Chadha has revealed she was once asked to show her navel while she was shooting in high-waist pants.
Summary:
Saif Ali Khan has revealed he wrote a letter to his ex-wife Amrita Singh on the day of his wedding to Kareena Kapoor, and asked Kareena to read it.
Summary:
After a Mumbai-based tabloid published an article with the headline 'Be Humble: Virat Kohli gets a CoA memo', the BCCI released a statement, classifying it as "baseless".
Summary:
Germany's 17-year-old car racer Sophia Floersch suffered a spinal fracture after her car flew off tracks and crashed into the barriers during the Macau Grand Prix.
Summary:
Responding to a question about the demand for early construction of Ram Temple, actor Annu Kapoor said, "I am an honest man, have paid tax duly.
Summary:
Maharashtra CM Devendra Fadnavis-led government today passed the Maratha Reservation Bill and created a new SEBC (Socially and Economically Backward) category as per the recommendation of Maharashtra State Backward Class Commission.
Summary:
Miss World 2017 Manushi Chhillar, who will be heading to China to hand over her title to the next Miss World, said, "Once a Miss World, always a Miss World." "There are mixed emotions because there's a sense of attachment...but...there's an excitement to see what's next," she added.
Summary:
MP will not give importance to Congress, he added.
Summary:
Fielding at deep mid-wicket, Maxwell ran backwards before leaping to take the catch.
Summary:
Former Australian pacer Mitchell Johnson stated in a tweet that the suspensions on the three players involved in the ball-tampering scandal, Steve Smith, David Warner and Cameron Bancroft should stay as they did not contest their bans.
Summary:
Australian cricketer Glenn Maxwell praised Indian cricketer Rohit Sharma, saying, "He is good against pace and spin and hits the ball miles whenever he wants to...
"Rohit Sharma is an absolute star...
Summary:
This was also the first WTA title, singles or doubles, for both the Indian players.
Summary:
Defending the Indian team's recent Test series losses away from home, Indian cricket team coach Ravi Shastri said, "[Y]ou tell me which team has travelled well.
Summary:
Rahman has collaborated with Bollywood lyricist Gulzar for the theme track, which is titled "Jai Hind, Jai India".
Summary:
Summary:
The software provides targeted content delivery to the users and their family, according to the patent application.
Summary:
Visible to the public on searches about live games, users can view their comments under âÂÂYour Contributionsâ page.
Summary:
TikTok owner ByteDance on Saturday appointed Chen Lin as the CEO of its news aggregating app Toutiao.
Summary:
The doctor at Rajendra Institute of Medical Sciences (RIMS), who's taking care of RJD President Lalu Prasad Yadav, on Sunday said that Lalu's health has deteriorated due to a festering boil on his right leg.
Summary:
Singh is reportedly expected to join Flipkart in December, and will work closely with Flipkart CEO Kalyan Krishnamurthy.
Summary:
The commercial shows Carell as Bezos reminding people that he is "literally 100 times richer" than Trump.
Summary:
Researchers used NASA's Spitzer telescope to analyse the light emitted by the stars and obtained silica's "fingerprint" based on the wavelength of light it emits.
Summary:
Three people were killed and twelve passengers were injured on Sunday when a private bus skidded off the road and overturned in Bihar's Darbhanga district.
Summary:
The train was made to run at different speeds and its braking was also checked during its trial run.
Summary:
"We have rescued six girls, one from Thailand, three from Manipur and two from Delhi," Deputy Superintendent of Police said.
Summary:
Punjab police on Sunday said that the blast at a Nirankari Bhawan in Amritsar "appears to have a terror angle." Stating that "there's no reason to throw a hand grenade on a group of people," it said that the incident will be taken as a terror attack until proven otherwise.
Summary:
Pharmaceutical giant AstraZeneca has reportedly started looking for candidates to replace CEO Pascal Soriot, following pressure from shareholders.
Summary:
Actress Nafisa Ali, who revealed she has been diagnosed with stage 3 cancer on Sunday, said, "My daughter Pia and my children are the reason to get better through my cancer struggle." "It's just going to take its own course with Peritoneal & Ovarian cancer," she added.
Summary:
Author Chetan Bhagat on Sunday said that he asked his wife Anusha to leave him when he faced two sexual harassment allegations last month.
You and I are like Lord Shiv and Goddess Parvati...My view about my wife changed that day," said Chetan.
Summary:
Ex-India batsman VVS Laxman, in his autobiography, revealed Virender Sehwag told him in 2001 he would become the first Indian to score a triple hundred even before making his Test debut.
Summary:
The ball went on to land near the fielder at backward point.
Summary:
Ex-India batsman VVS Laxman has revealed MS Dhoni was not responsible for his retirement as perceived by the media.
Summary:
Niti Aayog's former Vice Chairman Arvind Panagariya on Sunday said the centre should stick to the fiscal deficit target for 2018-19 and continue with the reforms undertaken during PM Narendra Modi-led government.
Summary:
The airline denied the claims made by the man.
Summary:
A US woman is considering legal action after doctors at the University of Colorado Hospital removed both of her healthy kidneys.
Summary:
These 21 public sector banks posted a net loss of â¹4,284.45 crore in the September quarter of 2017-18.
Summary:
At least 300 women who had placed orders for wedding dresses are left without the dresses after UK bridal chain Berketex Bride shut down on Tuesday.
Summary:
Summary:
Celebrities including Raveena Tandon, Boman Irani attended the funeral of Padma Shri awardee and renowned theatre personality Alyque Padamsee in Mumbai on Sunday.
Summary:
Summary:
"The control will be with someone else," he added while addressing a Chhattisgarh rally.
Summary:
Opposition leader Sharad Yadav on Sunday said the BJP's hope to return to power at the Centre will be buried in the same states, Uttar Pradesh and Bihar, which had propelled it to a big win in 2014.
Summary:
Cahill, who plays for Jamshedpur FC in the Indian Super League, posted a picture on Instagram with the Team India captain.
Summary:
The total data requests from Indian government for January-June of 2017 stood at 9,853, as per the report.
Summary:
Apple is planning to delete all WhatsApp sticker apps from its App Store for violating the company guidelines, according to a tweet by WABetaInfo.
Summary:
BJP MLA Surendra Singh on Saturday said that despite "great Hindu leaders" like PM Narendra Modi and UP CM Yogi Adityanath being in power, Lord Ram is living in a tent.
Singh's statements come after the Supreme Court's recent order deferred hearing in the Ayodhya dispute till January next year.
Summary:
Delhi CM Arvind Kejriwal on Sunday criticised Haryana CM Manohar Lal Khattar saying that his counterpart is "justifying rape" after the latter claimed that most of the rape cases filed were "fake".
Summary:
Summary:
Microsoft Co-founder Bill Gates-backed meat substitute startup Beyond Meat has filed for a $100-million initial public offering (IPO).
Summary:
Talking about the development of self-driving cars, Volkswagen CEO Herbert Diess has said, "We have to admit that Waymo, the Google business, is ahead of us, arguably by one or two years." Adding that the automaker is "determined to catch up", Diess further said, "The game is not yet lost.
Summary:
The Environment Ministry has given the final clearance for a project to build duplex flats for Members of Parliament (MP) at a cost of â¹676.5 crore in New Delhi.
Summary:
The accused allegedly spiked the victim's soft drink and raped her in March last year before recording an obscene video of her.
Summary:
BJP MP Subramanian Swamy on Saturday said that no one can stop the construction of Ram Mandir in Ayodhya if all Hindus unite, adding that it is their fundamental right to offer prayers at Lord Ram's birthplace.
Summary:
At least 12 people were killed and 13 injured on Sunday when a bus fell into a 150-metre-deep gorge in Uttarakhand's Uttarkashi, an official said.
Summary:
A UK-based sex toy company 'LELO' is offering an extra four days of leave to employees, aimed at encouraging them to masturbate.
Summary:
Summary:
The couple had a sudden wedding in Delhi in the month of May after Neha got pregnant, Angad recently revealed.
Summary:
PM Narendra Modi on Saturday alleged that Congress did not allow Sitaram Kesri to complete his term as Congress President and threw him onto the footpath to make way for Sonia Gandhi.
Summary:
This was the first time in 2,327 Test matches and 141-year Test history that spinners took 38 wickets in a match.
Summary:
Former India batsman VVS Laxman, in his autobiography, revealed that MS Dhoni once drove the team bus to the hotel from the ground during his first Test match as captain, against Australia at Nagpur in 2008.
Summary:
The explosive was reportedly thrown by two bike-borne men, who witnesses said had their faces covered.
Summary:
Condemning the blast at a Nirankari Bhawan in Amritsar, Punjab CM Captain Amarinder Singh tweeted that forces of terror will not be allowed to destroy their hard-earned peace.
Summary:
Surendran argued that he had booked for a pooja at the temple and should be allowed to pray.
Summary:
Punjab has now become the third state in the country to ban hookah bars through law after Gujarat and Maharashtra.
Summary:
In a recent interview, Congress leader Kapil Sibal revealed that his son was against him joining politics and even went on a hunger strike as he feared he would be assassinated like former PM Indira Gandhi.
Summary:
Preity Zinta has revealed she had met Sara Ali Khan on the sets of her 2000 film 'Kya Kehna', adding, "She'd come up to me and go, 'Aadab'...I'd be like 'Oh God!
Summary:
A video shows Abhishek Bachchan playing musical chair at daughter Aaradhya Bachchan's 7th birthday party.
Aaradhya along with Aishwarya Rai Bachchan is also seen playing musical chair at the party.
Summary:
Wishing his girlfriend Ginni Chatrath on her birthday on Sunday, Kapil Sharma posted a picture with her and wrote, "Thank you for always standing strong with me in every situation of life." "Thank you for making me a better person, thank you for your unconditional love," he further wrote.
Summary:
Saif will reportedly also star in the film, which is said to be a comedy centred on a father-daughter relationship.
Summary:
It seemed like her fifth film," added Ronnie.
Summary:
The BJP has fielded six women candidates, which is the highest among all in the state.
Summary:
He said Chouhan is a man of many faces.
Summary:
World number one Novak Djokovic tweeted and posted a picture with his chauffeur Imran Bashir, who was standing with a trophy that he won for being 'best batsman of the year'.
Summary:
England beat Sri Lanka by 57 runs to register their maiden Test series win in the island nation after a gap of 17 years.
Summary:
Indian team coach Ravi Shastri, on being asked about the strength of an Australian team without Steve Smith and David Warner, said, "I always believe no team is weak at home".
Summary:
Elon Musk on Sunday said that his startup SpaceX has dropped plans to build a mini version of its Mars rocket 'BFR' by upgrading the second stage of its Falcon 9 rocket.
Summary:
The Indian National Lok Dal (INLD) on Saturday split after jailed party chief OP Chautala's expelled son Ajay announced that he will float a new party along with his sons, who were also expelled.
Summary:
A two-year-old girl was allegedly kidnapped and raped by a 24-year-old man, who later left her near the tracks of Old Delhi Railway Station during early hours of Saturday.
Summary:
A Delhi court has discharged CM Arvind Kejriwal in a defamation case filed by Rajya Sabha MP Subhash Chandra, saying the media baron did not follow proper procedure.
Summary:
A court in Delhi on Saturday granted anticipatory bail to AAP MLA Amanatullah Khan in a case related to alleged violence during inauguration of the Signature Bridge, stating that the case did not require custodial interrogation.
Summary:
Philippine President Rodrigo Duterte has called International Criminal Court (ICC) judges "idiots".
Summary:
UpGrad helps professionals transition in this field, which currently has 1.4 million job openings, through their cutting-edge and 360-degree career support.
Summary:
The match witnessed Smriti Mandhana slam the fastest fifty (31 balls) for India in Women's World T20.
Summary:
Actress Kalki Koechlin has said it is important for actors to trust each other before shooting intimate scenes, while revealing there are scenes where she had to "bite off" an actor's lips even when they hadn't met before.
Summary:
Actress Kalki Koechlin has said it is extremely important for actors to trust each other before shooting intimate scenes, while adding that just like action sequences, intimate scenes can too be choreographed.
Summary:
Responding to a question, Congress spokesperson Randeep Surjewala on Saturday said that secrecy surrounding the illnesses of Goa CM Manohar Parrikar and former Congress President Sonia Gandhi are not comparable.
Summary:
Haryana Chief Minister Manohar Lal Khattar during a rally said that women file rape cases against their partners after minor arguments.
Summary:
Former Mumbai Police commando Asif Mulani, who was part of a team that investigated Ajmal Kasab after the 26/11 Mumbai attacks, has revealed that the terrorist was surprised to see Hindus and Muslims in the team eat together.
Summary:
PM Modi assured Solih of India's firm commitment in helping Maldives achieve sustainable economic development.
Summary:
Delhi Chief Secretary Anshu Prakash, who had accused AAP MLAs of assault, has been transferred to the Department of Telecommunications as Additional Secretary.
Summary:
A 61-year-old Indian-origin man has been shot dead by a teenager in New Jersey, US.
Summary:
PNB scam accused Mehul Choksi's lawyer told a court that Choksi may return to India in three months "if his condition gets better".
Summary:
The government is seeking to form panels to monitor functions of the RBI, according to reports.
Summary:
Salman Khan, who was shooting for his upcoming film 'Bharat' in Punjab, got injured while on the sets of the film and flew back to Mumbai, as per reports.
Summary:
Summary:
They have reached Ranveer's residence in Mumbai and will be hosting two receptions in Bengaluru and Mumbai, according to reports.
Summary:
Wishing his brother Aparshakti Khurana on his 31st birthday on Sunday, Ayushmann Khurrana posted a picture with him and wrote, "Birthday greetings to my biggest support system.
Summary:
Canadian technology company BlackBerry on Friday said it will acquire US-based cybersecurity firm Cylance for $1.4 billion (â¹10,000 crore) in cash.
Summary:
Thanking the people of Delhi for turning up at Carnatic singer TM Krishna's concert on Saturday, Deputy CM Manish Sisodia tweeted that it was not only about music but a "political statement" to save the country's diversity.
Summary:
Congress leader Navjot Singh Sidhu on Saturday said, "The BJP is a puppet for the rich.
Summary:
After ABVP's Ankiv Baisoya stepped down as the Delhi University Students Union President over allegations of submitting a fake degree, AICC in-charge of NSUI Ruchi Gupta said he's sure to have a good future in the BJP.
Summary:
Tunnelling startup The Boring Company's CEO Elon Musk has started a company called Brick Store to produce and sell bricks, as per public documents.
Summary:
The team said it has successfully matched over 700 tumours and blood samples from different cancer types.
Summary:
Activist Varavara Rao was on Saturday arrested from his house in Hyderabad in a case related to the Bhima-Koregaon violence and alleged Maoist links.
Summary:
Jaitley added that demonetisation had increased the tax return filings, and revenue of state and central governments.
Summary:
The Odisha Assembly on Saturday passed a resolution to pardon jailed journalist Abhijit Iyer-Mitra for alleged derogatory remarks against state MLAs and Konark Sun Temple.
Summary:
Two lawmakers have introduced a bill in the US Congress seeking to prohibit the Trump administration from revoking the work authorisation of H-1B visa holders' spouses.
Summary:
Announcing the retirement of Finance Secretary Hasmukh Adhia, Finance Minister Arun Jaitley on Saturday said that Adhia's time after retirement belongs to his passion, spirituality and yoga, and to his son.
Summary:
Pandey will continue to hold the additional charge of Chief Executive Officer of UIDAI and Chairman of Goods and Services Tax Network (GSTN) until further orders.
Summary:
British sailor Alex Thomson, who was holding a lead of 230 nautical miles with only 65 miles remaining to finish the 3,542-nautical mile solo transatlantic race, overslept and crashed into the Caribbean archipelago of Guadeloupe.
Summary:
This is the third time Carrey criticised Zuckerberg on Twitter this year.
Summary:
Bollywood's 61-year-old actress Nafisa Ali Sodhi today took to Instagram to reveal she has been diagnosed with stage 3 cancer.
Summary:
Doctors were unable to revive the patient despite six rounds of defibrillation.
Summary:
The updated list of Editors Guild of India includes names of former Tehelka Editor Tarun Tejpal and former Union Minister and Editor MJ Akbar, both of whom have been accused of sexual misconduct by their women colleagues.
Summary:
"It definitely came from table-side and it was eggs, rotten eggs, but not from me," Anderson said.
Summary:
With 33 wickets, Shami is India's leading Test wicket-taker in 2018.
Summary:
Congress spokesperson Randeep Surjewala has written to Home Minister Rajnath Singh, seeking CISF security for Punjab Minister Navjot Singh Sidhu.
Summary:
The death toll due to cyclone 'Gaja' in Tamil Nadu has gone up to 33, CM Edappadi K Palaniswami informed on Saturday.
Summary:
Hizbul Mujahideen terrorists killed a Class 11 student in Jammu and Kashmir by shooting around 18 bullets in his head after calling him an 'informer'.
Summary:
Lakhwinder Kaur, the 17-year-old daughter of a 45-year-old home guard employed with the Punjab Police, has won a â¹1.5 crore Punjab State Diwali Bumper lottery.
Summary:
The CBI has filed a disproportionate assets case against retired PNB deputy manager Gokulnath Shetty and his wife Ashalata.
Summary:
Several Bollywood actors including Anupam Kher and Priyanka Chopra have also visited Rishi in New York.
Summary:
A team of archaeologists has discovered two tombs from the 15th-century in an underground burial chamber located near BoliviaâÂÂs capital La Paz. One of the tombs contained about 108 bodies, the team said.
Summary:
Portugal captain Cristiano Ronaldo's club Juventus issued an apology for a condolence message on Chinese social media about the apparent suicide of a fan, which was later found to be untrue.
Summary:
With the loss, Australia's losing streak got extended to four T20I matches.
Summary:
Wasim Jaffer, the 40-year-old Indian batsman who is still playing first-class cricket, has said that a player needs to do well on a stage like IPL to get into the Indian cricket team.
Summary:
Ian Chappell, the Australian cricket team's former captain, has said that the bans on former captain Steve Smith and former vice-captain David Warner should not be reduced to allow them to play against India.
Summary:
South Africa's captain Faf du Plessis has suggested the Australian cricket team to avoid any confrontation with Indian captain Virat Kohli and to give him the 'silent treatment'.
Summary:
Arun Pandey, CMD of Rhiti Sports which manages MS Dhoni, has revealed that the former captain has been dreaming of playing in the World Cup 2019 ever since he gave up the captaincy to Virat Kohli.
Summary:
Facebook-owned Instagram's two senior executives Bangaly Kaba and Ameet Ranadive have resigned from the company.
Summary:
Reacting to a unanimous vote by scientists on Friday to redefine kilogram after nearly 130 years in terms of the Planck constant, a user tweeted, "Weight, what?" "How long did it take them to pound out this piece of legislation?" another user tweeted on the change.
Summary:
Russian space agency Rosmocos on Friday launched an unmanned Soyuz-FG rocket with a cargo vessel from Kazakhstan, its first launch to the International Space Station since aborted mission in October.
Summary:
Talking about states barring CBI, Finance Minister Arun Jaitley said, "those who have a lot to hide will take the step of saying that let CBI not come to my state." He further said that states donâÂÂt have sovereignty in matters of corruption.
Summary:
A Border Security Force (BSF) jawan and two others were injured when one of two hand grenades hurled by suspected militants exploded at the Manipur Legislative Assembly complex on Friday.
Summary:
Talking about the murder of 11th standard student Nadeem Manzoor, former J&K Chief Minister Omar Abdullah tweeted, "The cold-blooded murder...by the Hizbul Mujahideen terror outfit is deeply disturbing." "There can be no justification for this act," he added.
Summary:
Padma Shri awardee Alyque Padamsee passed away aged 90 on Saturday in Mumbai.
A renowned theatre personality, Padamsee had also received a Sangeet Natak Akademi Award.
Summary:
Actor Angad Bedi on his wife Neha Dhupia's show 'No Filter Neha' revealed that his former girlfriend left him stranded in New York without any cash and his mobile phone.
Summary:
Filipino actress and Miss International 2013 winner Bea Rose Santiago has revealed that she was molested by a priest when she was a child.
"He is still preaching somewhere in Masbate," Santiago wrote on Facebook.
Summary:
Twenty-three-time Grand Slam champion Serena Williams has revealed she deleted social media apps from her phone following US Open final, during which she confronted with the chair umpire.
I try to keep myself in a bubble as much as I can.
Summary:
The Supreme Court-appointed Committee of Administrators, which is overseeing BCCI, reportedly asked Team India captain Virat Kohli to be "humble" in his interactions both with the press and the public through WhatsApp. The administrators also reportedly called up the 30-year-old regarding the same matter.
Summary:
A bug on Facebook-owned photo-sharing app Instagram, linked with the tool that allows Instagram users to download a copy of their data, exposed the passwords of some users.
Summary:
After PM Narendra Modi challenged Congress to appoint a non-Gandhi as party President for five years, Congress MP and ex-Finance Minister P Chidambaram has listed out 15 party Presidents since 1947 from outside the Nehru-Gandhi family.
Summary:
PM Narendra Modi on Saturday attended the swearing-in ceremony of Maldives' new President Ibrahim Mohamed Solih at the island nation's capital Malé.
Summary:
The fully air-conditioned 16-coach train, built at a cost of â¹100 crore in 18 months, can run at a speed of around 160 kmph.
Summary:
Summary:
Australia has informed the World Trade Organization that India's annual subsidies to sugarcane producers have exceeded allowed limits.
Summary:
Singer Justin Bieber and model Hailey Baldwin have confirmed their marriage on Instagram.
Sharing a picture with Hailey, Justin wrote, "My wife is awesome." Hailey also changed her last name to Bieber on Instagram.
Summary:
The funeral of American comic-book writer and Marvel Comics co-creator Stan Lee, who passed away on Monday at the age of 95, was held in a private ceremony "in accordance with his final wishes".
Summary:
West made the donation to a fundraising page set up for Roberson's family after he was killed.
Summary:
Sunny Deol, who portrayed Brigadier Kuldip Singh Chandpuri in the 1997 film 'Border', took to Twitter and paid tribute to Chandpuri as he passed away on Saturday after battling cancer.
Summary:
Arquette got injured after he was hit by a 'light bulb tube' during the match.
Summary:
After Congress President Rahul Gandhi called demonetisation the "biggest scam" since Independence, PM Narendra Modi said, "Congress alone is weeping.
Summary:
Manchester United's French footballer Paul Pogba was seen meeting Barcelona forward Lionel Messi in Dubai.
Summary:
Former Australian cricketer Michael Hussey said that the Australian team has to be "incredibly patient and disciplined for long periods of time against a world class player like [Virat] Kohli".
Summary:
The AI-generated fingerprints, named 'DeepMasterPrints', can bypass biometric identification systems, the researchers claimed.
Summary:
After meeting RJD supremo Lalu Prasad Yadav in hospital on Saturday, party MLA Rekha Devi said, "Lalu Ji's health has deteriorated, he can neither sit nor stand on his own." "We demand that he should be taken to a place where he can get better treatment," she added.
Summary:
Finance Minister Arun Jaitley and Madhya Pradesh Chief Minister Shivraj Singh Chouhan on Saturday released the BJP manifesto for the state, promising scooters for girls who score above 75% in the Class 12 exams.
Summary:
Elon Musk on Saturday shared a video of his tunnelling startup The Boring Company's digging machine breaking through the other end of its first high-speed transit tunnel under Hawthorne in the Los Angeles area.
Summary:
NASA on Thursday sent the final set of commands to its planet-hunting Kepler space telescope to disconnect its communications with Earth.
Summary:
Summary:
Congress MP Veerappa Moily on Friday said that Uttar Pradesh CM Yogi Adityanath is not an ascetic person and hence he cannot be called a âÂÂYogi'(ascetic).
Summary:
Several men allegedly shaved a youth's head, blackened his face and paraded him in UP's Aligarh district after he was accused of harassing girls and posting morphed pictures of himself with them online.
Summary:
Australia's limited-overs captain Aaron Finch, who turns 32 today, holds the record for smashing the highest score in T20I cricket.
Summary:
Priyanka Chopra's fiancé and singer Nick Jonas on Saturday said, "13 years ago today I was diagnosed with type 1 diabetes." Sharing a picture of himself from 13 years ago, Jonas revealed his weight was barely 100 pounds (45kg) after losing weight due to high blood sugar.
Summary:
He further said the phone which contained the pictures had broken.
Summary:
"I love you most Ranno...I couldn't have imagined a more beautiful Life Partner for you than Deepika," she wrote.
"Your life just got its biggest Award!
Summary:
Congress has fielded Manvendra Singh, former BJP leader and the son of BJP veteran Jaswant Singh, to contest against Rajasthan CM Vasundhara Raje from Jhalrapatan in the state assembly elections.
Summary:
Tshwane Spartans captain AB de Villiers was seen using a walkie-talkie on the field to talk with coach Mark Boucher during their Mzansi Super League (MSL) 2018 match against Cape Town Blitz on Friday.
Summary:
Ex-Windies captain Dwayne Bravo has revealed the BCCI offered to pay the Windies' players who had threatened to pull out of the 2014 ODI series in India following a contract dispute with their board.
Summary:
So far this year, Zuckerberg has lost $17.4 billion.
Summary:
Responding to Prime Minister Narendra Modi's "Did your Nana-Nani lay water pipes?" jibe at Congress President Rahul Gandhi, senior Congress leader Kapil Sibal tweeted, "Your party's Nana-Nani Dada-Dadi collaborated with the British." "Ask how you got drinking water at platform when you were young.
Summary:
Deepak Dhavalikar, president of Goa's ruling alliance party MGP, has said, "The central committee of the party has resolved to urge the government to find a replacement for (CM Manohar) Parrikar, who is ill, at the earliest." "Because of his illness, the administration has been paralysed for eight months.
Summary:
Taking a dig at PM Narendra Modi, Congress leader Navjot Singh Sidhu said, "Is the PM jealous he wasn't called (for Pakistan PM Imran Khan's oath ceremony)?
Summary:
Conceptualised in 1975 by late British physicist Bryan Kibble, the latest Kibble balance can measure Planck constant with uncertainties in a few parts per billion.
Summary:
Based on the Battle of Longewala, JP Dutta's 1997 film 'Border' portrayed Chandpuri in lead, played by Sunny Deol.
Summary:
Argentina signed a contract with the company in August that guaranteed it $7.5 million if it found the submarine.
Summary:
The death toll in California's deadliest wildfire, the Camp Fire, climbed to 71 on Friday as the number of missing people surpassed 1000.
Summary:
Jaitley said Adhia informed him earlier this year that he wouldn't work for a single day after November 30.
Summary:
During the hearing of Enforcement Directorate's application to declare Mehul Choksi a 'fugitive economic offender', his lawyer told a court that Choksi is presently medically unfit to travel.
Choksi's statement can either be recorded via video conferencing or officers could go to Antigua, the lawyer said.
Summary:
Summary:
"Her look and the whole experience was very magical and peaceful," Gabriel further said.
Summary:
Congress leader and former MP Satyavrat Chaturvedi on Friday claimed he has publicly asked Congress to expel him after his son was denied a ticket.
Summary:
Speaking ahead of the Indian cricket team's upcoming tour of Australia, former Australian team pacer Damien Fleming said that the real 'x-factor' for India is pacer Jasprit Bumrah.
Summary:
After Indian captain Virat Kohli's claim that he would want a sledge-free summer in Australia, former Australian pacer Mitchell Johnson tweeted, "I look forward to no Virat send-offs".
Summary:
Google parent Alphabet's life sciences division Verily on Friday said that it has decided to put on hold its project to develop a contact lens that measures glucose levels of people with diabetes.
Summary:
Previously, Facebook had also denied reports that alleged it knew about Russian involvement in the US elections by 2016 itself.
Summary:
US-based blockchain gaming startup Mythical Games has raised $16 million in a Series A round of funding.
Summary:
In March, the government approved a project to create eight 'safe cities', with a special focus on women's safety, under the fund.
Summary:
Hindu Aikya Vedi State President KP Sasikala, who is reportedly aged over 50, was arrested from the premises of Sabarimala temple on Saturday and taken into preventive custody for defying prohibitory orders.
Summary:
Deepika Padukone and Ranveer Singh have bought a new house in Mumbai which costs around â¹50 crore, as per reports.
Ranveer and Deepika will reportedly return to India on November 18.
Summary:
After Virat Kohli's 'leave India' controversy, the Supreme Court-appointed Committee of Administrators reportedly told him "to be humble, in his interactions both with the press and the public".
Summary:
Google has announced that Kerala-born former Oracle product chief Thomas Kurian will replace Diane Greene as head of the company's cloud division.
Summary:
BJP MLA Sumanben Chauhan's son Sunil has filed a complaint against the party MP Prabhatsinh Chauhan's son Umesh, who is also Sunil's uncle, for allegedly attacking him with a sword in Gujarat's Ahmedabad on Friday.
Summary:
Since 1889, a kilogram was defined by a platinum-iridium cylinder prototype housed near Paris.
Summary:
Commercial satellite network 'Planet' has tweeted a picture of Gujarat's 182-metre-tall Statue of Unity, the world's tallest statue, photographed from space on November 15.
Summary:
Earlier, Andhra Pradesh CM Chandrababu Naidu withdrew the general consent given to the CBI.
Summary:
Police said the woman had come to the city for a training programme.
Summary:
The condition of the driver of the bus, that belongs to Noida's Apeejay School, is critical.
Summary:
In an open letter, European lawmakers have asked Amazon CEO Jeff Bezos to stop selling Soviet-themed merchandise on the global online shopping platform, saying it offends victims of the regime.
Summary:
The airline later apologised, saying, "There are no circumstances that justify asking money from passengers."
Summary:
Saudi women have launched a protest against the abaya (full body robe) by posting pictures on social media wearing the dress inside out.
Summary:
Pakistan has received a "big" package of aid from its ally China, Prime Minister Imran Khan said on Friday.
Summary:
A French court has sentenced a woman to five years in jail, three years of which are suspended, for keeping her baby girl hidden in the maggot-infested boot of her car for 23 months.
Summary:
Firefighters cleaned out a smoke detector at the home, but heard the noise again.
Summary:
The 12-minute video exposed 14 luxury hotels run by Shangri-La, Hilton, Marriot, Hyatt and others.
Summary:
Amitabh Bachchan has said that he feels writers are the most important ingredient in filmmaking.
Summary:
Sara Ali Khan, while interacting on a radio show, revealed that she finds Kartik Aaryan "damn cute", adding, "Please send my address [to him]." Sara added that there was a time when she wanted to get married to Ranbir Kapoor.
Summary:
Farhan Akhtar recently shared a picture with his rumoured girlfriend Shibani Dandekar and captioned it, "Look who I bumped into!
Summary:
BJP MLA Pramila Singh has quit the party and joined Congress after she was denied a ticket to contest the Madhya Pradesh Assembly elections.
Summary:
Summary:
Bengaluru-based digital health and fitness startup HealthifyMe has raised $6 million in its extended Series B round.
Summary:
Meanwhile, the district administration said it has launched a probe into the matter.
Summary:
Summary:
The Gujarat government on Friday announced that the Statue of Unity will get air and railway connectivity soon.
Summary:
They were travelling in an auto-rickshaw, when its driver picked up two acquaintances and they gagged and abducted the sisters.
Summary:
Summary:
Scientists on Friday unanimously voted to redefine kilogram, retiring the platinum alloy cylinder conceived in Paris in 1889.
Summary:
New Zealand fielded a record five substitutes, including a TV commentator, who was ex-captain Jeremy Coney, and a journalist, during the Bengaluru Test against India in 1988.
Summary:
A woman in US' Texas celebrated her divorce being finalised by blowing up her wedding dress.
Summary:
Actor Piyush Mishra has revealed that he was initially offered Salman Khan's role in 1989 film 'Maine Pyar Kiya'.
"I...don't know why I didn't do [it]...Barjatya wanted to launch me," Mishra said.
Summary:
Actor Sushant Singh Rajput took to Instagram to share a post about a kid suffering from blood cancer, whose only wish is to meet him.
I'd request friends here to please pray and help in any way possible," Sushant wrote.
Summary:
After CBI officer AK Bassi challenged his abrupt transfer to Port Blair in Andaman and Nicobar Islands in the Supreme Court, CJI Ranjan Gogoi said, "It's (Andamans) a good place...be there for a few days." The court said it would decide on his transfer application later.
Summary:
A key prosecution witness in the 1984 anti-Sikh riots case on Friday told a Delhi court, "On November 1, 1984...I saw (Congress leader) Sajjan Kumar telling the crowd, 'Sikhs killed our mother.
Summary:
Summary:
A Bihar court on Friday issued an order to attach property of former state minister Manju Verma, who has been evading arrest for over a month in connection with arms possession.
Summary:
AAP leader Kumar Vishwas took to Twitter to share a video of a man speaking long English words and wrote, "Shashi Tharoor's brother who was lost in Kumbh festival has been found!
Summary:
The White House accused Acosta of placing his hands on a female intern who was trying to take his microphone away.
Summary:
Khashoggi, a critic of the Saudi government, was killed at the Saudi consulate in Istanbul last month.
Summary:
Reports had earlier said that Visa was looking to invest nearly $250 million in BillDesk, valuing it at around $1.5-2 billion.
Summary:
Tata Sons on Friday said that it is in preliminary talks with Jet Airways but has not made a proposal to acquire a stake.
Summary:
American singer Beyoncé has severed business ties with 66-year-old UK retail billionaire Philip Green, who has been accused of sexual harassment and racism.
Summary:
'Manto' actress Rasika Dugal, while talking about the representation of women in films, said that there is hardly any acknowledgement of women as sexual beings in Indian cinema.
Summary:
Summary:
Former Indian batsman VVS Laxman said that his 167-run innings at Sydney in 2000 was a "career-defining" innings, while his 281-run innings against Australia at Eden Gardens in 2001 was a "memorable" innings.
Summary:
Indian cricketer Rohit Sharma praised England captain Joe Root's gesture of distributing letters to around 100 England fans whose hotel bookings in Kandy were cancelled to accommodate England's and Sri Lanka's teams.
Summary:
The committee probing into the allegations of sexual misconduct made against BCCI CEO Rahul Johri has sought more time to come to a decision.
Summary:
Uttar Pradesh's independent MLA Raghuraj Pratap Singh alias Raja Bhaiya on Friday announced that he will be forming a new political party, ahead of 2019 Lok Sabha elections.
Summary:
Earlier, Volkswagen CEO Herbert Diess had said that the company could build 50 million electric cars.
Summary:
The National Green Tribunal (NGT) on Friday ordered Volkswagen to deposit an interim amount of â¹100 crore with the Central Pollution Control Board of India for allegedly using cheat device in emission tests of its diesel vehicles.
Summary:
Half of the worldâÂÂs measured yearly rainfall falls in just 12 days, according to a new study.
Summary:
They were used to determine the Earth's magnetic field in the sodium layer of the atmosphere.
Summary:
The first incident took place when Hasib Ansari, along with his friends, was taking selfies and making videos of the herd.
Summary:
It also has an observation deck that allows veterinary students and interns to observe elephants' behaviour.
Summary:
"Us and ours," Nitasha captioned the picture, wherein the couple can be seen with their teams and Ranveer's mother Anju Bhavnani.
Summary:
Attacking Congress and the party chief Rahul Gandhi over progress in Chhattisgarh, PM Narendra Modi said, "Did you lay down water pipelines?
Summary:
Summary:
The 27-year-old had become the most expensive Indian player to be sold at 2018 IPL auction after being bought for â¹11.5 crore by Royals.
Summary:
Amazon CEO Jeff Bezos reportedly told employees at a meeting that he predicts one day Amazon will fail and go bankrupt.
Summary:
Despite the rapper sharing the picture, many fans responded to the tweet demanding video evidence of the duo singing.
Summary:
Summary:
As per the new structure, PhonePe CEO Sameer Nigam will report to the board of Flipkart Group, like Flipkart CEO Kalyan Krishnamurthy.
Summary:
Gupta received his MBA from ISB Hyderabad in 2008, and also worked on Google Maps for over 7 years.
Summary:
Summary:
Activist Trupti Desai has decided to return to her hometown Pune without visiting the Sabarimala temple after protestors didn't allow her to leave the Kochi airport, where she had been held up for hours.
Summary:
Aarti Sharma, sister of the 53-year-old fashion designer Mala Lakhani, who was murdered by a tailor employed by her, has revealed Mala had helped get the tailor out of jail when he was arrested for molestation last year.
Summary:
Carnatic singer TM Krishna has confirmed to hold a concert in Delhi on November 17, after he accepted the AAP government's offer to host his event.
Summary:
Women are sharing pictures of their underwear on social media after a 27-year-old man in Ireland was acquitted of raping a 17-year-old girl.
Summary:
'Black Panther' actor Chadwick Boseman paid tribute to Marvel Comics co-creator Stan Lee with a video where he is seen playing a set of drums.
Summary:
Congress workers were detained by the police for allegedly staging a protest outside the residence of party chief Rahul Gandhi after the first list of candidates for the upcoming Rajasthan Assembly elections was released.
Summary:
"We'll see you on the other side, @mandeeps12.@lionsdenkxip, take good care of our lad!" RCB captioned the post.
Summary:
"Add to that, the balance he offers the team with his all-round abilities," Hussey said about Pandya.
Summary:
The former Indian cricketers were present at the final day of the four-day-long cricket camp.
Summary:
New Zealand's former captain Brendon McCullum thanked Royal Challengers Bangalore captain Virat Kohli and the team management after the IPL side released him ahead of the 2019 edition of the tournament.
Summary:
Facebook has denied an NYT report claiming the social media giant was aware of a Russian campaign designed to influence the 2016 US presidential elections.
Summary:
A prominent venture capitalist and former president of Google China, Kai-Fu Lee, has said that his investment firm, Sinovation Ventures, will withdraw from the US if trade relations between the two countries worsen.
Summary:
MIT researchers have developed an AI-based system that can detect the quality and safety of food items.
Summary:
Elon Musk-led space exploration startup SpaceX has launched Qatar's EsâÂÂhail-2 telecommunications satellite aboard a Falcon 9 rocket, marking its 18th launch of the year.
Summary:
Mumbai-based surveillance management startup Biizlo has raised around â¹3.5 crore in funding from Eagle group, a Mumbai-based security services provider.
Summary:
Ahead of visiting Sabarimala Temple, activist Trupti Desai allegedly asked the Kerala government to bear the trip's expenses.
Summary:
Claiming an ordinance for the construction of Ram Mandir in Ayodhya is the "only" option left, Yoga guru Ramdev said, "The Supreme Court is delaying the matter.
Summary:
After Rakhi Sawant shared videos of a priest praying for her recovery from injuries sustained in a wrestling bout, Tanushree Dutta said that her faith in Jesus Christ has been broken.
It's either Rakhi or me.
Choose!!" she said.
Summary:
The guests at Ranveer Singh and Deepika Padukone's wedding in Italy were served Sindhi recipes like Sev barfi, Koki, Dal pakwan, Rabdi and Konkani dishes like Puran poli and Rasam among others, as per reports.
Summary:
The Supreme Court on Friday dismissed CBI Special Director Rakesh Asthana's request for a copy of the Central Vigilance Commission's (CVC) report on CBI Director Alok Verma.
Summary:
This comes after a biscuit-shaped trophy was awarded to the winner of the T20I series between Pakistan and Australia.
Summary:
Pacer Ishant Sharma has said it hurts him to be ignored for ODI and T20I cricket.
I want to play all three formats," added Ishant who last played an ODI in January 2016.
Summary:
Aryaman Birla, son of industrialist Kumar Mangalam Birla, slammed his maiden first-class hundred for Madhya Pradesh against Bengal in Ranji Trophy.
Summary:
The GoFundMe campaign set up last year by a New Jersey couple to help a drug-addicted homeless veteran was "fictitious", prosecutors have said, adding that it was designed to dupe thousands of people.
Summary:
An Indonesian man, whose son was killed in the Lion Air crash last month, has sued Boeing alleging that a defect in the design of the 737 MAX 8 aircraft caused it to crash.
Summary:
Calling demonetisation a corrective measure, RBI board member S Gurumurthy on Thursday said the Indian economy would've collapsed without it.
Summary:
Former SBI Chairman OP Bhatt on Thursday resigned from the search and selection committee set up to identify a new CEO for Yes Bank.
Summary:
Wishing his daughter Aaradhya Bachchan on her 7th birthday on Friday, Abhishek Bachchan posted a sketch with her and wife Aishwarya Rai Bachchan, captioning it, "You are the pride and joy of the family." "Happy birthday little princess...I pray you remain the ever smiling, innocent and loving girl that you are.
Summary:
Sara Ali Khan, while speaking about Kareena Kapoor Khan, said, "I have grown up watching 'K3G' [Kabhi Khushi Kabhie Gham...].
Summary:
Porter was suffering from pneumonia for several weeks and was found dead at her residence in California, reports suggested.
Summary:
We've chosen this place over the whole world." Priyanka will get married to Nick Jonas on December 2 according to Hindu rituals followed by a Christian wedding, as per reports.
Summary:
BCCI posted a photo where a few Indian cricketers are seen playing PUBG before the team's departure to Australia for the upcoming Test and limited-overs series.
Summary:
Indian shuttler Kidambi Srikanth was knocked out of contention for the season-ending BWF World Tour Finals after eighth seed Kenta Nishimoto beat him in straight games in the quarter-finals of the Hong Kong Open on Friday.
Summary:
Summary:
Former England captain Wayne Rooney's farewell match ended with England beating the USA team 3-0 in an international friendly.
Summary:
Slamming the Congress at a rally in Chhattisgarh, PM Narendra Modi said, "It has been nearly four and a half years...These people still have not come to terms that I am the PM." He added, "They are still crying, how can a 'chaiwala' become PM?
Summary:
Summary:
Tesla bought trucking companies and secured contracts with "major haulers" to speed up deliveries of its Model 3 vehicles and avoid "trucking shortage mistake of last quarter", the electric carmaker's CEO Elon Musk said on Thursday.
Summary:
US-based startup Airtable has raised $100 million in a Series C funding round at a valuation of $1.1 billion.
Summary:
BigBasket was founded in 2011 and has raised over $885 million till date.
Summary:
Google on Friday celebrated the 44th anniversary of mankind's first interstellar radio message with a Doodle.
Summary:
A head constable allegedly shot himself dead with his service revolver in the VIP parking lot of Delhi Secretariat on Friday.
Summary:
Punjab Police have released posters of wanted terrorist Zakir Moosa, chief of Jammu and Kashmir-based terror outfit Ansar Ghazwat-ul-Hind, after intelligence agencies informed the police about his movements near Amritsar.
Summary:
An owl statue erected in northern Serbia has drawn mockery for resembling the shape of a penis.
Summary:
Priced at â¹41,999, the variant will be available with an 8GB RAM and 128GB internal storage.
Summary:
Sachin Tendulkar was given a champagne bottle when he got his first Man of the Match award in 1990 but was not allowed to drink because he was aged under 18.
Summary:
Sachin Tendulkar, who retired from international cricket on November 16, 2013, came out to open the innings for the first time in international cricket in an ODI against New Zealand in 1994.
Summary:
Two cats have gone viral for their numerous failed attempts during the past two years to gain access to Japan's Onomichi City Museum of Art. The cats have been reportedly attempting to access the museum ever since it held an exhibition of cat photographs in 2016.
Summary:
The engagement ring given to Deepika Padukone by Ranveer Singh is priced between â¹1.3 crore to â¹2.7 crore, as per reports.
Summary:
Ranveer Singh's home in Mumbai has been decorated with lights and flowers to welcome him and Deepika Padukone after their marriage in Italy on Wednesday and Thursday.
Summary:
Andhra Pradesh CM Chandrababu Naidu has withdrawn the 'General Consent' given to the CBI, barring it from search and operations in the state without approval.
Summary:
The apex court also said Verma should be given the CVC report on allegations against him, demanding Verma's response by Monday.
Summary:
Twitter CEO Jack Dorsey, who was on his maiden visit to India, on Thursday tweeted a picture of a South Indian food menu from a restaurant.
Summary:
The reports alleged Narayanan had decided to quit as he "didn't share the best of relations" with Flipkart CEO Kalyan Krishnamurthy.
Summary:
"Narayanan did not share the best of relations with Flipkart CEO Kalyan Krishnamurthy," the report added.
Summary:
Myntra CEO Ananth Narayanan has said all of Jabong's functions will be integrated with the company and about 10% of the combined workforce would be cut.
Summary:
Justifying the purchase of 36 Rafale jets from France, Attorney General KK Venugopal told the Supreme Court, "Had Rafale been used during the Kargil war, it could have hit the hilltops from 60 kilometres away." Chief Justice Ranjan Gogoi then said, "Mr Attorney, Kargil was in 1999-2000?
Summary:
After Traffic Police in Karnataka's Chikkaballapura asked a man to furnish his licence for riding a bike without wearing helmet, he took out a blood-soaked knife from pocket and said he had stabbed his friend.
Summary:
At least 11 people were killed and 81,948 evacuated in Tamil Nadu as cyclone 'Gaja' made landfall between Nagapattinam and Vedaranyam on Friday morning.
Summary:
The Hyderabad Traffic Police on Thursday issued an e-challan to the official vehicle of Additional Commissioner of Traffic Anil Kumar and imposed a fine of â¹235 for wrong parking in the city.
Summary:
Anwar assaulted his father a year ago for objecting to his liquor and gambling addictions.
Summary:
'Pihu' "seems quite a lengthy fare as there's no story...and it moves at its own pace", wrote Bollywood Hungama.
It's rated 2/5 [Bollywood Hungama], 1.5/5 [HT] and 3/5 [TOI].
Summary:
Sunny Deol and Sakshi Tanwar's 'Mohalla Assi', which released on Friday, "fails to make an impact because of the unexciting script", wrote Bollywood Hungama.
It's been rated 1.5/5 [Bollywood Hungama, The Indian Express] and 2/5 [NDTV].
Summary:
'Toxic' has been chosen as the 'Word of the Year 2018' by Oxford Dictionaries.
Summary:
After a video of former Pakistani cricket team captain Shahid Afridi saying that Pakistan doesn't need Kashmir went viral, the former cricketer said that his comments are being misconstrued by Indian media.
Summary:
Summary:
Indian Premier League side Delhi Daredevils chose to release the likes of former captain Gautam Gambhir, Australian all-rounder Glenn Maxwell and Indian pacer Mohammad Shami ahead of the tournament's 2019 edition.
Summary:
Users can ask questions and place orders with businesses they connect with that have enabled the feature on their profile.
Summary:
Summary:
Calling the attack politically motivated, Kumar said his family locked themselves inside their rooms.
Summary:
A supporter of US President Donald Trump has been banned from Walt Disney World for holding up 'Trump 2020' and 'Keep America Great' signs.
Summary:
India defeated Ireland by 52 runs on Thursday to book their place in the semi-finals of the 2018 Women's World T20.
Summary:
According to the IDC Q3 2018 Quarterly report, OnePlus achieved the highest-ever sales in a quarter with OnePlus 6, pushing the overall smartphone average selling price in the online space from $156 to $166.
Summary:
Sachin Tendulkar once fielded for Pakistan in a festival match against India at Mumbai during the 1987-88 season, two years before his international debut.
Summary:
Ex-Pakistan pacer Waqar Younis was known as the 'banana swing' bowler due to his technique of swinging the ball in the air at a very high speed.
Summary:
Sachin later revealed that Lillee, who was the institute's director, noticed his batting skills and asked him to stick to batting.
Summary:
He demanded a seat change, which the air hostess said wasn't possible.
Summary:
At least 134 flights were rescheduled and major offices and stock markets opened an hour late as 5,95,000 students took a nine-hour college entrance exam in South Korea on Thursday.
Summary:
The Italian staff at Deepika Padukone and Ranveer Singh's wedding was trained to speak in Konkani and Hindi languages, as per reports.
Summary:
Summary:
Deepika Padukone, who was dressed in a red and golden Sabyasachi lehenga during her Sindhi wedding that took place on Thursday, had her bridal chunri [veil] inscribed with 'Sada Saubhagyavati Bhava'.
Summary:
Ranveer got married to Deepika Padukone on Wednesday as per Konkani customs and the couple had another wedding on Thursday according to Sindhi customs.
Summary:
IPL 2018 auction's most expensive Indian player Jaydev Unadkat, who was bought for â¹11.5 crore by Rajasthan Royals, has been released by the team ahead of the IPL 2019 auction.
Summary:
A farmer in Karnataka's Jammanakatti village prevented a fire from spreading to houses by driving a tractor, which caught fire, into a lake on Monday.
Summary:
A man in Bihar's Purnea allegedly thrashed his daughter to death because his wife took too long to cook mutton.
Summary:
Women's rights activist Trupti Desai, who arrived in Cochin today to visit the Sabarimala Temple, was blocked by protesters who laid a siege to the airport.
Summary:
After North Korea said it successfully tested a new tactical weapon, the US said it remains "confident" that promises made by President Donald Trump and North Korean leader Kim Jong-un at their Singapore summit will be fulfilled.
Summary:
However, the sanctions do not target the Saudi Arabian government, an important US security and economic ally.
Summary:
Amid denuclearisation talks with the US, North Korean leader Kim Jong-un has overseen the testing of a new tactical weapon in his first such public inspection since last year, North Korea's state media reported.
Summary:
The government has sought Tata Sons' help to rescue cash-strapped Jet Airways, according to reports.
Summary:
Fitch last upgraded India's rating from BB+ to BBB- with a stable outlook in 2006.
Summary:
Congress leader Banda Karthika Reddy on Thursday sat in protest outside the residence of party President Rahul Gandhi after being denied a ticket to contest the Telangana Assembly elections.
Summary:
Elon Musk-led space exploration startup SpaceX has been granted permission from the US regulators to deploy more than 7,000 satellites designed to provide broadband communications.
Summary:
Using the hashtag "BikGayaChowkidar", Congress President Rahul Gandhi on Thursday claimed, "The latest skeleton to tumble out of the Rafale cupboard: No guarantee by the French Govt backing the deal".
Summary:
Cyclone Gaja crossed the Tamil Nadu and Puducherry coast between Nagapattinam and nearby Vedaranyam early on Friday, with wind speeds of up to 120 kmph.
Summary:
Uttar Pradesh Cabinet Minister Rajendra Pratap Singh was seen on camera allegedly getting his sandal cleaned by a staff member on Thursday, at a college in Kushinagar where he had gone to attend a plantation programme.
Summary:
Dutch banking giant ING on Thursday sold 1.27 crore shares in Kotak Mahindra Bank for about â¹1,440 crore.
Summary:
Deepika Padukone and Ranveer Singh, who got married on Wednesday as per Konkani customs and had another wedding on Thursday according to Sindhi customs, have released their official wedding photos.
Summary:
Sachin Tendulkar's mother watched her son play for the first time during his last international match.
Summary:
Earlier on Wednesday, the couple tied the knot in a Konkani-style wedding ceremony at Italy's Lake Como.
Summary:
Wishing Deepika Padukone and Ranveer Singh on their wedding on Thursday, Anushka Sharma tweeted, "Wishing you both a world of happiness and a beautiful journey together." "May the love & respect you have in each other, grow leaps and bounds.
Summary:
Kings XI Punjab have released their ex-captain Yuvraj Singh from the team for the upcoming season of IPL.
Summary:
Silva cut a Jack Leach delivery and walked towards the non-striker's end, thinking it went for a four.
Summary:
Five-time Ballon d'Or winner Cristiano Ronaldo spent â¹25 lakh on two wine bottles at a bar in London to celebrate his daughter Alana Martina's first birthday.
Summary:
Tasako reportedly suffered brain haemorrhage after being repeatedly hit in the head by his opponent.
Summary:
India captain Virat Kohli has said head coach Ravi Shastri doesn't say "yes" to him all the time as perceived by the media.
I don't think anyone has said no to me as much as him," Kohli added.
Summary:
World champion Lewis Hamilton has clarified on why he felt "conflicted" to race in a "poor place" like India, saying the money could've been spent on building homes and schools rather than Formula One track.
Summary:
Ex-Australia captain Steve Waugh has said he's not sure if Virat Kohli-led India is better than "some of the great" Indian sides he played against.
Summary:
Following Binny Bansal's resignation as Flipkart Group CEO, Walmart said Myntra and Jabong will now operate under Flipkart and that Narayanan will report to Krishnamurthy.
Summary:
The Press Council of India (PCI) has decided against issuing a directive to the media prohibiting the use of the word 'Dalit', saying a blanket ban was neither advisable nor feasible.
Summary:
Delhi's AAP government has offered to host Carnatic singer TM Krishna's concert after Airports Authority of India cancelled the event he was supposed to perform at.
Summary:
Sanghrajka has spent 13 years in Infosys over two stints and is currently Executive Vice President and Deputy Chief Financial Officer.
Summary:
The BJP has denied tickets to its 43 sitting MLAs, including four ministers for the upcoming Rajasthan Assembly elections.
The saffron party has released two lists of 162 candidates so far for 200 assembly constituencies.
Summary:
2,907 candidates will be contesting the Madhya Pradesh Assembly elections from 230 assembly seats on November 28.
Amongst the major parties, only the BJP has fielded candidates on all 230 seats.
Summary:
Two hackers have earned a bounty of â¹35 lakh for finding an iPhone X bug that gives access to deleted photos or files.They believe it could be deployed through a malicious WiFi access point, and accessed via just-in-time (JIT) compiler which helps iPhones run faster.
Summary:
"We've received report on Maratha reservation from Backwards Commission," he said.
Summary:
Gujarat Patidar leader Hardik Patel on Thursday took a dig at the BJP saying even though Uttar Pradesh has a "government of babas", Ram temple is yet to be built in Ayodhya.
Summary:
Japanese startup TBM that develops paper called 'Limex' made from limestone has announced that it has raised around $27 million in funding.
Summary:
US-based startup Ezra that offers cancer diagnosis using a full-body MRI has raised $4 million in seed round led by VC firm Accomplice.
Summary:
US-based robotic process automation startup Automation Anywhere has raised $300 million from SoftBank Vision Fund.
Summary:
The Women and Child Development Ministry on Thursday announced the government will give employers the salaries for seven of the 26 weeks of maternity leave for women earning more than â¹15,000 a month.
Summary:
Defence Minister Nirmala Sitharaman on Thursday said she cannot compel the armed forces to buy equipment from any specific Indian company.
Summary:
The value of oil imports in October totalled $14.21 billion, up 52.64% from a year earlier.
Summary:
Jet Airways shares rallied nearly 25% on Thursday following reports that Tata Sons is in talks to buy a controlling stake in the cash-strapped airline.
Summary:
Taapsee Pannu, while speaking about pay parity in Bollywood, said she can't expect the same salary as Amitabh Bachchan, Akshay Kumar and Varun Dhawan just because she's working with them.
Summary:
Deepika's parents Prakash Padukone and Ujjala Padukone, and her sister Anisha Padukone are in the picture.
Summary:
Ahead of Rajasthan Assembly elections, the state police used Deepika Padukone's "ek chutki sindoor" dialogue from the movie 'Om Shanti Om' to urge the people to vote.
Summary:
Notably, Yuvraj had hit Broad for six sixes in an over during the ICC World T20 in 2007.
Summary:
Shail's lawyer argued that Facebook had no right to disable her account after removing content from her profile.
Summary:
Banned Australian cricketer David Warner, who is currently serving one-year ban from domestic Australian cricket and international cricket over ball-tampering scandal, has been retained by SunRisers Hyderabad for IPL 2019.
Summary:
Facebook CEO Mark Zuckerberg ordered his management team to use only Android phones and not Apple's iPhones, a New York Times report said on Wednesday.
Zuckerberg's reaction allegedly came after Apple CEO Tim Cook criticised Facebook for collecting users' personal data.
Summary:
The CBI had recovered arms and ammunition from her residence during raids in connection with the shelter home case.
Summary:
The video shows sparks and smokes coming out of the speeding car that also brushed passed several vehicles.
Summary:
Delhi air hostess Anissia Batra was under the influence of alcohol when she committed suicide by jumping off her building's terrace on July 13, viscera report showed.
Summary:
Speaking on the proposed 125-foot-tall statue of Mother Cauvery, Karnataka Minister DK Shivakumar said, "The land already belongs to the government and we will be inviting investors to invest in it.
Summary:
Indian Hotels, which runs the Taj group of hotels, is planning to monetise around 10 properties in the next three years to bring down debt, CEO Puneet Chhatwal said.
Summary:
India's largest telecom operator Vodafone Idea on Wednesday said that it is planning to raise up to â¹25,000 crore.
Summary:
Shah Rukh Khan, while speaking about 'Thugs of Hindostan' and its performance at the box office, defended its lead actors Amitabh Bachchan and Aamir Khan.
It's heartbreaking," Shah Rukh said.
Summary:
The names of the actors were listed below the message.
Summary:
"He (Rahul) cannot speak about the corruption...his party unleashed while in power...," he said.
Summary:
Summary:
"As a company whose work touches...so many people, we feel we have an enormous responsibility...to turn our values into action," Apple's retail head Angela Ahrendts said.
Summary:
Lisa Brennan-Jobs, daughter of late Apple Co-founder Steve Jobs, in her book 'Small Fry' revealed that Steve, while talking about college, said, "During your most productive years it kills creativity".
Summary:
Home Minister Rajnath Singh on Thursday said the Congress and other opposition parties are facing a credibility crisis in Chhattisgarh.
Summary:
Delhi BJP unit chief Manoj Tiwari on Thursday said that Dassault CEO Eric Trappier's recent statement on the Rafale deal is a "slap on the face of Congress chief Rahul Gandhi".
Summary:
Scientists at a Chinese institute on Tuesday announced that their nuclear fusion reactor dubbed 'artificial sun' reached 100 millionðC, the temperature required to carry out fusion on Earth.
Summary:
The potentially rocky planet, known as 'Barnard's star b', orbits around its host star every 233 days.
Summary:
Scientists have discovered a 31-kilometre wide crater buried under ice-sheet in northern Greenland.
Summary:
The hallmarking of gold is a purity certification of the precious metal.
Summary:
Swedish furniture giant IKEA is planning to buy rice straw from farmers in northern India to use it as raw material for its products.
Summary:
Under PCA, banks are restricted from lending until they improve their capital ratios, reduce bad debt and become profitable.
Summary:
Former Team India captain Rahul Dravid smashed a 22-ball fifty in 29 minutes in an ODI against New Zealand on November 15, 2003.
Summary:
Angad Bedi has revealed his friend, cricketer Yuvraj Singh, is upset with him over his sudden wedding with Neha Dhupia.
Summary:
According to the affidavit submitted by Telangana CM K Chandrashekar Rao ahead of the state assembly elections, he has movable and immovable assets worth â¹22.61 crore against â¹15.95 crore in 2014.
Summary:
Bradman hit 172 runs in the first innings, becoming the first Australian to score 100 first-class centuries.
Summary:
Sharing an article of women boxers wearing masks and scarves to combat smog in Delhi ahead of the world championships, cricketer Gautam Gambhir tweeted, "My head hangs in shame!!!
Summary:
Sakurada also appeared confused when asked about whether USB drives were in use at Japanese nuclear facilities.
Summary:
Summary:
Flipkart Co-founder Binny Bansal resigned as Group CEO a day after he was informed of investigation over misconduct by Walmart lawyers, "catching some of the board members unawares," said a report.
Summary:
Aditya Ghosh, ex-President of India's largest airline IndiGo, has joined SoftBank-backed hospitality startup OYO as CEO for India and South Asia.
Summary:
Delhi University Students Union President Ankiv Baisoya, who was accused of submitting a fake degree to get admission in DU for a post-graduate course, has been asked to resign from his post by Akhil Bharatiya Vidyarthi Parishad (ABVP).
Summary:
Rajapaksa claimed the speaker had no authority to remove him from office by voice vote.
Summary:
Reportedly, some ministers had spoken out against the draft agreement during the debate.
Summary:
French President Emmanuel Macron's spokesperson has accused US President Donald Trump of lacking "common decency" after Trump criticised France on 2015 Paris attacks' anniversary.
Summary:
Victoria's Secret Lingerie CEO Jan Singer has resigned amid decreasing sales and controversy around lack of diversity at its annual fashion show, as per reports.
Summary:
Shares of Walmart, which recently acquired 77% stake in Flipkart for $16 billion, have risen 2.8% this year.
Summary:
Tata Sons Chairman N Chandrasekaran is expected to present a business viability plan on a proposed acquisition of cash-strapped Jet Airways to the board on Friday, as per reports.
Summary:
The 5-storey bungalow âÂÂGulitaâÂÂ, spread across 50,000 square feet, is a gift to the couple from Piramal's parents Ajay Piramal and his wife Swati.
Summary:
Sharing an image with Twitter CEO Jack Dorsey, actor Shah Rukh Khan has said, "Today @jack made me realise...that all Work and no Pray, would make Jack a dull boy." "Thx for dropping in," he added.
Summary:
Facebook Messenger has started rolling out its unsend feature that lets users delete messages from chat within 10 minutes of sending.
Summary:
Researchers from Carnegie Mellon University, US and University of Coimbra, Portugal have developed wearable tattoo-like circuits that can be used in different areas including healthcare, soft robotics and gaming.
Summary:
Google parent Alphabet is planning to shut down its robotics unit called Schaft that develops bipedal robots aimed at helping out in disaster efforts.
Summary:
The startup also posted $2.95 billion revenue for the period, up by 38% from the same quarter last year.
Summary:
The coastal districts have been put on high alert by Tamil Nadu government as the cyclonic storm Gaja is set to make landfall between Cuddalore and Pamban on Thursday evening bringing heavy rainfall to state.
Summary:
An India-Nepal friendship bus on Janakpur-Patna-Janakpur route collided with a truck on Thursday in Bihar's Muzaffarpur.
Earlier this year, India and Nepal agreed to run buses on eight more routes, including Patna-Janakpur route, to improve connectivity between the two neighbours.
Summary:
After French President Emmanuel Macron called for a "real" European army "to protect ourselves with respect to China, Russia and even the US", US President Donald Trump reminded France of its near-defeat to Germany in World Wars.
Summary:
The 585-page withdrawal agreement covers several areas, including the post-Brexit rights of British citizens in Europe and EU citizens in Britain.
Summary:
Iran executed two men convicted of economic crimes on Wednesday, including one who was allegedly caught with two tons of gold coins and dubbed the 'Sultan of Coins'.
Summary:
Pledge your support to provide kids access to play even after the sun sets.
Summary:
UpGrad and IIIT-Bangalore's PG Program in Data Science, ranked among the top 5 in India helps learners make career transitions.
With UpGrad's 360-degree career support, learners have transitioned into companies like Uber, KPMG, Microsoft and Flipkart.
Summary:
Mubeen Farooky, another lawyer representing the victim, said that in over 110 hearings, Rajawat appeared in the case only twice.
Summary:
Sachin debuted against Pakistan in Karachi, aged 16 years 205 days, becoming the youngest Indian to play a Test.
Summary:
The casting, made by Farah's friend Bhavna Jasra, shows their hands in a tight clasp.
Summary:
All India Bakchod Co-founder Gursimran Khamba, who was anonymously accused of sexual harassment last month, has been removed as creator and writer of the upcoming political satire show 'Gormint', Amazon Prime India said.
Summary:
Union Minister Smriti Irani on Wednesday posted a picture of a skeleton on a bench and wrote, "When you have waited for #deepveer #wedding #pics for too longgggg" on Instagram.
Summary:
Director Karan Johar took to Twitter to wish Deepika Padukone and Ranveer Singh on their wedding and wrote, "Such a stunning gorgeous and beautiful couple!!!!
Riteish Deshmukh wrote, "Heartiest Congratulations to the newly weds...It's blissful to see love culminate into marriage."
Summary:
After Deepika Padukone got married to Ranveer Singh on Wednesday, her cousin Amit Padukone congratulated the couple and tweeted, "Magical week, steeped purely in love.
@RanveerOfficial Welcome to the fam!" He added, "You've dethroned me as filmiest, but I'll cope.
Summary:
Ashish Kundra has been appointed as the Mizoram Chief Electoral Officer (CEO), replacing SB Shashank who had faced protests in the poll-bound state.
Summary:
Summary:
RJD supremo Lalu Prasad Yadav's son Tejashwi has tweeted a picture of CCTV camera installed above the boundary wall of his house and accused Bihar CM Nitish Kumar of "snooping" on him.
Summary:
After interacting with senior Indian Air Force officers on the Rafale case, the Supreme Court on Wednesday said, "This is a different kind of war room and you all can go to your war rooms.
Summary:
South African President Cyril Ramaphosa will reportedly be the chief guest at Republic Day celebrations next year, weeks after the White House confirmed US President Donald Trump will not be able to attend due to "scheduling constraints".
Summary:
After a 27-year-old man in Ireland was cleared of rape charges because the 17-year-old alleged victim was wearing a 'lacy thong', a female MP protested by producing an underwear in the parliament.
Summary:
Gandhi falsely claimed at an election rally that Veer Savarkar had apologised to the British to be freed from jail, he said.
Summary:
World's richest person Jeff Bezos on Thursday shared a video of late comic book writer Stan Lee making jokes aboard his space startup Blue Origin's crew capsule.
Summary:
Speaking at an event in Singapore, PM Narendra Modi on Wednesday said that India is the best destination for fintech companies and startups.
Summary:
Nearly five years after the bifurcation of Andhra Pradesh, the state has finalised its new emblem for official use.
Summary:
An eight-year-old boy was thrashed with a stick by his school teacher in Moradabad, Uttar Pradesh after he vomited in the classroom on Children's Day on Wednesday.
Summary:
Police officials said they are not in any position to take risks after the 2016 Pathankot attack and have launched a massive manhunt.
Summary:
The Airports Authority of India (AAI) has postponed a concert of Carnatic singer TM Krishna in Delhi citing "some exigencies of work".
Summary:
A 34-year-old Mumbai woman consumed rat poison to kill herself and allegedly gave it to her five-year-old son, following which he died but she survived.
Summary:
In the wake of a Snow and Avalanche Study Establishment warning, the Ministry of Home Affairs has advised the governments of Jammu and Kashmir, Uttarakhand and Himachal Pradesh to exercise precautions and keep a close watch.
Summary:
RLSP chief Upendra Kushwaha said this was the fourth murder of an RLSP leader in a year, and tweeted, "Yet, they (Bihar government) call it good governance.
Summary:
The Shri Ramayana Express, a train covering key destinations associated with Lord Ram's life, was flagged off on Wednesday from the Safdarjung Railway Station in Delhi.
Summary:
The police said the victim, whose identity has not been released, had visible injuries.
Summary:
S.P. Jain Institute of Management & Research's PGDM is a two-year residential programme known for its innovative pedagogy, value-based learning and quality placements (average salary for class of 2018 is â¹22.24 lakh pa, median salary is â¹21.35 lakh pa).
Summary:
Fijian cricketer Ilikena Lasarusa Talebulamaineiilikenamainavaleniveivakabulaimainakulalakebalau, also known as IL Bula, has the longest known last name for any first-class cricketer.
Summary:
The Test in which Sachin Tendulkar made his international debut on November 15, 1989, was not telecast live in India, neither covered on radio.
Summary:
A man accompanied by a group of his friends took a 350-kg bathtub full of coins to an Apple store in a Russian mall to buy an iPhone Xs. An Instagram video showed him and his friends carrying the bathtub to the store in a car.
Summary:
A video of four Russians, who dressed up as a bus to cross a bridge that allows only vehicles to cross to the other side, has gone viral on the internet.
Summary:
Prior to this, Dorsey had tweeted "u up?" to Shah Rukh Khan.
Summary:
Tata Motors has fired its Corporate Communications Head Suresh Rangarajan, who was accused of sexual harassment by multiple female employees.
Summary:
The incident took place after McNamara left the coin in the dressing room.
Summary:
Ex-India captain Sourav Ganguly has said the Australian cricket team without Steve Smith and David Warner is like India not having Virat Kohli and Rohit Sharma in the team.
Smith and Warner are currently serving one-year bans over their involvement in ball-tampering scandal.
Summary:
Summary:
A court in Bengaluru on Wednesday granted bail to mining baron and former BJP minister Janardhana Reddy in a â¹18-crore bribery case on a bond of â¹1 lakh.
Summary:
A 16-year-old girl was killed and eight others were hospitalised after a retired professor named Kamal Kumar lost control of his car and rammed five vehicles in west Delhi's Meera Bagh on Wednesday evening, the police said.
Summary:
The government sought nhelp from private investors for the project which is expected to cost â¹1,200 crore.
Summary:
A 53-year-old fashion designer named Mala Lakhani and her 50-year-old domestic help, Bahadur, were found murdered at her residence in Delhi's Vasant Kunj on Wednesday night.
Summary:
A 14-year-old boy in West Bengal's Bankura died on Monday night, when another teenager allegedly smashed his head with a stone during a fight over a game of carrom.
Summary:
JSW said the entry of ArcelorMittal would be good for competition as India's steel market has room for growth.
Summary:
Chawla, who is also the Chairman of NSE, was named by CBI in a chargesheet related to the Aircel-Maxis case.
Summary:
India's largest telecom operator Vodafone Idea on Wednesday posted a second-quarter loss of â¹4,974 crore and said it is looking to raise about â¹25,000 crore.
Summary:
According to some users, the issue was apparently experienced after the recent November security patch update by Google.
Summary:
He reiterated his earlier remark that no structure named after Mughal emperor Babur will be allowed at the disputed site.
Summary:
Summary:
Punjab CM Captain Amarinder Singh on Wednesday condemned alleged attempts to politicise the armed forces, saying that they are meant to report only to their regimental heads and not work at the behest of the political parties.
Summary:
Bengaluru-based car wash startup CleanseCar has raised â¹3.5 crore angel funding from incubation platform Venture Catalysts.
Summary:
Talking about SpaceX's planned Mars mission, Vladimir Koshlakov who heads Russia's Keldysh Research Centre has said, "Elon Musk is using the existing tech, developed a long time ago." The centre also unveiled its reusable rocket designed for an attempted mission to Mars.
Summary:
The National Green Tribunal (NGT) on Wednesday ordered Punjab government to submit a fine of â¹50 crore as environmental compensation for polluting rivers Sutlej and Beas.
Summary:
A total of 18.78 lakh foreigners visited India this year within the first 10 months on e-visa, which is the highest so far.
Summary:
India's Foreign Secretary Vijay Gokhale has said the country is open to importing more oil and gas from the US as a way of expanding trade.
Summary:
about 75." He revealed this on Neha's talk show '#NoFilterNeha' season 3.
Angad further revealed he was once in a relationship with a woman with whom he had a 10-year difference.
Summary:
New Zealand newspaper 'The Gisborne Herald' mistook director Spike Lee for Marvel Comics co-creator Stan Lee in an obituary headline for the latter which read "'Characters first, superheroes next': Spike Lee dies at 95".
Summary:
Actress Parineeti Chopra on Wednesday criticised a news website for publishing an article that claimed that she won't be her cousin Priyanka Chopra's bridesmaid at her wedding.
Summary:
Summary:
Raina, who pulled off the catch by diving to his left at slips, shared a video on Twitter and wrote, "Idhar chala mai, udhar chala!
Summary:
The Supreme Court on Wednesday reserved its order on petitions seeking court-monitored probe in procurement of 36 Rafale fighter jets from France.
Summary:
PM Narendra Modi, who is on a two-day visit to Singapore, told US Vice President Mike Pence that all the traces and leads in the global terror attacks ultimately lead to a "single source and single place of origin".
Summary:
A 14-year-old boy addicted to gaming allegedly committed suicide in Maharashtra's Nagpur after his mother forcibly took back a mobile phone from him, police said.
Summary:
Summary:
Syari and Rio Nanda Pratama's wedding was set for November 11.
Summary:
Infosys Co-founder Narayana Murthy has praised PM Narendra Modi for working hard in reducing corruption and said that he rarely hears a complaint of corruption at the central government level.
Summary:
Ireland Women captain Laura Delany broke down into tears after her team's 38-run defeat against Pakistan in a Women's World T20 Group B match on Tuesday.
Summary:
Congress President Rahul Gandhi on Wednesday accused PM Narendra Modi of being arrogant.
The PM doesn't seem to understand this...," he added.
Summary:
Asian Games 2018 triple medallist Hima Das was appointed as the first ever youth ambassador of United Nations International Children's Emergency Fund (UNICEF) India on the occasion of Children's Day on Wednesday.
Summary:
Google has marked Children's Day in India with a space exploration doodle designed by 2018 'Doodle 4 Google' competition winner Pingla Rahul More who is a school student from Mumbai.
Summary:
Summary:
Renren, once called 'Facebook' of China, has agreed to sell its social networking business 'renren.com' to Beijing Infinities for a cash consideration of $20 million.
Summary:
"They don't have any knowledge about it," Singh, Minister of State for External Affairs, said.
Summary:
"He's confused, he says my son's name came up in Panama papers," he added.
Summary:
Official sources on Wednesday said the Cabinet Committee on Parliamentary Affairs has recommended convening of the winter session of Parliament from December 11 to January 8.
Summary:
Food delivery startup Swiggy's investors are reportedly planning to sell shares worth $300 million which will be included in Swiggy's $900 million funding round.
Summary:
British luxury carmaker Aston Martin has begun 'real world' testing of the prototype of its first SUV in Wales, the company said on Wednesday.
Summary:
Bengaluru-based startup Perpule has raised $4.7 million in Series A round of funding from Kalaari Capital, Prime Venture Partners, and Venture Highway.
Summary:
Dasari had joined the Hinduja Group company as Chief Operating Officer fourteen years ago and took over as the MD in 2011.
Summary:
The police on Wednesday said a 28-year-old woman was allegedly sexually assaulted and thrown out of a moving car, following which she succumbed to her injuries in a hospital in Gujarat.
She fell on the road and received head injuries," a police official said.
Summary:
The teacher was also incharge of the school's hostel in which the girl stayed.
Summary:
The rocket is expected to carry Indian astronauts for the 2022 mission and also India's second Moon mission Chandrayaan-2 in January 2019.
Summary:
Hill bowled Australia's Nat Thomson for one run to claim Test cricket's first wicket.
Summary:
Sachin scored 74(118) in his final innings.
Summary:
Ex-Australian wicketkeeper Adam Gilchrist had put a squash ball inside his left glove when he slammed the highest individual score in a World Cup final in 2007 against Sri Lanka.
Summary:
"If I don't play...IPL next year it's a good opportunity to freshen up for a massive six months of cricket in...UK," Starc said.
Summary:
A user in the United States has claimed that his Apple iPhone X exploded allegedly after it was updated to iOS 12.1.
Summary:
Apple's Co-founder Steve Wozniak in an interview on Tuesday said that late Co-founder Steve Jobs would be "very happy" with Apple's innovation if he was alive.
âÂÂEvery other phone company had to come along and copy Apple," he further said.
Summary:
Summary:
The Delhi Police had closed the case, filed by one of the victim's brothers, in 1994 for want of evidence.
Summary:
The patient said a doctor checked his wound, following which the peon started stitching it while the doctor just saw.
Summary:
An art teacher of a Pune school was arrested on Monday for allegedly hitting an 11-year-old student on the face in October, which led to the boy getting facial paralysis.
Summary:
Police have said Gurugram's 32-year-old Deepika Chauhan, who was allegedly pushed off from the eighth floor of her apartment by her husband last month, had said, "Please donâÂÂt kill me, I love our children." The statement was given to the police by a neighbour.
Summary:
"If you look at...the contracts..almost all of them bet on a very core technology transformation.
That's what is leading to large contract wins," he added.
Summary:
The Naresh Goyal-led company, part-owned by Etihad Airways, reported a loss in 20 quarters compared with a profit in 21 during the period.
Summary:
The diamond was sold to US luxury brand Harry Winston, owned by Swiss Swatch group.
Summary:
Former Rajasthan Chief Minister Ashok Gehlot and state Congress President Sachin Pilot will contest the December 7 Assembly elections in the state.
Gehlot said, "We have said many times that whatever (Congress President) Rahul Gandhi decides on CM...
Summary:
Addressing a rally for the second phase of Chhattisgarh's Assembly polls, he accused Congress of "insulting martyrdom" in anti-Naxal operations.
Summary:
Apple Co-founder Steve Wozniak in an interview on Tuesday said he doesn't believe in self-driving cars, while adding that, "I don't really believe it's quite possible yet".
Summary:
A Bangkok-based restaurant named GAA, which is headed by chef Garima Arora from Mumbai, has received its first Michelin star 1.5 years after it first opened.
Summary:
"If democracy's thriving in India, it's because of...Constitution," Union Minister Prakash Javadekar said.
Summary:
The startup offers 250-watt and 450-watt models, which are priced at $890 and $1,090 respectively.
Summary:
US-based co-working space startup WeWork on Tuesday said it has raised $3 billion funding from Japan's SoftBank.
Summary:
Delhi-based co-working space provider Innov8 has posted a 4.2 times increase in its revenue at â¹8.2 crore in FY18, compared to â¹1.95 crore in the previous fiscal, as per filings.
Summary:
The International Space Station (ISS) is being installed with Advanced Closed Loop System (ACLS), which is a life-support system developed by the European Space Agency (ESA).
Summary:
The concept lander was created using AI and cloud computing-based process called generative design.
Summary:
Summary:
A lawyer for accused drug lord Joaquin "El Chapo" Guzman claimed the present and ex-Mexican presidents took "hundreds of millions in bribes" from cartel leader Ismael "El Mayo" Zambada, on the first day of Guzman's trial in a US court.
Summary:
The couple, who has been dating for six years, will reportedly have another wedding ceremony on Thursday as per Sindhi customs.
Summary:
Former Madhya Pradesh left-arm spinner Manish Majithia bowled 20 overs and took a wicket without conceding a run in the second innings against Railways in a Ranji Trophy match on November 14, 1999.
Summary:
Gilchrist swept an Aravinda de Silva delivery and got an edge, which bounced off from his pads to Kumar Sangakkara.
Summary:
Actress Deepika Padukone's sister Anisha Padukone changed her name to '#Ladkiwale' on social media ahead of Deepika's wedding to Ranveer Singh.
Summary:
Actor Ranveer Singh sang the song 'Tune Maari Entriyaan' from his film 'Gunday' at his sangeet ceremony held on Tuesday, as per reports.
The actor reportedly also played the dhol himself.
Summary:
During a press conference in London, former Pakistani cricket team captain Shahid Afridi said, "Pakistan doesn't need Kashmir; it is not able to even handle the four provinces it has." "Say Pakistan doesn't need Kashmir, don't give it to India as well, let Kashmir become a country.
Summary:
A 24-year-old man died in Andhra Pradesh's Nellore on Monday, after he placed a snake around his neck and it bit him.
Summary:
While representing the Centre in Supreme Court on Wednesday, Attorney General KK Venugopal said, Rafale deal pricing details are a matter of "national security" and cannot come under judicial review.
Summary:
A CCTV footage from a Chennai railway station shows a Railway Protection Force (RPF) constable saving a man after he slipped and almost fell into the gap between a moving train and platform.
Summary:
At least five fire tenders were rushed to the 21-storey building and the fire was doused after over an hour.
Summary:
In a third tweet, Trump wrote, "Diwali, the Hindu Festival of Lights...Very, very special people!"
Summary:
The British Royal family on Wednesday released their family portrait clicked at Clarence House, Prince Charles' residence, on his 70th birthday.
Summary:
Police officers in Australia's Nunawading posed as car window washers as part of an undercover operation to catch drivers using their mobile phones.
Summary:
India's largest broadcaster Zee Entertainment Enterprises has said its promoters (Essel Group) plan to sell up to 50% of their shareholding in the company to a strategic partner.
Summary:
Infosys Co-founder Narayana Murthy has said that it is not the responsibility of Prime Minister Narendra Modi to go to every village and keep it clean.
Summary:
Google's self-driving car unit Waymo's CEO John Krafcik has said that even though driverless cars are truly here, "autonomy always will have some constraints".
Summary:
This comes days after Ajay's sons Dushyant and Digvijay were expelled from the party for indulging in "indiscipline" at a rally held on October 7.
Summary:
Maharashtra BJP President Raosaheb Patil Danve on Wednesday said that his party welcomed Shiv Sena chief Uddhav Thackeray's decision to visit Ayodhya later this month.
Summary:
Online food delivery startup Swiggy is planning to add 2,000 women to its food delivery fleet by March 2019.
Summary:
Logistics management startup FarEye has acquired internet of things-powered freight logistics marketplace Dipper Technologies in a cash and stock transaction.
Summary:
The Uttar Pradesh government is considering renaming the Allahabad State University and Board of High School and Intermediate to Prayagraj, according to Deputy CM Dinesh Sharma.
Summary:
He said these core values bind our nation together.
Summary:
Former President Pranab Mukherjee, former Vice President Hamid Ansari, former PM Manmohan Singh and UPA Chairperson Sonia Gandhi paid their respects to India's first PM Jawaharlal Nehru at Shanti Van on Wednesday on his 129th birth anniversary.
Summary:
The AIADMK on Wednesday unveiled a new life-size statue of late Tamil Nadu CM Jayalalithaa, which has been installed next to the statue of MG Ramachandran at their party headquarters.
Summary:
The Sri Lankan Parliament on Wednesday passed a no-confidence motion against the government headed by Prime Minister Mahinda Rajapaksa, effectively removing the leader and his cabinet from their posts.
Summary:
China's largest lender ICBC's Indian unit has set up a $200-million fund for investing in small and medium-sized Indian businesses, the Indian embassy in Beijing said.
Summary:
During Diwali celebrations at the White House on Tuesday, US President Donald Trump said Indians are "very good negotiators," while adding US-India trade talks are "moving along".
Summary:
American singer-actress Miley Cyrus and her fiancé, actor Liam Hemsworth, tweeted pictures of the remnants of their house, which was burnt in the California wildfire.
Earlier, Miley had tweeted, "My house no longer stands but the memories shared with family & friends stand strong."
Summary:
DeepikaâÂÂs father Prakash Padukone reportedly gave Ranveer a coconut and formally welcomed him to the family.
Summary:
Filmmaker Karan Johar has apologised for sharing a video on Instagram from 'India's Got Talent 6' sets where he was seen mocking Kirron Kher for wearing a spiked bamboo Arunachalee hat.
Summary:
HBO has confirmed that the eighth and final season of 'Game of Thrones' will premiere in April 2019, almost two years after season seven.
Summary:
Weeks before the Assembly elections in Rajasthan, BJP MP Harish Meena, quit his party and joined Congress in presence of Ashok Gehlot and Sachin Pilot.
Summary:
Rajasthan Congress leaders Sachin Pilot and Rameshwar Dudi recently broke into an argument over ticket allocation in Congress chief Rahul Gandhi's presence at a meeting to finalise the first candidate list for Assembly elections, reports said.
Summary:
"I was told he had an argument with his father," said an official.
Meanwhile, Palender's father said, "He told me he needed money.
Summary:
Summary:
Flipkart Co-founder Binny Bansal, who resigned as the Group CEO on Tuesday over "misconduct allegations", had a consensual affair with the woman complainant, as per a Bloomberg report.
Summary:
Speaking at the third edition of Singapore FinTech Festival, PM Narendra Modi on Wednesday said financial inclusion has now become a reality for 1.3 billion Indians.
Summary:
A 48-year-old traffic policeman was killed on Tuesday when a truck hit him and dragged him for over 400 metres after he tried to stop it for a routine check in southwest Delhi.
Summary:
While introducing his daughter Ivanka to Indian-American officials at the White House Diwali function, US President Donald Trump said, "PM Modi is my friend and now her friend." "[She] has great respect for India and the Indian people," added Donald Trump.
Summary:
Expressing concern over air pollution in Delhi, Justice Arun Mishra said in the Supreme Court on Tuesday, "I am an early riser and go for a morning walk, but I cannot do it due to pollution." "What is happening in Delhi?
Summary:
"The arrow went up into her heart but didn't touch the...baby.
[Doctors] operated with the arrow still in because it'd have been too dangerous to take out," said Devi's husband.
Summary:
PM Narendra Modi on Wednesday met US Vice President Mike Pence on the sidelines of the East Asia Summit during his two-day visit to Singapore.
Summary:
PM Narendra Modi on Tuesday met Twitter CEO Jack Dorsey who called on him in New Delhi, and tweeted, "I enjoy being on this medium, where I've made great friends and see everyday the creativity of people." "I enjoyed our conversation about the importance of global conversation.
Summary:
A drunk Irish business class passenger hurled abuses and manhandled a female attendant onboard an Air India flight after she was allegedly denied more alcohol.
Summary:
The country's oldest steelmaker Tata Steel on Tuesday posted a second-quarter profit of â¹3,604 crore, an increase of nearly 270% from last year.
Summary:
Onkar Kanwar and Neeraj Kanwar drew â¹45 crore and â¹42.75 crore salary, respectively, in 2017-18.
Summary:
Summary:
The Home Ministry has extended its ban on eight Meitei extremist organisations active in Manipur for their continued involvement in unlawful and violent activities.
Summary:
A female over-ground worker carrying ammunition including 20 hand grenades was arrested on Tuesday near Srinagar.
Summary:
Summary:
In a first, a mosque in Hyderabad has been turned into a health centre catering to 40-50 people every day free of cost.
Summary:
US President Donald Trump on Tuesday said he has nominated Indian-American lawyer Neomi Rao to replace Supreme Court Justice Brett Kavanaugh on the DC Circuit Court of Appeals.
Summary:
Sirisena had earlier sacked PM Ranil Wickremesinghe and replaced him with former President Mahinda Rajapaksa.
Summary:
Located in the heart of Parel, Kalpataru Avana offers east-west open 4-bed residences with stunning sea views on both sides.
Summary:
Jony Ive, Apple's Chief Design Officer, has created a ring with industrial designer Marc Newson, made entirely out of a lab-made diamond.
Summary:
Abhishek Bachchan, while talking about criticism and his reaction to it, revealed, "I'd stick up my movie reviews on my bathroom mirror and highlight all the portions that said how bad I was." "I see my films almost every day...I do it for educational purposes," he added.
Summary:
The decision was taken when the body called for a meeting between Nanda and Nath, but the latter did not attend it.
Summary:
The UK police has arrested a lookalike of David Schwimmer, who played Ross Geller in TV show Friends, for theft at a Blackpool restaurant.
Summary:
Mumbai Indians retweeted Hardik Pandya's picture with his brother Krunal and Kieron Pollard, writing, "Find a better allrounder trio.
Summary:
In his final letter to Flipkart staff, ex-Group CEO Binny Bansal said he is "stunned" by the uncorroborated allegations, and that these have been challenging times for him and his family.
Summary:
"The allegations left me stunned and I strongly deny them," Bansal said.
Summary:
Union Ministers Narendra Singh Tomar and DV Sadananda Gowda got charge of additional portfolios on Tuesday, following the demise of Union Minister Ananth Kumar.
Summary:
Netaji Subhas Chandra Bose's relative and West Bengal BJP vice-president Chandra Kumar Bose has written to PM Narendra Modi to rename Andaman & Nicobar Islands to 'Shaheed and Swaraj Islands' as a tribute to Netaji.
Summary:
The forces reportedly recovered five pistols, 10 pistol magazines, 60 bullets of pistol, one AK assault rifle, two AK rifle magazines with 234 rounds of ammunition, 15 hand grenades and 12 fuses for IEDs from him.
Summary:
Following the steps shown in the video, the man had cut the owl's claws and inserted needles into its liver and lungs, police said.
Summary:
CNN has sued US President Donald Trump and his aides, seeking immediate restoration of its reporter Jim Acosta's White House press pass.
Summary:
Malaysian Prime Minister Mahathir Mohamad said Goldman Sachs bankers "cheated" the country in dealings with state fund 1MDB.
Summary:
Former Gwalior mayor and BJP leader Sameeksha Gupta on Tuesday announced that she has quit the party and will be contesting the Assembly elections in Madhya Pradesh independently.
So I have resigned from the party," she said.
Summary:
Colombian club Deportivo Cali's defender Juan Quintero and his brother were shot at after his club failed to reach the first division playoffs.
Summary:
The Australian cricket team has approached former Haryana and Kings XI Punjab spinner Pardeep Sahu to train their batsmen to bat against spin bowling.
Summary:
MLS side LA Galaxy's Ibrahimovic received an average of 36.36% of the votes, whereas DC United's English forward Wayne Rooney received 32.25% votes.
Summary:
The Indian women's football team on Tuesday qualified for the Olympic Qualifiers second round for the first time.
Summary:
US-based startup Simple Habit which operates a meditation app named 'Simple Habit' has raised $10 million funding.
Summary:
Summary:
Finance Minister Arun Jaitley on Tuesday said 'falsehood' is not a substitute for Rahul Gandhi's 'failed politics', while responding to allegations made by Congress chief Rahul Gandhi that PM Narendra Modi has admitted to "theft" in the Rafale deal.
Summary:
Shivpal Singh Yadav's Pragatisheel Samajwadi Party (Lohia) on Tuesday announced that the party will celebrate Samajwadi Party founder Mulayam Singh Yadav's birthday on November 22 as "Dharm Nirpekshta Diwas".
Summary:
The BJP on Tuesday said Dassault Aviation CEO Eric Trappier's claims on the Rafale deal had exposed the lies of Congress chief Rahul Gandhi.
Summary:
Nationalist Congress Party (NCP) President Sharad Pawar on Monday said that Ram temple has become the priority of the ruling BJP and it failed to formulate right policies for farmers.
Summary:
The round also saw participation from investors including Chinese investment bank CEC Capital.
Summary:
"The flag should be provided in circulating area of the stations and at a suitable place," the order stated.
Summary:
Flipkart's Group CEO Binny Bansal, who resigned on Tuesday, was facing an allegation of sexual assault that dates back a few years, Reuters said quoting a source.
Summary:
Shah Rukh Khan, while attending a restaurant opening in Mumbai, jokingly said he only comes to the openings of restaurants designed by his wife Gauri Khan as he gets free food there.
Summary:
Australian pacer John Hastings has retired from all forms of cricket due to a mystery illness that causes him to cough up blood only when he is bowling.
Summary:
Twitter Co-founder and CEO Jack Dorsey met Prime Minister Narendra Modi in Delhi on Tuesday.
Summary:
K Shankaramma, a woman leader of Telangana's ruling party TRS, has threatened to commit suicide if she was denied party ticket for the state assembly elections scheduled to take place on December 7.
Summary:
Salil Parulekar, a 32-year-old Indian and a former Tesla employee, has been charged for allegedly stealing $9.3 million (â¹67.5 crore) from the carmaker.
Summary:
Flipkart CEO Kalyan Krishnamurthy will continue to be Flipkart's CEO, which will now include Myntra and Jabong, continuing to operate as separate platforms, Walmart said on Tuesday.
Summary:
India's second-largest heavy truck maker Ashok Leyland on Tuesday announced the resignation of its Managing Director and CEO Vinod K Dasari effective March 31 next year.
Summary:
Royal Enfield suffered a production loss of 28,000 motorcycles due to the strike.
Summary:
According to the complaint, Raizada was posted at CBI's Patna Zone from 2014-2017 when she allegedly forged the signatures of then DIG VK Singh.
Summary:
The Uttar Pradesh government on Tuesday formally cleared the renaming of Faizabad and Allahabad divisions to Ayodhya and Prayagraj respectively after CM Yogi Adityanath announced the renaming of Faizabad on Diwali eve.
Summary:
B Harikumar, the Deputy Superintendent of Police in Kerala's Neyyattinkara, who had been evading arrest after being accused of causing a 32-year-old electrician's death, was found hanging at his home on Tuesday.
Summary:
Canadian Prime Minister Justin Trudeau has said that the country is in discussions with Pakistan about granting asylum to Asia Bibi, the Pakistani Christian woman recently acquitted of blasphemy.
Summary:
He was earlier suspended for three months in 2017 for allegedly refusing to take breath analyzer tests.
Summary:
Congress President Rahul Gandhi on Tuesday said PM Narendra Modi doesn't even know that the country is run by the people and not by a single man.
Summary:
Messi also won the Pichichi Trophy at the ceremony, an award given to the top scorer in La Liga each year.
Summary:
Juventus forward Cristiano Ronaldo attempted to catch a stray ball while attending the ATP World Tour Finals match between Novak Djokovic and John Isner.
Summary:
Chinese internet regulator Cyberspace Administration of China has removed 9,800 social media accounts of independent news providers for posting politically harmful content on the internet.
Summary:
Facebook failed to monitor its partners or the device makers to whom it granted access to the personal data of its users, according to a report by The New York Times.
Summary:
The feature will arrange the contact list by pushing the high-ranking friends' status updates to the top.
Summary:
Facebook has confirmed that the social network along with WhatsApp and Instagram on Monday faced global outage for nearly one hour.
Summary:
Rahaman has been a five-time MLA from Rajasthan's Nagaur.
Summary:
Chinese companies invested nearly $2 billion in Indian startups in 2017, according to a report by KPMG.
Summary:
Pluto's surface once had frozen glaciers of nitrogen that were formed and disappeared in the early stages of Pluto's history, according to a study.
Summary:
However, a spokesperson said Rogozin meant that engineers should be held personally responsible for their results.
Summary:
A woman has been arrested by the Haryana Police for allegedly accepting money from her daughter's rapists.
Summary:
A man in Uttar Pradesh's Lalitpur, has been arrested for allegedly killing his three daughters by smashing their heads with a hammer and setting them ablaze using LPG cylinder gas on Tuesday, police said.
Summary:
Flipkart Group CEO Binny Bansal today announced his resignation from the role.
Summary:
The Supreme Court on Tuesday agreed to hear review petitions challenging its September verdict on Kerala's Sabarimala temple and said it would hear them in open court on January 22, 2019.
Summary:
Harshdeep Kaur, known for singing songs like 'Kabira', 'Zaalima' and 'Dilbaro', will perform at Deepika Padukone and Ranveer Singh's sangeet.
Summary:
Shah Rukh Khan, while addressing the debate on him endorsing fairness creams, said his daughter Suhana is sanwli (dusky) but she's the "most beautiful girl in the world".
What joke is that?" he further said.
Summary:
Speaking about the #MeToo movement, Sonam Kapoor revealed that in response to the news of an actor accused of harassment, she heard a woman say, "Woh toh bohot handsome ladka hai, usko kyu karna padega?" "This, sadly, reflects the attitude triumphing in our society," said Sonam.
Summary:
Krishnan claimed Sawant "unzipped" his pants and tried "to force her hand towards his penis" during the trip.
Summary:
French coach Anthony Veniant said he had asked for the tournament to be moved out of Delhi but his request was turned down.
Summary:
Pakistani cricketer Shoaib Malik will not play in T10 League's second edition as he wants to spend more time with his wife Sania Mirza and his newborn son Izhaan Mirza-Malik.
Summary:
Chowdhary will succeed Michel Coulomb, who became India head in December 2017.
Summary:
Summary:
Natural gas is expected to overtake coal as the world's second largest energy source after oil by 2030 due to a drive to cut air pollution and the rise in liquefied natural gas use, the International Energy Agency has said.
Summary:
Two people were arrested on Sunday after their auto allegedly ran over retired Intelligence Bureau (IB) officer RN Chakravarty in Ghaziabad.
Summary:
The mortal remains of Union Minister Ananth Kumar, who passed away on Monday aged 59, were cremated with full state honours on Tuesday.
Summary:
A 12-day-old baby was found lying bruised and bitten on the terrace of a neighbour's house in Mohalla Kachhera area in Agra after a monkey snatched him from his mother on Monday.
Summary:
The cash-strapped Pakistan government has approved an over â¹900-crore bailout package for its national carrier PIA which has been running into losses for years.
Summary:
The woman, who completely fell into the deep sinkhole, suffered broken ribs but she was out of danger.
Summary:
Indian pacer Khaleel Ahmed, who has made nine international appearances for India so far, has said that Indian captain Virat Kohli and Rohit Sharma gave him the freedom to express himself.
Summary:
The England Cricket Board's official Twitter account posted a photo of spinners Adil Rashid, Moeen Ali and Jack Leach laughing with a caption that read, "England don't produce quality spinners".
Summary:
Bangladesh's Mushfiqur Rahim became the first wicket-keeper-batsman to have scored two double tons in Test cricket, after crossing the landmark in the ongoing second Test match against Zimbabwe.
Summary:
Indian cricket team's opener Rohit Sharma paid tribute to Stan Lee, the creator of the Marvel comics, who passed away on Monday at the age of 95.
"No Marvel movie will be complete without you.
Summary:
Home Secretary of India Rajiv Gauba on Monday said, "Action taken by Twitter for removing unlawful content has been slow in some cases." He also asked the social network to improve the system of response and appoint a contact person in India for quick redressal of complaints.
Summary:
Snapchat parent Snap's Vice President of Content Nick Bell has announced that he is leaving the company by the end of the year.
Summary:
BJP MLA Anil Gote has announced his resignation from the party and the Maharashtra Legislative Assembly.
Summary:
Speaking on the opposition parties' attempts to form an alliance for the 2019 Lok Sabha elections, actor-turned-politician Rajinikanth has said, "If 10 people are ganging up against one?
Summary:
Comparatively, Flipkart's wholesale entity registered a 40% increase in revenue to â¹21,000 crore in FY18.n
Summary:
Founded in 2016 by Vishal Agarwal, the startup helps small and medium-sized restaurants to connect with multiple online-ordering platforms.
Summary:
Cyber thieves have looted nearly â¹1,00,000 from a Mumbai police constable's bank account.
Summary:
Prime Minister Narendra Modi met RBI Governor Urjit Patel on November 9 to discuss the ongoing rift between the centre and the central bank, reports said.
Summary:
Team India opener Rohit Sharma smashed the highest ever score of 264(173) in ODI cricket history, against Sri Lanka on November 13, 2014.
Summary:
When Rohit Sharma smashed 264 in an ODI against Sri Lanka on November 13, 2014, India's victory margin was 153 runs, the same margin of victory when Sachin Tendulkar and Virender Sehwag scored ODI double centuries.
Summary:
Replying to Shah Rukh Khan's tweet about his film Baazigar completing 25 years, Team India opener Rohit Sharma wrote, "One of my top movies, no questions!" Shah Rukh Khan responded to Rohit, saying, "Next time will do Kaali Kaali Aankhen for you live at the IPL".
Summary:
The duo shared a third-wicket stand of 67 to help South Africa win.
Summary:
Speaking on BJP's promise to distribute one lakh cows if it comes to power in Telangana, All India Majlis-e-Ittehadul Muslimeen (AIMIM) chief Asaduddin Owaisi asked whether the BJP will also give him a cow.
Summary:
After Dassault CEO Eric Trappier denied Congress President Rahul Gandhi's allegations over Rafale deal, the party spokesperson Randeep Surjewala said, "First rule of law-nmutual beneficiaries & co-accused's statements hold no value.
Summary:
Summary:
The Medical Council of India has decided to change the syllabus of MBBS undergraduate courses with more classes on mental health, public health, and communication skills.
Summary:
Several indigenous groups in Sikkim have demanded the implementation of the National Register of Citizens and the introduction of Inner Line Permits to curb the "influx of illegal migrants".
Summary:
The Supreme Court will hear on November 19 a plea challenging the clean chit given to PM Narendra Modi in the 2002 Gujarat riots that took place during his tenure as the CM.
Summary:
His 31-year-old son, who is suffering from schizophrenia, was also found injured in the house.
Summary:
US National Security Adviser John Bolton on Tuesday said the country will step up enforcement of sanctions on Iran, adding, "The objective has been from the beginning to get oil exports from Iran down to zero." "It is our intention to squeeze them (Iran) very hard," he further said.
Summary:
Tata Sons is reportedly conducting due diligence on Jet Airways, as it looks to buy a majority stake in the cash-strapped airline.
Summary:
Following the demise of Marvel Comics co-creator Stan Lee, billionaire Elon Musk said, "The many worlds of imagination & delight you created for humanity will last forever." "Rest in peace, Stan Lee," Musk added.
Summary:
Summary:
UFC fighters Yair Rodriguez and Chan Sung Jung posted a photo from a hospital in Denver where they were seen holding hands while lying next to each other during a post-fight medical checkup.
Summary:
Users can also choose to show or hide their gender on their profile, Tinder said in a blog post.
Summary:
WhatsApp has confirmed it would delete all the chats and data that have not been backed up on Google Drive.
Summary:
Google further added that no data was compromised as the network traffic to Google services is encrypted.
Summary:
Summary:
In an apparent reference to the Gandhi family, Prime Minister Narendra Modi on Monday said, "For the Congress, the welfare of Chhattisgarh is not a priority.
Summary:
The Boards of Governors of the 20 Indian Institutes of Management would be reconstituted by December 15, as per IIM Act 2017, with the HRD Ministry approving the process on Monday.
Summary:
Doctors at a Civil Hospital found metal including iron nails, hairpin, chains, bracelets, that weighed 1.5 kilograms, while operating on a woman's stomach.
"The woman's stomach had become rock-hard.
Summary:
The CBI has invoked sections of Unlawful Activities (Prevention) Act pertaining to terror charges against the accused arrested in the rationalist Narendra Dabholkar murder case.
Summary:
An Accident Relief Train and senior SER officers rushed to the spot, although no one was injured in the accident.
Summary:
The HC refused to give them relief in a case of re-opening of their tax assessments for 2011-12.
Summary:
Dassault CEO Eric Trappier has denied Congress President Rahul Gandhi's allegations over Rafale deal that Dassault invested â¹248 crore in Anil Ambani's company for land procurement in Nagpur.
Gandhi earlier said, "It's clear Dassault CEO is lying.
Summary:
Deepika Padukone and Ranveer Singh's wedding will be held on November 14 and 15 at Villa del Balbianello, which overlooks Lake Como in Italy.
Summary:
"Both Ranveer and Deepika are...committed to the cause and want to involve all their guests in the good deed," reports said.
Summary:
Punjab CM Captain Amarinder Singh has said his government had no role in the Special Investigation Team summoning actor Akshay Kumar and ex-CM Parkash Singh Badal and his son Sukhbir in 2015 sacrilege case.
Summary:
Speaking on pay parity in Bollywood, Abhishek Bachchan revealed his wife Aishwarya Rai Bachchan was paid more than him in eight films out of the nine they did together.
Summary:
Following the demise of Marvel Comics co-creator Stan Lee, 'Captain America' actor Chris Evans took to Twitter and wrote, "There'll never be another Stan Lee. He exuded love...kindness and will leave an indelible mark." "I owe it all to you...Rest In Peace Stan," wrote 'Iron Man' actor Robert Downey Jr.
Summary:
The girl's body was found on Monday after she was allegedly lured by the accused, a 20-year-old labourer from UP, who promised to buy her chocolate.
Summary:
PM Narendra Modi has inaugurated and laid the foundation for projects worth over â¹2,400 crore in his constituency, Varanasi.
Summary:
Restaurateur and 26/11 Mumbai attacks survivor Sharan Arasa recalled that 10 years ago terrorist Ajmal Kasab put a gun to his head.
we both felt that it was the end of me" said 37-year-old Arasa.
Summary:
When a Supreme Court bench sought to dismiss a plea by the Rajasthan government, Attorney General KK Venugopal told Chief Justice Ranjan Gogoi that people come from thousands of miles and the latter doesn't hear their arguments.
Summary:
After Kasab drove away in his recently bought Skoda, Arasa said his first thought was that his father would be mad at him for losing the car.
Summary:
Human rights group Amnesty International has stripped Aung San Suu Kyi of its highest honour over the Myanmar leader's "indifference" to the atrocities committed by the Myanmar military against Rohingya Muslims.
Summary:
Former US First Lady Michelle Obama has revealed that she and her husband former US President Barack Obama had sought marriage counselling.
Summary:
However, South Korea said it had been "closely watching" the sites along with the US and that the CSIS report contained "nothing new".
Summary:
Complying with US sanctions, global provider of secure financial messaging services, SWIFT, has cut several Iranian banks, including the country's central bank, off from its services.
Summary:
Earlier, reports claimed BJP chief Amit Shah and Raje were having differences in finalising the names of candidates.
Summary:
Summary:
Summary:
Ninety-two-year-old Ganpatrao Deshmukh announced his retirement from electoral politics on Tuesday, 56 years after he was first elected as a lawmaker in 1962.
Summary:
The Delhi High Court has granted Delhi University time till November 20 to verify its student union president Ankiv Baisoya's bachelor's degree from a Tamil Nadu varsity.
Summary:
An Indian Army soldier was martyred and another was critically injured following a ceasefire violation by Pakistani troops along the LoC in Jammu and Kashmir on Monday.
Summary:
The deceased, who had a total of â¹16 lakh, had kept â¹2 lakh and distributed the rest among the siblings.
Summary:
Two elderly sisters, aged 70 and 65 respectively, were found living with the dead body of the younger sibling's husband in their house in Varanasi, said the police.
Summary:
The soldier was reportedly stabbed in the neck with a knife and taken to a hospital, where he was pronounced dead.
Summary:
Lee was also known for making cameo appearances in Marvel Cinematic Universe films including The Avengers.
Summary:
Akihiko Kondo has been living with the talking hologram of Miku that floats in a $2,800 (over â¹2 lakh) desktop device since March.
Summary:
Actor Naseeruddin Shah said he had to work for just money in a few films as he had to earn for his family and he isn't ashamed of it.
Naseeruddin further said, "What are we all working for?
Summary:
After actress Rakhi Sawant was hospitalised following her bout with a woman wrestler, singer Mika Singh shared her video on Twitter and wrote, "Jabse pehna hai maine ye ishq sehra khalibali ho gaya hai dil." "Mera beta chha gaya...Rakhi Sawant is rocking in wrestling," he added.
Summary:
Naseeruddin Shah has revealed he has worked for free in many projects while adding, "A lot of times I was promised chicken feed amount like â¹5,000, â¹10,000." However, he said these "so-called filmmakers" never paid him that amount.
Summary:
Actor Akshay Kumar, who has been accused of hosting a meeting between former Deputy Punjab CM Sukhbir Singh Badal and rape-convict Gurmeet Ram Rahim in 2015 sacrilege cases at his flat, issued a statement saying he has never met Ram Rahim.
Summary:
They might also have two different wedding ceremonies to honour each other's faith.
Summary:
The 35-year-old could reportedly contest from his hometown district of Narail in south-western Bangladesh.
Summary:
Reacting to Team India captain Virat Kohli asking a fan to leave India for not liking Indian cricketers, five-time world chess champion Viswanathan Anand said Kohli became emotional and lost control while making the comment.
Summary:
Gautam Gambhir got angry at the umpire after being wrongly given out in Delhi's Ranji match against Himachal Pradesh on Monday.
Summary:
Police said two of the three gang members arrested had earlier worked as deliverymen.
Summary:
A video of US President Donald Trump staring at the King of Morocco Mohammed VI during a World War I memorial at France's Arc de Triomphe has gone viral.
Summary:
A 101-year-old woman confused German Chancellor Angela Merkel with French President Emmanuel Macron's wife at a World War I commemorative event.
Summary:
The airline's total sales grew by 6.9% to â¹6,363 crore.
Summary:
The move comes a day after he was denied a ticket for the 2018 Rajasthan elections.
Rajasthan assembly elections will be held on December 7.
Summary:
Pacer Mohammad Shami has said Team India fast bowlers are preparing for the Australia tour by watching a lot of videos.
Shami has been included in the Test squad for Australia tour.
Summary:
Team India opener Shikhar Dhawan, who scored 92 runs off 62 balls to help India defeat Windies in the third T20I on Sunday, said that it doesn't matter to him what people say.
Summary:
Following India's 3-0 T20I series victory against Windies, Team India batsman Rohit Sharma said that the upcoming tour of Australia will be a "different ball game." "Australia's always challenging when it comes to going out there and performing.
Summary:
Summary:
The Trinamool Congress (TMC) will foray into Assam's upcoming panchayat polls for the first time, a West Bengal minister said.
Summary:
Denying the charge by RLSP president Upendra Kushwaha, Bihar Deputy CM Sushil Kumar Modi on Monday said that CM Nitish Kumar never used the word 'neech' against any leader in his interaction with the media.
Summary:
Homegrown ride-hailing startup Ola's Chief People Officer (CPO) Susheel Balakrishnan has resigned from the company after 6 months.
Summary:
Gurugram-based grocery delivery startup Milkbasket has raised around â¹10 crore in a funding round from US-based venture capital firm Mayfield Fund.
Summary:
Zomato has begun delivering ingredients including staples, poultry and dairy products to eateries via 'HyperPure' in Bengaluru.
Summary:
German automaker Volkswagen's CEO Herbert Diess on Monday said its electric vehicle platform and battery procurement plans are being prepared to handle production of 50 million vehicles.
Summary:
The Unique Identification Authority of India (UIDAI) on Monday told the Delhi High Court that it was technically not possible to match the fingerprints of an unidentified body with the biometrics of 120 crore people stored in its database.
Summary:
Tripura Chief Minister Biplab Deb on Sunday said government employees do not need holiday on International Labour Day or May Day as they are not "labourers or workers".
"...what for do you need holiday?
Summary:
Powered by 2.0-litre diesel unit, the SUV generates 150PS power and 340Nm of torque.
Summary:
Volkswagen recently launched Volkswagen Connect, an intelligent connected vehicle assistance system across its popular carlines â Polo, Ameo and Vento.
Summary:
The CPI for the month of September was at 3.77%.
Summary:
Further, in ODI cricket, McGrath dismissed batsmen for a duck 71 times, and once in T20I cricket.
Summary:
Chief Justice of Pakistan (CJP) Mian Saqib Nisar has ordered medical check-up of a man who donated his property worth â¹4 crore to the dam fund set up by the country's Supreme Court and PM Imran Khan.
Summary:
"Masking our emotions in the Delhi air," he wrote in the caption of the picture, which shows them wearing masks while reading scripts.
Summary:
Hollywood actor Gerard Butler also shared a picture of his burnt house and car and wrote, "Heartbreaking time across California."n
Summary:
Summary:
Sara, who'll make her acting debut with 'Kedarnath', will portray a tourist who reportedly falls in love with Sushant's character, a 'pithu', one who carries pilgrims to the shrine for money.
Summary:
The runs were added to India's total because Pakistan were penalised as their players ran on the pitch's danger area twice despite being warned.
Summary:
Five-time Ballon d'Or winner Cristiano Ronaldo netted his sixth goal in seven matches as Juventus defeated AC Milan 2-0 in the Serie A on Sunday.
Summary:
A mascot girl, who was standing in front of India Women captain Harmanpreet Kaur ahead of India-Pakistan Women's World T20 match, fell ill while the national anthems of both the nations were being played.
Summary:
Backed by Accel and Sequoia, Qualtrics was last valued at $2.5 billion.
Summary:
He also received a container consignment at the terminal, the first to be sent on an inland waterways vessel post Independence.
Summary:
The proposals to rename Allahabad and Faizabad are reportedly yet to be received by the home ministry from the UP government.
Summary:
The company had posted a net profit of â¹261.03 crore in the July-September period a year ago.
Summary:
"Figures will be updated later," the Election Commission added.
Summary:
Summary:
Summary:
Reports also claimed that Luckey's support for President Trump upset many at Facebook, as well as in the Silicon Valley.
Summary:
Chhattisgarh recorded 47.18% voter turnout till 3 pm on Monday in the first phase of Assembly elections 2018.
Eighteen out of 90 Assembly constituencies, including 12 Naxal-dominated seats, were up for polls in the first phase.
Summary:
Congress leader Abhishek Manu Singhvi on Monday said PM Narendra Modi and his government are responsible for the "demolition" of institutions, such as the RBI and the CBI.
Summary:
Zomato has suspended its first ever paid subscription service 'Zomato Treats' after running it for over 18 months.
"We have suspended fresh sign-ups for Zomato Treats.
Summary:
Scientists have translated the 5,000th image of Mars sunrise, captured by NASA's Opportunity rover, into a two-minute piece of music.
Summary:
Uttar Pradesh Deputy Chief Minister Dinesh Sharma has said that the Ram temple in Ayodhya will be built "when Lord Ram wants it".
Summary:
The police on Monday said the body of a 65-year-old doctor was found at his residence in Delhi's Jahangirpuri area.
Summary:
He said if the people do not behave and continue with violence, then the alternative left with Army is to neutralise them.
Summary:
Former Australian fast bowler Glenn McGrath was given the nickname 'Pigeon' by one of his New South Wales teammates due to his thin legs as a youngster.
Summary:
Former Censor Board chief Pahlaj Nihalani has claimed that current chairperson Prasoon Joshi calls producers at the Taj hotel and makes them wait for four hours to get the certificate for their films.
Summary:
Actress Rakhi Sawant was hospitalised on Sunday after she was knocked out by a woman wrestler she challenged for a bout at a Continental Wrestling Entertainment (CWE) match in Haryana's Panchkula.
Summary:
Journalist Joyeeta Basu has described former Union Minister MJ Akbar as a "thorough gentleman" in a criminal defamation case filed by Akbar against journalist Priya Ramani, who accused him of sexual harassment.
Summary:
Opener Rohit Sharma has become only the second Indian batsman after Virat Kohli to slam 200 fours in T20I cricket, achieving the feat with his lone boundary against Windies in the third T20I on Sunday.
Summary:
Team India opener Shikhar Dhawan saved a shot by Windies' Shai Hope from going over the deep mid-wicket boundary during the third T20I on Sunday.
Summary:
During their meeting, Dorsey also showed Rahul his nine-inch tattoo, in the shape of a thick 'S'.
Summary:
After renaming Faizabad as Ayodhya, the UP government is considering a ban on meat and liquor sale in the district and other holy places in the state, reports quoting state government spokesman Shrikant Sharma said.
Summary:
The government has made public a redacted version of the document.
Summary:
Cabinet Minister's not traceable, fantastic.
How could it happen that ex-cabinet minister is absconding and nobody knows where she is," the court said.
Summary:
While one ending showed the death of Khan's character, another ending showed the character being arrested.
Summary:
She said the allegations were aimed at tarnishing her husband's image.
Summary:
Sambhaji Brigade, a Maratha organisation, has sought to rename the city of Pune to 'Jijapur' in a letter issued to the Maharashtra government.
Summary:
Forty minutes before polling began for the first phase of Chhattisgarh Assembly elections, a CRPF foot patrol team on Monday escaped an Improvised Explosive Device (IED) blast planted by Maoists.
"There was no injury or loss to the polling team.
Summary:
The stock of PC Jeweller has risen at least 99.38% to â¹96.50 from a share price level of â¹48.40 as on October 25 on NSE.
Summary:
Smart Touch can also perform functions like answering calls, listening to texts, and so on.
Summary:
PM Modi further said the politics of Congress begins and ends with one family.
Summary:
"One is on buying cars and bikes and...luxury items...Secondly...people are investing in mutual funds and other investment vehicles," he said.
Summary:
In a meeting with Drug Controller General of India (DCGI), Amazon and Flipkart have committed to prevent the sale of fake cosmetics on their platforms.
Summary:
Users can put visual elements wherever they want on the screen, resize maps, text boxes, images and more.
Summary:
E-commerce major Amazon has invested â¹220 crore in its Indian digital payments arm, Amazon Pay. The funding comes only a month after Amazon's parent entity invested â¹590 crore in Amazon Pay, according to filings.
Summary:
Ananth Kumar's role during no-confidence motion against PM Modi government is unforgettable, Gowda said.
Summary:
The Mizoram Police has supported the demand of former state Chief Electoral Officer SB Shashank seeking the deployment of 40 companies of central armed forces.
Summary:
A 65-year-old farmer in Maharashtra's Nanded district allegedly committed suicide by lighting up his own pyre at his field after failing to repay his debt to banks and cooperative societies due to crop failure.
Summary:
The Supreme Court has rejected a plea filed by security personnel seeking the recusal of two judges hearing the Manipur encounter case which is being investigated by the CBI.
Summary:
Minister of State for Home Affairs Kiren Rijiju and Morocco's Minister of Justice Mohamed Aujjar on Monday signed an agreement on Mutual Legal Assistance in criminal matters.
Summary:
India registered a 7-wicket win to post their fourth straight T20I victory against Pakistan and their second successive victory in the 2018 Women's World T20 in Guyana on Sunday.
Summary:
The Parliamentary Affairs, and Chemicals and Fertilisers Minister was suffering from cancer and had come back from the US in October after treatment.
Summary:
The Supreme Court on Monday deferred the hearing on the petition filed by Central Bureau of Investigation Director Alok Verma challenging his removal till Friday.
Summary:
China's 13-year-old Que Jianyu has created a Guinness World Record by solving three Rubik's Cubes simultaneously in just 1 minute 36.39 seconds, using his hands and feet.
Summary:
Govinda, whose upcoming film 'Rangeela Raja' has been given 20 cuts by Censor Board, alleged a group of people in film industry is conspiring against him.
Govinda added his films have been targeted for the last nine years.
Summary:
Actor Govinda has said his films are being targeted for the last nine years and they have not reached cinema houses.
Govinda further said, "Please provide me a platform to work."
Summary:
Manushi won the Miss World crown for India after 17 years.
Summary:
Kumar allegedly played a mediating role between then Badal-led state government and Ram Rahim.
Summary:
Barcelona lost 3-4 to Real Betis at Camp Nou in La Liga on Sunday despite forward Lionel Messi scoring twice on his return from injury.
Summary:
Chhattisgarh Congress Vice President Ghanaram Sahu on Sunday resigned from the party hours before the first phase of the state assembly election scheduled for Monday.
Summary:
As many as 4,336 polling booths have been set up for voting in 18 constituencies while the remaining 72 will go to vote on November 20.
Summary:
At least three people died and 15 were injured after the bus carrying them skidded off the road and fell into a gorge in Nabarangpur district in Odisha on Sunday.
Summary:
Condoling Union Minister Ananth Kumar's demise, External Affairs Minister Sushma Swaraj on Monday tweeted that he was like her younger brother and his death is a personal loss for her.
Summary:
The flying licence of the Air India pilot, who failed the alcohol test shortly before his scheduled flight between New Delhi and London on Sunday, has been suspended for three years by the Directorate General of Civil Aviation.
Summary:
Union Minister Ananth Kumar, who passed away on Monday, won his first election in the 1996 parliamentary polls from South Bangalore Lok Sabha seat, and never lost this seat thereafter.
Summary:
A three-day mourning period has been declared in Karnataka over Union Minister Ananth Kumar's demise, who passed away aged 59 in Bengaluru on Monday.
Summary:
Six friends out on a picnic with their classmates were feared to have drowned off Yarada beach in Visakhapatnam, Andhra Pradesh on Sunday, police said.
Summary:
Minister for Disaster Management R B Udhayakumar on Sunday said that 32 revenue districts under 13 districts in Tamil Nadu, located mainly along the coast, have been put on high alert to face the anticipated cyclone, Gaja.
Summary:
The Supreme Court on Monday rejected a plea filed by Hindu Mahasabha seeking an early hearing in the Ayodhya dispute case.
Summary:
Sirisena previously defected from SLFP, then led by Rajapaksa, in 2014 to join an opposition coalition that ousted Rajapaksa.
Summary:
The death toll in the California wildfires has risen to 31, with more than 200 people missing, officials have said.
Summary:
Defending champions Manchester City went 12 points clear of Manchester United in Premier League after beating their city rivals 3-1 on Sunday.
Summary:
Rashtriya Lok Samata Party chief Upendra Kushwaha on Sunday said he would apprise BJP chief Amit Shah of the "humiliation" he had suffered at the hands of Bihar CM Nitish Kumar.
Summary:
"Earth-mass free-floating planets are more common than stars in the Milky Way," scientists claimed.
Summary:
The reason for their escape would be investigated, the police said.
Summary:
A World War 1 memorial with a 10-foot-statue honouring the contributions of Sikh soldiers was vandalised days after it was unveiled on November 4.
Summary:
National Commission for Minorities chief Ghayorul Hasan Rizvi on Sunday said Ram temple must be built in Ayodhya so that Muslims in the country can live respectfully and peacefully.
Summary:
India defeated Windies by 6 wickets on the last ball in the final T20I at Chennai to register a 3-0 series whitewash.
Summary:
Actor Varun Dhawan has confirmed that he is dating 29-year-old fashion designer Natasha Dalal, adding that he plans to marry her.
Summary:
Reacting to a troll who mocked Virat Kohli and Anushka Sharma over their picture with Narendra Modi, the Indian cricket team captain said, "I'm sure there is a lot of idle time that you guys have.
Summary:
The policeman clutched the ball onto his chest as he fell on the ground after going out of balance.
Summary:
Ashraf was clean bowled off the next delivery he faced.
Summary:
Another Air India pilot was caught drunk before takeoff today at Delhi airport.
Summary:
Border Security Force's (BSF) 28-year-old sub-inspector Mahender Singh Gurjar, who was killed in multiple IED blasts in Chhattisgarh reportedly triggered by Maoists on Sunday, had met his seven-month-old son only once in his lifetime.
Summary:
He said that the government was not ready to accept the formula at the time.
Summary:
Wire ropes manufacturer Usha Martin's shareholders on Saturday approved the sale of the company's steel business to Tata Steel, with 99.99% shareholders voting in the favour of the decision.
Summary:
Facebook has been accused of offering middle-aged men as 'friend suggestions' to teenage girls, according to a report.
Summary:
He also said he met Google CEO Sundar Pichai to develop a software interface for the foldable phone.
Summary:
The device uses lasers to cool atoms to extremely low temperatures, and then measures their quantum wave properties as they respond to acceleration.
Summary:
The Congress has said that there was absolutely no question of joining hands with any other party without the DMK, days after actor-politician Kamal Haasan offered to join hands with it if it snapped ties with the DMK.
Summary:
"I am ready to die.
I am ready to take a bullet on my chest and not on my back," he added.
Summary:
Uttar Pradesh Chief Minister Yogi Adityanath on Sunday accused the Congress of "shamelessly" glorifying Naxals as "revolutionaries".
"Naxalism in Chhattisgarh spread due to Congress.
Summary:
Indian information technology (IT) company Mphasis has acquired US-based cloud automation startup Stelligent for $25 million in an all-cash deal.
Summary:
NASA's Operation IceBridge has discovered an iceberg that is three times the size of Manhattan in Antarctica.
Summary:
Russian billionaire Yuri Milner's non-profit Breakthrough Starshot Foundation is working with space agency NASA to discover alien life on Saturn's moon Enceladus.
Summary:
Officials with the General Conference on Weights and Measures (CGPM) have announced that four of the base measuring units including the kilogram will be redefined.
Summary:
Ahead of the planned Russian Soyuz rocket launch in December, female US astronaut Anne McClain has said, "I'm looking forward to riding the rocket.
Summary:
The Indian Space Research Organisation (ISRO) has invited international proposals for scientific payloads for its second interplanetary mission to Venus in mid-2023.
Summary:
Three Krishna idols were among the items stolen in a burglary at a Swaminarayan temple in north London, according to the temple authorities.
Summary:
UN Environment chief Erik Solheim has said that India has successfully eradicated polio and there's no reason why it cannot do so for air pollution.
Summary:
The Army's counter-infiltration grid is strong enough to deal with infiltrators, he said.
Summary:
Defence Minister Nirmala Sitharaman on Sunday said differences between India and China shouldn't be allowed to become disputes.
Mutual recognition of sensitivity in each country should be respected and resolved through dialogues, the Minister said.
Summary:
IAF's prepared 24x7 for any threat, he said.
Summary:
Jack Ma-led China's Alibaba recorded sales worth $13.1 billion within the first 76 minutes of Singles' Day sale on Saturday, more than the combined sales of Amazon India and Flipkart in 2017.
Summary:
Kolkata Traffic Police on Sunday trolled Aamir Khan and Amitabh Bachchan starrer 'Thugs of Hindostan' in a social media post about monitoring traffic in the city.
Summary:
It overtook the first-day collections of 'Sanju', which earned â¹34.75 crore on its release day.
Summary:
Actress Priyanka Chopra's fiancé, American singer Nick Jonas, took to social media to share pictures from his bachelor party.
Summary:
Talking about him and his wife actress Anushka Sharma running their own separate fashion labels, Team India captain Virat Kohli said there is absolutely no professional competition between them.
Summary:
Reacting to the rising pollution in Delhi, Olympic bronze medal-winning boxer Vijender Singh tweeted, "Men smoke cigarettes.
Real men smoke cigars.
Summary:
Reacting to BJP changing names of cities, Padma Bhushan historian Irfan Habib suggested that the party should consider changing the name of its chief Amit Shah as his name stems from Persian origin.
Summary:
As many as 357 infrastructure projects, worth â¹150 crore and above, witnessed cost overruns of over â¹3.39 lakh crore owing to delays and other reasons, a Ministry of Statistics and Programme Implementation report said.
Summary:
One person has gone missing after a fishing boat carrying seven people met with an accident in the sea off the Mumbai coast on Sunday morning.
Summary:
Pune Municipal Corporation (PMC) has started asking people to clean their own spit to stop people from spitting on the roads, an official said on Sunday.
Summary:
In a separate incident, a Maoist was killed in an encounter with security forces in the state's Bijapur district.
Summary:
Arvind Kathpalia was declared 'unfit to fly' after failing the breath analyser test twice and was grounded by the airline.
Summary:
Karnataka mining baron and former BJP minister Gali Janardhana Reddy was sent to judicial custody till November 24 on Sunday after he was arrested along with his aide in an alleged â¹18-crore bribery case.
Summary:
A topless female protester ran at the motorcade carrying US President Donald Trump along the Champs Elysees in Paris ahead of a ceremony on Sunday to mark the end of World War I.
Summary:
Childless people should be paying much more towards care and pension insurance than those who have started a family, German Health Minister Jens Spahn said on Friday.
Summary:
The official Twitter handle of Mumbai Police has used lyrics from American pop singer Ariana Grande's song 'Thank U, next' to highlight road safety.
Summary:
South Africa defeated Australia by 40 runs in the final ODI at Hobart on Sunday to clinch the three-match series 2-1.
Summary:
Giphy has soft-launched a new platform dedicated to short-form, GIF-like videos lasting up to 30 seconds.
Summary:
Microsoft has announced the acquisition of two new video game studios Obsidian Entertainment and inXile Entertainment.
Summary:
Summary:
The team collected 11,000 images labelled for different levels of danger and embedded them in the app's deep learning module.
Summary:
AAP clarified Kejriwal had gone to attend a function of his IIT batchmate.
Summary:
Former Jammu and Kashmir CM Omar Abdullah has said that Pakistan government must do some soul searching on India's legitimate concerns to make way for a process of engagement on Kashmir.
Summary:
Union Minister Mukhtar Abbas Naqvi on Sunday said that a common Muslim wants peace and an amicable settlement on the Ram temple issue.
He said a common Muslim does not have an attitude of conflict that may harm social unity.
Summary:
"This was a war in which India was not directly involved yet our soldiers fought world over...for the cause of peace," he said.
Summary:
Police in Australia have arrested a woman in the state of Queensland as part of their investigation into the contamination of strawberries with needles.
Police said the 50-year-old was arrested "following a complex...
Summary:
The treatment of the facial injuries of soldiers caused by shrapnel during the first World War I (WWI) laid the foundations of modern plastic surgery.
Summary:
The first World War ended at 11 am on November 11, 1918, after Germany signed an armistice prepared by Britain and France.
Summary:
During a Test between South Africa and Australia at Cape Town, on 11/11/2011 at 11:11 am, South Africa needed 111 runs to win.
Summary:
Videos of Tamil actor Vijay's fans recreating a scene from his movie 'Sarkar' by throwing away freebies distributed by the AIADMK government and setting them ablaze have gone viral.
Summary:
Responding to trolls body-shaming her over her bikini photos, television actress Kavita Kaushik wrote on Instagram, "Apna sudhaar lo sidhaar jaane se pehle!" She added, "Everyone has the same [body] if you put in the required hard work!
Summary:
A video of a man pushing his six-year-old goalkeeper son in front of the ball to save a goal during a children's match in Wales has gone viral.
Summary:
Twitter has recorded 12 lakh tweets related to the upcoming Assembly elections in five states, in the past week, the microblogging site has said.
Summary:
Slamming the Karnataka government for celebrating Tipu Jayanti with taxpayers' money, the BJP questioned the Congress-JD(S) on why they neglected other icons.
Summary:
The Shiv Sena on Saturday said the renaming of cities in Uttar Pradesh by Chief Minister Yogi Adityanath was a "lollipop" to lure voters ahead of the Lok Sabha polls next year.
Summary:
Karnataka mining baron and former BJP minister G Janardhana Reddy, an accused in a â¹18-crore bribery case, has been arrested in Bengaluru.
Summary:
Karnataka Congress MLA Tanveer Sait has slammed CM HD Kumaraswamy for not attending events marking the celebration of Tipu Sultan's birth anniversary, calling it an "insult to the community".
Summary:
Delhi's Deputy Commissioner of Police (southwest) Devendra Arya has apologised for his tweet criticising Supreme Court's ban on sale and production of firecrackers that cause pollution.
"You can be jailed for bursting firecrackers on Diwali.
Summary:
Speaking on renaming cities in Uttar Pradesh, CM Yogi Adityanath has said, "We did what we felt was good...Where there is a need, the government will take the steps required." Mughalsarai was renamed as Pandit Deen Dayal Upadhyaya Nagar, Allahabad as Prayagraj while Faizabad as Ayodhya.
Summary:
Trinetra, who runs Saraswati Academy in Visakhapatnam, took â¹6 lakh each from six students and also issued them fake appointment letters.
Summary:
Congress leader Shashi Tharoor on Saturday made a spelling mistake in a tweet and spelt innovation as 'innivation'.
Summary:
The deceased and one other were working at the building when it collapsed and they got trapped under the debris.
The reason for the collapse is suspected to be deep excavation in an adjacent building.
Summary:
A 38-year-old woman was killed after a car, driven by a 22-year-old drunk woman named Shivani Malik, jumped the divider on a Punjabi Bagh flyover and rammed her car, carrying her and seven others from her family, on Friday.
Summary:
BJP spokesperson Sambit Patra, while appearing on a television panel, told AIMIM spokesperson Syed Asim Waqar, "Allah ke bhakt ho to baith jao warna kisi masjid ka naam...
bhagwan Vishnu ke naam pe rakh dunga".
Summary:
As many as 27,000 people visited Gujarat's Statue of Unity, the world's tallest statue at 182 metres, on Saturday, the highest in a day since its inauguration on October 31.
Summary:
The Haryana police have arrested a 19-year-old for killing a 75-year-old woman after attempting rape on her in a village in the state.
Summary:
Speaking on the divorce petition filed by his elder brother Tej Pratap Yadav, RJD leader Tejashwi Yadav said he will not talk about it in public, adding that it is a family matter.
Summary:
South Korean President Moon Jae-in is sending 200 tons (over 1.8 lakh kg) of tangerines from Jeju Island to North Korea as a gift.
Summary:
US President Donald Trump drew criticism for cancelling his visit to a World War I memorial in France to mark the 100th anniversary of the end of the war due to rain.
Summary:
Major airlines like IndiGo, Air India and SpiceJet employ over 10% women pilots.
Summary:
The Congress on Saturday released its manifesto for the Madhya Pradesh Assembly elections in which it promised that it will not allow RSS shakhas in government buildings and offices.
Summary:
Haryana MP Dushyant Chautala has said he will not accept his expulsion from the Indian National Lok Dal (INLD) until he gets an expulsion letter signed by his grandfather and party chief Om Prakash Chautala.
Summary:
The Gurugram-based budget carrier has ordered 430 A320neo family planes and is due to take its first A321neo later this month.n
Summary:
China's Alibaba recorded $1 billion (â¹7,250 crore) of sales volume in the first one minute and 25 seconds of its Singles' Day shopping event.
Summary:
Madeline McMaster, a 19-year-old second-year student at the University of Minnesota, used dating app Tinder to find someone to help her with Math.
Summary:
After Britain's biggest family recently welcomed their 21st baby, Bonnie, her 43-year-old mother Sue Radford said, "This will definitely be my last." "Some people decide to stop after two or three kids.
Summary:
Actor Ranveer Singh, who was greeted by his fans and paparazzi with congratulatory messages at the Mumbai airport ahead of his wedding to Deepika Padukone, responded to them by saying, "Shaadi Mubarak".
Summary:
"While the world speculates, I train...All other gossips can die in vain," the 42-year-old actress posted on her Instagram.
Summary:
India Women captain Harmanpreet Kaur, who became the first Indian woman to smash a hundred in T20I cricket on Friday, revealed she suffered stomach cramps during her 51-ball 103-run knock against New Zealand.
Summary:
Pakistan batsman Shoaib Malik was dismissed in the second ODI against New Zealand after his shot rebounded towards Ish Sodhi from the shoulder of the short-leg fielder Henry Nicholls.
Summary:
Fans of the Dutch football club Rijnsburgse Boys hired a stripper to distract opponents during a match against AFC.
Summary:
David Warner was dismissed by former Australia captain Steve Waugh's son Austin Waugh in a club match between Randwick Petersham and Sutherland on Saturday.
Summary:
Reacting to former South Africa spinner Paul Harris calling him a "clown", Team India captain Virat Kohli said, "Paul Harris, yeh kaun hai (Who is he)?
Summary:
"My son still doesn't have a phone," Pichai further said.
Summary:
A Kandahar-bound Ariana Afghan Airlines flight was stopped from taking off from Delhi airport today after its pilot mistakenly pressed a button, which sent a hijack alert to the authorities.
Summary:
"Look who I found campaigning for the Congress party in Chhattisgarh," wrote Gandhi on Instagram.
Summary:
Summary:
Talking about Goa CM Manohar Parrikar, who is undergoing treatment for a pancreatic ailment, Akhil Bharat Hindu Mahasabha leader Swami Chakrapani Maharaj said, "Beef ban in Goa will cure Parrikar.
Summary:
A 95-year-old man, who was declared dead by a doctor, woke up while being bathed during his last rites in Rajasthan's Jhunjhunu district.
Summary:
Vice President M Venkaiah Naidu on Saturday inaugurated the Indian Armed Forces Memorial in France, the first India-built war memorial in the country, as a tribute to Indian soldiers who lost their lives during World War I.
Summary:
"[She] won't celebrate...because the family is worried over Tej's absence from Patna," an RJD MLA said.
Summary:
A photograph of German dictator Adolf Hitler hugging Jewish girl Rosa Bernile Nienau is up for sale in the US.
Summary:
Senior Congress leader and former Finance Minister P Chidambaram has accused Economic Affairs Secretary SC Garg of fudging fiscal deficit figures.
Summary:
Former RBI Governor Raghuram Rajan on Friday cited 'Statue of Unity' as an example of excessive centralisation of power in India.
"For example, we built this massive statue, the Sardar Patel statue on time," Rajan said.
Summary:
Offering to help tackle three wildfires in California, Tesla CEO Elon Musk said, "If Tesla can help people in California wildfire, please let us know." The wildfires erupted over 140 kilometres north of Sacramento, California, leading to evacuation of over 1.5 lakh people.
Summary:
NASA has shared an image of the wildfires in California, US, that have killed at least 9 people.
Summary:
NASA is planning to send micro-devices containing human cells in a 3D matrix to the International Space Station to test how they respond to stress, drugs and genetic changes.
Summary:
Talking about the International Space Station completing 20 years in space this month, Rakesh Sharma, the first Indian in space, said, "future space exploration will require us to inhabit the moon, initially...later Mars." It's a "humongous" task for any one nation to carry out, he added.
Summary:
The Environment Pollution (Prevention and Control) Authority has extended the ban on construction activities, coal and biomass-based industries and the entry of trucks in Delhi till November 12 due to high pollution levels.
Summary:
Japanese conglomerate SoftBankâÂÂs Vision Fund is reportedly planning to raise $4 billion in debt to help finance its further acquisitions.
Summary:
Taking a jibe at PM Narendra Modi, Actor Prakash Raj tweeted a video, wherein he says, "What do you think of the leader of this country?
Summary:
Deepika Padukone and Ranveer Singh will be wearing outfits designed by Sabyasachi Mukherjee on their wedding, as per reports.
Summary:
The 19-year-old added there's nothing wrong in his variation and he had used it in Vijay Hazare Trophy as well, where the umpires didn't signal it dead.
Summary:
Asian Games and Commonwealth Games gold medallist Bajrang Punia has become the world number one wrestler in the 65-kg category.
Summary:
Karnataka mining baron Janardhan Reddy, an accused in â¹18-crore bribery case who went missing three days ago, released a video with his lawyer on Saturday.
Summary:
The puja was aimed at resolving marital issues prevailing between Lalu's son Tej Pratap Yadav and his wife Aishwarya Rai, he added.
Summary:
A 48-year-old NRI businessman died after he accidentally fell from the terrace of Taj Mahal Hotel in Lutyens' Delhi, police said Friday.
Summary:
A 48-year-old self-styled faith healer has been arrested in Maharashtra for allegedly raping a woman on the pretext of helping her conceive a child, police said.
Summary:
A guard of Howrah-Digha AC Express escaped unhurt on Friday after the train started to move while he was still mending a glitch in an air pipe between the train's two compartments.
Summary:
After over 500 women between 10 and 50 age group registered for Sabarimala temple darshan, Kerala Police is considering to use helicopters to transport women devotees to protect them from the protesters.
Summary:
A Singapore court on Saturday charged four Indian-origin men for lighting fireworks, which had been banned in the country since 1972, on Diwali.
Summary:
Indonesia's search and rescue agency on Saturday said it had stopped the search for victims of the Lion Air plane that crashed into the sea with 189 on board, but would keep looking for the flight's second black box.
Summary:
After building the network, the joint venture is required to get a separate approval.
Summary:
The invitation is packed inside a storage box, with Isha and Anand's initials, 'IA' etched on the top, and also has a letter written by the couple.
Summary:
Rajan also said that India should not be satisfied with its current level of economic growth.
Summary:
Reacting to Brent crude oil price falling to a seven-month low, Mahindra Group Chairman Anand Mahindra tweeted, "I'm cheering because it's great news for the Indian economy".
Summary:
Dyson, the UK-based company known for its vacuum cleaners, is planning to make a wearable air purifier that could also work as a pair of headphones, according to a report.
Summary:
Microsoft has said that it made $1.3 billion in cash payments in connection to its acquisition of coding platform GitHub. The technology giant had acquired the coding platform in a $7.5 billion deal in June this year.
Summary:
The patent describes headphones with a cluster of five microphones in each ear cup to determine how users wear the headphones.
Summary:
Apple on Friday said that the screens on some of its iPhone X units have touch issues due to a component failure, adding that it's offering free screen replacements for the faulty devices.
Summary:
Facebook has launched its TikTok-like short video app Lasso that allows users to make and share short videos.
Summary:
US carmaker Tesla's new Chairman Robyn Denholm's former colleague Scott McNealy has said, "If Elon listens to her, heâÂÂll be way more successful." "Everything about her is rational, reasonable, and warm.
Summary:
Two group members claimed in a video that their passports and visas were confiscated in Malaysia.
Summary:
A pregnant woman was allegedly strangled to death on a train in Uttar Pradesh by a co-passenger after she objected to him smoking, officials said.
Summary:
Turkey has shared recordings related to the murder of journalist Jamal Khashoggi with the US, Saudi Arabia, the UK, France and Germany, President Recep Tayyip ErdoÃÂan said.
Summary:
Ex-US First Lady Michelle Obama has said she'll "never forget" President Donald Trump for spreading the "birther" conspiracy theory against her husband Barack Obama.
Summary:
After five straight weeks of decline, India's forex reserves jumped by $1.054 billion to $393.132 billion in the week to November 2.
Summary:
Ganguly is India's third-most successful Test captain, after Dhoni and Virat Kohli.
Summary:
Sacred Games actress Kubbra Sait, while supporting actor Nawazuddin Siddiqui against the allegations by his ex-girlfriend Niharika Singh, said, "A relationship gone sour, isn't #MeToo." "Someone needs to recognise the toxic difference before we go picking sides," she added.
Summary:
Speaking about Virat Kohli's comment wherein he suggested a fan to leave India for not liking Indian cricketers, filmmaker Anubhav Sinha said, "It's ok guys.
Virat is a young lad.
Summary:
Hollywood actor Ezra Miller wore a 'garbage bag' inspired dress at the premiere of 'Fantastic Beasts: The Crimes Of Grindelwald' in Paris, days after Priyanka Chopra was spotted in a similar jacket.
Summary:
India's 2011 World Cup-winning squad member Munaf Patel, who retired from cricket on Saturday, used to earn â¹35/day working in a tile factory when he was young.
There wasnâÂÂt enough money, but what could we do?" Munaf said.
Summary:
Summary:
Fast bowler Munaf Patel, who retired from all forms of cricket on Saturday, has said that if he had not been a cricketer, he would have ended up as a labourer in some company in Africa.
Summary:
Pacer Munaf Patel, who was a part of India's 2011 World Cup winning squad, has announced his retirement from all forms of cricket.
"There's no regret...after all the cricketers I played with have retired.
Summary:
Congress President Rahul Gandhi has alleged that PM Narendra Modi waived loans totalling to â¹3.5 lakh crore of select 15 industrialists during his tenure.
Summary:
In his recently published book 'Brief Answers To The Big Questions', late British physicist Stephen Hawking says the possibility of time travel in future can't be ruled out based on current understanding.
Summary:
On being questioned if it was too early for India to send humans into space, Rakesh Sharma, the first Indian in space, said it's "more like too late".
Summary:
Jason's car crashed head-on into a van being driven by 59-year-old Balvinder Singh.
Summary:
After recent renaming of cities, Uttar Pradesh Minister OP Rajbhar said, "[BJP has] National Spokesperson Shahnawaz Hussain, Union Minister Mukhtar Abbas Naqvi, Uttar Pradesh Minister Mohsin Raza- three Muslim faces of BJP.
Summary:
A 24-year-old married woman in Odisha has been arrested for allegedly chopping off the genitals of a man she had an extra-marital affair with.
Summary:
Faizul Hasan Qadri, the 83-year-old retired postmaster who had built a 'mini Taj Mahal' in memory of his wife, succumbed to his injuries in a road accident in Uttar Pradesh's Bulandshahr on Friday.
Summary:
The Taliban is not yet ready for talks with the Afghanistan government and will negotiate with the US instead, Sher Mohammad Abbas Stanakzai, the head of the Taliban's delegation to a peace conference in Russia, said.
Summary:
China and Myanmar have signed an agreement to build a port in Myanmar's Kyaukpyu town along the Bay of Bengal.
Summary:
US President Donald Trump has called French President Emmanuel Macron's call to build up Europe's military "very insulting".
Summary:
The US said that the coalition increased its capability to independently conduct inflight refuelling in Yemen.
Summary:
Jet Airways on Friday said independent director Vikram Mehta has resigned citing time constraints and other obligations.
Summary:
Congress President Rahul Gandhi offered prayers at the Darbarsahib Gurudwara in Rajnandgaon, Chhattisgarh on Saturday.
Summary:
Summary:
Summary:
Founded in 2015 by Ankur Aggarwal, Dalvir Suri, Mukund Jha and Kabeer Biswas, the Google-backed startup is a chat-based task management app.
Summary:
Summary:
A passenger claimed the authorities did not give them any explanation but kept on delaying the flight, while another said his brother had passed away and he had to reach Colombo soon.
Summary:
The Centre and the Maharashtra government have set up two separate expert committees to probe the killing of tigress Avni, who has been blamed for the deaths of 13 people in Maharashtra.
Summary:
Actress Niharika Singh has revealed filmmaker Sajid Khan had once said that she would commit suicide soon.
Summary:
Deepika Padukone and Ranveer Singh have left for Italy for their upcoming wedding on November 14 and 15, as per reports.
Summary:
A video shows Sanjay Dutt abusing the media at his Diwali party and telling them to go home for Diwali.
"Ghar pe nahi hai Diwali?
Summary:
Actor Shahid Kapoor's wife Mira Rajput took to Instagram to share the first picture of their baby boy Zain Kapoor, who was born in September this year.
Summary:
"The actress' career skyrocketed after she dumped the filmmaker," Niharika added while taking a dig at Sajid.
Summary:
Verma shared a secret diary in October last year, when the panel was considering Asthana's promotion from additional director to special director.
Summary:
Kerala-based NGO Prakruthi has shared an image of the replica of â¹1-lakh Man of the Match cheque award, which it claims was handed to Ravindra Jadeja.
Summary:
Facebook on Friday said it will no longer require employees to resolve sexual harassment claims through arbitration, mirroring an announcement made by Google on Thursday.
Summary:
Union Minister Shripad Naik on Friday said a change in leadership in Goa "either today or tomorrow...is a requirement" considering the health of CM Manohar Parrikar.
Summary:
Days after he was reported missing, RJD chief Lalu Prasad Yadav's 29-year-old son Tej Pratap Yadav on Friday said he would not come back home unless his parents accept his demand for divorce.
Summary:
Uttar Pradesh BJP MLA Jagan Prasad Garg on Friday said, "Agra has no meaning.
Summary:
The driver of the car has been arrested.
Summary:
Pakistan Army's Chairman Joint Chiefs of Staff Committee General Zubair Mahmood Hayat has alleged India was attempting to alter regional strategic landscape through an unprecedented military build-up.
Summary:
At least nine people have been killed as three wildfires burned out of control across California on Friday.
Summary:
Scotland has mandated a curriculum that will teach about lesbian, gay, bisexual, transgender and intersex (LGBTI) rights at all public schools, with the government claiming that the move is a world first.
Summary:
Sri Lankan President Maithripala Sirisena dissolved the Parliament on Friday after his party announced that it did not have the majority to secure support for PM Mahinda Rajapaksa.
Summary:
The team of more than 20 doctors and nurses spent six hours operating on the pair, who shared a liver but no other major organs.
Summary:
Abdul Shahid, a driver of a cash management company, escaped on Monday with â¹75 lakh meant for replenishing ATMs in Bengaluru.
Summary:
Andhra Pradesh CM N Chandrababu Naidu is set to expand his cabinet to include Andhra Pradesh Legislative Council Chairman NMD Farooq and 28-year-old IIT graduate Kidari Sravana Kumar, as per a release.
Summary:
Trinamool Congress MP Idris Ali on Friday said West Bengal CM Mamata Banerjee should be awarded India's highest civilian honour, the Bharat Ratna, as she is an "unparalleled lady".
Summary:
Addressing reporters in Bihar on Friday, RLSP chief and Union Minister Upendra Kushwaha said, "In a democracy, even a commoner can don the chair of the chief minister.
Summary:
Hours after BSP expelled Mukul Upadhyay, he claimed former UP Chief Minister Mayawati had demanded â¹5 crore in exchange for a party ticket.
Summary:
Apple growers in Kashmir have suffered losses worth around â¹500 crore due to the sudden snowfall.
Summary:
Delhi's Deputy Commissioner of Police (Southwest) Devender Arya issued an apology on Friday hours after tweeting, "Bursting firecrackers on Diwali could land you in jail.
Jai Sri Ram. Jai Hind." Arya deleted the tweet and apologised for the "inadvertent slip" after he was slammed for the post.
Summary:
A 10-year-old deaf and mute girl died days after an 18-year-old youth raped her in a toilet near her home in Howrah district, West Bengal.
Summary:
She was rescued after her son, who was facing marital problems, promised not to visit his wife's house.
Summary:
India's aviation regulator DGCA has asked IndiGo and GoAir to fix compressor issues in 15 of the Pratt & Whitney engines powering their Airbus A320neo planes.
Summary:
India began their 2018 Women's World T20 campaign with a 34-run victory over New Zealand in Guyana on Friday.
Summary:
Captain Harmanpreet Kaur on Friday became the first ever Indian woman to smash a hundred in T20I cricket, achieving the feat against New Zealand in the Women's World T20 2018.
Summary:
US publisher Meredith Corporation has agreed to sell Fortune magazine and its related businesses to Thai businessman Chatchaval Jiaravanon for $150 million (â¹1,090 crore).
Summary:
She further termed Nawazuddin an aspirational and sexually repressed Indian man whose toxic male entitlement grew with success.
Summary:
Former Miss India and Nawazuddin Siddiqui's ex-girlfriend Niharika Singh revealed the actor once told her it was his dream to have a Miss India or an actress wife, just like Paresh Rawal and Manoj Bajpayee.
Summary:
CBI Director Alok Verma appeared before the Central Vigilance Commission (CVC) headed by KV Chowdary on Friday and refuted the bribery allegations against him by CBI Special Director Rakesh Asthana.
Summary:
Amid the infighting between the CBI's top-most officials, over 150 CBI officers from the rank of Inspector to Incharge Director will attend a three-day workshop of Sri Sri Ravi Shankar's Art of Living Saturday onwards.
Summary:
Daniel Correa Freitas, a 24-year-old Brazilian footballer who was found dead with his penis severed, was reportedly invited by his alleged killer to have sex with his wife.
Summary:
The man had come to take care of his 105-year-old grandfather as he was staying alone.
Summary:
McDonald's Karkhana branch in Hyderabad served raw chicken in a burger to a mother and daughter.
Summary:
The Assam government has sent a team of medical experts to Jorhat Medical College Hospital after the death of 16 newborns in the hospital since last week.
Summary:
Former US President Barack Obama's wife Michelle Obama has revealed that she suffered a miscarriage 20 years ago and that she used In vitro fertilisation (IVF) to conceive her two daughters.
Summary:
The current US federal law provides that immigrants may apply for asylum, regardless of whether they enter legally or illegally.
Summary:
Telemachus Orfanos, a 27-year-old man who had survived last year's mass shooting in Las Vegas which killed 59, was among those killed in Wednesday's mass shooting in California.
Summary:
Textile company Interloop, which makes socks for Nike and Adidas, is planning Pakistan's biggest-ever Initial Public Offering (IPO) by a private firm.
Summary:
The police said the accused, Vishwas Pandey, directly entered the cabin of Arindam Pal and shot him five times.
Summary:
The finding discredited a theory claiming the skeleton, known as the 'Spirit Cave mummy', belonged to a group of 'Paleoamericans' existing in North America before native Americans.
Summary:
The scheme will start with up to 10,000 e-bikes for rent.
Summary:
Facebook-owned photo-sharing app Instagram is testing support for the Hindi language for its Indian users, according to a report.
Summary:
Attacking BJP and RSS over Sabarimala temple row, Congress MP Shashi Tharoor said, "Reducing this sanctified shrine to a place for political theatre while the local BJP chief gloats that this has been a golden opportunity for his party is utterly shameful." "It's a holy place.
Summary:
The car, which is designed as a crossover utility vehicle (CUV), weighs 950 kilograms and can reach 0-100 kmph in 13 seconds.
Summary:
US Ambassador to the UN, Nikki Haley, has said that North Korea postponed talks with the country on Thursday as "they weren't ready".
Summary:
American rapper Snoop Dogg shared a series of videos on his Instagram account of his visit to a park outside the White House where he smoked, saying, "F*** the President." Snoop could be seen in another video walking in the park while talking to fans.
Summary:
Interpol has said that it must accept the resignation of President Meng Hongwei who has been detained in China for allegedly accepting bribes.
Summary:
Anil Ambani-led Reliance Communications has paid â¹62.4 lakh to settle a case with markets regulator SEBI over non-compliance with listing norms, including alleged failure to inform about interest payment default on debentures.
Summary:
The Padur strategic reserve has four compartments to hold about 18.5 million barrels of oil.
Summary:
US-based rating agency Moody's has placed Bharti Airtel's rating on review for downgrade, following low levels of profitability and expectations of weak cash flow.
Summary:
Filmmaker Karan Johar took to Twitter to deny reports that he will be making a sequel to his film 'Kuch Kuch Hota Hai'.
Summary:
Sooraj, who's fighting a court case for six years, added he's been called a murderer, which has filled his loved ones' heart with sadness.
Summary:
Spin legend Shane Warne, in his autobiography, claimed '2015 Cricket All-Stars' exhibition series in the US, which he and Sachin Tendulkar wanted to make an annual affair, failed due to Sachin's management team.
Summary:
Reacting to Virat Kohli asking a fan to leave India for not liking Indian cricketers, IPL chairman Rajeev Shukla said the Indian captain must be talking in terms of nationalism that an Indian should support Team India.
Summary:
A Philippine Airlines flight attendant breastfed a passenger's baby mid-flight after the baby's mother ran out of formula milk.
Summary:
Summary:
Addressing a rally in poll-bound Chhattisgarh on Friday, PM Narendra Modi said, "Urban Maoists...move around in big cars and their children study abroad, but they ruin the lives of our poor adivasi youth here through remote control." "Why is Congress supporting these Urban Maoists," PM Modi questioned.
Summary:
Over 3 lakh people have already registered for the festival online.
Summary:
Union Minister Babul Supriyo escaped unhurt as his car was hit from behind by a bus on a Delhi flyover.
Summary:
The External Affairs Ministry (MEA) said that India will not hold talks with Taliban during the peace conference in Russia, adding the meeting is focused on Afghanistan.
Summary:
Prime Minister Narendra Modi will attend the swearing-in ceremony of Ibrahim Mohamed Solih, the Maldives' President-elect on November 17, the Ministry of External Affairs said.
Summary:
Moreover, women violating the rule have to pay a fine of â¹2,000 and those who inform about such women get a reward of â¹1,000.
Summary:
The man was part of a three-member gang that shot the woman dead on her way to school.
Summary:
US Vice President Mike Pence will meet Prime Minister Narendra Modi next week during his four-nation tour.
Summary:
Electronic Voting Machines (EVMs) will be used for the first time on a limited scale in Bangladesh's general elections to be held on December 23.
Summary:
The Fantasy Bra at this year's Victoria's Secret Fashion Show, held on Thursday, was worth $1 million (â¹7 crore).
Summary:
Other models who were part of the show included Behati Prinsloo, who returned after two years and Adriana Lima, who walked the show's runway for the last time.
Summary:
The government said that PPP model has helped Airports Authority of India in enhancing its revenue and developing airports in rest of the country.
Summary:
The 2018 show marks 19 years since Adriana first appeared on the Victoria's Secret runway in 1999.
Summary:
Ex-India batsman Mohammad Kaif has joined Delhi Daredevils as assistant coach for the 2019 Indian Premier League.
Summary:
Google CEO Sundar Pichai in a recent interview said, "Technology doesnâÂÂt solve humanity's problems.
Summary:
Google, at a recent event, confirmed that the dark mode on Android phones uses less power and saves battery life.
Summary:
The Satanic Temple, a religious activist group, has sued Netflix and Warner Bros for over $50 million for unauthorized use of a statue in the series "Chilling Adventures of Sabrina." It alleged the series copied the group's statue of the goat-headed deity Baphomet.
Summary:
MIT researchers have developed a see-through film that can block up to 70% of the sunâÂÂs heat.
Summary:
Pakistan has said that it released Mullah Abdul Ghani Baradar, one of the co-founders of the Afghan Taliban at the US' request.
Summary:
The Commerce Ministry on Thursday said that India plans to export 2 million tonnes of raw sugar to China from next year.
Summary:
Chuying blamed the default on falling demand for pork caused by the outbreak of African swine fever.
Summary:
Prior to this, the last time Australia defeated South Africa in an ODI was on June 11, 2016.
Summary:
Earlier, Tej said his family was conspiring against him.
Summary:
Remembering his childhood home in Chennai, Google CEO Sundar Pichai said, "We lived in a kind of modest house, shared with tenants.
Summary:
A motorised wheelchair used by late British physicist Stephen Hawking was auctioned for over $390,000 while his PhD thesis raised nearly twice the amount for charity.
Summary:
The Centre said it will sell 'enemy shares' worth around â¹3,000 crores that belonged to the people who moved to Pakistan and China following the partition in 1947 and wars since.
Summary:
Indian Army on Friday inducted three major artillery gun systems and equipments, including the M777 American Ultra-Light Howitzer and the K-9 Vajra at Deolali artillery centre in Maharashtra's Nashik.
Summary:
The US' bombing of Japan's Hiroshima and Nagasaki had eventually led to the independence of the Korean Peninsula from Japanese colonial rule.
Summary:
Police said that they are treating the attack as a terror incident.
Summary:
Indian-American Sikh businessman Harry Singh Sidhu has been elected as the Mayor of the Anaheim city in California, US.
Summary:
The H-1B visa programme allows US companies to hire skilled foreign professionals in specialised fields.
Summary:
Economic Affairs Secretary SC Garg on Friday said there is "no proposal to ask RBI to transfer â¹3.6 or â¹1 lakh crore, as speculated".
Government's fiscal math is completely on track," Garg added.
Summary:
Summary:
Veteran Marathi actress Lalan Sarang passed away on Friday morning at 79 after keeping unwell for many days.
Summary:
Summary:
The makers of Tamil film 'Sarkar' have deleted "objectionable" scenes after AIADMK protests since its release, as per reports.
Summary:
Facebook on Thursday said it has removed 14 million "pieces of content" related to the Islamic State, al-Qaeda and their affiliates on the platform in the third quarter of 2018.
Summary:
Organisers of the Google walkout to protest the company's handling of sexual harassment cases have said that Google CEO Sundar Pichai didn't address several of their core demands.
Summary:
Summary:
Senior Madhya Pradesh Congress leaders, including Kamal Nath, Jyotiraditya Scindia and Digvijaya Singh, will not be contesting the upcoming Assembly elections.
Summary:
Summary:
The Kerala High Court on Friday disqualified Indian Union Muslim League MLA KM Shaji for six years for campaigning on communal lines in the 2016 Assembly elections.
Summary:
DP World became Hyperloop's largest investor after the last funding.
Summary:
The Haryana police have arrested 11 alleged gangsters following a brief exchange of fire in Bahalgarh area, an official said on Thursday.
Summary:
Women will be able to travel free of cost in Delhi Transport Corporation (DTC) city and NCR buses on Bhai Dooj, which is being celebrated on Friday.
Summary:
A 16-year-old inmate of a state-run shelter home in Andhra Pradesh's Tirupati was allegedly raped and thrashed by superintendent Batyala Nandagopal for four years.
Summary:
The Haryana government has started a 'carpool policy' wherein it will reimburse the monthly travel costs incurred by parents of girls studying in state schools.
Summary:
Aamir Khan and Amitabh Bachchan starrer 'Thugs of Hindostan' was leaked online within hours of its worldwide release on Thursday.
Summary:
India is set to participate at a âÂÂnon-official levelâ in a meeting held by Russia on Afghanistan where representatives of the Taliban will be present.
Summary:
American investment bank Morgan Stanley has sued Morgan Stanley Capital (MSC) for improperly using its trademark and name.
Summary:
Aamir Khan starrer 'Thugs of Hindostan' has earned over â¹52 crore on its opening day, recording the highest-ever Day 1 collection for a Hindi film.
Summary:
"Mischievous targeting is a norm for a few," Kaif added.
Summary:
After several Google employees worldwide staged a walkout last week in protest of improper handling of sexual misconduct allegations, Google CEO Sundar Pichai unveiled new policies to curb sexual harassment at workplace.
Summary:
After BJP MLA Raja Singh said his party will rename Hyderabad as Bhagyanagar if voted to power in Telangana, Congress MP Renuka Chowdhury said, "He should change his name instead, no one will object." "Does he think all this 'dialogue baazi' will fetch him votes?
Summary:
"The name Muzaffarnagar was given by a nawab named Muzaffar Ali...people've been demanding its name change since centuries," he added.
Summary:
A video of a burning car moving on Rajiv Chowk flyover in Haryana's Gurugram has surfaced online.
Summary:
The buffaloes drowned stampeding into the Chobe River along the border between Botswana and Namibia.
Summary:
The 85-year-old Justice initially went home after the fall but after experiencing discomfort overnight she went to the hospital.
Summary:
England-based Flybe airline's plane with 44 passengers and four crew members descended 500 feet in 18 seconds on January 11 after the pilot selected the wrong autopilot setting shortly after take-off, a government inquiry revealed.
Summary:
London-based married couple Beat Cabiallavetta and Niharika Cabiallavetta are among the 69 employees promoted to partner level by US bank Goldman Sachs.
Summary:
Salman Khan's brother-in-law Aayush Sharma's next film will be produced by Salman, as per reports.
Aayush has taken proper action training during his years of preparation," said reports.
Summary:
Sushant Singh Rajput, who made his Bollywood debut with Abhishek Kapoor's 'Kai Po Che!' in 2013, has "evolved beautifully" as an actor, according to Abhishek who is currently directing him in 'Kedarnath'.
Summary:
Nick Jonas, who is getting married to Priyanka Chopra next month reportedly, has said he can be his authentic self in the relationship with Priyanka.
Summary:
Priyanka Chopra and Nick Jonas visited the Beverly Hills Courthouse last week and obtained a marriage license in the US ahead of their wedding, as per reports.
Summary:
Riddhima Kapoor Sahni, while talking about her brother Ranbir Kapoor, said, "He's extremely dedicated and gives every role his all...He lives to work." She added that Ranbir is a natural performer and when he takes on a role, he gets totally into it.
Summary:
Summary:
Sushmita and Rohman were dating for two months after they met at a fashion show, according to reports.
Summary:
The Congress has denied a ticket to Vyapam scam whistleblower Dr Anand Rai ahead of the Madhya Pradesh Assembly elections.
Summary:
On the second anniversary of demonetisation on Thursday, West Bengal Chief Minister Mamata Banerjee tweeted, "The government cheated our nation with this big #DeMonetisation scam.
Summary:
Summary:
Although the fight was sorted out on Wednesday night, the accused attacked the victim with a knife the next day.
Summary:
Two members of a family were arrested for allegedly strangling a man to death after he defecated next to their house in Jharkhand's Palamu district on Thursday, said the police.
Summary:
At least 12 trains were cancelled and 10 others were halted after two bogies of a goods train caught fire at the Dahanu Road Railway Station in Palghar district, Maharashtra on Thursday night, officials said.
Summary:
A woman died after she was allegedly raped by three men, including her former husband, on Wednesday night in Jharkhand's Jamtara district.
Summary:
Emile Ratelband, a 69-year-old Dutch man, has moved the court to be legally declared a 49-year-old to get more right swipes on dating app Tinder.
Summary:
Batsman Prithvi Shaw, who turns 19 today, had smashed 546 runs off 330 balls as a 14-year-old during a Harris Shield match for Rizvi Springfield against St Francis D'Assisi.
Summary:
Criticising Indian captain Virat Kohli for suggesting a fan to leave India for not liking Indian cricketers, actor Siddharth tweeted, "What an idiotic set of words to come from...India captain!" "If you want to remain #KingKohli it may be time to teach yourself to think 'What would Dravid say?' before speaking," he added.
Summary:
Italy's 49-year-old boxer Christian Daghio passed away after spending around a week in a coma at a Bangkok hospital after suffering a knockout defeat in his title match against Thai boxer Don Parueang.
Summary:
Reacting to Kohli asking a fan to leave India for not liking Indian cricketers, cricketer-turned-commentator Aakash Chopra said that when Kohli will look back at it, he wouldn't be proud of what he said.
Summary:
Tendulkar, who runs the Tendulkar Middlesex Global Academy at MIG, gave throw-downs to Shaw, who is recovering from an elbow injury.
Summary:
Days after RJD supremo Lalu Prasad Yadav's son Tej Pratap reportedly went missing, his sister Misa Bharti said, "I think, Tej Pratap is in Varanasi.
Summary:
BJP MLA Raja Singh on Thursday said Hyderabad will be renamed as Bhagyanagar if BJP came to power in Telangana.
Summary:
Padmini, a 41-year-old tailor in Tamil Nadu, committed suicide on Diwali as she was upset over her inability to finish the stitching orders.
Summary:
On the second anniversary of demonetisation announcement on Thursday, Congress President Rahul Gandhi said, "Note ban was a premeditated brutal conspiracy.
Summary:
Former Madhya Pradesh Minister and BJP leader Sartaj Singh, who broke down after his name did not appear in BJP candidates list for the upcoming Madhya Pradesh Assembly elections, joined Congress on Thursday.
Summary:
Rapoport's son Jude sat on his lap while he continued to talk.
Summary:
Workers at a Chinese home renovation company who failed to complete their tasks were made to drink urine from a toilet bowl, eat cockroaches and were whipped with a belt by their managers in front of other staff members.
Summary:
The shooting suspect appeared to have shot at random inside the bar and there is no known motive, authorities added.
Summary:
Japanese laptops-to-nuclear conglomerate Toshiba on Thursday announced plans to cut 7,000 jobs, or 5% of the workforce, as part of a new five-year business strategy.
Summary:
Finance Minister Arun Jaitley has said that Visa and Mastercard were losing market share to domestic payments networks RuPay and UPI.
Summary:
Elon Musk on Thursday said that his space startup SpaceX is planning to build a mini version of its Mars rocket 'BFR' by upgrading the second stage of its Falcon 9 rocket.
Summary:
Researchers from Google and Harvard have developed an AI-based system named FINDER that can identify restaurants that could give people food poisoning.
Summary:
Southeast Asian ride-hailing startup Grab has raised $50 million funding from Thailand commercial banking group Kasikornbank as part of a strategic partnership.
Summary:
A team of astronomers has discovered pairs of supermassive black holes at the centre of galaxies merging together into single, larger galaxies.
Summary:
NASA's space explorer Ralph will explore Jupiter's Trojan asteroids aboard the Lucy spacecraft in 2021, the US space agency has said.
Summary:
While the second asteroid is predicted to pass at a distance of 13,86,771 km, the third asteroid will fly by at 3,81,474 km from the Earth.
Summary:
New York's iconic Empire State Building was lit in orange for the first time to celebrate Diwali.
Summary:
Associate Professor of medicine Dr DK Jha who is looking after RJD chief Lalu Prasad Yadav at Rajendra Institute of Medical Sciences, Ranchi said Yadav is under stress post his son Tej Pratap Yadav filed for divorce.
Summary:
Police said that the matter is being probed and added that no arrests have been made so far.
Summary:
Thirty-four people were arrested on Diwali night by the Chandigarh Police for violating the Supreme Court orders on the timing for bursting of crackers.
Summary:
Delhi's air quality index has dropped to "severe plus emergency".
Summary:
After being trolled for asking a fan to leave India for not liking Indian batsmen, Virat Kohli tweeted, "I guess trolling isn't for me guys, I'll stick to getting trolled!" "I spoke about how "these Indians" was mentioned in the comment and that's all," he added.
Summary:
Samsung has unveiled its first-ever foldable smartphone prototype, which, when opened, transforms into a small pocket-sized tablet.
Summary:
Fortis Healthcare on Thursday said its CEO Bhavdeep Singh has resigned but will continue in his current capacity till a successor is found.
Summary:
Their photo went viral on the internet and Ryanair received criticism for not providing them rooms to take rest.
Summary:
Former Australia pacer Brett Lee is the only bowler to take a hat-trick in both 50-over and T20 World Cups.
Summary:
An Indonesian plane was delayed for an hour after passengers complained about the smell of durian, known as the world's stinkiest fruit.
Summary:
The batsman defended the ball, but the umpire immediately declared it 'dead ball' apparently because the action could've distracted the striker.
Summary:
Reacting to Virat Kohli asking a fan to leave India for not liking Indian cricketers, a BCCI official said that it was a very stupid comment to make.
Summary:
The Committee of Administrators (CoA) reportedly told Team India head coach Ravi Shastri in a recent meeting that he shouldn't decide whether his team is the best travelling Indian side.
Summary:
Thailand's cabinet has approved a measure to temporarily waive the visa-on-arrival fees for visitors from India and 20 other countries in a bid to boost tourism.
Summary:
PM Narendra Modi's lookalike Abhinandan Pathak who joined Congress party last month, said "Achhe din nahin aayenge" on Thursday.
Summary:
Summary:
UK's Prince Charles has said that he will not speak out and meddle when he becomes king, saying he is "not that stupid".
Summary:
Harry Potter author JK Rowling has sued her former personal assistant Amanda Donaldson for ã24,000 (â¹22.8 lakh) over allegations she used Rowling's personal funds to buy cosmetics and gifts.
Summary:
Alex Sandro scored an own goal in the 89th minute to hand United a 2-1 win.
Summary:
Chinese press agency Xinhua on Thursday unveiled AI-based anchor that can read the news in English and Chinese.
Summary:
Former Finance Minister P Chidambaram on Thursday said that state-wise alliances would benefit the Congress and was the best way to defeat the BJP.
Similar alliances should be formed in different states," the senior Congress leader added.
Summary:
He said digital currency was not the objective of the government.
Summary:
Talking about Tesla appointing Robyn Denholm as the Chairman of the company's Board of Directors, Elon Musk on Thursday said, "Very much look forward to working together." He further said, "Would like to thank Robyn for joining the team.
Summary:
"I would love there to be convincing evidence of alien life...this isn't it," astrophysicist Alan Fitzsimmons said.
Summary:
Scientists have found that a method known as 'cloud thinning' could help in slowing down global warming and stabilise climate change.
Summary:
NASA's Mars Curiosity rover on Wednesday tweeted, "Taking care of business...I'm back to full operations." The rover drove about 60 metres to a site called Lake Orcadie, pushing its total estimated change in position over time to over 20 kilometres, as per NASA.
Summary:
Maharashtra's Shiroli village sarpanch Bhau Khavre has been booked after he allegedly fired several gunshots in the air with a revolver and a twelve bore gun, following the Laxmi puja on Diwali.
Summary:
562 FIRs were registered and 323 people were arrested in Delhi on Diwali night for violating the Supreme Court's order of bursting crackers between 8 pm to 10 pm, police said.
Summary:
The Kerala High Court on Thursday turned down a bail plea by a man arrested last month, saying protests against the entry of women to the Sabarimala temple were unacceptable.
Summary:
The first woman Secretary General of the Lok Sabha, Snehlata Shrivastava's tenure has been extended by Speaker Sumitra Mahajan for one year.
Summary:
The bank received â¹1,790 crore as capital from the government in July this year.
Summary:
Facebook Messenger will soon allow its users to unsend a message from a chat, the company confirmed.
Summary:
On the second anniversary of demonetisation, Finance Minister Arun Jaitley defended the move saying cash "bypasses the banking system and enables its possessors to evade tax." "India was a cash dominated economy...Demonetisation compelled holders of cash to deposit the same in the banks," he said.
Summary:
Zimbabwe played an ODI against New Zealand in the middle of a Test on November 8, 1992.
Summary:
Kamal Haasan's younger daughter Akshara Haasan, whose private pictures were recently leaked online, has said it's disturbing that someone did it only to derive some "perverse pleasure".
Summary:
Speaking about the #MeToo movement in India, Tanushree Dutta said, "The initial burst is over, but now it'll remain in people's minds and help cleanse the industry." "The movement started with Bollywood and then, women, who never thought they would speak up, came forward," she added.
Summary:
Pakistan captain Sarfraz Ahmed has criticised New Zealand batsman Ross Taylor for questioning the legality of Mohammad Hafeez's bowling action by making a throwing gesture during the first ODI on Wednesday.
Summary:
The Election Commission has asked the Odisha government to seal the state's border with poll-bound Chhattisgarh to ensure free and fair elections.
Summary:
US carmaker Tesla's new Chairman Robyn Denholm is currently the CFO of Australia's largest telco Telstra.
Summary:
US President Donald Trump has said that India and seven other nations were granted temporary waivers from the sanctions on Iranian oil as "they really asked for some help".
Summary:
The Narcotics Control Bureau on Thursday intercepted a truck on a highway toll plaza in Jammu and Kashmir and seized heroin worth â¹200 crore hidden in apple cartons inside the vehicle.
Summary:
Indian activist Rajagopal PV told the reporters in Switzerland that he's planning a 9,500-kilometre 'March for Justice and Peace' from Delhi on October 2 next year and arrive in Geneva on September 25, 2020.
Summary:
At least 12 people, including an officer, were killed after a gunman opened fire inside a bar in California, US, on late Wednesday, the sheriff's office said.
Summary:
Since Israel and Saudi don't have diplomatic ties, Israeli Muslims visited Mecca by going to Jordan where they got temporary Jordanian passports that allowed them to travel to the kingdom.
Summary:
Twelve people were killed and several others were injured in the shooting that took place on Wednesday night.
Summary:
At least 47 people were killed in Zimbabwe after two buses collided on Wednesday, police said.
Summary:
On the second anniversary of demonetisation, Finance Minister Arun Jaitley said the "system required to be shaken in order to make India move from cash to digital transactions".nJaitley reiterated that the move helped "formalise" the economy.
Summary:
Aviation regulator DGCA has asked Jet Airways and SpiceJet to check their Boeing 737 Max planes for possible issues which could lead to "significant altitude loss".
Summary:
Summary:
Summary:
Congress MP Anand Sharma slammed the government on the two-year anniversary of demonetisation on Thursday, stating, "Whatever happened in the country after that (demonetisation), the onus of all of that falls directly on the Prime Minister." He also called it an "unforgivable and autocratic decision...
Summary:
The company also laid off several employees following a dispute with its major financial backer, Evergrande Group.
Summary:
The funding came before the launch of the startup's first fully-electric motorcycle Vector.
Summary:
The fossilised molar teeth showed that the species was a leaf-eater, one of the scientists said.
Summary:
After the name-change of Allahabad and Faizabad in Uttar Pradesh, the Shiv Sena on Wednesday asked Maharashtra CM Devendra Fadnavis when his government would rename Aurangabad and Osmanabad districts in the state.
Summary:
Summary:
Delhi CM Arvind Kejriwal on Thursday questioned the rationale behind the Centre's note ban move and termed it as "a self inflicted deep wound" on the Indian economy.
Summary:
Manipur Chief Minister N Biren Singh on Thursday said the state could become the main gateway to Southeast Asia via the land route as work on the Asian highway is on in full swing.
Summary:
Indian cricket captain Virat Kohli has reportedly asked the BCCI to let key Indian fast bowlers like Bhuvneshwar Kumar and Jasprit Bumrah skip next year's IPL and rest for the 2019 World Cup instead.
Summary:
Electric carmaker Tesla has announced Robyn Denholm will replace Elon Musk as the Chairman of the company's board of directors with immediate effect.
Summary:
The evangelical Christian-backed Republican candidate had nicknamed himself the âÂÂTrump from Pahrump,â after the town where he lived in Nevada.
Summary:
Amitabh Bachchan and Aamir Khan's first film together, 'Thugs of Hindostan', which released today, is "visually brilliant but technically a sinking ship," wrote Koimoi.
It has been rated 2/5 (Koimoi) and 2.5/5 (TOI, NDTV).
Summary:
"Life happens when it chooses to happen, when it wants to happen.
And it is happening right now in this very moment," she wrote.
Summary:
Congress spokesperson Manish Tewari on Thursday took to Twitter to ask if it was a "mere coincidence" that Aamir Khan starrer 'Thugs of Hindostan' had released on the same day as the second anniversary of demonetisation.
Summary:
Hollywood actor Chris Hemsworth has shared an Instagram story to wish his fans on the occasion of Diwali.
Namaste!" The video, which shows Hemsworth dressed in kurta and pyjama, also features Bollywood actor Randeep Hooda.
Summary:
Reacting to Virat Kohli asking a fan to leave India for not liking Indian cricketers, commentator Harsha Bhogle said his statement is a reflection of the bubble that most famous people either slip into or are forced into.
Summary:
AI officials said they had called in additional support staff from home to avoid further delay.
Summary:
However, district officials said the proposed project site is far from the area where Avni was shot.
Summary:
Two more people were injured in the attack and were rushed to the hospital.
Summary:
Extending his greetings on the occasion of Diwali, US President Donald Trump has said that the festival is a special opportunity to reflect on the friendship between US and India.
Summary:
Summary:
Kerala's 96-year-old Karthiyani Amma, who recently topped 'Aksharalaksham' literacy programme with 98 marks out of 100, was gifted a laptop by state education minister C Raveendranath in an official capacity on Wednesday.
Summary:
Speaking on the second anniversary of demonetisation, Finance Minister Arun Jaitley on Thursday defended it saying that confiscation of currency wasn't the objective.
Summary:
While the local media reported that she's been flown out of the country, the government said that she's still in Pakistan.
Summary:
Apple is not in talks "at any level" to settle its $7 billion legal dispute with mobile chip maker Qualcomm, according to reports.
Summary:
Facebook CEO Mark Zuckerberg has refused to testify over fake news before a joint parliamentary committee from five countries including British and Canadian federal governments.
Summary:
Claiming the state will examine options to construct the Ram Mandir in Ayodhya within the constitutional framework, UP CM Yogi Adityanath on Wednesday said, "Mandir tha, hai, aur rahega." He added, "There is already a temple in Ayodhya.
Summary:
Speaking on his 64th birthday, actor-turned-politician Kamal Haasan on Wednesday said his party, Makkal Needhi Maiam (MNM), is ready to contest the bypolls in Tamil Nadu whenever they are conducted.
Summary:
Automaker company Ford on Thursday announced that it has acquired US-based electric scooter startup Spin to provide first and last mile transport solution.
Summary:
The Chennai Police have arrested two auto drivers in connection with the murder of a woman whose body was found dumped behind the swimming pool on Marina Beach on Sunday.
Summary:
Wishing BJP leader LK Advani on his 91st birthday, PM Narendra Modi on Thursday tweeted that he prayed for his good health and long life.
Summary:
Summary:
President Ram Nath Kovind and Prime Minister Narendra Modi extended greetings to the people of Gujarat on the occasion of Gujarati New Year on Thursday.
Summary:
The Delhi Police arrested 31 people and seized nearly 700 kg of illegal crackers on the day of Diwali.
Summary:
General Officer Commanding-in-Chief Northern Command Lieutenant General Ranbir Singh and General Officer Commanding of White Knight Corps Lieutenant General Paramjit Singh on Wednesday visited Jammu and Kashmir's Poonch sector to convey Diwali greetings to troops.
Summary:
US President Donald Trump on Wednesday fired the country's Attorney General Jeff Sessions, a year after he recused himself from an inquiry into the President's links to Russia.
Summary:
The White House has revoked CNN reporter Jim Acosta's credentials after he had an angry exchange with US President Donald Trump, following which a female intern tried to take away his mike.
Summary:
Sushmita Sen took to social media to share a picture with her rumoured boyfriend, model Rohman Shawl and her daughters Alisah and Renee onâ the occasion of Diwali.
Summary:
Actress Alia Bhatt, while speaking about her upcoming film 'BrahmÃÂstra', said it is her most action-heavy film yet.
Summary:
Alia Bhatt, on being asked during an interview if she has found the "perfect one" in her life, said, "Yeah, I think I have." She added that in love she is an "affectionate, beautiful person".
Summary:
If I'm 34, no one picks me," Munaf told Warne.
Summary:
Fast bowler Trent Boult on Wednesday became the third New Zealander to take a hat-trick in ODI cricket.
Summary:
Indian shuttler Ajay Jayaram, who is ranked 52 worldwide, took to social media to share a picture of a rangoli he created on Diwali.
"Happy Diwali, guys...dabbled with colour for a change and created some rangoli art.
Summary:
Warne said that Jadeja was once late to training and while going back after training, he asked Jadeja "to get off the bus and walk home".
Summary:
Ex-Rajasthan Royals captain Shane Warne, in his autobiography, revealed Mohammad Kaif once got angry at being given a "little" hotel room like other players.
Summary:
Former BJP minister Gali Janardhana Reddy, wanted in connection with an alleged â¹18-crore bribery case, has gone missing, Bengaluru police said today.
Summary:
In its fourth candidate list for Madhya Pradesh Assembly elections, the Congress has given ticket to CM Shivraj Singh Chouhan's brother-in-law Sanjay Singh Masani to contest from Waraseoni.
Summary:
Ford Motor Company has made a profit in India for the first time in a decade in the last financial year.
Summary:
A video is being shared across social media platforms showing a Kashmiri farmer crying and shovelling aside snow with his bare hands after apples in his orchards were destroyed by the snowfall.
Summary:
A 29-year-old man has been arrested for allegedly assaulting a 52-year-old female devotee at Sabarimala Temple in Kerala, after suspecting her to be under 50 years of age.
Summary:
The girl was rushed to a medical facility where her condition is described as serious.
Summary:
Jayasuriya has refused to recognise Mahinda Rajapaksa as Prime Minister until he proves a majority in the Parliament.
Summary:
World number 37 Nick Kyrgios has revealed that he is seeing some psychologists to get on top of his mental health.
Summary:
Samajwadi Party chief Akhilesh Yadav slammed the BJP for renaming Lucknow Stadium after former PM Atal Bihari Vajpayee, saying BJP should consider building better stadium in former PM's village than resorting to mere renaming exercises.
Summary:
It tweeted, "Happy Birthday to senior BJP leader, former Union Finance Minister Shri Yashwant Sinha.
Summary:
The Competition Commission of India (CCI) on Tuesday said that e-commerce firms Amazon and its rival Flipkart are not abusing market position to favour select sellers.
Summary:
"This way we can ensure...balanced water level in the lake.
There has to be...balance between water recharge and water withdrawal," Uttarakhand Jal Sansthan official said.
Summary:
A State Bank of India ATM and several other dwellings were gutted in a fire in Delhi's Laxmi Nagar on Wednesday.
Summary:
An assistant commissioner of the Delhi government's GST department has been arrested by the CBI for allegedly taking a bribe of â¹6 lakh.
Summary:
A camp court at the special jail in Odisha has reserved its verdict on the bail plea of journalist Abhijit Iyer Mitra and extended his judicial custody by 14 days.
Summary:
The Hyderabad Task Force Police and Saifabad Police arrested four people and seized over â¹7.5 crore in unaccounted cash on Wednesday.
Summary:
The United Liberation Front of Asom (Independent) on Wednesday denied media reports of its commander-in-chief Paresh Baruah dying in an accident near the China-Myanmar border.
Summary:
The makers of 'Zero' have responded to a complaint filed by Delhi MLA Manjinder Singh Sirsa, who said the film hurt Sikh sentiments by allegedly showing Shah Rukh Khan wearing 'Gatra Kirpan'.
Summary:
A large number of colour-painted clay pots and bronze artefacts were also unearthed from the tomb.
Summary:
Bumrah was about to take the catch when Pollard, who was almost under the ball, inadvertently raised his hand to avoid a collision.
Summary:
"I don't think you should live in India.
Why are you living in [India] and loving other countries?" Kohli responded.
Summary:
Speaking on the waivers granted to India and seven other countries over Iranian oil sanctions, US President Donald Trump said, "I'm not looking to be a great hero".
Summary:
A jeweller in Uttar Pradesh's Ghaziabad was allegedly robbed of cash, gold and silver items worth â¹25 lakh on Tuesday by a gang of four armed men wearing pollution masks.
Summary:
A man allegedly set fire to his motorcycle, with 'HR 26 JAAT' number plate, after a policeman asked him to show documents of the vehicle in Haryana's Gurugram on Tuesday, police said.
Summary:
Delhi's Sadar Bazar Welfare Association, which is protesting against the Supreme Court's order by selling firecrackers inside green vegetables, said, "We don't know what green crackers are." "When we asked (police), they said they'll give us a list of crackers.
Summary:
Greater Hyderabad Municipal authorities recently detained 70-year-old Bijli Pentamma for begging on streets and recovered cash worth â¹2,34,320, silver bangles and a chain from her after she was rehabilitated in an ashram.
Summary:
The incident happened while Chide and other policemen were trying to stop the vehicle while conducting a routine check on vehicles against illegal transportation of liquor.
Summary:
The employees of the country's Department of Conservation have also been targetted over the use of the poison.
Summary:
The bodies of three men and two women have been found in the rubble of two collapsed buildings in the French city of Marseille, authorities said on Wednesday.
Summary:
The 79 school children kidnapped by gunmen in Cameroon have been released, Communications Minister Issa Bakary said.
Summary:
Stockholm-based technology startup Furhat Robotics has unveiled a social robot, called Furhat, that can display human-like expressions and emotions.
Summary:
Tencent is building a research team for its "Auto-drive Team" based in Palo Alto, California, the Chinese gaming and social media giant has said in job advertisements on LinkedIn. It is recruiting self-driving car engineers in California.
Summary:
Mizoram CM Lal Thanhawla on Tuesday couldn't file his nomination papers from home seat Serchhip, as agitators demanding the removal of the state Chief Electoral Officer (CEO) continued their picketing in front of the office of the returning officer.
Summary:
Summary:
Three astronauts will be permanently stationed in the 60-tonne orbiting lab.
Summary:
NASA's Parker Solar Probe has made its first close approach to the Sun, just two and a half months after liftoff.
Summary:
NASA has captured an image of the Earth from the ISS that shows a rare phenomenon called 'airglow'.
Summary:
While the space controllers will try to reboot the affected computer, the other two computers can maintain the station's operations, the agency added.
Summary:
Locals in the Central Market of Meerut broke the glass window of a car in which a toddler was left locked inside by her parents.
"Locals spotted her and tried to find her parents.
Summary:
The girl claimed the men assaulted her and even made a video of the act.
Summary:
London-based Institute for Public Policy Research (IPPR) has announced a ã100,000 (â¹95 lakh) cash prize for "radical ideas" to boost UK's economic growth.
Summary:
The Muhurat trading is conducted every year on account of Diwali, usually in the evening.
Summary:
India has received a temporary waiver from the US to buy Iranian oil after it reimposed sanctions on the Persian Gulf nation.
Summary:
State-owned banks will need â¹1.2 lakh crore in fresh capital by March 2019 to meet regulatory requirements, ratings agency Crisil said.
Summary:
The election officials will reach the village a day before and erect a tent for the voters.
Summary:
Filmmaker Rohit Shetty took to social media to congratulate Ranveer Singh and Deepika Padukone on their upcoming wedding and wrote, "My Simmba is marrying my Meenamma!!!" "I wish them all the luck for a blissfully beautiful future together," he added.
Summary:
Ex-India cricketer Sanjay Manjrekar, who escaped unhurt after a glass door of the commentary box at the Lucknow stadium shattered during India's T20I against Windies, took to Twitter to share a picture of the shattered door.
Summary:
Northern Districts' Joe Carter and Brett Hampton set the world record for most runs scored off one over by smashing 43 runs against Central Districts in a List A match in New Zealand on Wednesday.
Summary:
Madhya Pradesh BJP candidate Narayan Tripathi has been booked for allegedly violating the Model Code of Conduct after he went to file his â¹10,000-nomination fee with â¹1 coins in metal pots covered with red cloth.
Summary:
A video has surfaced online, wherein some sellers could be seen mocking the Supreme Court order that allowed bursting only 'green firecrackers' in Delhi-NCR.
Summary:
Four motorcycle-borne men in Delhi allegedly sprayed a chemical inside an Indian-origin US woman's car and stole her backpack after she stepped out of her car near AIIMS.
Summary:
RBI Governor Urjit Patel could resign on the apex bank's next board meeting on November 19, reports said.
Summary:
PM Narendra Modi on Wednesday celebrated Diwali with jawans of the Army and Indo-Tibetan Border Police (ITBP) at Harsil in Uttarakhand.
Summary:
The 44-year-old victim, who ran a kiosk near a liquor shop, was reportedly attacked by a group of policemen led by sub-inspector Ashish Yadav.
Summary:
A day after hosting Diwali celebration in Ayodhya and announcing the renaming of Faizabad to Ayodhya, Uttar Pradesh CM Yogi Adityanath on Wednesday said a grand statue of Lord Ram will be built in Ayodhya.
Summary:
R Tamil Selvan, who helped save 36 persons injured in the '26/11 terror attack' in 2008 at Mumbai's Chhatrapati Shivaji Terminus, said, "I saw Kasab spraying bullets at the commuters from an assault rifle".
Summary:
The millionaire politician is a five-term Congressman from the city of Boulder in Colorado.
Summary:
A World Trade Organization (WTO) dispute settlement panel upheld Japan's complaint against safeguard duty imposed by India on imports of hot-rolled flat steel products for two-and-a-half years.
Summary:
Ex-RBI Governor Raghuram Rajan has said RBI is a seat belt for the government, which is a driver.
Summary:
According to Waymo, the test driver of the self-driving car took control of the vehicle moments before the accident.
Summary:
China's artificial intelligence company Watrix has developed a surveillance software called 'gait recognition' that uses people's body shapes and how they walk to identify them.
Summary:
Facebook is rolling out a collective 'Diwali Story' for Indian users on its Stories feature.
Summary:
They hacked several verified twitter accounts including those of British fashion retailer Matalan and film distributor Pathe UK to promote the fake advert.
Summary:
Microsoft's digital assistant Cortana division's Vice President, Javier Soltero, will leave the company by the end of 2018.
Summary:
BJP chief Amit Shah and Rajasthan CM Vasundhara Raje are reportedly having differences in finalising the candidate list for the upcoming Assembly elections.
Summary:
Snapdeal has posted an 88% drop in its consolidated losses to â¹613 crore in the financial year 2018 from â¹4,647.1 crore the previous year, as per filings.
Summary:
The UN Postal System has issued stamps with diyas in celebration of Diwali as "the quest for the triumph of good over evil".
Summary:
Kim had arrived in India on Sunday and met Prime Minister Narendra Modi and External Affairs Minister Sushma Swaraj on Monday.
Summary:
Mungantiwar said he had nothing to do with Avni's death.
Summary:
President Ram Nath Kovind and PM Narendra Modi on Wednesday greeted the nation on the occasion of Diwali 2018.
Summary:
The RBI has declined to reveal the cost incurred on shredding banned currency notes returned after demonetisation, an RTI activist said citing a response from the central bank.
Summary:
India defeated Windies by 71 runs in the second T20I to take an unassailable 2-0 lead in the three-match series and clinch their seventh straight T20I series victory.
Summary:
Team India stand-in captain Rohit Sharma, who started his innings in the second T20I against Windies as the fifth highest T20I run-scorer, became the second highest run-scorer following his unbeaten knock of 111 runs off 61 balls.
Summary:
The US has exempted India from certain sanctions for the development of the Chabahar Port in Iran to facilitate the development of Afghanistan.
Summary:
The trailer of Shah Rukh Khan's 'Zero', which released on Friday, has garnered 100 million views and became the most viewed Indian film trailer across platforms in less than four days, said its makers.
Summary:
"I'm a reckless gambler.
I like poker and I'm looking forward to playing it," he added.
Summary:
Former Indian cricketers Sunil Gavaskar and Sanjay Manjrekar escaped unhurt after a glass door of the commentary box at Lucknow's Bharat Ratna Shri Atal Bihari Vajpayee Ekana Cricket Stadium shattered.
Summary:
Thousands of people gathered outside Mizoram Chief Election Officer SB Shashank's residence seeking his removal from the post, weeks ahead of the Assembly elections.
Summary:
Gujarat Deputy CM Nitin Patel on Tuesday said the state government is ready to change the name of Ahmedabad to Karnavati if it gets the required support of the people to overcome legal hurdles.
Summary:
Another arrested activist, Gautam Navlakha, has been granted interim relief till November 21.
Summary:
A drunk man in his mid-20s allegedly set 18 vehicles, including four cars, on fire in south DelhiâÂÂs Madangir area on Tuesday.
Summary:
China and Pakistan on Monday launched a bus service passing through Pakistan-occupied Kashmir (PoK) despite India's protest against it.
Summary:
India announced contributions of $13.36 million (over â¹97.2 crore) for various United Nations (UN) agencies and development activities at the 2018 United Nations Pledging Conference for Development Activities.
Summary:
The Italian government has offered to help Pakistan's Asia Bibi, the Christian woman acquitted of blasphemy charges, to leave the country.
Summary:
The 54-year-old had served on the Cricket Australia Board since 2004.
Summary:
Congress workers protested outside the Reliance office in Mumbai on the eve of Diwali, alleging corruption in the Rafale deal.
Summary:
Congress spokesperson Manish Tewari has said Congress will hold nationwide protests on November 9 to mark the second anniversary of the "Tughlaqian decree" of demonetisation.
Summary:
Urging his "hyper-imaginative friends" not to believe the rumours of his "disappearance", Congress leader Shashi Tharoor on Tuesday issued a clarification stating that he has a "bad chest infection" and is on antibiotics.
Summary:
Bihar Governor Lal Ji Tandon on Tuesday said the Ram Mandir will be constructed "very soon", and added, "I know Ayodhya has been waiting for a long time for that auspicious day".
Summary:
Earlier, BJP chief Amit Shah had met Baldas during his Chhattisgarh visit and sought support from the community.
Summary:
The Competition Commission of India (CCI) on Tuesday rejected allegations of price fixing against app-based cab aggregators Ola and Uber.
Summary:
Under the strategic partnership, Hyundai will start electric vehicle pilot projects with Grab in Singapore next year.
Summary:
Israel Prime Minister Benjamin Netanyahu on Tuesday wished PM Narendra Modi and Indians a Happy Diwali through Twitter.
PM Modi replied saying, "Bibi, my friend, thank you so much for the Diwali wishes".
Summary:
The mega Deepotsav 2018 celebrations which began on Tuesday entered the Guinness Book of Records for lighting as many as 3,01,152 earthen lamps, on the banks of River Sarayu, Ayodhya.
Summary:
Summary:
PM Narendra Modi extended greetings on the occasion of Diwali on Wednesday, tweeting, "Happy Diwali!
Summary:
The Delhi Police on Monday busted a gambling racket in the Rajouri Garden area and arrested around 100 people.
Summary:
Further, Shikhar Dhawan became only the sixth Indian batsman to reach 1,000 T20I runs.
Summary:
India opener Rohit Sharma smashed a 58-ball century in the second T20I against Windies at Lucknow on Tuesday to become the first cricketer in history to reach four hundreds in T20I cricket.
Summary:
Reportedly, over 8,000 account holders' data from 10 banks was sold in hackers' market.
Summary:
A video of a Ukraine restaurant has gone viral on social media, where two waiters threw cakes, one after the other, on two female customers who were rude to them.
Summary:
Actress Anushka Sharma in a recent interview said that she and her husband, Team India captain Virat Kohli, hardly spend time together as they both have very hectic lives.
"Virat and I have been working around the clock...we are living in a house and we've spent barely any time in it.
Summary:
Reliance Industries Chairman Mukesh Ambani's daughter Isha Ambani and Priyanka Chopra's cousin Parineeti Chopra were among the celebrities who were part of Priyanka's bachelorette.
Summary:
Wishing actress Athiya Shetty on her 26th birthday on Monday, Canadian rapper and singer Drake revealed that he is watching her film 'Mubarakan' three times in honour of her birthday.
Summary:
Singer-composer AR Rahman, who converted to Islam from Hinduism, has revealed people often ask him if Islam has made him successful.
"It's not about converting or not.
Summary:
Team India opener Rohit Sharma on Tuesday broke his own world record for hitting most sixes across all formats in international cricket in a calendar year.
Summary:
Montreal Canadiens scored two goals in just two seconds against Washington Capitals, breaking the National Hockey League record for fastest two goals by one team.
Summary:
A consortium of lenders led by Bank of Maharashtra has taken 'symbolic possession' of Pune's Maharashtra Cricket Association Stadium over non-payment of loan by stadium authorities.
Summary:
The Finance Ministry wants the RBI to transfer a surplus of â¹3.6 lakh crore, over a third of the total â¹9.59 lakh crore reserves of the central bank, to the government, reports said.
Summary:
After renaming Faizabad district as Ayodhya, Uttar Pradesh Chief Minister Yogi Adityanath has announced that his government will construct an airport in Ayodhya, which will be named after Lord Rama.
Summary:
The Enforcement Directorate (ED) on Tuesday said it has seized 11 properties worth â¹56 crore of fugitive jeweller Nirav Modi in Dubai, in connection with the â¹13,000-crore PNB loan fraud.
Summary:
A fisherman rescued an 18-month-old baby from the ocean after he wandered into the sea while his parents were asleep during a camping trip in New Zealand.
His face looked just like porcelain with his short hair wetted down," the fisherman said.
Summary:
After Pakistan's state-run news channel PTV wrote Beijing as "begging" on screen during the live broadcast of PM Imran Khan's speech in China, the government has removed the channel's MD.
Summary:
Electronics company Panasonic has developed a wearable device called Wear Space which acts like a human blinker to boost workers' efficiency.
Summary:
The Indian Railways on Tuesday announced that its Delhi Passenger Reservation System will remain shut from 11:45 pm on November 9, 2018, to 01:40 am on November 10, 2018, for maintenance.
Summary:
Karnataka BJP President BS Yeddyurappa, whose son won from Shimoga Lok Sabha seat, said Karnataka by-polls outcome was a warning to BJP.
Summary:
He also called the victory a "resurgence of the Congress party" and stated that the people of the state had "rejected" the BJP.
Summary:
Chhattisgarh CM Raman Singh on Tuesday said the assembly polls might have some impact on the upcoming Lok Sabha election but it should not be seen as a referendum on the PM Narendra Modi government at the Centre.
Summary:
Uttar Pradesh Chief Minister Yogi Adityanath on Tuesday said that "Ayodhya ki pehchan Bhagwan Ram se hai" and all the good schemes should be in Lord Ram's name.
Yogi Adityanath also announced renaming of Faizabad as Ayodhya.
Summary:
Bengaluru-based cab aggregator Ola has officially launched operations in New Zealand, offering ride services in Auckland, Wellington and Christchurch.
Summary:
The new star called 2MASS J18082002-5104378 B was formed very early on when there were no metals.
Summary:
A study by MIT researchers has proposed a plan that could use laser technology to attract the attention of aliens in space.
Summary:
A United Nations' study has revealed that the Ozone layer, which shields the Earth against cancer-causing solar rays, will be completely healed by 2060s.
Summary:
South Korea's First Lady Kim Jung-sook and UP CM Yogi Adityanath on Tuesday performed 'Aarti' on the banks of Sarayu river in Ayodhya.
Summary:
Uttar Pradesh Chief Minister Yogi Adityanath on Tuesday announced the renaming of state's Faizabad district to 'Ayodhya'.
Aaj se is janpad (Faizabad) ka naam bhi Ayodhya hoga," he said.
Summary:
RBI's former Governor Raghuram Rajan in an interview said, "The aim of the RBI board is to be a Rahul Dravid, sensible, thoughtful and not, with due respect, Navjot Singh Sidhu." "RBI is like a seat belt...without it you can get into an accident," he added.
Summary:
However, reports also said Disha deleted Filmfare's version of the picture and later uploaded a photoshopped one after being criticised for sharing a 'revealing' photo.
Summary:
Model-actress Pamela Anderson, while speaking about the #MeToo movement, branded it as the "third wave of feminism" and called it a "bore" that "paralyses men".
I'm a feminist, but...I think this #MeToo movement is just a bit too much for me." "I'm sorry.
Summary:
Actress Kalki Koechlin has revealed a producer told her to get Botox for her laughter lines while adding, "So I'm trying not to laugh so much anymore." "Many people have told me...I need to fix my teeth, or...I need to restructure my jawline," she added.
Summary:
Candidates from JD(S) and Congress won the Lok Sabha seats of Bellary and Mandya and the Assembly seats of Ramanagaram and Jamkhandi.
Summary:
Punjab National Bank's â¹13,000 crore scam accused diamantaire Mehul Choksi's aide Deepak Kulkarni, who used to look after Choksi's Hong Kong business, was arrested from Kolkata on Monday.
Summary:
Odisha Congress MLA Krishna Chandra Sagaria on Tuesday submitted his resignation as a member of the Assembly, saying he had failed to ensure justice to a 14-year-old girl who was allegedly gangraped by four men in uniform.
Summary:
Sam Ballard swallowed the slug as a dare at a party and became infected by a rare parasitic infection.
Summary:
At a rally in Minnesota earlier this year, Trump told a protestor, "Say hello to mommy."
Summary:
Over 200 graves containing the corpses of thousands of victims have been discovered in areas formerly controlled by the Islamic State (ISIS) in Iraq, a UN report said.
Summary:
A 94-year-old wheelchair-bound man accused of helping to murder hundreds of people at a Nazi concentration camp during World War Two appeared in a German court on Tuesday.
Summary:
Infosys Chairman Nandan Nilekani at a recent event said that the turnaround of the company is complete and called the last year's tussle at the company's board "very much from the past." "I've been chairman now over a year.
Summary:
Gold prices were up by â¹60 in the past two days due to rise in demand on the occasion of 'Dhanteras'.
Summary:
Ranveer Singh will move into Deepika Padukone's house in Mumbai after their marriage, as per reports.
Summary:
Summary:
Amitabh Bachchan and Aamir Khan starrer 'Thugs of Hindostan' will release in Pakistan without any cut, suggested reports.
Summary:
Talking about her #MeToo story that she had shared years ago, Kalki Koechlin said, "That was a battle I had to fight in the public eye." "For me, it was much longer than what was seen in media.
Summary:
Talking about users' data, Microsoft CEO Satya Nadella has said that the company doesn't use customers' personal data for profit.
Summary:
World Wide Web creator Tim Berners-Lee has launched a campaign to persuade governments and organisations to sign a "Contract for the Web" designed to make internet safer.
Summary:
Talking about raising toilet awareness, world's second richest person Bill Gates at a recent event said he never thought his wife, Melinda Gates, would have to tell him "to stop talking about toilets...at the dinner table".
Summary:
After Congress-JD(S) won 4 out of 5 seats in by-polls, Karnataka CM HD Kumaraswamy on Tuesday alleged the BJP was out to poach the alliance's candidates.
Summary:
Andhra Pradesh CM N Chandrababu Naidu on Tuesday said it would be a real Diwali for the country when the 'misrule' of the NDA government ends at the Centre.
Summary:
Tesla's medical clinic withheld medical care from workers to minimise the number of injuries on its official injury records, according to a report.
Summary:
Bengaluru-based home furnishing startup HomeLane has posted a 21.88% increase in revenue to â¹40.88 crore in FY18 from â¹33.55 crore in the previous fiscal.
Summary:
The System of Air Quality and Weather Forecasting and Research (SAFAR) on Monday said that Air Quality Index (AQI) of Delhi was detected at 329.
Summary:
"The success of government's surrender policy is pushing the LWE cadre to shun the path of violence," Singh said.
He also congratulated CM Raman Singh, the DGP and the state police.
Summary:
"It's very difficult to describe your feeling of what's actually going inside your head to someone," Shaheen added.
Summary:
Sirsa alleged the film's promo shows Khan wearing Gatra Kirpan, an article of Sikh faith.
Summary:
In another video, Hemsworth said, "No one's...moving, except our car going on the wrong side of the road."
Summary:
Bhajan singer Vinod Agarwal, who gave over 1,500 live performances both in India and abroad, died aged 63 in Uttar Pradesh's Mathura on Tuesday.
Summary:
Former Central Board of Film Certification (CBFC) chief Pahlaj Nihalani on Monday moved Bombay High Court against CBFC for suggesting approximately 20 cuts in his production 'Rangeela Raja'.
Summary:
Zimbabwe's previous Test victory had come against Pakistan in September 2013 at Harare.
Summary:
Arthur has said that he won't attend committee's meetings until Mohsin apologises.
Summary:
World's second richest person with $96 billion net worth, Bill Gates on Tuesday held a jar filled with human poop at a China event aimed at raising awareness about sanitation and toilets.
Summary:
As candidates from JD(S) and Congress took lead in four of the five seats in Karnataka bypolls, former Finance Minister P Chidambaram said it looked like a Test series win under Virat Kohli.
Summary:
The report attributed the recovery to the 1987 Montreal Protocol, a global pact that aims to protect the ozone layer by phasing out the production and consumption of ozone-depleting substances.
Summary:
The Delhi Police has seized 3,500 kg of crackers and arrested 26 people for storing them without a license, following the Supreme Court order dated October 23 on the sale of firecrackers.
Summary:
Union Minister Maneka Gandhi has written to Maharashtra CM Devendra Fadnavis asking him to remove state Forest Minister Sudhir Mungantiwar as she accused him of ordering the killing of suspected "man-eater" tigress Avni.
Summary:
Two Congress workers were beaten on suspicion of their involvement in Reddy's alleged murder.
Summary:
Two students from Kashmir studying at an engineering college in Punjab have been arrested for their alleged involvement in grenade blasts at a police station in Jalandhar in September.
Summary:
Upadhyay and three others had allegedly opened fire at the mall after an argument with a salesman.
Summary:
Speaking on Union Minister Maneka Gandhi's criticism of Avni's "murder", Fadnavis said she used "harsh words", adding that "her sentiments should be understood.
Summary:
RJD chief Lalu Prasad Yadav's 29-year-old son Tej Pratap Yadav has reportedly gone missing from his hotel room in Bodh Gaya days after he filed for divorce from wife Aishwarya Rai. He reportedly escaped his security guards, who were posted on the main door of the hotel, through a backdoor exit.
Summary:
A Delta Air Lines passenger was forced to sit on a faeces-covered seat after flight crew refused to clean the excrement he found in his seat upon boarding.
Summary:
Aamir Khan has said it's his dream to have economical theatres in India, adding, "Everyone should have the opportunity to access the film and I hope that happens." "You should have theatres that are economical, middle group and posh," he said.
Summary:
A video uploaded by a fan on social media shows Salman interacting with the young boy in the hospital.
Summary:
Priyanka Chopra, who is getting married to Nick Jonas on December 2, will not be inviting Bollywood celebrities to her wedding, as per reports.
Summary:
Expressing his surprise, Elba said to People, "I was like, 'Come on, no way.
It was a nice surprise - an ego boost for sure." "My mom is going to be very, very proud," Elba added.
Summary:
Parineeti Chopra, while praising her upcoming film 'Kesari' co-actor Akshay Kumar, said that he makes an extra effort to make the crew comfortable.
Summary:
I was never worried anyway." "He's just getting routine tests done...after so many years of wear and tear," added Riddhima while talking about Rishi who's currently in New York for his treatment.
Summary:
Mizoram CM Lal Thanhawla has written a letter to PM Narendra Modi seeking the immediate removal of the state's Chief Electoral Officer SB Shashank.
Summary:
Bengaluru-based e-commerce startup Meesho, founded by IIT Delhi alumni Vidit Aatrey and Sanjeev Barnwal, has raised $50 million funding.
Summary:
Darren and Valerie Lee, a couple in San Francisco, US, have been fined $2.25 million for running an "illicit hotel chain", City Attorney Dennis Herrera said on Monday.
Summary:
A day before the second T20I between India and Windies, UP government on Monday renamed Lucknow's Ekana International Cricket Stadium as 'Bharat Ratan Shri Atal Bihari Vajpayee Ekana Cricket Stadium'.
Summary:
Wishing Virat Kohli on the occasion of his 30th birthday, former India captain MS Dhoni shared a childhood picture of the India captain with a toy gun.
"I wish you a...happy birthday.
Summary:
Veteran Indian batsman Gautam Gambhir has stepped down as captain of the Delhi team a week before their Ranji season begins.
Summary:
SRH added that Dhawan was "unsettled...with the amount he was bought for" in the auction earlier this year.
Summary:
Slamming Congress leader Mallikarjun Kharge for his remarks against PM Narendra Modi, Law Minister Ravi Shankar Prasad said he was shocked, adding that it was late PM Indira Gandhi who used the language of Adolf Hitler during Emergency.
Summary:
A video has surfaced online, wherein Tamil Nadu Minister SP Velumani was seen dancing at a temple festival in Coimbatore on Sunday.
Summary:
In leaked video and audio of a BJP Yuva Morcha meeting, Kerala BJP chief Sreedharan Pillai was purportedly heard saying, "Sabarimala (temple) is a golden opportunity." "Settling the Sabarimala issue in a straight line isn't possible.
Summary:
Online recharge platform FreeCharge's Co-Founder Kunal Shah announced his new startup 'Cred' on Monday, over three years after Snapdeal bought FreeCharge for $400 million.
Summary:
An artificial model of lungs placed outside the parking of Sir Ganga Ram Hospital in Delhi on November 3 turned black from white by Monday noon.
Summary:
A Delhi court on Monday acquitted CM Arvind Kejriwal in a defamation case filed by Pawan Khera, who served as political secretary to former CM Sheila Dikshit.
Summary:
A woman was arrested from Greater Noida on Sunday for allegedly threatening a man to implicate him in a false rape charge if he does not give her â¹10 lakh.
Summary:
The child's resume also includes a colour-coded map which shows the places he has travelled to since he was born in 2013.
Summary:
Pakistan's state-run news channel PTV has apologised after it wrote Beijing as "begging" on screen during the live broadcast of PM Imran Khan's speech in China.
Khan is on an official trip to China to secure an economic package amid the debt crisis in Pakistan.
Summary:
Television personality Elisa Isoardi announced her breakup with Italy's Deputy PM Matteo Salvini in an Instagram post.
Salvini was en route to Ghana when Isoardi made the announcement.
Summary:
Eight countries namely, India, China, Italy, Greece, Japan, South Korea, Taiwan and Turkey have been granted temporary waivers from the US' sanctions on Iranian oil.
Summary:
Paridhan stores will sell sportswear brand Livfit, menswear brand Sanskar and womenswear brand Aastha.
Summary:
India's largest lender SBI on Monday said it is complying with the US sanctions against Iran.
And for a bank which is present in USA we will act strictly in accordance with the sanctions," Chairman Rajnish Kumar said.
Summary:
Wishing India captain Virat Kohli on the occasion of his 30th birthday, all-rounder Ravindra Jadeja said, "Score loads of runs and I think you should start eating roti, rice and lot of sweets." "On behalf of entire support team, a very happy birthday.
Summary:
Earlier in January, it was reported that the Bumble app was seeking $1.5 billion figure in valuation.
Summary:
LG Electronics has announced that it will co-develop a smart self-driving cart for use in South Korean supermarket chain, Emart.
Summary:
Twin brothers, Cameron and Tyler Winklevoss, who competed in the men's pair rowing event at the 2008 Beijing Olympics, have sued bitcoin advocate Charlie Shrem for allegedly stealing 5,000 Bitcoins in 2012.
Summary:
West Bengal Chief Minister Mamata Banerjee took a jibe at the BJP and said that their saffron is for doing party politics and telling lies.
Summary:
Chhattisgarh Chief Minister Raman Singh on Monday said it is good that his predecessor Ajit Jogi is fighting election and acknowledged that Ajit's party Janta Congress Chhattisgarh (JCC) will impact Congress more in the polls.
Summary:
A Nepal FM radio station based on the other side of the border is airing Samajwadi Party's 2019 poll campaign in districts bordering Nepal.
Summary:
The Aam Aadmi Party's (AAP) dissident leader Kanwar Sandhu on Monday termed the party's decision to suspend him and rebel-faction leader Sukhpal Singh Khaira as "unconstitutional".
Summary:
Alibaba Chairman Jack Ma has said the US-China trade war is the "most stupid thing in this world".
Summary:
Tata Group is reportedly in talks to buy a majority stake in Jet Airways and is aiming to merge the carrier with Vistara, a 51:49 joint venture between Tata and Singapore Airlines.
Summary:
Indonesia's Lion Air aircraft that crashed into the sea with 189 people on board had a damaged airspeed indicator on last four flights, Indonesia's National Transportation Safety Committee has said.
Summary:
Moses was named Man of the Match for his performance, which also included a run-out.
Summary:
Hetmyer responded but started running back after Hope hesitated, and survived for being the first to get his bat inside the crease.
Summary:
Indian batsman Shikhar Dhawan will play for Delhi Daredevils in the 2019 Indian Premier League after being traded by SunRisers Hyderabad.
Summary:
A picture of Team India head coach Ravi Shastri's lookalike in a Mumbai local has gone viral on social media.
Summary:
After India's first nuclear-powered submarine INS Arihant completed its first deterrence patrol, PM Narendra Modi said, "The success of INS Arihant gives a fitting response to those who indulge in nuclear blackmail." "Peace is our strength, not our weakness.
Summary:
Jammu and Kashmir Governor Satya Pal Malik has said that those who killed BJP leader Anil Parihar and his brother Ajit Parihar have been identified and will be brought before the public soon.
Summary:
A jewellery shop in Gujarat's Surat is selling gold and silver bars with faces of PM Narendra Modi and late PM Atal Bihari Vajpayee engraved on them.
Summary:
A 15-year-old girl onboard Rajdhani Express train was allegedly molested by an Army man near Bihar's Gaya on Sunday, following which the accused was arrested at an Uttar Pradesh station.
Summary:
Meanwhile, police have been issued orders to arrest anyone preventing women from entering the temple.
Summary:
Leopard, which was seen sneaking into Gujarat Secretariat complex in Gandhinagar on Monday morning, was caught by officials of the Forest Department hours after the search operations began.
Summary:
Pompeo added that the US is committed to reducing India and China's Iranian oil imports to zero.
Summary:
Iranian President Hassan Rouhani has said the country will "proudly bypass" the sanctions reimposed by the US.
Summary:
Seventy-nine school children along with their principal, a teacher and a driver, were kidnapped in central Africa's English-speaking region of Cameroon on Monday.
Summary:
Iran's President Hassan Rouhani has said that his country is "in a situation of economic war" with the US after its sanctions came into effect on Monday.
Summary:
The boy shot his grandmother using his grandfather's handgun.
Summary:
The train ran away when the driver temporarily stepped off the locomotive to inspect an issue with a wagon.
Summary:
Summary:
Chinese gaming and social media giant Tencent is planning to bring a verification system to check all gamersâ identities and ages against police databases by 2019.
Summary:
Amazon is set to acquire 9.5% stake in Kishore Biyani-led Future Retail next week for about â¹2,500 crore, according to reports.
Summary:
E-commerce major Amazon has invested â¹122 crore in its Indian logistics arm, Amazon Transportation Services (ATS), according to filings.
Summary:
An interstellar asteroid called 'Oumuamua' could have been sent by aliens to look for signs of life, a study by Harvard scientists has claimed.
Summary:
Around $22 million were awarded to researchers in Life Sciences, Fundamental Physics and Mathematics.
Summary:
The aim is to look for energy transfer patterns to determine the existence of life.
Summary:
Summary:
Apple growers in Kashmir have suffered around â¹500 crore losses due to sudden snowfall in the region.
Summary:
Britain currently requires the recruits joining the armed services from the Commonwealth nations to have lived in the country for five years.
Summary:
India's first nuclear-powered submarine INS Arihant has completed its first deterrence patrol, PM Narendra Modi said on Monday.
The submarine completes India's nuclear triad by adding sea-based strike capability to land and air-based delivery platforms.
Summary:
The couple boarded the helicopter after their wedding at Will's family farmhouse as the guests cheered.
Summary:
Aamir Khan has revealed he once asked Shah Rukh Khan how to smoke in front of Amitabh Bachchan.
Summary:
England's limited-overs captain Eoin Morgan tied the knot with his long-time girlfriend, Australia-born Tara Ridgway, at the Babington House in Somerset on Friday.
Summary:
The government will invite global firms to challenge the original bid placed by Virgin Hyperloop One for the project.
Summary:
Mizoram Assembly Speaker Hiphei has resigned from his post, the House and Congress after he wasn't named as a candidate for the upcoming assembly elections.
Summary:
This was part of 'Clean Air Campaign' launched from November 1 to 10 to monitor and report polluting activities.
Summary:
At least five Naxals were killed during an encounter by security forces in Odisha's Kalimeda on Monday.
Summary:
Hundreds of Punjab government employees received double salary for the month of October due to a technical glitch in the software of the government's treasury department.
Summary:
A nine-year-old Bakarwal girl died and three of her family members were injured when a landslide struck their tent in Jammu and Kashmir's Rajouri district.
Summary:
China has backed Pakistan's bid for membership to the Nuclear Suppliers Group (NSG), praising its "anti-nuclear proliferation record".
Summary:
Chinese President Xi Jinping has promised to further cut import tariffs and introduce moves to make it easier for foreign firms to access the country's economy amid a trade war with the US.
Summary:
Ambani also took e-residency of the European nation in May this year, a spokesperson for Estonia's e-residency programme said.
Summary:
Actress Anushka Sharma took to social media to wish her husband and Team India captain Virat Kohli on the occasion of his 30th birthday on Monday.
Summary:
Pakistan batsman Babar Azam, who broke Team India captain Virat Kohli's record of being the fastest to score 1,000 T20I runs on Sunday, has said his role model is Kohli.
Summary:
It came after hosting service GoDaddy asked Gab to find another registrar after it was found that the US shooting suspect used to post conspiracy theories on Gab.
Summary:
The technology enables drones to recognise explored and unexplored territories within forests.
Summary:
Tripura Chief Minister Biplab Deb on Sunday said he and his family will start keeping cows at the Chief Minister's residence and consume their milk.
Summary:
Devi Singh Patel, BJP's candidate from Rajpur in the Madhya Pradesh Assembly elections, passed away at the age of 66 due to a heart attack on early Monday morning.
Summary:
ByteDance has also changed its product name to âÂÂShare, Follow & Chatâ on the Google Play store from 'Share&Chat'.
Summary:
Summary:
Further, his flight suit which he wore aboard Gemini 8 in 1966 mission was sold for $109,375 at the auction.
Summary:
The puja committee has women members but they don't enter the pandal.
Summary:
The agency said the workers were drilling without the prior block required to carry out maintenance work.
Summary:
A 32-year-old man has been arrested by Chennai Police after he allegedly repeatedly raped and impregnated a 17-year-old girl working at his sister's house as a babysitter.
Summary:
Congress President Rahul Gandhi on Monday tweeted in protest of the killing of tigress Avni, who is blamed for the deaths of at least 13 people in Maharashtra.
#Avni," Rahul said on Twitter.
Summary:
President Maithripala Sirisena had removed Ranil Wickremesinghe from the post of the Prime Minister and replaced him with Rajapaksa.
Summary:
With 5000+ enrolments and 250+ recruiting partners such as Uber, Zivame, Fractal analytics, it has helped professionals make career transitions in Data science.
Summary:
Summary:
Aamir Khan has said his wife Kiran Rao and ex-wife Reena Dutta share a good equation and added he has nothing to do with it.
Summary:
Officials at the reserve said they were busy taking the injured man to the hospital when the villagers surrounded the tigress and killed her.
Summary:
Goa Pradesh Mahila Congress Secretary, Diya Shetkar, on Sunday alleged that "goons" of BJP leader Subhash Shirodkar threatened to gangrape and kill her if she campaigned in his constituency of Siroda.
Shirodkar's supporters have stooped so low," she said.
Summary:
This comes weeks after violent protests at the temple when female devotees aged 10-50 years attempted to enter the shrine.
Summary:
Deoband-based Islamic seminary Darul Uloom has issued a fatwa against Muslim women for applying nail polish and cutting nails.
Summary:
Ahead of Diwali, on Monday morning Delhi's PM2.5 level was over 20 times the safe limit prescribed by WHO, according to data from the Delhi Pollution Control Board.
Summary:
A leopard entered Gujarat state secretariat that houses the Chief Minister's office in Gandhinagar around 2 am on Monday.
Summary:
A total of 175 trainee police constables in Bihar have been dismissed from service, 23 officers have been suspended and 93 transferred for indulging in large-scale violence and vandalism.
Summary:
A Pakistani national, who has been released from the Varanasi Central Jail after 16 years, took home the Bhagavad Gita.
Summary:
A dog accidentally shot his owner in the chest on way to a hunt after the canine got its leg caught in the trigger of a shotgun.
Summary:
The sons of journalist Jamal Khashoggi on Sunday asked Saudi Arabian authorities to return the body of their father, who was murdered inside the kingdom's consulate in Istanbul.
Summary:
"I hated seeing what happened with the children," Trump added.
Summary:
Aamir Khan said he's not a competitive person, adding, "I never felt competitive with Salman [Khan] and Shah Rukh [Khan]." Further, talking about Shah Rukh, Aamir said, "I see him as a star, I'm not a star.
Summary:
Irrfan Khan, who is currently undergoing treatment for neuroendocrine tumour in the United Kingdom, will return to India to celebrate Diwali in his Nashik farmhouse, as per reports.
Summary:
Summary:
Summary:
Aamir Khan, while talking about #MeToo movement, said, "It is really heartbreaking.
A lot of societies in the world are patriarchal.
Summary:
Aamir Khan has revealed that he has already told his son Junaid Khan that there will be a lot of comparisons between both of them if he joins the film industry.
Summary:
Addressing a public rally in Tundra ahead of the Chhattisgarh Assembly elections, Chhattisgarh Chief Minister Raman Singh on Sunday asked, "Why is Sardar Vallabhbhai Patel's and Pandit Nehru's Congress limited to only two states now?
Summary:
Summary:
A 42-year-old Congress worker was killed and two others were critically injured in West Bengal's North Dinajpur district on Sunday.
Summary:
A Telangana Armed Reserve wing police constable has been suspended after he wrote articles on the alleged labour exploitation in the police system and urged political parties to solve problems faced by policemen.
Summary:
Claiming nobody is opposing the construction of a Ram Mandir in Ayodhya, Yoga guru Baba Ramdev on Sunday said, "People are losing their patience due to the delay on the issue of Ram Temple by the Supreme Court." He added, "In a democracy, the Parliament is supreme.
Summary:
An official said some of the coaches were uncoupled from the bogie that had caught fire.
Summary:
The earthquake and tsunami in Japan that occurred in 2011 alone accounted for losses of $228 billion.
Summary:
What makes Diwali truly special is the smile on our residents' faces, says Lodha Group in a festive video shot across its properties.
Summary:
The match witnessed spinner Kuldeep Yadav take three or more wickets in a T20I for the fifth time.
Summary:
Bowling for the first time in T20Is in his fifth match, Kohli bowled a wide following which Dhoni stumped Pietersen.
Summary:
Kohli played a match-saving innings of 90 for his team before getting out due to an umpiring error.
Summary:
Former batsman Sachin Tendulkar became the first cricketer to smash 17,000 ODI runs during his 175-run knock against Australia on November 5, 2009, in Hyderabad.
Summary:
A woman's engagement photo from Melbourne, Australia has gone viral on the internet after she used her cousin's hand to show the engagement ring as her own nails were not perfect.
Summary:
Following the release of the teaser of 'Kedarnath', priests of the shrine town of Kedarnath in Uttarakhand have demanded a ban on the film, saying the film hurts Hindu religious sentiments by promoting 'love jihad'.
Summary:
Somashekar added he also had a WhatsApp conversation with David.
Summary:
Pakistan, who had whitewashed Australia 3-0 prior to the New Zealand series, have now won nine consecutive T20I matches.
Summary:
Gautam Gambhir criticised BCCI, CoA and Cricket Association of Bengal to allow ex-captain Mohammad Azharuddin to ring the bell at Eden Gardens ahead of India-Windies T20I on Sunday.
Summary:
Azam, who is the top-ranked T20I batsman, has slammed five 50-plus scores in his last eight innings.
Summary:
Yogeshwar Dutt, who won bronze in 2012 Olympics, said he has quit wrestling to prepare Commonwealth Games gold medallist Bajrang Punia for the 2020 Olympics.
I want people of India to see Yogeshwar in Bajrang now," he added.
Summary:
The match against Cardiff was Leicester's first after the helicopter crash that took Vichai's life.
Summary:
The CBI earlier claimed Pandya was killed in revenge for 2002 riots.
Summary:
The Central Information Commission (CIC) issued a show-cause notice to RBI Governor Urjit Patel for "dishonouring" Supreme Court judgement on disclosure of the wilful defaultersâ list.
Summary:
A video of India's richest person Mukesh Ambani's daughter Isha Ambani and her fiancé Anand Piramal's wedding invite shows a golden-coloured invite which includes a picture of 'Gayatri Maa'.
Summary:
Revealing that he had suggested Shah Rukh Khan's name for the biopic on astronaut Rakesh Sharma, Aamir Khan said, "It is true that I called up Shah [Rukh].
Summary:
Table-toppers Manchester City thrashed Southampton 6-1 in Premier League on Sunday to register their fifth straight victory across competitions.
Summary:
WhatsApp is reportedly working on a feature to add Touch ID and Face ID authentication to unlock the messaging app.
Summary:
Goa Cabinet Minister Vijai Sardesai on Sunday said CM Manohar Parrikar's health is far better compared to his stay in the AIIMS in Delhi and projections about his health are not true.
Summary:
The elder son of RJD chief Lalu Prasad Yadav, Tej Pratap Yadav, on Sunday said everyone in his family is supporting Aishwarya Rai and there's definitely a conspiracy behind all this.
Summary:
SoftBank Vision Fund has invested $1.1 billion in US-based smart glass maker View, the startup said.
Summary:
NASA is building robots to create rocket fuel using soil on Mars so that astronauts can get home after a mission.
Summary:
In a video shared by Union Health Minister JP Nadda, Prime Minister Narendra Modi wishes citizens a Happy Diwali and urges them to make purchases from needy people.
Summary:
The student dropout rate in Nagaland's primary schools, in Grades I-V, stood at 19.4%, four times above the national average of 4.3%, making it the state with highest school dropout rate in the country.
Summary:
A GoAir staffer told passengers that their luggage would be brought to Jammu by another flight of some other airlines.
Summary:
The incident took place at around 3:50 pm near central cabin of Danapur station.
GRP, RPF and railway officials present at the station reached the spot, after the incident.
Summary:
The truck rammed into the car after hitting divider.
Summary:
Delhi's Signature Bridge, built over the Yamuna river, was inaugurated on Sunday by CM Arvind Kejriwal, 14 years after it was announced in 2004.
Summary:
Priyanka also shared other pictures from the celebration, which showed bouquets of roses and balloons as part of the decoration.
Summary:
Actress Richa Chadha has said calling an adult film actor a porn star is a sign of patriarchy.
"You're disrespecting an actress...who is part of films that are adult in theme.
Summary:
Singer-composer AR Rahman has revealed he used to think about suicide till the age of 25.
Summary:
All-rounder Hardik Pandya, who is recovering from a back injury, took to Twitter to share a message for his older brother Krunal, who is making his India debut in the T20I against Windies.
Summary:
Khaleel had made his ODI debut in September this year, while Krunal, who is Hardik Pandya's older brother, has played for Mumbai Indians under Rohit.
Summary:
Days after filing for divorce from wife Aishwarya Rai, RJD Chief Lalu Prasad Yadav's son Tej Pratap Yadav has said he was forced to marry for political benefits.
Summary:
The total reduction in the diesel price during the period has reached â¹2.33.
Summary:
Justifying renaming Allahabad to Prayagraj, Uttar Pradesh Chief Minister Yogi Adityanath said, "Several people said why did I change the name...what's in a name?
Summary:
BJP Delhi chief Manoj Tiwari and BJP supporters clashed with AAP supporters and police ahead of the inauguration ceremony of North East Delhi's Signature Bridge on Sunday.
Why has the police surrounded me?
Summary:
A day before the inauguration of Delhi's Signature Bridge, Aam Aadmi Party's official Twitter account tweeted three images claiming it to be of the Signature Bridge.
Summary:
The husband of Pakistani Christian woman Asia Bibi, who was acquitted after spending eight years on death row on charges of blasphemy, has appealed to US President Donald Trump for refuge, citing danger to family members' lives.
Summary:
The blockchain-enabled transaction was for a shipment from Reliance Industries to US-based Tricon Energy.
Summary:
It is the tenth Hindi film to earn over â¹100 crore in 2018 in India.
Summary:
Anup Jalota, who was recently evicted from 'Bigg Boss 12', has said that he cannot disclose the contract that he had signed with the show but he suffered financial losses after entering the show.
Summary:
As many as three players were shown red card after the final whistle following a brawl of 30 players and staff members as the Istanbul derby between Galatasaray and Fenerbahce ended in a 2-2 draw.
Summary:
Manchester United came back from being 0-1 down after 11 minutes to defeat Bournemouth 2-1 in Premier League on Saturday.
Summary:
The boy, Thaqif, had earlier posted on Facebook that he was working on a first-person zombie shooter game that he wanted to sell for â¹17.
Summary:
Google is now seeking a new head of America's policy, the company added.
Summary:
As per reports, the first passenger train to run on broad gauge between India and Nepal is likely to run from December this year.
Summary:
Summary:
Automaker Aston Martin has revealed official images of its Formula 1-inspired Valkyrie hypercar which is said to be at around $3 million.
Summary:
Maharashtra Forest Minister Sudhir Mungantiwar on Sunday said Tigress Avni was shot dead as a last resort when all attempts to tranquilise her failed and she attacked forest officials.
We didn't want them to eventually become enemies of wildlife," he said.
Summary:
The Art of Living founder Sri Sri Ravi Shankar, while speaking on Sabarimala Temple row, on Sunday said a tradition is what makes the Indian culture and it must be followed.
Summary:
The Uttar Pradesh BJP will appoint around 100 women as 'teen talaq pramukhs' across the state to ensure rehabilitation of the triple talaq victims and their children, a party leader said.
Summary:
According to reports, the saints in Ayodhya have been pressing for construction of a statue of Lord Ram.
Summary:
Krishnesh Mehta made "undesirable and out-of-syllabus references to sexuality and sexual relations and behaviour", students alleged.
Summary:
Rohit Sharma, who will lead in the T20I series against Windies, said that MS Dhoni's experience in the middle will be missed.
Summary:
Following MS Dhoni's exclusion from India's T20I squad, ex-India pacer Ashish Nehra said, "MS Dhoni is MS Dhoni.
Summary:
Further, Australia have now lost 10 of 11 ODIs they have played in 2018.
Summary:
Bayern Munich's Brazilian defender Rafinha has apologised for dressing up as an Arab and holding what appeared to be a box of mock explosives at the team's Halloween party.
Summary:
Mumbai-born US-based software engineer Saurabh Netravalkar, who was India's highest wicket-taker in 2010 Under-19 World Cup, will lead the US national cricket team in the upcoming ICC World Cricket League Division Three.
Summary:
The worker had been complaining about Kumar for the last six months and also reportedly collected evidence against him in her mobile phone.
Summary:
About 75 lakh new taxpayers have been added to the country's list of Income Tax payers in the fiscal year 2018-19 so far, a senior official has said.
Summary:
"The information includes sharing details about barbed wire fencing, footage of border roads, and contact numbers of BSF unit officers, among others," said police.
Summary:
He also said that a Sanskrit scholar is better than an MBBS graduate.
Summary:
Heavy rains and strong winds have killed 17 people and uprooted nearly 1.4 crore trees across Italy, with the country's Civil Protection Agency calling the situation "apocalyptic".
Summary:
This comes after luxury shoe brand Christian Louboutin alleged Darveys of trademark infringement saying that the site was selling counterfeit products in its name.
Summary:
The official Twitter handle of Mumbai Police has used a reference from actor Shah Rukh Khan's movie 'Jab Harry Met Sejal' to promote the use of helmet and encourage road safety.
Summary:
Deepika Padukone's bridal mangalsutra, which contains a solitaire, costs â¹20 lakh, as per reports.
Summary:
Actress Anushka Sharma has featured on the cover of Elle India magazine for its November issue.
Summary:
"It's with great honour and pride, I accept the Distinguished Fellow Award...I'm grateful to India Global for recognising my work.
Summary:
The ceremony included Ranveer's family and close friends.
Deepika Padukone, who'll get married to Ranveer on November 14 and 15, had also organised a puja at her Bengaluru residence on Friday ahead of their wedding.
Summary:
The world's largest neuromorphic supercomputer SpiNNaker, which was designed and built to work like a human brain, has been switched on for the first time.
Summary:
Summary:
Congress leader Shashi Tharoor on Saturday took a jibe at Prime Minister Narendra Modi calling him a "hero on a white stallion (horse) with an upraised sword in his hand".
Summary:
SpaceX has confirmed that the Tesla Roadster car which was launched towards Mars in February has travelled beyond its orbit.
Summary:
NASA's Hubble Space Telescope has captured a picture in space showing a cluster of galaxies resembling a 'smiling face'.
Summary:
Union Minister Maneka Gandhi on Sunday tweeted she was "saddened" by the way in which tigress Avni was "brutally murdered".
Summary:
Two 22-tonne British-era cannons have been found during a tree plantation drive at the Raj Bhavan in Maharashtra after which Governor Vidyasagar Rao ordered their restoration.
Summary:
The reflective tapes ensure long-distance visibility, especially helpful during fog in the winters.
Summary:
Union Minister Uma Bharti on Sunday said talk of constructing a mosque on the periphery of Ram Temple in Ayodhya could make Hindus "intolerant".
Summary:
A highway pile-up involving at least 31 vehicles killed 15 people and injured 44 others in northwest China's Gansu province.
Summary:
Shah Rukh Khan, on being asked to describe Salman Khan in one word during an 'Ask SRK' session, replied, "Bhai se badhkar kya ho sakta hai." "For someone like me who lost his parents...early in life...Best way to describe Salman is Bhai," he added.
Summary:
The man sought an FIR against Raveena Tandon and a father-son duo who own the hotel.
Summary:
Andhra Pradesh Finance Minister Yanamala Ramakrishnudu on Sunday said, "Who can be a bigger anaconda than (PM) Narendra Modi?
Summary:
The Congress on Saturday released its first list of 155 candidates for the Madhya Pradesh Assembly elections, in which it included 55 new names.
Summary:
Khaira was removed from the post of Leader of Opposition in July.
Summary:
The deer, usually given Neem leaves and grass, were fed Subabul leaves after their caretakers noticed them nibbling at it.
Summary:
A man in Delhi's Ghazipur area was arrested by the police reportedly after his children were caught bursting firecrackers.
Summary:
Earlier this year, Ramdev said, "I always keep smiling...You do not need a family to be happy."
Summary:
Two teachers employed at a government-run school in Punjab have been transferred as they allegedly strip-searched girl students to check for sanitary napkins after a discarded one was found in the school toilet.
Summary:
A minor girl was allegedly gangraped in a private hospital in Uttar Pradesh by five men including a hospital staffer when she was admitted in Intensive Care Unit (ICU).
Summary:
A BJP worker in Rajasthan named Samrath Kumawat was killed allegedly by bike-borne men on Saturday, who first shot at him and then slit his throat with a sword, the police said.
Summary:
In 2012, two women accused him of grabbing their buttocks.
Summary:
An Indonesian rescue diver died on Friday while searching for victims of the Lion Air aircraft that crashed with 189 people on board.
Summary:
Indonesia's Lion Air flight that crashed on Monday with 189 on board nosedived into the sea at around 965 kmph, according to experts who analysed data from flight-tracking company FlightRadar24.
Summary:
Officials said that a 50-foot-wall at the warehouse collapsed as a storm moved through the area.
Summary:
Johnson & Johnson has launched a reimbursement programme for Indian patients who have been affected by its ASR hip implants.
Summary:
Shah Rukh Khan has revealed that he feels like "a loser over everything", adding, "I always feel I'm not good enough...I feel I work harder when I think I am not good enough." He added that overconfidence is worse than feeling like a loser.
Summary:
Karisma Kapoor, while talking about #MeToo movement, said, "Proven offenders should be punished for the crimes they have committed and efforts should be taken to make the workplace a better space." She added, "I'm shocked after reading the stories that many women are sharing every day.
Summary:
Summary:
Riddhima Kapoor Sahni, while talking about her brother and actor Ranbir Kapoor's relationship with actress Alia Bhatt, said, "I am happy if my brother is happy, and I'm a very happy sister." Earlier, Ranbir's father Rishi Kapoor had said, "Neetu [Kapoor] likes her [Alia].
Summary:
While Madhuri wore a golden saree by Tarun Tahiliani, Juhi was seen in a sharara.
Summary:
"Let us not think that Punjab (situation) is over.
Summary:
The baby was rescued by traffic policemen on Thursday and admitted to Safdarjung Hospital.
The accused, Sajan Kumar, was traced after the baby's mother approached the hospital.
Summary:
Speaking at the Akhil Bhartiya Sant Samiti in Delhi, Vishva Hindu Parishad (VHP) leader Sadhvi Prachi on Saturday said the foundation stone of Ram Mandir in Ayodhya should be laid on December 6.
Summary:
Summary:
Oil and Natural Gas Corporation (ONGC) on Saturday posted a 61% jump in second-quarter profit at â¹8,265 crore.
Summary:
After bhajan singer Anup Jalota refused he and Jasleen Matharu were a couple, Jasleen said, "We went on a date...I kissed him...What kind of a guru-shishya (teacher-student) relationship is this?" Jalota, who was evicted from Bigg Boss 12, claimed the show scripted his affair with Jasleen.
Summary:
A Delhi court on Saturday dismissed the bail application of Manoj Prasad, an alleged Dubai-based middleman arrested in connection with the bribery case involving CBI Special Director Rakesh Asthana.
Summary:
Ambati Rayudu has retired from first-class cricket to focus on 50-over and T20 cricket.
Summary:
Ex-Arsenal forward Nicklas Bendtner has been sentenced to 50 days in jail for assaulting a taxi driver in September in his native Denmark.
Summary:
"Kohli has got the passion, hunger, fitness, desire, intensity and he loves playing...Unless he gets seriously injured, he'll break all the batting records," he added.
Summary:
Former Indian cricketer Virender Sehwag on Saturday ended his association with Indian Premier League side Kings XI Punjab after mentoring them for three seasons from 2016 to 2018.
Summary:
Indian tennis player Sania Mirza took to social media to share a picture of her newborn son watching his father Shoaib Malik play cricket for Pakistan on TV.
Summary:
"Some people say that this man has four criminal cases on him.
All I want is a person who can achieve victory," Nath was heard saying in the video.
Summary:
Kerala BJP unit chief PS Sreedharan Pillai has received a death threat through a letter, the party said on Saturday.
I'll come to Kerala, join BJP's Rath Yatra and give a news similar to Rajiv Gandhi's death," the letter reportedly read.
Summary:
Summary:
Addressing BJP workers on Saturday, Prime Minister Narendra Modi said, "Kuch neta toh jhooth ki machine ki tarah hain.
Summary:
RJD Chief Lalu Prasad Yadav's 29-year-old son Tej Pratap Yadav said he told his parents that he didn't wish to marry but nobody listened to him.
Tej has filed for divorce from wife Aishwarya Rai six months after their wedding.
Summary:
Amid the row over deferment of Ram Janmabhoomi-Babri Masjid land dispute case by the Supreme Court, the Yogi Adityanath-led Uttar Pradesh government is planning to construct a 495-foot Lord Ram statue in Ayodhya.
Summary:
After the Kashmiri student studying at Sharda University reportedly joined the Islamic State Jammu Kashmir, his parents appealed to the militant group, "Have mercy on us and let him return." "You're the only hope of 12 family members," the boy's father appealed to him.
Summary:
Palvinder and Pritpal Binning, an Indian-origin couple in their mid-50s, was arrested for allegedly keeping a Polish builder as a slave in their garden shed for four years in the UK.
Summary:
Quds Force is your enemy...You start this war, but we'll finish it," he captioned the image.
Summary:
Over 50 pilots have reportedly resigned in the last two months, with most of them serving a notice period of just 48 hours.
Summary:
Apple is planning to release 5G iPhones in 2020, according to a report.
Summary:
Over 90% new PCs purchased by Microsoft from India have pirated software, Microsoft said.
The company tested them to find that 83% of the PCs acquired from nine Asian countries had pirated software.
Summary:
Former Haryana Chief Minister and Indian National Lok Dal (INLD) President Om Prakash Chautala has expelled his grandsons Hisar MP Dushyant Chautala and Digvijay Chautala from the party.
Summary:
Talking about parenting at a recent event, Amazon Founder and CEO Jeff Bezos said that his mom was protective in a 'good way' as she let her kids get into trouble and hurt themselves.
Summary:
Tesla CEO Elon Musk on Saturday tweeted that the company is planning to establish a partial presence in India, Africa and South America by the end of next year.
Summary:
Summary:
Pari Singh, a 22-year-old year girl from Jharkhand, headed the Australian High Commission for a day.
Summary:
Pictures shared by the school on its Facebook page showed the teachers dressed up as a wall with the phrase "Make America Great Again" written on it.
Summary:
Activists of human rights organisation Amnesty International on Friday renamed the street outside Saudi Arabia's embassy in London after slain journalist Jamal Khashoggi.
Summary:
They were divested of their responsibilities in June after being arrested by the Pune Police in the alleged over â¹2,000 crore DSK Group fraud case.
Summary:
India's Oil Minister Dharmendra Pradhan on Saturday announced that India and seven other nations have been granted a temporary waiver from US sanctions against buyers of Iranian crude oil.
Summary:
It claimed Dholakia would deposit â¹6 lakh into the accounts of the interested car buyers on making a payment of â¹8,500.
Summary:
Summary:
Responding to a reporter's question on what he would do for Priyanka Chopra and Deepika Padukone's weddings, Shah Rukh Khan said, "Begani shaadi me abdullah deewana." "They're getting married, so they'll have fun, they'll have kids...what will I do?" he said.
Summary:
Tahir took the catch and pointed towards his name on the jersey to the crowd.
Summary:
Sidak's figures of 17.5-7-31-10 helped Puducherry bowl out Manipur for just 71 runs in 39.5 overs.
Summary:
Google's controversial project, code-named 'Dragonfly', to make a customised search engine for China to meet the country's norms was an "experiment", CEO Sundar Pichai has said.
Summary:
"It is absurd that Tesla is alive.
Absurd," Musk further said.
Summary:
We want to internationalise the institution," Director Ramgopal Rao said on bringing the fee for foreigners at par with Indian students.
Summary:
A man suffered severe burns on face and hands after an explosion took place in an e-toilet of Navi Mumbai's civic body on Friday.
Summary:
Delhi's Signature Bridge, which is set to open over the Yamuna river on Sunday, will have a 154-metre-high glass viewing box and selfie spots for people.
Summary:
The hardline Tehreek-e-Labbaik (TLP) group in Pakistan has called off the protests over the acquittal of Asia Bibi in a blasphemy case after the government agreed to bar her from leaving the country.
Summary:
Iran's Supreme Leader Ayatollah Ali Khamenei has said that US President Donald Trump has "disgraced remnants of America's prestige" by renewing sanctions against the country.
Summary:
The Nigerian Army tweeted a video of US President Donald Trump in which he says soldiers should respond with force to migrants throwing stones, to justify shooting Shia protesters.
Summary:
Airtel Africa, the holding company for Airtel's operations in 14 African countries, has announced the appointment of new board of directors after raising $1.25 billion from six global investors.
Summary:
Oil Minister Dharmendra Pradhan has said India will benefit from the waiver the US has granted from Iran sanctions.
Summary:
Talking about sexual harassment at workplace, a Google employee has said, "The first thing that HR did was silence me." The employee, who participated in the walkout to protest Google's handling of sexual harassment cases, said the company forced her to continue working with the alleged harasser.
Summary:
India's first indigenous microprocessor 'Shakti', developed by IIT-Madras researchers, will not be outdated soon as it's one of the few âÂÂRISC V Microprocessorsâ in the world, the lead researcher said on Friday.
Summary:
Talking about Tesla's plans for upcoming products, the company's CEO Elon Musk has said that Tesla would never make a scooter as "It lacks dignity".
Summary:
TikTokâÂÂs installs grew around 31% from August to reach approximately 3.81 million on the App Store and Google Play combined in September.
Summary:
A team of Argentinian and Spanish palaeontologists has discovered 110-million-years old remains of a new species of dinosaurs in Argentina.
Summary:
A 46-year-old California-based Indian-American was arrested and charged with 20 counts of H-1B visa fraud and mail fraud in total, in connection with a scheme to maintain a pool of foreign workers for his consulting companies' clients.
Summary:
The teacher, who was reportedly inebriated, was thrashed by locals and handed over to the police.
Summary:
A 55-year-old woman named K Sumathi raised an alarm when she saw a robber trying to open an ATM machine using a screwdriver at 2:30 am in Chennai on Friday.
Summary:
Saif-ul-Mulook, the lawyer of Christian woman Asia Bibi who was acquitted in a blasphemy case, has left the country citing threat to his life.
Summary:
North Korea has warned it could resume its nuclear weapons programme if the US does not lift the sanctions against it.
Lifting the sanctions are a reciprocal measure to North Korea's pledge to denuclearise, it added.
Summary:
RBI Deputy Governor Viral Acharya recently said undermining central bank independence could be "potentially catastrophic".
Summary:
TVS Motor Company has recently launched a special edition TVS Jupiter Grande.
Summary:
Madhya Pradesh Chief Minister and BJP leader Shivraj Singh Chouhan's brother-in-law Sanjay Singh joined opposition party Congress on Saturday.
Summary:
The then Himachal Pradesh captain Rajiv Nayyar batted for 1,015 minutes (16 hours and 55 minutes) against J&K in a Ranji match, which ended on November 3, 1999, to record the longest individual innings in first-class cricket.
Summary:
Directed by Shankar, the science fiction film marks Akshay's debut in the Tamil film industry.
Summary:
Summary:
"If he stays fit for [10 more years] then he will break all the records," Akhtar added.
Summary:
Hackers gained access to private messages of nearly 120 million Facebook accounts and published messages from 81,000 accounts for generating money, a BBC report said.
"The hackers offered to sell access for 10 cents per account.
Summary:
The march was led by Harsimrat and her husband and SAD President Sukhbir Singh Badal.
Summary:
Angel Gupta, a 26-year-old model, who on Thursday was arrested with her 38-year-old partner for the murder of his wife in Delhi's Bawana, had hired two killers and paid them â¹2.5 lakh.
Summary:
RJD MLA Tej Pratap Yadav, son of RJD chief Lalu Prasad, on Saturday confirmed he had filed for divorce from his wife Aishwarya Rai after six months of marriage.
Summary:
An 18-year-old youth in Uttar Pradesh's Jalaun was detained for allegedly making threat calls to blow up US' Miami Airport.
Summary:
In the picture, Bilal can be seen wearing a black outfit with some weapons strapped to his body and is posing with an Islamic State flag.
Summary:
The body of a 33-year-old Australian tourist named Heath Allan was found hanging from a tree in Bodh Gaya, a Buddhist pilgrim destination in Bihar.
Summary:
Turkish President Recep Tayyip ErdoÃÂan has said the order to kill journalist Jamal Khashoggi came from the "highest levels" of the Saudi government.
Summary:
Capital First Founder and Chairman Vaidyanathan Vembu gifted 4.29 lakh shares worth â¹20 crore to two drivers, three house-helpers, 10 relatives and 26 former and present colleagues.
Summary:
Talking about his '2.0' co-actor Akshay Kumar, Rajinikanth said, "Hats off to Akshay for doing this character.
Summary:
Anupam had revealed he hadn't told the institute's governing body about his resignation.
Summary:
Juhi Chawla has shared a video of herself on social media, urging people to celebrate a plastic-free Diwali and has also shared various ideas for gift packaging.
Summary:
Shah Rukh Khan and Salman Khan will star together in Sanjay Leela Bhansali's film, as per reports.
Summary:
Alizeh, who is Salman's sister Alvira Agnihotri and Atul Agnihotri's daughter, is reportedly attending dance and acting classes.
"Salman was spotted at Alizeh's dance classes.
Summary:
Amrita Singh, while talking about her daughter Sara Ali Khan, revealed, "She would always do those pretty things in front of the mirror.
We knew that she would definitely become an actress." Amrita added that Sara is a born actor.
Summary:
Kajol and her husband Ajay Devgn will appear together on the sixth season of talk show 'Koffee with Karan' and their episode will be shot after Diwali, as per reports.
Summary:
Congress leader Mallikarjun Kharge has moved the Supreme Court in support of CBI Director Alok Verma, around ten days after Verma and CBI Special Director Rakesh Asthana were sent on leave.
Summary:
A day after Congress denied Dr Renu Jogi a party ticket, she joined her husband Ajit Jogi's Janta Congress Chhattisgarh and filed her nomination for the Kota Assembly constituency.
Summary:
Summary:
Summary:
Summary:
This festive season, Bajaj Electricals takes a stand for those who spend most of the time in the kitchen, with their campaign #GiftAFestival.
Summary:
India conceded an ODI against Pakistan on November 3, 1978 in protest against short-pitched bowling tactics of Pakistan.
Summary:
Amal Hussain, a seven-year-old girl whose picture brought attention to the famine in war-torn Yemen has died from acute malnutrition in a refugee camp, her family has stated.
Summary:
Former Indian batsman Virender Sehwag smashed his first Test ton on his Test debut batting at number six against South Africa at Bloemfontein on November 3, 2001.
Summary:
Summary:
Siddhesh Lad wore an anti-pollution mask to combat the toxic air while batting during his team Mumbai's Ranji match against Railways at Delhi's Karnail Singh Stadium.
Summary:
Summary:
She will now be re-marrying her ex-husband as her parents had got the couple an ex-parte divorce, the DCW said.
Summary:
The "man-eater" tigress named Avni, allegedly responsible for the deaths of at least 14 people in Maharashtra's Yavatmal district over two years, has been killed.
Summary:
A man in Kerala, who was presumed dead by his family, returned to his home 15 days after his family conducted his funeral, police said on Friday.
Summary:
A gunman opened fire in a yoga studio in US on Friday, shooting six people and killing two of them before members fought back and the attacker killed himself, police officials said.
Summary:
Donald Trump's former lawyer Michael Cohen has claimed that the US President used racist language before he was elected to the White House.
Summary:
In a telephonic call on Friday, World Bank President Jim Yong Kim congratulated Prime Minister Narendra Modi for India's rise in the Ease of Doing Business rankings.
Summary:
Elon Musk has said that Tesla "probably would not" accept investment from Saudi Arabia's government after the murder of journalist Jamal Khashoggi inside the Saudi consulate in Turkey.
Summary:
Sonali Bendre took to Instagram on Friday and wrote, "Time to announce the next book!
Was panicking a bit, but now all is well again," she further wrote.
Summary:
Priyanka Chopra and Nick Jonas will have two different types of weddings out of which one will be a traditional Hindu ceremony and another will be a Christian wedding ceremony to honour each other's faith, suggested reports.
Summary:
Actor Todd LaTourrette, who recently appeared in American television series 'Better Call Saul', has admitted that he cut off his own arm nearly 20 years ago and lied about being a war veteran in order to land more acting jobs.
Summary:
The restaurant was open for general public till 1 AM, following which SRK's party was on till around 3 AM, reports suggested.
Summary:
Amitabh Bachchan, while talking about his 'Thugs of Hindostan' co-actor Aamir Khan, said, "He is this brilliant artist and it is difficult to battle him in any sphere.
Summary:
Comedians Bharti Singh and Krushna Abhishek will be joining the second season of 'The Kapil Sharma Show', as per reports.
It's going to be a treat for the audience," said Bharti.
Summary:
Shah Rukh Khan has revealed when he came to know that Deepika Padukone is getting married, he wanted to hug her, adding, "I called Deepika...and said be as happy as I've been in my married life." "I get really emotional when they [co-actors] get married...Deepika...made [her] acting debut with me.
Summary:
Shillong is set to host the third edition of the India International Cherry Blossom Festival between November 14 and 17.
Summary:
Summary:
Guddu, who was considered close to former MP CM Digvijaya Singh, was reportedly feeling sidelined in the Congress.
Summary:
Sixty-year-old Ranganathan was earlier the senior-most judge of the Hyderabad High Court.
Summary:
Section 144 has been imposed in Sannidhanam, Nilakkal, Pamba and Elavunkal from the midnight of November 3 to the midnight of November 6, ahead of Sabarimala Temple reopening for a special prayer on Monday.
Summary:
The Delhi High Court on Friday asked the Enforcement Directorate why it is not arresting former Himachal Pradesh Chief Minister Virbhadra Singh in connection with a multi-crore money laundering case.
Summary:
RJD chief Lalu Prasad Yadav's 29-year-old son Tej Pratap has filed for divorce from wife Aishwarya Rai nearly six months after their marriage.
Summary:
Over 72,000 MSMEs have been sanctioned loans worth over â¹23,500 crore through the portal till date.
Summary:
A drunk airline baggage handler fell asleep in the cargo hold of an American Airlines plane and ended up flying from the USâ Kansas City to Chicago.
Summary:
Shah Rukh plays a dwarf called Bauua in the film, which also stars Katrina Kaif and Anushka Sharma.
Summary:
Team India opener Rohit Sharma smashed a joint-record 16 sixes during his 209-run knock against Australia in the Bengaluru ODI on November 2, 2013.
Summary:
In the wake of former captain MS Dhoni's exclusion from the T20I squad, cricketing legend Sachin Tendulkar said he has no idea what the mindset of selectors is.
Summary:
Misra added that he had to close the investigation when he was investigating a lead about a top India player being in touch with a bookie.
Summary:
Jaidev Thackeray, the son of late Shiv Sena founder Bal Thackeray has withdrawn the suit challenging the will of his father.
Summary:
A 68-year-old priest in Telangana, who was allegedly beaten up by an imam following an argument between the two over turning off a temple loudspeaker, succumbed to his injuries on Thursday.
Summary:
Union Environment Minister Harsh Vardhan blamed Delhi government and its neighbouring states for failing in their efforts to check air pollution.
Summary:
The injured driver was left unattended as locals and other drivers stole onions scattered on the road.
Summary:
An NIA Special Court has issued non-bailable warrants against 26/11 Mumbai attack mastermind Hafiz Saeed and Hizbul Mujahideen chief Syed Salahuddin over their involvement in terror funding activities in Jammu and Kashmir.
Summary:
Hundreds of police trainees in Bihar attacked their seniors, including the commandant, and vandalised police vehicles after the death of a lady constable due to dengue.
Summary:
Justices MR Shah, Hemant Gupta, Ajay Rastogi and R Subhash Reddy were sworn-in as the Supreme Court judges on Friday, after the Centre cleared their names within 48 hours of the Supreme Court Collegium recommendation.
Summary:
The US has asked India to cut its oil imports from Iran ahead of its sanctions.
Summary:
China lays claims over 90% of the South China Sea, being consequentially involved in a territorial dispute with other southeast Asian countries.
Summary:
Bodies of 13 passengers were recovered after a bus fell from a bridge into China's Yangtze river after a fight broke out between the driver and a woman.
Summary:
Jamiat Ulama-e-Islam (JUI-S) chief Maulana Sami-ul-Haq was killed by unknown assailants in Pakistan's Rawalpindi on Friday.
Summary:
US President Donald Trump referred to popular series 'Game of Thrones' to announce new sanctions against Iran that will come into effect on November 5.
Summary:
The rupee rebounded after crude oil prices fell for the fifth straight day.
Summary:
Bumble, the dating and social media app which had been backed by actress Priyanka Chopra earlier last month, has launched its operations in India.
Summary:
Reacting to Apple's new 'Woozy Face' emoji, actor Dwayne Johnson tweeted, "It means two things...IâÂÂm f*cking awesome...Excuse me, but I've gas." "This the face you make in 3rd grade when your crush blesses your sneeze," another user tweeted on the emoji.
Summary:
The US government charged a Chinese and Taiwan company along with three Taiwan individuals for allegedly trying to steal trade secrets from Micron Technology, a US-based semiconductor company.
Summary:
Apple's biggest competitors don't break out unit sales in their quarterly earnings reports, he added.
Summary:
Australian scientists have designed an undersea robot, named LarvalBot, that can give birth to millions of baby corals.
Summary:
A new study has discovered that dinosaurs, not birds, were the first to produce coloured eggs.
Summary:
Pakistan blocked phone services in major cities on Friday amid Islamist protests against the acquittal of Christian woman Asia Bibi in a blasphemy case.
Summary:
After the launch of OnePlus 6T, the company celebrated with a OnePlus 6T mega unboxing event, setting a new Guinness World record for 'Most people unboxing simultaneously'.
Summary:
A cab driver allegedly followed singer Vasundhara Das for over 4 km and blocked her way twice to verbally abuse her in Bengaluru.
Summary:
After US-based journalist Pallavi Gogoi alleged MJ Akbar "ripped her clothes and raped her" 23 years ago, the former Asian Age editor's wife Mallika Akbar has said Gogoi was "often at our home, happily drinking and dining with us." "Pallavi didn't carry the look of a sexual assault victim.
Summary:
After US-based journalist Pallavi Gogoi accused former editor MJ Akbar of raping her 23 years ago, Akbar's wife Mallika has said she learned about their relationship through Pallavi's late night calls and public display of affection.
Summary:
Jammu and Kashmir's 30-year-old pacer Mohammed Mudhasir has become the first bowler in professional cricket history to dismiss four batsmen LBW in four successive deliveries.
Summary:
He added he felt guilty after his teammates were "dragged in" to back up his account.
Summary:
Calling Rafale deal a 'PM Narendra Modi-Anil Ambani partnership', Congress President Rahul Gandhi said, "If an inquiry starts on this, Mr Modi isn't going to survive it.
Summary:
The Supreme Court on Friday dismissed CBI's appeal against the Delhi High Court's 2005 verdict discharging the accused in the Bofors case.
Summary:
The body of journalist Jamal Khashoggi was dissolved after he was murdered and dismembered in the Saudi consulate in Istanbul last month, an advisor to Turkish President Recep ErdoÃÂan has said.
Summary:
Saudi recently admitted that Khashoggi's murder inside its consulate in Istanbul was premeditated.
Summary:
Economic Affairs Secretary Subhash Chandra Garg took a dig at RBI Deputy Governor Viral Acharya, who said governments that don't respect central bank independence will "incur the wrath of financial markets".
Summary:
Indian equity benchmarks posted their best weekly rally in two years with Sensex rising 4.98% and the Nifty 50 Index surging 5.2% for the week.
Summary:
Sonakshi Sinha, who will be seen in the upcoming film 'Kalank', has revealed, "Everyone in the film is playing a role you haven't seen them in before so it will be a treat for audiences." Sonakshi added she has a "challenging" role and the story is "incredible".
Summary:
Priyanka Chopra and Nick Jonas will perform at their sangeet ceremony which will be held on November 30, as per reports.
It's tentatively a 45-minute performance where he'll be singing some love songs for Priyanka," stated reports.
Summary:
Chitrangda Singh, who has a son named Zorawar from her ex-husband Jyoti Randhawa, has said it is difficult to bring up a child as a single parent.
Chitrangda further said that Zorawar is living a very balanced life with both his parents.
Summary:
A Google employee and an organiser of the walkout to protest the company's handling of sexual harassment cases has said, " I hope I still have a career in Silicon Valley after this.â âÂÂI experienced sexual harassment at Google and I didnâÂÂt feel safe talking about it,â she added.
Summary:
The letter further called for equality under the law for transgender people.
Summary:
Talking about Apple's growth in India, the company's CEO Tim Cook has said, "I am a big believer in India.
Summary:
Nabin Swain said, "There has been no improvement in my condition since Shah's visit.
Summary:
She claimed she has faced criticism from political leaders after Ajit left Congress.
Summary:
US-based ad analytics startup EDO, co-founded by Fight Club star Edward Norton, has raised $12 million in a series A funding round led by venture capital firm Breyer Capital.
Summary:
UK scientists have used satellite technology to identify, count and track whales from space.
Summary:
A nine-year-old girl was allegedly gangraped by three robbers in Ganjam district, Odisha on Wednesday night.
They looted gold ornaments and cash.
Summary:
Swapravo Bhakta was found by the police after his mother informed them upon realising his room was locked.
Summary:
The Hyderabad Traffic Police on Thursday provided a green channel to an ambulance for a heart transplant, following which the vehicle managed to traverse a distance of around 8 kilometres in seven minutes.
Summary:
A Delhi court on Friday granted bail to former BSP MP Rakesh Pandey's son Ashish Pandey, who was arrested for brandishing a gun at a five-star hotel's guests in the city.
Summary:
Brazil's President-elect Jair Bolsonaro has said that he plans to move the country's embassy in Israel from Tel Aviv to Jerusalem once he assumes office.
Summary:
This consensual relationship ended, perhaps not on best note," Akbar added.
Summary:
Angelina Jolie, who filed for divorce from Brad Pitt in September 2016, is reportedly dating Justin Theroux who announced his split earlier this year with Jennifer Aniston after two and a half years of their marriage.
Summary:
Summary:
Former Australian all-rounder Andrew Symonds, who had accused Harbhajan Singh of racially abusing him in the 2008 Sydney Test, has claimed that the Indian spinner had called him a monkey before in India as well.
Summary:
Stating that Dassault Aviation invested â¹284 crore in Anil Ambani's company, Congress President Rahul Gandhi questioned, "Why did they invest...in a loss-making company?" "The Dassault CEO had said the reason HAL wasn't given the contract was because Anil Ambani had land.
Summary:
Within five months of joining Infibeam Avenues as President, Jason Kothari has stepped down, but would continue to serve as a senior advisor to the Ahmedabad-based e-commerce company.
Summary:
Days after a teacher was killed on her way to school in Delhi, police have arrested her husband Manjeet and his model girlfriend Angel Gupta for allegedly getting her killed for opposing their extramarital relationship.
Summary:
The Tamil Nadu government on Friday fixed 6 am to 7 am and 7 pm to 8 pm as slots for bursting firecrackers on Diwali, which falls on November 6 in the state.
Summary:
After Naxalites said they didn't intend to kill Doordarshan cameraman Achyuta Nanda Sahu in the recent attack, Chhattisgarh Police has refuted their claims saying, "Why was the camera looted?" SP Abhishek Pallav said the camera likely had evidence of the "targeted media ambush".
Summary:
Foreign portfolio investors have sold Indian equity and debt worth over â¹1 lakh crore in the first 10 months of this year.
Summary:
After Google employees staged mass walkouts to protest the company's handling of harassment cases, CEO Sundar Pichai said, "We don't run the company by referendum." "There are many good things about giving employees a lot of voice, out of that we've done well," he added.
Summary:
Mastercard told the US government in June that Prime Minister Narendra Modi was using nationalism to promote the use of payments network RuPay, according to Reuters.
Summary:
Summary:
Sharing Deepika Padukone's pictures from a puja at her home ahead of her wedding, her stylist Shaleena Nathani wrote, "Love you to the moon and back.
Summary:
Denying the reports of the sequel of his 2008 film 'Singh is Kinng', producer Vipul Amrutlal Shah said, "There's no discussion of 'Singh is Kinng' sequel...haven't met Anees Bhai [Anees Bazmee] or anyone for the sequel." Writer of the 2008 film Suresh Nair wrote on social media, "All those stories...are simply rumours.
Summary:
Abhay Deol, while talking about #MeToo movement, said it's important that people's voices are heard, adding, "There's a lot venting going on.
Summary:
Director Abhishek Kapoor revealed when his upcoming film 'Kedarnath' was involved in the controversy with the earlier producers, he had called up Rohit Shetty and told him to consider Sara Ali Khan for his upcoming film 'Simmba'.
Summary:
Summary:
Chhattisgarh Congress workers raised slogans against party leader PL Punia and allegedly vandalised a Bilaspur district office after the candidate list was announced for the assembly polls.
Summary:
Summary:
Former UP CM Akhilesh Yadav on Thursday said people should abide by Supreme Court's order with respect to the construction of a Ram Mandir in Ayodhya.
Summary:
Amazon Founder and world's richest person Jeff Bezos shared his childhood picture on Twitter and said, "Yep, thatâÂÂs me.
Summary:
They informed the Delhi Police Control Room and rushed the baby to the Safdarjung Hospital, where she is said to be doing fine.
Summary:
Pakistan PM Imran Khan has arrived in China on his first official visit to the country where he'll seek financial assistance to avoid an International Monetary Fund (IMF) bailout, reports said.
Summary:
A Japan Airlines pilot has been arrested at the Heathrow Airport in London after he was found to be nearly ten times over the legal alcohol limit shortly before take-off.
Summary:
The former SEBI Chairman's resignation comes a day after IL&FS' new board submitted its tentative revival plan to the National Company Law Tribunal (NCLT).
Summary:
Ahead of Diwali, Longines presents the gift of time for your loved one, the La Grande Classique de Longines's new timepiece in blue.
Summary:
He added they dragged people out, shot and threw them in Gang Nahar, and repeated the process in Hindon.
Summary:
The boy, who was bursting crackers with his friends ahead of Diwali, picked up the firecracker, which had not exploded, thinking it hadn't been lit.
Summary:
"We will not intentionally kill reporters...
Naxals further said that reporters should not travel with police personnel.
Summary:
While hearing a 1997 gang-rape case, the Supreme Court ruled that even sex workers have a right to refuse their services and seek redressal when forced.
Summary:
The baby was born on September 9, the birthday of KFC's Founder.
Summary:
Pallavi claimed Akbar first assaulted her at his Delhi office and once scratched her face when she resisted a kiss in Mumbai.
Summary:
India opener Rohit Sharma, who on Thursday became the second Indian after MS Dhoni to slam 200 sixes in ODI cricket, has hit 85 sixes in 40 ODIs in the calendar years 2017 and 2018.
Summary:
The BCCI has reportedly requested Cricket Australia to exclude beef from the menu for Team India's upcoming tour of Australia.
Summary:
In 2017, Norwegian capital Oslo banned all diesel cars from its streets for a day, while Mexico banned 40% of vehicles on the road in 2016.
Summary:
The Bangladesh ATC had instructed a Guwahati-Kolkata flight to descend to 35,000 feet after which it came at the same level as the Chennai-Guwahati flight.
Summary:
India has delayed implementation of higher tariffs on some goods imported from the US to December 17 despite the US removing at least 50 Indian products from the list of items eligible for duty-free treatment.
Summary:
India's largest IT services firm Tata Consultancy Services (TCS) on Thursday announced that it has acquired London-based digital design studio W12 Studios.
Summary:
The billionaire philanthropist said that the hat was a gift from a social activist from Thailand named Mechai Viravaidya.
Summary:
I wish all that and more...as you take this next big step," she further wrote.
Summary:
On the occasion of his 53rd birthday on Friday, Shah Rukh Khan shared pictures and captioned it, "Fed cake to wife...Met my family of fans outside Mannat...now playing Mono Deal with my little girl gang!" "Having a happy birthday.
Summary:
Summary:
Microsoft CEO Satya Nadella at a recent event called on technology companies to protect users' data, and said, "All of us will have...treat privacy as a human right." Talking about cyber threats, Nadella also said the companies have to use their power to protect common citizens and small businesses.
Summary:
YouTuber Logan Paul in a recent interview said he lost $5 million for posting a video showing the body of an apparent suicide victim in Japan's Aokigahara forest.
Summary:
After Union Minister Upendra Kushwaha claimed Bihar CM Nitish Kumar doesn't wish to continue as CM after 2020, JD(U) spokesperson Ajay Alok rubbished the claim, stating, "Post of CM is not like rasgulla and mutton-rice where desire is fulfilled after eating it." JD(U) leader Maheshwar Hazari added, "Nitish shall continue as CM even after 2020 (Assembly elections).
Summary:
Russian space agency Roscosmos has shared a video from a camera on Soyuz rocket showing the exact moment of its failure.
Summary:
The Directorate of Revenue Intelligence arrested five Bhutanese nationals in Delhi on Wednesday, in two separate operations, for allegedly smuggling 20 kg of gold worth over â¹6 crore.
Summary:
Former Allahabad University student leader Sumit Shukla aka Achyutanand Shukla was allegedly shot dead at a birthday party in a hostel, said the police on Thursday.
Summary:
Five people from the Bengali community were abducted and subsequently shot dead by six suspected ULFA(I) militants in the Tinsukia district of Assam on Thursday night, said the police.
Summary:
US President Donald Trump on Thursday warned that soldiers deployed to the Mexican border could shoot Central American migrants who throw stones at them while attempting to enter the country illegally.
Summary:
US State Secretary Mike Pompeo has said that journalist Jamal Khashoggi's murder inside the Saudi consulate in Istanbul violates the norms of international law.
Summary:
The US has removed at least 50 Indian products from the list of items eligible for duty-free treatment under the Generalized System of Preferences (GSP).
Summary:
Section 144 has been imposed in the district, reports added.
Summary:
Bhajan singer Anup Jalota, while speaking about his experience in 'Bigg Boss 12', said, "I...lost 4 kgs in the 'Bigg Boss' house.
Summary:
Actress Aahana Kumra has revealed she was so disillusioned by Bollywood's culture, she felt like committing suicide at one point.
"This culture is...
Aahana further said, "I'll not deny the fact that I was in bad company."
Summary:
Lopez, who has featured on the magazine's cover, can be seen in a sequin Valentino Haute Couture cape in the photo.
Summary:
During a warm-up match against England, Sri Lanka Board President's XI's 20-year-old batsman Pathum Nissanka stayed motionless for around 20 minutes after being hit on the helmet by a Jos Buttler shot.
Summary:
Rayudu, who was dropped from India squad for the ODI series against England, added that he hasn't tasted biryani for the last three months.
Summary:
Former South African cricket captain Graeme Smith announced his engagement to girlfriend Romy Lanfranchi on Wednesday.
Summary:
Kerala district Alappuzha's 96-year-old Karthiyani Amma, who topped the qualifying Class IV exam conducted by Kerala Literacy Mission Authority with 98 marks out of 100, said she didn't copy in the exam but let others copy from her.
Summary:
China has defended the proposed bus service with Pakistan through Pakistan-occupied Kashmir, saying its cooperation with Pakistan doesn't change its stand on Kashmir.
Summary:
Mumbai-based detective Rajani Pandit said she cut her foot with a knife as an excuse to escape from a murder suspect's house, where she was working undercover as a maid.
Summary:
The removal of the ban runs counter to Pakistan's commitment to FATF to fight terrorism, the US said.
Summary:
Wickremesinghe, who was sacked by Sri Lankan President Maithripala Sirisena last week, called the move illegal.
Summary:
The plane had lost contact 13 minutes after take-off.
Summary:
Nasheed, who was living in exile in the UK, was sentenced to 13 years in jail in 2015 after being convicted of terrorism.
Summary:
Forensic auditors have told the Supreme Court that Amrapali CFO Chander Wadhwa gets a monthly salary of â¹50,000 but a group company paid â¹2 crore as his income tax.
Summary:
Facebook earlier this week approved a fake political advertisement marked as "paid for by Cambridge Analytica", the British data firm involved in the social network's data scandal.
Summary:
Conservationists and official bodies protested against the plans saying the place holds historic importance, connecting the city to the monarchy.
Summary:
"We are coming together, to save the nation," Naidu said.
The idea is to defeat BJP and save Constitution and democracy, Gandhi said.
Summary:
Telangana Chief Electoral Officer Rajat Kumar has proposed to political parties that the cost of mutton biryani would be reduced from â¹170 to â¹140 and chicken biryani from â¹140 to â¹120 to reduce the election expenses.
Summary:
Mumbai-based fantasy sports startup Dream11's CEO Harsh Jain has said the click moment for the startup was when its fantasy sports format was declared legal, and not as a gambling platform.
Summary:
It comes days after reports claimed that the startup raised â¹7.4 crore funding from venture capital firm Kalaari Capital, at an estimated valuation of around $17-20 million.
Summary:
Hewlett Packard Enterprise's (HPE) Spaceborne supercomputer on International Space Station (ISS), made along with NASA, has been made available for experiments.
Summary:
Scientists on Thursday launched a $4.7-billion project to map the genetic code of all 1.5 million known species on Earth.
Summary:
Foreign Secretary Vijay Keshav Gokhale on Thursday said India will become the third largest aviation market in the world by 2020.
Summary:
The Centre on Thursday told the Delhi High Court that it has amended its Haj policy and differently-abled people can now perform the annual pilgrimage.
Summary:
Army chief General Bipin Rawat on Thursday said India will continue to maintain security in the Indo-Pacific region and will work alongside all the powers to promote peace.
Summary:
US National Security Advisor John Bolton has said that the US doesn't want its sanctions on Iran to "harm" its friends and allies.
Summary:
Windies had last defeated India in a bilateral ODI series in May 2006.
Summary:
India opener Rohit Sharma has become the fastest cricketer in ODI history to reach 200 sixes, achieving the feat with his second six in the fifth Windies ODI on Thursday.
Summary:
After Karnataka Minister RV Deshpande was caught on camera flinging sports kits at athletes from stage, Sports Minister Rajyavardhan Singh Rathore tweeted, "Absolutely unacceptable behavior!" "Mr Deshpande, please do not undermine the dignity of those athletes or your position," Rathore added.
Summary:
Mary Kom shared a video of the bout on Twitter with the caption, "Seeing is believing.
Summary:
L Chandrashekar, the BJP candidate from Ramanagara in Karnataka, on Thursday quit the party just two days before the bypolls and returned to Congress.
Summary:
Sharma is survived by his wife and three daughters.
Summary:
Uttar Pradesh-based jeweller Nagesh Dubey was shot at and jewellery and cash worth â¹1.70 crore was looted from him by two motorcycle-borne assailants in Jaunpur on Wednesday.
Summary:
Doordarshan cameraman Achyuta Nanda Sahu, who lost his life on October 30 in a Naxal attack in Chhattisgarh's Dantewada, was given guard of honour in Odisha's Balangir on Thursday.
Summary:
Paul Makonda, the Regional Commissioner of Tanzania's Dar es Salaam city, has asked the public to report the name of any person suspected of being gay.
Summary:
Saudi Arabia and the UAE pushed UN aid agency OCHA for positive coverage in return for their $930-million aid to Yemen, a leaked UN document revealed.
Summary:
Snapdeal's former Chief Product Officer (CPO) Anand Chandrasekaran has quit Facebook after joining the company two years ago.
Summary:
The European Union is planning to test an AI-based lie-detector system at certain border checkpoints to screen travellers coming into Europe.
Summary:
Summary:
Luka Sabbat, a model and a social media influencer with 1.4 million Instagram followers, is being sued for $90,000 by the firm PR Consulting on failure to promote Snap Spectacles.
Summary:
The walkout organisers said Google must end forced arbitration, and publicly report sexual harassment statistics.
Summary:
Taking a jibe at BJP leaders on the Ram Temple issue, National Conference President Farooq Abdullah on Thursday said it's not Ram or Allah that wins you the election, it's the people who vote and make you win elections.
Summary:
Taking a jibe at possible Samajwadi Party and BSP alliance for the upcoming Lok Sabha polls, Uttar Pradesh BJP chief Mahendra Nath Pandey on Thursday said that the "days of caste equations are over".
Summary:
Congress chief Rahul Gandhi, who was present at the meeting formed a three-member committee to resolve the matter.
Summary:
Haryana AAP convener Naveen Jaihind has challenged BJP ministers to read out the party's 2014 election manifesto in public for a cash award of â¹1 lakh.
Summary:
An upgrade to Tesla's self-parking feature 'Summon' would allow the cars to drive around a parking lot, find an empty spot, read parking signs and park.
Summary:
A new research has identified Russia, Canada, Australia, the US and Brazil as the five countries that hold 70% of the worldâÂÂs remaining untouched wilderness.
Summary:
"The need of the hour is to either upgrade the existing airport or construct a new airport," he added.
Summary:
National Commission for Women (NCW) Chairperson Rekha Sharma has said that the existing Sexual Harassment of Women at Workplace Act is not proper (adequate).
Summary:
The Cabinet has cleared the signing of a Memorandum of Understanding (MoU) between India and South Korea for strengthening cooperation in the field of tourism.
Summary:
She said, "I did not know he had HIV.
Summary:
The US has given countries a deadline till November 4 to cut their Iran oil imports to zero.
Summary:
The Goods and Services Tax (GST) collection in October increased by about 6.6% from the previous month to â¹1,00,710 crore.
Summary:
A video shows Karnataka's Revenue Minister RV Deshpande throwing sports kits at athletes from the stage during a felicitation ceremony on Wednesday.
Summary:
Actress Aahana Kumra has revealed filmmaker Sajid Khan asked her, "Would you have sex with a dog if I gave you â¹100 crore?" "He was trying to give me gyaan on how I need to...laugh at his sexist jokes if I wanted to be a...heroine in his films," she added.
Summary:
Former India captain Rahul Dravid on Thursday received the ICC Hall of Fame commemorative cap from former captain Sunil Gavaskar ahead of the fifth India-Windies ODI at Thiruvananthapuram's Greenfield International Stadium.
Summary:
Ahead of Diwali, Mumbai-based artist Abaasaheb Shewale has created a mosaic of Indian cricket team captain Virat Kohli using 4,484 diyas.
Summary:
Indian Institute of Technology Madras researchers have designed India's first indigenously developed microprocessor which could be used for mobile computing systems, defence and nuclear sectors.
Summary:
Summary:
Workers of Congress and JD(S) were caught on camera allegedly distributing money to people for attending former PM HD Deve Gowda's rally in Karnataka's Ramanagara.
Summary:
Eicher Motors has said Royal Enfield suffered a production loss of 25,000 units in September and October due to a strike by some workers at its plant near Chennai.
Summary:
Scientists using data from India's AstroSat, and NASA's Chandra X-ray Observatory have found a black hole in a two-star system that spins close to the maximum possible rate.
Summary:
Summary:
Odisha CM Naveen Patnaik on Wednesday said the state's health insurance scheme is much better than the Centre's Pradhan Mantri Ayushman Bharat programme.
Summary:
Inaugurated on Wednesday in Gujarat, Statue of Unity is the world's tallest statue measuring 600 feet (182m).
Summary:
American rapper Kanye West has announced that he is distancing himself from politics, claiming that he has been "used" to spread messages he doesn't believe in.nHis announcement came after he was linked to the 'Blexit' campaign that encourages black Americans to quit the Democratic Party.
Summary:
Sri Lankan President Maithripala Sirisena has lifted the suspension of the Parliament and will schedule a meeting on November 5, newly-elected PM Mahinda Rajapaksa said.
Summary:
Finance Minister Arun Jaitley on Wednesday said India could break into the top 50 in the World Bank's Ease of Doing Business rankings.
Summary:
Microsoft Co-founder Bill Gates and Berkshire Hathaway's CEO Warren Buffett dressed up as King Arthur and Merlin respectively, on Halloween.
"Happy Halloween from King Arthur and Merlin!
Summary:
Summary:
Madhya Pradesh Public Health and Family Welfare Minister Rustam Singh has been booked for violating the pre-poll Model Code of Conduct allegedly with a speech that incited enmity among communities, officials said.
Summary:
General Motors on Wednesday offered voluntary buyouts to 18,000 salaried employees in North America to cut costs in response to tariff and market pressures.
Summary:
A 35-year-old Delhi businessman was allegedly hit with an iron rod by two of his friends, stabbed and run over by his car.
Summary:
BJP MP Rakesh Sinha has hinted at introducing a private member's bill in Parliament seeking construction of Ram Mandir in Ayodhya.
Summary:
Bhaskar was getting his house and a BJP office built, for which some digging was required.
Summary:
YSRCP chief Jagan Mohan Reddy has moved the Hyderabad High Court with a plea that the investigation into the attack on him be given to an agency that is not under the Andhra Pradesh government.
Summary:
Gold worth â¹19 lakh was seized from a passenger at the Tiruchirappalli airport, said customs officials on Wednesday.
Summary:
Delhi Education Minister Manish Sisodia on Wednesday said he wants students to learn and understand Sanskrit and not "mug it up for exams".
Summary:
Reliance Retail and Jio recorded combined revenue of â¹44,615 crore, exceeding the â¹43,745 crore sales reported by petrochemicals business.
Summary:
Summary:
India's 30-year-old Meenakshi Moorthy, who died with her 29-year-old husband after falling 800 feet at America's Yosemite National Park, warned people against taking pictures on cliff edges in March on Instagram.
Summary:
Summary:
Vishnu Dattaram Zende, a 47-year-old Railways employee who was an announcer in 2008, saved hundreds after he instantly directed people to keep off Platform 1 of CST on November 26, to avoid the active terrorists.
Summary:
"I've never been part of a genre like 'Housefull' and it's...exciting to work with different genres," he added.
Summary:
Rakhi Sawant has sued actress Tanushree Dutta for damaging her reputation and has sought 25 paise from Tanushree in damages.
The notice added that Tanushree attacked Rakhi out of "sheer jealousy as she had been getting regular work since the last two decades".
Summary:
Anupam Kher, who stepped down as the Chairman of Pune's Film and Television Institute of India (FTII) on Wednesday, has revealed he hadn't told the institute's governing body about his resignation.
Summary:
Madhya Pradesh CM Shivraj Singh Chouhan has criticised Congress chief Rahul Gandhi for calling veteran Congress leader Kamal Nath by his first name.
Summary:
Edtech startup Byju's is reportedly raising $200-300 million in funding at a valuation of $3.5 billion, which will make it India's fourth most valuable startup.
Summary:
An audio clip has been released in which JeM chief Masood Azhar, the mastermind of Pathankot attack, purportedly confirms the killing of his 18-year-old nephew by Indian security forces during an encounter in Jammu and Kashmir.
Summary:
A polling booth has been set up for the first time ever in Telam village in Chhattisgarh's Naxal-affected Dantewada district.
Recently, two policemen and Doordarshan video journalist Achyuta Nanda Sahu were killed in an attack by Naxals in the district.
Summary:
A Qatar Airways flight with 103 passengers onboard hit a water truck during landing at Kolkata Airport at 01:52 am on Thursday.
The flight usually departs for Doha from Kolkata at around 3 am.
Summary:
Punjab minister Navjot Singh Sidhu and his wife Navjot Kaur Sidhu have been summoned by a one-man commission investigating the Amritsar accident where around 60 people were run over by a train during Dussehra celebrations.
Summary:
The Supreme Court on Thursday refused to give an urgent hearing on Karti Chidambaram's request to travel abroad from November 3, saying "Don't go...Stay back in India.
Summary:
India's Ministry of External Affairs has said it lodged a strong protest with Pakistan and China over their proposed bus service through Pakistan-occupied Kashmir under the "so-called China-Pakistan Economic Corridor".
Summary:
A Bihar court has issued an arrest warrant against ex-minister Manju Verma in connection with ammunition found at her house in a raid during investigation in Muzaffarpur shelter home case.
Summary:
The Maharashtra government on Wednesday declared drought in 151 of its 355 talukas, of which 112 talukas are hit by severe drought.
Summary:
RSS economic wing Swadeshi Jagran Manch's head Ashwani Mahajan has said RBI Governor Urjit Patel should work in sync with the government to support economic growth or should resign.
Summary:
Section 7 of the RBI Act empowers the government to issue directions to the central bank on matters of public interest after consultation with the Governor.
Summary:
Summary:
Hours after a â¹2,989-crore statue of Sardar Vallabhbhai Patel was inaugurated, BSP president Mayawati demanded an apology from "BJP, RSS and company" for allegedly calling statues of Dalit leaders installed by the then-BSP government "wasteful expenditure".
Summary:
Addressing Scheduled Caste and Scheduled Tribe workers of JD(U) at a conclave, Bihar Chief Minister Nitish Kumar on Wednesday said, "Nobody has the power to do away with reservation.
Summary:
The lawyers had barged into the chambers of a district judge to assault the sub-inspector after a building was sealed, the police said.
Summary:
Tamil Nadu, Karnataka, Andhra Pradesh, Telangana and Puducherry sent officials instead of ministers for a meeting called by Kerala CM Pinarayi Vijayan to discuss arrangements for Sabarimala's pilgrimage season.
Summary:
Months after Supreme Court suggested abolishing hereditary rights of servitors and said no devotee should be forced to give them offerings, a Jagannath temple priest has asked the Chief Justice of India for permission to end his life.
Summary:
A 36-year-old Jain monk was found hanging from the ceiling fan inside the premises of the Champapur Digambar Jain temple in Bihar, police said.
Summary:
Mumbai-based detective Rajani Pandit, who solved her first case at 22, says she went undercover as a maid at the house of a woman suspected of murdering her husband and son.
Summary:
Actor Ayushmann Khurrana has revealed that his onscreen kiss with actress Yami Gautam in his debut film 'Vicky Donor' caused trouble in his marriage for three years.
Summary:
A 53-year-old American woman was found alive six days after she lost control of her car, which flew 50 feet off the highway and landed on a tree.
Summary:
"The PCB is subsequently planning a revamp in its marketing department," he further said.
Summary:
The family of a 15-year-old female football player, who died after drowning in Australia, has moved Delhi High Court seeking compensation of â¹35 crore from the authorities.
Summary:
Reacting to rising pollution in Delhi, cricketer Gautam Gambhir tweeted, "Dard-e-Dil, Dard-e-Jigar Delhi mein jagaya AAP ne...pehle to yahan Oxygen tha...Oxygen bhagaya AAP ne!" Criticising CM Arvind Kejriwal-led AAP government, he further wrote, "Our generations are going up in smoke like your false promises.
Summary:
Referring to PM Narendra Modi's 'Modi jackets' gift to South Korean President Moon Jae-in, J&K former CM Omar Abdullah tweeted, "All my life I've known these jackets as Nehru jackets and now I find these ones have been labelled 'Modi Jacket'".
Summary:
Congress MP Shashi Tharoor on Wednesday sent a legal notice to Law Minister Ravi Shankar Prasad, seeking an "unconditional and written apology" for calling Tharoor an "accused in a murder case" in a Twitter post.
Summary:
Talking about Congress President Rahul Gandhi, PM Narendra Modi said, "Earlier there used to be gramophone records.
Summary:
Tata Motors has posted a loss of â¹1,049 crore for the July-September quarter due to weak Jaguar Land Rover sales.
Summary:
Karthiyaniamma Krishnapilla, a 96-year-old woman topped the qualifying Class IV exam conducted by Kerala Literacy Mission Authority with a 98% score.
Summary:
The Indian Railways ran a special "unity" train to take about 1,000 people from PM Narendra Modi's Lok Sabha constituency Varanasi in Uttar Pradesh to Gujarat's Narmada district for the unveiling of Sardar Vallabhbhai Patel's Statue of Unity.
Summary:
Rescuers have also located an object said to be over 70-foot-long that they believe is the plane's fuselage.
Summary:
Journalist Jamal Khashoggi was strangled as soon as he entered Saudi Arabia's consulate in Istanbul and his body was then cut into pieces, a Turkish prosecutor said on Wednesday.
Summary:
"That (India being a tariff king) certainly is not what we find in our data," Devarajan said.
Summary:
The flexi-fare system is applicable in Rajdhani, Shatabdi and Duronto trains.
Summary:
India, which jumped 23 places to 77th in the World Bank's Ease of Doing Business Index 2019, is among the top ten improvers for the second consecutive year.
Summary:
Playing a game was not really what a lot of the guys wanted to do," Southee said.
Summary:
Serbian tennis player Novak Djokovic will again reach the world number one rank after his Spanish rival Rafael Nadal withdrew from the Paris Masters tournament.
Summary:
Pakistani cricketer Shoaib Malik responded with "InshAllah both" after he was asked if his newborn child would become a tennis player like his mother Sania Mirza or become a cricketer like himself.
Summary:
During Facebook's earnings call on Tuesday, the social media major's CEO Mark Zuckerberg said, "Our biggest competitor by far is iMessage", referring to Apple's in-built messaging service.
Summary:
Union Minister and Rashtriya Lok Samata Party chief Upendra Kushwaha has claimed Bihar CM Nitish Kumar told him, "I've ruled for 15 years.
Summary:
Amazon confirmed the incident and said they have processed the refund to the complainant.
Summary:
Russia's space agency on Wednesday said that an investigation has found that the Soyuz rocket launch failed three weeks ago because of a technical malfunction of a sensor.
Summary:
Kovind emphasised the role of technology and internet in this regard while addressing an event of the Central Vigilance Commission.
Summary:
The police on Wednesday said they have arrested four Naxals who were allegedly involved in the recent killing of a villager in Chhattisgarh's insurgency-hit Narayanpur district.
Summary:
The UN-led negotiations to end the civil war should begin next month, he added.
Summary:
Facebook-owned messaging app WhatsApp will begin showing advertisements in the 'Status' section of the app, the company has confirmed.
Summary:
Two people were killed and two others critically injured after multiple men opened fire at Varanasi's JHV shopping mall in Uttar Pradesh allegedly over an argument regarding discount.
Summary:
New Zealand's previous international match was the Test against England at Christchurch, which took place from March 30 to April 3.
Summary:
Summary:
India has jumped 23 places to secure the 77th position out of 190 countries in the World Bank's 'Ease of Doing Business' ranking.
Summary:
PM Narendra Modi has gifted 'Modi jackets' to South Korean President Moon Jae-in.
The Korean leader revealed that he had told PM Modi that he looked great in 'Modi jacket' during his visit to India in July.
Summary:
A Delhi court on Wednesday granted bail to CBI DSP Devender Kumar arrested in connection with bribery allegations involving the agency's Special Director Rakesh Asthana.
Summary:
A family court granted a divorce decree to Rajiv and Monica on Tuesday, ending their 26 years of marriage.
Summary:
Three FSB employees were injured in the blast.
Summary:
Human remains have been found at the Vatican's embassy in Italy's capital Rome.nThe Vatican said that the human bones were discovered during renovation work at the embassy.
Summary:
New Zealand has retained the top position in the World Bank's 'Ease of Doing Business' ranking for the third consecutive year.
Summary:
The West Bengal Board of Secondary Education (WBBSE) has received around 9,000 applications from residents of Assam, reportedly excluded from the complete NRC draft, for issuing duplicate admit cards of the secondary examination conducted before 1973.
Summary:
South African captain Faf du Plessis, standing at the slip position, chuckled at Australian cricketer George Bailey's stance during the warm-up match between South Africa and Prime Minister's XI.
Summary:
Australia's former coach Darren Lehmann has said that he feels the international bans on Steve Smith, Cameron Bancroft and David Warner should be reviewed.
Summary:
Sri Lanka's bowling coach Nuwan Zoysa has been charged with three counts of breaching ICC Anti-Corruption Code.
Zoysa, who used to play international cricket for Sri Lanka, has been provisionally suspended with immediate effect.
Summary:
IPL side Sunrisers Hyderabad's Shikhar Dhawan has reportedly been traded to Delhi Daredevils in exchange for three players.
Summary:
Nineteen-time world champion Pankaj Advani on Wednesday became the first Indian to win an Asian Snooker Tour event after defeating China's Ju Reti 6-1 in the final in Jinan, China.
Summary:
The US government has charged two Chinese intelligence officers and their team of hackers of trying to steal commercial aviation technology.
Summary:
Recently, UK fined Facebook $645,000 over the Cambridge Analytica scandal.
Summary:
An inventor named Lothar Pantel has patented a smartphone design that features four 'notches', one on each corner of the display screen.
Summary:
Madhya Pradesh CM Shivraj Singh Chouhan on Wednesday said it was unfortunate that Sardar Vallabhbhai Patel never became the Prime Minister of the country.
Summary:
Congress leader Shashi Tharoor on Wednesday wanted to know why BJP had not built a bigger statue for Mahatma Gandhi.
Summary:
Madras High Court on Wednesday granted interim injunction to ban online sale of medicines for 10 days.
Summary:
Hundreds of Maserati cars on Tuesday caught fire in the Italian port city of Savona, due to floods in the north-western area.
Summary:
Elon Musk has purchased around $10 million worth of additional shares in the electric car maker Tesla, according to a filing.
Summary:
Singh took over as interim chief of the state police force on September 6 after his predecessor was shunted out.
Summary:
Austria said that the pact will blur the distinction between legal and illegal migration.
Summary:
Ganguly and Kohli had hit 183 in victories against Sri Lanka and Pakistan in 1999 and 2012 respectively.
Summary:
He further denied the allegations and asked the association to not form any one-sided judgement.
Summary:
An entire village in New Zealand which has been abandoned for three decades is up for sale for NZ$2.8 million (over â¹13.5 crore).
Summary:
Priyanshu Moliya, a 14-year-old boy from Gujarat, scored 556*(319) for Mohinder Lala Amarnath Cricket Academy in a Shri DK Gaekwad Under-14 tournament two-day match against Yogi Cricket Academy in Vadodara.
Summary:
Jamaluddin, the father of a victim in the 1987 Hashimpura case, has said he is happy with the Delhi High Court verdict, adding that they waited for justice for 31 years.
Summary:
India has signed a $950-million deal with Russia to buy two Admiral Grigorovich-class guided-missile frigates for service in the Navy, reports said.
Summary:
The Supreme Court Collegium has recommended names of four high court chief justices for elevation to the apex court.
Summary:
Further, its ban on firecrackers sale through e-commerce websites will apply pan India.
Summary:
Protests erupted across several cities in Pakistan on Wednesday after the country's Supreme Court overturned the death sentence of Asia Bibi, a Christian woman convicted of blasphemy.
Summary:
The cut-out has been placed by the All Kerala Dhoni Fans Association.
Summary:
Augmented reality startup HoloSuit has announced it has raised an undisclosed amount of funding from Indian cricketer Yuvraj Singh-backed YouWeCan Ventures.
Summary:
Former world number one tennis player Novak Djokovic halted his second-round Paris Masters match against Joao Sousa to help an unwell fan who had reportedly collapsed when Djokovic was about to serve.
Summary:
India's Shikhar Dhawan praised youngster Prithvi Shaw, saying, "He is a great talent and it is a very big thing to play for India at the age of 18...
Summary:
Alphabet's Waymo on Tuesday received the first permit from California, US to test driverless vehicles without a backup driver in the front seat.
Summary:
Richard DeVaul, an executive at Google's parent company AlphabetâÂÂs X research division, has reportedly resigned over sexual harassment allegations against him.
Summary:
He alleged the state government was merely for the sake of existence and bureaucracy was not taking responsibility.
"The government has done away with 25% expenditure.
Summary:
The Rashtriya Janata Dal has claimed Bihar CM Nitish Kumar "blackmailed" BJP, days after it was announced that BJP and JD(U) will fight on an equal number of seats for Lok Sabha elections in Bihar.
Summary:
Discussing the Ayodhya case, Uttar Pradesh Chief Minister Yogi Adityanath on Wednesday said, "The case is ongoing in the Supreme Court...
Summary:
The Congress will observe a 'Black Day' on November 8 and hold protests in all the states, an AICC functionary has said.
Summary:
The Delhi High court on Tuesday ordered China's ByteDance to not use ShareChat as an ad-word on Google after Bengaluru-based ShareChat alleged that ByteDance's newly launched app Helo was a copy of its product.
Summary:
It comes amid company laying off employees following a dispute with Faraday Future's financial backer, Evergrande Group.
Summary:
"Fallow land in Goa...equal to its 10.1% area used for food crops," the report said.
Summary:
Summary:
Kerala Water Resources Minister Mathew T Thomas' personal security officer allegedly shot himself to death using his service revolver on Wednesday, said the police.
Summary:
After the Bihar government told the Supreme Court its former cabinet minister Manju Verma could not be traced by the police, the court said, "All is not well...
Summary:
Former UP CM Akhilesh Yadav has urged Andhra Pradesh CM N Chandrababu Naidu to form a united front ahead of the General Elections, the Telugu Desam Party said.
Summary:
Uttar Pradesh Chief Minister Yogi Adityanath on Wednesday said that Sardar Vallabhbhai Patel was the architect of Republic India as Dr BR Ambedkar was of the Constitution.
Summary:
The 182-metre-tall Statue of Unity honouring Sardar Vallabhbhai Patel is double the height of USA's Statue of Liberty (93 metres).
Summary:
The high court overturned a trial court judgement, which had cleared the personnel.
Summary:
Former India Captain CK Nayudu, who was born on October 31, 1895, once hit a six in a tour match that reportedly landed in another England county, during India's 1932 England tour.
Summary:
Sonali Bendre's friend Namrata Shirodkar, while speaking about Sonali undergoing cancer treatment, said, "She's a strong girl.
Summary:
Actor Anupam Kher has resigned as Film and Television Institute of India (FTII) chairman citing his commitment to a TV show for which he has to be stationed in the US.
Summary:
Actor Ayushmann Khurrana has said since childhood, he has been like an 'aunty magnet'.
Aunties, they loved me, for all the good reasons," he added.
Summary:
Summary:
Summary:
BJP's IT cell chief Amit Malviya has criticised Congress chief Rahul Gandhi after he mistakenly referred to Mizoram as Manipur in a post where he shared a media report celebrating the achievements of girls in Mizoram.
Summary:
The 18 rebel AIADMK MLAs will not move the Supreme Court against the Madras High Court's order upholding their disqualification but will face the by-elections, AMMK leader TTV Dhinakaran said.
Summary:
Launched in March 2009 into an Earth-trailing heliocentric orbit, Kepler discovered over 2,600 planets outside the solar system.
Summary:
Amid the ongoing rift with the RBI, the central government on Wednesday released a statement saying, "The autonomy for the Central Bank, within the framework of the RBI Act, is an essential and accepted governance requirement." "The government...
The government will continue to do so," the statement read.
Summary:
Mor Mukut Sharma, a Doordarshan crew member, who survived the Naxal attack in Chhattisgarh's Dantewada district on Tuesday, recorded a video message for his mother while they were being attacked.
Summary:
Mor Mukut Sharma, a Doordarshan crew member, who survived the Naxal attack in Chhattisgarh's Dantewada district on Tuesday, recorded a video message for his mother while they were being attacked.
Summary:
India has slammed Pakistan for raising the Kashmir issue at the United Nations General Assembly, saying, it has become their habit to misuse any forum for narrow political gains.
Summary:
The Supreme Court on Wednesday asked the Centre to file an affidavit within ten days stating the pricing in the Rafale fighter jets deal cannot be shared with the court.
Summary:
Sutar's previous tallest creation was 45-ft 'Goddess Chambal' statue made out of single stone in 1959.
Summary:
HBO on Wednesday announced that two-time Oscar-nominated actress Naomi Watts will be headlining the cast of a prequel to its series 'Game of Thrones'.
Summary:
Former Union Minister P Chidambaram on Wednesday expressed concern on reports that the government had invoked an unused section of the RBI Act saying that the Centre is "hiding facts" about the economy and is "desperate".
Summary:
Congress chief Rahul Gandhi on Wednesday tweeted that it is ironic that Sardar Patel's Statue of Unity is being inaugurated but all the institutions that he helped build are being smashed.
Summary:
Summary:
Bengaluru-based ride-hailing startup Ola is reportedly in talks to raise $100 million funding from existing investor Hong Kong-based hedge fund Steadview Capital.
Summary:
Kepler has also caught a dead star vapourising its own planet.
Summary:
Amid deteriorating air quality levels, a 'Clean Air Week' will be organised in Delhi and four other NCR cities between November 1-5 by the Centre in collaboration with the Delhi, UP and Haryana governments.
Summary:
India invited Italian defence firms to invest under the 'Make in India' initiative.
Summary:
An Afghanistan Army helicopter carrying 25 people crashed in the western Farah province on Wednesday, killing all those on board, officials said.
Summary:
A group of journalists in Pakistan staged a 'pakoda protest' against their large-scale termination from respective news organisations.
Summary:
PM Narendra Modi on Wednesday inaugurated Sardar Vallabhbhai Patel's memorial on the leader's 143rd birth anniversary in Gujarat's Narmada district.
Summary:
A US couple, last to see the Indian engineer couple before they fell 800 feet at Yosemite National Park, shared a picture showing 30-year-old Meenakshi in the background of their selfie.
Summary:
Pakistan Supreme Court has acquitted 47-year-old Christian woman Asia Bibi, who was given a death sentence in 2010 over alleged blasphemy.
Summary:
Former Finance Ministerâ P Chidambaram tweeted on Wednesday that if government issued unprecedented 'directions' to the RBI, "I am afraid there will be more bad news today".
Summary:
The viral picture of Justin Bieber eating a burrito sideways has been revealed to be a prank by YouTube channel Yes Theory.
Summary:
Saahil added when he visited Verma a year later, he tried to kiss him again and "rubbed his stomach".
Summary:
Delhi's 31-year-old pilot Bhavye Suneja, Captain of the Lion Air flight that crashed with 189 people onboard minutes after take-off in Indonesia, was expected home this Diwali, his neighbours said.
Summary:
A man has claimed that his nine-day-old baby died at a government hospital in Bihar due to injuries and infections after he was allegedly bitten by rats on his fingers and toes.
Summary:
A nephew of JeM chief Masood Azhar, the mastermind of Pathankot attack, was one of the two militants killed in an encounter by security forces in Jammu and Kashmir, reports said.
Summary:
He has chaired the meeting effectively...that itself tells of the health status of the CM," state minister Rohan Khaunte said after attending the meeting.
Summary:
On former PM Indira Gandhi's death anniversary on Wednesday, Congress chief Rahul Gandhi tweeted, "Remembering Dadi today with a deep sense of happiness." "She taught me so much and gave me unending love.
She gave so much of herself to her people.
Summary:
Summary:
Saudi Arabia has arrested 17 Filipino women for attending a Halloween party in the country.
Summary:
And these very apprehensions could resist or delay digital transformation...That would be a mistake," Ambani added.
He further said most of the upskilling can happen on digital platforms.
Summary:
Global card payments giant Mastercard on Tuesday said it is storing its new Indian payments transaction data locally at its technology centre in Pune.
Summary:
Former Indian pacer Chetan Sharma dismissed three New Zealand batsmen in three successive deliveries on October 31, 1987, in Nagpur, becoming the first bowler to take a hat-trick in a World Cup match.
Summary:
India's first-ever Test captain, CK Nayudu, who was born on October 31, 1895, played his last First Class match at the age of 68.
Summary:
The Congress has started searching for new chiefs to head its party units in Delhi, Haryana, Punjab, Himachal Pradesh and Mumbai, according to a party functionary.
Summary:
Dalit Congress MLA Krishna Chandra Sagaria on Tuesday announced his decision to resign from the Odisha Assembly "on moral grounds", stating he "failed" to provide justice to a gangrape victim.
Summary:
Claiming Bengalis and Biharis were being systematically expelled from Assam and Gujarat respectively by the state BJP governments, West Bengal CM Mamata Banerjee on Tuesday said, "Bengal loves everyone...
Summary:
The appeal relates to a 2016 employment tribunal ruling that two Uber drivers should be entitled to a minimum wage and holiday pay, among other rights.
Summary:
The Unique Identification Authority of India (UIDAI) on Tuesday said it was going to set up around 114 Aadhaar Seva Kendras across the country within next few months.
Summary:
Doordarshan journalist Dheeraj Kumar, who survived the Naxal attack in Chhattisgarh on Tuesday, has said, "For...45 minutes, it was pure horror...
Summary:
Two Delhi teenagers were arrested after they allegedly snatched a phone to order food for free and robbed a cab driver of his vehicle for a joyride, said the police.
Summary:
US President Donald Trump has announced his plans to end the right to US citizenship for the children of non-citizens and unauthorised immigrants born in the country.
Summary:
The government will sell up to 9% stake in Coal India on October 31 and November 1, which is expected to fetch nearly â¹14,900 crore to the exchequer.
Summary:
Maruti Suzuki Arena is here to revolutionalise the way you purchase cars.
A feeling called Maruti Suzuki Arena'.
Summary:
Apple on Tuesday unveiled new MacBook Air laptop with retina display and Touch ID for secure login, with a starting price of $1,199 (over â¹88,000).
Summary:
Apple on Tuesday unveiled new iPad Pros that have no physical button, have larger screen options of 11 inch and 12.9 inch, and come with Face ID feature for unlocking.
Summary:
One Paper ticket folded up was thrown on stage by One Person after vigorously gesturing and shouting to stop singing...That's all...please stop these wild speculations and lies," he tweeted.
Summary:
Actress Priyanka Chopra reportedly wore jewellery worth â¹9.5 crore, including her engagement ring, at her bridal shower in New York on Sunday.
Summary:
Indian Institute of Technology (IIT) Kharagpur organised the final round of 'Young Innovators Programme 2018', a competition for class 8-10 students, at its campus on October 27 and 28.
Summary:
Niels Hoegel, a 41-year-old former German nurse, on Tuesday admitted to killing 100 patients under his care, whom he randomly picked out of "boredom".
Summary:
A total of 12 new Cabinet Ministers, one State Minister and a Deputy Minister were sworn in.
Summary:
"If you require a higher daily cash withdrawal limit, please apply for a higher card variant," SBI said.
Summary:
Earlier in September, childhood friends Isha Ambani and Anand Piramal got engaged at Lake Como in Italy.
Summary:
Facebook, Amazon, Netflix and Google parent Alphabet (FANG stocks) lost a combined $200 billion in market capitalisation in two sessions.
Summary:
The 16-coach full AC train will cut journey time by 15% compared to Shatabdi.
Summary:
Indian cricketer Rohit Sharma asked the crowd near his fielding position near the ropes to chant "India" instead of his name during the 4th ODI against the Windies in Mumbai.
Summary:
Researchers have developed a solar cell that uses an artificial photosynthesis system to generate hydrogen fuel and electricity at the same time.
Summary:
Congress President Rahul Gandhi on Tuesday, while clearing Congress' reason for not declaring a CM candidate in Madhya Pradesh, said Kamal Nath has experience, and good looks, while Jyotiraditya Scindia is young and dynamic.
"Why do I have to declare?
Summary:
Uttar Pradesh Chief Minister Yogi Adityanath on Tuesday said justice delayed is sometimes justice denied, while speaking over the Supreme Court's order of adjourning the Ayodhya case till January 2019.
Summary:
Madhya Pradesh CM Shivraj Singh Chouhan's son Kartikey Chouhan on Tuesday filed a defamation case against Congress President Rahul Gandhi for naming him in the Panama Papers scam.
Summary:
BJP President of Maharashtra's Bhor tehsil, Anand Deshmane was booked on Monday for allegedly sending an "objectionable video content" on a female party leader's cell phone on Sunday night.
Summary:
Congress President Rahul Gandhi on Tuesday said he doesn't need a 'certificate' from the BJP to visit temples and asserted he understands Hindu religion better than the BJP.
I'm a leader of every religion...every class," he added.
Summary:
Paytm Mall, an e-commerce subsidiary of Paytm, has made changes to its seller policy, limiting the product return claims by a seller.
Summary:
NBA side Oklahoma City Thunder's Russell Westbrook tried to trade his shoe for a pizza slice from a child who was attending Thunder's match against the Phoenix Suns.
Summary:
"The plant was first used at least 1,500 years earlier than we had previous evidence for," a scientist said.
Summary:
The Supreme Court on Tuesday allowed Tamil Nadu, Kerala, Karnataka and Andhra Pradesh to choose the time for bursting firecrackers during Diwali subject to the limit of two hours.
Summary:
Information and Broadcasting Minister Rajyavardhan Singh Rathore on Tuesday announced financial assistance of â¹15 lakh to the next of kin of the Doordarshan cameraman who was killed in Chhattisgarh's Naxal attack.
Summary:
The aunt of Doordarshan cameraman, who died in Chhattisgarh's Naxal attack, recalled his last call where he asked her to take care of his wife.
The cameraman usually used to call his aunt every time he went on an outstation assignment.
Summary:
A private school's principal in Pakistan has been sentenced to a total of 105 years in prison on charges including child abuse, rape, blackmail and maintaining illicit relations.
Summary:
China on Monday eased the ban on the trading of tiger bones and rhinoceros horns, allowing it for scientific, medical, educational and cultural use.
Summary:
The first time was a text and just saying, âÂÂI think we should connect'...thatâÂÂs how we started talking," said Priyanka.
Summary:
Jalota further said, "If she has used me for the platform, I'm happy...she succeeded in doing that."
Summary:
Summary:
The Supreme Court has ordered Hyderabad Police to provide adequate security to businessman Sathish Sana, complainant in the alleged bribery case against CBI Special Director Rakesh Asthana.
Summary:
Team India has reportedly requested the BCCI to provide a steady supply of bananas during 2019 World Cup in England and Wales.
Summary:
Former England women's cricket team bowler Eileen Ash, the oldest living Test cricketer, turned 107 years old on Tuesday.
Summary:
Bello ran up into the stands, got down on one knee and proposed to his girlfriend Gabriela Brito, who accepted his proposal amid crowd's ovation.
Summary:
Former India captain Sourav Ganguly has written to BCCI's top officials, expressing discontent over the way CoA is running Indian cricket and the way it is handling sexual harassment allegations against BCCI CEO Rahul Johri.
Summary:
Summary:
RJD supremo Lalu Prasad Yadav's son Tej Pratap has shared a video on Instagram, wherein he could be seen dressed as Lord Krishna and playing a flute in front of cows.
Summary:
Doordarshan cameraperson Achyuta Nanda Sahu, who was killed in a Naxal attack in Chhattisgarh's Dantewada on Tuesday, is survived by his parents and pregnant wife.
Finally, this year, his wife conceived," Sahu's colleague said.
Summary:
Superintendent of Police Abhishek Pallav on Tuesday broke down while talking about the death of two jawans and Doordarshan cameraman in Naxal attack in Chhattisgarh on Tuesday.
Summary:
He took â¹4.24 lakh from the victim, promising him a car.
Summary:
The immigrants coming through Mexico will remain in detention in such tent cities until their applications are processed.
Summary:
Assange, who took refuge in the embassy in 2012, said the new rules were a sign Ecuador was trying to push him out.
Summary:
Adeco allegedly trained candidates after it got information on vacancies at the bank through people already working there.
Summary:
Tesla's Chief Executive Officer Elon Musk on Monday tweeted that he deleted his Tesla titles.
Less than 90 minutes later, Musk tweeted, "Legally required officers of a corporation are president, treasurer & secretary.
Summary:
The Indian cricket team were given a traditional welcome in Thiruvananthapuram, where the Indian team is set to play its first ODI in around 30 years.
Summary:
Officials later announced that more than 75% of the city had been flooded by waters rising to 149 centimetres.
Summary:
Indian tennis star Sania Mirza and Pakistani cricketer Shoaib Malik, who were blessed with a son on Tuesday morning, have named the child Izhaan Mirza-Malik.
Summary:
The BCCI's official account tweeted a photo of the Indian cricketers playing a 'very popular' online multiplayer video game while waiting at the airport.
Summary:
Data privacy is a top priority for us," a company spokesperson said.
However, the company is required to share any customer data under orders from government agencies, the spokesperson added.
Summary:
Summary:
In his final letter as Alibaba Board's Chairman, Founder Jack Ma has said Alibaba is not interested in becoming a manufacturer.
Summary:
Engineers at NASA's Jet Propulsion Laboratory (JPL) transformed Halloween pumpkins into fighting robots during its seventh annual pumpkin carving contest on Monday.
Summary:
Bangladesh and Myanmar have reached an agreement to begin the repatriation of the Rohingya refugees in November.
Summary:
China will build the country's first permanent airport in the South Pole which will provide logistical support to the scientists' research there, the Chinese state media reported.
Summary:
In a new behind-the-scenes video, Virat Kohli deconstructs his Basket Classic one8 sneaker.
Summary:
Shares of Amazon dropped 6.3% on Monday after Friday's 7.8% drop, putting Bezos' net worth at $128.1 billion.
Summary:
Singer Shaan was attacked with stones after he sang a Bengali song at a concert in Assam on Monday.
Summary:
Shibani Dandekar, while speaking about the speculations around her rumoured relationship with Farhan Akhtar, said, "I don't need to make an announcement about who I'm dating." "It's up to me to decide...what I want to share about my personal life," she added.
Summary:
"I met Jasleen's father...and asked, 'Will you call me for Jasleen's wedding and let me perform her kanyadaan', he said, 'Hum dono milke uska kanyadaan karenge'," Jalota said.
Summary:
Professor Giridhar Madras of the Indian Institute of Science, Bengaluru has been asked to take "compulsory retirement" after his PhD student accused the 51-year-old of making "sexually coloured" remarks and harassing her with late-night phone calls.
Summary:
Talking about moving to Juventus from Real Madrid this summer, Cristiano Ronaldo said if it had all been about money, he would've moved to China.
"I would've earned five times as much in China than at Juventus or Real," he added.
Summary:
Congress President Rahul Gandhi on Tuesday said, "Duniya ke saamne aapke paas bas ek quality honi chahiye woh hai humility." "Humility ka matlab ki jab aap bol rahe ho toh mein aapko sun raha hun...mein aapko samajhne ki koshish kar raha hun," added Gandhi.
Summary:
Born on October 30, 1909, Padma Bhushan-awardee Homi J Bhabha was instrumental in convincing then Prime Minister Jawaharlal Nehru to start India's Nuclear Programme.
Summary:
China and Pakistan will in November launch a bus service through Pakistan-occupied Kashmir (PoK) under the China-Pakistan Economic Corridor (CPEC) project.
Summary:
A 32-year-old journalist with a vernacular daily was allegedly abducted and beaten to death in Jharkhand's Chatra late on Monday, months after he filed complaint of a threat to his life.
Summary:
The StB began spying on Trump following his marriage to Czechoslovak model Ivana ZelnÃÂÃÂková.
Summary:
Finance Minister Arun Jaitley criticised the RBI saying it "looked the other way" when banks gave loans indiscriminately between 2008 and 2014.
Jaitley's comments come days after RBI Deputy Governor Viral Acharya raised concerns over the central bank's autonomy.
Summary:
Summary:
Surekha Sikri, who recently played the role of 'Amma' in 'Badhaai Ho', said that she wouldn't mind doing a role with Amitabh Bachchan.
Summary:
'Bigg Boss 11' contestant Sapna Choudhary will enter 'Bigg Boss 12' as a guest during Diwali, as per reports.
Summary:
Summary:
Responding to the reported issue, a Google spokesperson confirmed that a fix should be "coming soon".
Summary:
A US government network was infected with malware after an employee accessed porn sites on his work computer, investigators have found.
Summary:
Over 200 Google employees are planning a walkout or "womenâÂÂs walk" on Thursday in protest against the company's reported protection of employees who had allegedly engaged in sexual misconduct, according to a report.
Summary:
Reportedly, Sharma has joined the Congress sensing that he would not be fielded this time by the BJP from Tendukheda seat.
Summary:
Congress President Rahul Gandhi, threatened with a defamation suit for his comments on Madhya Pradesh CM Shivraj Singh Chouhan's son, said there's so much corruption in BJP that he got confused.
Summary:
Bengaluru-based intelligent apparel brand Turms has raised â¹6.3 crore from Freshworks Founder Girish Mathrubootham and other investors.
Summary:
New-Delhi based esports startup GamingMonk has raised â¹4 crore in a funding round led by Japan-based venture capital fund Incubate Fund and Rajan Anandan, Vice President, Google India & South East Asia.
Summary:
According to NASA, the successful test indicates the parachute design is officially ready for Mars.
Summary:
A sports teacher who was part of a Pune school's "good touch, bad touch" programme aimed at raising awareness of sexual harassment was arrested for allegedly molesting four students of the school, said the police.
Summary:
Singer Pharrell Williams has sent a legal warning to US President Donald Trump after his song 'Happy' was played at a campaign rally, hours after 11 people were killed in a mass shooting at a synagogue.
Summary:
The officials immediately arranged for the water bottles after the incident happened.
Summary:
CBI officer AK Bassi, who was probing the bribery case against agency's Special Director Rakesh Asthana, has moved the Supreme Court challenging his transfer to Port Blair.
Summary:
In a video shared by Congress, party President Rahul Gandhi can be seen feeding ice cream to a young boy at the '56 Dukan' restaurant in Indore.
Summary:
Another TRS candidate, Koram Kanakaiah, was spotted giving a bath to a man as other party workers applauded his gesture.
Summary:
Grocery startup BigBasket is in talks to raise $400 million funding from new and existing investors, valuing it at $1.5-2 billion, according to reports.
Summary:
NASA's Parker Solar Probe on Monday became the closest human-made object to the Sun, surpassing the closest approach of 42.72 million kilometres set by German-American Helios 2 spacecraft in April 1976.
Summary:
The Supreme Court on Monday stayed the Madras High Court's order allowing a CBI investigation into allegations that Tamil Nadu CM EK Palaniswami illegally awarded road construction contracts to his relatives.
Summary:
The Supreme Court on Tuesday transferred Brajesh Thakur, the main accused in Muzaffarpur shelter home case in which over 30 girls were sexually assaulted, to a high-security jail in Punjab's Patiala.
Summary:
Gujarat Congress MLA Pratap Dudhat has posted a selfie with Asiatic lions in Amreli's Liliya taluka, despite a ban by Wildlife Protection Department on taking pictures with lions.
Summary:
A picture of a stranger holding a baby as the infant's mom fills a form at a clinic in Alabama, US, has gone viral.
Summary:
A 29-year-old Indian techie and his 30-year-old wife died after falling 800 feet from a popular overlook at the Yosemite National Park in California, US.
Summary:
The US has sent 5,200 troops to its border with Mexico in a move aimed at countering migrants from Central American nations.
Summary:
HDFC Bank on Monday said the RBI has approved the re-appointment of Aditya Puri as Managing Director and CEO for another two years.
Summary:
Denying the reports of Dilip Kumar's deteriorating health, his family friend Faisal Farooqui said that he is fine.
Dilip Kumar sahab is doing well- at home in the company of his loved ones," tweeted Faisal from the actor's Twitter handle.
Summary:
Summary:
Kartik Aaryan and Sara Ali Khan will star opposite each other in Imtiaz Ali's next film, as per reports.
Denying the rumours, Imtiaz had said he never announced any film with Shahid.
Summary:
Summary:
Indian left-arm pacer Khaleel Ahmed received an official warning and one demerit point for advancing aggressively towards Windies all-rounder Marlon Samuels after dismissing the right-hander at the Brabourne Stadium in Mumbai on Monday.
Summary:
The body of Daniel Correa Freitas, a 24-year-old Brazilian footballer, was reportedly found 'almost beheaded with his genitals severed' in a bush on Saturday night.
Summary:
Pakistani cricketer Mohammad Hafeez thanked Australia's ODI captain Aaron Finch for giving his kids his jersey after the completion of the third T20I between the two teams.
Summary:
Google has partnered with National Oceanic and Atmospheric Administration (NOAA) to train its artificial intelligence (AI) system to listen around 19 years of underwater audio recordings to spot humpback whales.
Summary:
Kerala CM Pinarayi Vijayan has accused BJP President Amit Shah of attempting to "destabilise" his government for trying to implement the Supreme Court order on the Sabarimala Temple issue.
Vijayan said, "Heard Shah has done certain things in certain places.
Summary:
Rawat had said, "In Rajasthan, all Hindus should unite to vote for BJP.
Summary:
Narinder Singh Shergill, who had contested the 2017 Punjab Assembly elections from Mohali, has been given a ticket from the Anandpur Sahib seat.
Summary:
A senior executive of a private firm was arrested for allegedly murdering his 32-year-old wife by pushing her off the balcony of their eighth floor flat in Gurugram, said the police on Monday.
Summary:
A 22-year-old chartered accountant drank poison in front of police officers and her family in Rajasthan after refusing to marry a man she was engaged to when she was three years old, said authorities.
Summary:
Union Minister Harsh Vardhan said green crackers won't be available this Diwali but the technology for the crackers will be shared with the industry soon.
Summary:
The plan offers additional units on every premium paid by the customer, doing away with premium allocation charges and policy administration charges.
Summary:
Humanity wiped out 60% of mammals, birds, fish, reptiles, and amphibians between 1970 and 2014, according to World Wildlife Fund's (WWF) Living Planet Report 2018.
Summary:
The Supreme Court on Tuesday modified the time limit for bursting crackers in Tamil Nadu and allowed the state to fix the timing.
Summary:
Indonesian finance ministry official Sony Setiawan said his life was "saved" after he got stuck on a toll road for hours in Jakarta and missed the Lion Air flight he used to take weekly.
Summary:
The decision comes a day after Zia was jailed for seven years in a separate case.
Summary:
The employees went on leave from December 2, 2017 to January 19, 2018 "without sufficient cause", the company said.
Summary:
Juventus' 33-year-old footballer Cristiano Ronaldo has become the most followed person on Instagram, overtaking American singer Selena Gomez.
Summary:
Bhajan singer Anup Jalota has said he told his 85-year-old mother that Jasleen Matharu, with whom he entered 'Bigg Boss 12', is a "ghost" and there's no romantic relationship between them.
Summary:
Sharing pictures from the party on Instagram, Priyanka wrote, "Bridal shower that broke all the rules!"
Summary:
Congress President Rahul Gandhi on Monday falsely claimed MP CM Shivraj Singh Chouhan's son Kartikey was named in Panama Papers, after which Chouhan said he would file a criminal defamation suit.
Summary:
During PM Narendra Modi's visit, India and Japan signed six key agreements, including on deeper naval cooperation, and agreed to initiate 2+2 dialogue between the foreign and defence ministers.
Summary:
As many as 1,01,788 children under five years of age died in India in 2016 from exposure to toxic air, according to World Health Organization, making India the worst affected country, followed by Nigeria (98,001) and Pakistan (38,252).
Summary:
Doordarshan TV cameraman Achyuta Nanda Sahu and two CRPF jawans were martyred in a Naxal attack in Chhattisgarh's Dantewada on Tuesday.
Summary:
The court, however, asked the state government and the Travancore Devaswom Board to file their affidavits on the issue.
Summary:
The CBSE on Monday told the Supreme Court that it is ready to provide a copy of answer sheets to students at â¹2 per page under the RTI act.
Summary:
A court in Delhi's Rohini has ruled that a suicide note mentioning names is not enough for a conviction for abetment of suicide.
Summary:
We can't live without him." The post says the "murderers" of Imtiaz "killed someone who loved his Kashmir and it's people" and was a loving son.
Summary:
What is the need to hear a fresh petition?" The opposition has alleged irregularities in the Rafale contract signed in 2016.
Summary:
Up to 75% of Venice is under water as high tides and storms hit Italy, with authorities urging people not to travel unless absolutely necessary.
Summary:
Deepika Padukone and Alia Bhatt opened the season as they appeared in the first episode.
Summary:
Sharing the pictures from her bridal shower which was held in the US, Priyanka Chopra wrote, "Thank you so much for throwing me such a memorable bridal shower that broke all the rules!" "Love, laughter and a room full of amazing ladies," she further wrote.
Summary:
Arjun Kapoor, while talking about the relationship with his half-sisters Janhvi Kapoor and Khushi Kapoor, said, "I've been very honest about it.
Summary:
Amarjeet Singh, elder brother to Mika Singh and Daler Mehndi, who had been hospitalised over the last few days, passed away early in the morning on Monday.
Summary:
The Supreme Court has stayed the Bombay High Court order that refused an extension of time to Maharashtra police to conclude its probe in Bhima-Koregaon violence case and to file chargesheet against the accused activists.
Summary:
Posing as policemen, two men allegedly raped a 20-year-old woman and molested her minor niece in outer Delhi on Sunday night.
Summary:
Union Tourism Minister KJ Alphons has said a Christian and a Muslim girl who attempted to enter Sabarimala Temple wanted "10 seconds of television time".
Summary:
In a letter to Home Minister Rajnath Singh, YSR Congress Party chief Jagan Mohan Reddy has sought a probe by a central agency into the knife attack on him last week.
Summary:
A White House spokesperson said Trump would be unable to participate due to "scheduling constraints".
Summary:
A picture has gone viral on the internet as people were confused whether it was a picture of a crow or a cat.
Summary:
India opener Rohit Sharma outscored the opposition team's total in a completed ODI for the second time in his career, in the fourth ODI against Windies on Monday.
Summary:
India wicketkeeper Mahendra Singh Dhoni reacted in just 0.08 seconds to stump Windies' Keemo Paul in the fourth ODI on Monday.
Summary:
Juventus forward Cristiano Ronaldo has admitted the rape allegation against him by an American woman is affecting his personal life and his "exemplary" reputation.
This is the first time I've seen them in this state," said Ronaldo.
Summary:
Three-time defending Champions League winners Real Madrid have sacked Julen Lopetegui as their manager following their 1-5 defeat to Barcelona on Sunday.
Summary:
"They no longer considered me the same way that they did in the start," Ronaldo further said.
Summary:
Indian tennis player Sania Mirza has given birth to a baby boy, announced her husband, Pakistani cricketer Shoaib Malik on Tuesday.
"Excited to announce: Its a boy, and my girl is doing great and keeping strong...Thank you for the wishes and Duas, we're humbled.
Summary:
At least 3,505 protesters were arrested till October 29 in connection with the violence that erupted after the Supreme Court allowed women of all ages to visit Sabarimala Temple.
Summary:
Indian Railways' first-ever engineless train that travels at 160 kmph, 'Train 18' began trials on Monday.
Summary:
After delaying the salaries of its employees for August and September, cash-strapped airline Jet Airways has received Airports Authority of India notice for defaulting on rental payments on its leased aircraft.
Summary:
Summary:
CBI Deputy Superintendent of Police Devender Kumar, arrested in connection with bribery allegations, on Monday moved a bail plea before a Delhi court saying CBI seized his son's laptop illegally.
Summary:
So the sanctions stand," said Peever.
Summary:
Indian cricketers Yuvraj Singh and Harbhajan Singh have not been included in the Punjab Ranji Trophy squad, while 26-year-old player Mandeep Singh has been named the captain of the team.
Summary:
Former Indian captain Sunil Gavaskar said that former Indian skipper MS Dhoni is an "absolute must" for the World Cup 2019 as Indian captain Virat Kohli will benefit from Dhoni's experience and inputs.
It's a huge plus for Virat," Gavaskar said.
Summary:
Juventus' Portuguese footballer Cristiano Ronaldo claims that he deserves a record sixth Ballon d'Or award as he "work[s] to score goals and win games." "Joining Juve was a good move, a successful one.
Summary:
Hong Kong-based labour rights group SACOM alleged that students aged 16-19 were forced by schools to work at the factory through compulsory internships.
Summary:
Scientists from the Netherlands have developed a new smart bracelet called Nightwatch that can detect severe night-time epilepsy seizures with 85% accuracy.
Summary:
Summary:
"The PM wished the nation 'Happy Diwali' in...'Mann Ki Baat'..., but how will the farmers...celebrate the festival of lights," state Congress President Ashok Chavan said.
Summary:
Uttar Pradesh Chief Minister Yogi Adityanath on Monday said Hindus and Sikhs were safe in Kashmir till the time it was ruled by a Hindu king.
"With the fall of the Hindu ruler, Hindus also witnessed a downfall," he added while speaking at a Sikh Convention.
Summary:
Porsche's Project Gold 911 Turbo car was sold for $3.4 million at an auction over the weekend.
Summary:
Also, studying hibernation could be key on how to create synthetic torpor for space travel, researchers added.
Summary:
Delhi-NCR's situation is 'very critical', the SC added.
Summary:
Five Border Security Force (BSF) jawans were injured on Monday in a suspected militant attack on their vehicle on the outskirts of Srinagar, police said.
Summary:
A man was arrested for selling his two-month-old twin daughters to couples for â¹1.8 lakh in West Bengal's North 24 Parganas district, police said.
Summary:
India defeated Windies by 224 runs in the fourth ODI on Monday to register their third biggest ODI victory (by runs) and take a 2-1 lead in the five-match series.
Summary:
Jio customers who purchase OnePlus 6T will get cashback worth â¹5,400 on the first recharge of â¹299, divided in 36 vouchers worth â¹150 each.
Summary:
Founded 25 years ago, Red Hat was valued at about $20.5 billion at the end of trading on Friday.
Summary:
Janardan Singh, a constable at Lucknow's Vibhuti Khand police station in Uttar Pradesh, said "It's an honour" to work under his IPS son Anoop Kumar Singh, who took charge as SP (north) Lucknow.
Summary:
Summary:
The 64-year-old has been the chairwoman of the CDU party since 2000 and Germany's Chancellor since 2005.
Summary:
Following the demise of his mother Gwen Rampal due to cancer, actor Arjun Rampal took to Instagram to pen a note in which he wrote, "After a long and successful fight...with...cancer, she [breathed] her last." He also thanked doctors for the "extra years" she got to spend with her family.
Summary:
Summary:
Filmmaker Vishal Bhardwaj took to Twitter on Monday to complain about a technical glitch in the National Anthem produced by the Films Division and Ministry of Information and Broadcasting for the MAMI Mumbai Film Festival.
Summary:
Summary:
Naseeruddin Shah has said Indian cinema shouldn't be remembered only for Salman Khan films, while adding, "India isn't like that.
I'm not sure of cinema as a medium of education," he added.
Summary:
Leicester City's billionaire Thai owner Vichai Srivaddhanaprabha, who died in a helicopter crash at the team's stadium, spent nearly â¹20 crore to gift 19 players a BMW i8 each as a reward for winning Premier League in 2016.
Summary:
Sacked Sri Lanka Minister and former cricket captain Arjuna Ranatunga has been arrested over his role in a shooting incident that took place outside his office in Colombo on Sunday.
Summary:
Calling the current situation of pollution in Delhi-NCR "very critical", the Supreme Court on Monday prohibited the plying of 15-year-old petrol vehicles and 10-year-old diesel vehicles in the region.
Summary:
"This swap arrangement would be 50% higher than our last swap agreement," Finance Minister Arun Jaitley said.
Summary:
Rohit Sharma and Shikhar Dhawan became India's second best opening pair in ODIs in terms of runs scored together, after they surpassed Sachin Tendulkar and Virender Sehwag during the fourth ODI against the Windies on Monday.
Summary:
Windies bowler Keemo Paul did Shikhar Dhawan's customary 'Gabbar' celebration after picking up his wicket in the 4th ODI between the sides on Monday.
Summary:
A wonderful thoughtful man who lived and breathed Leicester City Football Club," Leicester City's James Maddison tweeted.
Summary:
The Delhi Cabinet on Monday approved government jobs for sportspersons from the city who excel in their respective fields.
Summary:
Former New Zealand coach Mike Hesson has replaced Brad Hodge as the head coach of the Indian Premier League (IPL) franchise Kings XI Punjab ahead of the 2019 edition of the Indian Premier League.
Summary:
She was issued the electronic visa upon her arrival at Azerbaijan's Baku International Airport.
Summary:
The party added that the construction of the temple at a particular place in Ayodhya is a disputed case.
Summary:
Congress leader and former Union Minister P Chidambaram on Monday said every five years before elections, the BJP will try to polarise views on Ram Mandir.
Summary:
"We're manufacturing quality products not only for India but for...world," he said.
Summary:
The deal will enable users to book travel-related services through Grab's app and pay via its digital wallet.
Summary:
While Flipkart Internet recorded a loss of â¹1,160.6 crore, Flipkart India posted â¹2,063.8 crore loss, according to filings.
Summary:
Travel booking firm Ibibo's Founder Ashish Kashyap has raised $30 million to launch a fintech startup INDwealth, which is expected to start operations in January 2019.
Summary:
Rohit has hit 19 out of his 21 centuries in ODI cricket as an opener.
Summary:
Team India opener Rohit Sharma has overtaken Sachin Tendulkar to record second most sixes by an Indian cricketer in ODI cricket, achieving the feat after slamming his second six in the fourth ODI against Windies on Monday.
Summary:
A 16-year-old French exchange student has alleged she was sexually assaulted by the 55-year-old father of a friend hosting her at their house in Delhi.
Summary:
A 15-year-old Sikh girl, said to be mentally ill, was raped by two paramedics in an ambulance in Pakistan's Nankana Sahib last week.
Summary:
The Indian embassy in Jakarta has confirmed the death of Indian pilot Bhavye Suneja in the Indonesia plane crash.
Summary:
An Indonesian passenger plane carrying 189 people that crashed into the sea on Monday suffered a technical problem on a previous flight, carrier Lion Air's Chief Executive Officer Edward Sirait said.
Summary:
Rohit Sharma has hit the highest yearly individual score for India each time for the last six years.
Summary:
After Congress chief Rahul Gandhi visited Mahakaleshwar temple in poll-bound Madhya Pradesh, BJP spokesperson Sambit Patra on Monday asked, "If Rahul wears a janeu, what type of janeu does he wear?
Summary:
The husband of former Bihar minister Manju Verma, Chandrashekhar Verma, has surrendered before a local court in connection with Muzaffarpur shelter home case in which over 30 girls were sexually assaulted.
Summary:
The Tamil Nadu government on Monday moved the Supreme Court seeking a reconsideration of its order allowing bursting of less polluting firecrackers between 8 pm-10 pm, saying the time should be extended.
Summary:
The state government had announced the renaming on October 16.
Summary:
The Delhi High Court today said CBI Special Director Rakesh Asthana, who has challenged the bribery charges against him, can't be arrested till November 1.
Summary:
The airline had received the delivery of the Boeing 737 Max 8 in August this year, which clocked 800 hours of flight time before crash.
Summary:
The benchmark BSE index Sensex on Monday rallied 718.09 points, or 2.15%, to close at 34,067.40, while the Nifty 50 ended 220.85 points higher at 10,250.85.
Summary:
"It's not about fighting, it's about what you want to do with yourself.
I don't call it a fight," he added.
Summary:
"It is about the ideology...It is not coming from men alone but women as well," Shonali further said.
Summary:
Divya Dutta, while talking about #MeToo movement, said, "Eventually, people are becoming aware; those who are guilty and even those who aren't, are more cautious of their behaviour." "We...hear about a new case every day.
Summary:
Malaika Arora, while talking about #MeToo movement, said, "I don't see too much of a change.
I think there is more noise than change." She added that for actual change to happen, mindset has to change and people's mindset cannot change overnight.
Summary:
Summary:
Former Indian batsman Sachin Tendulkar rang the bell before the start of the 4th ODI between India and the Windies at the Brabourne Stadium in Mumbai on Monday.
Summary:
Sunday's was the first El Clasico in 11 years that did not feature Messi or Cristiano Ronaldo.
Summary:
Hamilton is now the joint second most successful F1 driver in history in terms of titles won.
Summary:
Gab, the far-right social network, has gone offline after domain registrar GoDaddy gave the platform 24 hours to find a new domain provider.
Summary:
Flipkart sells electrical appliances like microwave ovens and refrigerators under MarQ.n
Summary:
SoftBank's $100-billion Vision Fund may lead a funding round of around $150 million in Gurugram-based online grocery startup Grofers, with participation from German retail group Metro AG.
Summary:
Both the satellites separated from the rocket within 15-30 minutes after liftoff, the space agency said.
Summary:
Three men were killed on Monday morning after the Bikaner-Delhi Express ran over them near the Nangloi Railway Station in Delhi.
Summary:
Tata Group on Monday announced that it has terminated the contract of author and socialite Suhel Seth over sexual harassment allegations against him.
Summary:
The Supreme Court on Monday said that an "appropriate bench" will decide in January the date for the hearing of the Ayodhya land dispute case.
Summary:
A Bangladesh court on Monday sentenced former Prime Minister Khaleda Zia to seven years in jail on corruption charges.
Summary:
Wreckage has been found near where the plane lost contact with air traffic officials on the ground.
Summary:
Jalota added he was "shocked" when Jasleen said they had been dating for three and a half years.
Summary:
After Rakhi Sawant claimed that Tanushree Dutta is a lesbian and alleged that she raped her multiple times 12 years ago, Tanushree called Rakhi a "sex and money obsessed moron".
Summary:
A CBI team was planning to arrest the agency's Special Director Rakesh Asthana, an accused in a bribery case, before the Delhi High Court gave orders barring any coercive action against him, a report said.
Summary:
Premier League club Leicester City's Thai owner Vichai Srivaddhanaprabha, who died aged 61 in a helicopter crash on Saturday, was the chairman of duty-free company King Power International Group.
Summary:
Kerala Minister TM Thomas Isaac has slammed BJP chief Amit Shah for threatening to oust the LDF government despite their permission for him to land at the Kannur airport before its official inauguration.
Summary:
According to Lion Air, Suneja has 6,000 flight hours of experience.
Summary:
The Centre has changed its stand, allowing Non-Resident Indians (NRIs) to file RTI applications to seek government information.
Summary:
A software engineer in Hyderabad was killed and her husband was injured after the bike they were riding on was hit by a lorry on Saturday.
Summary:
Japanese Princess Ayako on Monday married a commoner in a ceremony held at Tokyo's Meiji Shrine.
Summary:
Ranveer Singh, on being asked whom would he like to work next with- Deepika Padukone or Alia Bhatt, answered, "Both.
Summary:
Summary:
Posting her picture from the bridal shower as her Instagram story, Priyanka Chopra wrote, "My girls are in town #PreWeddingCelebrations." Priyanka's stylist, Mimi Cuttrell, also posted Priyanka's picture, captioning it, "The bride." Priyanka will be getting married to Nick Jonas reportedly in December at Umaid Bhawan in Jodhpur.
Summary:
dedication and sacrifices," she added.
"[Farah]...saw me in these couples of ad campaigns, took it to Shah Rukh [Khan] who was willing to take...risk," she further said.
Summary:
Actress Taapsee Pannu has said that she loves doing things which are not expected of her, adding, "I am that person who loves to go somewhere where nobody has." "I have been very crazily adventurous with my life and age has now made me sober down a little bit.
Summary:
On being asked which "Khan" he'd like to do a film with- Shah Rukh Khan, Aamir Khan or Salman Khan, Ranveer Singh said, "Can I choose another Khan?
Summary:
Uddhav Thackeray on Saturday attended the recording of the title song of the upcoming film 'Thackeray' which is based on Shiv Sena founder Bal Thackeray's life.
It summarised the life of the Shiv Sena pramukh nicely.
Summary:
If I was a star kid, it would have been 22." "I don't think the difference of five years would've affected much.
Summary:
Lok Janshakti Party (LJP) leader Ram Vilas Paswan may not contest the 2019 Lok Sabha elections due to health concerns and may seek a seat in Rajya Sabha, reports said.
Summary:
Speaking at the concluding session of Bharatiya Janata Yuva Morcha's national convention on Sunday, BJP chief Amit Shah said Congress chief Rahul Gandhi has to look at the country's map using binoculars to search for states where his party is in power.
Summary:
Uttar Pradesh Deputy CM Keshav Prasad Maurya has said a structure named after Mughal emperor Babur in Lord Ram's birthplace in Ayodhya will not be accepted.
Summary:
Quoting an "RSS source", Tharoor had said PM Modi is like a scorpion sitting on a shivling.
Summary:
The Border Security Force (BSF) on Sunday arrested two Pakistan nationals in Punjab's Ferozepur and seized two Pakistan Army identity cards, one smartphone and Pakistani currency from them.
Summary:
Central and state government employees on Sunday protested in Himachal Pradesh's Hamirpur district demanding restoration of the old pension scheme.
Summary:
Prior to the 2018 edition, India and Pakistan had won the tournament twice each.
Summary:
A passenger plane operated by the Indonesian low-cost airline Lion Air has crashed into the sea, according to Indonesia's search and rescue agency.
Summary:
The helicopter had crashed in the stadium's parking area shortly after taking off from the pitch.
Summary:
Former hotel receptionist Saba Khan, who entered the house with her sister Somi, also got evicted.
Summary:
American rapper 50 Cent has bought 200 front row seats of rival rapper Ja Rule's upcoming concert just to make it look empty.
Summary:
Actor Arjun Rampal's mother Gwen Rampal passed away on Sunday after a long battle with cancer.
Summary:
Shonia appeared to challenge Genov to one more round of boxing before lashing out at his trainer, who was trying to calm him down.
Summary:
Uruguayan forward Luis Suárez netted a hat-trick as Barcelona thrashed Real Madrid 5-1 in the first El Clásico without Lionel Messi or Cristiano Ronaldo in 11 years.
Summary:
Dinesh said he was forced to sell kulfi to repay loans his father took for his treatment and for sending him to tournaments.
Summary:
One person died and two others were injured after sacked Sri Lanka Petroleum Minister Arjuna Ranatunga's guard opened fire while reportedly preventing a mob's attempt to take the politician hostage.
Summary:
The Directorate of Revenue Intelligence (DRI) on Sunday seized 6.995-kg gold worth â¹2.27 crore from two persons who had arrived at Chennai airport in two different flights.
Summary:
The man had collapsed near the security clearance area of the airport.
Summary:
The picture shows the baby sleeping on the desk, while Archana carried on with work.
Summary:
There are also scenes displaying brands of tobacco products, the official added.
Summary:
Arsenal's winning run, stretching 12 matches, ended after their 2-2 draw at Crystal Palace, while Maurizio Sarri became the first Chelsea manager to go unbeaten in his first 10 Premier League matches in charge at Stamford Bridge.
Summary:
Indian cricketer Rohit Sharma shared a video wherein he is seen spending a Sunday afternoon playing gully cricket in the streets of Mumbai.
Summary:
Swiss tennis star Roger Federer won his 99th career title after winning the Swiss Indoors in his hometown of Basel for the ninth time in his career on Sunday.
Summary:
Four players from NFL team Jacksonville Jaguars were arrested in London on Saturday after allegedly attempting to leave a nightclub without paying a ã50,000 (approximately â¹47 lakh) bar bill.
Summary:
Shiromani Akali Dal (SAD) President Sukhbir Singh Badal on Sunday said he was ready to quit his post the moment the party wishes so.
I am duty bound to do whatever the party asks me to do," he added.
Summary:
Congress leader Shashi Tharoor on Sunday defended his comment referring PM Narendra Modi as 'a scorpion sitting on a Shivling' by saying that the comment was not made by him but by an RSS leader and has been in the public domain for six years.
Summary:
Delhi CM Arvind Kejriwal on Sunday said PM Narendra Modi should not fear a CBI probe in alleged corruption in the multi-crore Rafale deal if he is honest.
Summary:
Former Chhattisgarh CM Ajit Jogi said that he will campaign against the Congress in the Assembly election, but will not speak against the Gandhi family.
Summary:
Delhi Chief Minister Arvind Kejriwal on Sunday said that BJP President Amit Shah is actively encouraging people to violate the orders of the Supreme Court on Sabarimala temple.
Summary:
Founded in 2015, ZipGo facilitates office commute and offers app-based intra as well as inter-city bus services.n
Summary:
Paytm's total revenue more than quadrupled to â¹3,314 crore, from â¹780 crore in 2016-17.
Summary:
NASA's 28-year-old Hubble Space Telescope has resumed its operations after 22 days, the agency said on Saturday.
Summary:
Probes have shown that the accused has so far booked 2,042 tickets worth â¹57.69 lakh using the same modus operandi, officials said.
Summary:
Summary:
Summary:
Speaking about the time she moved to Mumbai at 18 to pursue modelling, Deepika Padukone said, "I'm sure [my parents] had sleepless nights...But...I was extremely focussed.
Summary:
Easwar's arrest comes amid crackdown on protesters who prevented women from entering the temple.
Summary:
During an El Clásico match in 2002, Barcelona fans threw a severed pig's head at Real Madrid's Luis Figo while he was taking a corner at Camp Nou. Figo had left Barcelona for Real in 2000 for a then world record transfer.
Summary:
For the first time in nearly 11 years, the El Clásico match between Spanish rivals Real Madrid and Barcelona will feature neither Cristiano Ronaldo nor Lionel Messi.
Summary:
"Extremely grateful to PM Shinzo Abe for the warm reception at his home.
Abe called PM Modi one of his "most dependable" friends.
Summary:
In 11 straight cuts, petrol price reduced by â¹2.78 and diesel by â¹1.64.
Summary:
Imtiyaz, who was travelling in his private car, was intercepted and abducted by the suspected militants who later shot him dead, officials said.
Summary:
Police have arrested Sarfuddin, who also reportedly said that four others were involved in the act.
Summary:
In a referendum held on Friday, Ireland voted to remove the offence of blasphemy from the constitution, with 64.85% of the voters supporting the move and over 35% voting 'No'.
Summary:
The 1,400-kilometre pipeline from Kakinada in Andhra Pradesh to Bharuch in Gujarat was made a decade ago.
Summary:
An ex-employee of recently shut Phantom Films, who accused Vikas Bahl of sexual harassment, has requested Bombay High Court to drop the case after Vikas had filed the defamation case against her.
Summary:
Veteran actor Sanjay Khan, while comparing the friendships during his time in Bollywood to the friendships now, said, "The value of friendships among the current reigning lot pains me.
Summary:
Summary:
Following the Indian Test squad announcement, former Indian pacer Zaheer Khan said, "It's not really fair for someone like Mayank Agarwal who's been part of the team." Speaking about Mayank's omission from the squad, Zaheer added, "Agarwal must be sitting there and thinking that 'What did I do wrong?
Summary:
American gymnast Simone Biles made the top all-around score of 60.965 during the early portions of the World Gymnastics Championships qualification, despite being admitted to hospital with a kidney stone on the eve of the event.
Summary:
Former Australian captain Steve Waugh said that the previous lack of stringent punishments for ball-tampering resulted in things getting "out of control" for the ball-tampering scandal that took place in Cape Town earlier this year.
Summary:
Kings XI Punjab have reportedly swapped Australian all-rounder Marcus Stoinis for Royal Challengers Bangalore's Indian cricketer Mandeep Singh.
Summary:
Real Madrid defeated Barcelona 11-1 in an El Clasico encounter in 1943, the largest margin of victory in El Clasico history.
Summary:
The initial complaint, filed a year ago, alleged Google was paying women less than men for similar work.
Summary:
Adding that GitHub will retain its product philosophy, he also said, "My job is to make GitHub better for you."
Summary:
China's first private rocket developed by Beijing-based Landspace failed to reach the orbit after it was launched on Saturday.
Summary:
Prime Minister Narendra Modi on Sunday said there is a need to work unitedly to address issues such as climate change, economic development and terrorism as peace does not only mean "no war".
Summary:
Taking a dig at Congress President Rahul Gandhi, Rajasthan Chief Minister Vasundhara Raje on Sunday asked, "In which Congress-ruled state has there been a woman Chief Minister?" "Congress...leaders are so used to telling lies that it has become their habit," Raje said while addressing women through audio bridge in the state.
Summary:
BSP chief Mayawati on Sunday condemned BJP President Amit Shah's statement that 'Supreme Court can't give orders that cannot be followed on Sabarimala issue'.
Summary:
Former Union Minister and currently BJP's spokesperson, Shahnawaz Hussain on Sunday said PM Narendra Modi is the "favourite" prime ministerial candidate of Muslims for next year's Lok Sabha polls.
Summary:
Summary:
Reacting to Virat Kohli becoming the first Indian to smash three consecutive ODI hundreds, ex-Pakistani pacer Shoaib Akhtar said that the Indian captain is "something else".
Summary:
Former Indian Space Research Organisation (ISRO) chief G Madhavan Nair on Saturday joined the BJP in the presence of party chief Amit Shah in Kerala's Thiruvananthapuram.
Summary:
Defence Minister Nirmala Sitharaman in an interview revealed that when she was serving as BJP spokesperson, she asked for a leave from then BJP Chief Nitin Gadkari to make achaar (pickle).
Summary:
The GST Council chaired by Finance Minister Arun Jaitley met 30 times and took a total of 918 decisions related to laws, rules and tax rates in over two years, the Finance Ministry said on Sunday.
Summary:
The teenager, who was 15 at the time, suffered a reaction after ordering from the restaurant in 2016.
Summary:
Five vehicles were gutted and three men suffered 30% burn injuries after a tanker carrying liquefied petroleum gas (LPG) exploded while speeding behind another tanker which was already on fire.
Summary:
BJP spokesperson Sambit Patra said Ansari is known to show a "Muslim bias".
Summary:
The General Budget is presented on February 1.
Summary:
An FIR has been lodged against 46 people in Uttar Pradesh after it was found that they did not build toilets despite having received government aid for the same.
Summary:
Claiming democracy was on the verge of becoming "non-existent" due to family politics, Transport Minister Nitin Gadkari said PM gave birth to PM earlier but BJP changed this.
"BJP's not one family's party.
Summary:
Prime Minister Narendra Modi has gifted two handcrafted stone bowls and handwoven dhurries to his Japanese counterpart Shinzo Abe during his visit to Japan.
Summary:
Sri Lankan Parliament's Speaker Karu Jayasuriya has recognised Ranil Wickremesinghe as the country's lawful PM, three days after his sacking by President Maithripala Sirisena.
Summary:
A woman in Siberia stabbed her ex-husband with a knife following an argument and took a selfie with the blood-soaked victim.
Summary:
Shah Rukh Khan will star in the upcoming biopic on astronaut Rakesh Sharma who was the first Indian to go into space in 1984.
Summary:
Ronnie Screwvala, while talking about #MeToo movement, said the movement will make the system in the film industry more transparent.
Summary:
Vishal Bhardwaj has said that actors are taking risks today and it is a good sign for Indian cinema, adding, "Aamir Khan is the only daring actor.
He transformed amazingly for 'Dangal'." Vishal further said that Aamir admits and acknowledges his age and works accordingly.
Summary:
Suspended Australian cricketer, David Warner's wife Candice Warner came out in his support saying that the sledging incident, involving her husband and his late Australia teammate Phil Hughes' brother Jason, was "very hurtful".
Summary:
English Premier League side Manchester United's players and coach Jose Mourinho welcomed the youth footballers who spent over two weeks trapped in a cave in northern Thailand earlier this year.
Summary:
Ronaldo, who is facing rape allegations, has scored seven goals and created four in ten Serie A appearances so far.
Summary:
Telecom equipment maker Samsung will conduct large-scale 5G trials in New Delhi in the first quarter of the next year, according to the company's India Senior VP Srini Sundararajan.
Summary:
In an apparent reference to JD(U) and BJP, the official Twitter account of jailed RJD chief Lalu Prasad Yadav on Saturday tweeted that they will first fight together and then against each other.
Summary:
A video shows strong winds pushing and pulling at a forest floor, giving the illusion of the forest as 'breathing' in Quebec, Canada.
Summary:
Summary:
"We will continue to extend our developmental assistance to friendly people of Sri Lanka," it added.
Summary:
Quoting an "RSS source" to describe the organisation's relationship with PM Narendra Modi, Congress MP Shashi Tharoor said he was like a "scorpion sitting on a shivling".
Summary:
The directive comes weeks after a Supreme Court order barred private entities from using Aadhaar for digital authentication.
Summary:
The 46-year-old attacker was taken into custody following a shootout and has been charged with 29 criminal counts including violence and firearms offences.
Summary:
The teacher found the rod in the boy's bag while scolding him and kept it on his table.
Summary:
Four youths from J&K were held for allegedly collecting funds using a fake letterhead of Delhi University with a forged signature of student union President Ankiv Baisoya.
Summary:
The elephants were searching for food in Kamalanga village in the Sadar forest range.
Summary:
A 21-year-old man allegedly committed suicide in a village in Uttar Pradesh's Mathura district on Saturday after his recently wedded wife refused to observe Karwa Chauth fast.
Summary:
Former Vice President Hamid Ansari has said that India was just as responsible as Pakistan for Partition.
Summary:
He has also been appointed as Principal Special Director in the ED.
Summary:
The Israel Defense Forces (IDF) on Saturday tweeted a video claiming that nearly a dozen rockets from the Gaza Strip were fired towards the southern part of the country.
Summary:
Pakistan PM Imran Khan's ex-wife Reham Khan has said that the country "received financial help from Saudi Arabia through begging".
Summary:
Over 2,200 cars have been found registered in the name of former Pakistan judge Sikandar Hayat, who according to his lawyer owns just one car.
Summary:
"You know, he's (Musk) landing rockets on robot drone rafts in the ocean.
You ever land a rocket on a robot drone?" he said.
Summary:
Kareena Kapoor Khan was named 'Vogue and IWC Schaffhausen Style Icon Of The Year' while Alia Bhatt won the award for 'Vogue and Lamborghini Youth Icon Of The Year' at Vogue Women Of The Year 2018.
Summary:
Summary:
Prakash Padukone has revealed that initially, he found it difficult to read about his daughter Deepika Padukone's link-up rumours, adding, "But nowadays, we're used to it." "Some of it...is true, but some of it is absolutely not correct.
Summary:
Summary:
Sharing her picture with husband Virat Kohli on the occasion of their first Karvachauth on Saturday, Anushka Sharma wrote, "My moon, my sun, my star, my everything...Happy Karvachauth to all." Virat also shared his picture with Anushka and captioned it, "My life.
Summary:
Actor Ranbir Kapoor was named 'Vogue Man Of The Year' at Vogue Women Of The Year 2018 which was held on Saturday at Grand Hyatt hotel in Mumbai.
Summary:
Sharing a group picture on the occasion of Karvachauth on Saturday, Anil Kapoor's wife Sunita Kapoor, wrote, "It's a full house...miss you Sri [late actress Sridevi]." Sunita, who hosts Karvachauth gathering at her residence every year, celebrated the occasion this year with Raveena Tandon, Neelam Kothari and others.
Summary:
The Congress has released its list of 37 candidates for the second phase of polling in Chhattisgarh Assembly elections.
Summary:
Haryana CM Manohar Lal Khattar has said the state is ready for simultaneous elections to Lok Sabha and Assembly if the Election Commission decides to implement it now.
Summary:
Union Minister of State Jitendra Singh has said mainstream politicians in Kashmir cannot go to the toilet without taking permission from the Hurriyat Conference.
Summary:
Dr BR Ambedkar University Vice-Chancellor Arvind Dixit has issued an apology after protests over his remark on Rajputs' decision to marry Jodhabai to Mughal emperor Akbar.
Summary:
A new Supreme Court bench has been formed to hear the pleas in Ram Janmabhoomi-Babri Masjid dispute.
Summary:
RBI Deputy Governor Viral Acharya has said that governments that don't respect central bank independence will "incur the wrath of financial markets, ignite economic fire".
Summary:
The Indian unit of the US-based company posted a 12% growth in revenue last fiscal at â¹13,098 crore.
Summary:
The Enforcement Directorate (ED) has attached assets worth over â¹33,500 crore in the over three-year tenure of its chief Karnal Singh who retires Sunday.
Summary:
The ODI witnessed India captain Virat Kohli become the first-ever Indian to smash three consecutive ODI centuries.
Summary:
India captain Virat Kohli on Saturday smashed a 110-ball century against Windies at Pune to equal ex-South Africa captain AB de Villiers' record of hitting four consecutive ODI hundreds on the Indian soil.
Summary:
The century was indeed Virat Kohli's third consecutive in ODI cricket but it was also his fourth straight ODI hundred "in India" as mentioned in our notification.
Summary:
Delhi's former Chief Minister Madan Lal Khurana passed away at the age of 82 in Delhi on Saturday.
Summary:
The shooting suspect, who reportedly walked in shouting "all Jews must die", has surrendered and is in police custody.
Summary:
A cat intruded a live fashion show and started walking on the ramp during the Esmod International Fashion Show held in Turkey's Istanbul this week.
Summary:
Actress Swara Bhasker has revealed that when she came to Mumbai, a director rejected her on their first meeting and said, "You look too intelligent." "I have still not understood what does this mean," she added.
Summary:
"There can be 100 people in the room and 99 don't believe in you...you just need one to believe in you...that was him (Bradley Cooper)," says Gaga.
Summary:
Windies all-rounder Ashley Nurse has revealed he celebrates his wickets by striking the 'Babaji ka Thullu' pose.
Summary:
The Indian men's hockey team will face Pakistan in the final of the Asian Champions Trophy for the fourth time on Sunday.
Summary:
The helicopter spiraled out of control before crashing into the car parking area.
Summary:
After Congress MLA Praniti Shinde called him a "drunkard", BJP MP Sharad Bansode said, "Those who were caught in rave parties in sleeveless clothes have no right to attack me." "I know what she does in Mumbai.
Summary:
Speaking on the Sabarimala temple row at a rally in Kerala's Kannur, BJP President Amit Shah said, "BJP is standing like a rock with devotees, Communist government be warned." "The government in Kerala has misused the Sabarimala issue.
Summary:
After BJP President Amit Shah said that his party would "stand like a rock" with Sabarimala temple devotees, Kerala CM Pinarayi Vijayan said, "Shah's statements...in Kannur are against the Constitution and law of the land." "It's a clear intention of their agenda of not guaranteeing the fundamental rights.
Summary:
A Special Task Force of Uttar Pradesh Police have arrested five racketeers in Lucknow for allegedly selling blood mixed with equal amount of saline water.
Summary:
Lok Janshakti Party's (LJP) MP from Bihar, Veena Devi's elder son Ashutosh Singh, aged 24, died on Saturday after his Toyota car hit the divider on Greater Noida Expressway and turned upside down.
Summary:
The jawans were out on an 'area domination' exercise when the Maoists triggered the blast.
Summary:
Software giant Microsoft has reclaimed its spot as the world's second most valuable company after overtaking e-commerce giant Amazon in market value on Friday.
Summary:
Actor Rishi Kapoor earlier said it was no longer economically viable to rebuild the studio.
Summary:
The company said it had not found any "verified or substantiated data breach of Aadhaar data".
Summary:
A magician's scroll containing a spell to 'get a woman to dance naked' has been auctioned in the UK for ã22,000 (over â¹20.6 lakh).
Summary:
Chris Broad on Saturday became only the second member of the ICC Elite Panel of Match Referees to reach 300 ODIs when he walked out for the toss in the third India-Windies ODI.
Summary:
Indian captain Virat Kohli broke former Indian cricketer Sachin Tendulkar's record to become the fastest batsman to reach the mark of 6,000 ODI runs in Asia.
Summary:
Liverpool conceded their first goal at home after a gap of 918 minutes in their 4-1 win against Cardiff City on Saturday.
Summary:
Twitter has apologised for failing to remove threatening tweets by Cesar Sayoc, who has been arrested on charges of sending explosive devices to over a dozen prominent Democrats in the US.
Summary:
Qualcomm on Friday said that Apple is $7 billion behind in patent royalty payments to the US mobile chipmaker.
Summary:
Pravin Bhateley, a 42-year-old Senior Manager at Oracle, was arrested from Bengaluru 15 years after he allegedly strangulated his wife in Ahmedabad and changed his identity.
Summary:
Verma was also handling Sterling Biotech's alleged â¹8,100-crore bank fraud case, in which CBI Special Director Rakesh Asthana was accused of bribery.
Summary:
Former India captain MS Dhoni, who has been dropped from the squads for both the T20I series against Australia and Windies, has missed only 11 of India's 104 T20I matches.
Summary:
Rahane realised he celebrated prematurely after Suresh Raina signalled from the dressing room that he required three more runs.
Summary:
Addressing a rally in Maharashtra, Congress MLA Praniti Shinde said, "We have a new dengue mosquito in our country, whose name is Modi baba (PM Narendra Modi).
Summary:
Home Minister Rajnath Singh on Saturday said, "What if a situation arises where all opposition parties come together to join hands.
Summary:
Unable to repay a â¹40-lakh loan, a 76-year-old Gurugram resident murdered a moneylender and killed his own wife after she backtracked on her promise to commit suicide together, police said on Friday.
Summary:
Karnataka CM HD Kumaraswamy broke down during his speech at a rally in Mandya district and said, "How long I'm alive is not important for me.
Summary:
"Every time the Army keeps quiet and bears the pain but this time we have filed an FIR against the stone pelters," he added.
Summary:
Five police personnel, including a sub-inspector, were suspended on Friday for giving preferential treatment to underworld don Dawood Ibrahim's brother Iqbal Kaskar in Maharashtra's Thane jail.
Summary:
The Central Pollution Control Board has advised people in Delhi to avoid strenuous outdoor exercises like jogging or running between November 1 and 10, as the air quality in the city is expected to deteriorate.
Summary:
Saudi Arabia's Foreign Minister Adel al-Jubeir has said that those behind the killing of journalist Jamal Khashoggi would be prosecuted in the kingdom.
Summary:
Tesla and Musk settled with the US Securities and Exchange Commission and agreed to pay $20 million each as fine.
Summary:
State-owned carrier Air India on Saturday announced the launch of 'red-eye' flights to some of the domestic destinations starting November 30.
Summary:
Pakistan's Supreme Court on Saturday reintroduced the ban on airing Indian movies and TV shows on local channels, overturning an earlier verdict by the Lahore High Court (LHC).
Summary:
Reacting to Krunal Pandya's Indian team selection for the upcoming T20I series against the Windies and Australia, his younger brother Hardik tweeted, "Congratulations on making it to the Indian team bro!
Summary:
Reacting to MS Dhoni being dropped from the T20I squad for the upcoming T20I series against the Windies and Australia, a user tweeted, "Dhoni knew about Rafale Deal: Sources." Other users reacted with tweets like, "#Dhoni end of the legend.
Summary:
The Pakistan cricket team registered its 10th straight T20I series win after beating Australia by 11 runs in the second T20I on Friday in Dubai.
Summary:
India's Sourav Kothari defeated Peter Gilchrist of Singapore 1134-944 of to clinch the 2018 WBL World Billiards Championship title in England on Friday.
Summary:
Former West Indies batsman Shivnarine Chanderpaul received the Honorary Doctor of Laws by the University of the West Indies.
Summary:
Pakistan captain Sarfraz Ahmed said that Pakistani fielder Fakhar Zaman's diving direct-hit to dismiss Australia's Ben McDermott in the 2nd T20I between the teams was better than former South African cricketer Jonty Rhodes' efforts.
Summary:
Indian batsmen Ishan Kishan and Ajinkya Rahane smashed centuries to help their side India C beat India B to lift the Deodhar Trophy at the Feroz Shah Kotla on Saturday.
Summary:
The 75,000-square-foot factory will produce robots for China as well as for export elsewhere in Asia.
Summary:
McLaren will produce only 106 Speedtails, the company said in a statement.
Summary:
While Kepler has discovered over 2,500 confirmed exoplanets since its launch in 2009, Dawn was the first spacecraft to orbit a body between Mars and Jupiter.
Summary:
A suspected agent of Pakistan's intelligence agency ISI has been arrested from the Bulandshahr district in Uttar Pradesh.
Summary:
The body of a 16-year-old girl was found on the lawns of Mumbai's Imperial Towers, which is said to be the tallest completed building in India, on Saturday.
Summary:
Pathan is the only Indian pacer to take a Test hat-trick.
Summary:
Summary:
Talking about #MeToo movement, Saif Ali Khan said, "I don't think anyone will misbehave with my people...I feel people will not have the guts to do that with them." Saif further said that the society is very unequal, adding, "We have to protect the ladies who don't have that protection.
Summary:
The 37-year-old sprinted after Hemraj top-edged a Jasprit Bumrah delivery and dived as the ball was about to land near fine leg.
Summary:
Talking about not including a fast-bowling all-rounder in place of injured Hardik Pandya in the squads for Windies and Australia series, chief selector MSK Prasad said, "It's very difficult to match Hardik's all-round abilities." "At least we don't see that kind of an ability in any player in India.
Summary:
The three-match T20I series will commence on November 4.
Summary:
Banned Australian cricketer David Warner left the pitch after being sledged while batting during a grade cricket match in Sydney today.
Summary:
Rohit and Parthiv had last featured for India in Test cricket in January this year, while Vijay was dropped during the England Test series in August.
Summary:
Union Minister Pon Radhakrishnan refused to get on stage at a function organised by the health department in Tamil Nadu on Friday after only 30-40 people turned up for the event.
Summary:
The van also had photos of Trump critics with bulls eyes superimposed on their faces.
Summary:
Sri Lankan President Maithripala Sirisena on Saturday suspended the country's parliament, a day after he sacked Ranil Wickremesinghe as Prime Minister and replaced him with former President Mahinda Rajapaksa.
Summary:
The family of Canadian billionaire Barry Sherman, who was found dead along with his wife in December last year, is offering a $7.6 million (over â¹55 crore) reward for information leading to an arrest.
Summary:
According to the report submitted to the Supreme Court, Aleema owns a benami property in Dubai.
Summary:
I run after good stories," she further said.
Summary:
On the occasion of Karvachauth on Saturday, Abhishek Bachchan took to his Twitter and wrote, "#KarvaChauth, good luck ladies...And the dutiful husbands who should also be fasting with their wives!
Summary:
Actress Sayani Gupta, while talking about #MeToo movement, said, "This should have happened 15-20 years ago.
This has been happening for generations now." "It just takes one person to talk about it.
Summary:
On being asked whether he minds being referred to as Deepika Padukone's father, Prakash Padukone said, "It's a moment of pride for any parent, when their child has achieved so much." He further revealed that Deepika liked badminton but her "first love" was modelling.
Summary:
On the occasion of Karvachauth on Saturday, Ayushmann Khurrana posted a photo with henna on his hand and captioned it, "She can't fast this time.
Summary:
'Blooming Buds', a film about a mother and daughter's relationship after the former's divorce, won best film award at GD Goenka University's film and photography festival 'Fotographia 2018' on Friday.
Summary:
FIFA will raise the prize money for the Women's World Cup from $15 million to $30 million starting with next year's edition in France, FIFA president Gianni Infantino announced on Friday.
Summary:
India's singles campaign at the French Open ended after Kidambi Srikanth, PV Sindhu and Saina Nehwal all lost their quarterfinal matches to crash out of the 2018 edition of the tournament.
Summary:
Epic Games, the creator of online multiplayer battlefield game Fortnite, has raised $1.25 billion in a funding round from investors including KKR, Vulcan Capital and esports startup aXiomatic.
Summary:
BBCâÂÂs Digital Launch Editor in Indian languages, Trushar Barot, has announced that he will be joining Facebook to fight fake news in India.
Summary:
He said the government has passed the Fugitive Economic Offenders Bill, which allows authorities to attach and confiscate economic offenders' properties and assets.
Summary:
Andhra Pradesh Chief Minister N Chandrababu Naidu on Friday accused the BJP-led NDA government of conspiring to "finish off" the state due to a "personal vengeance" against him.
Summary:
ISRO on Thursday said that it has successfully conducted a test for the safe and precise landing of Vikram, the lander aboard Chandrayaan-2 for India's second Moon mission.
Summary:
Mattis added that Russia's support to Syrian President Bashar al-Assad shows "its lack of sincere commitment to essential moral principles".
Summary:
The man suspected of mailing at least 14 pipe bombs to 11 individuals including former US President Barack Obama and former US State Secretary Hillary Clinton was arrested on Friday.
Summary:
Veteran actor Dalip Tahil has revealed that 25 years ago, a director told him to tear an actress' clothes without informing her for a rape scene.
Summary:
While announcing the omission of former Team India captain MS Dhoni from T20I squad for Windies and Australia series, BCCI Chief Selector MSK Prasad said they were "looking at the second keeper's slot." "We'll retain Rishabh [Pant] and Dinesh Karthik.
Summary:
Former Nationalist Congress Party (NCP) leader Tariq Anwar joined Congress on Saturday, nearly two decades after he quit Congress.
Summary:
Amrapali Group Chief Financial Officer Chander Wadhwa, who earlier remained silent claiming a "memory fail" answered in the Supreme Court on Friday.
Summary:
A Kerala ashram run by a preacher who supported the Supreme Court's decision to allow entry of women of menstruating age in Sabarimala Temple was on Saturday attacked by unidentified men.
Summary:
Pakistan remains a breeding ground and supporter of global terrorism and is responsible for three times the terror risk to humanity that Syria poses, according to a report by Mumbai-based think tank Strategic Foresight Group and Oxford University.
Summary:
Posters depicting supporters of US President Donald Trump as "trash" have appeared on garbage cans in New York City.
Summary:
Mocking US President Donald Trump during a campaign, former President Barack Obama on Friday said, "the Chinese are listening to the president's iPhone that he leaves in his golf cart." Last year, Trump reportedly left his iPhone in a golf cart at his New Jersey golf course.
Summary:
The fiancée of murdered Saudi journalist Jamal Khashoggi, Hatice Cengiz, has declined an invitation from US President Donald Trump, accusing him of not being sincere about investigating the killing.
Summary:
RBI Deputy Governor Viral Acharya on Friday said that government "decision making is short, like a T20 match.
Summary:
Actor Saif Ali Khan has requested the media to not photograph his son Taimur Ali Khan as he has begun to register things in his mind more consciously, as per reports.
Summary:
Hearing on two appeals pertaining to two poaching cases against actor Salman Khan have been deferred to December 18 by a sessions court in Jodhpur due to lack of time.
Summary:
Summary:
Ayushmann Khurrana has said every time he's at a concert, he feels like a "star", adding, "It's just that for your own good, you should get off that pedestal as soon as possible.
Summary:
Priyanka Chopra and Nick Jonas will reportedly appear on a TV show named 'Dance Plus 4'.
Priyanka also wants to acquaint him with the Indian viewers," stated reports.
Summary:
Summary:
Summary:
Summary:
A two-day-old newborn baby was found abandoned in a bush in Tripura's Sepahijala district, said the police on Friday.
Summary:
A 3-year-old nursery student was allegedly raped by a school bus driver in Noida while he was dropping her back home earlier this month.
Summary:
Stating that the two countries have shared values, he added, "We have a special strategic and global partnership...
Summary:
An RTI activist was thrashed at her residence by the children of a gram pradhan for allegedly levelling corruption charges against the latter in Muzaffarnagar district, a UP police official said on Saturday.
Summary:
A Russian tourist was allegedly gangraped by two unidentified men on the intervening night of Thursday and Friday in Manali, Himachal Pradesh.
Summary:
The PIL claims that renaming Allahabad is not in the interest of the public or the state government.
Summary:
Experian helps track stolen data when it appears on websites, chat rooms, blogs or for sale.
Summary:
India's regular wicketkeeper in the ODI and T20I formats, MS Dhoni, has not been named in squads for both the upcoming T20I series against Windies and Australia.
Summary:
When the winner was being announced, she was holding hands with the first runner-up, India's Meenakshi Chaudhary.
Summary:
Television show CID's actor Dayanand Shetty, who plays 'Daya' on the show, said he doesn't believe that the 21-year-old show is coming back on the channel after the "break".
Earlier, a Sony Entertainment statement said, "CID will take an intermittent break starting October 28."
Summary:
The court refused to hear Asthana's petition and said it would look into it on Monday.
Summary:
France's 56-year-old free climber Alain Robert, dubbed the French Spiderman, scaled the 754-foot-high, 46-storey Heron Tower in London without any rope in less than an hour.
Summary:
'Housefull 4' Executive Producer Manoj Mitra has claimed the molestation incident involving a dancer happened outside the film set and was a "personal matter" between her and some outsiders.
Summary:
Filmmaker Anurag Kashyap, who was criticised for his inaction over sexual harassment allegations against his ex-business partner Vikas Bahl, said, "All these years of my silence were to protect one person, the victim." "I'll take the consequences and I've voluntarily taken consequences and stepped back from work," he added.
Summary:
World's most expensive footballer Neymar has got the images of superhero characters Spiderman and Batman tattooed on his back.
Summary:
After being accused of sexual harassment by a former colleague earlier this month, BCCI CEO Rahul Johri has been accused of asking for sexual favours earlier this year by an unnamed woman.
Summary:
Australian cricketer Steve Smith, who is currently serving a one-year ban from cricket over the ball-tampering scandal, has made his first appearance in the Australian Financial Review (AFR) Young Rich List.
Summary:
Shares of the company, which has a market value of $801 billion, fell 10% on Friday.
Summary:
Summary:
A passenger named Jitendra Solanki was arrested by Air Intelligence Unit of Customs at Mumbai's Chhatrapati Shivaji Maharaj International Airport for allegedly hiding three gold bars worth over â¹87 lakh in mobile flip covers.
Summary:
Ministry of Defence's spokesperson Swaranashree Rao Rajashekar has been sent on leave after she tweeted to former Navy chief Admiral Arun Prakash (retired) that military officers misuse privileges of rank.
Summary:
At least four people were killed and around 24 others were injured on Friday after a bus hit an electric pole, overturned and fell into a ditch in Bihar's capital Patna on Friday.
Summary:
Sirisena sacked Wickremesinghe following months of tension between the two leaders that led to a political crisis.
Summary:
Shubman Gill, who was the second-highest run-scorer at the 2018 Under-19 World Cup, said, "I am ready.
Summary:
Stuart Law, the Windies team coach, has said that their side's batting has caused the Indian team to bring back pacers Jasprit Bumrah and Bhuvneshwar Kumar for the last three ODIs of the series.
Summary:
Dhanda, who secured a bronze medal at the event, had earlier won the silver medal at the Commonwealth Games 2018 in Australia.
Summary:
Attached to Virgin's 747 aircraft Cosmic Girl that was converted to launch rockets, LauncherOne is designed to carry small satellites into orbit around the Earth.
Summary:
Nearly 90% of free apps on the Google Play store share data with Google's parent company Alphabet, according to an Oxford research.
Summary:
WiFiStudy will continue to operate independently post the acquisition.
Summary:
Hawaii scientists have found two pea-sized baby octopuses floating on plastic trash they were cleaning up while monitoring coral reefs.
Summary:
Rail, road, water and air connectivity will contribute to the overall development of the region, he further said.
Summary:
School children were among the at least 20 people killed in flash floods near Jordan's shore of the Dead Sea, officials said.
Summary:
ICICI Bank on Friday reported a 56% decline in second-quarter net profit at â¹909 crore as expenses increased.
Summary:
While the Sandesaras are reported to be in Nigeria, Patel is said to be in the US.
Summary:
Summary:
Bharatiya Janata Party President (BJP) Amit Shah on Friday met Bihar CM Nitish Kumar and announced that BJP and Janata Dal (United) will fight on equal number of seats for Lok Sabha Elections 2019 in Bihar.
Summary:
Madhya Pradesh Congress MLA Govind Singh during an interview said, "There are many instances of #MeToo in our villages.
Summary:
A picture of BCCI chief selector MSK Prasad performing 'pitch puja' ahead of the tied second India-Windies ODI at the Dr YS Rajasekhara Reddy ACA-VDCA Cricket Stadium in Visakhapatnam has surfaced online.
Summary:
"When people in Thailand want a condom, they ask for a 'Mechai'," added Gates.
Summary:
CBI has registered a case against self-styled godman Daati Maharaj and three others for allegedly raping and having unnatural sex with an inmate of his ashram.
Summary:
Paulomi Tripathi, First Secretary in India's Permanent Mission to the United Nations has called on the world body to impose sanctions on "terrorist individuals and entities involved in sexual and gender-based violence in armed conflicts".
Summary:
Army jawan Rajendra Singh lost his life when a group of youths hurled stones at an Army vehicle in Jammu and Kashmir, an Army official informed on Friday.
Summary:
At least seven people were killed and three others were injured in an explosion at a workshop of a firecracker factory in Uttar Pradesh's Budaun on Friday.
Summary:
A video of two Turkish women plunging into a sinkhole in the Turkish city of Diyarbakir has surfaced online.
Summary:
The broader Nifty 50 Index dropped 95 points to settle at 10,030, dragged by IT and banking stocks.
Summary:
Essar Steel's promoters, the Ruia family, on Thursday offered to pay â¹54,389 crore to settle all claims and withdraw company from insolvency.
Summary:
The world's 2,158 billionaires grew their combined wealth by $1.4 trillion last year, more than the GDP of Spain or Australia, a report by Swiss bank UBS said.
Summary:
Sharing his childhood picture on social media on Friday, Ranveer Singh wrote, "Hands in the air, like you just don't care!
#fridayfeeling." In the picture, Ranveer can be seen standing with his hands up in the air and smiling.
Summary:
South Africa's captain Faf du Plessis has said that the South African team will not use the ball-tampering scandal to sledge the Australian cricket team in their upcoming series against them.
Summary:
Liverpool forward Mohamed Salah exchanged his club jersey for a box of chocolates from a fan after his sideâÂÂs Champions League win over Red Star Belgrade.
Summary:
Indian cricketer Gautam Gambhir took to Twitter to appreciate the gestures and condolences paid by former Pakistani cricketers Shahid Afridi and Shoaib Akhtar after the train mishap in Amritsar.
Summary:
NBA legend and billionaire Michael Jordan has invested in an esports startup aXiomatic as part of a $26 million Series C funding round.
Summary:
James Sutherland, the outgoing chief executive of Cricket Australia (CA), has described hearing about the ball-tampering scandal that occurred during the Cape Town Test in March as a "serious WTF moment".
Summary:
Speaking about Indian captain Virat Kohli, spinner Harbhajan Singh said, "It is not easy being Virat Kohli.
He is just unbelievable," Harbhajan added.
Summary:
Taking a dig at Jammu and Kashmir Governor Satya Pal Malik, Congress MP P Chidambaram tweeted, "We were told that the last Viceroy was Lord Mountbatten.
Summary:
Snapchat's parent Snap reported a decline in the photo-sharing app's daily active users (DAUs) by 2 million to 186 million from the previous quarter.
Summary:
Vasile Mereacre and Brandon Glover have been accused of stealing data of 55,000 usersâ accounts on Lynda.
Summary:
More than 400 police officers in Bihar have been dismissed for violating the liquor ban in the state, authorities said.
Summary:
Jamal's son Salah Khashoggi holds dual US-Saudi citizenship and had thus far been under a travel ban.
Summary:
Nalaka de Silva, a former top counter-terrorism Sri Lankan official has been arrested over an alleged plot to assassinate President Maithripala Sirisena.
Summary:
The Competition Commission of India (CCI) started a probe into beer price-fixing allegations after Budweiser maker AB InBev told the authorities it detected an industry cartel, according to Reuters.
Summary:
Two male penguins who paired up as a "same-sex couple" have successfully incubated a baby chick at a Sydney aquarium.
Summary:
After being arrested during his protest outside the CBI headquarters in Delhi on Friday, Congress President Rahul Gandhi said, "PM (Narendra Modi) can run, he can hide but in the end, the truth will be revealed." "Removing CBI Director (Alok Verma) will not help.
Summary:
Umpire Aleem Dar stayed on the ground and waited to confirm a DRS decision despite heavy rain during the fifth Sri Lanka-England ODI.
Summary:
Japan's 19-year-old runner Rei Iida crawled for over 200 metres after fracturing her leg to complete her stage of a marathon relay.
Summary:
Ronaldo took the selfie with the supporter's phone when the latter was surrounded by the security.
Summary:
Apple CEO Tim Cook in an interview said, "Being gay is God's greatest gift to me." "I made it public because I started to receive stories from kids who read online that I was gay," added Cook.
Summary:
Alibaba Co-Founder Jack Ma at an innovation summit in Israel on Thursday said, "When I was young, I hated Bill Gates because I thought Microsoft took all the opportunities." "IBM, Oracle, they took all the opportunities," he added.
Summary:
Shares of Amazon fell over 9% in extended trading on Thursday despite the company posting a record $2.9 billion profit for the July-September quarter.
Summary:
The bricks initially smell of ammonia but the odour disappears after 48 hours, the students' supervisor said.
Summary:
In a goof-up by Kerala Police, a photograph of a plain-clothed policeman was added to the album of 210 men suspected to have indulged in the violence at Sabarimala temple last week.
Summary:
In a first, the prison department in Himachal Pradesh has allowed women inmates in jails across the state to meet their husbands on Karva Chauth.
Summary:
Avinash Sangwan, a 20-year-old dance instructor was shot dead minutes after he mocked a man for his dance steps during a religious procession in Delhi on Wednesday.
Summary:
Japanese journalist Jumpei Yasuda, who was released by Islamist militants after three years in captivity, has revealed he could not scratch his head as he wasn't allowed to make noise.
Summary:
Amnesty said the raid "shows a disturbing pattern of the government silencing organisations that question power".
Summary:
'Badhaai Ho' director Amit Sharma has said late pregnancies are not unfamiliar to him, adding, "My great-grandmother and grandmother were pregnant at the same time." "And my two wonderful co-writers Akshat and Shantanu had seen the same happening in their family," he added.
Summary:
Confirming the news, the script writer of the franchise Stuart Beattie said, "Jack Sparrow [the character played by Depp] will be his legacy.
Summary:
Kareena Kapoor Khan and Priyanka Chopra will appear together as guests in the sixth season of Karan Johar's 'Koffee With Karan', as per reports.
Summary:
Revealing the name of the Hindi remake of Telugu film 'Arjun Reddy', Shahid Kapoor wrote, "Arjun Reddy was loved and appreciated now it is time for Kabir Singh!
Summary:
Scott Vetere, the University of Michigan assistant gymnastics coach, has resigned after being arrested for allegedly having public sex in a car with an 18-year-old team member near the university's training facilities.
Summary:
The Indian cricket teamâÂÂs chief selector MSK Prasad has said that the reason behind Kedar Jadhav not being picked in the India squad for the remaining three ODIs against the Windies is his fitness history.
Summary:
Former Indian cricketer Sachin Tendulkar and his wife Anjali lit 108 diyas in a monastery in Bhutan during his recent visit to the nation.
"Got to spend some time at this beautiful monastery in Bhutan.
Summary:
Beginning in mid-November, Balogh "will lead infrastructure, information security and IT," Airbnb said in a blog post.
Summary:
US-based online education startup UdacityâÂÂs CEO, Vishal Makhijani, has stepped down from the position "to move to new challenges" the company's founder Sebastian Thrun said in a blog post.
Summary:
An Indian Army soldier was martyred and two terrorists were killed in an encounter in the Sopore town of Jammu and Kashmir on Friday, authorities said.
Summary:
Around 25 armed men barged into a dairy in a village in Muzaffarnagar district on Thursday and allegedly stole 18 buffaloes worth â¹20 lakh after holding the owner hostage, said UP police.
Summary:
The Hyderabad High Court on Thursday extended the house arrest of activist Varavara Rao by three weeks.
Summary:
Iran had agreed to curb its nuclear programme under the deal in return for the lifting of sanctions.
Summary:
Safeguard yourself against life's unpleasant surprises with Aegon Life iTerm.
Summary:
During a Supreme Court hearing on government's decision to send CBI Director Alok Verma on leave, Chief Justice of India Ranjan Gogoi on Friday ruled, Interim Director M Nageswara is not authorised to take policy decisions.
Summary:
CEO Sundar Pichai has revealed that Google fired 48 employees, including 13 senior managers, for sexual harassment over the past two years.
Summary:
Congress President Rahul Gandhi and other party leaders were arrested by the police while protesting at the CBI headquarters in Delhi on Friday.
Summary:
A female junior artiste has alleged that a man touched her private parts when she tried to stop him and five others from molesting her friend on 'Housefull 4' sets on Thursday.
Summary:
Ahead of CBI chief Alok Verma's Supreme Court hearing on Friday, CBI deputy chief Rakesh Asthana also moved to the apex court challenging the government's decision to send him on leave.
Summary:
Android Co-founder Andy Rubin on Thursday refuted a New York Times report that claimed he forced an employee into oral sex during an extramarital affair in 2013.
Summary:
China's Foreign Ministry has suggested that US President Donald Trump should swap his Apple iPhone for a Huawei mobile, as it denied a report claiming that China was spying on his private calls.
Summary:
Six weeks ahead of Rajasthan Assembly Elections, BJP MLA from Ladpura, Bhawani Singh Rajawat on Wednesday threatened to slap a government official over delay in procurement of lentils, saying, "Aisa thappad marunga, pant me peshab kar doge".
Summary:
This comes after an ordinance by former Pakistan President Mamnoon Hussain that prohibited them under a UN resolution lapsed.
Summary:
A woman on Friday stabbed 14 children with a kitchen knife at the gate of a kindergarten in China's southwestern city of Chongqing.
Summary:
Philippine President Rodrigo Duterte, whose war on drugs has killed over 4,000 people, has fired the Bureau of Customs' head and ordered all top bureau officials replaced after the agency failed to intercept over a ton of drugs.
Summary:
Donald Trump's charitable foundation paid $10,000 for a portrait of the US President at a 2014 auction after no other bids were received, according to an attorney for Trump.
Summary:
Kiara wore an embroidered high-slit long kurta with elaborate ruffled sleeves paired with shimmery ivory pants.
Summary:
Saif Ali Khan, Radhika Apte, Chitrangda Singh and Rohan Mehra starrer 'Baazaar', which released today, "is a mediocre film", according to Hindustan Times.
Summary:
Summary:
On November 15, the wedding will reportedly be as per Sindhi customs.
Summary:
Amit further said Ayushmann suggested Gajraj Rao's name to play his father's role.
Summary:
Wishing Sussanne Khan on her birthday on Friday, Sonali Bendre posted a picture with Sussanne and Sussanne's son, captioning it, "As we grow older, we become kids again...while our kids start giving us grown-up looks!" "Cheers to all our shenanigans...the madness, the laughter and the love.
Summary:
Urging PM Narendra Modi to remember the sacrifices made by Congress, Nationalist Congress Party President Sharad Pawar said, "Modiji says one family ruled this country...
Summary:
Human Resource Development Minister Prakash Javadekar on Thursday accused Congress President Rahul Gandhi of "cursing" PM Narendra Modi "day in, day out" and crossing "all limits" of civility.
Summary:
An 8-year-old boy died after sustaining a head injury during a scuffle between two groups of minor boys in Delhi on Thursday, said the police.
Summary:
Amritsar Mayor Kamaljeet Singh on Thursday said the Municipal Corporation will give jobs to the family members of those who were killed in the train accident.
Summary:
A court has directed the police to file an FIR against Tamil Nadu BJP President Tamilisai Soundararajan on the basis of a complaint filed by the father of Lois Sofia.
Summary:
The court also imposed a fine of â¹10,000 on the convict, of which â¹8,000 will be given to the minor.
Summary:
Senior IPS officer Richard Yimto has been suspended and booked by Nagaland Police after 6.9 kg of seized drugs were found in his home.
The drugs were originally seized from two car-borne people, following which Yimto took them home.
Summary:
Assange sought asylum in Ecuador's London embassy in 2012 to avoid extradition to Sweden, where he was accused of multiple sexual assaults.
Summary:
Google Co-founder Larry Page asked Rubin to resign after the woman's complaint, the report had added.
Summary:
Singer and Bigg Boss 12 contestant Anup Jalota revealed during the show that he spent â¹7 lakh to get 7,000 hair strands transplanted after he lost all of his front hair.
Summary:
Topshop's owner and retail billionaire Sir Philip Green has been named as accused for "serious and repeated sexual harassment, racist abuse and bullying" by Lord Hain, former British House of Commons leader.
Summary:
Talking about diving full stretch to complete his 150th run in the second Windies ODI, Virat Kohli said, "If I've to dive six times in an over.
Summary:
Attacking the Centre over removal of CBI Director Alok Verma, Congress President Rahul Gandhi said, sending Verma on leave at 2 am was "illegal and criminal".
Summary:
Jadhav had injured his hamstring in Asia Cup final last month and played for India A today.
Summary:
The CoA has appointed a three-member committee to probe anonymous sexual harassment allegations against BCCI CEO Rahul Johri.
Summary:
The Indian men's hockey team defeated South Korea 4-1 in their final round-robin match on Wednesday to enter the semi-finals of the Asian Champions Trophy 2018.
Summary:
A portrait of 'Edmond Belamy', the first-ever portrait made by Artificial Intelligence to be sold at a major auction, sold for a record â¹3.16 crore ($432,500) at Christie's New York on Thursday.
Summary:
At a rally in Bihar, Gujarat MLA Jignesh Mevani said, "PM (Narendra Modi) is not ready to appeal to the people of Gujarat to stop violence against the Bihar and Uttar Pradesh migrants.
Summary:
Police said they are checking the role of detained people with the help of video footage.
Summary:
A nun, who was part of the protests demanding the arrest of rape-accused Bishop Franco Mulakkal, was heckled and asked to leave the funeral of Kuriakose Kattuthara, the Jalandhar priest who testified against the Bishop.
"I know Father Kattuthara for many years.
Summary:
Women will now be able to apply to join the special forces units including the SAS and the SBS.
Summary:
Amrapali also allegedly diverted â¹600 crore of â¹1,040 crore collected from homebuyers of one of the housing projects.
Summary:
ArcelorMittal said the law does not permit Ruias' offer to withdraw Essar Steel from insolvency at this stage.
Summary:
Bandhan Bank shares have fallen nearly 50% since their record high on August 9, wiping out nearly â¹42,000 crore from the bank's market capitalisation.
Summary:
Google is rolling out a feature called 'Follow' on Google Maps to give users updates from places such as restaurants or stores that they follow.
Summary:
Researchers have developed small flying robots called FlyCroTugs that can pull objects up to 40 times their weight.
Summary:
Summary:
Union Minister Satya Pal Singh said he dreams of an India where the President takes the oath of office on the Vedas as the US President does on the Bible.
Summary:
Congress President Rahul Gandhi on Thursday said he would like half his party's chief ministers in the country to be women in the next five to seven years.
Summary:
She said that the BJP never ducked any question on Rafale and alleged that the Congress was moving from one milepost to another.
Summary:
Summary:
An Indian origin Australian man died in a paragliding crash in Himachal Pradesh's Mandi district.
The NRI paraglider went missing after he took off from Bir Billing paragliding site.
Summary:
Punjab Minister Navjot Singh Sidhu on Thursday wrote a letter to Union Railway Minister Piyush Goyal, seeking installation of CCTV cameras and high fencing along rail tracks to prevent accidents.
Summary:
People seeking to live in the UK can provide DNA on a voluntary basis to prove a relationship to support an application.
Summary:
Tata Motors-owned British luxury carmaker Jaguar Land Rover on Thursday officially launched its new $1.6 billion manufacturing plant in Nitra, Slovakia.
Summary:
Currently, his company has over 6,000 employees and does over â¹6,000 crore worth of exports.
Summary:
The traffic police came across the photo and said the mask can be dangerous as it could fall off and obscure the driver's vision.
Summary:
Packages containing bombs were sent to former US Vice President Joe Biden and Hollywood actor Robert De Niro, officials said.
Summary:
Celina Jaitly has revealed that when she was 16 years old, she was in a traumatic relationship with a closeted gay man.
Summary:
"I'm just happy I've been able to play for this long and hopefully many more years to go," he added.
Summary:
An NGO, Common Cause, has filed a PIL in Supreme Court against the decision of sending CBI Director Alok Verma on leave amid the infighting in the investigating agency and called it a "brazen interference" by the Centre.
Summary:
Andhra Pradesh DGP RP Thakur on Thursday said that the man who stabbed YSR Congress President YS Jagan Mohan Reddy claims to be his "fan".
It appears that he has done so for publicity," Thakur added.
Summary:
The Enforcement Directorate on Thursday raided human rights NGO Amnesty International's office in Bengaluru in connection with a foreign exchange contravention case.
Summary:
A human skull and some bones were recovered from a tank in a municipality-run school in Delhi's Rohini, police said on Thursday.
Summary:
Baradar was the second-in-command of the Afghan Taliban and coordinated the militant group's operations in southern Afghanistan.
Summary:
Saudi Arabia's public prosecutor has said that dissident journalist Jamal Khashoggi's murder was premeditated, the state media reported.
Summary:
Zewde has become the only female head of state in Africa following her appointment to the ceremonial post of the President.
Summary:
Airtel's domestic average revenue per user has nearly halved to â¹101 from an industry high of â¹196 nine quarters ago.
Summary:
The Enforcement Directorate (ED) has filed a chargesheet against former Finance Minister P Chidambaram in the Aircel-Maxis money laundering case.
Summary:
The local subsidiary of Japan's Suzuki Motor Corporation reported a profit of â¹2,240.4 crore in the July-September quarter, a decline of 10% from the year-ago period.
Summary:
Chidambaram on Thursday said that the country is witnessing the implosion of investigative agencies.
Chidambaram's remarks came after the government sent CBI's two top officers on leave, as they were involved in a bitter spat.
Summary:
Suárez swept the ball underneath the jumping wall and almost started celebrating thinking the ball went inside the goal.
Summary:
Twitter has posted a 29% year-over-year increase in revenue at $758 million in the third quarter of 2018.
Summary:
Under Gandhi, Congress will return to power in 2019, he said.
Summary:
Goa Health Minister Vishwajit Rane said he could not share any update on ailing Chief Minister Manohar Parrikar's current condition.
Summary:
Ford has said it will recall nearly 1.5 million Focus cars in North America over a faulty part that could lead to engine stalls or an inability to restart the vehicle.
Summary:
An agreement between Pakistan's space agency SUPARCO and a Chinese company has already been signed, the Minister added.
Summary:
Poblete further said this is an indication of Russia's intention to militarise space with 'offensive' weaponry.
Summary:
NASA's Parker Solar Probe aimed to enter the Sun's outer atmosphere captured an image of the Earth, about 43 million kilometres (27 million miles) from the planet.
Summary:
The Chinese military will act "at any cost" to foil any attempt to separate self-governed Taiwan from the mainland, Chinese Defence Minister General Wei Fenghe has said.
Summary:
US President Donald Trump has appointed Neil Chatterjee as the Chairman of the Federal Energy Regulatory Commission (FERC) which oversees electricity transmission and interstate natural gas pipelines and facilities.
Summary:
Out of the 94 hat-tricks witnessed in international cricket till now, only one has been an all-LBW hat-trick, which was achieved by Pakistani bowler Aaqib Javed against India on October 25, 1991.
Summary:
The actor further revealed he also took dance lessons, and added that it helped him understand rhythm and beat.
Summary:
President Ram Nath Kovind on Thursday dismissed a plea seeking to disqualify 27 AAP MLAs from Delhi for allegedly holding office of profit by being appointed as chairpersons of 'Rogi Kalyan Samitis' attached to various city hospitals.
Summary:
Tesla reported a profit of $312 million for the July-September quarter helped by a surge in production of its Model 3 sedan.
Summary:
Breaking his silence on the â¹20-crore extortion plan allegedly masterminded by his secretary Sonia Dhawan, Paytm CEO Vijay Shekhar Sharma said, "I'm stunned and want to figure out the truth.
Summary:
The planet-hunting Kepler space has become the third NASA space telescope to go into 'sleep mode' after Chandra and Hubble's gyroscopes malfunctioned earlier this month.
Summary:
Kerala Police on Wednesday released CCTV images of 210 men suspected to have indulged in violence during the protests at Sabarimala Temple last week and issued a lookout notice against them.
Summary:
Chinese and Russian spies are listening to the calls US President Donald Trump makes through his personal iPhones, The New York Times (NYT) has reported.
Summary:
Duchess of Sussex Meghan Markle forgot to remove a tag from her red dress on her arrival in Tonga from Fiji for a royal visit with her husband Prince Harry on Thursday.
Summary:
Textile firm Welspun India's Managing Director Rajesh Mandawewala has reportedly purchased a three-floor sea-facing penthouse in an upcoming South Mumbai residential tower for around â¹127 crore.
Summary:
Hong Kong airline Cathay Pacific has announced it has suffered a data leak affecting up to 94 lakh passengers.
Summary:
"Today we are living in an India of unprecedented hope and promise," Ambani further said.
Summary:
Samsung is developing laptops with foldable displays, a company executive said at a recent event.
Summary:
The UK Information Commissioner's Office (ICO) has fined Facebook a maximum amount of around $645,000 allowed under the country's law over the Cambridge Analytica scandal.
Summary:
The island was a natural habitat for Hawaiian monk seals and green sea turtles.
Summary:
The North Atlantic Treaty Organisation (NATO) on Thursday began its largest military exercise since the Cold War in Norway.
Summary:
OnePlus continued to lead in premium smartphone segment for the second consecutive quarter during Q3, as per Counterpoint Research's analysis on Indian smartphone market.
Summary:
After celebrity management agency KWAN Entertainment's co-founder Anirban Das Blah stepped down from his position following sexual harassment allegations, the company's CEO Vijay Subramaniam said in a statement, "We have no sympathy for Anirban." "KWAN has never been about one individual," he added.
Summary:
Meira further said Anirban told her that to become a star, she had to find her "inner sexiness".
Summary:
Amid the ongoing CBI controversy, Delhi CM Arvind Kejriwal shared PM Narendra Modi's tweet from 2013, when he was serving as Gujarat CM and UPA government was at the Centre.
Summary:
Fast bowler Mohammad Shami has been dropped from the India squad for the last three ODIs against Windies.
Summary:
Bawne adjusted his right-hand glove while walking to the middle and suddenly realised he forgot to bring the other.
Summary:
Bravo, who last played an international match in 2016, represented Windies in 40 Tests, 164 ODIs and 66 T20Is, scoring 6,310 runs and taking 337 wickets.
Summary:
"Today, Sonia was drawing over â¹6 lakh" as Paytm VP, her family added.
Summary:
Remarking that the accused, Brajesh Thakur, is a "very influential person", the court said he should be shifted to a jail outside Bihar.
Summary:
Income Tax Department on Thursday raided around 100 locations attached to four sand mining companies in Tamil Nadu and Andhra Pradesh over allegations of tax evasion and exporting beach minerals despite ban.
Summary:
Russia will target European nations that host the US' nuclear missiles, President Vladimir Putin has warned.
Summary:
Diamond merchant Savji Dholakia, owner of Hari Krishna Exports, gifted fixed deposits to about 900 diamond polishers who didn't opt for cars.
Summary:
The Supreme Court has agreed to hear a plea seeking an inquiry by a Special Investigation Team into allegations of corruption against CBI officers, including Special Director Rakesh Asthana who was sent on leave.
Summary:
Philyra designed two perfumes, which would be launched in 2019, for a beauty company.
Summary:
After the government sent CBI Director Alok Verma and CBI Special Director Rakesh Asthana on leave, Andhra Pradesh Chief Minister N Chandrababu Naidu said, "The Prime Minister...
Summary:
Summary:
Congress chief spokesperson Randeep Surjewala said the party will hold protests outside all CBI offices in the country on Friday to demand the reinstatement of CBI Director Alok Verma, who has been sent on leave.
Summary:
Germany-based smart-thermostat startup Tado has raised $50 million in funding from Amazon and other investors.
Summary:
Korean shaving company Dorco has acquired a 10% stake in Chandigarh-based grooming startup LetsShave for an undisclosed amount.
Summary:
Summary:
Russia has successfully sent an unmanned Soyuz rocket into space weeks after a failed launch endangered the lives of two astronauts.
Summary:
A team of surgeons in the UK repaired the spinal cords of two babies while they were still in the womb.
Summary:
A CRPF jawan allegedly committed suicide by shooting himself with his service rifle in the battalion's headquarters in Sukma, Chhattisgarh on Wednesday, said the police.
Summary:
The passenger, Harpreet Singh, was caught after he underwent the pre-embarkation security check and a subsequent pat-down search.
Summary:
An IIT Kharagpur MTech final year student was found hanging from the ceiling fan of his hostel room on Wednesday, police said.
Summary:
The man spent his welfare money on alcohol and was described as being violent towards his wife and children.
Summary:
India needs to ensure that telecom manufacturing facilities are shifted here, Mittal further said.
Summary:
Summary:
Actor Jackie Shroff, while speaking about the #MeToo movement in Bollywood, said, "It's so unfortunate that all my colleagues are fighting.
Summary:
Summary:
A Bengaluru courier firm has been directed by the consumer forum to pay â¹25,000 to two consumers after it mistakenly delivered a package sent to London, containing a rakhi, to France in 2016.
"Rakhi...
Summary:
Several officers reportedly entered the CBI headquarters on Tuesday at around 11 pm with a government order and sealed offices of Director Alok Verma and Special Director Rakesh Asthana amid their internal feud.
Summary:
The four men who were held outside CBI chief Alok Verma's residence in Delhi have identified themselves as officers from Intelligence Bureau (IB), reports quoting police said.
Summary:
Reacting to Team India captain Virat Kohli becoming the fastest player in history to score 10,000 ODI runs, Mumbai Police tweeted, "No over-speeding challan here, just accolades & best wishes for more @imVkohli!
Summary:
Juventus forward Cristiano Ronaldo's former girlfriend Nereida Gallardo has said she will give evidence in favour of the footballer in the rape case against him.
An American woman has alleged Ronaldo raped her in a hotel in 2009.
Summary:
Following an Uttarakhand High Court order, the government has ordered internet service providers to block 827 websites that host pornographic content.
Summary:
Tamil Nadu CM EK Palaniswami on Thursday said he welcomes the Madras High Court's verdict upholding the disqualification of 18 rebel AIADMK MLAs. He added that if bypolls are announced for the 18 Assembly seats that these MLAs had held, his party will win all the seats.
Summary:
Dhinakaran said the verdict isn't a setback and future course of action will be decided after a meeting with the former MLAs.
Summary:
The attacker was identified as a worker at the airport who approached Reddy asking him for a selfie and attacked him.
Summary:
Brother-in-law of Paytm CEO Vijay Shekhar Sharma's secretary Sonia Dhawan has opposed her arrest in the blackmail case saying, "She had stocks worth â¹10 crore.
Summary:
A man has been arrested for giving instant triple talaq to his wife, in the first registered case in Madhya Pradesh under the new ordinance making the illegal practice a punishable offence.
Summary:
The Kerala Police has issued a lookout notice for 210 people that it suspects were involved in instigating violence and manhandling journalists and devotees while barring women's entry to the Sabarimala Temple.
Summary:
A Delhi court has granted bail to CM Arvind Kejriwal, Deputy CM Manish Sisodia and other AAP MLAs who are accused in an alleged assault on Chief Secretary Anshu Prakash.
Summary:
The world's richest person, Amazon's Jeff Bezos lost $8.2 billion, while Facebook CEO Mark Zuckerberg dropped $3.2 billion.
Summary:
PM Narendra Modi will address the gathering via video-conferencing and present car keys to two women employees, who would be visiting Delhi.
Summary:
Union Minister Maneka Gandhi said she is "very grateful" to PM Narendra Modi and Union Home Minister Rajnath Singh for agreeing to organise a Group of Ministers (GoM) to strengthen the legal framework for dealing with sexual harassment at the workplace.
Summary:
The Banaras Hindu University (BHU) administration has suspended Zoology Department Professor SK Chaubey after female students levelled allegations of sexual misconduct against him.
Summary:
Summary:
Ahead of the Lok Sabha polls, Bihar BJP President Nityanand Rai said BJP will embark on a membership drive to enrol 50 workers for each polling booth area.
Summary:
On Tesla's earnings call on Wednesday, the startup's CEO Elon Musk said that he approved the Model Y prototype for production.
Summary:
Six people were killed and four others were injured on Tuesday night when two families fought over panchayat elections held in 2016 in a Gujarat village, the police said.
Summary:
A newly married man was arrested in Tamil Nadu's Coimbatore after he allegedly impregnated a minor girl whom he had promised to marry, said the police.
Summary:
Delhi University's Standing Committee on Academic Matters has suggested removing Dalit writer Kancha Ilaiah's books, 'Why I am not a Hindu' and 'Post-Hindu India', from its political science syllabus over their "controversial content".
Summary:
Presenting first-in-segment and best-in-class features with advanced safety, superior technology and connected mobility.
Summary:
Kohler, a global lifestyle brand and the Principal Partner of Manchester United, is running a unique contest â Dream in Kohler, where people can create mood boards of their dream bathrooms and win a trip to the Theatre of Dreams - Old Trafford, Manchester.
Summary:
Summary:
Television actress Sonal Vengurlekar has alleged when she was 19, casting director Raja Bajaj forcibly applied cream on her breasts to give them 'proper shape' when she assisted him on a shoot.
Summary:
Responding to Sonal Vengurlekar's sexual harassment allegations against her father, casting director Raja Bajaj, actress Sheena Bajaj said, "Sonal is just blackmailing my father for money." "My point is that if something wrong happened to you, why will you demand money," Sheena added.
Summary:
After CBI Director Alok Verma was sent on leave amid bureaucratic infighting in CBI, Congress President Rahul Gandhi alleged that PM Narendra Modi removed Verma as the investigating agency was questioning the Rafale deal.
Summary:
CBI Interim Director M Nageshwar Rao has often engaged in difficult situations and is considered a "crisis manager" in Odisha Police circle, ex-DGP Gopal Nanda said.
Summary:
Virat Kohli became the quickest batsman to reach 10,000 ODI runs by innings (205), matches (213), balls (10,813) and time (10 years, 67 days from debut) during his 157*-run knock in the second Windies ODI.
Summary:
The incident came to light after the girl refused to go to school in the van and narrated her ordeal to her parents, who filed a police complaint.
Summary:
The men had reportedly been 'stationed' outside Verma's residence in a car since Wednesday night.
Summary:
India has signed a $777-million deal (â¹5,683 crore) with Israel Aerospace Industries (IAI) to obtain Barak 8 long-range surface-to-air defence missiles and missile defence systems for seven Indian Navy ships.
Summary:
The Centre has told the Delhi High Court that rape laws cannot be gender-neutral because of the perpetrator of the offence who's said to be a man.
Summary:
Addressing IT professionals on Wednesday, PM Narendra Modi has said it has become fashion in our country to abuse businessmen and industrialists but he does not agree with that line of thought.
Summary:
A person died after Maharashtra government's passenger boat carrying state officials, including state Chief Secretary Dinesh Kumar Jain capsized off Mumbai coast on Wednesday.
Summary:
Debasish Kar Gupta and Naresh Harishchandra Patil were appointed chief justices of Calcutta and Bombay HC respectively.
Summary:
IT services giant Wipro has appointed former SBI Chairperson Arundhati Bhattacharya as an independent director for a period of five years.
Summary:
US-based startup Naya Health, that sold a $1,000 smart breast pump, has stopped responding to customers.
Summary:
A Chinese company has tested the 'world's largest' cargo drone Feihong-98 (FH-98) which is said to carry a payload of 1.5 tonnes (1,500kg).
Summary:
"The administration...become slow due to Parrikar's absence from office," Goa BJP chief said.
Summary:
One97 Communications' subsidiary Paytm Payments Bank on Wednesday announced the appointment of Satish Kumar Gupta as the Managing Director (MD) and CEO of the bank.
Summary:
The woman, who had been abused since she was aged 13, lived in a joint family.
Summary:
A gang in Delhi allegedly cheated at least 3,000 job aspirants of around â¹12 lakh by falsely claiming to offer employment in the Union Agriculture Ministry via the 'panditdeendayalkrishivikas.com' website.
Summary:
A 70-year-old woman was allegedly raped by a distant relative in Uttar Pradesh's Shahjahanpur district, police said on Wednesday.
The woman was allegedly raped on September 28, the police said.
Summary:
The proposal called for a complete ban on plastic cutlery, cotton buds, drink stirrers and a reduction in the use of food and drink containers like plastic cups.
Summary:
An emerald and seed-pearl necklace owned by Maharani Jindan Kaur, the wife of Sikh emperor Maharaja Ranjit Singh, has been auctioned for ã187,500 (over â¹1.77 crore) in London.
Summary:
Vistara has received a capital infusion of â¹2,000 crore from Tata Sons and Singapore Airlines, according to a regulatory filing.
Summary:
Reliance is also reportedly moving customers of its JioMoney prepaid mobile wallet to Jio Payments Bank.
Summary:
The second ODI between India and Windies in Visakhapatnam on Wednesday ended in a last-ball tie, after both teams scored 321 runs each.
Summary:
Two potential explosive devices were found in mail sent to homes of former US President Barack Obama and ex-Secretary of State Hillary Clinton, the Secret Service said.
Summary:
Paytm CEO's secretary Sonia Dhawan asked her bosses for financial help to buy a â¹4-crore flat, police said.
Summary:
Reacting to India captain Virat Kohli becoming the fastest cricketer to reach 10,000 ODI runs, Sachin Tendulkar tweeted, "The intensity and consistency with which you bat is just amazing...congratulations on achieving 10,000 runs in ODIs. Keep the runs flowing." Kohli took 205 ODI innings to reach the 10,000-run mark.
Summary:
The 29-year-old scored his first 5,000 ODI runs in 114 innings and reached 5,000 to 10,000 runs in 91 innings.
Summary:
Ronaldo had played for Manchester United under Sir Alex from 2003 to 2009.
Summary:
Alleging that BJP targets him whenever elections are near, SP MLA Azam Khan said, "I am the item girl of the BJP...They contest all the elections on my name." This comes after two FIRs were filed against him within a week.
Summary:
Ordering Rajasthan government to shut down illegal mining units in the state within 48 hours, the Supreme Court on Tuesday said, "What's happening in Rajasthan?
Summary:
PM Narendra Modi on Wednesday launched a 'Main Nahin Hum' portal and app, which will enable IT professionals and organisations to bring together their efforts towards social causes and service to society on one platform.
Summary:
China will not set a population target in the future and give people more freedom with respect to childbirth, health officials said.
Summary:
The package was addressed to ex-CIA Director John Brennan, CNN said.
Summary:
US President Donald Trump has said that Saudi Crown Prince Mohammed bin Salman could have been involved in the operation to kill journalist Jamal Khashoggi, claiming "the prince is running things over there" in the kingdom.
Summary:
This comes after Assange, who is living in Ecuador's London embassy, sued the country for "violating" his rights.
Summary:
Five members of a robbery gang were arrested in Belgium after the owner of the store they intended to rob told them to return later when he has more money.
Summary:
India's largest airline IndiGo's operator InterGlobe Aviation on Wednesday reported a second-quarter loss of â¹652 crore, its first-ever quarterly loss since listing in 2015.
Summary:
The apex court added that only vehicles compliant with the Bharat Stage VI emission standards can be sold from then.
Summary:
Test flights of a driverless electric flying taxi will take place in Singapore in the second half of next year, German aviation firm Volocopter has said.
Summary:
Google has reportedly banned the use of words like 'f**k' and other references to sex acts in internal documents and URLs in the company.
Summary:
The AI, without facial recognition technology, correctly identified 28 persons out of 41 with soft biometric attributes.
Summary:
Facebook on Wednesday said that it is using an AI-based software to detect and remove child nudity and child exploitative content on the platform.
Summary:
Lord Ram was born in Ayodhya and the BJP wants a temple there, he said.
Summary:
Chhattisgarh Chief Minister Raman Singh, after filing his nomination for the upcoming state assembly elections, expressed confidence that his government will come to power once again in the state for the fourth time.
Summary:
The North American AT-6 plane, which was painted with World War II-era German air force markings, was developed in the 1930s and used for training by US pilots during World War II.
Summary:
Bhushan stated that appointment and removal of the probe agency director is done by a high powered committee.
Summary:
Congress spokesperson Randeep Singh Surjewala accused PM Narendra Modi of interfering in the working of the CBI and asked if its Director Alok Verma was 'sacked' for his keenness to probe in the Rafale scam.
Summary:
After their failed bid to acquire Fortis Healthcare, TPG Capital and Manipal Health are reportedly in talks to jointly acquire a majority stake in Gurugram-based hospital operator Medanta.
Summary:
Starbucks has opened its first US 'Signing Store' in the capital Washington DC, staffed with employees who are proficient in American Sign Language.
Summary:
Team India captain Virat Kohli slammed his 37th ODI hundred on Wednesday against Windies, reaching the landmark in 116 fewer innings than Sachin Tendulkar.
Summary:
Paytm CEO Vijay Shekhar Sharma told police that his secretary Sonia Dhawan, who tried to extort â¹20 crore, told him, "Pay up for now, who knows what kind of data may be there." Sharma said he became suspicious when Sonia strongly urged him to pay.
Summary:
Kajol has revealed she once hung up Ajay Devgn's phone by saying, "It's Sridevi.
Kajol further said she was half asleep in the morning when Ajay had called.
Summary:
American singer Nick Jonas has bought a house worth $6.5 million (â¹48 crore) in Beverly Hills, California ahead of his wedding to actress Priyanka Chopra, as per reports.
Summary:
Reacting to Team India captain Virat Kohli reaching 10,000 ODI runs and smashing his 37th ODI hundred on Wednesday, former cricketer Virender Sehwag tweeted, "Software update all the time.
Summary:
Defending the move to send CBI Director Alok Verma on leave, Centre on Wednesday said that he wasn't cooperating with the Central Vigilance Commission (CVC) probe on official misconduct and corruption allegations against him.
Summary:
M Nageshwar Rao, the newly appointed Interim Director of CBI, is a 1986 batch IPS officer belonging to the Odisha cadre.
Summary:
The order also directed Bassi to "join his new place of posting with immediate effect".
Summary:
The Railways on Wednesday formed a four-member team to probe the circumstances that led to a stampede at Santragachi Station in West Bengal's Howrah, killing two persons and injuring 15 others.
Summary:
Saudi Arabia would not have carried out the alleged murder of journalist Jamal Khashoggi without American protection, Iranian President Hassan Rouhani said.
Summary:
Airtel Africa will use the proceeds from the primary equity issuance to bring down its debt of $5 billion and grow its business.
Summary:
The venture capital firm is promoted by Cyrus Mistry and his elder brother Shapoor Mistry.
Summary:
Tata Trusts said the "information is incorrect" and that Ratan Tata "had no such meetings".
Summary:
Jacqueline further said, "We really have to stick to the issue and be serious about it if we want solutions."
Summary:
Actor Irrfan Khan is set to return to Mumbai in a day or two amid his cancer treatment in the UK, as per reports.
Summary:
Uber's VP of corporate development Cameron Poetzscher, who oversaw Uber's high-profile deals, has resigned amid reports of alleged sexual misconduct.
Summary:
The government has constituted a Group of Ministers (GoM), headed by Home Minister Rajnath Singh to strengthen the legal framework to deal with and prevent sexual harassment at workplace.
Summary:
Talking about the harms of technology, Apple CEO Tim Cook has said, "Platforms and algorithms that promised to improve our lives can actually magnify our worst human tendencies." "Rogue actors and even governments have taken advantage of user trust to deepen divisions, incite violence..." he also said.
Summary:
Summary:
As many as 421 candidates, including CM Raman Singh, have filed nominations for the first phase of the Chhattisgarh Assembly polls in which 18 of the 90 state Assembly segments will be covered.
Summary:
Summary:
However, Citron said it was not withdrawing its lawsuit against Musk and Tesla.
Summary:
Amazon-backed bus service startup Shuttl has raised close to $1 million in a fresh funding round from venture debt provider Trifecta Capital.
Summary:
On average, the researchers said they found 20 microplastic particles per 10 grams of stool.
Summary:
Japanese journalist Jumpei Yasuda held hostage in Syria by Islamist militants has been released after three years, Japan's Foreign Minister Taro Kono said.
Summary:
A man arrested in the US for allegedly groping a woman while travelling on a plane told the police that "the President of the United States says it's (okay) to grab women by their private parts".
Summary:
India captain Virat Kohli has become the fastest batsman to score 10,000 runs in the history of ODI cricket, achieving the feat in his 205th innings, against Windies on Wednesday.
Summary:
OnePlus has announced that it will host pop-up events on November 2 post the launch of its flagship smartphone OnePlus 6T for buyers to experience the device.
Summary:
Over 20 people were injured after an escalator at a metro station in Italy's Rome suddenly sped up, then collapsed.
Summary:
Filmmaker Anurag Kashyap's lawyer Venkatesh Dhond has said director Vikas Bahl broke down, confirmed that he sexually harassed an ex-employee and promised to go forâ rehabilitation after being confronted by his business partners, including Kashyap.
Summary:
India does not recognise cryptocurrency as legal tender, Finance Minister Arun Jaitley said earlier.
Summary:
An Abu Dhabi-Jakarta Etihad Airways flight was diverted to Mumbai on Wednesday after an Indonesian woman went into labour and delivered a baby girl mid-air.
Summary:
After Central Bureau of Investigation Director Alok Verma and Special Director Rakesh Asthana were sent on leave amid the bribery allegations against Asthana, RJD leader Tejashwi Yadav took a dig at the Centre and CBI with several full forms.
Summary:
Senior leaders of the BJP including party chief Amit Shah also posted similar messages on Twitter.
Summary:
The data included passwords, encrypted emails, PIN of Paytm accounts and cash cards used by its Founder and CEO Vijay Shekhar Sharma.
Summary:
A 100-year-old woman was raped by a 20-year-old man in the middle of the night in West Bengal's Nadia district on Monday.
Summary:
News organisation The Citizen has said Anil Ambani's Reliance has filed â¹7,000-crore defamation suit against its founding editor, Seema Mustafa, for their coverage on the Rafale fighter jets deal.
Summary:
The newly appointed Interim CBI Director, M Nageshwar Rao, will personally monitor cases like the AgustaWestland chopper scam and the one involving fugitive liquor baron Vijay Mallya.
Summary:
Finance Minister Arun Jaitley on Wednesday said a Special Investigation Team not functioning under either CBI chief Alok Verma or Special Director Rakesh Asthana will probe the alleged bribery case.
Summary:
The shop jeweller alleged that 10,000 carats of diamonds, 500-kg silver and 100-kg gold were stolen.
Summary:
The district administration in Rajasthan's Barmer on Tuesday organised a 'Snakes and Ladders' game on a 1,600-square-foot board to raise awareness among locals and ensure their participation in the poll process.
Summary:
Zydus Wellness and parent Cadila Healthcare have jointly agreed to acquire Heinz India, whose brands include Complan, Glucon-D, Nycil and Sampriti ghee, for â¹4,595 crore.
Summary:
Pixar Co-founder Ed Catmull has announced his plans to retire by the end of this year.
Summary:
Summary:
Yahoo has agreed to pay $50 million in settlement for a security breach that affected around 200 million users in the US and Israel.
Summary:
Delhi CM and AAP National Convenor Arvind Kejriwal on Tuesday said his party does not have funds to contest the upcoming Haryana Assembly elections, adding, "You people will have to fight elections on our behalf." He added, "People tell me there are no hoardings of AAP in Haryana.
Summary:
Summary:
Goa Congress MLA Aleixo Reginaldo Lourenco said Congress has sought a meeting with CM Manohar Parrikar, who is recovering after undergoing treatment for a pancreatic ailment in Delhi.
Summary:
Pune-based baby care startup FirstCry is reportedly in talks with Japanese conglomerate SoftBank to raise at least $150 million in funding.
Summary:
A nine-year-old boy allegedly died in a fight with a 15-year-old student in a hostel in Telangana's Khammam district, said the police.
Summary:
Speaking on the Centre's decision to send CBI chief Alok Verma and Special Director Rakesh Asthana on leave, BJP MP Subramanian Swamy said he was "totally puzzled", adding that he does not know the charges against them.
Summary:
A 102-year-old man has been charged with aggravated indecent assault against a 94-year-old woman at an aged care facility in Australia's Sydney.
Summary:
Saudi Arabia has said that Khashoggi was killed inside their consulate in Istanbul after a fist fight with officials.
Summary:
Actress Priyanka Bose has alleged that filmmaker Sajid Khan sexually harassed her during an audition.
Summary:
The Cabinet Committee has sent CBI Director Alok Verma and Special Director Rakesh Asthana on leave and appointed Nageshwar Rao as Interim Director of the agency.
Summary:
According to the Guinness World Records, the longest speech at the United Nations (UN) was given by VK Krishna Menon in 1957.
Summary:
Alia Bhatt's mother, actress Soni Razdan has revealed she has seen actor Alok Nath behave lecherously with women after getting drunk.
Summary:
Canadian rapper Jon James McMurray passed away aged 34 after falling from the wing of a flying plane he was walking on during a music video shoot.
Summary:
Pakistan had defeated India in the 2017 Champions Trophy final.
Summary:
Weeks after resigning as a Madhya Pradesh Minister of State, self-styled godman Computer Baba said he won't rest till CM Shivraj Singh Chouhan is thrown out.
He alleged the government isnanti-saints and Chouhan wanted to fool the community of ascetics.
Summary:
After the arrest of Paytm CEO Vijay Shekhar Sharma's secretary Sonia Dhawan in the â¹20-crore blackmail case, her lawyer Prashant Tripathi has disclosed she and her husband had received an extortion call of â¹5 crore two days after Sharma received a similar call.
Summary:
Five Indian fishermen have been arrested by the Sri Lankan Navy for allegedly fishing in their territory and using trawler boats in the region.
Summary:
After soldier Ranjit Singh Bhutyal was martyred in an attack by Pakistani intruders on Sunday, his wife gave birth to a baby girl in Jammu and Kashmir.
Summary:
The Hoshiarpur Police on Tuesday filed a case of unnatural death after Father Kuriakose Kattuthara, a witness in the Kerala nun rape case against Bishop Franco Mulakkal, was found dead at his house in Jalandhar.
Summary:
Senior CBI officers who were investigating the bribery case against CBI Special Director Rakesh Asthana are among the 13 officers of the agency who have been transferred.
Summary:
PM Narendra Modi has been awarded the Seoul Peace Prize 2018 for his contribution to high economic growth in India and world through 'Modinomics', the award citation read.
Summary:
CBI chief Alok Verma on Wednesday moved the Supreme Court after the central government sent him on leave and appointed Joint Director M Nageshwar Rao as the Interim Director.
Summary:
India, Iran and Afghanistan on Tuesday held their first trilateral meeting in which they discussed the development of Chabahar port project.
Summary:
ICICI Bank has said that a law firm it engaged withdrew its 2016 report that gave former ICICI Bank CEO Chanda Kochhar a clean chit with regard to nepotism allegations.
Summary:
Summary:
Elsewhere, Real Madrid beat Viktoria PlzeÃ
 2-1 while Manchester City routed Shakhtar Donetsk 3-0 in their respective group matches.
Summary:
Addressing a press conference ahead of the Rajasthan polls, Union Minister Prakash Javadekar on Tuesday said, "No one will be allowed to change seats.
Summary:
Congress spokesperson Randeep Singh Surjewala has accused PM Narendra Modi and BJP President Amit Shah of misusing the Central Bureau of Investigation (CBI) and turning the country's premier investigation agency into the BJP's "dirty tricks department".
Summary:
Summary:
The Ministry of External Affairs said a senior Pakistan High Commission official was summoned after three Indian soldiers were martyred during an infiltration bid by Pakistani terrorists in Jammu and Kashmir.
Summary:
She met the victims of the stampede and announced compensation of â¹1 lakh for the injured.
Summary:
In the wake of recent attacks on Hindi-speaking migrant workers in Gujarat following the rape of a 14-month-old girl, Gujarat Energy Minister Saurabh Patel said the people of Bihar should feel "100% safe" in Gujarat.
Summary:
The accused was detained after locals called the police.
Summary:
Saudi Arabia has agreed to provide $3 billion in foreign currency support for a year to Pakistan to help address the country's balance of payment crisis.
Summary:
Fino Payments Bank, one of India's first payments banks, has been allowed to open new accounts by RBI after it submitted a compliance report.
Summary:
Alia Bhatt's mother Soni Razdan has revealed somebody tried to rape her during a film shoot, while adding, "Luckily they didn't succeed." "I never said anything at that time...[because] I realised if I'd have opened my mouth that person would've gone through a lot of problems," she added.
Summary:
At least two people were killed and 14 injured in a stampede following a heavy rush of passengers on a foot overbridge at Santragachi Junction in West Bengal's Howrah on Tuesday.
Summary:
Speaking on the Sabarimala temple row, Union Minister Smriti Irani said, "Would you take sanitary napkins steeped in menstrual blood and walk into a friend's home?
Summary:
A 13-year-old teenager who stole his mother's brand new BMW car in Texas to drive to his girlfriend's house was pulled over by his mother, who beat him on the road.
Summary:
Singer Shweta Pandit, who accused Anu Malik of sexual harassment and alleged he kissed her at age 15, has said she received replies like 'It must be like uncle' and 'It must be on cheek'.
Summary:
Tanushree further said, "I'm not on social media so I escape reading [the backlash]."
Summary:
Raveena Tandon, while speaking about nepotism in the film industry, said, "Shah Rukh Khan, Kangana Ranaut, Priyanka Chopra...have made it on their own...There're many who came from...outside and became successful." "It is not like industry kids form the majority," she added.
Summary:
Urging BJP workers and supporters to donate any amount between â¹5 and â¹1,000 for the party through Narendra Modi app, party President Amit Shah tweeted a receipt of the â¹1,000 donation he made.
Summary:
After the Supreme Court ordered that people can burst firecrackers between 8 pm and 10 pm on Diwali, BJP MP Chintamani Malviya said, "I'll burst crackers only when I finish puja, we can't set time limits on festivals." "Such restrictions were not even in Mughal times.
Summary:
Ahead of an AFC Under-19 Championship qualifier match between South Korea and Jordan in Indonesia, the national anthem of North Korea blared out instead of South Korea's 'Aegukga'.
Summary:
The minister also made the chef sit next to him and fed him from his own plate.
Summary:
The â¹6,000-crore Sivakasi fireworks industry said they lost â¹2,000-crore worth business as they reduced their production following last year's ban on firecracker sale in Delhi-NCR.
Summary:
For the first time since 1998, each of Sri Lanka's top four batsmen had passed the 50-run mark in the same ODI innings.
Summary:
Wrestler Roman Reigns gave up his WWE title belt after announcing that he is stepping away from the ring due to leukaemia.
Summary:
The members of the Mumbai Cricket Association and Mumbai's cricket team players have not been paid their dues for the last two months.
Summary:
"Twitter thought I got hacked & locked my account haha," Musk tweeted.
Summary:
He said he would put his entire energy into strengthening the party in Bihar.
Summary:
"Those who understand politics know that no one enjoys burning...own house," he added.
Summary:
US-based software supplier Ebix's Indian subsidiary EbixCash has acquired a 67% stake in Delhi-based logistics startup Routier for an undisclosed amount.
Summary:
E-commerce giants, Amazon and Flipkart, have been issued notices by the Drugs Controller General of India (DCGI) for allegedly selling fake cosmetics.
Summary:
The glasses are also connected to Amazon's digital assistant Alexa and can respond to users asking for information.
Summary:
A former chief standing counsel for the Uttar Pradesh government, lawyer Ramesh Chandra Pandey, on Tuesday died after jumping off the third floor of the Allahabad High Court's Lucknow bench, police said.
Summary:
Pakistan recently approached the IMF for a bailout programme amid the financial crisis.
Summary:
Software services giant HCL Technologies on Tuesday posted a 14.8% rise in September quarter profit at â¹2,534 crore, beating analyst estimates.
Summary:
She kept most of the cash while the rest was distributed among the other waitresses.
Summary:
Actor and former Bigg Boss contestant Ajaz Khan has denied reports that he was arrested last night from a Mumbai hotel for the possession of ecstasy tablets.
Summary:
Netflix on Tuesday confirmed it'll continue its association with Anurag Kashyap, Vikramaditya Motwane and writer Varun Grover for 'Sacred Games' season 2.
Summary:
After Tanushree Dutta filed a â¹10 crore defamation case against Rakhi Sawant for calling her sexual harassment allegations a 'lie' and accusing her of taking drugs, the latter threatened to file a â¹50 crore defamation case against her.
Summary:
Actress Sanjana Sanghi took to Twitter to deny reports that she was sexually harassed by her 'Kizie Aur Manny' co-star Sushant Singh Rajput.
Earlier, reports said Sushant had tried to be 'extra-friendly' with Sanjana on the film's sets, leaving her uncomfortable.
Summary:
"My goodness, the moment he comes out to bat, it looks like he is going to score a hundred every match," Tamim added.
Summary:
Chhattisgarh's 66-year-old Chief Minister Raman Singh touched 46-year-old Uttar Pradesh Chief Minister Yogi Adityanath's feet twice before filing his nomination papers for the upcoming Assembly elections.
Summary:
Another Paytm employee and Sonia's accomplice, Devender Kumar, was also arrested from the office.
Summary:
During the hearing on Assam National Register Of Citizens that left 40 lakh people out of its draft, the Supreme Court told Assam government and Centre to "behave like a state and not an individual".
Summary:
The Home Ministry on Tuesday announced that a foreign-origin spouse of any Indian national or an Overseas Citizen of India (OCI) cardholder is now eligible for obtaining the OCI card.
Summary:
India and China on Monday signed a security cooperation agreement during the first high-level meeting on bilateral security cooperation.
Summary:
The Indian Army's bomb disposal team has successfully extracted and destroyed 555 unexploded bombs that were buried underground for the past 14 years.
Summary:
Khashoggi was killed inside Saudi Arabia's consulate in Istanbul.
Summary:
England's Sam Curran and his elder brother Tom became the first brothers to play for England together since the Hollioake brothers in 1999, during the fifth and final ODI against Sri Lanka in Colombo on Tuesday.
Summary:
Former Indian cricketer Sachin Tendulkar spent time in Bhutan playing football and cricket with the school kids there.
Enjoyed being back on the pitch with Bhutan's Cricket Team," Sachin tweeted.
Summary:
Indian wrestler Bajrang Punia won the silver medal at the World Championships to become the first Indian to have two World Wrestling Championship medals.
Summary:
"If you have reason on your side don't fear to challenge Google," Aptoide CEO Paulo Trezentos said.
Summary:
SoftBank CEO Masayoshi Son has cancelled a speaking engagement at the Future Investment Initiative conference in Saudi Arabia, according to reports.
Summary:
Samajwadi Secular Morcha leader Shivpal Singh Yadav on Tuesday announced his new political party, registered with the Election Commission as Pragatisheel Samajwadi Party Lohia.
Earlier, Yadav complained that he felt neglected in the Samajwadi Party after his nephew Akhilesh Yadav took charge.
Summary:
In the video, the bridge is visibly sagging and bending slightly under the bus' weight.
Summary:
Until now, the slowest-spinning pulsar known had a rotation period of 8.5 seconds.
Summary:
The researchers call the newly discovered cell structure 'reticular adhesions' to reflect their net-like form.
Summary:
NASA's Office of Inspector General has released a report detailing shortcomings in how the agency manages its historical items.
Summary:
The complaint was filed by the man's wife.
"The husband and wife were also affected by the chemicals.
Summary:
International police agency Interpol has said that 500 tonnes of illicit drugs available online were seized in coordinated police raids carried out in 116 nations.
Summary:
India's largest IT services firm received 20,755 H-1B specialty occupation labour certifications.
Summary:
The court was hearing a contempt plea by Ericsson for non-payment of dues by RCom by the September 30 deadline.
Summary:
Paytm CEO Vijay Shekhar Sharma's secretary Sonia Dhawan, who had access to his laptop, phone and office computer, stole his personal data.
Summary:
A buggy car crashed into a group of officials standing near the racing track during an autocross race in Belarus' Tulovo.
Summary:
Sri Lanka's 1996 World Cup-winning captain Arjuna Ranatunga has revealed that India's Central Bureau of Investigation (CBI) will help the island nation tackle match-fixing and corruption in cricket.
Summary:
German carmaker BMW is recalling 16 lakh diesel cars worldwide to fix a problem with the exhaust system that "in extreme cases can cause a fire".
Summary:
British auction house Christie's has put on sale 22 belongings of late physicist Stephen Hawking.
Summary:
The Delhi High Court has refused to stay the proceedings against CBI Special Director Rakesh Asthana in an alleged bribery case.
Summary:
Jammu and Kashmir government on Tuesday withdrew its order asking schools, colleges and public libraries in the state to have copies of Urdu version of Gita and Koshur Ramayana.
Summary:
After announcing that the US would withdraw from a Cold War-era nuclear arms treaty with Russia, President Donald Trump has said that the country would increase its nuclear arsenal till other nations "come to their senses".
Summary:
Actress Shraddha Kapoor has said that she feels like sharing the songs that she writes "with the world", adding, "I do write songs quite often...I enjoy doing it." "Sometimes, I think should I share something on Instagram, like my poetry or something.
Summary:
The rent of Deepika Padukone and Ranveer Singh's rumoured wedding venue Villa Del Balbianello which overlooks Lake Como in Italy starts from â¹8.5 lakh to â¹25 lakh, as per reports.
Summary:
Priyanka Chopra's wedding outfit will reportedly be designed by Manish Malhotra.
Reports also suggested that Priyanka met designers Abu Jani and Sandeep Khosla for discussing an outfit for pre-wedding functions.
Summary:
The scrolls, composed of over 100,000 fragments, were discovered by Bedouin shepherds in 1940s.
Summary:
Former UFC champion Conor McGregor has admitted that Russia's Khabib Nurmagomedov beat him "fair and square" in their UFC 229 fight.
"It was a great fight and it was my pleasure.
I will face the next in line," McGregor wrote.
Summary:
Summary:
Real Madrid captain Sergio Ramos apologised for kicking football at Real Madrid youngster Sergio Reguilon multiple times in anger during a training session.
Ramos gave the reaction after Reguilon jumped and accidentally hit Ramos on his nose during the training session.
Summary:
Facebook-owned virtual reality headset maker Oculus' Co-founder Brendan Trexler Iribe on Monday announced he is leaving Facebook.
Summary:
Nationalist Congress Party chief Sharad Pawar on Tuesday said that if the BJP-led NDA government was "effective", there would not have been bribery charges at the highest level in the CBI.
Summary:
"Congress...sent me to fight for the people of Rajnandgaon," she added.
Summary:
Cash-strapped Faraday Future has confirmed that the electric car startup is cutting its employees' salaries by 20% and firing some others.
Summary:
Tesla CEO Elon Musk has confirmed that Tesla Model 3 cars will have a 'dog mode' after a Twitter user asked for one.
Summary:
US-based ride-hailing startup Uber is planning to launch its drone-based food delivery service by 2021, according to a media report.
Summary:
A student was allegedly raped inside the premises of a government college in Nagaur, Rajasthan on Sunday.
Summary:
They were also given commission for luring other boys into the racket." Three people have been arrested till now, said the police.
Summary:
The UN Human Rights Committee on Tuesday said that France's ban on full face veil was a violation of human rights and ordered the country to review the legislation.
Summary:
Jet Airways has reportedly approached banks for a moratorium on loans and asked for fresh funds to ease a cash crunch.
Summary:
Japan's ambassador to India, Kenji Hiramatsu, on Monday said he hoped the Indian government would amicably resolve the land acquisition issues affecting the bullet train project.
Summary:
Reliance Industries and British oil giant BP are reportedly planning to jointly set up as many as 2,000 petrol pumps in India over the next three years.
Summary:
As part of the partnership, the company will open OnePlus kiosks inside 20 Reliance Digital stores across the country, in cities like Mohali, Ghaziabad, Mangalore, Visakhapatnam, and Bhubaneswar.
Summary:
Brazilian football legend Pelé, whose full name is Edson Arantes do Nascimento, was named after American inventor Thomas Alva Edison as electricity had just been introduced to his hometown when he was born.
Summary:
Brazil's Pelé became the first man to score 1,000 goals in competitive football in November 1969 after converting a penalty for Santos against Vasco da Gama in Rio. The match was stopped for 30 minutes as supporters invaded the pitch.
Summary:
Director Luv Ranjan has fired Ajay Devgn's makeup artist Harish Wadhone from his film 'De De Pyaar De' starring Devgn, after the film's script and continuity supervisor Tanya Paul Singh accused him of sexual harassment.
Summary:
Archaeologists have claimed to find the world's oldest intact shipwreck at the bottom of the Black Sea, where it laid undisturbed for over 2,400 years.
Summary:
Kohli had recently said in an interview that he has "a few years left in his career".
Summary:
Juventus forward Cristiano Ronaldo has said he's unfazed by the rape allegations against him, adding the truth always comes in the first position.
An American woman has alleged that Ronaldo raped her in a Las Vegas hotel room in 2009.
Summary:
A video has surfaced online, wherein Congress MLA Jitu Patwari, while appealing for votes in Madhya Pradesh's Indore, said, "Aapko meri izzat rakhni hai, party gayi tel lene (You take care of my reputation.
Summary:
After three people including two Paytm employees were arrested for blackmailing CEO Vijay Shekhar Sharma for â¹20 crore and threatening to leak confidential data, Paytm said, "All our consumer data is protected." "This is a case of personal data theft of Sharma," added Paytm.
Summary:
CBI Deputy Superintendent of Police Devender Kumar on Tuesday approached the Delhi High Court to challenge his arrest by the investigation agency in connection with a bribery case.
Summary:
After Canada legalised recreational marijuana last week, South Korea has said that citizens smoking weed in Canada will be punished according to the Korean law.
Summary:
However, reports have claimed that Khashoggi was murdered by agents linked to Saudi Crown Prince.
Summary:
Earlier this month, the Koreas began removing landmines along the border.
Summary:
Ayushmann Khurrana and Vicky Kaushal will appear together on the sixth season of talk show 'Koffee with Karan'.
Summary:
Aamir Khan, who had exited from the film following accusations against Subhash, has reportedly returned to the film after Subhash was sacked.
Summary:
Summary:
Former Australian cricketer Shane Warne claims that the Australian team is "ordinary" and said they need a "kick up the backside" after their series loss against Pakistan.
Summary:
The Pakistan Cricket Board said the allegations were under review by the ICC and its own Anti-Corruption Unit.
Summary:
Dyson, the UK-based company known for its vacuum cleaners, has announced plans to build its electric cars in Singapore.
Summary:
Kerala CM Pinarayi Vijayan on Tuesday said the RSS attempted to make Sabarimala Temple a "war zone" while the government made all the arrangements to implement the Supreme Court order allowing entry to women aged 10-50 years.
Summary:
Founded in 2012, the Singapore-based startup uses consumer data and algorithms to predict demand, personalise and improve the dining experience.
Summary:
Y Combinator-backed fintech startup ClearTax has raised $50 million in a Series B funding round led by investment firm Composite Capital.
Summary:
A taxi driver was arrested on Tuesday for allegedly raping a 5-year-old girl in Delhi, said the police.
Summary:
Amid speculations of a rift between the agency's two top-ranked officials, BJP spokesperson Meenakshi Lekhi on Monday said people should maintain their faith in the Central Bureau of Investigation (CBI).
Summary:
Summary:
The issue was raised at the first India-China high level meeting on bilateral security cooperation.
Summary:
Britain's Prince Harry and his wife Meghan arrived in Fiji on Tuesday for the first royal visit to the South Pacific nation since a military coup in 2006.
Summary:
Saurav Kant, a learner of UpGrad and IIIT-B's PG Program in Machine Learning & AI transitioned to Tech Mahindra as Data Scientist with 90% salary hike.
Summary:
Myntra celebrates with Fashionotsav, a grand festive sale that will go live from the 25th till the 28th of October.
Summary:
The court had temporarily banned the sale of firecrackers before Diwali on October 9 last year.
Summary:
Mohammed Sameer Khan, a superstitious thief who used to commit robberies only on Tuesdays and during daytime due to his low vision, was arrested by the police in Hyderabad on Monday.
Summary:
Dayanand Shetty, who plays the role of 'Daya' in the TV show 'CID', has confirmed that the show will go off air from October 27.
Summary:
Actor and ex-Bigg Boss contestant Ajaz Khan was arrested last night by the Anti-Narcotics cell from a hotel in Navi Mumbai for the possession of eight ecstasy tablets.
The actor will be produced before a court today.
Summary:
Saelee, who is 13 years younger than the block stacking computer game, said he started playing Tetris as a hobby after watching the championships in 2016.
Summary:
Billionaire Richard Branson on Monday said he is stepping down as chairman of Virgin Hyperloop One, adding the company needs a more actively involved leader.
Summary:
One of the lead petitions challenged the verdict on grounds that faith cannot be judged by scientific reason or logic.
Summary:
Kaur's presence and emotive speech at the Dussehra event led to a surge in the crowd, the activist alleged.
Summary:
Union Women and Child Development Minister Maneka Gandhi on Monday announced that declaration of criminal record has been made mandatory for those applying for an Indian visa.
Summary:
India and China on Monday inked their first-ever internal security cooperation agreement aimed at strengthening assistance in counter-terrorism, organised crimes and exchange of information.
Summary:
Condemning Imran Khan's tweet accusing Indian security forces of killing "innocent Kashmiris", Ministry of External Affairs has said that instead of making comments on India's internal affairs, the Pakistan PM should look inwards and address his country's issues.
Summary:
Ethiopian doctors have removed 122 iron nails and other sharp objects including pins, toothpicks and pieces of broken glass from the stomach of a patient in the capital Addis Ababa.
Summary:
US President Donald Trump has said he believes the death of Saudi journalist Jamal Khashoggi was "a plot gone awry".
Summary:
Saud al-Qahtani, a top aide for Saudi Crown Prince Mohammed bin Salman, reportedly ran journalist Jamal Khashoggi's killing at the Saudi consulate in Istanbul by giving orders over Skype.
Summary:
Abhishek Bachchan, when asked about his most favourite romantic film, revealed he loves his wife Aishwarya Rai Bachchan and Salman Khan starrer 'Hum Dil De Chuke Sanam'.
Talking about his favourite film of Aishwarya, he said he loved her Tamil film 'Iruvar' the most.
Summary:
Deepika Padukone and Ranveer Singh will be hosting their wedding reception in Mumbai on December 1, as per reports.
Summary:
Discussing the #MeToo movement, former Assam Chief Minister Tarun Gogoi on Monday said, "Even I was accused by a woman once, but later it turned out to be fake and politically motivated." However, he said he "totally supports genuine cases", adding, "Whatever is truthful, I support 100%.
Summary:
Adityanath, who arrived in Raipur to participate in the election campaign, said he will be present during incumbent CM Raman Singh's nomination filing.
Summary:
The Railways has decided to refer to its cleaning staff as 'housekeeping staff' instead of 'safaiwalas', according to an order issued on Monday.
Summary:
A 35-year-old mother of three was allegedly raped and an iron rod was inserted into her private parts by a relative over a land dispute in West Bengal's Jalpaiguri district, said the police.
Summary:
The Bombay High Court has ordered the National Investigation Agency (NIA) court hearing the 2008 Malegaon blast case to expedite the trial and preferably hold day-to-day hearings.
Summary:
A man named Lucky Verma has been booked for allegedly posting a morphed picture of RSS chief Mohan Bhagwat on a WhatsApp group on October 19, said Indore Police on Monday.
Summary:
At least 60 organisations in Assam are observing a 12-hour bandh on Tuesday to protest against Centre's attempt to clear Citizenship (Amendment) Bill, 2016 in the upcoming winter session.
Summary:
The Supreme Court on Monday said it is "wholly unacceptable" that 5,133 out of a total of 22,036 posts in the subordinate judiciary are lying vacant in India.
Summary:
A team of doctors is looking after the injured students, Aurangabad Sub-Divisional Officer Pradeep Kumar said.
Summary:
Myntra launches House Of Pataudi, a brand by Saif Ali Khan during its festive sale, Fashionotsav.
Summary:
The $20-billion bridge, which spans 55 kilometres, connects Hong Kong and Macau to the mainland Chinese city of Zhuhai.
Summary:
A Japanese wedding organising company, Crazy Inc rewards its employees who sleep for at least six hours in the night for at least five days in a week.
Summary:
On being asked if it was time for India to replace MS Dhoni, ex-South Africa cricketer AB de Villiers said that it is funny to even think of dropping him.
Summary:
Posters calling Priyanka Gandhi Vadra an "emotional blackmailer" were spotted in Uttar Pradesh's Raebareli.
Summary:
"We had received a suggestion to rename Shimla and it's our duty to hear all suggestions," CM Thakur said.
Summary:
Congress President Rahul Gandhi has alleged Finance Minister Arun Jaitley's daughter Sonali Jaitley was on the payroll of fugitive businessman Mehul Choksi.
Summary:
"The children who lost their parents in the accident will never be orphans," he added.
Summary:
The 18-year-old son of Gurugram district judge Krishan Kant has succumbed to his injuries, 10 days after he was shot by Personal Security Officer Mahipal.
Summary:
Amid the boycott of an investment conference in Saudi Arabia by several countries, nPakistan PM Imran Khan has said that he's attending the event as his country is "desperate" for loans.
Summary:
Telugu is the fastest growing language in the US, a study by US-based Centre for Immigration Studies claimed.
Summary:
The court was hearing a treason case against Sharif over his remarks on the 26/11 Mumbai terror attacks.
Summary:
Actress Priyanka Chopra, while talking about her fiancé and singer Nick Jonas, said that he is now fine and comfortable with Mumbai and the place has now become his "other home".
Summary:
Her folks wanted the wedding to be on a lavish scale.
My mother also wants the wedding to be lavish," added Kapil.
Summary:
Sonali Bendre, who is currently undergoing treatment for cancer in New York, shared pictures with her wigmaker Bok-Hee and captioned it, "Indulging me with various looks...short hair or long hair." "Genius hairstylist and wigmaker...She's been so understanding, supportive and empathetic throughout it all.
Summary:
India, who won each of their first three matches in the tournament, are on top of the points table of the six-team tournament.
Summary:
Reliance Industries is set to finalise the site for India's first pod taxi prototype.
Summary:
NHTSA said the transit operator Transdev requested permission to use the shuttle for a demo project, "not as a school bus".
Summary:
Shiromani Akali Dal (SAD) President Sukhbir Singh Badal on Monday alleged that the Punjab government is on "mission cover-up" in the Amritsar train tragedy.
Earlier, SAD also demanded the sacking of Congress leader Navjot Singh Sidhu.
Summary:
Congress on Monday said that it will field late Prime Minister Atal Bihari Vajpayee's niece Karuna Shukla against Chhattisgarh CM Raman Singh from Rajnandgaon assembly seat.
Summary:
The iceberg, found just off of Antarctica's Larsen C ice shelf, is yet to be measured by researchers.
Summary:
A 70-year-old tribal woman is in a critical condition after her tongue was allegedly chopped off by three villagers in Bihar's Rohtas district on the suspicion of practising witchcraft.
Summary:
Addressing students at the 9th convocation of Lovely Professional University on Monday in Punjab, Vice President M Venkaiah Naidu said, "Educate women and educate the whole nation.
Summary:
Kerala's Sabarimala temple was closed on Monday after a five-day monthly prayer, bringing an end to the first period of pilgrimage since the Supreme Court's landmark verdict last month.
Summary:
A woman, who had come to meet a tantrik in the hope of giving birth to a male child, was gangraped by six men in Bihar's Buxar.
Summary:
Most of the deaths were reported from the Northern Railway zone at 7,908, the data revealed.
Summary:
Cameroon's 85-year-old Paul Biya has won the presidential elections for the seventh time after securing 71.3% of the vote, the Constitutional Council said.
Summary:
Three Paytm employees including the startup's Founder and CEO Vijay Shekhar Sharma's secretary were arrested on Monday for allegedly trying to extort â¹20 crore from Sharma after threatening to leak stolen personal data and confidential information.
Summary:
The Central Bureau of Investigation (CBI) on Monday raided its own headquarters in New Delhi to find evidence in alleged bribery case involving Rakesh Asthana, its second top ranked official.
Summary:
Indian Olympic Association Secretary General Rajeev Mehta has requested Sports Minister Rajyavardhan Rathore to allow athletes to fly business class for international tournaments.
"Often when we see officials travel business class for...events and I find athletes travelling economy.
Summary:
In his farewell message for fast bowler Praveen Kumar, Team India opener Rohit Sharma wrote that he cannot forget Praveen's "magical" spell against Australia in 2008 CB series' second final.
Summary:
Qatar-based news channel Al Jazeera's documentary 'The Munawar Files' has alleged spot-fixing took place in 15 international matches during 2011 and 2012.
Summary:
A policeman in Uttar Pradesh's Kanpur touched the feet of state minister Satish Mahana to apologise after his vehicle scraped Mahana's car.
Summary:
Former BSP MP Rakesh Pandey's son Ashish Pandey, whose video of holding a gun outside a 5-star Delhi hotel went viral, was sent to a 14-day judicial custody by a Delhi court on Monday.
Summary:
The number of taxpayers earning over â¹1 crore per annum has risen by around 60% in India in the last four years, the Central Board of Direct Taxes said.
Summary:
Maharashtra Chief Minister Devendra Fadnavis' wife Amruta Fadnavis has said that she had gone near the edge of India's first domestic cruise Angriya to enjoy fresh air.
Summary:
A 74-year-old retired school teacher in Assam allegedly committed suicide as his name did not appear in the final National Register of Citizens (NRC) draft, police said.
Summary:
A groom's head in Uttar Pradesh's Lucknow was shaved off on Sunday after he allegedly refused to marry the bride and demanded a motorcycle and a gold chain from her family.
Summary:
The brother of Kerala nun who accused ex-Jalandhar Bishop Franco Mulakkal of rape, has alleged key witness Father Kuriakose Kattuthara's death is pre-planned murder.
Kuriakose had given a statement to the police against the Bishop.
Summary:
A train ran over people watching the event, killing at least 61.
Summary:
PM Narendra Modi has reportedly summoned Asthana and CBI chief Alok Verma over the case.
Summary:
Australian Prime Minister Scott Morrison on Monday offered a national apology to the victims of child sexual abuse.
Summary:
Developed by researchers at Cornell University, it measures pupil size, captured through a burst of photographs taken every time users unlock their smartphones.
Summary:
Social media major Facebook is reportedly is planning to open a 2.2-lakh-square foot office space on rent in Bengaluru.
Summary:
Prime Minister Narendra Modi on Monday greeted BJP President Amit Shah on his 54th birthday, saying his rigour and hard work are "great assets for the Party".
Finance Minister, Home Minister and others also greeted Shah.
Summary:
Gandhi also alleged that the premier investigation agency was being used as a "weapon of political vendetta" by the government.
Summary:
Punjab CM Captain Amarinder Singh has arrived in Israel on a three-day visit to strengthen cooperation with the nation in key sectors like dairy, agriculture, and horticulture.
Summary:
The BJP has decided to 'illuminate' the houses of 3 crore beneficiaries of various government schemes in Uttar Pradesh with lotus-shaped lamps on next year's Republic Day evening.
Summary:
Talking about modern startup investing, Silicon Valley investor Chamath Palihapitiya has said, "We are in the middle of an enormous multi-variate kind of Ponzi scheme." Adding that the investors pressurise the startups to do well, he also said "They (investors) aren't people writing cheques out of their own balance sheet.
Summary:
Uber has decided to appeal Singapore competition watchdog's decision that its merger with regional rival Grab violated the city-state's competition laws, the startup said.
Summary:
The company said that OYO Living will help residents save on brokerage, lock-in periods, and the hassle of searching for houses.
Summary:
BepiColombo, the British-built spacecraft, has taken its first selfie from space after being launched successfully during the weekend for a 7-year-journey to Mercury.
Summary:
nA video shows NASA's water deluge system releasing roughly 450,000 gallons of water in just under a minute.
Summary:
Environmental and health experts will together investigate the causes of the defects in the upper limbs of babies.
Summary:
Father Kuriakose Kattuthara, who gave a statement to the police against Bishop Franco Mulakkal in the rape case filed by a Kerala nun was found dead in Jalandhar on Monday.
Summary:
Reacting to sexual harassment allegations against music director Anu Malik, singer Alisha Chinai has said, "Every word said and written about Anu Malik is true." Accusing Anu Malik of molesting her, Alisha had sued Malik in the 1990s and demanded â¹26.60 lakh as compensation.
Summary:
The Supreme Court has declined urgent hearing of a PIL seeking registration of FIRs based on allegations of sexual misconduct levelled by women during #MeToo movement, saying it will come up for hearing in regular course.
Summary:
Summary:
After slamming his 60th international century in the first ODI against Windies on Sunday, Team India captain Virat Kohli said that he can't afford to take any game lightly.
Summary:
The Congress will not project party President Rahul Gandhi or any other leader as its Prime Ministerial candidate in the 2019 Lok Sabha elections, senior party leader P Chidambaram has said.
Summary:
An article in Shiv Sena's mouthpiece 'Saamana' has compared the Amritsar train accident during Dussehra celebrations to the Jallianwala Bagh massacre on Baisakhi in 1919.
Summary:
In a letter to bishops and monsignors of the Catholic Church, Bishop Franco Mulakkal said the bail granted to him in the Kerala nun rape case was "a miracle" since it is not easy to get one in such cases.
Summary:
BJP leader H Raja on Monday appeared before Madras High Court and apologised for making derogatory remarks against the judiciary, saying he had "spoken in a fit of rage".
Summary:
Calling the train accident in Amritsar a "small accident", AAP MLA Sukhpal Singh Khaira has said that such accidents keep happening in the country every day.
Summary:
US President Donald Trump's administration is considering plans to revoke the recognition of transgender people by creating a narrow definition of gender, The New York Times has reported.
Summary:
A video of a French teenager shouting at his teacher to mark him present on the school register while pointing a fake gun at her has surfaced online.
Summary:
Following the successful renegotiation of the North American Free Trade Agreement, Canada's Prime Minister Justin Trudeau has said that working with US President Donald Trump is "not always simple".
Summary:
Parineeti Chopra said she didn't know what failure was until she saw her first loss in her 2014 film 'Daawat-e-Ishq'.
So, you have to be patient," she further said.
Summary:
On being asked if she had to set up Sidharth Malhotra with someone then who would it be, Alia Bhatt answered, "Kiara Advani".
Summary:
Rajkumar Hirani has said that writers are the foundation of every film, adding, "I think writers need to be respected a little more, financially.
Summary:
Neena Gupta, while talking about her daughter Masaba Gupta who is on a trial separation with husband Madhu Mantena, said, "They have still not taken a definite step.
Summary:
Summary:
Summary:
Deepika and Ranveer on Sunday shared a note on social media announcing their wedding dates as November 14-15.
Summary:
Aamir Khan, who had exited from 'Mogul: The Gulshan Kumar Story' after director Subhash Kapoor was accused of molestation, has reportedly returned as Subhash has been sacked from the project.
Summary:
Congress spokesperson Abhishek Singhvi has accused the BJP of "trying to create an imagined rivalry" between former PM Jawaharlal Nehru and Netaji Subhas Chandra Bose.
Summary:
Stating that fuel prices in the capital are the lowest among the four metros, Delhi CM Arvind Kejriwal asked why petrol pumps in Mumbai were not on strike despite the high fuel prices.
Summary:
American hedge fund Tiger Global Management has raised $3.75 billion in its latest venture capital fund, Tiger Global Private Investment Partners XI.
Summary:
Paytm has forayed into the Japanese market for the first time with its wallet service 'PayPay'.
Summary:
Elon Musk on Monday tweeted that his tunnelling startup The Boring Company's first high-speed transit tunnel is almost done and will open on December 10.
Summary:
Odisha has become the first state in India where diesel is costlier than petrol as diesel was sold at â¹80.69 per litre on Sunday in Bhubaneswar while petrol at â¹80.57 per litre.
Summary:
Following the announcement of marriage dates as November 14-15, actress Deepika Padukone on Sunday revealed that she has been dating Ranveer Singh for six years.
Summary:
Actress Tanushree Dutta has filed a â¹10 crore defamation suit against Rakhi Sawant after she alleged that Tanushree was high on drugs on the sets of movie 'Horn 'OK' Pleassss' in 2008.
Summary:
In a letter dated October 15 to Central Vigilance Commission, CBI Special Director Rakesh Asthana has alleged that CBI chief Alok Verma is trying to falsely implicate him in a case.
Summary:
A 46-year-old woman suffered a panic attack and fell unconscious after protesters at Sabarimala Temple in Kerala surrounded her and heckled her.
Summary:
The scheme's real impact at the population level will show in one-two years, Ayushman Bharat CEO Indu Bhushan said.
Summary:
A firm in charge of maintaining the new ITO skywalk in Delhi has hired six bouncers on â¹15,500 per month salary to ensure that it doesn't become a hangout zone for couples.
Summary:
Abhijeet came home drunk and started arguing with his mother following which she killed him, police said.
Summary:
Pakistan Prime Minister Imran Khan has said, "It is time India realised it must move to resolve the Kashmir dispute through dialogue in accordance with the UN Security Council resolutions and the wishes of the Kashmiri people".
Summary:
The Kerala Crime Branch has filed a case against ex-CM Oommen Chandy for allegedly sexually assaulting solar scam accused Saritha Nair in exchange for supporting her business.
Summary:
Qatar was hit by flash flooding last week as the desert state received almost a year's worth of rainfall in one day.
Summary:
Saudi has called Khashoggi's killing a "huge and grave mistake".
Summary:
"We want to make sure that those responsible [for Khashoggi's killing] be held to account," he further said.
Summary:
Calling migrants from Central American nations "illegal aliens", US President Donald Trump has said "full efforts" are being made to stop them from entering the country.
Summary:
In the wake of the killing of journalist Jamal Khashoggi at a Saudi consulate in Istanbul, German Chancellor Angela Merkel has said arms exports to Saudi "can't take place in current circumstances".
Summary:
Joachim Rønneberg in 1943 blew up a plant producing a hydrogen-rich substance key to the development of atomic bombs.
Summary:
Neena Gupta, who worked in TV serials like 'Saans', 'Siski' and 'Saat Phere: Saloni Ka Safar', said TV has given her money, fame and name.
Summary:
Karan Johar had given these options to Deepika while asking her the question on his show 'Koffee with Karan'.
Summary:
Late actor Vinod Mehra's son Rohan Mehra, who will be seen in the upcoming film 'Baazaar', said he never got anything because of his surname.
Summary:
Raveena Tandon, while talking about harassment in workplaces, said that she has gone through professional harassment.
"Sometimes it's women...who [get] other actresses removed from a project using their hero boyfriend or husband," Raveena further said.
Summary:
Neha Dhupia, who is expecting her first child with husband Angad Bedi, has said that she wants her baby to be healthy and it doesn't matter whether it's a boy or a girl.
Summary:
Summary:
Senior Congress leader Salman Khurshid said that it is difficult for the Congress to come to power on its own in the current situation, but alliances must not be formed at the "cost of containing Congress".
Summary:
Summary:
An RTI response has revealed that â¹99.33 lakh was spent for the funeral ceremony of former Chief Minister Jayalalithaa in December 2016 by the Tamil Nadu government.
Summary:
The footage shows people jumping up and down to the music when the middle of the dance floor suddenly caves in.
Summary:
This was the fifth time in ODI cricket that Rohit and Kohli shared a partnership of over 200 runs.
Summary:
Kohli, who has now scored 36 ODI and 24 Test centuries, is the fifth cricketer to hit 60 international tons.
Summary:
Actress Meira Omar, who appeared in 2016 film 'Wajah Tum Ho', has accused celebrity management agency Kwan Entertainment's Co-founder Anirban Das Blah of boasting how he made a girl masturbate in his apartment's balcony.
Summary:
A woman in China hit three luxury cars including a BMW, an Audi and a Maserati, while trying to exit a parking lot.
Summary:
Team India captain Virat Kohli crossed 2,000 international runs in the calendar year 2018 during the first ODI against Windies on Sunday.
Summary:
With his unbeaten 152 off 117 balls against Windies in the first ODI on Sunday, India opener Rohit Sharma took his tally of 150-plus ODI scores to six.
Summary:
Reacting to Rohit Sharma and Virat Kohli smashing centuries in the first ODI against Windies, leg-spinner Yuzvendra Chahal said, "They are two legends of the game...At times, we feel they're playing PS4." Kohli smashed 140(107) and Rohit hit 152*(117) to help India chase down Windies' 322 in 42.1 overs.
Summary:
Three security forces personnel were martyred and two Pakistani intruders were neutralised on Sunday in an encounter along the Line of Control (LoC) in the Rajouri district of Jammu and Kashmir.
Summary:
Punjab DGP Suresh Arora has said the train accident in Amritsar happened due to negligence on someone's part and an inquiry has been ordered to fix accountability.
Summary:
Union Minister of State for Home Affairs, Kiren Rijiju shared a picture of India map he made at his school's ground in Arunachal Pradesh's Nafra when he was in Class 4.
Summary:
All 400 petrol pumps in Delhi along with their linked CNG dispensing units will remain closed in Delhi from 6 am on Monday to 5 am on Tuesday.
Summary:
because we can't imagine living after the death of our parents and our youngest brother Sanju," the note further read.
Summary:
Swiss bank UBS AG has applied for the possession of beleaguered liquor baron Vijay Mallya's multi-million-pound London mansion in the UK High Court.
Summary:
At least 18 people were killed and 168 others were injured when a train derailed in Taiwan on Sunday, officials said.
Summary:
Over 400 theatres have been shuttered in Madhya Pradesh since October 5 to protest against entertainment tax levied by some local bodies in the state.
Now urban local bodies...have imposed additional...tax ranging from 5-15%," Jitendra Jain, ex-President of Film Federation of India said.
Summary:
Apple's Chief Design Officer Jonathan Ive has said that the role of the iPhone maker in technology addiction keeps him awake.
Summary:
Earlier, users claimed the audio quality of the Pixel phones was poor during video recordings.
Summary:
He also reacted over Sena Chief Uddhav Thackeray's upcoming visit to Ayodhya, adding Sena has never been serious about the issue.
Summary:
Kejriwal earlier launched the 'Aap ka Daan, Rashtra ka Nirmaan' donation campaign to tackle the party's financial crisis.
Summary:
China's amphibious aircraft AG600, claimed to be the world's largest, on Saturday completed its first water takeoff and landing.
Summary:
On investigating the object, officials confirmed it was a fuel tank from a defunct satellite which had been launched to space in 1998.
Summary:
The Prime Minister's Office (PMO) has been directed by the Central Information Commission (CIC) to disclose complaints of corruption received against Union Ministers between 2014 and 2017.
Summary:
Addressing an event of the Azad Hind government, PM Modi said his government is working towards providing the armed forces with better technology.
Summary:
A teacher of a private school in Uttar Pradesh's Banda district has been booked after an eight-year-old boy died allegedly after being beaten by him, police said.
Summary:
According to the Home Ministry statistics, over 61,000 posts of central paramilitary personnel are lying vacant in various paramilitary forces in the nation.
Summary:
The court rejected Yameen's petition seeking annulment of the result, ruling that Yameen had failed to prove that the elections were rigged.
Summary:
A total of 200 cases of Ebola have been confirmed in the Democratic Republic of Congo since the outbreak was reported in August, the Health Ministry said.
Summary:
Boycott, who turns 78 today, scored 22 hundreds in his Test career.
Summary:
Actors Deepika Padukone and Ranveer Singh's marriage date, November 14-15, is the same date on which their first film in which they acted together had released.
Summary:
World number 10 Saina Nehwal finished as Denmark Open runner-up after losing in the final to world number one Tai Tzu-ying of Chinese Taipei on Sunday.
Summary:
Rajput group Karni Sena has appointed Team India all-rounder Ravindra Jadeja's wife Riva Solanki as the head of its women's wing in Gujarat.
Summary:
The constellations also feature Albert Einstein, Eiffel Tower and Rome's Colosseum among others.
Summary:
Madhya Pradesh's Jhabua district administration used stickers on liquor bottles to raise voter awareness, however, it later dropped the plan after reassessing its "pros and cons", officials said.
Summary:
The women, suspected to be in their 40s, were part of a pilgrim group and said they were not aware of the customs of Sabarimala Temple.
Summary:
Last year, the marathon was preponed to October to avoid pollution caused during Diwali in November.
Summary:
Ex-J&K CM Omar Abdullah has shared a Twitter video, criticising Amritsar Dussehra revellers for "nonchalantly filming on their phones even after the train ran over people".
Summary:
The Assam government has suspended Guwahati West Deputy Commissioner of Police, Bhanwar Lal Meena, for not ensuring adequate security during Chief Justice Ranjan Gogoi's recent visit on October 17.
Summary:
They had blocked the tracks in protest against the train accident in which at least 59 people were killed.
Summary:
Amruta was cautioned by the security personnel onboard the cruise when she crossed the safety range.
Summary:
Prime Minister Narendra Modi on Sunday announced a national award in the name of Netaji Subhas Chandra Bose for police personnel who do "exemplary" work in rescue and relief operations during disasters.
Summary:
A Saudi government official has claimed that Saudi agents killed journalist Jamal Khashoggi in a chokehold and one of the agents wore the 59-year-old's clothes to make it appear as if he had left the Istanbul consulate.
Summary:
However, the plan failed and Khashoggi was killed after getting into a fight with officials.
Summary:
However, the airline did not specify when it will pay the remaining 75% of the September salary to these employees.
Summary:
On the occasion of the 87th birth anniversary of Shammi Kapoor on Sunday, Pooja Bhatt tweeted, "I'll never forget meeting Shammi Saab...and him saying...'Why has your father [Mahesh Bhatt] quit direction?
Summary:
Kangana Ranaut, who will portray a national-level kabaddi player in Ashwiny Iyer Tiwari's directorial 'Panga', will undergo training in kabaddi and gain weight of around six to seven kilograms for the film, as per reports.
Summary:
Meghan Markle's father Thomas Markle, while talking about Meghan's pregnancy said he's looking forward to seeing a "little Meghan" or a "little Harry".
Summary:
Summary:
Replying to a Twitter account named 'BoredElonMusk', Elon Musk on Saturday tweeted, "BoredElonMusk is my secret troll account.
Summary:
Audi's electric sport utility vehicle (SUV) 'e-tron' is facing a one-month delay because of a software bug, a spokesman for the German car brand said on Sunday.
Summary:
NASA administrator Jim Bridenstine has reportedly said that the US government 'temporarily' lifted the travel ban on Russian space chief Dmitry Rogozin to visit the country.
Summary:
Climate change and changing rainfall patterns are affecting the movement of people and the fertility of the land, he added.
Summary:
The project, 'Five Deeps Expedition', will use a two-person craft designed to withstand intense pressures around 9 km below the surface.
Summary:
Four people from Bihar were confirmed to be among the over 60 people killed.
Summary:
Of the 4,19,637 foreign nationals working in the US on H-1B visas as on October 5, about 74% or 309,986 are Indians, an official US report said.
Summary:
Music composer Anu Malik has stepped down as 'Indian Idol 10' judge after multiple sexual harassment allegations against him.
Summary:
Actress Deepika Padukone and actor Ranveer Singh will get married on November 14 and 15 this year, the couple confirmed on Sunday.
Summary:
So...be careful." Earlier, another video showed the organisers telling the chief guest, "Even if 500 trains pass, 5,000 people will watch from the tracks".
Summary:
Boycott faced Australian pacer Graham McKenzie for the first delivery and went on to score eight runs off 37 balls.
Summary:
Pant had made his international debut in a T20I against England and played his first Test in August this year.
Summary:
Reacting to the video, top-ranked ODI bowler Bumrah tweeted, "As a kid, I remember how I used to copy the actions of my cricketing heroes.
Summary:
Mumbai-based couple Prabir and Sayali Correa got married onboard Mumbai-Goa cruise 'Angriya'.
Summary:
A nine-year-old boy in Odisha was allegedly killed by his cousin brother and uncle to "appease goddess Durga for the fulfilment of their wishes", according to the police.
Summary:
Council President, A Poonkunju, said "Rehana's act hurt lakhs of Hindu devotees.
Summary:
PM Narendra Modi on Sunday hoisted the Tricolour at Red Fort to mark the 75th anniversary of Azad Hind government constituted by Netaji Subhas Chandra Bose.
Summary:
Rai, who was extradited from the UAE in 2002, said he does not own the weapons and leased them from a company.
Summary:
Urdu poet Hashim Firozabadi was attacked with a chemical and beaten up by a youth and his brothers when he went to persuade the former to stop harassing a girl.
Summary:
PM Narendra Modi on Sunday inaugurated and dedicated to the nation a newly-refurbished national police memorial and a newly-built police museum in Delhi.
Summary:
US President Donald Trump has said he would prefer to pick a woman to take over as the country's UN ambassador when Nikki Haley steps down.
"I'm going to pick the best person.
Summary:
After US President Donald Trump announced the country's withdrawal from the Intermediate-Range Nuclear Forces Treaty over Russia's alleged violations of the agreement, Russian Deputy Foreign Minister Sergei Ryabkov said it would be a "very dangerous step".
Summary:
At least 28 people were killed in 192 attacks, including grenade and IED explosions, targeting the first day of the parliamentary elections in Afghanistan, according to Interior Minister Wais Barmak.
Summary:
Foreign investors pulled out more than â¹32,000 crore from Indian markets in the first three weeks of this month amid ongoing global trade tiff and rising crude prices.
Summary:
Iulia Vantur, who will be making her Bollywood debut next year with 'Radha Kyon Gori Main Kyon Kaala', has revealed that Salman Khan had encouraged her to do the film.
Summary:
Parineeti Chopra, while talking about Nick Jonas and her cousin Priyanka Chopra who recently got engaged, said, "She [Priyanka] is full of life and crazy and he [Nick] is the anchor in her life." "He is the one who is her mirror...He really gets her.
Summary:
Summary:
Saif Ali Khan has said that while sharing the screen with his wife and actress Kareena Kapoor Khan he "ends up not performing".
I don't compete and give enough energy," Saif added.
Summary:
On his maternal uncle Yash Chopra's sixth death anniversary on Sunday, Karan Johar shared a picture of him captioned, "Miss you so much uncle Y!" Karan marked his acting debut with Chopra's 'Dilwale Dulhania Le Jayenge'.
Summary:
Saudi Arabia had asked a high-ranking Twitter employee, Ali Alzabarah, to spy on user accounts in its efforts to combat opposition, according to a report.
Summary:
Astrophysicist Neil deGrasse Tyson has said that space exploration could make Earth more peaceful because wars over resources would be over.
Summary:
The US Air Force's unmanned space plane X-37B has completed 400 days in Earth's orbit as part of its fifth secretive mission.
Summary:
On October 21, 1959, a platoon comprising 21 policemen was patrolling the border in Hot Spring in Ladakh's Aksai Chin when it was ambushed by the Chinese troops.
Summary:
Two workers were killed and twenty others are trapped inside a coal mine after a rock burst destroyed part of a water drainage tunnel in China's Shandong province on Saturday, the Chinese state media said.
Summary:
Summary:
Amritsar train driver Arvind Kumar in a written statement to the Railways said he constantly sounded horn on seeing the crowd on the tracks on Friday.
Considering the safety of my passengers, I proceeded with the train," Kumar added.
Summary:
Rich, who loved the store's pizza, had planned a trip with his wife to visit the pizzeria but his cancer worsened.
Summary:
After the Amritsar train accident during the Dussehra celebrations on Friday, a 17-year-old's mother said she found his body at the civil hospital but his mobile phone worth â¹20,000, wallet, and gold chain were missing.
Summary:
Following the accusation, lawyer Indira Jaising said she won't represent Hussain in the Kathua case anymore.
Summary:
A team of mountaineers recently scaled the peaks and hoisted the Tricolour on them.
Summary:
The CBI has filed an FIR against its Special Director Rakesh Asthana for allegedly taking a â¹2-crore bribe to settle a case against businessman Moin Qureshi.
Summary:
A woman working at a private firm in Pune has filed a police complaint claiming she was cheated of â¹3.28 lakh over a year in a fake 'Kaun Banega Crorepati' lucky draw.
Summary:
Uttar Pradesh Governor Ram Naik has approved the renaming of Allahabad as Prayagraj with immediate effect.
Summary:
The Government Railway Police (GRP) has filed an FIR against unidentified persons in the Amritsar train accident that killed at least 59 people during Dussehra celebrations on Friday.
Summary:
After the Amritsar train accident that killed 59 people on Friday, unknown assailants allegedly attacked Dussehra event organiser's home.
Summary:
After initially calling Saudi's explanation of journalist Jamal Khashoggi's death "credible", US President Donald Trump has now said he is not yet "satisfied" with their answer.
However, Trump said he won't pull out of trade deals with Saudi.
Summary:
US President Donald Trump on Saturday said that the country would withdraw from the Cold War-era Intermediate-Range Nuclear Forces Treaty with Russia.
Summary:
However, India's brand value increased by 5% to $2,159 billion.
Summary:
Actor Gajraj Rao has said that "lead actors" like Ayushmann Khurrana, Varun Dhawan, Ranbir Kapoor, Ranveer Singh and Rajkummar Rao are "secure enough" to give space to "character actors like him" in their films.
Summary:
Priyanka Chopra, while talking about her friend and Duchess of Sussex Meghan Markle's pregnancy, said, "I think this is a new phase in every woman's life...I hope hers is as amazing as she wants it to be." Priyanka added that she is "really excited" for Meghan.
Summary:
Farhan Akhtar, who has started shooting for his upcoming film 'The Sky Is Pink' after a "break" of around a year-and-a-half, said he needed a "little bit of a break" as he could feel "fatigue setting in".
Summary:
Barcelona's Argentine forward Lionel Messi is set to miss next week's El Clásico encounter against rivals Real Madrid after injuring his right hand during his side's 4-2 win over Sevilla on Saturday.
Summary:
Defending champions India defeated Pakistan 3-1 in their second match in the Asian Champions Trophy 2018 on Saturday.
Summary:
Summary:
Juventus' Cristiano Ronaldo became the first player to score 400 goals across the top-five European football leagues after getting on the scoresheet in his side's match against Genoa on Saturday.
Summary:
Educating cricketers on appropriate off-field conduct will be part of the ICC's "improved" guidelines to prevent sexual harassment and bullying of "children and vulnerable adults" under its ambit, the world body stated on Saturday.
Summary:
The BJP on Saturday released its first list of candidates for elections in Chhattisgarh, Telangana and Mizoram.
Summary:
To pay tribute to Amritsar train accident victims, some artists dressed as Ram, Hanuman, Sita and Laxman took part in a candle-light march organised in Chandigarh on Saturday.
Summary:
Pakistan's Finance Minister Asad Umar on Saturday said that the country has approached the International Monetary Fund (IMF) for a bailout programme for the last time.
Summary:
Thousands of people took to the streets in London on Saturday for a protest calling for a referendum on the final Brexit deal.
Summary:
Patel also maintained that the central bank is not obliged to increase the rate at every policy meeting.
Summary:
"If you have any information, please call at 011-24368800 or mail at assistance.nia@gov.in.
Your identity shall be kept secret," NIA tweeted.
Summary:
A picture and story of a man referred to as Hisamuddin Khan has gone viral, claiming he is an engineering graduate riding his 'rickshaw puller' father back home in a rickshaw after his convocation.
Summary:
Former Pakistani fast bowler Wasim Akram holds the record for smashing the highest score while batting at number eight in a Test match, achieving it on October 20, 1996.
Summary:
Television actor Rahul Raj has accused film writer-producer Mushtaq Shiekh of sexually harassing him and asking to sleep with him for keeping his (Rahul's) role in the serial 'Mata Ki Chowki'.
Summary:
Nyack and Zuri were housed together at the zoo for eight years and produced three cubs.
Summary:
He added the fan asked him which team he supported and after seeing a big knife in the fan's hand, he replied, "Chelsea".
Summary:
This came after a Dutch court ruled in Zeegers's favour, stating that preventing someone from registering as gender-neutral is a "violation of (their) private life, self-determination and personal autonomy".
Summary:
Billionaire Elon Musk on Friday shared the screenshot of a satirical website's article titled 'Elon Musk buys Fortnite and deletes it,' and tweeted, "Had to be done ur (you're) welcome." "I had to save these kids from eternal virginity," the article quoted Musk as saying.
Summary:
Days after Uttar Pradesh government renamed Allahabad to Prayagraj, Himachal Pradesh government is considering renaming its capital Shimla to 'Shyamala'.
My government will seek public opinion on the demand for its renaming," CM Jai Ram Thakur said on Friday.
Summary:
While serving as Gujarat CM, PM Modi took foreign aid after 2001 Bhuj earthquake, but isn't allowing Kerala, Vijayan asserted.
Summary:
The family of a 70-year-old man has asked for an FIR against monkeys, saying they attacked him with bricks causing his death in UP's Baghpat.
Summary:
Talking about the Amritsar train accident that claimed the lives of at least 61 on Friday, Minister of State for Railways Manoj Sinha said there was no negligence on the part of Indian Railways.
Summary:
Most of the 61 people who were killed in the Amritsar train accident on Friday were migrant workers from Uttar Pradesh and Bihar, a senior district administration official has said.
Summary:
At least 15 people were killed and 25 others were injured after a suicide bomber blew himself up in front of a polling station in Afghanistan's capital Kabul on Saturday, officials said.
Summary:
Lebanon's Miss Earth contestant Salwa Akar was stripped of her title after she posed for a picture with Israeli-Arab contestant Dana Zreik.
Summary:
US hedge fund manager Roy Niederhoffer has said he will accept Bitcoin for his six-floor, 10,720-square-foot mansion in New York, which is listed for nearly $16 million (â¹117.5 crore).
The mansion has a ballroom with 13-foot-high ceilings.
Summary:
Chelsea's Ross Barkley scored in the 96th minute of the match to salvage a 2-2 draw for his side against Manchester United at the Stamford Bridge on Saturday.
Summary:
Indian shuttler Saina Nehwal reached the final of the Denmark Open after beating Indonesia's Gregoria Mariska Tunjung in the semifinal of the tournament in nearly 30 minutes.
Summary:
Defending champion Kidambi Srikanth crashed out of the Denmark Open in the semifinal stage after losing to world number one Kento Momota of Japan on Saturday.
Summary:
Real Madrid extended their winless run to five matches with their 1-2 defeat to Levante in the La Liga on Saturday.
Summary:
Chinese phone maker Huawei's CEO Richard Yu, at the recent launch of the company's new smartphone Mate 20 series, said, "We are working on foldable phones.
Summary:
Chequers is the name given to Theresa May's proposed deal regarding UK's departure from EU next year.
Summary:
The hacking group was responsible for 14 hacking attacks on cryptocurrency exchanges since January last year.
Summary:
At least 27 people including children were killed in an accident involving multiple vehicles on a highway in South Africa's Limpopo province on Friday.
Summary:
The Ministry of Finance has imposed anti-dumping duties of up to $185.51 per tonne for five years on certain Chinese steel products.
Summary:
The RBI has opposed a government panel's recommendation to create a payments regulator that would be outside the central bank's control.
Summary:
The bank's net interest income, or the difference between interest earned on loans and that paid on deposits, increased 20.6% to â¹11,763 crore.
Summary:
Israeli photographer, Dafna Ben Nun's picture of a baboon holding her infant in Zimbabwe has gone viral, with people comparing it to the iconic 'Circle of Life' scene from Disney film 'The Lion King'.
Summary:
Shreyas Iyer-led Mumbai defeated Gautam Gambhir-led Delhi by four wickets in the Vijay Hazare Trophy final on Saturday to win the tournament for the third time.
Summary:
De Kock has reportedly been bought for â¹2.8 crore, which was the sum paid by Royal Challengers Bangalore to acquire him during the 2018 auction.
Summary:
A rock from the Moon that fell on the Earth as a lunar meteorite was sold for â¹4.5 crore ($612,500) by a Boston auction house to a Tam Chuc Pagoda complex representative from Vietnam.
Summary:
Talking about the controversy surrounding women's entry to Sabarimala Temple, actor-turned-politician Rajinikanth has said nobody should interfere in beliefs and traditions that have been followed over the years.
Summary:
Summary:
More than 20 women were attacked with sharp blades by unknown miscreants at an annual Dussehra mela organised in Bihar's Jehanabad district.
Summary:
Dalbir was trying to pull people out from the tracks before his legs came under the speeding train, he added.
Summary:
In April, 13 schoolchildren were killed after their bus collided with a train in UP.
Summary:
A video has surfaced showing one of the organisers of the Dussehra event near Amritsar's Joda Phatak telling Navjot Singh Sidhu's wife Navjot Kaur Sidhu that even if 500 trains pass by, 5,000 people are standing on the railway tracks for her.
Summary:
Several US lawmakers had urged Trump to halt arms sales to Saudi Arabia amid Khashoggi's disappearance.
Summary:
Jack Genesin revealed on Facebook that he bought Morrison's website domain name after it expired, adding that PM Morrison "forgot to renew" it.
Summary:
India foreign exchange reserves dropped by $5.14 billion during the week ended October 12, the biggest weekly decline since November 2011.
Summary:
Wishing her husband Daniel Weber on his 40th birthday on Saturday, Sunny Leone posted a picture with him on social media and wrote, "I want you always smiling, being silly and loving life." "You might be a year older but you are young at heart...Happy birthday to the love of my life," she further wrote.
Summary:
Actress Tara Sutaria will star with Sidharth Malhotra and Riteish Deshmukh in Milap Zaveri's film, as per reports.
Summary:
Summary:
This is probably the best team in the world," Ibrahimovic said.
Summary:
Google was earlier fined $5 billion by the European Commission for abusing its market dominance.
Summary:
âÂÂThere is no truth in their story about Apple,â he said.
Summary:
The European and Japanese space agencies on Saturday launched a seven-year mission, BepiColombo, to Mercury from Europe's Spaceport in Kourou, French Guiana.
Summary:
Strickland won the Nobel for her work in laser physics.
Summary:
Summary:
At least three people were injured in the explosion and are being treated in the hospital.
Summary:
Pakistan PM Khan tweeted, "Saddened to learn of the tragic accident...Condolences go to the families of the deceased."
Summary:
The truck had entered the road despite police designating it as a 'No Entry' zone ahead of the procession.
Summary:
Grace Meng, the wife of former Interpol President Meng Hongwei who has been detained in China, has said that she is not sure if her husband is alive.
Summary:
This comes after Arcelor agreed to pay â¹7,469 crore to creditors of two Indian companies in which it previously held stakes to become eligible to bid for Essar.
Summary:
Divisional Railway Manager Vivek Kumar has said after the Amritsar train accident, the driver was asked by railway authorities to proceed for passengers' safety as locals had started to attack.
Summary:
Sehwag, who turned 40 on Saturday, is the only Indian to score two triple centuries in Test cricket.
Summary:
'Falling Stars Challenge' has gone viral on Instagram, where users are posting photos of themselves lying flat on their faces as if they have fallen down, with expensive items scattered nearby.
Summary:
Pune director Abhimanyu Sarkar was reportedly sent on leave for making sexist comments.
Summary:
Odisha left-arm spinner Pappu Roy, who has been selected to play for India C in Deodhar Trophy, revealed his seniors in his locality used to give him â¹10/wicket for food.
Summary:
Amritsar DCP Amrik Singh Pawar has said the permission for Dussehra event, 100 feet from railway tracks, was given after the concerned station house officer gave clearance to the site.
Summary:
Protesters at Sabarimala Temple in Kerala on Saturday stopped a 52-year-old woman devotee after confusing her to be under 50 years of age.
Summary:
A nine-year-old girl was seen at Sabarimala Temple with a placard which read that she will visit Lord Ayyappa's shrine again after completing 50 years of age.
Summary:
The driver of the train that killed over 60 people in Amritsar has said he was given the green signal and had no idea that hundreds of people were standing on the tracks during Dussehra celebrations, reports said.
Summary:
Summary:
Bodies of three sisters and a brother were found 3-4 days after their death at their home in Faridabad's Surajkund area, the police said.
Summary:
BJP councillor Manish Kumar was arrested after he was caught on camera abusing and beating up a Sub-Inspector in a restaurant owned by the councillor in Uttar Pradesh.
Summary:
The remains of over 60 infants and foetuses were found at a Detroit funeral home, police said on Friday, calling the discovery "deeply disturbing".
Summary:
The kidnappers abandoned Dewji, who was found by the police.
Summary:
Farhan Akhtar, while referring to Amritsar train accident, tweeted, "Saddened to hear about the loss of life in Amritsar.
Summary:
Sakshi Tanwar, while talking about her adopted baby girl whom she has named Dityaa, said, "She's the answer to all my prayers...I feel blessed to have her in my life." "This is undoubtedly the greatest moment of my life...I and my entire family are elated to embrace Dityaa," she added.
Summary:
Sonakshi, who will portray one of the girlfriends of Gulshan in the film, will be having a "small but meaningful" role and will be shooting only for a few days, as per reports.
Summary:
Kim Kardashian has said that "all she wants is privacy" after getting married to Kanye West, adding, "I never thought that I would be [a private person]." "It started with Kanye.
Summary:
Summary:
Amid the #MeToo movement, a 40-year-old Meghalaya woman has accused two Catholic Church priests of sexual abuse.
Summary:
"@virendersehwag, my dear friend a very happy birthday!
Summary:
Indian seamer Praveen Kumar ended his 11-year-long cricket career by announcing his retirement from the sport on Saturday.
Summary:
Summary:
Uttar Pradesh Chief Minister Yogi Adityanath on Friday said people should follow the path of Lord Ram to destroy those promoting terrorism and Naxalism.
Summary:
Top executives from the firms will join Hiver's board as part of the deal.
Summary:
Summary:
Congress President Rahul Gandhi offered his condolences to the families of those who lost their lives in the Amritsar train accident on Friday, tweeting, "The train accident...is shocking.
Summary:
An eyewitness to the accident that killed over 60 people watching Dussehra celebrations in Amritsar said, "It took just about 10-15 seconds for the train to pass and leave behind a heap of crushed and dismembered bodies".
Summary:
After over two weeks of denial since journalist Jamal Khashoggi's disappearance, Saudi Arabia on Saturday admitted the government critic was killed inside its consulate in Istanbul, Turkey.
Summary:
Former tennis player Mahesh Bhupathi shared a note on #MeToo on social media, urging people to alienate those accused of sexual harassment.
Summary:
Nawaz, who joined Publicis in April from McCann, was accused by multiple women of sexual misconduct on social media platforms.
Summary:
The Wire has appointed an external committee headed by former Supreme Court judge Aftab Alam to probe the sexual harassment allegation levelled against its consulting editor Vinod Dua by filmmaker Nishtha Jain.
Summary:
Punjab minister Navjot Singh Sidhu on Friday said there was negligence in the Amritsar train accident, however, it was "never intentional or motivated".
Sidhu's wife, Navjot Kaur, who was the event's chief guest said she left just before the accident.
Summary:
India was listed third among the countries that received the most number of Green Cards, after China and Cuba.
Summary:
In the morning, Putta Chinnammani, mother of Rajamata Pramoda Devi, passed away at the age of 98 due to age-related illness.
Summary:
Mahor admitted his son was involved in celebratory firing at the event.
Summary:
Dalbir Singh, who played the role of Ravan in the Amritsar Ramleela was among the over 60 people killed after a train ran over them during Dussehra celebrations in the city on Friday evening.
Summary:
The militants hurled a grenade and fired at the camp, following which the army retaliated.
Summary:
Pakistan Foreign Office on Friday said India's purchase of the S-400 air defence system will destabilise strategic stability in South Asia and lead to a renewed arms race.
Summary:
Prime Minister Narendra Modi has announced â¹2 lakh compensation for the families of those killed in Amritsar train accident.
Summary:
Assange has been living in Ecuador's UK embassy since 2012.
Summary:
The court said the cars must be sold for at least ã404,000 (â¹3.9 crore).
Summary:
The deals include the Air India-Indian Airlines merger and the purchase of 111 aircraft for â¹70,000 crore.
Summary:
Ayushmann Khurrana said he knows he has become a star but he doesn't want to believe it, adding, "I approach all my films as my first.
Summary:
Lara's husband Mahesh Bhupathi tweeted a post saying, "I think [Lara] did the right thing.
Summary:
Akshay Kumar and Vidya Balan will be starring in R Balki's upcoming film based on India's Mangalyaan space mission aka the Mars Orbiter Mission [MOM], as per reports.
Summary:
Facebook has launched a 'war room' consisting of a team of 20 people at its Menlo Park headquarters to monitor third-party interference in elections.
Summary:
Amid deteriorating air quality in Delhi, Chief Minister Arvind Kejriwal on Friday said the city will become a "gas chamber" soon and farmers will suffer.
Summary:
After Goa Forward Party chief Vijai Sardesai claimed alliance partner BJP "is seriously considering the leadership issue", Goa Power Minister Nilesh Cabral said, "Our leader is (CM) Manohar Parrikar.
Summary:
CPI(M) General Secretary Sitaram Yechury on Friday said the pattern of protest at Sabarimala Temple in Kerala is similar to the Babri Masjid demolition in Ayodhya.
Summary:
Swami Paripoornananda, head of the Sree Peetham mutt, on Friday joined the BJP in the presence of party chief Amit Shah ahead of Telangana Assembly elections.
Summary:
A mob in Assam allegedly lynched the brother of a man who was accused of killing a couple on the previous day, said the police.
Summary:
India's outgoing High Commissioner to Britain, YK Sinha has said that India will be a reliable partner of the country irrespective of the turn the Brexit negotiations with the European Union may take.
Summary:
Union Minister KJ Alphons on Friday called #MeToo a "good movement" but said, "People should be extremely careful when they raise an allegation...
Summary:
At least 50 people died after a train mowed them down near Joda Phatak near Punjab's Amritsar on Friday evening, as per ANI.
Summary:
"I was there in the recording studio," said Sameer.
Summary:
Anirban Das Blah, the Co-founder of celebrity management agency Kwan Entertainment, allegedly attempted suicide on Friday after being accused of sexual harassment by multiple women.
Summary:
Smith slipped himself after reaching halfway down the pitch and was run-out at striker's end.
Summary:
The Punjab government has approved the purchase of over 400 luxury vehicles for the Chief Minister, ministers, MLAs and bureaucrats.
Summary:
After at least 50 people were killed as a train ran over them during Dussehra celebrations in Punjab's Amritsar, PM Narendra Modi tweeted, "Extremely saddened by the train accident in Amritsar.
Summary:
A sadhu in Uttar Pradesh's Rampur district allegedly cut off his genitals after being accused of having a love affair with a woman living in a nearby area.
Summary:
The police officer has been identified as ASI Zafar Imam, who was posted at the Chainpur Police Station in Kaimur.
Summary:
The Punjab government has declared a state mourning tomorrow in view of the train accident in Amritsar.
Summary:
Punjab CM Captain Amarinder Singh has announced his government will give â¹5 lakh aid to the family of each deceased in the train accident in Amritsar.
Summary:
The friend of the girl with whom she'd gone pandal hopping, the building's owner and another suspect were detained.
Summary:
After women aged 10-50 weren't allowed to enter Kerala's Sabarimala Temple despite Supreme Court's verdict, ex-Travancore Devaswom Board President Prayar Gopalakrishnan said, "This is not a place for sex tourism.
Summary:
Punjab minister Navjot Singh Sidhu's wife Navjot Kaur Sidhu said, "The effigy of Ravan was burnt and I had just left the site when the incident happened." "People doing politics over this incident should be ashamed," she added.
Summary:
India has moved up 5 places to rank 58 out of 140 economies in the World Economic Forum's (WEF) Global Competitiveness Index 2018.
Summary:
China's economy grew 6.5% in the July-September quarter, its slowest quarterly Gross Domestic Product growth since early 2009 at the height of the global financial crisis.
Summary:
It will be co-hosted by the Ministry of Health and Family Welfare and PMNCH.
Summary:
Indian batsman, Rohit Sharma's wife Ritika Sajdeh asked Indian spinner Yuzvendra Chahal to keep Karva Chauth with her for Rohit on the 27th of October.
Summary:
Friends of Real Madrid's French striker Karim Benzema are suspected of involvement in an attempted kidnapping reportedly in relation to money owed to the French footballer.
Summary:
The Australian cricket team slipped two places down to the fifth rank in the ICC Test team rankings after losing the two-match Test series against Pakistan by a 0-1 margin on Friday.
Summary:
Former Pakistan captain Shahid Afridi hit the ball out of the stadium while playing for the Paktia Panthers in the Afghanistan Premier League.
Summary:
India's 20-year-old pacer Khaleel Ahmed said India's former pacer Zaheer Khan's advice helped him become a better bowler.
Summary:
Indian shuttler Saina Nehwal defeated world number two Akane Yamaguchi of Japan for the first time in four years to enter the women's singles quarterfinals of the Denmark Open on Thursday.
Summary:
Facebook has hired former UK deputy Prime Minister Nick Clegg as head of the social networking platform's global policy and communications team.
Summary:
US-based direct selling company Amway has taken Flipkart to court for selling Amway's products âÂÂillegallyâ on its platform.
Summary:
Twelve Pakistani nationals have been detained in Rajasthan's Sri Ganganagar district for alleged violation of visa norms, police said.
Summary:
President Ram Nath Kovind and Prime Minister Narendra Modi on Friday took part in the Dussehra celebrations at Delhi's Lal Qila Maidan.
Summary:
The US is closing its main diplomatic mission serving Palestinians and will merge it with the US embassy to Israel.
Summary:
Fox Star India on Friday suspended Mukesh Chhabra from his directorial debut 'Kizie Aur Manny' till the Internal Complaints Committee (ICC) concludes its inquiry into the sexual harassment claims against him.
Summary:
Several villagers in Arunachal Pradesh became crorepatis on Thursday after they received compensation for their land acquired by the Indian Army over 50 years ago.
Summary:
Actor Amitabh Bachchan in his latest blog mentioned that "a list of over 850 farmers from Uttar Pradesh have been identified and their loans amounting to over â¹5.5 crore shall be taken care of".
Summary:
Janta Congress Chhattisgarh (JCC) leader Ajit Jogi, who earlier said he will contest against incumbent CM Raman Singh, will not fight the Assembly elections, his son Amit Jogi announced.
Summary:
Authorities in Arunachal Pradesh have issued an alert after a landslide in China blocked the flow of a river in the Tibet region, leading to the formation of an artificial lake.
Summary:
Pandey claimed the woman was accompanying Gaurav Kanwar, the son of an ex-Congress MLA.
Summary:
The relatives of the family, 11 members of which were found dead at their house in Delhi's Burari, have moved into the same house and said they didn't face any fear but instead felt "immense peace".
Summary:
Badal's son Sukhbir and daughter-in-law, Union Minister Harsimrat Kaur, were also allegedly being targetted.
Summary:
Russians will go to heaven as martyrs in the event of a nuclear war, President Vladimir Putin has said.
Summary:
The cameo by Tejón, who had been on the run for two years, was purportedly to mock the police over their failure to find him.
Summary:
US President Donald Trump praised Congressman Greg Gianforte who assaulted a journalist, saying that anyone who performs a body slam is "my kinda guy".
Summary:
Benchmark index Sensex fell for the second consecutive session on Friday, dragged by Reliance Industries, HDFC and Yes Bank.
Summary:
China's once-richest woman Zhou Qunfei, the Chairman and Founder of consumer electronics supplier Lens Technology, has lost 66% of her fortune or $6.6 billion this year, according to Bloomberg.
Summary:
A 42-year-old Tesco worker, Atif Masood, is suing the UK supermarket chain for ã20,000 (â¹19.1 lakh) after a colleague allegedly farted in his face.
Summary:
On Wednesday, Masaba took to her Twitter and wrote, "Taking some time off from Twitter.
My brain is going to explode." In one of her Instagram stories, Masaba wrote, "Gone off Twitter.
Summary:
A picture showing Hugh Jackman looking at Priyanka Chopra has gone viral.
Summary:
Wimbledon, the grass-court Grand Slam, is set to introduce the tie-break in the final set when the score reaches 12-12 so as to provide the certainty that matches will "reach a conclusion in an acceptable time frame".
Summary:
Australia fell short of their target by 373 runs in the second Test to lose the Test series 0-1 and register their heaviest Test defeat against Pakistan in terms of runs.
Summary:
Former Indian cricketer Sachin Tendulkar tweeted a photo with former West Indies batsman Brian Lara, calling him a "good friend" in his post.
Summary:
Using the "Share trip progress" option, users can choose contacts they want to share their live location and route with.
Summary:
American researchers have developed a robotic prosthetic hand that can catch and crush cans.
Summary:
Former Congress MLA Mahendrasinh Vaghela resigned from BJP on Thursday, months after joining the party in July.
Summary:
Summary:
âÂÂWe were stunned that this fish had teeth...capable of slicing flesh," one of the scientists said.
Summary:
The founder of the organisation, which claims to be for men who are harassed by wives, said, "All the laws in India are against men and favour women...
Summary:
Summary:
In a case of a suspected suicide pact, the bodies of a man and a woman were found hanging in a Greater Noida flat on Thursday.
Summary:
UrbanClap, India's most trusted home services expert, has partnered with Amazon Pay to offer upto 50% off on home cleaning services.
Summary:
Davis is Special Adviser on Human Trafficking to Houston Mayor.
Summary:
The one millionth run in Test cricket was scored by Australia's Allan Border against India on October 19, 1986 in the 1,054th Test at the Wankhede Stadium in Mumbai.
Summary:
The Mohali Police has charged gangster Dilpreet Singh Dhahan and his aide Sunny with attempt to murder for shooting at Punjabi singer Parmish Verma in Chandigarh in April.
Summary:
Sacred Games actress Elnaaz Norouzi has alleged director Vipul Shah tried to kiss her several times during Namaste England 'auditions'.
if I slept with Vipul, I would get the part," Elnaaz added.
Summary:
Pakistan batsman Azhar Ali, who got run-out while chatting to his partner Asad Shafiq in the second Test against Australia, said his sons will speak about it for years.
Summary:
The Enforcement Directorate on Thursday said it issued a show-cause notice to NDTV Group for alleged breaches of foreign exchange rules amounting to â¹4,300 crore.
Summary:
The Patiala House Court on Friday refused a bail plea of former BSP MP Rakesh Pandey's son Ashish and sent him to judicial custody till Monday.
Summary:
Activist Rehana Fathima's house was vandalised by two bike-borne persons on Friday while she attempted to enter the Sabarimala Temple.
Summary:
Activist Trupti Desai was on Friday arrested ahead of PM Narendra Modi's visit to Shirdi in Maharashtra after she threatened to stop his convoy if she was not allowed to meet him.
Summary:
This comes despite Reliance reporting a 17.3% rise in profit at â¹9,516 crore for the September quarter.
Summary:
The government is likely to appoint a new Chief Economic Adviser (CEA) in the next one or two months, according to reports.
Summary:
Huma Qureshi has said that she supports LGBT community because love is free and not restricted to any gender.
Summary:
Salman Khan took to his Twitter and posted a picture with his pet dog and wrote, "My most beautiful my love gone today.
Summary:
Singer Sona Mohapatra, while referring to #MeToo movement has tweeted, "Corporate India has to clean up too." "Women are 50% of the population and treating them in this manner hurts us not only ethically, spiritually but also economically," she further wrote.
Summary:
Men should never be the prime focus of women's lives," Neena added.
Summary:
Renuka Shahane has said that she doesn't think there is a single woman who doesn't have a #MeToo story, adding, "My story doesn't involve anyone famous." "It happened a long time ago but it impacted me for the longest time," she further said.
Summary:
Summary:
India's hockey team, the current Asian Champions Trophy defending champions, began their title defense in the 2018 edition with an 11-0 thrashing of hosts Oman in their opening round match on Thursday.
Summary:
American tennis player Serena Williams' coach Patrick Mouratoglou, who had admitted to gesturing to her during the US Open 2018 final, has said that on-court coaching should be allowed.
Summary:
Microsoft has fired its Director of Sports Marketing and Alliances Jeff Tran who allegedly tried to embezzle over $1.5 million from the company.
Summary:
The people of Rajasthan will take revenge on the BJP in the upcoming Assembly elections for insulting former Union Minister Jaswant Singh, his son Manvendra Singh said on Thursday.
Summary:
US-based ride-hailing startup Uber is testing an on-demand staffing service called Uber Works, according to a report.
Summary:
A woman has accused SpiceJet crew of threatening to deplane her after she asked for medical help onboard a Delhi-Mumbai flight as a metal bottle had fallen on her.
Summary:
Summary:
The chopped body parts of a woman were found stuffed in a sack and scattered near it in outer Delhi, said the police.
Summary:
US President Donald Trump has threatened to use military force to close the country's border with Mexico if it does not stop an "onslaught" of migrants from Central American countries from reaching the US.
Summary:
Using Raavan's 10 heads as metaphors for evil thoughts, the ad encourages the audience to choose #GoodOverEvil and destroy the apprehensions and misconceptions surrounding renewal or buying a car insurance.
Summary:
Fueled by the past, inspired by the future, Nissan unveiled the energetic and engaging design of its new Kicks SUV in India.
Summary:
A 'high-profile' Ukrainian fugitive who faked his own death to evade authorities was found living in a castle worth â¹25 crore with a Rolls-Royce Phantom car by the French police.
Summary:
Reports said that Sanjana's accusations were silenced by the film's director Mukesh Chhabra.
Summary:
Two women were prevented from entering Lord Ayyappa's shrine at Kerala's Sabarimala Temple after a 5-km uphill trek on Friday, despite the Supreme Court verdict to open the temple for women of all ages.
Summary:
The head priest of Sabarimala Temple, Tantri Rajeevaru Kandarau, on Friday said they have decided to lock the temple, hand over the keys and leave.
This comes amidst a standoff between protestors and women who are trying to enter the temple after the Supreme Court verdict.
Summary:
Delhi BJP chief Manoj Tiwari offered to donate â¹1,11,100 from his own income to the AAP if party chief and Delhi CM Arvind Kejriwal clears Delhi Metro's Phase-IV project file.
Summary:
The Income Tax Department raided a famous chaatwala-cum-caterer in Punjab's Patiala and unearthed â¹1.2 crore in undisclosed income.
Summary:
Singh urged the Shiromani Gurdwara Parbandhak Committee to find his replacement.
Summary:
NDTV has been sued by Anil Ambani's Reliance for â¹10,000 crore in an Ahmedabad court for the channel's coverage of the India-France Rafale jet deal, CEO Suparna Singh tweeted on Thursday.
Summary:
The Delhi Police has ascertained the identity of the three women who were accompanying ex-BSP MP Rakesh Pandey's son Ashish when he brandished a gun outside a five-star hotel in Delhi.
Summary:
The priests at Sabarimala Temple in Kerala on Friday left their rituals to join the protests barring entry to women aged 10-50 years inside the temple.
Summary:
Rishi Kapoor shared his picture with Javed Akhtar and wife Neetu Kapoor from New York.
Sharing the picture, Rishi wrote, "Thank you Javed Sahab for entertaining and making us laugh so much.
Summary:
Parineeti Chopra said she's a person who doesn't believe in dating or a one night stand, or casual relationships.
Summary:
Katrina Kaif and Varun Dhawan will appear together on the sixth season of talk show 'Koffee With Karan'.
Summary:
Talking about Subhash Ghai who has been accused of multiple sexual offences, Shatrughan Sinha said even if Ghai is proven guilty and serves punishment, he'd work with him.
They have no problem working with Sanjay Dutt who has been convicted.
Summary:
Shama Sikander revealed that during the initial days of her career when she was 14, a director put his hand on her thigh, adding, "I, immediately said no and shook him off." "He told me, 'If not a director, an actor or producer might exploit you.
Summary:
Deepika will reportedly wear a Sabyasachi outfit for the wedding.
Summary:
Shiv Sena chief Uddhav Thackeray on Thursday told women, "If anyone harasses you, slap them right away.
Summary:
Calling the previous Congress government's decision to recommend religious minority status for Lingayat community a "blunder", Karnataka Minister DK Shivakumar said, "We apologise...
Summary:
Summary:
A man allegedly attacked his wife and her relatives with a sickle outside a Hyderabad police station on Thursday after she went there to register a complaint against him for harassment.
Summary:
The police said they are questioning his friends.
Summary:
Talking about US sanctions on Iranian oil imports, the Ministry of External Affairs on Thursday said it's engaged with Iran and other stakeholders, adding that it will not be proper to go into how it will deal with the issue.
Summary:
A woman from West Bengal was allegedly confined and gangraped for 10 days in Puri district, Odisha.
Summary:
State-owned Oil and Natural Gas Corporation (ONGC) has denied reports which said the company had to avail overdraft facility to pay salaries to its employees.
Summary:
This is the second out of five production plants of Colgate to close in the country which is experiencing its worst economic crisis.
Summary:
Mahindra Group Chairman Anand Mahindra today took to Twitter to share a video of US policemen performing garba along with Indian community members.
Summary:
Arshdeep Singh, a 10-year-old boy from Punjab, has won the Wildlife Photographer of the Year award in 10 Years and Under category given by UK's Natural History Museum.
Summary:
Former New Zealand all-rounder Scott Styris has said that he is waiting for the condemnation of Australia for enforcing the run-out on Pakistan batsman Azhar Ali. Styris cited Muralitharan's run-out from 2006, saying New Zealand took hammering due to it.
Summary:
ICC Anti-Corruption Unit's general manager Alex Marshall has revealed most corrupt bookies in international cricket belong to India.
Summary:
Shiv Sena chief Uddhav Thackeray on Thursday said that he is saddened that Ram Mandir has not been constructed yet and announced that he will visit Ayodhya on November 25.
Summary:
Congress MP Ghulam Nabi Azad on Wednesday said that before 2014, 95% of people who called him for campaigning were Hindus, but now that number has reduced to 20%.
Summary:
A man in Odisha's Gajapati district carried the body of his minor daughter in a sack on his shoulders and walked for eight kilometres to reach the nearest hospital for her post-mortem.
Summary:
A 27-year-old woman delivered a baby girl in Pune from the same womb which carried her.
Summary:
Two men were arrested for allegedly raping their 16-year-old sister for four years in Uttar Pradesh's Meerut after the victim made a video of the crime and showed it to the police as evidence.
Summary:
A man in Mumbai was arrested for allegedly groping a woman and a 14-year-old girl in rickshaws and boasting about such acts to his friends, one of whom reportedly tipped off the police.
Summary:
The top US commander in Afghanistan, General Scott Miller, who was also at the meeting, was uninjured.
Summary:
The US Treasury Department has said it could remove India from its currency monitoring list of major trading partners next April.
Summary:
It added that 91% of the adultnpopulation in India has wealth below $10,000.
Summary:
Novartis' offer represents a 54% premium to Endocyte's closing share price on Wednesday.
Summary:
Cahill's video, in which he was seen batting, was captioned, "Little bit of cricket on my day off.
Summary:
Reacting to being left out of the Indian ODI team for the Windies series, Indian spinner Ravichandran Ashwin said, "It is always disappointing for anyone to be left out." Talking about Yuzvendra Chahal and Kuldeep Yadav, Ashwin said, "It is all about telling me and (Ravindra) Jadeja, boss, can you up your game?
Summary:
Khabib, who beat McGregor in their UFC fight, had recently challenged Mayweather on Instagram.
Summary:
Indian spinner Harbhajan Singh, on being asked about the choice of spinners for the Indian cricket team, said that he believes that Kuldeep Yadav will be India's number one spinner.
Summary:
Australian batsman Jake Doran got run out after he collided with his batting partner Matthew Wade while playing for Tasmanian Tigers Men in the Sheffield Shield.
Summary:
Around 50.42% of American users who used WhatsApp in the last six months don't know it is owned by Facebook, according to a survey conducted by DuckDuckGo. They also found nearly 60% of those who used Waze didn't know that it was owned by Google.
Summary:
The aim was to show that large aircraft won't always win in a collision with small drones.
Summary:
The allegations are part of countersuit in response to a complaint Huawei filed last year accusing CNEX of stealing its technology and some of its employees.
Summary:
Union Minister of State for External Affairs General VK Singh said that the government should not be blamed for the sexual misconduct allegations against MJ Akbar.
MJ Akbar resigned as a Union minister on Wednesday.
Summary:
These aircraft will take years to arrive in India, he said.
Summary:
All officers and ranks of the Haryana Police contributed towards the cause, an official statement said.
Summary:
Japan on Thursday said its plastic waste was piling up with limited capacity to process it after China banned waste imports.
Summary:
Anna, who shared the news on Facebook, continued to see advertisements for cots, baby blankets and bottles.
Summary:
Summary:
Filmmaker Farah Khan, whose brother Sajid Khan has been accused of sexual harassment, said the only thing she fears are the quick judgments and quick punishments given through trial by Twitter.
Summary:
Union Minister Pon Radhakrishnan on Wednesday said that the #MeToo movement was started by "people with perverted minds".
"You and I work with women.
Summary:
Reacting to Pakistan batsman Azhar Ali's run-out against Australia, which occurred after he was chatting to batting partner Asad Shafiq, a user tweeted, "This happens when you chat to your girlfriend after a long time." "The reason why you should never leave a torrent download at 99%," wrote another.
Summary:
Mexican boxer Canelo ÃÂlvarez has signed the richest contract in the history of sports, agreeing a five-year deal worth $365 million (over â¹2,680 crore) with streaming service DAZN.
Summary:
Food delivery startup Swiggy is reportedly in talks to raise $900 million in a fresh round of funding from a clutch of investors led by South African technology conglomerate Naspers.
Summary:
A private school in Uttarakhand's Dehradun allegedly denied admission to a 16-year-old girl who was gangraped in a boarding school.
Summary:
The programme invites professionals aged up to 35 years, who will work with ministers and officials on some of the urgent urban challenges.
Summary:
The 465-km railway line will have 30 stations and is estimated to cost â¹83,360 crore.
Summary:
TCS ended September quarter with $5.21 billion in revenue while Accenture ended with $10.1 billion in August quarter.
Summary:
This was twice that of postings that sought Application Developers, which was in second place.
Summary:
Reliance Industries has acquired a 12.7% stake in skyTran, a US technology company developing pod car transport systems.
Summary:
BCCI clarified that acting secretary Amitabh Choudhary is attending the ICC meeting in Singapore in his capacity as ICC's Board Director and not as a replacement for CEO Rahul Johri, who is facing allegations of sexual harassment.
Summary:
India's 18-year-old batsman Prithvi Shaw hit pacer Mohammed Siraj for 16 runs off three balls, following which he received a hug from his Mumbai teammate Rohit Sharma in the semifinal of the Vijay Hazare Trophy 2018.
Summary:
Australian spinner Nathan Lyon has not overstepped to give away a no-ball in over 20,000 deliveries in Test cricket so far.
Summary:
Akash Malik, the 15-year-old son of a cotton farmer, won India's maiden silver medal in archery at the Youth Olympics.
Summary:
Sachin Tendulkar-backed fashion startup Universal Sportsbiz (USPL) has raised nearly â¹100 crore from Accel and its Growth Fund, along with NB Ventures and Alteria Capital.
Summary:
Former Manchester United forward Wayne Rooney scored from a free kick from almost 30 yards out for his American club DC United against Toronto FC on Wednesday.
Summary:
Saudi Arabia has cancelled its deal with Richard Branson-led Virgin Hyperloop One, according to reports.
Summary:
Facebook COO Sheryl Sandberg, CPO Chris Cox and Facebook India Head Ajit Mohan have also been named in the complaint.
Summary:
Nath's tweet alleged widespread corruption in the incumbent state government.
Summary:
Over 450 Amazon employees have signed a letter urging CEO Jeff Bezos to stop the sale of the company's facial recognition software, Rekognition, to police forces in the country.
"We know Bezos is aware of these concerns." the letter states.
Summary:
Reports added that raising funds has become difficult for these startups competing against SoftBank-backed OYO.
Summary:
After the new research, the Australian scientists still maintain that the structures were fossils.
Summary:
RSS chief Mohan Bhagwat on Thursday urged people of the nation to vote wisely keeping the national interest in mind.
Summary:
In a bid to prevent cheating at examination centres, Rajasthan government is considering a ban on social messaging apps like WhatsApp around exam centres.
Summary:
Veteran politician ND Tiwari, the only Indian to serve as the CM of two states, Uttar Pradesh and Uttarakhand, passed away on his 93rd birthday on Thursday in Delhi.
Summary:
Dentsu Aegis India has said Happy mcgarrybowen's CEO Kartik Iyer, MD Praveen Das, Bodhisatwa Dasgupta and iProspect India's Dinesh Swamy have stepped down from their posts following sexual harassment allegations against them.
Summary:
SEBI gave the founder brothers and their related corporate entities three months to repay the money they diverted from Fortis, along with interest.
Summary:
Delhi's Patiala House Court on Thursday heard the criminal defamation case filed by former editor MJ Akbar against journalist Priya Ramani over her sexual harasssment allegations and scheduled its next hearing on October 31.
Summary:
Pakistan's leading Test wicket-taker among spinners, Danish Kaneria, who confessed to his role in the 2009 spot-fixing scandal in England, said he didn't do it earlier as his father was dying of cancer.
Summary:
BCCI's Committee of Administrators has denied reports that it has accepted captain Virat Kohli's request and allowed Team India cricketers' wives to accompany them after 10 days into overseas tours.
Currently, players' wives can accompany them on away tours for two weeks.
Summary:
Uttar Pradesh CM Yogi Adityanath has instructed his ministers to avoid foreign trips until the Lok Sabha elections in 2019 get over.
Summary:
However, users pointed out that a lot of the cities were renamed by the Congress government.
Summary:
China's Chengdu is reportedly planning to launch an illumination satellite, eight times brighter than the Moon, in 2020.
Summary:
In what is said to be a first-of-its-kind move, Uttar Pradesh government has announced that man-animal conflicts will now be considered a 'State Declared Disaster'.
Summary:
President Donald Trump has said the US has asked Turkey for an audio recording of Saudi journalist Jamal Khashoggi which reportedly proves he was tortured before being murdered inside a Saudi consulate in Istanbul.
Summary:
Mukesh Ambani-led Reliance Industries (RIL) has appointed former Chairperson of State Bank of India, Arundhati Bhattacharya, as an independent director for a period of five years.
Summary:
Tata Group has held preliminary talks to buy a large stake in debt-laden Jet Airways, reports said.
Summary:
My goal is to be as fit as him," Pandya added.
Pandya had earlier said he does not want to be compared to Kapil Dev.
Summary:
Bumrah said, "No one is medium pace and everybody is able to clock 140's." "Everybody has [a] good rapport with each other.
Summary:
Nine scientists on Wednesday received the $3-million 'Breakthrough Prize', a Silicon Valley-funded award backed by Mark Zuckerberg, Yuri Milner, and Sergey Brin.
Summary:
The micro-blogging platform said it will display a notice stating that a tweet is unavailable because it violated Twitter rules.
Summary:
WhatsApp is testing a new feature called 'Linked Accounts' that would link users' accounts on the platform to external services starting with Instagram, as per a report.
Summary:
The cuts come several months after the company cancelled plans for a second version of its smartphone.
Summary:
Virgin Hyperloop One has announced its Missouri Hyperloop route connecting Kansas City and St. Louis could reduce the travel time from 3.5 hours by car to 28 minutes.
Summary:
Billionaire Bill Gates-led Breakthrough Energy Ventures has launched a $116-million investment fund to help European companies develop green energy technologies.
Summary:
Yadav, who had formed the morcha following differences with Samajwadi Party chief Akhilesh Yadav, had earlier said he felt neglected by SP.
Summary:
Gujarat Congress MLA Alpesh Thakor, who has been accused of inciting attacks on Hindi-speaking migrant workers by BJP, has not been invited for a Congress function set to be held in Bihar on October 21.
Summary:
OYO is currently operational in countries including the UK, China, and Nepal.
Summary:
The last 'Hand-in-Hand' exercise took place in Pune in 2016.
Summary:
A train accident was averted when a Railway staffer noticed the track was damaged between Villupuram and Chengalpattu and waved a red flag to alert the oncoming Tiruchendur-Chennai Egmore Chendur Express, said an official.
Summary:
The veterinary doctor, Dalu Soren, has been accused of luring the girl with â¹500 and telling her she would be converted to Christianity at a religious meeting.
Summary:
As part of the one8 collection with PUMA, Virat Kohli has designed his very first sneaker.
Summary:
Former BSP MP's son Ashish Pandey, who was missing since he pulled out a gun outside a 5-star hotel, has surrendered at a Delhi Court.
Summary:
Ayushmann Khurrana and Sanya Malhotra starrer 'Badhaai Ho' is "not a laugh riot but...a complete family entertainer with emotions as its USP," wrote Bollywood Hungama.
Summary:
Actress Kajol has revealed that nobody, other than actor Ajay Devgn's family and her family, wanted them to get married.
Summary:
Bahl was accused of sexual harassment by a former employee of Phantom Films.
Summary:
Arjun Kapoor and Parineeti Chopra's 'Namaste England' is "riddled with a terrible script and a juvenile screenplay," wrote Bollywood Hungama.
Summary:
Singer Shweta Pandit called Anu Malik a paedophile while alleging that she was 15 when the music composer, who she called 'Anu uncle', said he will give her a song but asked her to give him a kiss first.
pale in the face," added Shweta.
Summary:
He added that "kichad" (muck) of such allegations can be thrown at anyone, be it a priest, a judge or an innocent man.
Summary:
Ali and Asad Shafiq thought it crossed the boundary and started chatting in the middle of the pitch.
Summary:
The 37-year-old apologised to his Essex teammate, who was jailed for spot-fixing after Kaneria introduced him to an Indian bookie called Anu Bhatt.
Summary:
The University Grants Commission (UGC) has asked all universities and institutions of higher education to set up innovation labs and entrepreneurship cells in campuses.
Summary:
The son of former BSP MP Rakesh Jagmohan Pandey, Ashish Pandey on Thursday said, "I am a businessman and it is not a crime to be a politicianâÂÂs son in India." Pandey was seen wielding a gun outside Delhi's Hyatt hotel, the video of which went viral.
Summary:
Raju Gangappa from Bengaluru allegedly pressed the woman's back and abused her when she retaliated.
Summary:
An ATM for deposit and withdrawal of money for cryptocurrencies has been installed in Bengaluru's Kemp Fort Mall by virtual currency exchange Unocoin.
Summary:
DoT-UIDAI further clarified delinking mobile numbers from Aadhaar and linking another ID proof was voluntary.
Summary:
Saudi journalist Jamal Khashoggi, who has been missing since he visited the Saudi consulate in Istanbul, was tortured before being decapitated, according to a report by a Turkish daily.
Summary:
Police said the students are unlikely to be charged with crime and they would let the matter be handled by the school.
Summary:
A plane carrying US First Lady Melania Trump was forced to turn around and land after the cabin filled with smoke.
Summary:
At least 19 people were killed and several others were injured at a college in Crimea on Wednesday when a student opened fire at fellow pupils before killing himself.
Summary:
In an auction held at the Prime Minister House in Pakistan on Wednesday, one out of the 49 vehicles on display was purchased.
Summary:
The Goa Congress was "never interested in forming the government" and only wanted to keep its MLAs together, its former MLA Subhash Shirodkar claimed after joining BJP.
Claiming he should have left Congress in March 2017 but had "wasted" his time, he said, "At least three-four leaders in Congress...
Summary:
Summary:
Summary:
Summary:
Customs officials said they became suspicious because the women had preferred to use the green channel once they landed.
Summary:
Summary:
At least two coaches of a Delhi-bound Rajdhani Express derailed on Thursday after being hit by a truck in Madhya Pradesh, an official said.
Summary:
A video of a child emerging out of an X-ray machine during a security check at a railway station in China has gone viral.
Summary:
Responding to Tanushree Dutta's sexual harassment allegations against Nana Patekar, Maharashtra Navnirman Sena's chief Raj Thackeray said, "Women must raise voice when they face oppression, not after 10 years." Adding that he knows Nana, Thackeray said, "He is indecent.
Summary:
Responding to sexual harassment allegations against Nana Patekar by Tanushree Dutta, Maharashtra Navnirman Sena (MNS) chief Raj Thackeray said, "I know Nana Patekar; he is indecent." "He does crazy things but I don't think he can do such thing," Thackeray added.
Summary:
A picture of two golden snub-nosed endangered monkeys gazing into the distance in a forest in China's Qinling Mountains has won Dutch photographer Marsel van Oosten the Wildlife Photographer of the Year (Grand title winner) award.
Summary:
After people started calling on emergency service number 911 to report YouTube is not working, America's Philadelphia Police tweeted, "Yes, our YouTube is down, too.
Summary:
Six members of a family were killed and 15 others were injured in Andhra Pradesh's Kurnool on Wednesday after a truck rammed into the van they were travelling in.
Summary:
Sri Lankan President Maithripala Sirisena has categorically rejected media reports which claimed that he accused RAW of plotting his assassination.
Summary:
Police said the box had a note saying that it was from a former student thanking the owner for support.
Summary:
The man reportedly posted derogatory comments regarding women's entry into the temple.
Summary:
As the number of people infected with Zika virus rose to 100 in Rajasthan on Wednesday, the Centre has sent an expert team from Indian Council of Medical Research (ICMR) to Jaipur.
Summary:
Mukesh Ambani-led Reliance Industries has said it will buy majority stakes in Den Networks, and Hathway Cable and Datacom, two of India's largest cable and wired internet services providers.
Summary:
Mukesh Ambani-led Reliance Industries Ltd (RIL) on Wednesday posted its highest-ever quarterly profit at â¹9,516 crore for the July-September period of the financial year 2018-2019.
Summary:
However, its average revenue per user fell for the fourth straight quarter to â¹131.7.
Summary:
Aadhaar-issuing authority UIDAI has asked digital wallets and registrars of mutual funds to stop authentication using the 12-digit unique identification number.
Summary:
Indian batsman Gautam Gambhir said that he will not be retiring from cricket till the time he has passion in him.
Summary:
Turan's current club Istanbul Basaksehir has stated that they had fined the 31-year-old almost $431,000 over the incident.
Summary:
India's best-ever Test bowling figures of 16/136 were registered by Narendra Hirwani, who was making his Test debut in that match.
Summary:
The proposal, originally made by hedge fund Trillium Asset Management, has asked FacebookâÂÂs board to make the role of board chair an independent position.
Summary:
MIT and Massachusetts General Hospital have developed an artificial intelligence (AI) model that can identify breast cancer risk with 90% accuracy.
Summary:
An Austrian computer repairman, Roland Borsky, is seeking a storage space for his collection of roughly 1,100 Apple computers.
Summary:
A railway station will be built inside a tunnel at a height of 3,000 metres on the strategic Bilaspur-Manali-Leh line, an official said.
Summary:
The Congress on Wednesday accused PM Narendra Modi of benefitting his crony and asked him to break his silence on the multi-crore Rafale deal "scam".
Summary:
An Indian-origin Uber driver has been charged for allegedly kidnapping and groping a female passenger in the US.
Summary:
Rape accused Bishop Franco Mulakkal, who is out on bail, was showered with rose petals and garlanded by his supporters as he reached Jalandhar on Wednesday.
Summary:
Union Minister for Minority Affairs Mukhtar Abbas Naqvi on Wednesday unfurled India's highest tricolour installed on the terrace of any building at Haj House in Mumbai.
Summary:
A seven-year-old schoolgirl was allegedly raped on Tuesday when she was returning home from her school in Haryana's Rewari, police said.
Summary:
Reliance Industries, the owner of the world's largest refining complex, has halted imports of Iranian crude ahead of US sanctions against the country's oil sector.
Summary:
A UK clothing brand named Shreddies has made a pair of jeans costing â¹9,600, which the company claims can eliminate the smell of farts.
Summary:
Summary:
"He shoved his f*****g tongue down my mouth.
I immediately bit his tongue...with all my might & anger," said Soares.
Summary:
During a workshop on women's laws on Tuesday, Shiv Sena MLA Sanjay Shirsat said, "#MeToo campaign doesn't empower women...Any woman can complain after years.
Summary:
Windies' coach Stuart Law has been suspended from the first two India ODIs for making inappropriate comments to the umpires.
Summary:
Ex-Pakistan captain Shahid Afridi has said Indian cricketers should also participate in various T20 leagues around the world other than the Indian Premier League.
Summary:
The phone, which needs to be charged, is placed on the rear of the Huawei phone.
Summary:
Ahead of Dussehra, RJD has put up a poster outside its party office in Bihar's Patna, showing party supremo Lalu Prasad Yadav's son Tejashwi as Lord Ram and Bihar CM Nitish Kumar as Ravan.
Summary:
Three cousins, aged between 10 and 15 years, were buried alive when a portion of the land they were digging caved-in in Madhya Pradesh's Damoh on Wednesday.
Summary:
The Special Investigation Team probing Saturday's Gurugram shooting said the gunman shot at the judge's wife and son after an argument over car keys.
Summary:
Journalist Priya Ramani, one of the women who accused BJP leader and former Editor MJ Akbar of sexual harassment, tweeted, "As women we feel vindicated by MJ Akbar's resignation (as a Union Minister)." "I look forward to the day when I will also get justice in court #metoo," she added.
Summary:
Queensland has voted 50-41 in favour of a bill to legalise abortion, becoming the fifth Australian state to do so.
Summary:
Kapoor co-founded Yes Bank in 2004 and has helmed the private sector lender since then.
Summary:
SoftBank-owned Sprint Corporation, US' fourth largest telco by subscribers, sold its mobile data and advertising company Pinsight to Indian ad-tech firm InMobi in an all-stock deal.
Summary:
Former West Indies batsman Brian Lara has said that he was not as powerful as Indian youngster Prithvi Shaw when he was 18 years old.
Summary:
Iranian women for the first time since the 1979 Islamic Revolution were allowed to watch a football match between male teams at the country's stadium.
Summary:
Eight-time Olympic gold medal-winning former sprinter Usain Bolt has rejected the two-year contract offer made to him by the Malta-based football club, Valletta FC.
"There is a lot of interest in Usain playing football.
Summary:
Currently, the players' wives can accompany them on away tours for just two weeks.
Summary:
Apple has been granted a second patent for its 'foldable' design for the iPhone.
Summary:
Summary:
Criticising technology billionaire leaders for not giving enough charity, cloud computing company Salesforce CEO Marc Benioff has said, "A lot of them are just hoarding it.
Summary:
Veteran BJP leader Jaswant Singh's son and BJP ex-MLA Manvendra Singh on Wednesday joined the Congress ahead of the assembly polls in Rajasthan.
Summary:
The founder of Samajwadi Secular Morcha, Shivpal Singh Yadav, shifted to the government bungalow vacated by BSP supremo Mayawati in Lucknow on Wednesday.
Mayawati vacated the bungalow after a Supreme Court order.
Summary:
This comes after Musk agreed to pay $20 million in fine separately as part of a settlement with the US Securities and Exchange Commission.
Summary:
US astronaut Nick Hague, who survived the mid-air failure of ISS-bound rocket two minutes after launch, has said, "All of my instincts and reflexes inside the capsule are to speak Russian." He added when there's a problem in the booster, things happen very fast.
Summary:
The monthly ticket holders of two popular Maharashtra inter-city express trains, Deccan Queen and Panchavati Express, can borrow books free of cost from libraries set up on-board.
Summary:
The Buddhist circuit will have developed roads connecting the Buddhist pilgrimage sites.
Summary:
Former editor MJ Akbar has resigned from his post of Minister of State for External Affairs amid sexual harassment allegations against him by over sixteen female journalists.
Summary:
'Stree' actress Flora Saini has sent a legal notice to producer and her former live-in partner Gaurang Doshi for defaming her after he claimed he was "victimised" and Flora's "false allegations" against him were only to gain publicity.
Summary:
Music composer-singer Bappi Lahiri said there is no point in bringing up harassment stories ten years later.
Summary:
Comedian Kapil Sharma has returned to Mumbai after one and a half months.
Summary:
Actress Priyanka Chopra and Nick Jonas will get married on December 2 at the Umaid Bhawan Palace in Jodhpur, as per reports.
Summary:
Israel's only Olympics gold medallist Gal Fridman has announced he would sell the medal, saying he needs the money.
Summary:
Several devotees were attacked and forced to return by protestors including women after the Sabarimala temple opened for the first time for women aged 10-50 on Wednesday following a Supreme Court verdict.
Summary:
The video showed Ashish arguing with a man and a woman with a gun in his hand.
Summary:
Responding to Pakistan's warning of 10 surgical strikes against India in response to a single such attack, GOC Northern Command Lieutenant General Ranbir Singh said, "I assure you that the Indian Army is fully prepared." "When required, any challenging task can be undertaken.
Summary:
The total value of the assets seized till date is now â¹4,489 crore.n
Summary:
The baby's parents had handed her over to a snake charmer, who showed up at their doorstep and asked them to let her get the serpentine god's blessings.
Summary:
Trump began raising money for his re-election campaign shortly after winning the presidency.
Summary:
A video of five gun-wielding robbers using as many as 25 hostages as human shield to escape after a failed raid on a lottery shop in Brazil has gone viral.
Summary:
Imran Ali, who was hanged in Pakistan on Wednesday for raping and murdering a seven-year-old girl, had confessed to eight more rapes and at least five murders.
Summary:
Nagpur City Police tweeted a screen grab of a scene in the Bollywood movie 'Kuch Kuch Hota Hai' to use it as a reference for safety advisory.
Summary:
"What a divine feeling dancing with my babies in celebration of shakti," wrote Sushmita while sharing the video on social media.
Summary:
Chelsea's Spanish midfielder Cesc Fabregas set his career's second Guinness World Record after becoming the quickest player to reach 100 assists in the English Premier League.
Summary:
Former Indian cricketer Sachin Tendulkar's son, Arjun Tendulkar picked up three wickets to help his side Mumbai beat Assam in the Under 19 Vinoo Mankad Trophy.
Summary:
The Mumbai Cricket Association officials denied the Indian Women's T20 team entry into the Wankhede Stadium to practice after the BCCI decided to not stage the 4th India-Windies ODI in Wankhede.
Summary:
In addition to the monetary boost, the 2018 tournament also created up to 315,000 workplaces-a-year for Russians during the build-up to the event.
Summary:
Earlier, Facebook said it would not utilise the data it collects from the Portal for advertising.
Summary:
Facebook is rolling out an update that will automatically demote links from websites that post stolen content in the News Feed.
Summary:
It launched the new Cayenne in different variants including the Cayenne S and the Cayenne Turbo among others.
Summary:
It will initially have capacity for about 250,000 vehicles and battery packs a year, the release said.
Summary:
Summary:
Commenting on journalist Jamal Khashoggi, who went missing after visiting the Saudi consulate in Istanbul, US President Donald Trump has said Saudi Crown Prince Mohammed bin Salman "denied any knowledge of what took place in their Turkish consulate".
Summary:
Indian equity benchmark Sensex reversed early gains on Wednesday to close down 383 points at 34,779.58 amid heavy selling in auto and financial stocks.
Summary:
Producer Vinta Nanda, who accused actor Alok Nath of raping her, wrote an open letter to Prime Minister Narendra Modi on Tuesday and urged him to help her get justice.
Prove them otherwise by taking action," she wrote.
Summary:
Interestingly, he sustained an injury in his final Test against Australia in 2008 and bowled with 11 stitches to take 3 wickets.
Summary:
Self-styled godman Rampal along with his son Virender and 12 supporters were sentenced to life imprisonment on Wednesday in another case relating to deaths in his Haryana Ashram.
Summary:
The death toll due to cyclone Titli and subsequent floods has increased to 52 in Odisha, State Chief Secretary Aditya Prasad Padhi confirmed.
Summary:
Women aren't allowed in Uttar Pradesh's Rishi Dhroom Ashram as people believe that the saint gets angry on seeing women, leading to drought-like conditions in the region.
Summary:
Summary:
At least seven Bihari migrants working at the construction site of a primary school in Gujarat's Vadodara were beaten up for allegedly wearing 'lungis'.
Summary:
The Afghan Taliban claimed responsibility for the blast, saying, "We have killed Qahraman, a renowned communist."
Summary:
After a federal judge dismissed a defamation lawsuit filed by pornstar Stormy Daniels against Donald Trump, the US President called her "Horseface".
Summary:
A suspect identified by Turkey in the disappearance of Saudi journalist Jamal Khashoggi was a frequent companion of the kingdom's Crown Prince Mohammed bin Salman, according to a report by The New York Times.
Summary:
A 31-year-old Chinese woman killed herself and her two kids by jumping into a pond after her 34-year-old husband faked his own death for an insurance claim without informing her.
Summary:
Richardson, who has served in the US Army since 1986, will represent 776,000 soldiers and 96,000 civilians.
Summary:
A man in Maharashtra has filed a complaint against an online retailer after he spent over â¹9000 to order a mobile phone but allegedly received a brick instead, said the police today.
Summary:
The local currency has declined over 13% so far this year, making it Asia's worst-performing currency.
Summary:
Reacting to Pakistan captain Sarfraz Ahmed's batting stance against Australia, a user tweeted, "Stance like this keeps the bowler guessing what to bowl to the batsman.
Summary:
India finished with a total of 72 medals in one of its best performances at the Games.
Summary:
Talking about companies facing regulation on user data, Reddit CEO Steve Huffman has said the platform "exists because we didn't build a business that's predicated on harvesting and selling your personal data".
Summary:
The delegation is expected to arrive in India on October 24.
Summary:
Reacting to video platform YouTube's global outage on Wednesday morning, a user tweeted, "Can it really be true?
Summary:
Alibaba-backed online food and grocery platform BigBasket has acquired Pune-based micro-delivery startup RainCan. RainCan will get rebranded to BBdaily as part of the acquisition.
Summary:
Winds blowing across Antarctica's Ross Ice Shelf causes its surface to vibrate, producing a near-constant set of seismic "tones", according to a new research.
Summary:
Humans are driving mammals to extinction at rates much faster than the Earth's species can recover from, the researchers said.
Summary:
Summary:
A Vadodara man led a procession, comprising his family and friends, to the police station to get himself arrested after citing inability to pay a maintenance amount of â¹95,500 to his former wife.
Summary:
The New Farakka Express derailed near Raebareli because a mechanical installation that guides trains from one track to the other had failed to respond, according to a preliminary inquiry by Commission of Railway Safety (CRS).
Summary:
UK's largest automaker also said that a bad Brexit deal could cost it around $1.6 billion annually.
Summary:
Billionaire Gautam Adani-led Adani Group and French energy giant Total have signed an agreement to develop Liquefied Natural Gas (LNG) terminals and fuel retail stations across the country.
Summary:
Edelweiss Tokio Life-Zindagi Plus with the better half benefit provides life cover to the spouse in event of policy holderâÂÂs demise without any future premium requirements.
Summary:
CEAT with Raksha Net has created SafeDrive- a device that will automatically call for help and notify your loved ones.
Summary:
Northern Irish author Anna Burns has won the 2018 Man Booker Prize for her novel 'Milkman', which is her third full-length novel.
Summary:
Actress Divya Gopinath has revealed her identity and said she was the person who accused Malayalam actor Alencier of sexual harassment in an anonymous blog post as her #MeToo story.
Summary:
Nandita Das' father and Padma Bhushan-winning painter Jatin Das has been accused of sexual harassment by Garusha Katoch, a former intern at Jatin Das Centre of Art. He allegedly took Katoch to his house and hugged her tightly and tried to kiss her.
Summary:
Priyanka Chopra's cousin Parineeti Chopra said that she has demanded $5 million (nearly â¹37 crore) from her future brother-in-law Nick Jonas for the traditional 'joota churana' ceremony.
Summary:
Summary:
During the celebration of twenty years of Karan Johar's directorial debut 'Kuch Kuch Hota Hai', Salman Khan said in a video message, "Karan...keep on doing good work.
Summary:
A Google Trends data visualisation website created in April shows the #MeToo movement has spread across India and reached rural areas also.
Summary:
Summary:
Uttar Pradesh Chief Minister Yogi Adityanath defended his government's decision to change Allahabad's name to Prayagraj, saying that the people who are ignorant of facts are questioning the renaming.
Summary:
The victim has also reportedly written to Defence Minister Nirmala Sitharaman and Army Chief Bipin Rawat about the alleged crime.
Summary:
Sayyed was adopted by a Hyderabad-based family who were on vacation in Mumbai.
Summary:
The UP police has hailed Manoj Kumar for his "act of bravery" after a video of the sub-inspector shouting 'Thain Thain' to scare a wanted criminal during an encounter went viral.
Summary:
Imran Ali, the man convicted of raping and murdering a seven-year-old girl in Pakistan's Kasur earlier this year, has been hanged to death in a jail in Lahore.
Summary:
Cannabis possession first became a crime in Canada in 1923 but medical use has been legal since 2001.
Summary:
A British woman was left paralysed after she sustained a spinal injury during sex which she believes was caused by a "defective" bed.
Summary:
The rules will allow mobile wallets to issue cards in partnership with card networks like Mastercard and Visa.
Summary:
Summary:
Jammu and Kashmir Governor Satya Pal Malik on Tuesday said "not a bird was harmed" during the civic polls and they were conducted peacefully.
Summary:
Summary:
While campaigning in Madhya Pradesh, Congress President Rahul Gandhi said CM Shivraj Singh Chouhan, "his wife and some state bureaucrats are corrupt." Discussing Vyapam scam, Gandhi added, "Corruption is rampant in Madhya Pradesh.
Summary:
Claiming Congress approached BSP chief Mayawati even after she decided against an alliance with the party in MP, Congress leader Jyotiraditya Scindia said, "We respect their decision." However, he added, "Sometimes partnerships work out and sometimes they don't...that doesn't mean your doors are closed forever.
Summary:
Summary:
Ghaziabad police have arrested two men for allegedly tying two youths to an electricity pole and thrashing them with belts on the suspicion of stealing cash and phones.
Summary:
A four-year-old girl died after being attacked by a pack of stray dogs outside her home in the Samba district of Jammu and Kashmir on Tuesday, said the police.
Summary:
Venezuela is abandoning the US dollar, with all future transactions on the Venezuelan exchange market to be made in euro, the country's Vice President for Economy Tareck El Aissami has announced.
Summary:
A five-kilogram python fell from the ceiling between two staff members during a morning meeting at a bank in southern China's Nanning city.
Summary:
Actor and director Nandita Das on Tuesday said that she will continue to add her voice to the #MeToo movement despite "disturbing" sexual harassment allegations levelled against her father Jatin Das.
Summary:
Denying sexual harassment allegations against him, 'Sacred Games' writer Varun Grover has shared the "evidence of his innocence" in an open letter.
Summary:
Denying sexual harassment allegations against him in an open letter, 'Sacred Games' writer Varun Grover wrote, "Revolutions are beautiful.
And revolutions...have some collateral damage too." A junior at BHU accused him of sexually harassing her but kept her identity anonymous.
Summary:
LA Galaxy forward and former Sweden captain Zlatan Ibrahimovic met the 12 young footballers and their coach, who were rescued after being trapped in a cave in Thailand for more than two weeks in July.
Summary:
Nishtha had also claimed Dua once "slobbered" all over her face.
Summary:
As many as six burglars have been arrested for trying to break into cricketer Deepak Chahar's house in Agra.
Summary:
YouTube suffered global outage including in India for over one hour on Wednesday morning with users reporting error messages as they tried to login, upload or watch content on the Google-owned video platform.
"Thanks for your reports about YouTube...access issues.
Summary:
Attacking Congress President Rahul Gandhi in a post titled 'Is the 'Clown Prince' out-clowning himself?', Union Minister Arun Jaitley said Rahul is living in a state of "self-delusion".
Summary:
He said Pandey and the girls with him were drunk and started abusing him and his female friend.
Summary:
Uttar Pradesh Police accused Sameena Begum, who has been fighting against Nikah Halala and polygamy, of staging an acid attack on herself and two other women and filing fake case against her husband on Sunday.
Summary:
Seeking bail on medical grounds in a CBI court on Tuesday, Sheena Bora murder case prime accused Indrani Mukerjea asked, "Will CBI take responsibility if I die?" Indrani said she could suffer a brain stroke any time in jail and needed bail for "immediate access to specialists".
Summary:
The man in the viral video showing former BSP MP Rakesh Pandey's son Ashish brandishing a gun outside a five-star hotel in Delhi claimed Ashish's drunk friends abused and bullied his friend inside women's washroom.
Summary:
Muzammil Sayyed, a 19-year-old college student, was arrested for murdering 20-year-old model Mansi Dixit in Mumbai.
Summary:
Ethiopia's new cabinet appointed by PM Abiy Ahmed comprises a record 50% women, including the country's first female Defence Minister.
Summary:
It's the first child for Pippa and her husband James Matthews.
Summary:
Singapore's sovereign wealth fund GIC has agreed to buy an office tower in Paris's La Defénse business district for $539 million (â¹3,950 crore).
Summary:
The company also said its e-commerce growth would be slower next fiscal.
Summary:
Thomas Deng and Awer Mabil, friends from the time they spent together in Adelaide after they stayed in refugee camps in Kenya following migration from Sudan, together made their debut for the Australian football team on Monday.
Summary:
New Zealand rugby side Otago's winger Jona Nareki played with a "smashed testicle" in a Ranfurly Shield match last week.
Summary:
A Twitter bug on Tuesday sent random, cryptic notifications to users' phones which consisted of long strings of numbers and lowercase letters.
Summary:
It comes after the European Commission fined Google $5 billion for using its Android operating system to hinder rivals.
Summary:
Talking about the emergency landing of the Russian Soyuz rocket, cosmonaut Alexei Ovchinin in a recent interview said it felt like holding a concrete block "seven times your weight on your chest".
Summary:
Nepal has put the crown, sword and other valuable items used by former kings on display, ten years after the abolition of monarchy.
Summary:
ITServe Alliance, a trade association representing over 1,000 small IT companies, has sued the US immigration agency for issuing H-1B visas for less than 3 years.
ITServe alleged that the agency has no authority to shorten the duration of H-1B visas.
Summary:
A Chinese man adopted a small animal, thinking it was a dog, from a friend's place in a small mountain village.
Summary:
A 37-year-old man named David Weaver removed his clothes and dived naked into the 'Dangerous Lagoon' tank consisting of sharks and began swimming at Canada's RipleyâÂÂs Aquarium.
Summary:
Banned pacer Sreesanth, in an episode of Bigg Boss 12, thanked former Indian cricketer Sachin Tendulkar for remembering him in an interview.
Summary:
Team India fast bowler Mohammad Shami's estranged wife Hasin Jahan has joined Congress party.
Summary:
Radionomy, the parent company of 1990s popular music player Winamp, is planning to relaunch the music player, which still exists, as a mobile app in 2019.
Summary:
Summary:
Maharashtra BJP has asked its 121 MLAs to walk at least 150 km during the 'Sampark Abhiyan' to increase their dialogue with voters in their respective constituencies.
Summary:
Sikkim has won UN Food and Agriculture Organisation's (FAO) Future Policy Gold Award for becoming the world's first fully organic state.
Summary:
The CBI had registered cases against Mittal in 2014 and 2016 on the request of Corporation Bank and Punjab National Bank.
Summary:
The US' New York City has marked a weekend without a shooting or homicide for the first time in 25 years, the New York City Police Department said.
Summary:
Last month, the government raised interest rate on Public Provident Fund (PPF) to 8%.
Summary:
Private sector lender Yes Bank's board has recommended taking back bonuses paid to CEO Rana Kapoor for two years ended March 2016, according to Livemint.
Summary:
Pacer Umesh Yadav has been called in to replace Shardul Thakur for the first two ODIs against the Windies.
Summary:
Reacting to rumours that Indian tennis player Sania Mirza has already given birth to a boy, Sania's husband and Pakistani cricketer Shoaib Malik wrote that they will make a proper announcement when the "kid decides to arrive".
Summary:
Australia's former captain Mark Taylor declared Australia's innings on October 16, 1998, after he had equalled Don Bradman's score of 334, the then-highest score by an Australian in Test cricket.
Summary:
Pakistan Cricket Board's newly appointed Chairman Ehsan Mani has said that the board is not going to beg the Indian cricket team to visit and play in Pakistan.
Summary:
The updated 'bagel' emoji features both cream cheese and a doughier consistency resembling a fresh, hand-rolled bagel.
Summary:
A video shows robot dog Spot, developed by SoftBank-owned American robotics company Boston Dynamics dancing and wiggling to a Bruno Mars song.
In the video, the robot dog is seen moving and rotating in sync with the beats of the song.
Summary:
Mizoram BJP unit president Professor John V Hluna said that Chakma would be joining the BJP and would fight from Tuichawng seat in the assembly polls, as per PTI.
Summary:
Taiwan-based electric two-wheeler maker KYMCO has said it will invest $65 million in Gurugram-based electric vehicle startup Twenty Two Motors.
Summary:
As part of the settlement, Musk agreed to pay a $20-million fine and step aside as Tesla's chairman for three years.
Summary:
A team of artists and palaeontologists has created an image of the T-Rex which shows that the dinosaur had smooth-skin and no feathers.
Summary:
A 10-12 feet Durga idol has been made using 1,000 kilograms of white chocolate in Kolkata on the occasion of Durga Puja.
Summary:
Saudi Arabia is India's second-biggest supplier of oil.
Summary:
Indian Air Force (IAF) pilots have started training to operate the CH-47F Chinook heavy-lift helicopters at Delaware in the US on Monday, an official said.
Summary:
Posters have surfaced in Bihar which state that Congress is offering â¹5 crore to anyone who names 35 airports built by Narendra Modi-led government and Rafale jet's price.
Summary:
Ecuador has ordered WikiLeaks founder Julian Assange to take better care of his cat failing which it could be confiscated.
Summary:
Yash Raj Films has fired Creative Head at Y-Films, Ashish Patil over sexual harassment allegations against him by an aspiring actress.
Summary:
Journalist Tushita Patel has accused Union Minister and former editor MJ Akbar of greeting her while wearing only an underwear at his hotel room in 1992.
Summary:
Argentine legend Diego Maradona has said five-time Ballon d'Or winner Lionel Messi is a great player but not a leader.
Summary:
Rajasthan MLA Manvendra Singh, son of BJP's veteran leader Jaswant Singh, is set to join Congress on October 17.
Summary:
With Goa Congress MLAs Dayanand Sopte and Subhash Shirodkar resigning from the party to join BJP on Tuesday, Congress is no longer the largest party in the state.
Summary:
A woman's tweet praising an Uber driver named Santosh, who refused to leave her and her mother alone in the night, has gone viral.
"He refused to let us go & waited for 1.5 hours till we got in," she added.
Summary:
The Delhi Police has issued a Look Out Circular (LOC) against Ashish Pandey, son of former BSP MP Rakesh Pandey, after he pulled out a gun during a fight outside a five-star hotel in the capital.
Summary:
Summary:
The tribunal directed the government to immediately shut these units as they fall under the prohibited list of industrial activity.
Summary:
The student, along with her classmates, celebrated the anniversary despite being denied permission.
Summary:
The hostages were taken to the city of Hajin, the Russian Reconciliation Centre said.
Summary:
Infosys also said that it will comply with arbitration award asking the company to pay â¹12.17 crore with interest to former Chief Financial Officer Rajiv Bansal.
Summary:
The next season of Aamir Khan's show 'Satyamev Jayate', which will air in January 2019, will begin with #MeToo movement, as per reports.
Summary:
Playing in Seville, Spain conceded three first-half goals, with England's Raheem Sterling ending his three-year scoring drought.
Summary:
Jharkhand wicketkeeper Ishan Kishan almost pulled-off a no-look run-out, copying MS Dhoni's style, during Jharkhand's Vijay Hazare match against Maharashtra.
Summary:
Days after WhatsApp announced a local system to store data in India, National Payments Corporation of India (NPCI) officials reportedly said it's not fully compliant with the payments data regulations.
Summary:
Rolls-Royce has announced that it is partnering with American chipmaker Intel to build fully autonomous ships.
Summary:
As part of the acquisition, Foodpanda will take over Holachef's business, including its kitchens, equipment, and also bring onboard its employees.
Summary:
Jeff Bezos has claimed there will one day be a trillion humans in the solar system, hoping his aerospace startup Blue Origin will help populate other planets.
Summary:
The Observatory automatically went into safe mode last week possibly due to a gyroscopic failure, NASA said earlier.
Summary:
A video of airline staffers has surfaced online, wherein they can be seen performing Garba flash mob to welcome passengers at Gujarat's Ahmedabad airport terminals on Monday night.
Summary:
The complaint by AIIMS doctors' association alleged that they beat up an intern and further thrashed a guard who intervened.
Summary:
A woman jumped into a well with her five children in a village in Gujarat because she was being "haunted by spirits" and facing financial difficulties, said the police.
Summary:
The police said he left a suicide note wherein he wrote that "the soul of a young boy who he saw dying in the accident was calling him".
Summary:
Pakistan's Federal Investigation Agency (FIA) has uncovered transactions worth PKR 460 crore (over â¹254 crore) made from three accounts of a man who died months before the accounts were opened under his name, the local media reported.
Summary:
Visa and Mastercard are among international payment companies that missed the October 15 deadline to comply with the Reserve Bank of India's (RBI) data localisation rule, according to reports.
Summary:
Actress-turned-activist Somy Ali, who acted in Bollywood films in the '90s, has revealed that she was sexually abused at 5 and raped at 14.
Summary:
A 59-year-old kabaddi coach with the Sports Authority of India (SAI) allegedly committed suicide in a hotel room after being accused of molesting a 13-year-old girl at a training centre in Bengaluru.
Summary:
KererÃ
«, a native green and bronze wood pigeon, known to fall from trees after consuming rotten berries, has been named the 2018 bird of the year in New Zealand.
Summary:
Congress President Rahul Gandhi on Tuesday visited Data Bandi Chhor Sahib Gurudwara in Madhya Pradesh's Gwalior.
Rahul, who is on a two-day tour (starting Monday) to the poll-bound state, also met Congress cadres in the city.
Summary:
The injured have been rushed to a local hospital, the police said.
Summary:
ICICI Bank on Tuesday said the Reserve Bank of India (RBI) has approved the appointment of Sandeep Bakhshi as Managing Director and CEO of the bank for three years.
Summary:
Entrepreneur Nisha Bora has accused Nandita Das' father Padma Bhushan Jatin Das of sexually harassing her in his studio in Khidki Village in Delhi.
Summary:
National Students' Union of India (NSUI) President Fairoz Khan has reportedly stepped down from his post amid sexual harassment allegations.
Summary:
African-American sprinters Tommie Smith and John Carlos raised their black-gloved fists in a 'black power salute' and bowed their heads on the podium after winning 200m gold and bronze at Mexico City Olympics on October 16, 1968.
Summary:
'Fly Dining' restaurant, offering a dining experience mid-air at 160 feet, has opened in Bengaluru.
Summary:
Two Goa Congress MLAs, Dayanand Sopte and Subhash Shirodkar, resigned from their party to join BJP after meeting BJP President Amit Shah in Delhi.
Summary:
World's richest person Jeff Bezos has revealed his aerospace startup Blue Origin will launch six tourists into space in 2019 in a fully automated capsule, which won't have a flight attendant.
Summary:
The body of a young male lion was found on Saturday in an area close to Gir forests where 23 lions of a single pride died between September 12 and October 2.
Summary:
Three people, who were arrested for allegedly killing two policemen in Rajasthan's Sikar, on Monday told the police they mistook the policemen's vehicle for the one belonging to gangster Manoj Swami and fired at it.
Summary:
Hungary imposed a ban on rough sleeping in public spaces as its law on homelessness came into force on Monday.
Summary:
North Korea, South Korea and the UN Command (UNC) on Tuesday held their first three-way talks to discuss disarming the Demilitarised Zone, one of the world's most heavily fortified frontiers.
Summary:
Account holders can check if mobile numbers are registered by logging into their Internet banking facility.
Summary:
Billionaire Ajay Piramal-led Piramal Enterprises is considering the sale of its contract pharmaceutical business, which could reportedly fetch about $1 billion.
Summary:
Wishing her mother and actress Hema Malini on her 70th birthday on Tuesday, Esha Deol posted Hema's picture on social media and wrote, "May you continue to inspire everyone!
Summary:
Sushmita Sen, while talking about #MeToo movement which has started in India, said, "This is the start, and you have to listen, believe and let justice prevail." "It's not like we didn't know these things were happening in India and in the world," she added.
Summary:
Tanushree Dutta, who started #MeToo movement in India when she accused Nana Patekar of sexually harassing her during the shoot of film 'Horn 'OK' Pleassss' in 2008, said the movement has gone far beyond her now.
Summary:
Neha Dhupia has said #MeToo movement is the best cleanup act that could have happened to the film industry and the country in a long time.
Summary:
The world number three Indian shuttler, who reached the Denmark Open final in the 2015 edition of the tournament, registered her third straight loss to Zhang.
Summary:
Pakistan's Shoaib Malik recalled laughing with Virat Kohli and Yuvraj Singh after the final of the Champions Trophy 2017 over a catch of Chris Gayle that he and his former Pakistan teammate Saeed Ajmal had once dropped.
Summary:
Suraj Panwar won India's first medal in athletics at the Youth Olympic Games 2018 after claiming the silver medal in the men's 5000m race walk event on Tuesday.
The 17-year-old's silver was India's third overall medal in athletics in the history of the Youth Olympic Games.
Summary:
The app, which had over 1,600 users, reportedly leaked data including users' names, profile pictures, device type and their private messages.
Summary:
Summary:
After the Uttar Pradesh Cabinet approved the proposal to rename Allahabad as Prayagraj, Samajwadi Party chief Akhilesh Yadav claimed the current government wants to show that they are working by just "renaming" places.
Summary:
Sequoia-backed hyperlocal delivery startup DailyNinja has acquired Hyderabad-based daily essentials delivery platform WakeupBasket in a cash and equity deal.
Summary:
Earlier reports claimed that Amazon was in talks to buy a 10% stake in Future Retail.
Summary:
Talking about God and afterlife months before his death, Professor Stephen Hawking said, "We are each free to believe what we want...it's my view that...there is no God." He also said that he had come to the "profound realisation" that "there is probably no heaven and afterlife either".
Summary:
Several activists in Maharashtra are protesting to stop the Forest Department from hunting man-eating tigress named Avni, who is reportedly responsible for 13 deaths over the last 2 years.
Summary:
A three-year-old girl was allegedly raped and choked to death in Surat by her neighbour, the Gujarat police said today.
Summary:
The program, developed by industry experts, has 1-1 student mentorship and has helped 350+ learners make career transitions.
Summary:
The cases were filed after his supporters clashed with the police who had come to arrest him in 2014, in a contempt of court case.
Summary:
The family of Africa's youngest billionaire Mohammed Dewji, who was kidnapped by unidentified men on his way to the gym last week, has announced over â¹3-crore reward for information about him.
Summary:
During an interview of US President Donald Trump by CBS News on Sunday, people noticed a painting of him with the past Presidents hanging in the White House.
Summary:
Actor Saqib Saleem has alleged that a man tried to assault him and put his hand in his pants while adding, "I was 21, and of course, it scarred me, but I moved on." Saqib said this happened when he started out as an actor.
Summary:
A three-foot-long cobra was spotted at the ground in Kandy where England cricket team was training ahead of the third ODI against Sri Lanka.
Summary:
Lyon overtook Brett Lee and Mitchell Johnson on the list of Australia's leading Test wicket-takers.
Summary:
Election strategist Prashant Kishor was on Tuesday appointed the Vice-President of JD(U) by party chief and Bihar CM Nitish Kumar.
Summary:
Congress leader Anand Sharma on Monday said that Sardar Vallabhbhai Patel's 1948 order banning the RSS after Mahatma Gandhi's assassination should be placed at the foot of his 'Statue of Unity' in Gujarat.
Summary:
Speaking to party workers in poll-bound Madhya Pradesh, veteran Congress leader Digvijaya Singh said he does not campaign since his speeches lead to loss of votes for the party.
Summary:
OYO's 24-year-old Founder Ritesh Agarwal, who has a net worth of over â¹2,600 crore, said in a recent interview that he sold SIM cards to small store owners in his Odisha hometown while he was still in school.
Summary:
The charges were filed after the students allegedly raised anti-India slogans and attempted to hold a prayer meet for former varsity student, Mannan Wani.
Summary:
Identified as Devaiyya, the bank manager is employed at DHFL loan agency in Davanagere.
Summary:
A video showing former BSP MP Rakesh Pandey's son Ashish brandishing a gun outside a five-star hotel in Delhi has surfaced.
It showed Ashish arguing with a man and a woman as the security personnel intervened.
Summary:
After Donald Trump described James Mattis as "sort of a Democrat" who could leave the administration, the US Defence Secretary has said the President has reassured him of his full support.
Summary:
Mounir El Motassadeq, a friend of 9/11 hijackers who was sentenced to 15 years in a German prison in 2007 for being an accessory to mass murder, has been released.
Summary:
Arjun Kapoor- Parineeti Chopra starrer 'Namaste England' and Ayushmann Khurrana- Sanya Malhotra starrer 'Badhaai Ho' will be releasing a day earlier on October 18.
Summary:
Summary:
Karan Johar had said if he ever made the film's sequel he would cast Ranbir, Alia and Janhvi.
Summary:
Sushmita Sen is dating model Rohman Shawl whom she had met at a fashion event in August, as per reports.
Summary:
Dia Mirza, while commenting on the sexual harassment allegations against Sajid Khan, said, "Was deeply disturbed.
Summary:
Eight-time Olympic gold-winner Usain Bolt has been offered a two-year-long contract with the Malta-based football club, Valletta FC.
Summary:
Mourning Microsoft Co-founder Paul Allen's death, Amazon CEO Jeff Bezos said, "His passion for invention...inspired so many.
Summary:
At a rally in Jabalpur on Monday, BJP Chief Amit Shah said Congress President Rahul Gandhi is "daydreaming with open eyes" by hoping Congress will form the government in Madhya Pradesh.
Summary:
The Enforcement Directorate today attached 28 assets worth â¹10 crore belonging to 2016 Bihar topper scam main accused Bachha Rai, months after attaching properties worth â¹4.5 crore that belonged to him.
Summary:
Odisha Chief Minister Naveen Patnaik, who turned 72 on Tuesday, has cancelled his birthday celebrations to express solidarity with people affected by Cyclone Titli and subsequent floods in the state.
Summary:
Fourteen Iranian security personnel were kidnapped on the country's border with Pakistan on Tuesday, an official was quoted as saying by state news agency IRNA.
Summary:
Paul Allen, who co-founded Microsoft in 1975 with his childhood friend Bill Gates, passed away on Monday aged 65 after battling cancer.
Allen came up with the name Microsoft and had left the company in 1983.
Summary:
Uttar Pradesh Cabinet led by CM Yogi Adityanath has approved the proposal to rename Allahabad, which will be called Prayagraj from today.
Summary:
Veteran singer Lata Mangeshkar said that when she was young, she had a temper and added, "No one could mess around with me and get away with it." Asked if she once threatened to cut lyricist Nakhshab Jarchavi into pieces, she further said, "Not exactly...But he had it coming.
Summary:
Two male penguins Magic and Sphen, who built a nest together from ice pebbles at Sydney's Sea Life Aquarium are now fostering an egg given by aquarium staff.
Summary:
A team of 97 lawyers from Karanjawala & Co have been listed in the Vakalatnama filed in Union Minister MJ Akbar's criminal defamation suit against journalist Priya Ramani who accused him of sexual harassment.
Summary:
Zazai slammed six sixes in one over and equalled Yuvraj Singh and Balkh Legends' Gayle's record of fastest T20 fifty (12 balls).
Summary:
On being asked about his exit from parent company Facebook, Instagram co-founder Kevin Systrom has said, "There are obviously reasons for leaving.
Summary:
Aam Aadmi Party (AAP) chief Arvind Kejriwal on Monday urged supporters to donate at least â¹100/month to the party ahead of the 2019 Lok Sabha elections.
We do not depend on money from corrupt millionaires," Kejriwal said.
Summary:
OYO's Founder and CEO, 24-year-old Ritesh Agarwal, who has a net worth of over â¹2,600 crore, said in a recent interview that he first heard the word 'entrepreneur' in Class 3 or 4 and found it very difficult to spell or pronounce.
Summary:
Climate change is set to cause "dramatic" price rise and supply shortages of beer, according to an international research.
Summary:
A 38-year-old man in Maharashtra's Parbhani district committed suicide on Sunday, after being harassed by a female colleague.
Summary:
A video shows more than one policeman taking a nap during an important law and order briefing being conducted ahead of Durga Puja in Bihar's Patna.
Summary:
Replying to an RTI, the Archaeological Survey of India has revealed that the Kohinoor was not gifted to Queen Victoria but was "surrendered" by Maharaja Duleep Singh who was a minor at the time.
Summary:
Congress MP Shashi Tharoor has described the controversy over his remark on building Ram Mandir as classic "Goebbelsian" disinformation.
Summary:
A US judge on Monday dismissed pornstar Stormy Daniels' defamation lawsuit against President Donald Trump, saying a tweet the US leader had written referring to her was protected by free-speech laws.
Summary:
Vladimir Putin's spokesperson Dmitry Peskov has said US President Donald Trump didn't directly accuse the Russian President of assassinations and poisonings of his critics while answering a question during an interview.
Summary:
Australian PM Scott Morrison has said the country may follow US President Donald Trump's lead and move its embassy in Israel to Jerusalem from Tel Aviv.
Summary:
Saudi Arabia is preparing a report that would admit Saudi journalist Jamal Khashoggi, who disappeared on October 2, was killed as the result of an interrogation that went wrong, the CNN has reported, citing two unnamed sources.
Summary:
Coca-Cola attempted to combine New Zealand's te reo MÃÂori and English languages to spell 'Hello, friend', but it translated to 'Hello, death'.
Summary:
On the occasion of his 1998 film 'Kuch Kuch Hota Hai' [KKHH] completing 20 years of its release on Tuesday, Karan Johar said, "I owe everything in my career to 'KKHH'." "After its release, I knew I had a job that I could keep.
Summary:
Summary:
Summary:
The consignment was originally found in the possession of two people coming from Manipur.
Summary:
This will be the second year in a row when the Winter Session starts in December, as last year the session was deferred on account of elections in Gujarat.
Summary:
Mohd Sabir Khan said both Hindus and Muslims take part in the play, while he himself participates along with his two sons and a grandson.
Khan, who also directs the play, added, "God did not divide us...
Summary:
The crime occurred after the man's son ended his relationship with one of the accused.
Summary:
During South Korean President Moon Jae-in's visit to France, President Emmanuel Macron said the country is ready to help in North Korea's denuclearisation efforts if it shows real desire to dismantle its nuclear and ballistic arsenal.
Summary:
Actor Vicky Kaushal's father Sham Kaushal, who is a stunt director in Bollywood, has been accused of sexual misconduct by a former assistant director Nameeta Prakash.
Summary:
Singer Bryan Adams, who completed his India tour by performing in Gurugram, shared a picture of his shadow silhouetted in the dust and smoke of the venue and said, "IâÂÂve never seen that before." "Magical India.
We've been coming to India since 1994," Bryan said.
Summary:
Singer Varsha Singh alleged that singer Kailash Kher, who she used to consider her 'guru', once sent her a message that read, "I want to make love to you." She also accused music composer Toshi of sexual misconduct, when under the influence of alcohol, he put his hand on her thigh.
Summary:
Summary:
Congress was trolled on Twitter for calling the Indian Test team as âÂÂMen in Blueâ in a congratulatory tweet.
Summary:
The fan touched Rohit's feet, hugged and kissed him before leaving the field.
Summary:
In the song, Sodhi compares his 'googly' to Australian pacer Mitchell Starc's 'yorker'.
Summary:
Northern Districts, a women's cricket team in Australia's Adelaide, amassed a total of 596 for 3 in a 50-over match against Port Adelaide on Sunday.
Summary:
Further, 'TEAM PCE' was mentioned at the bottom of the page, indicating that the website was hacked by a group.
Summary:
Supporting the #MeToo movement, she said it has provided a platform for working women to raise their voice against sexual exploitation.
Summary:
Prithvi Shaw, aged 18 years and 339 days, became the youngest Indian to win the Man of the Series award in Test cricket history.
Summary:
Team India captain Virat Kohli on Monday took to Twitter to share a picture of his physical transformation.
Have a super day everyone," he wrote alongside the picture.
Summary:
In a parting email to a colleague Sarah Friar, Twitter CEO Jack Dorsey advised her to "allow yourself to fail in public".
"Risk, creativity, and defining your own path is made possible only through a series of failures," Dorsey wrote.
Summary:
MIT has announced plans to create a $1-billion college for artificial intelligence (AI) focusing on "responsible and ethical" uses of the technology.
Summary:
A local Bahujan Samaj Party (BSP) leader and his driver were shot dead by unidentified assailants in Uttar Pradesh's Ambedkar Nagar district, the police said.
Summary:
Goa Chief Minister Office on Monday said that CM Manohar Parrikar's health has improved and doctors have advised him to rest for a week.
Summary:
Punjab Chief Minister Captain Amarinder Singh on Monday said that it is not possible to stop stubble burning without providing compensation to the farmers.
Summary:
US-based e-commerce major Amazon has reportedly offered $400 million to Kolkata-headquartered retailer Spencer's Retail for 30% stake in the company.
Summary:
Singapore-based Temasek's investment company MacRitchie has also received approval to increase its stake in Ola's parent.
Summary:
British automaker Morgan Motor Company has cancelled its electric three-wheeler project, the EV3, three years after it was launched in Geneva.
Summary:
OYO on Monday said it has launched overseas operations in the United Arab Emirates (UAE) as part of its expansion plans in the Middle East.
Summary:
NASA is yet to hear from the Mars rover Opportunity, which has been silent since a global dust storm enshrouded the planet four months ago.
Summary:
Dassault Aviation's Chief Executive Officer Eric Trappier on Monday said that the aircraft manufacturer will deliver its Rafale fighter jets to India from 2019 and may see new orders in the coming months.
Summary:
The accused allegedly took the girl to a room and raped her along with three others under the influence of alcohol, police added.
Summary:
The CBI has filed a closure report before the Delhi High Court in the missing person case of Jawaharlal Nehru University (JNU) student Najeeb Ahmed who went missing in October 2016.
Summary:
Saudi Arabia Energy Minister Khalid A Al-Falih on Monday said that under Prime Minister Narendra Modi's stewardship, doing business in India has become significantly easier.
Summary:
The Indian Railways has decided to install the Loco Cab Voice Recording (LCVR) devices or black boxes in the train engines to facilitate investigators trying to identify the cause of accidents and assess crew performance.
Summary:
Mumbai-based startup Taxi Fabric's Co-founder Sanket Avlani has been accused by his former colleague Swapna Nair of sending her d*ck pics even after she asked him not to send them.
Summary:
Saif Ali Khan has said if someone asks his daughter Sara Ali Khan "to come (and) see him at Madh Island", he will go with her and punch that man.
Summary:
The ICC has charged ex-Sri Lanka captain Sanath Jayasuriya with two counts of breaching Anti-Corruption Code.
Summary:
Pacer Mohammed Siraj's mother has revealed she apologised to her son for urging him to give up cricket when he was young.
I'm glad my son has made a career in sports," she added
Summary:
Eight-time Olympic champion Usain Bolt, who is on an indefinite training period with an Australian football club, took to Instagram to express his displeasure at being issued a drug testing notice.
"Why am I getting drug tested...I'm not even a professional footballer yet.
Summary:
Referring to Unnao BJP MLA Kuldeep Sengar, who was charged with rape, Congress President Rahul Gandhi said, "Modi ji gave the slogan 'Beti Bachao Beti Padhao'...Actual slogan is 'Beti Padhao aur Beti ko BJP ke MLA se bachao." Rahul added, "CM (Yogi Adityanath) tried to shield him, PM didn't expel him from the party.
Summary:
The Income Tax Department is working on a policy that would reward honest and consistent taxpayers by giving them priority while availing public services at airports, railway stations and highways.
Summary:
If the air quality is in the very poor category, parking fees will be enhanced.
Summary:
The trade deficit refers to the amount by which the cost of a country's imports exceeds the value of its exports.
Summary:
I am not even going to say no comments." This comes amidst protests in Kerala against the Supreme Court verdict allowing entry to women.
Summary:
"And for that reason, most good Hindus want to see a Ram temple at the site," he added.
Summary:
PM Narendra Modi will meet Chinese President Xi Jinping at the G20 Summit in Argentina in November, Chinese Ambassador to India Luo Zhaohui said ahead of the first joint India-China training programme for Afghan diplomats.
Summary:
US President Donald Trump has said that the political world is "vicious, full of lies, deceit and deception".
Summary:
The US embassy in Australia has apologised for an email invitation, which featured a cat wearing a Cookie Monster outfit and holding a plate of biscuits, sent out by the US State Department.
Summary:
Ariana Grande and Pete Davidson have called off their engagement after five months of their relationship, as per reports.
Pete and Ariana had reportedly moved into a $16 million apartment.
Summary:
Farhan Akhtar took to his Instagram and shared a picture with his rumoured girlfriend Shibani Dandekar and captioned the picture with a heart emoji.
Summary:
Wishing daughter Nisha on her 3rd birthday on Monday, Sunny Leone posted a picture with her and wrote, "You're my sunshine...my only sunshine...you make me happy when skies are grey." "You'll never know dear how much I love you...please don't take my sunshine away," she further wrote.
Summary:
Denying that sister Kangana Ranaut talks on issues only for promoting her films, Rangoli Chandel slammed trolls and tweeted, "Please go and find some other excuse...it's too ghisa pitaa." "She [Kangana] would have never left Khan and YRF [Yash Raj Films]...fairness ads if films were more important to her," Rangoli further wrote.
Summary:
Actress Kritika Sharma, while accusing casting director Vicky Sidana of sexual harassment, has revealed that Vicky had once pushed her on the bed, pulled off her pants and had forced himself on her.
Summary:
Apple is donating 1,000 Apple Watches for a research study to track binge eating disorder.
Summary:
Further, LYNA accurately pinpointed the location of cancers too small to be detected by doctors.
Summary:
WhatsApp has updated its Delete for Everyone feature with a modified recipient time limit for revoke requests to be kept active, according to WABetainfo.
Summary:
BJP MP Subramanian Swamy on Monday took a dig on Congress leader Shashi Tharoor over his remark on the Ram Mandir row, calling him a "neech aadmi".
Summary:
Bengaluru-based food-tech startup Spoonshot has acquired Hyderabad-headquartered restaurant analytics startup Brisky, according to the startups.
Summary:
The crew aboard the International Space Station (ISS) has enough supplies to last at least six months, Vladimir Solovyov, flight director of ISS's Russian segment said on Sunday.
Summary:
Police on Sunday seized a huge consignment of foreign liquor at Diwantok village in Bihar's Vaishali district.
On the basis of specific intelligence input, 1,000 cartons of foreign and country liquor worth around â¹1 crore were seized from various houses, said the police.
Summary:
Ahead of the World Food Day on October 16, chef Vishnu Manohar on Sunday prepared 3,000 kilograms of khichdi in one vessel in Maharashtra's Nagpur, eyeing a new Guinness World Record.
Summary:
Priya alleged that Akbar interviewed her in a hotel, offered her a drink and sang romantic songs for her.
Summary:
Praising 18-year-old Prithvi Shaw for his performance in his debut Test series, India captain Virat Kohli said, "It's great to have a guy who is so fearless...he's very confident about his game." "I don't think any of us were even 10% of what he is at 18," he added.
Summary:
Wholesale inflation based on the wholesale price index (WPI) stood at 5.13% in September against 4.53% in August, as per provisional government data released on Monday.
Summary:
Actor Ajay Devgn took to Twitter to applaud a team led by Income Tax Department Deputy Commissioner Vikram Pagaria after they were attacked during a raid on edible oil trader Sanjay Bansal's premises in Madhya Pradesh.
Summary:
Chetan Bhagat made an email he received from author Ira Trivedi in 2013 public and claimed her sexual harassment claims from 2010 against him are false.
Summary:
In a statement released by The Wire, where Vinod Dua works as the consulting editor, the journalist denied the sexual harassment allegations levelled against him by filmmaker Nishtha Jain.
Summary:
Author Chetan Bhagat has tweeted that in 2016, he launched a book by author Ira Trivedi, the woman who has accused him of sexual harassment.
Summary:
A woman employee working with a multinational company in Delhi's Dwarka was allegedly gangraped by two of her colleagues on Saturday, the police said.
Summary:
Personal Security Officer, Mahipal Singh, who shot at the wife and son of Gurugram judge Krishan Kant, has been sent to four-day police custody.
Summary:
Tiwari was shot dead by one constable allegedly after he refused to stop his car during patrol inspection.
Summary:
Meanwhile, the Shiv Sena threatened that its activists will commit suicide if women try to enter the temple.
Summary:
Harsha Lobo, a 53-year-old air hostess from Air India, fell from the plane onto the tarmac while attempting to close the door of a New Delhi-bound flight at Mumbai airport.
Summary:
Indian-origin astrophysicist, Dr Karan Jani, has claimed he and his friends were denied entry to a garba event in the US on grounds that they don't "look Hindu" and the surname on their IDs doesn't "sound Hindu".
Summary:
"The South and North reached the agreement after discussing action plans to develop inter-Korean relations to a new, higher stage," officials said.
Summary:
The Duke and Duchess of Sussex, Prince Harry and his wife Meghan Markle, are expecting their first baby in the spring of 2019.
Summary:
Backing off his claim that climate change is a hoax, US President Donald Trump has said, "I think something's happening.
Summary:
Hillary Clinton has said during an interview that her husband, former US President Bill Clinton's affair with Monica Lewinsky was not an abuse of power, adding the then White House intern "was an adult".
Summary:
D-Mart shares have gained 12.6% so far this year.
Summary:
Jet Airways has apologised for delaying the salary of employees for the month of September and said it is "working towards a solution" on the issue.
Summary:
RGV wanted Naidu's doppelgänger for his upcoming film 'Lakshmi's NTR'.nnn
Summary:
Karan Johar, on being asked how showcasing romance in films has changed over the years, said, "The four-letter word lust is replacing the four-letter word love." "You can no longer be old world about your romance, it'll not be identifiable, the younger generation will feel disconnected," he added.
Summary:
Summary:
Kajol has said her children Nysa and Yug don't like her films and so they don't watch them.
Summary:
Talking about her style of parenting, Kajol said that her husband Ajay Devgn is the helicopter and she is the drone for their children Nysa and Yug.
Summary:
He wrote that the wealth of detail suggests that most of the #MeToo accusations are real.
Summary:
During a recent interview, Karnataka CM HD Kumaraswamy said that it is natural that Congress chief Rahul Gandhi will be Opposition's PM candidate for 2019 elections since Congress is the largest party of the 'Mahagatbandhan'.
Summary:
A 93-year-old great-grandmother has been crowned 'Miss Holocaust Survivor' in an annual Israeli beauty pageant designed to honour women who survived the Holocaust.
"I wouldn't believe that at my age I would be a beauty," she added.
Summary:
Cravings can hit any time of the day and Foodpanda has launched 'The Crave Party' to take care of it.
Summary:
With this, India equalled Australia's record of winning 10 consecutive Test series on home soil.
Summary:
The Kerala High Court on Monday granted conditional bail to Bishop Franco Mulakkal, who has been accused of rape by a Kerala nun.
Summary:
Actress Simran Suri has alleged that director Sajid Khan sexually harassed her and asked her to strip in 2012 when he called her to his home for an audition for 'Himmatwala'.
I'll have to see your body," Suri quoted Sajid as saying.
Summary:
BCCI CEO Rahul Johri has been forced to skip an upcoming ICC meeting amid the sexual harassment allegations against him by an ex-colleague.
Summary:
Talking about Prithvi Shaw, who was named Man of the Series for scoring 237 runs against Windies, India coach Ravi Shastri said, "He's born to play cricket." He added, "Shaw has been playing since he was eight.
Summary:
The BJP has filed a case against Congress' Chhattisgarh unit for posting an image of India's map without Kashmir on its official Twitter handle.
Summary:
Twelve solar panels worth â¹40 lakh were stolen from the roof of the Sushruta Trauma Centre, a hospital run by the Delhi government.
Summary:
A mosque in Haryana's Palwal district was allegedly built using funds from Pakistan-based Falah-e-Insaniat Foundation, an organisation affiliated to 26/11 Mumbai terror attack mastermind Hafiz Saeed's Jamaat-ud-Dawah.
Summary:
On Sunday, the Goddess was draped in a gold saree and adorned with gold jewellery.
Summary:
Bengaluru's Havanur Public School's 60-year-old principal Ranganath was stabbed to death by six unknown assailants in front of his 20 students while he was taking their class on Sunday.
Summary:
The total number of cases in India's biggest Zika outbreak has risen to 60 after five more people tested positive in Rajasthan on Sunday.
Summary:
Calling North Korean leader Kim Jong-un "sincere", South Korean President Moon Jae-in has said the international community needed to reward him for his move to abandon nuclear weapons.
Summary:
A $19 million (over â¹140 crore) F-16 Falcon fighter jet exploded and another aircraft was damaged when a mechanic accidentally opened fire from a third plane during maintenance at a military base in Belgium.
Summary:
US President Donald Trump has said during an interview that he believes that Russian President Vladimir Putin "probably" has been involved in assassinations and poisonings of his critics.
Summary:
US President Donald Trump has called Defence Secretary James Mattis "sort of a Democrat", saying he "might leave".
"Mattis is a good guy...He may leave.
I mean, at some point, everybody leaves.
Summary:
Saif Ali Khan has given a hint about the changes that might happen in the core team of 'Sacred Games' season 2 amid harassment allegations.
Summary:
Saif further said that people who have sexually harassed women should pay for it.
Summary:
A video shows robot dog Spot, developed by SoftBank-owned American robotics company Boston Dynamics, autonomously navigating around a construction site.
Summary:
He added that he would discuss this proposal with leaders of both the parties.
Summary:
BJP spokesperson Sambit Patra on Sunday took a dig at Punjab Minister Navjot Singh Sidhu, saying he should get himself inducted in Imran Khan's Cabinet after Sidhu reportedly compared South India with Pakistan.
Summary:
AAP leader Gopal Rai on Sunday said Delhi CM Arvind Kejriwal will launch a nationwide campaign on Monday to tackle the party's ongoing financial crisis.
Summary:
Stephen Hawking, one of the world's celebrated scientists, in one of his essays predicted that wealthy people will create a "superhuman" race by editing their children's DNA.
Summary:
Ecuador has restored partial internet access to WikiLeaks founder Julian Assange who has lived in Ecuador's London embassy since June 2012 when he took refuge there to avoid extradition to Sweden over allegations of sex crimes.
Summary:
Saudi Arabia has said it would retaliate against threats to impose sanctions on the kingdom over the disappearance of journalist Jamal Khashoggi in a Saudi consulate in Istanbul.
Summary:
This comes after the US approved the sale of $330 million worth of military parts to Taiwan last month.
Summary:
Responding to sexual harassment allegations by documentary director Nishtha Jain against her journalist father Vinod Dua, comedian Mallika Dua said, "If at all my father is truly guilty...it's unacceptable, traumatic and painful." "But your dragging my name into this was in terrible taste," Mallika added.
Summary:
The camera uses a method called compressed ultrafast photography (CUP) with femtosecond streak camera used in scanners.
Summary:
A pilot landed a TUI Airways Boeing 757-200 plane sideways at Bristol Airport in the UK after it was swept by Storm Callum's 74-kmph crosswinds on Friday.
Summary:
A picture of a woman has gone viral on the internet as people are confused whether it shows her neck or her back.
Summary:
Filmmaker Subhash Ghai has tweeted that he is a great supporter of the #MeToo movement while adding, "Hope...those taking undue advantage of the movement do not end up diluting it for their own short time fame." The 73-year-old filmmaker has been accused of sexual harassment by two women.
Summary:
Actress Kriti Sanon on Sunday said that men or women who are sharing their #MeToo stories should either reveal their names and faces or file an FIR or a legal case so that the movement doesn't get misused or diluted.
Summary:
She further alleged that Suhel once told her that she shouldn't wear a bra.
Summary:
Union Minister and ex-Editor MJ Akbar, while responding to multiple sexual harassment allegations against him, said, "Lies do not have legs, but they do contain poison, which can be whipped into a frenzy." "Why has this storm risen a few months before a general election?" he added.
Summary:
Gambhir also reached 10,000 List A runs during his 72-ball 104-run knock, becoming the ninth Indian to achieve the feat.
Summary:
The record for the most sixes hit in a T20 match was set in the Balkh Legends-Kabul Zwanan match on Sunday.
Summary:
Afghan opener Hazratullah Zazai smashed six sixes in an over during his 17-ball 62-run knock for Kabul Zwanan against Balkh Legends in Afghanistan Premier League today.
Summary:
An 11-year-old boy was killed and his seven friends were injured when a speeding car hit them while they were walking towards a temple in Maharashtra's Nashik on Sunday.
Summary:
The Reserve Bank of India (RBI) will not relax its October 15 deadline set for global financial technology (fintech) companies to comply with its data localisation norms, reports said.
Summary:
Amid the ongoing #MeToo movement, the Delhi Commission for Women (DCW) has launched a separate email address to report cases of sexual harassment.
Summary:
Humanoid robot Pepper is set to appear as a witness for the first time before the UK Parliament this week.
Summary:
Apple's App Store generated nearly 94% more revenue than Google's Play Store in the third quarter of 2018, according to market analyst Sensor Tower.
Summary:
Ahead of the assembly elections in Madhya Pradesh, a former BJP MLA Sunil Mishra joined the Congress in the presence of Madhya Pradesh Congress President Kamal Nath.
Summary:
Loktantrik Janata Dal (LJD) patron Sharad Yadav on Sunday said no other ruling dispensation has caused more harm to the people of this country since independence than the BJP-led NDA government.
Yadav alleged that around seven crore people lost their jobs due to demonetisation in the country.
Summary:
The Congress on Sunday attacked Prime Minister Narendra Modi over the allegations of sexual harassment against Union Minister MJ Akbar, saying his silence was "conspicuous and unacceptable".
Summary:
Summary:
Currently, SEC rules prohibit Uber from giving its drivers stock in the company as they aren't employees.
Summary:
Reports also claimed that Tesla is making 5,000 Model 3 cars per week consistently, months after intermittently reaching that volume.
Summary:
Harley-Davidson has announced the appointment of Sajeev Rajasekharan as Managing Director (MD) of the motorcycle manufacturer's India operations.
Summary:
Alibaba-owned internet company UCWeb, which runs web browser UC Browser, has denied merger talks with Paytm over UCWeb's India business as "untrue".
Summary:
Not allowing EDM festival this year would be the first step to clean the tourism from drug menace, Sena's Goa spokesperson said.
Summary:
The Railway Protection Force (RPF) has said that soon passengers on board trains will be able to file a 'zero FIR' through an app which will be immediately investigated by the force.
Summary:
Summary:
India have now won seven consecutive Test series against Windies dating back to October 2002.
Summary:
Eleven female filmmakers have announced their decision of not working with proven sexual offenders and urged their peers in the industry to do the same.
Summary:
Responding to multiple sexual harassment allegations against him, Union Minister MJ Akbar on Sunday said, "One woman, Anju Bharti, went to the absurd extent of claiming I was partying in a swimming pool." "I do not know how to swim," he added.
Summary:
Overall, he is the second youngest cricketer to achieve the feat after Australia's Pat Cummins (18 years and 198 days).
Summary:
A three-member screening committee of Congress has claimed that despite party chief Rahul Gandhi's insistence that there should be only one ticket per family, the rule seems to exist only on paper.
Summary:
During a recent interview, CPI(M) General Secretary Sitaram Yechury revealed that he was initially named 'Sitaramarao' after his grandfather.
Yechury, who is a Telugu-speaking Brahmin, added that he later "dropped the caste appendage" from his name.
Summary:
"We know (Congress) loves Pakistan and (its) members sing its praises," Rao said.
Summary:
Herman Gomes, a television journalist, was attacked by a group of unknown men outside his residence in Mumbai early Sunday.
Gomes shared pictures of his injuries on Facebook and claimed the attack was "clearly preplanned".
Summary:
The UK considered reconciling with Netaji Subhas Chandra Bose during then PM John Major's 1993 visit to India, declassified documents revealed.
Summary:
Maharashtra government is considering a policy for home delivery of liquor in what state minister Chandrashekhar Bawankule said is aimed at reducing cases of drunken driving.
Summary:
The new promo of Ekta Kapoor's production 'Kasautii Zindagii Kay' shows Hina Khan playing the character of Komolika Chaubey in the serial.
Summary:
Parineeti Chopra, while talking about her experience of being in Bollywood and #MeToo movement, said, "I started my career under the leadership of Yash and Aditya Chopra.
Summary:
Chris Evans has said the final line that he spoke as Captain America in his upcoming film 'Avengers 4' is "really stupid".
The day was more memorable than the line," Chris said.
Summary:
Summary:
Actress Huma Qureshi was the showstopper at Lotus Makeup India Fashion Week (LMIFW) Grand Finale Rainbow Show, which celebrated the Supreme Court's verdict on Section 377.
Summary:
Nushrat Bharucha, who has starred in Luv Ranjan's four films including 'Sonu Ke Titu Ki Sweety', has tweeted an open letter in support of Luv with a caption, "This is my story.
Summary:
'Sacred Games' actress Rajshri Deshpande, while talking about #MeToo movement, said, "I'm glad we're finally opening up.
Summary:
Summary:
Apple has assigned workers to carry backpacks for the collection of street-level map data on foot in the US.
Summary:
Goa Chief Minister Manohar Parrikar, who was being treated for a pancreatic ailment at the AIIMS, New Delhi, was discharged on Sunday although his condition remains critical.
Summary:
"Poor...will not vote if you do not work for them.
He also asked the BJP to work on the distribution of reservation for backward classes.
Summary:
Elon Musk can be reinstated as Tesla Chairman only if the shareholders approve, according to briefs filed by the US Securities and Exchange Commission (SEC).
Summary:
The ISS crew will perform spacewalks, but "on other dates", an agency official said.
Summary:
Former TV producer and anchor, Suhaib Ilyasi, who was recently acquitted in his wife's 18-year-old murder case, has revealed that he found solace in the teachings of Bhagavad Gita and the Upanishads during his time in jail.
Summary:
The Shri Mata Vaishno Devi Shrine Board on Saturday approved enhancement of free accident insurance cover for pilgrims visiting the shrine to â¹5 lakh besides free treatment to trauma victims from nearby areas.
Summary:
After American pastor Andrew Brunson arrived in the country following his release from captivity in Turkey, US President Donald Trump said he looks forward to improved US-Turkish relations.
Summary:
Dr ReddyâÂÂs Laboratories' US arm has recalled over 35,000 tubes of Nystatin and Triamcinolone Acetonide cream for failing stability specifications.
Summary:
Reacting to the sexual harassment allegations against him by over 10 female journalists, Union Minister and former Editor MJ Akbar said, "Accusation without evidence has become a viral fever among some sections." "These false, baseless and wild allegations have caused irreparable damage to my reputation and goodwill," he added.
Summary:
Ruth David, a UK-based journalist who worked with Union Minister and former editor MJ Akbar in 1999, has accused him of sexual harassment and said he tried to kiss her when she refused massage from him.
Summary:
Indian batsman Gautam Gambhir, who turned 37 on Sunday, was the top scorer for India in the 2007 and 2011 World Cup finals that India won.
Summary:
Summary:
no less creepy, a sexual harasser, potential rapist".
She alleged that he told her a lewd sexual joke while interviewing her.
Summary:
Nishtha Jain, director of the documentary 'Gulabi Gang', claimed that comedian Mallika Dua's father senior journalist-TV anchor Vinod Dua sexually harassed her.
Summary:
This comes after a Mumbai-based media company published an article titled âÂÂRohit Sharma, Bhuvneshwar Kumar to become fathers for the first timeâÂÂ.
Summary:
After Congress chief Rahul Gandhi interacted with Hindustan Aeronautics Limited (HAL) workers, the state-owned company said "the politicisation of employees" is a "regrettable development".
Summary:
Samajwadi Party patriarch Mulayam Singh Yadav's daughter-in-law Aparna on Saturday came out in support of his younger brother Shivpal's newly founded party Samajwadi Secular Morcha (SSM).
Summary:
The SIT report said there was no delay in deployment of Army.
Summary:
Ten members of a family died while four others were injured after an SUV collided with a truck on the Nagpur-Raipur highway in Chhattisgarh on Sunday.
Summary:
After the demise of environmentalist GD Agrawal, another activist, Sant Gopaldas, was rushed to the hospital on the 112th day of his fast for the conservation of river Ganga.
Summary:
Delhi minister Kailash Gahlot has denied claims that benami assets worth over â¹100 crore were seized during raids by Income Tax Department on properties related to him.
Summary:
Gurugram judge Krishan Kant Sharma's gunman Mahipal Singh, who shot the judge's wife and son, told the police that he was mentally disturbed and felt "possessed" at the time of shooting them.
Summary:
Rukhsar has 18 criminal cases against him and carried a reward of â¹25,000, police said.
Summary:
In the picture, Fiona can be seen covered by bruises and cuts caused by the chunks of ice.
Summary:
The World Bank has announced funding of up to $1 billion for the Indonesian government to supplement relief and reconstruction efforts in wake of the earthquake and tsunami that hit the country last month.
Summary:
TCS m-cap fell by â¹85,330.17 crore to â¹7,19,857.48 crore.
Summary:
Earlier, while reacting to the sexual harassment allegations against Sajid, Akshay had said he won't work with "proven offenders".
Summary:
Sanjay Dutt or Anil Kapoor will replace Nana Patekar in 'Housefull 4', as per reports.
Summary:
Kirron Kher, while talking about the sexual harassment allegations on Sajid Khan, said, "What I have known of Sajid over the years, I didn't face anything like this." "I haven't seen anything or experienced it.
Summary:
Summary:
Tanushree Dutta's lawyer N Satpute has said if Nana Patekar was a common man, he would have been immediately arrested.
Summary:
Defending Farhan Akhtar and reacting to Amrita Puri's tweet where she said Sajid Khan's family knew about his sexual misconduct, Shibani Dandekar tweeted, "Instead of holding the culprit responsible...are we really blaming family members for not knowing?" "Your anger is justified.
Summary:
The "sinicisation" of Uighur Muslims in Xinjiang must be upheld to promote religious harmony, a senior Chinese official has said.
Summary:
US President Donald Trump's son-in-law and senior White House advisor Jared Kushner likely paid little or no federal income taxes between 2009 and 2016, according to a New York Times report citing confidential financial documents.
Summary:
Clove Dental's 'Smile design' campaign offers a potentially ideal solution for all dental problems in the form of fully tailored smile makeover treatment plans.
Summary:
Tanushree Dutta's lawyer has submitted a notice, demanding Narco-analysis, brain mapping and lie-detector test for Nana Patekar and the others accused of sexually harassing her.
Summary:
Summary:
Ayushmann Khurrana's wife Tahira Kashyap has revealed she had her #MeToo moment while adding, "I found solace after 20 years when I shared the same with my husband and parents." She added when she started dating Ayushmann, she cried at every step of physical proximity as she was scared of physical touch.
Summary:
Actress Kate Sharma has filed a police complaint against director Subhash Ghai accusing him of molesting her on August 6 at his house.
tried to kiss and hug me," alleged Kate.
Summary:
The 'Me Too' movement was founded in 2006 by 45-year-old African-American civil rights activist Tarana Burke to help survivors of sexual violence.
Summary:
Minister of State for External Affairs MJ Akbar on Sunday returned to India after an official trip to Nigeria amid sexual harassment allegations levelled against him by several women.
Summary:
Indian Navy on Saturday inducted its first Deep Submergence Rescue Vessel (DSRV), which can be used to rescue downed or disaster-struck submarines in sea.
Summary:
He added that Governor Ram Naik has also given his consent for the renaming.
Summary:
Meanwhile, the police have arrested gunman Mahipal Singh who shot Sharma's wife and 18-year-old son.
Summary:
He had earlier said that Pakistan is "ready for war" but chooses peace in the interests of its people.
Summary:
130 passengers and six crew members were on board.
Summary:
Minutes after shooting Gurugram judge Krishan Kant Sharma's son and wife in broad daylight on a street on Saturday, his gunman Mahipal Singh called Sharma and said, "I have shot your wife and son." After shooting both, Singh tried to put Sharma's 18-year-old son in a car but failed.
Summary:
"This Rafale contract is your (HAL's) right," Gandhi told the gathering.
Summary:
Congress MP Shashi Tharoor retweeted a video of a two-year-old girl trying to pronounce the word 'floccinaucinihilipilification'.
The 62-year-old lawmaker had earlier tweeted the 29-character word while announcing his latest book 'The Paradoxical Prime Minister'.
Summary:
Earlier, Trump said US will inflict "severe punishment" on Saudi if it's found to be responsible for Khashoggi's death.
Summary:
India's second largest IT services company Infosys on Saturday announced it has completed its â¬65 million (over â¹550 crore) acquisition of Finland's Fluido.
Summary:
Reacting to 'Aisha' actress Amrita Puri's tweet where she refused to believe that Sajid Khan's family didn't know about his sexual misconduct, Sajid's cousin Farhan Akhtar tweeted, "Your anger is justified.
Summary:
Aishwarya Rai Bachchan, while talking about her daughter Aaradhya Bachchan, said, "It's nice to see that today, she's so comfortable with the paparazzi." "Now, when I travel abroad, I don't take help because I can manage Aaradhya on my own," she added.
Summary:
India suffered a 2-3 loss to Great Britain to settle for the silver medal at the eighth Sultan of Johor Cup U-18 hockey tournament on Saturday.
Summary:
Liverpool's Egyptian forward scored a goal directly from a corner kick while playing an Africa Cup of Nations Group J qualifying match against Swaziland on Friday.
Summary:
Du Plessis and Duminy exchanged a high-five after South Africa won the toss.
Summary:
Samsung's President of Mobile Communications Business Dong Jin Koh has said that Samsung's foldable smartphone won't be a "gimmick" that will "disappear after six to nine months after it's delivered." "If the user experience is not up to my standard, I donâÂÂt want to deliver those...products," he added.
Summary:
Mumbai-based lawyers, Mrunalini Deshmukh and Vaibhav Krishnan, have volunteered to provide legal aid to victims of sexual harassment, without any fee.
Summary:
The overall fees for Indians and other non-European immigrants seeking UK visas will rise from December as the UK government will increase the immigration health surcharge (IHS).
Summary:
Granting the Philippines a fresh three-year term on the UN Human Rights Council has vindicated President Rodrigo Duterte's crackdown on drugs and shown his critics to be "morally corrupt", Philippine Foreign Affairs Secretary Alan Peter Cayetano said.
Summary:
Acharya added that banks would have incurred even higher losses if PCA had not been imposed.
Summary:
Mandana further said, "[He may be a big director], but you can't abuse your power."
Summary:
After filmmaker Vikas Bahl's ex-wife Richa Dubey defended him against Kangana Ranaut's sexual harassment allegations, Kangana said in response, "Why do they leave their holier-than-thou husbands in the first place?" "Stop this bullshit that we had a friendly divorce...and we are a family," she added.
Summary:
He added it was constructed as neither India nor the now-defunct IPL franchise Deccan Chargers were winning their matches there.
Summary:
Summary:
Summary:
Addressing people in Karnataka's Karwar recently, BJP minister Anantkumar Hegde said, "Some say we (BJP) do politics, but we're here to do politics only, if not why would have we entered politics." "We can't do anything except politics, only that's possible by us.
Summary:
Kerala Shiv Sena leader Peringammala Aji on Saturday said, "Our women activists will gather near the Pamba river on 17th and 18th October as part of a suicide group.
Summary:
The trader had logged on to the website for association with Patanjali to be able to sell the company's goods.
Summary:
The wife and son of an additional sessions judge were shot at by his Personal Security Officer (PSO) on a street near Arcadia Market in Gurugram's Sector 49 on Saturday.
Summary:
For trade with all countries, China registered a surplus of $31.69 billion in September.
Summary:
Fortune Foods apologised and said it will partially withdraw a Durga Puja-themed ad showing consumption of non-vegetarian food.
Summary:
After Sajid Khan stepped down as the director of 'Housefull 4', filmmaker Farhad Samji has replaced Sajid Khan as the film's director, as per reports.
Summary:
Summary:
Singer Usha Uthup, while commenting on the #MeToo movement, said, "I am quite sad about the whole thing being blown out of proportion." "I never thought [people] could do something of this kind to make it that big," she added.
Summary:
Actor Sharman Joshi, while speaking about his exit from Rohit Shetty's 'Golmaal' series, said, "They threw me out." "I think second part mein kuch negotiation me mere manager aur producers ki kuch gadbad ho gayi," he added.
Summary:
Summary:
Following today's drawn result, the Chinese national football team is now winless in three consecutive matches.
Summary:
Indian cricketer MS Dhoni was seen offering prayers at Ranchi's Deori Temple on the fourth day of Navratri.
Summary:
American rapper 50 Cent has offered $2 million to Russian UFC champ Khabib Nurmagomedov, who beat Conor McGregor recently, to ditch UFC and join its rival promotion Bellator.
Summary:
India's 17-year-old shuttler Lakshya Sen settled for a silver medal after he lost the men's singles final against Li Shifeng of China in straight games in the Youth Olympics on Saturday.
Summary:
Facebook is reportedly testing 'Unsend' feature for chats on Messenger which would allow users to delete sent messages.
Summary:
Apple's latest iOS 12.0.1 update is sending iMessages to wrong contacts, as per a media report.
Summary:
We will not join hands with either DMK or AIADMK," Haasan added.
Summary:
A day after the mid-air failure of the Russian Soyuz rocket, NASA Administrator Jim Bridenstine said, "I fully anticipate that we'll fly again on a Soyuz rocket." "I'm confident we'll launch in December," he added.
Summary:
A delegation of the Taliban militant group held talks with US diplomat Zalmay Khalilzad in Qatar on Friday to discuss ways to end the war in Afghanistan, in the first confirmed meeting between the two parties.
Summary:
Pakistan PM Imran Khan on Saturday launched the 'Clean and Green Pakistan' campaign in Islamabad and vowed to make the country "cleaner than Europe" in five years.
Summary:
The government has moved the National Company Law Tribunal seeking a three-month moratorium from legal proceedings in any court against IL&FS and its 348 subsidiaries by any lender.
Summary:
Actor Nawazuddin Siddiqui on Saturday revealed that his sister was diagnosed with advanced stage breast cancer when she was 18 years old.
Summary:
Apologising over his "women entering Sabarimala temple should be ripped in half" remark, Kerala actor Kollam Thulasi said, "It's due to my deep devotion to Lord Ayyappa I said like that." "I later understood as a celebrity, I shouldn't say like this.
Summary:
Alok Nath's wife Ashu Nath has filed an application in a Mumbai court, seeking police investigation into producer Vinta Nanda's rape allegations against Alok.
Vinta had earlier revealed she had informed Alok's wife about the alleged rape but she didn't do anything.
Summary:
Times of India's Hyderabad Editor KR Sreenivas, who was accused of sexual misconduct by several women, has resigned, Editorial Director Jaideep Bose has confirmed.
Summary:
An ex-colleague alleged Johri took advantage of her by offering her a job opportunity.
Summary:
A 23-year-old Kerala engineer named Vyshnav NK earned a spot on Google's Hall of Fame in June for pointing out a flaw in Google.
Summary:
After being allotted BSP chief Mayawati's old bungalow by Uttar Pradesh government, Samajwadi Secular Morcha founder Shivpal Yadav said, "I've been allotted the bungalow as there were intelligence reports of threats to me." Meanwhile, the officials said the bungalow was allotted to the five-time MLA based on seniority.
Summary:
NASA Administrator Jim Bridenstine has revealed US astronaut Nick Hague calmly relayed information in Russian to flight controllers despite the failure of ISS-bound rocket two minutes after launch on Thursday.
Summary:
A Class 9 girl died in Uttar Pradesh's Hardoi after returning from 'Beti Bachao Beti Padhao' function.
Summary:
Punjab Minister Navjot Singh Sidhu has said that he can relate more to Pakistanis than South Indians.
Summary:
After India was elected to UN Human Rights Council with the highest votes, India's Permanent Representative to UN Syed Akbaruddin said they will continue to work in a balanced way to protect human rights.
Summary:
The family of a 35-year-old worker from Bihar has claimed that he was beaten to death by a mob in a hate attack against migrants in Gujarat.
Summary:
The Andhra Pradesh government has requested the Centre to release â¹1,200 crore as interim relief for restoration measures in districts hit by cyclone 'Titli'.
Summary:
Summary:
Melania was criticised for wearing the jacket while visiting an immigrant children's detention centre.
Summary:
The bodies of 11 babies were found hidden in the ceiling of a closed funeral home in the US' Detroit city, authorities said.
Summary:
The US had earlier said that the IMF bailouts to Pakistan should not be used for repaying Chinese loans.
Summary:
The audio recording of his "interrogation, torture and killing were sent to both his phone and to iCloud", the report further claimed.
Summary:
The Indian team ended the second day of the 2nd Test trailing by three runs after Prithvi Shaw, Rishabh Pant and Ajinkya Rahane scored half-centuries.
Summary:
Arsenal's former World Cup-winning French player Thierry Henry has been named the head coach of French club AS Monaco, where Henry played from 1993 to 1999.
Summary:
Afghanistan captain Asghar Afghan copied former Pakistan captain Shahid Afridi's signature celebration after taking Afridi's catch, dismissing him on a second-ball duck in the Afghanistan Premier League.
Summary:
Jack Ma, the Co-founder of Chinese e-commerce giant Alibaba, has said that he plans to open an institute in Indonesia to train entrepreneurs in the field of technology.
Summary:
Foodtech startup Zomato has raised $210 million from Chinese e-commerce giant Alibaba's affiliate Ant Financial, which runs payments platform Alipay.
Summary:
The owner of a hair saloon stabbed his friend to death using a pair of scissors following an argument over â¹10 in UP's Bareilly, the police said on Saturday.
Summary:
The HC also upheld the life sentence awarded to another convict in the case.
Summary:
The RBI has given time till October 15 for payment system operators to store their data in India.
Summary:
SpiceJet Managing Director Ajay Singh has said that a 10-12% fare hike will not impact passenger travel as the fares are "extremely reasonable" now.
Summary:
Criticising Kangana Ranaut over sexual harassment allegations against Vikas Bahl, his ex-wife Richa Dubey questioned, "If a man makes you uncomfortable...would you go out wining and dining with [him]?" She claimed Kangana performed with Vikas at a 2015 wedding and they also exchanged "extremely friendly" messages.
Summary:
Alia Bhatt has penned an open letter apologising to her sister Shaheen Bhatt for not understanding her "silent moments of depression".
Summary:
India captain Virat Kohli has become the highest scoring Asian Test captain of all time, achieving the feat during his 45-run knock in the first innings of the second Windies Test on Saturday.
Summary:
Indian badminton player Parupalli Kashyap today sought External Affairs Minister Sushma Swaraj's help after he lost his passport in Netherlands' capital Amsterdam while travelling to Odense for the Denmark Open.
Summary:
However, users can also find out if their account was impacted on Facebook's Help Center page.
Summary:
Only 30 have reached Gurja's peak so far, while over 8,000 have summited 8,848-metre-tall Mount Everest.
Summary:
Congress' Chhattisgarh working President Ramdayal Uike on Saturday joined the BJP in the presence of BJP chief Amit Shah and Chief Minister Raman Singh.
Summary:
Billionaire entrepreneur and Tesla CEO Elon Musk took to Twitter on Friday to confirm the Tesla-branded tequila 'Teslaquila' is "coming soon".
Summary:
At least five passengers were killed and six seriously injured after they were run over by a train while crossing the tracks at Bhabua railway station in Bihar on Friday.
Summary:
Sitharaman's three-day France visit comes amidst Opposition's allegations of financial irregularities in the Rafale fighter jets deal.
Summary:
Nine girls born at a state community health centre during the cyclone have all been named 'Titli'.
Summary:
Around 22 villagers from Gajapati district had taken shelter in the cave.
Summary:
Thulasi had said women coming to Sabarimala should be ripped into half.
Summary:
As many as six masked and armed robbers shot dead a cashier at a Corporation Bank branch in Delhi and managed to flee with around â¹3 lakh.
Summary:
The US has announced that it would limit the sale of civilian nuclear technology to China amid ongoing tensions between the two countries, particularly the trade war.
Summary:
Trump's recent campaign rallies have reportedly featured Prince's 'Purple Rain' song.
Summary:
Summary:
Sussanne further said that social media platforms shouldn't be misused.
Summary:
'Bigg Boss' season 9 winner Prince Narula got married to his girlfriend Yuvika Chaudhary in Mumbai on Friday in the presence of friends, family and colleagues from the television and film industry.
Summary:
Stating that sexual harassment cases at workplaces must be dealt with a "zero tolerance" policy, Union Minister Maneka Gandhi said, "I believe in the pain and trauma behind every single complaint." Discussing the #MeToo campaign, she added, "It takes a lot for women to come out like this.
Summary:
Indian pacer Umesh Yadav picked 6 for 88 on day two of the 2nd Test against West Indies in Hyderabad, thus registering the best figures for an Indian pacer at home since 1999.
Summary:
The vehicle carrying a few England cricketers including Ben Stokes, Ollie Pope, and Jonny Bairstow got stuck in mud during their safari ride in Sri Lanka ahead of the second ODI.
Summary:
Sequoia-backed startup GoZefo has raised nearly $3 million in a funding round led by New York-based investment firm FJ Labs.
Summary:
Mumbai-based domestic help provider startup BookMyBai has raised an undisclosed amount of pre-series A funding led by Japan-based social venture fund ARUN Seed.
Summary:
to project that government exists." It added, "Without an alternative arrangement, the continued presence of the (Goa) CM in Delhi has crippled the state administration."
Summary:
Prime Minister Narendra Modi on Saturday said he was "touched to see" visually impaired girls in Ahmedabad perform garba to a song penned by him.
Summary:
This will allow the bank's promoter to bring down its holding from the current 82.28% to 40% to comply with RBI rules.
Summary:
Alok Nath has filed a defamation case against writer-producer Vinta Nanda, who recently accused the actor of raping her almost 20 years ago.
Summary:
And, if air remains clean and pure, it will lead to a healthy life," the environment minister told Lord Rama's character.
Summary:
Kangana Ranaut's ex-boyfriend Adhyayan Suman has tweeted that when he had shared his #MeToo story two years ago, he was shamed and humiliated.
Summary:
An ex-colleague has accused BCCI CEO Rahul Johri of sexually harassing her at his place.
Summary:
Responding to a question about the #MeToo movement, Union Minister Smriti Irani said India has strict laws in place to protect women, who can approach the police and courts for justice.
Summary:
Even you can post anything using my name," Shah said to interviewer, adding, "is par zaroor sochenge".
Summary:
The Madras High Court has dismissed a woman's claim that she is late Tamil Nadu CM J Jayalalithaa's daughter, stating she "miserably failed in her endeavour to establish the same".
Summary:
A first-year student of Delhi University and her brother have been arrested for allegedly kidnapping their landlord's three-year-old son for a ransom of â¹5 crore.
Summary:
The Supreme Court has stayed the Uttarakhand High Court's order which imposed a blanket ban on fatwas by religious bodies.
Summary:
The hospital had claimed that the man had 24 hours to live.
Summary:
Ex-IIT Kanpur Professor GD Agrawal wrote three letters to PM Narendra Modi before his death on the 112th day of fast over Ganga.
In his last letter, Agrawal wrote "Uma Bharti ji came to meet me.
Summary:
Hindustani classical musician Annapurna Devi on Saturday passed away at the age of 91 after suffering from age-related illnesses.
Summary:
During a hearing of a petition filed by an NGO seeking a ban on export of meat, the Supreme Court on Friday remarked that it cannot issue an order for everybody to turn vegetarian.
Summary:
The company, which makes Knorr soups and Lux soaps, recorded sales of â¹9,234 crore during the quarter, an 11.1% increase from the same period last year.
Summary:
Saif Ali Khan has said that he did not notice any inappropriate behaviour of Sajid Khan while working with him, adding, "However, I feel we need to listen before reacting." "Let people speak - it takes a lot of courage to speak about these things.
Summary:
Speaking about the #MeToo movement, Bobby Deol has tweeted that the "brave" women who come out and speak up need to be understood and heard and not "judged" or "demeaned".
Summary:
Summary:
Pooja Hegde, while talking about #MeToo movement, said, "I think it's much bigger than one person and I would appeal to men also to help." She added the movement is not about men versus women but about making a safe environment.
Summary:
Tweeting about #MeToo movement and referring to his upcoming film 'Housefull 4' whose director Sajid Khan has been accused of sexual harassment, Riteish Deshmukh wrote, "I second Akshay Kumar's stand." Reacting to the accusations against Sajid, Akshay had said that he won't work with proven offenders.
Summary:
Reports also suggested Priyanka will have her bridal shower in New York before the wedding in Jodhpur.
Summary:
Summary:
Delhi Commission for Women Chairperson Swati Maliwal has penned a letter to PM Narendra Modi, urging him to remove Union Minister MJ Akbar from his post after several women accused him of sexual harassment.
Summary:
The Uttar Pradesh government has allotted the bungalow vacated by BSP chief Mayawati four months ago to Samajwadi Secular Morcha founder Shivpal Yadav.
Summary:
Summary:
AAP MLA HS Phoolka on Friday tendered his resignation from the Punjab Assembly, claiming the Congress-led government failed to take action against former CM Parkash Singh Badal and retired DGP Sumedh Singh Saini.
Summary:
BJP chief Amit Shah on Friday asked Congress President Rahul Gandhi if he was planning to form a government in Chhattisgarh under the leadership of a man who "put women to shame" by allegedly making a fake obscene CD.
Summary:
Discussing the 'Beti Bachao, Beti Padhao' campaign at a function of the National Human Rights Commission, Prime Minister Narendra Modi on Friday said, "The meaning of life is not just breathing.
Summary:
The show is featured on fbb's Facebook page where users can check out the collection.
Summary:
Notably, a minimum of 97 votes are needed to get elected to the Council.
Summary:
Actress Rachel White has alleged that director Sajid Khan called her to his house for a meeting for 'Humshakals' and told her if she could seduce him in 5 minutes the role was hers.
Summary:
The attackers accessed name, email addresses or phone numbers from nearly 2.9 crore accounts, Facebook added.
Summary:
The 19-year-old engineering student from Delhi, who allegedly killed his father and mother by stabbing them 26 times and sister seven times, was addicted to the online game PlayerUnknown's Battlegrounds (PUBG), police said.
Summary:
Nana Patekar has quit the film 'Housefull 4' over sexual harassment allegations against him by Tanushree Dutta, as per reports.
Summary:
Bipasha had earlier worked with Sajid in the film 'Humshakals'.
Summary:
'Pyaar Ka Punchnama' director Luv Ranjan, while denying sexual harassment allegations against him, said in a statement, "Since the time I have read the allegations...I've been wanting to scream that I'm not this man." "I can vouch for my intention but I can't decide how someone should feel," he added.
Summary:
A case of trespassing was filed against the fan who tried to kiss captain Virat Kohli after invading the field during the first day of the second India-Windies Test in Hyderabad on Friday.
Summary:
Actress Himani Shivpuri, who worked with rape-accused actor Alok Nath in various films, revealed he was once caught peeing in the open and was deplaned from a flight as he misbehaved.
Summary:
The technology giant's total expenses rose to â¹8,710 crore from â¹6,760 crore in 2016-17.
Summary:
The world's longest non-stop commercial flight landed in New York on Friday after making a nearly 18-hour-long trip.
Summary:
Less than a week after the Hubble Space Telescope went offline, the Chandra X-ray Observatory automatically went into safe mode on Wednesday possibly due to a gyroscopic failure, said NASA.
Summary:
A maths teacher who had been convicted of sexually harassing three minor students two months ago was allowed to rejoin the Mumbai-based school where the incident took place.
Summary:
Fifty cases of Zika have been confirmed in Jaipur in India's biggest outbreak of the disease with 11 pregnant women among them.
Summary:
The police said that the victim had asked his neighbour not to park his motorcycle in front of his house, which led to an argument.
Summary:
A 28-year-old pregnant woman was allegedly gangraped by three men at her home in West Bengal's Asansol on Wednesday.
Summary:
US First Lady Melania Trump has said that she has "much more important things to think about and to do" than spend time thinking about her husband President Donald Trump's alleged affairs.
Summary:
Nauman Hussain, the Pakistani-origin operator of a limousine company that owned the vehicle that crashed in New York on Sunday, has been charged with criminally negligent homicide.
Summary:
Virgin Group Founder Richard Branson has frozen business ties with Saudi Arabia over the alleged murder of journalist Jamal Khashoggi.
Summary:
Talking about the #MeToo movement in Bollywood, Ajay Devgn has tweeted, "If anyone has wronged even a single woman, neither ADF [Ajay Devgn Ffilms] nor I will stand for it." "My company and I believe in providing women with utmost respect and safety," he further wrote.
Summary:
The world number five tennis player Alexander Zverev has said that the use of towel after each point is "ridiculous" because many players do it for "superstition" and not because they sweat too much.
Summary:
On the 13th anniversary of the RTI Act on Friday, Congress President Rahul Gandhi said the BJP has "systematically derailed" the act since 2014 and Prime Minister Narendra Modi is seeking to "dilute" it.
Summary:
The two astronauts who survived the mid-air failure of a Russian rocket would provisionally travel to the ISS in 2019, head of the Russian space agency said on Friday.
Summary:
Summary:
A Turkish court on Friday released American pastor Andrew Brunson who was accused of being a part of the failed coup attempt against President Recep Tayyip ErdoÃÂan two years ago.
Summary:
IKEA is looking for opportunities to open smaller stores in India as part of its expansion strategy, the Swedish furniture retailer's India CEO Peter Betzel said.
Summary:
Majlie, who was then aged 18 years, said Akbar "grabbed me...pulled me in...kissed me and forced his tongue into my mouth".
Summary:
He once allegedly pushed his elbow into a girl's breasts at a party.
When he was called out, he allegedly said, "It would've been better if there was a bed."
Summary:
Filmmaker-choreographer Farah Khan, while responding to the sexual harassment allegations against her brother director Sajid Khan, tweeted, "If my brother has behaved in this manner he has a lot to atone for." "This is a heartbreaking time for my family," she added.
Summary:
The Supreme Court has issued a notice to the Registrar General of Madhya Pradesh High Court after hearing the plea for reinstatement by the court's former woman judge, who alleged sexual harassment by her supervisor a few years ago.
Summary:
Summary:
Usain Bolt scored twice in his first start for Australian football club Central Coast Mariners in a pre-season friendly against Macarthur South West United on Friday.
Summary:
Australian cricketer John Hastings has revealed every time he gets ready to bowl, he coughs up blood.
Summary:
Greece has banned overweight tourists from riding donkeys on the island of Santorini.
Summary:
Bombay High Court has stayed the sale of 20,000 cows bred in military farms, which provide milk and milk products to military troops.
Summary:
Reacting to the Supreme Court's verdict allowing women of all ages to enter Sabarimala Temple in Kerala, actor Kollam Thulasi said women entering the temple should be "ripped in half".
Summary:
The State Bank of Mauritius' Nariman Point branch in Mumbai has been cheated of nearly â¹143 crore after unknown fraudsters allegedly hacked the bank's servers.
Summary:
Earlier this month, the central bank kept the repo rate steady at 6.5% and has projected inflation of 4.8% by June 2019.
Summary:
The company was found guilty of forcing investors into a series of transactions between 2008 and 2014 that allowed Guo to gain control of a local brokerage firm.
Summary:
The Competition Commission of India (CCI) raided the offices of United Breweries, Carlsberg and AB InBev as part of an investigation into price-fixing allegations, according to reports.
Summary:
Summary:
The club's owner, Roman Abramovich, who is Jewish, is reportedly behind this new initiative.
Summary:
As per the policy, a specified 'family period' is prepared by the board and the players' association.
Summary:
India's 18-year-old batsman Prithvi Shaw entered the ICC Test batsmen rankings at the 73rd spot after scoring a century in his maiden Test innings in Rajkot.
Summary:
India's Rio Paralympics medallist Deepa Malik bagged her second medal as she clinched a bronze medal in the women's F51/52/53 discus throw event at the Asian Para Games on Friday.
Summary:
You can't compare their captaincy styles." "I turn to Dhoni bhai whenever I am in trouble or need any advice during a match.
Summary:
Australia are the top-ranked team in the new rankings, while New Zealand, England and West Indies respectively occupy the next spots.
Summary:
The Punjab government on Thursday launched three android mobile applications aimed at checking crop residue burning and creating awareness about its ill-effects.
Summary:
Twitter has announced that all emojis on its platform would now be counted as equal characters.
Summary:
The explosion left a neutron star which will eventually collide with the unseen entity, the astronomers said.
Summary:
Madras HC on Friday ordered a CBI investigation into corruption allegations against Tamil Nadu CM Edappadi K Palaniswami in awarding road contracts worth â¹3,500 crore.
Summary:
Aligarh Muslim University has suspended three students for allegedly holding a condolence meet for university's PhD scholar-turned-Hizbul Mujahideen terrorist Mannan Bashir Wani, who was killed in an encounter with security forces.
Summary:
South Korean President Moon Jae-in has asked the US to fulfil North Korea's demand to formally declare an end to the 1950-53 Korean War. Jae-in added this would imply the US has ended its "longstanding hostile relations" with North Korea.
Summary:
Speaking at an event, Bombay High Court Judge Gautam Patel came out in support of #MeToo movement and said the judiciary was also plagued with "rampant sexism and culture of patriarchy".
Summary:
Warne said Malik told him that the amount will be in his room in 30 minutes if the match ended in a draw.
Summary:
The Supreme Court has rejected petitions by Congress leaders Kamal Nath and Sachin Pilot on alleged duplication of voters in poll-bound Madhya Pradesh and Rajasthan.
Summary:
Raghav Bahl, Founder of Network18 Group and online news portal The Quint, has said the Income Tax raids at his Noida residence and Quint office were "clearly a fishing expedition".
Summary:
The denial comes after 'Nakkheeran' editor R Gopal was arrested over reports linking Purohit to the professor.
Summary:
The Union Home Ministry has advised the Chandigarh administration to exempt Sikh women, including non-turbaned, from wearing helmets while riding two-wheelers.
Summary:
An advertisement by the Brihanmumbai Municipal Corporation (BMC) inviting tenders for buffalo meat for animals at Byculla zoo was wrongly printed as cow meat in Hindi and Gujarati newspapers.
Summary:
Eugenie's cousin Prince Harry married Meghan Markle in May.
Summary:
The government has raised the basic customs duty on several electronic items and communication devices in a bid to narrow the current account deficit.
Summary:
India's benchmark index Sensex rose 732 points (2.15%) to close at 34,733.58 on Friday, its biggest single-day gain in more than two years.
Summary:
The government said the report's metrics were "simplistic" and didn't capture initiatives taken to improve lives.
Summary:
The Kajol and Riddhi Sen starrer 'Helicopter Eela', which released today, "is a poorly made film and has too many loose ends and silly moments," wrote Bollywood Hungama.
Summary:
Talking about the controversies he was involved in, earlier this year, Kapil Sharma said, "Main 'nalayak' students mein se ek hun toh mein thodha late seekhta hun." "It's a learning experience.
Summary:
Emraan Hashmi's production company 'Emraan Hashmi Films' will be including sexual harassment clause in the company's contracts.
Summary:
Windies all-rounder Roston Chase ended the Day 1 of the second Test against India two runs short of his fourth Test ton as he helped his side post 295/7 at the end of the day's play.
Summary:
Apple has filed a patent that could enable iPhones to detect spam calls automatically.
Summary:
SoftBank-owned American robotics company Boston Dynamics has released a new video that shows its robot perform parkour moves.
Summary:
Google has added support for 13 new languages including Hindi, Bengali, on the camera mode of its Google Translate app.
Summary:
All India Majlis-e-Ittehadul Muslimeen President Asaduddin Owaisi on Thursday claimed BJP chief Amit Shah is "frustrated and lost" and is trying to make India an "RSS Raj".
Summary:
The transaction is expected to be valued at $400-$500 million, according to reports.
Summary:
As many as 32 labourers from Jharkhand who were allegedly held hostage in Saudi Arabia and forced to work for a company without wages have returned to India following the intervention of the Ministry of External Affairs (MEA).
Summary:
Inaugurating the 13th Annual Convention of the Central Information Commission, President Ram Nath Kovind on Friday said, "In a democracy, there is no such thing as too much information.
Summary:
Underlining the losses suffered by Andhra Pradesh due to bifurcation, Chief Minister N Chandrababu Naidu said the state is a victim of the century.
Summary:
Venezuelan President Nicolás Maduro has accused US President Donald Trump's administration of seeking to assassinate him and claimed that it has asked the Colombian government to carry out the killing.
Summary:
Pakistan's President Arif Alvi has removed Justice Shaukat Aziz Siddiqui as a judge of the Islamabad High Court over his remarks against the country's spy agency ISI.
Summary:
Four people have been arrested in Indonesia for allegedly selling babies on Instagram.
Summary:
While meeting US President Donald Trump at the White House on Thursday, rapper Kanye West said, "I love this guy right here" about the US President and walked up to hug him.
Summary:
In addition to the aforementioned, consumers can avail minimum exchange value of â¹500.
Summary:
Filmmaker Sajid Khan on Friday announced that he has decided to step down as the director of 'Housefull 4' following sexual harassment allegations against him.
Summary:
Pilots of the Dubai-bound Air India Express flight carrying 130 passengers were unaware of the plane hitting the wall at the Trichy airport during takeoff on Friday at 1:30 am.
Summary:
"It was largely just a personal expression of my own disdain for Donald Trump," Gable added.
Summary:
Television actress Shilpa Shinde has said there's no rape in the industry and everything is mutual, while adding, "Zabardasti nahi hota".
Summary:
Actor Akshay Kumar, while reacting to the sexual harassment allegations against 'Housefull 4' director Sajid Khan, said in a statement that he won't work with proven offenders.
Summary:
In a sexual harassment case filed by a female journalist against senior employees of a web portal, the Delhi High Court ruled that the parties shouldn't give any media interviews.
Summary:
Summary:
A fan invaded the field and tried to kiss Virat Kohli during the first day of the second India-Windies Test on Friday.
Summary:
Speaking on #MeToo movement against sexual harassment in India, Congress chief Rahul Gandhi on Friday tweeted, "The truth needs to be told loud and clear in order to bring about change." He added that it is about time that everyone learns to treat women with respect.
Summary:
Union minister Maneka Gandhi on Friday said a four-member committee of retired judges will be formed to conduct public hearings of cases of sexual harassment publicised as part of the #MeToo movement.
Summary:
The mice grew into healthy adults and even gave birth to healthy offsprings.
Twelve mice from two fathers were also born but survived just 48 hours.
Summary:
The threat of US sanctions will not stop Russia from pursuing future defence deals with India, Russian Ambassador to India Nikolay Kudashev has said.
Summary:
A 25-year-old man and his female friend allegedly shot and wounded his 23-year-old wife in a moving car on Wednesday evening in Ghaziabad, Uttar Pradesh.
Summary:
The Supreme Court on Friday refused to stay West Bengal government's order to grant a total amount of â¹28 crore to 28,000 Durga puja committees across the state.
Summary:
The Income Tax Department on Friday conducted raids at homes and properties owned by TDP MP CM Ramesh, including his 40,000-square-foot house at Jubilee Hills.
Summary:
Veteran actor Dilip Kumar has been discharged from Lilavati Hospital in Mumbai.
Dilip was admitted to the hospital on October 7 where he was being treated for recurrent pneumonia.
Summary:
The film, which was earlier slated to release on February 22, 2019, is being directed by Prakash Kovelamudi.
Summary:
Firstpost wrote, "Govinda fans can rejoice." The film has been rated 2/5 (Times Now and Firstpost), 2.5/5 (Bollywood Hungama).
Summary:
Deepika Padukone, while talking about her rumoured boyfriend Ranveer Singh, said, "It feels great to find someone who is dependable, who you can trust, who puts you before himself." Deepika added that Ranveer is fun to be with but he's also sensitive, emotional and honest.
Summary:
Selena Gomez is in hospital for mental health treatment after she was hospitalised twice in the last two weeks for low white blood cell count and started to feel "super overwhelmed" about it, as per reports.
Summary:
Indian cricketer Shardul Thakur went off the field with a groin injury after having bowled just 10 deliveries in his debut Test match on Friday.
Summary:
Speaking about his match-saving stand with lower-order batsman Nathan Lyon against Pakistan, Australian captain Tim Paine said that talking about pizza and the UK sitcom 'The Inbetweeners' kept them going towards the last phase of the match.
Summary:
The new service will offer storage plans ranging from 100GB to 30TB across its products including Google Drive and Google Photos.
Summary:
After being slammed for allegedly blaming migrants for crime in Gujarat, Ahmedabad Congress MLA Alpesh Thakor observed a day-long fast on Thursday for "peace".
Summary:
Delhi Chief Minister Arvind Kejriwal on Thursday said AAP will contest all the 13 Lok Sabha seats in Punjab without entering into an alliance.
Summary:
Summary:
Côte d'Or, one of BelgiumâÂÂs finest chocolates, has made its way to the shores of India.
Summary:
Padmini Reddy, wife of senior Telangana Congress leader Damodar Raja Narasimha, quit Congress to join rival BJP on Thursday noon and returned to her party after 9 PM.
"I have understood the feelings of the Congress party workers.
Summary:
During a meet with US President Donald Trump on Thursday, rapper Kanye West unlocked his iPhone in front of live TV cameras by repeatedly pressing 0 after the phone's Face ID recognition apparently failed.
Summary:
The FIR alleged that procurement of blankets and yarn for a scheme under Gogoi's government flouted rules of the Central Vigilance Commission.
Summary:
The US State Department has warned India that it is "not helpful" when it hears about its $5-billion defence deal with Russia to acquire S-400 missile system or about it buying oil from Iran.
Summary:
Shankar had decided to open the institute in 2004 after he exhausted all his attempts to clear the civil services exams, said a teacher at the academy.
Summary:
A Dubai-bound Air India flight hit the boundary wall during take off at the Trichy Airport in Tamil Nadu early Friday morning.
Summary:
The CBI has taken over investigation in two 25-year-old murder cases allegedly involving underworld gangster Chhota Rajan.
Summary:
PM Narendra Modi on Thursday took to Twitter to condole the demise of 86-year-old environmentalist GD Agrawal, who passed away during a 'fast unto death' urging the government to clean river Ganga.
Summary:
Talking about her 'Be Best' initiative on cyberbullying, US First Lady Melania Trump on Thursday said, "I could say I'm the most bullied person in the world".
Summary:
The chain, which reportedly has 75 outlets in Gujarat, has been changing its menu to offer only vegetarian pizzas in certain states during the Navratri season since 2015.
Summary:
"You (Shivinder) are a man of honour, pay his (Daiichi) money and go," the court said.
Summary:
The net worth of Saudi Arabia's richest person, Prince Alwaleed bin Talal Al Saud, has dropped to $15.2 billion, the lowest since Bloomberg began tracking him in 2012.
Summary:
I'm a listener and I think the world should also be a listener.
Summary:
"We have yet not decided what we'll be naming our baby.
Summary:
The hearsay doesn't allow us the power to do something when people within the office are not doing something," added the actor.
Summary:
Konkona Sensharma and Bhumi Pednekar will star in 'Lipstick Under My Burkha' director Alankrita Shrivastava's next film, as per reports.
Summary:
Akbar has been accused of sexual harassment by multiple women.
Summary:
Notably, Kumar broke the Asian and the Games record to claim the gold medal.
Summary:
N Mahesh, the lone BSP minister in Congress-JD(S) run Karnataka government has resigned citing a need to focus on his constituency, Kollegal, and to strengthen his party ahead of 2019 general elections.
Summary:
The startup's Co-founder Ritesh Malik said it has raised $6.5 million including this round of funding.
Summary:
A local court in Jharkhand's Dumka district has awarded the death sentence to a man for abducting, raping and murdering a minor girl.
Summary:
The Delhi Commission for Women on Thursday said it conducted a raid at a hotel in Paharganj area and rescued eight Nepali girls who were allegedly going to be trafficked to Gulf countries.
Summary:
Speaking at the launch of World Economic Forum's Centre for the Fourth Industrial Revolution in Delhi, Prime Minister Narendra Modi said "Industry 4.0" will change the nature of jobs and create new opportunities.
Summary:
She was admitted to a Centre-run hospital after Nadda intervened.
Summary:
Uttar Pradesh Deputy Chief Minister Dinesh Sharma on Thursday handed over an appointment letter for a government job to the wife of the Apple executive who was shot dead by a police constable last month.
Summary:
A UK couple has become the official owner of a Sri Lankan hotel they bought for nearly â¹30 lakh after they got drunk during their honeymoon trip in December 2017.
Summary:
Amid the '#MeToo movement' in India, Chitrangda Singh talked about quitting the film 'Babumoshai Bandookbaaz' in 2016 and said director Kushan Nandy told her, "Apna petticoat uthao aur ragdo aapne aap ko," for a scene with Nawazuddin Siddiqui.
Summary:
Actress Saloni Chopra has alleged when she worked for filmmaker Sajid Khan, he once pulled his pants down, showed his penis and yelled, 'You don't even make me hard!' "He'd tell me I wasn't sexy enough to be an actress," she said.
Summary:
Renuka Shahane, while speaking about rape allegations against her 'Hum Aapke Hain Koun!' co-star Alok Nath, said, "I am so glad I wasn't on any outdoor shoot with him ever." "I have heard...people say...he can't really handle his drinks.
Summary:
An unidentified woman, while accusing filmmaker Subhash Ghai of sexual harassment, alleged he once spiked her drink and then took her to a hotel suite.
"He took off my jeans and he mounted me.
Summary:
A 32-year-old Oxford student from Uganda, Lulu Jemimah, got 'married' to herself in a mock wedding ceremony to get rid of continuous pressure from her parents to settle down.
Summary:
Summary:
All-rounder Yuvraj Singh has said people thought his career was over after he was diagnosed with lung cancer following the 2011 World Cup victory.
"That's the biggest joy in life, when people say it's not possible and you...make it possible," he further said.
Summary:
Real Madrid have sued Portuguese newspaper Correio da Manhã for publishing a story alleging they forced Cristiano Ronaldo to pay off Kathryn Mayorga after an alleged rape in Las Vegas in 2009.
Summary:
Bihar Deputy CM Sushil Modi on Thursday released a nearly 200-page book titled 'Lalu-Leela', which documents alleged illegal dealings by RJD supremo Lalu Prasad Yadav and his family members.
Summary:
The hotel's CCTV footage helped the police to establish Sahni as a suspect.
Summary:
Activist and former IIT professor GD Agrawal, who passed away during his 'fast unto death' for clean Ganga river, was a PhD scholar in Environmental Engineering from California University.
Summary:
Bank of Baroda's Managing Director and CEO PS Jayakumar was given a one-year extension by the government on Thursday.
A Chartered Accountant by qualification, Jayakumar joined Bank of Baroda in October 2015.
Summary:
Responding to sexual harassment allegations against him, actor Piyush Mishra said, "I don't remember the...incident as I was probably a few drinks down." "Nevertheless I'd like to [apologise] for making the lady uncomfortable either with my words or actions," he added.
Summary:
Asrani further said, "Accusations and blames are all filmy things.
Summary:
MSK Prasad, the national cricket team's chief selector, clarified that the selection panel and the Indian cricket team management are on the "same page" with regards to 'communication policy'.
Summary:
Australia captain Tim Paine has said he was very nervous nearing the end of the first Test against Pakistan, which ended in a draw after Australia managed to score 362/8 in the fourth innings.
Australia played 139.5 overs in the fourth innings.
Summary:
Tukhugov was caught punching Conor McGregor from behind during the brawl that broke out after Khabib defeated the Irishman.
Summary:
Google has ended support for its experimental smart reply app 'Reply' that offers contextual responses for other third-party messaging apps including Hangouts, Slack and Facebook Messenger.
Summary:
Former Jammu and Kashmir Chief Minister Mehbooba Mufti on Thursday sharply reacted on the killing of the Hizbul Mujahideen commander Manan Bashir Wani, saying unless a dialogue is started with all the stakeholders including Pakistan, local youth will continue to die.
Summary:
"Padmini Reddy wanting to join [BJP] to work as a Karyakartha is her own decision.
Summary:
The Japanese Hayabusa2 spacecraft's landing on asteroid Ryugu has been delayed until January, due to the asteroid's rugged surface, as per data received by space agency JAXA.
Summary:
The Punjab and Haryana High Court on Thursday said that the 16-year-old student, accused of killing a seven-year-old Gurugram's Ryan International School boy, will not be treated as an adult during trial.
Summary:
The UNICEF and the WHO on Thursday reiterated India's status as a polio-free country after some oral polio vaccine vials were found contaminated with the type-2 polio virus last month.
Summary:
In 2017, the government received 35,595 nominations for the Padma Awards while it received 18,768 nominations in 2016.
Summary:
Earlier this year, the central bank denied a three-year extension to Axis Bank CEO Shikha Sharma.
Summary:
Finance Minister Arun Jaitley on Thursday said the number of direct taxpayers should increase to about 7.6 crore by the end of this fiscal.
Summary:
A woman named Ketki Joshi has alleged that actor Piyush Mishra grabbed her hand and rubbed his hand against hers after getting drunk at a party.
Summary:
Speaking about the #MeToo movement, Amitabh Bachchan said, "No woman should...be subjected to any kind of misbehaviour, or disorderly conduct; especially at her work place." "Such acts should immediately be brought to the notice of concerned authorities," he added.
Summary:
Kangana Ranaut, while speaking about the #MeToo movement, called out Hrithik Roshan and said, "People who keep their wives as trophies and keep young girls as their mistresses should also be punished." "They lure young beautiful girls with the promise of marriage and later try to prove them mad.
Summary:
Wicketkeeper-batsman Rishabh Pant has broken into the Team India ODI squad for the first time after being named in the 14-member team for the first two ODIs against Windies.
Summary:
The friendly between Italy and Ukraine on Wednesday was stopped in the 43rd minute for a minute in memory of the 43 people who died when a bridge collapsed in Italy's Genoa earlier this year.
Summary:
Summary:
A day after tweeting 29-character word 'Floccinaucinihilipilification', Congress leader Shashi Tharoor on Thursday tweeted, "I'm sorry if one of my tweets y'day gave rise to an epidemic of hippopotomonstrosesquipedaliophobia!" The 35-character-long word refers to the fear of long words.
Summary:
Stephen Hawking's scientific paper theorising what happens to information when objects fall into black holes has been posted online.
Summary:
PhD scholar from Aligarh Muslim University and militant outfit Hizbul Mujahideen commander Mannan Bashir Wani was shot dead during an encounter with security forces at Jammu and Kashmir's Kupwara on Thursday.
Summary:
Indian rangers hunting the man-eating tigress named Avni are considering to use a Calvin Klein cologne to lure the animal, an official said Thursday.
Summary:
A 64-year-old man in Tamil Nadu was awarded a double life term by a local court on Wednesday for raping an 11-year-old girl, who contracted a sexually transmitted disease following the incident.
Summary:
The revenue of India's largest IT services company increased by 20.7% to â¹36,854 crore during the quarter.
Summary:
Alibaba's 54-year-old Founder Jack Ma has reclaimed the position of China's richest man with a net worth of $39 billion, according to Hurun China Rich List 2018.
Summary:
Tanzania's only billionaire and named Africa's youngest billionaire by Forbes, 43-year-old Indian-origin Mohammed Dewji was kidnapped by unidentified assailants on Thursday from the outside of a hotel's gym.
Summary:
The deaths come two months after cattle trampled a 64-year-old to death in the same region.
Summary:
Mumbai Indians all-rounder Krunal Pandya took to Twitter on Thursday to wish his brother and Team India all-rounder Hardik Pandya on his 25th birthday.
Summary:
Australia played their longest fourth innings for a draw courtesy Tim Paine's unbeaten 61*(194).
Summary:
Cricketer Jordan Evans, who plays for the Northop Club in the North Wales Cricket League, has been handed a 20-week suspended ban for being part of a physical altercation with St Asaph Club batsman Matt Ryan.
Summary:
The bat comes with a lightweight sticker with a sensor stuck on its shoulder.
Summary:
Indian cricketer Rohit Sharma wished teammate Hardik Pandya on his 25th birthday on Twitter on Thursday.
Summary:
The incident reportedly took place when Kumar was speaking at a conference of the youth wing of Janata Dal (United).
Summary:
Researchers using CSIRO radio telescope in Western Australia have nearly doubled the known number of fast radio bursts (FRBs) in one year.
Summary:
Delhi's Patiala Court has ordered attachment of fugitive liquor baron Vijay Mallya's properties in Bengaluru in a case relating to Foreign Exchange Regulation Act violations.
Summary:
The Shiv Sena and other Hindu outfits on Wednesday allegedly shut around 400 meat and chicken shops in Gurugram citing Navratri celebrations.
Summary:
A 19-year-old girl was arrested in Punjab's Ludhiana for allegedly killing her four-year-old brother, whose body was found in a sack a few days ago.
Summary:
He earlier said that trade friction between the countries could last for two decades.
Summary:
Swedish furniture retailer IKEA plans to invest nearly â¹1,000 crore in its Bengaluru store, the company's third store in India after Hyderabad and Mumbai.
Summary:
This would make it easy for the blind and visually-impaired to quickly identify and use Savlon antiseptic, whenever need be.
Summary:
Environmentalist GD Agrawal, who was on 'fast unto death' since June 22 to urge the government to clean river Ganga, passed away aged 86 due to heart attack at AIIMS Rishikesh on Thursday.
Summary:
An American passenger was removed from a Frontier Airlines flight as she had brought a pet squirrel on board.
Summary:
A bride fell on the ground during her wedding ceremony after her groom smashed their wedding cake on her face in New York.
Summary:
Director Subhash Kapoor, who has a molestation case pending against him, said he respects Aamir Khan's decision to exit 'Mogul', the Gulshan Kumar biopic.
Summary:
Singer Sona Mohapatra has alleged Anu Malik once called her 'maal' in front of her husband Ram Sampathâ after she went to the washroom during a lunch in 2006.
Summary:
Ex-Australia opener Matthew Hayden, who fractured his spine in a surfing accident recently, revealed he's consulting the same doctor he visited after breaking his lower back while sweeping a cricket ball 22 years ago.
Summary:
Questioning the timing of Defence Minister Nirmala Sitharaman's visit to France, Congress President Rahul Gandhi said her trip is part of a "huge cover-up" on Rafale deal by the government.
Summary:
Attacking the NDA-led Central government over Rafale deal, Congress President Rahul Gandhi on Thursday said, "Remember one thing.
Summary:
Around 3 lakh people were evacuated in Odisha ahead of the cyclone.
Summary:
US President Donald Trump has said his administration will 'take care' of India's plans to import oil from Iran after the November 4 deadline.
Summary:
Amid domestic opposition to the practice, Malaysia's cabinet has agreed to abolish the death penalty, a senior minister said on Thursday.
Summary:
Indian equity benchmark Sensex wiped out its 2018 gains after it fell 760 points on Thursday to close at 34,001 following sell-offs across global markets.
Summary:
The directors will be taken to the properties where the documents of Amrapali group's 46 companies will be catalogued.
Summary:
Actress Priyanka Chopra has shared pictures with Kim Kardashian, actress-singer Zoë Kravitz, rapper Mary J Blige and actress Rachel Brosnahan, which she captioned, "A 'dazzling' night with these lovely ladies." The pictures were from a Tiffany & Co jewellery collection launch in New York.
Summary:
Several photos surfaced online that showed world number one tennis player Rafael Nadal helping out with the cleaning up process by clearing the mud and water following the flash floods in his native island of Majorca in Spain.
Summary:
Tennis' grass-court Grand Slam, Wimbledon is ready to fine tennis players for disrespecting ball-kids after Spanish tennis player, Fernando Verdasco faced criticism for berating a ball-kid for not bringing his towel quickly enough.
Summary:
Two Russian international footballers, Alexander Kokorin and Pavel Mamaev, have been detained by the police and are under investigation as they have been accused of carrying out violent attacks in central Moscow.
Summary:
Technology giant Apple acquired Danish machine learning startup Spektral for around $30 million last year in December.
Summary:
Apple has signed a $600 million deal with European chipmaker Dialog Semiconductor to license its power management technology and acquire certain assets.
Summary:
Bengaluru-based logistics startup LetsTransport has raised $12 million in a Series B funding round led by Chinese conglomerate Fosun International's venture capital arm Fosun RZ Capital.
Summary:
Senior executives from Google, Uber and Amazon also participated in the round, the startup said.
Summary:
The Railways has suspended the signal inspector and electrical signal maintainer following the derailment of several coaches of New Farakka Express, an official said.
We have suspended the two...to ensure no evidence is tampered with," the official added.
Summary:
Shiv Sena and other outfits claimed to have forcibly closed 400 meat and chicken shops in Gurugram on the first day of Navratri.
Summary:
Summary:
A Surat court on Wednesday declared fugitive diamantaire and PNB scam accused Nirav Modi an absconder in a case filed by the Directorate of Revenue Intelligence (DRI).
Summary:
Two space station-bound astronauts made an emergency landing on Earth minutes after launch as the rocket carrying their Soyuz spacecraft malfunctioned.
Summary:
Self-styled godman Rampal, who heads the Satlok Ashram in Haryana, was found guilty of murder in two cases on Thursday.
Summary:
Bezos' net worth dropped to $145.2 billion, lowest since July.
Summary:
Summary:
Singer Chinmayi tweeted a note by a woman who accused Sri Lankan cricketer Lasith Malinga of sexually harassing her in a Mumbai hotel.
Summary:
Flipkart Co-founder and former CEO Sachin Bansal is expected to invest up to $100 million towards ride-hailing startup Ola cabs in one of the largest personal investments in the Indian e-commerce space, as per reports.
Summary:
A 15-year-old girl's 23-year-old uncle and her minor cousin were arrested on Wednesday for allegedly molesting her near Haryana's Badshahpur village after she narrated her ordeal in her exam's answer sheet.
Summary:
The Enforcement Directorate has attached six properties worth â¹54 crore of Congress leader P Chidambaram's son Karti in India, UK and Spain in connection with the INX Media money laundering case.
Summary:
The Supreme Court on Thursday said that sealing of illegal and unauthorised construction in Delhi should be done without giving any advance notice.
Summary:
AAP leader Naveen Das' body was recovered from a car after he was kidnapped for money and later burnt alive allegedly by his boyfriend, police said.
Summary:
Meanwhile, Turkey said Khashoggi was likely killed by a Saudi security team.
Summary:
One of the winners of this year's Nobel Peace Prize, Iraqi human rights activist Nadia Murad, has pledged to donate her entire $500,000 award to victims of sex crimes.
Summary:
After Pakistan PM Imran Khan decided to approach the International Monetary Fund (IMF) for a bailout package, his party deleted a 2015 tweet which referred to the then PM Nawaz Sharif as "beggar" over IMF assistance.
Summary:
Hurricane Michael, the fiercest storm to hit Florida in 80 years and the third-most powerful ever to strike the US mainland, made landfall on Wednesday afternoon with winds reaching 249 kmph.
Summary:
US and Mexican authorities have discovered a tunnel likely designed for drug smuggling under the California-Mexico border.
Summary:
Three Amrapali directors said that documents related to the group's 46 firms were stored there.
Summary:
Reacting to the brawl between Russia's Khabib Nurmagomedov and his UFC opponent Conor McGregor's team, Russian President Vladimir Putin said "there could be hell to pay" if one is provoked like how Khabib was.
Summary:
Indian captain Virat Kohli, on being asked about India's 18-year-old batsman Prithvi Shaw, said, "He is a very keen learner, a sharp guy...
Summary:
Indian cricketer Hardik Pandya, who turned 25 years old on Thursday, took to Twitter to introduce the newest member of his family, his dog 'Bentley Pandya'.
Welcome to the family Bentley Pandya.
Summary:
Musk agreed to step down as Chairman after a $20-million settlement with the US Securities and Exchange Commission which sued him over "misleading" tweets about taking Tesla private.
Summary:
Forty-three-year-old sub-inspector Vijay Kumar allegedly committed suicide by shooting himself with his service pistol in Ghaziabad, the police said.
Summary:
India lost $79.5 billion to climate-related disasters in the last two decades, according to a UN report.
Summary:
Gujarat State Human Rights Commission issued notices on Wednesday to Chief Secretary JN Singh and DGP Shivanand Jha, seeking reports on the attacks on Hindi-speaking migrant workers.
Summary:
A 19-year-old engineering student stabbed his parents and teenage sister to death while they were sleeping at their home near Vasant Kunj, Delhi, said the police.
Summary:
The Mumbai BJP unit has sacked Mani Balan over allegations of misbehaviour and use of abusive language against a female BJP leader.
Summary:
Praising outgoing US envoy to the UN Nikki Haley, President Donald Trump has said she will "make a lot of money" in her new job.
Summary:
With 12 months EMI and bank offer, Zenfone 5Z is available at â¹1,857 per month.
Summary:
Stock market investors lost as much as â¹4 trillion (lakh crore) as Sensex plunged 1,037 points to 33,723.53 when trading opened on Thursday.
The stock market crash was accompanied with Rupee reaching a fresh low of 74.45 against the US dollar.
Summary:
An FIR has been filed against Nana Patekar, choreographer Ganesh Acharya, director Rakesh Sarang and producer Abdul Samee Siddiqui, based on Tanushree Dutta's charges against them relating to an incident from 2008 on 'Horn 'Ok' Pleassss' sets.
Summary:
The raids at Bahl's residence and Quint's office in Noida are being carried out for evidence on alleged tax evasion.
Summary:
The mother of the Bihar native accused of raping a 14-month-old baby in Gujarat said, "Hang him (accused) if he's found guilty...but don't harass and drive out the Biharis because of my son's sin." "My son is a minor and mentally unsound," accused's father said.
Summary:
The East Coast Railway zone stopped movement of all trains on the Chennai-Howrah section from Wednesday afternoon till further orders.
The storm is expected to move towards West Bengal by afternoon.
Summary:
Aamir Khan and his wife filmmaker Kiran Rao announced that they have stepped away from a film after knowing someone they were about to work with has been accused of sexual misconduct.
Summary:
She alleged, "He pulled me closer and asked me to give him a kiss when he was signing my cheque...
Summary:
Cristiano Ronaldo's lawyer Peter Christiansen claimed the documents which apparently show his client acknowledging he had sex with Kathryn Mayorga without her consent had been fabricated by hackers.
Summary:
US President Donald Trump on Wednesday said that India will "soon find out" about his decision on sanctions over a $5 billion deal which India signed with Russia to purchase the S-400 air defence system.
Summary:
Maharashtra Minister Deepak Kesarkar allegedly ridiculed a gangrape victim when approached for help and yelled at her saying, "What's your worth, don't talk much." The woman filed a complaint against Kesarkar following the incident.
Summary:
Denying a report by French journal 'Mediapart' which claimed that partnership with Reliance was "mandatory" for Rafale deal, Dassault Aviation has clarified that it "freely chose" the Anil Ambani-led company as offset partner.
Summary:
US President Donald Trump has said South Korea will not lift sanctions on North Korea without US approval.
Summary:
Over 8,000 Afghan civilians were killed or wounded in the first nine months of 2018, almost half of them targeted by suicide bomb attacks and other improvised devices that may amount to war crimes, the UN has said.
Summary:
Amid a security crackdown on the minority community, authorities in China's Xinjiang have admitted they are using "reeducation camps" for Uighur Muslims "affected by extremism".
Summary:
Bhaskaran is currently Vice President of Corporate Services at Tata Steel.
Summary:
The government has slashed excise duty on jet fuel from 14% to 11%, a move aimed at giving relief to airlines.
Summary:
Japanese carmaker Honda is planning to invest â¹9,200 crore to set up its third factory in India to produce hybrid and electric vehicles.
Summary:
Actress Amyra Dastur, while opening up about facing sexual harassment, revealed that an actor once squeezed himself against her during the shooting of a song.
Summary:
Saurabh had also won gold medals at Asian Games and Junior ISSF World Championship this year.
Summary:
Summary:
A woman named Sarita Devi was hacked to death by her two brothers-in-law in a Bihar village following the advice of a tantrik, the police said on Wednesday.
Summary:
All the ten fingers of a tribal man were chopped off in West Bengal's Birbhum district after he was branded a "witch" by a kangaroo court, the police said on Wednesday.
Summary:
Prime Minister Narendra Modi on Wednesday condoled the loss of lives in the New Farakka Express train derailment in Uttar Pradesh.
Summary:
The police arrested the men and their employer on Tuesday.
Summary:
World's largest oil exporter Saudi Arabia will reportedly supply Indian oil buyers with an additional 4 million barrels of crude oil in November.
Summary:
FORCE news magazine Executive Editor Ghazala Wahab revealed several incidents accusing Union Minister and former Editor of The Asian Age MJ Akbar of sexually harassing her.
Summary:
Actor Prateik Babbar has been booked under the Motor Vehicles Act for dangerous driving in Goa. His vehicle reportedly knocked down a motor-cyle driver after entering a one-way street.
Summary:
Para-athlete Deepa Malik took to Twitter to share a video of athletes dancing to Shah Rukh Khan's song at Asian Para Games in Indonesia.
Summary:
Kashyap, who has been accused of shielding director Vikas Bahl in an alleged sexual harassment case, said he will come back only after clearing his name.
Summary:
Singer Sona Mohapatra criticised a media house for using the term 'flirting' while describing her alleged sexual harassment by Kailash Kher.
Summary:
"I realised after talking to Kaneez that it was a violation of her space," wrote Aditi.
Summary:
Stand-up comedian Kaneez Surka has accused fellow comedian Aditi Mittal of sexually harassing her and alleged that Aditi forcefully kissed her and put her tongue in her mouth in the presence of audience during a comedy show.
Summary:
It has nothing to do with me." Anu further said he hasn't even met Sona.
Summary:
The New Zealand Cricket Players Association has added a series of guidelines on sexual consent in their handbook for cricketers for the first time.
Summary:
Nepal chased down the target in just 11 balls without losing a wicket as opener Binod Bhandari hit 24*(8).
Summary:
The head of a North Delhi Municipal Corporation school was suspended after a probe found the allegation that the school was segregating Hindu and Muslim students into different sections to be true.
Summary:
Nishant Agarwal, the DRDO employee who was arrested for leaking details about nuclear-capable BrahMos missile to an ISI handler from Pakistan, was lured with a job offer of $30,000 per month in Canada, according to reports.
Summary:
According to a document accessed by French journal 'Mediapart', Dassault Aviation entered into an agreement with Anil Ambani's Reliance Defence as it was presented as a trade-off to obtain the contract of Rafale sales.
Summary:
Private sector lender Bandhan Bank's September quarter profit surged 47.3% to â¹488 crore, helped by a higher net interest income.
Summary:
Arundhati Bhattacharya, the former Chairperson of India's largest lender SBI, has joined homegrown private equity firm ChrysCapital as an adviser.
Summary:
Indian shuttler PV Sindhu, who won a silver medal at the Rio Olympics, has come out in support of women speaking about harassment.
On being asked about facing any harassment herself, Sindhu said, "As far as I am concerned, it's been...
Summary:
The English Football Association has been accused of sexism after posting a picture of the national women's team, before their game with Australia along with the caption "scrub up well, don't they?" "Seriously?
Summary:
German tennis player Alexander Zverev shocked a ball-kid sitting nearby while celebrating a winner shot during his second-round match at the Shanghai Masters in China.
Summary:
Australian cricketers Shaun Marsh and Mitchell Marsh were dismissed for ducks by fast bowler Mohammad Abbas in the fourth innings of the first Test match against Pakistan on Wednesday.
Summary:
In the history of Formula One racing, over 900 drivers have competed since the championship began in 1950, with only two of them being female drivers.
Summary:
With Assembly elections ahead, he said that it's an opportunity for the BJP to serve people.
Summary:
BJP's election manager for Bengal and former Trinamool lawmaker, Mukul Roy, accused the Trinamool Congress of "illegally tapping" his phones on Wednesday.
Summary:
Mumbai-based online marketplace for used cars Truebil has raised nearly $1 million (â¹7.4 crore) funding from venture capital firm Kalaari Capital, according to reports.
Summary:
Summary:
The Indian Railways will offer 'vrat ka khana' (food during fasting) as a part of its e-catering menu at select stations during the Navratri festival from October 10 to 18, the IRCTC said.
Summary:
"Payment of PLB (productivity linked bonus) to eligible railway employees is made each year before the Dussehra/Puja holidays," Union Law Minister Ravi Shankar Prasad said.
Summary:
A government-aided college in Uttar Pradesh has been closed indefinitely after it allegedly banned students from singing the national song 'Vande Mataram' and chanting 'Bharat Mata Ki Jai'.
Summary:
The government has appointed senior advocate Tushar Mehta as the Solicitor General of India till June 2020.
Summary:
The Bombay High Court on Wednesday cancelled the molestation case filed by Kings XI Punjab owner Preity Zinta against businessman Ness Wadia.
Summary:
'Stree' actress Flora Saini, who accused producer Gaurang Doshi of physically abusing her while they were dating, has claimed Aishwarya Rai Bachchan refused to work with Gaurang after Flora spoke against him in 2007.
Summary:
The Congress has said that Union Minister and former Editor MJ Akbar must either offer a "satisfactory explanation" on the allegations of sexual harassment against him or resign immediately.
Summary:
Author Chetan Bhagat, who apologised on Saturday after screenshots of his "flirtatious" chat were leaked, has said he has never and will never harass anyone.
Summary:
Terribly Tiny Tales Co-founder Chintan Ruparel has stepped down from his position as Chief Content Officer and wonâÂÂt be associated in any way with TTT indefinitely amid sexual harassment allegations.
A woman alleged Ruparel sexually harassed her while they were in a relationship and violently bit her.
Summary:
Indonesian judo player Miftahul Jannah was banned from competing in the women's 52 kg visual impairment category at the Asian Para Games after she refused to remove her hijab.
Summary:
The bug was discovered by researchers at the Google Project Zero.
Summary:
From January 1 2019, Indian tourists travelling to Bhutan via road will need either a voter ID or a valid passport to enter the country, while the accompanying children can also travel with a birth certificate.
Summary:
Gadkari clarified his statement was regarding tolls in Maharashtra, which CM Devendra Fadnavis had waived.
Summary:
While four of the siblings were born to one mother, the one aged three years was their stepbrother.
Summary:
A woman was booked in Uttar Pradesh's Greater Noida on Tuesday for allegedly holding a 13-year-old boy captive and burning his genitals with hot tongs for resisting sex.
Summary:
Congress MP Shashi Tharoor on Wednesday announced his latest book 'The Paradoxical Prime Minister' on Twitter, describing it as more than just a 400-page exercise in "floccinaucinihilipilification" on Prime Minister Narendra Modi.
Summary:
Doctors in Pune successfully replaced 60% of a four-year-old girl's damaged skull with a customised three-dimensional individualised polyethylene bone.
Summary:
The cyclone is expected to hit Andhra Pradesh and Odisha on Thursday.
Summary:
China's largest oil and gas producer PetroChina is planning to open its first Indian office in Mumbai, according to reports.
Summary:
Nicolas De-Meyer, a former personal assistant to Goldman Sachs CEO David Solomon, killed himself by jumping from the 33rd floor of a New York hotel around 2:30 pm on Tuesday.
Summary:
Actor Shahid Kapoor has said he himself couldn't sit through his 2006 film 'Chup Chup Ke'.
Summary:
Reacting to sexual harassment allegations against Union Minister and former Editor MJ Akbar, Women and Child Development Minister Maneka Gandhi said, "There must be an investigation.
Summary:
Swiss tennis player Roger Federer has called on other tennis players to respect ball-boys and ball-girls after Spanish tennis player Fernando Verdasco's rant over a sweaty towel.
Summary:
Reacting to Virat Kohli's alleged plea to allow wives on entire overseas tour, Gautam Gambhir said, "It depends on individuals and players to decide if they want wives for the entire tour or no." "If they are performing well, then nothing should stop them," Gambhir added.
Summary:
Ford has obtained patent for a technology that would use a touchscreen device to steer an autonomous vehicle once permission is granted.
Summary:
Microsoft is also trying to recover data for users affected by the bug.
Summary:
Responding to a user who called him out for replying to a 47 month-old tweet, Elon Musk on Wednesday tweeted, "Punctuality is not my strong suit." Musk was responding to a user who had tweeted about the radio in Tesla cars in 2014.
Summary:
Talking about recent controversies surrounding rival and SpaceX CEO Elon Musk, Virgin founder Richard Branson said, "He shouldn't be getting very little sleep." He further said that Musk needs to learn the "art of delegation" and "find time for himself".
Summary:
At least five people were killed and nine others were seriously injured on Tuesday in a road accident in Maharashtra's Nagpur, said police.
Summary:
LGBT activists said the court has set a "dangerous precedent" by ruling in favour of the bakery.
Summary:
Former PepsiCo CEO Indra Nooyi has said that for the last 40 years, she has done "nothing but wake up at 4 am" and work 18-20 hours a day.
Summary:
A woman has accused actor-filmmaker Rajat Kapoor of sexual harassment and revealed she used to call him "sir" but he called her "little b*tch" and asked her to call him "master".
Summary:
Actor Imran Khan, while recalling an incident from his earlier days in Bollywood, revealed a director once made girls do a photoshoot in bikinis while auditioning for the female lead.
Imran further called it "wrong usage of power".
Summary:
Taapsee Pannu, speaking about being compared with Kangana Ranaut, said, "I have a relatively easier life than her.
Summary:
Accusing actor Rajat Kapoor of sexual harassment, a woman shared an incident when she was a 20-year-old and how he had tried to kiss her eight times after stopping his car in a dark area.
Summary:
Author Chetan Bhagat, who on Saturday apologised after screenshots of his "flirtatious" chat were leaked, has now claimed the woman was a "porn" writer wanting to co-write.
Summary:
Encouraged by the #MeToo movement, ex-shuttler Jwala Gutta revealed that a "badminton chief" mentally harassed her by throwing her out of the team despite her being a national champion.
Summary:
But if I want someone to bat for my life...I would send Tendulkar, he was a class act," Warne added.
Summary:
Over 20 people have been injured in the accident.
Summary:
The Supreme Court on Wednesday ruled that no policeman should enter Jagannath temple in Odisha's Puri with weapons and shoes.
Summary:
Cyclone Titli has intensified into "very severe" and is expected to hit Odisha-Andhra Pradesh coast by 5:30 am on Thursday, the India Meteorological Department said.
Summary:
Tencent has lost over $220 billion in market value since January 23, when its shares closed at an all-time high.
Summary:
Russia's 18-year-old Sergei Chernyshev and Japan's 17-year-old Ramu Kawai won the first-ever breakdancing gold medals in the male and female categories respectively at the Youth Olympics in Buenos Aires, Argentina on Tuesday.
Summary:
Australian cricketer Ben Cutting's girlfriend Erin Holland credited Afghanistan cricketer Rashid Khan for keeping tabs on Cutting, who is participating in the Afghanistan Premier League 2018.
Summary:
The Tour de France trophy won by Welsh cyclist Geraint Thomas this summer has been stolen from a cycling show in Birmingham.
Summary:
A senior Google designer, Dave Hogue, criticised the Republicans on Twitter over the appointment of Brett Kavanaugh to the Supreme Court, saying, "F*** you all to hell".
Summary:
Goa Chief Minister Manohar Parrikar will meet his government's alliance partners on October 12 at the AIIMS in Delhi where he is undergoing pancreatic illness treatment, an official said.
Summary:
The system was trained to vet applicants by observing patterns in resumes submitted to the company over a 10-year period, most of which came from men.
Summary:
Summary:
While Elon Musk owns nearly 20% of Tesla, UK-based Baillie Gifford owns 7.7% stake in the startup, as per Bloomberg.
Summary:
Online beauty and personal care product retailer Nykaa reportedly is in talks with Japan's SoftBank Group to raise about $150-200 million.
Summary:
It is expected to invest between $15 billion and $20 billion in WeWork.
Summary:
Talking about the hole discovered on the International Space Station (ISS), NASA Administrator Jim Bridenstine has said the investigation must be allowed to go forward "without rumour" and "without conspiracy".
Summary:
In addition to the â¹2 lakh compensation announced by UP CM Yogi Adityanath, Railways Minister Piyush Goyal announced â¹5 lakh ex-gratia for the kin of those who were killed when several coaches of Delhi-bound New Farakka Express derailed near Raebareli.
Summary:
BJP-ruled states are dangerous." She added, "Of course, there was provocation behind the act...All the people are scared.
Summary:
Pope Francis on Wednesday compared having an abortion to hiring a "contract killer".
Summary:
Lieutenant General Asim Munir has been appointed as the new chief of Pakistan's Inter-Services Intelligence.
Summary:
A female crew member from 1999 film 'Hum Saath-Saath Hain' has alleged that on handing actor Alok Nath a change of clothes while shooting for a night scene, he started stripping in front of her.
Summary:
Summary:
Union Minister and former editor MJ Akbar has been accused of sexual harassment by The Asian Age Resident Editor Suparna Sharma.
Suparna claimed this happened when she was part of his team for the newspaper's launch in 1990s.
Summary:
With the announcement of Van Heusen's new 'Move Labs' collection, customers will no longer have to compromise on functionality for fashion as it innovates to take on fashion's biggest conundrum by making formals less restrictive.
Summary:
The Supreme Court on Wednesday asked the government to inform it about the decision-making process of the deal to purchase 36 Rafale fighter jets from France.
Summary:
Former PepsiCo CEO Indra Nooyi has said she would cause a third World War if she enters politics as she is "too outspoken".
When asked if she would like to join US President Donald Trump's cabinet, Nooyi said, "Me and politics don't mix at all.
Summary:
Filmmaker Vikas Bahl has sent two separate notices to Anurag Kashyap and Vikramaditya Motwane, accusing them of defaming him, after they publicly called him out for allegedly molesting a girl.
Summary:
Prajapati took a plot measuring about 25 square feet on lease on September 20 and found the diamond within a few weeks.
Summary:
As the Income Tax Department conducted raids on Delhi Transport Minister Kailash Gahlot, CM Arvind Kejriwal tweeted, "Nirav Modi, Mallya se dosti aur hum par raid?" Kejriwal said nothing had come out of raids that had targeted him and two colleagues.
Summary:
An Uttar Pradesh ATS officer has said that arrested DRDO employee Nishant Aggarwal, despite being engaged in "highly sensitive work", was "casual" on the internet and made himself an "easy target".
Summary:
Bhilai Steel Plant CEO M Ravi was removed on Wednesday, a day after the gas pipeline blast took 11 lives.
However, two more employees, who suffered 80% burns, succumbed to their injuries later.
Summary:
The raids are reportedly a part of a tax evasion probe against two construction firms linked to the minister and others.
Summary:
A Bangladesh court has sentenced 19 people to death over a 2004 grenade attack on current PM Sheikh Hasina.
Summary:
US President Donald Trump has said he is certain that his daughter Ivanka would be "dynamite" as the US envoy to the UN.
However, Trump said he would be accused of "nepotism" if he selected her to replace Indian-American Nikki Haley.
Summary:
UK PM Theresa May has appointed the country's first minister for suicide prevention, handing over the new role to mental health minister Jackie Doyle-Price.
Summary:
Speaking about the alleged communication gap between the Indian cricketers and the selectors, CoA chief Vinod Rai said, "I think they are not children that I need to get into this." "I feel that there is a need for good communication between the players and the team management.
Summary:
Referring to a video showing Thakor allegedly blaming migrants for crime in Gujarat, Chavda said, "He is being blamed to target the Congress.
Summary:
Food delivery platforms including Zomato, Swiggy, and UberEats have delisted over 5,000 restaurants because they did not receive approval from the Food Safety and Standards Authority of India (FSSAI).
Summary:
Airbnb's Chinese rival Xiaozhu.com on Wednesday said it has raised nearly $300 million in a funding round led by Yunfeng Capital, a venture capital firm co-founded by Jack Ma. Xiaozhu also said it will launch a smart service and security system for its platform backed by technology from Alibaba.
Summary:
Mumbai's double-decker buses will be phased out by October 2023 as a result of shrinking space on city roads and high operating costs, a Brihanmumbai Electric Supply and Transport official has said.
Summary:
A three-year-old girl was allegedly raped by a karate teacher at her school in Bihar's Patna on Tuesday evening, said the police.
Summary:
The police said their teenage son, who suffered a cut wound in his finger, was being treated as one of the suspects.
Summary:
A 22-year-old man in Delhi confessed to murdering his wife after being detained for questioning over suspicion of his involvement in the kidnapping of two girls, said a police officer.
Summary:
A policeman allegedly shot dead his girlfriend before killing himself with his service revolver on Wednesday in Tamil Nadu's Viluppuram district.
Summary:
Denmark is planning to label food products with stickers that would rate their impact on the environment and climate.
Summary:
Taiwan President Tsai Ing-wen has called on China to play a positive role on the world stage rather than being a "source of conflict".
Summary:
At least five passengers have died and several injured after six coaches of Delhi-bound New Farakka Express derailed 50 metres from Harchandpur railway station near Raebareli on Wednesday morning, as per news agency ANI.
Summary:
Earlier, in her Facebook post in which she talked about the alleged incident, Vinta wrote that Alok's wife was her best friend.
Summary:
Hayden's record was broken again by Lara, who smashed Tests' only 400 in April 2004.
Summary:
Actor Alok Nath's lawyer Ashok Saraogi on Tuesday said that the 62-year-old actor is in a state of tremendous shock and has been advised bed rest by the doctors.
Summary:
"This is to dispel all notions and wrong speculations of my hair turning grey/white overnight," tweeted Rishi.
Summary:
Singer Nitin Bali, known for his versions of 'Neele Neele Ambar' and 'Ek Ajnabee Haseena Se', passed away on Tuesday aged 47 after suffering injuries in a car accident.
Summary:
Summary:
Summary:
Responding to a former air hostess' claims that she was sexually harassed by Abhijeet Bhattacharya in 1998, the singer said, "I wasn't born at that time.
Summary:
BJP MP Udit Raj on Tuesday said that #MeToo movement is necessary but is the beginning of a "wrong practice." "Habitually women take â¹2-4 lakhs, level allegations on men and then pick another man," he added.
Summary:
Former Indian air hostess Yamini Khanna has alleged that former World Cup-winning Sri Lankan captain Arjuna Ranatunga had sexually harassed her at a hotel in Mumbai.
Summary:
Pictures of Team India captain Virat Kohli standing on a platform during a promotional event to apparently look taller than six-foot-tall female tennis player Karman Kaur Thandi have gone viral.
"Virat needs support to match Karman Kaur's height," another wrote.
Summary:
Google's Pixel 3 phone with a 5.5-inch display will have a starting price of â¹71,000 in India for the 64GB variant, going up to â¹80,000 for the 128GB variant.
Summary:
Supporting National Register of Citizens to identify illegal migrants in India, BJP President Amit Shah said, "These migrants took away the jobs of our youths." "When the NRC identified 40 lakh illegal migrants in Assam, Rahul baba...raised a hue and cry and opposed it," he added.
Summary:
The Indian passport has secured the 81st rank with visa-free or visa-on-arrival access to 60 destinations.
Summary:
After announcing that current US Ambassador to the UN Nikki Haley would step down at the end of the year, President Donald Trump said he would consider former White House advisor Dina Powell for the post.
Summary:
UBS Group is seeking to foreclose on a $26.6-million (nearly â¹200 crore) mortgage loan on Vijay Mallya's London house overlooking the city's Regent's Park.
Summary:
IT major Cognizant Technology Solutions laid off around 200 of its senior employees at the director level or above, reportedly with a 3-4 month severance payout.
Summary:
The Madras High Court on Tuesday ordered Tamil actor Silambarasan to provide security for â¹50 lakh which he received from a production house by October 31 or his properties would be attached.
Summary:
Researchers have developed a model that uses a mix of social media and transport data to predict whether a retail business in a city will fail within six months.
Summary:
General Motors will be at 20% of that goal by the end of the year, the automaker said.
Summary:
Summary:
Local BJP leader Ramashankar Pandey, along with three security guards, has been arrested for allegedly planning a jailbreak to free Maoists from Chaibasa Division Jail, Jharkhand.
Summary:
A Class 10 student allegedly shot himself in the head inside the toilet of a school in Bengal's East Burdwan district on Tuesday.
Summary:
Railways has decided to withdraw its decision to identify transgender passengers as transmale 'T (M)' and transfemale 'T (F)' in the reservation forms.
Summary:
Summary:
Microsoft Co-founder Bill Gates on Tuesday said the leadership of the PM Narendra Modi-led government played an important role in improving sanitation across India.
Summary:
Sixteen-year-old shooter Manu Bhaker has become the first-ever Indian woman to win gold at Youth Olympics.
Summary:
Haley joined Trump administration in January 2017 and has been outspoken about human rights and racism.
Summary:
'Tara' actor Deven Bhojani, while speaking about rape-accused Alok Nath, said, "I've heard...he's a nice person during the day but after evening, when he drinks, he gets crazy." "He abuses...and does all sorts of things that a normal Alok ji would never even think of," he added.
Summary:
'Sacred Games' writer Varun Grover has denied allegations of sexual misconduct leveled against him by an unnamed woman, who stated the incident occurred when Varun was a student at BHU.
Summary:
Former air hostess Yamini Khanna, while accusing singer Abhijeet Bhattacharya of sexually harassing her at a hotel in 1998, claimed he called her 'bitch', almost kissed her and nibbled on her ear.
Summary:
'Sairat' director Nagraj Manjule's ex-wife Sunita Manjule, while revealing details about their marriage, claimed Nagraj made her go for 2-3 abortions.
Summary:
A woman has accused investor Mahesh Murthy of sexually harassing her in 2015 and said he "grabbed and kissed" her.
On his way out, he kissed me and I was left there completely shocked," she said.
Summary:
Malaysia bowled five maidens, with Myanmar's number eight batsman top-scoring with 3*(12).
Summary:
Responding to reports of Uttar Pradesh and Bihar migrants leaving Gujarat, Congress MLA Alpesh Thakor on Tuesday said, "The truth is that people from Bihar have already applied for leave for Chhath Puja.
Summary:
A local court on Tuesday refused to send Tamil weekly Nakkheeran's editor-in-chief RR Gopal into police custody after he was arrested over a write-up on the Nirmala Devi Case.
Summary:
The India Meteorological Department has issued a red alert in Odisha and Andhra Pradesh for cyclone 'Titli' and subsequent floods, which are expected to hit the states on October 11.
Summary:
During a seminar, Home Minister Rajnath Singh recalled the 2009 incident of 'underwear bomber', who attempted to explode an Amsterdam-Detroit flight.
Summary:
Facebook-owned messaging service WhatsApp has built a system that stores payments-related data locally in India to comply with RBI regulations.
Summary:
Former SBI Chairperson Arundhati Bhattacharya may join Piramal Enterprises' financial services business, according to reports.
Summary:
The luxury apartment has two wine cellars and two balconies with a park view.
Summary:
Delhi Commission for Women chief Swati Maliwal said actor Alok Nath's "casual" attitude in responding to sexual assault allegations against him "shows the mentality of such men who believe they would be let off easily".
Summary:
Rashid also hit a Ravi Bopara-over for 28 runs.
Summary:
Speaking about the Indian cricket team's current Test batting line-up, former Test captain Rahul Dravid said that the line-up is a work in progress.
It is not a one-time thing or a two-year thing," Dravid said about India's batting.
Summary:
Griezmann hit the target that led to a box releasing blue coloured balloons, which was an indicator for a boy.
Summary:
Indian spinner Harbhajan Singh tweeted a photo with his "favourite" Kajol after meeting her.
Singh, who addressed Kajol as her 'Dilwale Dulhaniya Le Jayenge' character 'Simran', wished the actor luck ahead of the release of her new movie.
Summary:
The mascot was seen riding a scooter jet boat at the beach.
Summary:
Recently appointed Head of Instagram, Adam Mosseri, in a blog post said, "There is no place for bullying on Instagram." Instagram on Tuesday launched new tools that use machine learning to detect bullying in photos and their captions.
Summary:
China's messaging service WeChat rival Bullet Messenger has been removed from the iOS App Store due to a copyright complaint.
Summary:
BSP supremo Mayawati on Tuesday said the BSP will not beg for seats in any alliance, rather will "continue to fight polls on its own".
Summary:
Talking about the joint US-Russian space projects in a video, NASA administrator Jim Bridenstineâ on Monday showed an image of the 'historic' spaceship called Apollo-Soyuz, made of Lego.
Summary:
The Shiv Sena on Tuesday said if the Ram temple is not built in Ayodhya, the BJP would be termed a "liar".
Summary:
Consumer Affairs Minister Ram Vilas Paswan has urged Fast-Moving Consumer Goods (FMCG) companies to label their products in regional languages.
Summary:
The PM Narendra Modi government has decided National Security Advisor Ajit Doval will replace Cabinet Secretary as the head of the Strategic Policy Group (SPG).
Summary:
Malayalam actor-politician Mukesh has been accused of sexual harassment by casting director Tess Joseph.
Summary:
Producer Vinta Nanda, who accused actor Alok Nath of raping her almost 20 years ago, said, "Now I'm feeling fearless, he is feeling scared." "He didn't deny it even in 2003, 2004 and 2005 when I had written about it," she added.
Summary:
Actress Sonali Bendre, who has been undergoing treatment for cancer in New York, has written on social media, "There have been days when I've been so exhausted and in so much pain that even lifting a finger hurt[s]." She added, "The bad days have been many...
Summary:
Batsman Yashasvi Jaiswal, who was named Man of the Tournament in the recently concluded Under-19 Asia Cup, used to sell pani puri for a living.
Summary:
Pakistan's 33-year-old off-spinner Bilal Asif, who is playing his first-ever Test match, dismissed two Australian debutants for ducks in one over in the first Pakistan-Australia Test on Tuesday.
Summary:
Summary:
Summary:
Reportedly, the authorities initially thought the flight halted due to a technical snag but were shocked after learning about the vehicle.
Summary:
Days after Congress President Rahul Gandhi called for 'Made in Bhopal' tag for smartphones during a rally in Madhya Pradesh, he said there should be 'Made in Dholpur' tag for phones during a Rajasthan rally.
Summary:
The Delhi High Court has dismissed a plea filed by a lawyer challenging the anticipatory bail granted to Congress MP Shashi Tharoor in connection with the death of his wife Sunanda Pushkar.
Summary:
At least 36 girls dropped out of a Saharsa school in Bihar due to the alleged harassment and eve-teasing they face on their way to school.
It was very depressing for me," one of the victims said.
Summary:
It estimated that the country's GDP will shrink 18% in 2018, due to plummeting oil production, and political and social instability.
Summary:
The local currency marked its sixth straight session of decline amid concerns over rising crude oil prices, widening current account deficit and foreign fund outflows.
Summary:
The Supreme Court has sent three directors of Amrapali Group to police custody as they did not submit accounts-related documents of all 46 group companies to forensic auditors.
The three directors will not be released until the documents are provided, it added.
Summary:
Former BCCI chief selector Syed Kirmani said that the MSK Prasad-led selection committee is not experienced enough to challenge the decisions of Ravi Shastri and Virat Kohli.
Summary:
India shuttlers Saina Nehwal, PV Sindhu, and Kidambi Srikanth all got sold for â¹80 lakh at the Premier Badminton League 2018 auction.
Summary:
Indian cricketer Yuvraj Singh posed for a photo with Zaheer Khan after landing in the Maldives to join the latter's birthday celebrations.
Summary:
World champion chess player Magnus Carlsen took nearly five minutes to beat English Premier League side Liverpool's 20-year-old footballer Trent Alexander-Arnold in chess.
Summary:
While criticising Apple's new 'bagel' emoji which was rolled out with iOS 12.1, a user tweeted, "ThatâÂÂs not a bagel.
Summary:
France has asked Google to remove photos of prisons from the internet including one from which a criminal escaped by helicopter this year.
Summary:
Reacting to Google's announcement that it was shutting down Google+, a user tweeted, "Google+ was still around?" Another user tweeted, "Goodbye #GooglePlus - goodbye my 0 friends, 0 family members and 0 people I know.
I'll be missing you." A user also tweeted, "Google+ is shutting down!
Summary:
Former Karnataka Chief Minister M Veerappa Moily on Tuesday said that the Samajwadi Party and the BSP would be part of the opposition's grand alliance against the BJP-led NDA in the 2019 Lok Sabha polls.
Summary:
Summary:
Late actor Paul Newman's 1979 Datsun 280ZX race car has gone up for auction.
Summary:
A progressively drying climate along with unpredictable weather may have caused the evolution of anatomically modern humans, according to a study.
Summary:
KFC India has refuted claims of a Mumbai-based customer who allegedly found maggots in chicken he bought from a KFC outlet on October 1.
Summary:
Speaking about #MeToo movement against sexual harassment, BJP MP Udit Raj on Tuesday said, "Habitually women take â¹2-4 lakh, level allegations on men and then pick another man." Raj said, "I accept it is in man's nature.
Summary:
'Tara' actress Navneet Nishan has claimed she was harassed for four years by Alok Nath, who has also been accused of sexual harassment by 'Tara' producer Vinta Nanda.
Summary:
The 2014 spoof video was on Arvind Kejriwal and featured Alok in a special appearance.
Summary:
The person revealed that the singer was asked to spend the night with Vairamuthu and a producer at a hotel in Chennai when she went to meet them after a recommendation.
Summary:
External Affairs Minister Sushma Swaraj on Tuesday dodged questions by journalists regarding sexual harassment allegations levelled by multiple women against MJ Akbar, Minister of State (MoS) for External Affairs.
Summary:
The Prime Minister's Office has sought a report from the Health Ministry after 22 people tested positive for Zika virus in Rajasthan.
Summary:
Goa MLA Glenn Ticlo's 27-year-old son Cail Glenn Souza Ticlo was arrested and later released on bail after his speeding BMW car mowed down two sisters on a highway in Karnataka.
Summary:
Delhi Police on Sunday arrested a man for allegedly hiring contract killers, who murdered his businessman father in May. Gaurav Khera admitted he lost money in gambling, following which his father slapped him and refused to give him money.
Summary:
The Supreme Court has declined a request for an urgent hearing on petitions challenging its recent verdict which allowed entry of women aged 10-50 years in Kerala's Sabarimala Temple.
Summary:
After India signed an over $5-billion deal to buy Russia's S-400 aerial-defence system, China has announced it will sell 48 high-end military drones to its "all-weather ally" Pakistan.
Summary:
The disaster agency's announcement prompted concerns that the ability of NGOs to deliver aid will be hampered.
Summary:
Earlier, the agency said that rescue workers will stop searching for the bodies of victims on Thursday.
Summary:
Paul Michael Romer, who jointly won the 2018 Nobel Memorial Prize in Economics said in 2017 that India's Aadhaar biometric database was the "most sophisticated" that he'd ever seen.
Summary:
Showing support for Vinta Nanda who accused Alok Nath of raping her, Mini Mathur tweeted, "#Sanskari my chappal." "To think someone as avant-garde and ballsy as Vinta went through this torture and couldn't speak up for 19 years...This makes me so sad and angry," she further wrote.
Summary:
Mrunal Thakur, showing support to women who are speaking up, tweeted, "I really hope that strict actions are taken against the culprit." "There's no way a person should get out of such a horrible offence without any punishment...I'm glad that the conversation has begun," she further tweeted.
Summary:
The players have 14 days from October 8 to respond to the charges.
Summary:
The 12 young footballers, who were rescued from a flooded cave in Thailand in July, were honoured at the opening ceremony of 2018 Youth Olympics in Buenos Aires, Argentina.
Summary:
Facebook has sought more time from the Indian government to determine the extent to which its security breach affected Indian users.
Summary:
Summary:
"Twitter can get you into trouble...And that can be said of Elon Musk, too," Maezawa added.
Summary:
Following this, parents and locals protested outside the school on Tuesday and tried to enter the school's premises.
Summary:
Piyush Kumar, the son of a local BJP leader, was stabbed to death by unknown assailants on Monday in Bihar's Saran district.
Summary:
Palwal Congress MLA Karan Singh Dalal has served a legal notice to Haryana Assembly Speaker Kanwar Pal after the former was suspended from the Assembly session for one year for allegedly using unparliamentary expressions.
Summary:
Meanwhile, the police said they had counselled the couple in the past to end their disputes.
Summary:
Philippine President Rodrigo Duterte on Tuesday said he does not have cancer, following a biopsy last week at a private hospital that proved negative for the disease.
Summary:
Lobby group AIOVA, which represents over 3,500 online sellers, filed a petition with the Competition Commission of India alleging that Amazon favours merchants it partly owns, such as Cloudtail and Appario.
Summary:
Jaguar earlier warned that a bad Brexit could cost the company over $1.6 billion a year.
Summary:
Responding to 'Tara' producer Vinta Nanda's allegations that he raped her almost 20 years ago, actor Alok Nath said, "It (rape) must have happened, but someone else would have done it." He added, "It was me who made her what she is.
Summary:
Actress Flora Saini, who recently featured in 'Stree', has accused producer Gaurang Doshi of physical abuse while sharing pictures on Facebook.
Summary:
The Indian rupee on Tuesday plunged 21 paise to hit a fresh lifetime low of 74.27 against the US dollar in the afternoon trade.
Summary:
Rishi went to New York for medical treatment while Sonali, who has been diagnosed with cancer, has also been undergoing treatment in the city.
Summary:
Following rape allegations against actor Alok Nath by producer Vinta Nanda, The Cine & TV Artists' Association (CINTAA) has decided to send him a show cause notice.
Summary:
Ex-South Africa cricketer Jonty Rhodes compared ex-Australia opener Matthew Hayden's forehead injury he suffered in a surfing accident with Tamil Nadu coast's map.
Reacting to Hayden's picture on Instagram, Rhodes wrote, "Hayden is that a map of...Tamil Nadu coast u are wearing on your forehead?
Summary:
More than 25,000 constables have been promoted to the post of head constable in the biggest mass promotion in Uttar Pradesh Police.
Summary:
Nakkheeran Gopal, the editor of Tamil weekly 'Nakkheeran', has been arrested by the police over his article on the Nirmala Devi case.
Summary:
An NGO's PIL said Air India charges nearly â¹300/kg to airlift bodies of Indian migrant workers who die in Gulf countries.
Summary:
The CISF has asked its personnel to shift to a "sufficient smile" approach from a "broad smile" system, which would help focus more on security at airports.
Summary:
She was lying on the road for 20 minutes before someone helped her, Pune police said.
Summary:
Meanwhile, police have arrested the truck driver, while the school bus driver is said to be critical.
Summary:
At least 9 workers have died and 12 others were injured in a gas pipeline blast at the Bhilai Steel Plant in Chhattisgarh's Durg district on Tuesday, as per ANI.
Summary:
Talking about the attacks in Gujarat on migrants mostly from Uttar Pradesh and Bihar, CM Yogi Adityanath said, "Gujarat is a peace-loving state and a model of development." "The Gujarat CM told me...there has been no incident in the past three days," he added.
Summary:
North Korean leader Kim Jong-un has invited Pope Francis to visit the country, South Korea's presidential Blue House said on Tuesday.
Summary:
Summary:
Parineeti Chopra has said that Nick Jonas' family is perfect for her cousin Priyanka Chopra, adding, "She is a big star and she needed someone who understands her and appreciates her for who she is.
Summary:
Five-time Ballon d'Or winner, Cristiano Ronaldo, who is fighting rape allegations, has been included in the 30-man list for the Ballon d'Or 2018 award.
Summary:
India has a total of 23 medals with five gold medals and six silver medals so far.
Summary:
Online video game Fortnite's parent company Epic Games has acquired Kamu, a Helsinki-based company which offers anti-cheating and security services.
Summary:
As part of the deal, Grab will adopt Microsoft Azure as its preferred cloud platform for ride-hailing and wallet services as well as collaborate on big data and artificial intelligence (AI) projects.
Summary:
Last month, the Gurugram-based startup had announced its venture into the UK, starting operations with four properties in London.
Summary:
Tata Motors-owned luxury carmaker Jaguar Land Rover has said it will close its plant in UK's Solihull for two weeks starting October 22 because of falling sales in China.
Summary:
A 26-year-old auto-rickshaw driver was stabbed to death by four minors on Sunday night near Delhi's Connaught Place because of a dispute over the fare, said the police.
Summary:
Aizawl Traffic Superintendent of Police Ramthlengliana fined his sister for violating traffic rules by parking her vehicle on the road at night-time.
Summary:
Customers who pre-book the smartphone will receive the OnePlus Type-C Bullets headphones worth â¹1,490, along with â¹500 worth of Amazon Pay balance in their accounts.
Summary:
'Tara' actress Navneet Nishan had planned to sue co-star Alok Nath for â¹1 crore in 1994 for allegedly calling her a drug user.
Summary:
Facebook has launched its first hardware product in the form of a countertop video chat screen called Portal that automatically zooms in and out to always keep users in the frame.
Summary:
The Ministry of Home Affairs has ordered a probe after helium-filled balloons exploded during Congress chief Rahul Gandhi's roadshow in Madhya Pradesh's Jabalpur.
Summary:
A 26-year-old man who watched Netflix for seven hours daily has been admitted to Bengaluru's National Institute of Mental Health and Neurosciences in what is being reported as the first case of Netflix addiction in the country.
Summary:
The Delhi High Court on Monday remarked that having no male nurses in the Indian Army is gender discrimination, "only other way round".
Summary:
China was the world's fastest growing major economy in 2017, when India clocked a 6.7% growth rate.
Summary:
Pathankot attack mastermind and Jaish-e-Mohammed chief Masood Azhar has been confined to bed with a life-threatening condition, a report quoting Indian intelligence officials stated.
Summary:
UP ATS chief Asim Arun has said "very sensitive information" was found on the laptop of DRDO employee Nishant Agarwal, who was arrested for leaking details about nuclear-capable BrahMos missile.
Summary:
Esha Bahal, a student at Noida's Amity University, on Monday became UK's High Commissioner to India for a day after she won a video presentation contest held to celebrate International Day of the Girl Child.
Summary:
The family of a Delhi-based journalist Deepanshu Dubey has filed an FIR against a government hospital for negligence after they sent him to buy his own medicines even as he complained of severe chest pain.
Summary:
Around 47 migrant workers from Bihar are reportedly being held hostage in a factory in Gujarat's Ahmedabad for the past few days.
Summary:
In April, Pakistan successfully test-fired an enhanced version of the indigenously-built Babur cruise missile.
Summary:
The country is likely to request the IMF for providing it $6 to $7 billion.
Summary:
The blade is said to have gone between the two halves of his brain.
Summary:
US President Donald Trump on Monday said that he was apologising on behalf of the whole country to Supreme Court Judge Brett Kavanaugh who has been accused of sexual misconduct by three women.
Summary:
Kartik Aaryan and Disha Patani will star opposite each other in Imtiaz Ali's next film, as per reports.
Denying the rumours, Imtiaz had said that he never announced any film with Shahid.
Summary:
Taapsee Pannu has said she is happy that #MeToo movement has "finally" started in India and is gaining momentum, adding, "Better late than never." "People used to keep asking me for so many years that why it has not happened in India.
Summary:
Showing support for Tanushree Dutta who accused Nana Patekar of sexual harassment, Farhan Akhtar tweeted that Tanushree's courage should be admired and her intention shouldn't be questioned.
Summary:
The poster shows Sushant, Shraddha, Varun and other stars in their older and younger versions.
Summary:
Hrithik Roshan, who's starring in Vikas' upcoming directorial 'Super 30', has refused to work with him.
Summary:
Congress chief Rahul Gandhi on Monday tweeted that migrant labourers in Gujarat are being attacked due to closing down of factories and unemployement in the state.
Several thousands of migrants reportedly left Gujarat over alleged violence.
Summary:
Two Vyapam scam whistleblowers, namely Dr Anand Rai and Ashish Chaturvedi, will reportedly be contesting the upcoming Madhya Pradesh assembly elections under the banner of Jai Adivasi Yuva Shakti.
Summary:
Expressing concern over 'Kiss of Love' protests on university campuses, Vice President M Venkaiah Naidu on Monday said, "If you want to do kissing, go and do it in your rooms, why in public?
Summary:
A college student in Assam was seriously injured when a youth, reportedly from the same college, poured acid over her on Monday.
Summary:
Summary:
The man also admitted to raping some of his women victims and selling some of their body parts.
Summary:
The producer of 1990's show 'Tara', Vinta Nanda in a Facebook post accused the show's lead actor and "most Sanskaari person in film and television industry" of raping her almost 20 years ago.
Summary:
Weightlifter Jeremy Lalrinnunga has become India's first-ever gold medallist in the history of Youth Olympics.
Summary:
OnePlus 6T will be launched on October 30 in India at an event in New Delhi, tickets for which will be available on October 17 priced at â¹999.
Summary:
Hotstar has cancelled production of 'On Air with AIB Season 3' amid sexual misconduct allegations against AIB Co-founder Gursimran Khamba and comedian Utsav Chakrobarty, who featured in AIB videos.
Summary:
Summary:
Bollywood actress Zareen Khan has denied rumours that she is dating Pakistan cricket team opener Fakhar Zaman.
Summary:
Pacer Khaleel Ahmed, who made his India debut in the recently concluded Asia Cup 2018, has revealed MS Dhoni asked stand-in captain Rohit Sharma to let him hold the trophy on the dais.
Summary:
A top division football match between Torpedo Kutaisi and Dila Gori in Georgia was halted for around three minutes after a dog invaded the pitch.
Summary:
The lawyer representing Kathryn Mayorga, the American woman who claimed Juventus forward Cristiano Ronaldo raped her in 2009, said another woman has accused the footballer of rape.
Summary:
Google said it "discovered and immediately patched" the bug in March 2018 but found "no evidence" that any data was actually misused.
Summary:
Karnataka BJP President B S Yeddyurappa has denied reports that PM Narendra Modi will contest the 2019 Lok Sabha election from the state, saying it's "far from the truth".
Summary:
The urban local body elections are being held in the state for the first time in 13 years.
Summary:
Airports across the country owe â¹970 crore to the Central Industrial Security Force (CISF) for providing them security, Director General of CISF Rajesh Ranjan has said.
Summary:
Belarus President Alexander Lukashenko has said that every citizen, except children, will be given a gun in case the country is attacked by an enemy.
Summary:
Cleaners at the UK Parliament have complained after finding vomit and used condoms in the offices used by MPs and their staff.
Summary:
Bulgarian journalist Viktoria Marinova who had been reporting on alleged corruption involving European Union (EU) funds was raped and murdered in the Bulgarian city of Ruse.
Summary:
A customer named Isabella has claimed to find maggots wriggling inside the ketchup dispenser at a McDonald's outlet in the UK and shared a video of the same.
Summary:
Summary:
Ratna Pathak Shah, while talking about her 2010 film 'Golmaal 3', said the way the makers executed the film was "so obvious, crude and uninteresting" that she felt very bad.
Summary:
Reacting to Harbhajan Singh's tweet questioning whether Windies are even fit to qualify for Ranji quarter-finals from the plate group, ex-Windies pacer Tino Best tweeted, "Hey bro didn't see these cocky tweets vs England...but anyhow the young men will learn." Best was referring to India's 1-4 Test series defeat against England.
Summary:
A UK high court has blocked a lawsuit for up to $3.9 billion against Google claiming it collected data from over four million iPhone users.
Summary:
Hubble, which had only been operating with three of its six gyroscopes, is now down to two.
Summary:
Over 40 cases of swine flu have been reported in Bengaluru between September 29 and October 5, the District Surveillance Officer (Bengaluru Urban) said.
Summary:
As many as 22 cases of a localised outbreak of Zika virus have been reported in Rajasthan, Union Health Minister JP Nadda said on Monday.
Summary:
Bihar's former Chief Minister Lalu Prasad Yadav's daughter Misa Bharti on Sunday admitted that there is some discord between her two brothers, Tej Pratap and Tejashwi Yadav.
Summary:
US State Secretary Mike Pompeo has called on Saudi Arabia to support "a thorough investigation" of Saudi journalist Jamal Khashoggi's disappearance and to be transparent about the results of that investigation.
Summary:
Responding to criticism for wearing a colonial-era pith helmet during her Kenya visit, US First Lady Melania Trump said that people should focus on what she does and not what she wears.
Summary:
After Kangana Ranaut accused 'Queen' director Vikas Bahl of sexual harassment, her co-star Nayani Dixit has come forward accusing Bahl of asking her to share his room with him.
Summary:
Marking its fifth straight session of decline, the Indian rupee slumped 30 paise to close at a fresh lifetime low of 74.06 against the US dollar on Monday.
Summary:
Aerospace company Boeing has appointed its India President Pratyush Kumar to lead the F-15 fighter aircraft programme in the US.
Summary:
After surviving a car accident, Indian-origin YouTube star Lilly Singh, popularly known as 'Superwoman', tweeted, "Happy to be alive." "Always wear your seatbelt...It was the only thing that stopped me from banging against the windshield," she said.
Summary:
After two female journalists accused Kailash Kher of sexually harassing them, the singer said he's neither aware nor remembers the incidents.
Summary:
Addressing sexual harassment allegations against him by Tanushree Dutta, Nana Patekar on Monday said, "My lawyer advised me not to speak on the matter...Otherwise, I would have no issues talking to the press." "What was the truth 10 years ago remains the same today," he added.
Summary:
Akshay Kumar has filed an FIR after an edited video of him went viral, where the answers were morphed to make it look like he is commenting on Tanushree Dutta's sexual harassment allegations against Nana Patekar.
Summary:
The BCCI has shared a video of Chinaman bowler Kuldeep Yadav commentating in Hindi on his first Test five-wicket haul he took against Windies in the Rajkot Test.
Summary:
Cricketing legend Don Bradman's ex-Australia teammate, Neil Harvey, said it's entirely his fault Bradman didn't average 100 in Tests.
Summary:
French forward Kylian Mbappé, 2018 FIFA World Cup's best young player, scored four goals in 13 minutes for PSG against Lyon in Ligue 1.
Summary:
The firm has accused the companies of using "ambush marketing techniques" after Shaw's debut Test hundred.
Summary:
The 39-year-old, who also took a wicket in the match and captained his side, smashed eight sixes and 10 fours during his knock.
Summary:
A user shared a video of Sachin Tendulkar's six against Akhtar and wrote, "How can you forget this gem from Sachin.
Summary:
Avdalyan ran up to take the penalty and performed a backward somersault just after striking the ball from the spot.
Summary:
Summary:
"We continued to face frequent questions in this regard from understandably pensive team members," Bahl added.
Summary:
The bus driver who was suspended for letting a langur take control of the steering wheel in Karnataka has said that he is "suffering for a mistake that (he) did not commit".
Summary:
The Supreme Court on Monday expressed its concerns over 34 schoolgirls being beaten up in Bihar and said, "How could you treat children like this?" The schoolgirls in Bihar's Supaul district were beaten up by goons for resisting sexual advances.
Summary:
Iraqi activist Nadia Murad, who jointly won Nobel Peace Prize for work against sexual violence in warfare, wrote in her autobiography, "I want to be the last girl in the world with a story like mine." Murad revealed ISIS militants touched women anywhere they wanted as if they were animals.
Summary:
The Central Board of Direct Taxes (CBDT) on Monday extended the deadline for businesses to file their audit reports and Income Tax Returns for 2017-18 for the second time to October 31.
Summary:
Japanese air-conditioning manufacturer Daikin Industries has developed an artificial intelligence (AI) system that shoots cold air when it detects employees are sleepy.
Summary:
Also, Falcon's first stage touched down nearly eight minutes after launch.
Summary:
As a result, the Watch has been unable to map user data hour-by-hour, causing it to crash and reboot.
Summary:
Summary:
India is expecting a waiver from the US sanctions on Iran after it significantly cut its oil imports from the country, officials said.
Summary:
A Finance Manager of Hindustan Aeronautics Limited (HAL) on Sunday absconded after being grilled for misappropriation of funds.
Summary:
Police have arrested a 40-year-old watchman on Monday for allegedly killing a woman after she refused to establish physical relations with him and his friend in Delhi.
Summary:
The fake message also tells the receivers that the message should be forwarded to the people in their friend list.
Summary:
"People who are jealous of development in Gujarat are spreading such rumours", Adityanath further said.
Summary:
Summary:
Comedian Kapil Sharma will marry his girlfriend Ginni Chatrath in December, according to reports.
Summary:
Reacting to sexual harassment allegations against his upcoming film 'Super 30' director Vikas Bahl, Hrithik Roshan tweeted, "It's impossible for me to work with any person...guilty of such grave misconduct." "All proven offenders must be punished and all exploited people must be empowered," he added.
Summary:
Kangana Ranaut has said that Sonam Kapoor is not known to be a great actress nor has the reputation of being a good speaker.
Summary:
A woman journalist accused comedian Jeeveshu Ahluwalia of behaving inappropriately during an interview and discussing what he likes to do while making out.
Summary:
Actress Sonam Kapoor, while clarifying about her comments on Kangana Ranaut at an event, wrote on Instagram, "Irresponsible media have misquoted me or taken my quote out of context and made other women react." Sonam added, "Women need to stand together!
Summary:
Russian mixed martial artist Khabib Nurmagomedov jumped out of the cage and attacked opponent Conor McGregor's camp after defeating the latter in UFC lightweight title match.
Summary:
Snapdeal Co-founder Kunal Bahl in a LinkedIn post on Monday wrote, "Going from a few months of money left in the bank in August 2017 to now being in control of our destiny...has been exhausting yet exhilarating experience." "Morale in the company is at all time high," he added.
Summary:
To contain warming at 1.5ðC, greenhouse gas emissions need to decline by 45% by 2030 from 2010 levels.
Summary:
He added that defecating in public caused diseases but urinating in the open, if done in a secluded area, was not an issue.
Summary:
Prashant Jha has stepped down as Bureau Chief and National Political editor of Hindustan Times following allegations of sexual misconduct by an ex-employee of the daily.
Summary:
Ex-TV producer Suhaib Ilyasi, who was acquitted in his wife's 18-year-old murder case last week, said his life was hell for the past 18 years.
Summary:
An RTI filed by The Indian Express has revealed that â¹3.16 crore was spent on renovating Samajwadi Party supremo Mulayam Singh Yadav's house between 2012-2015 when his son Akhilesh was Uttar Pradesh CM.
Summary:
Wishing Gauri Khan on her 48th birthday on Monday, Farah Khan shared her picture with Gauri and wrote, "Dearest Gauri, you are a diamond!
Summary:
Terry played 78 matches for England and represented Chelsea 717 times in 19 seasons, winning 15 major trophies.
Summary:
Amid reports of talks between AIADMK and BJP for an alliance, Tamil Nadu CM EK Palaniswami on Monday said they will make a decision after the dates for the 2019 Lok Sabha elections are announced.
Summary:
Taking a dig at Congress President Rahul Gandhi's Mansarovar Yatra BJP MP Sakshi Maharaj on Sunday said that darshan is not justified after having "non-veg foods".
He further said that Rahul should have become pure before the yatra.
Summary:
Electric car startup Faraday Future has been accused by China's Evergrande Health of trying to scrap a $2-billion stake sale deal made with previous backer Season Smart.
Summary:
Summary:
Police have arrested 16 Naxals, including two women, from Chhattisgarh's Sukma ahead of the assembly elections in the state.
Summary:
A 75-year-old woman was stabbed to death allegedly by her niece in Khopat area of Thane, Maharashtra after she refused to make breakfast for her.
Summary:
Addressing an event of north Indians, he said the community has always expressed gratitude towards Maharashtra.
Summary:
The 12-day course got underway in the presence of Director General of Police OP Singh, an official said.
Summary:
Pakistan PM Imran Khan has said bringing back looted wealth stashed abroad by corrupt politicians is the only way to stabilise the economy without taking foreign loans.
Summary:
A German court last week temporarily blocked a company from razing part of the Hambach Forest to build a coal mine.
Summary:
Earlier, AIB admitted that Tanmay received specific, detailed allegations about Utsav and had confronted him.
Summary:
American economists William D Nordhaus and Paul M Romer were awarded the 50th Sveriges Riksbank Prize in Economic Sciences in Memory of Alfred Nobel on Monday for innovation, climate and economic growth.
Summary:
An actress, who chose to stay anonymous, accused 'Queen' director Vikas Bahl of sexually harassing her and alleged, "He got really drunk (or pretended to be)...he forcibly tried to kiss me on the lips." She further claimed, "His ex-wife knew about his shenanigans...He's basically ruined her life.
Summary:
Olympic bronze medallist Saina Nehwal has confirmed she'll tie the knot with fellow shuttler Parupalli Kashyap on December 16 as it is the "only date free in her schedule to get married".
Summary:
Former Australian opening batsman Matthew Hayden fractured a bone in his neck and suffered facial injuries while surfing with his son.
Summary:
Reacting to reports of attacks against migrants in Gujarat, Bihar CM Nitish Kumar has said criminals should be punished but there should be no bias against others.
Summary:
The petitioners in the earlier case weren't Ayyappa devotees, and hence, there was no 'cause of action', they added.
Summary:
A 42-year-old Indian tourist died and two others were seriously injured in a shootout between two rival gangs in Thailand on Sunday.
Summary:
The Delhi High Court on Monday allowed the CBI to file a closure report in the JNU student Najeeb Ahmed missing case.
Summary:
India could be hit by a 2015-like heatwave, which killed 2,500 people, if global warming increases by 2ðC over pre-industrial levels, according to a UN Intergovernmental Panel on Climate Change report.
Summary:
The exercise is aimed at improving understanding and imbibing the best practices of each other, the Navy said.
Summary:
He was employed at a BrahMos production centre near Nagpur since last four years.
Summary:
Union Minister for Women and Child Development Maneka Gandhi on Monday said she is happy that the #MeToo movement against sexual harassment has started in India.
Summary:
Three of the sisters were accompanied by their husbands, who also died in the accident.
Summary:
IKEA will invest nearly â¹3,000 crore in the next three years to open three warehouses in Mumbai, Bengaluru and Delhi.
Summary:
Sharing her pictures with husband Shah Rukh Khan and youngest son AbRam on her 48th birthday on Monday, Gauri Khan wrote, "With half of my better halves on my birthday...the other halves in school!" Gauri and Shah Rukh's eldest son Aryan Khan and their daughter Suhana Khan are studying abroad.
Summary:
A pro-Kannada outfit called Karnataka Rakshana Vedike, while raising slogans and putting a garland of slippers around Sunny Leone's effigy, has said that Sunny should not be acting in the film 'Veeramahadevi' "at all costs".
Summary:
Neena will play a mother of two grown-up sons who accidentally gets pregnant in upcoming film 'Badhaai Ho'.
Summary:
Summary:
Veteran actor Dilip Kumar has been admitted to the hospital and is being treated for recurrent pneumonia.
Summary:
Meanwhile, Manchester City's city rivals Manchester United scored three second-half goals in 20 minutes to register a 3-2 comeback victory over Newcastle United on Saturday.
Summary:
The competition law review panel will be chaired by corporate affairs secretary, Injeti Srinivas.
Summary:
Summary:
Bengaluru-based online logistics startup Blackbuck has raised â¹202 crore in a funding round led by new investor Sequoia Capital India along with existing investors Accel Partners and Sands Capital Ventures.
Summary:
Bengaluru-based food delivery startup FreshMenu is reportedly in early talks with private equity funds to raise nearly $75 million as part of its Series C fundraise.
Summary:
Colonel James Schnelle was relieved of his duties "due to a loss of trust and confidence", a corps spokesperson said.
Summary:
North Korea has conducted all of its six nuclear tests at the site.
Summary:
The only posthumous Nobel Peace Prize was given in 1961 to the youngest United Nations Secretary-General, Dag Hammarskjöld.
Summary:
The motto of the Indian Air Force (IAF), 'Nabha Sparsham Deeptham (Touch the Sky with Glory)', has been taken from the eleventh chapter of the Bhagavad Gita.
Summary:
Actor Rajat Kapoor has been accused of sexual harassment by at least two women, including a journalist.
Summary:
Talking about recent sexual harassment allegations against various Bollywood celebrities, Pooja Bhatt said, "Every man can't be a sexual predator and every woman is not necessarily a victim, sometimes she's also a perpetrator." "To paint every man with the same brush is unfair," she added.
Summary:
Filmmaker Vikramaditya Motwane said his Phantom Films' partner Vikas Bahl's a "sexual offender", who "preyed on a young woman, abused her trust and ruined her life".
Summary:
Reacting to Kangana Ranaut's harassment allegations against 'Queen' director Vikas Bahl, Sonam Kapoor said, "Kangana is obviously Kangana Ranaut.
Summary:
English physicist Peter Higgs in a 1964 paper independently predicted the Higgs boson, a subatomic particle which gives matter its mass.
Higgs' paper was initially rejected citing "it did not warrant rapid publication".
Summary:
Finance Minister Arun Jaitley will spend â¹5 crore from his annual Members of Parliament Local Area Development Scheme fund on development in Rae Bareli, the Lok Sabha constituency of UPA Chairperson Sonia Gandhi.
Summary:
The voting for the first phase of the municipal elections in J&K, which are being held after 13 years, began on Monday amid threats from terrorists.
Summary:
A group of 550 students, aged 12-17 years from Lucknow's GD Goenka Public School, on Saturday successfully isolated DNA from bananas to create a new Guinness World Record for 'maximum number of people conducting a DNA isolation experiment'.
Summary:
M Shanmugapriya, the woman who helped in an operation against sandalwood smuggler Veerappan 14 years ago, has said she is still waiting for the rewards that were promised to her.
Summary:
Lieutenant Commander Vartika Joshi, who was part of the Indian Navy's first all-women crew to sail around the globe on INSV Tarini, on Sunday said she found Indian territorial waters most polluted during the 254-day sailing expedition.
Summary:
The incident took place on Saturday as the BJP MLA was being welcomed by his supporters in his constituency, Ratabari.
He escaped unhurt from the incident.
Summary:
The police arrested 342 people in connection with attacks on migrants mostly from Bihar and Uttar Pradesh in Gujarat over the alleged rape of a 14-month-old girl.
Summary:
Khan said that "whistleblowers will get 20% of the ill-gotten money and assets recovered from corrupt people".
Summary:
Interpol said on Sunday that Meng Hongwei, whom China says is being investigated over suspected violations of the law, had resigned as president of the international police organisation.
Summary:
Adding that "sometimes he listens and sometimes he doesn't", Melania said, "I have my own voice and opinions."
Summary:
China's Ministry of Public Security on Monday said that former Interpol chief Meng Hongwei, who was reported missing after travelling to China on September 25, is under investigation for suspected bribery.
Summary:
A referendum to establish a constitutional ban on same sex marriage in Romania has failed to draw enough voters to validate the result.
Summary:
A Canadian man named Paul Alfonso has alleged that PNB scam accused jeweller Nirav Modi sold him two diamond rings worth $200,000 (â¹1.48 crore), which turned out to be fake.
Summary:
Kapil Sharma, while commenting on the sexual harassment allegations made by Tanushree Dutta against Nana Patekar, said, "I'm not aware about the details of this case.
Summary:
James Bond producer Barbara Broccoli said there will never be a female 007, adding, "Bond's a male character.
Summary:
While referring to #MeToo movement, Dia Mirza wrote on social media that she will make sure her production house Born Free Entertainment encourages women to speak up.
Summary:
Actors Ranbir Kapoor and Deepika Padukone will reportedly star together in 'Sonu Ke Titu Ki Sweety' director Luv Ranjan's next film which also stars Ajay Devgn.
Summary:
Director Amit Sharma, whose upcoming film 'Badhaai Ho' stars Neena Gupta and Gajraj Rao playing an elderly couple expecting a baby, has said that he had first approached Tabu and Irrfan Khan for the roles.
Summary:
In 1968, Sweden's central bank, marking its 300th anniversary, made a donation to the Nobel Foundation to establish the Prize in Economic Sciences in Memory of Alfred Nobel.
Summary:
Haryana's former Chief Minister and Indian National Lok Dal (INLD) leader Om Prakash Chautala on Sunday resolved to make BSP supremo Mayawati India's next Prime Minister.
Summary:
As many as 20 people were killed when a limousine and another vehicle crashed in an upstate New York area, New York State Police said on Sunday.
Summary:
A man listed his girlfriend for sale on eBay as a prank and admitted it backfired when the listing received bids of up to ã70,200 (around â¹68 lakh).
Summary:
Filmmaker Hansal Mehta has deleted his Twitter account after facing backlash over his tweets against 'Queen' director Vikas Bahl, who has been accused of sexual harassment.
Goodbye," Hansal posted before deleting his account.
Summary:
Filmmaker Anurag Kashyap said he was an idiot to not understand what he was signing on the Phantom Films contract, which had no necessary clause of misconduct and protected sexual harassment accused partner Vikas Bahl.
Summary:
Actress Tanushree Dutta's lawyer N Satpute claimed Mumbai Police made a fool of the actress by registering a case only against the incident of attack on her vehicle and didn't mention anyone's name.
Summary:
Talking about crimes against women, actress Tanushree Dutta said, "Today's eve-teaser is tomorrow's rapist." She added that the mindset, where men in the entertainment industry and in society think demeaning and insulting women is their birthright, leads to serious crimes against women.
Summary:
A two-year-old American boy shredded $1,060 cash which his parents had been saving up to pay for the University of Utah football season tickets.
Summary:
Indian cricketer Yuvraj Singh's mother, Shabnam Singh, has reportedly lost â¹50 lakh in a Ponzi scheme.
Summary:
A government helpline for reporting child sexual abuse has been temporarily suspended after it appeared in search results for pornographic content and received calls seeking sexual services, a National Commission for Protection of Child Rights (NCPCR) officer said.
Summary:
The body of a seven-year-old girl was on Sunday found stuffed in a gunny bag on the roof of a mosque in Muradnagar town of Uttar Pradesh's Ghaziabad.
Summary:
India's largest airline IndiGo on Sunday reported a temporary nationwide system failure that left passengers stranded at several airports.
Summary:
A seven-year-old female leopard was rescued from drowning in a 30-foot well in Maharashtra's Yadavwadi village by a team of Wildlife SOS and state forest department.
Summary:
Meghnad Bose, a senior reporter at The Quint, has been accused of sexual harassment and inappropriate behaviour by his journalism school batchmates.
Summary:
The Air Intelligence Unit (AIU) of Mumbai Customs arrested four passengers at Mumbai's Chhatrapati Shivaji Maharaj International Airport on Saturday with over 6.5 kilograms of gold worth â¹1.86 crore.
Summary:
China has said that Interpol President Meng Hongwei who was reported missing is under investigation for unspecified violations of the law.
Summary:
Trump met Kim in Singapore in June for the first-ever summit between the two countries.
Summary:
YouTuber, who goes by the name 'republicattak', in a video this week said that he has been robbed of his 14-year-old Lego collection.
Summary:
Online video game Fortnite earned $300 million revenue in 200 days since its launch on iOS, according to market analyst Sensor Tower.
Summary:
"Last night I updated Windows 10...all my files in Documents are deleted," a user said.
Summary:
He further warned that farmers might leave agriculture unless farming was made profitable.
Summary:
Responding to Elon Musk's comment against the SEC, a Tesla investor tweeted, "I have lost 30 years of my life savings all in $tsla thanks to your tweets." "If you continue this self destructive path you will lose all your ardent supporters," the tweet further read.
Summary:
Ivan Cash, a US-based inventor, has designed a pair of sunglasses called IRL (In Real Life) Glasses that can block out TV screens.
Summary:
"These dots mostly likely indicate burning of plastic and garbage in the open in industrial areas," Bhure Lal, Environment Pollution Authority (EPCA) Chairman said.
Summary:
"Our states have more power than many countries in the world.
Summary:
Army Chief General Bipin Rawat on Sunday said Russians are very keen on associating with the Indian Army because "we are a very capable Army".
Summary:
More than 500 prisoners and ex-prisoners have been provided jobs by the Telangana Prisons Department with an aim to curb crime in the state.
Summary:
Thousands of dogs on Sunday participated with their owners in the 'Wooferendum' march in London and demanded an end to Brexit by calling for a second referendum.
Summary:
This is the fourth time that India defeated Sri Lanka in the final to win the tournament.
Summary:
Summary:
Summary:
Issuing a statement on the sexual harassment row involving director Vikas Bahl and dissolution of Phantom Films, Anurag Kashyap said he has learnt that "perhaps" he's not fit to run a company.
Summary:
Australia's Aaron Finch made his Test debut against Pakistan on Sunday, seven years after having played his first-ever international cricket match.
Summary:
Google's venture firm GV-backed mental health startup Quartet Health has lost its Chief Product Officer Rajesh Midha and Chief Operating Officer David Liu in the last few weeks.
Summary:
A video shows balloons exploding during Congress chief Rahul Gandhi's 8-km roadshow in Madhya Pradesh's Jabalpur.
Summary:
The government is planning to auction over 100 mineral blocks by March 2019, according to the Ministry of Mines.
Summary:
As many as 34 girls were beaten up by goons inside a school on Saturday for resisting sexual advances.
Summary:
A 25-year-old woman from Maharasthra's Yavatmal has been arrested for allegedly kidnapping the two-year-old daughter of the man who once stopped her from committing suicide.
Summary:
He said the Centre and states had taken 10,000 steps to make India gain more than 42 points in the global 'Ease of Doing Business' index.
Summary:
Eminent Gandhian social worker Natwar Thakkar, popularly known as 'Nagaland's Gandhi', passed away at the age of 86 on Sunday following a brief illness.
Summary:
Reacting to the fake news on his death, 95-year-old MDH spices owner Mahashay Dharampal Gulati said he feels young again as so many people called him up to enquire and express their love for him.
Summary:
Tanushree Dutta has said she hopes that at least some women in the entertainment industry would come out and speak.
Summary:
Commenting on the sexual harassment row involving Vikas Bahl and an ex-female employee at Phantom Films, Hansal Mehta tweeted, "Will anybody do anything about this bloody creep or will the industry protect him like it always does?" While talking about the same, Apurva Asrani tweeted, "This story makes me sick.
Summary:
Summary:
She added the BCCI should conduct lie detector tests to control match fixing.
You can't police people that much," she added.
Summary:
Google's Pixel 3 XL, which was expected to be officially released on October 9, is being sold by a Hong Kong retailer at a price of around $2,030.
Summary:
Google spinoff Waymo's self-driving car crashed into the street median in June after the human driver fell asleep during the test drive, according to reports.
Summary:
The CPM has announced it will not form a union with the Congress in any of the five states going to Assembly polls in November and December.
Summary:
Summary:
Despite her opposition, the victim's 19-year-old son from her second marriage was forcibly married off to a minor girl a few months ago by her second husband.
Summary:
Home Minister Rajnath Singh has said that Jammu and Kashmir is a part of India and "no power in the world can snatch it from us".
Summary:
The driver of the tractor died after fixtures came crashing down on him.
Summary:
Rohingya Muslims staying in Indian camps have expressed concern over being deported to Myanmar, saying they will not rehabilitate until "peace is restored in their homeland".
Summary:
Women prisoners and inmates of open jails in Maharashtra can make video calls to families and relatives, in a possible first-of-its-kind initiative for prisoners in India, a state prison department official said.
Summary:
Khashoggi allegedly didn't come out of the building where he had gone to complete some paperwork.
Summary:
Meanwhile, the Indonesian government is considering turning areas hit by the earthquake and tsunami into mass graves.
Summary:
Talking about a former employee's sexual harassment allegations against director Vikas Bahl, filmmaker and Bahl's partner at Phantom Films Anurag Kashyap said, "We believe her completely...What Bahl has done is horrifying." Anurag added, "Whatever happened was wrong.
Summary:
She claimed Vikas refused to leave her hotel room and when he did, he allegedly said, "F**k you, bitch".
Summary:
Bohr lived there from 1932 until his death in 1962.
Summary:
Team India captain Virat Kohli has requested the BCCI to allow wives of players to accompany the team for the full duration of overseas tours, according to reports.
Summary:
Union Minister and BJP leader Vijay Goel on Sunday rode a bullock cart in Delhi's Chandni Chowk in protest against the rising prices of fuel.
He demanded that the AAP government reduce the fuel prices in the capital.
Summary:
The government earlier said they will not file a review petition against the verdict.
Summary:
Rajasthan Chief Minister Vasundhara Raje on Saturday announced free electricity for over 12 lakh farmers of up to â¹10,000 for a year on their agricultural electricity connection.
Summary:
The Mumbai Police has arrested 23-year-old model, Lakshya Lathar, for allegedly pushing his mother, fashion designer Sunita Singh, during a scuffle which led to her death.
Summary:
The dog's owner and his associates attacked the man and killed him when he refused to apologise.
Summary:
"If the Centre passes a law or act to implement NRC, I will go for it," Deb added.
Summary:
Jailed RJD leader Lalu Prasad Yadav's wife Rabri Devi and son Tejashwi were on Saturday granted bail in Indian Railway Catering and Tourism Corporation (IRCTC) scam case filed by the CBI.
Summary:
Indonesia's national disaster mitigation agency on Sunday said that rescue workers will stop searching for the bodies of victims of an earthquake and tsunami on the island of Sulawesi on Thursday.
Summary:
The news of 95-year-old owner of spice producer and seller MDH (Mahashian Di Hatti) Mahashay Dharampal Gulati passing away on Saturday is fake and a video was released online where he is seen at his office.
Summary:
Announcing his comeback, Kapil Sharma tweeted, "Coming back soon with 'The Kapil Sharma Show'." Kapil was at a detox centre in Bengaluru to complete detoxification programme where he was away from alcohol and will return to Mumbai on October 28, as per reports.
Summary:
Commenting on the sexual harassment allegations made by Tanushree Dutta against Nana Patekar, the widows of farmers in Maharashtra have said that "such baseless allegations against him are unacceptable".
Summary:
Varun Dhawan has said that he always felt he is a good actor but people took time to realise it.
Varun further said that his career has been a "bit funny" until now.
Summary:
Preity Zinta, while talking about Ness Wadia molestation case, has said that lines should be drawn for everyone.
"It is sub judice, so I'm not going to talk much.
Summary:
Preity Zinta has said that better insurance policies are required for the "light guys" and other crew members in Bollywood.
Preity further said that we have no value for life.
Summary:
Preity Zinta, while talking about working with Salman Khan, said, "There are no rehearsals with Salman.
Preity further said that Salman is "very cool".
Summary:
Filmmaker Vipul Shah, while speaking about the alleged sexual harassment case involving Tanushree Dutta and Nana Patekar, has said that the "cops must investigate the matter thoroughly" and the "guilty shouldn't be spared".
Summary:
Wishing former fast bowler Zaheer Khan on the occasion of his 40th birthday, former Team India captain Sourav Ganguly tweeted, "Happy birthday @ImZaheer zed K..
Summary:
The hacking method was first documented last year by Ran Bar-Zik, an Israeli web developer at Oath.
Summary:
The suit is made up of five miniature jet engines mounted on the pilot's arms and back for a vertical take-off.
Summary:
When asked if he thought it was risky to invest in Tesla, Saudi Arabia's Crown Prince Mohammed bin Salman in an interview said it would be a "conflict of interest", as Saudi's public fund PIF already owns Tesla shares.
Summary:
Belarus' President Alexander Lukashenko has said that belting is sometimes a "useful" way to punish children, adding that he is personally against physical punishment.
Summary:
Stating that Europe needs to strengthen its unity to fend off international challenges, French Finance Minister Bruno Le Maire has said US President Donald Trump is the "best incentive for a stronger Europe".
Summary:
After the Income Tax Department conducted a day-long survey at two 'Panna Singh Pakore Wala' outlets in Punjab's Ludhiana, its owner surrendered â¹60 lakh as his undisclosed income.
Summary:
Xiaomi has announced that a new 'Rosso Red' colour variant of its POCO F1 will go on sale in India on October 11 on Flipkart and mi.com at 12 AM.
Summary:
US President Donald Trump's nominee for the Supreme Court Brett Kavanaugh, who has been accused of sexual misconduct by three women, was sworn in on Saturday amid protests.
Summary:
Kangana Ranaut alleged that 'Queen' director Vikas Bahl would bury his face in her neck, hold her really tight and breathe in the smell of her hair every time they met socially.
Summary:
A man in US' Michigan learned that a 10-kg rock he has been using as a doorstop for 30 years is a meteorite worth $100,000 (â¹74 lakh).
Summary:
Among six laureates, Jean-Paul Sartre declined the 1964 Nobel Prize in Literature as he refused all official honours.
Further, Soviet Union forced 1958 Literature laureate Boris Pasternak to decline the honour.
Summary:
Irish mixed martial artist Conor McGregor, the first-ever two-division UFC champion (lightweight and featherweight), lost to Russia's Khabib Nurmagomedov in the fourth round at UFC 229.
Summary:
The Congress has hinted that the Election Commission rescheduled the announcement of election dates for five states, from 12:30 pm to 3 pm, to accommodate PM Narendra Modi's rally in Ajmer at 1 pm.
Summary:
Congress President Rahul Gandhi on Saturday performed aarti during Narmada Puja at Gwarighat in Madhya Pradesh before holding a roadshow ahead of the upcoming state assembly elections.
Summary:
Nationalist Congress Party (NCP) chief Sharad Pawar will not contest the 2019 Lok Sabha elections, party leader Jitendra Ahwad said on Saturday.
Summary:
Summary:
During the India Today Conclave East on Saturday, Meghalaya CM Conrad Sangma was asked to sing a song, after which he crooned English rock band The Beatles' song 'Let It Be'.
Summary:
Creating trouble and spitting inside stations and trains were other common offences.
Summary:
Pakistan Foreign Minister Shah Mahmood Qureshi has said that he had tried to make US officials realise that "it will not be appropriate to view US-Pakistan relations from the Afghan perspective or the Indian lens".
Summary:
An official with Iran's Islamic Revolutionary Guard Corps has warned Israeli Prime Minister Benjamin Netanyahu to "practice swimming in the Mediterranean", saying he will soon have no other choice but to flee the region.
Summary:
A woman has been appointed to run a Saudi Arabian bank in a first for women in the country.
Summary:
Finance Minister Arun Jaitley has assured that "there is no going back on deregulation of oil prices".
Summary:
Hollywood actor Will Smith has said one of the things on his bucket list is to be on a Bollywood dance sequence.
Perhaps I would do a film with her," Will further said.
Summary:
Malaika Arora, while supporting Tanushree Dutta who accused Nana Patekar of sexual harassment, said, "We need to clap for her for being able to overcome this hurdle." "I didn't like the fact that many of them were questioning her about why she spoke 10 years later," Malaika added.
Summary:
Sharing his picture with Will Smith and Ranveer Singh reportedly from the sets of upcoming show 'Koffee with Karan Season 6', Karan Johar wrote, "Where there's a Will there's a way." Seeing the picture, the fans started speculating that Smith will be seen on the show along with Ranveer and Akshay Kumar.
Summary:
Criticising Kate Middleton for setting unrealistic expectations for women to appear a certain way post-pregnancy, actress Keira Knightley wrote in an open letter that seven hours post her delivery, Kate stood in front of cameras looking stylish.
Summary:
Fam and nothingburger are among newâ words added to the latest Oxford English Dictionary (OED).
Summary:
Facebook on Saturday said it is establishing a task force comprising "hundreds of people" that will work together with political parties for the 2019 General Elections in India.
Summary:
Aarti Nagpal, a PhD Psychology student, has become the second female President in the university's history.
Summary:
The source, which faded over for the next 25 years, is believed to be the afterglow of the explosion of a massive star, a researcher claimed.
Summary:
Around 50 people were killed and 100 others suffered second-degree burns after an oil tanker caught fire in the Democratic Republic of Congo on Saturday, officials said.
Summary:
Turkish President Recep Tayyip ErdoÃÂan on Saturday said he ordered his ministers to stop receiving consulting services from US firm McKinsey.
Summary:
Singer Chinmayi Sripaada, while opening up about the sexual abuse she faced since childhood, revealed she was 8 or 9 years old when a 'man in priestly robes' felt up her privates.
Summary:
Comedian Kanan Gill, who has been accused of sexual harassment by a fan, has denied the accusations and tweeted, "I categorically deny this allegation.
Summary:
Actress-turned-producer Pooja Bhatt, while speaking at the India Today Conclave East 2018, said women speaking "uncomfortable truths" in a world of lies are dismissed or looked upon as "insane".
Summary:
The Centre should set up a pre-screening committee for web shows and films, the petitioner demanded.
Summary:
Speaking at the India Today Conclave East 2018, Preity Zinta revealed she nearly died in the 2004 tsunami which occurred in Thailand.
Preity, who was in Phuket at the time, added most of her closest friends passed away in the tsunami and she was the only one who survived.
Summary:
Summary:
A man has returned a book borrowed by his mother from a library in US' Louisiana as an 11-year-old girl in 1934.
Summary:
South African visually impaired cricketer Frederik Boer smashed 205 runs off 78 balls while representing Boland against Free State during a provincial T20 tournament.
Summary:
The 115-year-old company in July cut its profit forecast for 2018 after second-quarter profit fell by nearly half to $1.07 billion.
Summary:
Future Group's owner Kishore Biyani at a recent event said, "Startup means yeh toh khatam hona hai.
On Flipkart-Walmart's $16 billion deal, Biyani said, "Ecommerce mein paise nahi bante hain."
Summary:
"Jab Bansals [Flipkart Co-founders] ne century maar di...Woh baat maine dil pe le li", Sharma said.
Summary:
Saudi Arabia's sovereign fund will make another $45 billion investment in Japan's SoftBank's second Vision Fund, Crown Prince Mohammad Bin Salman Al Saud has said.
Summary:
Justifying his 'will break your leg' threat to a man at an event for differently abled people last month, Union Minister Babul Supriyo said he was trying to control the crowd like Michael Jackson once did.
Summary:
The Headmaster and two teachers of a Pune school have been booked over alleged sexual abuse of seven schoolgirls by one of the teachers.
Summary:
Rescued Navy Commander Abhilash Tomy, who was being treated in Ile Amsterdam, reached Vizag safely onboard INS Satpura on Saturday.
Summary:
Thieves stole lamps and taps from the residence of the Sri Lankan High Commissioner in Pakistan, situated in the city of Islamabad.
Summary:
Interpol has made a formal request to China for information on Hongwei.
Summary:
Indian spinner Kuldeep Yadav, who registered his maiden five-wicket haul in Test cricket on Saturday, said that he went back to his coach and trained with the red ball after the Lord's Test in the England series.
Summary:
Injured Bangladesh all-rounder Shakib Al Hasan fears his finger will never fully recover from an infection despite a planned second surgery in Australia this month.
Summary:
Summary:
There is only a particular time period till which you can push yourself and improve."
Summary:
Tesla CEO Elon Musk replied to his six-year-old tweet, which defended short sellers, and said, "What they do should be illegal." Earlier this week, the Tesla CEO mocked the US Securities and Exchange Commission as "Shortseller Enrichment Commission", criticising investors betting against the electric-car company.
Summary:
Cameras mounted above traffic lights at each corner of intersection capture images of vehicles and pedestrians.
Summary:
Australian carmaker Holden has unveiled an electric race car concept called 'Time Attack Concept'.
Summary:
According to police, the incident took place on Monday and the victim died in a hospital during the course of his treatment on Thursday.
Summary:
Trump said he was criticised for being "too nice" to Putin at the summit, which he claimed was a "great meeting".
Summary:
Natasha Hemrajani, a female photojournalist, has accused singer Kailash Kher of sexually harassing her in 2006 when she visited his house for an interview along with another female colleague.
Summary:
Sotheby's, which acquired the 'Girl With Balloon' painting in 2006, said it got 'Banksy-ed' as he's known for pulling pranks.
Summary:
"Phantom was a [glorious] dream...and all dreams come to an end.
"But I know for sure we'll come out of this stronger," he added.
Summary:
A pilot has survived four days without food and water after his helicopter crashed on a Siberia mountain.
Summary:
BJP MP Nandkumar Singh Chauhan and his aides on Friday allegedly assaulted toll booth employees in Madhya Pradesh's Pooran Khedi after the employees asked the leader to show his identity proof.
Summary:
Days after BSP refused to join hands with Congress in Madhya Pradesh, Samajwadi Party (SP) on Saturday also ruled out any alliance with the party for the upcoming state assembly elections.
Summary:
Fiat alleged that Mahindra's Roxor infringed on its Jeep design.
Summary:
After a woman shared screenshots of chat with author Chetan Bhagat trying to "woo" her, Bhagat said, "I should have had better judgement...I misread the friendliness." "I just had not felt that kind of connection in a while...it was stupid of me, to feel that way," said Bhagat.
Summary:
Government officials said the injured people were being airlifted to Jammu for treatment.
Summary:
The Uttar Pradesh government has recalled an entire batch of bivalent oral polio vaccine vials manufactured by a Ghaziabad-based firm, Biomed, after a confirmation that it was contaminated with P2 virus.
Summary:
Tripura CM Biplab Deb did 45 push-ups in one go on stage during the India Today Conclave after he was challenged to do so by the moderator.
Summary:
In a five-page affidavit, Apollo Hospital in Chennai claimed police officers including Inspector General of Police KN Sathiyamurthy had requested them to keep CCTVs off each time late CM J Jayalalithaa was taken out of her room.
Summary:
Finance Minister Arun Jaitley has said that challenges posed by the rise in international crude oil prices cannot be resolved by either the "tweets or television bytes of some opposition leaders".
Summary:
Denying the reports of Dilip Kumar's deteriorating health, his wife Saira Banu said that he is alright.
Dilip was diagnosed with pneumonia last month.
Summary:
Speaking about the 18-year-old Rajkot Test's Man of the Match, Prithvi Shaw, Indian captain Virat Kohli said, "Playing his first game, seeing him dominate, the guy showed he is [a] different quality." "That's why he's been pushed to the Test team.
Summary:
Reacting to India's win against the Windies, a user tweeted, "India wins the match by an innings and 272 runs.
Summary:
The Indian cricket team beat the Windies to register their 100th Test win at home, becoming the fourth cricketing nation to reach the landmark figure in Test cricket history.
Summary:
Uttarakhand opener Karanveer Kaushal, who had made his List A debut on September 20, 2018, smashed Vijay Hazare Trophy history's first-ever double century on Saturday.
Summary:
Two-time Commonwealth Games gold medal-winning shooter Heena Sidhu has said she is in a phase where she is looking to discover the sport.
"The first time I picked up the pistol, I loved it.
Summary:
Summary:
SpaceX will use its Falcon 9 rocket for launch with a Crew Dragon capsule attached on top.
Summary:
NASA has said the Voyager 2 spacecraft could be nearing interstellar space about 17.7 billion kilometres from the Earth.
Summary:
As many as 222 bags of cannabis have been found hidden underneath 135 bags of rice near Kolkata.
Summary:
Saudi Arabia has allowed Turkey to search its consulate in Istanbul for Jamal Khashoggi, a Saudi journalist who has been missing since he visited the mission earlier this week.
Summary:
Japan has withdrawn its participation from an international fleet review in South Korea due to a row over its 'Rising Sun' flag.
Summary:
Finance Minister Arun Jaitley on Saturday said that a new legislation can restore linking of Aadhaar with mobile numbers and bank accounts.
Summary:
India's previous biggest Test victory had come in June this year, when they defeated Afghanistan by an innings and 262 runs.
Summary:
The Election Commission of India on Saturday announced Assembly poll dates for five statesâ Madhya Pradesh, Rajasthan, Chhattisgarh, Mizoram and Telangana.
Summary:
Author Chetan Bhagat today admitted the screenshots of a chat shared by a woman where he was trying to "woo" her are real and apologised to her and his wife Anusha.
Summary:
Ranveer Singh and his rumoured girlfriend Deepika Padukone danced to the song 'Khalibali' from their film 'Padmaavat' at the ongoing Hindustan Times Leadership Summit 2018.
Summary:
Kuldeep is the third spinner and seventh bowler overall to take a five-wicket haul in all three international formats.
Summary:
Summary:
A National Green Tribunal-appointed expert panel, headed by Justice Tarun Agarwala, has received four lakh letters against the re-opening of Sterlite plant in Tamil Nadu's Thoothukudi.
Summary:
The Supreme Court has granted interim relief to the Delhi University law student who wasn't allowed to write her fourth semester exams as she missed classes due to pregnancy.
Summary:
Newly-appointed Chief Justice of India Ranjan Gogoi on Saturday called for improving the lawyer-population ration in the country.
Summary:
Speaking about Section 377 verdict at HT Leadership Summit, Finance Minister Arun Jaitley said he disagrees with the Supreme Court's observation that sexuality is part of free speech.
Summary:
William Clyde Allen III, a US Navy veteran has been charged with threatening to use a biological toxin as a weapon by sending letters containing ground castor beans to President Donald Trump and other leaders.
Summary:
Saudi Arabia's Crown Prince Mohammed bin Salman has said that the kingdom will pay nothing to the US for its security.
Summary:
Manish had earlier revealed that Aishwarya's outfit will be "festive and indo-western".
Aishwarya thanked her whole team and Manish after walking the ramp.n
Summary:
A new trailer of Jason Momoa starrer superhero film 'Aquaman' has been released.
Jason first appeared as the superhero in the 2017 film 'Justice League', which is based on the DC Comics superhero team.
Summary:
Love." The song, composed by Farhan and Rochak, has been written and sung by Farhan.
Featuring Farhan, the song tells a love story that meets a tragic end.
Summary:
Former CM of Andhra Pradesh Nandamuri Taraka Rama Rao's upcoming biopic will release in two parts as 'Kathanayakudu' on January 9 and as 'Mahanayakudu' on January 24.
Summary:
Ben Affleck, who completed a 40-day residential alcohol rehab programme, took to social media and wrote, "Battling any addiction is a lifelong and difficult struggle.
Summary:
"Could not have imagined my debut like this," Shaw said.
Summary:
Pakistan batsman Ahmed Shehzad has been handed a four-month ban, which is effective from July 10, by the Pakistan Cricket Board for violating the board's anti-doping rules.
Summary:
Google had then said it won't renew the project after it expires in 2019.
Summary:
Originally, the company used to give a grace period of 14 days to users who had opted to delete their accounts.
Summary:
Summary:
The Kerala Congress on Friday launched a protest demanding the filing of a review petition against the Supreme Court verdict permitting women of all ages to enter the Sabarimala temple.
Summary:
Technology giant Amazon has fired an employee who violated the company's policies by disclosing customer email addresses to a third-party merchant on the website.
Summary:
BJP President Amit Shah has challenged Congress to an "open debate" on the development work it undertook during its rule, as compared to the work undertaken by Chhattisgarh CM Raman Singh and PM Narendra Modi.
Summary:
Speaking at the Hindustan Times Leadership Summit, Punjab CM Captain Amarinder Singh on Saturday accused Pakistan of smuggling drugs into Punjab.
Summary:
Tata Group's retail arm Trent is in advanced talks to buy office space at a Lodha Group property coming up at Mumbai's Wadala for over â¹200 crore, as per reports.
Summary:
India's largest luxury car manufacturer, Mercedes-Benz India launched the new generation off-roader Mercedes-AMG G 63 at â¹2.19 crore.
Summary:
Swades foundation is awarding scholarships up to â¹1 lakh to 100 meritorious professionals for BITS Pilani's PG program in Big Data Engineering in association with UpGrad.
This scholarship helps professionals transition to Big Data with PG Certification from BITS Pilani.
Summary:
A video of a Miss World Bangladesh 2018 contestant has gone viral in which she replied H2O is a restaurant in Dhaka when a judge asked, "What is H2O?" She maintained her answer even when the judge said "H2O is water".
Summary:
State-run Karnataka State Road Transport Corporation suspended a bus driver named Prakash after a video showing him allowing a langur to take control of the steering wheel went viral.
Summary:
Speaking at the India Today Conclave East 2018, Pooja Bhatt revealed directors had a problem with her asking for film scripts and said 'Mahesh Bhatt ki beti hai isliye dimaag kharab hai.' She added she became a filmmaker at 23 as she was "appalled" by the work offered to her.
Summary:
Sonam Kapoor on Saturday tweeted, "IâÂÂm going off twitter for a while.
"ItâÂÂs because of men like you that women find it difficult to use public transport," Sonam had replied to the user.
Summary:
Filmmaker Pooja Bhatt, while speaking at the India Today Conclave East 2018, revealed a male friend once grabbed her breast at an airport.
Summary:
India had taken their biggest first-innings lead of 492 against Bangladesh in 2007, followed by 478 against Windies in 2011.
Summary:
Protests erupted in five districts after the arrest of a Bihar migrant for allegedly raping a 14-month-old girl on September 28.
Summary:
A jeweller who was kidnapped from Lucknow last month has been found in police custody in Nepal in connection with â¹29-lakh theft and murder of a businessman.
Summary:
The family alleged there is "something suspicious" about his death, saying they are not convinced the diesel car caught fire on its own.
Summary:
At least 30 policemen who protested were reportedly identified from the pictures.
Summary:
The Maharashtra government on Thursday introduced a blanket ban on hookah parlours in the state with immediate effect.
Summary:
On learning about his death, his wife committed suicide at the same spot a few hours later.
Summary:
The US has listed Babbar Khalsa International among the organisations that pose a risk to American "personnel and interests overseas".
Summary:
Pictures showing policemen taking away beer cans from a truck after it overturned on the national highway in Uttar Pradesh's Hathras district have surfaced.
The truck had overturned after the driver tried to avoid a collision with a school bus.
Summary:
Deepika Padukone, while talking about her first impression of Ranveer Singh as an actor, revealed that she thought Ranveer isn't her type.
Summary:
Arjun Kapoor and his half-sister Janhvi Kapoor will appear together on the sixth season of talk show 'Koffee With Karan'.
Summary:
Annu Kapoor, while talking about the sexual harassment row involving Tanushree Dutta and Nana Patekar, said, "If someone has done wrong, you should file a complaint to the police.
Summary:
Ranveer Singh and Deepika Padukone, while talking about sexual harassment in Bollywood, have said that it is "beyond gender".
Summary:
She adores him and they are very much in love," added Parineeti.
Summary:
Speaking at the 16th Hindustan Times Leadership Summit, actor-turned-politician Kamal Haasan said, "I don't want to see any one colour permeate the flag." Stating that the idea is "cohabitation", he added, "We've respected religion and we've given it a place in our flag.
Summary:
Summary:
A 19-year-old man has been arrested for allegedly raping his 16-year-old cousin after luring her to travel with him to Nashik district, Maharashtra.
Summary:
Citing the recent Supreme Court verdict allowing the entry of women of all ages into Sabarimala temple, retired Chief Justice of India Dipak Misra on Friday said, "I am happy that I am described as a warrior of gender justice." He added, "You cannot keep the women of a particular religion out of a temple.
Summary:
The woman had earlier filed a case against him for demanding additional dowry, but they reunited following mediation.
Summary:
Meanwhile, the injured were rushed to the hospital.
Summary:
All India Bakchod on Friday said it made mistakes by not cutting ties with comedian Utsav Chakraborty, who has been accused of sexual harassment, even though its Co-founder Tanmay Bhat already knew of the allegations.
Summary:
Pooja Bhatt, while speaking about breaking norms, said she introduced Sunny Leone to India.
She further said, "[America] wouldn't have accepted any adult star in films, but India accepted her."
Summary:
Ranveer Singh has revealed that during the shooting of 'Lootera', he had suffered an accident which had confined him to bed with a severe back injury.
Summary:
Ranveer had played the character 'Bittoo Sharma', a college student in the film which also starred Anushka Sharma.
Summary:
Sattyajit questioned, "Is it possible to ask a heroine to strip in front of...200 people?"
Summary:
Speaking at the India Today Conclave East 2018, Abhishek Bachchan revealed he proposed to Aishwarya Rai after they did the 2006 film 'Umrao Jaan' together.
Summary:
25-year-old Iraqi activist Nadia Murad, who jointly won the Nobel Peace Prize for work against sexual violence in warfare, was among 3,000 Yazidi women abducted by ISIS in 2014.
Summary:
India's 18-year-old opener Prithvi Shaw, who slammed 134(154) in his debut international innings on Thursday, took to Instagram to express his gratitude to fans and teammates.
Shaw is the youngest Indian to score a ton on Test debut.
Summary:
A girl in Bihar's Nawada was tied to a tree and flogged by villagers on the orders of a local panchayat for running away with a boy from a different village and caste last week.
Summary:
The system's target detection range is 600km, while ballistic missile destruction range is up to 60km.
Summary:
The US had warned India against the purchase citing its sanctions on defence trade with Russia.
Summary:
Diwali will be celebrated at Canada's iconic Niagara Falls this year for the first time ever.
Summary:
Shehbaz, who's the brother of former Pakistan PM Nawaz Sharif, is also an accused in a drinking water project scam case.
Summary:
The government on Friday appointed Rakesh Sharma as Managing Director and CEO of IDBI Bank for a period of six months or until further orders.
Summary:
RBI Governor Urjit Patel on Friday said the central bank does not have a target level for the rupee.
Summary:
The Delhi Police has arrested 24 people for allegedly duping Microsoft customers by posing as the company's technical support employees.
Summary:
IKEA India's Deputy Country Manager Patrik Antoni said the company is set to open its second Indian store in Mumbai later this year.
Summary:
Actors Akshay Kumar and Ranveer Singh will be appearing together as guests in the upcoming season of Karan Johar's 'Koffee With Karan', as per reports.
Summary:
The sword is being kept at a local museum.
Summary:
Sunil Ambris and Hetmyer were stranded at striker's end when Jadeja planned to walk rather than run to take the bails off.
Summary:
Indian captain Virat Kohli became India's first player to score at least 1,000 Test runs for three straight years after he crossed the landmark figure in the first Test between India and the Windies on Friday.
Summary:
Corine Remande, the woman who was blinded in one eye by a stray golf shot by American golfer Brooks Koepka at the Ryder Cup 2018, said that instead of helping her the other spectators just took pictures.
Summary:
Players of the ISL side Kerala Blasters wore jerseys featuring the image of a fisherman in his boat with a rescue helicopter as the backdrop as a tribute to the rescue workers during the Kerala floods.
Summary:
England women's cricket team player Danielle Wyatt revealed in a Question-Answer story on Instagram that she uses the bat gifted by Indian captain Virat Kohli in the nets but has better bats.
Summary:
Uber is planning to launch a feature in India that will prevent passengers and drivers from seeing each other's phone numbers.
Summary:
Summary:
The Indian Council of Medical Research (ICMR) has said that Canine Distemper Virus was responsible for the death of five of 23 Asiatic lions in Gujarat's Gir forest since September 12.
Summary:
Speaking at the India Today Conclave East 2018, actress-turned-producer Pooja Bhatt revealed she was in a relationship with an alcoholic who hit her.
Being Mahesh Bhatt's daughter doesn't make it hurt any less," said Pooja.
Summary:
Anushka Sharma, while speaking about the sexual harassment row involving Tanushree Dutta and Nana Patekar, said one shouldn't feel threatened or in danger while performing duties, whatever profession one might be in.
Summary:
Last year, Kapil Sharma had topped the same list by McAfee.
Summary:
Team India all-rounder Ravindra Jadeja, who smashed his first ever international hundred on Friday, dedicated the achievement to his late mother.
Jadeja's mother had passed away when he was just 17.
Summary:
China managed to score just 35/9 in their 20 overs in an ICC World Twenty20 Asia Region Qualifier B match against Thailand, with each of their 11 batsmen scoring less than 9 runs.
Summary:
American scientist Leon Lederman, who won the 1988 Nobel Prize in Physics and later auctioned his medal for $765,000 to pay medical bills, has died aged 96 on Wednesday.
Summary:
PM Narendra Modi and Russian President Vladimir Putin on Friday signed eight pacts, including the deal for cooperation on India's first manned space mission scheduled for 2022.
Summary:
A Bangkok-Delhi SpiceJet flight made an emergency landing in Varanasi on Friday after a Thai national suffered a heart attack on board.
Summary:
The first commercial flight that landed at Sikkim's Pakyong airport was welcomed with water cannon salute on Thursday.
Summary:
Melania is on a week-long solo tour to Africa, having already visited Ghana and Malawi as part of the trip.
Summary:
A South Korean court on Friday sentenced former President Lee Myung-bak to 15 years in prison for corruption.
Summary:
Gilberto Baschiera took money from wealthy customers and transferred it to the poor, so they could qualify for loans.
Summary:
Tushar Trivedi, one of BCCI's affiliated scorers, got seriously injured after a car, which was carrying three scorers, toppled on its way to the Saurashtra Cricket Association Stadium in Rajkot on Friday.
Summary:
A bit of Viru and the Master there." Meanwhile, ex-captain Sourav Ganguly said, "Don't compare him with Sehwag.
Sehwag was an absolute genius.
Summary:
Former Indian cricketer Virender Sehwag tweeted that he was going somewhere but stopped to watch Rishabh Pant's batting in the first Test against the Windies on Friday.
Summary:
The rape allegations levelled against Portugal footballer Cristiano Ronaldo have led to a 5% fall in the price of the shares of his new club Juventus.
Summary:
McGregor will face undefeated lightweight champion Khabib Nurmagomedov.
Summary:
Remembering Apple Co-founder Steve Jobs on his seventh death anniversary, the company's CEO Tim Cook tweeted, "WeâÂÂll never forget the example he set for us." "Steve showed me and all of us what it means to serve humanity," he further said.
Summary:
A Facebook bug prevented users from deleting their accounts, according to reports.
Summary:
Apple has contracted the police in California to guard its stores after a string of robberies led to a loss of over $1 million in stolen Apple devices.
Summary:
Talking about executive Joel Kaplan supporting Judge Brett Kavanaugh who has been accused of sexual assault, Facebook COO Sheryl Sandberg said, "I think it was a mistake for him to attend the hearing." "As a woman...the Kavanaugh issue is deeply upsetting to me," she added.
Summary:
After the South Delhi Municipal Corporation sealed a building in Delhi that housed Amazon's leased delivery facility, the company said that it has shifted its operations to a nearby location.
Summary:
New Zealand has introduced a fine of $NZ5000 (nearly â¹2.4 lakh) if travellers refuse to disclose codes, passwords, and encryption keys required to access their electronic devices including mobile phones to customs officials.
Summary:
The Aligarh Muslim University has ordered a probe into how pictures of Pakistan founder Mohammad Ali Jinnah with Mahatma Gandhi were put on display at a photo exhibition in the varsity.
Summary:
PhosAgro, one of the world's largest producers of phosphate-based fertilisers, has supplied about 1.2 million tonnes of product to India since 2016.
Summary:
The Supreme Court on Friday stayed the over â¹6,700-crore penalty that was imposed on 11 cement companies by the Competition Commission of India (CCI) over allegations of cartelisation.
Summary:
Russian oil giant Rosneft on Friday criticised India's taxation policy, saying it was a major hurdle in its expansion plans.
Summary:
Qureshi claimed that US wanted India and Pakistan to engage bilaterally instead.
Summary:
Stand-up comedian Utsav Chakraborty, who has admitted to asking for nude pictures from multiple women, has said getting nudes from a person was an "instant rush" for him.
Utsav further said, "But this caught me into a weird spiral...I'd ask anyone who was nice to me in the slightest."
Summary:
She added she had to wear it on her male director's insistence.
Summary:
AIB Co-founder Tanmay Bhat has apologised over comedian Utsav Chakraborty's actions of sending women 'd*ck pics' and tweeted, "I've let a lot of people down...I'm sorry.
Summary:
The woman claimed Ronaldo later sexually assaulted her in a penthouse suite before allegedly apologising and saying he is "usually a gentleman".
Summary:
Das' family suspect that someone called the 25-year-old leader to a deserted spot, locked him in the car and torched it.
Summary:
Congress MP Mallikarjun Kharge on Thursday said, "We (Congress) gave our life for the country and made sacrifices...Tell me, did even a dog die in houses of BJP, RSS (leaders) for the country's freedom?" "Indira Gandhi sacrificed her life for the unity of the country.
Summary:
The Supreme Court on Friday dismissed a PIL seeking full statehood for Delhi, stating that a five-judge bench had already given a verdict regarding the division of power between the Centre and the National Capital earlier.
Summary:
A constable in Bihar's Patna has been arrested for allegedly uploading an obscene video on a porn website.
Summary:
Addressing the Hindustan Times Leadership Summit on Friday, Railway Minister Piyush Goyal said, "Travel in trains and write your experience to me.
Summary:
Mahatma Gandhi never won the Nobel Peace Prize despite being nominated five times in 1937-1948.
Summary:
A CBI court in Panchkula has granted bail to self-styled godman Gurmeet Ram Rahim Singh in the castration case, however, he will remain jailed in the rape cases.
Summary:
At least three people died and nine were injured on Friday after an iron paddle holding a flex banner collapsed on moving vehicles in Pune.
Summary:
The Supreme Court has dismissed a plea by Kathua case accused seeking a fresh investigation on grounds that the first was "motivated".
Summary:
Pakistan's Foreign Minister Shah Mahmood Qureshi has said that fellow minister Noor-Ul-Haq Qadri "should have been more sensitive" while sharing the stage with Jamaat-ud-Dawah chief and 26/11 Mumbai attack mastermind Hafiz Saeed.
Summary:
Meng Hongwei, President of the international police agency Interpol has been missing since he visited his native China last week, reports quoting the French police said.
Summary:
Iran's Foreign Minister Javad Zarif has said that US President Donald Trump "humiliates the Saudis" and added his country is willing to cooperate with the kingdom in order to build a strong Middle East.
Summary:
Protesters were challenging Kavanaugh's nomination after three women publicly accused him of sexual assault.
Summary:
Kohli became the second quickest batsman to reach 24 Test centuries (123 innings) after Sir Don Bradman (66).
Summary:
Reacting to the Windies team's performance in the first Test against India, Indian spinner Harbhajan Singh questioned if the current Windies team could qualify for the Ranji Trophy quarters.
[W]ill this [W]est Indies team qualify for Ranji quarters from the plate group?
Summary:
Ravindra Jadeja teased Windies batsman Shimron Hetmyer at the non-striker's end before running him out on Friday.
Summary:
Three-time World Cup-winner Pelé said young and aspiring Indian footballers should spend three months in Brazil to improve Indian football.
"God coaches Brazil," Pelé further said on how Brazil produces great footballers year after year.
Summary:
A team of scientists has developed a new font, claiming it is the first font that can help boost memory.
Summary:
BJP president Amit Shah on Thursday said the Congress remembers BR Ambedkar only during elections and "disrespects" him after coming to power.
Summary:
Online car classifieds CarDekho has reportedly raised $75 million in series C round led by Ratan Tata, the Chairman Emeritus of Tata Sons.
Summary:
Delhi government has appointed Special Public Prosecutors Rebecca John and Vishal Gosain to conduct the trial in the murder case of photographer Ankit Saxena, who was allegedly killed by his Muslim girlfriend's family in February.
Summary:
Maruti Suzuki Chairman RC Bhargava, ex-director of crisis-hit infrastructure financier IL&FS, has ruled out resigning from the board of India's largest automaker.
Summary:
India earlier approved the deal to buy five units despite the US imposing sanctions against the country after Russia invaded Crimea in 2014.
Summary:
India's benchmark index BSE Sensex tanked 792 points on Friday to settle at 34,377 after the RBI kept the repo rate unchanged at 6.5% in a surprise move.
Summary:
All India Bakchod on Friday admitted that Co-founder Tanmay Bhat already knew of women's sexual harassment complaints against comedian Utsav Chakraborty.
AIB said Tanmay confronted Utsav and the accuser didn't wish to pursue any legal action after which AIB continued to work with Utsav as a freelancer.
Summary:
A CCTV footage showed Naman leaving house at 10.30 pm.
Summary:
"But he spoke really nice things about me," the actress further said.
Summary:
Twinkle Khanna, while praising Tanushree Dutta for speaking up about her alleged sexual harassment by Nana Patekar at the Hindustan Times Leadership Summit, said she's paving the way and people need to support her.
Summary:
"My father was the person who encouraged me to play football," the three-time FIFA World Cup-winner added.
Summary:
"We both tend to listen ...
Summary:
Congress leader J Aslam Basha on Thursday tweeted a photo of a woman pulling a rickshaw in Kolkata and wrongly identified her as an IAS topper and the man sitting in the back as her father.
Summary:
The Congress' student-wing NSUI alleged that Baisoya submitted a fake degree to get admission in DU for a post-graduate course.
Summary:
The woman said the two began talking on Facebook, following which he pressurised her to meet him.
Summary:
Pence also accused China of meddling in the congressional elections and added that it is waging an "unprecedented effort to influence American public opinion".
Summary:
Uday Kotak, Chairman of the newly-constituted board of debt-laden Infrastructure Leasing & Financial Services (IL&FS), has said there are 348 entities within the group making resolution more complex than expected.
Summary:
Mira Rajput, while supporting Tanushree Dutta who accused Nana Patekar of sexual harassment, shared Sapna Pabbi's Instagram post as her Instagram story which said, "Where were all the women when this was happening?" "I believe Tanushree.
Summary:
Ayushmann Khurrana, Tabu and Radhika Apte starrer 'AndhaDhun', which released today, is "a gripping tale of twists and turns", wrote The Quint.
Summary:
Ryan Gosling, who will portray astronaut Neil Armstrong in his upcoming film 'First Man', said that his daughters Esmeralda Amada and Amada Lee think that he's an astronaut now.
Summary:
Italian club Juventus were slammed for their tweets that claimed that the rape allegations levelled against their player Cristiano Ronaldo do not change their opinion about his "professionalism and dedication".
Summary:
The jersey also featured a message for the West Bengal CM from Messi, that read, "Best wishes for my friend Didi from Lionel Messi."
Summary:
A new robotic device that looks like a limb has been developed which can turn into a phone accessory when plugged into the USB port of mobile phones.
Summary:
In a memo sent to Snapchat's employees, CEO Evan Spiegel said, "The biggest mistake we made with our redesign was compromising our core product value of being the fastest way to communicate." "We rushed our redesign, solving one problem but creating many others," he added.
Summary:
Summary:
Names and phone numbers of potential customers on its website were compromised, the startup said in a statement.
Summary:
The affected models include Toyota's Prius and its Auris hybrid vehicles, with over a million being recalled from Japan.
Summary:
The cyber crime police have arrested a 19-year-old self-proclaimed astrologer from Punjab for allegedly cheating a Hyderabad-based man of around â¹13 lakh under the pretext of performing special rituals as per astrological predictions.
Summary:
A man was caught on camera kicking an anti-abortion advocate at a rally in the Canadian city of Toronto.
Summary:
The Indian rupee breached 74 per dollar for the first time on Friday after the Reserve Bank of India kept the repo rate unchanged at 6.50%.
Summary:
Team India all-rounder Ravindra Jadeja smashed his first-ever international century, against Windies in the first Test at Rajkot on Friday.
Summary:
The 2018 Nobel Peace Prize has been awarded to Denis Mukwege and Nadia Murad for their efforts to end the use of sexual violence as a weapon of warfare.
Summary:
RBI's six-member Monetary Policy Committee (MPC) in its fourth bi-monthly policy statement for FY19 on Friday kept the repo rate unchanged at 6.50% after hiking it by 25 bps two times in a row.
Summary:
A Kashmiri student was roughed up by a group of Indian students after he was mistaken for an Afghan national.
Summary:
Three-time FIFA World Cup winner Pelé on Friday said, "It's difficult to compare Messi and Ronaldo.
On being asked by former Indian captain Bhaichung Bhutia at the Hindustan Times Leadership Summit how Brazil produced great footballers year after year, Pelé said, "God coaches Brazil".
Summary:
Summary:
A food delivery personnel employed with Uber Eats was caught on video eating a customer's food after pressing the house's doorbell in Australia's Melbourne.
Summary:
Kerala government on Thursday refused to reduce state taxes on fuel, stating it would only cut the prices if the Centre brings down the taxes on fuel to the 2014 level.
Summary:
A 45-year-old fashion designer has been found dead at her house in Mumbai's Lokhandwala.
Sunita Singh was discovered lying dead on the floor of her bathroom by her 23-year-old son.
Summary:
Mumbai's Anti-Corruption Bureau will scrutinise 550 organ transplant cases forwarded to Sir JJ Hospital by a worker named Tushar Savarkar, who was arrested on Monday with Sachin Salve, for taking a bribe of â¹80,000 to facilitate a kidney transplant.
Summary:
The Lucknow Bench of the Allahabad High Court has imposed a fine of â¹5,000 each on three doctors in separate cases for their bad handwriting while writing the medico-legal reports in criminal cases.
Summary:
The Delhi government's Sentence Review Board has rejected an early release plea of Sushil Sharma who is serving life imprisonment for killing his wife and trying to dispose her body by burning it in a tandoor.
Summary:
School and colleges owned by Andhra Pradesh Urban Development Minister Ponguru Narayana were among the properties raided by Income Tax officials on Friday, reports said.
Summary:
Singh also allegedly abused and threatened another 19-year-old woman, who then complained to Kolkata police.
Summary:
The Kerala High Court has ruled that supporting a banned organisation's ideology is different from waging a war against the nation.
Summary:
Trump can be seen walking up to the aircraft at the Minneapolis-Saint Paul International Airport unaware of the paper.
Summary:
Sidharth Malhotra, while talking about his debut film 'Student Of The Year' co-actors Alia Bhatt and Varun Dhawan, said, "We've shared many emotions and experiences together.
Summary:
Actor Ranveer Singh and Portuguese model and Victoria's Secret Angel Sara Sampaio have been featured on the cover of 11th anniversary issue of fashion magazine 'Vogue India'.
Summary:
All the members of the Central Circuit Cine Association and Cinema Association have announced that they will not be in operation in Madhya Pradesh and will go on a strike October 5 onwards.
Summary:
Anupam Kher, who will portray former Prime Minister Manmohan Singh in upcoming biopic 'The Accidental Prime Minister', has said, "I know that Dr Manmohan Singh will be immortalised by this film." "He has his strengths, he has his weaknesses.
You will love him when you see the film," Anupam added.
Summary:
Producer of the film, Bhushan Kumar said, "We will soon get an update on her health and when she can resume work.
Summary:
Julia Roberts, while talking about her TV show 'Homecoming', said that the show did wonders for her personal life.
I didn't want to have a different person every week trying to understand the way my brain works," Julia added.
Summary:
After the Centre cut prices of petrol and diesel by â¹2.50 per litre across India, Congress called it "a panic reaction" ahead of assembly polls in four states.
Summary:
Summary:
The student has been accused of tearing the boy's trousers and touching him inappropriately in front of other students.
Summary:
Summary:
The Bihar government on Thursday prohibited all principal secretaries and police officials from carrying cell phones to "high-level" meetings.
Summary:
The 29-year-old has now hit 24 hundreds in Test cricket and 59 overall in international cricket.
Summary:
The OnePlus 6 be available at a reduced price of â¹29,999, down from its original price of â¹34,999 during the Amazon Great Indian Festival sale from October 10-15.
Summary:
Stand-up comedian Utsav Chakraborty, who appeared in several 'All India Bakchod' videos, on Friday apologised for asking women for their nude pictures and tweeted, "It's a little too late now but I am sorry." "Can't think of myself as a victim anymore...don't want anyone to be hurt anymore," he added.
Summary:
The Delhi High Court on Friday acquitted former TV anchor and producer Suhaib Ilyasi, known for hosting crime show 'India's Most Wanted', in his wife's 18-year-old murder case.
Summary:
The Countering AmericaâÂÂs Adversaries Through Sanctions Act (CAATSA) targets countries trading with Russia.
Summary:
Reliance Industries Chairman Mukesh Ambani has topped Forbes 100 Richest Indians list for the 11th straight year with a net worth of $47.3 billion.
Summary:
Speaking at the Hindustan Times Leadership Summit on Friday, Congress President Rahul Gandhi said, "I have my mother, my sister, my friends.
Summary:
Musk criticised investors betting against the electric-car company and was fined $20 million to settle the SEC lawsuit over "misleading tweets" about taking Tesla private.
Summary:
Punjab CM Captain Amarinder Singh on Thursday turned down state minister Navjot Singh Sidhu's proposal to legalise the cultivation of opium in the state, saying, "I am not in favour of growing anything." "We are against the concept of drugs.
Summary:
Chaudhary allegedly shot Tiwari after he refused to stop his car during patrol inspection.
Summary:
Bengaluru Deputy Mayor Ramila Umashankar on Thursday night died of a cardiac arrest, a week after the 44-year-old was elected to office.
Summary:
A 58-year-old suspected modern slavery victim has been rescued after living in a six-foot wooden shed for 40 years at a residential site in United Kingdom's Carlisle, according to Gangmasters and Labour Abuse Authority.
Summary:
Aayush Sharma and Warina Hussain's 'Loveyatri', which released today, is "a heavy dose of- been there, seen that", wrote Times Now.
Summary:
A defamation case has been filed against actress Tanushree Dutta for her comments against Maharashtra Navnirman Sena (MNS) Chief, Raj Thackeray.
Summary:
Deepika Padukone will produce and star in Meghna Gulzar's film on acid attack survivor Laxmi Agarwal.
Summary:
It's something both he [Varun] and I have never done before." Shashank's 'Rannbhoomi' which will also star Varun and will be produced by Karan has been postponed.
Summary:
South African pacer Dale Steyn, facing Zimbabwe, scored his career's first ODI half-century in his 117th ODI match on his return to the format after a duration of almost two years.
Summary:
"We are in talks with Samajwadi Party over seat-sharing," he said.
Summary:
Gurugram-based food startup InnerChef has raised around $1.76 million (over â¹13 crore) in a funding round led by Mistletoe which is owned by Masayoshi Son's brother Taizo Son. The round saw participation from Mauritius-based M&S Partners and Japan's Das Capital.
Summary:
The landing comes amid the ongoing investigation over the hole in a Russian module docked at the ISS.
Summary:
Maoists released a kidnapped Class 12 student in Chhattisgarh's Sukma district after hundreds of tribal students walked out of schools in protest and threatened to sit on a hunger strike until he was released, said the police.
Summary:
A 21-year-old man died after he collapsed following a workout at Nizam College's gym, said Hyderabad Police.
Summary:
Three under trial history-sheeters on Thursday hurled a bomb on their way to court in a bid to escape from the police custody in West Bengal's East Midnapore.
Summary:
An RTI activist from Chhattisgarh has sought the birth certificate of Lord Krishna and proof of him being a God from Mathura authorities in Uttar Pradesh last month.
Summary:
nThe Centre has sanctioned â¹2.8 crore for the Punjab government to rehabilitate over 100 1984 anti-Sikh riot victims who had migrated to the state.
Summary:
UP police have registered a case in Bahraich against a man for allegedly giving Triple Talaq to his wife over the phone as she didn't fulfil his dowry demand.
Summary:
Stand-up comedian Utsav Chakraborty, who appeared in several All India Bakchod videos, admitted to asking multiple women to send their nude pictures and called himself a "piece of shit".
Summary:
"The accusations describe a pattern of behaviour that is unacceptable, and we condemn Utsav's alleged behaviour," AIB's statement read.
Summary:
Royal Caribbean International has refunded several passengers on board its Voyager of the Seas cruise ship from Singapore to Australia after complaints against around 1,300 Indians, working for Kamla Pasand, were filed.
Summary:
The Mumbai Police's official Twitter account shared a post urging people to "dial 100" as it always helps, citing India opener Prithvi Shaw's hundred on Test debut.
Shaw, who plays for Mumbai in domestic cricket, made his international debut today.
Summary:
Telangana CM and TRS chief K Chandrashekar Rao on Wednesday spat while reacting to the alliance between TDP and Congress for the upcoming assembly elections in the state.
Summary:
Congress MP Digvijaya Singh tweeted photos of ambulances in Andhra Pradesh, alleging that the vehicles had been lying unused in Uttar Pradesh.
Summary:
PM Narendra Modi's look-alike Abhinandan Pathak, who previously campaigned for BJP in Uttar Pradesh, on Thursday said that he has decided to campaign against BJP and for Congress.
Summary:
The deceased's family said the men started beating him after he refused to sell masala and asked the accused to repay debts.
Summary:
Russian President Vladimir Putin arrived in India for a two-day visit on Thursday and was received by External Affairs Minister Sushma Swaraj.
Summary:
The Sentence Review Board headed by Delhi Home Minister Satyendar Jain on Thursday rejected Jessica Lal murder convict Manu Sharma's request for early release.
Summary:
PM Modi also tweeted pictures of their meeting and wrote, "Welcome to India, President Putin.
Summary:
The Pakistan Rangers stationed at the India-Pakistan border at Wagah posed with the trophy of the ICC World Cup 2019.
Summary:
India's 18-year-old debutant Prithvi Shaw and Cheteshwar Pujara played table tennis a day before they put up a 206-run stand in the first innings of the first Test between India and the Windies on Thursday.
Summary:
Former Australian captain Steve Smith has been named in the draft of players finalised to participate in the 2019 edition of the Pakistan Super League.
Summary:
Portugal national team captain Cristiano Ronaldo has been left out of the national squad as he fights the rape allegations levelled against him.
Summary:
Summary:
That fat gets altered when an artery becomes inflamed, serving as an early warning system for heart attacks.
Summary:
The chips were allegedly hidden on server motherboards being sold by the US-based company Supermicro, during the manufacturing process in China.
Summary:
Bluehole, the company behind PlayerUnknown's Battlegrounds (PUBG), has reportedly banned 13 million players so far since June 16, 2017 for cheating.
Summary:
"Whoever's telling you that, it's a bunch of bunk," Cook said.
Summary:
Referring to Russia's investigation, NASA said that ruling out defects "does not necessarily mean the hole was created intentionally".
Summary:
Pakistan's Foreign Ministry spokesperson on Thursday said the decision to open Kartarpur corridor "will not see any forward movement if India does not hold talks with Pakistan".
Summary:
The Rajiv Gandhi University of Health Sciences in Karnataka has issued a circular stating writing the names of Gods before attempting to answer questions as malpractice.
Summary:
Investors lost â¹5 lakh crore in two days of market crash where the benchmark BSE index Sensex fell by 1,357 points.
Summary:
Anil Ambani-led Reliance Communications on Thursday told the Supreme Court that its dispute over non-payment of dues to Swedish firm Ericsson would be settled in 10 days.
Summary:
Mukesh Ambani-led Reliance Industries is reportedly in talks to acquire Mumbai-based cable and broadband service provider Hathway Cable and Datacom.
Summary:
Airtel's banking arm Airtel Payments Bank has reportedly recorded an 11.68% increase in losses to â¹272 crore in FY18 as compared to â¹244 crore in the preceding fiscal.
Summary:
Kuwait's 66-year-old civil engineer Najeeb Al-Humaidhi became a billionaire on Wednesday after Aston Martin made IPO, valuing Najeeb's stake in the British luxury cars manufacturer at $1.22 billion.
Summary:
Summary:
Comedian Utsav Chakrobarty, who featured in videos of AIB, has been accused of asking girls to send him their nude and topless pictures.
Summary:
Denying rumours that she dated Salman Khan in the past, Shilpa Shetty said, "We didn't go out on a date as such.
Summary:
Air India on Wednesday rendered an apology a day after passengers on its delayed Pune-Delhi flight weren't allowed to deboard even as they complained that the air conditioners weren't working, causing them discomfort.
Summary:
Uttar Pradesh DGP OP Singh has blamed the lack of professional training to police officials as the reason behind the killing of Apple executive Vivek Tiwari.
Summary:
A 32-year-old biker was killed and five others were injured after an acid can fell on them while they were passing by Delhi's yet-to-be-opened Johri Enclave Metro Station.
Summary:
The data released by the Western Railway revealed that passengers on the long-distance trains stole around 1.95 lakh towels, 81,736 bedsheets, 5,038 pillows, 200 toilet mugs, 1,000 taps, and 300 flush pipes, among other things, in 2017.
Summary:
Haryana government on Wednesday notified that all bureaucrats in the state will be charged â¹1000 for non-official journeys up to 1,000 km every month and the amount will be deducted from their salaries.
Summary:
Meanwhile, another hoax news claimed that an earthquake was due to strike the region.
Summary:
Amid the escalating trade war between the two countries, US crude oil shipments to China have "totally stopped", President of China Merchants Energy Shipping Xie Chunlin has said.
Summary:
China has launched a game show to teach young people about President Xi Jinping.
Summary:
ICICI Bank's new CEO Sandeep Bakhshi, who started his professional career in 1983 with ORG Systems, joined the ICICI Group in 1986.
Summary:
'Namaste England' director Vipul Shah has revealed that he told Arjun Kapoor that Akshay Kumar was his first choice for the film's lead role but the dates were not working out.
Summary:
Reacting to Cheteshwar Pujara batting with a water bottle in his pocket, commentator Sanjay Manjrekar tweeted, "Didn't see that coming, carrying a bottle of water in his pocket while batting.
Summary:
India's 18-year-old batsman Prithvi Shaw said that he was thinking about his father while celebrating his first Test ton in his debut match, as his father "sacrificed a lot" for him.
Summary:
Opener Murali Vijay has revealed no selector spoke to him after he was dropped from the third India-England Test in August.
Summary:
Brazil's Maya Gabeira surfed on a 68-foot wave to set a new Guinness World Records title for the largest wave surfed by a female.
Summary:
Eighteen-year-old opener Prithvi Shaw smashed 134(154) in his international career's first-ever innings as India ended the first day of the first Test against Windies in Rajkot at 364/4.
Summary:
It needs only about 150 articles to detect if a news source can be trusted, the researchers claimed.
Summary:
Named MONET, the joint venture will assign autonomous vehicles to various services.
Summary:
Summary:
For the first time, astronomers have discovered what could be an 'exomoon', a moon outside the Solar System.
Summary:
The India Meteorological Department on Thursday issued a red alert for all districts of Tamil Nadu for October 7 predicting excessive rainfall in the state.
Summary:
A man identified as Salman was arrested for allegedly robbing a duo of â¹4.5 crore on a highway in Haryana, the police said on Wednesday.
Summary:
A second British woman has died from 'Brazilian butt lift' surgery, described as the most dangerous cosmetic procedure to undergo by the British Association of Aesthetic Plastic Surgeons.
Summary:
This comes after Finance Minister Arun Jaitley announced a â¹2.5 cut in fuel prices across the country with immediate effect.
Summary:
The central government has cut the prices of petrol and diesel by â¹2.50 across the country with immediate effect, Finance Minister Arun Jaitley announced.
Summary:
The benchmark BSE index Sensex on Thursday crashed 806 points to end at 35,169.16 amid sell-off witnessed across sectors, weak global cues and rupee hitting a record low of 73.82 against the US dollar.
Summary:
He is the biggest gainer on the list this year, adding $9.3 billion to his net worth amid Reliance Jio's success.
Summary:
Summary:
Director Vivek Agnihotri, who issued a legal notice to initiate defamation action against actress Tanushree Dutta, has claimed that her allegations of misbehaviour and harassment are "false, frivolous and vexatious".
Summary:
Actor Sylvester Stallone has revealed his look from the film 'Rambo 5', while saying that the film's shoot has started.
Summary:
Eighteen-year-old opener Prithvi Shaw has become the first-ever cricketer to smash a century each on Ranji Trophy, Duleep Trophy and Test cricket debut.
Summary:
The Central Bureau of Investigation probing the sexual abuse of minor girls at a shelter home in Bihar's Muzaffarpur has found human skeletons, believed to be of the victims, at a cremation ground.
Summary:
Over 250 people died worldwide while taking selfies between October 2011 and November 2017, according to a report by All India Institute of Medical Sciences (AIIMS).
Summary:
Eighteen men, including seven Haryana Police personnel, have been booked in connection with the rape of a 15-year-old girl and her mother in a village near Kalayat.
Summary:
Stating that US sanctions are more "fragile" than Iran's economy, Supreme Leader Ayatollah Ali Khamenei has said Iran will "slap the US in the face" by defeating those sanctions.
Summary:
Cricketer-turned-actor Sreesanth is the lowest paid celebrity contestant on 'Bigg Boss 12' as he earns â¹5 lakh per week, as per reports.
Summary:
Reacting to 18-year-old Prithvi Shaw's ton on his Test debut, Mohammad Kaif tweeted, "Is ladke mein kuch toh bahut khaas hai.
Summary:
Facebook on Wednesday responded to a lawsuit which accused the social network of allowing sex trafficking on its platform.
Summary:
Congress spokesperson Randeep Surjewala on Wednesday compared RSS chief Mohan Bhagwat's statement on the early construction of Ram temple in Ayodhya to the "noise" made by frogs during rains.
Summary:
World's richest man Jeff Bezos' aerospace startup Blue Origin has said it is designing a "large lunar lander" called Blue Moon to provide access to the Moon's surface.
Summary:
Gurugram-based startup Delhivery is in talks with Japan's SoftBank to raise $200-250 million in funding.
Summary:
E-commerce major Amazon has invested â¹590 crore in its Indian digital payments arm, Amazon Pay. Filings have revealed that the capital was sourced from the US-based parent Amazon.com and Singapore-based Amazon Corporate Holdings.
Summary:
Gurugram-based second-hand automobile startup Droom has raised around â¹221 crore ($30 million) in Series E round of funding.
Summary:
Researchers at USA's Purdue University have 3D-printed cement paste, an ingredient of the concrete and mortar used to build various infrastructure elements, that gets tougher under pressure.
Summary:
Researchers claim that Australia is on course to become the world's first nation to effectively eliminate cervical cancer if the current vaccination and screening rates are maintained.
Summary:
Sanatana Dharma survived despite the onslaught of invaders because of personalities like former Congress president Madan Mohan Malaviya, Bhagwat added.
Summary:
A combination of the Canine Distemper Virus and Protozoal infection is responsible for the death of at least 11 of the 23 Asiatic lions that have died in Gujarat's Gir forest since September 12, the state government said on Wednesday.
Summary:
Summary:
After the in-laws of air hostess Anissia Batra moved the Supreme Court against a Delhi High Court order denying them anticipatory bail, the apex court said, "It's a very serious matter, can't just brush it aside." The court observed that police had evidence establishing that Anissia was subjected to cruelty.
Summary:
A man was killed after he was hit by a windowpane that fell around 250 feet from the top of a tower in central London.
The victim, a coach driver, had stopped to use a toilet next to the tower.
Summary:
The shares of ICICI Bank rose nearly 6% on Thursday to over â¹320 a share after Chanda Kochhar quit as CEO and MD of the bank.
Summary:
Prithvi Shaw, who captained India Under-19 to World Cup victory in February, has become India's 293rd Test cricketer, achieving the feat against Windies in Rajkot on Thursday.
Summary:
Prithvi Shaw has become the youngest Indian to score a century on Test debut, achieving the feat aged 18 years and 329 days against Windies in Rajkot on Thursday.
Summary:
The Supreme Court has refused to interfere in the Centre's decision to deport seven Rohingya refugees to Myanmar.
Summary:
Kochhar will also relinquish office from the Board of Directors of the BankâÂÂs subsidiaries.
Summary:
Canon India announces the all new Rayo Mini Projectors, Rayo i5 and Rayo R4, as their flagship models.
Summary:
Actress Tanushree Dutta said that she was slapped with two legal notices from Nana Patekar and director Vivek Agnihotri.
Summary:
Civil Aviation Minister Suresh Prabhu said that passengers can soon use facial recognition biometrics to enter airports under the government's DigiYatra initiative, which will become operational by February 2019.
Summary:
Actress Tanushree Dutta has alleged that two unnamed suspicious individuals tried to enter her house when the police personnel posted outside her house were on a lunch break.
Summary:
Actress Anushka Sharma has said one cannot blame actors or star kids for nepotism.
Summary:
Singer-turned-politician Babul Supriyo has alleged that West Bengal police threatened singer Shaan, saying they'll cancel the license of his upcoming show if Supriyo attends it.
Summary:
If they haven't already." Priyanka's investment in Holberton is part of an $8.2 million round of funding that closed in April.
Summary:
Sachin Tendulkar had earlier revealed he predicted 10 years ago that Prithvi Shaw would represent India after having a session with the then eight-year-old.
Summary:
Denouncing US sanctions as a source of growing mistrust, North Korea has said it would "never beg the US to lift sanctions".
Summary:
Russian President Vladimir Putin has said that if his US counterpart Donald Trump wants to find the culprit for the surge in oil prices, he needs to "look in the mirror".
Summary:
After International Court of Justice (ICJ) told the US to lift sanctions on Iran which are linked to humanitarian goods and civil aviation, the US on Wednesday pulled out of the 1955 Treaty of Amity with Iran.
Summary:
Cell phones across the US buzzed and beeped on Wednesday during a test of a 'Presidential Alert' system that would warn the public of a national emergency, such as an imminent attack.
Summary:
US President Donald Trump helped his parents evade taxes through fraud in the 1990s and received at least $413 million in today's dollars from his father's real estate empire, according a report.
Summary:
Swedish caller ID service Truecaller has launched Truecaller Chat, an instant messaging (IM) service which will let users report links to curb the spreading of fake news.
Summary:
Summary:
Former Vice President Hamid Ansari on Wednesday claimed the success of BJP is "sectoral" and regional rather than at the national level, and added, "Saffron ideology seeks to submerge the democratic values of diversity and inclusiveness".
Summary:
Earlier, Walmart paid â¹7,439 crore tax on payments to buy out 10 major Flipkart shareholders, but had not done so for the remaining 34 who also exited the e-commerce company.
Summary:
Madhya Pradesh CM Shivraj Singh Chouhan has announced a â¹100-crore startup fund to promote entrepreneurial activity in the state.
Speaking at an event, the minister also said it was the right time for a spurt in startup activity in the state.
Summary:
His family added that soon after hearing of his death, his 50-year-old maternal grandfather also died of a heart attack.
Summary:
The Supreme Court on Wednesday questioned the Centre and Gujarat government over the death of 23 lions in the Gir forest within a span of about 20 days.
Summary:
The RSS on Wednesday said the Kerala government has "unfortunately" taken steps to implement the Supreme Court judgement on the Sabarimala temple case without taking devotees' sentiments into consideration.
Summary:
Indrani Mukerjea, prime accused in the Sheena Bora murder case, has filed another bail application in a Mumbai court on health grounds.
Summary:
The police said he murdered her for trying to end their six-month-long relationship after he wrote her name on his wrist with a blade.
Summary:
Afridi had revealed that former Pakistani pacer Waqar Younis had given him Sachin's bat during net practice before the match.
Summary:
Actress Shilpa Shetty has revealed that a boy once dated her only to win a bet.
"My friends made a bet with this boy and told him to start a relationship with me...
Summary:
Actor Randhir Kapoor, while speaking about his brother Rishi Kapoor leaving for the US for medical treatment, said, "How can people speculate that he has cancer and that too, one that has escalated to an advanced stage?" "Rishi himself doesn't know what he is suffering from.
Summary:
"Her eye wasn't closed.
She had her hair over her eye, but you could see [it] wasn't shut," he said.
Summary:
Reality television personality Kim Kardashian has been named the most dangerous celebrity to search for online in the UK in 2018 by cybersecurity firm McAfee.
Summary:
Officially described as 60-year-old, the whisky was created in 1926 and bottled in 1986.
Summary:
The India Meteorological Department has sounded a red alert for Idukki, Thrissur and Palakkad districts of Kerala over predictions of extremely heavy rainfall on October 7.
Summary:
The International Court of Justice will hold public hearings from February 18 to 21 next year at the Hague to decide on India's appeal against Pakistan's verdict to execute former Indian Navy officer Kulbhushan Jadhav.
Summary:
Kolkata's 33-year-old singer Krishnakoli Banerjee has alleged an Uber driver threatened her and said, "I got your address...will rape you," on Monday night after she asked him to stop talking on the phone.
Summary:
Police have arrested two priests of a temple in Madhya Pradesh's Datia for allegedly gangraping a five-year-old girl inside the temple premises on Tuesday.
They raped the girl and then dropped her outside her home," police said.
Summary:
The PM wrote, "I pray for her happiness and good health." Her father had tweeted, "Indeed, PM Modi is a Chor...
Summary:
Chris Hemsworth, who portrays superhero 'Thor' has said some of his roles have suffered after he became a father.
Summary:
After Tanushree Dutta said she has been offered protection by the Mumbai Police, Maharashtra Minister of State (Home) Deepak Kesarkar said the protection has been given against certain incidents that had happened and not against Nana Patekar.
Summary:
Shot with the extremely hilarious and supremely bright and sensitive father-daughter duo," Johar wrote.
Earlier, Johar confirmed Deepika and Alia will appear together on the show.
Summary:
Spanish club FC Barcelona became the first sports team in the world to surpass the $1 billion mark in revenues.
Summary:
Juventus forward Cristiano Ronaldo has denied rape allegations made against him by an American woman, who has filed a civil case claiming that the Portuguese forward sexually assaulted her in Las Vegas in 2009.
Summary:
Reacting to Floyd Mayweather's $1,000-donation to a homeless man, a user tweeted, "You're doing the right thing, but I feel like that dude isn't gonna spend it correctly." "The guys not in a state to do anything with it.
Summary:
World's most expensive footballer Neymar scored a hat-trick, including two free-kick goals, as PSG beat Red Star Belgrade 6-1 on Wednesday to post their first win in Champions League 2018-19.
Summary:
BCCI has written to the Central Information Commission (CIC) stating it will not be able to implement the RTI Act ruling since the matter is subjudice before Madras High Court.
Summary:
Only 10% of the tickets made available for the first Test between India and the Windies in Rajkot have been sold so far.
Summary:
A day after farmers' protest demanding higher Minimum Support Price (MSP), the Cabinet on Wednesday hiked the MSP of Rabi crops for 2018-19.
Summary:
He was stopped by the CISF personnel who was manning internal security of the heritage monument.
Summary:
Nearly nine months after the Supreme Court collegium recommended his name, Justice Surya Kant on Wednesday was appointed Chief Justice of the Himachal Pradesh High Court.
Summary:
Four women were booked on Tuesday for allegedly creating ruckus and assaulting police officials in Mumbai's Bhayander.
Summary:
British Prime Minister Theresa May did a few dance moves to Abba's song 'Dancing Queen' while coming on the stage for her keynote speech at the Conservative party conference in Birmingham on Wednesday.
Summary:
Russian President Vladimir Putin has called the former Russian double agent Sergei Skripal a "scumbag" and a "traitor"â while denying allegations that Russia had ordered his poisoningâÂÂ.
Summary:
The assets declaration in 2012 by the newly sworn-in Chief Justice of India Ranjan Gogoi showed that he owns no house, personal vehicle or gold jewellery.
Summary:
An American Airlines flight from Phoenix to Boston was forced to land in Kansas City on Tuesday morning after a man refused to stop doing pull-ups using the overhead bin.
Summary:
X-Men fame actress Fan Bingbing, who is China's highest-earning celebrity, has been fined for tax evasion.
Summary:
Earlier, Tanushree alleged MNS has been threatening her over the row involving Nana Patekar.
Summary:
Asian Games steeplechase gold medallist, Sudha Singh, refused to accept â¹30-lakh prize money from UP CM Yogi Adityanath until she was promised a job with the state's Sports Directorate on Tuesday.
Summary:
Summary:
Calling Congress MP Digvijaya Singh a "BJP agent", BSP supremo Mayawati said, "Congress leaders like Digvijaya Singh don't wish for a Congress-BSP alliance.
Summary:
Two more lions died in Gir National Park & Wildlife Sanctuary on Monday, taking the death toll to 23 in last 20 days.
Summary:
Tiwari was admitted to the hospital nearly 35 minutes after being shot, the report added.
Summary:
The pilots who were found drunk were punished, Air India claimed.
Summary:
Akhtar claimed his son was "murdered" by some members of Muslim community.
Summary:
A 45-year-old woman in Bihar was gangraped on the banks of the Ganga river when she had gone for a bath on Monday.
Summary:
A policeman in Uttar Pradesh's Hathras has been suspended for allegedly sodomising a teenager at a police outpost for 20 days.
Summary:
Kerala CM Pinarayi Vijayan on Wednesday said that the state government will not be filing a review petition against the Supreme Court's order allowing women of all ages to enter the Sabarimala temple.
Summary:
Envelopes suspected of containing ricin were reportedly sent to US President Donald Trump and Defence Secretary James Mattis.
Summary:
Tata Sky has dropped over 20 channels run by Sony Pictures Networks, including SAB and Max along with three TV Today Network channels like Aaj Tak and India Today TV.
Summary:
Sharing her thoughts on her last day as PepsiCo CEO after being at the position for 12 years, India-born Indra Nooyi in a letter to employees wrote, "Be good listeners." "When someone gives you feedback, assume positive intent...Think their words over, and be willing to challenge your assumptions," she added.
Summary:
In a letter to employees on her last day as PepsiCo CEO, Indra Nooyi quoted poet Rumi and wrote, "Goodbyes are only for those who love with their eyes." "Because for those who love with heart and soul, there is no such thing as separation," she added.
Summary:
A fan threw a cabbage at Steve Bruce, the coach of Aston Villa, ahead of the side's match against Preston.
Police have since confirmed they are trying to find the supporter who threw the cabbage at Bruce.
Summary:
Speaking about missing the Asia Cup 2018 due to the workload, India's captain Virat Kohli said, "I definitely needed a break because my back went once in South Africa and went again in England." "Definitely I am rejuvenated again.
Summary:
India's 2018 Under-19 World Cup-winning captain Prithvi Shaw, who is set to make his international debut against Windies on Thursday, said captain Virat Kohli is a "really funny guy".
"I am feeling very good, a bit nervous," he said about his debut.
Summary:
Salman Khan's bodyguard Shera, who was guarding former boxing champion Mike Tyson on his visit to India, said that the American boxer ate and liked chicken biryani and took home a traditional sherwani.
Summary:
Hacked Facebook accounts are reportedly being sold on the dark web for between $3 and $12, days after the social network revealed the data breach of 50 million users.
Summary:
Kishore Biyani-led Future Enterprises has agreed to buy a majority stake in Mumbai-based digital payments startup LivQuik.
Summary:
Uber said it is branding the scooters with JUMP for the sake of consistency for its other personal electric vehicle services.
Summary:
Maruti Suzuki India on Wednesday said it is recalling 640 units of its Super Carry mini trucks sold in the domestic market over a possible defect in fuel pump supply.
Summary:
A Japanese probe successfully landed a new observation robot, MASCOT, 10 days after two rovers were deployed on the same asteroid Ryugu, 300 million km away from the Earth.
Summary:
BSP chief Mayawati has announced "under no circumstance" her party would form an alliance with Congress for the upcoming assembly elections in Rajasthan and Madhya Pradesh.
Summary:
OnePlus CEO Pete Lau has come out with a detailed explanation surrounding the use of in-display fingerprint technology on its upcoming smartphone, the OnePlus 6T.
Summary:
Pakistan on Tuesday announced that Saudi Arabia will not be participating in the China-Pakistan Economic Corridor, a few days after announcing that Saudi Arabia will be a third strategic partner in the project.
Summary:
Saif Ali Khan has launched a new production house named 'Black Knight Films' and also announced a film titled 'Jawaani Jaaneman' under the banner.
Summary:
Japanese conglomerate SoftBank's Chairman Masayoshi Son has offered free solar power to International Solar Alliance member countries including India if they sign power purchase agreements with his company.
Summary:
Delivering his farewell speech, retired Chief Justice of India Dipak Misra said, "I'm indebted to the Bar for their assistance...and I go from here wholly satisfied.
Summary:
Gogoi became Chief Justice of Punjab and Haryana High Court in 2011 and Supreme Court judge in 2012.
Summary:
The compensation scheme was approved in July and covers personnel who had Delhi as their permanent residence.
Summary:
Women and Child Development Minister Maneka Gandhi has said the ministry has proposed to increase the age for lodging complaint to 30 years for those who were sexually abused as minors.
Summary:
However, Russia has denied developing any such missile system.
Summary:
The Malaysian Anti-Corruption Commission on Wednesday arrested Rosmah Mansor, wife of former Prime Minister Najib Razak, in relation to the multibillion-dollar 1MDB scandal.
Summary:
A 38-year-old man was rescued from under a collapsed building in Indonesia on Monday, after he survived for four days without food or water following a 7.5-magnitude earthquake and tsunami that hit the Sulawesi island on Friday.
Summary:
An MP from Theresa May's party has submitted a letter of no-confidence in the UK PM just minutes before her Brexit speech.
Summary:
The benchmark BSE index Sensex on Wednesday crashed 550 points to close at 35,975.63, dragged by the falling rupee and automobile, IT and telecom stocks.
Summary:
Late British biochemist Frederick Sanger remains the only person to be awarded the Nobel Prize in Chemistry twice.
Summary:
Australian cricketer Ben Cutting's girlfriend Erin Holland asked Afghanistan spinner Rashid Khan to look after Ben when he is in UAE for the upcoming Afghanistan Premier League.
Summary:
Ex-Sweden captain Zlatan IbrahimoviÃÂ, who turns 37 today, scored with a bicycle kick from 30 yards out over England goalkeeper Joe Hart in 2012.
Summary:
Uber has hired former Expedia executive Nikki Krishnamurthy as the ride-hailing startup's Chief People Officer (CPO).
Summary:
Some Tesla directors have proposed James Murdoch, a fellow board member at the startup, to succeed Elon Musk as Chairman, according to a New York Times report.
Summary:
Summary:
UP CM Yogi Adityanath on Tuesday handed over a cheque worth â¹40 lakh to the kin of Apple executive Vivek Tiwari, who was allegedly shot dead by a police constable last week.
Summary:
A CISF jawan who was deployed at a thermal power plant in Uttar Pradesh's Jhansi has gone missing after allegedly poisoning and bludgeoning his wife and their two young children to death, the police said.
Summary:
A man involved in at least 25 interstate bank robberies, accounting to around â¹70-80 crore, was arrested on Monday in a joint operation by Jharkhand police and Special Task Force from Dhanbad district of Jharkhand.
Summary:
Nine policemen were injured when violence broke out during a bandh called by Sri Jagannath Sena after a queue system was introduced on the Supreme Court's suggestion at Jagannath Temple in Odisha's Puri, said the police.
Summary:
The East Coast Railway is set to install automatic sanitary napkin vending machines in 90 compartments of 63 trains, an official said on Tuesday.
Summary:
A Saudi woman has lost a judicial battle to marry the man of her choice as a court deemed him "religiously unfit" because he plays a musical instrument.
Summary:
French luxury brand Chanel's spring-summer 2019 collection for Paris Fashion Week was showcased at the Grand Palais, which was converted into a beach for the show.
Summary:
The 2018 Nobel Prize in Chemistry has been awarded one half to Frances Arnold from the US and the other half jointly to US' George Smith and UK's Gregory Winter.
Summary:
PM Narendra Modi was presented with United Nations' highest environmental honour 'Champions of the Earth' in Delhi by UN Secretary-General António Guterres on Wednesday.
Summary:
Kerala CM Pinarayi Vijayan has said women who want to go to the Sabarimala Temple cannot be stopped.
Summary:
The US had earlier protested that the UN court had no jurisdiction to rule on the sanctions imposed on Iran.
Summary:
A consumer forum has ordered Wedding Wish, a Chandigarh matrimonial website, to pay over â¹70,000 to a 27-year-old former client, with â¹58,650 being the refund and â¹12,000 being the compensation and litigation costs.
Summary:
After Shakti Kapoor mocked Tanushree Dutta's alleged sexual harassment, Twitter users criticised him and brought up his involvement in a casting couch incident revealed through a sting operation in 2005.
Summary:
Binita Jain, the first to win â¹1 crore on 'Kaun Banega Crorepati' season 10, was asked, "Who invented the first stock ticker in 1867?" as the final question to win â¹7 crore.
Summary:
Prithvi Shaw, who led India to Under-19 World Cup victory in February this year, is set to make his Team India debut against Windies in the first Test on Thursday.
Summary:
Summary:
Several Instagram users in India and other countries reported on Wednesday that they were unable to log in to the Facebook-owned photo-sharing platform's website and mobile app.
Summary:
Minutes after taking oath, 46th Chief Justice of India Ranjan Gogoi on Wednesday said only those cases would be enlisted for urgent hearings when "somebody is going to be killed, evicted or hanged".
Summary:
Highlighting the need for an upgrade in the Indian Air Force, Air Chief Marshal BS Dhanoa on Wednesday said, "Both Rafale and S-400 air defence missile system deals are like a booster dose".
Summary:
The Kerala High Court has rejected the bail plea of former Jalandhar Bishop Franco Mulakkal, arrested 12 days ago for allegedly raping a nun multiple times.
Summary:
Murthy and three others were killed in a car-truck collision near Alaska in the US, where he had gone to attend GITAM Alumni meet on October 6.
Summary:
Following an 18-year campaign by women's groups, Australia has decided to scrap a 10% tax on tampons and sanitary pads.
Summary:
US President Donald Trump on Tuesday mocked the testimony of Christine Blasey Ford, who has accused his Supreme Court nominee Brett Kavanaugh of sexual misconduct.
Summary:
SB Mathur, the former non-executive Chairman of IL&FS, too had pleaded with the government and RBI seeking support.
The government took control of IL&FS earlier this month.
Summary:
Swedish telecom equipment maker Ericsson, in a petition to the Supreme Court, has urged to prevent Reliance Communications Chief Anil Ambani and two other senior executives from leaving India over â¹550 crore dues.
Summary:
Summary:
Former boxing champion Graciano Rocchigiani, who had won the IBF super-middleweight title as well as the WBC light-heavyweight title in his career, passed away aged 54 after being hit by a car in Southern Italy on Tuesday.
Summary:
Summary:
Reacting to the worldwide Instagram outage on Wednesday, a user tweeted, "Instagram is down.
Summary:
Google has acquired a US-based service automation startup called Onward which is co-founded by an Indian named Pramod Thammaiah.
Summary:
Marking the birth anniversary of Mahatma Gandhi in Maharashtra's Wardha on Tuesday, Congress President Rahul Gandhi said, "You tried PM (Narendra) Modi, he broke your trust.
Summary:
Claiming RSS and BJP are committed to constructing a Ram temple, RSS chief Mohan Bhagwat said, "Even opposition parties cannot openly oppose a Ram temple in Ayodhya as they are aware the deity is revered by a majority of Indians." However, he added, "Certain things take time...
Summary:
A tribal man carried his wife on his shoulders and ran for over three kilometres to admit her to a hospital in Telangana after she allegedly consumed pesticide.
Summary:
Rebuking sexual misconduct allegations against his Supreme Court nominee Brett Kavanaugh, US President Donald Trump said, "It's a scary time for young men in America." "You can be guilty of something that you may not be guilty of," he added.
Summary:
This time the brand gives you reasons why travelling with friends is a must-have experience.
Summary:
Justice Ranjan Gogoi on Wednesday took oath as the 46th Chief Justice of India (CJI) in front of President Ram Nath Kovind at the Rashtrapati Bhavan.
Summary:
Earlier, police used water cannons and tear gas to stop farmers from entering Delhi.
Summary:
Pawan claimed the incident isn't related to the alleged MNS mob attack on her car.
Summary:
Summary:
Summary:
Thirty-year-old British superbike racer Dan Linfoot escaped unhurt despite being run over during a superbike championship in Netherlands.
Summary:
Volkswagen has terminated its contract with jailed Audi CEO Rupert Stadler amid an ongoing emissions probe.
Summary:
Nicknamed 'The Goblin', the dwarf planet has a 40,000-year orbit with the closest distance to Sun at 65 astronomical units (AU) and farthest at 2,300 AU.
Summary:
A volcano erupted in Indonesia's Sulawesi on Wednesday morning, just days after a 7.5-magnitude earthquake and tsunami hit the same island that claimed at least 1,347 lives.
Summary:
Indian embassies had arranged LED projections highlighting Mahatma Gandhi's life and philosophy at over 120 locations globally.
Summary:
More than 200 patients were evacuated and reported to be safe.
There are no reports of anyone being trapped while firefighting operations are underway.
Summary:
The 'encounter' was found to be fake as Yadav, who was left paralysed, didn't have a criminal record.
Summary:
Hong Kong airport apologised for the incident and said that it had taken up the matter with the outsourced supplier.
Summary:
Suu Kyi is the first person to have her honorary Canadian citizenship revoked.
Summary:
US President Donald Trump on Tuesday claimed he warned Saudi King Salman bin Abdulaziz Al Saud he would not last in power "for two weeks" without the backing of the US military.
And I love King Salman," he said at a rally.
Summary:
The currency opened at 73.25 per dollar and touched 73.34 after MondayâÂÂs close of 72.91.
Summary:
Summary:
HTT believes that the capsule will be ready to convey passengers before the end of 2019.
Summary:
Days after Rajasthan CM Vasundhara Raje said she'll fight like a lioness to protect the state, Rajasthan Congress chief Sachin Pilot claimed that although Raje is a lioness, her biggest hunt is farmers.
Summary:
Summary:
BJP spokesperson Anil Baluni on Tuesday called Congress President Rahul Gandhi a "tape recorder of lies" and accused him of starting the "bad convention" of targeting his rivals with lies on a daily basis.
Summary:
After Congress President Rahul Gandhi claimed people would see "Made in Bhopal" tags on mobile sets if Congress comes to power, MP CM Shivraj Singh Chouhan accused Rahul of making "laughable" and "illogical" statements.
Summary:
Porsche on Tuesday announced a limited-edition red version of the 911 Speedster concept car first revealed in a silver hue earlier in June.
Summary:
Russian investigators have said the hole that caused an oxygen leak on the International Space Station (ISS) was made deliberately, the country's space agency chief Dmitry Rogozin said.
Summary:
French gangster Redoine Faid, who broke out of a jail in Seine-et-Marne using a hijacked helicopter in July, has been arrested.
Summary:
Former independent directors of crisis-hit Infrastructure Leasing & Financial Services (IL&FS) have written to new Chairman Uday Kotak extending their "complete support" in company's turnaround.
Summary:
However, Jalota was left disappointed when Jasleen refused to do so.
Summary:
Speaking about Tanushree Dutta's alleged sexual harassment, the Cine and TV Artists Association (CINTAA), said the incident is "regrettable" but added the case can't be reopened.
Summary:
Actress Radhika Apte has revealed that when she was in school, she and her classmates were made to clean toilets in school.
We were divided into two groups and we cleaned the toilets," she added.
Summary:
The group posted pictures of Liton's dismissal in the website's gallery section and asked ICC to explain how he was out.
Summary:
Hong Kong's Pakistan-born spinner Ehsan Khan, who dismissed MS Dhoni during Asia Cup 2018, said that he used to dream about dismissing Sachin Tendulkar and MS Dhoni.
"If Sachin is god, then Dhoni is the âÂÂkingâ of cricket," he added.
Summary:
The farmers are protesting over demands including farm loan-waiver and farmer-friendly crop insurance.
Summary:
Delhi Police have arrested two GoAir employees for allegedly stealing a consignment of 53 mobile phones while posing as passengers at the Indira Gandhi International Airport earlier this month.
Summary:
The farmers, who on Tuesday marched towards Delhi over demands including loan waiver and were stopped at the Uttar Pradesh-Delhi border, have rejected government's assurances and said the protests will continue.
Summary:
An official said the inmate first tried to escape when the guards chased him and then swallowed the phone, following which he complained of stomach ache.
Summary:
The ferry was en route from the German port of Kiel to Lithuania's Klaipeda.
Summary:
The US had scrapped an exception which allowed unmarried same-sex partners of UN diplomats to get visas to the country.
Summary:
Pakistan's Supreme Court has told Prime Minister Imran Khan to pay a penalty to get his posh home regularised.
Summary:
After purchasing a $32.5-million property in California's San Francisco in 2008, Khosla cut off entry to Martins Beach, a popular surf spot.
Summary:
Samarth is known for documentaries 'Kazwa: A Million Lanterns' and 'Unreserved'.
Summary:
India's former captain Anil Kumble said the Indian cricket team should let former captain MS Dhoni enjoy the game and that the team should not keep depending on him to be the finisher.
Summary:
Irving said that he learnt that certain thoughts are best kept in "intimate conversations".
Summary:
Juventus, playing without their new forward Cristiano Ronaldo, beat Young Boys 3-0, riding on a hat-trick from Paulo Dybala in the Champions League on Tuesday.
Summary:
Congress President Rahul Gandhi on Tuesday accused the central government of "brutally beating up" farmers at the Delhi border on International Day of Non-Violence and said, "Now farmers cannot even come to Delhi to air their grievances".
Summary:
It added that the Model Code of Conduct will not apply to government schemes and programmes announced before September 6, when the state assembly was dissolved.
Summary:
Indian physicist CV Raman was the first Indian to win the Nobel Prize in Physics in the year 1930.
Summary:
NASA astronaut Drew Feustel teamed up with Canadian rock band, The Tragically Hip, to record a music video from the International Space Station (ISS).
Summary:
Local Sub-Divisional Magistrate Kumari Anupama said, "The beer cans seem to have been destroyed by rats.
Summary:
Delhi Commission for Women (DCW) Chairperson Swati Maliwal on Tuesday said, "I am happy to not be branded a liberal...My stand varies from issue to issue." She added most people who are wedded to an ideology speak for the ideology, and not the cause.
Summary:
The police said the man allegedly strangled his wife inside the vehicle, and then hit it to give the impression that she died in an accident.
Summary:
Over 90% of the South China Sea is nclaimed by China.
Summary:
Iranian Ambassador to the UN Gholamali Khoshroo on Monday called Saudi Arabia the world's biggest sponsor of terrorism and referred to a WikiLeaks file that contained a speech of 2016 US Presidential nominee Hillary Clinton making a similar claim about the US' ally.
Summary:
Billionaire Anil Agarwal's Vedanta Resources formally delisted from the London Stock Exchange amid protests outside its final Annual General Meeting on Monday.
Summary:
An organisation for rights of Kashmiri Pandits has reportedly written to the UN over the picture's usage.
Summary:
An oil painting by late Chinese-French artist Zao Wou-Ki fetched $65 million (over â¹477 crore) in an auction at Sotheby's Hong Kong on Sunday.
Summary:
American physicist Arthur Ashkin, aged 96 years, became the oldest-ever person to win the Nobel Prize on Tuesday.
Summary:
US police have reopened a sexual assault case against Juventus forward Cristiano Ronaldo, which was first reported in 2009.
Summary:
According to police, the family must have slept with the inverter for their AC switched on after the electricity was restored, which caused leakage.
Summary:
Criticising External Affairs Minister Sushma Swaraj's UN speech, Congress MP Shashi Tharoor said, "She mentioned Narendra Modi 10 times during her address and spoke about/on behalf of India only five times." "If you use the UN as a political platform you can't hide behind the flag," he added.
Summary:
A video has surfaced online, wherein a girl can be seen slipping off the edge of a speeding Mumbai local train's compartment door, following which she is quickly pulled up by her co-passengers.
Summary:
Artists from nations like Pakistan, China and Germany are a part of the video.
Summary:
On an average, â¹71.29 lakh was spent annually for a member of Lok Sabha, while â¹44.33 lakh was spent on a Rajya Sabha member.
Summary:
The farmers belonging to Bhartiya Kisan Union, who were stopped from entering the National Capital at Uttar Pradesh-Delhi border, are demanding unconditional loan waiver and minimum support prices among other things.
Summary:
Indian spinner Ravichandran Ashwin said that he learned a couple of deliveries from 17-year-old Afghanistan spinner Mujeeb Ur Rahman while playing alongside him for the Kings XI Punjab in the Indian Premier League.
Summary:
Spence later continued officiating till the end of the match.
Summary:
The England Cricket Board trolled the Pakistan cricket team with their announcement about ticket sales for the matches against Pakistan in 2019.
Summary:
A 49-year-old spectator lost sight in her right eye after being hit by the ball following a tee shot by American golfer Brooks Koepka during Ryder Cup. The fan, who travelled to France from Egypt to attend the tournament, said she'll take legal action against the organisers to help cover medical bills.
Summary:
England's Football League Two side Notts County FC provided an opportunity for Roy Prentice, a 94-year-old fan, suffering from Dementia, to score a goal in front of the fans at the club's home ground Meadow Lane.
Summary:
Scientists have developed a three-person brain network called 'BrainNet' that connects participants' brains to send or receive thoughts.
Summary:
Alessandro Strumia, a senior scientist who said physics "was invented and built by men" has been suspended with immediate effect from working with the European nuclear research centre CERN.
Summary:
Summary:
Historian Irfan Habib on Monday accused the BJP-led central government of reducing the stature of Mahatma Gandhi to that of a "senior sanitary inspector" in pursuance of the Swachh Bharat Mission.
Summary:
The police reportedly got to know about the matter after receiving a complaint from a wildlife activist, and raided a house in Bhadrakali locality.
Summary:
Health Ministry officials confirmed that some batches of vials of the oral polio vaccines contaminated with the type-2 polio virus were administered to children in Uttar Pradesh, Maharashtra and Telangana.
Summary:
North Korea is estimated to have up to 60 nuclear weapons, South Korea's Unification Minister Cho Myoung-gyon informed the country's parliament.
Summary:
A US Border Patrol agent has pleaded guilty to "causing a fire without a permit" after he caused a wildfire last year that spread over 47,000 acres.
Summary:
The Yemeni rial has lost nearly half its value this year amid the ongoing civil war.
Summary:
A former Singapore-based managing director for Gunvor Group has been given a 12-year prison sentence in China for his role in evading Chinese tariffs on oil imports.
Summary:
The number of transactions jumped 30% during the month to 405.87 million while the value of the transactions recorded a 10.4% growth at â¹59,835.36 crore.
Summary:
Tanushree added she'd like to thank the Mumbai Police for their help.
Summary:
Actress Tanushree Dutta has said that she has not received any notice from actor Nana Patekar yet.
Summary:
After finding a suspicious suitcase in Rome Airport, the Italian Police cordoned off the area and blew up the unattended bag suspecting that it contained a bomb.
Summary:
Canadian physicist Donna Strickland on Tuesday became the first woman in 55 years to win the Nobel Prize in Physics.
Summary:
Swedish midfielder Kennedy Bakircioglu caught a beer thrown from the crowd while running and drank it to celebrate his 30-yard free-kick goal in a Swedish professional football league match.
Summary:
The proposal for 'Vegetarian Day' was aimed as a mark of respect to "India's most famous ambassador for vegetarianism".nn
Summary:
Reportedly, some students had approached the teacher with a complaint against the victim, following which the incident took place.
Summary:
The argument reportedly broke out when Anbalagan criticised Bedi and the Puducherry administration in his speech after which his mike was turned off.
Summary:
We are with the farmers." Delhi Police had used water cannons and tear gas to disperse the farmers after they broke barricades and blocked NH-24.
Summary:
Puducherry Chief Minister V Narayanasamy has tweeted a video of himself cleaning a drain with a spade as part of the 'Swachhata Hi Seva' movement.
Summary:
Police said the accused might have come to the nearby slum for buying drugs and accidentally shot Rupesh.
Summary:
A 44-year-old woman arrested in West Bengal for allegedly being a part of an inter-state kidney smuggling racket sold her own kidney before joining the racket, police said on Monday.
Summary:
Praising Narendra Modi-led government's Swachh Bharat Mission, co-founder of Microsoft Bill Gates said India is on the right track to meet its sanitation goals.
Summary:
Saudi Arabia has put on hold a $200 billion plan with SoftBank to build the world's biggest solar-power-generation project, the Wall Street Journal reported.
Summary:
The government on Monday ordered an investigation by the Serious Fraud Investigation Office (SFIO) into Infrastructure Leasing & Financial Services (IL&FS) and its subsidiaries.
Summary:
The move will benefit over 350,000 workers, including part-time, temporary and seasonal employees, the e-commerce and cloud services giant said.
Summary:
American physicist John Bardeen won the Nobel Prize in Physics in 1956 as well as 1972.
Summary:
The third-choice goalkeeper in Germany's World Cup 2014 title-winning team, Ron-Robert Zieler, conceded an own-goal after the VfB Stuttgart goalkeeper watched the ball roll into his net following a teammate's throw-in.
Summary:
The robot is aimed for replacement of labour for constructing structures such as buildings, aircraft, and ships.
Summary:
Allen said that he was diagnosed with non-Hodgkin's lymphoma (NHL) which he was also treated for in 2009.
Summary:
Sridhar Ramaswamy, Google's head of advertisements and commerce, is leaving the company after more than 15 years, the technology major has confirmed.
Summary:
A video shows UPA Chairperson Sonia Gandhi and her son, Congress President Rahul Gandhi, washing their plates after having lunch at Sevagram Ashram in Maharashtra's Wardha on the birth anniversary of Mahatma Gandhi.
Summary:
Hong Kong automaker Infiniti has unveiled Project Black S concept car, inspired by Formula One "dual hybrid" system that can recuperate electricity while braking and accelerating.
Summary:
A woman was allegedly raped by two persons in the Muzaffarnagar district of Uttar Pradesh on Sunday, the police have said.
Summary:
US President Donald Trump on Monday mocked a reporter, saying, "I know you're not thinking, you never do." The reporter then asked Trump regarding the FBI investigation into his Supreme Court nominee Brett Kavanaugh, who is facing sexual misconduct allegations.
Summary:
Brexit negotiations have hit an impasse after EU leaders rejected UK PM Theresa May's 'Chequers plan'.
Summary:
UK airline easyJet's billionaire Founder Stelios Haji-Ioannou is suing Netflix over its series 'Easy', arguing it infringes on more than a thousand of his European trademarks.
Summary:
Actress Tanushree Dutta has said she wants Bollywood to come forward and say that they will not work with actor Nana Patekar.
Summary:
Summary:
Hong Kong's Christopher Carter has retired from all forms of cricket aged 21 to pursue his childhood dream of becoming a pilot.
Summary:
An eco-friendly public toilet, built at an estimated cost of â¹90 lakh and said to be Mumbai's costliest public toilet, has been opened at Marine Drive.
Summary:
Railway Minister Piyush Goyal has posted a video on Twitter showing 70 Railway employees performing a flash mob at Mumbai's Chhatrapati Shivaji Maharaj Terminus on the eve of Gandhi Jayanti.
Summary:
Addressing the closing session of Mahatma Gandhi International Sanitation Convention on Tuesday, PM Narendra Modi listed the '4Ps' that are necessary to make the world clean.
Summary:
Hugging corpses of a father and daughter have been found in earthquake and tsunami-hit Indonesia.
Summary:
Kuwait has cut its oil exports to the US to zero over four weeks through late September for the first time since the 1990-91 Gulf War, data provided by the US Energy Information Administration revealed.
Summary:
Summary:
The company had issued secured redeemable Non-Convertible Debentures (NCDs) aggregating to â¹90 crore to LIC in December 2008.
Summary:
The International Monetary Fund (IMF) on Monday appointed Kolkata-born Harvard professor Gita Gopinath as its first female Chief Economist.
Summary:
Summary:
Neeru, who was suffering from fever for last few days, died after collapsing in her bathroom, as per reports.
Summary:
Amitabh Bachchan, in his blog, wrote that Krishna Raj Kapoor kept the "vast family of celebrated individuals" together as one bond.
Summary:
Summary:
Summary:
Summary:
This is India's largest ever Youth Olympics contingent.
Summary:
Shane Warne, Australia's spin legend, called Australia's World Cup-winning former captain Steve Waugh as "the most selfish player" he has ever played with, in his soon-to-be-released book 'No Spin'.
Summary:
Japanese tennis player Naomi Osaka, who beat Serena Williams to lift her maiden Grand Slam title at the US Open 2018, said that her victory in the final was "bittersweet".
Summary:
Prime Minister Narendra Modi officially launched the emoji of Mahatma Gandhi on Twitter, the company said in a statement.
Summary:
Summary:
Amazon India's logistics arm, Amazon Transportation Services, has posted a 60% rise in revenue at â¹1,574 crore in FY18, compared to â¹991 crore for the previous year, as per filings.
Summary:
Summary:
He allegedly told his niece that her father would die if the 'manglik dosh' wasn't treated.
Summary:
An Iranian diplomat was arrested with two others over suspected links to the foiled bomb plot.
Summary:
The 93-year-old has been in the past accused of anti-Semitism for his attacks against Jews.
Summary:
The 2018 Nobel Prize in Physics has been awarded for inventions in laser physics with one half to Arthur Ashkin and the other half to Gérard Mourou and Donna Strickland.
Summary:
Delhi police on Tuesday used water cannons and tear gas to disperse farmers after the protesters broke barricades and blocked NH-24 at UP-Delhi border.
Summary:
The confirmed death toll in Indonesia rose to 1,234, from 844 after the 7.5-magnitude earthquake and tsunami hit Sulawesi island on Friday.
Summary:
The teaser of the Kangana Ranaut starrer 'Manikarnika' was released on Tuesday.
Actor Amitabh Bachchan's narration featured in the teaser of the film, which is based on Rani Lakshmi Bai of Jhansi.
Summary:
Former Facebook VP of News Feed Adam Mosseri has been appointed the new head of Instagram following the resignation of Instagram Co-founders Kevin Systrom and Mike Krieger last week.
Summary:
After 2 NCP members resigned over his remarks purportedly backing PM Narendra Modi in Rafale deal, NCP chief Sharad Pawar has clarified that he did not support anyone in the fighter jets deal with France.
Summary:
Samajwadi Party chief Akhilesh Yadav on Monday met the family of Apple executive Vivek Tiwari who was shot dead by a policeman in Lucknow and demanded â¹5-crore compensation.
Summary:
"It was a pre-planned blast.
They had planned to kill me," RoyÃÂ claimed.
Summary:
The Andhra Pradesh government on Monday informed the Supreme Court that the temporary building for the functioning of its High Court will be ready by December this year.
Summary:
A police constable had opened fire on him after he allegedly did not stop his car during a patrol inspection.
Summary:
Questioning why the farmers' protest rally was stopped at the UP-Delhi border, Bhartiya Kisan Union President Naresh Tikait on Tuesday asked who they should approach for their problems if not the government.
Summary:
The Indian Navy has diverted INS Tir, Sujata and Shardul, which were on deployment to Singapore, to earthquake-hit Indonesia for humanitarian assistance and disaster relief.
Summary:
During his first visit to India as the UN Secretary-General, Antonio Guterres paid tribute to Mahatma Gandhi on his birth anniversary at Rajghat in Delhi.
Summary:
Summary:
Twenty-one lions have died in Gir Wildlife Sanctuary and National Park from September 12-30, Gujarat forest department said.
The department, which so far maintained that deaths were because of infighting, admitted some lions had succumbed to virus infections.
Summary:
Executive Director of the Nobel Foundation Lars Heikensten has said that some of the actions Aung San Suu Kyi has taken as Myanmar's leader are "regrettable" but her Nobel Peace Prize will not be withdrawn.
Summary:
"Can you imagine if I had alcohol, what a mess I'd be?" he joked.
Summary:
During a White House press conference on Monday, President Donald Trump said, "I think the press has treated me unbelievably unfairly." "When I won the 2016 US presidential election I thought the press would treat me fairly but they got worse," Trump added.
Summary:
New satellite images have been released showing the destruction caused by the 7.5-magnitude earthquake and tsunami in the Indonesian city of Palu.
Summary:
Salman Khan, while talking about his upcoming production 'Loveyatri' which will mark his brother-in-law Aayush Sharma's Bollywood debut, said, "[Aayush] is a soft-hearted and beautiful person.
Summary:
Varun Dhawan will have a cameo in Salman Khan and Katrina Kaif starrer 'Bharat' but whether he will be a part of a song or will play a role in the film is unclear, as per reports.
Summary:
She can be seen wearing a puffer metallic jacket in the shade of gold by Tommy Hilfiger.
She has paired the jacket with gold earrings by Misho.
Summary:
Saif Ali Khan, while talking about the media attention that his son Taimur Ali Khan gets, said that it is his and wife Kareena Kapoor Khan's job to keep Taimur balanced.
Summary:
E-commerce marketplace operator Groupon has agreed to pay IBM $57 million both to settle patent infringement claims, as well as to licence patents from IBM in the future.
Summary:
Summary:
Turkish President Recep Tayyip ErdoÃÂan on Monday said that the US has embarked on a false path of solving political problems not through negotiations, but through the language of blackmail and threats.
Summary:
The Central Information Commission (CIC) on Monday brought Indian cricket governing body BCCI under the RTI (Right to Information) Act. The commission also directed BCCI to put online and offline mechanisms in place within 15 days to receive RTI queries.
Summary:
Speaking about being criticised for revealing his relationships in his memoir, Nawazuddin Siddiqui said he regrets naming the women while adding, "Only 5 of those pages were written about over and over again." He added he was only trying to tell the truth.
Summary:
Preity's advocate told the court she's willing to settle the matter if Wadia is ready to apologise.
Summary:
The actors then have them replaced with other potential targets, Raveena added.
Summary:
His wife Lakshmi was also in the car when it hit a tree while they were returning from visiting a temple.
Summary:
Assam's Binita Jain, who became the first crorepati on 'Kaun Banega Crorepati' season 10, revealed on the show that in February 2003, her husband didn't return from a business trip.
Summary:
Following the Supreme Court verdict allowing entry of women of menstruating age in Sabarimala Temple, the Kerala government will reserve 25% seats in buses and make separate toilets for women pilgrims.
Summary:
Before his retirement as CJI, Supreme Court decriminalised gay sex and adultery besides making Aadhaar optional.
Summary:
PM Narendra Modi and President Ram Nath Kovind on Tuesday paid tribute to Mahatma Gandhi on his 149th birth anniversary at Rajghat in Delhi.
Summary:
"They really charge tremendously high tariffs.
However, the US leader acknowledged that India had "substantially" reduced the tariff on motorcycles.
Summary:
Pakistan has cut the size of the biggest China-Pakistan Economic Corridor (CPEC) project in the country by $2 billion, citing concerns about its debt levels.
Summary:
GE shares have fallen 81% since their record in August 2000, when the 126-year-old company was worth around $600 billion.
Summary:
The Reserve Bank of India (RBI) on Monday said it would inject â¹36,000 crore liquidity into the system through purchase of government bonds in October amid fears of a potential credit crunch.
Summary:
Anupam Kher, who is currently shooting in New York, said he always tries his best to meet Sonali Bendre, adding, "I make sure I talk to her and create positive vibes around her always." "We both talk about who'll be able to return back home first.
Summary:
RJD leader Tejashwi Yadav has said that marriage can wait but politics cannot and added that he will marry only after the 2019 Lok Sabha elections.
Summary:
Former Finance Minister P Chidambaram on Monday asked why the BJP-led NDA government was buying only 36 Rafale fighter jets if they were cheaper as claimed by the government.
Summary:
Gurugram-based agriculture startup Origo Commodities has raised nearly â¹80 crore in funding from Netherlands-based Oikocredit, Triodos Investment Management, and Caspian SME Impact Fund IV.
Summary:
Researchers have developed a three-person brain network called 'BrainNet' that lets participants send or receive thoughts from each other.
Summary:
At least four people were arrested on Sunday for allegedly beating up a woman and her uncle after tying them to a tree in Uttar Pradesh's Sattijor village last week on the suspicion of having an illicit affair.
Summary:
The Rajasthan Police said that it's an attempt by the police to educate, inform and sensitise people about crime and laws.
Summary:
The move will be implemented with the ongoing applications for the Engineering Services Examination, 2019.
Summary:
Deb further said he also comes from a poor family but he's not "poor from heart".
Summary:
Following the resignation, he backtracked saying he had not quit "yet" and that he was disappointed with the state government because it did not implement any of his suggestions.
Summary:
One of the men pictured with Macron is reportedly a convicted robber.
Summary:
Landlocked Bolivia lost access to the Pacific Ocean after a war with Chile in the 19th century.
Summary:
Chief Operating Officer Albert Bourla will become the next CEO while Read will serve as Executive Chairman.
Summary:
The Unique Identification Authority of India (UIDAI) has asked telecom companies to submit a detailed plan on discontinuation of Aadhaar-based authentication.
Summary:
The sedan gets SkodaâÂÂs signature black grille with a chrome surround sitting on glossy black 16-inch Clubber alloy wheels.
The blacked out projector headlamps get white bulbs and LED daytime running lamps.
Summary:
She received her PhD in Economics from Princeton University in 2001 after earning a BA from Lady Shri Ram College, and MA degrees from Delhi School of Economics and University of Washington.
Summary:
The family of Vivek Tewari, the Apple executive who was shot dead, met UP CM Yogi Adityanath who promised to give them â¹40 lakh, a house and a government job to his wife.
Summary:
Calling for the legalisation of cultivation, sale and consumption of opium, Punjab minister Navjot Singh Sidhu said, "Opium should be grown in Punjab." He added that opium is way better than 'chitta' (heroin).
Summary:
The National Company Law Tribunal has allowed the government to take control of Infrastructure Leasing & Financial Services (IL&FS) by replacing all its board members.
Summary:
The Soviet Union launched the world's first artificial satellite Sputnik I in October 1957.
Summary:
Hollywood actress Emma Watson has penned an open letter for Indian dentist Savita Halappanavar, who passed away in 2012 following a septic miscarriage after being denied abortion in Ireland.
Summary:
Summary:
Co-working space GoWork recently announced the launch of its second co-working campus in Gurugram.
Summary:
University of Texas' 70-year-old Allison studied a known protein, whose immune system braking mechanism can be exploited to attack cancer cells.
Summary:
Summary:
During his farewell speech on Monday, outgoing Chief Justice of India Dipak Misra said, "Truth has no colour." "We must stand for what's true with courage...Tears of a poor man are the same as tears of a rich man," he added.
Summary:
"If you require a higher daily cash withdrawal limit, please apply for a higher card variant," SBI said.
Summary:
India coach Ravi Shastri, who was criticised after India lost the Test series against England, said he doesn't have time for what people say about him.
Summary:
Ireland's Data Protection Commission has asked Facebook to submit more details of the breach.
Summary:
BSP supremo Mayawati on the death of Apple executive said, "If I were the Chief Minister, I would have first taken action against the involved cops, and only then met the victim family.
Summary:
Digital payments startup Paytm's e-commerce arm, Paytm Mall, is reportedly in talks to acquire a majority stake in online grocery provider BigBasket.
Summary:
Summary:
Canadian scientist Frederick Banting won the Nobel Prize in Medicine in 1923 at the age of 32 and remains the youngest Medicine Nobel Laureate till date.
Summary:
In response, NASA had said, "Mars...is the property of all humanity, not two or three guys in Yemen."
Summary:
The deceased's sister said that her brother was killed because of his alleged love affair with his student who is a Muslim girl.
Summary:
The airport received a threat of a bomb on the flight that was to reach the city, after which CISF commandos boarded the plane for search operations.
Summary:
Delivering his farewell address on Monday, outgoing CJI Dipak Misra said Indian judiciary is the 'most robust institution' in the world and young lawyers were assets having potential to develop the jurisprudence.
Summary:
Several nations had called on the Maldivian government to release Gayoom and other opponents of Yameen.
Summary:
Rising food prices and the falling value of Yemen's currency have contributed to the worsening situation in the country.
Summary:
Japanese politician Yuka Ogata was asked to leave an assembly chamber after she refused to apologise for speaking with a cough drop in her mouth.
Summary:
American industrial conglomerate General Electric (GE) on Monday ousted John Flannery as Chief Executive Officer (CEO) just 14 months after he took over the struggling company.
Summary:
Nana's lawyer Rajendra Shirodkar said that the notice denies the allegations made by Tanushree and seeks an apology from her.
Summary:
Actor Ayushmann Khurrana has revealed that after his wife Tahira Kashyap was diagnosed with breast cancer, both of them went to watch the film 'Manmarziyaan' the same evening.
Summary:
Speaking about Tanushree Dutta's alleged sexual harassment by Nana Patekar, her father Tapan Dutta said, "Nana would've been behind the bars had police taken action against the accused." "We still don't know about the status of the FIR filed by Tanushree," he added.
Summary:
Pacer Mohammed Siraj, who recently earned his maiden Test team call-up, revealed when he broke into T20I team, captain Virat Kohli told him, "Tension mat le, ground pe baat karenge.
He took away the pressure," Siraj added.
Summary:
India pacer Mohammad Shami has asked for a gunman for security after claiming he has received death threats from his wife Hasin Jahan, according to reports.
Summary:
Indian-American biochemist Har Gobind Khorana jointly won the 1968 Nobel Prize in Physiology or Medicine for "interpretation of the genetic code and its function in protein synthesis".
Summary:
NASA has unveiled its plan for building commercial spaceflight partnerships, long-term human deployment on and around the Moon with the eventual goal to send astronauts to Mars.
Summary:
India's initiatives such as 'Save the Girl Child, Educate the Girl Child' are "emblematic" of the types of actions needed to achieve Sustainable Development Goals (SDGs), UN Secretary General Antonio Guterres has said.
Summary:
In his tweets, Kejriwal questioned why Tiwari was killed when he was a Hindu, adding, "BJP is not a Hindu-friendly party".
Summary:
Tripura CM Biplab Deb said one of PM Narendra Modi's brother drives auto, another is a grocer while his mother still lives in a 10X12 house.
Summary:
I will respond from my mind in the evening." Misra, who was appointed Chief Justice in August 2017, will be succeeded by Ranjan Gogoi.
Summary:
Chief Justice of India Dipak Misra during his farewell address on Monday said, "I do not judge people by history, I judge people by their activities and their perspectives".
Summary:
His detention exceeding 24 hours was untenable, the court added.
Summary:
Over seven lakh Rohingyas had fled the Myanmar military's crackdown in the Rakhine State last year.
Summary:
A Swedish court on Monday found 72-year-old Jean-Claude Arnault, husband of a Nobel Prize-awarding committee member, guilty of rape and sentenced him to two years in jail.
Summary:
Yes Bank's decision to request RBI to extend CEO Rana Kapoor's tenure is not in the best interests of the lender, Co-founder Ashok Kapur's widow Madhu Kapur told the board.
Summary:
India must restrict imports of luxury goods instead of hiking interest rates to tackle widening current-account deficit and support the rupee, PM's Economic Advisory Council member Rathin Roy said.
Summary:
Celebrities including Amitabh Bachchan, Kajol, Anil Kapoor and Sanjay Dutt attended the funeral of late actor and filmmaker Raj Kapoor's wife Krishna Raj Kapoor, who passed away on Monday due to cardiac arrest.
Summary:
Sharing her fiancé, Nick Jonas' photo with other football players including Bollywood celebrities, Priyanka Chopra captioned it, "Bae in Bombae." Nick, who is currently in Mumbai, was seen playing football with MS Dhoni, Aditya Roy Kapoor, Kunal Kemmu, Ishaan Khatter and Shabir Ahluwalia.
Summary:
Reacting to the video of Tanushree Dutta's car being attacked in 2008, Raveena Tandon tweeted, "Trace these scumbags even now, register a case, lock them up." "Shudder to think what she went through.
Summary:
Summary:
He said that the amendment was "slavery in disguise meaning that it never ended".
Summary:
Commenting on the sexual harassment allegations made by Tanushree Dutta against Nana Patekar, Pooja Bhatt said, "I don't think we should silence those voices." "If there is a complaint about someone, you should not count it out," she added.
Summary:
A regulatory policy being passed by the Delhi government has reportedly proposed to fine cab aggregators like Ola and Uber at least â¹25,000 for refusing trips.
Summary:
Flipkart-owned payments platform PhonePe is reportedly looking to raise $1 billion by next year from investors outside of Walmart.
Summary:
Former Pakistan President Pervez Musharraf is "growing weaker rapidly" due to an unspecified illness and cannot return to the country to face the treason case against him just yet, a senior leader of his party has said.
Summary:
"He is viewed as a traitor in Pakistan.
So we have to bridge this gap," Pakistan's Foreign Minister Shah Mahmood Qureshi said.
Summary:
The 2018 Nobel Prize in Physiology or Medicine has been awarded jointly to American scientist James Allison and Japanese researcher Tasuku Honjo "for their discovery of cancer therapy by inhibition of negative immune regulation".
Summary:
Tanushree Dutta, who recently spoke up about how Nana Patekar allegedly misbehaved with her in 2008, said, "My throat is swollen...I'm unwell because of the exhaustion of the last few days." Tanushree further said she was interacting with media for up to 16 hours a day for the sake of "this movement".
Summary:
Talking about her cousin Priyanka Chopra telling her on a video call about Nick Jonas proposing to her, actress Parineeti Chopra said, âÂÂShe showed me the ring and I almost fainted.â She added, "They were like we had to tell you first.
Summary:
Summary:
Salman Khan has said he does not think "sex or skin" can sell a film.
Summary:
The Supreme Court has waived the mandatory six-month cooling-off period to grant a couple divorce, exercising its power under the Constitution to do "complete justice".
Summary:
Union Minister Kiren Rijiju has tweeted a video in which his daughter pleads him to come to her school for 'Grandparents Day' celebrations as her grandparents were unavailable.
Summary:
Special Police Officer Adil Bashir, who fled with seven AK-47 rifles while on duty at a PDP MLA's residence, has reportedly joined terror outfit Hizbul Mujahideen.
Police said they are investigating the veracity of the photograph.
Summary:
A 27-year-old Secunderabad man allegedly committed suicide for being chided by his wife over continuously chatting with a female friend on WhatsApp, police said on Sunday.
Summary:
Punjab minister Navjot Singh Sidhu has called for legalisation of cultivation, sale and consumption of opium, saying, "My uncle used to get opium as medicine from hospital.
Summary:
A Chennai woman committed suicide after her husband justified his affair with another woman, saying she couldn't stop him as Supreme Court recently ruled adultery was not a crime anymore.
Summary:
A minister in Pakistan Prime Minister Imran Khan's government was seen sharing the stage with Jamaat-ud-Dawah chief and 26/11 Mumbai attack mastermind Hafiz Saeed.
Summary:
Summary:
The family of Apple executive Vivek Tiwari, who was shot dead by a policeman in Lucknow, on Monday met Uttar Pradesh CM Yogi Adityanath.
Summary:
Bandhan Bank shares fell 20% to a record low on Monday after RBI barred the bank from opening new branches and froze CEO Chandra Shekhar Ghosh's salary at the current level.
Summary:
Summary:
Riddhima Kapoor Sahni, daughter of Rishi Kapoor and Neetu Kapoor, posted an old picture with her late grandmother Krishna Raj Kapoor and wrote, "I will always love you- RIP dadi." Krishna, who was late actor and filmmaker Raj Kapoor's wife, passed away on Monday aged 87.
Summary:
Varun Dhawan, while commenting on the sexual harassment allegations made by Tanushree Dutta against Nana Patekar, said, "It takes great courage to talk like that...I applaud that courage." He added that if a person is openly talking about it, we should hear that person out.
Summary:
Ex-Team India captain Sourav Ganguly has said that he gets surprised every time he doesn't see Rohit Sharma's name in the Test team.
Summary:
After scoring 87 runs and taking 10 wickets in Asia Cup, Afghanistan's 20-year-old cricketer Rashid Khan has become the top-ranked all-rounder in ODI cricket, as per the latest ICC rankings.
Summary:
Five-time Grand Slam champion Martina Hingis took to social media on her 38th birthday on Sunday to announce that she is pregnant.
Summary:
Venkataswamy is known for developing a high quality, low-cost service delivery model called Aravind that has restored the eyesight of millions of people.
He is also known to have coined the term 'needless blindness'.
Summary:
Moka was founded in 2014 to provide payment solutions for small and medium businesses.
Summary:
It comes within 10 months after the startup raised about $1.4 million from Fireside Ventures last year.
Summary:
Delhi-based online poker startup 9stacks has raised â¹28 crore in a Series A funding round led by WaterBridge Ventures and existing investors.
Summary:
President Joko Widodo "authorised us to accept international help for urgent disaster-response", Indonesian authorities said.
Summary:
The government has sought National Company Law Tribunal's approval to replace the management of Infrastructure Leasing and Financial Services (IL&FS), which has a debt of over â¹91,000 crore.
Summary:
Late actor and filmmaker Raj Kapoor's wife Krishna Raj Kapoor passed away on Monday at the age of 87.
She is survived by her five children including actors Rishi, Rajiv and Randhir Kapoor.
Summary:
The attached assets include a London property worth â¹56.97 crore and two others in New York, valued at â¹216 crore.
Summary:
Actress Daisy Shah, who was an assistant choreographer for 'Horn 'Ok' Pleassss' and an eyewitness of Tanushree Dutta's alleged harassment on the film's set, said the windshield of her car did crack that day.
Summary:
She claimed Nana Patekar sent them to attack her car as it took place after he misbehaved with her on sets of his film.
Summary:
A video shows Bihar minister Bijendra Prasad Yadav refusing to wear a skull cap offered to him at an event on Sunday.
Summary:
Over 150 former prisoners were offered jobs at a Telangana prisons department's recruitment drive which saw participation from firms like Flipkart, Swiggy, Karvy and HDFC.
Summary:
Italian sports car maker Lamborghini has said that a consistent tax policy is needed for the company to make long-term business plans in India.
Summary:
"[T]o be certain, we must execute really well tomorrow (Sunday).
If we go all out tomorrow, we will achieve an epic victory beyond all expectations," Musk added.
Summary:
The premature obituary was in reference to the invention of dynamite by Alfred Nobel.
Summary:
A 24-year-old fisherman, who saved at least 60 lives in the Kerala floods, has died after being run over by a lorry and reportedly being left unattended for 30 minutes.
Summary:
Pakistan-occupied Kashmir's (PoK) PM Raja Farooq Haider Khan on Sunday said that his civilian helicopter, which violated the Indian airspace along the Line of Control, was fired upon by Indian Army.
Summary:
The Delhi Police on Saturday chased two men, who had robbed a Toyota Fortuner car, for more than 20 km and intercepted the vehicle in 30 minutes.
Summary:
According to police, the boys were in an inebriated condition when they poured petrol and set each other on fire.
Summary:
Former Karnataka CM Siddaramaiah has revealed he used to smoke 40 cigarettes a day.
It was the day, 31 years ago I stopped smoking," he said.
Summary:
A Ministry of Justice official said the inmates "escaped because they feared they would be affected by the earthquake".
Summary:
A Pakistani street vendor is being investigated after Rs 2.25 billion (over â¹133 crore) was found in his bank account.
I have billions...but I cannot use...it to improve my state of living," said the street vendor.
Summary:
The US and Canada on Sunday confirmed they had reached a deal, alongside Mexico, on a "new, modernised trade agreement", which is designed to replace the 1994 NAFTA pact.
Summary:
Mao's proclamation came after the end of the civil war fought between the Kuomintang (KMT)-led nationalist government and the Communist Party of China (CPC).
Summary:
Sharing a collage of posters of five of her films that released this year, Taapsee Pannu tweeted, "I think I can say with a big smile on my face, it's been a good year." "It surely made my path clearer to me," she further wrote.
Summary:
Actress Huma Qureshi, who attended Neha Dhupia's baby shower on Sunday, shared a picture and captioned it, "With the glowing gorgeous mama to be." Huma can be seen with Neha, Janhvi Kapoor, Karan Johar, Sonakshi Sinha and Kiara Advani in the picture.
Summary:
Pictures of actress Kangana Ranaut from the sets of her upcoming film 'Manikarnika: The Queen of Jhansi' have surfaced online.
Summary:
After Rohit Sharma was once again overlooked for the upcoming Test series against Windies, Indian spinner Harbhajan Singh tweeted, "[W]hat are the selectors thinking actually???
Summary:
Thailand has issued a formal apology and set up a separate custom access pathway in its five major airports for Chinese visitors after a Chinese tourist was assaulted by a security guard at an airport in Bangkok.
Summary:
Iran's Islamic Revolutionary Guard Corps (IRGC) has said it has fired missiles at militants in Syria in response to an attack on a military parade last month which left 25 dead and dozens wounded.
Summary:
North Korean leader Kim Jong-un has sent two Pungsan dogs as a gift to South Korean President Moon Jae-in through the Korean Demilitarised Zone (DMZ).
Summary:
North and South Korea on Monday began removing landmines along their border as part of a pact to reduce tension and build trust on the Korean peninsula.
Summary:
US President Donald Trump on Saturday said that India wants to have a trade deal with his country as it does not want him to impose tariffs.
Summary:
The Pakistani helicopter that violated the Indian airspace along the Line of Control in Jammu and Kashmir on Sunday was carrying Pakistan-occupied Kashmir's (PoK) PM Raja Farooq Haider Khan, according to Reuters.
Summary:
As per the details, the Defence Ministry has outstanding bills of â¹211.17 crore, Cabinet Secretariat and PMO â¹543.18 crore and External Affairs Ministry â¹392.33 crore.
Summary:
Dimple Kapadia, in an old interview with Anupama Chopra, had said she had seen the 'terrible' and 'dark' side of actor Nana Patekar.
Summary:
He was arrested along with four others and a total of 52.1 grams of heroin was found in the car in which they were travelling.
Summary:
Vicky Kaushal has revealed he tore up the offer letter for an IT job as he wanted to pursue acting.
So the next day, I set off to more auditions," said Vicky.
Summary:
Kajol has revealed that her husband Ajay Devgn has not watched her 1995 film 'Dilwale Dulhania Le Jayenge'.
Summary:
Chief Election Commissioner OP Rawat has said that Google, Facebook, and Twitter have committed to not allow election posts on their platforms during the last 48 hours ahead of polls.
Summary:
Users have claimed that Apple's iPhone Xs and iPhone Xs Max models do not start charging when the screen is off.
Users also claimed they have to ensure the screen is on and re-plug Lightning cables for charging to begin.
Summary:
A team of UCF astrophysicists has developed a scientifically based, standardised method for creating Martian and asteroid soil known as 'simulants'.
Summary:
The Delhi Police has arrested a man who posed as a DCP to extort money from truck drivers.
Summary:
IPS officer Rema Rajeshwari has shared a photo of a Telangana police officer Mujeeb-ur-Rehman consoling a female aspirant's crying baby outside the SCTPC exam centre while she was writing the examination.
Summary:
More than 30 children have been rescued from railway premises per day from January 2017 till August 2018, official data has revealed.
Summary:
Speaking about the situation in an evacuation centre, Risa Kusuma, a victim of the Indonesia earthquake and tsunami, said, "It feels very tense.
The 7.5-magnitude earthquake and tsunami that hit Indonesia on Friday has caused the death of 832 people so far.
Summary:
Congress President Rahul Gandhi has alleged that public money was being used to bail out infrastructure financier IL&FS, which for PM Narendra Modi means "I Love Financial Scams".
Summary:
Shareholders of Infrastructure Leasing & Financial Services (IL&FS), which is under â¹91,000 crore of debt, approved plans to raise money through debt and equity.
Summary:
Also, several MPs reportedly received spam calls after their profiles were accessed on the app.
Summary:
Google-owned YouTube hosts videos explaining how to hijack Facebook accounts using a tactic similar to one which led to the data breach of 50 million users.
Summary:
"Sushma ji in her...address emphatically dislodged Pakistan's hypocritical role in curbing terrorism in the region," he tweeted.
Summary:
Former UP CM Akhilesh Yadav on Saturday called the killing of Apple executive by a policeman in Lucknow a 'very unfortunate incident'.
Summary:
The car is believed to have crashed after coming off the road on Saturday.
Summary:
Madhya Pradesh Chief Minister Shivraj Singh Chouhan on Sunday called for the formation of an independent cow protection ministry in the state.
Summary:
BJP leader and Rajya Sabha MP Subramanian Swamy has said that there is no point holding talks with Pakistan as the country is run by the "ISI, military and terrorists" and further called Prime Minister Imran Khan a 'chaprasi' (peon).
Summary:
An RTI reply by Ministry of Home Affairs revealed that at least 109 people, including 56 security personnel, were killed in 2,855 incidents of cross-border firing by Pakistani forces since January 2016 to July 2018.
Summary:
The Maharashtra police arrested the leader after the eatery owner filed a complaint.
Summary:
President Ram Nath Kovind has given assent to the good samaritan bill of Karnataka, the first such legislation in India.
Summary:
The market value of TCS soared by â¹30,896.6 crore to â¹8.36 lakh crore while RIL's valuation surged â¹26,209.45 crore to â¹7.97 lakh crore.n
Summary:
Britain's decision to leave the European Union (EU) has cost the government ã500 million a week, according to a study published by Centre for European Reform.
Summary:
Actress Sarah Hyland, known for starring in American sitcom 'Modern Family', has revealed a friend sexually assaulted her after she got drunk at a party when she was in high school.
Summary:
Summary:
Summary:
In her series of tweets, Shefali hinted at Tanushree as a "forgotten small-time actress".
Summary:
Lucknow District Magistrate Kaushal Raj Sharma on Sunday said â¹25 lakh as compensation will be given to the family of the Apple executive who was shot dead by a police constable.
Summary:
The Boeing 737 plane then descended and slowed down, making an emergency landing on one engine.
Summary:
Reacting to Delhi CM Arvind Kejriwal's remarks, the wife of the Apple executive who was shot dead by a policeman, has said his killing shouldn't be politicised.
Summary:
Russian company Uralkali, the losing bidder of Force India F1 team, claimed 13 Indian banks lost out on ã40 million (â¹378 crore) due to "unfair" sale process.
Summary:
Muzammil Ibrahim, while commenting on the sexual harassment allegations made by Tanushree Dutta against Nana Patekar, said, "I wasn't present on the sets that day." "Like everyone else, I also got to know about it later that day.
Summary:
So, I am really excited." "I wouldn't have been more happy to be directed by Karan.
Summary:
KB Valsala Kumari, an IAS officer, visited Sabarimala during 1994-95, when she was 41, as part of her official duty, after the Kerala High Court allowed Kumari to visit the shrine.
Summary:
Rajkummar Rao will star in the sequel to the 2008 film 'Dostana', as per reports.
Rajkummar has been offered the film and the director of 'Dostana', Tarun Mansukhani, has been replaced by Karan Johar, reports suggested.
Summary:
Sunny Leone has posted a video on her social media where she can be seen dancing with her husband Daniel Weber on Daler Mehndi's song 'Balle Balle'.
Balle Balle!!" Sunny and Daniel can be seen wearing black clothes and performing a group dance in the video.
Summary:
Karnataka batsman Mayank Agarwal, who earned his maiden Team India call-up on Saturday, said his mother wasn't able to control her emotions when received the news.
Summary:
Apple has been hit with a lawsuit by Finnish company MPH Technologies accusing the iPhone maker of illegally using its patented secure messaging technology across Apple products.
Summary:
This comes after Facebook admitted that hackers broke into nearly 50 million users' accounts by stealing their 'access tokens' or digital keys.
Summary:
Congress MP Shashi Tharoor has slammed External Affairs Minister Sushma Swaraj for her speech at the 73rd session of the UN General Assembly, saying her address at the international platform was aimed at BJP voters.
Summary:
Also, Honda said it will recall 2.32 lakh cars over software issue for the rear camera display.
Summary:
UN Secretary-General António Guterres has said that India and the world body plan to step up cooperation "in the areas of countering terrorist financing and on the use of advance passenger information".
Summary:
Maharashtra police on Sunday said a poor family from Nashik allegedly disposed of the body of a 2-day-old infant in a plastic bag near Nashik civil hospital.
Summary:
Addressing an event commemorating the second anniversary of the surgical strikes, BJP General Secretary Ram Madhav has said India was facing the brunt of terrorism for the past 30 years.
Summary:
The Delhi High Court has restrained the publication and sale of 'Godman to Tycoon: The Untold Story of Baba Ramdev' till certain portions showing the yoga guru as an "ambitious villain" are removed.
Summary:
Greece and Macedonia had signed a deal in this regard in June.
Summary:
Syria has called on the US, France and Turkey to withdraw their troops from the country immediately, calling them "occupying forces".
Summary:
Palestine has challenged the US' decision to move its embassy to Jerusalem at the International Court of Justice, claiming it violates the Vienna Convention on Diplomatic Relations.
Summary:
China's recent crackdown on online gaming has adversely affected Tencent, whose main business is video games.n
Summary:
The government has set up a panel to review the Competition Act to ensure that the legislation is in line with the changing business environment.
Summary:
The earthquake hit the island of Sulawesi, following which tsunami waves swept away homes in the coastal city of Palu, home to 3,50,000 people.
Summary:
The helicopter flew near the Line of Control before returning to Pakistan territory, as per reports.
Summary:
Summary:
Tanushree Dutta, who accused Nana Patekar of sexual harassment, has said she hasn't received any legal notice from Nana yet and called him "bluffmaster gogo".
Summary:
Rohit Sharma, who led India to victory in the recently concluded Asia Cup, took to Twitter to share a picture of the Indian team celebrating with the trophy.
Summary:
The court ruling said that Apple didn't infringe on one of the university's patents.
Summary:
The Indian Navy requires at least 12 minesweeper ships and is currently left with only two, Rear Admiral Rajaram Swaminathan revealed.
Summary:
Fentanyl, which is 50 times more potent than heroin, could have potentially killed 40-50 lakh people if used in chemical warfare.
Summary:
"What we heard is a 'New Pakistan' cast in the mould of the old," India added.
Summary:
After criticism from the Opposition, Andhra Pradesh Finance Minister Yanamala Ramakrishnudu has returned â¹2.88 lakh he took from a government scheme to pay for his root canal treatment in Singapore.
Summary:
Egyptian activist-actress Amal Fathy has been given a sentence of two years on charges of "spreading false news" for uploading a video on Facebook, wherein she alleged that she faced sexual harassment at a bank.
Summary:
A Scotland-based cancer patient had to postpone a bucket list trip to New York after her visa waiver application was rejected as she mistakenly labelled herself a 'terrorist' on it.
Summary:
Anthonius Gunawan Agung, a 21-year-old air traffic controller, died while staying back alone to guide a passenger plane in taking off as the earthquake destroyed an airport's terminal in Indonesia.
Summary:
North Korea has said there is "no way" the country would abandon its nuclear weapons if it cannot trust the US.
Summary:
Talking about his relationship with North Korean leader Kim Jong-un, US President Donald Trump said he and Kim "fell in love" after the latter wrote him "beautiful and great" letters.
Summary:
The government has waived basic customs duty on 35 capital goods used for making mobile phone components to promote local handset production.
Summary:
Taapsee had to exit the sequel after facing issues with the dates of her other work commitments, reports suggested.
Summary:
Summary:
But they can't take away your voice...your courage!" "I've heard horror stories through the years of this predatory jungle.
Yes, they took away your career," Simi further wrote.
Summary:
Rishi Kapoor on Saturday took to Twitter and wrote, "I urge my well-wishers not to worry or unnecessarily speculate...I'm taking a short leave of absence from work to go to America for some medical treatment." "It's been 45 years plus of wear and tear at the movies.
Summary:
Kartik Aaryan, who will star opposite Jacqueline Fernandez in Hindi remake of Kannada film 'Kirik Party', has said that he's "very excited" to work with Jacqueline.
Summary:
Angad Bedi, who got married to Neha Dhupia earlier this year and is now expecting his first child, said that marriage and starting a family will help him become a better actor.
Summary:
Facebook has been sued by users in the US over claims that it negligently allowed hackers to compromise as many as 50 million accounts.
Summary:
It was ruled that the "public interest factors" weighed against granting Qualcomm's request for such a ban.
Summary:
Mocking the Supreme Court verdict which decriminalised adultery, Kerala Congress Working President K Sudhakaran said at a public gathering that the "mentally-ill judge" must reconsider the decision since it's against our family values.
Summary:
PM Narendra Modi on Sunday condoled the loss of lives in earthquake and tsunami which hit the parts of Indonesia.
Summary:
After protests by the Sikh community, Haryana CM Manohar Lal Khattar has clarified he cancelled his visit to a gurdwara in Karnal after the management refused to remove Jarnail Singh Bhindranwale's portrait from the langar hall.
Summary:
Under the deal, Musk will also have to comply with company communications procedures when tweeting about Tesla.
Summary:
Guptill's three toes were amputated after he met with a forklift accident aged 13.
Summary:
Twenty-three-time Grand Slam champion Serena Williams has released a video of herself singing Australian rock classic 'I Touch Myself' while covering her bare chest with her hands to promote breast cancer awareness.
Summary:
Replying to a tweet on whether there will be a proper investigation in the Apple executive's killing in Lucknow, Delhi CM Arvind Kejriwal wrote, "No. Even though Vivek Tiwari was a Hindu.
Summary:
The US has said that it is exploring ways to ensure supply of non-Iranian oil to its "friend" India, recognising its significant oil imports.
Summary:
The woman's husband allegedly committed suicide after being threatened by the Army man.
Summary:
External Affairs Minister Sushma Swaraj on Saturday called upon the United Nations to pass the Comprehensive Convention on International Terrorism (CCIT) to end Pakistan-sponsored terrorism.
Summary:
Four witnesses in the Pehlu Khan lynching case, including his sons, were allegedly shot at by unidentified men while they were on their way to depose in a court in Rajasthan's Alwar on Saturday.
Summary:
A family has alleged a private Tamil Nadu hospital kept their kin's body for three days, claiming they were still treating him and charged them for this period.
Summary:
According to police, the driver was in an inebriated condition and was caught after a 4-km chase.
Summary:
Parshuram Waghmare, an accused in journalist Gauri Lankesh's murder case, alleged that the Special Investigation Team offered him â¹25 lakh to â¹30 lakh to confess he committed the crime.
Summary:
The Punjab Police has registered a case after a false video showing CM Captain Amarinder Singh under the influence of some intoxicant went viral.
Summary:
Women between the age group of 10-50 couldn't traditionally enter the Sabarimala temple.
Summary:
Police said contact has been lost with the group which was to return to base camp on Saturday.
Summary:
Investment and Facilitation Joint Secretary Zarar Haider Khan was caught on CCTV stealing the wallet of the delegate after the latter complained.
Summary:
Borrell declared wealth of $3.21 million while education minister Maria Isabel Celaa reported wealth of $1.89 million.
Summary:
World's second richest person Bill Gates reportedly spent $171 million (â¹1,240 crore) to buy 14,500 acres of farmland in the US' Washington.
Summary:
Pakistan hiked its key interest rate by 100 bps to a three-year high of 8.5% on Saturday, citing rising inflation and concerns over large fiscal and current account deficits.
Summary:
Nana Patekar, who flew from Mumbai to Rajasthan for the shooting of his upcoming film 'Housefull 4', was not spotted on the sets of the film, as per reports.
Summary:
Commenting on the sexual harassment allegations made by Tanushree Dutta against Nana Patekar, Koena Mitra said, "Let's be honest, we need this gundagiri to stop!
Summary:
By the time Pakistan decided to resume, the umpires had awarded the match to England.
Summary:
League leaders Manchester City also registered a 2-0 win over Brighton.
Summary:
Daniel Sturridge scored in the 89th minute to help Liverpool register a 1-1 draw against Chelsea in the Premier League on Saturday.
The draw ended Liverpool's winning start to the Premier League season.
Summary:
The 15-year-old son of a government homoeopathic doctor was found dead after allegedly being abducted and stabbed almost 40 times by three of his friends in Patna.
Summary:
Home Minister Rajnath Singh on Saturday said he called UP CM Yogi Adityanath and sought "effective and just action" after an Apple India executive was allegedly shot dead by a policeman in Lucknow.
Summary:
nSri Lanka has imposed a series of measures to slow down imports of cars and luxury goods to support the country's currency, which has declined nearly 10% this year.
Summary:
After the merger of Bank of Baroda, Vijaya Bank and Dena Bank, the number of public sector banks will come down to 19.
Summary:
Actor Nana Patekar, while speaking about the sexual harassment allegations against him by Tanushree Dutta, said, "Mai camera se aankhein milakar har sawaal ka jawaab dena chahta hu." "I'm currently in Jaisalmer shooting.
Summary:
Swaraj noted that Pakistan had helped hide Osama bin Laden and has given a safe haven to Mumbai terror attacks mastermind Hafiz Saeed.
Summary:
The wife of 38-year-old Apple executive Vivek Tiwari, who was shot dead by the police in Lucknow on Saturday, has written to Uttar Pradesh Chief Minister Yogi Adityanath demanding a CBI probe into the matter and â¹1 crore in compensation.
Summary:
Vijaya Lakshmi Pandit was elected President of the eighth session of the United Nations General Assembly (UNGA) in 1953, becoming the first woman to head the organ.
Summary:
Actress Renuka Shahane, while supporting Tanushree Dutta in her allegations against Nana Patekar, wrote, "The men got all the support that any industry gives to powerful men.
Summary:
A 42-year-old actress from Tamil Nadu has claimed that senior journalist Prakash M Swamy has been sexually harassing her over the last few years, following the death of her husband.
The actress added that Swamy has also harassed other women.
Summary:
Indian opener Shikhar Dhawan has been dropped from the Test squad, while Mayank Agarwal and Mohammad Siraj have been handed their maiden Team India call-ups for the upcoming series against the Windies.
Summary:
Tesla CEO Elon Musk's fortune dropped by $1.6 billion on Friday, a day after the Securities and Exchange Commission (SEC) accused him of misleading investors with his tweets about taking the carmaker private.
Summary:
China has defended its decision to block India's bids at the UN to name Jaish-e-Mohammed (JeM) chief and Pathankot terror attack mastermind Masood Azhar a 'global terrorist', citing a lack of consensus among the concerned parties.
Summary:
Uttar Pradesh Chief Minister Yogi Adityanath on Saturday denied that the killing of Apple executive Vivek Tewari was an encounter and asserted that the probe will be handed over to the Central Bureau of Investigation (CBI), if required.
Summary:
External Affairs Minister Sushma Swaraj on Saturday called for an urgent reform in the United Nations (UN), adding "it must begin today" as "tomorrow could be too late".
Summary:
The woman who was in the car with Vivek Tewari, the Apple executive shot dead by a policeman in Lucknow, has said it made no sense when the policeman started shouting at them.
Summary:
Minister for External Affairs Sushma Swaraj on Saturday told the UN that India will not let the global body fail in achieving the Sustainable Development Goals (SDGs).
Summary:
US software giant Oracle on Friday said its President of Product Development, Thomas Kurian, resigned from his post effective immediately.
Summary:
Bollywood actor Ranbir Kapoor received an FC Barcelona jersey signed by Lionel Messi for his 36th birthday.
Summary:
Indian tennis player Sania Mirza, on talking about her baby, said, "I would hope, pray and wish for it to be a healthy child.
Summary:
Reacting to a Mohamed Salah-goal being named FIFA Goal of the Year, Cristiano Ronaldo said, "Salah deserved to win the Puskas award...
Summary:
American boxer Mike Tyson, who is on a visit to India, said tennis player Serena Williams was unfairly targeted during the US Open 2018 final but also said that the player could have handled herself better.
Summary:
Talking about self-driving car technologies, Apple Co-founder Steve Wozniak at a recent event said, "I've really given up." He added that artificial intelligence cannot read words on road signs and "know what they mean".
Summary:
Summary:
Earlier, Rahul Gandhi had referred to the increasing fuel prices and asked, "Whose pockets are being filled?"
Summary:
After the resignation of Nationalist Congress Party founding member Tariq Anwar, NCP General Secretary Munaf Hakim resigned from the party post on Friday.
Summary:
He thought he had a verbal agreement with the Saudi sovereign-wealth fund when he tweeted his plans to take Tesla private.
Summary:
Luxury carmaker BMW's motorcycle arm BMW Motorrad on Friday launched the new F 750 GS and F 850 GS motorcycle models in India.
Summary:
A 24-year-old man in Karnataka allegedly beheaded another man after their quarrel turned violent, and brought the severed head to a police station where he surrendered.
Summary:
The police on Friday filed an FIR against unknown persons for allegedly displaying the national flag upside down during a rally led by BJP leader Rajiv Jasrotia in Jammu and Kashmir's Kathua on September 27.
Summary:
She was informed of a 2014 Government Resolution mandating state employees in various departments to not have over two children.
Summary:
Tanushree Dutta's sister Ishita Dutta, while talking about Tanushree opening up about her alleged sexual harassment, said, "What she's trying to achieve is...she's trying to set an example." "If something like this happens, it's not your fault," she added.
Summary:
A batsman gets retired out when he retires for reasons other than injury, and doesn't resume innings.
Summary:
Shares of the company fell 2.6% on Friday, leaving them down around 7% this year.
Summary:
Short sellers who bet against Tesla made over $1.3 billion on Friday after the US Securities and Exchange Commission sued CEO Elon Musk for fraud, according to analytics firm S3 Partners.
Summary:
The case has "major public health significance" because it proves rats can pass the virus to people, researchers warned.
Summary:
Former Jammu and Kashmir CM Omar Abdullah on Friday tweeted a picture of a pair of red vinyl shorts that were part of luxury brand Gucci's Spring Summer 2019 collection for men.
Summary:
After Apple executive Vivek Tiwari was shot dead by a UP constable on Saturday, his brother-in-law said, "Was he a terrorist that police shot at him?" and demanded a CBI probe.
Summary:
Ankur Prakash, Wipro's Vice President for Manufacturing and Latin America, has resigned, marking the second senior management exit in less than 2 months at the IT firm.
Summary:
US electric carmaker Tesla's board backed CEO Elon Musk after the Securities and Exchange Commission sued the billionaire for his tweets about a buyout of the company.
Summary:
The Ministry of Corporate Affairs has ordered an inspection of Vakrangee's books for three financial years.
Summary:
The official Twitter handle of Mumbai Police has shared a meme on Amitabh Bachchan and Aamir Khan starrer 'Thugs of Hindostan'.
Reacting to the post, a Twitter user commented, "Mumbai police is too filmy."
Summary:
"I'm looking forward to it [the film]," he added.
Summary:
Ranveer Singh, while talking about his upcoming film 'Simmba' which will be directed by Rohit Shetty, said, "I am very lucky and I'm very blessed that I'm under the guidance of the king of the genre [Rohit]." "'Simmba' is a full-blown masala film.
Summary:
Each of the Indian cricket team's 100th international win has come under a different captain, with Rohit Sharma leading the side to its 700th international win in the Asia Cup final on Friday.
Summary:
The International Cricket Council has updated its code of conduct rules, introducing stricter punishments for ball-tampering alongside introducing an updated version of the Duckworth-Lewis-Stern (DLS) System.
Summary:
Sarah Taylor, England's second highest run-scorer in women's T20I cricket, will miss the upcoming World T20 due to anxiety issues.
Summary:
Google could reportedly pay about $9 billion this year to Apple to ensure that it remains the default search engine for iPhone's Safari browser on iOS.
Summary:
Google CEO Sundar Pichai has agreed to meet US President Donald Trump in an upcoming roundtable conference amid allegations of censoring conservative views online.
Summary:
Why is the PM not speaking on the price rise of petrol and diesel?" He added, "(PM) Narendra Modi tells people they are getting petrol at â¹50.
Summary:
Scientists have discovered two new species among lizards native to the Western Ghats, Monilesaurus Montanus (montane forest lizard) and Monilesaurus Acanthocephalus (Spiny-headed forest lizard).
Summary:
The Delhi Metro Rail Corporation has temporarily covered all mentions of FIITJEE's name from a station near IIT Delhi.
Summary:
A detective in the Mexican town of Metepec was burnt to death by a mob of around 100 people, reportedly over a rumour that he and three others were planning to abduct children.
Summary:
Russia approved the sale after its military jet was mistakenly shot down by Syria earlier this month.
Summary:
An AP Moller-Maersk cargo ship has successfully conducted a trial voyage through the melting Russian Arctic, which shows a potential new trade route from Europe to east Asia.
Summary:
WikiLeaks has released a document exposing a corrupt arms deal between France and the UAE, the weapons of which are currently being used in the civil war in Yemen.
Summary:
Amid continued criticism of the Venezuelan government for causing the economic and humanitarian crisis in the country, US President Donald Trump has said that Venezuela is "a mess" which needs to be "cleaned up".
Summary:
The 42-year-old was having sexual relations with the minor whom he met through a dating app.
Summary:
Actress Tanushree Dutta's spokesperson has claimed that actor Nana Patekar is still harassing her with "legal threats" and "intimidation tactics".
Summary:
Rohit Sharma, who led India to Asia Cup victory, has said his captaincy style is similar to that of MS Dhoni's.
"We always keep learning from Dhoni...because he was an amazing captain," Rohit added.
Summary:
Team India pacer Jasprit Bumrah took to Twitter to take an apparent dig at Jaipur Police, who had used his no-ball image on a signboard for a road safety message.
Summary:
BJP President Amit Shah has said that those raising slogans against India at JNU would be jailed under the BJP government.
Summary:
This comes six months after China's first space lab, Tiangong-1, went "out of control" and burned up in the atmosphere before hitting the Pacific Ocean.
Summary:
State-owned Hindustan Aeronautics Limited (HAL) on Friday announced it had recorded its highest-ever turnover of over â¹18,200 crore in FY 2017-18, against â¹17,600 crore in the previous year.
Summary:
The 26-year-old mother alleged she was raped twice at gunpoint by the officer who had been calling her for past three months and forcing her to keep sexual relations.
Summary:
Police recovered â¹8 lakh cash from him.
Summary:
An unexplored peak in the Himalayas will be named after late three-time PM Atal Bihari Vajpayee, Uttarakhand Tourism Minister Satpal Maharaj announced on Friday.
Summary:
The number of Indians who have been arrested for illegally entering the US has tripled in 2018, according to the US Customs and Border Protection (CBP).
Summary:
A UK court has denied bail to underworld don Dawood Ibrahim's aide Jabir Motiwala for the second time.
Summary:
Cable news channel CNN's billionaire Founder Ted Turner has said that he is suffering from a form of dementia that leaves him exhausted and forgetful.
Summary:
Commenting on the sexual harassment allegations made by Tanushree Dutta against Nana Patekar, 'Bheja Fry' actor Vinay Pathak said, "I think everybody including the production house, the directors and actors all should oppose [harrasment]." He added that an incident like this should not mar the talent of a brave woman.
Summary:
While Rajinikanth will be reprising his role as scientist Vaseegaran and the robot Chitti from the 2010 film 'Robot', Akshay will be playing a villain in '2.0'.
Summary:
A new picture of Kangana Ranaut shows her dressed as Rani Laxmibai standing against the backdrop of Lord Ganpati for her upcoming film 'Manikarnika: The Queen of Jhansi'.
Summary:
Ex-Pakistan captain Wasim Akram has said Pakistan's performance in Asia Cup 2018 was "embarrassing to see".
Pakistan lost 3 of their 5 matches, including twice to India.
Summary:
Summary:
Facebook allegedly blocked users from sharing stories about its security breach that compromised over 50 million accounts.
Summary:
Citing national security, the ministry had requested for sites like air bases and nuclear power stations to be blurred on GoogleâÂÂs satellite mapping services.
Summary:
Accusing PM Narendra Modi of betraying India's national interests and compromising its security, Congress leader Randeep Surjewala on Friday claimed there was a "mahagathbandhan" between BJP chief Amit Shah, PM Modi and Pakistan's Inter-Services Intelligence (ISI).
Summary:
A day after the US Securities and Exchange Commission sued Tesla CEO Elon Musk over fraud allegations, he reportedly sent an email to Tesla employees asking them to "ignore all distractions." "One more hardcore weekend and we will be victorious," Musk wrote.
Summary:
Tesla CEO Elon Musk has reportedly written an email to the company's employees, asking them to test self-driving cars.
Summary:
The particles belong to the same family of protons called baryons.
Summary:
A Dubai-based NRI in Hyderabad was arrested on Friday for allegedly raping and cheating a woman, who recently converted to Islam.
Summary:
The manager had provided the password and techniques to open the ATM to his accomplice, Chetan, who was arrested earlier.
Summary:
In a bid to raise awareness about the use of sanitary pads during menstruation, sanitary pad vending machines will be installed within the premises of 26 schools in Agra.
Summary:
US President Donald Trump on Friday ordered the FBI to probe sexual assault allegations against his Supreme Court nominee Brett Kavanaugh after a judiciary committee voted 11-10 to advance his nomination to the full Senate.
Summary:
Supporting Tanushree, Priyanka had tweeted, "The world needs to #BelieveSurviviors [sic]."
Summary:
Facebook on Friday night revealed that over 50 million accounts were directly compromised due to a security bug.
Summary:
Opposing the ordinance passed by the government that makes Triple Talaq a punishable offence, AIMIM chief Asaduddin Owaisi said the ordinance "violates the fundamental rights as laid down in the Constitution".
Summary:
Founded in 2008 by Byju Raveendran, the Bengaluru-based startup offers courses for school students and competitive exams like IIT-JEE, NEET, and GRE.
Summary:
A policeman in Uttar Pradesh's Lucknow allegedly shot dead Apple area manager Vivek Tewari for not stopping his car during patrol inspection.
Summary:
BSF Director General KK Sharma on Friday said that Pakistani military had become "more aggressive" since Imran Khan became the country's Prime Minister.
Summary:
Meanwhile, the executive's wife has demanded an explanation from CM Yogi Adityanath.
Summary:
On being asked if the $8.5-billion defence deal with India was put on hold amid threat of US sanctions, Russian Foreign Minister Sergey Lavrov on Friday said there have been no talks about putting anything on hold.
Summary:
A newly married woman in Haryana's Kurukshetra has accused her husband, his relatives and four 'tantriks' of gangraping her for two nights after wedding.
Summary:
The Telangana Prisons Department has hired psychiatrists for all prisons in the state and has decided to lodge inmates convicted of rape separately and put them through psychiatric evaluation and counselling.
Summary:
"There is no military solution.
The only solution is a dialogue," Qureshi stated.
Summary:
The Uttar Pradesh Police has booked 10 activists for allegedly kidnapping the mother and grandmother of one of the two suspected criminals who were shot dead in a police encounter recently.
Summary:
Meanwhile, 10,000 people visit Jallianwala Bagh on weekdays and 12,000 on weekends.
Summary:
The refrigerator was on the first floor of the two-storey house, according to the reports.
Summary:
"When the (tsunami) threat arose...people did not immediately run and became victims," the agency said.
Summary:
Earlier this year, a series of powerful quakes hit Lombok island, killing over 550 people and injuring some 1,500.
Summary:
Founded on September 29, 1954, the European Organization for Nuclear Research (CERN) houses the 27-km-long Large Hadron Collider, the world's largest particle accelerator.
Summary:
Actor Rajkummar Rao, while talking about his girlfriend Patralekhaa, said, "When my mom first met Patralekhaa, she said that she's going to be the last girl I'm meeting." Further, talking about his school life, he said, "I am a hardcore romantic.
Summary:
The first look of Shraddha Kapoor from the upcoming biopic on Saina Nehwal has been unveiled.
Summary:
A new song titled 'Kem Cho' from Saif Ali Khan and Radhika Apte starrer 'Baazaar' has been released.
Summary:
Juventus forward Cristiano Ronaldo will reportedly sue a German magazine for publishing an article on rape allegations against him by an American woman.
Summary:
India's first-ever athlete to win a track gold at world championships, sprinter Hima Das revealed she didn't tell her parents she was taking part in IAAF U-20 World Championships in Finland.
Summary:
Affected Instagram users will have to relink their Facebook accounts to cross post.
Summary:
Actor-turned-politician Kamal Haasan on Friday said, "There are a lot of allegations and suspicions [about the Rafale deal].
Summary:
A court in Haryana's Hisar has awarded four convicts five-year jail term and imposed â¹65,000 fine for indulging in violence and other offences during 2016 Jat agitation.
Summary:
Rohit Sharma-led India defeated Bangladesh on the last ball in Asia Cup final on Friday to win the tournament for the second straight time and overall seventh time.
Summary:
His statement comes after Hirani said he never expected Nawazuddin to become a huge star while working with him in 'Munna Bhai MBBS'.
Summary:
Summary:
Commenting on the sexual harassment allegations made by Tanushree Dutta against Nana Patekar, actress Kangana Ranaut said, "Raja beta (Indian men) needs to be told the meaning of 'No'." She added that it's in the interest of the society.
Summary:
Tesla's stock has about $130 of "Musk premium" per share, Barclays added.n
Summary:
The winners of 2018 Nobel Prizes will be named from October 1, beginning with Medicine laureates, followed by Physics, Chemistry, Peace, and Economics in the coming days.
Summary:
Launched on September 28, 2015, ASTROSAT, India's first multi-wavelength space observatory has completed three years in Earth's orbit.
Summary:
Addressing a gathering on the second anniversary of surgical strikes, Home Minister Rajnath Singh said, "Something big has happened, I won't say what...it has gone alright just two-three days ago." This comes days after the killing of a BSF jawan by Pakistani troops.
Summary:
The Centre has directed all states to collect biometric details of Rohingyas and other illegal immigrants living in their jurisdiction, a Home Ministry official said.
Summary:
A newly-wed man in Tamil Nadu committed suicide after his wife left the house on learning that it didn't have a toilet.
Summary:
The man was driving at a high speed and lost control of the vehicle after peeping his head out to spit.
Summary:
Addressing an event in Goa on Friday, Vice President Venkaiah Naidu said that pizzas and burgers "will not be able to stand before" idli, sambar and dosa in the long run.
Summary:
A Special Police Officer guarding the Srinagar residence of PDP MLA Aijaz Ahmad Mir allegedly ran away with seven AK rifles of policemen and a pistol on Friday.
Summary:
The 22-year-old model had nearly three million followers on Instagram and had previously competed in the Miss Iraq and Miss Baghdad contests.
Summary:
Benny learnt skating from Sangro and skates on custom-made blades, along with a jersey and stick.
Summary:
Ishaan Khatter, while talking about his new-born nephew and Shahid Kapoor's son Zain Kapoor, has said that he is very excited to be a part of Zain's growing up.
Summary:
What's he doing in India?" Tyson, who was at Mumbai airport early Friday morning, is in India to inaugurate the Kumite 1 League at the National Sports Club of India in Mumbai.
Summary:
I liked that Dhoni was captain," said Arjan, who had been contacted by Bhuvneshwar Kumar later that day.
Summary:
Pakistan superfan Bashir Chacha, who is also known as Chacha Chicago, was seen wearing an Indian jersey and cheering the Indian team in the Asia Cup 2018 final against Bangladesh.
Summary:
Apps had played for Team Canada against Duggan at both the 2010 and 2014 Olympic Winter Games, winning gold both times.
Summary:
Former American boxer Mike Tyson, who is on a visit to India, said, "The most successful fighters come from the slums.
Summary:
MIT researchers claim to have developed a software that could help identify optimal landing sites for Mars rovers.
Summary:
Andhra Pradesh CM Chandrababu Naidu on Friday announced â¹1-crore government compensation for the families of two TDP leaders, Kidari Sarveswara Rao and Siveri Soma, days after they were allegedly killed by Naxals in Araku.
Summary:
In a veiled reference to Pakistan, Minister of External Affairs Sushma Swaraj has said that any solution to the Korean Peninsula issue must address India's concerns on nuclear proliferation linkages in the neighbourhood.
Summary:
Russian President Vladimir Putin will visit India from October 4-5 to attend the 19th India-Russia Annual Summit, the Ministry of External Affairs said.
Summary:
Max Life Insurance on Friday said its Managing Director Rajesh Sud has resigned after "18 years of building" the company.
Summary:
Attackers stole Facebook access tokens through its "View as" feature, which they could then use to take over peopleâÂÂs accounts.
Summary:
After Twinkle Khanna tweeted in support of Tanushree Dutta following her claims that she was sexually harassed by Nana Patekar, Tanushree criticised her tweet by saying Twinkle's husband Akshay Kumar is still working with Patekar.
Summary:
Shyni Shetty, who was an assistant director for the 2009 film 'Horn 'Ok' Pleassss', has supported Tanushree Dutta's claims that she was harassed on the sets of the film.
Summary:
Former Australian captain George Bailey has revealed MS Dhoni would bond with younger players in IPL over hookah.
Bailey said Dhoni would set up a hookah in his room and it was an "open door policy".
Summary:
"This is unintended, embarrassing, and it was careless for us to let this ship," an Epic spokesperson said.
Summary:
Shivpal earlier offered a Lok Sabha ticket to brother Mulayam Singh Yadav.
Summary:
Sri Lankan President Maithripala Sirisena has said the LTTE militant group planned to attack targets in Colombo in 2009 by operating an aircraft "from Chennai or some other jungle area" in Tamil Nadu.
Summary:
The roommate claimed Benzi came running to him one night shivering and told him about the voices.
Summary:
The promoter stake in the bank is currently at 82.28%.
Summary:
Karan Johar took to Twitter to confirm that Alia Bhatt and Deepika Padukone will appear together on the first episode of 'Koffee With Karan' season 6.
Welcome @deepikapadukone and @aliaa08 on episode 1 season 6 of #koffeewithkaran," Johar tweeted.
Summary:
Indian wicketkeeper MS Dhoni completed 800 dismissals in international cricket after effecting the stumping of Bangladesh's Mashrafe Mortaza in the final of the Asia Cup 2018 on Friday.
Summary:
Reacting to Indian batsman Gautam Gambhir scoring 151 runs off 104 balls in the Vijay Hazare Trophy, a user tweeted, "We want #GautamGambhir back in indian team..anyhow..." Other users reacted with tweets like, "Well played!!!
Summary:
Russian ice hockey club Spartak Moscow announced an ankle injury of an attacker named Yulia Ushakova by posting an image of her lying on a treatment table in just her underwear.
Summary:
California authorities on Thursday announced the arrest of seven individuals for stealing devices worth over $1 million from Apple stores across 19 counties in the state.
Summary:
Responding to Tinder parent Match Group's patent infringement lawsuit, rival dating app Bumble said, "Match did not invent the world of dating." Match had sued Bumble alleging that it stole patents involving users swiping cards and mutually selecting one another.
Summary:
A Mumbai court on Friday acquitted Delhi CM Arvind Kejriwal and seven others for allegedly holding a political rally without required police permission for the 2014 Lok Sabha polls.
Summary:
Uttar Pradesh Labour Minister Swami Prasad Maurya on Friday claimed Congress President Rahul Gandhi is a "madman who doesn't deserve to lead India's oldest political party." Maurya said, "Rahul Gandhi has been continuously calling the Prime Minister a thief.
Summary:
Claiming the Congress supports Maoists and "fake activists", BJP chief Amit Shah on Friday tweeted, "There is only one place for idiocy and it is called the Congress." He added, "Support 'Bharat Ke Tukde Tukde Gang'...
Welcome to Rahul Gandhi's Congress."
Summary:
The settlement required Musk to pay a nominal fine and step down as Tesla's Chairman for two years.
Summary:
Parrikar, who is an IIT graduate, is currently undergoing treatment at AIIMS Delhi.
Summary:
The Supreme Court on Thursday said incidents of sexual abuse in shelter homes have "spread like cancer" and blasted authorities for "waiting" to take action.
Summary:
Uttar Pradesh CM Yogi Adityanath on Friday said the nation should be run according to the Constitution and cannot be run by fatwas.
Summary:
The man had a tourist visa valid for 60 days and was recruited as an engineer in a factory on the outskirts of the city.
Summary:
Kamal Kishore Mishra, a prime witness in the murder of BJP leader Visheshwar Ojha, was allegedly shot dead in Bihar's Bhojpur district on Friday by unidentified miscreants.
Summary:
Former Gujarat minister and Congress leader Manoharsinh Jadeja passed away at his house on Thursday.
Summary:
The Tamil Nadu Forest Department in Mandapam has conducted a seawater cleaning drive in the Gulf of Mannar.
Summary:
As per the order, a scroll on television and messages on radio will caution people that "mob lynching will invite serious consequences under the law".
Summary:
The Supreme Court made gay sex legal after scrapping parts of Section 377 of the Indian Penal Code earlier this month.
Summary:
The message reportedly alleged that Infibeam had given interest-free loans to its units.
Summary:
In a promo video, Bachchan can be seen telling Binita to play carefully for the last question of â¹7 crore.
Summary:
Sonam added she also knows the journalist who claimed that she witnessed Tanushree being harassed by goons.
Summary:
Italian automaker Ferrari has launched its Ferrari Portofino in Delhi at an ex-showroom India price of â¹3.5 crore.
Summary:
The Uttar Pradesh police booked a five-year-old boy for being present at a spot where clashes broke out between two groups over a game of cards in a Shamli village.
Summary:
The Delhi Police today arrested a man named Pulkit Mishra for allegedly seeking favours by posing as Prime Minister Narendra Modi's spiritual advisor.
Summary:
Iran has said that it will soon hand over the port to India, which will operate it for ten years.
Summary:
Italy-based hotelier Joseph Shine has said the trigger for him to file a petition against the 158-year-old adultery law was when a close friend in Kerala committed suicide after a woman colleague made a false rape complaint.
Summary:
Zebpay, one of India's biggest cryptocurrency exchanges, has shut down its exchange operations effective from 4 pm today after the RBI prohibited banks from dealing with cryptocurrency companies.
Summary:
Tata Group's Indian Hotels Company (IHCL) has retained Delhi's iconic Taj Mansingh Hotel for another 33 years in an e-auction conducted by the New Delhi Municipal Council.
Summary:
More than 4,000 residents of the town have joined the project.
Summary:
The Indian cricket team's official Instagram account shared a video in which former captain MS Dhoni is seen catching rose petals and then throwing them back at the fans.
Summary:
Indian archers Abhishek Verma, Jyothi Surekha and Deepika Kumari had to train on their own in Turkey ahead of the World Cup final as the national federation failed to provide the team with a coach.
Summary:
Facebook-owned instant messaging service WhatsApp is reportedly planning to show advertisements to users on the iOS version of the app.
Summary:
It will also add new features to its 'Your Trips' tool in October that will help users organise travel plans based on their search history.
Summary:
The elections were held amid heated arguments between council members of the Congress, the BJP, and the JD(S).
Summary:
After the Supreme Court removed the ban on the entry of women aged between 10 to 50 years in Kerala's Sabarimala Temple, Congress leader Randeep Singh Surjewala said the party "wholeheartedly" welcomes the decision.
Summary:
Two years after exiting China, US-based ride-hailing startup Uber is set to re-enter the country for making bikes and scooters.
Summary:
Online pharmacy startup PharmEasy has raised $50 million in a round led by Infosys Co-founder Nandan Nilekani-backed investment firm Fundamentum, Eight Roads Ventures India and others.
Summary:
Prime Minister Narendra Modi has expressed his gratitude after he was named the winner of UN's highest environmental honour, the 'Champions of the Earth' award.
Summary:
Solih extended the invitation during PM Modi's phone call to congratulate him on his electoral victory, Solih's spokesperson Mariya Ahmed Didi was quoted telling the local media.
Summary:
Philippine President Rodrigo Duterte has admitted that he authorised extrajudicial killings as part of his war against drugs, calling it his "only sin".
Summary:
The Iranian city of Shiraz commemorated the country's 1980-88 war with Iraq by using a photoshopped image of Israeli soldiers on a billboard.
Summary:
While deciding on decriminalising gay sex, a Kenyan court will consider India's Supreme Court's verdict that recently overturned the gay sex ban.
Summary:
Saudi Arabia's Foreign Minister Adel bin Ahmed al-Jubeir has asked Canada to apologise for demanding the release of Saudi women's rights activists and stop treating the kingdom as "a banana republic".
Summary:
"Diamonds are Forever: My Promoter shares of Yes Bank are invaluable to me," said Kapoor, who holds a 10.66% stake in the bank.
Summary:
Shera revealed he is personally overseeing Tyson's maiden India visit, and took prior permission from Salman for the same.
Summary:
"[She] herself has done millions of surgeries and used to suggest everyone to go under the knife because she got screwed," Tanushree added.
Summary:
University of Tokyo scientists, who recently revealed that they created the world's strongest indoor magnetic field, have revealed that they deliberately blew up their equipment to create the record.
Summary:
Japanese space agency (JAXA) released a 15-frame clip days after Hayabusa2 spacecraft deployed the rovers on asteroid Ryugu's surface after a 3.5-year journey.
Summary:
PM Narendra Modi on Friday inaugurated the Army exhibition 'Parakram Parv' in Rajasthan's Jodhpur to mark the second anniversary of the surgical strikes by Indian security forces along the LoC.
Summary:
Doctors at a community health centre in Rajasthan's Barmer district conducted autopsy of two accident victims on the road.
Summary:
Summary:
Hailing the Supreme Court's refusal to interfere in the arrest of five activists in connection with Bhima-Koregaon violence, Maharashtra CM Devendra Fadnavis said it vindicates the government's stand against "urban Maoists".
Summary:
Surat-based diamond trader Savji Dholakia has gifted a Mercedes-Benz GLS SUV worth â¹1 crore to each of three senior staffers who completed 25 years at his company Hari Krishna Exports.
Summary:
One of the students, a Muslim, was with his female Hindu friend when the assailants barged into his house and beat them.
Summary:
The Punjab and Himachal Pradesh government on Friday signed a Memorandum of Understanding to build a â¹250-crore ropeway connecting Sikh and Hindu shrines.
Summary:
The Kerala government has called the Supreme Court verdict allowing entry of women of menstruating age in Sabarimala Temple "revolutionary", stating that it "will open the floodgates".
Summary:
The Ahmedabad-based company provides software development services, web development, e-commerce and other ancillary services.
Summary:
Summary:
On the occasion of her son and actor Ranbir Kapoor's 36th birthday on Friday, Neetu Kapoor shared her picture with Ranbir, his girlfriend Alia Bhatt and her mother Soni Razdan on social media.
Summary:
Kangana Ranaut has turned down the offer of taking credit as a director of her upcoming film 'Manikarnika', as per reports.
Summary:
Wishing Ranbir Kapoor on his 36th birthday on Friday, Alia Bhatt took to her Instagram and posted a picture of Ranbir Kapoor with the caption, "Happy Birthday Sunshine." Alia's mother Soni Razdan also posted her picture with Alia, Ranbir and his mother Neetu Kapoor, captioning it, "Happy Birthday Rockstar!
Summary:
The BCCI's All India Women's Selection Committee on Friday announced a 15-member squad for the upcoming ICC Women's World Twenty20 in Guyana.
Summary:
Indian captain Virat Kohli revealed in an interview that he would like to raid the wardrobe of his "very stylish" wife Anushka Sharma, who he says is responsible for his "well-curated cool looks".
Summary:
Shikhar Dhawan's wife Aesha Dhawan recalled that he had sent her a friend request on Facebook after seeing a photo of her in a boxing ring.
Aesha said that she accepted Shikhar's friend request later after which they began chatting.
Summary:
Summary:
US-based AI startup Netradyne has raised $21 million in funding led by Microsoft's venture arm M12 along with participation from Point72 Ventures.
Summary:
This comes after some section of the media quoted Naidu saying, "English is an illness left behind by the British" during an event earlier this month.
Summary:
US President Donald Trump on Thursday backed his Supreme Court nominee Brett Kavanaugh, praising his testimony where he denied the allegations of sexual assault against him.
Three women have publicly accused Kavanaugh of sexual misconduct.
Summary:
Quoting Michael Pillsbury, a consultant at the US Defence Department and an expert on China, US President Donald Trump has said that China has "total respect" for him and his "very, very large brain".
Summary:
However, the discount is applicable only if the value of a ticket is â¹100 or more.
Summary:
Sale of tranquilisers and habit-forming drugs are prohibited online, however, anti-depressants are being sold without checking prescriptions, AIOCD said.
Summary:
Summary:
Actress Tanushree Dutta has claimed director Vivek Agnihotri asked her to remove her clothes and dance in front of Irrfan Khan to give him cues during her debut film Chocolate's shoot.
Summary:
Actor Ranbir Kapoor was the first choice for the 2010 Yash Raj Films-produced romantic comedy film 'Band Baaja Baaraat' but he had rejected the movie.
Summary:
"Sui Dhaaga is sewn together with strong performances", said The Times of India (TOI).
It has been rated 3.5/5 (Times Now, TOI) and 2.5/5 (The Indian Express).
Summary:
Western Australia's D'Arcy Short scored 257(148), including 23 sixes and 15 fours, against Queensland in a 50-over match on Friday to register the third-highest individual score in List A cricket history.
Summary:
Summary:
A video shows Telangana Rashtra Samithi (TRS) MLA E Ravinder Reddy purportedly promising â¹5 lakh to a group of women if he wins the upcoming Assembly elections unopposed.
Summary:
In a lawsuit filed against Tesla CEO Elon Musk over the "funding secured" tweet, the SEC stated that Musk chose the $420-per-share price because he had recently learned about the number's significance in marijuana culture.
Summary:
The Kerala government has announced it will provide free ration for three months to those who lost their livelihood due to floods.
Summary:
External Affairs Minister Sushma Swaraj on Thursday left the meeting of the SAARC foreign ministers early after making her statement.
Summary:
Justice Indu Malhotra, the only woman in the five-member Supreme Court bench on Sabarimala Temple's ban on menstruating women said, "What constitutes essential religious practice is for the religious community to decide, not for the court".
Summary:
Indian Naval Commander Abhilash Tomy, who was rescued after being stranded in his yacht in Indian Ocean for three days, said the deep sea was "scary as hell".
Summary:
Indian Naval Commander Abhilash Tomy, who was stuck in Indian Ocean for over 70 hours, revealed gas and diesel started leaking into his yacht when it was toppled by the storm for the third time.
Summary:
A video showing a professor at a government college in Madhya Pradesh touching feet of ABVP activists who called him anti-national has surfaced.
Summary:
Recalling his 70-hour ordeal in Indian Ocean, rescued Navy officer Abhilash Tomy revealed he once fell from the top of his yacht's mast due to the storm and his watch got entangled in a rope.
Summary:
Addressing a session of PHD Chamber of Commerce and Industry, Finance Minister Arun Jaitley said the global trade war will help India become a trading and manufacturing hub.
Summary:
Addressing the UN General Assembly on Thursday, Israeli PM Benjamin Netanyahu claimed that Iran has a secret atomic warehouse in Tehran "for storing massive amounts of equipment and material from its secret nuclear weapons programme".
Summary:
The Central Bureau of Investigation (CBI) has booked Hyderabad-based telecom equipment manufacturer VMC Systems and its promoters in an alleged bank fraud case of â¹1,700 crore on a complaint by state-owned PNB.
Summary:
The recreated version of Prabhudeva's song 'Urvashi', from the 1994 Tamil film 'Kadhalan', featuring Shahid Kapoor and Kiara Advani has been released.
Summary:
Yami will play an intelligence officer while Vicky will be playing the lead commander-in-chief who led the operation of the surgical strikes.
Summary:
Ayushmann Khurrana, who offered to audition for his role in the upcoming film 'AndhaDhun', said that one has to keep ego at bay and treat it as a learning experience.
Summary:
Bangladesh will face India in the final today.
Summary:
Gujarat Deputy CM Nitinbhai Patel has said Congress President Rahul Gandhi is "Made in Italy".
Summary:
Nationalist Congress Party's (NCP) founding member Tariq Anwar on Friday announced his resignation from the party and the Lok Sabha as an MP after NCP chief Sharad Pawar backed the NDA government on Rafale deal.
Summary:
The SEC alleged that Musk made a series of "false and misleading" tweets about taking Tesla private.
Summary:
A youth has been arrested in Maharashtra for allegedly killing his ex-girlfriend on her 19th birthday after taking her to a secluded place on Wednesday.
Summary:
nThe Supreme Court on Friday lifted the centuries-old ban on entry of women aged between 10 and 50 years in Kerala's Sabarimala Temple, thereby allowing women of all ages to enter the 800-year-old temple.
Summary:
It notes "Designed by OnePlus" on battery with model number BLP68S.
Summary:
Justice Indu Malhotra, the only dissenting Supreme Court judge in the Sabarimala temple verdict, on Friday said, "Issues of deep religious sentiments shouldn't be ordinarily interfered into." "Present judgement won't be limited to Sabarimala, it will have wide ramifications," she stated.
Summary:
Pronouncing the Supreme Court verdict on the ban on entry of menstruating women in Kerala's Sabarimala Temple, Chief Justice of India Dipak Misra said, "Women no way inferior to men." "On one hand, women are worshipped as Goddesses, but there are restrictions on the other hand.
Summary:
Removing the ban on the entry of women aged between 10 and 50 in Kerala's Sabarimala temple, CJI Dipak Misra said that patriarchy in religion cannot be allowed to trump right to pray and practise religion.
Summary:
The court further asked Pune Police to continue the probe.
Summary:
While reading out his judgement in the Sabarimala Temple case, Supreme Court Justice DY Chandrachud said, "Religion cannot be used as a cover to deny women right to worship." "To treat women as children of lesser God is to blink at Constitutional morality," he added.
Summary:
Responding to Congress' allegations on Rafale deal, Maharashtra CM Devendra Fadnavis on Thursday said, "Congress president is making allegations when half of the Congress workers don't know whether Rafale is an aircraft or a cycle".
Summary:
Musk claimed funding was secured but later cancelled his plans to take Tesla private over investor resistance.
Summary:
Paytm's parent One97 Communications raised $300 million from billionaire Warren Buffett-led Berkshire Hathaway, according to its filings with the Registrar of Companies.
Summary:
Summary:
A government college in Kerala has assigned a separate "TG friendly toilet" for its only transgender student.
Summary:
After the Supreme Court removed the ban on entry of women in Kerala's Sabarimala Temple, head priest Kandararu Rajeevarau on Friday said he was "disappointed" with the verdict but will accept it.
Summary:
A five-judge Supreme Court bench will today decide if the ban on entry of women aged 10-50 years in Kerala's Sabarimala Temple is constitutionally valid or discriminatory.
Summary:
RPSF has written to the Maharashtra Police, whose constable underwent the surgery in May, seeking details of the procedure followed in such cases.
Summary:
The Kerala government on Thursday sanctioned â¹50 lakh as compensation to former ISRO scientist Nambi Narayanan, who was wrongly accused of leaking defence secrets to Maldivian intelligence officers.
Summary:
After the programme, the girl informed about her father's actions to the Child Welfare Committee, which informed the police.
Summary:
After a meeting with his Indian counterpart Sushma Swaraj at the UN General Assembly, Iranian Foreign Affairs Minister Mohammad Javad Zarif said he was assured that India will continue to import oil despite US sanctions.
Summary:
Summary:
A Papua New Guinean plane sunk in a sea lagoon after overshooting a runway during landing at the island nation of Micronesia on Friday.
Summary:
After watching his wife Anushka Sharma's film 'Sui Dhaaga', Virat Kohli tweeted, "Mauji [Varun Dhawan's character in the film] was superb.
But Mamta's [Anushka's] character stole my heart totally." "Her ability to be so quiet yet so powerful and impactful makes you fall in love with her.
Summary:
Talking about the stunts he performed while shooting for 'Thugs of Hindostan', Amitabh Bachchan revealed, "There's no part of the body that hasn't been broken." "There's no doctor that I haven't met.
Summary:
Amitabh Bachchan, while praising his upcoming film 'Thugs of Hindostan' co-actor Aamir Khan, has said it's difficult to compete with Aamir.
Summary:
Canadian singer-songwriter Bryan Adams has said that Priyanka Chopra is an "extraordinary girl" and Nick Jonas is "very lucky" to have her in his life.
Summary:
Employees said the companies had employed a large number of contract workers and refused to make them permanent even after years of contract work.
Summary:
A 23-year-old Irish man named Patrick Kehoe was arrested on Thursday after he ran from Dublin airport's building towards a taxiing Ryanair plane shouting at the pilot to "wait" after he missed his flight.
Summary:
Amitabh Bachchan, when asked about Tanushree Dutta's allegations against actor Nana Patekar, said, "Neither my name is Tanushree nor Nana Patekar...how can I answer your question?" Tanushree had alleged that Patekar made members of a political party threaten her and break her car on a film's sets.
Summary:
Actress Tanushree Dutta has said actor Nana Patekar called goons to attack her while adding, "(He)...
Summary:
Apple's iPhone Xs Max with 256GB storage, which costs about $1,249 in the US, carries $443 worth of components and assembly costs, according to Canada-based firm TechInsights.
Summary:
Summary:
Amazon on Thursday opened its first-ever 'Amazon 4-star' store in New York, which sells only those products rated 4 stars and above by its customers.
Summary:
He tried to make the video through a hole, the woman alleged.
Summary:
Summary:
The National Anti-Profiteering Authority under GST has asked Lifestyle International to refund â¹41 to a customer along with 18% interest as it failed to pass on GST rate cut benefit on a cosmetic product.
Summary:
Chinese solar giant Longi Green Energy Technology is planning to produce all of its panels using solar power in three to five years.
Summary:
Harry Potter author JK Rowling defended the decision to cast a South Korean actor to play the character of Voldemort's snake 'Nagini' in the latest Fantastic Beasts film after facing criticism for the same.
Summary:
Sania Mirza's reply forced a Pakistani journalist to delete his tweet which mocked her husband Shoaib Malik after Pakistan's exit from the Asia Cup 2018.
Summary:
Reacting to Pakistan's losses to India in the Asia Cup 2018, former Pakistani spinner Saeed Ajmal said, "Against India, we play like kids who they have raised." Ajmal, who said that he felt "ashamed" watching the Pakistan team's performance, also criticised Pakistan's current captain Sarfraz Ahmed.
Summary:
US-based company Athena Security has developed a camera system that uses artificial intelligence (AI) and cloud technology to spot guns in a crowd with 99% accuracy.
Summary:
Facebook has admitted to using people's phone numbers, meant for two-factor authentication, to target them with ads.
Summary:
An Australian teenager, who had hacked the world's most valuable company Apple's servers aged sixteen, has not been jailed.
Summary:
Pictures show Angriya, a luxury cruise set to sail from Mumbai to Goa on October 11.
Summary:
Referring to GST, Congress President Rahul Gandhi today said, "As soon as we come to power, we will change the 'Gabbar Singh Tax' into the real tax.
Summary:
Congress President Rahul Gandhi will end up being "Ra-fail" in his endeavour to "mislead" people on the Rafale deal, Home Minister Rajnath Singh said on Thursday.
Summary:
Maserati has unveiled a limited-edition model called the 'Ghibli Ribelle' which features a black 'Nero Ribelle' paint shade.
Summary:
The car is described to have wheels with rotor blades, which would allow it to take off vertically.
Summary:
The Odisha government has decided to adopt the 'No Work No Pay' policy with regard to the strike by block grant teachers who've been demanding the same salary as government school and college teachers.
Summary:
BJP spokesperson Sambit Patra on Thursday claimed that businessman Robert Vadra is acting as the de facto president of Congress.
Summary:
Summary:
The girl was admitted to a hospital where her condition is stated to be out of danger.
Summary:
Nick Conrad, a French rapper, has defended his music video in which he calls for white people to be killed.
Summary:
The clarifications came in response to queries sent by NSE, after the exchange received a complaint against the bank.
Summary:
Hotel aggregator and chain OYO Rooms' valuation of $5 billion after raising $1 billion funding has surpassed the combined valuation of Indian Hotels and EIH, valued at $2.05 billion and $1.2 billion, respectively.
Summary:
Software company Atlassian's 38-year-old Co-founder Mike Cannon-Brookes and his wife, Annie, have bought Australia's most expensive mansion, Fairwater, for a reported $73 million (nearly â¹530 crore).
Summary:
Uttar Pradesh CM Yogi Adityanath on Thursday welcomed Supreme Court's order that refused to revisit its 1994 ruling that observed a mosque is not an essential part of Islam and namaz can be offered anywhere.
Summary:
Son has raised more than $93 billion for his planned $100-billion Vision Fund.
Summary:
A Bhopal court has ordered for FIRs to be filed against Congress leaders Digvijaya Singh, Kamal Nath and Jyotiraditya Scindia on charges of "fabricating evidence" in Vyapam scam.
Summary:
New videos of Indian Army's surgical strikes against terrorists in Pakistan Occupied Kashmir (PoK) have emerged two days ahead of the second anniversary of the Army's operation.
Summary:
Cash-strapped Pakistan government led by Prime Minister Imran Khan on Thursday auctioned eight buffaloes kept by former Prime Minister Nawaz Sharif at the PM residence for â¹13.5 lakh (23 lakh Pakistani Rupees).
Summary:
Made by shoemaker Jada Dubai with real gold and diamonds, the 'Passion Diamond Shoes' took nine months to be designed and created.
Summary:
Greene categorically stated that the entire legal procedure will be followed in extraditing Choksi.
Summary:
The New York-listed company's net revenues increased 11% to $10.1 billion.
Summary:
Juventus forward Cristiano Ronaldo is clear to face his former club Manchester United after he was handed a one-match ban by UEFA for his red card against Valencia in his team's last Champions League match.
Summary:
Former Australian football player Mark Bresciano, who played in the Italian Serie A, is retired and has returned to Australia and is planning to grow medicinal marijuana.
Summary:
Indian shuttler Saina Nehwal reached the quarter-final stage of the Korea Open after defeating Kim Ga Eun 21-18, 21-18 on Thursday.
Summary:
Germany beat Turkey for the right to host the 2024 edition of the tournament.
The last edition of the tournament was hosted in France.
Summary:
Gavaskar said that Dhoni should not just be playing limited-overs domestic cricket but also four-day domestic cricket.
Summary:
In a span of almost 11 hours, burglars stole an estimated $50,000 worth of iPhones, iPads and other products.
Summary:
Defending CEO Mark Zuckerberg after WhatsApp Co-founder Brian Acton's comments, Facebook executive David Marcus said, "I find attacking the people and company that made you a billionaire, low-class." "Facebook is truly the only company thatâÂÂs singularly about people," he added.
Summary:
Social media major Facebook on Wednesday unveiled a wireless virtual-reality headset called Oculus Quest, priced at $399.
The headset will go on sale early next year.
Summary:
The Income Tax department conducted raids at the properties of Telangana Congress Working President A Revanth Reddy today, reportedly as part of a probe into alleged mismanagement of accounts by a company belonging to his brother.
Summary:
Congress President Rahul Gandhi began a two-day visit to poll-bound Madhya Pradesh on Thursday with prayers at the Kamta Nath temple in Chitrakoot.
Summary:
Speaking about the Rafale aircraft deal, former Defence Minister and Nationalist Congress Party (NCP) chief Sharad Pawar said, "I do not think people have doubts about (PM Narendra) Modi's intentions".
Summary:
Aston Martin has launched the next-generation Aston Martin Vantage in India, priced at â¹2.95 crore (ex-showroom).
Summary:
Masayoshi Son-led $100-billion SoftBank Vision Fund has invested in two US-based real estate startups this week, Opendoor and Compass.
Summary:
Bird experts believe there are no more than 750 individual Blue-throated Hillstar hummingbirds left and the number could even be lower than 500.
Summary:
Two Maoist guerrillas were awarded death sentence by a Dumka district court on Wednesday for their involvement in the killing of Pakur Superintendent of Police Amarjeet Balihar and five other policemen in Jharkhand in 2013.
Summary:
Ranjit reportedly thrashed his wife who eventually succumbed to her injuries.
The villagers reportedly held the woman responsible for the wife's death and thrashed her.nn
Summary:
Indian refineries, which import over 80% of crude oil, sourced about 14% of their imports from Iran.
Summary:
TVS NTORQ 125, India's first Bluetooth connected scooter has crossed the one lakh sales mark.
TVS NTORQ has been developed with TVS Racing pedigree and premiers Bluetooth-enabled TVS SmartXonnect technology with 55 features including caller ID and navigation assist.
Summary:
Actor Nana Patekar has said that he can take legal action against actress Tanushree Dutta if he wants to, over her claims that he sexually harassed her on the sets of a film in 2008.
Summary:
Talk show host-journalist Janice Sequeira has revealed that she saw 'goons' harassing actress Tanushree Dutta on the sets of the Nana Patekar starrer film 'Horn 'OK' Pleassss' in 2008.
Summary:
Let my film release then I will speak," added Aamir.
Summary:
The Supreme Court stated that there should be no coercive action and filing of FIR against Salman Khan Ventures, the producer of the upcoming film 'Loveyatri' over the film's name and content.
Summary:
The head of 2018 FIFA World Cup's Local Organising Committee (LOC), Alexey Sorokin, has revealed the security stopped 170 people from running onto pitches during the tournament.
Summary:
The 61-year-old founder of a residential school in Maharashtra's Sangli was arrested on Wednesday for allegedly raping at least five girl students and molesting another three girls in the last six months.
Summary:
The female medical student, who was harassed by police in Uttar Pradesh's Meerut for visiting her Muslim friend's house, has claimed the police asked her to file a rape complaint against him.
Summary:
Globally, Oxford University continues to hold the first place, followed by Cambridge, Stanford, and MIT.
Summary:
Meanwhile, Trudeau's spokesperson said, "No meeting was requested."
Summary:
"I was like mate, what just happened?" Kyle said, adding he felt "hard parts of the octopus" on his face.
Summary:
A zookeeper at Denmark's Odense Zoo witnessed a gay penguin couple "kidnap" a baby penguin while the baby penguin's biological parents went for a swim.
Summary:
Shares of Yes Bank have fallen nearly 50% in the last five weeks, wiping the bank's market capitalisation by more than â¹44,000 crore.
Summary:
Bangladesh captain Mashrafe Mortaza pulled off a leaping catch inside the 30-yard circle to dismiss Pakistan's Shoaib Malik for 30(51) in the Asia Cup 2018 on Wednesday.
Summary:
After Pakistan crashed out of Asia Cup after their defeat to Bangladesh on Wednesday, captain Sarfraz Ahmed said, "I haven't slept properly for the last six days." "There's always pressure on the captain of...Pakistan team.
Summary:
Talking about wicketkeeper-batsman Mohammad Shahzad's 124-run knock against India, Afghanistan captain Asghar Afghan said he doesn't think Shahzad's idol MS Dhoni enjoyed his knock as India were getting hit around the ground.
Summary:
English spinner Moeen Ali picked up a wicket in the County Championship with his medium pace bowling while playing for Worcestershire against Yorkshire.
Summary:
WikiLeaks has replaced Julian Assange as its editor-in-chief with former spokesperson Kristinn Hrafnsson.
Summary:
Breakthrough Energy Ventures, a $1-billion fund led by investors including world's richest man Jeff Bezos and Microsoft Co-founder Bill Gates has announced investment in seven more startups.
Summary:
Billionaire Elon Musk-backed digital payments startup Stripe has raised $245 million in a new funding round led by Tiger Global Management.
Summary:
Walmart Foundation has announced it will invest over â¹180 crore to support sustainable livelihood for Indian farmers over the next five years.
Summary:
He added that teachers didn't use their "common sense".
Summary:
A woman from Hyderabad who was stranded in Kuwait was rescued by Indian embassy officials after her mother wrote a letter to External Affairs Minister Sushma Swaraj.
Summary:
The Punjab and Haryana High Court has directed Haryana Police to constitute a special team to nab suspects including Aditya Insan, a key aide of jailed Dera Sacha Sauda chief Gurmeet Ram Rahim Singh.
Summary:
The loan, $15 billion of which has already been received by Argentina, will be disbursed over the next three years.
Summary:
After a Swedish internet service provider used the 'distracted boyfriend' meme for a recruitment advertisement, the country's advertisement watchdog ruled that the meme is sexist.
Summary:
Anil Ambani's Reliance Communications (RCom), which is selling its wireless assets to Jio, is negotiating with two investors to sell a controlling stake in the residual business.
Summary:
The observations in Ismail Faruqui case should be seen in context of land acquisition, SC added.
Summary:
The Supreme Court today struck down the 150-year-old law which penalises adultery, ruling the law is unconstitutional.
Summary:
The Chief Justice of India Dipak Misra, while reading out Supreme Court's verdict scrapping the 150-year-old law which criminalised adultery, said, "Equality is the governing principle of a system.
Summary:
The trailer of Aamir Khan, Amitabh Bachchan, Katrina Kaif and Fatima Sana Shaikh starrer 'Thugs Of Hindostan' has been released.
Summary:
WhatsApp Co-founder Brian Acton, who quit WhatsApp's parent company Facebook last year, has said, "I sold my usersâ privacy to a larger benefit...I live with that every day." Acton said he never developed a rapport with Facebook CEO Mark Zuckerberg, who wanted to show advertisements in WhatsApp's Status feature.
Summary:
In a Supreme Court hearing scrapping the 150-year-old Adultery law, Chief Justice of India Dipak Misra ruled "Any provision treating women with inequality is not Constitutional...
Summary:
Reading out her verdict on the validity of Section 497 (Adultery) of the IPC, Justice Indu Malhotra said, "The time when wives lived in the shadows of husbands has gone." "There's no justification for continuance of the section framed in 1860 to remain on statute," she added.
Summary:
Justice DY Chandrachud with four other Supreme Court judges overturned his father Justice YV Chandrachud's 1985 ruling, which had held the adultery law, drafted in 1860, to be constitutionally valid.
deprives them of dignity" Justice DY Chandrachud said on Thursday.
Summary:
Calling Section 497 (Adultery) of the IPC "unconstitutional", CJI Dipak Misra said, "The magnificent beauty of the democracy is I, you and we." "Equality is the governing principle of a system.
Summary:
Summary:
Stating that Section 497 (Adultery) of the IPC "needs to be struck down", Supreme Court judge RF Nariman said, "Ancient notions of man being perpetrator and woman being a victim no longer holds good." The court cannot wait for legislation when the law has become arbitrary, he added.
Summary:
McCullum, who turned 37 on Thursday, broke the record jointly held by Viv Richards and Misbah-ul-Haq, who scored a century each off 56 balls.
Summary:
Actor Saif Ali Khan has said that Bollywood and the celebrities are treated like dustbin by the media.
Summary:
Filmmaker Karan Johar shared a picture with Shah Rukh Khan, Aamir Khan, Deepika Padukone and her rumoured boyfriend Ranveer Singh, Ranbir Kapoor and his girlfriend Alia Bhatt.
Summary:
However, the company has celebrated its birthday on September 27 since 2006, and on September 26 in 2005.
Summary:
Congress' posters in Bihar's Patna show party President Rahul Gandhi and other leaders of the state's party unit with their castes labelled on them.
Summary:
DMK President MK Stalin was admitted to Apollo Hospital in Chennai late on Wednesday night.
Summary:
BJP MLA Sangeet Som survived an attack on Thursday after unidentified assailants opened fire and hurled a hand grenade at his house in Uttar Pradesh's Meerut.
Summary:
A 25-year-old factory worker in Uttar Pradesh's Noida was on Wednesday sucked into a machine he was cleaning after someone switched it on.
Summary:
A video of a man in Kazakhstan's capital city of Astana saving a boy by grabbing him mid-air as he fell from the 10th storey of a high-rise has gone viral.
Summary:
The Fed also forecast that the US would enjoy at least three more years of growth.
Summary:
A convict from the Turkestan region will reportedly receive the first injection in a process supervised by the country's health ministry.
Summary:
Team India stand-in captain Rohit Sharma took to social media to share a picture of himself hanging out with Team India superfan Sudhir Gautam and Pakistani superfan Bashir (aka Chacha Chicago) in Dubai.
Summary:
Goa BJP legislator Francis D'Souza, who has been dropped from Goa Cabinet, said that he will resign from Goa BJP unit's core committee once he returns from the US where he is currently hospitalised.
Summary:
Uber has agreed to pay $148 million settlement over a data breach that the startup failed to disclose in 2016.
Summary:
Earlier, Trump said the leaders were "laughing with me, not at me".
Summary:
During a press conference on Wednesday, US President Donald Trump referred to a Kurdish journalist as "Mr Kurd".
"I'm in no way offended by Trump or anyone calling me Mr Kurd...I'm proud to be a Kurd.
Summary:
The programme is open to all users and customers are rewarded for both, purchases and engagement on Myntra.
Summary:
Hotel aggregator OYO Rooms' 24-year-old Founder Ritesh Agarwal, with a net worth of â¹2,600 crore, is the youngest self-made entrepreneur on Barclays Hurun India Rich List 2018.
Summary:
Further, Cochin International Airport was given the award for its leadership in the use of sustainable energy.
Summary:
Summary:
With this, Bangladesh made it to their third Asia Cup (ODI and T20I) final in four editions.
Summary:
Haryana Police on Wednesday arrested self-styled godman Krishna Nand for allegedly sexually assaulting students at a boarding school run by him in Hisar.
Summary:
Himachal Pradesh Governor Acharya Devvrat has said milk of foreign cows like Holstein Friesian and Jersey causes aggression and high blood pressure and advised people to use "desi" cows' milk.
Summary:
"We have a very strong partnership between India and France regarding defence," Macron added.
Earlier, Macron had said he was not in power when the deal for 36 fighter jets was signed between India and France.n
Summary:
The Vice Chief of the Indian Air Force (IAF), Air Marshal Shirish Baban Deo, accidentally shot himself in the thigh on Wednesday, according to ANI.
Summary:
The woman, whose medical examination has confirmed rape, claimed she was gangraped by him and another man whom she described as an occultist.
Summary:
"But I think he [Xi Jinping] probably respects me," Trump added.
Summary:
US President Donald Trump has claimed that women who accused him of sexual misconduct were "paid a lot of money to make up stories".
Summary:
Calling reports that world leaders laughed at him during his speech at the United Nations General Assembly "fake news", US President Donald Trump said, "They weren't laughing at me, they were laughing with me.
Summary:
However, the airline has been able to pay only 75% of the August salaries this month.
Summary:
Arjun further said, "We've been able to come together at a time when most wouldn't have been able to do so."
Summary:
Tanushree Dutta, who has alleged that Nana Patekar sexually harassed her on sets of a film, claimed he and the film's makers had a counter FIR ready even before she could file an FIR against them.
Summary:
Actress Ratna Pathak Shah, while criticising Rohit Shetty's film 'Golmaal 3', said, "When the script was recited to me it sounded funny, but when it was made, it was not even half funny." "The way [it was] executed was so obvious," she added.
Summary:
This was the first time since January 4, 2015, that Real Madrid and Barcelona lost a league match on the same day.
Summary:
Talking about former Indian captain MS Dhoni's ability to take successful DRS reviews, former Indian batsman Aakash Chopra suggested that the 37-year-old should take DRS coaching classes after retirement.
Summary:
Summary:
The case was reportedly filed following failed attempts to reach an out-of-court settlement by the companies.
Summary:
Mukesh Ambani-led Reliance Industries has invested $8 million in US-based AI startup Netradyne for a 37.4% stake.
Summary:
Ford CEO James Hackett on Wednesday said that US President Donald Trump's tariffs on imported steel and aluminum cost the company $1 billion in profits.
Summary:
Summary:
CBSE has cancelled the affiliation of a Dehradun private boarding school where a 16-year-old girl was allegedly raped by four students.
Summary:
He added that 50% stake will be owned by the Centre and the remaining by the states.
Summary:
The government has raised import duties on 19 "non-essential items" including air conditioners, refrigerators, washing machines and jewellery items in a bid to reduce the Current Account Deficit.
Summary:
Sunny Leone has revealed she was 18 when a rapper sexually harassed her during a music video shoot.
Summary:
Summary:
Urvashi Rautela has apologised for copying model Gigi Hadid's comment and using it as the caption of her Instagram post.
Summary:
Niklesh got help from Angela's sister who was also part of the Colombian team.
Summary:
A 10-foot-tall bird, Vorombe titan, known to have become extinct around 1,000 years ago in Madagascar, has been declared as the world's largest bird, according to a study.
Summary:
Indian Navy Commander Abhilash Tomy, who was rescued after three days from Indian Ocean after getting stranded during a sailing race, said he and his boat were pitched against nature's might.
Summary:
It was referring to Justice Gogoi and the other Supreme Court judges' press conference voicing concerns over CJI Dipak Misra and judiciary's administration.
Summary:
A September 24 video of a Mumbai boy who escaped unhurt after being run over by a car has gone viral.
Summary:
He was arrested after she alleged she was sexually assaulted at his Alwar ashram.
Summary:
Describing Supreme Court's judgement on Aadhaar validity "historic", Finance Minister Arun Jaitley said the scheme has helped the government in saving â¹90,000 crore every year through targeting beneficiaries and plugging leakages.
Summary:
Meanwhile, French aerospace company Dassault Aviation said they chose Reliance Defence as Rafale deal partner.
Summary:
Reliance Industries Chairman Mukesh Ambani's wealth increased by â¹300 crore a day over the past year, according to Barclays Hurun India Rich List 2018.
Summary:
Indian tennis player Sania Mirza, who is pregnant with her first child, said that pregnancy does not make [one] you handicapped, but empowers a woman in many different ways.
Summary:
Former England international cricketer Marcus Trescothick took all the three catches in a hat-trick off Craig Overton's bowling while playing for Somerset against Nottinghamshire in the County Championship on Wednesday.
Summary:
Indian captain Virat Kohli, who was rested for the ongoing Asia Cup, will reportedly be asked to undergo the Yo-Yo Test before the start of the upcoming series against the Windies.
Summary:
Bollywood actor Shah Rukh Khan attended the Indian Paralympic contingent's sending-off ceremony in New Delhi ahead of the upcoming Asian Para Games 2018 in Jakarta.
Summary:
Researchers have developed a tiny, soft robot with caterpillar-like legs that can deliver drugs inside a human body.
Summary:
Senior AAP leader Sanjay Singh on Tuesday said he is sending a legal notice to Defence Minister Nirmala Sitharaman over alleged irregularities in the Rafale deal.
Summary:
Summary:
Congress national spokesperson Abhishek Manu Singhvi on Wednesday said the Supreme Court's decision to strike down Section 57 of the Aadhaar Act, which allowed private entities to access Aadhaar data, is a âÂÂslap on the face of BJP".
Summary:
Claiming Congress President Rahul Gandhi used "foul language" against Prime Minister Narendra Modi, UP minister Sidharth Nath Singh on Tuesday said Rahul had graduated from being a "shehzada" (prince) to "an emperor of lies".
Summary:
India's first all-electric hypercar concept, Vazirani Shul, designed and developed by Mumbai-based Vazirani Automotive has been officially unveiled in the country.
Summary:
Summary:
After BSF jawan Narender Kumar was martyred along the International Border, Home Minister Rajnath Singh said, "People may not know but whenever such an incident happens we get sleepless nights.
Summary:
The policy also aims to expand IoT ecosystem to 5 billion connected devices.
Summary:
The Union Cabinet on Wednesday cleared a â¹5,500-crore incentive package for the sugar industry.
Summary:
A man was hacked to death in broad daylight with an axe by another man on Hyderabad's Attapur road on Wednesday as a police vehicle passed by.
Summary:
The new C-Class range comprises of the C 220 d Progressive, the C 220 d Prime, the most powerful C 300 d AMG Line.
Summary:
Choreographer Ganesh Acharya has denied Tanushree Dutta's allegations that Nana Patekar called members of a political party to harass her after she refused an intimate song sequence with him.
Summary:
Actor Ayushmann Khurrana's wife Tahira Kashyap, while speaking about how her breast cancer was detected, said, "I started feeling heavy in my right breast...and it [began] to grow...But the same wasn't happening to my left." "I started getting a secretion...My husband took this even more seriously," she added.
Summary:
Supreme Court Justice DY Chandrachud, the only dissenting judge of the five-judge bench that decided on Aadhaar's validity, said passing of Aadhaar Bill as Money Bill is a fraud on Constitution.
Summary:
American coffee and doughnut chain Dunkin' Donuts on Tuesday announced that it will rebrand as Dunkin' starting January next year.
Summary:
Pakistan's chief selector Inzamam-ul-Haq reached Dubai to stay by the team during their Asia Cup 2018 match against Bangladesh, which is a virtual semi-final for the team.
Summary:
Reacting to Tuesday's tied ODI match between India and Afghanistan, Indian batsman KL Rahul said that he should not have taken the DRS review on his dismissal early in India's innings.
Summary:
French swimmer Ben Lecomte, who is bidding to become the first person to swim across the Pacific Ocean, is set to reach nearly the 1,000 nautical miles mark of his journey.
Summary:
This Apple-1 is one of the 60-70 remaining from the original 200 that were built in 1976 and 1977.
Summary:
BJP spokesperson Sambit Patra today said the Supreme Court judgement on Aadhaar is a big victory for the "pro-poor Modi government" as it upholds Aadhaar's constitutional validity.
Summary:
Former Prime Minister Manmohan Singh on Tuesday said the secular commitments of the Indian Constitution have to be defended by the political leadership, civil society, religious leaders and intelligentsia.
Summary:
Cab aggregators canâÂÂt operate over 20,000 vehicles under one licence, according to the proposal.
Summary:
The Raven Black 1956 Ford Thunderbird convertible roadster owned by American actress Marilyn Monroe will be auctioned in November this year, organisers said on Tuesday.
Summary:
SpaceX's French rival Arianespace has launched its Ariane 5 rocket for the 100th time, propelling two telecommunications satellites into orbit.
Summary:
Backed by Lightspeed India Partners, Blume Ventures and CyberAgent Ventures, FastFox has raised nearly $7 million so far.
Summary:
Bengaluru-based meat delivery startup Licious has raised $25 million in a Series C round led by Bertelsmann India, Vertex Ventures and UCLA investment company.
Summary:
Summary:
Scientists have discovered a new species of neon-coloured reef fish at a depth of 400 feet near a remote Brazilian island chain.
Summary:
The J&K administration has increased compensation given to next of kin of police officers martyred in the line of duty due to militancy-related incidents and violence, an official said.
Summary:
The Haryana cabinet on Tuesday approved a scheme under which a monthly pension will be provided to acid attack survivors.
Summary:
Calling these clothing items "uncivilised", the college has directed girls to wear salwar-suits or trouser-shirts and boys to wear formal trouser-shirts.
Summary:
A video of an accomplice of a self-described public activist in Russia pouring bleach-laced water onto the groin of metro riders in order to tackle manspreading has gone viral.
Summary:
The systems, capable of shooting down missiles and planes, will reportedly be redeployed from Jordan, Kuwait and Bahrain.
Summary:
India is forecast to overtake Japan as the world's third-largest economy by 2030, according to a report by UK's HSBC Holdings.
Summary:
The US, which withdrew from the 2015 nuclear deal, will apply sanctions to halt oil exports from Iran starting November 4.
Summary:
Indonesia's football league, Liga 1 has been suspended for two weeks following a football club fan's murder by rival team fans on Sunday.
Summary:
She said she slept at his apartment one night and woke up to a "very sharp stabbing pain between my legs".
Summary:
She also said her boyfriend raped her while she was sleeping in his apartment.
Summary:
The Supreme Court on Wednesday ruled Aadhaar is not needed for mobile connections and bank accounts, both existing and new.
Summary:
Expressing her disappointment on being replaced by Rakhi Sawant in the 2009 film 'Horn Ok Pleassss', Tanushree Dutta said, "Biggest insult!" "I've nothing to say about her as a woman but as a human being I definitely needed to be replaced by someone a little more classy," she added.
Summary:
Responding to people trolling him for being cast as Manipuri boxer Dingko Singh in the latter's biopic, Shahid Kapoor said, "We're one country!" "I've played a Punjabi, a Kashmiri boy...No one from these states seemed to have any problem," he added.
Summary:
Summary:
After spinner Kuldeep Yadav asked for a change in the field during India's Asia Cup Super Four stage match on Tuesday, stand-in captain MS Dhoni replied, saying, "Bowling karega ya bowler change karein?" Kuldeep repeatedly asked Dhoni to change a fielder's location but the skipper did not oblige.
Summary:
Ex-Pakistan pacer Shoaib Akhtar got angry at an Indian anchor during a live TV show ahead of last Sunday's India-Pakistan match.
Summary:
Apple used Qualcomm chips in iPhone to help the devices connect to wireless data networks.
Summary:
Opportunity, which last communicated on June 10, was operating since 2004 and was NASA's oldest active rover.
Summary:
The building was about 20 years old and was in a deteriorated condition, an official said.
Summary:
Calling Aadhaar a fraud on the Constitution, he observed it is impossible to live in India without Aadhaar.
Summary:
Indian Air Force deputy chief Air Marshal R Nambiar on Tuesday said the deal for 36 Rafale aircraft by the NDA government is "much better" than the one negotiated in 2008 for 126 jets.
Summary:
Students appearing for 2019 CBSE Class 10 Board exams are likely to have the option of answering a standard-level or a higher-level Mathematics question paper, officials said.
Summary:
One or more out of the eight men arrested in Rewari gangrape case sexually assaulted at least four other women at the same spot, at a room next to a farm, the police said.
Summary:
Among the regular employees in India, 57% have monthly average earnings of â¹10,000 or less, according to a report released by Azim Premji University.
Summary:
A few Afghanistan cricketers including Tuesday's centurion, Mohammad Shahzad, met with and consoled an Indian kid who was seen crying after Tuesday's tied India-Afghanistan ODI match.
Summary:
Pacer Bhuvneshwar Kumar made a phone call to a young Indian fan to cheer him up after he was spotted crying in the stands following Tuesday's India-Afghanistan tied Asia Cup match.
Summary:
"Finally we meet!!
It was such a pleasure meeting you and an absolute fan moment...
Summary:
WhatsApp also plans to expand its outreach program to existing JioPhone users.
Summary:
AIMIM MLA Waris Pathan has tendered an apology for chanting 'Ganpati Bappa Morya' during his recent visit to a Ganesh pandal in Mumbai.
Reportedly, he was criticised by his party members after his video at the Ganesh pandal surfaced online.
Summary:
Källenius, the first non-German to take the helm of Daimler, will become CEO in 2019 replacing Dieter Zetsche two years ahead of schedule.
Summary:
The loss reduction follows a 35.24% decrease in expenses from â¹633.14 crore in the previous year to â¹410 crore in FY18.
Summary:
Elon Musk's SpaceX has signed a deal with Japanese lunar-exploration startup ispace for a Moon rover mission.
Summary:
German astronaut Alexander Gerst has captured and posted photos of Super Typhoon Trami from the International Space Station.
Summary:
Claiming western culture is temporary, he added, "Quality education along with the Indian value system will help students succeed in life.
Summary:
IIIT-Bangalore and UpGrad's PG program in Machine Learning & AI facilitates learners with case studies, assignments to provide university learning experience online.
Summary:
The Supreme Court on Wednesday said that the government's Aadhaar scheme is constitutionally valid, but added certain conditions.
Summary:
The Supreme Court on Wednesday ruled that linking the Aadhaar card to PAN card is mandatory and is needed for filing income tax returns.
Summary:
However, a person may choose to give his/her Aadhaar card as an identity proof, the apex court added.
Summary:
The Supreme Court today allowed live streaming of cases of Constitutional importance that take place in the Court of the Chief Justice of India.
Summary:
However, the court said that a person may choose to give Aadhaar voluntarily as identity proof.
Summary:
The Supreme Court, while reading out its verdict on the constitutional validity of Aadhaar, said that it gives identity to the marginalised sections of society.
Summary:
Reading out his verdict on Aadhaar's constitutionality, Justice AK Sikri said it's "better to be unique than being best; Aadhaar means unique." "There's a fundamental difference between Aadhaar and other identity proofs as Aadhaar cannot be duplicated.
Summary:
Upholding the constitutional validity of Aadhaar, the Supreme Court on Wednesday ruled that Aadhaar authentication records cannot be stored beyond six months, striking down the current rule which allowed its archiving for five years.
Summary:
Reading out his 40-page verdict on constitutionality of Aadhaar on behalf of CJI Dipak Misra, Justice AM Khanwilkar and himself, Justice AK Sikri said, "Education took us from thumb impression to signature.
Summary:
The Supreme Court on Wednesday struck down Section 57 of the Aadhaar Act that allowed private companies to avail Aadhaar data.
Summary:
Stating that Aadhaar "in its entirety is unconstitutional" while reading out his verdict on constitutionality of Aadhaar on Wednesday, Supreme Court judge DY Chandrachud said Aadhaar negated pluralistic identities and has "reduced" a person to just 12 digits.
Summary:
The Supreme Court on Wednesday said that there is no need to collect quantifiable data on backwardness while giving promotions to members of the Scheduled Caste (SC) and Scheduled Tribe (ST) in government jobs.
Summary:
Maharashtra Police have booked seven builders in Virar for allegedly selling a flat bought by singer Anuradha Paudwal to other buyers as well, cheating them of lakhs of rupees.
Summary:
Jadeja managed just one run when India needed two off the last ball against New Zealand on January 25, 2014.
Summary:
Interestingly, Dhoni's first-ever full match as international captain had also resulted in a tie, when India and Pakistan managed 141 runs each in a World T20 match on September 14, 2007.
Summary:
A grand reception will be held on December 21, reports added.
Summary:
The passenger, who claimed he was looking to charge his phone, was handed over to the Mumbai police.
Summary:
An 11-month-old baby died after developing breathing problems onboard a Qatar Airways' Doha-Hyderabad flight on Wednesday.
Summary:
A video has surfaced online, wherein BJP MP Dilip Gandhi could be seen sleeping on stage during PM Narendra Modi's speech through live stream at Ayushman Bharat- Pradhan Mantri Jan Arogya Yojana launch in Maharashtra's Ahmednagar.
Summary:
The Attorney General of India KK Venugopal hailed the Supreme Court's judgement upholding validity of Aadhaar, calling it a "remarkable judgement".
Summary:
Amid tensions between the two countries over India's decision to cancel talks, Pakistan Foreign Minister Shah Mahmood Qureshi has said, "I can say a lot but I don't want to worsen the situation," adding that Pakistan wants peace.
Summary:
Air Force deputy chief Raghunath Nambiar has defended the Rafale jet deal saying, "People are perhaps misinformed.
"We got a better price, better maintenance terms, better delivery schedule, and a better performance logistics package," Air Marshal Nambiar added.
Summary:
Aadhaar should also not be made mandatory for CBSE, UGC and NEET exams, the apex court added.
Summary:
Iranian President Hassan Rouhani on Tuesday called on the US to "come back to the negotiating table" that it left, referring to the US withdrawal from the Iran nuclear deal in May this year.
Summary:
A picture of former Pakistan President Pervez Musharraf watching the India-Pakistan Asia Cup match in Dubai has gone viral.
Summary:
Bangladesh PM Sheikh Hasina has accused Myanmar of finding new excuses to delay the return of over 7 lakh Rohingya Muslims who fled Myanmar to enter Bangladesh over the past year.
Summary:
Bajaj Allianz Life launched a 36-Critical Illness product - Health Care Goal, offering Return of Premium & Family Cover.
Upload 36 seconds plank video on social media & Bajaj Allianz will contribute towards disadvantaged kids.
Summary:
India were led by MS Dhoni, who captained the team for the 200th time in ODIs and the first time after 696 days.
Summary:
The Supreme Court, while delivering its judgement on the constitutional validity of Aadhaar, said that Aadhaar cannot be duplicated and the number once assigned to a person cannot be given to another person.
Summary:
Actress Tanushree Dutta has said that everyone in the industry knows about actor Nana Patekar's "history of assaulting women".
Summary:
A Pennsylvania court on Tuesday sentenced comedian Bill Cosby to between three and 10 years in prison for drugging and sexually assaulting a woman over a decade ago.
Summary:
Afghanistan wicketkeeper-batsman Mohammad Shahzad, who was named Man of the Match for his 124-run knock against India on Tuesday, said the match ending in a tie "wasn't fair".
Summary:
Fields Medal and Abel Prize-winning mathematician Sir Michael Atiyah on Monday demonstrated a proof of the 159-year-old Riemann Hypothesis, which is one of the "Millennium Problems", carrying a $1-million award for a confirmed solution.
Summary:
Summary:
It has been alleged that a group led by Adityanath fired during the protest resulting in the personnel's death.
Summary:
A newborn baby died on Tuesday after falling from an operation table in a government hospital in Uttar Pradesh's Faizabad allegedly after doctors and nurses did not attend to the mother and the baby.
Summary:
At least 15 patients died in the absence of medical attention and around 30 surgeries were postponed at government-run Patna Medical College and Hospital in Bihar after junior doctors went on strike on Monday.
Summary:
Eight Indian sailors are stranded on a ship without pay for nine months in the UAE, the local media reported.
Summary:
Amid growing international criticism over China's economic projects in Pakistan, Chinese Foreign Minister Wang Yi on Tuesday said "any conspiracies attempting to incite disharmony or interfere" in China-Pakistan relations will fail.
Summary:
While suggesting that his US counterpart suffers from a "weakness of intellect", Iranian President Hassan Rouhani said at the UN General Assembly that he does not need a photo opportunity with Donald Trump.
Summary:
World leaders gathered at the UN General Assembly burst into laughter on Tuesday after US President Donald Trump claimed his government has accomplished more than almost any government in the US history.
Summary:
Taking a dig at former RBI Governor Raghuram Rajan for his report on bad loans, Finance Minister Arun Jaitley said that a "postmortem is easier than taking an action when required".
Summary:
Indian equity benchmark Sensex is up 7.6% since the beginning of this year, compared with the 11% gain in the New Zealand Exchange 50 Gross Index.
Summary:
The Sandesara brothers have been absconding since a case was registered by the CBI in October 2017.
Summary:
Indian spinner Kuldeep Yadav collided into Dinesh Karthik while running to take the catch of Afghanistan's Mohammad Nabi, who scored a 56-ball 64.
Summary:
But captaincy hasn't given up on Dhoni." Another user's tweet read, "MS Dhoni completes 200 ODIs as India captain, rather reluctantly.
Summary:
World's richest man Jeff Bezos-led Amazon has donated $1 million to Wikimedia Endowment, a permanent fund run by Wikipedia parent Wikimedia.
Summary:
BJP in West Bengal has called for a 12-hour bandh on Wednesday to protest against the death of two students during a demonstration regarding appointment of school teachers in Islampur.
Summary:
The police are looking for the men, who are absconding.
Summary:
Doctors interacted with the patient and received feedback during the surgery as the local anaesthesia helped keep him awake, one of the doctors said.
Summary:
A 22-year-old Muslim youth succumbed to his injuries after a group of villagers in Rajasthan's Chittorgarh district thrashed him with bamboo sticks for allegedly fishing near a temple on the banks of Ruparel river and dirtying the area.
Summary:
A man in the US state of Florida has been sentenced to 20 years in state prison for stealing 10 cartons of cigarettes worth $600 from a convenience store.
Summary:
Saudi Arabia on Tuesday inaugurated a high-speed rail line connecting the holy cities of Mecca and Medina.
Summary:
Facebook lost more than $12 billion in market value on Tuesday after Instagram Founders Kevin Systrom and Mike Krieger resigned as the Chief Executive Officer and Chief Technical Officer of the photo-sharing app respectively.
Summary:
Three Uttar Pradesh police personnel including a female constable were suspended on Tuesday after a video showing them beating a female medical student for allegedly having a Muslim friend went viral.
Summary:
Cyrus Mistry's family has been named India's fourth-richest with â¹1,38,800 crore wealth.
Summary:
The uniform shirts of the Israel Police force are stitched at an apparel unit in Valiyavelicham in Kerala's Kannur district.
Summary:
Actress Asia Argento, the girlfriend of celebrity chef Anthony Bourdain who committed suicide in June this year, said, "People say I murdered him, they say I killed him." Argento admitted she had cheated on him.
Summary:
Kim Nam-joon, the leader of the seven-member band delivered a six-minute speech during the launch of UNICEF's 'Generation Unlimited' youth campaign.
Summary:
Summary:
Chhattisgarh minister Rajesh Munat's morphed sex CD was made by his own colleague and former BJP leader Kailash Murarka and given to the Congress, CBI said on Monday.
Summary:
The bank estimated India's potential trade with South Asia at $62 billion against actual trade of $19 billion.
Summary:
Yes Bank's board on Tuesday said it would seek RBI's approval to extend MD & CEO Rana Kapoor's term till September 2019.
Summary:
Dhoni extended his stumpings record in ODIs to 111 stumpings.
Summary:
Indian captain Virat Kohli was accompanied by his mother Saroj Kohli and his wife Anushka Sharma at the Rashtrapati Bhavan where he was being honoured with the Khel Ratna by President Ram Nath Kovind on Tuesday.
Summary:
Mozilla on Tuesday launched Firefox Monitor, a security tool that will allow users to check if their online accounts were hacked in a recent data breach.
Summary:
The robot, slightly under one metre in height, moves at a speed of up to one metre per second.
Summary:
Video game PlayerUnknown's Battlegrounds (PUBG), which is organising a global tournament for the game's mobile version in September, will be offering a $600,000 prize pool.
Summary:
He further said that even if Congress gets allies, the coalition won't be successful.
Summary:
Summary:
Accusing the Congress of jeopardising Madhya Pradesh's growth during its tenure in the state, BJP chief Amit Shah today said, "Congress had made Madhya Pradesh a 'bimaru' state." He added, "It took Madhya Pradesh's contribution to national GDP to even lower than it was before Independence...
Summary:
Public records have revealed that Ford bought the abandoned Michigan train station for $90 million to work on autonomous and electric vehicles (EVs).
Summary:
Bengaluru-based bike-sharing startup Bounce has raised nearly â¹22 crore ($3 million) in venture debt from lending firm InnoVen Capital.
Summary:
A student died while six others were injured when chunks of ceiling plaster fell on them during class, at a school in Bihar's West Champaran district, on Tuesday.
Summary:
Ex-PM Manmohan Singh has said armed forces are a splendid embodiment of the country's "secular project" and it's vitally important they remain "uncontaminated" from any sectarian appeal.
Summary:
A police constable was removed from VIP security duty in UP's Amethi after a Special Protection Group (SPG) personnel, who was protecting Congress President Rahul Gandhi, accused him of being drunk.
Summary:
"Election Commission has to act in conformity with law...made by Parliament and it cannot transgress the same," it added.
Summary:
China has accused Sweden of racism amid a diplomatic row after three Chinese tourists were forcibly removed from a hotel in Stockholm.
Summary:
The Maldives has destroyed statues deemed anti-Islamic, following government orders.
The statues in Jason deCaires Taylor's semi-submerged artwork 'Coralarium' were deemed "human form", the depiction of which is discouraged in Islam.
Summary:
The US' Treasury Department has imposed sanctions on Venezuelan President Nicolás Maduro's wife Cilia Flores, Vice President Delcy RodrÃÂguez, Information Minister Jorge RodrÃÂguez and Defence Minister Vladimir Padrino.
Summary:
Archaeologists have found a 400-year-old shipwreck off the coast of Portugal, believed to have sunk between 1575 and 1625 while returning from India carrying Indian spices.
Summary:
It was unclear if the Queen and the royal family members attended the union.
Summary:
Senior Indian-American diplomat Uzra Zeya resigned from her position in the Trump administration in spring, alleging racist and sexist bias.
Summary:
American fashion group Michael Kors Holdings on Tuesday announced it is acquiring Italian fashion house Versace for about $2.12 billion.
Summary:
Summary:
They're (BJP) more scared about losing the state than Parrikar's health," it stated.
Parrikar, who's suffering from a pancreatic ailment, is currently admitted at AIIMS, Delhi.
Summary:
National Conference spokesperson Junaid Azim Mattu resigned from the party on Tuesday over its decision to boycott municipal and panchayat polls in Jammu & Kashmir.
Summary:
He allegedly took â¹3 lakh to â¹5 lakh saying he would help people get government flats.
Summary:
Finance Minister Arun Jaitley on Tuesday said he expects the economy to sustain an annual growth rate of 8%.
Summary:
The Supreme Court said that criminalisation of politics was felt at its strongest during 1993 Mumbai serial blasts.
Summary:
Alan Hogg was shot, while his wife Nod Suddaen was killed with a hammer at their villa by contract killers who were paid â¹1.1 lakh.
Summary:
Afghanistan's wicketkeeper-batsman Mohammad Shahzad became the first player from the nation to score a ton against India in international cricket after reaching the landmark in their Asia Cup 2018 match on Tuesday.
Summary:
India's 37-year-old wicketkeeper MS Dhoni became the oldest player to captain India in an ODI after he led the Indian team against Afghanistan in Rohit Sharma's absence in the Asia Cup on Tuesday.
Summary:
Indian pacer Deepak Chahar became the 223rd player to represent India in One Day Internationals after making his debut against Afghanistan in the Asia Cup on Tuesday.
Summary:
Haringga Sirla, a 23-year-old fan of Indonesian football club Persija Jakarta, passed away after a group of Persib Bandung supporters beat him outside the main stadium in the city of Bandung.
Summary:
With the new feature, women can choose from their Settings that only they can start a conversation with a male after matching with the latter.
Summary:
Google is using AI-enabled forecasting models to predict and issue flood warnings in India.
Summary:
Users will also be able to increase or decrease the amount of news they see in their feed using a control icon.
Summary:
Summary:
Cab-hailing startup Ola on Tuesday launched a safety programme called 'Guardian' in India to monitor rides in real time.
Summary:
Homegrown e-commerce startup Flipkart has acquired Israel-based technology startup Upstream Commerce for an undisclosed amount.
Summary:
Chinese electric vehicle company Sunra is planning to set up a factory in India.
Summary:
As many as 4,130 cases of rape and 15,470 dowry-related cases have been reported in Assam in the past two years, Assam Industries and Commerce Minister Chandra Mohan Patowary said on Monday.
Summary:
A three-year-old girl died in Jharkhand after allegedly being raped by a 20-year-old man who called her to his house on the pretext of offering her chocolate.
Summary:
A 49-year-old Japanese woman has been arrested on the suspicion of abandoning her baby's body in a coin locker after reportedly moving the corpse around for as many as five years.
Summary:
A police officer in the US city of Detroit has been fired for purportedly referring to black people as "zoo animals".
Summary:
Pen manufacturer Flair Writing Industries has filed its draft papers with market regulator SEBI to raise funds through an Initial Public Offering (IPO).
Summary:
Dhoni, who had stepped down as captain in January 2017, is leading India for the 200th time in ODIs and the first time after 696 days.
Summary:
Union Minister Ravi Shankar Prasad on Tuesday said, "It's a matter of shame for Congress that a person like Rahul Gandhi, who's irresponsible and is a liar, is their President." "In the history of independent India, no national party president has ever made such comments about a PM," he added.
Summary:
The discovery makes Titan the third Solar System body, in addition to Earth and Mars, where dust storms have been observed, said NASA.
Summary:
Refusing a petition to bar people with criminal charges from contesting elections, the Supreme Court on Tuesday remarked that the society has the right to be governed by better people.
Summary:
The Delhi High Court on Tuesday listed the Sunanda Pushkar death case for October 9 for a final hearing.
Summary:
Union Minister Giriraj Singh has announced on Twitter that he has changed his name to Shandilya Giriraj Singh after a sage named Shandilya, in an attempt to save the Sanatan Dharma.
Summary:
Indian equity benchmarks Sensex and Nifty ended their 5-day losing streak, their worst in 2018, led by gains in pharma and banking stocks.
Summary:
Who remembers pagers/ beepers?" In the picture, Jacqueline can be seen standing beside her father wearing a white dress with a veil.
Summary:
Commenting on Karan Johar's picture from the Gucci show at the Paris Fashion Week, actor Ranveer Singh wrote, "Thakur chic," in reference to Sanjeev Kumar's look from the 1975 film 'Sholay'.
Summary:
Kiara Advani will star opposite Shahid Kapoor in the Hindi remake of the Telugu film 'Arjun Reddy'.
Let's do this." Earlier, Tara Sutaria was to star opposite Shahid in the film, which is scheduled to release on June 21, 2019.
Summary:
Comedian Bill Cosby, who was earlier facing up to 30 years, will now face 5-10 years in jail for sexually assaulting Andrea Constand.
Summary:
Australian cricket team has hired three Indian spin specialists to help with their training ahead of their upcoming series against Pakistan.
Summary:
American golfer Tiger Woods posted his 80th PGA Tour victory and his first after a gap of over five years.
Summary:
Sandeep Kaur, an auto-rickshaw driver's 16-year-old daughter, beat Karolina Ampuska 5-0 to win a gold medal in the 52 kg category at the 13th International Silesian Boxing Championship in Poland.
Summary:
Microsoft on Monday partnered with the Data Security Council of India to launch a three-year programme, called CyberShikshaa, to train 1,000 women from underserved communities in cybersecurity.
Summary:
Tesla worker Jose Moran has claimed that CEO Elon Musk called him to a meeting in which he said that representing the United Auto Workers union would leave him voiceless.
Summary:
They were only interested in retaining power." He further said that saving India from vote bank politics is BJP's objective.
Summary:
Italian superbike maker Ducati has launched the special edition 959 Panigale Corse bike in India, priced at â¹15.2 lakh.
Summary:
IIT Kharagpur alumnus Anindya Dutta co-founded startup Stanza Living has raised nearly â¹73 crore in a funding round led by Sequoia Capital India.
Summary:
The Allahabad High Court has amended a three-decade-old rule by reducing the 10-day wait period for bail to two days, barring exceptional circumstances.
Summary:
A 28-year-old watchman has been arrested for allegedly slitting the throat of a woman in Mumbai, a day after he informed the police of the crime.
Summary:
The Supreme Court on Tuesday set up a three-member committee headed by retired judge Amitava Roy to look into issues afflicting Indian prisons and recommend steps towards prison reforms.
Summary:
Charanpreet Singh Lall had joined the British Army in January 2016.
Summary:
Indian national Bahurudeen Kuthpudeen who fled with his employer's cash worth over â¹2.5 crore has been jailed in Singapore for three and a half years.
Summary:
This is two people reflecting as leaders of their two countries," she added.
However, May also admitted that she has had disagreements with the US leader.
Summary:
The government is reportedly planning to raise about â¹20,000 crore by selling its 63.8% stake in hydropower producer SJVN and 65.6% stake in Power Finance Corporation to other state-owned companies.
Summary:
If Paytm gets stockbroker licence, it will reportedly be able to offer direct equities, commodities and derivatives.
Summary:
Till September 24, the national capital recorded 224.5 mm rainfall, while in the whole month last year it received 158.5 mm.
Summary:
Actress Deepika Padukone has shared a picture of a newspaper clipping where an article referred to her sister Anisha as 'The other Padukone'.
Summary:
Summary:
A 20-year-old food service worker at a stadium in the US has been arrested after a video of him spitting on a pizza intended for customers went viral.
Summary:
Summary:
The Supreme Court told Delhi BJP chief Manoj Tiwari, "You claimed in your TV interview there are 1,000 unauthorised properties that should be sealed.
Summary:
ISRO inserted Mangalyaan into Mars' orbit in its first attempt on September 24, 2014, using the least amount of fuel possible.
Summary:
Lance Naik Sandeep Singh, who was martyred on Monday while foiling an infiltration bid in Jammu and Kashmir, was part of the special forces team that carried out surgical strikes against Pakistan in 2016.
Summary:
Speaking at the Nelson Mandela Peace Summit on Monday, External Affairs Minister Sushma Swaraj said India is proud to call the late South African President a Bharat Ratna and considers him one of its own.
Summary:
Her partner Clarke Gayford was seen holding the infant while Ardern spoke at the 73rd UN General Assembly in New York, US.
Summary:
Three US citizens have sued Tata Consultancy Services (TCS) alleging discrimination based on race and national origin.
Summary:
The 36-acre facility will be Boeing's second-largest after its Seattle, Washington unit and is said to create about 2,600 direct jobs on completion.
Summary:
Freida Pinto has said the break of two and a half years that she took from acting is the most important thing that she has done in her entire career.
Summary:
The original song, from the 1994 film 'Vijaypath', which was picturised on Ajay and Tabu, was sung by Alisha Chinai and composed by Anu Malik.
Summary:
Pictures of Priyanka Chopra and Nick Jonas with Sonam Kapoor and Anand Ahuja in Italy have surfaced online.
Summary:
Arbaaz Khan will marry his rumoured Italian girlfriend Giorgia Andriani next year, as per reports.
Both their families have approved the relationship and the couple will get married in court, reports suggested.
Summary:
A new song titled 'Dhoom Dhadakka' from Arjun Kapoor and Parineeti Chopra starrer 'Namaste England' has been released.
Summary:
Speaking about his captaincy skills, India's current captain Virat Kohli stated that he has learned the most from former captain MS Dhoni.
Summary:
Summary:
Before Google, Enright worked as the Chief Privacy Officer at Macy's and was also a senior consultant at IBM.
Summary:
New Delhi-based travel startup Tripoto is raising $6-7 million in a Series B round of funding, according to reports.
Summary:
Chennai-based online pharmacy Netmeds has acquired online telemedicine startup JustDoc in a cash-and-stock deal of nearly $1 million.
Summary:
The Supreme Court has extended the deadline for Uttar Pradesh government to submit a vision document on protecting Taj Mahal till November 15.
Previously, the court said issues like vehicular traffic, pollution from Taj Trapezium Zone industries should be considered for preparing vision document.
Summary:
The girl's father and uncle tied the victims with ropes, and beheaded them with a sharp object, the police said.
Summary:
European Union nations had previously requested the US to exempt European companies from the sanctions imposed on Iran.
Summary:
Swedish PM Stefan Löfven on Tuesday became the country's first leader to be ousted in a no-confidence vote.
Summary:
Johnnie Walker - The Journey is celebrating India's most inspiring walk with a short film by actor-turned-director Imran Khan-- Mission Mars: Keep Walking India.
Summary:
Kevin Systrom and Mike Krieger, Co-founders of photo-sharing app Instagram, have resigned from Facebook, reportedly over growing tensions with Facebook CEO Mark Zuckerberg.
Launched in 2010, Instagram was acquired in 2012 by Facebook for $1 billion.
Summary:
About $600 million of the funds would be poured into China, where OYO began operations 10 months ago.
Summary:
The group of 50 trekkers that includes 42 IIT Roorkee students are safe in the Sissu area of Lahaul-Spiti, Himachal Pradesh Chief Minister Jairam Thakur said on Tuesday.
Summary:
Actor Dalip Tahil, who portrayed India's first PM Jawaharlal Nehru in 'Bhaag Milkha Bhaag', has been arrested for drunk driving in Mumbai after his car allegedly hit an autorickshaw and injured the passengers inside it.
Summary:
A court in Tamil Nadu on Tuesday acquitted nine men accused of kidnapping Kannada actor Rajkumar in 2000 on grounds that the prosecution failed to prove that they were accomplices of sandalwood smuggler Veerappan.
Summary:
Balabhaskar and his wife Lakshmi have been hospitalised and are said to be in a critical condition.
Summary:
Actor Aamir Khan, while sharing the poster of 'Thugs Of Hindostan', his upcoming film with Amitabh Bachchan, wrote on social media, "To see myself on a poster with Mr Bachchan is a dream come true for me.
Summary:
The ICC on Monday said that five international captains reported approaches for spot-fixing by bookies in the past 12 months.
Summary:
The police nabbed Sonu Sharma after a Delhi-based woman filed a complaint accusing him of stalking, harassing and blackmailing her with morphed pictures of herself.
Summary:
After refusing to testify to US Congress earlier this month, Google CEO Sundar Pichai on Monday said he will meet US lawmakers this week.
Summary:
Addressing people in Uttar Pradesh's Amethi, Congress President Rahul Gandhi on Monday said, "The fun has just begun...In the coming months you'll have fun after we show you Narendra Modi's work- Rafale, Vijay Mallya, Lalit Modi, Demonetisation".
Summary:
The BJP on Monday alleged that the UPA government had wanted a firm linked to Congress chief Rahul Gandhi's brother-in-law Robert Vadra to be part of the Rafale deal but Dassault Aviation refused.
Summary:
The Supreme Court on Tuesday directed political parties to update the full details of criminal charges their election candidates are facing on their websites and also announce the same to media.
Summary:
The St Mary's Church has revoked the restrictions it imposed on Sister Lucy Kalappura which barred her from performing church duties after she participated in a protest against rape accused Bishop Franco Mulakkal.
Summary:
The father of Navy officer Abhilash Tomy, who was rescued from the Indian Ocean on Monday after getting stranded during a sailing race, has said sailing has been his son's passion since childhood.
Summary:
Awarding a seven-year jail term to a 31-year-old man for raping a Class 11 girl in 2015, a Maharashtra court observed that a minor's consent is "no consent in the eyes of law".
Summary:
The Central Information Commission has ruled that classified records related to former PM Lal Bahadur Shastri's death should be placed before PM Narendra Modi and Home Minister Rajnath Singh to decide on their declassification.
Summary:
Denying sexual allegations levelled against him, US President Donald Trump's Supreme Court nominee Brett Kavanaugh said he was a "virgin in high school and for many years thereafter".
Summary:
Pakistan's SC has rejected a petition seeking disqualification of PM Imran Khan as Member of National Assembly for not being sadiq (truthful) and ameen (righteous), and for not disclosing his alleged love child with late British socialite Sita White in his nomination papers.
Summary:
Aayush Sharma, while talking about the ongoing controversy surrounding the title of his upcoming film 'Loveyatri', has said, "I don't want to win the box office with a controversy." "I don't think getting controversy or adding tension would have worked in my favour.
Summary:
Ayushmann Khurrana has revealed that he gave a screen test for his upcoming film 'AndhaDhun', adding, "It happens in the West most of the time.
Summary:
FIFPro World XI of 2018, which was announced on Monday, also features 2018 FIFA World Cup's best young player Kylian Mbappé.
Summary:
India captain Virat Kohli, in an interview, said sometimes he doesn't even look at the bowler while batting.
Summary:
"He said he made a motion.
Summary:
You've to be here when you win and when you lose," former England manager Fabio Capello said.
"They don't realise, the one affected is the sport and then them," FIFA said.
Summary:
Toxic foam from the Bellandur lake in Bengaluru climbed up the 10 feet mesh and overflowed on the road on Tuesday morning.
Summary:
Croatia midfielder Luka ModriÃÂ, who led his country to their first-ever FIFA World Cup final, won this year's The Best FIFA Men's Player award on Monday, finishing ahead of Cristiano Ronaldo and Mo Salah.
Summary:
The apex court said that MPs and MLAs can practise law as they are not "full-time salaried employees".
Summary:
Under the existing law, politicians are banned from contesting elections for six years if they are convicted.
Summary:
The first beneficiary in Jharkhand, where the scheme was launched, was a woman who gave birth to a baby girl.
Summary:
At least 25 people have died after heavy rains caused flash floods and landslides in parts of North India including Himachal Pradesh and Punjab.
Summary:
Luc Anus, who wanted to promote his campaign ideas on Facebook, said the platform "just does not accept my name".
Summary:
Identical twin doctors Nathan and Matthew Keller delivered a twin boy and a girl by performing a cesarean section together for the first time at a hospital in the US' Pennsylvania.
Summary:
German forward Lennart Thy won the FIFA Fair Play Award on Monday for missing his then team VVV-Venlo's match against PSV Eindhoven to help a leukemia patient.
Summary:
A group of men followed the victim to the restaurant's kitchen and attacked him with a machete on his head and legs, police said.
Summary:
"Despite continuing efforts over the last two to three years...the ED has, at every step, resisted this effort," stated Mallya.
Summary:
Summary:
Doctors at a government hospital in Odisha's Mayurbhanj treat patients using candles and flashlights on their mobile phones due to acute power shortage in the area.
Summary:
Andhra Pradesh has topped the 'Ease of Living Index' rankings released by the Ministry of Housing and Urban Affairs under the Atal Mission for Rejuvenation and Urban Transformation (AMRUT) on Monday.
Summary:
A 52-year-old British tourist was found dead in a guest house room on Monday in Uttar Pradesh's Varanasi.
Summary:
A fake photo of US President Donald Trump in a raft, extending a red Make America Great Again hat to a flood victim, has gone viral in the wake of Hurricane Florence.
Summary:
Summary:
Erica Jennifer Fernandes, who'll be playing the role of Prerna in 'Kasautii Zindagii Kay', said, "[Shweta Tiwari] was Prerna of that generation...I'll be Prerna of the current generation." Erica added she's ready for the comparisons with Shweta, who had earlier played the role.
Summary:
Arjun Kapoor and his half-sister Janhvi Kapoor will be appearing as guests in the upcoming season of Karan Johar's 'Koffee With Karan', as per reports.
Summary:
Summary:
Liverpool forward Mo Salah was awarded the 2018 FIFA Puskás award, given for the best goal of the year, on Monday.
Summary:
France manager Didier Deschamps, who led France to victory in the 2018 FIFA World Cup, won The Best FIFA Men's Coach award on Monday.
Summary:
Stating that the Opposition suffers from "Modiphobia", BJP President Amit Shah on Monday said, "While PM Narendra Modi is engaged in 'Make in India'...opposition parties...are attempting 'Break in India'.
Summary:
Besides Naspers, Ola is also in talks with Singapore's Temasek and two other funds to raise $1 billion in fresh capital, reports added.
Summary:
Indrani Mukerjea, the prime accused in Sheena Bora murder case, was on Monday admitted to Mumbai's JJ Hospital after she complained of headache, restlessness and double vision since evening.
"She is a known case of hypertension and cervical spondylitis.
Summary:
The girl took the step after her boyfriend cheated on her.
Summary:
Around 129 countries at the United Nations on Monday pledged to combat drug problem, signing a US-drafted one-page "call to action on the world drug problem".
Summary:
Another user tweeted, "A child can see similarity between Aamir Khan's character in #ThugsOfHindostan and Jack Sparrow."
Summary:
Former Miss India and actress Tanushree Dutta recalled how members of a political party threatened her and broke her car after she refused to do an intimate dance sequence with an actor for 'Horn OK Please' in 2008.
Summary:
Hours after tweeting a phone number which appeared to belong to his wife Kajol, actor Ajay Devgn revealed it was just a prank as "Pranks on film set are so passé." Ajay had earlier tweeted, "Kajol not in country..
Summary:
Facebook on Monday appointed Hotstar CEO Ajit Mohan as Facebook India's Managing Director and Vice President.
Summary:
Dubai's billion-dollar transportation services startup Careem has acquihired Hyderabad-based shuttle service app Commut for an undisclosed amount.
Summary:
Meanwhile, the Supreme Court, with a sanctioned strength of 31 judges, has six vacancies.nnnn
Summary:
The sister of the Kerala nun, who has accused Bishop Franco Mulakkal of raping her multiple times, alleged his relatives are sending her family death threats and has sought police protection.
Summary:
Seven people, who were arrested in a fake job scam, admitted to cheating 20 people of â¹2 crore by promising to get them jobs as Assistant Managers at state-run oil company Oil and Natural Gas Corporation (ONGC).
Summary:
Dhan Singh Bisht, who was unhappy that his employer gifted him only a t-shirt for stopping a robbery of â¹80 lakh, stole â¹70 lakh from his employer in Delhi and fled to Nainital.
Summary:
The gates were last opened in 2008.
"If required, we might have to open more gates," said an official.
Summary:
The government had last week suggested a merger of the three banks to create the country's second largest state-run bank, after SBI.
Summary:
Weam Al Dakheel has become the first woman to deliver an evening news bulletin on television in Saudi Arabia.
Summary:
Italian luxury brand Gucci is facing criticism from the people for selling a swimsuit priced nearly â¹28,000, which the brand advises against wearing during swimming.
Summary:
A prosthetic breast was inserted in between the breasts of the models.
Summary:
Developed by a Japanese inventor, the cube uses servo motors and Arduino boards which allow it to turn and twist on its own.
Summary:
Apple on Monday announced that the company has completed its acquisition of music recognition app Shazam which will soon become advertisement-free for all users.
Summary:
Video game company Nintendo allowed its 21-year-old fan, Chris Taylor who has terminal cancer, to play 'Super Smash Bros.
After Taylor's friends began an online campaign, Nintendo representatives came to Taylor's home to let him play the game's demo.
Summary:
The robots can be controlled even if the operator can only move their eyes.n
Summary:
Uber drivers and other drivers in the US who transport people through an app on an average earned 53% less in 2017 than they did five years ago, according to a report.
Summary:
The state government has issued a red alert and ordered authorities to remain vigilant.
Summary:
West Bengal CID has arrested 42 people in connection with cheating in the state police constable recruitment examination.
Summary:
At least 35 children were stranded on Monday after a school bus got stuck at a waterlogged underpass of a railway line in Rajasthan's Ajmer.
Summary:
Airbus has delivered the first A350-900 Ultra Long Range plane to Singapore Airlines to perform the world's longest flight at about 19 hours.
Summary:
Russia had earlier suspended the delivery of the missile system to Syria upon Israel's request.
Summary:
The Lahore High Court has summoned ex-Pakistan PM Nawaz Sharif in a treason case over his remarks on the 26/11 Mumbai terror attacks.
Summary:
South Korea is the first country to completely cut oil imports from Iran following the imposition of US sanctions against the country, the Iranian oil ministry said.
Summary:
Three jailed Saudi human rights activists have been awarded the Right Livelihood Award, widely referred to as the 'Alternative Nobel Prize'.
Summary:
The biker picked it up and threw it back inside before riding away.
Summary:
Ajay Devgn has shared his wife Kajol's mobile number on Twitter while tweeting, "Kajol not in country...
Summary:
Actor Irrfan Khan starrer 'Doob', titled 'No Bed Of Roses' in English, has been chosen as Bangladesh's official entry for the Oscars and will contest in the Best Foreign Language category at the 91st Academy Awards.
Summary:
A video of Pakistan all-rounder Shoaib Malik waving at fans after they call him 'Jiju, Jiju' during India-Pakistan match has gone viral.
Summary:
After being dropped from the Goa Cabinet, Goa BJP legislator Francis D'Souza said, "This is the reward I'm getting for my loyalty to the party for...last 20 years." D'Souza, who was serving as Urban Development Minister, is currently undergoing treatment in the US.
Summary:
The Home Affairs Ministry denied Congress chief Rahul Gandhi's claim that former Special Protection Group Director Vivek Srivastava had to quit after he refused a list of SPG officers chosen by RSS, calling it "baseless".
Summary:
Speaking about the Opposition's allegations on Rafale deal, Defence Minister Nirmala Sitharaman said, "This is a perception battle.
Summary:
The Supreme Court on Monday referred to a five-judge bench a plea seeking a declaration that the practice of female circumcision prevalent in Dawoodi Bohra community amounts to female genital mutilation.
Summary:
Rejecting India's concerns over the release of postal stamps portraying slain terrorist Burhan Wani as a 'freedom icon', Pakistan has said "hundreds of thousands of people are fighting in Kashmir, not all of them are terrorists".
Summary:
An Indonesian teenager survived 49 days adrift at sea in a fishing hut before he was rescued by a Panama-flagged vessel and returned home.
Summary:
Versace family will remain with their company, reports added.
Summary:
Infosys cited deleting data as the main defence to stop Bansal's pay.
Summary:
The promo also shows a glimpse of a female character who Anurag's mother thinks is the right fit to marry her son.
Summary:
Kannada actor Duniya Vijay and his three accomplices got arrested on Sunday for assaulting a gym trainer.
Summary:
Sharing a picture with actress Parineeti Chopra, Arjun Kapoor captioned it, "Forget Keke, Pari do you love me?", referring to rapper Drake's song 'In My Feelings'.
In the picture, Arjun can be seen wearing a black t-shirt with 'Keke' written on it and clicking Parineeti's picture.
Summary:
American singer Jennifer Lopez fell on stage while performing her second-last song 'Dance Again' at her Las Vegas residency show on Saturday.
Summary:
On the 11th anniversary of India's World T20 victory, cricketer Gautam Gambhir tweeted, "While I'm proud of the yesterday of 2007...but the fact is it was 11 years ago.
Summary:
Summary:
However, the tram operated on a 6-km test route in real traffic with a safety driver for emergency purposes.
Summary:
Reacting to two ministers who're currently hospitalised being dropped from Goa Cabinet, Goa Congress President Girish Chodankar said, "It's hypocrisy.
Summary:
As part of the acquisition, Co-founder and CEO of Mubble, Ashwin Ramaswamy, will join Obopay, the statement added.
Summary:
Speaking at an event in Goa, BJP MP Subramanian Swamy on Sunday refuted the popular belief that Ravana was born in Lanka.
He said Ravana was born near Delhi, in a village named Bisrakh.
Summary:
The mother of AG Perarivalan, one of the convicts in Rajiv Gandhi assassination case, met Tamil Nadu Governor Banwarilal Purohit seeking her son's release following a cabinet recommendation to him on the matter.
Summary:
A jawan was martyred and three militants killed on Monday as the Army foiled an infiltration bid along the Line of Control (LoC) in Jammu and Kashmir's Kupwara district.
Summary:
Rouhani had "oppressed his people for a long time", Haley added.
Summary:
Hong Kong has outlawed the pro-independence Hong Kong National Party (HKNP), the first such ban on a political organisation since the city returned to Chinese rule in 1997.
Summary:
Satellite radio company Sirius XM Holdings on Monday said it would buy music-streaming service provider Pandora in an all-stock deal valued at about $3.5 billion.
Summary:
Walmart-controlled Flipkart is considering to name a new Group CEO, a post currently held by Co-founder Binny Bansal, according to reports.
Summary:
The 21-year-old student, who accused Chinese e-commerce giant JD.com's 45-year-old billionaire Richard Liu of rape, had texted her friend, "He started to touch me in the car...I begged him not to...but he did not listen." "He will suppress it...You underestimate his power," another text read.
Summary:
The Duchess of Sussex Meghan Markle has revealed she got a piece of fabric from her dress worn at first blind date with Prince Harry stitched into her wedding dress.
Summary:
Sanya Malhotra has revealed that her 'Dangal' co-star Aamir Khan advised her and Fatima Sana Shaikh not to do more than two films a year.
Summary:
Actress Sunny Leone revealed she once received an offer to star in HBO series 'Game of Thrones' but refused it on finding out it was fake.
Summary:
A passenger on board a GoAir Delhi-Patna flight tried to open the plane's exit door, thinking it was a toilet.
Summary:
The Goa Chief Minister's Office on Monday announced that Power Minister Pandurang Madkaikar and Urban Development Minister Francis D'Souza will no longer be part of the Cabinet.
Summary:
A video shows an empty tourist bus and a heavy truck getting washed away in Himachal Pradesh, which has been witnessing incessant rainfall.
Summary:
Speaking at the inauguration of India's 100th airport in Sikkim, PM Narendra Modi on Monday said the NDA government built nearly nine airports a year on an average.
Summary:
Schools in nine of 12 districts in Himachal Pradesh were closed on Monday due to heavy rain and snowfall.
Summary:
Accusing the US and Israel of involvement in last week's attack on a military parade that killed 25 people, Iran's Islamic Revolutionary Guard Corps has warned both the countries to expect a "devastating" response.
Summary:
Criticising a UN report on the Rohingya crisis, Myanmar Armed Forces' commander-in-chief Min Aung Hlaing has said the organisation has no right to interfere in the sovereignty of the country.
Summary:
Authorities in the US state of Texas have found cocaine packets hidden inside banana boxes donated to a prison.
Summary:
Speaking on Pakistan raising the Kashmir issue at the United Nations General Assembly, India's Ambassador to the UN, Syed Akbaruddin said that India has handled Pakistan's "one-trick pony" acts in the past and is confident it'll do it again.
Summary:
The family's extradition could be difficult as India does not have an extradition treaty with Nigeria, reports added.
Summary:
The Sensex fell by 537 points to close at 36,305.02 on Monday, dragged down mainly by finance stocks such as HDFC and Indiabulls Housing Finance.
Summary:
A new song 'Dholida' from Aayush Sharma and Warina Hussain starrer 'Loveyatri' has been released.
Summary:
Alia Bhatt, who will be seen in Mahesh Bhatt's upcoming film 'Sadak 2', said, "When I heard the story, I told him [Mahesh]...that I cannot do this film if you're not directing it." "[Sanjay Dutt] recently told me, 'Alia you don't know what you're getting into.
Summary:
I played for Pakistan for 20...years but I never thought I would see a day like this," he added referring to India's nine-wicket win over Pakistan on Sunday.
Summary:
This is the first time Chelsea failed to win in the ongoing Premier League season.
Summary:
Paytm has started testing the facial recognition feature that can unlock its payments app on a user's smartphone.
Summary:
BJP spokesperson Sambit Patra said both Congress and Pakistan are "frustrated" and have the common aim of removing PM Narendra Modi from Indian polity.
Summary:
The regulator said the effective fares on Grab rose 10-15% following the deal whilst its market share grew to around 80%.
Summary:
Another bridge had collapsed in Siliguri on September 7 but no casualties were reported.
Summary:
US Ambassador to the UN Nikki Haley has said she has never heard anyone in President Donald Trump's Cabinet talk about the possibility of trying to remove him from office, calling the reports "absurd".
Summary:
Libya has asked the United Nations Security Council (UNSC) to intervene as 115 people have been killed and 383 others left injured in month-long clashes between rival factions in the capital Tripoli.
Summary:
PM Narendra Modi on Monday inaugurated Pakyong Airport near Gangtok in Sikkim, which is India's 100th airport and the state's first airport situated at an altitude of 4,500 feet above sea level.
Summary:
A Pakistani news anchor was caught flipping both his middle fingers during a news bulletin on the ongoing Asia Cup. The video was shared on Twitter by journalist Syed Raza Mehdi with the caption, "When panel producer is in so much hurry to switch!!!
Summary:
Actor Aamir Khan's look as Firangi from 'Thugs of Hindostan' has been revealed.
Summary:
During the India-Pakistan Asia Cup match on Sunday, Rohit Sharma and Shikhar Dhawan shared an opening partnership of 210 runs to set the record for the highest opening partnership for India against Pakistan in ODI cricket.
Summary:
All-rounder Yuvraj Singh is the only Indian cricketer to win the Under-19, T20 and 50-over World Cups.
Summary:
Mukul Choudhary, the wife of a serving IPS officer, has announced that she will contest the Rajasthan Assembly elections as an Independent candidate from Jhalrapatan constituency, from where CM Vasundhara Raje contests.
Summary:
London-based food delivery startup Deliveroo's Founder and CEO Will Shu may get a $200 million payout from Uber Eats' reported buyout of the smaller rival.
Summary:
The victim lost almost half of his tongue and underwent a surgery at Safdarjung Hospital, the police added.
Summary:
The Railways Ministry spent over â¹13 crore on the inauguration of various projects and services through video-conferencing between November 2014 and September 2017, an RTI reply revealed.
Summary:
Meanwhile, the price of petrol in Delhi hit â¹82.72/litre and diesel hit â¹74.02/litre.
Summary:
Indian Naval Commander Abhilash Tomy, who was stuck on a yacht in the Indian Ocean approximately 1,900 nautical miles from Australia's Perth, has been rescued by a French fishing vessel.
Summary:
Six cartridges were recovered and 17-18 rounds were fired, the police said.
Summary:
The first case of Zika virus has been reported in Rajasthan after an 85-year-old woman tested positive for the mosquito-borne disease, Jaipur's Sawai Man Singh Medical College and Hospital confirmed.
Summary:
After BJP chief Amit Shah described Bangladeshi immigrants as "termites" and called for their deportation, Bangladesh Information Minister Hasanul Haq Inu said his remark was unwanted.
Summary:
Prime Minister Narendra Modi on Sunday took to Twitter to share four photographs he clicked from the chopper on his way to Sikkim.
PM Modi is on a two-day visit to Sikkim, where he inaugurated the Pakyong Airport today.
Summary:
Comedian Bharti Singh and her husband Haarsh Limbachiyaa have been diagnosed with dengue and are currently admitted to Kokilaben Dhirubhai Ambani Hospital in Mumbai, as per reports.
Summary:
Maisie Williams, who portrays 'Arya Stark' in 'Game of Thrones', has said the final season of the series will be "incredible" for women.
Summary:
I don't belong to one place," she added while referring to her latest film 'Manto', which is based on the life of writer Saadat Hasan Manto.n
Summary:
India, who defeated Pakistan by nine wickets in Super Four stage, reached their 10th Asia Cup final following Bangladesh's three-run victory over Afghanistan on Sunday.
Summary:
NASA is planning to conduct a contest among students to name the agency's next Mars rover for the Mars 2020 mission, in the 2019 academic year.
Summary:
The loan aims to improve connectivity of the rural interior with the national and state highways.
Summary:
Maldives opposition candidate Ibrahim Mohamed Solih has won the presidential elections after having received 134,616 votes as compared to 96,132 votes received by incumbent President Abdulla Yameen Abdul Gayoom, according to provisional results announced by Elections Commission of Maldives.
Summary:
Taking a dig at US President Donald Trump, German Foreign Minister Heiko Maas said, "We learn of certain US decisions via Twitter," adding that it "does change cooperation between the countries".
Summary:
A woman in Oregon, US fled away with an ambulance while the medics were performing CPR on an unconscious woman.
Summary:
US Secretary of State Mike Pompeo has said that the country would emerge victorious in the ongoing trade war with China.
Summary:
Two Israel Defence Forces servicemen are suspected of abuse of power, stealing money and strip searching Palestinian women with racist motives, an Israeli military court has said.
Summary:
India will next face Afghanistan on Tuesday.
Summary:
Summary:
Radhika Apte, while speaking about her leaked clips, said there's nothing to hide now while adding, "I can do anything." "People won't be able to make news out of it," she said.
Summary:
Dhoni is now only behind Sachin Tendulkar, who played a record 664 matches for India.
Summary:
During Sunday's felicitation ceremony to award cash prize to Asiad medallists, Indian Olympic Association (IOA) ended up giving only bouquets to around 15 athletes after it misspelt their names on the cheques.
Summary:
Delhi CM Arvind Kejriwal challenged BJP President Amit Shah for a public debate on performances of PM Narendra Modi's government and Delhi government.
Summary:
Nepal's wild tiger population has reached 235, nearly doubling the baseline of around 121 tigers in 2009.
Summary:
Tomy suffered a back injury after his yacht was hit by a storm.
Summary:
Defending the ban on DJ and Dolby sound during Ganesh Chaturthi which ends on Sunday, Maharashtra Chief Minister Devendra Fadnavis said, "Lord Ganesha does not need DJ, Dolby.
Summary:
BJP President Amit Shah said that if the party wins Lok Sabha 2019 polls, it'll undertake a nationwide identification of illegal infiltrators living in the country.
Summary:
Speaking about cases of violence in Kashmir, Indian Army Chief General Bipin Rawat said Pakistan wants this type of trouble to continue while adding, "Pakistan has decided to bleed India with a thousand cuts." He said, "Pakistan has been trying to radicalise Kashmiri youth by giving them hope of freedom.
Summary:
A suicide note, purportedly written by him, stated he was ending his life of his own will and nobody was responsible for it, the police said.
Summary:
Former French President François Hollande's statement on the Rafale deal can affect our ties with India, France's junior Foreign Minister Jean-Baptiste Lemoyne said.
Summary:
Reacting to the four-day market plunge that wiped off â¹5.6 lakh crore of investors' wealth, the RBI on Sunday said it is "closely monitoring" the financial markets along with Sebi.
Summary:
Pakistan's PM Imran Khan has said his country's offer of friendship to India shouldn't be considered as its weakness.
Summary:
The Countdown supermarket chain in New Zealand has removed an Australian brand of strawberries from sale after needles were found in a box of the fruit in Auckland.
Summary:
Actress Sonam Kapoor and her husband Anand Ahuja were among the front row attendees at designer Giorgio Armani's show during Milan Fashion Week.
Summary:
Actor Neil Nitin Mukesh took to social media to share the first pictures with his newborn daughter who has been named Nurvi.
Nurvi, who was born on Thursday, is Neil and Rukmini's first child together.
Summary:
Priced at around $1.3 million, it comes as Monza SP1 and SP2 variants, both of which can reach 100 kmph in 2.9 seconds.
Summary:
On being asked if SpaceX would launch military weapons, the startup's President Gwynne Shotwell has said, "If it's for the defense of this country, yes, I think we would." She further said that SpaceX spent a lot of time building its relationship with the Air Force.
Summary:
The car was earlier auctioned and sold to a US farmer for $1.4 million on August 25.
Summary:
Following an argument, the driver stabbed one of the passengers in the arm and the other in the neck.
Summary:
Currently, private companies like Airbnb can only give equity to investors and employees.
Summary:
A 15-year-old boy was allegedly lynched by a group of people in Tamil Nadu's Karur on Sunday over suspicion of stealing a mobile phone, the police said.
Summary:
Aam Aadmi Party (AAP) is planning to contest from 100 seats in the 2019 Lok Sabha elections, a senior party leader said.
Summary:
Several countries have requested the Maldives to conduct the election in a free and fair manner.
Summary:
Voters in Switzerland's canton of St Gallen have approved a ban on facial coverings such as the burqa in public.
Summary:
Goa Chief Minister Manohar Parrikar will continue to serve as the state's CM, Bharatiya Janata Party (BJP) national President Amit Shah announced on Sunday.
Summary:
Radhika Apte has revealed somebody once sent her leaked nude clip to her mother.
"I was completely unaware [about the leak].
Radhika further said now she doesn't take stress over her leaked clips.
Summary:
American singer John Legend performed his single 'All of Me' at Isha Ambani and Anand Piramal's engagement celebration on Saturday at Lake Como in Italy.
Summary:
Rhea Chakraborty, while posting a picture with Mahesh Bhatt, criticised trolls for linking her romantically with him.
Summary:
Summary:
State-run telecom firm BSNL has signed a deal with Japan's SoftBank and NTT Communications to launch 5G internet service and Internet of Things technology in India, BSNL Chairman Anupam Shrivastava said.
Summary:
He added that people have grown sick of the old faces of other parties.
Summary:
World champion biker Kenan Sofuoglu won the race riding on Kawasaki H2R superbike.
Summary:
The pilot lowered the plane to cool down the landing gear.
Summary:
A 37-year-old man, who tested HIV positive a few years back, allegedly killed his daughters by feeding them poison-laced food before attempting suicide in Tamil Nadu's Erode, the police said.
While both daughters died on the way to the hospital, the man's condition is said to be critical.
Summary:
A nun belonging to Syro Malabar Catholic Church in Kerala has claimed she was told to keep away from church duties after she participated in a protest demanding arrest of rape accused Bishop Franco Mulakkal.
Summary:
The Australian Defence Force has joined the mission to rescue Commander Abhilash Tomy of the Indian Navy, who is stuck on a yacht in the Indian Ocean, approximately 1,900 nautical miles from Australia's Perth.
Summary:
Union Minister Nitin Gadkari has said that the government will implement 115 sewage treatment projects in seven states at an estimated cost of â¹17,876 crore as part of the project for Ganga river rejuvenation.
Summary:
On being asked if Indian Army will conduct another surgical strike, Army Chief General Bipin Rawat said, "Surgical strike is a weapon of surprise.
Summary:
Kosovo has offered to open its embassy in Jerusalem if Israel recognises the country which declared independence from Serbia in 2008.
Summary:
Actress Kiara Advani shared a collage of childhood pictures featuring her and Isha Ambani to wish her on her engagement to Anand Piramal.
Isha and Anand hosted a three-day celebration in Italy for their engagement.
Summary:
Virat Kohli, in an interview, recalled how his father passed away in his arms after suffering a heart attack in 2006.
Summary:
Australia's all-time leading goal-scorer Tim Cahill, who has joined Indian Super League club Jamshedpur FC, said, "Sachin Tendulkar is my all-time favorite cricketer but now I admire Virat Kohli a lot." "I follow [Kohli] on social media platforms and I like his passion.
Summary:
Facebook is reportedly set to launch its own smart home device 'Portal', featuring a wide-angle camera with facial recognition, which can track users around the room.
Summary:
Researchers have developed a harvesting robot 'Sweeper' designed to operate in a single stem row cropping system.
Summary:
Blume further said, "Porsche is not demonising diesel.
Summary:
DNA tests on elephant tusks have exposed three major ivory trafficking cartels in Africa, according to a study.
Summary:
Pakistan opposition parties PML-N and PPP have criticised PM Imran Khan for showing "too much keenness" on talks with India.
Summary:
This comes days after militants kidnapped and killed three policemen in J&K.
Initial police investigation revealed the involvement of Hizbul Mujahideen and Lashkar-e-Taiba in the killings.
Summary:
A 28-year-old woman and her infant daughter were killed on Sunday morning after the roof of a house where they had taken shelter collapsed due to heavy rainfall in a village in Haryana's Sirsa district.
Summary:
The death toll from the ferry disaster in Tanzania has risen to 218, the state broadcaster TBC reported.
Summary:
US President Donald Trump has said that the United Nations (UN) has not lived up to its "tremendous potential".
Summary:
Sitting MLA Kidari Sarveswara Rao from Araku in Andhra Pradesh's Visakhapatnam, and former MLA Siveri Soma from the same constituency were shot dead by Naxals on Sunday.
Summary:
UK's Prince Harry was spotted 'stealing' samosas folded in a napkin at a lunch hosted by his wife, The Duchess of Sussex Meghan Markle at Kensington Palace.
Summary:
Summary:
Ola recently forayed in Australia, UK and New Zealand.
Summary:
Thiruvadanai MLA Sethu Karunas was arrested on Sunday for allegedly making derogatory comments about Tamil Nadu CM Edappadi Palaniswami and Deputy CM O Panneerselvam during a protest meeting last week.
Summary:
An undated letter written by Mahatma Gandhi, stressing on the importance of the spinning wheel, has been sold for $6,358 (over â¹4.5 lakh), according to US-based RR Auction.
Summary:
The proposed rule may also affect those applying for immigration visas.
Summary:
Sky has recommended its shareholders to accept Comcast's bid.
Summary:
A video shows India's richest man Mukesh Ambani holding his daughter Isha Ambani's hand and walking her towards her fiancé Anand Piramal for their engagement ceremony at Italy's Lake Como.
Summary:
Sumeet Vyas, who recently got married to his girlfriend actress Ekta Kaul Vyas in Jammu on September 15 this year, said, "I'm wondering what did she see in me, how did she think I am the one." "Ekta is a pretty straightforward person besides being drop-dead gorgeous.
Summary:
Ranbir Kapoor, Rishi Kapoor, Randhir Kapoor, Rajiv Kapoor and other members of the Kapoor family conducted the last Ganpati Visarjan at RK Studios on Sunday.
Summary:
Celebrities including Shabana Azmi, Soni Razdan and Shyam Benegal attended the funeral of filmmaker Kalpana Lajmi, who died in Mumbai on Sunday following a multiple organ failure.
Summary:
Actor Arjun Kapoor will be starring in the sequel to Mohit Suri's 2014 film 'Ek Villain', as per reports.
Summary:
Summary:
Blom then warned Kyrgios for "verbal abuse".
Summary:
Man started her running career aged 93.
Summary:
Mumbai registered 400/5 against Railways in Vijay Hazare Trophy today, becoming the second side in Indian domestic cricket to post a 400-run total.
Summary:
Lahiri holds a role of Sr. Director, Global Customer Operations & Localization at WhatsApp.
Summary:
Finance Minister Arun Jaitley on Sunday slammed Congress chief Rahul Gandhi for calling PM Narendra Modi a "thief" over Rafale deal, saying, "public discourse is not a laughter challenge".
Summary:
Uttar Pradesh Law Minister Brajesh Pathak has denied that Bhim Army chief Chandrashekhar Azad was released from jail to secure Dalit votes.
Summary:
He called his decision to join the BJP a "big mistake", adding, "Kamal ka phool, badi bhool".
Summary:
Japanese billionaire Yusaku Maezawa, who will be the first-ever paying passenger to fly around the Moon, has announced that the mission may "include the world's first female moon traveler(s)!!".
Summary:
Japan successfully landed a pair of robot rovers on an asteroid 300 million km away from the Earth, the Japan Aerospace Exploration Agency (JAXA) said on Saturday.
Summary:
He said north Indian states should invest the huge capital they have deposited in government securities on healthcare and education.
Summary:
It was the sixth sculpture in the "Melted Away" series launched in 2006 by artist duo LigoranoReese.
Summary:
The Goods and Services Tax Network has directed its software vendor Infosys to design new forms for filing returns by traders.
Summary:
Filmmaker Kalpana Lajmi, known for films like 'Rudaali', 'Chingaari', 'Ek Pal' and 'Daman: A Victim of Marital Violence', passed away at the age of 64 on Sunday.
Summary:
Finance Minister Arun Jaitley said in an interview on Sunday that the Rafale deal is "clean", and will not be cancelled despite allegations by the opposition.
Summary:
The Indian Space Research Organisation (ISRO) has chosen veteran scientist Dr VR Lalithambika to head its mission to put an Indian in space by 2022.
Summary:
Terrorists who killed three policemen in Kashmir recently, had orders to do so from Pakistan's Inter-Services Intelligence (ISI), a report has claimed.
Summary:
Prime Minister Narendra Modi on Sunday launched the Ayushman Bharat - Pradhan Mantri Jan Arogya Yojna (AB-PMJAY) in Jharkhand's Ranchi.
Summary:
Indian Naval Officer Abhilash Tomy, who was stuck on a yacht in the Indian Ocean, was located with the yacht on Sunday morning by an aircraft sent for his rescue.
Summary:
ISRO Chairman K Sivan has said that India will get internet speeds of over 100 Gbps before the end of next year.
Summary:
Shilpa Shetty has claimed she faced racism from the staff at Qantas Airways in Australia.
Summary:
Vicky Kaushal, who played Sanjay Dutt's best friend in 'Sanju', shared a picture from the time when he was auditioning for films.
Summary:
India's 2018 Under-19 World Cup-winning captain Prithvi Shaw smashed his first-ever List A century for Mumbai off 61 balls against Railways in Vijay Hazare Trophy today.
Summary:
Reacting to Congress chief Rahul Gandhi calling PM Narendra Modi a "chor (thief)" over the Rafale deal, Defence Minister Nirmala Sitharaman tweeted, "No wonder today the buzz is #RahulKaPuraKhandanChor".
Summary:
After Congress chief Rahul Gandhi called PM Narendra Modi 'chor' over Rafale deal, Uttar Pradesh CM Yogi Adityanath reacted saying Rahul was not aware of facts and only reads the script given to him.
Summary:
She said it was "really difficult" to accept the reality when her husband, Ravinder, died in 2015, two years after their marriage.
Summary:
The Brihanmumbai Municipal Corporation (BMC) officials have revealed that only four eateries in Mumbai have been given the permission to run rooftop restaurants.
Summary:
Haryana Police on Sunday arrested two main accused, including an Army man, in connection with the gangrape of a 19-year-old CBSE topper in Mahendragarh district.
Summary:
Questioning the timing of Congress chief Rahul Gandhi's tweet and ex-French President François Hollande's statement on Rafale deal, Finance Minister Arun Jaitley said he won't be surprised if it was "orchestrated".
Summary:
The police arrested the man after examining CCTV footage.
Summary:
After India cancelled a meeting of foreign ministers with Pakistan, Army chief Bipin Rawat reiterated the government's stance that terror and talks cannot go together.
Summary:
Business conglomerate Max Group has entered the commercial real estate business by investing â¹600 crore to build an office building named 'Max Towers' in Noida.
Summary:
Nawazuddin Siddiqui has said that he did Nandita Das' 'Manto' to satisfy his greed as an actor, adding, "I don't seek satisfaction in reviews or box office; for me, it's discovering myself.
Summary:
Summary:
Rohit Shetty has said when audience isn't happy, he feels restless, adding, "I want them to enjoy my films.
I'm more happy when audience is happy.
Summary:
Disha Vakani, who plays 'Daya Ben' on TV show 'Taarak Mehta ka Ooltah Chashmah', is returning to the show and has asked for a hike in her fee, as per reports.
Summary:
The film, which is the Hindi remake of the Telugu film 'Arjun Reddy', will release on June 21, 2019.
Summary:
Italy's 22-year-old motorcycle racer Romano Fenati, who had pulled rival Stefano Manzi's brake lever while riding at a speed of 225 kmph during a race earlier this month, has been banned for the rest of the year.
Summary:
China has postponed joint military talks with the US in protest against a US decision to sanction a Chinese military agency and its director for buying Russian fighter jets and a surface-to-air missile system.
Summary:
"It's going to happen...the people of Iran have obviously had enough," he added.
Summary:
The cruise will have an infinity pool, 24-hour coffee shops, a discotheque and lounges, among other facilities.
Summary:
Indian Army chief General Bipin Rawat on Saturday said that stern action is needed to avenge the "barbarism that terrorists and Pakistan Army have been carrying out against our soldiers".
Summary:
After his wife Tahira Kashyap revealed that she has been diagnosed with breast cancer, actor Ayushmann Khurrana took to Twitter and wrote, "Thanks for your wishes & support.
Summary:
India will become the fourth country to send a human to space after Russia, US, and China.
Summary:
A truck carrying beer bottles rammed into a toll plaza on the Jaipur-Ajmer highway in Rajasthan's Kishangarh district on Friday.
Footage shows an SUV pulling over at a booth, when the truck comes from behind and smashes into the booth, which collapses over the car.
Summary:
Pakistan's Army on Saturday said it is "ready for war" but chooses to walk the path of peace.
Summary:
Police registered a case on Friday against an unknown person for allegedly raping a student in the school in the old city on September 14.
Summary:
Agra MP and National Commission for Scheduled Castes (NCSC) chairman Ram Shankar Katheria cut a 54-kg cake shaped like the Parliament to celebrate his 54th birthday on Friday.
Summary:
US President Donald Trump's administration has informed a federal court that its decision to revoke work permits to H-4 visa holders is expected within the next three months.
Summary:
Tata Steel on Saturday announced it will acquire the steel business of Usha Martin for â¹4,300-4,700 crore.
Summary:
Actress Radhika Madan, who will be making her Bollywood debut with Sanya Malhotra starrer 'Pataakha', has said that auditioning is the best process to bag a role for any actor.
Summary:
Reality television personality Kylie Jenner's mother Kris Jenner has revealed that she helped deliver Kylie's baby Stormi Webster.
"And I'm like, 'This is really weird!'...I delivered the baby!
Summary:
Adil Taj, the Pakistani cricket fan who sang the Indian national anthem during India's Asia Cup 2018 match against Pakistan on Wednesday, said that he learnt India's national anthem from the Bollywood movie 'Kabhi Khushi Kabhie Gham'.
Summary:
Ex-Manchester United manager Sir Alex Ferguson visited Old Trafford on Saturday to watch the club's match for the first time since undergoing emergency surgery for a brain haemorrhage in May. The spectators applauded for Ferguson after 27 minutes, in recognition of the 27 years the 76-year-old was in charge.
Summary:
Liverpool won their seventh straight game in all competitions from the start of a season for the first time in 28 years after registering a 3-0 win over Southampton at Anfield on Saturday.
Summary:
Twitter has admitted that a bug in its platform for third-party app developers exposed Direct Messages from nearly 3 million users to outsiders.
Summary:
Apple stores have systems in place to complete transactions of preordered phones upon customers' arrival.
Summary:
Days after three policemen were kidnapped and killed in J&K, state police chief Dilbag Singh said there are a huge number of applications for recruitment in the force.
Summary:
Three persons of a family were charred to death following an explosion at an illegal firecracker unit in Andhra Pradesh's Rajahmahendravaram today, the police said.
Summary:
A man accused of rape in Gurugram has managed to escape from a high-security district jail using a garbage van, six days after his arrest.
Summary:
Lenin Vladimir Rodriguez Valverde, a resident of Peru has opposed Hitler Alba Sánchez's candidacy for the post of Mayor in the Yungar district, claiming he lives several hours away from the municipality he plans to govern.
Summary:
According to UN figures, unexploded ordnance claimed the lives of 142 Afghan children and wounded 376 last year.
Summary:
The United Nations Environment Programme's Executive Director, Erik Solheim, has been criticised for extensive air travels which are "contrary to the ethos of carbon emission reduction", a draft internal audit said.
Summary:
US Secretary of State Mike Pompeo has said that UN sanctions on North Korea would remain until it gives up its nuclear weapons.
Summary:
The Vatican reached a landmark deal with China on Saturday on the appointment of bishops in the country.
Summary:
His remarks came as Iran marked the start of its 1980-88 war with Iraq.
Summary:
The 35-year-old has won three silver medals at the Badminton World Championships and five gold medals at the Commonwealth Games.
Summary:
Summary:
Alcohol is responsible for over three million deaths annually, which is more than 5% of all deaths worldwide, a report by the World Health Organisation has revealed.
Summary:
Isha's mother Nita Ambani was seen standing at a podium.
Summary:
Speaking about her life after getting divorced from Arbaaz Khan, Malaika Arora said, "I'm calmer, more at ease...with my surroundings." "There were thoughts that went through my head...What would happen?
Summary:
Arjun Kapoor has criticised a troll who threatened to hit Taapsee Pannu with a belt over the row on deletion of scenes from her film 'Manmarziyaan'.
Summary:
The report further stated that global per capita consumption also rose from 5.5 litres to 6.4 litres during the period.
Summary:
Citing laws that ban the exchange, publication and broadcast of any indecent material, the Nepalese government has directed the telecommunications regulator to implement the order with immediate effect.
Summary:
Jose Neves, the Founder of online luxury goods marketplace Farfetch, has become a billionaire with a net worth of $1.2 billion after the firm's initial public offering.
Summary:
Manisha Koirala has said she has redefined the term 'selfish', while adding, "Looking after oneself is important and this includes both the physical and emotional aspects.
Manisha further said the emotional aspect matters a great deal to her.
Summary:
Banned Indian cricketer S Sreesanth will be seen arguing with Bollywood actor and reality show Bigg Boss' host Salman Khan and will threaten to quit the Bigg Boss house again.
Summary:
Pakistan's hockey coach Roelant Oltmans stepped down from the position almost a year after he was sacked from his position as the Indian hockey team's head coach.
Summary:
Former cricketers Shahid Afridi and Virender Sehwag played the 'Guess Who?' game against each other during a show recently.
Summary:
WikiLeaks founder Julian Assange, in his last interview before the Ecuadorian embassy in London cut his communication channels, had said that this generation is the "last" to be free of surveillance.
Summary:
Google is planning to launch its new cloud storage subscription plan "Google One" in India.
Summary:
Indonesia's Bali is planning new rules for the people visiting its Hindu temples amid a decline in the "quality of tourists".
Summary:
Prime Minister Narendra Modi on Saturday said the people in Chhattisgarh are mature enough to elect a stable government.
Summary:
BJP President Amit Shah on Saturday said Bangladeshi migrants are like "termites" and they will be struck off the electoral roll.
Summary:
Users trolled Ola Cabs over its campaign featuring author Chetan Bhagat and threatened to use rival Uber instead.
Summary:
Former Canadian astronaut Chris Hadfield has said that future Mars-bound astronauts would need to consider themselves as Martians to survive.
Summary:
Seven men were booked on charges of attempting to rape a 21-year-old IT professional in a Gurugram building on Thursday night.
Summary:
A woman who allegedly sells illegal liquor was attacked and stripped by villagers in Assam's Karimganj district, the police has said.
Summary:
Meanwhile, Railway Minister Piyush Goyal said four mines will be opened in Chhindwara district and two will be opened in Betul district.
Summary:
PM Narendra Modi today laid the foundation stone of a â¹13,000-crore project to revive the Talcher fertilizer plant in Odisha and said he would return in three years to inaugurate it.
Summary:
A 23-year-old student allegedly committed suicide by hanging himself in his hostel room at IIT Madras.
Summary:
The body of a six-year-old girl was found dumped in a school toilet in the Gonda district of Uttar Pradesh on Saturday, the police said.
Summary:
He said, "I am happy to inform that in rural areas, we have been successful in providing houses to 11 lakh poor families.
Summary:
A museum dedicated to drug lord Pablo Escobar has been shut down by the authorities in the city of Medellin.
Summary:
Actor Ayushmann Khurrana's wife Tahira Kashyap took to Instagram to reveal that she has been diagnosed with Stage 0 breast cancer.
Tahira also revealed she underwent surgery to have her breast removed.
Summary:
Indian Navy has dispatched warship INS Satpura to rescue officer Abhilash Tomy, who is stuck at sea in the Indian Ocean on a yacht.
Summary:
Pakistan's PM Imran Khan on Saturday slammed India's cancellation of Foreign Minister-level talks proposed by him.
Summary:
Opening up about not reporting her harassment, actress Ashley Judd revealed when she first told adults about being molested at 7, they said, "That's not what he meant." "So when I was raped at 15, I only told my diary," she added.
Summary:
The students' lawyer said that many students approach Kumar for IIT entrance coaching because of the "wrong projection" given by him.
Summary:
While ten of the victims died on the spot, three others, including a child, died during treatment at a hospital.
Summary:
The accused enlisted the help of a bank manager who gave him the password to open the ATM.
Summary:
A disaster has been declared in Germany's Emsland region after a rocket test sparked a wildfire which has been raging for two weeks.
Summary:
PM Narendra Modi on Saturday laid the foundation stone for a â¹13,000-crore project to revive Talcher fertiliser plant in Odisha.
Summary:
ICICI Bank on Friday said that it will acquire 8.85% stake in Avenues Payment India for â¹10 crore in cash.
Summary:
Omaxe was founded in 1987 by Rohtas Goel.
Summary:
State-run oil marketing companies Indian Oil, Bharat Petroleum and Hindustan Petroleum have reportedly asked Air India to clear its dues towards daily fuel bills.
Summary:
Freida Pinto, Manoj Bajpayee, Anupam Kher and Rajkummar Rao starrer 'Love Sonia' will be screened at United Nations Headquarters in New York.
Summary:
Actor Neil Nitin Mukesh and wife Rukmini Sahay, who became parents to a baby girl on Thursday, have named their daughter Nurvi Neil Mukesh.
Summary:
Pakistani pacer Hasan Ali was fined 15% of his match fees after Ali threatened to throw the ball towards striker Hashmatullah Shahidi after fielding off his own bowling in Friday's Afghanistan-Pakistan Asia Cup match.
Summary:
There are plans both for a cricket and a football team but we are focusing on the IPL team," Malik said about the plan.
Summary:
After a possum was spotted in the stands during an American football match, a Cleveland Browns spectator grabbed it by its tail and placed it in a box.
Summary:
Suspended Australian cricketer David Warner scored an unbeaten 155 in his side's last-ball win, while former Test captain Steve Smith made 85 for his Sutherland club on his return to club cricket in Sydney on Saturday.
Summary:
The Congress has submitted a notice for removal of Goa Assembly Speaker Pramod Sawant, days after staking claim to form the government.
Summary:
Claiming people are feeling as if a single ideology is being imposed on them, Congress President Rahul Gandhi on Saturday said, "A country of over a billion people cannot possibly be run on one single idea." He added, "The fact that we...
not the weakness of our country."
Summary:
Prime Minister Narendra Modi today claimed his government dares to take decisions others are afraid of taking, such as the promulgation of an ordinance making instant triple talaq a criminal offence.
Summary:
The startup recorded a 40% growth in revenue to â¹466 crore in FY18 as compared to â¹332 the previous fiscal.
Summary:
Scientists aboard an underwater exploration vehicle Nautilus captured a rare 'gulper eel' inflating its mouth like a balloon at a depth of 1,425 metres in Hawaii.
Summary:
UK-based astronomers have reported the first detection of matter falling into a black hole at 30% the speed of light, which is nearly one lakh kilometres per second.
Summary:
The US has accused Venezuelan President Nicolás Maduro of leading an "authoritarian dictatorship" and blamed him for Venezuela's humanitarian and economic crisis.
Summary:
Warning China against imposing retaliatory tariffs in the ongoing trade war between the two countries, US President Donald Trump has said that his country has "far more bullets", apparently threatening to impose further tariffs on Chinese imports.
Summary:
'Manmarziyaan' actor Abhishek Bachchan, while speaking about the deletion of scenes from the film, said, "It's not a big deal." "Each individual has a right to react...There's no harm in deleting those scenes...
Summary:
Rapper Kanye West shared a video directed at Drake and said, "There's people making rumours...you f**ked my wife (Kim Kardashian)." Addressing speculations about Drake's 'Kiki' song being about Kim, Kanye added, "If I had a girlfriend named Renita...and you (were) married to Rihanna.
Summary:
Kololli first crossed the advertisement hoardings and then jumped over the wall, falling into the space separating stands from the ground.
Summary:
Wrestler Bajrang Punia, who has been ignored for Rajiv Gandhi Khel Ratna Award, has said that he garnered more points than Virat Kohli and Mirabai Chanu, who have been named as this year's recipients.
Summary:
The memo disclosed the system would require users in China to log in to perform searches.
Summary:
Telecom secretary Aruna Sundararajan has said the Indian government is considering to make social media platforms like Facebook and WhatsApp responsible for the spread of fake news rather than holding users accountable.
Summary:
Chinese phone maker Huawei on Thursday trolled Apple by distributing free power banks to people waiting outside an Apple store in Singapore to buy the company's new iPhone XS and iPhone XS Max. The power banks carried a note which read, "Here's a power bank.
Summary:
Congress President Rahul Gandhi on Saturday accused PM Narendra Modi and industrialist Anil Ambani of carrying out a "surgical strike" worth â¹1.3 lakh crore on the Indian defence forces.
Summary:
Scientists have identified the oldest known macroscopic animal, an oval-shaped organism called Dickinsonia, based on 558-million-year-old fossils found on the coast of White Sea in Russia.
Summary:
The directives are based on a notification of Medical Council of India.
Summary:
A Kerala court on Saturday rejected Bishop Franco Mulakkal's application for bail in the rape case filed against him by a nun and sent him to police custody till September 24.
Summary:
Asthana had filed a complaint alleging that the CBI chief was interfering in his cases, including one against RJD chief Lalu Prasad Yadav.
Summary:
The father of Kargil War martyr Saurabh Kalia has said that India's cancellation of the meeting of foreign ministers with Pakistan is the "right step".
Summary:
Bishop Franco Mulakkal was on Friday night admitted to a government hospital following complaints of chest pain, hours after he was arrested by the Kerala Police in connection with the rape case filed by a nun.
Summary:
At least 24 people, including 12 members of Iran's Islamic Revolutionary Guard Corps were killed on Saturday after gunmen attacked a military parade in the town of Ahvaz, the state media reported.
Summary:
Ajay Piramal is the 404th richest person in the world, with a net worth of $4.8 billion.
Summary:
IL&FS group, which has a debt of over â¹90,000 crore, was also unable to meet its obligation on a letter of credit payment to IDBI.
Summary:
Summary:
Summary:
A new poster of John Abraham starrer 'Batla House' has been unveiled.
Summary:
With this film, he will be able to display his range as a commercial star." "'Simmba' is his [Ranveer's] biggest out-and-out masala film and I have full faith in it," Rohit added.
Summary:
Shoaib Malik, who scored the winning runs, joined other Afghan players to console the pacer, who was sitting on his knees and crying.
Summary:
NFL side New York Jets' running back Isaiah Crowell was penalised by the officials after he was seen making a butt wiping motion with the ball as a form of celebration following a touchdown.
Summary:
Google CEO Sundar Pichai reportedly denied reports of the company's employees tweaking search results to counter the US President Donald Trump's 2017 travel ban.
We don't bias our products to favour any political agenda," he reportedly told Google's employees in an email.
Summary:
SpaceX CEO Elon Musk on Saturday tweeted an image showing SpaceX's BFR launch vehicle's concept base, captioning it "Mars Base Alpha." Last year, the Tesla CEO had announced plans to launch two BFR cargo missions to Mars by 2022.
Summary:
Launched on August 12, the seven-year mission will probe why temperatures in Sun's corona (outer atmosphere) reach a million degrees while the underlying surface only reaches about 5,500úC.
Summary:
Assange was to be taken out of the embassy in a diplomatic vehicle and transported to another country, but the plan was cancelled after it was deemed too risky.
Summary:
"Village Rockstars is the closest film made by international standards", one of the 12 jury members said.
Summary:
Just over one month after the official release of Android Pie, OnePlus has started rolling out its version of the update to the OnePlus 6.
Summary:
They also said that the woman shown as Anil's wife is his maternal aunt Rani.
Summary:
French aerospace company Dassault Aviation has said it was Dassault that chose Anil Ambani-led Reliance Defence as partner for Rafale deal with India.
Summary:
Amid the Rafale deal row, French foreign ministry clarified that French companies are at full freedom to choose their Indian partners, subject to Indian government's approval.
Summary:
Reacting to ex-India captain MS Dhoni plotting Bangladesh all-rounder Shakib Al Hasan's wicket in Asia Cup on Friday, a user tweeted, "Nobody does it better." Dhoni had advised stand-in captain Rohit Sharma to move Shikhar Dhawan to square leg from slips after Ravindra Jadeja was hit for two consecutive fours.
Summary:
Novak Djokovic accidentally hit Roger Federer in the back during their first-ever doubles match as a team at Laver Cup on Friday.
Summary:
On September 22, 2006, India's Dinesh Mongia scored ODIs' millionth run against Australia in Malaysia, 35 years after the first-ever ODI was played.
Summary:
Google Pay's privacy policy had said it could "collect, store, use and/or disclose" personal data for "any communications made through Google Pay".
Summary:
While some died due to injuries sustained during the fighting, few starved to death after they went into hiding to save themselves, reports said.
Summary:
India on Friday called off a meeting of foreign ministers with Pakistan in protest against the killings.
Summary:
The Delhi Police has arrested four people including the co-owner of F Bar and Lounge at Connaught Place and a former assistant general manager of Punjab National Bank, for a â¹7.5-crore loan fraud.
Summary:
UK PM Theresa May on Friday called on the European Union (EU) to respect her country's position on the Brexit negotiations and the result of the referendum.
Summary:
The owner-drivers also have the option of a cover over and above â¹15 lakh on payment of additional premium.
Summary:
Rohit Shetty, while talking about the release dates of 'Simmba' and Shah Rukh Khan's 'Zero', said, "We decided not to come together because that would affect numbers.
Summary:
Shraddha Kapoor, who has started shooting for an upcoming biopic on Saina Nehwal's life, has said that she can relate to Saina's journey.
Summary:
Twinkle Khanna, on being asked why she doesn't write on Bollywood, said, "Bollywood is boring to me.
Twinkle further said she was always a "misfit" in Bollywood.
Summary:
Summary:
Summary:
Imran shared the film's poster and captioned it, "It's been my pleasure and my privilege to tell this inspiring story of India's mission to Mars."
Summary:
Ravindra Jadeja, who registered bowling figures of 10-0-29-4 against Bangladesh on his return to ODI cricket after 14 months, said this has been the longest he has waited for a comeback.
Summary:
Congress social media head Divya Spandana took to Twitter to troll BJP over decreasing value of Indian currency, saying cricketer Kedar Jadhav's bowling action is so low but still not as low as value of rupee.
Summary:
Jharkhand left-arm spinner Shahbaz Nadeem, who took List A record 8 wickets for 10 runs against Rajasthan recently, was among the five India A bowlers who bowled in the nets to India batsmen at Asia Cup.
Summary:
The AAP will contest all 119 seats in the upcoming Telangana Assembly elections, announced party leader Somnath Bharti.
Summary:
The Jawaharlal Nehru University (JNU) in Delhi is closely related to the defence forces and will be celebrating the Surgical Strike Day on September 29, Vice Chancellor M Jagadesh Kumar said on Friday.
Summary:
India, who have now won nine of their 12 ODIs this year, will next face their arch-rivals Pakistan on Sunday.
Summary:
In a promo released of TV show 'Kaun Banega Crorepati', host Amitabh Bachchan is seen teasing actress Anushka Sharma about husband Virat Kohli, and imitating his 'flying kiss' gesture.
Summary:
Amazon on Friday unveiled a microwave that can be controlled by users by giving commands to the company's voice-based assistant Alexa.
Summary:
Alibaba's billionaire Co-founder Jack Ma at the World Economic Forum on Thursday said, "I donâÂÂt want to die in my office, I'd rather die on the beach." Ma said he wouldn't return as Alibaba's Executive Chairman after he steps down next year.
Summary:
After India cancelled the meeting between the two nations' Foreign Ministers, Pakistan said that India has "priorities other than dialogue".
Summary:
Private sector lender Yes Bank has paid â¹38 crore in fines to the GST department for alleged violations in domestic remittances.
Summary:
Choksi claimed that two callers had argued that a special team consisting of secret agents should be formed to track him down and shoot him.
Summary:
Actor Neil Nitin Mukesh and wife Rukmini Sahay became proud parents to a baby girl on Thursday.
He added his father, singer Nitin Mukesh, will probably decide the name of the baby.
Summary:
Indian all-rounder Ravindra Jadeja represented India in an ODI after a gap of 442 days, after being included in the playing eleven for the ODI against Bangladesh in the Asia Cup 2018, on Friday.
Summary:
Pakistan's Imam-ul-Haq scored his second half-century in the Asia Cup 2018.
Summary:
Reacting to India's eight-wicket win against Pakistan in the Asia Cup 2018, condom-maker Durex tweeted, "It's only fun when it lasts longer.
India finished the match against Pakistan in just 29 overs.
Summary:
Former New Zealand cricketer Scott Styris shut down a troll on Twitter who had suggested that India needs a "Jos Buttler kind of keeper now" instead of former captain MS Dhoni.
Summary:
India's former cricketer and current coach Ravi Shastri was batting alongside Maninder Singh, who got dismissed on the second-last ball of the Test match to give way to cricket's second-ever tied Test match.
Summary:
Former Google CEO Eric Schmidt at a recent event said that there will be a "bifurcation into a Chinese-led internet and a non-Chinese internet led by America." "If you look at China...the wealth that is being created is phenomenal," he added.
Summary:
The allegation comes a day after Goa Forward Party President Vijai Sardesai said Parrikar had spoken to him about administrative matters over the phone.
Summary:
BJP chief Amit Shah today referred to Congress President Rahul Gandhi as "Rahul baba" and said he is "daydreaming" about Congress' victory in Rajasthan, Madhya Pradesh and Chhattisgarh.
Summary:
After RSS chief Mohan Bhagwat pitched for early construction of Ram temple in Ayodhya, the Shiv Sena asked the PM Narendra Modi-led government to take the issue "seriously".
Summary:
US-based on-demand trucking startup Convoy raised $185 million in a round led by Google parent Alphabet's venture capital fund CapitalG at a valuation of $1 billion.
The round brings Convoy's total capital raised to over $265 million.
Summary:
An 11-year-old girl was allegedly raped in a government hospital in Delhi by a 40-year-old housekeeping staffer on Friday morning, said the police.
Summary:
Bombay High Court has allowed a woman, who is 30 weeks pregnant, to undergo an abortion after a medical test revealed the foetus had a developmental birth defect.
Summary:
Congress MP Shashi Tharoor has said Hinduism is a "wonderful" religion suited for the modern era of uncertainty and questioning because it values incertitude.
Summary:
A 15-year-old boy died after setting himself ablaze while trying to teach himself fire-breathing at his home in Kancheepuram, Tamil Nadu.
Summary:
His wife has claimed her in-laws threatened to murder her family if she did not divorce him.
Summary:
Russia had blamed Israel for the incident, claiming its plane was used as a cover against the Syrian missiles.
Summary:
In a video posted on Facebook, Nair used a racially derogatory word to describe Ramaphosa and accused him of defrauding the nation.
Summary:
North Korean leader Kim Jong-un has gifted pine mushrooms believed to be worth 1.5 billion won (over â¹9.7 crore) to South Korea.
Summary:
Earlier this month, IL&FS defaulted on a â¹1,000-crore loan from the Small Industries Development Bank of India.
Summary:
Bishop Franco Mulakkal, who has been accused of rape by a Kerala nun, was arrested by the police on Friday.
Summary:
French publication Mediapart quoted former French President Francois Hollande saying that PM Narendra Modi-led government proposed Anil Ambani's Reliance Defence as a partner for Rafale deal.
The Defence Ministry said that "neither Indian government nor the French government had any say in the commercial decision."
Summary:
An Indian-origin man named Oniel Kurup and his son were unhurt after a plane crashed into their Tesla X car in the US on Thursday.
A second is all it takes," Kurup wrote on Facebook.
Summary:
Vat 69 whisky and Smirnoff vodka will not be available in Delhi for two years after the state government blacklisted its manufacturer United Spirits Limited for using "unauthorised and loose barcodes".
Summary:
According to the report, funds were repeatedly issued between 2014 and 2017 to departments despite failure in submitting details of the money allotted in the past.
Summary:
"A state government is not such helpless that one or two persons can coerce them," the court added.
Summary:
Kerala MLA PC George, who earlier called the Kerala nun "prostitute", has claimed he has photos and videos of her with bishop Franco Mulakkal after the alleged rape, where she can be seen "happy".
George also accused an investigation team member of "trying to frame" bishop.
Summary:
Pakistan has invited Saudi Arabia to join the China-Pakistan Economic Corridor (CPEC) as the third strategic partner, Pakistan's Information and Broadcasting Minister Chaudhry Fawad Hussain said.
Summary:
China on Friday called on the US to withdraw the sanctions imposed on its military, warning it will "bear the consequences" if it failed to do so.
Summary:
The ministry in June said it had served notices to 2.25 lakh suspected shell companies.
Summary:
American rapper Snoop Dogg said "f*** you" to US President Donald Trump, his supporters and fellow rapper Kanye West in an interview.
He blamed Trump for polarising American society, saying, "He drew the lines.
Summary:
Yashvir Singh, who was India's national wrestling coach when Sushil Kumar won the bronze medal at the 2008 Beijing Olympics, passed away on Thursday following a prolonged illness.
Summary:
Kidambi Srikanth and PV Sindhu, India's top-ranked male and female shuttlers respectively, were knocked out of the BWF China Open tournament in the quarterfinal stage on Friday.
Summary:
Youzhny, who reached the US Open semifinals twice in his career, was playing his career's final tournament in the St. Petersburg Open in Russia.
Summary:
The Tamil Nadu Cricket Association has reportedly stated that Indian spinner Ravichandran Ashwin has not reported to them after the completion of the Indian cricket team's tour of England.
Summary:
BJP President Amit Shah on Thursday said he hoped the movement for building Ram temple in Ayodhya will result in "victory for culture".
Summary:
Tesla is said to have lost its fifth senior executive after a report suggested that its Vice President of global supply management, Liam O'Connor, has resigned.
Summary:
Japanese carmaker Nissan has recalled over two lakh cars and SUVs in the US due to a fire risk.
Summary:
A recent long-duration balloon mission by NASA has captured images of a thin group of seasonal electric blue clouds.
Summary:
Scientists have discovered that a commonly asocial two-spot octopus becomes friendly and tactile after being fed the psychoactive drug ecstasy.
Summary:
Research on a blue whale which died nearly 130 years ago has revealed where she travelled in the last seven years of her life and that it may've given birth before death.
Summary:
Congress MP Shashi Tharoor has called British museums "chor bazaars" (thieves' markets) of exhibits looted from its colonies.
Summary:
Nine golden retriever puppies took part in Chile's annual military parade which was held on Wednesday to mark the country's Independence Day. The puppies' unit was followed by troops walking adult golden retrievers and labradors.
Summary:
Jet Airways on Friday said that income tax officials have been conducting a survey at the company's premises since September 19.
Summary:
Global rating agency Fitch revised its forecast for India's economic growth to 7.8% from 7.4% for the current financial year ending in March 2019.
Summary:
The MA oilfield is among the three oil and gas fields Reliance has in the basin.
Summary:
India has called off the meeting of the Indian and Pakistani Foreign Ministers scheduled in New York a day after announcing it.
Summary:
Google on Thursday admitted to US lawmakers that it continues to allow third-party app developers to collect data from users' Gmail accounts.
Summary:
Sri Lanka's 55-year-old scientist Yasantha Rajakarunanayake was world's richest man Jeff Bezos' classmate at Princeton University in 1980s.
Summary:
The Ministry of Home Affairs (MHA) issued a statement saying that media reports claiming some Special Police Officers (SPOs) in Jammu & Kashmir have resigned are based on "propaganda by mischievous elements".
Summary:
Summary:
Mohit Kumar Dahiya, son of BSF jawan Narender Kumar who was martyred at the Pakistan border, has pleaded to the government to not make the family beg.
Summary:
A 22-year-old student pilot has been arrested and charged with criminal attempt to steal a passenger jet at an Orlando airport on Thursday.
Summary:
After three Special Police Officers were killed by militants in J&K's Shopian district today, resignation videos of six more 'policemen' emerged.
Summary:
A 23-year-old man from Pune allegedly stabbed his 46-year-old male partner after the latter refused to have a second round of sex.
Summary:
Addressing the Malayali community during his recent visit to the US, Kerala CM Pinarayi Vijayan appealed to them to donate their one month's salary for rehabilitation work in the aftermath of the floods.
Summary:
The wife was later gangraped by two men who entered her vehicle at Panipat, police said.
Summary:
Indian equity benchmarks Sensex and Nifty fell for the fourth straight day on Friday led by losses in Yes Bank, Indiabulls Housing Finance and Bajaj Finance.
Summary:
In May 2017, Infosys announced setting up of four such hubs and hiring 10,000 American workers over the next two years.
Summary:
Casting director Shadman Khan has reportedly confirmed that his name wasn't Sourabh when he worked for Shadman.
Summary:
Lalith set himself on fire on Sunday after Nilani broke up with him and registered a complaint at a police station as Lalith continued to pursue her, according to reports.
Summary:
Summary:
Gujarat High Court has issued notices to Salman Khan Films and CBFC, following a PIL filed by Hindu outfits who alleged that the title of the film 'Loveyatri' hurts Hindu sentiments by mocking the festival of Navaratri.
Summary:
A video was posted on Twitter that showed a Pakistani cricket fan singing the Indian national anthem while attending the match between India and Pakistan in the Asia Cup on Wednesday.
Summary:
The girl took to Instagram to share a picture of herself sitting in the back of a van after being detained during the match.
Summary:
Players have been asked to wear rash vests while using public gyms as tattoos are associated in the country with mafia.
Summary:
Russian football club Spartak Moscow's manager Massimo Carrera dropped captain Denis Glushakov and defender Andrei Eshchenko from the team's first Europa League match of the season for liking an Instagram video criticising him.
Summary:
Isa Guha, ex-England cricketer of Indian origin, has tied the knot with her boyfriend Thomas at Carbis Bay in England's Cornwall.
Summary:
Chowdhury, who was reported to be against an alliance with CM Mamata Banerjee's Trinamool Congress, has been chosen to head the party's campaign committee.
Summary:
US-based ride-hailing startup Uber is said to be in talks to buy UK-based billion-dollar food delivery startup Deliveroo, according to reports.
The startup, which was founded in 2013 by Will Shu, raised over $300 million from investors including Fidelity Investments and T.
Summary:
A Hyderabad-based Dalit man allegedly committed suicide after recording a video blaming his in-laws for taking away his wife and turning her against him in view of their inter-caste marriage.
Summary:
The MV Nyerere ferry, which was reportedly carrying more than 300 people, capsized near the dock on Ukerewe.
Summary:
The rupee may strengthen back to 68 per dollar as crude price peaks out and investors realise the currency has been sold off too heavily, SBI's Vice President (Global Markets) Shantanu Shukla said.
Summary:
The Sensex on Friday fell nearly 1,500 points in intraday trade to 35,993.64 from the day's high of 37,489.24.
Summary:
A pair of sneakers by Italian brand Golden Goose, with a tape sticking it together and 'dirt' on its side, that cost $530 (over â¹38,000) has been sold out.
Summary:
A model-turned-television actress has alleged that a 25-year-old man, who promised to marry her, raped her at a hotel in Rajasthan's Neemrana, where they had gone for a trip.
The actress and the accused attended the same college.
Summary:
Shahid Kapoor and Shraddha Kapoor starrer 'Batti Gul Meter Chalu' "is an average, one-time watch entertainer that appeals only in parts", wrote Bollywood Hungama.
Summary:
NASA's Transiting Exoplanet Survey Satellite, known as TESS, has spotted "hot Earth" and "super-Earth" planets in solar systems 49 and 60 light-years away, marking its first discovery since April launch.
Summary:
As many as 79 people have died in Uttar Pradesh due to an "unknown fever" in a period of around six weeks and a death audit is being carried out in all the cases.
Summary:
A three-year-old pre-nursery student was allegedly sexually abused in a school van by its conductor on her way home in Madhya Pradesh's Bhopal on Thursday.
Summary:
Assam Police has registered an FIR against three people who authored a Class 12 Political Science reference book, wherein they criticised PM Narendra Modi for his "silence" during the 2002 Gujarat riots.
Summary:
Human Resource Development Minister Prakash Javadekar on Friday clarified that the University Grants Commission circular directing educational institutes to observe Surgical Strike Day on September 29 is not mandatory and only an advisory.
Summary:
Two men, carrying â¹25,000 bounty on their heads, were shot dead in the encounter.
Summary:
The US State Department on Thursday imposed sanctions against the Chinese military for buying Russian Sukhoi Su-35 fighter jets and S-400 air defence missile systems.
Summary:
Dewan Housing Finance (DHFL) shares slumped as much as 60% on Friday after rumours that it's defaulting on its commercial paper, triggering a selloff in housing finance stocks.
Summary:
The Oscar-winning duo of composer AR Rahman and lyricist Gulzar is creating the anthem song for the upcoming Men's Hockey World Cup 2018, which is set to be held in Odisha later this year.
Summary:
Ashton Kutcher, while driving his black Tesla, accidentally hit a 19-year-old boy Leo Marenghi in Los Angeles.
On being asked by Ashton whether he was fine, Leo said, "Yeah, I'm fine.
Summary:
Anushka Sharma, who has received the Smita Patil award for best actor, said it validates the choices that she has made so far in her career.
Summary:
The title poster of late Tamil Nadu CM Jayalalithaa's biopic 'The Iron Lady' has been unveiled.
The biopic, showcasing the life of Jayalalithaa, will be directed by Priyadhaarshini.
Summary:
Dutch football club Ajax's fans sang the Bob Marley song 'Three Little Birds' alongside Marley's son Ky-Mani Marley during the half-time of their UEFA Champions League match against Greek side AEK Athens.
Summary:
Summary:
Researchers from Yale University have developed a new "robotic skins" technology that allows users to turn everyday objects into robots.
Summary:
Google employees reportedly discussed ways to tweak search results to counter US President Donald Trump's 2017 travel ban.
Summary:
After Delhi Congress chief Ajay Maken revealed on Twitter that he was suffering from "an irreversible (and) progressive orthopaedic ailment", PM Narendra Modi on Thursday wrote to him that he was praying for his "good health".
Summary:
After Prime Minister Narendra Modi took a ride on the Delhi Metro, the Karnataka Congress tweeted, "High Fuel prices in Delhi has forced (PM) @narendramodi ji to use Delhi Metro?
Summary:
After three policemen were kidnapped and killed by militants, former J&K CM Mehbooba Mufti has slammed the Centre saying its "muscular policy is not working at all".
Summary:
An injured snake, bamboo pit viper, underwent an MRI scan for its broken spine after it was beaten up with a stick by a local in Mumbai.
"For the first time I have performed an MRI scan on a snake.
Summary:
Summary:
Before being appointed Vietnam's President in 2016, Quang served as the Public Security Minister.
Summary:
Traders' body CAIT is reportedly planning to approach the Competition Commission of India to oppose the acquisition of retail chain More by Samara Capital and Amazon.
Summary:
The Deputy Chief of Air Staff Air Marshal Raghunath Nambiar flew a 17-year-old Rafale jet with "India-specific enhancements" in France on Thursday.
Summary:
In the video, the 58-year-old home guard, Sivakumar, is seen stretching his hand to touch women and girls whenever they pass beside him.
Summary:
Actress Katrina Kaif's look as Suraiyya from 'Thugs of Hindostan' has been revealed.
Sharing her character's motion poster, her co-star Aamir Khan tweeted, "The most beautiful thug!
Summary:
between the vision and the execution," wrote Indian Express while Times Of India wrote, "Nawazuddin...
stirs your conscience." 'Manto' was rated 4/5 (The Quint), 2/5 (Indian Express) and 3/5 (TOI).
Summary:
Talking about why she kept her pregnancy a secret for six months, Neha Dhupia said, "I was worried people would stop offering work." She added, "It was a good thing my bump wasn't showing till the sixth month because appearances matter here, and one might be assumed to be unfit for a job.
Summary:
Wrestler Bajrang Punia, who won a gold medal at the recent Asian Games, has said he will file a case in court after being ignored for the Rajiv Gandhi Khel Ratna, India's highest sporting honour.
Summary:
Windies' Chris Gayle is the only cricketer to hit the first ball of a Test match for a maximum.
Summary:
Summary:
Congress workers have been chanting "Bol Bum" and "Har Har Mahadev" at rallies after party president Rahul Gandhi returned from his Kailash Mansarovar pilgrimage.
BJP workers chant "Har Har Modi" at the PM's rallies.
Summary:
An error is displayed when the fake package is scanned and so drivers could choose to keep it, as it wouldn't show on Amazon's systems if undelivered.
Summary:
Madhya Pradesh CM Shivraj Singh Chouhan has said no one would be arrested without investigation under the Scheduled Castes and Scheduled Tribes (Prevention of Atrocities) Act in the state.
Summary:
Chatterjee alleged the BJP was using the UGC to achieve its "political agenda" ahead of elections.
Summary:
A passenger who suffered nose and ear bleeds during the Jet Airways Mumbai-Jaipur flight on Thursday, has said that his oxygen mask was full of blood when he removed it.
Summary:
The Centre on Thursday informed the Supreme Court that it is in the midst of framing guidelines on keeping foreign nationals in detention centres, stating that it will be completed within three months.
Summary:
Over 270 million people in India moved out of poverty in the decade since 2005-06, according to the 2018 global Multidimensional Poverty Index released by United Nations.
Summary:
The Gujarat government's claim that all its districts are Open Defecation Free is incorrect since nearly 30% households across eight districts were found to be without toilets in a survey, a Comptroller and Auditor General report said.
Summary:
The stamps were reportedly issued on July 24 to locally and internationally highlight the "plight of people living in Kashmir".
Summary:
Yes Bank's shares tanked over 30% on Friday to hit a one-year low and wiped about $3.1 billion off its market value after RBI denied a three-year extension to CEO Rana Kapoor.
Summary:
A day after Salman Khan's upcoming film's title was changed from 'Loveratri' to 'Loveyatri', a Hindu group told the Gujarat High Court that the new title still sounds similar to the festival of Navaratri.
Summary:
Summary:
Reacting to 26-year-old actress Rhea Chakraborty's picture with filmmaker Mahesh Bhatt which she posted on his 70th birthday, trolls commented, "After Anup Jalota..." and "Bigg Boss ka asar" while speculating that they were dating.
Summary:
Kareena Kapoor Khan has said that she thinks her cousin Ranbir Kapoor and Ranveer Singh will take [Hindi] cinema to another level.
Kareena further said that she is "deeply" fond of Ranbir.
Summary:
Reacting to Juventus forward Cristiano Ronaldo getting a red card for pulling an opponent's hair in a Champions League match, his teammate Emre Can said, "We're not women, we're playing football." "If you're giving that as a red card, you can be sent off for any foul," he added.
Summary:
Jharkhand spinner Shahbaz Nadeem, who set the world record for the best bowling figures (10-4-10-8) in List A cricket against Rajasthan on Thursday, revealed he didn't realise he took a hat-trick during his spell.
Summary:
We didn't fire bullets." The BJP called for a 12-hour bandh on Friday in protest against alleged police firing.
Summary:
Some terrorists kidnapped and murdered three policemen in Jammu & Kashmir's Shopian on Friday morning.
The terrorists went to the houses of the policemen and dragged them out.
Summary:
Kareena Kapoor, who turned 38 today, can be seen in a brief scene in Hrithik Roshan's debut film 'Kaho Naa...
She was supposed to make her Bollywood debut opposite Hrithik but opted out of the film.
Summary:
Shraddha Kapoor has revealed she has had anxiety issues for the last three to four years, while adding, "It's something that I am dealing with in a positive way, every single day." She further said, "I try to spend more time with my family or go away for vacations and enjoy nature...
Summary:
Archery coach Jiwanjot Singh Teja, who was recommended for this year's Dronacharya Award by the selection committee, was rejected for a past indiscipline.
Summary:
After Finance Minister Arun Jaitley called Congress President Rahul Gandhi a 'clown prince', party spokesperson Randeep Surjewala tweeted, "Fake Agenda of a desperate 'Court Jester' & 'Wasteful Blogger'".
Summary:
Congress Chhattisgarh in-charge PL Punia has said that the party will fight the upcoming assembly elections in the state independently.
Summary:
Jalandhar Bishop Franco Mulakkal, who has been accused of repeatedly raping a nun between 2014 and 2016, was on Thursday temporarily relieved of his pastoral duties by the Vatican.
Summary:
After India accepted Pakistan's request for a meeting between foreign ministers, the US State Department said it is "terrific news" for the two nations to be able to sit down and have a conversation together.
Summary:
Mumbai transport authority has directed regional transport officers to not issue permits to auto-rickshaw and taxi drivers if they have criminal cases or court proceedings going on against them.
Summary:
Journalist-blogger Abhijit Iyer-Mitra, who was arrested for his alleged derogatory remarks about Odisha's Konark Sun Temple, has been granted bail.
Summary:
IKEA has apologised to the customer, and has been fined â¹5,000 by Greater Hyderabad Municipal Corporation.
Summary:
Delhi Commission for Women chief Swati Maliwal has asked her husband and AAP leader Naveen Jaihind to control his anger in public, saying he needs to be careful while speaking.
Summary:
NCC units of universities have been asked to organise a special parade, besides holding talk sessions with ex-servicemen to inform students about sacrifices of defence personnel.
Summary:
Two criminals wanted for six murders were shot dead in a 90-minute encounter in Aligarh with UP Police on Thursday morning, while local media filmed the incident.
Summary:
Around 30 passengers suffered nose and ear bleeds on the flight.
Summary:
A state-level inquiry has been initiated after 11 carcasses of lions were found in Gujarat's Gir forest over the last few days.
Summary:
A 26-year-old female employee opened fire inside a warehouse in US' Maryland, killing three people and injuring several others before taking her own life, police said.
Summary:
Emirates is owned by the government of Dubai, while Etihad is controlled by the government of neighbouring Abu Dhabi.
Summary:
Notably, Villa Les Cedres, a 188-year-old, 14-bedroom mansion in the south of France, was listed for $409 million last year (over â¹2,930 crore).
Summary:
Paytm has alleged that Google Pay is utilising users' personal data for advertising purposes, without any additional consent.
Summary:
My pillar." Kareena celebrated her birthday with family including Babita Kapoor, Randhir Kapoor, Karisma, Saif Ali Khan, Soha Ali Khan and Kunal Kemmu.
Summary:
Rashid, who took 112 wickets in 54 ODIs fewer than Nabi, was named Man of the Match.
Summary:
"As we own the trademark of Apni Dukaan, we're going to request Amazon to remove references to Apni Dukaan," Jain said.
Summary:
A US judge on Wednesday dismissed a criminal case brought against General Motors (GM) over its handling of an ignition-switch defect which led to 124 deaths.
Summary:
For the first time ever, a praying mantis has been captured using its front legs to hunt small fish from a pond.
Summary:
Prime Minister Narendra Modi today said the size of the Indian economy will double to $5 trillion by 2022, with the manufacturing and agriculture industry contributing $1 trillion each.
Summary:
The CBI has detained four people, including an official of Bihar's Social Welfare Department in connection with the Muzaffarpur shelter home rape case.
At least 34 girls were raped at the state-funded shelter home, said the police.
Summary:
Bahujan Samaj Party supremo Mayawati announced her party will contest the upcoming Chhattisgarh assembly polls in alliance with Ajit Jogi-led Janta Congress Chhattisgarh party.
Summary:
The choice is yours." The Republican party's symbol is an elephant while Democrats have used donkey as their party symbol.
Summary:
Actress Richa Chadha has claimed she faced racist behaviour by an officer at an airport while leaving from Georgia.
Summary:
The release of the 25th film on the character James Bond was also postponed and will now release on February 14, 2020.
Summary:
Saif Ali Khan's daughter and actress Sara Ali Khan on Thursday shouted at a cameraman for taking her photos outside her dance class without her permission.
Summary:
Summary:
Ministry of External Affairs said that minister Sushma Swaraj will raise the issue of opening a Kartarpur Sahib corridor for Indian pilgrims during her meeting with Pakistan Foreign Minister on the sidelines of United Nations General Assembly in New York.
Summary:
The Supreme Court on Thursday said there can't be a blanket ban on media's coverage of Muzaffarpur shelter home case where over 30 girls were allegedly raped.
The apex court also vacated Patna High Court's August order restraining media from reporting on the case.
Summary:
The Beijing-based company raised $4.2 billion in Hong Kong's second-biggest technology IPO this year after Xiaomi.
Summary:
Priyanka Chopra got a cake for her fiancé Nick Jonas on his 26th birthday where the message, 'I bet my money on you, babe' was written.
Summary:
Jailed Mexican drug lord El Chapo's wife Emma Coronel threw a Barbie-themed birthday party for their seven-year-old twin daughters in Mexico.
Summary:
After suffering a back injury in the India-Pakistan Asia Cup match, Indian all-rounder Hardik Pandya wrote in an Instagram post, "All your love and support is going to make me come back stronger!" Hardik further added that he will keep everyone updated about his recovery from the injury.
Summary:
For the first time in the history of FIFA international football team rankings, two teams are sharing the top spot after World Cup 2018 semi-finalists Belgium joined World Cup winners France at the top of the rankings.
Summary:
India's Commonwealth Games 2018 gold-winners Neeraj Chopra and Manika Batra, along with athletes Hima Das and Jinson Johnson, were selected to be honoured with the Arjuna Award, on Thursday.
Summary:
Indian cricket captain Virat Kohli became the third Indian cricketer to be given the Rajiv Gandhi Khel Ratna after former captains Sachin Tendulkar and MS Dhoni.
Summary:
WhatsApp has announced that the messaging service will no longer support iPhone devices running on iOS 6, including iPhone 3GS and older iPhone models.
Summary:
The study asked people to fill 20 text boxes with a conversation on a particular topic.
Summary:
Summary:
Karnataka Chief Minister HD Kumaraswamy on Thursday alleged that the state's Bharatiya Janata Party leaders offered â¹5 crore to two MLAs of the Congress-Janata Dal (Secular) alliance to change parties.
Summary:
Summary:
Mercedes-Benz India Vice President Michael Jopp has said the company does not yet see a "viable business case" for electric vehicles (EV) in India.
Summary:
Amazon plans to open as many as 3,000 of its cashierless 'Amazon Go' convenience stores by the year 2021, according to reports.
Summary:
Gurugram-based smart parking technology startup Parkwheels has raised â¹1.2 crore in seed funding from investors including former Vice President of Paytm, Amit Lakhotia.
Summary:
The discovery will help doctors repair or replace joint cartilage, heal broken bones more quickly, build up bone in osteoporosis patients and even grow new bone and cartilage for reconstructive surgeries.
Summary:
Karlekar, who has reportedly estimated the damage to be worth at least â¹14 lakh, said CCTV cameras show unidentified youngsters committing the crime.
Summary:
The wife and daughter of former Delhi High Court Chief Justice Dalip Kumar Kapur were allegedly held hostage by their hired help and his accomplices at their New Friends Colony residence in Delhi.
Summary:
SBI is not the "right candidate" to take over more banks, as it needs 2-3 years to see gains from recent consolidation of associate banks, Chairman Rajnish Kumar has said.
Summary:
Indian cricket team captain Virat Kohli and world champion weightlifter Mirabai Chanu will receive the Rajiv Gandhi Khel Ratna, the country's highest sporting honour, on September 25.
Summary:
Passengers onboard the Mumbai-Jaipur flight, in which the crew forgot to maintain cabin pressure, have said there was no warning or announcement from the crew when the oxygen masks were deployed.
Summary:
Reacting to smoking scenes being deleted from her film 'Manmarziyaan', actress Taapsee Pannu tweeted, "I'm sure Waheguru must have approved of drinking but not smoking.
Summary:
In a blog post titled 'Falsehood of a Clown Prince', Finance Minister Arun Jaitley on Thursday accused Congress President Rahul Gandhi of lying on Rafale.
Summary:
Newly elected Delhi University Students' Union president Ankiv Baisoya has said he studied "many subjects including English" during graduation at Tamil Nadu's Thiruvalluvar University, but does not remember the other subjects.
Summary:
The boy, who had been staying at a Gurugram Child Care Institute, happened to meet the madarsa's maulvi recently, who recognised him and contacted his parents.nn
Summary:
Civil Aviation Minister Suresh Prabhu directed Directorate General of Civil Aviation to conduct safety audit of scheduled airlines, aerodromes and flying training schools.
Summary:
The price of a 150 ml cup of tea with teabag and a 150 ml cup of coffee on trains has been increased to â¹10 from â¹7, as per a Railway Board circular.
Summary:
Aircraft cabins are pressurised using air bled from engines to keep the air pressure similar to that of a low altitude.
Summary:
Ex-India captain Sunil Gavaskar slammed Pakistan opener Fakhar Zaman for wearing his national cap backwards to resemble a rapper while bowling against India in Asia Cup. Gavaskar said Zaman should be wearing it properly and his captain should tell him it's "national cap".
Summary:
Afghanistan spinner Rashid Khan, who turned 20 years old on Thursday, set the record for the most number of international wickets as a teenager.
Summary:
Former Indian cricketer Sachin Tendulkar has reportedly refused to accept an honorary Doctorate of Literature from the Jadavpur University citing 'ethical reasons' behind his refusal.
Summary:
Former Indian cricketer Sachin Tendulkar mistakenly put a photo of him and Rahul Dravid in his tweet that was a birthday wish for former Indian cricketer Aakash Chopra.
Wishing my friend @cricketaakash a very happy birthday!"
Summary:
Indian boxer Vijender Singh revealed that his former coach CA Kuttappa, who is the sole Dronacharya awardee in Indian boxing this year, was beaten by him in a national tournament in 2003.
Summary:
The Ministry of Electronics and Information Technology (MeitY) is reportedly drafting a third letter to WhatsApp for a solution to trace users' messages on its platform.
Summary:
Facebook is building a 'war room' at its Menlo Park campus to monitor third-party interference in the upcoming US and Brazil elections.
Summary:
Japanese cryptocurrency firm Tech Bureau on Thursday said that about $60 million in digital currencies were stolen from its exchange Zaif.
Summary:
Summary:
Sitharaman had recently claimed HAL did not have the capability to produce Rafale jets.
Summary:
Summary:
Paytm has written a letter to the Internet and Mobile Association of India (IAMAI) saying that the government's data localisation policy will be beneficial for the Indian startup ecosystem.
Summary:
US-based coding platform GitLab has become a unicorn after raising $100 million in funding at a valuation of over $1 billion.
Summary:
Prime Minister Narendra Modi on Thursday took a metro ride from Dhaula Kuan to Dwarka to lay the foundation stone for the India International Convention and Expo Centre (IICC) in Delhi.
Summary:
Meanwhile, the court also imposed a fine of â¹80,000 on the youth.
Summary:
A video of Russian President Vladimir Putin testing the SVCh-308 rifle by firearms maker Kalashnikov while visiting a military-themed park has surfaced online.
Summary:
Aircel's lawyer had said in March that the assets, including spectrum licences and fibre, are valued at over â¹32,300 crore.
Summary:
The government has decided to sell four Air India subsidiaries that include regional airline Alliance Air and Hotel Corporation of India, which owns two hotels in Delhi and Srinagar.
Summary:
India's External Affairs Minister Sushma Swaraj is set to meet her Pakistani counterpart Shah Mahmood Qureshi on the sidelines of the ongoing United Nations meet in New York.
Summary:
Union Minister Babul Supriyo on Wednesday clarified he was joking after telling a man he will break his leg and give him crutches, at an event for the differently abled.
"I often jokingly say such things.
Summary:
Summary:
Discussing the web series 'Sacred Games', Nawazuddin Siddiqui said, "It came out because critics had no say in it.
Summary:
Criticising deletion of smoking scenes from 'Manmarziyaan', actress Taapsee Pannu tweeted, "I am sure this edit will assure that no Sikh will ever smoke." A Sikh organisation had especially raised an objection to Abhishek Bachchan's Sikh character shown smoking after removing his turban.
Summary:
'Manmarziyaan' director Anurag Kashyap tweeted the mobile phone number of producer Kishore Lulla of Eros International after the producer got three scenes deleted reportedly without taking Kashyap's approval.
Summary:
Bhuvneshwar Kumar cut a cake with a sword at the team hotel in Dubai to celebrate India's eight-wicket victory over Pakistan in Asia Cup on Wednesday.
Summary:
The worth of Flipkart's total ESOP is $1.5 billion.
Summary:
British luxury carmaker Aston Martin, notable for making the sports car driven by fictional secret agent James Bond, is seeking a valuation of up to $6.7 billion in a London Initial Public Offering.
Summary:
On the last day of RSS' three-day conclave, organisation chief Mohan Bhagwat said the LGBTQ community should not be isolated as they are a part of society.
Summary:
Expressing displeasure over media coverage compromising anonymity of the 19-year-old Rewari gangrape victim, the Supreme Court said, "They (media) say that she was a topper in CBSE exam.
Summary:
The India Meteorological Department has sounded a cyclone alert in south Odisha and coastal Andhra Pradesh for Thursday midnight.
Summary:
Preliminary investigation revealed the driver lost control of the bus while taking a sharp curve.
Summary:
The government has hiked interest rate on small savings schemes including Public Provident Fund (PPF), which will now fetch 8% interest rate for the October-December quarter, up from existing 7.6%.
Summary:
Almost 59% of all terrorist attacks in 2017 took place in five Asian countries, including India and Pakistan, a US State Department report said.
Summary:
Chinese e-commerce giant Alibaba's Co-founder and Chairman Jack Ma has said that his promise to create 1 million jobs in the US is impossible to fulfill due to the US-China trade war.
Summary:
Mukesh Ambani's 26-year-old daughter Isha Ambani will officially get engaged to her 33-year-old family friend and Executive Director of Piramal Group, Anand Piramal, on September 21 at Italy's Lake Como.
Summary:
Two helicopters of Vijay Mallya's defunct Kingfisher Airlines were auctioned for â¹8.75 crore on Wednesday.
Summary:
Former Pakistan pacer Shoaib Akhtar bowled to former Indian captain Sunil Gavaskar ahead of the Asia Cup 2018 encounter between India and Pakistan in Dubai on Wednesday.
Summary:
Cricketer-turned-commentator Aakash Chopra has apologised to Hong Kong cricket team for tweeting they chose to bowl first against India "to last a little longer in terms of hours on the ground" and would concede "300+ runs".
Go well in the future," Chopra tweeted to HK team, who lost to India by just 26 runs.n
Summary:
"Can u guys comment RIP in my most recent pic because I want my gf to think I'm dead," a user posted.
Summary:
Former General Motors Vice Chairman Bob Lutz, in an interview with CNBC, said that Tesla is "an automobile company that is headed for the graveyard." "They will never make money on the Model 3," he added.
Summary:
The trailer module's mechanised roof opens to focus the telescope on the night sky to help researchers collect and transmit data.
Summary:
With a minimum weight of 900 kg including the driver, the car offers a maximum speed of 250 kmph.
Summary:
Bengaluru-based grocery startup DailyNinja has raised an undisclosed amount of funding in a round led by Matrix Partners.
Summary:
His wife and daughter were found by the roadside in the locked car in 2015.
Summary:
Amid fears of food contamination across the country, police in Australia's New South Wales have arrested a boy after he admitted to inserting needles in strawberries as a prank.
Summary:
Chinese smartphone maker OnePlus has for the first time entered the top five premium Android Original Equipment Manufacturers (OEMs) globally in just 5 years since the company's inception, according to Counterpoint Research's "Market Monitor Q2 2018".
Summary:
The bullet-ridden body of a BSF jawan, which was found on the International Border with Pakistan near Jammu yesterday, reportedly showed the throat was slit.
Summary:
Most passengers who suffered nose and ear bleed on a Jet Airways flight on Thursday will have "mild conductive deafness for some period of time", Dr Rajendra Patankar, COO of Mumbai's Nanavati Hospital, said.
Summary:
After its flight crew failed to turn on the switch to maintain cabin pressure on a Mumbai-Jaipur flight on Thursday, Jet Airways said that it "regrets the inconvenience caused to its guests." Around 30 of the 166 passengers suffered nose and ear bleeds after air pressure dropped.
Summary:
However, he said he wouldn't call the film a disaster.
Summary:
A promotional video announcing 'Sadak 2', starring Sanjay Dutt, Pooja Bhatt, her sister Alia Bhatt and Aditya Roy Kapur, has been released, 27 years after the original film 'Sadak'.
The video showed clips from the original film, which starred Sanjay and Pooja in lead roles.
Summary:
Karan will offer you a film and then he'll also ask you not to do it in a protective way." However, Alia said she would do the film.
Summary:
Further, Axar Patel and Shardul Thakur have also been ruled out owing to injuries.
Summary:
According to the chargesheet filed by Delhi Police in Chief Secretary Anshu Prakash's assault case, Delhi CM Arvind Kejriwal and Deputy CM Manish Sisodia were the "kingpins" of a "criminal conspiracy" that led to the assault.
Summary:
Reportedly, the policeman befriended the woman after her husband, who was a criminal, died and later raped her on several occasions.
Summary:
Five teenagers in Bihar's Purnea shot dead the warden and a 17-year-old inmate at a juvenile home before escaping the facility, police said.
Summary:
A video of Jet Airways Mumbai-Jaipur flight which suffered a loss in cabin pressure shows oxygen masks being deployed after many passengers onboard suffered nose and ear bleeds.
Summary:
Uttar Pradesh CM Yogi Adityanath has announced that every urban local body in the state will construct a road named as "Atal Gaurav Path" after former PM Atal Bihari Vajpayee.
Summary:
The court was hearing a petition filed by a person over a Facebook post, which showed a photograph of Lord Parshuram along with 'Parshya' from Marathi film 'Sairat'.
Summary:
Union Minister Piyush Goyal on Wednesday said the government would celebrate second anniversary of the surgical strikes on September 29.
Summary:
Spanish Foreign Minister Josep Borrell has revealed that US President Donald Trump suggested the Spanish government deal with the Mediterranean migration crisis by building a wall across the Sahara desert.
Summary:
Pakistan Navy chief Admiral Zafar Mahmood Abbasi has said the US move to suspend security aid to Pakistan was not a favourable one but it was not a "life or death situation".
Summary:
Emmy Award-winning writer Sean Catherine Derek, known for 'Batman: The Animated Series', also visited Mumbai with Lawrence to meet Tiger, reports added.
Summary:
A new motion poster featuring British actor Lloyd Owen as the villain John Clive in the film 'Thugs of Hindostan' has been released.
Summary:
Jadhav bowled for the first time in international cricket in that match, registering figures of 3-0-6-2.
Summary:
Summary:
This was the first time in his 154-match-long Champions League career that Ronaldo was shown a red card.
Summary:
Juventus forward Cristiano Ronaldo's sister Katia Aveiro has said that her brother Cristiano Ronaldo's sending-off in Juventus' Champions League match against Valencia is "a disgrace." In one of her Instagram stories, Aveiro wrote, "They will pay for these tears.
Summary:
She also said she'd met the man on 'SugarDaddyMeet.com' under the name 'Sanjuro'.
Summary:
When asked about looking to scale down its Point of Sale (PoS) business, online payments startup PhonePe's Co-founder Rahul Chari has said, "The PoS business is my pet project.
Summary:
South Korean President Moon Jae-in on Thursday visited sacred North Korean volcano, Mount Paektu, with leader Kim Jong-un.
Summary:
While talking to a North Carolina man whose house had been damaged by a yacht during Hurricane Florence, US President Donald Trump said, "At least you got a nice boat out of the deal." Trump then suggested that the owner may get to keep the boat.
Summary:
Former ISRO scientist S Nambi Narayanan on Wednesday said that the spy case made up against him was no spy case at all and "those who fabricated the case should have been a little clever".
Summary:
A 32-year-old patient at the neurosurgery ward claimed he found a worm in the rice given for breakfast.
Summary:
In Tuesday's episode, Sreesanth was involved in an argument with co-contestant Somi Khan, during which the cricketer said that she had a bad upbringing.
Summary:
Denying reports that her boyfriend Rajkummar Rao asked her to quit Kangana Ranaut starrer 'Panga', Patralekhaa tweeted, "I wasn't approached for Panga!" She added that she respects Panga's director Ashwiny Iyer Tiwari and looks forward to working with her.
Summary:
Actor Akshay Kumar has given â¹5 lakh to acid attack survivor-activist Laxmi Agarwal as she recently revealed her poor financial condition after being jobless for one year.
Summary:
Gigi had slammed the media by posting the comment on an Instagram post about her and Zayn Malik.
Summary:
Jharkhand left-arm spinner Shahbaz Nadeem on Thursday picked up 8 wickets for 10 runs in 10 overs against Rajasthan in Vijay Hazare Trophy at Chennai to set the world record for the best bowling figures in List A cricket.
Summary:
Union Minister Mukhtar Abbas Naqvi on Wednesday compared Congress President Rahul Gandhi to a "pirated laptop which has only fraud and fake words".
Summary:
Two separate FIRs have been registered against Union Minister Babul Supriyo for threatening to break a man's leg at an event for differently abled people in his Lok Sabha constituency Asansol in West Bengal.
Summary:
The Madhya Pradesh High Court has ordered to remove tiles with Prime Minister Narendra Modi and Chief Minister Shivraj Singh Chouhan's photos from houses built under the Pradhan Mantri Awas Yojana (PMAY), by December 20.
Summary:
Around 30 out of 166 passengers onboard a Jet Airways Mumbai-Jaipur flight on Thursday suffered nose and ear bleeds as the crew failed to turn on a switch that maintains cabin pressure.
Summary:
RSS chief Mohan Bhagwat said on Wednesday that the construction of a Ram Mandir in Ayodhya will help bring peace between Hindus and Muslims.
Summary:
Pakistan PM Imran Khan has written to PM Narendra Modi seeking resumption of dialogue between the two countries.
Summary:
Uttarakhand Assembly on Wednesday passed a resolution to declare cow the 'Rashtra Mata' or the mother of the nation.
Summary:
Karnataka High Court on Wednesday told Bruhat Bengaluru Mahanagara Palike (BBMP), "It should be zero potholes by tomorrow.
Summary:
The principal of a private school in Bihar's Patna was arrested on Wednesday for allegedly raping and harassing a Class 5 student in the school premises for months.
Summary:
US Secretary of State Mike Pompeo has said he has invited North Korea's Foreign Minister Ri Yong Ho to meet in New York next week, with the aim of completing its denuclearisation by January 2021.
Summary:
Stating that the disagreements between Muslim nations were weakening the Islamic fraternity, Pakistan Prime Minister Imran Khan on Wednesday said that the country wishes to eliminate tensions in the Muslim world.
Summary:
The order was passed on a complaint of profiteering filed by 109 homebuyers of two affordable housing projects.
Summary:
'Baahubali' actor Rana Daggubati has said that his trilingual film 'Haathi Mere Saathi' will also be in Hindi but nothing interesting is happening for him currently in Bollywood.
Summary:
Summary:
In the lawsuit, the woman said that Winston grabbed her crotch in the drive-thru of a Mexican restaurant in the Phoenix area in March 2016.
Summary:
The technology consists of ultrathin, transparent, and conductive hybrid nanomembranes with nanoscale thickness.
Summary:
It comes after Maezawa said he had purchased every seat on SpaceX's BFR rocket.
Summary:
Hillhouse Capital, a Chinese investment company which backs firms like Tencent, Baidu, and Airbnb has raised $10.6 billion for a new fund, making it Asia's biggest private equity capital raising.
Summary:
Summary:
Prosecutors said "thousands and thousands" of videos of potential victims were on the duo's phones.
Summary:
Rohit Sharma and Shikhar Dhawan scored 52(39) and 46(54) respectively as India defeated Pakistan in Asia Cup, their first encounter in 15 months.
Summary:
Portugal captain Cristiano Ronaldo got a straight red card after he appeared to grab Valencia defender Jeison Murillo's hair in the 29th minute of his Champions League debut for his new club Juventus.
Summary:
Cash-strapped Jet Airways will stop providing free meals under its 'economy light' and 'economy deal' options from September 28.
Summary:
Hong Kong-based airline Cathay Pacific misspelt its own name on one of its airplanes as 'Cathay Paciic'.
Summary:
World's richest man Jeff Bezos has revealed that he realised he was never going to become a theoretical physicist after a Sri Lankan friend at Princeton University solved a problem within minutes.
Summary:
A former Miss India winner has alleged that Gurugram software engineer Mayank Singhvi had assaulted her in the past.
Summary:
Apollo Hospitals has informed the panel probing late Tamil Nadu CM Jayalalithaa's death that CCTV footage from when she was hospitalised is unavailable.
Summary:
The RBI has asked Yes Bank's billionaire Managing Director and CEO Rana Kapoor to step down after a term extension up to January 31, 2019.
Summary:
Anushka Sharma retweeted a picture shared by former Australian cricketer Brett Lee, featuring herself, Lee and her 'Sui Dhaaga' co-star Varun Dhawan.
Alongside the picture, Anushka shared a dialogue from 'Lagaan', writing, "Brett Lee always remember 'Joote ki talli Kitni bhi Moti ho...
Summary:
Reacting to Sheikh Nahyan bin Mubarak Al Nahyan's speech in the middle of the India-Pakistan Asia Cup match, a user tweeted, "Pakistani Openers se lambi to uss Arabi Sheikh ki speech chal gayi..." Another user posted a tweet that read, "The Sheikh's non-stop monologue right through the 8th over is easily the best bit of commentary this Asia Cup.
Summary:
Pakistan's Jalal-ud-Din dismissed Australia's Rod Marsh, Bruce Yardley and Geoff Lawson with the last three balls of his seventh over to register ODI cricket's first ever hat-trick on September 20, 1982.
Summary:
Gurugram-based HR chatbot-focused startup Leena AI has raised $2 million in seed round from investors including Elad Gil and Snapdeal Co-founders, Kunal Bahl and Rohit Bansal.
Summary:
Chinese smartphone maker Xiaomi has admitted to showing ads to its customers in the apps of its phones including the music app and settings menu.
Summary:
Summary:
In an editorial in itsâ mouthpiece 'Saamana', Shiv Sena stated, "It seems Goa Cabinet is in the Intensive Care Unit (ICU) for a year now." It added that Goa CM Manohar Parrikar could have retired with dignity, but the BJP doesn't have a clean leader in Goa at present.
Summary:
The Congress claimed Agrawal had called the party "garbage".
Summary:
A British satellite has successfully demonstrated how to capture space debris using its net technology for the first time.
Summary:
An alleged suicide note claims he failed in several subjects as the college authorities had a personal grouse against him.
Summary:
A woman and her husband were injured when her father allegedly attacked them in a suburb of Hyderabad for marrying outside their caste.
Summary:
Bishop Franco Mulakkal, who has been accused of raping a Kerala nun multiple times, was questioned by Kerala police for seven hours on Wednesday and his interrogation will continue on Thursday.
Summary:
The accused, who was friendly with the minor's family, visited her home in an inebriated condition and raped her when her father went to relieve himself.
Summary:
A 13-year-old girl was allegedly raped by a 24-year-old pandal contractor when she went to offer prayers at a pandal during the Ganesh Chaturthi festival in Agar village, Maharashtra.
Summary:
A 68-year-old man has been sentenced to five years' imprisonment for attempting to rape a 10-year-old girl in Hisar, Haryana last year.
Summary:
Summary:
Luxury hospitality chain ITC Hotels has completed its â¹541-crore acquisition of Park Hyatt Goa Resort and Spa at Cansaulim.
Summary:
South African private hospital group Life Healthcare on Wednesday said that it will sell its entire 49.7% stake in India's Max Healthcare for â¹2,136 crore.
Summary:
The government on Wednesday appointed the Managing Directors and CEOs of 10 state-owned banks.
Summary:
Amazon India has launched a new web page dedicated to the much-awaited OnePlus 6T smartphone which also shows OnePlus Type-C Bullets earphones.
Summary:
Amazon and private equity fund Samara Capital have reportedly signed a deal to acquire billionaire Kumar Mangalam Birla's supermarket chain 'More', India's fourth largest, for an enterprise value of â¹4,200 crore.
Summary:
A completely sober man in China jumped off an overpass to avoid a drunk driving test and a video of the incident has gone viral.
Summary:
'Stranger Things' actress Millie Bobby Brown, who is 14, said that 31-year-old rapper Drake gives her advice on dating boys through text messages.
Summary:
Three scenes from the Anurag Kashyap directorial 'Manmarziyaan' have been deleted after Sikh organisations objected to a scene showing Abhishek Bachchan's Sikh character smoking a cigarette.
Summary:
Summary:
Singer Justin Bieber was spotted giving a public performance, which he dedicated to his fiancée Hailey Baldwin, outside the Buckingham Palace in London.
Summary:
The Supreme Court on Wednesday said that people whose names have been excluded from the Assam National Register of Citizens (NRC) draft can file their claims for inclusion from September 25 onwards.
Summary:
A woman, allegedly upset at not being able to meet PM Narendra Modi during his visit to Uttar Pradesh's Varanasi, set a state-run bus on fire on Wednesday.
Summary:
A group of Indian women based in Switzerland's Baden raised approximately â¹1.8 lakh for Kerala flood relief by selling lunch boxes with Indian food for three days.
Summary:
Mumbai's Lalbaugcha Rajaâ Sarvajanik Ganeshotsav Mandal has received a Ganesh idol, estimated to be worth â¹42 lakh, made of gold with a diamond in the crown.
Summary:
The Supreme Court on Wednesday asked the Pune Police to present before it "one document" showing the involvement of the five activists with Maoists.
As per the Supreme Court's order, the activists are currently under house arrest till September 19.
Summary:
Sixty five-year-old bhajan singer Anup Jalota's 28-year-old girlfriend Jasleen Matharu refused to share a bed with him on the reality TV show 'Bigg Boss 12'.
Summary:
Hong Kong spinner Ehsan Khan, who dismissed MS Dhoni for a duck, clicked photos with Dhoni and stand-in captain Rohit Sharma, whom he had dismissed before Dhoni.
Summary:
India's substitute fielder Manish Pandey, who came in after Hardik Pandya's injury, tossed the ball back inside the boundary to complete a catch while running, in the match against Pakistan on Wednesday.
Summary:
Pandya, who bowled 4.5 overs, held his back after completing his follow-through.
Summary:
"I went to Rahul Dravid in 2004 Champions Trophy in Birmingham and I asked for 5 minutes but Dravid himself came to me and I was a junior player.
Summary:
India's 20-year-old wrestler Sajan Bhanwal became the first Indian to win back-to-back medals at the Junior World Wrestling Championship, after securing a silver medal in the 77kg Greco Roman category in Slovakia.
Summary:
Earlier, Denton had also created the BB8 robot that featured in a Star Wars movie.
Summary:
US-based chipmaker Qualcomm's CEO Steve Mollenkopf has said, "There's no better opportunity and partner for Qualcomm than to work with Apple." If Qualcomm continues to improve its chips, there's no reason why Apple and Qualcomm wouldn't work together again, he said.
Summary:
The BJP on Tuesday accused Congress leader Navjot Singh Sidhu of "demeaning India" and "consistently" behaving like an "agent of Pakistan".
Summary:
Summary:
Earlier, reports claimed Evernote's user growth had been flat for the last six years.
Summary:
OYO has started operations with four properties in London.
Summary:
GSK is looking to sell its 72.5% stake in its listed Indian subsidiary GlaxoSmithKline Consumer Healthcare, known for malt-based drinks Horlicks and Boost.
Summary:
Brussels Airlines has decided to stop its flights between India and Belgium for "economic reasons, as the route didn't deliver the anticipated results." The Lufthansa Group carrier's Mumbai-Brussels flights, launched in March 2017, will be stopped on January 6.
Summary:
UK's advertising regulator has banned three websites, an app and a YouTube channel promoting Kinder chocolate and toys for targeting junk food advertising at children.
Summary:
The Islamabad High Court has suspended the jail sentences of former Pakistan Prime Minister Nawaz Sharif and his daughter Maryam Nawaz.
Summary:
The Ministry of External Affairs has reportedly said that it has not received any official communication or confirmation from the UAE in regard to the extradition of Christian Michel, the alleged middleman in the AgustaWestland scam.
Summary:
Ahead of India-Pakistan Asia Cup clash, Pakistan Cricket Board's official Twitter account shared video highlights of Pakistan's victory over India in 2017 Champions Trophy final but got the spelling of 'happened' wrong in their tweet.
Summary:
Gautam Gambhir took a dig at Pakistani cricketer Tanvir Ahmed during a televised debate ahead of the India-Pakistan Asia Cup tie on Wednesday.
Summary:
Apple CEO Tim Cook has revealed that Steve Jobs' office at Apple's old campus was locked up after his death, as it "didnâÂÂt feel right to change that office at all".
Summary:
Flipkart Co-founder and Group CEO Binny Bansal said American retail chain Walmart "absolutely" underpaid for the e-commerce startup's 77% stake in the $16 billion deal.
Flipkart was the only option (for Walmart) to make a play in India," Bansal said.
Summary:
A BSF jawan, alleged to have been honey-trapped by Pakistan's ISI, has been arrested for spying by Uttar Pradesh's anti-terror squad, state police chief OP Singh said.
Summary:
A senior fire department official said that the fire that erupted at a multi-storey building in Kolkata's Bagree Market is "completely" under control, three days after it started on Sunday morning.
Summary:
The Supreme Court issued a contempt notice to Delhi BJP chief Manoj Tiwari for allegedly breaking a sealed house's lock and summoned him to appear in court on September 25.
Operating as a "dairy facility", the house was sealed for allegedly violating Delhi Master Plan.
Summary:
Pakistan Prime Minister Imran Khan is visiting Saudi Arabia for discussions on a possible economic bailout package as he seeks to resolve the country's debt crisis, according to reports.
Summary:
His younger sister Lottie Tham's wealth surged by almost $250 million to $2.6 billion.
Summary:
India's largest law firm, Cyril Amarchand Mangaldas (CAM), is being scrutinised by the CBI in the $2.1-billion PNB fraud case, according to Reuters.
Summary:
Denmark's largest lender Danske Bank's CEO Thomas Borgen resigned on Wednesday following an investigation into payments of about $234 billion through the bank's Estonian branch, many of which were suspicious.
Summary:
Commenting on Bigg Boss 12's participants 65-year-old bhajan singer Anup Jalota and 28-year-old singer Jasleen Matharu, who are in a relationship, last year's winner Shilpa Shinde said it is not easy to accept a relationship in public.
Summary:
Summary:
Icardi unleashed a right-footed shot into the goal's bottom-right corner to score the equaliser.
Summary:
"Koi Biwi ke liye kar raha hai, koi garmi ki vajah se, iss #INDvsPAK ke #BreakTheBeard mukaabley mein bhi India hi Champions hai," Sehwag wrote alongside the collage.
Summary:
Normally he's not good with execution...what happened with Sreesanth after the World Cup in IPL could've happened...that day only," said Harbhajan referring to the incident when he slapped Sreesanth after an IPL 2008 match.
Summary:
Summary:
Ex-UFC champion Conor McGregor launched his new Irish whiskey brand, named 'Proper Twelve'.
McGregor, who launched the brand on social media, called it a 'Proper Irish Whiskey, from a Proper Irish man'.
Summary:
Technology giants like Apple and Amazon have also helped with Hurricane Florence relief.
Summary:
American hedge fund Tiger Global Management has led a $300-million funding round in US-based delivery service startup Postmates.
Summary:
Summary:
Summary:
A 53-year-old woman was arrested at the Delhi airport for allegedly attempting to smuggle gold worth over â¹27 lakh in her rectum, according to an official statement issued on Tuesday.
Summary:
After facing criticism for hugging Pakistan Army Chief, Punjab Minister Navjot Singh Sidhu said it was just a hug and not a Rafale deal.
Summary:
The RBI can sell at least an additional $25 billion to support the rupee, the SBI has estimated based on intervention patterns since the 1990s.
Summary:
A tweet by journalist Shiv Sunny has helped raise â¹50 lakh for the family of the 27-year-old sanitation worker, who died allegedly after falling in a sewer in Delhi's Dwarka.
Summary:
The Union Cabinet on Wednesday approved the ordinance making triple talaq a punishable offence, after the bill to criminalise triple talaq got stuck in the Rajya Sabha.
Summary:
Talking about her husband Virat Kohli, Anushka Sharma said, "We don't see each other as two different people.
Summary:
"I want to retire with a wicket more than Zaheer," Ahmed had jokingly said on receiving Team India call-up.
Summary:
Jaihind said that he would offer â¹20 lakh to any BJP leader who would agree to get gangraped by 10 people.
Summary:
Tesla is facing US criminal investigation over CEO Elon Musk's August 7 tweets about taking the company private and claiming that the funding has been secured.
Summary:
A man who found hair in his cheeseburger ordered through UK-based food delivery app Deliveroo, was denied a refund by the app stating, "This is a matter of personal taste." He was refunded only a fraction of the order's amount for late delivery.
Summary:
Home decor startup Livspace has raised $70 million (over â¹500 crore) in Series C funding round led by private equity firm TPG Growth and Goldman Sachs.
Summary:
Meanwhile, the MLAs' daily allowances have also been increased from â¹200 to â¹1,000.
Summary:
RSS-backed centre Deen Dayal Dham is planning to sell 30 therapeutic products, including soaps made of cow dung, on Amazon.
Summary:
After rescuing a 50-year-old woman who was held captive by her brother for two years, Delhi Commission for Women said, "The woman was fed only a slice of bread once in four days." "She did not even have water to drink and would save rain water.
Summary:
PM Narendra Modi's official NaMo app has started accepting 'micro donations' starting from â¹5, and giving people the option to donate â¹50, â¹500 or â¹1,000.
Summary:
Government data and a report by FactChecker have rejected spiritual leader Sadhguru's recent claim that in the last four years, there have been no bomb blasts in the country except in border areas and J&K.
Summary:
Kengeri police have arrested the absconding wife of a chain snatcher for inciting him to commit the crimes.
Summary:
Congress' student wing NSUI has alleged that newly elected Delhi University President Ankiv Baisoya from Akhil Bharatiya Vidyarthi Parishad (ABVP) furnished a fake graduation marksheet for admission in the university.
Summary:
Following his summit with Kim Jong-un, South Korean President Moon Jae-in has said the North Korean leader agreed to "permanently" abolish key missile facilities in the presence of foreign experts.
Summary:
US President Donald Trump on Wednesday praised agreements made by North Korean leader Kim Jong-un during his talks with South Korean President Moon Jae-in as "very exciting".
Summary:
The character was originally portrayed by Ayushmann Khurrana, who made his Bollywood debut in the film, while Yami played the female lead.
Summary:
Kuldeep Yadav has become the quickest Indian spinner to take 50 wickets in ODI cricket, achieving the feat in his 24th ODI against Hong Kong in Asia Cup on Tuesday.
Summary:
Chair umpire Mohamed Lahyani has been banned from his next two tournaments for encouraging world number 27 Nick Kyrgios on court during a US Open match.
"Lahyani's actions...were deemed to have compromised...impartiality," the men's tennis governing body said.
You're great for tennis," the umpire was heard saying to Kyrgios.
Summary:
Facebook reportedly sought access to the financial data conveyed through its Messenger app for years between users of the platform and financial firms.
Summary:
Using a 2D video as input, the system deploys an algorithm to create 'motion sculptures' of a person's body moving through space.
Summary:
It has 'Robo Pods' that can carry packages or act as a food truck or a portable grocery store.
Summary:
Flipkart Internet, the online marketplace unit of the Walmart-backed company, has received over â¹3,462 crore from Singapore-based entity Flipkart Marketplace, as per filings.
Summary:
A 24-year-old man, who escaped a few months ago after allegedly killing his mother-in-law in Delhi following an argument over pakodas, was arrested by police after a 10-km chase in Uttar Pradesh.
Summary:
Military ties between China and Pakistan are the "backbone" of relations between the two countries, a vice chairman of China's Central Military Commission has said.
Summary:
Hans-Georg Maassen, the head of Germany's domestic intelligence agency, has been sacked over his remarks that appeared to downplay anti-migrant violence.
Summary:
Rashtriya Swayamsevak Sangh (RSS) chief Mohan Bhagwat said on Tuesday that the RSS believes in Hindu rashtra but that does not mean they are against Muslims.
Summary:
Union Defence Minister Nirmala Sitharaman said on Tuesday that some forces in Jawaharlal Nehru University (JNU) are openly waging a war against the country, and she will not hesitate to call them anti-India.
Summary:
A UAE court has ordered extradition of Christian Michel, an alleged middleman in the â¹3,600 crore AgustaWestland VVIP chopper scam, to India.
Summary:
Describing the character, the film's production house Yash Raj Films wrote, "Zafira is fiery and stunning.
Summary:
Speaking about pay parity in Bollywood, Varun Dhawan said he told Alia Bhatt to ask for more money as he believes she is a "big star" and deserves a hike.
He said, "I'd...tell Alia 'You take very little money.
Summary:
Summary:
'Game of Thrones' actor Kit Harington has said he met his wife Rose Leslie on the show and in that way it gave him his future family.
Summary:
Ahead of today's India-Pakistan ODI, Indian tennis player Sania Mirza, who is married to Pakistani cricketer Shoaib Malik, announced she wouldn't be using social media for a few days citing trolls.
Summary:
A 9-year-old fan's reaction to MS Dhoni getting out for a three-ball duck against Hong Kong in Asia Cup has gone viral.
Summary:
Kom said when she arrived in Poland, she had just four hours to lose weight.
Summary:
Taking a dig at PM Narendra Modi during a public meeting in Andhra Pradesh on Tuesday, Congress President Rahul Gandhi said PM Modi is a "chowkidar" who opens the door and lets thieves in.
Summary:
Samajwadi Party spokesperson TN Pandey accused rebel party leader Shivpal Yadav of being involved in "high-level corruption" as a minister in Akhilesh Yadav-led Uttar Pradesh government.
Summary:
President Ram Nath Kovind on Tuesday launched a logo and a web portal to commemorate 150th birth anniversary of Mahatma Gandhi, which is celebrated on October 2.
Summary:
The Supreme Court has granted Congress leader P Chidambaram's son Karti the permission to travel to UK between September 20 and 30 despite objections from the Enforcement Directorate (ED).
Summary:
The Delhi Commission for Women on Tuesday rescued a 50-year-old woman who was allegedly held captive, starved and tortured by her brother for the last two years at her residence in the National Capital.
Summary:
The complaint was filed by a constable who had discovered that Niranjan Mishra had not got his tenant verified.
Summary:
Sex is not a taboo but a "gift from God" which is designed to show love and to create life, Pope Francis has said while slamming pornography as part of an "industry of lies".
Summary:
Actress Sunny Leone unveiled her wax statue at Madame Tussauds in New Delhi.
Summary:
Off-spinner Ravichandran Ashwin, who last played an ODI in June last year, has said he "didn't do too much wrong" to be left out of India's ODI squad.
Summary:
Argentine forward Lionel Messi scored his career's 48th hat-trick to help Barcelona beat Dutch champions PSV Eindhoven 4-0 in their opening Champions League group match on Tuesday.
Summary:
Zurich firm SolarImpact Yacht has unveiled a solar-powered yacht concept capable of sailing around the globe without stopping to refuel.
Summary:
Talking about the prices of new iPhones, Apple CEO Tim Cook has said that people want to have the most innovative product available, and "it's not cheap to do that".
Summary:
Addressing a public meeting in Andhra Pradesh on Tuesday, Congress President Rahul Gandhi said that Congress will give Special Category Status to Andhra Pradesh if it comes to power in 2019 General elections.
Summary:
Uttarakhand Minister of Women and Child Welfare Rekha Arya has written to state education department, seeking cancellation of recognition of the Dehradun school where a Class X girl was allegedly gangraped by four students.
Summary:
A man has been arrested for allegedly raping a seven-year-old girl in Delhi.
Maliwal further tweeted, "Girl is very critical...
Summary:
Opener Shikhar Dhawan smashed his 14th ODI hundred as India knocked Hong Kong out of Asia Cup 2018.
Summary:
Yuvraj Singh is the only player to hit six sixes in an over off pace bowling, achieving the feat in a Stuart Broad over in an India-England World T20 match on September 19, 2007.
Summary:
A Facebook post from an anonymous bride has gone viral, in which she threatens to unfriend her friends from Facebook if they refuse to pay $2,000 (â¹1.45 lakh) for her wedding.
Summary:
Abhishek Bachchan has said that he and his wife Aishwarya Rai Bachchan chose to be actors, while adding, "We decided to step into this world.
Summary:
Salman Khan took to social media to reveal that the title of his upcoming production 'Loveratri' has been changed to 'Loveyatri'.
Summary:
"What happened to you?...I can break one of your legs and give you crutches," the singer-turned-politician said.
Summary:
American businessman Dennis Tito became the world's first space tourist in 2001 by paying nearly $20 million to fly to the International Space Station.
Summary:
Ravi Karkara, an Indian national working as a senior adviser at the United Nations Entity for Gender Equality and the Empowerment of Women, has been dismissed after an investigation upheld allegations of sexual harassment against him.
Summary:
South Korean President Moon Jae-in arrived in the North on Tuesday to attend this year's third inter-Korean summit.
Summary:
Singer Mika Singh has said he can sing the song 'Channa Mereya' from the 2016 film 'Ae Dil Hai Mushkil' better than the original singer Arijit Singh.
After singing a few lines of the song on a show, Mika said, "This was a mix of Arijit and Atif Aslam.
Summary:
Hong Kong cricketer Ehsan Khan bowed down on the pitch to pray after dismissing Indian batsman MS Dhoni for a duck in India's match against Hong Kong in the Asia Cup on Tuesday.
Summary:
Speaking about Indian captain Virat Kohli's batting, Indian spinner Ravichandran Ashwin said that the entire dressing room felt at ease after watching Kohli defend his first ball at the crease in England.
Summary:
The exposed data includes names, addresses, phone numbers, and the last four digits of credit cards submitted through online payment systems.
Summary:
French artist, Pascal Boyart, is setting up a cryptocurrency art exhibition to celebrate 10 years of Bitcoin.
Summary:
A lawsuit filed against Facebook on Tuesday has accused its platform of letting companies post job advertisements that discriminate against women.
Summary:
The BJP Twitter page today trolled Congress President Rahul Gandhi by sharing a video of him that features the 'Kaala Rey' song from 'Gangs of Wasseypur - Part 2'.
Summary:
RSS chief Mohan Bhagwat on Monday said the organisation does not wield a remote control on its workers, adding, "Our only concern is that they do not commit mistakes." Bhagwat further said the organisation believes in engagement and not alienation of any political thought.
Summary:
He also asked them to work hard at the booth level, claiming elections cannot be won only through achievements of the government.
Summary:
Referring to the two main crop seasons in India, BJP chief Amit Shah today said it is doubtful whether Congress President Rahul Gandhi knows when Rabi and Kharif crops are grown.
Summary:
Accusing the Centre of "compromising" national security, former Defence Minister AK Antony said, "They have been repeatedly saying that the new Rafale deal is cheaper.
Summary:
India has provided relief supplies to Bangladesh for the Rohingya refugees who have fled the persecution in Myanmar.
Summary:
Authorities in the Mexican state of Jalisco are storing corpses in a refrigerated trailer as morgues have run out of space following a recent wave of violence.
Summary:
South Africa's highest court on Tuesday legalised the use of marijuana by adults in private places, declaring that the law banning it is unconstitutional and invalid.
Summary:
India's largest lender State Bank of India (SBI) plans to run 10,000 ATMs on solar power in the next two years, the bank's CFO Prashant Kumar has said.
Summary:
German sportswear major Adidas has sought stable import duty rates in India, saying it would help in having "more faith in the market".
Summary:
Dena has a gross bad loan ratio of 22% compared to Vijaya Bank's 6.9% and Bank of Baroda's 12.4%.
Summary:
Former ISRO scientist K Chandrasekhar, framed for spying in 1994 ISRO espionage case, slipped into coma hours before Supreme Court's verdict clearing his name on Friday.
Summary:
Authorities at a Dehradun boarding school, where a 16-year-old girl was allegedly raped by four students, tried making the girl undergo abortion when they discovered she was pregnant, police said.
Summary:
The trailer of 'Captain Marvel', the first female-led superhero film by Marvel Studios, has been released.
Summary:
Pakistani fan Bashir (aka Chacha Chicago) has revealed he's sponsoring Team India and Sachin Tendulkar's fan Sudhir Gautam's trip to UAE for Asia Cup. Bashir revealed he offered help to Sudhir after knowing the latter didn't have the financial means to arrange for the trip.
Summary:
RSS chief Mohan Bhagwat has said the organisation never asks its volunteers to work for any particular party but asks them to "back those working in national interest".
Summary:
Audi is looking to bring its first all-electric car to India in the fourth quarter of 2019.
Summary:
A 12-year-old girl from Panipat, who alleged she was kidnapped by 10 men who tried to rape her in a field, has retracted her statement.
Summary:
Prime Minister Narendra Modi and his Bangladeshi counterpart Sheikh Hasina on Tuesday jointly inaugurated the construction of the India-Bangladesh Friendship Pipeline Project through video conferencing.
Summary:
Defence Minister Nirmala Sitharaman has said that Navjot Singh Sidhu's gesture of hugging Pakistan's Army chief Qamar Javed Bajwa impacted soldiers back home and that he could have "avoided it".
Summary:
China on Tuesday announced tariffs on US goods worth $60 billion, in retaliation to the 10% import tariffs imposed on its products by the US.
Summary:
China has accused Taiwan of using sex to manipulate Chinese students into becoming spies.
Summary:
He also said the company is looking to list Reliance General Insurance in the ongoing financial year.
Summary:
The Indian rupee on Tuesday closed at a new lifetime low of 72.97 against the US dollar, down 46 paise against the previous close.
Summary:
Govinda has said he's doubtful about collaborating with David Dhawan while adding he was hurt by the filmmaker's rudeness when he had discussed a film with Dhawan.
Summary:
Actress Dimple Kapadia's nephew Karan Kapadia is set to make his Bollywood debut with Sunny Deol in the upcoming film 'Blank'.
Summary:
Former Sri Lankan captain Mahela Jayawardene made fun of his former teammate Kumar Sangakkara's glasses that he wore during his commentary duty at the Asia Cup 2018.
Summary:
Indian wrestler Babita Phogat, when asked about the increased number of rape cases in the country, said that there should be a new slogan for men, 'Beton ko padhao aur beton ko samjhao'.
Summary:
Talking about Virat Kohli's captaincy after India's recent 1-4 series loss at the hands of England, Australia's former captain Ricky Ponting said captaincy is about 60% off the field preparation and 40% on the pitch action.
Summary:
Ahead of the India-Pakistan Asia Cup tie on Wednesday, the Indian wheelchair cricket team thrashed their Pakistani counterparts in the Friendship Cup match played in UAE.
Summary:
Speaking at a technology forum in China, world's highest-valued AI startup SenseTime's Founder Tang Xiaoou said, "Hey Google, let's make humanity great again." Amazon and Microsoft also announced plans to build new AI research labs in Shanghai.
Summary:
Motorola has patented self-driving police vehicles that can take criminals to jail.
Summary:
In light of the US sparing Apple devices from tariffs on Chinese imports, Apple CEO Tim Cook has said he is optimistic about the US-China trade talks.
Summary:
Summary:
The Rajasthan Congress has launched a 77-day crowdfunding campaign to finance the upcoming assembly elections.
Summary:
Summary:
During an interaction with children at a government primary school on his 68th birthday on Monday, Prime Minister Narendra Modi said, "As students, it is important to ask questions.
Summary:
Reliance Jio added nearly 1.18 crore subscribers in July, 13 times more than the combined addition of 9.27 lakh by major rivals Airtel, Idea and Vodafone India.
Summary:
This includes movable assets worth â¹1,28,50,498 and a residential property in Gandhinagar worth â¹1 crore.
Summary:
On September 18, 1977, NASA's Voyager 1, the farthest man-made object from the planet, captured Earth and Moon in a single frame from a distance of 11.66 million kilometres from Earth.
Summary:
Ranbir Kapoor has said he's an "average actor" and a "below average person" who just got great opportunities.
Ranbir further said, "I'm just acting in movies so just can't take it that seriously."
Summary:
The body of a Russian climber has been found preserved on Europe's highest mountain, 31 years after she went missing.
Summary:
Measuring 1200 tesla, it is about 400 times higher than those generated by magnets in MRI machines, and about 50 million times stronger than the Earth's own magnetic field, scientists noted.
Summary:
Singh, who faces a maximum penalty of 20 years in prison, also admitted to a fraud in 2012, where he duped 22 investors of approximately $340,000.
Summary:
After the incident, the men said that they drank a "few bottles of Indian beer" which "they could not handle".
Summary:
Footage showed O'Connor tacklingntwo robbers, with the attempted robbery foiled in less than a minute.
Summary:
He also thanked his elder brother Mukesh Ambani, whose telecom venture Reliance Jio Infocomm, bought RCom assets.
Summary:
UK-based retailer Boohoo.com has promised to pay its next CEO John Lyttle ã50 million (nearly â¹480 crore) in shares if the company's market value rises 180% in 5 years.
Summary:
"Dadi said that out of all my co-stars, I look best on screen with Parineeti.
Summary:
Urvashi Rautela, while sharing a screenshot of a report, criticised it for linking her up with Chunky Panday's nephew Ahaan Panday after the two were spotted dining together.
Urvashi added, "You guys can call it publicity gimmick.
Summary:
In an episode, which is set to be aired on Tuesday, the 35-year-old will be seen getting into an argument with other housemates.
Summary:
Indian spinner Harbhajan Singh recalled that he apologised to Pakistani pacer Wasim Akram, saying, "Paaji, galti ho gai," after having hit him for a four in a Test match early in his Test career.
Summary:
Athlete Vontae Davis, who played 10 seasons in the National Football League, retired from the sport with immediate effect during the half-time of Sunday's match between Buffalo Bills and Los Angeles Chargers.
Summary:
Amazon is reportedly planning to release at least eight new hardware devices powered by its digital assistant Alexa by the end of this year.
Summary:
The Reserve Bank of India (RBI) has written to the Ministry of Electronics and Information Technology (MeitY) to push Google to store user data of its payments platform locally.
Summary:
Hospitality startup OYO has topped the list of 25 most sought-after startups in India released by professional networking service LinkedIn on Tuesday.
Summary:
Over 100 children fell ill after eating the prasad at a Vishwakarma puja celebration in Bihar, officials said today.
Summary:
An eight-year-old girl was allegedly abducted from her home while she was sleeping and raped by an unidentified person in Uttar Pradesh's Gonda, said the police on Tuesday.
Summary:
The woman was visiting the area to buy medicines for her ailment when she met the two accused, who asked her to accompany them on the pretext of offering alternate therapy.
Summary:
At least 100 people have died in floods across 10 states in Nigeria, with national disaster being declared in four states, Nigeria's National Emergency Management Agency (NEMA) said.
Summary:
Israel has held the Syrian government responsible for downing a Russian military plane that killed all 15 on board.
Summary:
US President Donald Trump has ordered to declassify various documents related to the FBI's investigation of the alleged Russian meddling in the 2016 presidential elections.
Summary:
Indian equity benchmark Sensex tumbled 295 points on Tuesday to close at a one-and-a-half month low of 37,290.67.
Summary:
The US-based soft drinks maker is reportedly in talks with Canadian marijuana producer Aurora Cannabis to develop the beverages.
Summary:
Goldman Sachs downgraded Indian equities for the first time since March 2014 citing expensive valuations and upcoming elections.
Summary:
Syria mistakenly shot down its ally Russia's military plane carrying 14 people on Monday, using a Russian-made S-200 surface-to-air missile system.
Summary:
Actor Ayushmann Khurrana has revealed that his wife Tahira Kashyap did not want him to do kissing scenes after his Bollywood debut film 'Vicky Donor'.
She was not ready for all this," added Ayushmann.
Summary:
Delhi Police on Tuesday registered an FIR against Delhi BJP chief Manoj Tiwari for illegally breaking the lock of a sealed house on September 16, a video of which surfaced online.
Summary:
Flipkart Group CEO Binny Bansal, while explaining the reason behind accepting the $16 billion Walmart deal, said the e-commerce startup needed a "long-term strategic partner" to focus on areas that really matter.
Summary:
After starting operations in Australia in January and the UK in July, Bengaluru based Ola Cabs has said that it will start services in New Zealand in September.
Summary:
The Enforcement Directorate has registered a money laundering case against Karnataka Water Resources Minister DK Shivakumar, his business associates and two government employees on the basis of tax evasion and hawala transactions case against him.
Summary:
A video showing West Bengal CM Mamata Banerjee playing the song "Hum honge kaamyab..." on the accordion during her ongoing trip to Germany's Frankfurt has surfaced online.
Summary:
The brother of Sohrabuddin Sheikh has told a special CBI court that he did not name BJP chief Amit Shah in any statement to the agency in the Sohrabuddin encounter case.
Summary:
Jailed couple Indrani and Peter Mukerjea filed their divorce petition in a Mumbai court on Tuesday, with settlement terms including apartments in India, Spain and England.
Summary:
India's first woman IAS officer post-Independence, Padma Bhushan Anna Rajam Malhotra passed away at the age of 91 at her residence in Mumbai's Andheri on Monday.
Summary:
While Dena Bank shares rallied nearly 20%, Vijaya Bank shares jumped as much as 10% in early trading.
Summary:
"I'm wearing Nike tonight to tell them how proud I'm of them for supporting Kaepernick," she said.
Summary:
Freida Pinto has said that it was very important for her to not surrender to the Indian stereotype.
Summary:
Hina Khan has said that the reality show 'Bigg Boss 11' has helped in showcasing her real personality, adding, "People look at me as a fierce, opinionated, different type of girl who doesn't shy away from speaking her mind." " I've always been like this.
Summary:
Adil Hussain, who played the role of late actress Sridevi's husband in 'English Vinglish', has said that Bollywood has "underutilised" most actors including Sridevi who he believes was a "volcano of talent".
Summary:
Off-spinner Ravichandran Ashwin has said all-rounder Hardik Pandya is an "extremely gentle character" and is "anything but cocky and rude".
"[Pandya] takes the opportunity head on rather than shying away," he further said.
Summary:
Former English Premier League player Dimitri Payet, who was not part of France's 2018 World Cup-winning squad, scored with a right-footed volley while playing for Marseille in the French league.
Summary:
Vera has been a regular at Manchester City's matches for over 85 years and now attends matches with Olga, son Danny and son-in-law Roger.
Summary:
Summary:
Walmart's global head of mergers Emily McNeal will be joining Flipkart as Senior VP.
Summary:
US-based ride-hailing company Uber is in talks to buy Dubai-based rival firm Careem, according to reports.
Summary:
Summary:
According to Elephant Conservation in Sri Lanka, the country has 200-250 elephants in captivity.
Summary:
Bihar CM Nitish Kumar was admitted to a private ward of the All India Institute of Medical Sciences (AIIMS) in Delhi for a health checkup on Tuesday.
Summary:
Chinese internet giant Alibaba's Co-founder Jack Ma has said that trade frictions between the US and China could last for two decades.
Summary:
Venezuelan President Nicolás Maduro has been criticised for having an expensive dinner at the 'Salt Bae' restaurant in Turkey amid the starvation in his country.
Summary:
Read the Accenture Technology Vision Report 2018, to understand the technology trends that will shape the future of business by tapping into the powerful potential of the intelligent enterprise.
Summary:
The Trump administration said the tariffs will increase to 25% next year and threatened to cover a further $267 billion of goods if China retaliated.
Summary:
Bansal, who quit Infosys in 2015, was supposed to get â¹17.38 crore in severance pay.
Summary:
The first look of actor Amitabh Bachchan as Khudabaksh from the film 'Thugs of Hindostan' has been revealed.
Summary:
Talking about his fiancée Priyanka Chopra, Nick Jonas said, "I can get all mushy, but I think the thing that really connected us both is our love for family." He added they both understood the importance of being connected to those who are always going to be there for you.
Summary:
But when he came (out to bat), he looked 14 years old," Akram added.
Summary:
A BJP worker has been arrested for allegedly sharing obscene posts about West Bengal CM Mamata Banerjee with her morphed images on social media.
Summary:
As SpaceX announced Japanese billionaire Yusaku Maezawa will be the first-ever paying passenger to fly around the Moon, CEO Elon Musk said "As far as me going, I'm not sure...maybe I would join [him] on this trip".
Summary:
The 42-year-old former punk band drummer will fly aboard SpaceX's BFR rocket in 2023.
Summary:
Bansal said an IPO would help find the right partners and make the company "way more competitive".
Summary:
Speaking on the Flipkart-Amazon rivalry, Flipkart co-founder and Group CEO Binny Bansal said he personally found Amazon CEO Jeff Bezos' truck stunt a "gimmick".
Summary:
The Odisha Police has seized former BJD MP Jay Panda's chopper on charges of violating flight rules and entering the 'no flying eco-sensitive zone' of Chilika lake.
Summary:
The robbers also killed a 75-year-old woman, who was a policeman's mother-in-law, while robbing a house on Friday.
Summary:
A girl from Odisha's Jajpur district swam to her village after being gangraped for 28 days and thrown into a river by the accused.
Summary:
PM Narendra Modi on Tuesday inaugurated various development projects worth over â¹500 crore at a public rally in Uttar Pradesh's Varanasi, a day after his 68th birthday.
Summary:
Union Ministers Prakash Javadekar and Mukhtar Abbas Naqvi unveiled a 568-kg laddoo on the occasion of PM Narendra Modi's 68th birthday on Monday.
Summary:
In a letter to Union Minister Harsimrat Kaur Badal, External Affairs Minister Sushma Swaraj has revealed that there has been no official communication from Pakistan on opening a Kartarpur Sahib corridor for pilgrims.
Summary:
Reliance Communications Chairman Anil Ambani has said that India's telecom industry has been "creatively destroyed" to an oligopoly, and is moving towards a duopoly or even a monopoly.
Summary:
Actress Priyanka Chopra has revealed that she was five years old when she found out that she has asthma.
Summary:
Radhika Madan, who made her acting debut on TV with Ekta Kapoor's serial 'Meri Aashiqui Tum Se Hi', said, "I never took my stardom on TV seriously.
Summary:
Speaking about the box-office success of 'Stree', Shraddha Kapoor said, "I feel relieved...But at the same time, it's a bit of a paradox because I don't feel very attached to box-office numbers." Shraddha further said the critics have praised her performance in the film.
Summary:
Summary:
Kanté then visited the fan, had dinner and played FIFA.
Summary:
Rewards will be based on the impact of each report, with a minimum reward of $500 per vulnerable app.
Summary:
In a video posted on Twitter, BJP MP Prabhat Jha has challenged Congress chief Rahul Gandhi to support the construction of Ram Mandir on the disputed Ram Janmabhoomi-Babri Masjid site in Ayodhya.
Summary:
A man was beaten to death by seven men in Maharashtra after he refused to withdraw a molestation case filed by his daughter against one of them.
Summary:
Pakistan's Prime Minister Imran Khan has pledged to implement the country's citizenship laws that would grant citizenship to all Afghan and Bangladeshi refugees born on Pakistani soil.
Summary:
Further, at â¹5.4 lakh, Chhattisgarh MLAs have the lowest average annual income.
Summary:
Moreover, Zimbabwe's 12th man Andy Whittall was a cousin of Guy Whittall, who was also in the playing XI.
Summary:
Earlier, the series had won seven awards at the Creative Arts Emmys.
Summary:
57-year-old director Glenn Weiss proposed to his girlfriend Jan Svendsen in the middle of his speech as he was accepting an award at Emmys 2018.
He proposed using the ring his father gave his mother 67 years ago.
Summary:
The police were able to return the purse to its owner, who gave Rhami $100 as a token of appreciation.
Summary:
The Congress on Thursday denied reports that senior leader Ajay Maken was quitting as its Delhi chief, revealing that he has gone for a medical check-up and will return next week.
Summary:
Congress President Rahul Gandhi on Monday said, "Whenever [Sachin Tendulkar] played any innings, everybody was assured that he'll score at least 50, 60, 70 or 100 runs." "In Madhya Pradesh, there's a run machine...CM Shivraj Singh Chouhan who makes announcements with the same pace," he added.
Summary:
The party claimed that Regar has even accepted the offer.
Summary:
Japanese billionaire Yusaku Maezawa, who has been selected by SpaceX as the first private passenger to fly around the Moon, said he "would like to invite six to eight artists from around the world" for the trip.
Summary:
Thai cave rescue volunteer Vernon Unsworth has sued Tesla CEO Elon Musk, seeking at least $75,000 in damages for falsely claiming Unsworth is a "pedo" and "child rapist".
Summary:
On the occasion of Ganesh Chaturthi, a unique ATM (Any Time Modak) machine has been installed in Maharashtra's Pune that will give out a packed modak on inserting a special card.
Summary:
About 8.02 lakh infant deaths were reported in India in 2017, the lowest in five years, according to UN Inter-agency Group for Child Mortality Estimation report.
Summary:
All the six members of the Indian Navy's first all-women crew, who sailed across the globe aboard INSV Tarini in 254 days, have been given the Tenzing Norgay Adventure Award.
Summary:
The wife of a 24-year-old Dalit Christian, who was murdered in Telangana last week, has accused her father of getting her husband killed, adding, "It's only my father who's capable of doing this." The woman, who's reportedly five-month pregnant, also claimed that her father asked her to undergo an abortion.
Summary:
Delhi CM Arvind Kejriwal, Deputy CM Manish Sisodia and eleven MLAs have been summoned by Delhi's Patiala House Court to appear in the case related to an alleged assault on Delhi Chief Secretary Anshu Prakash.
Summary:
Mukhtar Malik, a soldier who was home to mourn the death of his teenage son, was killed by suspected militants posing as journalists in Jammu and Kashmir's Kulgam district on Monday.
Summary:
Nine people, including four students, have been arrested in connection with the alleged gangrape of a Class 10 student of a boarding school in Uttarakhand's Sahaspur.
Summary:
Observing that it was "shocking" how authorities allowed jeweller Nirav Modi to carry out illegal construction in Alibag, the Bombay High Court has ordered an inquiry into over 160 unauthorised private structures in the coastal area.
Summary:
Summary:
Imran Khan, on being asked whether he'll be returning to acting or not, said, "I'm not particularly excited by acting.
Summary:
Wishing Shabana Azmi on her 68th birthday on Tuesday, Rishi Kapoor tweeted, "Wonderful, intelligent, compassionate actor- a great co-star...Happiest birthday to dear Shabana Azmi Akhtar." "We did one film long back- 'Rahi Badal Gaye'.
Summary:
Summary:
Short was bitten on his left hand while playing with his dog earlier this month and required stitches.
Summary:
The players pushed the ambulance when it failed to start after Silva was loaded into it.
Summary:
Summary:
Amazon's concern is reportedly about RBI's view on data mirroring and the use of the word 'only' in the guidelines.
Summary:
Bishop Franco Mulakkal has applied for an anticipatory bail in the Kerala High Court in connection with the rape case filed against him by a nun.
Summary:
Elon Musk-led startup SpaceX on Monday revealed that Yusaku Maezawa, founder of Japan's largest clothing website Zozotown, has signed up to be the world's first private passenger to fly around the Moon.
Summary:
Germany on Monday launched the world's first zero-emission hydrogen trains which will run on a 100-kilometre stretch.
Summary:
The pilot later successfully landed the aircraft at alternate Newark Airport instead of designated JFK Airport despite aircraftâÂÂs multiple system failures.
Summary:
The trailer of Emily Blunt starrer Disney musical fantasy film 'Mary Poppins Returns' has been released.
Summary:
After 65-year-old bhajan singer Anup Jalota revealed he's dating 28-year-old Jasleen Matharu, a Twitter user commented, "Two minutes silence for boys who are still single...including me".
Summary:
Arjun Kapoor, while responding to a troll who commented that Arjun became an actor due to nepotism, said, "You can choose to not watch a film." "Also we as actors don't hold anyone at gunpoint forcing you to watch our work," he added.
Summary:
Homegrown ride-hailing startup Ola has raised $50 million in funding from Hong Kong-based Sailing Capital and China-Eurasian Economic Cooperation Fund at a valuation of nearly $4.3 billion, as per regulatory filings.
Summary:
They are expected to work at reduced hours until at least Christmas.
Summary:
In August, Musk claimed that Saudi Arabia's sovereign wealth fund offered funding to help him take Tesla private.
Summary:
The girl alleged that Rohit made physical relations with her without consent and beat her when she threatened to file a complaint.
Summary:
Indian skydiver Shital Mahajan jumped off a plane from 13,000-foot height in US' Chicago to wish PM Narendra Modi on his 68th birthday on Monday.
Summary:
Summary:
"I got paid for [the film] and Nawazuddin still holds it against me because apparently he got only â¹1," she said.
Summary:
Radhika Madan starrer 'Mard Ko Dard Nahi Hota' has won the People's Choice award in the 'Midnight Madness' segment at the 43rd Toronto International Film Festival.
The film is the first Indian film to be featured in the Festival's Midnight Madness section.
Summary:
Afghanistan beat Sri Lanka for the first time in an ODI on Monday as the island nation crashed out of the Asia Cup 2018 after suffering their second successive defeat.
Summary:
The Central Bureau of Investigation (CBI) on Monday wrote to Facebook, Cambridge Analytica, and Global Science Research, seeking information on the alleged data theft, as per reports.
Summary:
He further said that running Google China was a tremendous opportunity, but added that it was "frustrating, at times".
Summary:
In a public notice, Volkswagen said that the recall was for making "necessary updates" for their manual transmission and carbon canisters.
Summary:
Talking about her role at Uber, the ride-hailing startup's Chief Diversity Officer Bo Young Lee has said getting Uber employees to the point where they "feel like they can trust that the system will work" is hard.
Summary:
Goa CM Manohar Parrikar, who is admitted at Delhi's All India Institute of Medical Sciences (AIIMS), is not critical and has been kept under observation, said a doctor.
Summary:
A granite slab erected as a plaque to honour 26/11 martyr Major Sandeep Unnikrishnan in Bengaluru was vandalised by unidentified people on Sunday.
Summary:
A video which has surfaced online shows BJP leader V Kalidass assaulting an auto rickshaw driver when he tried to ask Tamil Nadu BJP chief Tamilisai Soundararajan about rising fuel prices.
Summary:
Addressing the Security Council on Monday, US Ambassador to the UN Nikki Haley accused Russia of "cheating" on UN sanctions against North Korea, claiming the US has "evidence of consistent and wide-ranging Russian violations".
Summary:
A Japanese submarine has participated in a naval drill in the disputed South China Sea for the first time.
Summary:
Asserting India's sovereignty with regards to its relations with countries, Defence Minister Nirmala Sitharaman has said that India's defence ties with Russia will not be impacted by the US' sanctions.
Summary:
Pakistan has launched an initiative with the UK to return "the looted wealth of the country", Shahzad Akbar, Special Assistant to the PM on Accountability, said.
Summary:
Russian President Vladimir Putin and his Turkish counterpart Recep Tayyip ErdoÃÂan have agreed to create a demilitarised zone in Syria's Idlib province to separate the government and rebel forces.
Summary:
Take care of your spouse with a term life insurance plan that goes beyond claims with its better half benefit.
Summary:
"The amalgamation will increase the banking operations...No employee will face any service conditions which are adverse," Finance Minister Arun Jaitley said.
Summary:
The Australian police have issued a public health warning after sewing needles were found hidden in strawberries of at least six brands in the country's all six states.
Summary:
The rise in Japan's ageing society has been attributed to low birthrates, which have led to a shrinking population.
Summary:
Singer Jasleen Matharu's father, while speaking about his 28-year-old daughter dating 65-year-old bhajan singer Anup Jalota, said, "This news was a shocker for me as well as for my family." "However, I don't want to comment [on] anything...till I meet her," he added.
Summary:
Speaking about her film 'Judwaa 2' being criticised for being misogynistic, Taapsee Pannu questioned, "Why did [the audience] make 'Sanju' a â¹300 crore film?" "The kind of lifestyle Sanjay Dutt had, he's a total anti-hero if you think of it the conventional way," she added.
Summary:
Nagpur Municipal Corporation's Mayor, BJP's Nanda Jichkar took her son on an official visit to the US by referring to him as a "private secretary".
Summary:
To celebrate PM Narendra Modi's 68th birthday, 68 cakes weighing 68 kg each are being cut at 68 locations, as per Uttar Pradesh minister Neelkanth Tiwari.
Summary:
Grocery startups BigBasket and Grofers have revived merger talks for a proposed deal which involves BigBasket acquiring smaller rival Grofers, reports said on Monday.
Summary:
Singh expressed hopes that there would be a change in the attitude of the new Pakistan government towards India.
Summary:
NGT had directed the Delhi government to make it applicable to two-wheelers.
Summary:
Whether it was a case of suicide or accidental firing from the AK-47 rifle, is not known yet.
Summary:
A mahapanchayat of 25 villages in Haryana's Rewari has ruled that no practicing lawyer will help any of the accused in the 19-year-old CBSE topper's gangrape case.
Summary:
Ahmedabad's Julian Sinha, the school dropout son of a retired Army colonel, was arrested for allegedly cheating over 50 women across 25 states by posing as an Army officer on matrimonial sites.
Summary:
At least seven people have died and five others are in a coma after they took drugs at an electronic dance music (EDM) festival in Vietnam's capital Hanoi on Sunday, officials said.
Summary:
The auction is expected to fetch nearly PKR 2 billion (over â¹117 crore).
Summary:
'Made in China' will be directed by Mikhil Musale.
Summary:
Google is using Alphabet-owned DeepMind's artificial intelligence (AI) to improve the battery life in Android smartphones operating on Android Pie. The AI analyses how people with Android devices use their apps, according to a developer at DeepMind.
Summary:
Following user backlash on removing 'www' from Google Chrome's address bar, the technology giant has rolled back the changes, according to a company post.
Summary:
Summary:
However, Amazon is yet to seek an approval from the Insurance Regulatory and Development Authority of India, according to reports.
Summary:
DocPrime, the latest healthcare venture by PolicyBazaar Group, on Monday said it has received an initial internal funding of $50 million from the parent company.
Summary:
"As flattered as we are by the rumours, the service is too valuable for such conjectures to be even entertained," a Hotstar spokesperson said.
Summary:
South African conglomerate Naspers-owned online payments service provider PayU India has received a licence from the RBI to open its own Non-Banking Financial Company (NBFC).
Summary:
Tourism Minister KJ Alphons said on Monday that India does not discriminate against tourists based on their sexual preferences.
He said this while responding to a question about the government's view on promoting LGBT tourism in the country.
Summary:
At least ten BJP workers were hospitalised after the incident, Ghosh tweeted.
Summary:
Two people in Uttarakhand were arrested on Monday for allegedly planning to kill Defence Minister Nirmala Sitharaman on a WhatsApp group, the police said.
It is being probed whether the duo had any criminal background or possessed any arms and ammunition.
Summary:
Lau stated that advancements in 5G connectivity and AI gives OnePlus a "greater canvas" to help it take "first steps" towards "building a connected human experience".
Summary:
An American woman has sued Samsung claiming her Galaxy Note 9 smartphone caught fire in her purse after becoming extremely hot while she was in an elevator.
Summary:
If present (CM Manohar Parrikar-led) government is not capable to function, we should be given the chance, we'll do it," said Indian National Congress Legislature Party chief Chandrakant Kavlekar.
Summary:
Actor Sumeet Vyas took to social media to share a picture with his wife Ekta Kaul from their wedding.
Ekta also shared pictures from the wedding and wrote, "Mr and Mrs Vyas..
Summary:
Team India captain Virat Kohli and weightlifter Mirabai Chanu, who bagged gold medal at the Commonwealth Games 2018, have been recommended for this year's Rajiv Gandhi Khel Ratna Award, the country's highest sporting honour.
Summary:
The BCCI has written to the Asian Cricket Council stating that neither them nor the broadcasters have any say in national team selection matters.
Summary:
Candidates appearing in an examination held for clerical posts in Gujarat's Gandhinagar civic body were asked a question about Patidar leader Hardik Patel.
Summary:
The incident occurred when Dubey inaugurated a bridge in Jharkhand's Godda.
Summary:
The Supreme Court on Monday lifted the government ban on the sale of Saridon, Piriton Expectorant and Dart for now, based on a petition filed by drug manufacturers.
Summary:
Haryana CM Manohar Lal Khattar on Monday urged the public not to provide shelter to the two accused in the Rewari gangrape of a 19-year-old girl.
Summary:
Two cinema halls were gutted after a massive fire broke out at a cinema complex in Visakhapatnam's Gajuwaka area on Monday morning.
The fire is suspected to have been caused due to a short circuit.
Summary:
The Supreme Court on Monday extended the house arrest of the five activists, who were arrested in connection with Bhima-Koregaon violence and alleged Maoist links, till September 19.
"Every criminal investigation is based on allegations and we've to see whether there is some material," said the bench.
Summary:
Trump's remarks came while urging people against voting for the Democratic Party in the upcoming congressional elections.
Summary:
Canadian asset manager Brookfield Asset Management is set to buy loss-making East West Pipeline, earlier known as Reliance Gas Transportation Infrastructure, in a â¹14,000 crore deal.
Summary:
The benchmark BSE index Sensex fell by 505.13 points to end at 37,585.51 on Monday after heavy losses in financial stocks including HDFC.
Summary:
Summary:
The period drama, based on Philip Meadows Taylor's 1839 novel 'Confessions of a Thug', is produced by Yash Raj Films.
Summary:
Hina Khan and Hiten Tejwani will enter the house on the first day of 'Bigg Boss 12'.
Hina further said that she "takes a lot of pride in it".
Summary:
Opener Imam-ul-Haq scored 50 or more runs for the fifth time in 10 ODIs as Pakistan defeated Hong Kong by eight wickets with 158 balls to spare in an Asia Cup match on Sunday.
Summary:
Bangladesh batsman Tamim Iqbal, who returned to face a ball with one hand after fracturing his wrist during Asia Cup opener against Sri Lanka, said he felt "very brave in those 10 seconds" when the bowler was running in.
Summary:
Amazon is investigating allegations that some of its employees sold confidential data to third-party companies, the retail giant confirmed on Sunday.
Summary:
Responding to a customer complaint on Tesla delivery delay, the startup's CEO Elon Musk on Monday acknowledged that the carmaker's problems have now shifted to delivery logistics from production delays.
"Sorry, we've gone from production hell to delivery logistics hell," he tweeted.
Summary:
A brief fire broke out at Tesla Gigafactory in Nevada, US on Saturday, leading to a halt in production as the company evacuated the building, the automaker said.
Summary:
Uber rival Go-Jek, which is also Indonesia's most valuable technology startup, is in talks to raise at least $2 billion funding, according to reports.
Summary:
Although the accused have been living in India legally on LTVs, they are not supposed to have acquired ration cards and Voter ID cards, police said.
Summary:
Veteran freedom fighter and former Odisha minister Dolagobinda Pradhan passed away aged 93 at his residence in Bhubaneswar on Monday after a brief illness.
Summary:
French President Emmanuel Macron has been criticised for telling an unemployed man that he could easily find him a job "just by crossing the roadâÂÂ.
Summary:
The iconic TIME magazine is being sold by Meredith Corporation to Salesforce.com's Co-founder Marc Benioff and his wife Lynne Benioff for $190 million (â¹1,378 crore).
Summary:
Veteran actor-director and a former army officer Captain Raju passed away on Monday at the age of 68 in Kochi, Kerala.
Summary:
28-year-old Jasleen said that even her family and friends do not know about the relationship.n
Summary:
"I woke up...because I could feel someone...pressing their naked body against my back.
I was naked, too," she added.
Summary:
46-year-old actress-model Lisa Ray announced the birth of her twin daughters Sufi and Soleil via surrogacy.
Summary:
Karnataka Chief Minister HD Kumaraswamy on Monday announced a â¹2 cut in the cess of both petrol and diesel in the state.
Summary:
Earlier, the worker had pledged that he would wash Dubey's feet and drink the same water if the promise of building the bridge was kept.
Summary:
Summary:
Sumanth Subramanian said the airline offered him â¹41,610 but no efforts were made to trace the baggage.
Summary:
Human Resource Development Minister Prakash Javadekar had said at a school function in Pune that educational institutes should not come to the government with a "begging bowl" and should instead utilise alumni contributions.
Summary:
The building received a conditional clearance from the fire department two months ago.
Summary:
Jasvir Singh, an Army jawan of 18 Sikh Regiment, allegedly shot dead his two colleagues before committing suicide at Dharamshala Military Station in Himachal Pradesh on Monday.
Summary:
In order to settle cases faster, the HDFC Bank has sent nearly 250 summons to customers through WhatsApp and e-mail in cheque bounce related cases.
Summary:
Surbhi and Mital, who got evicted as per the votes by Indian audience, were staying at the outhouse with their partners Kriti Verma and Roshmi Banik.
Summary:
Summary:
Summary:
Talking about his relationship with Disha, Tiger said, "We can be friends also?
Summary:
Wishing Prime Minister Narendra Modi on his 68th birthday on Monday, actor Anupam Kher took to Twitter and wrote, "May your critics continue to have sleepless nights.
Summary:
Prasoon Joshi, while talking about Kangana Ranaut, said that working with her has been a memorable experience, adding, "I have always been an admirer of her." "I believe she holds an eminent place amongst the evergreen talent of Bollywood," he further said.
Summary:
Summary:
Govinda, whose roles are inspired by the lives of Vijay Mallya and Baba Ramdev, will be collaborating with Pahlaj Nihalani for 'Rangeela Raja' after over 25 years.
Summary:
Delhi's Tarak Sinha, coach of wicketkeeper-batsman Rishabh Pant who made his Test debut last month, has been recommended for the Dronacharya Award.
Summary:
He went on to score his second goal with a left-footed strike in the 65th minute.
Summary:
Talking about forming an Opposition alliance for the upcoming Lok Sabha elections, Samajwadi Party chief Akhilesh Yadav said the Congress has the "biggest responsibility" today and should open its heart and take everyone along.
Summary:
Summary:
Tamil Nadu BJP chief Tamilisai Soundararajan has gifted gold rings to babies born on Monday at a government-run hospital in Chennai on the occasion of PM Narendra Modi's 68th birthday.
Summary:
A video showing Delhi BJP chief Manoj Tiwari breaking a lock of a sealed house in the presence of policemen in the capital's Gokalpur area has surfaced.
Summary:
It promises unmatched value across services for all its customers.
Summary:
Amid the rising fuel prices, the friends of a groom gifted him five litres of petrol as a wedding gift in Tamil Nadu.
Summary:
Congress spokesman Abhishek Manu Singhvi alleged there were about 70 lakh discrepancies in the list.
Summary:
Union HRD Minister Prakash Javadekar on Sunday inaugurated a network of over 3,400 Test Practice Centres (TPCs) to familiarise students with the pattern of competitive exams to be conducted by National Testing Agency.
Summary:
While two other accused Manish and Pankaj are yet to be arrested, the doctor and a villager on whose property the gangrape took place were arrested.
Summary:
Summary:
However, a TSPSC official clarified examination officials were specifically told not to insist on removing mangalsutras.
Summary:
Army Chief General Bipin Rawat has said that Nepal and Bhutan have to be inclined towards India because of their geographical proximity.
Summary:
An ex-girlfriend of Rohit Tomar, the Delhi Police officer's son arrested for thrashing a woman, alleged that Rohit sent her the incident's video, which went viral, while threatening to beat her up similarly if she didn't marry him.
Summary:
The DIN is a unique number allotted to individuals eligible for directorship on the boards of registered companies.
Summary:
The boys had complained to the director about the incident but their pleas were disregarded, said a police official.
Summary:
Expressing fear at the "population explosion of divisive forces", Union Minister Giriraj Singh on Sunday tweeted that a situation similar to the religion-based partition in 1947 will take place in 2047.
Summary:
Indian Army and Indian Air Force personnel airlifted around 100 tourists stranded in rain-hit areas of North Sikkim, which was cut off from rest of the state for the last four days, officials said.
Summary:
Actor Matthew Perry, known for playing the character 'Chandler Bing' in the TV sitcom 'Friends', revealed that he spent the last three months at a hospital.
"Three months in a hospital bed.
Summary:
Actress Liz Hurley has received compensation of nearly ã2,000 (â¹2 lakh) from Amazon after her dog was run over by their delivery driver.
Summary:
Actress Bhumi Pednekar, while talking about her relationship status, said she has more of a lust life than a love life.
Summary:
Aamir Khan has said he doesn't want to be a politician while adding, "I'm a communicator.
I'm not interested in politics...I am also scared of politics.
Who isn't?" "I'm a creative person.
Summary:
Bhajan singer Anup Jalota, who'll be seen on Bigg Boss 12, said, "When they approached me, I thought this is the perfect time to take a vacation".
Summary:
Wishing her fiancé Nick Jonas on his 26th birthday on Sunday, Priyanka Chopra took to Instagram and posted their picture with a caption, "Happy birthday baby." They celebrated his birthday at a baseball stadium in Los Angeles along with Nick's friends and brother Joe Jonas.
Summary:
Juventus midfielder Douglas Costa was sent off for spitting in the mouth of Sassuolo forward Federico Di Francesco during the teams' Serie A match on Sunday.
Summary:
The BJP has adopted a new strategy in its campaign for 2019 Lok Sabha elections in which workers will visit 20 houses in their area to talk about the achievements of NDA government while having tea.
Summary:
American professional boxer Muhammad Ali's 1970 Rolls-Royce Silver Shadow car will be auctioned in October this year at Bonhams auction in Belgium.
Summary:
At least three people were arrested by Assam police over their alleged links to suspected Hizbul Mujahideen terrorist Qamar-uz-Zaman.
Summary:
A passenger coming from Hyderabad has been arrested at the Rajamahendravaram airport, Andhra Pradesh, after authorities seized gold paste weighing over 1.2 kilogram and valued at around â¹40 lakh from him.
Summary:
A man from Uttar Pradesh posing as an Army officer was arrested on Sunday for trying to enter the Chaubattia area in Uttarakhand where a joint military drill between India and the US is being held.
Summary:
"About 10,000 camps are being organised under the project and deliveries have already started," said Micromax Co-founder Vikas Jain.
Summary:
The Indian Space Research Organisation (ISRO) successfully launched its PSLV-C42 rocket carrying two British Earth observation satellites from Andhra Pradesh's Sriharikota on Sunday.
Summary:
Sixty-five-year-old bhajan singer Anup Jalota, his 28-year-old student and rumoured girlfriend Jasleen Matharu as well as 'Sasural Simar Ka' actress Dipika Kakar are among the celebrity contestants who are expected to participate in Bigg Boss 12.
Summary:
Bahujan Samaj Party (BSP) chief Mayawati said that her party will agree to an alliance in any election only if it gets a "respectable share of seats".
Mayawati further said that opposition parties will try their best to ensure BJP doesn't win in upcoming Assembly elections in some states and 2019 Lok Sabha elections.
Summary:
This comes after reports stated that Chinese troops transgressed the LAC and entered the Indian territory in Uttarakhand last month.
Summary:
Yoga guru Baba Ramdev has said if PM Narendra Modi-led government "allows him" and "gives him some relief in tax", he can give petrol and diesel to India at â¹35-40/litre.
Summary:
At least 30 fire engines have been deployed to control a fire raging for over 12 hours since Sunday morning in a multi-storied building in Kolkata's Bagree Market.
Summary:
A photograph of Imran Khan-led Pakistan government's Human Rights Minister, Shireen Mazari, has gone viral in which she can be seen taking a nap at her office.
Summary:
The gunmen targeted the city's iconic Plaza Garibaldi where people had gathered for the Independence Day celebrations.
Summary:
Tech Mahindra's Chief Diversity Officer, Richa Gautam, was fired after a former gay employee, Gaurav Pramanik, accused her of saying, "If your mother is a prostitute, you're a prostitute too," to trainees.
Summary:
This would be CBI's first chargesheet in the case pertaining to loans of over â¹6,000 crore given to Kingfisher.
Summary:
Earlier, the company said it will not have any pre-launch sales and would sell only completed flats.
Summary:
Arjun Kapoor has said he never wanted to be an actor, while adding, "I looked like a basketball so I didn't really think about acting." He added when he was in the tenth standard, he decided he'll become a director after watching the 1998 film 'Lock, Stock and Two Smoking Barrels'.
Summary:
A video shows Priyanka Chopra and Nick Jonas celebrating his 26th birthday at a baseball stadium near Los Angeles along with Nick's brother Joe Jonas and his friends.
Summary:
Shah Rukh Khan took to social media to share a note on parenting which read, "Our children are our capability not responsibility." "When someone says 'my kid is such a problem'...I want to tell...don't look at them as that...actually their 'issues' are a call to our potential," he added.
Summary:
Canadian singer Justin Bieber has applied for dual citizenship ahead of his wedding to American model Hailey Baldwin, as per reports.
Summary:
Victoria's Cameron White fell down on the ground after being hit on the shoulder by a beamer from Queensland pacer Billy Stanlake during a 50-over match in Australia on Sunday.
Summary:
Five-time Ballon d'Or-winner Cristiano Ronaldo scored his first-ever competitive goal for Juventus in his fourth match for the club, against Sassuolo in Serie A on Sunday.
Summary:
"Shastri's very good cricket commentator and he should be allowed to do so," Chauhan added.
Summary:
Team India chief selector MSK Prasad has said Karnataka batsman Mayank Agarwal, who scored a record 2,000-plus runs in domestic cricket last season, will "get his due soon".
Prasad further said some Team India players will be rested for Windies series.
Summary:
While talking about speaking up in public, Twitter CEO Jack Dorsey in a recent interview said, "I was a kid that was very shy.
Summary:
A bug in Uber's 'Instant Pay' feature on the app for company's drivers has kept some Uber drivers from getting paid immediately in the US.
Summary:
Further talking about exiting Flipkart after Walmart deal, Dijk said an investor controlling 77% of the company also controls the board.
Summary:
The recall covers 89,309 vehicles produced in China and 50,143 imported vehicles manufactured between 2005 and 2011, China's market regulator said.
Summary:
Women and Child Development Minister Maneka Gandhi has proposed that children separated from jailed mothers should visit them thrice a week.
After being raised in prison till the age of five, children get separated from their mothers, resulting in many cases of trafficking, she added.
Summary:
Four employees of a shelter home for boys in Himachal Pradesh's Chamba have been suspended for allegedly assaulting its inmates.
Summary:
As per reports, the nurses initially lodged a complaint with the hospital's civil surgeon regarding the case.
Summary:
Municipal elections were held in Syria on Sunday for the first time since the civil war broke out in the country in 2011.
Summary:
Sonam added, "Anand was trying really hard because he loves his friend."
Summary:
At cinema halls, noon to 9 pm is considered as the prime time.
Summary:
Actress Anushka Sharma has said she and her husband, Indian cricket team captain Virat Kohli don't draw their identity only from their respective professions.
For the world, it is about our professions.
Anushka further said.
Summary:
"Toronto will be remembered as my 500th victim," IbrahimoviÃÂ said.
Summary:
Ashish Sinha, who served as a selector of Bihar's Under-23 team few months ago, has been selected to represent Bihar senior cricket team in Vijay Hazare Trophy.
Summary:
"All doors for negotiations and reconsideration with Samajwadi Party are closed now," Shivpal added.
Summary:
However, Walmart has not yet paid tax on buyout of shares of 34 other shareholders who exited Flipkart, tax officials said.
Summary:
The Reserve Bank of India (RBI) has reportedly refused to be a part of a high-level panel headed by the Cabinet Secretary to resolve stress in the power sector.
Summary:
The Left Unity on Sunday won all four central panel seats in JNU Students Union elections in which over 5,000 students cast their votes.
Summary:
Amid the Rewari gangrape case probe, Haryana CM Manohar Lal Khattar ordered the transfer of Rewari's Superintendent of Police Rajesh Duggal.
Summary:
The West Bengal Criminal Investigation Department (CID) has arrested two Army men and three police officers for taking illegal possession of 15 kg gold seized from smugglers in the state's Alipurduar district.
Summary:
Union Minister Ramdas Athawale has apologised for saying he's not suffering from rising fuel prices since he's a minister and gets free diesel.
Summary:
The death toll from Typhoon Mangkhut in the Philippines has risen to 49, the police said on Sunday.
Summary:
LA Galaxy forward Zlatan IbrahimoviÃÂ took to Twitter to share a poster his club commissioned in honour of his 500th professional goal for club and country.
Summary:
Dravid's 331-run stand with Sachin Tendulkar against New Zealand on November 8, 1999, was ODIs' highest-ever partnership for over 15 years.
Summary:
Facebook has beaten Twitter in fighting fake news, according to a study.
Summary:
The elements use up a device's resources, causing it to shut down and restart to prevent damage.
Summary:
Apple and Mozilla are launching new privacy tools for their web browsers, Safari and Firefox, to prevent companies like Google and Facebook from tracking users online.
Summary:
The municipal elections will be held in four phases between October 8-16.
Summary:
Talking about establishing customer trust, home furnishing startup HomeLane's Co-founder and CEO Srikanth Iyer has said, "I had a simple rule, all my founding team members had to visit at least one customer." He also said that the meetings with the customers took place for hours over the weekends.
Summary:
Two youths, aged 16 and 22 respectively, drowned after falling into Bhavani River while immersing a Ganesh idol in Tamil Nadu's Erode district, the police said.
Summary:
The motorcycle used in the murder of journalist Gauri Lankesh has been found, a senior official of Maharashtra Police's Anti Terrorism Squad (ATS) said on Saturday.
Summary:
Ortiz spent 10 years as a Border Patrol agent.
Summary:
Sri Lankan President Maithripala Sirisena has recalled his country's envoy to Austria and five other embassy staff for not answering his phone calls.
Summary:
London Mayor Sadiq Khan has called for a second referendum on Britain's exit from the European Union (EU) and criticised PM Theresa May's handling of the Brexit negotiations.
Summary:
Bronze statues of wolves performing the Nazi salute have appeared in the German city of Chemnitz.
Summary:
Eden Hazard, who was a part of Belgium's 2018 FIFA World Cup bronze-medal winning team, scored a hat-trick as Chelsea defeated Cardiff City 4-1 in the Premier League on Saturday.
Summary:
Radhika Apte has revealed a colleague once offered to rub her back in the middle of the night after learning she had hurt her back.
Summary:
It is the ninth Hindi film to earn over â¹100 crore in 2018 in India.
Summary:
The China Eastern Airlines has fired an air hostess for "neglecting passengers' safety" months after she accepted her boyfriend's marriage proposal during a flight.
Summary:
"A piece of my heart will always beat for Kerala Blasters," Sachin said in a statement.
Summary:
Sardar Singh, who retired from international hockey recently, has revealed a 20-minute call with Sachin Tendulkar helped him make a comeback after being dropped for Commonwealth Games 2018.
Summary:
Bangladesh on Saturday defeated Sri Lanka by 137 runs in the Asia Cup 2018 opener, registering their second biggest victory (by runs) in ODIs against the island nation.
Summary:
After Punjab minister Navjot Singh Sidhu urged Akal Takht to excommunicate ex-CM Parkash Singh Badal over the 2015 sacrilege case, SAD leader Prem Singh Chandumajra said he has no right to speak on Sikh issues.
Summary:
Election strategist Prashant Kishor on Sunday joined the JD(U) in the presence of Bihar CM Nitish Kumar.
Summary:
When asked about Congress President Rahul Gandhi's demand that she reveal the full price of each Rafale jet, Defence Minister Nirmala Sitharaman said "leaking" information about weaponry system will benefit countries "who keep an evil eye" on India.
By demanding replies from us, who will ultimately benefit?
Summary:
After a picture of Army personnel dragging dead body of a terrorist in J&K went viral, South Western Command chief Lieutenant General Cherish Mathson explained that it is done as terrorists could carry explosives.
Summary:
He made the admission during his visit to Netherlands, where he met victims of sexual abuse allegedly committed by Buddhist teachers.
Summary:
The CBI has dismissed Congress President Rahul Gandhi's claim that the agency's Joint Director AK Sharma, whom he called PM Narendra Modi's "blue-eyed boy", helped Vijay Mallya flee India.
Summary:
Three lawyers who complained about mosquitoes on a Delhi-Amritsar IndiGo flight in April will get â¹40,000 each, a consumer disputes forum said.
Summary:
Union Minister Ramdas Athawale has said that he is not worried about the rising fuel prices as he's a minister, adding, "Mujhe diesel fokat mai milta hai." "I may suffer if I lose my ministerial post," Athawale added.
Summary:
The family of the 19-year-old Rewari gangrape victim has returned the compensation offered to them, saying, "We want justice and not money." "It has now been five days and none of the accused have been arrested," the former CBSE topper's mother said.
Summary:
Over 70% landowners in Uttar Pradesh's Jewar have agreed to give their land for a proposed international airport, local MLA Dhirendra Singh said.
Summary:
In a letter written from jail, Sheena Bora murder accused Indrani Mukerjea has asked for furniture, jewellery, artworks and keys to a safe in her divorce settlement with husband Peter, reports said.
Summary:
A report by the Ministry of Rural Development has revealed that around 13,511 villages across all states do not have schools.
Summary:
A video showing BJP National Secretary H Raja purportedly abusing policemen after he was denied entry into a sensitive area in Tamil Nadu's Pudukkottai during a Ganesh Chaturthi procession has surfaced online.
Summary:
The girls were not provided a comfortable and safe space to recover, report added.
Summary:
A London-bound Pakistan International Airlines (PIA) flight was delayed by over three hours on Saturday after a fight broke out between the pilot and a cabin crew member.
Summary:
Rahul Dravid, who played his last ODI on September 16, 2011, started wicketkeeping to get into school team.
Summary:
Bangladesh opener Tamim Iqbal batted with just one hand after having earlier fractured his wrist during the Asia Cup 2018 opener against Sri Lanka on Saturday.
Summary:
Summary:
The All India Majlis-e-Ittehadul Muslimeen (AIMIM) led by Asaduddin Owaisi and Bharipa Bahujan Mahasangh (BBM) led by BR Ambedkar's grandson Prakash will form an alliance for 2019 general and Maharashtra Assembly elections, party leaders announced.
Summary:
Police said they were verifying the authenticity of the letter which warned them against harassing people.
Summary:
The CBI has said its officers had no hand in the escape of Nirav Modi and Mehul Choksi, accused in the PNB scam.
Summary:
The video shows veteran meteorologist Mike Seidel unable to stand as two men walk calmly behind him as he reports from North Carolina, USA.
Summary:
Actress Lena Dunham posted a naked picture of herself to protest against online retailer n'Revolve' after it was accused of fat-shaming.
Summary:
Actor Tiger Shroff has revealed people used to make fun of the way he looked by saying 'Who is this, gora chikna'.
Talking about comments by trolls who said he looked like Kareena Kapoor, Tiger further said, "It's a compliment for me."
Summary:
NASA on Saturday launched its most advanced space laser, ICESat-2, a $1-billion mission that will shoot lasers towards Earth to track the planet's melting ice.
Summary:
Prakash Sharma, a farmer in Madhya Pradesh's Panna district, has found a 12.58-carat diamond worth â¹30 lakh.
Summary:
Lieutenant General Cherish Mathson, General Officer Commanding-in-Chief South Western Command, has said Army would help in arresting the defence personnel, who is the main accused in gangrape of 19-year-old CBSE board topper in Haryana.
Summary:
Former LIC Chairman SB Mathur has been appointed as the new Chairman of Infrastructure Leasing & Financial Services (IL&FS), which has outstanding loans of around â¹90,000 crore.
Summary:
A London-based couple has sold their YouTube channel Little Baby Bum, which features animated nursery rhymes, to an agency called Moonbug.
Summary:
Talking about Indians breaking stereotypes in Hollywood, Radhika Apte said, "It doesn't mean if you're brown in colour, you'll only get to play Indian characters in international films." "This clichéd thinking should be broken.
Summary:
Actress Anushka Sharma has said her 'Sui Dhaaga' co-star Varun Dhawan will make a "great husband".
Summary:
Researchers believe that the Natufians brewed beer for ritual feasts to honour the dead.
Summary:
The 150th-ranked Maldives football team, that reached the SAFF Cup semifinal only after they won a coin toss that decided a winner, beat seven-time champions India 2-1 to lift the SAFF Cup for the second time in history.
Summary:
Facebook-owned messaging service WhatsApp will reportedly launch 'Swipe to Reply' feature on its platform for Android users.
Summary:
Microsoft on Thursday said it has acquired US-based startup Lobe that builds AI-based models with the help of a simple drag-and-drop interface.
Summary:
The CEO had earlier said that his company is âÂÂmore left-leaning".
Summary:
The app can reportedly locate up to 600 Grindr users with an accuracy of 6 to 16 feet within minutes.
Summary:
The firm plans to raise the funds from both existing and new investors.
Summary:
A British researcher's comparative analysis of the difference between consumption of animal flesh and human flesh has won the Ig Nobel award in the Nutrition category.
Summary:
Nearly 150 passengers were on board the ferry when the fire started and 126 out of them have been rescued.
Summary:
Iranian Foreign Minister Javad Zarif has said that the landmark 2015 nuclear deal was "not a love affair but a reasonable compromise".
Summary:
The US' efforts to cut Iran's access to the global crude market have prompted Russia and Saudi Arabia to take the market "hostage", Iran's OPEC governor Hossein Kazempour Ardebili has said.
Summary:
Navalny has accused Zolotov of stealing millions in a scheme involving inflated food prices.
Summary:
Kerry has accused the Trump administration of pursuing a policy of regime change in Iran.
Summary:
After President Nicolás Maduro removed five zeros from the bolivar, the price of 50 new bolivars is equal to 5,000,000 old bolivars.
Summary:
"We will have a growth rate higher than what we'd projected...in the budget," Jaitley added.
Summary:
A video shows PM Modi sweeping a hedge and later picking up litter in the presence of school children.
Summary:
Addressing bureaucrats on Friday, Pakistan Prime Minister Imran Khan said that the government has "no money to run the country".
Summary:
Singer Shaan has revealed he wasn't offered much work between 2010 to 2014 while adding, "I wasn't able to understand what was happening." "What did I do wrong?
Summary:
During the visit, she also went to the neighbourhood shops where she used to go as a kid.
Summary:
The Rajasthan government will appeal before the Rajasthan High Court against the acquittal of actors Saif Ali Khan, Tabu, Neelam and Sonali Bendre in the 1998 blackbuck poaching case.
Summary:
Uday wrote that if legalised, marijuana can be a revenue source and added it also has medical benefits.
Summary:
The Delhi High Court has appointed an observer to oversee a kabaddi match between players who represented India at the Asian Games and those who did not.
Summary:
Congress chief Rahul Gandhi has claimed that the escape of fugitive businessman Vijay Mallya was aided by CBI Joint Director, AK Sharma, who "weakened Mallya's "Look Out" [N]otice".
"Mr Sharma, a Gujarat cadre officer, is the PM's blue-eyed-boy in the CBI.
Summary:
An Uber cab passenger in Bengaluru has claimed he had to drive the car to reach his residence as the driver was in an inebriated condition.
Summary:
SC had earlier ordered the formation of a special panel to probe a dowry complaint before an accused could be arrested.
Summary:
Tamil Nadu Governor Banwarilal Purohit has denied reports that he forwarded a recommendation to the Home Ministry that all the seven convicts in the Rajiv Gandhi assassination be released.
Summary:
India's HDI value for 2017 is 0.640, putting the country in the medium human development category.
Summary:
Nixon, who is also an activist, lost the Democratic Party nomination to New York governor Andrew Cuomo.
Summary:
Speaking about his recent retirement from international hockey after a 12-year-long career, India's former captain Sardar Singh said, "I wanted to continue...
Summary:
American boxer Floyd Mayweather said that he is set to come out of retirement to fight his old rival Manny Pacquiao in a rematch of the 'Fight of the Century'.
Summary:
Australia's former captain Steve Smith, who has been banned from international cricket for a year for being a part of a ball-tampering scandal, tied the knot with long-time girlfriend Dani Willis in Australia on Saturday.
Summary:
Talking about India's 1-4 series loss to England, India's head coach, Ravi Shastri claimed that more than the England team, it was England's 20-year-old newcomer, Sam Curran, who hurt the Indian team.
Summary:
A Super Over consists of six deliveries and two wickets for each side.
Summary:
The update will use the existing fingerprint sensors on these devices for its scans.
Summary:
Google on Thursday remotely turned on the battery saver mode by mistake on some phones running Android Pie, including devices that were almost fully charged.
Summary:
Referencing PM Narendra Modi's statement that selling pakodas is also a form of employment, former Uttar Pradesh Chief Minister Akhilesh Yadav said people would soon decide if they want a "pakodawala government or an expressway government".
Summary:
As many as six brands of strawberries in Australia are believed to have been targeted with needle insertions.
Summary:
Super Typhoon Mangkhut, the world's strongest storm this year, hit the northern coast of the Philippines on Saturday, bringing winds of up to 200 kmph and heavy rains.
Summary:
Prince William mistakenly asked school children if they had tried Chinese food, but quickly corrected himself and said, "Sorry, Japanese food.
Summary:
The court has asked the Health Ministry to submit all relevant reports based on which it had arrived at the decision to ban the medicine.
Summary:
India ranks third globally in terms of number of family-owned businesses with 111 companies having a total market capitalisation of $839 billion, according to a Credit Suisse report.
Summary:
The economic losses in the Philippines could reach 6.6% of GDP, or over $20 billion, the report added.
Summary:
Singer Ariana Grande has posted a tribute for her ex-boyfriend, rapper Mac Miller, who passed away last week due to an apparent drug overdose.
Ariana and Mac Miller dated for two-and-a-half years before ending their relationship in 2018.
Summary:
Pakistan all-rounder Shoaib Malik, who is currently in UAE for the Asia Cup, took to Instagram to share a video of his new look and dedicated it to his wife Sania Mirza, writing, "Begum jo bole woh right!
Summary:
Summary:
Talking about the alleged gangrape of a 19-year-old college student, who topped CBSE board exam, Haryana BJP MLA Prem Lata said, "Youth who do not have employment get frustrated and commit such (rapes) crimes." The girl has alleged that she was kidnapped and gangraped by 4-5 men.
Summary:
A police constable in Andhra Pradesh's Visakhapatnam, who was caught riding his motorcycle under the influence of alcohol, tried to burn down his vehicle when it was returned to him.
Summary:
The police have announced a reward of â¹1 lakh for information on those accused in gangrape of former CBSE exam topper in Haryana's Mahendergarh.
Summary:
A fire broke out on Saturday at the top floor of Hotel Pamposh in Srinagar in which eight people sustained minor injuries.
Summary:
Several union ministers on Saturday took part in the 'Swachhata Hi Seva Movement' launched by PM Narendra Modi.
Summary:
India has been included in the UN's list of 38 "shameful" nations for intimidating people cooperating with the global body on human rights.
Summary:
Turkey will support Pakistan's bid to find a peaceful solution to the Kashmir issue at the UN, Pakistan's Foreign Minister Shah Mahmood Qureshi has said.
Summary:
Residents of a small town in Cincinnati, Ohio decided to celebrate Christmas almost three and a half months early for a two-year-old boy with terminal cancer who according to the doctors has just a month to live.
Summary:
Summary:
Cricket Australia will investigate claims made by England all-rounder Moeen Ali that an Australian cricketer called him 'Osama' during the Cardiff Ashes Test in 2015.
Summary:
"Hello darkness, my old friend...I've come to talk with you again," the song's lyrics read.
Summary:
Team India all-rounder Hardik Pandya took to Instagram to share a video of himself surprising his father during his visit to home after three months.
Summary:
Summary:
American technology firm IBM has teamed up with IIT Bombay to 'accelerate' AI research in India through its AI Horizons Network.
Summary:
BJP President Amit Shah has ruled out a pre or post-poll alliance with the Telangana Rashtra Samithi (TRS), saying that they will contest on all seats in the upcoming Telangana Assembly elections.
Summary:
Global rating agency Fitch has revised its outlook on British automaker Jaguar Land Rover from 'stable' to 'negative'.
Summary:
The developmental work for the small rocket "that can carry satellites weighing around 500 kg is on," he added.
Summary:
Police have arrested at least five people over the incident which they said had led to communal tension in the area.
Summary:
Mali's wife has been arrested, while authorities are trying to track Dilip, who reportedly fled the scene after the incident.
Summary:
As many as three temporary ponds have been constructed by the civic body in Odisha's Bhubaneswar to facilitate immersion of Ganesh idols on the occasion of Ganesh Chaturthi and prevent pollution of rivers and water bodies.
Summary:
The European Union (EU) will stop the twice-yearly changing of clocks from October 2019.
Summary:
A patient revealed that J&J was "non-committal" in providing compensation to affected patients.
Summary:
Finance Minister Arun Jaitley on Friday announced a series of measures to curb widening current account deficit and stabilise the rupee, which has declined 11.5% this year.
Summary:
The card reads, "Shit just got real.
Holy Shit we are actually getting married." "I didn't want it to be regular, boring card...but a quirky, yet simple one," said Sumeet.
Summary:
Singer Justin Bieber's fiancée Hailey Baldwin took to Twitter to deny reports which said she got married to Justin after they were spotted entering a marriage bureau.
Summary:
Bihar Cricket Association secretary Aditya Verma wrote to Rai, alleging it was "disgraceful" that Rai kept quiet to save a "very senior employee" who "owes allegiance" to him.
Summary:
Pakistan cricket team opener Imam-ul-Haq has said the media unnecessarily criticises him because he's chief selector and former captain Inzamam-ul-Haq's nephew.
"When I was selected for the national team, I was called InzamamâÂÂs nephew.
Summary:
Summary:
ABVP on Friday denied issuing posters promising to ban short dresses and reduce library hours for women, close eateries serving non-vegetarian food and protect JNU from "anti-national comrades", among other things.
Summary:
The Vatican has decided to form a one-member panel to probe the rape allegations by a Kerala nun against a Bishop of a Jalandhar diocese, reports said.
Summary:
Police have arrested a 70-year-old ex-Army man, the director of a privately run shelter home for disabled children in Madhya Pradesh's Bhopal, after its inmates accused him of sexually abusing two girls and three boys.
Summary:
Summary:
Five militants belonging to Lashkar-e-Taiba (LeT) and Hizbul Mujahideen were killed in an encounter with security forces in Jammu and Kashmir's Kulgam district on Saturday.
Summary:
Bishop Franco Mulakkal, accused by a Kerala nun of multiple rapes, has temporarily stepped down as Bishop of Jalandhar Diocese.
Summary:
Summary:
Haryana Director General of Police BS Sandhu has said the main accused in gangrape of CBSE exam topper in Mahendergarh is a serving defence personnel.
Summary:
PM Narendra Modi on Saturday launched 'Swachhata Hi Seva' movement to ensure a high standard of cleanliness across the country before Mahatma Gandhi's birth anniversary on October 2.
Summary:
Further, more than 69,000 people died of AIDS-related causes last year in the country.
Summary:
Chandresh and his girlfriend Dhara met in college and had been dating for over three years.
Summary:
PM Narendra Modi along with his cavalcade left for 'Swachhata Shramdaan' on the launch of 'Swachhata Hi Seva' movement without any security route in place in Delhi on Saturday.
Summary:
Pakistani High Commissioner to the UK, Sahebzada Ahmed Khan has been recalled to the country to provide an explanation for his behaviour at a recent awards show in London, which he purportedly attended in an inebriated condition.
Summary:
Lehman was the country's fourth-largest investment bank at the time of its collapse, with around 25,000 employees worldwide.
Summary:
Former Ranbaxy promoter and Fortis Co-founder Shivinder Singh said that his decision to disassociate from his brother Malvinder Singh as a business partner still stands.
Summary:
Fan Bingbing, one of China's highest-paid film stars, has been given 0% "Social Responsibility" rating by Chinese authorities after she was reported missing for over two months.
Summary:
The engine, reportedly codenamed 'Dragonfly', will blacklist terms like âÂÂhuman rights,â âÂÂstudent protest,â and âÂÂNobel Prize".
Summary:
Founded in 2011 by Jonathan Downey, Airware first built an autopilot system for programming drones to follow certain routes and collect data.
Summary:
Google Doodle on Saturday honoured Mokshagundam Visvesvaraya on the occasion of his birth anniversary which India celebrates as Engineer's Day. The doodle shows him wearing a Mysore peta with the Krishnarajasagara dam he built across Cauvery river in Karnataka in the background.
Summary:
National Security Advisor Ajit Doval on Friday held talks with his US counterpart John Bolton, State Secretary Mike Pompeo and Defence Secretary James Mattis, days after the inaugural 2+2 dialogue in Delhi.
Summary:
A video showing a swimming coach whipping a girl student with a belt-like object at Ahmedabad's Rajpath Club has gone viral.
Summary:
Amid reports that Goa CM Manohar Parrikar will step down due to his health condition, Assembly Deputy Speaker Michael Lobo has clarified that he will continue in office.
Summary:
Rapper Raftaar has been accused of copying Korean band BTS' lead singer Rap Monster's track 'Do You' in his video 'Mantoiyat' from the film 'Manto'.
The fans have accused Raftaar of stealing the visuals from the track.
Summary:
Filmmaker Rajkumar Hirani, while recalling the time he worked with Nawazuddin Siddiqui in the 2003 film 'Munna Bhai MBBS', said, "He acted really well and I told him 'Nawaz, you're a very good actor'".
Summary:
England all-rounder Moeen Ali has revealed in his autobiography that an Australian player called him Osama during the first Ashes Test at Cardiff in 2015.
Ali added when the Australian coach asked the player if it was true, the player denied saying he had called him "part-timer".
Summary:
A Scottish couple claimed they found a camera hidden in a digital clock at their Airbnb apartment while they were holidaying in Toronto, Canada.
Summary:
Congress President Rahul Gandhi has alleged that Vijay Mallya's "Great Escape" was aided by the CBI quietly changing the "Detain" notice for him, to "Inform".
Summary:
Jayaram claimed that Parameshwara was behind the disproportionate water supply of Hemavathi river.
Summary:
BJP's official Twitter account congratulated Congress chief Rahul Gandhi on having completed 1,000 days out on bail as the "Accused Number 2" in the National Herald corruption case.
#ZamanatKe1000Din," the tweet questioned the Congress chief.
Summary:
Congress President Rahul Gandhi on Friday warned party leaders from Telangana against giving any "negative news" to media.
Summary:
Bhargava declined to share a timeline for shifting the Gurgaon facility, which rolled out the first Maruti 800 in 1983.
Summary:
Cameras aboard the International Space Station have made video footage of Hurricane Florence, which made landfall on Friday morning in the US state of North Carolina, causing intense flooding.
Summary:
Police have arrested two more people in connection with the case involving a widely circulated video of Delhi policeman's son Rohit Tomar thrashing a woman.
Summary:
Pictures from Chennai's Puzhal Central Prison have emerged which show prisoners using smartphones, bed mattresses, and wearing informal clothes.
Summary:
Goa CM Manohar Parrikar on Saturday flew to Delhi's AIIMS for treatment amid reports that he had told PM Narendra Modi and BJP President Amit Shah that he wanted to step down from his office.
Summary:
A report by CBI's Central Forensic Science Laboratory has revealed the 11 members of a family who were found dead at their home in Delhi's Burari in July did not commit suicide.
Summary:
Kerala police on Friday registered a case against Missionaries of Jesus congregation after it released a photo of the nun who had accused Jalandhar Bishop Franco Mulakkal of raping her.
Summary:
US President Donald Trump's former campaign chairman Paul Manafort on Friday pleaded guilty to two conspiracy charges as part of a plea deal with Special Counsel Robert Mueller.
Summary:
Jaroslav Bobrowski, an Ironman triathlete, was banned from an all-you-can-eat sushi restaurant in Germany's Bavaria after he ate close to 80 plates of sushi.
Bobrowski has a special diet, in which he does not eat for 20 hours and then eats till he is full.
Summary:
Reserves fell to $399.3 billion as on September 7, a drop of $819 million over the previous week.
Summary:
Sonam Kapoor has said Kangana Ranaut is a "troublemaker", while adding, "She wants to break the glass ceiling...You need to be a troublemaker to do that." "Not a troublemaker, but someone who stirs the pot.
Summary:
He attempted suicide after his mother told him he'd no longer be allowed to rap.
Summary:
Talking about the Opposition's PM candidate for 2019 Lok Sabha elections, West Bengal CM Mamata Banerjee has said "chehra (face)" is important but the decision will be taken collectively after defeating the BJP.
Summary:
"We put tar over a post office where Hindi language was in practice.
It's impossible to progress in Hindustan without Hindi, he added.
Summary:
The office is aimed at facilitating better communication between the two countries.
Summary:
Trump has often criticised the Washington Post newspaper, which is owned by Bezos.
Summary:
Headquartered in Finland's Espoo, Fluido has additional offices in Denmark, Norway, Slovakia, and Sweden.
Summary:
Only the approval of shareholders by way of a special resolution would be required.
Summary:
It was one of the four statues stolen from the temple and its theft was reported in 1982.
Summary:
Reacting to criticism following India's 1-4 Test series loss against England, head coach Ravi Shastri said he would be the "last one to press the panic button" when he sees "so many positives".
He further said that he doesn't "worry about what critics say".
Summary:
A former gay Tech Mahindra employee has alleged the company's Chief Diversity Officer Richa Gautam passed comments to trainees like, "If your mother is prostitute, you're a prostitute too" and "are you gay to be crying like this".
Summary:
ISRO chief K Sivan has said the Indian space agency has "no plans to test fly any living being like live animals in the two test flights before sending human beings into space" by 2022.
Summary:
India is the second-largest importer of Iranian oil.
Summary:
Reports claimed that the Chinese troops had entered Uttarakhand's Chamoli district.
Summary:
The Jaypee Vasant Continental hotel and Vasant Kunj's Ambience Mall have been issued notices, asking for details of structures "infringing height restrictions".
Summary:
Summary:
A fire department in northern Bangkok is helping catch snakes in suburban neighbourhoods after not having received a call for a fire since June.
Summary:
Patanjali Ayurved on Thursday announced its entry into the frozen foods market with packaged sweet corn, peas, and french fries.
Summary:
Richa Chadha, while denying reports that she was hesitant about signing 'Panga' as it co-stars Kangana Ranaut, said, "I get along with everyone unless they are douches and then I just hate them." "I have never had a problem working with anyone," she added.
Summary:
India Today wrote it gives a "realistic treatment" to sex trafficking victims' lives.
It has been rated 3.5/5 (HT), 3/5 (TOI) and 2.5/5 (India Today).
Summary:
Naina Da Kya Kasoor, the first song from Ayushmann Khurrana and Radhika Apte starrer 'Andha Dhun' has been released.
Summary:
Summary:
Malik came and shook hands with Dhoni before talking to him, with India's stand-in captain Rohit Sharma standing nearby.
Summary:
Bengaluru-based e-pharmacy app Myra Medicines has reportedly raised â¹8.75 crore in a funding round led by venture capital firms Matrix Partners and Times Internet.
Summary:
He also claimed in the lawsuit that Whetstone harboured "deep seated personal animosityâ against him.
Summary:
Former BJP MP Ram Vilas Vedanti said that construction of Ram Mandir in Ayodhya will begin this year and the mosque will be built in Lucknow.
Summary:
This came after Bihar Chief Minister Nitish Kumar flagged off the first bus service from Bihar to Nepal on Tuesday.
Summary:
Bilhore's 16-year-old son was travelling pillion on a motorbike which hit a pothole in July 2015.
Summary:
The Congress party on Friday demanded the Kerala government to explain why service firm KPMG is being paid â¹66 lakh to design a website of a state government organisation.
Summary:
Nagpur City Police on Friday tweeted a 'Kaun Banega Crorepati' inspired meme that questioned users about excuses for not wearing helmets while driving.
Several social media users have shared KBC memes after its tenth season featuring Amitabh Bachchan started on September 3.
Summary:
The US is planning to help Mexico by paying transportation fares to deport illegal migrants back to their home countries under a new program.
Summary:
Morrison had posted a video of MPs raising their hands in the Parliament in sync with the lyrics of the song 'Be Faithful'.
Summary:
Air India was able to raise only â¹30 crore to â¹35 crore from property auctions in February this year, as per reports.
Summary:
Strategists at American investment bank JPMorgan Chase have predicted the next financial crisis to strike in 2020.
Summary:
People Tech Group, which has offices in Bengaluru and Hyderabad, violated the labour provisions of the H-1B visa programme by paying its guest workers below the required wages.
Summary:
US President Donald Trump's administration has said that it is reviewing India's development of the Chabahar port in Iran after imposing several sanctions on the country.
Summary:
Last July, a two-member bench of the Supreme Court had voiced concern over the "abuse" of Section 498A of IPC.
Summary:
Uday Chopra tweeted that India should legalise marijuana, adding, "It's part of our culture...if legalised and taxed it can be a huge revenue source...it'll remove the criminal element associated with it." "Most importantly it has a lot of medical benefits...And no I don't use it.
Summary:
Asha is Paswan's daughter from his first wife while Chirag is his son from his second wife.
Summary:
A total of â¹2,049 crore was sanctioned in 2017-18 to provide â¹6,000-aid to pregnant and lactating women.
Summary:
Reacting to the court order, she said, "I am relieved (and) exhausted fighting RK Pachauri."
Summary:
Demanding a complete ban on such stickers, SGPC threatened to move court if the Railways repeats the mistake.
Summary:
Missionaries of Jesus Church on Friday revealed Kerala nun's identity who accused Jalandhar diocese Bishop Franco Mulakkal of raping her multiple times.
Summary:
Watali got bail after his lawyer told the court his client was not provided with witnesses' statements.
Summary:
US President Donald Trump's administration has nominated Indian-American Bimal Patel to be the Assistant Secretary of the Treasury for Financial Institutions.
Summary:
The move will help sugar mills, saddled with excess supplies, divert cane juice for ethanol production.
Summary:
Sportswear giant Nike's shares hit an all-time high on Thursday, ten days after it featured controversial American football player Colin Kaepernick in an ad campaign.
Summary:
Writing a message for fans who've been sending gifts for her newborn son Zain Kapoor, Mira Rajput wrote on social media, "Please send your products/gifts to those in need instead and make another baby's world a happier place." "Thank you to all those who have sent some beautiful gifts," she further wrote.
Summary:
Bollywood writer Brij Katyal, who wrote the story of Shashi Kapoor starrer 'Jab Jab Phool Khile' passed away on Thursday evening after battling cancer.
Summary:
Summary:
"I am Rumi, is what Anurag Kashyap (film's director) firmly believes.
Summary:
Spain's former coach Vicente del Bosque, who led Spain to their maiden World Cup win in 2010, advised that Jamaican sprinter Usain Bolt should play in defence instead of playing as a winger.
Summary:
England spinner Moeen Ali has said that he has no sympathy for the Australian cricketers involved in the ball-tampering scandal, as he believes Australia were a 'rude and abusive' side who disrespected people and players.
Summary:
Portugal's football team captain Cristiano Ronaldo is set to open the sixth branch of his CR7 brand of hotels in Paris.
Summary:
Summary:
Ex-India captain MS Dhoni has a batting average of 95.16 in 13 ODIs he has played in Asia Cup. The 37-year-old wicketkeeper-batsman has scored 571 runs with a strike rate of 92.84, including one hundred and three fifties.
Summary:
Researchers have developed an autonomous, fruit fly-inspired robot named 'DelFly Nimble' that can imitate the insect's rapid wing movements.
Summary:
The Danish Supreme Court on Thursday ratified fines given to four Uber drivers for operating without a taxi license.
Summary:
A Tesla investor has said he was questioned by US Securities and Exchange Commission about CEO Elon MuskâÂÂs 'funding secured' tweet and his plans to take Tesla private.
Summary:
The military aid of $300 million was suspended to Pakistan despite fears that the "government could fall into the hands of terrorists that would get control of those nuclear weapons," US' NSA John Bolton has said.
Summary:
Pregnant model Slick Woods, who walked for singer Rihanna's Savage x Fenty runway show during New York Fashion Week on Wednesday night, went into labour after walking the ramp, as per reports.
Summary:
Air Chief Marshal Dhanoa added that a system should be developed which can tell if a pilot is sleep-deprived.
Summary:
Airtel is aggressively ramping up its network to serve the booming demand for high-speed data and voice services.
Summary:
Rohit Tomar, son of a Delhi policeman who was seen thrashing a girl in a widely-circulated video, has been arrested and rape charges have been levelled.
Summary:
Actress Taapsee Pannu, while speaking about marriage plans with her boyfriend, Danish badminton player Mathias Boe, said, "I'll get married when I am ready to have a kid." "I won't have a kid without getting married for sure," she added.
Summary:
Hindustan Times (HT) called it "a slow-motion slog".
It has been rated 3/5 (Bollywood Hungama), 4/5 (TOI) and 2.5/5 (HT).
Summary:
Man Kaur, a 102-year-old Chandigarh-based athlete, won the 200m race in the 100-104 age group category at the World Masters Athletics Championships in Spain.
Summary:
NIO sells only in China, although its technology and design teams are based in the US, UK, and Germany.
Summary:
Executives from Toyota also visited plants of some of Suzuki's major suppliers in India for quality checks, reports added.
Summary:
Former IPL chief Lalit Modi has accused Finance Minister Arun Jaitley of lying that he didn't meet liquor baron Vijay Mallya before the latter left India.
Summary:
"There is hardly any village in Gujarat where a Bohra trader cannot be found," he said.
Summary:
A video of a man, identified as Delhi policeman's son Rohit Tomar, has surfaced online, wherein he could be seen beating up a girl and kicking her in the stomach.
Summary:
Barkatullah University in Madhya Pradesh's Bhopal will introduce a three-month 'adarsh bahu' course from next academic session, which the university believes is a part of "women empowerment".
Summary:
A CCTV footage of a petrol pump in Tamil Nadu's Tirunelveli shows a motorcycle suddenly catching fire after the owner got it refuelled to full tank.
Summary:
The Missionaries of Jesus congregation, in its inquiry report, stated, "The victim (nun) along with 5 other nuns...conspired against Jalandhar Bishop." "Victim's friend was handling visitors' register, they must've tampered with it.
Summary:
At least 13 passengers were killed and 13 others injured when a minibus skidded off the road and plunged into a 300-foot gorge near the Chenab river in Jammu and Kashmir's Kishtwar district on Friday.
Summary:
The two Russian nationals accused of poisoning former Russian spy Sergei Skripal and his daughter in Salisbury, UK, have said that they visited the city as tourists to see the cathedral.
Summary:
Rajkummar Rao, while talking about his relationship with co-actress Kangana Ranaut, said the comfort level is "definitely" there between both of them.
Summary:
He's so amazing!" Also praising Vicky Kaushal and Taapsee Pannu in the film, he wrote, "Vicky is all gusto and glory...has some moments of brilliance in the film!
Taapsee holds the strings of her layered character like an absolute veteran!
Summary:
Director Sam Taylor-Johnson, on being asked about the films that were offered to her after 'Fifty Shades of Grey', said "nothing" was offered.
Summary:
England's James Anderson, who recently became the highest wicket-taking fast bowler in Test history, said that the former record-holder Australia's Glenn McGrath and his South African contemporary Dale Steyn are better than him.
Summary:
This comes after India, who had played just one practice match in England, lost the five-match Test series 1-4.
Summary:
Sehwag added he wants Dhoni to continue till 2019 World Cup.
Summary:
Juventus' Portugal forward Cristiano Ronaldo video-bombed a journalist by making funny faces behind his back during a training session.
Summary:
Veteran Congress leader and four-time Meghalaya CM DD Lapang has resigned from the party on Thursday.
Summary:
This comes after Gandhi demanded Jaitley's resignation over Mallya's claim that he had a meeting with him before fleeing India.
Summary:
It has a lower operating speed than a normal truck for safety reasons, a company executive added.
Summary:
Pakistan's Prime Minister Imran Khan has said that the country's Inter-Services Intelligence (ISI) is the best intelligence agency in the world, calling it Pakistan's "first line of defence".
Summary:
OnePlus co-founder Carl Pei in an interview has revealed that the upcoming OnePlus 6T will come without 3.5mm headphone jack and will use USB-C to route audio.
Summary:
Justice Ranjan Gogoi, who is set to become the next Chief Justice of India, was one of the four Supreme Court judges to speak out in public against CJI Dipak Misra.
Summary:
Former Pakistan captain Inzamam-ul-Haq attacked a spectator who called him "Mota, sada aalu" during an India-Pakistan ODI in Toronto on September 14, 1997.
Summary:
India and Pakistan played their first-ever T20I against each other on September 14, 2007 in the inaugural World T20 tournament.
Summary:
TMC on Friday alleged that Vivekananda Vedanta Society of Chicago invited West Bengal CM Mamata Banerjee, but the organisers canceled the event under "tremendous pressure" from BJP-RSS.
Summary:
Volkswagen is ending worldwide production of its iconic Beetle, with the last car to be made in Mexico in July 2019.
Summary:
Supreme Court on Friday announced â¹50-lakh compensation for former ISRO scientist Nambi Narayanan, saying he was "unnecessarily arrested and harassed" by the Kerala police in a spying case 24 years ago.
Summary:
A psychological autopsy report submitted by the CBI has corroborated the police findings in the Burari case where 11 family members were found dead at their house, Delhi Police officials said.
Summary:
Himachal Pradesh High Court Acting Chief Justice Sanjay Karol helped a man, who was unconscious on a street following a seizure, by telling his driver to take him to a hospital instead of driving him to court.
Summary:
A shopkeeper along with two of his friends in West Bengal's Murshidabad thrashed a 10-year-old boy after hanging him upside-down over suspicion that he stole â¹200.
Summary:
BJP MLA Michael Lobo said that he met Parrikar at the hospital and he was fine.
Summary:
Defence Minister Nirmala Sitharaman on Thursday said that state-owned Hindustan Aeronautics Limited did not have the "required capability" to produce Rafale fighter jets.
Summary:
A 19-year-old college student, who topped CBSE board exam and was felicitated by President, was allegedly kidnapped and gangraped by four to five men in Haryana's Mahendergarh, police said on Thursday.
Summary:
A local court in Maharashtra has issued a non-bailable warrant against Andhra Pradesh CM Chandrababu Naidu and 15 others in a 2010 case where they violated prohibitory orders to protest against Babhali barrage irrigation project.
Summary:
The Supreme Court has ordered all the states and union territories to amend rules under the Motor Vehicles Act within 12 weeks, whereby uninsured vehicles involved in accidents should be auctioned to compensate the victims.
Summary:
"Sai committed suicide after two days possibly because of guilt," the police added.
Summary:
A villager from Jammu & Kashmir's Nagrota-Jhajjar has claimed three terrorists broke into his house on Wednesday and took biscuits and apples since they hadn't eaten in five days.
Summary:
A group of lawyers allegedly thrashed a fellow advocate on Thursday in Uttar Pradesh for giving legal help to those accused of preventing children from singing National Anthem at a Madrasa on Independence Day. The advocate along with his colleague was also expelled by a local bar association.
Summary:
Her brother-in-law and his friends are suspected to be behind the attack.
Summary:
Authorities said the 54-year-old gunman, identified as Javier Casarez, shot himself dead when a policeman confronted him.
Summary:
Katrina Kaif took to her social media and posted her co-actor Aamir Khan's picture captioning it, "Thug Life." Katrina and Aamir will be next seen together in 'Thugs of Hindostan' which will also star Amitabh Bachchan.
Summary:
The film will also star Rohan Mehra, the son of late actor Vinod Mehra.
Summary:
Saif Ali Khan will be playing a supporting role in Ajay Devgn's period film 'Taanaji: The Unsung Warrior', as per reports.
Summary:
Bhim Army chief Chandrashekhar was released from jail in Saharanpur on early Friday morning after 15 months as the Uttar Pradesh government decided to revoke the National Security Act charges against him.
Summary:
Uttarakhand CM Trivendra Singh Rawat has urged the public to inform the government about anyone they suspect is not a citizen of India and promised to throw them out.
Summary:
The Delhi High Court has granted bail to Kashmiri businessman Zahoor Ahmad Shah Watali in a terror funding case and subjected him to a â¹2-lakh personal bond with two sureties of like amount.
Summary:
Director Rajkumar Hirani has admitted that he changed parts of Ranbir Kapoor starrer 'Sanju', the biopic on actor Sanjay Dutt, while adding, "I understood that he is our hero, we need some empathy for him." Hirani added, "When the first edit was ready and we screened (the film) for people, they hated him.
Summary:
Ayushmann Khurrana revealed that immediately after his 2012 film Vicky Donor's release, a female fan once told him, "Vicky, I need your sperm." Ayushmann said that he was with his mother at a mall when the incident took place and she was scandalised.
Summary:
SpaceX would be revealing further details about the mission on September 17.
Summary:
World's richest person and Amazon Founder, Jeff Bezos on Thursday announced a $2-billion 'Day One Fund' to support non-profits that help homeless families and build pre-schools in low-income areas.
Summary:
A 10-year-old boy from Missouri has survived after he tumbled from a treehouse and landed on a meat skewer that pierced through his skull.
Summary:
A 'laddu' weighing 580 kg, known as "maha prasadam", was offered to the idol of Lord Ganesha at a temple in Hyderabad on the occasion of Ganesh Chaturthi on Thursday.
Summary:
CBI claimed it downgraded the notice as Mallya was initially "cooperative" and hence it did not expect him to leave.
Summary:
Congress leader Sanjay Nirupam has said that his 'anpad-gawar' remark on PM Narendra Modi wasn't "undignified".
Summary:
Mass evacuations from three towns in the US state of Massachusetts were underway after at least 70 fires, suspected gas explosions and gas odour were reported by the residents.
Summary:
Asia's 120 wealthiest people have collectively lost $99 billion this year, according to the Bloomberg Billionaires Index.
Summary:
In its biggest management shakeup since naming David Solomon as CEO, US bank Goldman Sachs has appointed Stephen Scherr as its new Chief Financial Officer.
Summary:
Sonali Bendre, on the occasion of Ganesh Chaturthi, posted pictures of her family celebrating the festival captioning it, "Missing the celebrations back home, but still feeling blessed." "Ganesh Chaturthi has always been very very close to my heart...Have a happy one, filled with blessings, love and joy," she further wrote.
Summary:
Dawid Godziek of Poland landed the world's first quadruple tail whip trick on a mountain bike at an event in Rheinland-Pfalz, Germany on Wednesday.
Summary:
Sardar has played in Dutch and German hockey leagues in the past.
Summary:
The player, who was accompanied by his cousin back then, was 17 years old when the incident took place.
Summary:
It was designed to propel bicyclists at rapid speeds by pumping helium and oxygen into the tube.
Summary:
Summary:
The hole was detected on the ISS last month and later sealed up, but Russia suggested the move was deliberate.
Summary:
A 40-year-old woman donated her kidney to a junior colleague to save her life, doctors at a hospital in Kolkata said.
Summary:
Congress MP Kantilal Bhuria has been booked for inaugurating a government medical college in Ratlam a day before MP CM Shivraj Singh Chouhan was scheduled to do so.
Summary:
Rizvi added that Rahul pressured the Board not to take action against Mallya.
Summary:
BJP MP Udit Raj has suggested that the "gold and wealth" of three prominent temples in Kerala could be used for helping the people of the flood-affected state.
He tweeted, "The gold & wealth of Padmanabha, Sabarimala, Guruvayur is more than â¹1 lakh crores".
Summary:
Gujarat police on Wednesday seized nearly 360 kg of marijuana with a market value exceeding â¹21 lakh from a woman's house in Rajkot, making it the biggest such seizure in the city.
Summary:
Avula Gopal Reddy has asked drunk people to give him a call when they need a ride.
Summary:
Akash Choudhary of National Students' Union of India (NSUI) has been voted as the Secretary.
Summary:
Pakistan authorities have arrested 18 Indian fishermen for allegedly fishing in the country's territorial waters, an official said.
Summary:
E-commerce firms will have to deduct tax at the rate of 1% before making payments to the suppliers of goods and services.
Summary:
President Ram Nath Kovind on Thursday gave his approval to appoint Justice Ranjan Gogoi as the next Chief Justice of India.
Summary:
In 2016, Justice Gogoi sent out a notice to Markandey Katju for "an attack on the judges and not the judgment" in the Soumya rape-murder case.
Summary:
Answering a question on her favourite role play scenario, Sonam Kapoor has said her husband Anand Ahuja "does not have much of an imagination".
Summary:
He added, "He (Jaitley) talks to an absconder.
There's some deal between them." He also demanded Jaitley's resignation over the matter.nnn
Summary:
Private news agency Indo-Asian News Service (IANS) on Thursday apologised after publishing a story in which an offensive word was used for Prime Minister Narendra Modi.
Summary:
The Kerala government on Thursday sought around â¹4,700 crore as compensation from the Centre for the damage caused by the recent floods in the state, officials said.
Summary:
The restaurant was temporarily shut down for investigation.
Summary:
Summary:
Former Australian pacer Brett Lee was seen participating in Ganesh Chaturthi celebrations at the GSB Seva Mandal in Sion in Mumbai.
Summary:
Johnson was introduced to motorsport at a charity event and has since trained with Perth-based Arise Racing.
Summary:
Summary:
Reacting to American tennis player Serena Williams' US Open outburst, 59-time Grand Slam champion Martina Navratilova said that such behaviour would be unacceptable even if it was done by a male player.
Summary:
Apple claims the Watch can detect falls and call emergency contacts if a wearer remains motionless for 60 seconds.
Summary:
Some key features of the Inbox app have been added in the Gmail app, Google said in a blog post.
Summary:
The expert had concluded that 'Googley' factors did not play a significant role in hiring, Google added.
Summary:
Flipkart-backed online payments platform PhonePe has accused foreign companies like Google of not complying with RBI guidelines to store their data only in India.
Summary:
Facebook's CEO Mark Zuckerberg has said that the company hired more than 20,000 people for safety and security this year.
Summary:
BJP spokesperson Sambit Patra today described former Finance Minister P Chidambaram as a "friend, father and philosopher of black money." Patra also accused the previous UPA government of giving a "sweet deal" to Kingfisher Airlines to keep it afloat.
Summary:
Prime Minister Narendra Modi on Thursday said the Congress has failed to play the role of Opposition after its defeat in 2014 General Elections.
Summary:
The garages would have a shaft to lower the vehicles underground before connecting them to a commuter tunnel.
Summary:
These worms are structurally similar to humans which could help determine muscle loss in space, scientists involved in the experiment said.
Summary:
In a bid to support eco-friendly Ganpati idols, at least 20 chefs took 10 days to build a 65-kg chocolate Ganpati idol in Punjab's Ludhiana.
Summary:
A 14-year-old rape survivor, who is suffering from cancer, has approached the Bombay High Court seeking permission to terminate her 24-week pregnancy.
The petitioner's mother approached the court on the grounds that continuing with the pregnancy would be harmful due to the daughter's cancer treatment.
Summary:
"We didn't receive any request for clearance regarding the visit," said ministry's spokesperson.
Summary:
The Delhi High Court on Thursday said that there is nothing wrong with having CCTV cameras inside classrooms.
Summary:
The order said it's a myth that e-cigarettes are less harmful than beedis and cigarettes.
Summary:
Investor wealth has surged by over â¹12 lakh crore so far in the ongoing financial year, during which the BSE benchmark index Sensex has soared 14.4%.
Summary:
Actor Akshay Kumar has shared the first look poster of his upcoming film 'Kesari', which is based on the Battle of Saragarhi.
Aur mera jawaab bhi Kesari," tweeted Akshay.
Summary:
Summary:
Are you serious?' I said no." Ayushmann added he was told he had to do these things and was questioned on how he would survive in the industry.
Summary:
Nancy Crampton-Brophy, a US-based romance novelist, who published an essay called 'How to Murder Your Husband' in 2011 has been arrested for allegedly murdering her husband.
Summary:
Football club Mohun Bagan's President Swapan Sadhan Bose compared his team's Calcutta Football League (CFL) 2018 victory with the "happiness of a son being born after having a daughter for seven consecutive years".
Summary:
Apple, whose shares have rallied more than 30% this year so far, was valued at $1.068 trillion as of Wednesday's close.
Summary:
BJP leader Subramanian Swamy has claimed liquor baron Vijay Mallya left India with 54 checked luggage items.
Summary:
BJP spokesperson Sambit Patra alleged that Rahul took a loan of â¹1 crore from Vijay Mallya.
Summary:
Congress President Rahul Gandhi on Thursday at a press conference alleged that the government is lying and Vijay Mallya was given a free passage out of the country by Finance Minister Arun Jaitley.
Summary:
Rebel Congress leader Shehzad Poonawalla on Thursday claimed Congress President Rahul Gandhi met PNB scam accused Nirav Modi at a cocktail party on September 11, 2013.
Giving Rahul Gandhi an open challenge, he said, "I'm ready to undergo a lie detector test."
Summary:
Punia further said that he would quit politics if proven otherwise.
Summary:
About 20,000 pallets of water bottles shipped to Puerto Rico after Hurricane Maria hit the island last year have been spotted sitting on a runway in the US territory.
Summary:
Yoga guru Ramdev's Patanjali has announced its foray into the dairy segment by launching milk and milk-based products including cheese and curd.
Summary:
Stating that it wasn't a formal meeting, Mallya said he had asked if Jaitley could facilitate discussions with banks.
Summary:
Summary:
Indian batsman Murali Vijay, who scored a total of 26 runs in the recently-concluded Test series against England, slammed a hundred while playing for Essex in his debut for the county side, on Thursday.
Summary:
Cook aggregated 218 runs in his final Test match.
Summary:
The camera captures multiple images based on which the drones can tell the shape and depth of the holes they have to pass through.
Summary:
PM Modi, who was interacting with party workers via the NaMo app, said the BJP owes its victory to its booth-level members.
Summary:
People went and watched it.
It is not necessary that people will go to watch the same film again and again." He added, "(PM) Narendra Modi conducted the 2014 election with branding.
Summary:
Summary:
The Boring Company's first store will open in two months to sell bricks made from dirt collected by digging tunnels, the startup's CEO Elon Musk has said.
Summary:
A team of 40 international scientists has discovered three new species of fish in the Pacific Ocean, nearly 7,500 metres below sea level.
Summary:
Scientists have discovered bacteria that produce electricity, in the human gut.
Summary:
A government school's headmaster in Haryana has been booked for allegedly sexually harassing a woman who worked as a mid-day meal cook in the school.
Summary:
Spain will go ahead with the sale of 400 laser-guided bombs to Saudi Arabia after the deal was halted amid concerns over Saudi Arabia's role in the Yemen war.
Summary:
Hollywood producer Harvey Weinstein is seen saying, "Let me have a little part of you," in a video shared by Melissa Thompson, who accused him of raping her.
Summary:
Pictures from the event showed a member of the community making Gambhir wear a dupatta, which he accepted.
Summary:
Shivinder Singh has withdrawn the case he filed against his elder brother Malvinder Singh in NCLT after their mother intervened.
Summary:
Sonam added the kinkiest piece of clothing in her wardrobe are her corsets.
Summary:
Following India's 1-4 defeat in the recently-concluded Test series against England, former India skipper Sunil Gavaskar has said Virat Kohli's lack of experience shows at times.
Summary:
Google has released a statement denying allegations of bias against conservatives after website Breitbart leaked a video of a Google meeting following Donald Trump's win in the 2016 US presidential election.
Summary:
In a leaked video of Google's first all-staff meeting after Donald Trump's election as US President, CEO Sundar Pichai said, "I grew up in India, there were lot of things wrong...we've gone through many hairy moments like these".
Summary:
Responding to Mallya's claim, Jaitley said he never gave Mallya an appointment since 2014.
Summary:
After seven years of research, archaeologists concluded that a human made the cross-hatched design with an ochre crayon 73,000 years ago.
Summary:
Former Dravida Munnetra Kazhagam (DMK) corporator Selvakumar has been arrested after he repeatedly kicked a woman inside a beauty salon in Tamil Nadu's Perambalur.
Summary:
Senior BJP leader and Rajya Sabha MP Subramanian Swamy on Thursday said that it is an "undeniable fact" that liquor baron Vijay Mallya told Finance Minister Arun Jaitley in Parliament that he was leaving for London.
Summary:
Around six students have alleged that police took away their black 'dupattas', part of their college uniform, at CM Shivraj Singh Chouhan's event in Madhya Pradesh's Multai on Tuesday.
Summary:
JPMorgan CEO Jamie Dimon has said he thinks he could beat US President Donald Trump in a presidential election.
I'd fight right back," Dimon added.
However, he said his wife won't let him run for office.
Summary:
NBCC had given a proposal for the completion of 15 residential projects of Amrapali having over 46,500 flats.
Summary:
Former Team India captain MS Dhoni has said he resigned from captaincy in January 2017 because he wanted the new captain to get enough time to prepare a team for the 2019 World Cup.
Summary:
The Indian hockey team coach Harendra Singh has demanded the authorities for a sports psychologist after having earlier ruled out the use of consulting a sports psychologist for the team.
Summary:
The shooters returned to Delhi on Wednesday after being stuck at Bangkok airport for a while.
Summary:
The Andhra Pradesh government on Wednesday launched an app, e-Rythu, to digitise agricultural marketplaces and payments.
Summary:
Reacting to Apple's launch event on Wednesday, several users took to Twitter saying, "Dual SIM?
iPad mini", while another mocked a weakening rupee against dollar, saying, "Apple Watch Series 4 can detect a fall?
Summary:
While talking about building an enterprise, Chumbak's CEO Vivek Prabhakar at a recent event said, "Money does not solve all your problems." "With raising money comes responsibility," he further said.
Summary:
Summary:
The old square-in-a-circle logo from 2016 has been replaced by the word 'Uber' on its app icon as well as the website.
Summary:
NASA on Wednesday launched and tested a new foldable umbrella-like heat shield, that could help human landing on Mars.
Summary:
Counting of votes in Delhi University Students Union (DUSU) polls was suspended for the day after members of Akhil Bharatiya Vidyarthi Parishad (ABVP) and National Students' Union of India (NSUI) were involved in a brawl over faulty EVMs, said DUSU election officer.
Summary:
PM Narendra Modi will celebrate his 68th birthday on September 17 in his parliamentary constituency Varanasi, a district official in Uttar Pradesh said on Thursday.
Summary:
One of the politicians said, "I'd give her a kick up the backside," while another said the girl should be suspended from school.
Summary:
US President Donald Trump reportedly mocked Egypt's President Abdel Fattah el-Sisi and referred to him as a "f**king killer", according to Watergate reporter Bob Woodward's book 'Fear: Trump in the White House'.
Summary:
The teaser of the Rajinikanth, Akshay Kumar and Amy Jackson starrer '2.0' was released on Thursday.
Summary:
'Black Panther' actor Michael B Jordan is being considered to replace actor Henry Cavill, who portrays Superman in DC films, as per reports.
Summary:
Actor Rana Daggubati has revealed his first look as Andhra Pradesh CM N Chandrababu Naidu in 'NTR', the biopic on late actor and the state's former CM Nandamuri Taraka Rama Rao (NTR).
Summary:
Eight-time Olympic champion Usain Bolt won a foot race against two passengers on board an Airbus Zero-G plane, which simulates what it's like to be in 'zero' gravity.
Summary:
An hour-long video of Google's first all-staff meeting following Donald Trump's election as US President has been leaked where CEO Sundar Pichai said, "I'm glad we're getting together at a moment like this...There is a lot of fear within Google".
Summary:
Shaina also called the Congress leader "mentally deranged" and his remark "obnoxious".
Summary:
Delhi CM Arvind Kejriwal on Wednesday tweeted, "PM Modi meets Nirav Modi before he flees the country.
FM meets Vijay Mallya before he flees India.
Summary:
Telangana state Congress chief Uttam Kumar Reddy on Wednesday vowed to send caretaker CM K Chandrashekar Rao (KCR) to jail if Congress is voted to power in the ensuing state assembly elections.
Summary:
After Vijay Mallya revealed that he met Finance Minister Arun Jaitley before leaving India on Wednesday, Congress President Rahul Gandhi said, "Given Vijay Mallya's extremely serious allegations in London...Arun Jaitley should step down as Finance Minister".
Summary:
The government has banned manufacturing, sale or distribution of 328 Fixed Dose Combination (FDC) drugs including Saridon with immediate effect citing safety concerns.
Summary:
They earlier told the court that according to their preliminary investigation, the Bishop raped the nun multiple times.
Summary:
Two police officials in Noida were suspended for 'indiscipline' after they allegedly failed to recognise the vehicle of the Uttar Pradesh Director General of Police (DGP) OP Singh on Wednesday.
Summary:
Rivers and wells are abnormally drying up in Kerala, as the state is recovering from the worst floods to hit it in nearly a century.
Summary:
Summary:
The US shares a concern with India over the continued ability of terrorist proxies to operate on Pakistani soil, US' Principal Deputy Assistant Secretary for South and Central Asia, Alice Wells, has said.
Summary:
Amid international criticism over the jailing of two Reuters journalists in Myanmar, leader Aung San Suu Kyi has said their sentence had nothing to do with freedom of expression.
Summary:
Myanmar leader Aung San Suu Kyi has said in hindsight her government could have handled better the situation in Rakhine State that led to the forced displacement of over 700,000 Rohingya Muslims.
Summary:
However, he said that Europe was "morally responsible" for helping "refugees really facing danger against their life".
Summary:
The court rejected a government plea against Saeed, whom the US has designated as a global terrorist.
Summary:
In January, ED attached Australia-based assets of Bhangoo worth â¹472 crore.
Summary:
Amazon Founder and world's richest person Jeff Bezos, who has a net worth of $164 billion, wore pyjamas and slippers to the company's board meeting.
Summary:
England pacer James Anderson took to social media to pay a tribute to Alastair Cook, who retired from international cricket recently.
Proud to call him a friend," Anderson wrote.
Summary:
Osaka added Serena told her that the crowd wasn't booing at her.
Summary:
US' 6-foot-4-inch tall defender Matt Miazga mocked Mexico's 5-foot-6-inch tall winger Diego Lainez for his height during a friendly on Tuesday.
Summary:
Legendary Australian spinner Shane Warne, who turned 49 today, bowled a big leg-break as his first delivery in an Ashes Test to clean bowl England batsman Mike Gatting.
Summary:
The girl, according to her family, was embarrassed to defecate in the open in the densely populated area and frequently had arguments with her mother over the issue.
Summary:
US President Donald Trump on Wednesday signed an executive order enabling sanctions on foreign countries or people who try to interfere in the US political process.
Summary:
Apple on Wednesday unveiled the iPhone XR smartphone with a 6.1-inch display in white, black, blue, coral, yellow and red colours at a starting price of $749.
Summary:
The dual-SIM iPhone Xs and iPhone Xs Max come in 64GB, 256GB and 512GB variants, starting at $999 and $1,099 respectively, and will be available in India from September 28.
Summary:
Apple on Wednesday unveiled iPhone Xs and iPhone Xs Max, the company's first smartphones with dual-SIM facility.
While the iPhone Xs comes with a 5.8-inch display, the bigger iPhone Xs Max has a 6.5-inch display.
Summary:
The new Watch has over 30% larger display and over 50% louder speaker.
Summary:
Apple on Wednesday unveiled three new iPhones, iPhone XR, iPhone XS and iPhone XS Max, which will be available in India at a starting price of â¹76,900, â¹99,900 and â¹1,09,900, respectively.
Summary:
A Bihar court has ordered an FIR against actor Salman Khan for his upcoming home production Loveratri, which allegedly hurts Hindu sentiments and promotes vulgarity.
Summary:
Warne's prediction came true when England scored 338/8 in reply to India's 338, and he was termed a 'genius' by then England captain Andrew Strauss.
Summary:
Apple on Wednesday introduced dual-SIM functionality on its smartphones for the first time.
Summary:
Based on BMW R 1200 GS bike, the concept is a test bed for improving rider safety.
Summary:
Congress leader Sanjay Nirupam on Wednesday said, "Since (PM Narendra) Modi is anpad, ganwar (illiterate, uncivilised), it'll be wrong to introduce a film or a book on him in the school curriculum." Nirupam was reacting to reports that schools in Maharashtra have been directed to screen a documentary on PM Modi's childhood.
Summary:
Chinese Consul-General in Kolkata Ma Zhanwu on Wednesday said, "We are looking forward to bullet trains from Kolkata to Kunming.
Summary:
Punishment under it entails up to one-year-jail term, fine up to â¹1,000, or both.n
Summary:
The wife had requested the transfer of family pension in her son's name after remarriage.
Summary:
Finance Minister Arun Jaitley on Wednesday said that Vijay Mallya "uttered the sentence, 'I am making an offer of settlement'," while walking alongside him in Parliament.
Summary:
China's stock market, which gave up its position as the world's second-largest to Japan, is now worth only 5.3 times Apple's $1.08 trillion value.
Summary:
Tiger Shroff has dismissed reports of him putting a no-kissing clause for Student Of The Year 2, calling the reports a rumour.
"Not that I have deliberately done it...but every one of my films has had a kiss.
Summary:
France's FIFA World Cup 2018 winning captain Hugo Lloris has been banned from driving for 20 months alongside a fine of just under â¹47 lakh for driving under the influence of alcohol in London in August.
Summary:
Summary:
Talking about Google missing the testimony on social media earlier this month, US Representative Kevin McCarthy on Wednesday tweeted, "It's time for @Google to answer some ?'s An invite will be on its way." He further accused Google of allegedly working with China and Russia to censor the internet.
Summary:
Melinda Gates, Co-founder of Bill and Melinda Gates Foundation, in a blog post on Wednesday said, "The gender gap in tech was not created by any one company." She also said that the gender gap cannot be solved by any one company either.
Summary:
The Principal of a government-run Tribal Welfare Residential School in Andhra Pradesh's Nellore has been booked after videos and photographs of him brutally hitting the students surfaced online.
Summary:
The Home Ministry is planning to relax the minimum height requirement for people from the Nepalese community residing in India to join the paramilitary forces, Minister of State for Home Affairs Kiren Rijiju has said.
Summary:
Many families who lost members in the Telangana bus accident are using husk and ice to preserve the bodies as they can't afford to hire freezers.
Summary:
Authorities said they believe the driver intentionally drove his vehicle into people with the aim of killing them.
Summary:
A UK court will pronounce the verdict on whether Vijay Mallya will be extradited to India to face fraud and money laundering charges on December 10.
Summary:
Reacting to Vijay Mallya's claims that he met him before fleeing India, Finance Minister Arun Jaitley said Mallya "misused his privilege" as Rajya Sabha MP and met him in Parliament.
Summary:
OnePlus has confirmed the launch of OnePlus 6T while adding that the smartphone will come with a fingerprint sensor embedded under the screen.
Summary:
Filmmaker Vivek Agnihotri, while talking about the criticism he faces, tweeted, "I say 'stone-pelters', they start lynching me.
Summary:
Sadasivan Nair, who injured his eye while helping rescue at least 30 people during Kerala floods, might lose vision in one of his eyes.
Summary:
The driver of the bus that fell into a gorge in Telangana killing at least 57 was conferred the 'best driver award' by the state government last month, officials said.
Summary:
Uttar Pradesh Chief Minister Yogi Adityanath launched five new flight routes in the state on Wednesday.
Summary:
Summary:
A Singapore arbitration court ordered the brothers to pay â¹3,500 crore for concealing important information related to Ranbaxy when Daiichi acquired it in 2008.
Summary:
Vijay Mallya on Wednesday while talking about his decision to leave India, said, "Nobody tipped me off.
Summary:
The rupee rallied the most in 18 months on Wednesday after an official said the government and RBI will do "everything to ensure that rupee does not slide to unreasonable levels".
Summary:
The four payments banks operating in India had total deposits of just under â¹540 crore, which is less than 0.005% of overall bank deposits of â¹115 lakh crore, an RTI query has revealed.
Summary:
CSK's Twitter account shared a photo of the invite, with the caption, "Wishing the Super fan in Vinod Buddy a very happy married life ahead!
Summary:
Romanian football legend Gheorghe Hagi's 19-year-old son Ianis scored directly into the goal's top-left corner from a corner kick in Romania's Under-21 win against Bosnia Under-21.
Summary:
Former Indian hockey team captain Sardar Singh announced his retirement from international hockey after having represented India in over 350 international matches over the course of his 12-year-long career.
Summary:
Google's Street View cars will be equipped with AclimaâÂÂs mobile sensors that will map air quality by producing snapshots of pollutants in the air.
Summary:
Researchers have created an AI-based method to transfer facial expressions and actions of one person onto another in videos.
Summary:
Google is facing legal action over claims that it tracked and recorded users' locations without consent even after location-tracking has been turned off.
Summary:
In a protest against rising fuel prices, several Chhattisgarh Congress MLAs today rode bullock carts to reach the state assembly building.
Summary:
In his first public event in Lucknow after forming the Samajwadi Secular Morcha, Shivpal Yadav said he had launched the new front to protect his "honour" and not to seek any post in the Samajwadi Party (SP).
Summary:
A French company has designed a bottle which will allow tourists to drink fizzy beverages like champagne in zero gravity.
Summary:
A 26-year-old man allegedly committed suicide in his farm in Maharashtra's Aurangabad district over the Maratha reservation issue, said the police on Tuesday.
Summary:
The Cabinet chaired by PM Narendra Modi approved Pradhan Mantri Annadata Aay Sanrakshan Abhiyan (PM-AASHA) to protect income of farmers growing pulses, oilseeds and copra.
Summary:
A 47-year-old man allegedly committed suicide after shooting his 40-year-old estranged wife dead in Nagpur on Tuesday.
They had two children." On the day of the crime, the man missed a hearing in a family court before allegedly killing his estranged wife at his father-in-law's house.
Summary:
A 24-year-old passenger from Dubai was arrested at the Delhi airport for allegedly trying to smuggle nine gold bars worth â¹32 lakh by hiding them in his rectum, the Customs department said on Wednesday.
Summary:
A man's headless and nude body was found near a cremation ground in Delhi on Monday, while his head was found 50 metres away.
Summary:
Two days after a 15-year-old-girl lodged a rape case against a 65-year-old man in Chhattisgarh's Kanker district, a purported video clip of her being thrashed in front of local residents went viral on social media.
Summary:
Rajan also pointed to loss of promoter and banker interest for rise in bad loans.
Summary:
The retail inflation for the month of August dropped to a 10-month-low of 3.69%, government data showed on Wednesday.
Summary:
A fisherman from Kerala, who was seen bending to help women climb a rescue boat during the state floods, has received a new car as a gift from a car dealer.
Summary:
Catholic Bishop of Jalandhar Franco Mulakkal, accused of rape by a Kerala nun, has been summoned to appear before the investigation team in Kerala on September 19.
Summary:
"I left because I had a scheduled meeting in Geneva," said 62-year-old Mallya, who owes over â¹9,000 crore to banks in India.
Summary:
Fugitive liquor baron Vijay Mallya has said he has made a "comprehensive settlement offer" before the Karnataka High Court and hopes "the honourable judges consider it favourably".
Summary:
Sharing a picture of the guest tag given for Toronto International Film Festival 2018 which read 'Husband Material', actor Abhishek Bachchan wrote, "You think it's a good time to tell them I'm already married?" Abhishek's film 'Manmarziyaan' premiered at the film festival with the title 'Husband Material'.
Summary:
Stephen Wacker, a Vice President at Marvel, jokingly said that if Marvel makes any Indian content, Shah Rukh Khan has to be in it.
Summary:
X-Men fame Chinese actress Fan Bingbing has reportedly not been seen in public in over two months.
Summary:
Ex-Ballon d'Or winner and President of Liberia, George Weah, played in an international friendly for his country against Nigeria on Tuesday, 16 years after having retired from international football.
Summary:
Food delivery startup FreshMenu's CEO Rashmi Daga has admitted to a 2016 data breach and said, "I owe every user of FreshMenu a sincere apology".
Summary:
A resident of Karnataka, she left behind a suicide note where she wrote "engineering sucks" and said she wanted to become a teacher.
Summary:
Earthquake tremors were felt within six hours today morning in seven Indian states.
Later at 5.43 am, another 3.1-magnitude earthquake hit Jhajjar in Haryana.
Summary:
UP CM Yogi Adityanath said that nothing happened with girls at Deoria shelter home and it shouldn't be compared to Muzaffarpur shelter home where 34 girls were raped.
Summary:
The hotel, named after the then Madras Governor Lord Connemara, opened in 1854 as "Imperial".
Summary:
In the recently-concluded Test series between India and England, which India lost 1-4, India registered five centuries and three five-fors, while England managed only four centuries and two five-fors.
Summary:
After a journalist asked Virat Kohli if the current Indian team was the best Indian side in last 15 years, the captain said, "We've to believe we're the best side." Kohli then asked the reporter, "What do you think?" to which the latter responded, "I am not sure." "You're not sure?
Summary:
"Ferrari [will]...
Summary:
Reacting to Team India opener Rohit Sharma's Instagram video, wherein he is seen training for the upcoming Asia Cup, spinner Yuzvendra Chahal wrote, "Defence nahi karne ka bhau udaane ka hai @rohitsharma45 bhaiya." Rohit, who is seen practising defensive shots, had captioned the video, "Kit up, pick your bat and focus on the next mission.
Summary:
A team of researchers from MIT has developed an AI system that imitates human reasoning abilities to solve problems with 99.1% accuracy.
Summary:
The European Union (EU) has proposed fining the internet companies including Google, Facebook, and Twitter if they fail to remove extremist content within one hour.
Summary:
Summary:
The Shiv Sena on Wednesday said the Bharat Bandh was not successful in Maharashtra as the Congress did not have its support.
Summary:
Mumbai-based fintech startup Kissht has raised $30 million (nearly â¹217 crore) in its Series C financing round led by Vertex Ventures SEA and Sistema Asia Fund.
Summary:
Amazon has said that it may share its users' payment data with the Indian government and regulators, according to the e-commerce platform's privacy policy.
Summary:
Padma Bhushan awardee and economist VS Vyas passed away in Jaipur on Wednesday at the age of 87.
Summary:
Jammu and Kashmir Chief Secretary B V R Subrahmanyam has said there will be no change in the date of upcoming municipal and panchayat polls in the state.
Summary:
In an apparent attack on US President Donald Trump, Chinese President Xi Jinping has said, "The politics of force, unilateral approaches and protectionism are rearing their head." He added that there are "deep and complex changes underway in the international situation".
Summary:
The Kerala Police said in an affidavit in the nun rape case to the state High Court that their preliminary investigations revealed that the bishop raped the nun multiple times.
Summary:
He said the army was aware that village dogs might bark at them during the operation, but they knew the dogs were scared of leopards.
Summary:
A CCTV footage of the incident shows the policemen sitting together when the prisoner comes from behind and hits them with a pickaxe.
Summary:
Madhya Pradesh Police arrested nine members of a gang last week for allegedly looting and killing 33 truck drivers in various states since 2010.
The mastermind, Aadesh Khambra, a tailor by profession, strangled drivers while others looted trucks.
Summary:
Actor Ali Fazal used a 'Why did the chicken cross the road?' joke while taking dig at rising fuel prices in India.
He tweeted, "Why did the chicken cross the road?
Summary:
Patidar Anamat Andolan Samiti leader Hardik Patel ended his indefinite fast on the 19th day in Gujarat's Ahmedabad on Wednesday.
Summary:
Micro-delivery grocery startup Milkbasket's Co-founder and CEO Anant Goel in an interview said that the subscription-based grocery delivery model will not work in India.
Founded in 2015, Milkbasket delivers grocery and milk daily to consumers' doorstep on a top-up basis.
Summary:
A businessman in Gujarat's Ahmedabad allegedly killed his wife and teenage daughter before committing suicide on Tuesday and left a three-page suicide note, stating he killed them under the influence of "dark forces".
The dark forces made me drink.
Summary:
The Supreme Court on Wednesday extended the house arrest of activists held in connection to Bhima-Koregaon violence and alleged Maoist links till September 17.
Summary:
CBI had alleged Tyagi got â¹323-crore bribe to support the deal.
Summary:
The trade deficit is the amount by which the cost of a country's imports exceeds the value of exports.
Summary:
Pierre and Marie won the 1903 Nobel Prize in Physics for their discovery of radioactive elements radium and polonium.
Summary:
Former RBI Governor Raghuram Rajan has cautioned that the next banking crisis could come from loans given under the Mudra scheme.
Summary:
HDFC Life has appointed Vibha Padalkar as its new Managing Director and CEO for a period of 3 years effective September 12.
Summary:
Real Madrid's 18-year-old Brazilian attacker Vinicius Jr scored with a bicycle kick during a training session with the team.
Summary:
England leg-spinner Adil Rashid's delivery to dismiss India's KL Rahul for 149 during the fifth Test on Tuesday is being compared to Australian legend Shane Warne's 'ball of the century'.
Summary:
Former Arsenal player Nicklas Bendtner has issued an apology after being arrested for breaking a taxi driver's jaw in Copenhagen early on Sunday.
Summary:
The jerseys are in the shades of white and blue, with prints on them.
Summary:
The US Air Force will soon roll out a unique communications device called 'molar mics' that will be implanted on soldiers' back teeth to allow hands-free radio calls.
Summary:
Summary:
Mahindra earlier said it had initiated court proceedings to enforce a design agreement executed with Fiat Chrysler in 2009.
Summary:
Defending SpaceX CEO Elon Musk's interview last week, the company's President Gwynne Shotwell on Tuesday said, âÂÂHe is as lucid and capable as he has ever been." "Elon is a brilliant man,â she added.
Summary:
Founded in 2015, the startup helps users find new travel locations and plan holidays.
Summary:
Researchers have used machine learning to discover 72 new fast radio bursts from an unknown source around 3 billion light years from Earth.
Summary:
Russian President Vladimir Putin has said the two Russians charged by the UK in absentia with the attempted murder of former Russian spy Sergei Skripal and his daughter Yulia have nothing criminal about them.
Summary:
The MPs, some of whom reportedly said they had already submitted letters of no-confidence, are opposed to her Brexit plan.
Summary:
Cadbury owner Mondelez International is stockpiling ingredients, chocolates, and biscuits in Britain to avoid interruptions to business in case of a hard Brexit.
Summary:
A Delhi-based woman who jokingly responded to a matrimonial advertisement which sought a "non-feminist" bride has claimed receiving violent rape threats.
Summary:
It entered into Barahoti in Uttarakhand's Chamoli district, and came as much as four kilometres into the territory.
Summary:
Actor Tiger Shroff, while talking about reports of Hrithik Roshan flirting with Disha Patani, said, "It was a very silly rumour." He added, "Not just Hrithik sir, every star faces that.
Summary:
He further said he was happy Cook was on the field to see his record 564th wicket.
Summary:
An Australian newspaper on Wednesday republished the cartoon of 23-time Grand Slam champion Serena Williams, depicting her outburst in the US Open final, which was condemned by many as "racist" and "sexist".
Summary:
A US travel YouTuber claimed that she faced sexual harassment and was "trapped" at a hotel partnered with OYO Rooms in Delhi's Paharganj.
Summary:
Congress, TDP and CPI on Tuesday announced "Maha Kootami" (grand alliance) to defeat TRS in the ensuing Telangana Assembly elections.
Summary:
Talking about National Register of Citizens (NRC) in Assam during a rally in Rajasthan, BJP President Amit Shah said, "BJP has vowed to not spare even a single Bangladeshi infiltrator.
Summary:
UP CM Yogi Adityanath on Tuesday advised farmers in the state to grow crops other than sugarcane, saying that excessive production of sugar "ultimately leads to diabetes".
Summary:
The inaugural 2+2 dialogue between India and the US was a "defining moment", US Defence Secretary James Mattis has said.
Summary:
A senior police officer has said the bus accident in Telangana on Tuesday, which killed at least 57 people, may have been caused by factors like a dangerous shortcut and the bus being overcrowded.
Summary:
Indian Air Force chief BS Dhanoa during a seminar on Wednesday pointed out that the IAF's strength has come down to 31 squadrons against the sanctioned strength of 42.
Summary:
The falling rupee and increasing fuel prices are likely to give states a gain in tax revenues of around â¹22,700 crore over and above the budget estimates for current fiscal, a SBI Research report claimed.
Summary:
Philippine President Rodrigo Duterte has told soldiers to "stage a mutiny" if they are unhappy with his leadership.
Duterte's remarks came after he voided an amnesty granted to a former Navy officer who was involved in a failed coup attempt, and ordered his arrest.
Summary:
Bhatia, who was 10 when his family moved to the US in 2000, was born in Punjab's Ludhiana.
Summary:
Sri Lankan President Maithripala Sirisena has said that during a recent trip with SriLankan Airlines, he was treated to some cashew nuts which were not even suitable for dogs.
Following this, the airline said it has cleared its stock of cashews, adding that it would change its Dubai-based supplier.
Summary:
President Donald Trump is a "far graver threat to the idea of America" than the 9/11 attackers, MSNBC host Joe Scarborough said on the 17th anniversary of the attack on Tuesday.
Summary:
Personalised invites will reportedly go out to the select guest list.
Summary:
After losing the five-match Test series against England 1-4, India captain Virat Kohli said that it might not show in the scoreline but both the sides know that it's been a competitive series.
Summary:
Amit had won silver at Commonwealth Games earlier this year.
Summary:
The Spanish national football team handed Croatia, the finalists of the 2018 FIFA World Cup, their worst ever defeat in the form of their 0-6 loss in the UEFA Nations League on Tuesday.
Summary:
UFC fighter Conor McGregor has been sued by fellow UFC fighter, Michael Chiesa, over McGregor's bus attack in April that left several people injured.
Summary:
Vokal had initially raised $5 million in the round led by Chinese firm ShunWei Capital.
Summary:
A lawsuit by a car delivery service has claimed that Uber may be saving over $500 million a year and using it to price rides below market rates by misclassifying its California drivers as independent contractors.
Summary:
The US National Cancer Institute has given the Outstanding Investigator Award to Indian-origin Professor Arul Chinnaiyan and $6.5 million in funding over seven years, to identify cancer biomarkers.
Summary:
Russian President Vladimir Putin has said North Korea is taking a lot of steps toward denuclearising the Korean Peninsula but the US is not responding.
Summary:
The Bishop accused of raping a Kerala nun has said the nun made up the rape story to blackmail the church and get a better position.
Summary:
The Kerala nun who has accused a Bishop of rape, wrote in a letter to the Vatican that the Bishop made a case against her as she refused to sleep with him.
Summary:
Chair umpire Carlos Ramos, who was accused of sexism by Serena Williams for giving her three code violations in the US Open final, spoke out for the first time since the final.
Summary:
Congress MP Digvijaya Singh on Tuesday said that if voted to power in Madhya Pradesh, the party will construct the 'Ram Path' in the state that the ruling BJP had promised but failed to fulfil.
Summary:
On September 12, 2001, NASA astronaut Frank Culbertson learned about the 9/11 terrorist attacks aboard the Earth-orbiting International Space Station.
Summary:
Inmates of the Devi Ahilyabai Open Colony are also allowed to go outside for work at 8 am and have to return by 6 pm.
Summary:
At least six labourers were killed and several others were injured in a blast at a chemical factory in Uttar Pradesh's Bijnor on Wednesday.
Summary:
The 37-year-old woman alleged, "On one occasion, after ridiculing my work...
Summary:
The Centre on Tuesday informed the Supreme Court that 12 special courts have been set up across 11 states to exclusively deal with criminal cases registered against MPs and MLAs. While Delhi has two such courts, states like Andhra Pradesh, Telangana, Uttar Pradesh, Bihar, and Maharashtra have one each.
Summary:
However, Trump said, "A country's presence on the foregoing list is not necessarily a reflection of its government's counter narcotics efforts or level of cooperation with the US."
Summary:
The Supreme Court on Tuesday directed Gorakhpur Magistrate to pass appropriate orders "keeping in view the law laid down" in a rioting case allegedly involving Uttar Pradesh CM Yogi Adityanath.
Summary:
The Bishop of the Roman Catholic Diocese of Jalandhar, who is accused of raping a Kerala nun, on Tuesday said that he won't step down until he is found guilty.
Summary:
Former Pakistan PM Nawaz Sharif and his daughter Maryam have been granted parole to attend the funeral of Begum Kulsoom Nawaz.
Summary:
China is installing QR codes on the homes of Uighur Muslims in order to get instant access to the personal details of people living there, according to a Human Rights Watch report.
Summary:
As part of an austerity drive, the Pakistan government will auction eight buffaloes kept by former Prime Minister Nawaz Sharif.
Summary:
Actor Arjun Kapoor, when asked about his favourite actress, tweeted, "It's a toss between Kareena Kapoor Khan and Anushka Sharma." Arjun made the comment during an Ask Me Anything session, which he hosted on Twitter.
Summary:
Actress Taapsee Pannu posted a picture on social media while holding the handwritten letter that she received from Amitabh Bachchan.
A milestone achieved!" Big B had sent letters to Taapsee and Vicky Kaushal, co-stars of his son Abhishek Bachchan in the upcoming film 'Manmarziyaan'.
Summary:
Former Australian fast bowler Glenn McGrath had dismissed England pacer James Anderson to claim his 563rd dismissal on his final-ever delivery of his Test career in January 2007.nAt that time, Anderson had taken only 46 wickets in his career.
Summary:
Former Formula 1 driver Jenson Button has put his McLaren P1 car, driven for nearly 887 km, on sale for over â¹15 crore.
Summary:
Australian all-rounder Glenn Maxwell has revealed he was wearing full Test kit with Baggy Green cap when he received the news of his axing from Australia's squad for Pakistan series.
Summary:
US-based company Simba has developed a pillow 'Simba Hybrid' which responds to users' body heat, thus preventing them from sweating.
Summary:
Facebook has developed an artificial intelligence (AI) system 'Rosetta' which can detect text from over a billion images like memes and videos in real time.
Summary:
Tata Motors' Jaguar Land Rover has warned that a bad Brexit deal could lead to tens of thousands of job losses and cost the company more than $1.6 billion a year.
Summary:
The son of a late California scientist is suing a cryonics firm for $1 million, accusing they wrongly cremated his dad's body and preserved only his head.
Summary:
Russian President Vladimir Putin challenged his Chinese counterpart Xi Jinping to a cooking competition.
Summary:
Air India is utilising only 21 of 27 Boeing 787 Dreamliner aircraft in its fleet for daily operations, according to reports.
Summary:
This is the first time since their 0-4 defeat against Australia in 1991-92 that India have lost four matches in a five-match Test series.
Summary:
Father Franco Mulakkal, bishop of the Diocese of Jalandhar, said that those against the Church are using these sisters to take advantage of the situation.
Summary:
Fashion designer Masaba Gupta has criticised cartoonist Mark Knight for an allegedly racist cartoon depicting tennis player Serena Williams' argument with the umpire during her match with Naomi Osaka.
Summary:
'Band Baaja Baaraat' director Maneesh Sharma has revealed that not many people were in favour of Ranveer Singh being cast in the 2010 film.
Summary:
The Rajinikanth and Akshay Kumar starrer '2.0' has a budget of $75 million (over â¹543 crore) as per an article in American entertainment magazine Variety, which was shared by Akshay and film's director Shankar on social media.
Summary:
The price of petrol crossed the â¹90 per litre mark in Maharashtra on Tuesday, a day after Opposition parties including Congress took part in 'Bharat Bandh' protest against the soaring costs of fuel.
Summary:
The patch, installed like a regular software on a computer, allows operators to add information to the Aadhaar system.
Summary:
This is a matter that should be addressed with urgency," Rajan added.
Summary:
A former Tech Mahindra employee has alleged harassment and discrimination against homosexuals by his then team manager in 2015.
Summary:
'Game of Thrones' actor Kit Harington, while speaking about queer representation in Hollywood films, questioned why an actor who's gay in real life hasn't played a superhero in Marvel films yet.
Summary:
Speaking about starring in the upcoming sequel to Aamir Khan's 'Sarfarosh', John Abraham said, "It's an honour to be stepping into a role that has such a big history." "Aamir is someone I'm deeply fond of, and I'm [his big fan]," he added.
Summary:
Abhishek Bachchan has said his six-year-old daughter Aaradhya doesn't understand that she is from a famous family.
Summary:
England's James Anderson bowled India's Mohammad Shami in the fifth Test on Tuesday to go past former Australian cricketer Glenn McGrath's tally of 563 wickets to become the highest wicket-taking pacer in Test cricket history.
Summary:
Cricketer Yuvraj Singh on Tuesday bought the BMW G 310 R motorcycle that costs â¹2.99 lakh.
Summary:
Dating app Tinder has launched a new feature 'Top Picks' that allows users to find potential matches who fit their particular interests.
Summary:
Earlier, the company had complied with the ruling by delisting search references on request across its European domains.
Summary:
Three Congress workers were arrested after they allegedly blackened a picture of PM Narendra Modi on a hoarding at a petrol pump in MP's Mhow during the Bharat Bandh called by Congress.
Summary:
Summary:
Pune Rural Police released an official statement stating that no fact-finding committee was set up by Maharashtra government in the Bhima-Koregaon case.
Summary:
The Women and Child Development Ministry (WCD) has issued an advisory asking parents to monitor the social media activity of their children to ensure that they are not playing the "dangerous" suicide game 'Momo Challenge'.
Summary:
As many as 4,778 people are housed in 120 flood relief camps across Kerala, authorities said on Tuesday.
Summary:
Summary:
Nepal will take part in a 12-day-long military exercise with China later this month, Nepalese Army spokesperson Brigadier General Gokul Bhandaree said.
Summary:
At least 32 people were killed and 128 others were injured after a suicide bomber blew himself up in Afghanistan's Nangarhar province on Tuesday, Attaullah Khogyani, spokesperson for the Governor of Nangarhar said.
Summary:
Summary:
Jio will reportedly use capacity from Indian Space Research Organisation (ISRO) and satellite technology from Hughes Communications.
Summary:
A matrimonial advertisement from a 37-year-old Mysuru-based industrialist seeking a "non-feminist" bride has gone viral.
Summary:
The woman, who was riding a two-wheeler, fell on the ground in front of the truck after it hit her vehicle.
Summary:
A YouTuber named Tyler Schultz has revealed that he was rejected by his girlfriend after he proposed to her with a hidden message in PS4 Spider-Man game.
Summary:
Arjun Kapoor has criticised a troll who said he looked like a 'molester' in a still from the song 'Tere Liye' from the upcoming film 'Namaste England'.
Summary:
Congress MLA Karan Singh Dalal was suspended from the Haryana assembly for a year after he and Indian National Lok Dal (INLD) leader Abhay Singh Chautala charged at each other with shoes in their hands.
Summary:
"FreshMenu was aware of the incident & elected not to disclose it to customers," he added.
Summary:
Of the total calls made, 1,286 were answered by the 40 operators on duty.
Summary:
India, Afghanistan and Iran on Tuesday held the first-ever trilateral meeting at the Deputy Foreign Minister level in Kabul.
Summary:
Two teenagers, who were live-streaming on Facebook while riding a bike, were hit by a truck from behind in West Bengal's Shamsherganj, killing one and critically injuring the other.
Summary:
Actor Vicky Kaushal took to Twitter to share a picture of a hand-written letter sent to him by Amitabh Bachchan, praising his performance in the upcoming film 'Manmarziyaan'.
'Manmarziyaan' also stars Amitabh's son Abhishek Bachchan.
Summary:
Indian wicketkeeper Rishabh Pant hit sixes off England's Adil Rashid to score his maiden runs in Test cricket and his maiden ton in Test cricket in the ongoing Test series against England.
Summary:
Indian batsman KL Rahul fell short of his maiden Test double century in 2016 and his maiden 150 in England on Tuesday after England's Adil Rashid dismissed him both times.
Summary:
[W]e need foreign coaches." Vinesh added that India needs foreign coaches who can plan each day and discuss every aspect of the game like speed, stamina and strength besides technique.
Summary:
Indian pacer Jhulan Goswami became the first bowler in women's cricket to pick 300 international wickets after reaching the landmark figure in India's nine-wicket win over Sri Lanka on Tuesday.
Summary:
A few tennis umpires are reportedly considering boycotting American tennis player Serena Williams' matches in the future, following her outburst against umpire Carlos Ramos in the final of the US Open 2018.
Summary:
Serbia's Novak Djokovic and Hollywood actor Gerard Butler yelled the war cry, "This is Sparta," from the actor's 2007 movie '300', after the former won his third US Open title on Sunday.
Summary:
After BJP President Amit Shah claimed the party will rule for 50 years, Congress MLA Randeep Surjewala termed the claim as "Mungerilal Ke Haseen Sapne", referencing a TV serial wherein the main character would daydream.
Summary:
Election Commission on Tuesday sent a show-cause notice to Aam Aadmi Party (AAP) in connection with alleged discrepancies in donations it received during Financial Year 2014-15.
Summary:
US-based e-cigarette maker JUUL Labs has filed trademark claims against 30 entities in China for selling its copied products.
Summary:
Summary:
Aam Aadmi Party leader Sanjay Singh on Tuesday alleged that his vehicle was attacked by unknown assailants in Madhya PradeshâÂÂs Chhindwara district.
Summary:
SpiceJet, which would be the first scheduled airline to start dedicated air cargo services in India, has inducted a Boeing 737-700 plane as the first freighter aircraft.
Summary:
Besides displaying the cartoon character's picture, the website's homepage was also hacked to play the title track of the Japanese cartoon.
Summary:
The girl's 25-year-old mother left her husband a few years ago and was living with another man, who didn't want the child.
Summary:
A student in Canada, Carlos Zetina, e-mailed 246 women named 'Nicole' to find a girl he met at a bar but gave him her wrong number.
Summary:
Khandwal, who has been working with the traffic police for four years, says he created his own moves through experience and practice.
Summary:
Kubbra Sait, who portrayed 'Cuckoo' in 'Sacred Games', has said she never went to audition for 'bold bikini roles'.
Summary:
Vivek Agnihotri has responded to Swara Bhasker after she got his Twitter account locked over a tweet on a Kerala nun who was allegedly raped.
Vivek was forced to delete his previous tweet after Twitter took action against him.
Summary:
Pant is the first Indian keeper to hit a century in England.
Summary:
Tesla paid the hackers â¹7.2 lakh in bounty for finding the vulnerability and said the issue has been fixed.
Summary:
The Uttar Pradesh government has sanctioned the purchase of 900 LED TVs which will be installed across 64 jails in the state.
Summary:
Amer Sports, the Finland-based maker of Wilson tennis rackets and Salomon hiking boots, has received a $5.4-billion takeover offer from a consortium backed by its Chinese rival Anta Sports.
Summary:
Broad had been struck in the ribs by a ball by Jasprit Bumrah in the fifth Test's first innings.
Summary:
Real Madrid player Marcelo has admitted to tax fraud and accepted a four-month suspended jail sentence in Spain.
Summary:
Real Madrid's current President Florentino Perez said that Spanish tennis player Rafael Nadal would be a great election for Real Madrid's presidency.
Summary:
A federation for trade unions in the UK, Trades Union Congress (TUC), demanded working week to be cut down to four days as technology is making jobs more efficient.
Summary:
Singh said, "UP is a big state...Its population is as much as that of any big country.
Summary:
BJP spokesperson Sambit Patra has claimed the Gandhi family is "looting" India, adding, "Gandhi family today is known as...
Summary:
Summary:
WeWork "is a network of workspaces where companies and people grow together," he further said.
Summary:
US-based energy startup AutoGrid, which also has an office in Bengaluru, has raised $32 million in a Series D round of funding.
Summary:
The firm, which officially began accepting investment for the fund on September 3, has raised capital from 19 limited partners, as per filings.
Summary:
A 32-year-old Jammu and Kashmir policeman was arrested from Srinagar for allegedly raping a woman for two years on the pretext of marriage, the Delhi Police has said.
Summary:
Earlier in August, Gadkari had said that most of the 221 projects under Namami Gange Programme worth over â¹22,000 crore are nearing completion.
Summary:
The district has registered 100% physical achievement in Swachh Bharat Mission - Gramin.
Summary:
The US has told Pakistan that the nature and quality of bilateral relations will depend upon Pakistan's action against terrorist groups operating from its soil.
Summary:
The UN Security Council (UNSC) on Monday held its first-ever meeting on corruption and its linkages to global conflicts.
Summary:
Despite the lower purchases, Iran remained the third biggest oil supplier to India during the month.
Summary:
Billionaire Lakshmi Mittal-led world's largest steelmaker ArcelorMittal has reportedly raised its bid to acquire Essar Steel to â¹42,000 crore from its earlier â¹34,000 crore.
Summary:
OnePlus has announced its customers will get premium offline experiences - "OnePlus Coffee Experience" available at the company's Experience Stores and Exclusive Service Centres.
Summary:
The brother of the Kerala rape survivor nun has claimed they were offered â¹5 crore and 10 acres of land to withdraw the case against the Bishop.
Summary:
One of the two thieves who stole a two-kilogram gold tiffin box and other artefacts from Nizam's Museum in Hyderabad, ate food from the tiffin every day, the police said.
Summary:
Investors' wealth, measured in terms of all BSE-listed companies' market value, fell by â¹4.15 trillion in two days as Indian equity benchmark Sensex fell nearly 1,000 points.
Summary:
BJP leader Smriti Irani on Tuesday took a dig at Congress President Rahul Gandhi, asking why he's quick to hug PM Narendra Modi but runs miles away from an Income Tax officer.
Summary:
The officers who don't clear the test in the second attempt will be debarred from discharging election duties.
Summary:
The police have arrested a man, who was absconding for 20 years, in connection with the 1998 serial bomb blasts in Coimbatore.
Summary:
Adding that all the stolen items have been recovered, the police stated that 15 special teams were formed to probe the theft.
Summary:
Nearly 20 heavily-armed men stormed into a maximum security prison in Brazil on Monday and enabled 92 inmates to escape, authorities said.
Summary:
Protests have erupted in Pakistan occupied Kashmir (PoK) against the exploitation of water resources by Pakistan.
Summary:
Former Pakistan PM Nawaz Sharif's wife, Begum Kulsoom Nawaz, passed away in London on Tuesday at the age of 68 after a prolonged illness.
Summary:
Mouni Roy's upcoming films 'Brahmastra' and 'Made In China' will release on the same day as both the films are scheduled to release on August 15, 2019.
Summary:
Shilpa Shetty Kundra-backed baby care products startup Mamaearth has raised â¹29 crore in a Series A round led by Stellaris Venture Partners and existing investor Fireside Ventures.
Summary:
Summary:
It's extremely sensitive to portray someone who is visually impaired," he said.
Ayushmann further said, "It was tough and rigorous and needed all the attention in the world."
Summary:
'Festember', the annual fest of NIT Trichy, is scheduled to take place from 13 to 16 September, with this year's theme being 'An Arabian OdysseyâÂÂ.
Summary:
Indian opener KL Rahul became the first Indian in 39 years to hit a century in the fourth innings of a Test match being held in England, after going past the landmark figure on Tuesday.
Summary:
Shreyas Goyal, a nine-year-old India-born chess prodigy, got the United Kingdom to tweak its visa rules to allow him and his family to extend their stay in UK.
Summary:
Snap, the parent company of Snapchat, on Tuesday, said its Chief Strategy Officer Imran Khan will step down on an undetermined date to "pursue other opportunities".
Summary:
China has ordered the suspension of carpool services offered by ride-hailing firms after two Didi Chuxing passengers were murdered earlier this year.
Summary:
A minor girl immolated herself two days after she was allegedly raped in Aligarh, Uttar Pradesh.
Her father said, "She went outside the house to defecate when two men took her away and raped her.
Summary:
Urging the government and courts to hang the convicts in the 2012 Nirbhaya rape and murder case, the mother of the victim said crime rates are escalating due to the delay in justice.
Summary:
After a state-owned bus carrying pilgrims fell into a gorge in the hills of Telangana's Jagtial district claiming over 50 lives, PM Narendra Modi tweeted that the accident is shocking beyond words.
"Anguished by the loss of lives.
Summary:
A 4000-year-old Egyptian tomb that was discovered in 1940 has been opened to the public.
Summary:
Following threats by the US, the International Criminal Court (ICC) has said it will continue to investigate war crimes "undeterred".
Summary:
The White House has said it is not considering lie detector test to identify the senior official who wrote an anonymous New York Times op-ed about an alleged resistance within President Donald Trump's administration.
Summary:
As many as 45 people died and several others were injured after a state-owned bus carrying pilgrims fell into a gorge in the hills of Telangana's Jagtial district today morning.
Summary:
An Indian man in UAE has been charged with stabbing his roommate to death for talking loudly on the phone.
Summary:
Choksi further said there was "no question of surrendering his passport" as it had been revoked.
Summary:
'Panga' director Ashwiny Iyer Tiwari has denied reports which said she'll make actress Kangana Ranaut sign a no interference contract before the shoot begins.
Summary:
Summary:
In another clip, the party workers could be seen raising 'Narendra Modi Zindabad' slogan by mistake.
Summary:
Self-styled godman Asaram, who was convicted in April for raping a minor girl, has sent a mercy plea to the Governor of Rajasthan seeking dilution of his life sentence.
Summary:
In her letter to a representative of the Pope, she alleged the Bishop's "political and economic power" were preventing his arrest and accused the Church of protecting him.
Summary:
He further said that although India has been taking advantage of the US for "many decades", he is still friends with India.
Summary:
It is the only circle with over 90% 4G availability, and is followed by Punjab (89.8%), Bihar (89.2%), Madhya Pradesh (89.1%) and Odisha (89%).
Summary:
West Bengal CM Mamata Banerjee has announced that â¹28 crore will be given to Durga Puja organisers as a "gift" aimed at "community development".
Summary:
The act criminalises any kind of discrimination against people suffering from AIDS in terms of treatment, employment and workplace.
Summary:
A 17-year-old girl allegedly committed suicide in Maharashtra, leaving behind a note in which she demanded reservation for Maratha community.
Summary:
The Bihar Police has filed an FIR against 150 people in connection with the death of a 24-year-old man who was lynched last week on allegations that he stole money from a van driver.
Summary:
Bombay High Court on Monday refused a girl, who was raped at the age of 17, to terminate her 27-week-long pregnancy after doctors stated that the abortion posed a threat to her life.
Summary:
Former RBI Governor Raghuram Rajan has blamed over-optimistic bankers, growth slowdown, and slow decision-making by governments for bad loan crisis.
He added that a larger number of bad loans originated between 2006 and 2008 when economic growth was strong.
Summary:
Paris Hilton walked the ramp along with her dog named Diamond Baby at New York Fashion Week dressed as a Disney villain.
Summary:
The release date of Hrithik Roshan, Tiger Shroff and Vaani Kapoor's upcoming film has been announced as October 2, 2019.
We have time for the release of the film.
Summary:
'Backstreet Boys' band member Nick Carter, whose wife Lauren Kitt Carter suffered a miscarriage, took to his social media and wrote, "God give us peace during this time.
Summary:
Mohammed Shami said that he learned bowling in English conditions by watching videos of English fast bowlers, James Anderson and Stuart Broad.
Summary:
Djokovic, who clinched his third US Open title, also posed with his US Open trophy inside the American Museum of Natural History in the city.
Summary:
Google, however, sought time till the end of December to comply with the regulation, reports said.
Summary:
Ant Financial holds 20-22% stake in Zomato, whereas Info Edge holds about 31% stake.
Summary:
Union Minister of State for Social Justice and Empowerment Ramdas Athawale said the use of term 'Dalit' should be continued.
Summary:
China will send 3,200 troops and 30 aircraft to take part in the exercise as part of an effort to deepen military cooperation.
Summary:
A guide dog named Roselle led her blind owner Michael Hingson down 78 storeys of the World Trade Centre's North Tower during the 9/11 attack.
Summary:
Author JK Rowling has condemned an Australian newspaper's cartoonist's depiction of Serena Williams "throwing a tantrum" during US Open final.
I think people've just misinterpreted," the cartoonist said.
Summary:
They should be given 15% reservation." "The BJP can never have an anti-upper-caste perception.
Upper castes are the backbone of the BJP.
Summary:
A former MLA and Congress leader T Jayaprakash Reddy alias Jagga Reddy has been arrested by Hyderabad police on charges of alleged human trafficking and forging fake passports.
Summary:
However, police found out that he gave the money to his friend.
Summary:
The mother of the 2012 Nirbhaya rape and murder victim has appealed to the government and court to complete all procedures and hang the convicts soon.
Summary:
The speeding bus ran over them, killing all three on the spot.n
Summary:
Summary:
Observing that six years have passed since the Nirbhaya rape and murder case that "shook the country", Delhi Commission for Women has issued a notice to Tihar jail questioning the delay in the convicts' execution.
Summary:
US President Donald Trump has said that despite his tough stance on trade, India called and said it wants a trade deal with the country.
But India wants the deal soon," Trump added.
Summary:
Shaikh stabbed Sanghvi and slit his throat after he refused to give money.
Summary:
The third project is the additional 500MW power supply from India to Bangladesh via Bheramara-Baharampur interconnection.
Summary:
Slamming Watergate reporter Bob Woodward's book 'Fear: Trump in the White House' as "fiction", US President Donald Trump has said he will write a "real book" on his administration.
Summary:
Summary:
Summary:
Actor Abhishek Bachchan has said that his experience of working with filmmaker Anurag Kashyap was magical, adding, "At first, I was like, 'Kaun ho bhai tum, Anurag kahaan hai'." The actor further said, "You think that he will be this dark, brooding, intense person, who would be sitting alone.
Summary:
The trailer of Ayushmann Khurrana and Sanya Malhotra starrer 'Badhaai Ho' has been released.
Summary:
Summary:
Cook had cut a Ravindra Jadeja delivery to get to 97* before Bumrah threw the ball hard at stumps, resulting in four overthrows.
Summary:
BCCI paid India head coach Ravi Shastri â¹2 crore as advance fees for coaching services for the period from July 18 to October 17, the board's monthly list of payments revealed.
Summary:
Italy's 22-year-old motorcycle racer Romano Fenati has apologised for his "impulsive" behaviour after being sacked by his team for pulling on his rival Stefano Manzi's brake lever while riding at a speed of 225 kmph during a race.
Summary:
Explaining why she apologised to fans after beating Serena Williams in US Open final, Naomi Osaka said, "I just felt like everyone was...unhappy...and I knew it wasn't the ending that everyone wanted it to be." "I'm sorry it had to end like this.
Summary:
To avenge being beaten up, the accused got acid and threw it on them.
Summary:
The parents were protesting to show their dissatisfaction over the investigation in the matter and demanded CBI probe.
Summary:
It observed the victims' right to life was violated due to negligence of concerned authority and contractor.
Summary:
In her first address to UN Human Rights Council, new High Commissioner for Human Rights Michelle Bachelet has criticised India for failing to take any action after the UN report on alleged human rights violation in Kashmir.
Summary:
Iran Foreign Minister Javad Zarif has said that President Donald Trump destroys US credibility while Iran is working toward a political solution in Syria.
Summary:
It promises to match & pay double the difference if you find a lower price for a similar holiday.
Summary:
The appointment got cancelled as the SC said in 2017 that the judge hearing this case shall not be transferred.
Summary:
Bourdain won Outstanding Writing For A Nonfiction Program award.
Summary:
Filmmaker Vivek Agnihotri was forced to delete a tweet in which he took a dig at actress Swara Bhasker for slamming an MLA's remark on a Kerala nun who was allegedly raped.
Summary:
Cricket journalists from England gifted retiring ex-England captain Alastair Cook 33 beer bottles, one for each of his Test century, during a press conference on Monday.
Summary:
The BJP shared two graphs on Twitter showing 'Truth of Hike in Petroleum Prices' that depict the percentage of increase in petrol and diesel prices separately over the years.
Summary:
BJP General Secretary Ram Madhav on Monday said that people excluded from the final list of Assam-specific National Register of Citizens (NRC) will be deported.
Summary:
RJD Chief and former Bihar CM Lalu Prasad Yadav is suffering from depression, director of Rajendra Institute of Medical Sciences (RIMS) said on Monday.
Summary:
Rajasthan Minister Raj Kumar Rinwa has said people should reduce other expenses in the wake of continuous hike in crude oil prices.
Summary:
Bihar's Jehanabad DM Alok Ghosh has said there's no correlation between the death of the two-year-old girl with Bharat Bandh protests in the area.
The girl died on the way to the hospital as roads were reportedly blocked due to protests.
Summary:
The mid-air refuelling of 'wet contact' trial for Tejas aircraft was conducted successfully by Indian Air Force at an altitude of 20,000 feet.
Summary:
A man smashed his car through the security barriers and reached the runway of France's Lyon airport on Monday before being arrested.
Summary:
An unnamed Saudi princess has reported a theft of jewels worth â¬800,000 (over â¹6.7 crore) from her suite at the luxury Ritz hotel in Paris.
Summary:
Informing Tanzanians about the "side-effects of birth control", Magufuli claimed several countries were struggling with a declining population growth.
Summary:
He further said the US response could include sanctions against ICC judges.
Summary:
US President Donald Trump has received a letter from North Korean leader Kim Jong-un asking for a second meeting, White House Press Secretary Sarah Sanders said on Monday.
Summary:
Bradman had scored 185 in his first-ever Test innings against India when Amarnath dismissed him.
Summary:
Karan Johar, on being asked whether he'll make the sequel of his 1998 film 'Kuch Kuch Hota Hai', said, "If I made 'Kuch Kuch Hota Hai' 2, I would cast Ranbir Kapoor, Alia Bhatt and Janhvi Kapoor." The 1998 film had Shah Rukh Khan, Kajol and Rani Mukerji in the lead roles.
Summary:
Twinkle Khanna revealed it's "one of her fantasies" to be a stand-up comic, adding, "My husband (Akshay Kumar) has told me...to never go back to acting and not to...do stand-up comedy, because I'm terrible at both." She further said she practices stand-up comedy in front of the mirror.
Summary:
Rani worked with Aamir in films like 'Ghulam' and 'Talaash'.
Summary:
Reaction of record 21-time Oscar nominee Meryl Streep to a Juan MartÃÂn del Potro point against Novak Djokovic during US Open final has gone viral.
Summary:
"Mr Ramos' decisions...were re-affirmed by US Open's decision to fine Serena for the three offences," it added.
Summary:
Former Victoria's Secret model Lyndsey Scott who knows how to code has slammed trolls in a post for questioning her programming abilities.
Summary:
Talking about using open source for their work on WebKit and Safari, Apple's former software engineer Ken Kocienda has said, "We stood on the shoulders of giants as they say." He further said that their team was small partly because they "relied on open source".
Summary:
Prior to joining Uber, Messina was Global Chief Marketing Officer at US-based beverage company Beam Suntory.
Summary:
A 21-year-old girl in Gwalior shot herself while playing Russian roulette with her father's revolver when she was on a video call on WhatsApp with her friend in Delhi.
Summary:
A court on Monday discharged Delhi Chief Minister Arvind Kejriwal in a defamation case over his alleged 'thulla' remark against the police.
Summary:
The Mumbai Police on Monday said that 20-year-old cab driver Sarfaraz Shaikh allegedly killed 39-year-old HDFC Bank Vice President Siddharth Sanghvi for around â¹35,000.
Summary:
A 32-year-old lawyer was arrested by the Delhi Police last week for allegedly sexually harassing a woman journalist inside the Supreme Court premises.
Summary:
Priyanka Chopra and her fiancé Nick Jonas have been clicked by Alexi Lubomirski, the same photographer who took official photographs of Prince Harry and actress Meghan Markle for their engagement and wedding.
Summary:
Filmmaker Karan Johar, when asked to comment on Priyanka Chopra being 10 years older than her fiancé Nick Jonas, said, "Who made these rules that the man should be older?" "Relationship should not be about it.
Summary:
Anurag Kashyap has said he is not on talking terms with his business partner, filmmaker Vikas Bahl after he was accused of sexual harassment by a female employee who worked at their production company 'Phantom Films'.
Summary:
Chinese e-commerce giant Alibaba's billionaire Co-founder Jack Ma, who announced his succession plans on his 54th birthday on Monday, had once said, "Intelligent people need a fool to lead them." "When the team's all a bunch of scientists, it is best to have a peasant lead the way," he had said.
Summary:
The order came while hearing their plea against the March Income Tax notice seeking tax reassessment.
Summary:
The nun who was found dead in a well in Kerala died due to drowning, as per the post-mortem report.
Earlier, reports stated there were blood stains near the well and in the nun's room.nn
Summary:
Rita Jetinder, an 86-year-old educationist and writer from Jammu and Kashmir, collapsed and later died during a talk show being telecasted live on regional Doordarshan TV on Monday.
Summary:
In a video which has surfaced online, a DMK member, along with his friend can be seen thrashing a mobile phone repair shopkeeper in Tamil Nadu's Tiruvannamalai.
Summary:
The Enforcement Directorate has charged Purvi Modi with playing a major role in the scam and being a beneficiary of the scam to the tune of â¹950 crore.
Summary:
As part of the Bharat Bandh which was held on Monday, JD(S) MLC TA Saravana rode a horse in Bengaluru to protest against the rising fuel prices in the country.
Summary:
Andhra Pradesh CM Chandrababu Naidu on Monday announced a reduction in value-added tax (VAT) on the price of petrol and diesel by â¹2 per litre in the state.
Summary:
American media giant CBS Corp's 68-year-old Chairman and CEO Leslie Moonves resigned with immediate effect on Sunday amid allegations against him of sexual assault and harassment.
Summary:
Abhishek Bachchan, while talking about criticism from the audience, said, "I'm okay with getting harsh comments if they don't like my performance." "They're spending money to watch my films and they've every right to be harsh.
Summary:
Comedian Bharti Singh, who will be seen on Bigg Boss 12 with her husband Haarsh Limbachiyaa, has jokingly said the couple might plan their baby on the show.
Bigg Boss 12 will feature contestants in pairs.
Summary:
India debutant Hanuma Vihari took his first-ever international wicket by dismissing captain Joe Root for 125(190) on the first ball of England's 95th over in the fifth Test on Monday.
Summary:
Earlier, Alastair Cook recorded 147 runs in his last-ever Test innings.
Summary:
Elon Musk-led space exploration startup SpaceX launched a heavy communications satellite to the orbit on Monday, completing its 16th Falcon 9 rocket launch this year.
Summary:
Mercedes-Benz parent Daimler has unveiled its autonomous electric car concept called Vision URBANETIC that can switch between a passenger and a cargo vehicle.
Summary:
Talking about Tesla's reluctance to allow workers to unionise for improving working conditions, a current Tesla employee said that the automaker "shouldn't start on the broken backs of workers".
Summary:
Mumbai-based online shopping startup Naaptol has raised $15 million (nearly â¹109 crore) in a funding round from existing investors including Japanese conglomerate Mitsui & Co and US-based New Enterprise Associates.
Summary:
A class 9 student of a Madurai school allegedly committed suicide by hanging himself after being scolded for sending a prank message, police said.
Summary:
China and Pakistan have decided to extend the China-Pakistan Economic Corridor (CPEC) project towards Afghanistan, the Chinese Foreign Ministry has said.
Summary:
The UN has said that a large-scale military action in the Syrian province of Idlib could spark "the worst humanitarian catastrophe with the biggest loss of life in the 21st century".
Summary:
Germany on Monday said that it is discussing possible plans to join the US-led military coalition in Syria.
Summary:
Saudi accused the Egyptian, who worked at a hotel, of committing several violations and working in a profession exclusively reserved for Saudis.
Summary:
Eleven years after the twin bombings in Hyderabad at Gokul Chat and Lumbini Park, a Special NIA Court on Monday sentenced two accused, Aneeq Sayeed and Ismail Chaudhary, to death.
Summary:
We loved openly even when the law tried to stop us.
The only difference now is that we can share our love with the world."
Summary:
The 33-year-old, who is retiring from international cricket after the ongoing Test, had slammed hundred in his first-ever Test, against India at Nagpur in 2006.
Summary:
He also surpassed Kumar Sangakkara to become Test cricket's fifth-highest run-scorer.
Summary:
The local officials stated the responsibility of providing lunch lied with BCCI.
Summary:
Earlier, Pichai met Union IT Minister Ravi Shankar Prasad in California.
Summary:
National Conference Vice President Omar Abdullah has denied the possibility of an alliance with BJP for forming a government in Jammu & Kashmir and called reports of supporting a BJP chief minister "fake news".
Summary:
The initial findings in the postmortem examination of the 54-year-old nun who was found dead in a well in Kerala revealed nothing unusual and it could be a case of suicide, police said.
Summary:
PNB scam-accused Mehul Choksi on Monday said he is not returning to India as his assets have been seized and asked, "How will I afford a lawyer?" "Does the government expect that I should defend myself by my own in court?" he said.
Summary:
A Japanese man suspected of killing people he met on Twitter, has been charged with nine counts of murder.
Summary:
Five months pregnant model Lily Aldridge, aged 32, walked the ramp at the New York Fashion Week on Saturday.
Summary:
Actress Shweta Tiwari has said her daughter Palak was offered the reboot of 'Kasautii Zindagi Kay' by an employee at Balaji Telefilms and not Ekta Kapoor.
Summary:
"Ahil's first painting on canvas escapade with Mamu," Arpita captioned the video.
Summary:
Sharing her picture with Ranbir Kapoor and Ayan Mukerji, Alia Bhatt captioned it, "It means no worries, for the rest of your days...hakuna matata." In the picture, Ayan and Ranbir can be seen holding balloons in their hands while Alia can be seen looking at Ranbir and talking.
Summary:
Also starring Digangana Suryavanshi, the film is scheduled to release on October 12.
Sharing the trailer of the film, Bhatt wrote, "Some love stories go beyond '...and they lived happily ever after'."
Summary:
This comes after India lost both their reviews within 12 overs of England's second innings in the ongoing Test.
Summary:
As many as 200 students of Thiruvananthapuram schools prepared notes for Class X students of two schools in flood-hit Kuttanad district of Kerala.
The authorities identified schools where students had lost their study materials due to floods.
Summary:
The 22-year-old turned professional tennis player in 2010 and took a break from tennis in 2014, and played cricket.
Summary:
Former world number one female tennis player Margaret Court, who holds the all-time record of 24 Grand Slam titles, has said Serena Williams tried to become bigger than the rules during the US Open 2018 final.
Summary:
Eliza Khuner, a former employee of Facebook, has said that the company should allow new mothers to have flexible work hours so they are not forced to leave their jobs.
Summary:
Summary:
Further, the aircraft offers a range of 150 km and a top speed of 300 kmph.
Summary:
Claiming that crimes have increased "alarmingly" in Bihar, Leader of Opposition and RJD leader Tejashwi Yadav has asked if CM Nitish Kumar joined hands with the BJP to "terrorise" people in the state.
Summary:
Mumbai-based parenting startup BabyChakra has raised an undisclosed amount of funding from investors including Facebook director Anand Chandrasekaran and Apple's senior director Eitan Toledo.
Summary:
The Spix's Macaw, the bird which inspired the animated movie 'Rio', has become extinct in the wild, according to a study by BirdLife International.
Summary:
Addressing the concluding session of World Hindu Congress in the US, Vice President Venkaiah Naidu on Sunday claimed that some people are trying to make the word 'Hindu' "intolerable" and "untouchable".
Summary:
Amid growing tensions between the two countries, the US has decided to close the Palestinian mission in Washington, Palestine Liberation Organisation secretary-general Saeb Erekat has said.
Summary:
Priyanka Chopra's fiancé Nick Jonas, while talking about how they started dating, said, "I think we just knew it was right and jumped right in, and we're very happy." He also revealed they started dating about five months ago, although they knew each other as friends before.
Summary:
Sound designer Shajith Koyeri, who worked in Aamir Khan's 'Dangal', has denied reports that he was shifted to Kokilaben Dhirubhai Ambani Hospital after Leelavati Hospital neglected his treatment.
Reports had said Aamir helped Shajith seek treatment following the hospital's negligence.
Summary:
Italy's 22-year-old motorcycle racer Romano Fenati pulled on Stefano Manzi's brake lever while riding at a speed of 225 kmph during the San Marino and Rimini Coast's Moto2 Grand Prix on Sunday.
Summary:
BJP leader Ravi Shankar Prasad has said a two-year-old child in an ambulance died after getting stuck in Bharat Bandh protests in Bihar's Jehanabad, asking, "Who is responsible?" "Everyone has a right to protest but what is happening today?" he added.
Summary:
Summary:
In a letter to employees on his 54th birthday announcing his succession plans, Alibaba's billionaire Co-founder Jack Ma said, "Alibaba was never about Jack Ma, but Jack Ma will forever belong to Alibaba".
Summary:
An FIR has been filed against self-styled godman Ashu Bhai Guruji and his son for allegedly raping a woman and her minor daughter.
Summary:
a tall, bearded man...pulled out a pistol and shot my brother in the chest," said the victim's brother.
Summary:
Union Minister Ravi Shankar Prasad on Monday said that there is no role of government in fuel price hike and it is due to external factors.
Summary:
Between January and June 2018, 9,222 cases of thefts were registered and 1,378 people were arrested, the data further revealed.
Summary:
The Bombay High Court on Monday rejected a plea challenging the discharge of five policemen from Gujarat and Rajasthan in connection with the encounter of Sohrabuddin Sheikh and his wife Kausar Bi. The court called the petition challenging a lower court order "devoid of merit".
Summary:
US VP Mike Pence has said he would take a lie detector test "in a heartbeat" to prove he hasn't authored the New York Times column which highlighted a "resistance" within President Donald Trump's administration.
Summary:
Khan added that Pakistan was burdening its future generations by borrowing money to pay interest on its loans.
Summary:
A former Infosys employee who was working in the US, Anuj Kapoor, has sued the company alleging it made him work over 1,000 hours of overtime without pay.
Summary:
The NSE benchmark index Nifty declined 151 points to settle at 11,438.
Summary:
Summary:
Vishal Bhardwaj, while talking about Irrfan Khan who's currently undergoing treatment for Neuroendocrine Tumour in London, said, "No matter which film Irrfan chooses to return with, I'll be happy to have him back.
Summary:
Shahid Kapoor, while talking about his half-brother Ishaan Khatter, said, "Ishaan has seen me make mistakes and I hope he has learnt from them." Shahid added that he feels Ishaan is destined to be in films.
Summary:
Novak Djokovic, who won his 14th Grand Slam title on Sunday, said he would not have been the player he is if not for matches with Roger Federer and Rafael Nadal.
Summary:
Talking about the Bharat Bandh called by Congress-led Opposition, BJP leader and Union Minister Mukhtar Abbas Naqvi on Monday said Bharat will not be bandh and will keep moving and progressing.
Summary:
The Supreme Court will resume the hearing on validity of Article 35A after the elections.
Summary:
Chinese internet giant Alibaba's Co-founder Jack Ma once said that he raised initial funding for Alibaba from its 17 other co-founders in 1999.
Summary:
A married woman from Mumbai has been arrested after allegedly trying to kidnap a 21-year-old girl from her house in Indore claiming she was her "life partner from previous birth".
Summary:
The plea also seeks a court-monitored probe in the case.
Summary:
The coins were found in a stone urn in the Cressoni theatre basement in the city of Como.
Summary:
At least 37 Afghan security officials have been killed after the Taliban launched multiple attacks in the northern part of the country, officials said.
Summary:
Pakistan's PM Imran Khan has said that the friendship with China is a cornerstone of Pakistan's foreign policy.
Summary:
Former world number one Novak Djokovic defeated world number three Juan MartÃÂn del Potro 6-3, 7-6(7-4), 6-3 to clinch his third US Open title and overall 14th Grand Slam title.
Summary:
Chelsi Smith, who was crowned Miss Universe 1995 by 1994 title holder Sushmita Sen, passed away on Saturday aged 45 due to prolonged illness.
Chelsi represented USA at Miss Universe pageant.
Summary:
India's first openly transgender bureaucrat Aishwarya Rituparna Pradhan said that her boyfriend wanted to get married for over a year but she put off the decision only due to Section 377.
Summary:
Serena had called Ramos a 'thief' during the match.
Summary:
Several incidents of violence were reported from Mumbai, Patna and Gujarat during Bharat Bandh called by Congress-led Opposition to protest against the rise in fuel prices.
Summary:
Congress President Rahul Gandhi on Monday offered holy water from Lake Mansarovar at Raj Ghat before starting the march towards the Ramlila Maidan to lead 'Bharat Bandh' to protest rising petrol and diesel prices.This was Gandhi's first public appearance since he returned from the Kailash Mansarovar yatra.
Summary:
Chinese billionaire and Alibaba Co-founder Jack Ma today announced he will step down as the company's Executive Chairman on his 55th birthday on September 10, 2019.
Summary:
The Delhi government on Monday started its 'doorstep delivery of services' programme which will cover 40 government services including driving license, new water connection and ration card.
Summary:
In his first media interview since the PNB scam surfaced, absconding diamantaire Mehul Choksi has claimed he's being considered a "soft target" since the Indian government is finding it impossible to extradite other wanted persons.
Summary:
Delhi government started its 'doorstep delivery of services' programme to make 40 government services including driving license, new water connection and ration card available at residents' doorstep in the first phase.
Summary:
Sanghvi's car was found on September 6 with blood stains on a seat.
Summary:
Former US President Barack Obama has revealed that he was kicked out of Disneyland for smoking a cigarette during a ride as a teenager.
Summary:
Iran has completed a facility to build advanced centrifuges, the country's nuclear chief Ali Akbar Salehi has said.
Summary:
Police have detained the man, who carried out the attack at two different locations, and reportedly said there was no initial indication that the attack was linked to terrorism.
Summary:
"It is more than a new subway station," New York City's Metropolitan Transportation Authority said.
Summary:
The first-ever double century in ODI cricket was scored by former Australian woman cricketer Belinda Clark, who turns 48 today, against Denmark in 1997.
Summary:
Filmmaker Anurag Kashyap has said the only film he has made with proper preparation is 'Bombay Velvet'.
Anurag further said, "The only film...I haven't started blind was Bombay Velvet...First time I worked with an organised AD system and there were proper shoot hours."
Summary:
Tweeting a picture of Aishwarya Rai Bachchan holding her award and daughter Aaradhya Bachchan hugging her, Abhishek Bachchan wrote, "I look on [to the photo] a very proud husband!".
Summary:
Rajkummar Rao will be starring with Nushrat Bharucha in Hansal Mehta's next film 'Turram Khan' that will be produced by Ajay Devgn, Luv Ranjan and Ankur Garg.
Summary:
Ashwiny Iyer Tiwari, who will be directing Kangana Ranaut starrer 'Panga', will reportedly make the actress sign a no interference contract before the shoot begins.
Summary:
Karan Johar's mother, Hiroo Johar, was seen with Alia Bhatt and Ranbir Kapoor on the sets of 'Brahmastra' in Bulgaria, in a picture that has surfaced online.
Summary:
People should draw a line," he further said.
Summary:
Vihari further said Dravid's inputs "made him a better player".
Summary:
Speaking at a Bharat Bandh protest rally at Delhi's Ramlila Maidan, former PM Manmohan Singh on Monday said the time to change the NDA government will come soon.
Summary:
Three persons died and more than 400 were injured while working at the Delhi Metro between 2006-18, according to an RTI reply.
Summary:
He added Trump won't sue Daniels for breaking the non-disclosure agreement by discussing the alleged affair.
Summary:
"None of the military units in the area are even equipped with white phosphorous munitions of any kind," the US said.
Summary:
'Savdhaan India' host Sushant Singh took to Twitter to ask his fans for help while revealing that his sister has been diagnosed with Chronic Inflammatory Demyelinating Polyneuropathy (CIDP), a neurological disorder.
Summary:
Television actor Sumeet Sachdev has claimed in a petition that his wife Amrita Gujral, who was five months pregnant, suffered a miscarriage due to harassment by her employer.
Summary:
Aamir Khan helped his 'Dangal' colleague Shajith Koyeri, a National Film Award-winning sound engineer after Mumbai's Lilavati Hospital delayed his treatment, as per reports.
Summary:
A worker fell from the second floor and died on the sets of the reality show 'Bigg Boss Tamil 2', which is hosted by actor Kamal Haasan.
Summary:
Summary:
The Tamil Nadu cabinet has decided to recommend the release of the seven convicts in the assassination of former Prime Minister Rajiv Gandhi to the state governor.
The former Prime Minister was assassinated by a female suicide bomber on May 21, 1991, while conducting an election campaign in Tamil Nadu.
Summary:
Uttar Pradesh topped the list of gay sex cases registered under Section 377 of the Indian Penal Code (IPC) in 2015 and 2016, as per National Crime Records Bureau data.
Summary:
A complaint has been filed after a video showing BJP youth wing leaders Rahul Rajput and Nitin Dubey firing celebratory shots in Madhya Pradesh's Bhopal emerged online.
Summary:
Tamil Nadu cabinet on Sunday urged the government to confer the Bharat Ratna, India's highest civilian honour, on late AIADMK supremo J Jayalalithaa.
Summary:
A 20-year-old youth was given seven years in jail by a Chandigarh local court for looting an auto driver and his brother of â¹400 and a mobile in January.
Summary:
A video showing BJP MLA Rajkumar Thukral threatening a female police officer outside a police station in Uttarakhand's Rudrapur has emerged online.
Thukral visited the police station after the officer detained a couple over traffic violations and seized their vehicle.
Summary:
At least one person was killed and four others were injured on Sunday in a shooting at a McDonald's restaurant in the US state of Alabama.
Summary:
US President Donald Trump has said that he and North Korean leader Kim Jong-un will "prove everyone wrong", referring to the efforts to achieve the denuclearisation of the Korean Peninsula.
Summary:
A British family comprising a man, his wife and their child escaped unhurt after falling into the path of a London underground train.
Summary:
The plane, carrying 22 passengers, was flying from the capital Juba to the town of Yirol, according to State Information Minister Taban Abel Aguek.
Summary:
In order to raise awareness, American news anchor Angela Kennecke went on air to report her own 21-year-old daughter Emily's death due to drug overdose in May.
Summary:
Actress Preity Zinta, while recalling the time she shot for 'Salaam Namaste' with Saif Ali Khan, wrote on Instagram, "Saif and I fought so much on and off camera." "The crew didn't know if we were rehearsing our lines or really wanted to kill each other," she added.
Summary:
Actress Aishwarya Rai was honoured with the Meryl Streep Award for Excellence at the Women in Film and Television (WIFT) India Award.
Summary:
Former England captain Alastair Cook is unbeaten on 46 in his final Test innings as England ended the third day of the fifth Test at 114/2, leading India by 154 runs.
Summary:
Automation company ABB Group has unveiled a fast charging system 'Terra HP' in India which can power a car in 8 minutes for a 200 km range.
Summary:
A video shows a delivery van crashing into a blue truck after the driver allegedly fell asleep at the wheel in Ukraine.
Summary:
Whistleblower Susan Fowler, who spoke out about the treatment of women at Uber, has said that she supports a $10-million settlement of harassment claims on behalf of almost 500 employees.
Summary:
Volkswagen faces a lawsuit for nearly $10.7 billion from investors arguing that the carmaker should have informed them about the emissions scandal before regulators did in 2015.
Summary:
When asked about the startup's fatal self-driving crash that took place earlier this year, Uber's CEO Dara Khosrowshahi in a recent interview said it "was an enormous wake-up call".
Summary:
At least two people were killed and two injured after a car ran over them in West Delhi's Rajouri Garden on Sunday, police said.
Summary:
As he started moving the bus, a person allegedly dragged him out, plunging the driver-less bus into the gorge.
Summary:
Former White House Chief Strategist Steve Bannon has said that US President Donald Trump is facing a "coup", referring to the New York Times column that highlighted a "resistance" within his administration.
Summary:
However, he was surrounded by the algae and began swimming back to the policemen, who pulled him out after he extended his hand asking for help.
Summary:
Earlier, they had a tiff due to differences that arose between them during the making of 'Yuva', which starred Abhishek and was written by Kashyap.
Summary:
Summary:
Deepika Padukone criticised a journalist for asking a question about her rumoured marriage with Ranveer Singh during an event on mental health awareness.
It's an extremely insensitive question to ask at an event like this," she told the journalist.
Summary:
Walmart will consolidate the financial statements of Flipkart from the third quarter of fiscal 2018.
Summary:
The doctors who conducted a postmortem on the eight-year-old girl, who was allegedly gangraped and murdered in Jammu and Kashmir's Kathua, told a court she was sexually assaulted and died of asphyxia.
Summary:
The unidentified driver of the car, who was initially asked by the policemen to stop the car, has been booked by the police.
Summary:
The Supreme Court criticised a lower court judge in Hazaribagh for pronouncing an order through a WhatsApp call and asked, "Is this a kind of joke?" The judge framed charges against former Jharkhand minister Yogendra Sao and his wife in a 2016 rioting case.
Summary:
The body of a nun, in her 50s, was found inside a well at Mount Tabor Convent in Kerala's Kollam district.
Workers at the convent found blood stains near the well and saw her body floating inside the well.
Summary:
Jemima Goldsmith, the former wife of Pakistan's Prime Minister Imran Khan, has criticised his government for removing an economist belonging to the minority Ahmadiyya community, calling the move "indefensible" and "very disappointing".
Summary:
Dev Patel, who plays the role of a waiter at the hotel in the film, said that the filming was "difficult" because of the emotions involved.
Summary:
Sonam Kapoor turned showstopper for a jewellery brand Birdhichand Ghanshyamdas in New Delhi on Saturday.
Sonam was accompanied by her husband Anand Ahuja to the event.
Summary:
England pacer James Anderson has been fined 15% of match fee for snatching his cap and jumper from umpire Kumar Dharmasena and talking to him in an "aggressive manner".
Summary:
Rajasthan Royals' wicketkeeper-batsman Sanju Samson took to Facebook on Sunday to share a picture of himself with his fiancée Charu, writing that he waited for five years to post a picture with her.
Summary:
The robot is made of sensors which give the robot a pulse, help respond to certain questions, bleed and convulse.
Summary:
Elon Musk-led tunnelling startup The Boring Company has shared a video showing its latest tunnel digging machine being operated by an Xbox controller.
Summary:
Supreme Court lawyer and activist Prashant Bhushan has alleged that IAF officers are being pressurised to speak in favour of the Rafale deal.
Summary:
The Maharashtra Navnirman Sena will actively participate in the Bharat Bandh called by Congress-led Opposition on September 10 to protest against the hike in fuel prices, MNS chief Raj Thackeray confirmed.
Summary:
During a media interaction at BJP's ongoing National Executive meet, Union Minister and BJP leader Prakash Javadekar said opposition parties only believe in 'Modi roko abhiyan'.
Speaking about 2019 Lok Sabha elections, he said, "People of the country know them [opposition parties] well.
Summary:
US-based deep-linking startup Branch, backed by Android Co-founder Andy Rubin's Playground venture fund, has raised nearly $130 million in a funding round at a valuation of roughly $1billion.
Summary:
They claimed that the definition set by the International Astronomical Union (IAU) for a planet was "sloppy".
Summary:
At present, the postal department offers life insurance schemes including Postal Life Insurance (PLI), Rural Postal Life Insurance (RPLI), among others.
Summary:
The road had reportedly been washed away due to heavy rainfall.
Summary:
The family of RTI activist Kedar Singh Jindan has demanded a CBI probe after he was allegedly murdered and later crushed under a vehicle in Himachal Pradesh on Friday.
Summary:
Russia has conducted large-scale military exercises in the Mediterranean Sea near Syria amid recent tensions with the US over the Syrian province of Idlib.
Summary:
Protests against climate change were held in as many as 95 countries on Saturday as part of the 'Rise for Climate' protests.
Summary:
Dr Arif ur Rehman Alvi was sworn in as the 13th President of Pakistan on Sunday.
Summary:
UP IPS officer Surendra Kumar Das, who allegedly consumed poison on Wednesday, has passed away after being admitted in the hospital.
"He passed away...due to celphos poisoning.
Summary:
Akshay Kumar, who turned 51 on Sunday, said, "I forget I'm 51 now...I'm still thinking that I am in my Khiladi times and just doing action." He added, "I...don't take this stress of the number in my head about turning 50...60.
Summary:
Actress Deepika Padukone, who had earlier battled depression, has said she still fears slipping into depression again.
Deepika further said sharing her experience of battling depression made her feel "lighter" and she had no fear of being judged.
Summary:
Twenty-three-time Grand Slam champion Serena Williams has said it was "sexist" of chair umpire Carlos Ramos to give her a game penalty after she called him a "thief" during US Open final on Saturday.
Summary:
Summary:
The nun who was allegedly raped by a Bishop cried and locked herself in a room for hours after Kerala MLA PC George called her a prostitute in a press conference, her colleague Sister Anupama revealed.
Summary:
The police have arrested Sanjeev Trikha, a Yes Bank relationship manager from Delhi, for fraudulently stealing â¹1.5 crore from an elderly man and his wife's account.
Summary:
Speaking about incidents of lynching in the country, Vice President M Venkaiah Naidu said, "When you kill the other man, how can you call yourself nationalist...
Summary:
A family in Uttar Pradesh called off marriage on the wedding day, alleging that the bride spends too much time on WhatsApp. The bride and her relatives were informed about the wedding being called off over the phone.
Summary:
Former Pakistan Prime Minister Nawaz Sharif's brother Shehbaz Sharif has said that people did not elect Imran Khan as PM, instead "he secured power through rigging".
Summary:
To mark the 70th anniversary of the country's founding, North Korea staged a military parade featuring balloons and flowers, and no missiles.
Summary:
"Those funds will go to high-priority projects elsewhere," the State Department official said.
Summary:
UNHCR called on Libyan authorities to take action against criminals targeting refugees and migrants.
Summary:
The boy attacked Vijaykumar Patel, who had refused to sell cigarette paper to him as he was under 18 years of age.
Summary:
Actress Neelima Azim, while talking about Shahid Kapoor's newborn son and her grandson Zain Kapoor, said, "I kind of saw a son in their [Shahid Kapoor and Mira Rajput] arms in one of my dreams." "I had a very strong feeling that they will get a son this time.
Summary:
Ranveer Singh and Deepika Padukone will have a traditional Sindhi wedding, as per reports.
Summary:
The film, which was earlier scheduled to release on May 11, will now release on October 12.
Summary:
A new song titled 'Khatar Patar' from Varun Dhawan and Anushka Sharma starrer 'Sui Dhaaga- Made in India' has been released.
Sharing the song, Varun wrote, "Dreams do come true".
Summary:
'Manmarziyaan' is reportedly Anurag's third film to get a U/A certificate after 'Bombay Velvet' and 'Mukkabaaz'.
Summary:
India captain Virat Kohli has become the fastest batsman to reach 18,000 runs in international cricket, achieving the feat in his 382nd innings during the fifth England Test on Saturday.
Summary:
Ahead of the Asia Cup, Pakistani all-rounder Shoaib Malik said that the match against India is just another game and "we should avoid creating hype as it adds unnecessary pressure".
Summary:
Talking about Amazon addressing the biggest consumer needs in the market, US-based e-commerce beauty startup Glossier's CEO Emily Weiss said that Amazon "kind of killed shopping".
Summary:
In a major restructuring move, the Army is reportedly seeking to cut 1.5 lakh troops from the present 1.2 million force over the next five years.
Summary:
National Commission for Women chief Rekha Sharma has slammed Kerala MLA PC George for calling a rape survivor nun "prostitute" at a press conference.
Summary:
China is participating in Exercise Kakadu, Australia's largest maritime drill for the first time.
Summary:
A video of a 17-year-old making faces and mouthing responses while reacting to US President Donald Trump's remarks at a rally in Montana has gone viral.
Summary:
US President Donald Trump on Saturday called on Apple to make its products in the US instead of China.
Summary:
National Conference (NC) chief Farooq Abdullah has threatened that his party will boycott the Assembly and 2019 Lok Sabha elections if the Centre does not clear its position on Article 35A.
Summary:
Paytm Founder and CEO Vijay Shekhar Sharma revealed in an interview that the company's meeting rooms are named after foreign cities due to "wannabeism".
Summary:
Paytm's billionaire CEO Vijay Shekhar Sharma in an interview said, "When I die, I shouldn't be known as one of the richest persons".
Summary:
Nepal Army will not be joining the first ever Bay of Bengal Initiative for Multi-Sectoral Technical and Economic Cooperation (BIMSTEC) military drill in India.
Summary:
However, after making the statement, the minister claimed that he never said it belongs to "our government".
Summary:
Radhe Shyam, a class 7 dropout and the Chairman-Managing Director of a company accused of duping 20 lakh people of â¹1,200 crore, has been arrested by Telangana's Cyberabad Police.
Summary:
However, the US reportedly decided against supporting the coup and the plan fell apart.
Summary:
Trump said he will apply a 20% tariff on cars being imported from Canada if the North American Free Trade Agreement (NAFTA) isn't revised.
Summary:
US President Donald Trump has said that he fell asleep during former President Barack Obama's speech against him.
Summary:
Advising US President Donald Trump's administration to "make up its mind", Iranian Foreign Minister Javad Zarif on Saturday said, "Trump regime flip-flops are truly comical." This comes after US State Secretary Mike Pompeo declared that Iran does not do enough to support Palestine.
Summary:
The Airports Authority of India has said that tea and snacks would be available at affordable prices at some counters in over 90 government-run airports.
Summary:
Chaudhry has previously worked with Bank of America, CALYON Bank, and also served as the MD of Infosys BPO.
Summary:
Summary:
Summary:
Summary:
Pankaj Kapoor, while talking about Shahid Kapoor's newborn son and his grandson Zain Kapoor, said, "Zain is a beautiful name...We are all full of joy and are absolutely delighted." "I became a dadu two years back and it's always a delight having a new addition to the family," he added.
Summary:
Naomi Osaka, who defeated her childhood idol Serena Williams to win US Open 2018, said when she steps on the court, she's not a "Serena fan" but "just a tennis player playing another tennis player".
Summary:
Serena Williams' coach Patrick Mouratoglou has admitted to coaching the 23-time Grand Slam champion from the players' box during her US Open final against Naomi Osaka on Saturday.
Osaka's coach was coaching every point too," Patrick said.
Summary:
RCB have rubbished media reports that claimed they have sacked Virat Kohli as captain for the next season of the IPL.
Summary:
India captain Virat Kohli has said he doesn't play for "people, perceptions or reputations".
Citing Viv Richards' example, Kohli said, "No one talks about his average, they talk about his attitude."
Summary:
A "wide range" of Apple products will be affected by proposed US tariffs on Chinese goods, Apple said in a letter to US trade officials.
Summary:
The Trinamool Congress (TMC) will be not be joining the Bharat Bandh called by Congress-led Opposition on September 10 to protest against hike in fuel prices, TMC Secretary General Partha Chatterjee said.
Summary:
Summary:
Madhya Pradesh Sports Minister Yashodhara Raje, sister of Rajasthan CM Vasundhara Raje, recently walked out of a BJP event after finding that her mother Vijaya's picture wasn't placed alongside other party ideologues on the stage.
Summary:
World number 19 Naomi Osaka won her maiden Grand Slam title after defeating her childhood idol and 23-time Grand Slam champion Serena Williams in the US Open women's singles final on Saturday.
Summary:
HDFC Life's 54-year-old MD and CEO Amitabh Chaudhry has received the RBI's approval to be appointed as the MD and CEO at Axis Bank.
Summary:
Replying to this, Swara wrote, "You don't need to ask my father, you can ask me directly the next time you have...doubts!"
Summary:
Swara Bhasker, while speaking about the letter she wrote in which she criticised 'Padmaavat' by saying she felt like a "vagina" after watching it, said, "I've never wished I didn't write the...open letter." "I stand by everything I said in it.
Summary:
Supreme Court judge DY Chandrachud, who was part of the five-judge bench which decriminalised gay sex, has expressed disappointment at the government's decision to leave "sensitive issues" like Section 377 to the "wisdom of the court".
Summary:
Responding to allegations that he consumed naswar (powdered tobacco snuff) at an event to celebrate Pakistan's Defence Day, cricketer Shahid Afridi clarified he was eating fennel seeds and clove.
Summary:
After chair umpire Carlos Ramos issued a warning to Serena Williams for receiving coaching during her US Open final match, the 36-year-old demanded an apology from the umpire.
I'd rather lose," Williams told Ramos.
Summary:
She termed Ramos "thief" for "taking the point" away from her and demanded an apology.
Summary:
Paytm's billionaire Founder and CEO Vijay Shekhar Sharma danced to the song 'Apni To Jaise Taise' from Amitabh Bachchan starrer 1981 film 'Laawaris' during an interview at his office.
Summary:
India will supply 160 railway passenger coaches to Sri Lanka valued at around $82.64 million.
Summary:
A 19-year-old singer and model travelled 900 kilometres from Delhi to Khandwa in Madhya Pradesh with her husband to trap a man who was harassing her online.
Summary:
A 25-year-old Mumbai man, Arnab Nandy's Facebook post on coming out as gay in public has gone viral, which reads, "I am so Gay Today (literally and figuratively) as I'm no longer a criminal".
Summary:
Philippine President Rodrigo Duterte has blamed US President Donald Trump after inflation hit a nine-year high in his country.
Summary:
Iran President Hassan Rouhani on Saturday said that the US continually sends messages to Iran asking it to begin negotiations.
Summary:
Summary:
Wishing husband Akshay Kumar on his 51st birthday on Sunday, Twinkle Khanna took to social media and posted a picture captioning it, "Happy Birthday to my lovely Mr K." "Sometimes when you don't plan things...it all falls in place," she further wrote.
Summary:
Speaking about his grandmother's request that he should get married, Arjun Kapoor said, "I intend to fulfil...it at the right time with the right person." "Dadi has never articulated her feelings so firmly.
Summary:
Indian fielder KL Rahul took a catch while running backwards to register his 13th catch of the series, equalling Rahul Dravid's record for the most number of catches by an Indian fielder in a Test series.
Summary:
The Indian team is trailing by 158 runs after being reduced to 174/6 at the end of the second day of the fifth Test at the Oval on Saturday.
Summary:
Sachin then went on to score 49 hundreds in his ODI career.
Summary:
The store uses AI-based technology to allow consumers to shop without scanning and stopping to check out.
Summary:
It comprises parties that BJP has defeated even after the 2014 General Elections, he added.
Summary:
An Indian Army soldier allegedly committed suicide by shooting himself with his service rifle at a camp in Jammu and Kashmir's Samba district, the police said today.
Summary:
Patidar leader Hardik Patel, who has been on an indefinite fast since August 25 to press for reservation for his community, was admitted to a hospital on Friday after his health deteriorated.
Summary:
Three people have died and as many as 232 houses have been destroyed in Uttar Pradesh in the past 24 hours due to flooding and heavy downpour, an official has said.
Summary:
The US has threatened action against the Maldives if the upcoming presidential elections are not held in a free and fair manner and called for the release of "falsely accused" political prisoners.
Summary:
Lithuania has urged US retailer Walmart to stop selling T-shirts and hoodies with Soviet hammer and sickle symbols.
"Horrific crimes were committed under the Soviet symbols of sickle & hammer.
Summary:
Alibaba's billionaire Co-founder Jack Ma is not stepping down from his post of Executive Chairman on his 54th birthday on September 10, an Alibaba spokesperson clarified on Saturday.
Summary:
White House had claimed Trump's inauguration had attracted the largest-ever inauguration audience.
Summary:
After the event, Nick also shared a picture with Priyanka from the event, in which they can be seen walking hand-in-hand.
Summary:
Musk had also sipped whiskey and smoked marijuana during the 2.5-hour podcast.
Summary:
Former President Pranab Mukherjee will teach public policy and inclusive development to the students of Indian Institute of Management Ahmedabad.
Summary:
The doctors at Hyderabad government's Osmania General Hospital are wearing helmets while on duty to protest against the "unsafe" old hospital building.
We are constantly worried," said the hospital's joint action committee's chairman.
Summary:
The Reserve Bank of India has announced that the undivided area of the single largest piece of a damaged â¹2,000 note must be 88 square cm for a full refund and 44 square cm for half refund.
Summary:
The UN-backed peace talks between the Yemeni government and Houthi rebels have failed as the rebels did not arrive for the talks in Geneva, Switzerland.
Summary:
Citing national security, US President Donald Trump on Friday called on the Justice Department to investigate the anonymous author of a New York Times column which highlighted a "resistance" within his administration to thwart his "misguided impulses".
Summary:
Over 800 people were reportedly killed during the security forces' crackdown on the protests.
Summary:
Flipkart's minority shareholder Tencent has the first right to purchase any shares if any existing shareholder plans to sell it to Alibaba, Walmart has said.
Summary:
I'm very excited...because we've never seen such kind of reality show on our Indian Television," he said.
Sabyasachi further said talks are on with production houses and channels.
Summary:
Former England captain Mike Brearley called 29-year-old Virat Kohli an "intelligent captain" but insisted that with so much charisma and authority, the India skipper may become authoritarian.
Summary:
Indian batsman KL Rahul lost his shoe while taking a single on the second day of the fifth Test against England at The Oval on Saturday.
Summary:
Serena Williams' husband Alexis Ohanian created a video for his wife, captioning it, "She fought for her life, for our child, for recognition, for equal pay, for women's rights.
Summary:
Summary:
A petition was started by a Bengaluru-based trust after the death of a puppy, 21 days after it was bought online.
Summary:
Talking about Uber's plan to launch air taxi service in India, its Head of Aviation Eric Allison said that the costs of making aerial taxis in India "will be significantly lower".
Summary:
Prime Minister Narendra Modi on Friday announced that the government will issue a policy on electric vehicles and vehicles running on alternative fuels.
Summary:
The Defence Ministry today said Aero India 2019 will be held in Bengaluru from February 20-24 next year.
Summary:
An NGO running a shelter home has accused BJP Noida women's wing member Dimple Anand of making objectionable statements, repeatedly calling minor girls "prostitutes" and slapping a girl during her visit there.
Summary:
Claiming the Hindu community will prosper when it starts working as a society, RSS chief Mohan Bhagwat said Hindus "want to make the world better" and "have no aspiration of dominance." Bhagwat, who was addressing a gathering of 2,500 delegates at World Hindu Congress in US' Chicago, added, "Hindus don't live to oppose anybody.
Summary:
Delhi Chief Minister Arvind Kejriwal on Saturday inaugurated a plantation drive wherein 5 lakh trees will be planted across 600 locations in the national capital.
Summary:
A 30-year-old woman was allegedly raped by a man at knifepoint in a garden in Uttar Pradesh's Muzaffarnagar, said the police on Saturday.
Summary:
Deputy Forest Ranger Subedar Singh Kushwaha was allegedly mowed down by a truck carrying illegally mined sand in MP's Morena district on Friday.
Summary:
A 25-year-old man has been arrested for raping a 9-year-old girl in Jewar, Uttar Pradesh.
Summary:
The order relates to an appeal petition filed by traders' body CAIT against Competition Commission of India's approval of the Walmart-Flipkart deal.
Summary:
Shah's tenure was ending in January, but the BJP in its national executive meeting decided that he should continue until the end of the polls.
Summary:
Former US President Barack Obama said on Friday that President Donald Trump is "the symptom, not the cause" of division and polarisation in the US.
Summary:
Sushant Singh Rajput took to Instagram to reveal he has been temporarily blocked by Instagram for posting too many replies.
I'm REAL and I'm replying to my friends in REAL TIME," he wrote after his account was restored.
Summary:
After BJP MLA Ram Kadam mistakenly tweeted about the demise of actress Sonali Bendre, her husband Goldie Behl tweeted, "I appeal to all to please use social media more responsibly." "Let us not believe in rumours and spread them, unnecessarily hurting the sentiments of those involved," he added.
Summary:
Videos of singers Cardi B and Nicki Minaj fighting at the 'Harper's Bazaar' ICONS Party in New York have surfaced online.
Reports said Cardi approached Nicki's table "to address the lies Nicki was spreading".
Summary:
The government has reportedly received â¹10,000 crore in 'withholding tax' on the deal amount Walmart paid to shareholders of Flipkart.
Summary:
Jailed RJD chief Lalu Prasad Yadav is "behaving abnormal" and suffering from "mild depression", Rajendra Institute of Medical Sciences (RIMS) Director RK Shrivastava said.
Summary:
Nalini Sriharan, convicted in the Rajiv Gandhi assassination case, has withdrawn a plea for a six-month parole for the wedding of her daughter who lives in the UK.
Summary:
A group of nuns in Kerala on Saturday staged a protest outside the High Court demanding the arrest of a bishop accused of rape by a nun.
Summary:
Pakistan has removed an economist from Prime Minister Imran Khan-led Economic Advisory Council, following objections by Islamist hardliners as he belonged to the minority Ahmadiyya community.
Summary:
China has agreed to give Nepal access to its seaports and land ports for trade and a transit protocol regarding the same was finalised between the two countries on Friday.
Summary:
A woman in the US state of Connecticut was left with serious injuries after she lit a stick of dynamite which she thought was a candle during a power outage.
Summary:
The Delhi High Court has restrained LG from running an ad campaign for its water purifier that allegedly disparaged Kent's water purifier.
Summary:
Jack Ma, the Co-founder and Chairman of Chinese e-commerce giant Alibaba, has said that he came into the business field by accident.
Summary:
Actress-turned-author Twinkle Khanna, while talking about her Bollywood career, said, "I've not given any hit film.
Summary:
A picture of actress Kangana Ranaut from the sets of her upcoming film 'Manikarnika: The Queen of Jhansi' has surfaced online.
Summary:
Reacting to the Supreme Court scrapping parts of Section 377 of the IPC and decriminalising homosexuality, Hansal Mehta said, "The thought of the majority needs to change." "The wordings of the judgement are very significant," he added.
Summary:
Ranveer Singh, while talking about a scene from his film 'Kill Dil' where he gets slapped by Govinda, said, "Just to have been slapped by Govinda on-screen felt like 'life ban gayi'." "I didn't know what was happening.
Summary:
Summary:
Pacer Dale Steyn praised India's Ishant Sharma, saying, "I have been a big fan of Ishant for a very long time.
Summary:
Bollywood actor Ranveer Singh posted a selfie with former Indian captain MS Dhoni and called him "the greatest" in his post.
Summary:
Ex-Bangladeshi cricketer Mohammad Ashraful became the youngest centurion in Test cricket history, after scoring 114 against Sri Lanka on September 8, 2001, at the age of 17 years and 61 days.
Summary:
The ball hit the fielder and ricocheted towards Axar after Warwickshire's Ryan Sidebottom tried to flick the ball towards the square leg.
Summary:
The cashierless store requires customers to scan a code on an app while entering.
Summary:
The executives discussed how the platform can contribute to the economy while helping reduce pollution and congestion, said Uber.
Summary:
Japan has acknowledged for the first time that a worker died from radiation exposure at the tsunami-hit Fukushima nuclear power plant.
Summary:
The assets under management of India's mutual fund industry have crossed the â¹25 lakh crore mark for the first time to touch â¹25.2 lakh crore in August.
Summary:
Another scientist said that a chip will be used to install NaVIC in smartphones.
Summary:
The Eastern Railways had informed Kolkata Metropolitan Development Authority (KMDA) about the danger surrounding the Majerhat bridge in a letter dated July 27, around six weeks before the bridge collapsed.
Summary:
Actress Priyanka Chopra's fiancé and singer Nick Jonas, who recently appeared on 'The Tonight Show', revealed that Priyanka likes 'Prick' as the couple's possible celebrity nickname.
Summary:
A police officer in Dallas, US shot dead a 26-year-old man after she mistook his apartment as her own house.
Summary:
"It is at least a three-year project.
"I do expect us to end this year on a significantly better trajectory than when we entered it," Zuckerberg added.
Summary:
Swaraj India President Yogendra Yadav on Saturday tweeted that he had been detained by the Tamil Nadu Police when he was on his way to meet farmers who are protesting against a proposed â¹10,000-crore Salem-Chennai expressway.
Summary:
A prisoner lodged in Mumbai's Arthur Road jail brought some chapatis to court to complain about the poor quality of food served in jail.
Summary:
Five Ahmedabad-based call centres and 15 employees including seven Indians were charged for a scam of over $5.5 million which defrauded over 2,000 US citizens, US Department of Justice said on Friday.
Summary:
A head constable in Punjab has been caught smuggling drugs into the Modern Kapurthala Jail.
Summary:
Kerala state women's commission chief MC Josephine defended CPI(M) MLA PK Sasi, who has been accused of sexual harassment, saying "mistakes do happen".
People inside the party may also have committed such mistakes", she added.
Summary:
Petrol prices in Delhi crossed â¹80 per litre for the first time ever on Saturday amid rising global crude oil prices.
Summary:
A man in the Chinese city of Tianjin got out of his car and knocked the traffic signal off with his hands after waiting at a red light for around two minutes, according to local media.
Summary:
US President Donald Trump on Friday said he wants to stop the subsidies that growing economies like India and China are receiving.
We are going to grow faster than anybody," Trump further said.
Summary:
Wishing her sister Asha Bhosle on 85th birthday on Saturday, Lata Mangeshkar tweeted, "Wo hamesha khush rahe aur gaati rahe ye meri ishwar se prarthana (I pray to God for her happiness and may she always keep singing)." "Main usko aashirwad deti hun (My blessings to her)," she further wrote.
Summary:
Filmmaker Karan Johar, while talking about homosexuality in India, has said that "log kya kahenge" (what will people say) phenomenon has to end.
Summary:
Actor Arjun Kapoor, while talking about his half-sister and actress Janhvi Kapoor, said that she is an "introvert" and needs time to come out of her shell.
Summary:
On seeing him enter the stadium, reporters rushed to ask him questions about his return to India.
Summary:
Summary:
World number 19 Naomi Osaka, who will face Serena Williams in US Open 2018 final, was just one when the 23-time Grand Slam champion won her first Flushing Meadows title in 1999.
Summary:
He appointed Jerome Guillen as President for Tesla's automotive operations.
Summary:
Tesla CEO Elon Musk, during a video podcast on Thursday, said that people "are way happier-seeming than they really are," on Instagram.
Summary:
Tripura Police seized 1,359 kg marijuana worth â¹1 crore hidden in an oil tanker near the Assam border on Thursday.
Summary:
Two minor boys, aged six and seven years old, were allegedly sodomised in separate incidents in the Shamli and Muzaffarnagar districts of UP.
Summary:
Sultani was also affiliated with Syed Ali Geelani's group and was recently released from jail, police said.
Summary:
Tarcau has fled Thailand after several women reported the allegations.
Summary:
Adding that the water crisis is currently the biggest issue in the country, Khan said Pakistan could face a drought-like situation by 2025 if dams are not constructed now.
Summary:
Domino's Pizza in Russia was forced to end a promotion offering fans free pizza for 100 years if they got the brand's logo tattooed "in a prominent place" after too many people participated.
Summary:
Magicbricks is all set to change the way India shops for properties with the launch of the exclusive property-deals-only website.
Summary:
Speaking about Priyanka Chopra's exit from 'Bharat', Salman Khan said, "She called up [my sister] Arpita thousand times, saying, 'I want to work with Salman'".
Summary:
The 38-year-old, who stays with his wife and four-year-old son, was seen leaving office at around 7:30 pm in a CCTV footage, but his car could not be located.
Summary:
Rapper Mac Miller, the former boyfriend of singer Ariana Grande, died aged 26 of an apparent drug overdose at his home in California on Friday.
Summary:
Indians were the world's third largest air travellers in 2017 after Americans and Chinese, according to a report based on nationality by the International Air Transport Association (IATA).
Summary:
Criticising the NDA government, former PM Manmohan Singh has claimed that the environment in universities is being spoiled, adding that "academic freedom is sought to be curbed".
Summary:
Taking a jibe at Samajwadi Party chief Akhilesh Yadav over his reported rift with father Mulayam, Uttar Pradesh CM Yogi Adityanath compared him to Mughal emperor Aurangzeb.
Summary:
That's the trust society gives to you." Jack Ma added, "To change the world, we must change ourselves.
Summary:
During a US field trip in 1995, then-English teacher Jack Ma was introduced to the internet, where his first search was 'beer'.
Finding no entries for Chinese beer, Ma searched for 'China' which gave no results either.
Summary:
Alibaba Co-founder Jack Ma, whose net worth is $40 billion, once revealed he was rejected by Harvard Business School 10 times.
Summary:
They used toy guns to scare the mob while the two stone-pelters were taken to the police station.
Summary:
The accused is from Bangladesh but has been operating in India since 2010.
Summary:
According to government data, India has 19 lakh buses against its requirement of 30 lakh.
Summary:
The men forcibly entered the school and started looking for the girl after which students started screaming and running.
Summary:
India has initiated extradition proceedings to bring him back.
Summary:
A helicopter with a pilot and six passengers on board crashed into a hillside in central Nepal on Saturday, according to officials.
Summary:
Deepika Padukone has said that Ranbir Kapoor was the first person who had the "guts" to tell her that she is a "tease".
On being asked whether she is clear about what she wants in her love life, Deepika replied, "My mother feels not." "I wouldn't say impulsive.
Summary:
Reports also suggested that Alia has been learning Kathak for a year and for the last two-and-a-half months, she underwent rigorous training.
Summary:
Ayushmann Khurrana, who messaged director Sriram Raghavan for his role in the upcoming film 'AndhaDhun', has said that he "wanted to break the mould of playing the guy in slice-of-life films." "The best way out was to do a thriller and that too with the master of noir, Sriram," he added.
Summary:
Twinkle Khanna launched her third book titled 'Pyjamas are Forgiving' on Friday.
Summary:
#Parinda." Anil is seen wearing a baby's tie-knot cap and a baby nipple in the picture which is from the sets of Vidhu's 1989 film 'Parinda'.
Summary:
England pacer James Anderson, in a video message for retiring ex-captain Alastair Cook, joked he should've retired two years ago.
Bore off," he further joked.
Cook scored 71 in the first innings of his farewell Test on Friday.
Summary:
After seeing Dhawan dance, Harbhajan Singh taught bhangra moves to David Lloyd in the commentary box.
Summary:
"Tweet from Internet Explorer?" a user tweeted.
"He tweeted on 8th July, aaj post hua.
Summary:
Indian spinner Harbhajan Singh, who is currently commentating in the fifth England-India Test at The Oval, taught 71-year-old ex-England cricketer and co-commentator David Lloyd bhangra in the commentary box.
Taught @BumbleCricket a little bit of bhangra...as he showed off some bhangra skills in his own style!
Summary:
World number one Rafael Nadal, who crashed out of US Open after retiring in the semi-final due to injury, said all his career, everybody said he would have a short career due to his style.
Summary:
India's current account deficit (CAD) widened to $15.8 billion in the April-June quarter, representing 2.4% of GDP.
Summary:
Ma, a former English teacher who co-founded Alibaba in 1999, has a fortune of about $40 billion.
Summary:
After the Supreme Court decriminalised homosexuality, Arif Zafar, who was jailed under Section 377 in 2001 on grounds of promoting same-sex relations, has said he was denied human rights in prison.
Summary:
He previously worked at Global Science Research, which improperly shared Facebook user data with the British firm via a personality quiz app.
Summary:
Elon Musk-led carmaker Tesla's Chief Accounting Officer Dave Morton resigned just after a month on Friday.
Summary:
A regional district headquarters of the Indian Coast Guard has passed an order to deny subsidised liquor to all employees who are "obese or overweight".
Summary:
An Assam court on Friday awarded death sentence to a 19-year-old man, who was the main accused in gangrape and murder of an 11-year-old girl by setting her on fire.
Summary:
The Bombay High Court has disapproved of the practice of people writing directly to the Prime Minister or President, saying such persons "only want publicity and popularity".
Summary:
A relative of Pruthvi Raj Kandepi, who was killed after a gunman opened fire in a bank in Cincinnati, US on Thursday, said his family was planning his marriage.
Summary:
Shivinder Singh has accused elder brother Malvinder Singh of forging his wife Aditi SinghâÂÂs signature and conducting illegal transactions along with Sunil Godhwani, former Religare Chairman.
Summary:
Claiming that the committee's report had "factual inaccuracies", J&J said the compensation will depend on a case-to-case basis.
Summary:
Kant, who joined SBI as a Probationary Officer in 1983, was serving as Deputy MD and CFO.
Summary:
Actor Nirmal Soni will portray the role of Dr Hathi on 'Taarak Mehta Ka Ooltah Chashmah' following the demise of Kavi Kumar Azad, as per reports.
Summary:
Actress Tara Sutaria has walked out of Shahid Kapoor starrer 'Arjun Reddy'.
Summary:
Priyanka Chopra and singer-composer AR Rahman will perform for the opening act at Bryan Adams' India concert, as per reports.
Summary:
IIT Bombay's Entrepreneurship Cell has announced the launch of its business model competition, 'Eureka!
The five-month-long educational experience emulates the process of raising funds for a startup, starting from a business plan to pitching it before an investor.
Summary:
Former England captain Alastair Cook got dismissed for 71 in the first innings of his career's final Test, at The Oval in the fifth Test against India on Friday.
Summary:
Dominik Shine, an ice hockey player from Pinckney, MI, USA, used his hockey stick to land the customary first pitch of a baseball match.
Summary:
World number one Rafael Nadal crashed out of US Open by retiring from his semi-final against Juan MartÃÂn del Potro due to knee injury on Friday.
Nadal, who had won his quarter-final in nearly five hours, quit when the Argentine was leading 7-6(7-3), 6-2.
Summary:
Patil added, "Kadam does not have a history of speaking ill about women...
He is known for helping women immensely.
Summary:
Claiming the Gandhi family does not think of the welfare of people, Union Minister Smriti Irani on Friday said, "People in their own constituencies now do not expect anything from them.
Summary:
RJD state president Ramchandra Purve on Friday announced the party's support for the Bharat Bandh called by the Congress on September 10 to protest the hike in fuel prices.
Summary:
The body of a nine-year-old girl, who was gang-raped and murdered allegedly at the behest of her step-mother in Jammu and Kashmir's Baramulla, was exhumed on Friday for some medical and legal "clarifications", police said.
Summary:
The bus conductor asked the assailant to spare the man, following which the assailant stabbed him with a knife.
Summary:
The remains were discovered in 32 graves in the central part of Veracruz following an anonymous tip received last month.
Summary:
The 12 boys of a football team and their coach rescued from a flooded cave in Thailand in July, crawled through a replica tunnel at an exhibition in Bangkok.
Summary:
Brazilian presidential candidate Jair Bolsonaro was stabbed in the stomach on Thursday at a campaign rally in the town of Juiz de Fora.
Summary:
Passengers' faces will be identified as they move across the airport to prevent showing physical documents repeatedly.
Summary:
Two terrorists with alleged links to ISIS were arrested near the Red Fort in Delhi by the special cell on Thursday night, the police said.
Summary:
The academy president John Bailey said the category was well-intentioned in its efforts to reflect a changing industry and was misunderstood by critics.
Summary:
American film studio 20th Century Fox has deleted a scene from its upcoming movie 'Predator' after it was discovered that Steven Wilder Striegel, one of the actors, is a registered child sex offender.
Summary:
BJP MLA Ram Kadam wished actress Sonali Bendre "good health" and "speedy recovery" after mistakenly tweeting about her demise.
Sonali Bendre's passed away in America," his now-deleted tweet read.
He later clarified, "About Sonali...ji.
Summary:
Facebook's former security chief, Alex Stamos, in an interview said, "It's kinda a crappy job to be a chief security officer." "It's like being a (chief financial officer) before accounting was invented," he added.
Summary:
Park's résumé and photo was tracked after being forwarded by his superior on free email services including Gmail.
Summary:
Goyal further said the facility is available at 710 railway stations in India.
Summary:
The US does not seek to punish India over its planned purchase of S-400 air defence missile systems from Russia, US Secretary of State Mike Pompeo has said.
Summary:
Schnatter alleged that Ritchie launched a "false and defamatory campaign" accusing him of racism.
Summary:
Disagreeing with India coach Ravi Shastri who alleged the current team was the "best touring side", former captain Sunil Gavaskar has said Rahul Dravid gets "little credit" as a leader.
Summary:
Germany's Olympic and world sprint cycling champion Kristina Vogel has been paralysed following a crash during training that took place in June.
Summary:
A mock living room with a sofa, a television and a plant was made on the Johan Cruyff Arena's pitch for Netherlands midfielder Wesley Sneijder and his family after he played his international career's final match on Thursday.
Summary:
Former Indian cricketer Sachin Tendulkar, who visited his daughter Sara to celebrate her graduation from college, wrote, "It feels like just yesterday when you left home for @UCL, and now you are a Graduate." "Anjali and I are so proud of you!
Summary:
Summary:
A day after the Telangana assembly was dissolved, Chief Election Commissioner OP Rawat said, "We'll assess if Telangana elections can be held with other four states.
Summary:
After Telangana CM K Chandrashekar Rao called Congress President Rahul Gandhi the "biggest buffoon" in India, Congress leader Anand Sharma said, "The choice of the word is distasteful.
Summary:
Confederation of All India Traders has called for a nationwide traders' strike on September 28 to protest against acquisition of Flipkart by US retail giant Walmart.
Summary:
Tinder's rival dating app Bumble on Thursday launched a new feature 'Snooze' that will allow users to pause their activities on the app.
Summary:
The Indian Railways is using a device that amplifies the sound of honeybees to prevent elephants from coming near the tracks in the Northeast Frontier zone.
Summary:
The Shiv Sena has compared BJP MLA Ram Kadam to Alauddin Khilji, the 14th-century Sultan of Delhi, for telling youngsters he would "kidnap" girls they liked.
Summary:
People in Basra have been protesting against corruption, poor infrastructure and lack of essential supplies.
Summary:
The nerve agent used to poison former Russian spy Sergei Skripal and his daughter was brought to the UK in a fake Nina Ricci perfume bottle.
Summary:
China will help Afghanistan to set up a "mountain brigade" to fight al-Qaeda and ISIS militants who plan to attack China.
Summary:
The row erupted when Nauru's President Baron Waqa rejected Chinese envoy Du Qiwen's demand to speak at an event before Tuvalu's PM Enele Sopoaga.
Summary:
India's largest carmaker Maruti Suzuki has announced that it would start testing 50 prototype electric vehicles (EV) on Indian roads from October and will launch its first EV in India in 2020.
Summary:
British Airways has disclosed that hackers stole personal and financial details of 3.8 lakh passengers from its website and app over a two-week period.
Summary:
Two of the main wheels of the plane got deflated during the landing, according to reports.
Summary:
To extend the amended law to J&K, the state assembly has to frame law regarding the same.
Summary:
Amitabh Bachchan, while talking about why he accepted the offer to host 'Kaun Banega Crorepati', said, "I had no work, no money and a bagful of ill-mannered threatening creditors." "[It] helped me pay off each and every person," he added.
Summary:
After decriminalisation of homosexuality, award-winning chef Ritu Dalmia, a petitioner in the case, said, "I wanted to be known for what I do, not who I sleep with." She added she decided to join the petition after Justice GS Singhvi said he had never "met a gay person".
Summary:
Ola co-founders Bhavish Aggarwal and Ankit Bhati have sought approval from the Competition Commission of India (CCI) for increasing their stake in parent company ANI Technologies.
Summary:
Researchers have found residue of cheese from ancient pottery unearthed in Croatia that dates back about 7,200 years.
Summary:
Former Jammu & Kashmir DGP SP Vaid, who was transferred after militants kidnapped some relatives of policemen, said that he was "going with a lot of good feelings".
Summary:
The gang allegedly entered their house after breaking the front door, following which they blindfolded the couple, tied them up and assaulted them.
Summary:
Congress has posted a screenshot on Twitter of Rahul Gandhi's Fitbit data, claiming the party chief walked 34.31 kilometres, taking over 46,000 steps in 463 minutes (seven hours, 43 minutes) during his ongoing Kailash yatra.
Summary:
Trump earlier appeared to accuse the newspaper of committing treason for publishing the anonymous piece.
Summary:
Nike's controversial ad campaign featuring American football player Colin Kaepernick has received media exposure worth over $163 million (â¹1,170 crore) in less than 3 days, according to Apex Marketing Group.
Summary:
Alibaba Chairman Jack Ma has said that he can never be as rich as Bill Gates but one thing he can "do better is to retire earlier".
Summary:
Burt Reynolds, known for films like 'Boogie Nights', 'Smokey and the Bandit' and 'Striptease', passed away at the age of 82 on Thursday in Florida.
He had opened the Burt Reynolds Jupiter Theatre.
Summary:
Kareena Kapoor Khan said she has worked very hard for everything that she has in life and she wanted it for a long time.
Summary:
Bollywood Hungama wrote, "The story tries to do justice to the actual tale of Laila and Majnu." It's been rated 3.5/5 (HT), 3/5 (TOI) and 2/5 (Bollywood Hungama).
Summary:
The members of the Indian cricket team gave a guard of honour to former England captain Alastair Cook when he was entering to bat in his career's final Test at The Oval on Friday.
Summary:
After winning UEFA's Player of the Year Award, Real Madrid's Croatian midfielder Luka Modric revealed that his former Madrid teammate and award contender Cristiano Ronaldo texted him saying that he deserved the award.
Summary:
The Pakistan Cricket Board welcomed AB de Villiers to the Pakistan Super League with a tweet that read, "The GOAT from South Africa is now a part of PSL!
Summary:
Patel has been sitting on the strike demanding reservation for the Patidar community and loan waiver for farmers.
Summary:
DMK President MK Stalin on Friday said his party will actively participate in the Bharat Bandh called by Congress on September 10 against the oil price hike.
Summary:
Mumbai Congress chief Sanjay Nirupam has tweeted a picture of PM Narendra Modi having a meal, along with the caption, "Na khaoonga na khaane doonga." Later, reports pointed out that the image was photoshopped to add more food to the table.
Summary:
A lawsuit filed on Thursday accused Tesla and its CEO, Elon Musk of trying to "burn" short sellers with "objectively false tweets".
Summary:
German carpooling startup Wunder Mobility, that also offers carpooling services in India, has raised $30 million in a Series B round of funding.
Summary:
Astronomers used the NASA's Chandra X-ray Observatory to find a massive ring of celestial bodies, that are either black holes or neutron stars.
Summary:
Four members of a family, including a five-year-old boy, were found with their throats slit in their house in UP's Allahabad on Friday.
Summary:
A 16-year-old Kanpur boy was allegedly thrashed to death by several boys for talking to the girlfriend of one of the accused.
Summary:
Despite a warning from the US, Russia has said it will continue to kill terrorists in Syria to restore peace in the war-torn country.
Summary:
The UP IPS officer who attempted suicide by consuming poison on Wednesday, had a fight with his wife after she ordered non-vegetarian pizza on Janmashtami, according to reports.
Summary:
The New York Times has published an anonymous opinion piece by a person claiming to be a senior official of US President Donald Trump's administration.
Summary:
Shahid Kapoor took to Twitter to reveal he and his wife Mira Rajput have named their newborn boy Zain Kapoor.
He wrote, "Zain Kapoor is here and we feel complete.
Summary:
India Today said, "everything about the film is overdone." It has been rated 2/5 (HT), 3/5 (TOI) and 2.5/5 (India Today).
Summary:
Former Indian cricketer Sachin Tendulkar's daughter Sara took to Instagram to share pictures of herself celebrating completion of her graduation in London.
Summary:
A Congress-led Opposition has called for nationwide protests against PM Narendra Modi-led government on September 10 over the recent fuel price hike.
Summary:
Rogan also shared a photo on his Instagram which showed Musk firing The Boring Company's flamethrower.
Summary:
After Delhi Metro was ranked the second most unaffordable metro system in a recent report, Delhi CM Arvind Kejriwal said he feels "very sad" that an "important means of transport" is out of the common man's reach.
Summary:
BJP's Union Minister Giriraj Singh shared a photo of Congress chief Rahul Gandhi from his pilgrimage to Kailash Manasarovar, claiming the picture is photoshopped.
Summary:
Following the 2+2 dialogue with the US, External Affairs Minister Sushma Swaraj on Thursday said that India seeks "a non-discriminatory and predictable approach (by the US) to the H-1B visa regime".
Summary:
Pakistan will not fight any other country's war on terror in the future, PM Imran Khan has said.
Summary:
SBI's Chief Economic Advisor Soumya Kanti Ghosh has estimated that a weak rupee will cost India â¹68,500 crore ($9.5 billion) more to repay short-term foreign debt.
Summary:
Bollywood Hungama wrote, "The film not only enlightens viewers but also entertains them." It's been rated 1.5/5 (HT), 3/5 (TOI) and 2.5/5 (Bollywood Hungama).
Summary:
Shahid Kapoor, who became a father for the second time on September 5 when wife Mira Rajput gave birth to their son, said this time they are more calm and relaxed as parents.
Shahid and Mira have a two-year-old daughter Misha.
Summary:
"You should not pay much attention to what Ravi Shastri says.
Summary:
The 24-year-old has become the 292nd cricketer to represent India in Test cricket.
Summary:
The last Indian captain to lose all coin tosses in a five-Test series was Kapil Dev against the West Indies in the 1982-83 season.
Summary:
Speaking about Lionel Messi being left out of contention for FIFA's 2018 Best Player Award, Barcelona's official spokesperson Josep Vives said that the 'world's best player' Lionel Messi does not need any awards to prove his credibility.
Summary:
"I waited a lot for this moment," ÃÂverson later said.
Summary:
Summary:
Pakistani fast bowler Hasan Ali, known for his 'bomb explosion' celebration, has said that he will "definitely miss" bowling at Virat Kohli in Asia Cup.
"I will look for him the next time," Hasan further said.
Summary:
The bank is still considering how to offer services involving physical Bitcoin but has not set a timeline for it, he said.
Summary:
Technology giant Google launched a new app 'Blog Compass' to help Indian bloggers manage their site and find topics to write about.
Summary:
An old bridge collapsed near Siliguri in West Bengal when a truck was crossing it on Friday.
Summary:
A first-year student at Kerala's DC School of Management and Technology has been hospitalised after allegedly being beaten by his seniors for three hours during ragging.
Summary:
India's second-largest IT services company Infosys has formed a joint venture with Temasek to support the Singapore-based investment companyâÂÂs digital transformation.
Summary:
The Jammu and Kashmir government on Thursday removed SP Vaid as state police chief and posted him as Transport Commissioner, days after militants kidnapped several family members of policemen.
Summary:
UP IPS officer Surendra Kumar Das, who allegedly consumed poison on Wednesday, had been searching for 'ways to end life' on Google since the last few days before that.
Summary:
In the video, the lion can be seen licking and hugging the driver and several visitors.
Summary:
The coin toss happened after two judges were torn between Storey's novel and another book, while the third judge didn't want to vote.
Summary:
A carpet which resembles a running track has been laid out at the Guwahati airport to welcome Asian Games 2018 triple medallist sprinter Hima Das on Friday.
Summary:
Union Railways Minister Piyush Goyal has asked officials of the railway department to come up with a new, "catchy" name for the Indian Railway Catering and Tourism Corporation (IRCTC).
Summary:
Mithril was launched by PayPal Co-founder Peter Thiel and Indian-origin investor Ajay Royan, who will join GreyOrange's board.
Summary:
Summary:
Congress leader Subodh Savji has announced a â¹5-lakh reward for cutting off BJP MLA Ram Kadam's tongue over his alleged remarks on kidnapping girls.
Summary:
A pregnant woman in Andhra Pradesh's Vizianagaram district delivered on the way while being carried to a hospital on Tuesday.
Summary:
A protest was staged outside a Ghaziabad government Hospital on Thursday after a three-day-old baby died because an ambulance wasn't provided to ferry the family to a private hospital.
Summary:
Karnataka CM HD Kumaraswamy has reiterated that English-medium learning will be introduced in government schools as was listed in the budget.
Summary:
A retired commissioner of the Irrigation Department and his wife were found dead at their home in Bihar's Buddha Colony on Thursday.
The bodies of the 82-year-old man and his wife were found lying in the house's drawing room.
Summary:
Qatar Airways CEO Akbar Al Baker has said that the state-owned airline would be interested in Air India only if it comes without the 'baggage'.
Summary:
Salman Khan, while talking about his upcoming production 'Loveratri', said the film is not demeaning towards any culture.
"Some people...have some problem with the title of the film.
Summary:
Sung by Arijit Singh, the song has been composed by Sachet-Parampara and written by Siddharth-Garima.
Summary:
Pankaj Kapoor, while talking about Shahid Kapoor's newborn son and his grandson, said that Shahid's family is now complete.
Summary:
Varun Dhawan, while talking about doing his upcoming film 'Sui Dhaaga', said, "I can't be stuck with the chocolate boy image or the goody-two-shoes image." "I am the guy who did 'Badlapur' [in 2015]...going against the tide is in my DNA," he added.
Summary:
He further said he wanted people to arrive at their own conclusions.
Summary:
Pankaj Tripathi, while talking about his dialogue 'Sabka aadhaar link hai uske paas' in 'Stree', said the dialogue wasn't the part of the script.
"Yeh dialogue Pankaj Tripathi ka hi hai!
Summary:
Aamir Khan, while talking about the experience of working with his 'Thugs of Hindostan' co-actor Amitabh Bachchan, said that it was a "fanboy moment" for him when he rehearsed scenes with Amitabh Bachchan on the sets.
Summary:
After being asked to give a message to her US Open final opponent Serena Williams, Japan's 20-year-old tennis player Naomi Osaka, said, "I love you (Serena)".
Summary:
Apple has announced that it will launch a global web portal for law enforcement officers to submit and track data requests by the end of 2018.
Summary:
Russian company Stratonavtika has announced that it has successfully conducted its first test flight to stratosphere using balloons for its manned program.
Summary:
Summary:
Amidst calls for a Bharat Bandh by anti-reservation bodies, Lok Sabha Speaker Sumitra Mahajan used a 'chocolate and kid' analogy to defend the Parliament's amendments overturning the Supreme Court verdict on SC/ST anti-atrocities act.
Summary:
A 22-year-old Zoology student, Kanupriya, on Thursday defeated six male candidates to become the first female President of Panjab University Campus Students' Council.
Summary:
Ultra Shorts' web series 'What's Your Status' tells stories of 3 different people in different phases of relationships.
Summary:
A 32-year-old mother of two, UK's Kate Hitchens was forced to stand and breastfeed her son on a train after no one offered her a seat for half an hour.
Summary:
However, it reduced to six colours by removing the pink and turquoise and replacing indigo with basic blue.
Summary:
Summary:
Justice Indu Malhotra, who's the first woman lawyer to be directly appointed as a Supreme Court judge, was also a part of the bench.
Summary:
Union Minister Nitin Gadkari has said that no permits would be required for electric vehicles, and automobiles that run on alternative fuels like ethanol and bio-diesel.
Summary:
The suit can be fitted with one oxygen cylinder to last for 60 minutes.
Summary:
Pruthvi Raj Kandepi, a 25-year-old banking consultant from Andhra Pradesh was among three people killed when a gunman opened fire inside a bank in the US city of Cincinnati on Thursday.
Summary:
Following the Supreme Court's verdict of legalising homosexuality in India by scrapping parts of Section 377, over 3 lakh tweets discussing #Section377 and #LGBTQ in the past 12 hours were posted on microblogging site Twitter.
#LoveWins," Twitter India said in a tweet.n
Summary:
The country's Emir Sheikh Tamim bin Hamad Al Thani has issued a decree allowing a maximum of 100 expatriates to gain permanent residency each year.
Summary:
Harish Kumar, member of India's Sepaktakraw team that won bronze medal at Asian Games 2018, sells tea at his father's shop situated at Delhi's Majnu-ka-Tilla.
I help my father at the tea shop to support my family," he said.
Summary:
Indian athlete Govindan Lakshmanan, who was stripped of his Asiad bronze medal after his 10,000m race for lane infringement, was felicitated by the Indian Sports Minister Rajyavardhan Rathore.
Summary:
In that innings, Mahela Jayawardene also retired out after scoring 150.
Summary:
American baseball side New York Mets' fielder Todd Frazier fooled the umpire into giving a decision in his side's favour after he showed him a fan's replica ball to claim his catch.
Summary:
FC Barcelona's Argentine forward Lionel Messi posted a few photos of him dropping his sons Thiago and Mateo to school.
Summary:
World number 26 Serena Williams defeated world number 18 Anastasija Sevastova 6-3, 6-0 on Thursday to enter her ninth US Open final, 19 years after her maiden Flushing Meadows final.
Summary:
A month after Twitter refused to ban Alex Jones like Facebook and YouTube, the microblogging platform on Thursday permanently banned the conspiracy theorist over "abusive behaviour".
Summary:
Indian engineering company Escorts Group has unveiled India's first autonomous tractor concept aimed at precision-based farming at an event in New Delhi.
Summary:
Facebook has announced a partnership with telecom infrastructure operator GlobeNet to build a 2,500-km subsea cable, called "Malbec", for high-speed internet in Argentina.
Summary:
Even BJP president Amit Shah said there was no chance of allying with the TRS."
Summary:
Terming demonetisation a disaster, Andhra Pradesh Chief Minister N Chandrababu Naidu has demanded the abolition of the â¹2,000 currency notes.
Summary:
She claimed that Tesla salespeople told her the car would stop on its own if something was in its path.
Summary:
The petitioner claimed 10% of Delhi's pathological labs and diagnostic centres have the required accreditation.
Summary:
The victim confronted Pahalwan about the threat after which the legislator assaulted him.
Summary:
The Arunachal Pradesh Disaster Management Department has sanctioned â¹15 lakh each for those who lost their houses in recent floods at Mebo sub-division, East Siang district.
Summary:
Kolkata's Majerhat bridge collapsed on Tuesday following heavy rains.
Summary:
Summary:
Veteran actor Dilip Kumar, who was admitted to Mumbai's Lilavati hospital yesterday, has been diagnosed with mild pneumonia, his wife Saira Banu said on Thursday.
But he is doing fine," said the 95-year-old actor's wife.
Summary:
British pornstar Danny D and his girlfriend, Indian actress Mahika Sharma, will reportedly be the highest-paid couple on Bigg Boss 12, getting â¹95 lakh per week.
Summary:
Citing Kerala floods and wildfires in California, United Nations Secretary-General António Guterres said that climate change is running faster than us.
Summary:
Volvo is aiming to release the car by 2021.
Summary:
A daily wage labourer from Punjab who borrowed â¹200 to buy a lottery ticket, Manoj Kumar won the first prize of â¹1.5 crore and submitted his claim for prize money on Wednesday.
Summary:
A 61-year-old Indian-origin man, Gurcharan Singh was jailed for three years on Thursday for making prank calls to the Singapore Police for 18 years after drinking alcohol.
Summary:
The statues were returned to India's Consul General in New York.
Summary:
Speaking about south Kolkata's Majerhat bridge collapse, West Bengal CM Mamata Banerjee said, "No use in only blaming us.
Summary:
Fashion designer Sabyasachi Mukherjee, while talking about his preference in the type of models he wants to work with currently, said, "Right now, I've become tired of gaunt faces and stick-thin models." He added, "In fashion, you have to reinvent yourself every three to five years.
Summary:
Cash-strapped Jet Airways' pilots have threatened the airline's management of "non-cooperation" over delay in salaries.
Summary:
Following their merger, Vodafone and Idea have served exit notices to Bharti Infratel and Indus Towers from 27,447 co-located mobile towers.
Summary:
Hailing the decriminalisation of homosexuality by the Supreme Court, actress Soha Ali Khan shared a picture of her daughter Inaaya Naumi Kemmu in a tunnel in rainbow colours.
#freedom," Soha captioned the picture.
Summary:
Indian pacer S Sreesanth is reportedly set to appear as a contestant in the 12th edition of the reality show Bigg Boss.
Summary:
Asiad medal winner Fouaad Mirza on Thursday said that financial help from Indian government would help popularise equestrian in the nation.
Summary:
Summary:
A cricket match between Hinckley Amateur Thirds and Hathern Old Seconds at Swallows Green, Hinckley, Leicestershire was halted after a macaw landed on the shoulders of a sexagenarian fielder, during the Hathern Old Seconds innings.
Summary:
Pakistan's former fast bowler Shoaib Akhtar on Thursday announced that he is resigning from the position of the advisor to the Pakistan Cricket Board (PCB) Chairman.
Summary:
The European Union on Thursday approved Apple's planned acquisition of British music discovery app Shazam saying it would "not reduce competition in the digital music streaming market." The European Commission had opened a full-scale investigation into the deal in April.
Summary:
Telangana CM K Chandrasekhar Rao today called Congress President Rahul Gandhi the "biggest buffoon" in India, and added, "The whole country saw how he went and hugged PM Narendra Modi in Parliament and winked." On Rahul's plans to campaign in Telangana, Rao said, "He's an asset for us.
Summary:
Uber on Wednesday announced that it will block customers in Australia and New Zealand from its ride service if they have a low passenger rating.
Summary:
A 12-year-old Dalit boy died after allegedly being thrashed by five minor boys at a temple in a UP village on Janmashtami.
Summary:
UP CM Yogi Adityanath has directed investigating bodies to invoke National Security Act against those involved in leaking question papers of competitive exams.
Summary:
Three men, including two who posed as police officers, allegedly sodomised a eunuch who runs an NGO in Delhi on Monday afternoon.
Summary:
The CBI has taken Amol Kale, the prime accused in the Gauri Lankesh murder case, in its custody in connection with its probe into rationalist Narendra Dabholkar's murder, an official said today.
Summary:
A man in Jharkhand allegedly used triple talaq to divorce his wife after thrashing her using a rod and a hammer for a whole night.
Summary:
Reacting to decriminalisation of homosexuality in India, LGBT activist and LaLiT Hotels scion Keshav Suri has said, "The Earth did not burst open when I married my husband." He said the judgment is going to open many doors in India.
Summary:
Petitioners who challenged the constitutional validity of IPC Section 377 in Supreme Court include Navtej Singh Johar, a 59-year-old classical dancer and winner of Sangeet Natak Akademi Award.
Summary:
Tweeting about the verdict of the Supreme Court on decriminalising homosexuality in India, filmmaker Karan Johar wrote, "Historical judgment!
Summary:
Actor Salman Khan has said that he does not do "meaningful films" but all of his films carry "huge messages".
Summary:
Summary:
Bengali actress Payel Chakraborty, known for her work in Bengali TV and film industry, was found dead in her hotel room in West Bengal's Siliguri on Wednesday.
The actress got divorced recently and was depressed, as per reports.
Summary:
The lead stars, who worked together for the first time in Arjun's debut film 'Ishaqzaade' which released in the year 2012, will be reuniting after six years.
Summary:
The RSS has supported Supreme Court's verdict striking down parts of Section 377 of IPC, but called gay sex "unnatural".
We do not support them.
Summary:
Twitter Co-founder and CEO Jack Dorsey on Wednesday admitted that the microblogging site failed its intended impartiality and unfairly reduced the visibility of six lakh accounts.
Summary:
Jailed RJD chief Lalu Prasad Yadav, who is undergoing treatment at Ranchi's RIMS hospital, was shifted to an air-conditioned ward after complaining that he was unable to sleep due to barking of dogs.
The permission for changing the ward was granted by Birsa Munda Jail's Superintendent.
Summary:
Following the inaugural 2+2 talks with the US, External Affairs Minister Sushma Swaraj said that both the countries have agreed to work together towards India's entry in the Nuclear Suppliers Group (NSG).
Summary:
The brand, which destroyed unsold products worth ã28.6 million last year, will instead reuse, repair, recycle or donate the unsold products.
Summary:
Police in Colorado have released CCTV footage of a robbery attempt in which a man wearing a cap and sunglasses pulls out his replica gun at the clerk before dropping it across the counter.
Summary:
Dubai-based Abraaj Group's fund unit, which managed $14 billion at its peak, received a bid from private equity firm Actis for $1, as per reports.
Summary:
The Supreme Court has lifted its interim ban on construction in Maharashtra and Uttarakhand after the states submitted their solid waste management policies.
Summary:
"If you look at last three years...we've won nine matches overseas and three series," he added.
Summary:
Japan's football federation announced that Japan's international friendly with Chile scheduled for Friday at the Sapporo Dome has been cancelled after the northern island of Hokkaido was hit by a powerful earthquake on Thursday.
Summary:
Rajasthan Congress chief Sachin Pilot on Wednesday accused CM Vasundhara Raje of "betraying" the people of the state and accused her of not fulfilling the promises she made during the last Assembly polls.
Summary:
Mumbai-based fantasy sports startup Dream11 has raised $100 million in a funding round led by ChinaâÂÂs biggest gaming and social media firm Tencent Holdings.
Summary:
Around 1,500 customers of e-commerce giant Amazon in Lucknow have been scammed by hackers of their refund money worth crores, as per a legal complaint filed by Amazon.
Summary:
NASA's planet-hunting Kepler space telescope has woken from its "sleep mode" and begun collecting science data to hunt for planets, the US space agency said on Wednesday.
Summary:
Summary:
The mission would make India one of the four countries in the world after Russia, China, and the US to launch a manned space flight.
Summary:
Constructing the memorial underground won't require chopping of trees around the bungalow, reports added.
Summary:
A woman and her husband were allegedly beaten up by goons in the Nizamuddin area of Delhi.
Summary:
They demanded the Punjab government to regularise services of 1,925 contractual college teachers hired in 2015.nn
Summary:
The Corporate Affairs Ministry had put restrictions on 64 individuals' bank accounts.
Summary:
It also scrapped parts of the law which criminalised consensual sexual acts like oral and anal sex between two individuals.
Summary:
Actor Shahid Kapoor's Instagram and Twitter accounts have been hacked and the hacker group Ayyildiz Tim has posted messages claiming the film 'Padmaavat' wrongly portrayed Alauddin Khilji played by Ranveer Singh.
Summary:
Summary:
Reacting to the Supreme Court scrapping parts of Section 377 of the IPC and decriminalising homosexuality, a Twitter user said, "He+He is not Hehe anymore.
Now, for the kitchen," wrote another user, while a tweet read, "Supreme Court is a blessing".
Summary:
BJP leader Subramanian Swamy, speaking on the decriminalising of homosexuality, said that the verdict will give rise to 'social evils'.
Summary:
"It is a massive time to celebrate," Suri said after the verdict.
Summary:
Summary:
Apple also wanted fingerprint as an authentication mode for UPI, which National Payments Corporation of India did not agree to, reports added.
Summary:
Uber is on track to go public next year and has no plans to sell its self-driving car research arm, CEO Dara Khosrowshahi said on Wednesday.
Summary:
In 2015, Chaayos raised $5 million in Series A funding from Tiger Global Management.
Summary:
India signed the Communications Compatibility and Security Agreement (COMCASA) with the US during the 2+2 talks in Delhi on Thursday.
Summary:
Following the 2+2 talks with India, US Defence Secretary James Mattis said that India understands peace better than many.
Summary:
External Affairs Minister Sushma Swaraj has said India and the US agreed during the 2+2 talks that Pakistan needs to do a lot more to curb terror originating from its soil.
Summary:
Activists Varavara Rao, Sudha Bharadwaj, Arun Ferreira, Gautam Navlakha and Vernon Gonsalves were arrested last week.n
Summary:
Delhi Metro Rail Corporation has said that the Centre for Science and Environment's study which stated Delhi Metro as the world's second most unaffordable metro system was "misleading" and based on "incorrect information".
Summary:
Bayer CEO Werner Baumann has said that he has "no regrets" over the company's $63-billion Monsanto purchase, which took two years to complete due to regulatory delays.
Summary:
In his reply, Dhawan states that it is important to learn from mistakes and to create positivity in the team.
Summary:
After the Supreme Court of India decriminalised homosexuality, Congress leader Kapil Sibal tweeted, "Court shuns prejudice, embraces liberty.
Many more battles to be fought." Meanwhile, BJP national spokesperson Gaurav Bhatia, tweeted, "Historic Judgment by the Hon'ble Supreme Court.
Summary:
During a promotion event, Anushka Sharma said she's married to the greatest man in the world, after the host said that she was married to the "greatest batsman alive".
Summary:
Pakistani pacer Hasan Ali, known for his 'bomb explosion' celebration after a dismissal, says that he wants to do his wicket-taking celebration 10 times against India in the upcoming Asia Cup. Ali has 68 wickets in 33 ODIs to his name so far.
Summary:
Like its global counterparts, the data centre will be fully powered by renewable energy.
Summary:
Google on Thursday launched a new search engine called 'Dataset Search' to help scientists, data journalists and others find data required for their work.
Summary:
Summary:
Mumbai-based online fashion rental platform Flyrobe has raised around $3.6 million in a funding round led by Sequoia Capital and IDG Ventures.
Summary:
In such cases, the app will send a notification to a rider's smartphone to answer a series of questions.
Summary:
India's second-largest drugmaker Aurobindo Pharma has agreed to buy dermatology and oral solids businesses of Sandoz US, a division of Switzerland's Novartis, for $900 million (â¹6,480 crore).
Summary:
Ravindra Dholakia, a member of RBI's Monetary Policy Committee, has argued that IndiaâÂÂs new GDP series might be over-estimating the size of the manufacturing sector.
Summary:
The first state assembly of Telangana has been dissolved nine months before the term of the House expires, based on the recommendation of CM K Chandrasekhar Rao and his Cabinet.
Summary:
Reading out the verdict scrapping parts of Section 377 of the Indian Penal Code that criminalised homosexuality, Chief Justice of India Dipak Misra on Thursday said, "Sustenance of identity is the pyramid of life." "No one can escape from their individualism.
Summary:
Summary:
Summary:
Chief Justice of India Dipak Misra, while reading out the judgement decriminalising gay sex, said an individual's sexual orientation is natural and one of the many biological phenomena.
Summary:
Reading out his verdict on scrapping certain parts of Section 377 of IPC that criminalised homosexuality, Justice RF Nariman observed that homosexuality cannot be regarded as a mental disorder.
Summary:
Delivering the verdict of the Supreme Court on decriminalising homosexuality in India, CJI Dipak Misra said, "LGBT community has same rights as of any ordinary citizen.
Summary:
The Section 377 of the Indian Penal Code originated from the 'Buggery Act' that was enacted under King of England Henry VIII's reign in 1533.
Summary:
Justice Indu Malhotra, who was a part of Supreme Court's Constitution Bench that decriminalised homosexuality, said history owes an apology to LGBT community and their families for the years of stigma imposed on them.
Summary:
CJI Dipak Misra, while pronouncing the verdict partially striking down Section 377 of the IPC, quoted German philosopher Johann Wolfgang von Goethe saying, "I am what I am.
Society is now better for individualism", CJI Misra added.
Summary:
Society is now better for individualism," he further said.
Summary:
The government has doubled the overdraft cap from â¹5,000 to â¹10,000 under the Pradhan Mantri Jan Dhan Yojana.
Summary:
The rupee has tanked nearly 11.5% on a year-to-date basis, making it the worst-performing currency in Asia.
Summary:
Actor Kartik Aaryan named Katrina Kaif when asked who he wants to have babies with, adding, "I have a thing for accents." He said this during his appearance on celebrity stylist Anaita Shroff Adajania's show 'Feet Up With The Stars'.
Summary:
He further said, "I prefer when my films are appreciated by intelligent, educated people who are experts in the field."
Summary:
'What Will People Say', a film starring Indian actors Adil Hussain and Ekavali Khanna, has been named as Norway's official entry for Oscars 2019.
Summary:
The United Nations in India welcomed the landmark ruling by the Supreme Court which struck down a key component of Section 377 of the Indian Penal Code which criminalised homosexuality.
Summary:
Summary:
After Supreme Court declared homosexuality legal in India on Thursday, author Chetan Bhagat took to Twitter to hail the move, saying that "in India culture changes every 100km and accepting diversity" is "the only way India will survive and thrive".
Summary:
Minister of External Affairs Sushma Swaraj received US State Secretary Mike Pompeo at the airport ahead of the 2+2 talks between the two countries.
Summary:
The 2+2 talks, currently being held between India and the US in Delhi, consist of two appointed ministers from each country who discuss issues of strategic and security interest.
Summary:
An official said the ban would help women be "more well behaved".
Summary:
In response, Israel ordered closure of its embassy in Paraguay.
Summary:
"A lot of generals don't understand it.
Summary:
The match lasted 164.4 overs, with Lancashire's Keshav Maharaj taking 11 wickets in the match and Somerset's Jack Leach picking up 12 wickets.
Summary:
Former England football team captain David Beckham's Major League Soccer (MLS) franchise would be called Inter Miami CF.
Summary:
A WHO report estimates that 140 crore adults around the world are at risk of serious disease due to lack of physical exercise.
Summary:
Summary:
The Supreme Court on Thursday scrapped parts of Section 377 of the Indian Penal Code (IPC), the 1862 law which criminalised homosexuality.
Summary:
Section 377 of the Indian Penal Code (IPC), which came into force in 1862, states, "Whoever voluntarily has carnal interÃÂcourse against the order of nature with any man, woman or animal, shall be punished".
Summary:
You do some part of the job for money."
Summary:
Salman Khan will not be required to take permission from the court every time he travels abroad as a sessions court in Jodhpur granted the application he submitted while making the request.
Summary:
President Kovind is in Bulgaria on an official visit.
Summary:
Summary:
A magnet weighing 20 kilograms helped locate a car on Wednesday, five days after it plunged into a river in Assam with five people on board.
Summary:
Maharashtra Police on Wednesday alleged that around 250 Twitter handles were created to spread misinformation by circulating videos and speeches on the Bhima-Koregaon violence for holding demonstrations abroad to defame PM Narendra Modi's government.
Summary:
"The process of decolonisation of Mauritius remains incomplete...as long as the Chagos archipelago continues to be under UK's colonial control," India said.
Summary:
The city's Deputy Commissioner said the police asked two bikers on similar vehicles to travel 10 kilometres.
The travel time difference was four minutes.
Summary:
Summary:
North and South Korea have agreed to hold a summit on September 18-20 to discuss "practical measures" toward the denuclearisation of the Korean peninsula, South's national security adviser Chung Eui-yong has said.
Summary:
During a meeting with South Korean officials on Wednesday, North Korean leader Kim Jong-un said he wants to denuclearise the Korean peninsula during US President Donald Trump's first term.
Summary:
North Korean leader Kim Jong-un has told South Korean officials that his faith in US President Donald Trump remains "unchanged".
Summary:
Cook, who bowls right-arm medium pace, dismissed Ishant during the Trent Bridge Test in 2014.
Summary:
Spinner Harbhajan Singh on Wednesday took to Twitter to question the selectorsâ decision to not include KarnatakaâÂÂs Mayank Agarwal in India squad for Asia Cup 2018.
Agarwal scored over 2,000 runs in domestic circuit last season.
Summary:
Summary:
Sixteen-year-old shooter Saurabh Chaudhary, who recently bagged gold at Asian Games 2018, broke his own junior world record to win the 10m Air Pistol Junior Men event at the ISSF World Championship.
Summary:
The move would help Returning Officers in calculating the election expenditure of individual candidates.
Summary:
The device used works by playing a specific vibration assigned to a given English 'phoneme', or the smallest unit of sound, on a user's forearm.
Summary:
Slamming the BJP-led government for the depreciating value of the rupee against the dollar, Shiv Sena claimed India is moving towards becoming a "banana republic" and the picture is "heart-wrenching".
Summary:
An Uber executive said the cost of flying through the service will be at par with its taxis.
Summary:
Morgan Stanley said the lower valuation of Tesla's ride-sharing potential was partly reflective of its apparent lack of progress compared to peers.
Summary:
Responding to Elon Musk's claim that Thai cave diver Vernon Unsworth was married to a 12-year-old child, his 40-year-old girlfriend Woranan Ratrawiphukkun has said that it is "laughable".
Summary:
British authorities said the men had flown to the country in March to kill the Skripals with a military-grade nerve agent.
Summary:
Actor Shahid Kapoor's wife Mira Rajput, on Wednesday, gave birth to a baby boy at the Hinduja Healthcare Surgical Hospital in Mumbai.
Summary:
Around 100 passengers and crew reported feeling sick on Wednesday during an Emirates flight from Dubai to New York with symptoms including cough and fever.
Summary:
After the official poster of Hrithik Roshan starrer 'Super 30' was released, a Twitter user noticed an error in a mathematical equation on the poster.
Summary:
Italy's Florence has banned snacking on any of the four streets that run through its historic centre, with violators facing fines of up to â¬500 (over â¹41,000).
Summary:
Musk alleged that the 63-year-old diver moved to Chiang Rai for a child bride who was about 12 years old at the time.
Summary:
The rupee today plummeted further against the US dollar to close at a fresh record low of 71.76 a dollar, the sixth consecutive session when the currency fell.
Summary:
IKEA has stopped selling veg biryani and samosas at its first Indian store in Hyderabad days after a worm was found in vegetable biryani, attracting â¹11,500 fine from the local civic body.
Summary:
Delhi High Court has asked former Ranbaxy promoter Malvinder Singh to deposit â¹18.25 crore he obtained by selling shares of a company, violating its orders.
Summary:
Air India has issued an advisory asking cabin crew members to carry uniform and documents while on holiday.
Summary:
Speaking about Nick Jonas' engagement to Priyanka Chopra, his ex-girlfriend, Miss Universe Olivia Culpo said, "I'm happy for him." "Any time anybody can find love...in this industry, because it's difficult, you can see there's a track record of things not working out.
Summary:
British rock band Rolling Stones' Mick Jagger has pledged to donate ã20,000 (just under â¹18.5 lakh) for every century or five-wicket haul and ã10,000 (â¹9.2 lakh) for each half-century and three-wicket haul in the fifth India-England Test.
Summary:
Boxer Amit Panghal, who won a gold at the Asian Games 2018, said that his win against reigning Olympic champion Uzbekistan's Hasanboy Dusmatov was no fluke and that he can beat him again.
Summary:
The Indian side, all-out for 163, lost six wickets to Australia's left-arm spinner Jon Holland.
Summary:
Brazilian forward Neymar Jr copied former Real Madrid forward Cristiano Ronaldo's celebration after scoring a goal in Brazil's team training session.
Summary:
Reacting to her first ever loss at US Open under lights, Russia's Maria Sharapova said that the defeat does not represent the most challenging part of her career.
Summary:
Also, the researchers claimed the model demonstrated a 77% success rate in identifying depression.
Summary:
Nationalist Congress Party (NCP) spokesperson Nawab Malik said that the party will hold state-wide protests and call BJP MLA Ram Kadam 'Ravan Kadam' till he issues an apology.
Summary:
Addressing a rally in Chennai, expelled DMK leader MK Alagiri on Wednesday said, "One lakh people came here to support me today.
Summary:
Former Jammu and Kashmir Chief Minister Mehbooba Mufti on Tuesday asked Prime Minister Narendra Modi to hold dialogue with his Pakistani counterpart Imran Khan so "the violence in the Valley can come to an end".
Summary:
Meanwhile, the Gujarat government met several Patidar community leaders and appealed them to persuade Hardik to end his fast.
Summary:
The police station in Prem Nagar, Dehradun houses a school for underprivileged kids, which runs in two shifts and has 51 students.
Summary:
Vice Chief of Air Staff Air Marshal SB Deo on Wednesday said that the Rafale aircraft is very capable and they are waiting for it to come.
Summary:
As many as 21 job aspirants in Uttar Pradesh were duped of â¹1 crore on the pretext of being provided employment in the Railways, the police said on Wednesday.
Summary:
A government official was removed from his post for his comments on politics on social media in the Kishtwar district of Jammu and Kashmir, officials said on Wednesday.
Summary:
The body is suspected to be of one of the two labourers who was missing since the bridge collapsed, police said.
Summary:
Finance Minister Arun Jaitley has said the reasons for the fall of rupee are global and not domestic.
"Compared to what it was four-five years ago, rupee is better off," Jaitley said.
Summary:
American investment firm Goldman Sachs is dropping its plans to open a desk for trading cryptocurrencies in the near future, according to a report.
Summary:
Amazon Founder and world's richest person Jeff Bezos has added $68.6 billion to his wealth so far this year, more than $67.7 billion net worth of Facebook Co-founder Mark Zuckerberg.
Summary:
The Supreme Court on Thursday will pronounce the verdict on pleas challenging the validity of Section 377 of Indian Penal Code which criminalises consensual gay sex.
Summary:
A 30-year-old IPS officer was found unconscious at his Kanpur residence on Wednesday morning.
Summary:
It later emerged that the bird belonged to a man named Shakir, who works at an 'akhara'.
The bird was unhurt but sent to a veterinary hospital for investigation.
Summary:
Rajkummar Rao has revealed he was paid around â¹2,500-â¹3,000 for his debut film appearance as a newsreader in the 2010 Ram Gopal Varma directorial 'Rann'.
Summary:
Talking about Priyanka Chopra's exit from 'Bharat', Salman Khan said, "It was sweet of her to tell us five days before the shoot that she couldn't do 'Bharat'." He revealed that Katrina Kaif was producer Atul Agnihotri's first choice.
Summary:
A passenger claimed the flight was surrounded by ambulances on landing.
Summary:
A 32-year-old IAS officer, Kannan Gopinathan worked at relief camps in flood-hit Kerala and carried relief material on his head for eight days until he was recognised by a senior.
Summary:
Former Team India captain Sourav Ganguly has revealed Rahul Dravid had agreed to become the team's batting consultant before he talked to coach Ravi Shastri.
Summary:
Congress President Rahul Gandhi, who is on a pilgrimage to Kailash Manasarovar, shared pictures of Manasarovar lake.
"A man goes to Kailash when it calls him...
There is no hatred here," Rahul wrote.
Summary:
Blood-testing startup Theranos is reportedly dissolving after a deal with an investment group that lifted it from bankruptcy.
Summary:
Didi's customer service was criticised after it failed to act upon a complaint against the driver, days before the murder.
Summary:
A Pune girl named Minakshi Dimble-Patil has posted a video challenging BJP's Maharashtra MLA Ram Kadam, who said he will abduct girls and hand them over to boys for marriage.
Summary:
The FBI announced on Tuesday that it has recovered the pair of ruby pumps used in the film 'The Wizard of Oz', stolen from a Judy Garland museum 13 years ago.
Summary:
Lakshmi Iyer, Chief Investment Officer at Kotak Mahindra Asset Management, expressed concern to RBI about the 10-year bond yield touching 8% in a Bollywood style tweet.
Summary:
After India's Asian Games 2018 gold medal-winning boxer Amit Panghal expressed his desire to meet the Bollywood actor Dharmendra, the latter responded in a tweet, "I would love to meet you." The 82-year-old's tweet further said that the boxer should inform him whenever he visits Mumbai.
Summary:
Former England captain Alastair Cook said that he would have kept his "mouth shut" about his retirement from Test cricket if the England-India Test series was levelled at 2-2.
Summary:
Summary:
The team had earlier appointed India's 2011 World Cup-winning coach Gary Kirsten in the coaching leadership team.
Summary:
Chinese smartphone company Nubia Technology has developed a 'wearable' smartphone prototype called the 'Nubia Alpha' that wraps around a user's wrist.
Summary:
In an alleged reference to PM Narendra Modi and BJP President Amit Shah, former Union Minister Yashwant Sinha called the NDA government a "two-person" affair.
Summary:
Founded in 2012, the startup last raised â¹165 crore in May in a Series D round of funding.
Summary:
At least two people were killed after a boat carrying over 35 passengers onboard capsized in the Brahmaputra river in Guwahati on Wednesday.
Reports suggest that the boat was also carrying vehicles.
Summary:
A teenage boy in Uttar Pradesh's Ghaziabad was arrested for allegedly raping a 19-year-old girl whom he befriended on Facebook.
Summary:
At least 11 people were killed and around 20 others were injured when a bus carrying a marriage party collided with another vehicle in UP's Aligarh on Tuesday, said the police.
Summary:
A draft Bill by Ministry of Water Resources, River Development & Ganga Rejuvenation has proposed that construction of permanent structures on the active floodplain area near Ganga should attract a two-year jail term or a fine of up to â¹50 lakh or both.
Summary:
The Rajasthan High Court on Wednesday ruled that no government functions would be held during state Chief Minister Vasundhara Raje's pre-poll tour 'Gaurav Yatra'.
Summary:
Bhatt, who was then Banaskantha DSP, had arrested a man over possession of 1 kg of drugs.
Summary:
Salman Khan revealed that Katrina Kaif was always the first choice for the female lead role in 'Bharat' while adding, "But Priyanka called Ali (Abbas Zafar, director) and said she wanted to do 'Bharat', so we considered her." He further said, "Now that she is engaged...
Summary:
Twitter's Country Director for India, Taranjeet Singh announced his resignation on Tuesday, nearly 16 months after he was promoted to the position.
Summary:
They said the alleged attack reportedly occurred on Friday, and that Liu was taken into custody later that evening.
Summary:
The child was tortured, starved and forced to consume liquor before he was thrown into a water tank, police said.
Summary:
National Security Advisor Ajit Doval said on Tuesday that having a separate Constitution for Jammu and Kashmir was probably an "aberration".
Summary:
On the first death anniversary of journalist Gauri Lankesh today, the new edition of 'Lankesh Patrike', a Kannada weekly tabloid she used to edit, was relaunched as 'Nyaya Patha'.
Summary:
In the 2016 referendum, 17.4 million voters or 51.9% of the votes cast backed leaving the EU while 16.1 million voters or 48.1% of votes cast backed staying.
Summary:
US Secretary of State Mike Pompeo, who arrived in Pakistan on Wednesday, will meet the country's Prime Minister Imran Khan.
Summary:
Japan on Wednesday began to clean up after the most powerful storm to hit the country in 25 years killed at least 11 people.
Summary:
Veteran actor Dilip Kumar has been admitted to Mumbai's Lilavati Hospital as he was complaining of uneasiness due to a chest infection.
"We are in the hospital for Dilip saab's routine check-up.
Summary:
Summary:
Directed by Vishal Bhardwaj and also starring Sunil Grover, 'Pataakha' is scheduled to release on September 28.
Summary:
Talking about his gold win at Asian Games 2018, Indian javelin thrower Neeraj Chopra said he didn't realise he was flanked by a Chinese and a Pakistani on the podium as he was consumed by the national anthem.
Summary:
Indian Prime Minister Narendra Modi met India's medal winners at the recently-concluded Asian Games 2018 in Delhi on Wednesday.
Summary:
Former Team India captain Sourav Ganguly has said that head coach Ravi Shastri and batting coach Sanjay Bangar should be held accountable for India's repeated batting failures on overseas Test tours.
Summary:
Following his appointment as Pakistan Cricket Board's (PCB) chief, Ehsan Mani said that he will not request India to play a bilateral cricket series with Pakistan.
Summary:
Further, Facebook also cited infringement of patented technology that improves how a mobile device delivers graphics, video and audio and another that centralizes tracking.
Summary:
Rajasthan Congress president Sachin Pilot has promised a monthly allowance of â¹3,500 to unemployed educated persons if the party forms the government following the assembly elections.
Summary:
US-based software supplier Ebix on Tuesday said that it has acquired Mumbai-based software company Miles Software for at least $19 million.
Summary:
Roughly half the recalls will take place in Japan, Toyota spokesperson said.
Summary:
New York-based Tiger Global will reportedly make fresh investments in Indian startups after a gap of nearly 3 years with its new $3-billion fund.
Summary:
The family members of a woman, who married against their wishes, allegedly abducted her after attacking a police van on the premises of a government hospital in UP.
Summary:
Australian paramedics have been thanked for fulfilling a terminally ill man's desire for an ice cream sundae on his final trip to hospital.
Summary:
German Chancellor Angela Merkel has said that the collapse of talks on Britain's planned exit from the European Union (EU) cannot be ruled out.
Summary:
Zara owner Inditex on Tuesday said that it would sell all Inditex brands online worldwide by 2020, including in markets where it does not have stores.
Summary:
Talking about AirâÂÂIndiaâÂÂs new turnaround plan, Civil Aviation Secretary RN Choubey said that there is no danger of Air IndiaâÂÂs loans turning into non-performing assets (NPAs).
Summary:
Nagaland CM Neiphiu Rio has thanked actor Sushant Singh Rajput for personally coming to Nagaland and donating â¹1.25 crore to the CM's Relief Fund for helping victims of the flood in the state.
Summary:
Sara Iftekhar, a Pakistani-origin student from northern England became the first hijab-wearing finalist of the Miss England beauty pageant on Tuesday.
After the event, she posted on Instagram stories that she didn't win the pageant.
Summary:
YouTuber and tech blogger Marques Brownlee re-tweeted a now-deleted tweet by Anushka Sharma as he spotted her sharing a promotional post for the smartphone Google Pixel via iPhone.
Summary:
Summary:
Assam BJP on Tuesday submitted a list of 13 new documents to the National Register of Citizens (NRC) authorities which should be taken into consideration for the inclusion of a person's name in the NRC.
Summary:
During a felicitation ceremony, Asiad 2018 bronze-winning wrestler Divya Kakran slammed Delhi CM Arvind Kejriwal for not providing her financial support despite her repeated requests.
Summary:
Summary:
BJP leader Tarun Vijay fired his social media manager after his account sent out tweets supporting Congress President Rahul Gandhi's Kailash Manasarovar Yatra.
"I am on morning walk and I am Ok. Sacked person who was handling my tweets," he tweeted.
Summary:
Summary:
The Unique Identification Authority of India (UIDAI) has asserted that schools can't deny admission to students for the lack of Aadhaar, calling such rejections "invalid and not permitted under the law".
Summary:
Thailand's Royal Police Cadet Academy has announced it will not admit female candidates from the next academic year.
The academy, which began admitting female students in 2009, has produced about 700 policewomen.
Summary:
Ankita Lokhande, who'll be seen in 'Manikarnika: The Queen of Jhansi', shared a photo with the film's lead actress Kangana Ranaut and wrote, "Our new captain." Kangana has directed a portion of the film as the original director Krish had other commitments.
Summary:
Premier League side Southampton gifted Indian cricket team captain Virat Kohli a customised number 18 jersey.
Summary:
However, when the ball dislodged the stumps, the batsman had reached well inside the crease.
Summary:
Former Manchester United captain, David Beckham is set to face trial over a speeding offence that took place in January.
Summary:
In a prepared testimony ahead of a congressional hearing on Wednesday, Twitter CEO Jack Dorsey said, "Twitter does not use political ideology to make any decisions." Addressing the concerns about bias, Dorsey explained how Twitter uses "behavioural signals," such as account interactions on the platform.
Summary:
Facebook-owned photo-sharing app Instagram is working on a standalone app for shopping, according to reports.
Summary:
Summary:
Facebook has released COO Sheryl Sandberg's testimony for Senate hearing on US election meddling.
Summary:
Congress spokesperson Randeep Surjewala on Monday said, "One of my colleagues asked why a Brahmin conference is being held using Rahul Gandhi's photo...I said...Congress is that party, my friends, in whose blood there's Brahmin Samaj's DNA." "Rahul Gandhi is on his way to Bhole Shankar's Yatra to Kailash Mansarovar.
Summary:
German automaker Mercedes-Benz unveiled its first electric SUV, EQC 400 4Matic, at an event in Sweden on Tuesday.
Summary:
Payment apps like Paytm, Flipkart-owned PhonePe, and FreeCharge are not letting users submit their Aadhaar numbers for the 'know your customer' (KYC) process, as per user feedback.
Summary:
The activists are currently under house arrest as per the Supreme Court's order.
Summary:
Vandals have turned a giant bicycle art created to celebrate the Tour of Britain into a penis.
Summary:
Jet Airways has reportedly delayed the salaries of nearly 20% of its employees.
Summary:
A nine-year-old girl was allegedly gangraped by her 14-year-old stepbrother and his friends, on the orders of her stepmother in Kashmir's Baramulla.
Summary:
Neerja Bhanot, the flight attendant who lost her life while saving passengers on the hijacked Pan Am Flight on September 5, 1986, was harassed by her ex-husband for dowry.
Summary:
The CBI on Wednesday conducted raids at 40 locations in Tamil Nadu, including the houses of state DGP TK Rajendran and Health Minister Vijaya Baskar, among others in connection with the Gutkha scam.
Summary:
The Supreme Court on Wednesday dismissed a petition seeking a ban on the Malayalam novel 'Meesha', saying, "The writer's imagination must enjoy freedom".
Summary:
Congress MP Shashi Tharoor's book 'Why I Am A Hindu' is being made into a web series with National Award-winning producer Sheetal Talwar as showrunner.
Summary:
A social media user has posted a video and claimed that actor Ranveer Singh used abusive language while scolding him for rash driving.
Summary:
Priyanka and Nick were reportedly on a vacation in Mexico recently.
Summary:
At least 42 people have died due to rat fever (leptospirosis) since August 1 following the floods in Kerala, while 1,006 cases of the fever have reportedly been confirmed.
Summary:
The police in Madhya Pradesh arrested BJP MLA Shankarlal Tiwari and presented him before a court on Tuesday in connection with a 1997 case of assaulting a police personnel, and vandalising public property in Satna.
Summary:
However, the bank officials learned about the robbery on Tuesday, when the banks reopened after a two-day holiday.
Summary:
He also took the boy home to spend time with his family.
Summary:
US Secretary of State Mike Pompeo has said India's purchase of a Russian missile defence system and Iranian oil will be a part of the India-US 2+2 dialogue, but it won't be the "primary focus".
Summary:
Saudi Arabia prosecutors have said they will punish online satire that "mocks, provokes or disrupts public order, religious values and public morals".
Summary:
The book states that Trump's request was ignored by Defense Secretary James Mattis.
Summary:
Qatar on Tuesday amended its residency laws to allow foreign workers to leave the country without exit permits from their employers.
Summary:
German authorities have dropped a case against a 10-year-old Afghan boy who raped a classmate during a school trip while two accomplices held him down, saying the boys are too young to be tried in the justice system.
Summary:
US President Donald Trump has said Nike was sending a "terrible message" with an advertising campaign featuring Colin Kaepernick, the NFL player who knelt during the national anthem to protest racial injustice.
However, Trump said that Kaepernick and Nike had a right to express themselves.
Summary:
India is reportedly set to purchase 18 bullet trains from Japan at a cost of â¹7,000 crore in a deal where the seller will also have to transfer technology for local production.
Summary:
Qatar Airways CEO Akbar Al Baker has said the rule of foreign ownership in Indian carriers is not very clear as a foreign airline cannot own 100% but a foreigner can.
Summary:
TV actress Additi Gupta, known for her role as Ragini in the serial 'Ishqbaaaz', said that she never wanted an "industry boy" while talking about her roka ceremony with her boyfriend Kabir Chopra.
Summary:
Supreme Court-appointed CoA member Diana Edulji has urged Team India manager Sunil Subramanian to file an "honest report of whatever happened during the England tour".
Summary:
Recalling the incident when he flicked the middle finger to spectators at Sydney Cricket Ground in 2012, Virat Kohli said he got away with it as match referee Ranjan Madugalle understood that he was young.
Summary:
Indian cricketer Yuvraj Singh's wife Hazel Keech took to Instagram to share a picture of herself and the all-rounder posing at the Leaning Tower of Pisa during their vacation in Italy.
Summary:
World number one Rafael Nadal reached US Open semi-finals after defeating world number nine Dominic Thiem in four hours and 48 minutes, in the quarter-final match that ended at 2 am.
Summary:
Japan is preparing to launch two cube satellites next week to test the concept of space elevator in Earth's orbit.
Summary:
Four masked men followed the tourists' vehicle which they hired after landing at the Paris-Le Bourget Airport before fleeing with the luggage.
Summary:
"I said all youngsters should take parents in confidence before marrying", he added.
Summary:
Following reports that claimed Congress President Rahul Gandhi ate non-veg food before the start of his Kailash Mansarovar Yatra, the restaurant he had his dinner at clarified that he ordered only pure veg items from the menu.
Summary:
The Central Board of Secondary Education (CBSE) wrote a letter to teachers on the occasion of Teachers' Day, saying, "Who says heroes are found flying against gravity towards the sky, dressed in flowing capes and mysterious masks?
Summary:
Male graduates will be required to wear dhoti kurtas and female graduates will be required to wear salwar kurtis during the convocation events in Bihar universities.
Summary:
The father of Dr Arif ur Rehman Alvi, the newly elected President of Pakistan, was a dentist to the first Prime Minister of India, Pandit Jawaharlal Nehru before partition.
Summary:
Dr Arif ur Rehman Alvi was elected the 13th President of Pakistan after a vote in the Parliament and provincial assemblies on Tuesday.
Summary:
Shivinder accused the two of oppression and mismanagement of RHC Holding, Religare and Fortis.
Summary:
I have heard the line of it." Salman further said that he has been trying to call him but the director isn't taking his calls.
Summary:
Alia called it a "very special film".
Summary:
Hrithik Roshan shared the first look poster of his film 'Super 30'.
Summary:
Pacer RP Singh announced his retirement from cricket on Tuesday, exactly 13 years after making his international debut.
Summary:
Under the cash and stock deal, Zomato will integrate TongueStun app into it.
Summary:
A Class 11 student in Uttar Pradesh's Shamli district was shot dead by motorcycle-borne assailants when he was on his way to school on Tuesday morning.
Summary:
"A twin city agreement between Delhi and Seoul is likely to be signed.
Summary:
A Mumbai court on Tuesday acquitted the three men, who performed the Kiki challenge with a moving train on July 29, after they assured they'll make an awareness video about the possible dangers of the challenge.
Summary:
A video of a London Tube train travelling with some of its doors wide open and passengers on board has gone viral.
Summary:
"We think it is time for Iran to stand up and explain themselves," Haley said.
Summary:
The shares reached an all-time high of $2,050.50 on Tuesday before falling to $2039.
Summary:
Premier League side Southampton's midfielder Mario Lemina has been handed a fine of ã96,425 (over â¹88 lakh) and banned from driving for a year after his car was caught speeding thrice.
Summary:
Google has launched an 'Art Selfie' feature globally in its Arts & Culture app that matches users' faces to paintings, months after the feature debuted in the US.
Summary:
Productivity app Evernote lost several of its executives, including CTO Anirban Kundu, CFO Vincent Toolan, CPO Erik Wrobel and head of HR Michelle Wagner in one month.
Summary:
A Porsche 911 GT3 Cup crashed and rolled over during the VLN endurance championship this week in Germany.
Summary:
The startup plans to add outlets in Mumbai, Chennai, and Pune by January next year.
Summary:
Notably, Botswana has the world's largest elephant population.
Summary:
Three of the accused were arrested after a case was registered, while three others remain absconding.
Summary:
After this, ATC ordered the pilot to abort take-off.
Summary:
Rejecting the US' warning, Russia claimed that al-Qaeda militants were threatening its military bases in Syria.
Summary:
OPPO F9 Pro hits India's smartphone market with VOOC flash charge technology, with this technology OPPO promises 5-minute charge 2-hour talk.
Summary:
Reports earlier said that the institute had collaborated with a startup 'Young Skilled India' to train young women students in skills befitting daughters-in-law.
Summary:
A video shared by the Utah Division of Wildlife Resources shows a plane airdropping thousands of fish into a lake in the western USA state.
Summary:
He reportedly exhausted all four of his lifelines during his appearance on the show.
Summary:
Comedian Bharti Singh and her husband Haarsh Limbachiyaa have been announced as the first pair of contestants on Salman Khan-hosted reality show 'Bigg Boss 12'.
Summary:
A blind woman from Brazil has claimed she was kicked out of her Uber cab by the driver after he shouted at her for requesting to turn down the car's air conditioning.
Summary:
The Indian rupee tanked 37 paise to close at a lifetime low of 71.58 against the US dollar on Tuesday.
Summary:
Villagers did not believe Ali to be capable of stealing and helped him run.
Summary:
Directorate General of Civil Aviation (DGCA) told the National Green Tribunal (NGT) that it's impossible to dump human excreta from aircraft toilets.
Summary:
Bollywood actor Anushka Sharma was greeted with chants of her cricketer husband Virat Kohli's name in Jaipur, where she had gone to promote her upcoming movie, 'Sui Dhaaga'.
Responding to the chants, Anushka said, "Jee haan haan..
Summary:
Reacting to the Indian contingent's record Asian Games medal tally, Indian cricketer Gautam Gambhir said, "There are many more heroes as compared to what you create in cricket in India.
Summary:
Tariq Ali Awan, a Spain team cricketer, smashed 150 not out in a European Championship Division Two Twenty20 match against Estonia, before smashing 148 runs against Portugal on the same day on September 4, 2012.
Summary:
"Complete genome sequencing will be applied on outstanding athletes competing in the winter games for speed, endurance and explosive force, with at least 300 athletes in each group," an official document read.
Summary:
"I'm very aware he didn't have a great day in the office," Millman said about Federer.
Summary:
Uttar Pradesh's capital city Lucknow is set to host its first international match in 24 years after the BCCI announced that the Indian cricket team will face the Windies in a T20I match on November 6.
Summary:
Congress is planning to hold nationwide protests to criticise the Centre following a rise in fuel prices, according to reports.
Summary:
The Karnataka government on Monday announced it would grant â¹50 lakh to startups across the state that have a strong social focus.
Summary:
Following an order from The Food Safety and Standards Authority of India (FSSAI), Zomato has started delisting non-licensed restaurants from its platform.
Summary:
Summary:
Summary:
The police also arrested the person who was supposed to receive the contraband and seized over â¹17 lakh.
Summary:
The Central Bureau of Investigation (CBI) told a Pune court on Tuesday that Sharad Kalaskar was one of the two shooters who allegedly fired at anti-superstition activist Narendra Dabholkar in August 2013.
Summary:
Summary:
Pakistan's Supreme Court has been informed that Pakistanis own assets and properties worth $150 billion in the UAE, the local media reported.
Summary:
Spain has halted the sale of 400 laser-guided bombs to Saudi Arabia amid concerns about their use in Yemen's civil war.
Summary:
National carrier Air India will get â¹2,100 crore from the Centre in the form of guaranteed borrowing, Ministry of Civil Aviation Secretary RN Choubey said on Tuesday.
Summary:
Shares of Chinese e-commerce major JD.com fell as much as 7% on Tuesday after the firm's CEO, Liu Qiangdong, was arrested for criminal sexual conduct in the US and later released.
Summary:
Amazon stock needed to hit a price of $2,050.27 to reach the $1 trillion mark.
Summary:
Delhi Police has filed an affidavit in the Supreme Court, assuring that the capital would be free of traffic congestion by December 2020.
Summary:
Tulsi was about to tie the knot with someone else at the moment.
Summary:
Actor Salman Khan has revealed that Shah Rukh Khan was the first choice to host the reality show 'Bigg Boss'.
The actor has been hosting the show since the fourth season, which aired in the year 2010.
Summary:
The three were found unconscious in the basement of the factory, the company added.
Summary:
During a gathering in Ghatkopar, BJP MLA Ram Kadam talked about helping youngsters facing issues after they've proposed to a girl, and said, "If parents say they like that girlâ¦we'll help you in eloping with her." "It'll be wrong but I'll help," he said while sharing his mobile number.
Summary:
The arrests come after it was reported that traces of petrol were found in Hassan's room.
Summary:
After a section of a 40-year-old bridge collapsed in Kolkata on Tuesday, West Bengal CM Mamata Banerjee, who is in Darjeeling, said she is unable to go to Kolkata.
There are no flights in the evening," Banerjee said.
Summary:
West Bengal Chief Minister Mamata Banerjee said that 19 people were injured after a section of South Kolkata's Majerhat bridge collapsed today following heavy rainfall.
Summary:
He then forced her to record other girls' videos by installing a camera in the bathroom.
Summary:
Rishi Kapoor, on being asked if he approves of his son Ranbir Kapoor's girlfriend Alia Bhatt, said, "It's Ranbir's life.
I like her, Ranbir likes her." "I can't be judgemental...My uncles Shammiji, Shashiji and I chose our life partners.
Summary:
Summary:
Andrew Lane contracted the potentially fatal necrotising fasciitis infection following the surgery to remove his prostate gland.
Summary:
Reacting to England's Alastair Cook announcing his retirement, Shahid Afridi tweeted, "Cook you are a true great of the game, all the very best in your life after cricket.
Summary:
Raul Rusescu, a Romanian footballer who plays for Romanian club FCSB, snatched a manager's note from an opponent during a UEFA Europa League Playoff match against Rapid Wien.
Summary:
Former Haryana CM Bhupinder Singh Hooda, who has been named in an FIR filed in the 2008 Gurugram land deal case, has claimed the case is the result of the "government's frustration".
Summary:
BJP leader KV Singh Deo on Monday accused the Odisha government of playing "cheap politics" and "disrespecting" Union Minister Ashwini Kumar Choubey during his visit to the state to inaugurate a medical college.
Summary:
The police said that Khan has been arrested, although his weapon has not been traced yet.
Summary:
President Ram Nath Kovind has said that youth shouldn't get carried away by the instantness of technology.
Summary:
A 30-year-old man was arrested after allegedly raping his 45-year-old mother at their residence in Madhya Pradesh's Barwani district while his seven-year-old son watched, the police said today.
Summary:
Three female members of a family were allegedly raped by a man who forced them to consume a drug-laced juice in Hojai district, Assam.
Summary:
Nike customers burnt shoes and destroyed their apparels to protest the brand's decision to appoint American football player Colin Kaepernick as the face of its new campaign.
Summary:
Russia and Iran are supporting Assad's government in the ongoing civil war in Syria.
Summary:
Andrey Nesterenko, a senior Russian diplomat has said that the US is attempting to meddle in its upcoming elections.
Summary:
At least six people have been killed and several others left injured in Japan after it was hit by the strongest storm in 25 years.
Summary:
Dutch bank ING has agreed to pay $900 million in a settlement with prosecutors for money laundering and corrupt practices.
Summary:
"India's regulatory and tax framework around fuel hits airlines serving this market even harder," IATA's CEO Alexandre de Juniac said.
Summary:
Majerhat bridge in South Kolkata collapsed today following heavy rainfall, leaving at least five people dead and several others trapped.
The bridge connects Behala to other parts of Kolkata and runs over the Majerhat railway station.
Summary:
After the poster of 'Jalebi' was released, Twitter users compared it to the iconic 'Korean War Goodbye Kiss' picture by photographer Frank Brown in 1950.
Summary:
Sonu Sood, while speaking about quitting Kangana Ranaut starrer 'Manikarnika: The Queen of Jhansi', said, "I only said I can't be working with two directors on one set." "Whatever films I've done, 80-90 movies, I have worked with one director at a time," he added.
Summary:
The driver, who earlier thought the phone was his own Pixel 2 XL, took pictures of the phone before returning it to the owner.
Summary:
Amazon India on Tuesday launched a Hindi version of its mobile website and app for Android smartphones.
Summary:
Scientists harvested a male lion's sperm, which was placed inside the lioness and she gave birth to two healthy cubs 3.5 months later.
Summary:
At least 12 more people were killed and 14 injured in rain-related incidents in Uttar Pradesh since Monday night, Relief Commissioner Sanjay Kumar said.
Summary:
It was hearing an RTI plea seeking details of expenses incurred during these tours from 2015-2017.
Summary:
"A lot of Tamils in Canada are LTTE people and they use this word 'fascist' for the BJP," he added.
Summary:
A judge in Rajasthan read out a poem she had written while awarding death sentence to a child rapist.
Summary:
He said that there were recent tensions with the US as it plans to give a role to India in Afghanistan.
Summary:
Lockheed Martin announced Tuesday that it will be producing wings for its F-16 fighter jets in India.
Summary:
Former Chilean President Michelle Bachelet, who assumed her role as the UN human rights chief on Monday, was detained and tortured in a secret prison during Augusto Pinochet's dictatorship.
Summary:
Haqqani was a former asset of the US' intelligence agency CIA and fought the Soviet occupation of Afghanistan.
Summary:
Goldman Sachs' 56-year-old incoming CEO David Solomon on Sunday surprised people as he took over the DJ booth and began playing music at a beach party in the US.
Summary:
South Africa entered recession for the first time since 2009 in the second quarter, data showed on Tuesday.
Summary:
Filmmaker Anurag Kashyap, whose upcoming film 'Manmarziyaan' is set to release on September 14, has said that he believes in the film because it shows how people behave in love and how indecisive they are.
Summary:
Summary:
Tanushree Dutta and her sister Ishita Dutta have been approached to be a part of Salman Khan-hosted reality TV show Bigg Boss 12, as per reports.
Summary:
Manchester United's manager Jose Mourinho has been given a one-year jail sentence by the Spanish tax authorities for having evaded tax in the nation.
Summary:
Google has hired its former employees and relocated existing ones to put together a strong leadership team in India.
Summary:
Twitter CEO Jack Dorsey has been personally taking decisions on banning controversial accounts, according to reports.
Summary:
Researchers in Australia have developed a clock called 'The Sapphire Clock' that would lose or gain one second in 40 million years.
Summary:
Seventeen women, including five minor girls, have been rescued by the police from alleged sex and human traffickers in East Champaran district, Bihar.
Summary:
A woman in Uttar Pradesh's Muzaffarnagar has accused her brother-in-law of raping her on the promise of marriage, the police said on Tuesday.
She said her brother-in-law had developed a physical relationship with her following the death of her husband.
Summary:
Market regulator SEBI on Tuesday said that it is "preposterous and highly irresponsible" to claim that the new FPI norms will lead to $75 billion outflows.
Summary:
The debt, its first since incorporation, was raised through non-convertible debentures (NCDs).
Summary:
The Kerala government has decided to cancel all government-funded events for one year, and instead use the money for relief operations and rebuilding of the flood-hit state.
Summary:
Women belonging to Below Poverty Line (BPL) families in Rajasthan will soon get free mobile phones under the Bhamashah Yojana, the state government has announced.
Summary:
Wajid Khan, one of the composers comprising the duo Sajid-Wajid known for composing the song 'Fevicol Se', has denied reports on him being hospitalised over severe chest pain.
Wajid added, "This has shown me how much you all care about me."
Summary:
The man pulled out a silver plated semi-automatic handgun and fired several shots into a crowded area so deputies engaged and returned fire, police said.
Summary:
Actress Priyanka Chopra's future brothers-in-law Joe Jonas and Kevin Jonas were spotted at the US Open doing the 'floss' dance, a dance move from the popular online multiplayer shooter game 'Fortnite'.
Summary:
Actor Aditya Pancholi has been acquitted by the Bandra Metropolitan Court in a 2015 assault case.
Summary:
Indian contingent's deputy chef de mission, RK Sacheti, flew back to India on a business class ticket while the athletes who competed at Asiad in Indonesia travelled in economy class.
Summary:
"When two people take an auto-rickshaw they pay a fare of â¹10 which means they are charged â¹5 per kilometre," said Sinha.
Summary:
Karnataka CM HD Kumaraswamy has directed the state's Education Department to study the steps taken by Delhi government to improve the quality of education in schools and to submit a report on it.
Summary:
The hole on Soyuz spacecraft docked at the Earth-orbiting space station was caused by a drilling machine and not a micrometeorite, Russian space agency chief Dmitry Rogozin said.
Summary:
After NITI Aayog Vice-Chairman Rajiv Kumar blamed former RBI Governor Raghuram Rajan's policies for declining economic growth rate over the last three years, Congress spokesperson Randeep Surjewala termed his remarks "obnoxious and laughable".
Summary:
The Supreme Court refused to accept a plea by Lieutenant Colonel Prasad Shrikant Purohit ndemanding a Special Investigation Team (SIT) probe into his alleged abduction, illegal detention and torture in 2008 Malegaon blast case.
Purohit, who's currently out on bail, is an accused in the case.
Summary:
Social activist Anna Hazare will sit on a hunger strike in Maharashtra's Ralegan Siddhi village from October 2 over issues like appointment of Lokpal and â¹5,000 monthly pension for farmers among others.
Summary:
The number showed an increase as compared to last year, when 360 had died in overcrowded locals between January and July.
Summary:
Abhishek Bachchan, while speaking about taking a two-year break from films, said, "It was just that I felt I, as an actor, had become a bit complacent." "It was a personal decision about how I want to approach my work.
Summary:
Kangana Ranaut will be reshooting 'Manikarnika: The Queen of Jhansi' at an extra cost of â¹20 crore after Sonu Sood's exit from the film, as per reports.
Summary:
Pakistani pacer Hasan Ali, a former world number one ODI bowler known for his bomb explosion celebration after taking a wicket, has reportedly beaten Indian captain Virat Kohli's Yo-Yo Test score of 19.
Summary:
Former Brazilian striker Ronaldo became the majority stakeholder in Spanish La Liga team Real Valladolid after buying 51% of the club from president Carlos Suarez.
Summary:
After crashing out of US Open in the fourth round following his defeat to world number 55 John Millman on Monday, five-time champion Roger Federer said the weather "was very hot" and "he felt he couldn't get air".
Summary:
Vikas Krishan, the first-ever Indian boxer to bag a medal in three consecutive Asian Games, has said there's no point in him taking money that government is spending on training and "failing again and again" at Olympics.
Summary:
The technique can help reviewers identify 700% more child abuse content, Google has claimed.
Summary:
Blaming the NDA government for the "collapse" of the Indian economy, Andhra Pradesh CM Chandrababu Naidu said the value of rupee against US dollar and the price of petrol per litre might hit a century soon.
Summary:
Tencent-backed Chinese startup Meituan-Dianping has started taking orders for a Hong Kong initial public offering (IPO) that could raise as much as $4.4 billion.
Summary:
Changan will continue to make and sell Suzuki-branded cars in China under a license.
Summary:
Communist Party of India (Marxist) Kerala unit MLA PK Sasi has been accused of allegedly sexually harassing a woman youth leader and misbehaving with her.
Summary:
Former White House intern Monica Lewinsky walked off stage over a question about former US President Bill Clinton during an interview in Jerusalem.
Summary:
IATA is a grouping of over 280 airlines including Air India, Jet Airways and Vistara.
Summary:
TCS share price rose 1.7% to a record high of â¹2,091 on the BSE, pushing the company's market capitalisation to â¹8.01 trillion.
Summary:
Google co-founders Larry Page and Sergey Brin, while pursuing PhD at Stanford University in 1996 used Lego pieces to house their first storage device.
Summary:
Google was incorporated 20 years ago on September 4, 1998.
Summary:
Summary:
An FIR has been filed against Kumar Sanu in Bihar's Muzaffarpur district for singing till late at night at a function in a school on Monday.
Summary:
Slamming the Pune Police's claim that Maoists were plotting to assassinate PM Narendra Modi, an editorial in Shiv Sena mouthpiece 'Saamana' said he has the world's best security and not even a bird can fly over his head.
Summary:
Food delivery app Swiggy is reportedly in talks to raise $500-700 million in funding, a significant portion of which will be invested by China's Tencent Holdings.
Summary:
"The Indians don't need our money.
In effect we're sponsoring an Indian Moon launch," said an MP as UK faces funding cuts in public healthcare.
Summary:
ISRO already has two ground stations, IMGEOS at Telangana's Shadnagar built in 2011, and AGEOS in Antarctica.
Summary:
Pakistan's Airport Security Force (ASF) punished a female employee after she posted a video dancing to Indian singer Guru Randhawa's song 'High Rated Gabru'.
Summary:
Indian Army Chief General Bipin Rawat said, "Social media is here to stay, soldiers will use it.
Summary:
The accused had contacted the 20-year-old victim claiming that kidnapping and theft charges were registered against her and sought money to save her.
Summary:
The police said they found nothing suspicious, except some rats running near the alarm system.
Summary:
The cop was allegedly drunk and had hit the woman with a rubber whip.
Summary:
A North Korean official known to have been involved in development of the country's nuclear and missile technology has died, state-run KCNA news agency said on Tuesday.
Summary:
Called 'Discovery', the coin is considered legal tender and will be sold to the highest bidder.
Summary:
Calling on Myanmar for the immediate, unconditional release of two Reuters journalists sentenced to 7 years in jail, the US Ambassador to the UN Nikki Haley said the conviction was another "terrible stain" on the Myanmar government.
Summary:
Summary:
Kiara Advani, while denying the reports that she has undergone a plastic surgery, took to her Instagram story and wrote, "You might not fancy the cheeks but it was no doctor just some yummy biryani from the night before." "Calm down peeps don't jump to conclusions," she further wrote.
Summary:
The Indian bridge team that won three medals, including a gold medal, at the recently-concluded Asian Games is yet to receive the official team blazers.
Summary:
After India lost their third successive Test series in England, ex-India cricketer Virender Sehwag said "best travelling teams are made by performances on the ground and not by sitting in the dressing rooms and talking about it".
Summary:
Barcelona forward Lionel Messi has said it surprised him when Cristiano Ronaldo left Real Madrid for Juventus.
Summary:
Five-time Grand Slam champion Maria Sharapova crashed out of US Open in the fourth round for the fourth time after losing to world number 24 Carla Suárez Navarro, who was celebrating her 30th birthday on Monday.
Summary:
European news agencies have slammed Google and Facebook of "plundering" news for free, calling on the internet giants to share more of their revenues with the media.
Summary:
A Tamil Nadu court has granted bail to a woman who was arrested yesterday for allegedly shouting "fascist BJP government down, down" on a flight in front of BJP state President Tamilisai Soundararajan.
Summary:
A Twitter user recently shared a picture of his parents sitting ready at their dining table with their luggage packed at 10:33 am for a flight at 3:10 pm.
Summary:
Authorities in China's Shenzhen have sacked a kindergarten principal after she organised a pole dance performance to welcome students back to school after summer holidays.
Summary:
Asus has released an OTA (Over-The-Air) update for Zenfone5Z that adds 12 new functionalities and 4 camera improvements.
Summary:
The third bomb exploded at Gokul Chat and had killed 32 people.
Summary:
A man serving jail term for murder and dacoity in Chhattisgarh's Bilaspur district jail sent a ransom letter to Odisha CM Naveen Patnaik demanding â¹50 crore.
Summary:
Incorporated on September 4, 1998, Google began as a research project in 1996 by Stanford University students Larry Page and Sergey Brin.
Summary:
Actor Shah Rukh Khan, who recently appeared on Salman Khan's show 'Dus Ka Dum 3', revealed he had his meals at Salman Khan's place when he came to Mumbai as a struggling actor.
Summary:
This comes a day after Nimrat, who has worked in films like 'Airlift', denied dating 56-year-old Shastri, terming the reports as "fiction".
Summary:
"The issue is nearly fixed for everyone and we're sorry for the inconvenience," Facebook said.
Summary:
"If something were to happen to (Scindia), he would be the first person to be arrested," she said.
Summary:
Also, that woman, that plump one...if you can't control them...we'll arrest them in a cannabis case," he reportedly said.
Summary:
The Aligarh Muslim University (AMU) on Monday hit back at the University Grants Commission (UGC) over the latter's idea to drop the word 'Muslim' from its name, saying the proposition is "preposterous".
Summary:
An MiG 27 fighter jet of the Indian Air Force crashed during a routine training mission in Banar village of Rajasthan's Jodhpur on Tuesday.
Summary:
He had checked-in at the hotel on Friday, and a staffer noticed a foul smell on the floor on Monday, after which the police was informed.
Summary:
A 70-year-old man, who was taking his ailing cow to a neighbouring village for treatment, was allegedly thrashed, tonsured and thrown in gutter by vigilantes in Uttar Pradesh on suspicion that he was abandoning the cow.
Summary:
A CCTV footage showing three men beat a 70-year-old retired sub-inspector with sticks as locals and passersby watch in Uttar Pradesh's Allahabad has surfaced online.
Summary:
The Indian Navy has defeated teams from 22 other nations to win Kakadu Cup 2018 which was organised by the Australian Navy as part of its multi-nation maritime exercise.
Summary:
The Afghan Taliban on Tuesday announced the death of militant group Haqqani Network's founder Jalaluddin Haqqani following a prolonged illness.
Summary:
Shah Rukh Khan on Monday celebrated Janmashtami with his youngest son AbRam and wife Gauri at his residence Mannat where he was seen breaking dahi handi in the garden area.
Summary:
Summary:
Jacqueline Fernandez will star opposite Kartik Aaryan in Hindi remake of Kannada film 'Kirik Party', which will be their first film together.
Summary:
Sanjay Dutt and Madhuri Dixit have reportedly shot scenes together for their upcoming film 'Kalank', contrary to earlier reports that had suggested they won't be having any scenes together.
Summary:
Five-time champion Roger Federer crashed out of US Open after losing to world number 55 John Millman in four sets in the fourth round on Monday.
Summary:
Gareth Bale's bicycle kick goal against Liverpool in the CL final has also been included.
Summary:
Cleo Duckett, a disabled single mother, claims to have been left penniless after her 10-year-old son spent her money on the Fortnite game in South Wales.
Summary:
Adding that it is not an easy business, Buffett said.
Summary:
A panchayat member who was affiliated with the Bahujan Samaj Party in Uttar Pradesh's Meerut was shot dead by two unidentified men in Delhi's Batla House locality on Monday.
Summary:
Duterte said he hoped the Holocaust will never be repeated, adding that "despots" have no place in the modern world.
Summary:
Everstone tied up with Burger King Worldwide in 2013 to set up the franchise for India and Indonesia.
Summary:
Get your phone charged even while playing at a faster speed with VOOC technology.
More than 90,000,000 people are now enjoying the technology of VOOC.
Summary:
Actor Shah Rukh Khan, who recently appeared on Salman Khan's show 'Dus Ka Dum 3', said it is because of Salman Khan and his father Salim Khan that he has become 'Shah Rukh Khan'.
Summary:
Madhya Pradesh BJP MLA Uma Devi Khatik's 19-year-old son Princedeep Khatik in a Facebook post on Monday threatened to shoot Congress MP Jyotiraditya Scindia.
If you step in Hatta then I will shoot you," the post read.
Summary:
The central bank's employees are demanding pension updation for about 21,000 retirees.
Summary:
Her home should be her first priority." Reports at the time claimed Shastri and actress Amrita Singh were engaged but the engagement was called off after a few years.
Reports of Shastri dating Nimrat Kaur surfaced recently but the actress denied it.
Summary:
Fasten Seat Belts." Last year, KRK's Twitter account was suspended.
Summary:
In compliance with Bombay High Court's order, the Ministry of Information and Broadcasting has asked Indian television channels to use the term 'Scheduled Caste' instead of 'Dalit' in its advisory.
Summary:
However, the student claimed he had used his own picture.
Summary:
His father had been battling fourth-stage bone cancer for the past two years.
Summary:
Later, Tamilisai filed a police complaint against the student.
Summary:
The woman's family rescued her after hearing her cries and nabbed the accused.
Summary:
A 29-year-old man with a Master of Business Administration (MBA) degree joined the terror outfit Hizbul Mujahideen three days ago.
Summary:
Accusing the Congress of attacking his bus with stones in Churhat on Monday, Madhya Pradesh CM Shivraj Singh Chouhan has said that the party is "thirsty" for his blood.
Summary:
A gold tiffin box weighing 2 kg, a cup, saucer, and spoon studded with rubies, diamonds and emeralds were stolen from Nizam's Museum in Hyderabad, police said on Monday.
Summary:
Jailed RJD chief Lalu Prasad Yadav has requested Ranchi's RIMS hospital where he is admitted to change his ward citing barking of dogs and poor hygiene, his aide Bhola Yadav said.
Summary:
The court questioned how can the police hold a press conference when the case is sub judice.
Summary:
A shop in Kuwait has been shut down for sticking fake eyes on fish to make them look fresher, the local media reported.
Summary:
Anil Kapoor, while talking about his son-in-law Anand Ahuja, said that Anand is more like a son and a friend to him.
He's very work-oriented, so we talk about that," Anil added.
Summary:
Argentine forward Lionel Messi has been omitted from the final three-man shortlist for FIFA's men's player of the year award, after featuring in the top two for 11 straight years.
Summary:
Olympic bronze medal-winning boxer Vijender Singh has urged West Bengal Chief Minister Mamata Banerjee to increase the cash award for heptathlete Swapna Barman from â¹10 lakh for bagging gold at the Asian Games 2018.
Summary:
Talking about social media addiction, Facebook's former employee Sandy Parakilas in a recent interview said that the company should face new laws over its deliberate failure to protect children.
Summary:
The Shiv Sena on Monday slammed the Maharashtra Police for arresting five activists with alleged Maoist links.
Summary:
Further, the police said the water reached nearby eateries and shops.
Summary:
Dudi, who was speaking to farmers present at his residence, said the BJP government had betrayed farmers by not waiving their loans.
Summary:
The Myanmar military on Monday issued an apology acknowledging that two photographs it published in a book on the crisis over the Rohingya Muslim minority were "published incorrectly".
Summary:
Mocking the idea of former US State Secretary John Kerry running against him in 2020, President Donald Trump tweeted, "I should only be so lucky." Trump further called Kerry "the father of the now terminated Iran nuclear deal".
Summary:
Jindal Power and Steel (JSPL) is looking at splitting its steel, power, and international businesses into three separate entities, Chairman Naveen Jindal has said.
Summary:
The remaining seats were won by the independents and others.
Summary:
Nine people have died due to rat fever (leptospirosis) in Kerala since August 15 and 37 suspected deaths are awaiting laboratory confirmation, state Health Minister KK Shailaja said.
Summary:
Kerala's 21-year-old student Hanan Hamid, who was trolled for selling fish to raise money for her studies, suffered injuries after her car hit an electric pole on Monday.
Summary:
A tigress with three newborn cubs was spotted at the Sariska Tiger Reserve in Rajasthan, with the total tiger population at the reserve now reaching 17.
Summary:
Hyderabad's Malkajgiri area DCP AR Umamaheswara Sarma on Sunday saluted his IPS daughter Sindhu Sarma on duty when they came face to face at a political rally.
Summary:
Beleaguered liquor baron Vijay Mallya was granted three weeks by a special Mumbai court on Monday to respond to Enforcement Directorate (ED) application seeking to declare him a 'fugitive economic offender'.
Summary:
The Congress has won the majority of seats in the vote count for 105 Urban Local Bodies (ULBs).
Summary:
At least 10 people were shot at an apartment complex in the US state of California on Sunday, police said.
Summary:
After suspending an aid of $300 million to Pakistan, the US' Defence Department has said that it continues "to press Pakistan to indiscriminately target all terrorist groups".
Summary:
Allahabad's Baba Da Dhaba restaurant will serve a 'Yogi Thali' for â¹10 on the first day of every month.
Summary:
Claiming the people of Kerala showed "great resilience" during the floods, CM Pinarayi Vijayan said, "We will bounce back in record time.
Summary:
Logan, a 14-year-old boy, headbutted his mother when she tried to stop him from playing the Fortnite game in Australia.
Summary:
Formula One has started using battery-operated portable sensors integrated into the drivers' racing gloves, designed to monitor their health during the race.
Summary:
Rajasthan AICC in-charge Avinash Pande has denied reports of infighting and said all Congress leaders in poll-bound Rajasthan are "on the same page" and working towards its victory.
Summary:
NASA said that once the skies above Opportunity rover are clear, the agency will immediately begin the campaign.
Summary:
The UAE's PM and Vice President, Sheikh Mohammed bin Rashid Al Maktoum, has announced the names of two astronauts for the country's first astronaut programme.
Summary:
A 35-year-old man was tied to a tree and his hand was chopped off by a family following a dispute over missing cows in Madhya Pradesh's Raisen district, the police said.
Summary:
As many as 22 children fell ill due to food poisoning after consuming chowmein and chhole bhature from a roadside eatery in the Saran district of Bihar on Saturday, the police said.
The children are out of danger.
Summary:
A 21-year-old man has been booked for allegedly raping his 15-year-old cousin after she went to his house to celebrate Rakshabandhan on August 26 in Banda district, Uttar Pradesh.
Summary:
Thirteen people were killed and two others were seriously injured when a van fell into a gorge in Uttarkashi, Uttarakhand today.
Summary:
At least 12 people were killed when a helicopter carrying munitions crashed in Afghanistan's Balkh province on Sunday, Afghan officials said.
Summary:
The central bank added 8.46 tonnes of gold last fiscal, taking the level of gold reserves to 566.23 tonnes as on June 30, 2018.
Summary:
India's largest multiplex chain PVR Cinemas' CFO Nitin Sood has said the company's "big focus" is to look at Saudi Arabia, which recently lifted a 35-year ban on cinema.
Summary:
South Korean electronics giant Samsung is reportedly planning to stop TV production in India as it works out a plan to import the units from Vietnam.
Summary:
The rupee has fallen around 10.3% in 2018, making it the worst-performing Asian currency.
Summary:
Denying reports of dating India's 56-year-old coach Ravi Shastri, 36-year-old actress Nimrat Kaur on Monday said that everything she read about herself today was "fiction".
Summary:
Actress Kriti Sanon's Instagram account was hacked on Monday.
Kriti took to Twitter to ask her fans not to respond to any messages from her Instagram account.
Summary:
Director DJ Caruso has confirmed that Deepika Padukone will star in the fourth installment of the Vin Diesel starrer 'xXx' film franchise.
Summary:
Veteran singer Lata Mangeshkar, when asked about the recreated version of her song 'Chalte Chalte' from the 1972 film 'Pakeezah' for the film 'Mitron' by Atif Aslam, said, "I don't want to hear it." She added, "This trend of remixing old songs saddens me...
Summary:
In a tweet wishing Janmashtami to people on Sunday, author Chetan Bhagat revealed that all the leading men in his novels till date are named after Lord Krishna.
Summary:
Senior AAP leader and Delhi minister Gopal Rai on Monday refuted the possibility of the party entering into a pre-poll alliance with the Congress in 2019 Lok Sabha elections.
Summary:
Members of the Rashtriya Swabhiman Dal on Sunday pasted a poster reading 'Atal Marg' on the Akbar Road signboard in Delhi.
Summary:
A boy with 12 fingers and 12 toes in Uttar Pradesh's Barabanki is being threatened by his relatives, who are trying to kill him, claimed his parents.
Summary:
NITI Aayog Vice Chairman Rajiv Kumar on Monday blamed former RBI Governor Raghuram Rajan's policies for declining economic growth rate over the last three years.
Summary:
Father Sanu Puthussery, a Catholic priest, addressed around 250 members of Muslim community inside a mosque, thanking them for "selflessly" feeding the 580 flood-hit families who had taken shelter at his church.
Summary:
Around 10 Congress party workers were injured in an acid attack on victory rally of their candidate in the urban local body polls in Karnataka's Tumkur on Monday.
Summary:
The International Court of Justice on Monday began hearing Mauritius' case against the UK's claim over the Chagos Islands in the Indian Ocean.
Summary:
A kindergarten in the Chinese city of Shenzhen has been slammed over a pole dance performance to welcome its students back to school after summer holidays.
Summary:
The government has spent â¹132.38 crore on advertisements for GST, the Bureau of Outreach and Communication has said in an RTI reply.
Summary:
Tiger and Hrithik will be seen in Siddharth Anand's upcoming dance film.
Summary:
England's highest run-scorer in Test cricket, Alastair Cook, has revealed he would retire from international cricket at the end of the ongoing Test series against India.
The left-handed batsman had stepped down from a four-year spell as Test captain in February 2017.
Summary:
The 35-year-old jumped with his back facing the goal and diverted a low cross into the net in the 75th minute.
"Goal of the season...Hands down.
Summary:
Google has confirmed a WiFi bug in the Android OS which exposes the location data of users' smartphones.
Summary:
Vice President Venkaiah Naidu on Sunday called on political parties to evolve a consensus on a national code of conduct for MPs and MLAs both inside and outside legislatures.
Summary:
Summary:
China's Didi Chuxing is reportedly planning to invest in hotel aggregator Oyo, which would be the ride-hailing giant's second bet on an Indian startup.
Summary:
Facebook Co-founder Eduardo Saverin's venture capital firm, B Capital Group, is reportedly in advanced talks to lead a Series C round of funding in Indian lending startup Kissht.
Summary:
Maharashtra Congress Committee chief Ashok Chavan today broke a 'dahi handi' (earthen pot) claiming it symbolised alleged "sins" of the BJP-led governments in the state and Centre.
Summary:
The Bihar police has arrested one person and launched a search for several others in connection with a case wherein a man was thrashed and made to lick spit off the ground.
Summary:
During the opening of a China-Africa summit on Monday, Chinese President Xi Jinping pledged $60 billion (over â¹4 lakh crore) in financial support to Africa.
Summary:
Billionaire Anil Ambani-led Reliance Infrastructure (RInfra) has won a â¹200 crore arbitration award against the National Highway Authority of India (NHAI).
Summary:
Indian equity benchmark Sensex closed 622 points lower from day's high on Monday and registered its longest losing streak in over three months.
Summary:
James Bond actor Daniel Craig and his wife Oscar-winning actress Rachel Weisz welcomed a baby girl, their first child together, as per reports.
Summary:
In a letter to ticket aspirants and workers ahead of Assembly elections, Madhya Pradesh Congress Committee has directed them to become active on social media and to get 15,000 likes on their Facebook page and 5,000 followers on Twitter.
Summary:
Patidar leader Hardik Patel on Sunday declared his will as his hunger strike demanding reservation for Patidar community entered its ninth day.
Summary:
Online tutoring startup Byju's is reportedly in advanced talks to raise $200-300 million from two new investors, General Atlantic and Singapore-based Temasek Holdings.
Summary:
Bengaluru-based B2B online marketplace Udaan, founded by three former Flipkart executives, has raised $225 million funding from DST Global and Lightspeed Venture Partners to become one of India's fastest billion-dollar startups or a unicorn.
Summary:
"How can non-vegetarian and liquor be served on holy river Ganga?" Ganga Mahasabha General Secretary Jitendranand Saraswati asked.
Summary:
The Madras High Court has upheld Tamil Nadu government's order banning protest at Marina Beach, observing it cannot be used for agitation as public order is equally important.
Summary:
The latest fuel prices are not only a new high for the city but also the highest for any of the metro cities.
Summary:
Rash Pal Todd and his son Mandhir Singh Todd, British citizens of Indian origin who are wanted for allegedly duping banks of around â¹120 crore, posed as wedding guests while trying to escape from India.
Summary:
Another approach is to call FSSAI's toll-free number 1-800-112-100.
Summary:
Palestinian leader Mahmoud Abbas has said that the US asked him if he supported forming a Palestinian-Jordanian confederacy as part of a solution to end the conflict with Israel.
Summary:
Philippine President Rodrigo Duterte has apologised to former US President Barack Obama for calling him "son of a wh**e" in 2016.
Duterte further said his nation's relationship with the US has improved under President Donald Trump, who he described as a "good friend".
Summary:
Billionaire Chairman of London-listed Vedanta Resources, Anil Agarwal, will take the miner private on October 1, after the holders of 26% of shares agreed to sell to his family trust.
Summary:
The ICICI Bank's board has asked Justice BN Srikrishna panel, which is conducting probe against CEO Chanda Kochhar, to cover all property dealings by the Kochhar family since she took over as CEO.
Summary:
Jackie Shroff will be playing the role of Salman Khan's father in Ali Abbas Zafar's upcoming film 'Bharat'.
Summary:
On the occasion of her 1999 film 'Sangharsh' completing 19 years of release today, Preity Zinta wrote on social media, "After all these years, this film remains closest to my heart." "If I was not an actor...would probably be Reet Oberoi from 'Sangharsh'," she further wrote.
Summary:
Summary:
Summary:
Hinting at the controversy surrounding 'Manikarnika: The Queen of Jhansi', which is now being directed by Kangana Ranaut, 'Simran' writer Apurva Asrani tweeted, "A star hijacking a film...is the worst form of hara-kiri there is." "Many directors...have replaced tantrum throwing stars early on," he further wrote.
Summary:
India captain Virat Kohli became the fastest cricketer to score 4,000 Test runs as captain, achieving the feat during his 58-run knock in the fourth Test's second innings on Sunday.
Summary:
Boxer Amit Panghal, who defeated 2016 Olympic champion Hasanboy Dusmatov to bag Asian Games 2018 gold, has said if he could get to meet actor Dharmendra, his happiness would double.
Summary:
Christian von Koenigsegg, the head of supercar maker Koenigsegg, has said that the Tesla Roadster's performance of reaching nearly 0-100 kmph in 1.9 seconds was "embarrassing" them.
Summary:
Bengaluru-based lending startup SlicePay has raised nearly $15 million in an ongoing Series A funding round led by China-based FinUp Finance Technology Group.
Summary:
Five people were arrested in Coimbatore, Tamil Nadu on Sunday for allegedly conspiring to eliminate a few leaders of Hindu outfits.
Summary:
The alleged extremists arrested for planning to bomb last year's Sunburn Festival in Pune have reportedly confessed to anti-terror police that they aborted the plan because of extensive CCTV cover at the venue.
Summary:
Two Malaysian women convicted of attempting lesbian sex in a car were caned at the Sharia High Court in Terengganu on Monday.
Summary:
Wipro's shares surged as much as 8.5% on Monday after the company said it had bagged an up to $1.6 billion 10-year outsourcing contract from US-based Alight Solutions, its biggest deal till date.
Summary:
While talking the Indian smartphone market, OnePlus founder Pete Lau said, "Being number one is not our goal.
Summary:
Two Reuters journalists who investigated the killings of 10 Rohingya Muslims were on Monday sentenced to seven years in prison by a Myanmar court for breaching a law on state secrets.
Summary:
Singer Lily Allen has revealed that she slept with female prostitutes while on tour for her album 'Sheezus'.
In an Instagram post she shared, Lily wrote, "I was lost and lonely and looking for something.
Summary:
Team India head coach Ravi Shastri and actress Nimrat Kaur, known for her roles in films like 'Airlift' and 'Lunchbox', have been secretly dating for over two years, as per reports.
Summary:
Rapper Eminem has mentioned Mahatma Gandhi and India in the theme song for the film 'Venom'.
Summary:
Punjab minister Navjot Singh Sidhu has said Kargil war occurred after ex-PM Atal Bihari Vajpayee's Pakistan visit and Pathankot attack after PM Narendra Modi's visit, while his visit led to a call for peace.
Summary:
Britain's Prince Charles has acquired Tata Motors' electric Jaguar I-Pace painted in Loire blue, a choice not available to other buyers.
Summary:
Madhya Pradesh CM Shivraj Singh Chouhan escaped unhurt after protesters hurled stones and waved black flags at his vehicle in Churhat, which is the Assembly constituency of Congress leader Ajay Singh.
Summary:
The capsules were later taken out of the passenger's body.
Summary:
Defence Minister Nirmala Sitharaman on Sunday visited the Balbir forward post in Jammu and Kashmir, becoming the first in her office to visit the post.
Summary:
South Korean capital Seoul will begin daily checks for hidden cameras in public toilets in response to protests over videos filmed using spy cameras.
Summary:
Responding to the US Defence Department's decision to cancel â¹2,100 crore in aid to Pakistan, Foreign Minister Shah Mahmood Qureshi has said, "This is not aid.
Summary:
Liu was released on Saturday after police determined there was no substance to the claim, the company said in a statement.
Summary:
26-year-old Pakistani model Anam Tanoli on Saturday was found dead by her husband at their residence in Lahore where her body was found hanging from the ceiling fan.
Summary:
Actor Sidharth Malhotra on Sunday took to social media and shared his childhood picture on the occasion of Janmashtami and captioned it, "Me dressed as Krishna by my beloved dadi." "For some reason placed next to a tall plant.
Summary:
The first look poster of Mahesh Bhatt's 'Jalebi' has been unveiled.
Summary:
Shahid Kapoor has said that as an actor one is always lonely, adding, "You are always in the spotlight so that's what people see.
Summary:
England all-rounder Ben Stokes accidentally punched leg-spinner Adil Rashid in the face while celebrating Team India vice-captain Ajinkya Rahane's wicket on the fourth day of the fourth Test on Sunday.
Summary:
Juventus forward Cristiano Ronaldo's eight-year-old son, Cristiano Ronaldo Jr, scored a total of four goals in his first match for Juventus Under-9 team on Sunday.
Summary:
Forward Romelu Lukaku scored twice as Manchester United defeated Burnley 2-0 in the Premier League on Sunday, registering their first victory after having lost two successive matches.
Summary:
Barcelona captain Lionel Messi and forward Luis Suárez netted two goals each as Barcelona defeated Huesca 8-2 in the La Liga on Sunday.
Summary:
In a study, a patient suffering from metastatic prostate cancer was given a novel drug combination.
Summary:
Uber and its former CEO Travis Kalanick have won a lawsuit against the investors claiming the startup's illicit business practices cost investors billions of dollars.
Summary:
The Mumbai Police's official Twitter handle has tweeted a post urging people to 'follow the rules' using a scene from popular American series 'Riverdale'.
And when necessary, I break them." The police tweaks her dialogue to, "Well, I follow rules.
Summary:
The Turkish lira lost nearly 25% of its value against the US dollar in last one month after the US imposed sanctions.
Summary:
Around 400 prisoners have escaped from a facility in the Libyan capital Tripoli amid fighting between rival armed groups in the city.
Summary:
This is the third successive time that India have lost a Test series in England.
Summary:
Grammy-award winning band U2 cancelled their concert in Berlin, Germany as lead vocalist Bono lost his voice after singing a couple of songs.
but after a few songs, he suffered a complete loss of voice.
Summary:
"Starting 1 September 2018, we will be switching off all the transactional categories on Tapzo," a statement said.
Summary:
ISRO will conduct 19 missions, including 10 satellites and nine launch vehicles, in the next seven months between September and March, said ISRO Chairman K Sivan.
Summary:
The couple started their journey in the over-a-century old train at 9:10 am and reached Ooty at 2:40 pm on Friday.
Summary:
Her father alleged Murali raped her on the pretext of marriage.
Summary:
No human tissue was found by doctors in the plastic bags suspected to be carrying 14 bodies of newborn babies in Kolkata on Sunday.
Earlier, police suspected an abortion racket's hand behind bags recovered from a vacant plot.
Summary:
Yunus' family had buried his body without informing the CBI.
Summary:
The applicants include 50,000 graduates, 28,000 post-graduates and 3,700 PhD holders.
Summary:
India is prepared to deal with any fallout of the US' sanctions on Iran, Sanjeev Sanyal, the Principal Economic Adviser to the Finance Ministry has said.
Summary:
The 200-year-old National Museum of Brazil was hit by a massive fire on Sunday, with images from the scene showing the entire building engulfed in flames.
Summary:
Bangladesh PM Sheikh Hasina on Sunday said that Pakistan PM Imran Khan has "hit many sixes" on the field but now "it is time to see whether he could hit those sixes while in power".
Summary:
A recruitment advertisement for Pakistan Rangers (Sindh) is facing criticism for reserving sanitary workers' jobs for minorities or only 'Non-Muslims'.
Summary:
While FDI from Mauritius totalled $13.41 billion, inflows from Singapore rose to $9.27 billion.
Summary:
Kareena Kapoor Khan has said that she has lived her life fearlessly post her marriage and after having a baby.
"It is necessary to be fearless in your choices," she further said.
Summary:
Deepika Padukone features on the cover of Elle India's September edition.
Summary:
Twenty-three-time Grand Slam champion Serena Williams, after reaching the US Open quarter-finals on Sunday, said coming back from pregnancy was harder than she thought.
In the real world, it takes a while for your body to come back," Serena added.
Summary:
To achieve the same, the researchers combined the signals from four different Global Navigation Satellite Systems (GNSSs).
Summary:
Summary:
TMC called for a 12-hour bandh in Itahar in protest against the murder.
Summary:
According to the lawsuit, Ofo allegedly signed a contract for five million bikes in 2017 but only purchased just under two million bikes.
Summary:
A BJP training guidebook reportedly says that Maoists in India enjoy "regular support from Pakistan and China" and are a big threat to the internal security of the country.
Summary:
As many as 16 people died and 12 others were injured in rain-related incidents across Uttar Pradesh in the past 24 hours, a statement issued by the office of the UP Relief Commissioner said on Sunday.
Summary:
In an earlier case, three nurses helped a 25-year-old woman give birth to a baby girl in a local train at the Vasai railway station.
Summary:
The Crime Branch on Friday arrested Mohammad Mehraj-ud-din Khan, Commissioner/ Secretary to the J&K government, ARI and Training, for allegedly fudging his date of birth in his service records.
Summary:
Israeli Prime Minister Benjamin Netanyahu on Sunday hailed the US' decision to stop all aid to the UN agency for Palestinian refugees, calling it a "refugee perpetuation agency".
Summary:
The draft rules state that all the e-pharmacies will have to be registered compulsorily with the Central Drugs Standard Control Organization.
Summary:
As many as 14 bodies of newborn babies in various stages of decomposition were found wrapped in plastic bags at an empty plot in Kolkata's Haridevpur on Sunday.
Summary:
Kohli has now scored most runs by an Indian captain in an overseas Test series.
Summary:
BookMyShow's Co-founder and CEO Ashish Hemrajani in an interview revealed he told his boss about his business idea and quit the job in 1999 over a text while he was drunk.
"It was my life's most expensive text...it cost â¹69," said Ashish, who was in South Africa at the time.
Summary:
The Supreme Court has fined the Income Tax Department â¹10 lakh for making "misleading statement" about the pendency of an appeal and said that the apex court is not a "picnic place".
Summary:
Madhya Pradesh-based anti-corruption activist Ajay Dubey was asked to pay â¹3.5 as CGST and â¹3.5 as SGST on seeking information from the state's Housing and Infrastructure Development Board under the RTI Act. He was asked to pay taxes at the rate of 9% each.
Summary:
A 20-year-old woman and her fiancé were arrested for murdering her ex-boyfriend in UP's Mathura.
Summary:
A photo from the Jodhpur Central Jail showing criminal Rakesh Manju cutting a cake on his birthday in the jail has gone viral.
Summary:
The Saudi-led coalition has admitted that an air strike in Yemen that killed over 40 children last month was a "mistake".
Summary:
In case of a lost QR card, the money will be safe in the account as each transaction is authenticated through biometrics.
Summary:
Abhishek Bachchan has said that he does not think Anurag Kashyap liked his work in the 2004 film 'Yuva'.
Kashyap had written the film, which was directed by Mani Ratnam.
Summary:
Notably, Odisha is the sponsor of the national hockey teams.
Summary:
The devices made using the optimised materials run somewhere between 5-50 times better than anything else, researchers claimed.
Summary:
The US Marines has successfully built the world's first continuous 3D-printed concrete barracks within 40 hours.
Summary:
Talking about investors setting a startup's valuation, BookMyShow CEO Ashish Hemrajani in a recent interview said that it is a false sense of achievement.
Summary:
Best PR I've had in a while." Calling Musk a CEO who "essentially lies", Steve Bannon had said, "Tesla is out of control...
Summary:
The police said their bodies were fished out and sent for postmortem, while their employer was booked on alleged charges of negligence.
Summary:
Two UP BJP MPs, Hari Narayan Rajbhar and Anshul Verma, have demanded that a commission is set up to examine complaints of men "suffering at the hands of their wives" due to alleged misuse of laws.
Summary:
Summary:
Ahead of the visit, Pinarayi briefed Governor P Sathasivam about his travel abroad.
Summary:
The Directorate of Revenue Intelligence has arrested two men in Kashmir and seized heroin worth â¹9 crore being smuggled from across the border, according to an official statement issued on Saturday.
Summary:
The music festival, which is exclusively for women, transgender and non-binary people, came up in response to sexual offences reported at other events in the country last year.
Summary:
Palestinian President Mahmoud Abbas' spokesperson Nabil Abu Rudeineh on Friday said that the US decision to end all aid to a UN agency helping Palestinian refugees was a "flagrant assault" against Palestinian people.
Summary:
UK PM Theresa May has said that she won't make any compromises with the European Union (EU) over the Brexit plan if it is not in the national interest.
Summary:
The Delhi Police has registered a case against two companies for allegedly taking loans worth â¹120 crore from HDFC Bank by furnishing forged documents.
Summary:
CAIT urged him to take preventive measures to protect people from diseases due to their contamination.
Summary:
India's gems and jewellery exports declined by around 5% to $10.64 billion in April-July, according to the Gems and Jewellery Export Promotion Council.
Summary:
Swara Bhasker has said that many people had celebrated the assassination of Mahatma Gandhi at that time and are now in power.
Comparing this to row over 'urban naxals', she further said, "Urban Naxals came on television and (were named in) police FIRs...You can punish (people) only for their doings, not for thinking."
Summary:
Launched in June as "the world's first unhackable storage for cryptocurrency", antivirus expert John McAfee-owned Bitfi has dropped its 'unhackable' claim after suffering a second hack.
Summary:
During a recent interview, Congress MP Shashi Tharoor was asked whose social media account he would like to hack if given a chance, to which he answered PM Narendra Modi.
Summary:
Black holes, known to engulf stars, could possibly revive a dead star passing close to it, a US-based study has suggested.
Summary:
PM Narendra Modi revealed officials from a bank he had an account with during his school days, searched for him for 32 years to close his account, which was empty.
Summary:
In April, IT department recognised transgenders as an independent category of applicants for securing PAN.
Summary:
Students at a residential school for visually-challenged in Jharkhand staged a protest against school in-charge Shivnandan Mahto, alleging that he physically and verbally abuses them.
Summary:
The Assam Police has filed a chargesheet against 48 people accused in the lynching of two men in June on suspicion of child-kidnapping.
Summary:
Wipro on Sunday announced that it has bagged its biggest ever deal of $1.5 billion from US-based Alight Solutions that provides technology-enabled health, wealth, HR and finance solutions.
Summary:
"The attitude of the states/union territories...is pathetic, to say the least," the court said.
Summary:
The government is planning to have examinations for those who want to become independent directors in order to strengthen the corporate governance framework.
Summary:
The new promo of Ekta Kapoor's 'Kasautii Zindagii Kay' has been released where Shah Rukh Khan can be seen introducing Parth Samthaan as Anurag and Erica Jennifer Fernandes as Prerna in the show.
Summary:
Kamal Jain, the producer of 'Manikarnika: The Queen of Jhansi', said he realised Kangana Ranaut would be the best person to "take over the mantle" when director Krish left the film for his next project.
Summary:
Ranveer Singh, while talking about his transformation in the upcoming film 'Simmba', said, "I hit the gym.
Also starring Sara Ali Khan, the film will release on December 28.
Summary:
Actor Aparshakti Khurana said he "really" wanted to work with Rajkummar Rao and that was "the first kick" that made him do 'Stree'.
Summary:
Japanese swimmer Rikako Ikee, who bagged six gold and two silver medals at the Asian Games 2018, has been named as the quadrennial event's Most Valuable Player.
Summary:
Roger Federer flicked a shot around the net post for a winner after reaching the ball just before the second bounce against Nick Kyrgios in the US Open.
Summary:
Barman said that her toes hurt during training sessions as she had to wear the normal shoes.
Summary:
The robots gesticulate with their long arms and are programmed to issue 'tinny' set phrases.
Summary:
Android Pie's predecessor Android Oreo increased its market share from 12.1% in July to 14.6% in August.
Summary:
A poster showing Telangana Chief Minister KC Rao as Lord Ram was put up in Ranga Reddy district ahead of the ruling Telangana Rashtra Samithi's (TRS) rally on Sunday.
Summary:
The woman, who has been sent for medical examination, said she was brought to the hotel on the pretext of being provided treatment for her father.
Summary:
Vice President Venkaiah Naidu has called for "sustained support" and "bias towards agriculture", adding that otherwise people would leave it since it is not remunerative.
Summary:
Pakistan Foreign Minister Shah Mahmood Qureshi has said that the country fully supports Iran's stance regarding its nuclear deal with world powers.
Summary:
Pakistan's Prime Minister Imran Khan has asked the media to give his government three months before criticising it for its performance.
Khan further said that his cabinet members could be shuffled on the basis of their performance.
Summary:
A video of former US President George W Bush sneaking a candy to former First Lady Michelle Obama during Senator John McCain's funeral has surfaced online.
Summary:
The Enforcement Directorate has attached 41 assets controlled by Choksi worth over â¹1,210 crore.
Summary:
The Haryana government has settled the first claim of â¹9,000 under the public insurance scheme Ayushman Bharat for a baby girl born in Karnal's Kalpana Chawla Government Medical College.
Summary:
When asked if the Supreme Court's verdict makes her viral winking video from a song in the film 'Oru Adaar Love' more popular, Malayalam actress Priya Prakash Varrier said, "I hope it goes to heights." The SC recently dismissed an FIR against Priya over the winking scene.
Summary:
Priyanka Chopra's future father-in-law Paul Jonas' construction and real estate company has filed for bankruptcy as it has over $1 million (â¹7 crore) in debt, as per reports.
Summary:
He complained to IKEA management and Greater Hyderabad Municipal Corporation (GHMC).
Summary:
Agra University has announced that it has found the missing academic records of former PM Atal Bihari Vajpayee, one month after his demise.
Summary:
The UP Subordinate Services Selection Commission recruitment examination scheduled for Sunday morning was postponed after 11 people were arrested for leaking the exam paper.
Summary:
A 27-year-old woman has been arrested by Delhi Police for allegedly strangulating her seven-month-old daughter with a dupatta as she believed the baby was responsible for the family's "medical and financial problems." The woman initially claimed the baby died after drowning in a bucket but confessed after sustained interrogation.
Summary:
A Pune court has granted a 90-day extension to the police to file a chargesheet in the case against five activists who were arrested in June for alleged Maoist links and involvement in Bhima Koregaon violence.
Summary:
Ashish Sharma said he was motivated to undertake the walk after seeing children begging on streets in Delhi.
Summary:
Myanmar authorities said it was "quite puzzling how such a big ship turned up in our waters".
Summary:
The militants were to ensure the passage of around 300 fighters to capture the city, the ministry added.
Summary:
US President Donald Trump has said there is no need to keep Canada in the North American Free Trade Agreement (NAFTA).
Summary:
World Trade Organisation (WTO) Director-General Roberto Azevedo on Friday said that there was no reason to "panic" over US President Donald Trump's threat to withdraw from the global trade body.
Summary:
GST collections in August fell marginally to â¹93,960 crore from â¹96,483 crore in July.
Summary:
Sonam Kapoor has said that she wants to be part of the films that entertain and spread a message to the society as well.
I am really happy about it," she further said.
Summary:
Vicky Kaushal has said that he and his brother Sunny Kaushal knew that Bollywood wasn't some "la la land" as their father and action director Sham Kaushal had shared with them his moments of humiliation and struggle.
Summary:
Imtiaz Ali will make a film on the love story of Radha and Krishna.
Summary:
Talking about the sequel to his 2005 film 'Bunty Aur Babli' opposite Rani Mukerji, Abhishek Bachchan said, "If (producer Aditya Chopra) finds a story that's worthy and he wants us to do it, he will let us know." "As of now I can't say anything," he added.
Summary:
Actor Ranvir Shorey has said that he feels he is "deliberately sidelined by mainstream filmmakers", adding, "I know and I feel that I'm ignored." "You should talk to the filmmakers, especially the mainstream ones and ask them why they don't give me work," he added.
Summary:
The trailer of Ayushmann Khurrana, Radhika Apte and Tabu starrer 'AndhaDhun' has been released.
'AndhaDhun' will mark the first collaboration of Sriram with Ayushmann and Tabu.
Summary:
Summary:
PSG's Argentine midfielder ÃÂngel Di MarÃÂa, who had scored 2018 FIFA World Cup's longest goal, scored a goal directly from a corner during his team's 4-2 victory against Nîmes in a Ligue 1 match on Saturday.
Summary:
Summary:
Congress President Rahul Gandhi's brother-in-law Robert Vadra has said that the FIR filed against him in connection with 2008 land deal is an attempt to divert attention from real issues like increase in oil prices.
Summary:
Former JNU Student Union President Kanhaiya Kumar will contest the 2019 Lok Sabha elections from his native Begusarai constituency in Bihar, reports said.
Summary:
North Korea admitted in 2002 that it had kidnapped Japanese citizens in the 1970s and 1980s to train as spies.
Summary:
Police said the vehicle had been readied to take the body of an 80-year-old man from a hospital to a funeral home.
Summary:
India's previous best medal haul at the Games came in 2010, when the contingent clinched 65 medals.
Summary:
Social media users have slammed Shahid Kapoor after he announced that he has been cast to play Manipuri boxer Dingko Singh in an upcoming biopic on the latter.
Summary:
Woolley dived for 44 minutes at a depth of 40.6 metres, beating his previous record of 41 minutes and 38.1 metres.
Summary:
Uttar Pradesh CM Yogi Adityanath on Saturday said Lord Ram will set the date for construction of Ram Mandir in Ayodhya, adding, "Nobody can stop if once it is ordained by the gods." "What has to happen at a given time will happen at that time only," he added.
Summary:
Airlines operating in India will have to pay â¹50,000 fine as environmental compensation if they are found dumping toilet waste mid-air, the Directorate General of Civil Aviation (DGCA) warned.
Summary:
The US Defence Department on Saturday announced cancellation of $300 million (over â¹2,100 crore) in aid to Pakistan over its failure to fight terrorism.
Summary:
Safdar, who took over as the Chief Justice of the Balochistan High Court, is also the first woman civil judge in the province.
Summary:
Jones was convicted of aggravated robbery in 1999 following wrongful identification in a witness lineup.
Summary:
Ranveer Singh, while talking about his invasion of privacy as a celebrity, said, "I enjoy the perks of being a celebrity, so I don't think I can complain about the downsides." "It's not easy (being a celebrity), but you'll never find me complaining," he added.
Summary:
Reality television personality Kylie Jenner's ex-boyfriend, rapper Tyga has said he had a lot to do with her success.
there was a lot of codes being taught," he said.
Summary:
Kabir Khan, while talking about his next directorial '83 which is based on India's win in the 1983 Cricket World Cup, said, "The most challenging thing about '83 is how to stay true to [the] iconic event." "It is probably the best story I have heard in my life.
Summary:
After Netflix India and Zomato trolled each other over actress Radhika Apte's 'omnipresence' on the video-streaming platform, Nagpur Police tweeted a warning that it is "omnipresent" and "binge-watching the whole city".
Summary:
Mahesh Bhatt will direct his daughter Alia Bhatt in his upcoming film 'Sadak 2', as per reports.
Summary:
India has chased totals of over 200, while playing outside Asia, only thrice in history.
Summary:
Defending Serie A champions Juventus beat Parma 2-1 to continue their winning run with a third straight win, while their new signing, Portugal captain Cristiano Ronaldo still remains goalless after having appeared in all three matches.
Summary:
Shah Rukh Khan-owned Trinbago Knight Riders' captain Dwayne Bravo smashed five consecutive sixes off an over of St Kitts and Nevis Patriots' pacer Alzarri Joseph in the CPL on Saturday.
Summary:
World's most expensive footballer PSG's Neymar celebrated his goal against Nîmes in a Ligue 1 match on Saturday by pretending to cry.
Summary:
Liverpool registered a 2-1 win over Leicester City, while Chelsea beat Bournemouth 2-0.
Summary:
The eight-year-old daughter of an auto driver died after an iron gate in her school and its supporting pillars collapsed on her on Friday in Gorakhpur, UP.
Summary:
Union Home Minister Rajnath Singh on Saturday said Naxalites, who had hitherto operated from rural and remote areas, have entered cities and are now trying to influence public opinion and spread their ideology in urban India.
Summary:
Former Haryana CM Bhupinder Singh Hooda and businessman Robert Vadra, the brother-in-law of Congress President Rahul Gandhi, have been booked for alleged irregularities in several land deals in 2008 in Gurugram.
Following this, Vadra said, "Election season, increase in oil prices...
Summary:
Summary:
The number of Income Tax Returns (ITR) e-filed up to August 31 was 5.42 crore compared to 3.17 crore up to August 31 last year, marking an increase of 71%.
Summary:
The transaction value increased by about 18.2% from the previous month to â¹54,212.26 crore in August.
Summary:
India Post Payments Bank (IPPB) CEO Suresh Sethi has said that financial inclusion is the main mission of the bank.
Summary:
The government spends â¹1.01 to print a â¹10 note, one paisa more than what it spends to print â¹20 note, an RTI reply by Bharatiya Reserve Bank Note Mudran has revealed.
Summary:
Raveena Tandon has said she didn't join politics even though she has been offered tickets by several political parties including the Congress, BJP and TMC.
"So I'm better off not being associated with any political party.
Summary:
MXS, the label launched by Amitabh Bachchan's daughter Shweta Bachchan in collaboration with designer Monisha Jaising, has been accused of copying another brand for one of its T-shirt designs.
The caption read, "The same sweatshirt with the...same slogan.
Summary:
Bishop Charles H Ellis III has apologised after he was criticised by social media users for allegedly touching singer Ariana Grande inappropriately when he greeted her onstage following her performance at Aretha Franklin's funeral service.
Summary:
Vaghela was out for a walk outside his residence in Gandhinagar when the cow attacked him.
Summary:
Further, â¹1.01 is spent to print a â¹50 note.
Summary:
Adityanath also shared an instance where a monkey came and sat on his lap, after which he gave him something to eat.
Summary:
Chief Justice of India (CJI) Dipak Misra on Saturday recommended senior Supreme Court judge Ranjan Gogoi as the next Chief Justice of India.
Summary:
A UK man suspected of murdering a schoolgirl has been sentenced to 14 months in jail for refusing to give his Facebook password to the police in an ongoing investigation into her death.
Summary:
An airport worker died of heart attack and 18 others were injured in Russia's Sochi on Saturday after a passenger plane skidded off the runway and caught fire.
Summary:
A church bishop mistook American singer Ariana Grande to be a fast food item at singer Aretha Franklin's funeral service.
Summary:
Actress Parineeti Chopra, while responding to social media users trolling her new hair colour after assuming that it is red, wrote in an Instagram story, "Who said red?" She also shared a picture of herself on social media and captioned it, "Burgundy".
Summary:
Shami, who grabbed the ball after Ben Stokes' shot off Ishant Sharma's bowling, directed his throw towards the striker's end.
Summary:
South Korean footballer Son Heung-min, who plays for EPL side Tottenham, is exempt from mandatory military service after South Korea won the gold medal at the Asian Games 2018 on Saturday.
Summary:
Facebook faced criticism after complaints that it showed gay conversion therapy advertisements to LGBT users on its platform.
Summary:
Four former Tinder employees have voluntarily withdrawn out of a lawsuit against Tinder's parent Match Group, claiming it secretly tried to enact an arbitration agreement during their employment.
Summary:
A government panel has said that India heads of social media firms could face charges for spreading fake news on their platforms.
Summary:
Summary:
UP Congress Committee President Raj Babbar on Saturday said Congress President Rahul Gandhi was the party's natural prime ministerial candidate.
Summary:
Rajasthan-based startup Dcoder lets users code in more than 35 programming languages on their smartphones.
Summary:
The son of Vernon Gonsalves, one of the five activists arrested for alleged Maoist links, today rejected the charges against his father and termed them as 'laughable'.
Summary:
A Mumbai man fell off the footboard of a local train and died while trying to catch a 19-year-old boy who had allegedly snatched his phone.
Summary:
Referring to Finance Minister Arun Jaitley, ex-Finance Minister P Chidambaram on Friday said, "Many of us think he was not even taken into confidence when demonetisation was announced." Chidambaram claimed there are suspicions the Centre "devised" demonetisation so people with black money could convert it into white.
Summary:
Talking about the power sector, Khara said, "nobody wants to touch that".
Summary:
The government aims to link all 1.55 lakh post offices to the India Post Payments Bank system by December 31.
Summary:
Rajasthan BJP leader Badri Narayan Meena's son Bharat Bhushan Meena was arrested after his car ran over four sleeping labourers in Jaipur on Thursday, killing two of them.
Summary:
Sonu Sood has slammed Kangana Ranaut over her remarks that he quit the film 'Manikarnika: The Queen of Jhansi' after refusing to work under a woman director.
Summary:
Mumbai's Nehal Chudasama, who was crowned the winner of Miss Diva Universe 2018 on Friday, will now represent India at the Miss Universe 2018 pageant which will be held in December in Bangkok.
Summary:
The India Post Payments Bank (IPPB) launched today will offer 4% interest rate on savings accounts and can accept deposits of up to â¹1 lakh per account.
Summary:
Both the countries have signed an MoU under which India will conduct a preliminary engineering and traffic survey of the new rail line.
Summary:
A 21-year-old man has been jailed for life for plotting to assassinate UK's Prime Minister Theresa May. Naa'imur Zakariyah Rahman had planned to detonate a bomb at the gates of the PM's residence and then attack her with a knife or a gun.
Summary:
The agency currently supports five million Palestinians in Gaza, the West Bank, Jordan, Syria and Lebanon.
Summary:
A nearly nine-metre-high inflatable balloon depicting London Mayor Sadiq Khan wearing a bikini was launched in the city on Saturday.
Summary:
The UK business contributed 5% of Godrej Consumer's â¹9,862-crore sales in the financial year 2017-18.
Summary:
Banks have started sending summons to defaulters using WhatsApp and emails in cases where borrowers try to dodge traditional summons via a notice.
Summary:
He also recalled that he had to give retakes for an emotional scene as it had to be shot from different angles.
Summary:
"He is obsessed with my life...
He knows much more about my life than even I do," he added.
Summary:
Summary:
Union Minister KJ Alphons has announced that the Indian diaspora residing in China's Shanghai has contributed over â¹32 lakh to the Chief Minister's Distress Relief Fund for the Kerala floods.
Summary:
Indian boxer Amit Panghal, who won India's sole gold medal in boxing at the Asian Games 2018, broke down when the Indian national anthem was being played during the Asiad medal ceremony.
Summary:
Indian pacer Mohammed Shami uprooted England batsman Jonny Bairstow's leg stump on the first ball after lunch in the fourth Test.
Summary:
The Indian men's hockey team defeated eight-time Asian Games champions Pakistan 2-1 on Saturday to clinch the bronze medal, a record 15th medal in men's hockey at the Asian Games.
Summary:
Khaleel Ahmed, who has been given his maiden ODI call-up in the form of his inclusion in India's Asia Cup squad, is a left-arm pacer from Rajasthan, who represented India A in the recently-concluded Quadrangular series.
Summary:
United States' top spy agency has accused China of a "super aggressive" spy campaign on LinkedIn. It claimed that China is using fake LinkedIn accounts to recruit Americans with access to government and commercial secrets.
Summary:
Chinese smartphone maker Xiaomi on Friday said it is migrating Indian users' data to cloud service infrastructure of Amazon Web Services and Microsoft Azure located in India.
Summary:
Responding to alleged criticism of RSS by Congress and its president Rahul Gandhi, RSS publicity-in-charge Arun Kumar on Friday said, "Sangh does not treat anyone as its opponent.
Summary:
Under the current contract, American astronauts use the Russian Soyuz spacecraft in order to reach the ISS and return back home.
Summary:
A man and his father were arrested in an alleged dowry death case after the burnt body of the former's wife was recovered from their house in Kharar, Punjab on Friday.
Summary:
Seven people were killed and around 30 others were injured after a speeding bus brushed against a minivan and collided head-on with another bus on the Salem-Bengaluru National Highway.
Summary:
Zakharchenko's bodyguard was also killed in the explosion, which injured 11 others.
Summary:
Union Bank of India has announced that it will close its branch in the global diamond hub of Antwerp within a year.
Summary:
Reacting to the criticism, astronaut Neil Armstrong's sons Rick and Mark Armstrong said, "[The film] celebrates an American achievement.
Gosling has portrayed Neil Armstrong in the film.
Summary:
Apple's test car was attempting to merge onto an expressway when it was rear-ended by another car.
Summary:
Samajwadi Party leader and party supremo Mulayam Singh Yadav's brother Shivpal Yadav on Friday announced that his newly formed Samajwadi Secular Morcha will contest all 80 Lok Sabha seats from Uttar Pradesh in 2019.
Summary:
Founded by Pradeep Dadha in 2010, the startup last raised $14 million from Tanncam Investment and Sistema Asia Fund in October 2017.
Summary:
Summary:
Some people submitted medical records and bills from hospitals that don't even exist.
Summary:
A 91-year-old man has been arrested recently for allegedly murdering his 87-year-old wife in Kerala's Thrissur district after a quarrel.
Summary:
Constant rainfall and landslides in Uttarakhand have led to the formation of a 100-metre long and 50-metre deep lake near the Tehri Garhwal-Dehradun border.
Summary:
After militants kidnapped several family members of policemen in Kashmir, a deputy superintendent has said it's an "open war against local policemen".
Summary:
The Delhi government has suspended the vice principal of Sarvodaya Kanya Vidyalaya in Mayur Vihar on her retirement day over allegations of corruption.
Summary:
Philippine President Rodrigo Duterte has been slammed for saying, "As long as there are many beautiful women, there will be more rape cases." Duterte's remarks came in reference to reports that highlighted increased sexual violence in his hometown Davao.
Summary:
South Sudanese rebel leader Riek Machar has signed a peace deal with the government which is aimed at ending the country's civil war.
Summary:
A US cancer researcher has pleaded guilty to conspiring to steal trade secrets from GlaxoSmithKline (GSK) to benefit Renopharma, a Chinese company she created.
Summary:
Buying a car or two-wheeler is set to become costlier from September 1 as long-term third-party insurance policy has been made mandatory by IRDAI following a Supreme Court order.
Summary:
Abhishek Bachchan has said that he wants everyone to love and appreciate his work and say "well done".
Summary:
Irrfan Khan, who is currently undergoing treatment for neuroendocrine tumour in the United Kingdom, will reportedly start shooting for Shoojit Sircar's biopic on Udham Singh.
Summary:
Summary:
Janhvi Kapoor will play the role of the first woman IAF chopper pilot Gunjan Saxena in her upcoming biopic which will be produced by Karan Johar, as per reports.
Summary:
Kiran Rao, who made her directorial debut with 'Dhobi Ghat' in 2011, will make a comeback as a director after 7 years.
Summary:
Australia's record goalscorer Tim Cahill, who also played for English Premier League side Everton, has been signed by Indian Super League (ISL) side Jamshedpur FC.
Summary:
Captain Virat Kohli has been rested for the six-team Asia Cup, which is scheduled to take place from September 15 to 28.
Summary:
Pacer Khaleel Ahmed, who received a maiden call-up to Team India for Asia Cup, credited India Under-19 and 'A' team coach Rahul Dravid for his success, saying the latter turned him around from a nervous starter to a confident bowler.
Summary:
Tencent Holdings' market value dropped by around $20 billion after its shares fell by 5.4% as China announced plans to curb video-games to tackle myopia in children.
Summary:
Congress spokesperson Abhishek Singhvi on Friday called the Rafale deal a saga of multi-crore "conflict of interest" and said the government should agree to a Joint Parliamentary Committee probe if there is nothing to hide in the contract.
Summary:
Some 30 passengers were rescued on Saturday after a bus broke down due to waterlogging under a bridge near Hanuman Mandir in Delhi's Yamuna Bazar.
Summary:
The budget request includes purchasing two US-made anti-ballistic missile defence systems and ship-to-air SM-3 Block IIA interceptor.
Summary:
The sale helped the company reduce its debt from about â¹22,000 crore to â¹7,500 crore.
Summary:
India's 22-year-old boxer Amit Panghal defeated 2016 Olympic champion Hasanboy Dusmatov in the men's 49kg final to bag gold at the Asian Games 2018.
Summary:
India's 60-year-old Pranab Bardhan and 56-year-old Shibnath Sarkar won the men's pair bridge event to bag the country's first-ever gold in bridge at the Asian Games.
Summary:
Vanessa Marquez, a 49-year-old actress died after being shot by policemen after she pointed a toy BB gun at them in California in US.
Summary:
Earlier in June, Mukherjee had attended an RSS event in Nagpur despite criticism from several Congress colleagues.
Summary:
It added the legislature should first ensure equality between men and women rather than equality between communities.
Summary:
An Indian citizen, CEO of two information technology companies in US, has been arrested for allegedly forging documents to get visas such as H1B for over 200 foreign workers.
Summary:
Supreme Court Justice Indira Banerjee, while hearing a hotel-related case, revealed in an open court that an attempt was made to influence her through a phone call.
Summary:
Militant organisation Hizbul Mujahideen on Friday night released 11 relatives of J&K policemen they had abducted reportedly after police released four family members of the militants they had arrested.
Summary:
"Don't embarrass us by seeking votes, we are from general category.
We'll only vote for NOTA", they read.
Summary:
A policeman in Telangana was caught on camera beating up his wife and mother-in-law in front of neighbours and activists after his wife confronted him about his alleged illicit relationship.
Summary:
Bharadwaj claimed that the police had not presented the letter before the court.
Summary:
Indrani Ghosh, the daughter of the passenger tweeted about the incident, revealing her mother was travelling alone and is "completely traumatised".
Summary:
The Congress has raised questions on why top agencies like the National Investigation Agency (NIA), CBI and RAW are not probing the plot to assassinate PM Narendra Modi.
Summary:
Last month, two women staying at the shelter were brought dead to the hospital.
Summary:
Uttar Pradesh CM Yogi Adityanath on Saturday announced that special arrangements for the upkeep of stray cows, dogs, monkeys and birds would be made at every Nagar Nigam of the state.
Summary:
Varun Dhawan has said that nepotism exists and it is a part of the film industry which is not good.
"More people from outside the industry should be given a chance.
Summary:
Shefali Shah has said the films that she has done are "commendable", adding, "I love my work way too much to just go into it as a 9 to 5 job." "I was lucky to get really good films, even though I don't have 100 films in my resume," she added.
Summary:
Karan Johar will launch late actress Sridevi's younger daughter Khushi Kapoor and Shah Rukh Khan's eldest son Aryan Khan opposite each other, as per reports.
Summary:
Writing a poem for his daughter Shweta Bachchan Nanda who launched her new fashion brand in partnership with her friend Monisha Jaising, Amitabh Bachchan wrote, "I'm proud that my daughters have found success on their own." "They are like beads of a necklace...such jewels are precious, keep them safe," he further wrote.
Summary:
Shahid Kapoor will be playing the role of the former boxer and Asian Games gold medallist Ngangom Dingko Singh in Raja Krishna Menon's upcoming biopic.
Summary:
Pooja Hegde, who is starring in Akshay Kumar and Riteish Deshmukh starrer comedy film 'Housefull 4', said that while shooting for the film she has to "match up to Akshay and Riteish's energy levels".
Summary:
The Indian women's squash team bagged its second successive silver medal at Asian Games, after losing the final against Hong Kong on Saturday.
Summary:
The girl informed the police that a boy came from behind and slid his hand inside her skirt.
Summary:
A 28-year-old man has committed suicide in Andhra Pradesh over the demand for special category status.
Summary:
Union leaders said they found more torn pages when they visited the granthi's residence.
Summary:
Delhi Police have arrested two men after they allegedly broke into a restaurant in the middle of the night to rob its cash counter, but ate leftover biryani and stole a laptop instead.
Summary:
The incident took place in April when Pavel Baranenko offered tank rides to people.
Summary:
The recently launched OPPO F9 Pro features 16-megapixel and 2-megapixel sensors on the back and 25-megapixel camera for selfies.
Front camera comes with Artificial Intelligence-integration, Sensor HDR and portrait modes.
Summary:
Swades Foundation is awarding scholarships of up to â¹2 lakhs to professionals looking to transition into Data Science.
Professionals from IT, marketing and data fields can upskill themselves in this field.
Summary:
The landfill in Delhi's Ghazipur area has reached a height of 65 metres, and is now only eight metres shorter than the 73-metre-high Qutub Minar.
Summary:
After an FIR was lodged alleging that her in-laws killed her for dowry, a woman from Uttar Pradesh's Barabanki district was found alive and married to another man in Delhi.
Summary:
The first order said that teachers who do not attend the state-level event will face pay cuts.
Summary:
Four hospital staff at Hyderabad's Kamineni Hospital were sacked after they clicked selfies with the body of actor-politician Nandamuri Harikrishna.
Summary:
Notably, Mandal Commission's recommendation for reservation for OBCs was broadly based on caste data collected in the 1931 Census.
Summary:
During the same period, the university earned â¹23.2 lakh for rechecking and â¹6.5 lakh for providing students copies of evaluated answer-scripts.
Summary:
Reports said Reliance signed an agreement to produce a film with Julie Gayet, days before France and India signed Memorandum of Understanding for Rafale deal.
Summary:
Jain Muni Tarun Sagar passed away at the age of 51 in Delhi's Radhapuri Jain temple on Saturday due to prolonged illness.
Summary:
The government aims to reduce fiscal deficit to 3.3% of GDP in 2018-19.
Summary:
In the previous financial year, â¹500 notes were the most counterfeited, accounting for 41% of all fake currencies detected.
Summary:
Karan Johar, while talking about his dating life, said, "I'm undersexed and underpaid." "I don't date like serious dating.
"I need to be able to interact with the person," Johar further said.
Summary:
Indian sprinter Dutee Chand, who bagged two silver medals at the Asiad 2018, has said she would rebuild her house with the prize money.
Odisha CM Naveen Patnaik had announced â¹3-crore prize money for the 22-year-old sprinter.
Summary:
Pujara, who scored 132*, registered a 32-run and a 46-run stand for the ninth and tenth wickets respectively.
Summary:
Formula One team, Sauber's Marcus Ericsson escaped unhurt after his car crashed after somersaulting several times during the second practice session at the Italian Grand Prix.
Summary:
After Virat Kohli reached 6,000 runs in Test cricket, Team India hotel staff presented him with a tray, which had 6,000 written on it and was decorated with food items.
Summary:
Jamaica's Usain Bolt, who has eight Olympic gold medals to his name, made his debut for the Australian football club Central Coast Mariners in a pre-season friendly against Central Coast Select.
Summary:
Facebook took down a post by Anne Frank Center for Mutual Respect which featured an image of nude child Holocaust victims for violating its community standards.
Summary:
Apple's shares hit a record high on Thursday after it announced that it will reveal its latest lineup of new iPhones at its annual event on September 12, in California, US.
Summary:
Two people died due to dengue and 1,588 others tested positive for the vector-borne disease during the rainy season this year in Himachal Pradesh, state Health and Family Welfare Minister Vipin Singh Parmar informed the state assembly.
Summary:
Patidar leader Hardik Patel, whose indefinite fast demanding reservation for the community in jobs and education entered its seventh day on Friday, announced that he has now stopped taking water.
Summary:
After the incident, the accused escaped while his family tried dissuading the minor's parents from filing a case.
Summary:
A 28-year-old woman who was allegedly raped by a man died after setting herself ablaze in a police station in UP, an official said on Friday.
Summary:
Israel has moved to criminalise lap dancing after the State Attorney's office introduced new directives to crack down on such activities at strip clubs.
Summary:
After US President Donald Trump accused China of hacking his 2016 presidential rival Hillary Clinton's emails, a state-run Chinese media outlet has said that his tweets are "messages from some alternative universe".
Summary:
After Vodafone India and Idea Cellular announced the completion of their merger on Friday, Reliance Jio's official twitter handle trolled the companies saying, "Bringing people together since 2016.
Vodafone India and Idea had announced the merger less than 7 months after Jio started commercial operations in September 2016.
Summary:
The near-crash of a plane carrying Congress President Rahul Gandhi in April was caused due to the delayed reaction by its pilots, civil aviation watchdog DGCA has revealed.
Summary:
The rupee fell past 71 for the first time in early trade on Friday amid a sell-off in emerging market currencies.
Summary:
A Twitter user recently posted a picture with a poll asking people if it's a beach or a door.
People got confused as it initially appears a door but looks like a beach when rotated.
Summary:
Hrithik Roshan's sister Sunaina Roshan has revealed in a blogpost that at the age of 21, Hrithik was told by doctors he had a genetic disorder after his back went into a spasm.
Summary:
Speaking about Irrfan Khan being diagnosed with cancer, Deepika Padukone said, "I can't say it was expected, but neither was it a shock." "I myself have been through certain experiences in the past, and it has taught me that life is fragile," she added.
Summary:
Mumbai Congress chief Sanjay Nirupam on Thursday wrote to Maharashtra Chief Minister Devendra Fadnavis requesting that the state government should acquire Raj Kapoor-founded RK Studios and convert it into a film museum.
Summary:
Actor Varun Dhawan, while speaking about his father David Dhawan's initial days of struggle, revealed, "My father's first car was a taxi, a second-hand Ambassador that he painted into a normal car." "His achievements are tremendous, [as are] the sacrifices he's made to put the family on the map.
Summary:
The space agency further said the six-member crew featuring three Americans, two Russians, and Gerst was safe.
Summary:
Jammu and Kashmir DGP Shesh Paul Vaid on Friday confirmed that three abducted relatives of policemen have been released by terrorists.
Summary:
After rumours of banks and ATMs to remain closed for six days from September 2-5 and 8-9 went viral across social media, the Finance Ministry has issued a clarification stating banks will remain open with the functioning of ATMs and online transactions remaining unaffected.
Summary:
Former Australian PM Malcolm Turnbull resigned from the Parliament on Friday, a week after he was ousted from office.
Summary:
ICICI Bank, which has a 79.22% stake in the brokerage arm, voted in her favour.
Summary:
The film's director Tha Tamilvaanan said, "What else can I ask for?
Summary:
Indian cricketer Rishabh Pant, who scored his first Test runs with a six, equalled the Indian record for the longest Test duck in terms of balls faced following his 29-ball duck in the fourth Test on Friday.
Summary:
The Indian women's hockey team settled for the silver medal at the Asiad 2018 after losing to Japan 1-2 in the final on Friday.
Summary:
Indian middle-order batsman Cheteshwar Pujara was forced to change his helmet after getting struck by a bouncer from England's Ben Stokes in the fourth Test on Friday.
Summary:
Developers will have to include a link to their privacy policy in the metadata for their app.
Summary:
Based on ancient scrolls, the tablet has a cylindrical body with two rotary wheels at either end to allow users to scroll through information.
Summary:
Summary:
Summary:
The Income Tax Department has reportedly asked US retail giant Walmart to deposit the withholding tax arising out of its deal with Flipkart by September 7.
Summary:
The Supreme Court on Friday sought responses from the Centre, six state governments and the BJP on a plea alleging that they have violated the apex court's directions on the issuance of public advertisements.
Summary:
Leader of Opposition in the Kerala Assembly Ramesh Chennithala today termed the floods in the state as a "man-made tragedy" and demanded a judicial inquiry into the calamity.
Summary:
Summary:
A 35-year-old US Army sergeant will serve 25 years in prison after he pleaded guilty to attempting to provide material aid to the Islamic State.
Summary:
A council in New Zealand's Southland region has proposed to ban all domestic cats in an effort to protect its native wildlife, particularly birds.
Summary:
In the book, the military blamed last year's violence on the Rohingyas, referring to them as "Bengali terrorists".
Summary:
India's economy recorded a growth of over 8% for the first time in two years.
Summary:
On being asked about the craziest thing a fan has done, late singer Michael Jackson's sister Janet Jackson revealed a fan once sent her a jar of semen.
Summary:
Confirming that Sonu Sood has quit the film 'Manikarnika: The Queen of Jhansi', Kangana Ranaut said, "He vehemently [refused] to work under a woman director." "Even though the team suggested...they've full faith in me, it seems, Sonu had neither dates nor faith," she added.
Summary:
Responding to actress Shweta Tiwari's statement that her daughter was offered the role of 'Prerna' in the reboot of the 2001 serial 'Kasautii Zindagii Kay', the show's producer Ekta Kapoor tweeted, "Aaah reaaaaaly??????????
Summary:
Adding that the claims process has been simplified, officials said more staff has been brought from other states for quick disposal.
Summary:
Summary:
Prasad also asked Google "to work for creating more awareness among India's farmers about weather and scientific farming".
Summary:
The man's father had rushed to Munde for help, following which the cop found someone to drive the four-wheeler and took them to a hospital.
Summary:
Challenging the criminal cases filed against security personnel in insurgency-hit areas, 400 more soldiers petitioned the Supreme Court against the dilution of Armed Forces (Special Powers) Act. Earlier this month, 350 soldiers had moved the SC with a similar request.
Summary:
The price of diesel in Delhi touched a lifetime high of â¹70.21 per litre on Friday while petrol was priced at â¹78.52.
Summary:
The caste riots in Bhima-Koregaon earlier this year were pre-planned with a motive to overthrow the government, according to Pune Police officials.
Summary:
Dutch anti-Islam MP Geert Wilders has cancelled a planned cartoon competition for caricatures of the Muslim Prophet Mohammed amid widespread threats and protests.
Summary:
Johnson and Johnson (J&J) on Thursday said the voluntary recall of its hip implant doesn't mean it is faulty.
Summary:
Rajkummar Rao, who says that birthdays make him awkward, is "excited" and "nervous" on his birthday this year as his film 'Stree' released on the same day [August 31].
Summary:
'Yamla Pagla Deewana Phir Se' "tests your patience", according to Times Now. It has been rated 2/5 (Bollywood Hungama, Times Now) and 1.5/5 (NDTV).
Summary:
The four-member Indian team is now assured of a silver medal.
Summary:
Former world number one tennis player, Britain's Andy Murray trolled Australia's Nick Kyrgios after the latter received a mid-match 'pep talk' by the chair umpire Mohamed Lahyani at the US Open.
Summary:
Srinath, who is popularly known as the Mysore Express, finished with figures of five for 85 in that innings.
Summary:
Ronaldo's new club, Italy's Serie A side Juventus, have been drawn in the same group as his former club Manchester United in the UEFA Champions League 2018-19.
Summary:
They also described the party president as "Pt (Pandit) Rahul Gandhi" and a "janeudhari" (one who wears a sacred thread).
Summary:
Japanese carmaker Nissan has recalled about 1,66,000 vehicles from North America over a problem with the ignition switch which could cause the vehicleâÂÂs engine to shut down while driving.
Summary:
Mumbai-based drone startup Droni Tech raised â¹3.54 crore in first seed funding from Eagle Group and angel investors.
Summary:
Bengaluru-based live entertainment platform Playtoome, has raised â¹2 crore in pre-series A investment from India's integrated incubator Venture Catalysts.
Summary:
As many as 36 Hindu migrants from Pakistan were awarded Indian citizenship in the presence of District Collector Siddharth Mahajan in Jaipur on Thursday.
Summary:
Trump has repeatedly claimed that the WTO has been "unfair" to the US in global trade.
Summary:
The company, which owes more than â¹3,000 crore to lenders, is developing private hill city 'Lavasa' near Pune in Maharashtra.
Summary:
The show sees Krasinski's righteousness come under fire as he uncovers a terror plot.
Summary:
Leptospirosis, often dubbed "rat fever", is commonly spread through the urine of infected rats while its symptoms include fever, headache, vomiting, muscle pain, and tiredness.
Summary:
Tendulkar reached 6,000 Test runs in his 120th innings, while Kohli achieved the feat in his 119th innings.
Summary:
Indian middle-distance runner Jinson Johnson clinched men's 1,500m gold medal at the Asian Games 2018 with a timing of 3 minutes and 44.72 seconds.
Summary:
Berkshire, which already owns 252 million Apple shares worth $56 billion, also bought back its own stock for the first time since 2012.
Summary:
Meanwhile, One97's net loss for 2017-18 widened to â¹1,604 crore from previous year's â¹899 crore.
Summary:
The Centre has rushed National Disaster Response Force (NDRF) teams to Nagaland for rescue and relief operations after CM Neiphiu Rio sought help following the death of 12 people in floods.
Summary:
Unidentified men on Thursday shot dead an armed security guard escorting a cash van and escaped with a box containing around â¹53 lakh of Life Insurance Corporation of India in Bihar's Samastipur.
Summary:
Police on Thursday confirmed that two women from Aasra Shelter Home in Bihar's Rajeev Nagar managed to run away despite heavy security.
Summary:
A 24-year-old Dutch woman was found dead on Thursday at a hotel room in Chennai's T Nagar area.
Summary:
Anil Ambani's Reliance Entertainment signed an agreement in January 2016 to produce a film with then French President Francois Hollande's partner, two days before France and India signed Memorandum of Understanding for Rafale deal, reports said.
Summary:
From Delhi, he took a helicopter to his hometown Sirsa, in Haryana, costing an additional â¹5 lakh.
Summary:
A video compiled by The Guardian shows several world leaders, including UK PM Theresa May, US President Donald Trump and Russian President Vladimir Putin, dancing at events.
Summary:
Pakistan's Punjab province has announced a ban on "vulgar" and "indecent" movie posters displayed inside and outside cinema houses.
Summary:
The US has said that it wants to give Pakistan's Prime Minister Imran Khan the "space" to explore opportunities to improve his country's relations with India.
Summary:
Balesh Sharma, who takes over as Vodafone Idea's first CEO on Friday, was the Chief Operating Officer of Vodafone India and a member of its executive committee.
Summary:
Hospital chain Fortis Healthcare on Thursday said that Gagandeep Singh Bedi has resigned as its Chief Financial Officer (CFO) citing personal reasons.
Summary:
Aishwarya Rai, who had earlier claimed that Sanjay Leela Bhansali wanted to cast her in 'Bajirao Mastani' and 'Padmaavat' but couldn't get Khilji for her, was reportedly not offered roles in either of the films.
Summary:
Vicky Kaushal has said 2018 has been "humbling, surreal and overwhelming" for him, adding, "When people say I've become a star, it takes time to sink in." "But there are moments when I'm alone and I just [want] to scream 'hurray!' to release the happiness," he added.
Summary:
PV Sindhu took to Instagram to share her thoughts on winning silver at Asian Games 2018, saying she "didn't come this far to only come this far".
It's obviously disappointing...to have disappointed all the people who had so much faith in me.
Summary:
Vikas had clinched gold in the men's 65kg category in the 2010 edition and bronze in the 75kg category in 2014.
Summary:
Funds run by US investment firm BlackRock voted for a shareholder proposal requiring Tesla's CEO and Chairman Elon Musk to be replaced by an independent chairman.
Summary:
"Such people intentionally spread rumours to trigger conflicts within NDA," he added.
Summary:
A 16-year-old girl was allegedly kidnapped, forced to drink alcohol and raped by two men in Uttar Pradesh's Noida.
Summary:
Former Jammu and Kashmir Chief Minister Omar Abdullah on Friday said it is "worrying" that militants had abducted two more relatives of policemen, taking the number to 11 within the last three days.
Summary:
One student died and about 100 fell sick after consuming a mid-day meal at a school in Koderma district of Jharkhand, police said.
Summary:
A third-year engineering student who was stalking a 16-year-old girl killed her by slitting her throat after she spurned his marriage proposal in Telangana's Sangareddy district, the police said.
Summary:
The Supreme Court on Friday quashed an FIR against Malayalam actress Priya Prakash Varrier for her viral winking scene from the movie Oru Adaar Love.
Summary:
Whitbread bought Costa, now the UK's biggest coffee chain, for ã19 million in 1995 when it had only 39 outlets.
Summary:
The last date to file Income Tax Returns for the Assessment Year 2018-19 expires today.
Summary:
After getting clearance from the National Company Law Tribunal, Aditya Birla Group announced on Friday that Vodafone India and Idea Cellular have completed the merger to replace Airtel as India's largest telecom company.
Summary:
Rajkummar Rao and Shraddha Kapoor starrer 'Stree', which released today, is a "spooky comedy [that] needed more spirit," wrote Hindustan Times (HT).
It has been rated 3/5 (HT, TOI) and 3.5/5 (NDTV).
Summary:
A video of a pilot and a flight attendant performing the Kiki challenge alongside a moving plane without anyone in the cockpit had gone viral recently.
Summary:
Kerala CM Pinarayi Vijayan on Friday announced that people affected due to floods in the state will be given â¹1 lakh interest-free loan to purchase household items.
Summary:
If I used the iPhone like all my friends do, I would rather give up the plane," he added.
Summary:
Earlier reports had claimed that the RSS is considering inviting him for their three-day lecture series "Future of Bharat: An RSS perspective".
Summary:
Delhi's Patiala House Court on Friday granted bail to jailed RJD chief Lalu Prasad Yadav's wife Rabri Devi and younger son Tejashwi in the IRCTC scam case.
Summary:
Mumbai's Arthur Road Jail is building about a dozen cells of "European and UK prison standards" to house fugitive millionaires like Vijay Mallya who challenged their extradition citing "poor jail conditions", reports said.
Summary:
PM Narendra Modi, who is in Nepal for Bay of Bengal Initiative for Multi-Sectoral Technical and Economic Cooperation (BIMSTEC) meet, gifted stoles depicting traditional motifs from Northeastern states and West Bengal to leaders of six nations.
Summary:
The Supreme Court on Friday deferred the hearing on a plea challenging the validity of Article 35A till the second week of January at the request of the Centre and Jammu and Kashmir government.
Summary:
Summary:
Police in Uttar Pradesh's Kannauj on Wednesday stopped a man from selling his one-year-old son to arrange money for his pregnant wife's treatment.
Summary:
After a Buddhist monk running a school-cum-meditation centre in Bodh Gaya was arrested for alleged sexual abuse of around 15 boys studying there, police said the monk often forced the boys to dance nude with him.
Summary:
Australia's Catholic Church has rejected an inquiry's recommendation that priests be required by law to report the sexual abuse of children revealed during confessions.
Summary:
Alia Bhatt, while talking about late actress Sridevi's demise, said, "Her passing away was devastating for me...I broke down and couldn't stop crying." "I was in a restaurant when I heard the news.
She was always so warm and lovely," Alia further said.
Summary:
India's 17-year-old Govind Bairagi finished fourth in the Open Laser 4.7 event.
Summary:
India's Neeraj Chopra, who won a gold medal in the javelin throw event at the Asian Games 2018 three days ago, missed winning the bronze medal at the Diamond League by a margin of 0.03 metres.
Summary:
Twenty-time Grand Slam champion Roger Federer has criticised chair umpire Mohamed Lahyani for leaving his chair and talking to Nick Kyrgios during a US Open match.
"He was there for too long...Conversations can change your mindset," Federer said.
You're great for tennis," the umpire was heard saying to Kyrgios.
Summary:
Indian pacer Javagal Srinath deliberately bowled wide off the stumps to avoid taking a wicket when Pakistan had lost 9 wickets to leg-spinner Anil Kumble in the 1999 Delhi Test.
Summary:
The award had gone to either Ronaldo or Barcelona's Lionel Messi every season since Bayern Munich's Franck Ribéry won in the 2012-13 season.
Summary:
Summary:
US President Donald Trump, while criticising technology giants Google, Facebook and Amazon, said that they may be in a âÂÂvery antitrust situationâÂÂ.
Summary:
Ola is reportedly raising $70 million from a Chinese investor, which may value the ride-hailing major at over $5 billion.
Summary:
Yes Bank shares fell up to 7% on Friday after the RBI deferred approving another three-year term for Managing Director and CEO Rana Kapoor.
Summary:
The Indian rupee on Friday touched a new low and breached the 71 against the US dollar mark for the first time.
Summary:
The Uttarakhand High Court banned fatwas in the state on Thursday, after a 15-year-old rape victim in the state was asked to leave her village along with her family by the panchayat.
Summary:
The Kerala Chief Minister's Distress Relief Fund (CMDRF) has received a total donation of over â¹1,027 crore as of August 31 to help those affected in the flood-hit state.
Summary:
In an apparent act of online vandalism, the US city of New York was renamed to 'Jewtropolis' on Snapchat's Snap Map. Snapchat clarified that the name was changed as someone tampered with a third-party mapping software, Mapbox, they use.
Summary:
Greaves will initially acquire 67% of Ampere for â¹77 crore and may buy another 13% stake for â¹75.5 crore in a span of 3 years.
Summary:
NASA has detected signs of water above Jupiter's Great Red Spot, a storm active for over 350 years.
Summary:
The Human Resource Development Ministry on Thursday launched the Atal Ranking of Institutions on Innovation Achievements (ARIIA) to promote innovation and research in higher education.
Summary:
The partner of activist Gautam Navlakha who is under house arrest over Bhima-Koregaon violence and alleged Maoist links has said the policemen told them to sleep with their bedroom open.
Summary:
Police have arrested two men in Maharashtra's Khandala for allegedly kidnapping their neighbour's two-year-old son and sacrificing him for "hidden treasure" in a black magic ritual.
Summary:
The video was taken when India hosted a cultural event during the multi-national anti-terror drills organised by Shanghai Cooperation Organisation in Russia.
Summary:
Terrorists have kidnapped family members of five police personnel in Kashmir after raiding their houses on Thursday, reports said.
Summary:
Four children of Rakbar Khan, who was lynched by a mob in Alwar on suspicion of being a cow smuggler, will be provided free education in a madrasa run by ex-Vice President Hamid Ansari's wife Salma.
Summary:
Sobers achieved the feat while playing for Nottinghamshire against Glamorgan's Malcolm Nash in a county match.
Summary:
A clerk who was behind bars in an alleged case of fraud was given the charge of two high schools in Gurdaspur district by the Punjab education department, an official has said.
Summary:
However, it failed to give the apartment's possession at its Unitech Habitat project even after 120 months.
Summary:
Shweta Tiwari, who played the role of Prerna in 2001 serial 'Kasautii Zindagii Kay', said that her daughter Palak Tiwari turned down the offer to play Prerna in the upcoming reboot of the serial.
Summary:
Bipasha Basu will star with husband Karan Singh Grover in a film titled 'Aadat' which will be produced by singer Mika Singh, as per reports.
Summary:
Asian Games bronze medallist discus thrower Seema Punia has said she'll donate her Asiad pocket money of $700 (â¹49,500) and an additional â¹1 lakh to help the flood-affected people of Kerala.
Summary:
Odisha CM Naveen Patnaik has announced an additional cash reward of â¹1.5 crore for sprinter Dutee Chand for bagging another medal at Asian Games 2018.
Summary:
Google has been slammed by UK Foreign Secretary Jeremy Hunt over its failure to remove "child abuse content", while reportedly planning a censored search engine for China.
Summary:
It will also apply to parents who take time off for adoption.
Summary:
Summary:
Earlier, Uber CEO Dara Khosrowshahi said in an interview that the ride-hailing startup is shifting its focus from cars to electric bikes and scooters for short, inner-city trips.
Summary:
Mahindra Logistics has announced that the company has bought a strategic stake in freight management startup ShipX for a reported amount of up to â¹7 crore.
Summary:
Amid an economic crisis, Argentina's central bank on Thursday raised its benchmark interest by 15 percentage points to 60%, the highest in the world.
Summary:
The bank's policy allows dinner orders only for employees who stay at work past a certain hour.
Summary:
Moreover, using the phone for gaming while charging doesn't hamper the charging speeds.
Summary:
For the first time, you can use voice search to get an exclusive offer with Big Bazaar.
Users can redeem the coupon received across 230+ Big Bazaar stores over the weekend.
Summary:
Apple may also launch new colour options for iPhones, reports said.
Summary:
The diamond's actual price was raised from â¹1.2 crore to â¹7.7 crore during the course.
Summary:
"The story of India's first Gold medal victory for the first time in the Kingdom of Saudi Arabia," read part of Akshay's tweet.
Summary:
Sixty-nine-year-old French actor Gérard Depardieu has been accused of raping a 22-year-old actress in Paris.
The alleged rape occurred this month in one of the actor's Paris residences, as per French media reports.
Summary:
Slamming the PM Modi-led government over the Rafale deal, Congress President Rahul Gandhi said, "Why was an aircraft that was worth â¹520 crore bought for â¹1,600 crore?
Summary:
The cabin pressure drop was traced to a hole measuring about 2 millimetres on the Russian side of the space station.
Summary:
Rajasthan's education department has warned that government school teachers will lose one-day salary if they don't attend a state-level programme being organised on Teachers' Day. The teachers who have been invited will be relieved of their duties four days before the event, it added.
Summary:
The strike by RBI employees from September 4-5 was reportedly misunderstood as a strike by all bank employees.
Summary:
Mumbai's Chhatrapati Shivaji International Airport was renamed as Chhatrapati Shivaji âÂÂMaharajâ International Airport on Thursday.
Summary:
Defending Pakistan PM Imran Khan's helicopter rides to work amid the austerity drive, Information Minister Fawad Chaudhry said it costs Pakistani Rs 50-55 per km, which is cheaper than travelling by road.
Summary:
Actor Abhishek Bachchan, while speaking about taking a two-year break from films, said, "I felt my personal approach needed to change." "I just wanted to re-evaluate where I was in life, wanted to re-energise myself," he added.
Summary:
The representatives of Aishwarya Rai Bachchan have denied reports saying she turned down Sanjay Leela Bhansali's film.
Aishwarya...has immense love for Bhansali and will always be...keen to work with him and he knows that," the representatives added.
Summary:
Sonam further said it was "incredible" working with Anil.
Summary:
India and Malaysia played out a 2-2 draw before losing 6-7 in the penalty shootout.
Summary:
Curran and Moeen Ali put on 81 runs for the seventh wicket after England were reduced to 86/6.
Summary:
Claiming the government has "decided" everybody is a "Hindu terrorist," the Shiv Sena has said, "Now there is BJP government at the Centre and in Maharashtra, still 'Hindu terrorism' is being spoken about.
are being labelled terrorists...
Summary:
BJP will contest from 20 out of the 40 Lok Sabha seats in Bihar in the 2019 General Elections, a BJP leader said.
Summary:
Summary:
While talking about product development in the early stages, MakeMyTrip's Founder and CEO Deep Kalra in a recent interview said, "The first 5 years were tough".
Summary:
At least 63 more distressed and debt-ridden farmers in eight districts of the Marathwada region of Maharashtra have committed suicide in a span of one month, according to reports.
Summary:
A national registry of sex offenders will be launched next month, Home Ministry officials said today.
Summary:
The loss due to the floods is estimated to be over â¹3,000 crore, as per a memorandum submitted by Karnataka CM HD Kumaraswamy to Home Minister Rajnath Singh.
Summary:
His condition is stable," said a doctor from the hospital.
He further said that the 84-year-old leader will be discharged within two days.nn
Summary:
A sessions court today asked Patidar quota agitation leader Hardik Patel, who recently launched an indefinite fast from his house, to appear before it on September 14 in connection with a sedition case.
Summary:
The bodies were reportedly found by the village sarpanch when he came to visit their home.
Summary:
India won its fifth consecutive Asian Games gold medal in the women's 4x400m relay event on Thursday.
Summary:
After American coffee giant Starbucks sued Delhi-based coffee chain 'SardarBuksh' for allegedly copying its name and logo, the Delhi High Court ordered the chain to launch its 30 new outlets under 'Sardarji-Buksh' brand.
Summary:
"We actors are blessed...but more so because we have wonderful fans," wrote Arjun.
Summary:
Late Tamil Nadu CM M Karunanidhi's son MK Alagiri has said he would accept his brother MK Stalin's elevation as DMK president if he was allowed to return to the party.
Summary:
The Patna HC has fined Bihar Board â¹5 lakh and ordered it to give one mark for an unchecked answer in Hindi paper of a Class 10 girl.
Summary:
Speaking about the Centre not furnishing details sought by it on setting up special courts to deal with cases involving politicians, the Supreme Court said the Centre is "unprepared".
Summary:
Union Minister Nitin Gadkari has said that considering the pace at which the work is getting completed, he's hopeful that river Ganga will be completely clean by March 2020.
Summary:
Varavara Rao, one of the activists who was arrested in connection with Bhima-Koregaon violence and alleged Maoist links, said the government has conspired against them.
Summary:
The Indian rupee extended its fall to a second straight session declining 15 paise to close at a record low of 70.74 against the dollar on Thursday.
Summary:
Talking about her ethnicity, Freida Pinto said she doesn't want people to be blind to her skin colour while adding, "It's brown and I'm obviously Indian." "You can accept me for who I am.
Summary:
Varun Dhawan, when asked if he will take relationship advice from Alia Bhatt said, "She is the last person I'll take relationship advice from." "One good thing about our friendship is that we don't discuss those aspects of our lives with each other.
Summary:
Summary:
The Indian men's 4x400m relay team won the silver medal at the Asian Games 2018 on Thursday.
Summary:
The medal is the 35-year-old's second at Asian Games, after having won gold in the 2014 edition with a 61.03m throw.
Summary:
Portugal captain Cristiano Ronaldo is reportedly set to miss two international matches in order to focus on his performance for his new club Juventus after having gone without scoring a goal in his first two matches.
Summary:
IPL side Royal Challengers Bangalore have appointed India's 2011 World Cup-winning coach Gary Kirsten as their new head coach on Thursday.
Summary:
MLS side LA Galaxy's former Manchester United striker Zlatan Ibrahimovic has been handed an undisclosed amount of fine for slapping an opponent during his side's match against rivals Los Angeles FC.
Summary:
Billionaire Sir James Dyson has announced that his UK-based company Dyson is building a track stretching over 16 km to test electric vehicles.
Summary:
Researchers from Google's AI division and Harvard University have created an artificial intelligence (AI) which could predict the location of aftershocks up to one year after an earthquake.
Summary:
nCommonFloor Co-founder Sumit Jain, while talking about the early startup ecosystem said, "Earlier people were trying to run startups on steroids." Startups were run "with excessive fundings and massive discounts," he added.
Summary:
Another event will start from September 17, which marks PM Narendra Modi's birthday, and will conclude on September 25.nn
Summary:
The side which alleged buffalo theft has also lodged a case.
Summary:
Andhra Pradesh CM N Chandrababu Naidu has been invited by UN to deliver a keynote address at an event called 'Financing Sustainable Agriculture: Global Challenges and Opportunities'.
Summary:
Assam Governor Jagdish Mukhi on Wednesday extended the Armed Forces (Special Powers) Act, 1958 (AFSPA) in the state for the next six months.
Summary:
Two boys have been arrested in Jammu for allegedly taking part in the Kiki Challenge, which requires them to get out of a slow-moving car and dance to Drake's 'In My Feelings'.
Summary:
However, France's GDP per capita is roughly 20 times higher than India's due to the size of its population.
Summary:
India's largest multiplex chain PVR Cinemas is the frontrunner to buy North India-focussed Wave Cinemas in a deal valued up to â¹450 crore, according to reports.
Summary:
Jinson Johnson on Thursday bagged India's first gold medal in the men's 1500m event at the Asian Games after 56 years.
Summary:
Ordering that all eateries in Bengaluru be declared smoke-free zones, the Bruhat Bengaluru Mahanagara Palike has asked all bars and restaurants to ban smoking on their premises.
Summary:
Filmmaker Karan Johar took to Twitter to retweet a post by a man named Usman Khan who claimed that people called him Johar's lookalike.
Summary:
In an attempt to properly dispose the e-waste generated due to floods, the Kerala government has ordered all district officials to set up collection points.
Summary:
"They went out into the floods without thinking of...money...their own lives or their families, to save the thousands trapped," Kerala CM Pinarayi Vijayan said.
Summary:
World number 31 Alizé Cornet had accidentally put her shirt on backwards during a break and took it off to correct her mistake after returning to court.
Summary:
The product was marketed as a WiFi-enabled, battery-packed backpack to power gadgets and provide local hotspot for the wearers' friends.
Summary:
The last surviving rhino from the 11 Eastern black rhinos relocated for repopulation of the critically endangered species has died after succumbing to injuries from a lion attack at a Kenya-based sanctuary.
Summary:
Amazon is reportedly in talks to buy a minority stake in RP-Sanjiv Goenka Group's food and grocery retail chain Spencer's Retail, which runs about 135 stores across 40 cities.
Summary:
Speaking about quitting filmmaker JP Dutta's 'Paltan', Abhishek Bachchan said, "It was devastating for me because it's JP saab.
Summary:
The West Bengal government has decided to provide Swapna Barman, India's first heptathlon gold-winner at the Asian Games, with a job.
Summary:
Pacer Jasprit Bumrah missed dismissing England captain Joe Root with an LBW in the 4th Test after India's DRS appeal revealed that the ball was a no-ball as Bumrah had overstepped.
Summary:
Four-time Formula One World Champion, Ferrari's Sebastian Vettel crashed his Ferrari into a barrier at a Formula 1 exhibition event in Milan.
Summary:
After winning gold in heptathlon at Asian Games despite a teeth injury that had caused her jaw to swell, India's Swapna Barman tweeted, "Pain is the best motivator." She further thanked her team and supporters for "the endless love and support".
Summary:
Karnataka CM HD Kumaraswamy on Thursday met Congress President Rahul Gandhi and urged him to take an early decision on cabinet expansion of the coalition government.
Summary:
Days after Jammu and Kashmir Governor Satya Pal Malik took charge, a video of state BJP President and MLA Ravinder Raina saying, "Ab jo Governor aya hai, woh hamara banda hai" has emerged.
Summary:
Responding to US Senator Bernie Sanders' claims about Amazon's poor working conditions, the company has said the Senator was making "inaccurate and misleading accusations".
Summary:
A video shows a Tesla Model S car making a 100-foot jump right before it crashed into a tree in a school's parking lot in Canada.
Summary:
Russian President Vladimir Putin's new limousine was revealed to the public at the Moscow International Automobile Salon on Wednesday.
Summary:
Weighing around 1,500 kg, the Lego Chiron only has 5.3 horsepower and 92 Nm of torque.
Summary:
In a first, University of Minnesota researchers have 3D printed light receptors on a hemispherical surface.
Summary:
A black magic practitioner was arrested on Tuesday for allegedly sexually abusing a mentally challenged 16-year-old girl multiple times in Hyderabad on the pretext of treating her.
Summary:
Missouri on Tuesday became the first state in the US to enact a law banning the word "meat" to sell anything that "is not derived from harvested production livestock or poultry".
Summary:
Singapore-based Resurgent Power, a joint venture of Tata Power and ICICI Ventures, has won the bid to buy a 75.01% stake in Prayagraj Power Generation Company for â¹6,000 crore.
Summary:
With a market capitalisation of $974.5 billion, Amazon is the world's second most valuable company.
Summary:
Gurugram-based real estate developer Unitech on Wednesday posted a loss of nearly â¹73 crore in the June quarter compared to a loss of â¹16.47 crore in the year-ago period.
Summary:
The last time India fielded an unchanged Test XI was under MS Dhoni at Lord's in 2014.
Summary:
Kerala Chief Minister Pinarayi Vijayan said on Thursday that a total of 483 people have died in the floods in the state, while 15 are still missing.
Summary:
A New York-based sports journalist named Natalie Weiner on Wednesday shared a screenshot of website MaxPreps that rejected her last name 'Weiner' stating that it is 'offensive'.
We're going to unblock your last name," the website responded to her.
Summary:
A Federal judge in the US has sentenced 26-year-old George Garofano to eight months in jail for hacking 240 iCloud accounts including actress Jennifer Lawrence's and stealing their nude photos.
Summary:
Aam Aadmi Party has approached Delhi High Court seeking de-registration of newly formed 'Aapki Apni Party (Peoples)' on the grounds that the abbreviation of both the parties would be 'AAP' and it would confuse the voters.
Summary:
Shiv Sena has demanded a Parliament debate over demonetisation after RBI's annual report revealed 99.3% of the old notes were returned to banks.
"RBI report on demonetisation is shocking.
Summary:
Actor-politician Kamal Haasan on Wednesday said that his party Makkal Needhi Maiam (MNM) is ready for the 2019 Lok Sabha elections.
Summary:
However, after his suspension wasn't withdrawn, the student returned to the school and shot the principal, who is currently admitted to a Bijnor hospital.
Summary:
At least five people were killed and around 12 injured after a parcel van driver ran over a cyclist in Uttar Pradesh's Meerut and hit several vehicles while trying to escape on Wednesday.
Summary:
The money was used in funding terrorist activities, NIA alleged.
Summary:
Varavara Rao, one of the five activists who was arrested in connection with Bhima-Koregaon violence and alleged Maoist links, said that the case against him is based on false statements.
Summary:
Meanwhile, the police are trying to verify if the woman was pregnant before her murder on August 19.
Summary:
A 55-year-old Naxal was allegedly murdered in Chhattisgarh's Cholnar village on Wednesday, just four days after he surrendered before police.
Summary:
Japan and North Korea held a meeting in Vietnam in July without informing the US, according to a report by The Washington Post.
Summary:
Pakistan has already complained to the Dutch government over the cartoon contest.
Summary:
The Department of Industrial Policy and Promotion (DIPP) has ruled out Foreign Direct Investment (FDI) in e-commerce companies holding the inventory of various goods.
Summary:
The accessories are part of an upcoming exhibition on body modification run by fashion brand 'A Human'.
Summary:
Swapna Barman, who won India's first-ever heptathlon gold at Asian Games, was born on October 29, 1996 in Jalpaiguri, West Bengal.
Summary:
Indian wicketkeeper Wriddhiman Saha tweeted about him tripping over former Australian captain Steve Smith while trying to grab the ball that had got stuck in the latter's pad in the India-Australia series in 2017.
Summary:
WhatsApp on Wednesday announced that it is rolling out a radio campaign across India to fight fake news.
Summary:
Apple on Wednesday acquired US-based Akonia Holographics, a startup that manufactures lenses for augmented reality glasses, for an undisclosed amount.
Summary:
A follow-up of the Pegasus 500, the Classic Signals 350 comes in two colours, Airborne Blue and Stormrider Sand.
Summary:
Mumbai-based personal device management startup Servify has raised over â¹106 crore in a Series B funding round led by India-focused venture growth investor, Iron Pillar.
Summary:
A case has been registered against an unidentified person for allegedly attempting to insert the name of Shirdi Saibaba as a voter through online registration system in Maharashtra's Ahmednagar, police said on Wednesday.
Summary:
Pope Francis on Wednesday said that divorce has become a fashion trend.
Summary:
The ban follows media reports of some students suffering dizziness, increased heartbeat, sleep disorders and nervousness after drinking coffee.
Summary:
Airtel had in March 2017 entered into a definitive agreement with Tikona to acquire its 4G business.
Summary:
Rashtriya Janata Dal President Lalu Prasad Yadav surrendered before a CBI court in Ranchi on Thursday in the fodder scam case.
Summary:
"I use normal shoes worn by people who have normal five toes.
It is very uncomfortable, whether I wear spikes or normal shoes," she added.
Summary:
A man, in his 70s, serving life sentence in Kolkata's Alipore Central Jail has applied to donate â¹1 lakh from the wages he has earned in the jail for Kerala flood victims.
Summary:
Summary:
Summary:
Nebula Genomics, a startup co-founded by MIT and Harvard professor George Church to create a marketplace for people to make money from their genetic data, has raised $4.3 million in Series A.
Summary:
Jain Muni Vishrant Sagar on Wednesday referred to women as "commodities" during a press conference in Rajasthan, stating that women are themselves responsible for 95% of the crimes against them nowadays.
Summary:
The US cannot guarantee that it will provide India a waiver from sanctions if it purchases major weapon and defence systems from Russia, US' Assistant Secretary of Defence for Asian and Pacific Security Affairs, Randall Schriver, has said.
Summary:
Madhya Pradesh sports minister Yashodhara Raje Scindia's car was driven to the platform of a railway station, so that she doesn't have to walk after deboarding the train.
Summary:
A Tamil Nadu consumer forum on Wednesday directed the Indian Railways to pay a compensation of â¹25,000 to a man who was bitten by a rat while travelling on a train four years ago.
Summary:
The woman allegedly got angry and threw the power bank at the wall, causing it to explode, an official said.
Summary:
Nagaland CM Neiphiu Rio sought Centre's help on Wednesday as at least 12 people have lost their lives and 4,000 families have been displaced in the state since July due to floods and landslides.
Summary:
Former Andhra Pradesh CM NTR Rao's son, Nandamuri Harikrishna, wasn't wearing a seat belt before the accident on Wednesday, Nalagonda police said.
Summary:
The 17-year-old son of a Delhi sub-inspector was arrested on Wednesday for raping the 16-year-old daughter of another sub-inspector for months.
Summary:
However, Browne said the country remains fully committed to assisting India wherever possible.
Summary:
The Pakistan government on Wednesday informed a special court that Interpol has rejected the country's request to arrest former President Pervez Musharraf.
Summary:
Stating that Israel's "enemies know very well what the country is capable of doing", Prime Minister Benjamin Netanyahu said, "Whoever tries to hurt us, we hurt them." Netanyahu further said, "In the Middle East...There is no place for the weak.
Summary:
Billionaire Kumar Mangalam Birla-led financial services provider Aditya Birla Capital and US investment firm Värde Partners are reportedly creating a joint venture to invest up to $1 billion in distressed assets in India.
Summary:
The Indian rupee on Thursday weakened to a new all-time low at 70.82 against the US dollar, after opening at 70.69 in morning trading.
Summary:
The Indian women's hockey team defeated three-time champions China 1-0 in the semi-final on Wednesday to reach their first final at Asian Games since 1998.
Summary:
Sprinter Dutee Chand on Wednesday clocked 23.20 seconds to bag silver in the women's 200m race at Asian Games 2018.
Summary:
Vaibhavi Patekar, a 19-year-old Maharashtra-based national-level weightlifter, was found dead in a pond in Goregaon village in Maharashtra's Raigad on Wednesday.
Summary:
Afghanistan all-rounder Mohammad Nabi has become the first cricketer in history to feature in each of his team's first 100 ODIs, achieving the feat in the second ODI against Ireland on Wednesday.
Summary:
The medal was India's second-ever in table tennis in Asiad history.
Summary:
Elon Musk-led SpaceX's biggest rocket 'BFR' will house the first people who settle on Mars, the startup's Principal Mars Development Engineer Paul Wooster said.
Summary:
In a first, scientists at the world's largest particle physics laboratory CERN have successfully accelerated electrons using a wakefield generated by protons moving through a plasma.
Summary:
Summary:
BITS Pilani in association with UpGrad is offering a PG Program in Big Data engineering which is the first-of-its-kind program in India that has helped learners transition to companies like Spark NZ, Microsoft, Edureka with an average 36% salary hike.
Summary:
The Madras High Court on Wednesday asked the National Highways Authority of India (NHAI) to make separate lanes for VIPs, including judges, at all toll plazas across India.
Summary:
Filmmaker Nandita Das has revealed that actor Nawazuddin Siddiqui charged only â¹1 for her directorial 'Manto'.
Nandita further revealed that most actors associated with the film decided to forgo their remuneration.
Summary:
A picture appearing to show Indian Sports Minister Rajyavardhan Singh Rathore serving food to athletes in a tray in the dining area of Asian Games 2018 village had gone viral.
Summary:
Thakur said opposition should "think out of the box since his visit (shooting) is related to state's tourism".
Summary:
The account's first tweet addressed to 'all the young people' stating tips like 'read and write more' and 'stay teachable' went viral with almost 3,00,000 likes.
Summary:
A teacher at a school in Gujarat allegedly cut off rakhis tied on students' wrists a day after Rakshabandhan.
The Gujarat government has issued a notice to the school following the incident.nnn
Summary:
They were reportedly getting a vehicle repaired when the terrorists opened fire on them.
Summary:
A Buddhist monk was detained on Wednesday in Bihar's Bodh Gaya for allegedly sexually abusing 15 boys from Assam studying at a school-cum-meditation centre run by him.
Summary:
Furthermore, the oxygen mask couldn't be used as the cylinder attached was empty, the man's family claimed.
Summary:
US President Donald Trump on Wednesday hailed his relation with North Korean leader Kim Jong-un and said there was no reason to resume war games with South Korea.
Summary:
Accusing China of blocking North Korea's denuclearisation, US President Donald Trump on Wednesday said North Korea was under "tremendous pressure" from China.
Summary:
Further, the number of fake â¹50 notes detected shot up 154.3% to 23,447 pieces.
Summary:
In the video, Tiger can be seen dancing to Michael's song 'Beat It'.
Summary:
Talking about speaking in Hindi on 'Kaun Banega Crorepati', Bachchan further said, "If that inspires the young generation to speak in Hindi, it's good."
Summary:
Indian shuttler Saina Nehwal posted pictures on her official Twitter account of the ring her father gifted her after her bronze medal at the Asian Games 2018.
Nehwal became the first Indian female shuttler to win an individual Asian Games medal.
Summary:
Former Indian cricketer Sachin Tendulkar's son Arjun Tendulkar missed out on securing a spot in the Indian Under-19 team for the upcoming Asia Cup tournament.
Summary:
Five male tennis players retired from their matches after the temperature reached as high as 38 ðC on the second day of the US Open in New York.
Summary:
Facebook also plans to allow content creators to feature advertising breaks, as long as they hit certain metrics.
Summary:
The West Bengal Congress on Wednesday asked the Trinamool Congress whether it would support the BJP after the next Lok Sabha elections.
The West Bengal Congress said, "For the TMC, LK Advani is good but (PM Narendra) Modi is bad.
Summary:
People have given these parties right to sit on the opposition benches but they fear they'll lose that as well, UP CM said further.
Summary:
Mumbai-based gift curation startup PropShop24 has raised about â¹3.5 crore in a seed funding round from undisclosed investors.
Summary:
Aston Martin is planning to sell its shares on the London stock market in a deal that could value the automaker at a reported amount of around $6.4 billion.
Summary:
She said when she was in a semi-conscious state, her husband forced her to have sex with his friend.
Summary:
The wife of writer-poet Varavara Rao has alleged that the police did not produce a warrant before searching the house.
Rao has been arrested in connection with Bhima-Koregaon violence and alleged links with Maoists.
Summary:
An Australian designer duo has launched a collection, featuring clothing made using a special type of aloe vera-blended linen, which moisturises the skin.
Summary:
The government has set the target of reducing fiscal deficit to 3.3% of GDP in 2018-19.
Summary:
Decathlon wants people across the country, who have stopped playing for various reasons, to remember the joy sports can bring and come back to sports.
Summary:
Swapna Barman became the first Indian woman to win the gold medal at the women's heptathlon in the Asian Games on Wednesday, despite suffering a jaw injury.
Summary:
Television actress Kavita Kaushik, known for starring in the show 'FIR', has quit Facebook over "dog videos" and "morphed nude pictures" of herself.
Summary:
In 2016, Jackson's earnings were over $800 million, the highest annual total for any entertainer ever, dead or alive.
Summary:
Indonesian billionaire and the eldest Indonesian athlete at the 2018 Asian games, Michael Bambang Hartono, has won bronze in the bridge event.
Summary:
Jalandhar Police arrested Chandigarh's first woman cab driver Navdeep Kaur, accused of carjacking and kidnapping, along with two others on Monday.
Summary:
The five activists arrested in connection to Bhima-Koregaon violence and alleged Maoist links should be put under house arrest till September 5 and not sent to jail, the Supreme Court has said.
Summary:
While hearing a petition against the arrest of five activists over the Bhima Koregaon clashes, the Supreme Court on Wednesday said, "Dissent is the safety valve of democracy.
Summary:
Imposing a fine on a real estate ad that made fun of women's "complexes" over small breasts, Russian ad regulator said the ad pointed to a physical flaw in women.
Summary:
A 32-year-old female television journalist, Subarna Nodi, was hacked to death by unidentified assailants at her home in Bangladesh's Pabna district.
They hacked Subarna indiscriminately when she opened the door," police said.
Summary:
A 21-year-old Hong Kong woman has claimed she was tricked into marrying a complete stranger through a fake job posting shared on Facebook.
Summary:
After PUBG players spotted a Mahindra tractor in the game and shared its pictures online, Mahindra Group's Chairman Anand Mahindra tweeted, "What on earth is PUBG?" Mahindra, who was pleased for his company's tractor being featured in the game, asked, "What happens to the tractor".
Summary:
Anil Ambani-led Reliance Infrastructure (RInfra) on Wednesday said it has completed the â¹18,800-crore sale of its Mumbai energy business to Adani Transmission.
Summary:
Varun Dhawan, while speaking about his girlfriend Natasha Dalal, said, "We've known each other for too long, so the connection is deep.
Summary:
Swiss tennis player Roger Federer clarified his "joke" after having said, "[I]t is almost time to retire - but not yet," following his record 18th first-round win at the US Open 2018.
Summary:
Italian footballer Rolando Mandragora has been banned for one Serie A match after he was caught on television shouting an insult to Virgin Mary and referring to God as a dog.
Summary:
"When playing with your 10 month old daughter gets a bit too physical," Andy captioned the image.
Summary:
Indian pacer Bhuvneshwar Kumar, playing for India A, picked up three wickets against South Africa A, after returning to competitive cricket following an injury, on Wednesday.
Summary:
The seats are fitted with sensors that trigger a 'haptic feedback system' which vibrates to alert drivers when they should pay attention.
Summary:
"Google chooses not to participate...that's a decision they made," Senator Richard Burr said.
Summary:
Congress President Rahul Gandhi on Wednesday referred to the Rafale deal as the 'great Rafale robbery' and demanded a Joint Parliamentary Committee to investigate the alleged misappropriation in the deal.
Summary:
A woman gave birth to her newborn baby on the roadside in UP's Shravasti district after she was allegedly turned away by two hospitals.
Summary:
A 10-year-old girl was allegedly touched inappropriately and assaulted by her 22-year-old brother after he forced her to drink liquor at their house in Gurugram on Monday, said the police.
Summary:
During an interaction with journalists in China, Union Minister of State for Tourism KJ Alphons said lynchings are bad for the reputation of India.
Summary:
A six-year-old girl, who attends a school for children with special needs, was allegedly molested by a cab driver on her way home from school in Delhi.
Summary:
UK's largest supplier of household energy, British Gas, has paid out ã2.65 million (â¹24 crore) after regulators found that it overcharged more than 94,000 customers.
Summary:
The 25-year-old jumped 16.77m on his third attempt to bag India's first Asiad triple jump gold since 1970.
Summary:
She can be seen dancing with Priyanka's mother Madhu Chopra.
Summary:
Rani Mukerji, who'll appear on Salman Khan-hosted reality show 'Dus Ka Dum', jokingly said to him, "Forget marriage, make babies." She said this during a game segment when Salman and Shah Rukh, who'll also appear in the episode, were changing diapers of plastic babies.
Summary:
Schools in the affected areas have been sanitised, read a tweet from Kerala CM Pinarayi Vijayan's office.
Summary:
Ashutosh said that before the elections when he was introduced to AAP workers as a candidate, his surname was mentioned despite his protest.
Summary:
Rahul will take the China route instead of the regular Nepal route for the yatra.
Summary:
Speaking about arrests of five activists in relation to Bhima-Koregaon violence and alleged Maoist links, ex-Bihar CM Lalu Prasad Yadav said, "This country is moving towards dictatorship." He added the country is moving towards emergency.
Summary:
Ride-hailing startup Uber's aerial taxi arm Uber Elevate is reportedly considering India as one of the five countries where it wants to launch air taxi service.
Summary:
A 26-year-old passout of IIT-Roorkee and IIM-Lucknow was found hanging from a ceiling fan at his apartment in Gurugram on Tuesday.
Summary:
National Human Rights Commission (NHRC) has issued notices to Maharashtra government and the state's police chief over the arrests of five activists in connection with investigations in Bhima Koregaon violence.
Summary:
The statue was removed as "security could no longer be guaranteed," the city's government tweeted.
Summary:
Iranian Intelligence Minister Mahmoud Alavi on Tuesday said that the country's security forces have arrested "tens of spies" working in state bodies.
Summary:
Former Polish President Lech Walesa has nominated Ukrainian filmmaker Oleg Sentsov, who has been convicted on terrorism charges in Russia, for the Nobel Peace Prize.
Summary:
The Indian rupee on Wednesday fell as much as 54 paise to hit a fresh record low of 70.64 against the US dollar.
Summary:
Actor Naseeruddin Shah, when asked to comment on Anupam Kher's work as the Chairman of Film and Television Institute of India, said, "How can I comment on his work when he's hardly...at the FTII?" "I don't think he has been there more than twice.
Summary:
Indian cricketer Shikhar Dhawan shared a video of a fielding drill improvised by fielding coach R Sridhar to improve slip catching skills.
Summary:
Shot-putter Tajinderpal Singh's coach MS Dhillon shouted "You die of shame" at him before his Asiad record throw of 20.75m, which won him a gold medal.
Think of us.' I think it worked," Dhillon later said.
Summary:
Congress President Rahul Gandhi, who is currently on a two-day visit to Kerala, on Wednesday said the Central government has not given the âÂÂflood-hit state enough aid.
He added, "The extent of support that the Central government has given should be more.
Summary:
Notably, after watching Dhyan Chand play in the 1936 Olympics final, Adolf Hitler wanted to buy his hockey stick.
Summary:
French female tennis player Alize Cornet was punished by the on-court official at the US Open 2018 for taking her top off and exposing her black bra during her mid-match 10-minute heat break.
Summary:
The car will then attempt to take avoiding action, either by stopping or adjusting its line.
Summary:
Mahindra said that Fiat agreed in 2009 to never bring such claims if it used a grille approved by them.
Summary:
Paytm's parent company One97 Communications has posted a loss of â¹1,604 crore for the financial year 2017-18 compared with â¹899.6 crore a year ago, according to filings.
Summary:
Summary:
The professor had reported his wife missing last week following an argument.
Summary:
Summary:
Foreigners have dumped a net 3.9 trillion yen ($35 billion) in Japanese equities so far this year, according to data from Japan Exchange Group.
Summary:
The airport was earlier shut till August 18, after which it was extended to August 29.
Summary:
Mahabaleshwar has received 5,619 mm rainfall between June 1 and August 28, 100 mm more than the entire season last year.
Summary:
Netflix changed its name to 'Radflix' at the end of the video and captioned the video, "Whatever the role, Radhika apt hai."
Summary:
Speaking about the Kapoor family's decision to sell RK Studios, Randhir Kapoor said, "With the state of the roads and traffic today, no actor comes to Chembur to shoot [here]...They'd rather go to Film City." "It's...
Summary:
Senior Samajwadi Party leader Shivpal Singh Yadav on Wednesday announced that he has constituted 'Samajwadi Secular Morcha' and urged SP leaders "who are not being respected" to join it.
Summary:
After confirming Berkshire Hathaway's investment in Paytm, CEO Vijay Shekhar Sharma revealed the valuation given by the Warren Buffett-led firm was "handsomely higher" than by Japan's SoftBank.
Summary:
"One meeting and two phone calls later, the deal was done," said Sharma.
Summary:
Iraq's top Shi'ite cleric Ayatollah Ali al-Sistani has issued a fatwa against the construction of Ram Mandir on property belonging to the Waqf Board.
Summary:
A police officer investigating the case said they found evidence showing that the kids were converted and taught Christian doctrines.
Summary:
PM Narendra Modi has said that everybody should train themselves not to "spread dirt" through social media.
He added, "Sometimes people overstep boundaries on social media.
Summary:
The Health Ministry has asked states to ban Electronic Nicotine Delivery Systems (ENDS) including e-cigarettes, heat-not-burn devices, vape and e-hookah.
Summary:
The Maharashtra Anti Terrorism Squad on Tuesday told a special court that five recently-arrested Hindu right-wing group Sanatan Sanstha sympathisers planned to plant bombs at last year's Sunburn music festival in Pune.
Summary:
The Union Cabinet has approved a hike in Dearness Allowance to central government employees and Dearness Relief to pensioners from 7% to 9% with effect from July 1, 2018.
Summary:
Banks have received 99.3% of the â¹500 and â¹1000 notes invalidated after PM Narendra Modi government's demonetisation move in November 2016, the Reserve Bank of India (RBI) said in its annual report for 2017-18.
Summary:
On the occasion of the National Sports Day, Indian tennis player Sania Mirza posted a picture of India's Asiad gold-winning athlete Neeraj Chopra shaking hands and sharing the podium with Pakistan's Arshad Nadeem.
Summary:
Manjit Singh, who won gold in men's 800m race at Asian Games 2018 on Tuesday, is yet to see his five-month-old son.
Summary:
Indian sprinter Hima Das has said that she got disqualified from the Asian Games 2018 200m event following a false start because she was under "a lot of tension".
"There was lot of pressure on me.
Summary:
Wimbledon champion Novak Djokovic revealed that he shared an ice bath with his US Open first round opponent Marton Fucsovics during their mid-match 10-minute heat break.
Summary:
To commemorate the birth anniversary of Indian hockey legend Major Dhyan Chand, the Government of India has designated August 29 as India's 'National Sports Day'.
Summary:
Indian women's cricket team opener Smriti Mandhana, who scored 421 runs and hit 21 sixes in the English T20 league while playing for Western Storm, has been adjudged as the player of the tournament.
Summary:
Instagram has launched an in-app feature to allow users to apply for a 'blue tick' verification badge.
Summary:
Unsworth had criticised the mini-submarine that Musk had delivered for the rescue mission as impractical and a PR stunt.
Summary:
He underwent a three-month-long treatment for a pancreatic ailment at a US hospital.
Summary:
Pakistan PM Imran Khan will skip next month's UN General Assembly session to focus his attention on the country's economy, Foreign Minister Shah Mahmood Qureshi has said.
Summary:
US President Donald Trump on Tuesday unblocked some additional Twitter users after a federal judge in May said preventing people from following him violated their right to free speech.
Summary:
US President Donald Trump on Wednesday blamed China for hacking the emails of 2016 Democratic presidential candidate Hillary Clinton, however he did not offer any evidence.
Summary:
Airtel has received government approval for sale of 15% stake in its DTH arm Bharti Telemedia to US private equity firm Warburg Pincus.
Summary:
Former Andhra Pradesh CM NT Rama Rao's son Nandamuri Harikrishna passed away after a road accident on the state's Guntur highway on Wednesday morning.
Summary:
The man, who was supposed to get A$4,921.76 (around â¹2.5 lakh), mistakenly received A$492,176 (around â¹2.5 crore).
Summary:
Manjit Singh, who won India a gold after 36 years in men's 800m race at Asiad, has revealed he was told two years ago that he was "too old to improve".
Summary:
Summary:
Summary:
Summary:
After confirming funding from Warren Buffett-led Berkshire Hathaway, Paytm Founder and CEO Vijay Shekhar Sharma said, "One meeting and two phone calls later, the deal was done".
Sharma revealed the meeting involved a lengthy conversation without paper, documents or presentation.
Summary:
The former SpaceX manager was among 12 astronauts chosen last summer from a record 18,300 applicants.
Summary:
The first bomb hoax call claimed that a bomb was placed in the lobby of the airport, while the second call stated a bomb was in a luggage.
Summary:
PM Narendra Modi on Tuesday claimed that five crore people have been moved out of poverty in the last four years.
Summary:
When people fear the government, it's tyranny." Speaking about 'citizenry liberty', the CJI added, "Patrick Henry had said: 'Give me liberty or give me death'.
Summary:
Summary:
US' Defence Secretary James Mattis has announced that the country will end the suspension of military drills with South Korea, which were earlier called off "as a good faith measure".
Summary:
Based on a study ordered by Puerto Rico Governor Ricardo Rosselló, the US territory on Tuesday raised the official death toll from Hurricane Maria from 64 to 2,975.
Summary:
Hockey legend Dhyan Chand, in the 1936 Berlin Olympics final, asked his players to 'teach a lesson in ball control' to the Germans, after he lost a tooth in collision with the German goalkeeper.
Summary:
Mohammad Shami has said Team India pace contingent will target England wicketkeeper-batsman Jonny Bairstow's broken middle finger if the latter plays in the fourth Test.
Summary:
India captain Virat Kohli has criticised ECB's new 100-ball format, saying, "It hurts that the commercial aspect is taking over the real quality of cricket".
Summary:
Finch, who went on to break his own record of T20I's highest individual score five years later, had also begun his innings with a six in 2013.
Summary:
Ex-England footballer Gary Mabbutt has claimed a rat ate part of his foot while he was sleeping during holiday in South Africa.
Summary:
Summary:
Summary:
Traders' body CAIT has filed a petition in National Company Law Appellate Tribunal (NCLAT) over Competition Commission of India's (CCI) approval of Flipkart-Walmart deal.
Summary:
Volkswagen was reportedly one of the companies which backed Elon Musk-led Tesla's bid to go private.
Summary:
Six years after Higgs boson's discovery, the "God particle" has been observed decaying to fundamental particles known as bottom quarks.
Summary:
The incident came to light when the victim's friend, who's also a doctor, realised the error.
Summary:
An 18-year-old student in Tripura attempted suicide on Monday by jumping off his school building after he was allegedly forced by his teachers to get a Rakhi tied on his wrist by a girl.
Summary:
Lawyers for Donald Trump have filed a motion asking a federal judge to dismiss a defamation lawsuit by pornstar Stormy Daniels, calling it an attempt to suppress the US President's free speech.
Summary:
"You score goals like runs in cricket," Bradman said to Chand after the match.
Summary:
Fashion designer Masaba Gupta has refuted reports claiming her husband Madhu Mantena cheating on her is the reason behind their separation.
Summary:
Technology giant Google on Tuesday rejected US President Donald Trump's claim that its news search results were "rigged" to show "bad" news and stories about him.
Summary:
Nandamuri Harikrishna, actor-politician and son of former Andhra Pradesh CM NT Rama Rao, passed away aged 61 after succumbing to the injuries he suffered in a road accident on Wednesday.
Summary:
Tinder Co-founder Sean Rad has said he was forced to sell his stock options in August 2017 by the app's parent company Match Group, 30 days before he was fired.
Summary:
ISRO Chairman K Sivan on Tuesday said the three astronauts chosen for India's first manned spaceflight would enter into low-Earth orbit at 400 km "within 16 minutes of launch from Sriharikota".
Summary:
As per the report, out of the 2,874 shelter homes, 54 received positive reviews.
Summary:
The Madhya Pradesh government is planning to introduce a recruitment policy that is aimed at preventing non-local candidates from joining the state police force, Home Minister Bhupendra Singh has said.
Summary:
The then England captain vowed to "regain those ashes", which was termed as 'a quest to regain the Ashes' by English media.
Summary:
The man said he was hired for Hrithik's brand HRX, but it didn't regularly supply products.
"License was terminated by HRX Brand because of defaults...Neither Hrithik...
Summary:
Asked if actors on the sets of his film have ever had any issues with one another, Vishal added, "Even if that happened I will of course not tell you the truth.
Summary:
Amitabh Bachchan, who hosts 'Kaun Banega Crorepati', has said he will start playing the game with his granddaughter Aaradhya.
Bachchan further said, "Although she does know about the show and she likes the signature tune of the show," he added.
Summary:
US President Donald Trump jokingly showed the media a red penalty card which was given to him by FIFA President Gianni Infantino during a meeting over the 2026 World Cup on Tuesday.
Summary:
Affectiva's Emotion AI software will give Pepper the ability to detect more advanced states of human facial expressions.
Summary:
US-based autonomous vehicle startup AutoX has debuted a delivery service by turning its self-driving cars into grocery stores.
Summary:
Earlier, Apple had announced that its global facilities are powered with 100% clean energy.
Summary:
Delhi Deputy CM Manish Sisodia today said the Centre has "finally" given him permission to speak about Delhi's education reforms at World Education Conference in Moscow, hours after he claimed his visit wasn't being approved.
Summary:
Rajya Sabha MP Amar Singh has accused Samajwadi Party leader Azam Khan of threatening his daughters with an acid attack, and demanded security cover for them.
Summary:
Passengers can then scan the code to order daily-use products like groceries.
Summary:
Railway Minister Piyush Goyal has said roughly 6,000 railway stations will be WiFi-enabled in the next six to eight months.
Summary:
During interrogation, she confessed that several Tripura students studying in Bangalore, Hyderabad and Pune were engaged in transporting cannabis.
Summary:
Archbishop Carlo Maria Viganò, a former Vatican diplomat, has claimed that he told Pope Francis about allegations of sexual abuse of children by Cardinal Theodore McCarrick in 2013, but he did not act on the information.
Summary:
The drugs, worth nearly â¬100 million, were reportedly shipped from Brazil.
Summary:
Some of the Saudi-led coalition air strikes in Yemen which have caused heavy civilian casualties, may amount to war crimes, UN human rights experts have said.
Summary:
The government has amended a rule to allow law enforcement agencies such as Central Board of Direct Taxes and Enforcement Directorate to hold banned notes.
Summary:
Jet Airways has said that it will sell a stake in its loyalty programme JetPrivilege and cut as much as â¹2,000 crore in costs over the next two years.
Summary:
The Union Cabinet had earlier approved LIC's proposal to acquire 51% stake in IDBI Bank through preferential issue of shares.
Summary:
The CBDT on Tuesday extended the deadline to file income tax return for residents of flood-hit Kerala from August 31 to September 15 this year.
Summary:
Issuing a statement at a joint press conference, Chief Ministers of BJP-ruled states have announced that the party will contest the 2019 general elections under PM Narendra Modi's leadership.
Summary:
An Indian-origin employee of Singapore-based DBS Bank, Avijit Das Patnaik was fired for posting a t-shirt's photo showing Singapore flag being torn to reveal the Indian flag.
Summary:
The CM also appreciated the efforts of state officials, policemen and fishermen for assisting in rescue operations.
Summary:
The silver-winning Indian team in Asian Games' first-ever 4x400m mixed relay has accused a runner from winners Bahrain of blocking Hima Das during the race on Tuesday.
Summary:
Justice AB Singh from the Jharkhand High Court approved the anticipatory bail petitions of three persons on the condition that they deposit money in the Kerala Chief Minister's Relief Fund.
Summary:
India won the silver medal in the first-ever 4x400m mixed relay in the history of Asian Games, with Bahrain clinching the gold.
Summary:
He added that 96% of search results for the term "Trump News" were from left-wing outlets.
Summary:
Fifty-seven-year-old comedian Eddie Murphy is expecting his tenth child.
This will be his second child with his 39-year-old girlfriend Paige Butcher.
Summary:
Actress-turned-producer Pooja Bhatt has said she doesn't have a PR machinery and she handles all her social media accounts herself.
Pooja further said she prefers Instagram to other platforms.
Summary:
Speaking about the Kapoor family's decision to sell RK Studio which was founded by his father Raj Kapoor, Randhir Kapoor said, "With a...heavy heart, we've decided to let it go." The decision was taken following last year's fire at the studio.
Summary:
Hima Das, India's first ever gold-winner in a track event at the World Junior Athletics Championships, was disqualified from the 200m semi-final at the Asian Games 2018 for a false start.
Summary:
Gold-winner Manjit Singh and silver-winner Jinson Johnson became only the third Indian pair to win two medals in the men's 800m event at the Asian Games.
Summary:
Nine people are said to have suffered gunshot wounds after the gunman interrupted a game of EA Sports' Madden NFL 19 football video game.
Summary:
Portugal player Cristiano Ronaldo's overhead kick for Real Madrid against his current club Juventus in the Champions League last season has been chosen as the UEFA Goal of the Season.
Summary:
The son of Portugal football team captain Cristiano Ronaldo, Cristiano Jr, has begun training with the Juventus youth academy's Under-9 team.
Summary:
Germany's antitrust watchdog plans to take action against Facebook after finding that the social media giant abused its market dominance to collect users' data without their consent or knowledge.
Summary:
Late Tamil Nadu CM Karunanidhi's son MK Stalin, who was elected as DMK President on Tuesday, has said it is a "new birth" for him.
Summary:
West Bengal CM Mamata Banerjee on Tuesday accused the BJP of resorting to "politics of killing" in the state and using central agencies against opposition parties in India.
Summary:
In response, Didi Chuxing apologised and suspended its carpooling service along with two senior executives at the company.
Summary:
The police said they suspect that the accused was unable to arrange finances for getting his daughters married and allegedly attacked them out of frustration.
Summary:
The girls of Raipur's Hidayatullah National Law University hostel are staging a protest against the hostel's alleged discriminatory rules.
Summary:
The Supreme Court on Tuesday said that if the Taj Mahal gets spoilt once, authorities won't get a second chance to preserve it.
Summary:
The bus reportedly hit a pothole before colliding with the vehicle carrying Lasne.
Summary:
Trump struggled to connect with Nieto on phone.
Summary:
French oil and gas giant Total's Chief Executive Officer Patrick Pouyanné has said that he and his wife drive an electric car on weekends.
To make long distances I don't use an electric car," he added.
Summary:
The probe found evidence to support Indian officials' conclusion that the companies were involved in the fraud.
Summary:
India's 28-year-old sprinter Manjit Singh won the gold medal in the men's 800m event at the 2018 Asian Games, securing the ninth gold for the country.
Summary:
Maoist ideologue P Varavara Rao was arrested on Tuesday by Pune Police in Hyderabad reportedly on charges of being part of a plot to assassinate PM Narendra Modi.
Summary:
Japan's Daishowa Paper Products has entered the Guinness World Records for creating the most expensive box of facial tissues priced at over â¹6,300.
Summary:
Amitabh Bachchan has said from the younger lot of actresses, he's scared to work with Alia Bhatt, Anushka Sharma and Deepika Padukone.
Summary:
Around 70,000 people have volunteered to participate in a clean-up drive in Kerala's Kuttanad region to remove debris after floods in the area.
Summary:
Without revealing the exact details of the investment, Sharma said the valuation given by Berkshire is "handsomely higher" than Japan's SoftBank.
Summary:
India's first manned space flight is expected to send a three-member crew for seven days into space, said Jitendra Singh, Minister of State for Atomic Energy and Space.
Summary:
The DMK on Tuesday said that as many as 248 party workers died, after knowing about the demise of former party chief M Karunanidhi.
Summary:
A video of rainwater gushing through the ceiling of Guwahati's international airport has gone viral.
Summary:
With earnings of â¹100.45 crore within 13 days of release, Akshay Kumar starrer 'Gold' has become the actor's ninth film to enter the â¹100 crore club.
Summary:
The sport of Kurash, in which India has won two medals at the Asian Games 2018, is a sport in which wrestlers grab their opponents by the towel around their waist to throw them on the ground.
Summary:
Captain Virat Kohli, pacer Bhuvneshwar Kumar and Murali Vijay are the only currently-active Test cricketers to feature in former cricketer VVS Laxman's best Indian Test XI of the last 25 years.
Summary:
ICC's Anti-Corruption Unit launched an appeal to identify the whereabouts of the suspected Mumbai-based match-fixer, Aneel Munawar, who was seen in Al-Jazeera's documentary on match-fixing.
Summary:
Talking about her defeat to the world number 44, Halep said, "Maybe the noise in the crowd...
Summary:
Google on Monday launched a new tool that will show users the amount of time they spend on its video-sharing platform YouTube.
Summary:
Google has unveiled Project NavlekhÃÂ to help Indian language publishers take their content online.
Summary:
After late Tamil Nadu CM Karunanidhi's son MK Stalin was elected DMK President, Congress President Rahul Gandhi tweeted, "Congratulations...
Summary:
A Tesla driver who crashed his Model S vehicle into a firetruck on Saturday in the US has said, "I think I had Autopilot on." The Tesla was allegedly going at about 100 kmph when it hit the firetruck, the California Highway Patrol said.
Summary:
Long-term exposure to air pollution can significantly lower brain function, which reflects in decreased verbal and mathematics scores, according to a new study.
Summary:
A man and 116 cattle died in Himachal Pradesh's Nirmand village after being trapped under boulders when a portion of a hill collapsed on Monday.
Summary:
Congress President Rahul Gandhi, who is currently visiting Kerala, said the floods in the state have revealed "two distinct ideas of India." He added, "The first is one of love & compassion for all living beings, particularly in their suffering.
Summary:
Hulot said that he had not informed President Emmanuel Macron or PM ÃÂdouard Philippe of his decision before making the announcement.
Summary:
"I've said right from the beginning that no deal is better than a bad deal," she added.
Summary:
The Vatican has rolled back a recommendation by Pope Francis that parents seek psychiatric help if their children show homosexual tendencies.
Summary:
Sajjan Jindal-led JSW Steel will replace drugmaker Lupin in the benchmark Nifty 50 index from September 28, the National Stock Exchange (NSE) has announced.
Summary:
The share price of Mukesh Ambani-led Reliance Industries (RIL) crossed â¹1,300 for the first time on Tuesday, taking the oil-to-telecom conglomerate's market value to over â¹8.35 trillion ($119.1 billion).
Summary:
Khaaskar 20 donkey kicks, 20 monkey roll...aap ke liye sahi rahega," he tweeted.
In another tweet, Hrithik wrote, "Aapki dukaan ki pragati ke liye meri taraf se yeh tweet."
Summary:
Congress President Rahul Gandhi, who is on a two-day visit to flood-hit Kerala, let an air ambulance take off before his own helicopter at a helipad in Chengannur on Tuesday.
Summary:
Vijay Shekhar Sharma-led Paytm on Tuesday officially announced that world's third richest person Warren Buffett's Berkshire Hathaway has invested in the digital payments startup.
Summary:
A video of an Assistant Sub-Inspector in Punjab thrashing an elderly woman and dragging her by her hair in the state's Bhatinda district has surfaced online.
Summary:
Tripura CM Biplab Deb on Monday said, "When ducks swim in water, oxygen level automatically increases in the waterbody.
Summary:
"It seems that no one is interested in monitoring conditions in shelter homes," it remarked.
Summary:
One person died and 25 people are critical at a hospital in Madhya Pradesh's Datia district nafter they were allegedly given injections using the same syringe on Monday.
"Single syringe was used for all patients.
Summary:
He has served as Senior Adviser on the 2030 Agenda for Sustainable Development at UNEP.
Summary:
The rifles had been kept in the armoury as they were being replaced with newer models.
Summary:
People in the Brittany region in France were banned from bathing on the beach after a dolphin in mating season kept chasing swimmers and rubbing itself against boats.
Summary:
She had assured the manager that her pregnancy will not affect her performance.
Summary:
The Khadi and Village Industries Commission (KVIC) had sought â¹525 crore in damages from Fabindia for 'illegally' selling apparel with the 'khadi' tag.
Summary:
Meghna Gulzar, who directed Alia Bhatt starrer 'Raazi', has said, "Why do the alarm bells ring when a woman tells a woman's story?" She added, "We also had a lot of male directors who have made films with women at the centre of the story.
Summary:
They had collaborated earlier for the 2017 film 'Half Girlfriend' which also starred Shraddha Kapoor.
Summary:
Kajol has revealed that she and husband Ajay Devgn had planned to take a two-month world tour for their honeymoon but had to return midway.
Summary:
Saif's character in Navdeep Singh's film is "almost like an animal who fights for his rights".
Summary:
India scored a total of 76 goals in the group stage and conceded just three.
Summary:
Technology giant Google has pledged â¹7 crore for the relief and restoration work in Kerala due to floods, the company's India VP Rajan Anandan said on Tuesday.
Summary:
Former Indian cricketer Virender Sehwag addressed himself as "Ganju ji" in the photos he posted of him celebrating Raksha Bandhan with his sisters Anju and Manju.
Summary:
Yoga guru Ramdev's Patanjali has delayed the launch of its Kimbho chat app after it missed the official roll-out date on Monday.
Summary:
A self-driving taxi, operated by Hinomaru Kotsu, began operating on public roads in Japan's capital Tokyo on Monday.
Summary:
NCP chief Sharad Pawar has claimed he's "happy" that Congress President Rahul Gandhi said he is not in the race to become PM.
Summary:
The AAP has announced Atishi Marlena, former advisor to Education Minister Manish Sisodia, as its first candidate for 2019 Lok Sabha elections.
Summary:
Delhi-based healthcare startup myUpchar has raised $5 million in a series A funding round from Nexus Venture Partners, Omidyar Network, and Shunwei Capital.
Summary:
The boy has been arrested by the police.
Summary:
The $7.15 billion deal gives Nestlé perpetual rights to sell Starbucks products.
Summary:
Police made the arrest while investigating a string of agricultural thefts in the area.
Summary:
The man said he was hired as a stockist for Hrithik's brand HRX, but the brand didn't regularly supply products, after which its sales stopped.
Summary:
He had paid a visit to the temple with the team of his upcoming film 'Manmarziyaan'.
Summary:
The Kerala Chief Minister's Distress Relief Fund has received over â¹700 crore in donations, excluding the amount received on public holidays.
Summary:
The US search giant said that customers will get instant, pre-approved loans "right within Google Pay in a matter of seconds".
Summary:
Congress spokesperson Abhishek Singhvi on Monday dismissed reports that the RSS extended an invitation to Congress President Rahul Gandhi to attend a lecture series by its chief Mohan Bhagwat.
Summary:
The Congress party has claimed that over 70% of the country's political parties want to return to the old system of using ballot papers for upcoming elections.
Summary:
At least 2 people were killed and 34 injured on Tuesday after the bus they were travelling in fell into a gorge in Uttarakhand's Tehri Garhwal.
Summary:
At least five Class 5 and 6 students of a Rohtak gurukul have alleged that they were sodomised by their seniors and staff members for several months.
Summary:
A poem written by a 17-year-old girl hours before her death was used as evidence to award life imprisonment to her murderer by a Delhi court, which described him as a 'jilted lover'.
Summary:
The Maldivian government summoned Indian envoy Akhilesh Mishra on Sunday to lodge a protest over BJP leader Subramanian Swamy's tweet asking India to invade the country if their elections are rigged.
Summary:
India has opposed the CPEC as a major section of the corridor passes through Pakistan-occupied Kashmir (PoK).
Summary:
She was shot with a rubber-coated steel bullet the first time when she was retreating from tear gas at a weekly demonstration.
Summary:
US President Donald Trump postponed State Secretary Mike Pompeo's visit to North Korea over a letter he received from a senior official in the regime, reports quoting US officials said.
Summary:
Milind Soman has revealed that he enjoys acting but doesn't get offers from directors.
"Lot of directors have called me saying that they have enjoyed my work...but they never asked me to do a film with them," he further said.
Summary:
India had clinched men's table tennis team gold at Commonwealth Games earlier this year.
Summary:
Alonso later said that F1's 'halo' head protection saved Charles Leclerc.
Summary:
Mohammad Kaif, who retired from cricket recently, said that his career had "more quality than quantity".
Adding he has no regrets about his career, Kaif said, "I didn't get many chances to prove myself."
Summary:
A kid, brought on for the ceremonial kick-off in a French league match between Rennes and Marseille, ran with the ball before bundling it in the Rennes net and then celebrating before going off the pitch.
Summary:
AAP leader and Delhi Deputy CM Manish Sisodia on Tuesday alleged, "PM Narendra Modi does not want the Delhi government's work to reach an international platform." "I was invited to speak about Delhi education reforms at the World Education Conference, Moscow.
Summary:
A US judge has dismissed the shareholders' lawsuit against Elon Musk-led Tesla accusing the carmaker of misleading Model 3 vehicle's production targets.
Summary:
As part of the acquisition, Tapzo's Founders, Ankur Singla and Vishal Pal Chaudhary, are likely to join the Amazon Pay team.
Summary:
The temporary speed restrictions will be removed once the track department finishes maintenance at night, said an official.
Summary:
Police have arrested a man in Bihar's Saharsa after a video of a schoolgirl being stripped and groped by a group of men on a road surfaced online on Monday.
Summary:
Consumer goods company Colgate-Palmolive India on Monday announced the appointment of Mukul Deoras as Chairman with effect from September 1.
Summary:
BITS Pilani's PG Program in Big Data in association with UpGrad has helped professionals transition to companies like Microsoft, Spark NZ and JP Morgan.
Summary:
World number three PV Sindhu lost to world number one Tai Tzu-ying in the women's singles final on Tuesday to bag India's first-ever silver medal in badminton at Asian Games.
Summary:
Rajbeer Singh, 22, is set to pedal his way to the 18th Asian Games.
Growing up, Singh was not interested in academics but found his calling in sports.
Summary:
The Indian men's archery team bagged silver medal in the men's compound event at the Asian Games 2018 after losing the shoot-off in the final against South Korea on Tuesday.
Summary:
Kerala CM Pinarayi Vijayan said during an interview that the state is "thinking a bit different", and seeing the floods as an "opportunity to create a 'Nava-Keralam' (New Kerala)." He said that they were hopeful of the Centre's support in rebuilding the state.
Summary:
"The owner of Mercedes, the car-manufacturing company, named his company after his daughter.
Summary:
MissMalini Entertainment, parent company of lifestyle and entertainment content website MissMalini.com, has raised â¹10.4 crore in a pre-Series A funding from Orios Venture Partners and New Enterprise Associates.
Summary:
NASA has released satellite images to show the extent of damage by flooding in different parts of Kerala.
Summary:
Vinesh Phogat, who recently became the first Indian woman wrestler to win gold at Asian Games, got engaged to long-time boyfriend Somveer Rathi at the Delhi airport upon her return from Jakarta on Saturday.
Summary:
After Congress President Rahul Gandhi's denial of his party's criminal involvement in 1984 anti-Sikh riots, BJP leader Tajinder Pal Singh has placed hoardings in Delhi, reading "Rajiv Gandhi The Father of Mob Lynching".
Summary:
The AAP has submitted to PM Narendra Modi over 10 lakh letters in support of its demand for full statehood for Delhi.
Summary:
Former Punjab CM Parkash Singh Badal was "aware" of the proposed police action in the 2015 sacrilege case, according to Justice Ranjit Singh Commission report tabled in Assembly on Monday.
Summary:
The National Green Tribunal has directed former DGP of Uttarakhand BS Sidhu to pay â¹46,14,960 as damages for illegally cutting 25 Sal trees in the Mussoorie Forest Division.
Summary:
The Supreme Court has allowed a married woman to stay with her parents instead of her husband who converted from Islam to Hinduism to marry her.
Summary:
An NRI man who is serving a 28-year jail sentence for his wife's murder will be shifted from London to a jail in Amritsar on Tuesday.
Summary:
Two members, including a doctor, of 'Khoon Chuswa' gang have been arrested for allegedly sedating youngsters and drawing out their blood in Uttar Pradesh's Basti.
Summary:
Delhi Lieutenant Governor Anil Baijal on Monday approved the proposal to ban motor vehicles in 1.5-km stretch from Red Fort to Fatehpuri Mosque in Chandni Chowk from 9 am-9 pm daily, government officials said.
Summary:
Delhi Police have arrested Bihar gangster Vikas Singh who allegedly abducted Nepalese businessman Suresh Kedia in 2016 and took gold worth â¹10 crore as ransom to release him.
Summary:
Actress Mouni Roy has said she would love to portray a classical dancer, adding, "Since childhood, playing the role of a classical dancer in a film has always been my dream." "I want to do all kinds of roles and genres....want to become a versatile actor," she added.
Summary:
Sunny Deol said he hasn't delivered a "greater successful film" for a very long time, adding, "My last massive hit was 'Gadar: Ek Prem Katha'." "There's a void now somewhere...I hope things turn positive," he further said.
Summary:
Deepika Padukone said she feels there are too many biopics being made and she can't count the number of biopics that the actors have been offered.
Summary:
"I would say it's a film for all, across nationality, age and gender.
Summary:
She further said that people love pitting women against each other.
Summary:
The Indian women's archery team on Tuesday won the silver medal in the compound event for the first time in the history of Asian Games.
Summary:
Manchester United suffered their second successive defeat in the Premier League after losing 0-3 to Tottenham Hotspur at Old Trafford on Monday.
Summary:
Wishing Sri Lankan cricketer Lasith Malinga on his 35th birthday on Tuesday, Sachin Tendulkar tweeted, "When it came to batting against #LasithMalinga, I always said ...
Summary:
Besides generating power for Uttarakhand, it will cater to water needs of the six basin states.
Summary:
The 65-year-old is only the second President of the party after Karunanidhi, who held the post for 49 years.
Summary:
Supreme Court judges Kurian Joseph and KM Joseph on Monday sang songs in Hindi, English and Malayalam at a fundraising event for Kerala flood victims organised in Delhi.
Summary:
The usage of drones for delivering goods and food items has been restricted.
Summary:
The Tripura government has issued a dress code, barring government officials from wearing jeans, cargo pants, and sunglasses.
Summary:
CBSE on Monday said that students whose board exam-related documents such as marksheets, migration certificates and pass certificates were lost or damaged due to Kerala floods can be retrieved from its digital repository.
Summary:
Neeraj Chopra, the first Indian to bag javelin gold at Asian Games, taught himself the sport by watching videos of world record holder Jan Zelezny on YouTube.
Summary:
In an article in Shiv Sena mouthpiece 'Saamana', party MP Sanjay Raut raised questions about whether the announcement of ex-PM Atal Bihari Vajpayee's death was delayed in wake of PM Narendra Modi's Independence Day speech.
Summary:
Toyota Sienna minivans will be equipped with Uber's self-driving technology and piloted on Uber's networks from 2021.
Summary:
Ahmedabad District Cooperative Bank (ADCB) has filed a criminal defamation case against Congress President Rahul Gandhi and spokesperson Randeep Surjewala over their "false and defamatory allegations" against the bank.
Summary:
The Andhra Pradesh government plans to conduct a 'sarpayagam', a ritual to appease the snake god, after over 100 cases of snakebite were reported over the last two months.
Summary:
National carrier Air India has removed a senior executive from the post of General Manager (IFS) over his alleged involvement in a sexual harassment case.
Summary:
Farooq Dar, the man who was tied to a jeep as a human shield by Major Leetul Gogoi in 2017 said, "The person...responsible for my destruction has...eventually been shamed, God has his ways to do justice." This comes after the Indian Army ordered disciplinary action against Major Gogoi as he was found at a Srinagar hotel with a local woman.
Summary:
Pakistan's Minister for Human Rights Shireen Mazari has said that the government is preparing a proposal which aims at resolving the issue of Kashmir.
Summary:
The Punjab Assembly has passed a resolution asking the Centre to pursue a corridor to Gurdwara Darbar Sahib Kartarpur in Pakistan, where Guru Nanak Dev spent the last years of his life.
Summary:
US President Donald Trump had threatened to withdraw from NAFTA, claiming that the trilateral deal disadvantaged the US.
Summary:
Challenging the US' sanctions, Iranian lawyers on Monday told the International Court of Justice that the US seeks to damage its economy "as severely as possible".
Summary:
Built in 2002, the turbine had been out of commission since May last year after being struck by lightning.
Summary:
Japanese rail company JR West has defended its safety exercise which requires employees to sit beside tracks in tunnels as bullet trains speed by at 300 kmph.
Summary:
Annu Kapoor said he works for money, adding, "Paisa mera dharam hai, main paise ki puja karta hoon (Money is my religion, I worship money)." "The two things that I won't do for money is betray my country or harm anyone," he further said.
Summary:
Shah Rukh Khan said he hopes to make Indian films of international level, adding, "I'd like Tom Cruise to say one day 'I've been given a chance in a Hindi film'." "Man, that will be wonderful.
Summary:
India's Dharun Ayyasamy broke his own national record in the men's 400m hurdles to bag silver at the Asian Games 2018 on Monday.
Summary:
The rules were officially overturned by US President Donald Trump's administration in June.
Summary:
Palmer Luckey, the co-founder of Facebook-owned startup Oculus, has said the billion-dollar augmented reality (AR) startup Magic Leap's first headset is a 'tragic heap'.
Summary:
They found that the compounds were detectable in 63% of the provided samples.
Summary:
A five-year-old girl, suffering from pneumonia, died on Monday after the cylinder attached to her ventilator system ran out of oxygen while she was being shifted to another hospital 160 kms away in Chhattisgarh.
Summary:
"The partner with whom Europe built the new post-World War order appears to be turning its back on this shared history," Macron said referring to the US.
Summary:
Notably, Neeraj had also become the first Indian to bag gold in javelin throw at the Commonwealth Games earlier this year.
Summary:
World's third richest person Warren Buffett-led American conglomerate Berkshire Hathaway today confirmed that the company has made an investment in Paytm's parent company One97 Communications.
Summary:
The Poco F1 is as good as it gets and even though it does not reinvent the wheel, it gets the basics right, writes India Today in its phone review.
Summary:
The Foreign Ministry has asked Antigua to arrest PNB scam-accused Mehul Choksi and initiate his extradition to India stating that an Interpol notice isn't mandatory.
Summary:
Pakistan Railways officer Mohammad Hanif Gul has applied for 730 days of fully paid leave citing new Railways Minister Sheikh Rashid Ahmad's attitude is extremely non-professional and ill-mannered.
The minister is fully entitled to work with a team that shares his vision," Gul's application read.
Summary:
"This season, my collection is inspired by Lakme's theme, Shades of a Diva," said Jaising.
Summary:
Summary:
She was interrupted by the organizer, following which Esha and Hema walked off.
Summary:
She said that Gaia felt very nervous about going out after the incident.
Summary:
Facebook on Monday said it had removed the account of Myanmar's army chief Senior General Min Aung Hlaing and other pages belonging to the country's military to prevent the spread of "hate and misinformation".
Summary:
African-American mathematician and NASA scientist Katherine Johnson, who is often regarded as 'human computer' for calculating space mission trajectories by hand, turned 100 years old on Monday.
Summary:
Three people were arrested in Meerut for allegedly sharing a false post on social media claiming BJP MLA Sangeet Som was missing.
Summary:
Diesel prices on Monday hit a record high of â¹69.46 per litre in Delhi while petrol inched towards â¹78 a litre mark after a fall in rupee made imports costlier.
Summary:
UP CM Yogi Adityanath has said that invitations are being sent to 192 countries for Kumbh Mela.
Summary:
The level of dissolved oxygen has remained zero since 2015 in most parts of Yamuna river in Delhi, as per a report.
Summary:
Amid US sanctions that prevent Venezuela from accessing foreign currency, the price of 1 kilogram of cheese hit 7.5 million bolivar.
Summary:
This comes after Malaysia reportedly cancelled three BRI projects to avoid adding to its debt.
Summary:
Days after fugitive Vijay Mallya complained of conditions at Indian jails, PNB fraud accused Mehul Choksi opposed CBI's plea for Interpol notice saying that the conditions in Indian jails are not good.
Summary:
Cash-strapped carrier Jet Airways on Monday reported a net loss of â¹1,323 crore during the April-June quarter of the current financial year.
Summary:
As part of 'Operation Madad', 1,173 people were airlifted while 15,670 were rescued by the teams using boats.
Summary:
Ceglia had claimed that Zuckerberg had signed a 2003 contract, giving him half ownership of Facebook.
Summary:
Tesla CEO Elon Musk has said the startup's autonomous Tesla Semi truck prototype travelled on its own across the US using its existing Supercharger network.
Summary:
Sports social engagement app Rooter today announced it has raised â¹4.5 crore in pre-Series A funding round from a group of Indian and foreign investors from Venture Catalysts.
Summary:
Scientists have discovered that beluga whales and narwhals go through menopause like humans, taking the total number of species known to experience this to five.
Summary:
The memorial would reportedly be constructed at Rashtriya Smriti Sthal near Rajghat where the former PM was cremated.
Summary:
Authorities in Spain have seized 67 kilograms of cocaine stuffed in pineapples at a wholesale fruit and vegetable market in the capital Madrid.
Summary:
Iran also pledged to help reconstruct the war-torn country, following Hatami's meeting with his Syrian counterpart Ali Abdullah Ayoub and President Bashar al-Assad.
Summary:
Police later discovered that the orphanage didn't have a license.
Summary:
The pilot of the plane that crashed in Nepal leaving 51 dead smoked continuously and cried inside the cockpit, according to a draft of an inquiry report leaked on Monday.
Summary:
Ex-Australia batsman Donald Bradman scored 6,996 runs of Australia's 27,624 bat runs in the 52 Tests he played, which is 25.32% of his team's runs.
Summary:
The video also features footage from GoT's previous season and scenes from HBO's other upcoming series.
Summary:
this man is something else...Respect." Clarifying his earlier tweet, Jaaferi wrote, "It was a very strong possibility given his track record, (so) I put forward my thoughts and admiration.
Summary:
CM Pinarayi Vijayan had recently said in an interview that they will begin talks with international agencies, including World Bank, "really soon".
Summary:
People in the video had actually queue up at a petrol pump as there was a shortage of fuel during the recent Kerala floods.
Summary:
Rashtriya Lok Samta Party (RLSP) chief and Union minister Upendra Kushwaha has said, "One can prepare kheer with milk from the Yadavs and rice from the Kushwahas".
Summary:
Earlier, it was reported that Biyani held talks with Amazon and Alibaba for investment.
Summary:
Bengaluru-based digital lending platform ZestMoney has raised $13.4 million (about â¹94 crore) in funding led by Chinese smartphone manufacturer Xiaomi.
Summary:
A court in UAE's Dubai has sentenced an Indian national to a three-month suspended jail term along with deportation orders for forging a parking ticket.
Summary:
Congress MP Shashi Tharoor has started #ProudToBeMalayali on Twitter, purportedly in reaction to a 30-second viral video of TV anchor Arnab Goswami wherein he is heard saying, "This group is shameless." Reports circulating on social media alleged that Goswami was slamming Keralites.
Summary:
A 27-year-old Delhi-based sales executive learnt he was a director of 13 companies and engaged in transactions worth â¹20 crore after being issued a notice by the Income Tax Department.
Summary:
The woman, in her complaint to police, said that the driver masturbated as well and refused to stop the ride despite being asked repeatedly.
Summary:
Pakistan has banned special treatment given to VIPs at airports, as part of its new austerity plan.
Summary:
A UN report has said that Myanmar's army chief Senior General Min Aung Hlaing and other top military figures must be prosecuted for genocide against the Rohingyas.
Summary:
Anil Ambani-led Reliance Communications on Monday said it has completed the sale of fibre assets worth â¹3,000 crore to elder brother Mukesh Ambani-led Reliance Jio. In December 2017, RCom struck a â¹25,000-crore deal with RJio for the sale of its assets mortgaged with different banks to avoid insolvency proceedings.
Summary:
Shraddha Kapoor, who will be portraying Saina Nehwal in her upcoming biopic, took to social media and congratulated Saina for becoming the first Indian woman to win a bronze medal at the Asian Games 2018 in badminton singles.
"Congratulations Saina!
Summary:
Wishing his wife and actress Neha Dhupia on her 38th birthday on Monday, Angad Bedi shared a picture with her while captioning it, "Happy birthday to my world.
Summary:
Jaya Prada, who made her Bollywood debut with Rishi Kapoor's 'Sargam' in 1979, said that she would want 'Sargam' to be remade and thinks Ranbir Kapoor and Alia Bhatt would be ideal to play the lead roles.
Summary:
In a Facebook post, Kerala CM Pinarayi Vijayan has urged Malayalis across the world to contribute a month's salary to rebuild the flood-hit state.
"Everyone won't be able to give their one month's salary together.
Summary:
Bangladesh middle-order batsman Mosaddek Hossain's wife Sharmin Samir Usha has accused him of driving her out of their home and torturing her over dowry.
Summary:
Summary:
Talking about Uber's plans to focus on its bike business, the startup's CEO Dara Khosrowshahi admitted that Uber makes less money from a bike ride than from a trip in a car.
Summary:
Talking about the startup world, Walmart India's President and CEO Krish Iyer has said, "I think I cannot advise startups because I am learning from them." He also said that these small startups should be bold enough to approach large companies and tell them how innovative they are.
Summary:
The University Grants Commission (UGC) has issued a notice warning 21 Delhi colleges that it may withhold their grants and benefits if they don't appoint regular principals.n"Regular principal is important for good administration and good academic environment," said UGC secretary Rajnish Jain.
Summary:
Indian Army ordered disciplinary action against Major Leetul Gogoi as he was found at a Srinagar hotel with a local woman on May 23.
Summary:
A special trial court in Ahmedabad sentenced two persons to life imprisonment and acquitted three others in 2002 Sabarmati Express train burning case in Godhra, Gujarat.
Summary:
Around 20 people including officials from the aviation regulator and SpiceJet were onboard the test flight that lasted for around 25 minutes.
Summary:
Sindhu achieved the feat by defeating world number two Akane Yamaguchi 21-17, 15-21, 21-10 in 66 minutes in the semi-final.
Summary:
Gandhi had alleged the RSS sought to "capture" every institution in the country.
Summary:
World's third richest man and Berkshire Hathaway Chairman Warren Buffett is reportedly set to invest around â¹2,500 crore in One97 Communications, the parent company of digital payments startup Paytm.
Summary:
The Maharashtra government announced that anyone flouting noise pollution norms in Mumbai's silent zones would have to pay â¹1 lakh as fine and could face imprisonment of up to five years.
Summary:
An Indian delegation will travel to Lahore for a meeting of Permanent Indus Commission on August 29-30, in what is being called the first bilateral engagement since Pakistan PM Imran Khan took office.
Summary:
Information Technology Minister Ravi Shankar Prasad, while addressing a meeting of G20 IT ministers, said social media platforms will never be allowed to abuse electoral processes in India.
Summary:
A Delhi court has acquitted accused Satnam Singh and Tejinderpal Singh in the 1981 Indian Airlines plane hijacking case.
Summary:
The Supreme Court on Monday sought a reply from the Centre and WhatsApp on why the messaging platform had not appointed a grievance officer in India yet.
Summary:
Iran had earlier threatened to block oil shipments through the route if its own crude exports were cut.
Summary:
Two people were killed and at least eleven were injured in a mass shooting incident when a man opened fire at an online video game tournament that was being streamed from a restaurant in Florida, USA.
Summary:
Summary:
Summary:
Summary:
Talking about the performance of his film 'Jab Harry Met Sejal', director Imtiaz Ali said, "This is not the first or the last failure or disappointment that I'm going to have in life." He added that he has gained more from his failures than from his successes.
Summary:
India, who have scored 56 goals at the Games so far, will next face Sri Lanka in their last Pool A match.
Summary:
During a question-answer session on Twitter, ex-Pakistan captain Shahid Afridi revealed that current India head coach Ravi Shastri gave him the 'Boom Boom' title.
Summary:
Indian sprinter Dutee Chand, who won silver medal at Asian Games by running 100m in 11.32 seconds, will be awarded with â¹1.5 crore by the Odisha government.
Summary:
Messaging service WhatsApp has notified its users that the messages backed on Google Drive aren't protected by its end-to-end encryption.
Summary:
West Bengal CM Mamata Banerjee on Sunday sent a rakhi to Patidar leader Hardik Patel who is sitting on an indefinite fast at his residence demanding reservation for Patidar community and waiver for farm debts in Gujarat.
Summary:
Meghalaya CM and National People's Party chief Conrad Sangma has won the bypoll for the South Tura Assembly seat by a margin of over 8,400 votes.
Summary:
Samajwadi Party leader Shivpal Singh Yadav said that he has been waiting for the past one-and-a-half year for a responsible position in the party and added, "How long will I tolerate this utter neglect." He further said, "I want some responsibility given to me...all of us [should] fight [2019 Lok Sabha elections] together.
Summary:
When asked about what he has learned from startups, Walmart India's President and CEO Krish Iyer in a recent interview said, "I believe in 'fail fast, fail cheap'".
Summary:
China's transport ministry on Monday said that the country's ride-hailing firms that compromise its passengers' safety were not needed.
It comes after a Didi Chuxing passenger was raped and murdered by her driver, forcing the firm to suspend its carpool service.
Summary:
External Affairs Minister Sushma Swaraj has said that relief is just a tweet away if 'Pravasi Bharatiya' get stuck anywhere in the world.
Sushma made these statements during her visit to Vietnam.
Summary:
The Mumbai Police on Sunday arrested 39-year-old Vikas Sachdeva for allegedly molesting a minor Bollywood actress onboard a Delhi-Mumbai flight eight months ago.
Summary:
The fire brigade was pressed into rescue operations at the 18-year old building for the economically weaker sections.
Summary:
Several guests suffered uncontrollable diarrhoea with many even defecating in the swimming pool at Egypt's five-star hotel evacuated by Thomas Cook last week following a couple's death within hours of each other.
Summary:
This is a 'mandir', don't do this." She repeatedly asked the paparazzi to stop clicking her pictures.
Summary:
The state of Kerala is being punished with floods because of beef eating, Karnataka BJP MLA Basangouda Patil Yatnal has said.
Summary:
Dutee Chand, who won India's first Asian Games medal in the 100m event after 20 years on Sunday, revealed she ran with her eyes closed.
Summary:
Prime Minister Narendra Modi received 168 gifts worth â¹12.57 lakh during his foreign visits between July 2017 and June 2018, according to data of the Ministry of External Affairs' treasury.
Summary:
In a letter to PM Narendra Modi, former PM Manmohan Singh raised concerns over the government's plans to build a museum for all prime ministers at Teen Murti complex which houses a museum dedicated to Jawaharlal Nehru.
Summary:
The External Affairs Ministry has clarified that BJP MP Subramanian Swamy's tweet that India should invade the Maldives in case of rigging in its presidential elections, was his personal opinion and not the government's view.
Summary:
England will allow women to take an early abortion pill at home.
Summary:
Iran's Parliament on Sunday voted to remove Economic Affairs and Finance Minister Masoud Karbasian amid the ongoing economic crisis in the country.
Summary:
US President Donald Trump was seen colouring the US flag incorrectly and was criticised by social media users.
Trump is colouring...a Russian flag," tweeted a user.
Summary:
"I was happy that I'm an actor and am working.
He further said that his ambition is to just keep working and to do good work.
Summary:
"'Haider' was about a person's emotions and the issues that he grapples with...'Udta Punjab' was about the drug problem in Punjab," he added.
He further said that stories of 'Haider' and 'Udta Punjab' were told without fictionalising.
Summary:
Director Ali Abbas Zafar, while talking about his upcoming film 'Bharat', has said that Salman Khan and Katrina Kaif's "chemistry is unmissable" in the film.
Summary:
Esha Deol, who walked the ramp with her mother Hema Malini at Lakmé Fashion Week Winter/ Festive 2018, shared pictures on social media and wrote, "Walking the ramp with my most comfortable partner my mother." They walked the runway in traditional outfits for designer Sanjukta Dutta.
Summary:
Kareena Kapoor Khan, who will be collaborating with Ranveer Singh for the first time in Karan Johar's 'Takht', said that it will be an honour for her to share screen space with Ranveer.
Summary:
A pocket watch recovered from a passenger who died on the Titanic has been auctioned in the US for $57,500 (over â¹40 lakh).
Summary:
Italian football side Genoa's fans watched the first 43 minutes of the team's clash with Empoli in silence to honour the victims of the motorway bridge collapse.
Summary:
Summary:
A man has been arrested for stealing around 4,200 Xiaomi phones from the company's warehouse in Gurugram.
Summary:
Punjab CM Captain Amarinder Singh has said "Congress as a party" was never involved in 1984 anti-Sikh riots that killed an estimated 3,000 people.
Summary:
Flipkart's fashion subsidiary Myntra is reportedly set to open its first offline cosmetic store in Bengaluru under the brand Myntra Beauty.
Summary:
A Didi representative said the company felt deeply responsible and would complete a new compliance operation to be inspected.
Summary:
The Maldives may allow the two military choppers gifted by India in 2013 to stay back along with a 48-member crew for the next few months, reports quoting sources said.
Summary:
The bomb is believed to have been dropped by US forces during World War II.
Summary:
Several passengers took to Twitter to share pictures and videos of overcrowded platforms and stations.
Summary:
Kerala government on Sunday organised a formal farewell ceremony for the armed forces personnel who helped during the rescue and relief operations during the floods.
Summary:
India's distance runner Govindan Lakshmanan was stripped of his bronze medal at the 2018 Asian Games after he stepped out of the track during the men's 10,000m race on Sunday.
Summary:
A US-based hospital security guard named Doug was fired from his job for recording his farting videos on his phone for over six months.
Summary:
Talking about never being offered Hollywood films, Shah Rukh Khan said, "I don't even know if I'm good enough to do it." He jokingly added, "I think my English is a little weak." SRK further said, "They have to look at me; I can't look at them.
Summary:
Actress Neha Dhupia has said that some people frowned upon her for wearing loose clothes and gaining weight before she announced her pregnancy.
Summary:
The Delhi Police on Saturday told a city court that several AAP leaders including Delhi CM Arvind Kejriwal and Deputy CM Manish Sisodia assaulted Chief Secretary Anshu Prakash to pressure him "to act in a certain manner".
Summary:
The Central Information Commission (CIC) has rejected an RTI query about the expenses incurred on BJP President Amit Shah's security.
Summary:
Grocery startup Grofers' Co-founder and CEO Albinder Dhindsa said on Sunday that he is not worried about competition from Flipkart and Amazon as they are exploring the grocery segment.
Summary:
The ISRO's first manned space mission is on schedule as the programme was finalised a few years ago, K Vijay Raghavan, principal scientific advisor to the government has said.
Summary:
UP CM Yogi Adityanath has said that the deaths of at least 70 infants at Gorakhpur's BRD Medical College in 2017 were due to internal hospital politics.
Summary:
Talking to journalists in London, Congress President Rahul Gandhi has claimed that people support populist leaders like US President Donald Trump and Indian PM Narendra Modi as they are angry over not having jobs.
Summary:
The agency has recovered the pistol used to kill Lankesh from Andure's brother-in-law.nn
Summary:
Samajwadi Party patriarch Mulayam Singh Yadav on Saturday said, "Nobody respects me now.
Summary:
The Delhi Police on Friday arrested a government school's Sanskrit teacher for allegedly sexually assaulting class 10 student during summer vacations in June this year.
Summary:
The strike was part of an operation carried out by the Afghan and foreign forces that targeted two ISIS hideouts.
Summary:
The Russian Defence Ministry has warned that "foreign specialists" may stage a chemical attack in Syria in a bid to destabilise the ongoing peace process.
Summary:
The state-run North Korean media has accused the US of "hatching a criminal plot" against the regime, claiming US special units in Japan were staging an air drill that was aimed at infiltrating into its capital Pyongyang.
Summary:
Hima Das on Sunday became the first Indian sprinter since Manjit Kaur in 2006 to bag silver in the women's 400m event at Asian Games.
Summary:
The grant aims to bolster efforts in assisting flood-affected people to rebuild their lives, the foundation said.
Summary:
The 22-year-old was dropped from the 2014 Commonwealth Games over enhanced testosterone levels.
Summary:
With this, he became the first Indian since KK Premachandran in 1982 to finish second in the men's 400m event at the Asian Games.
Summary:
Karnataka Chief Minister HD Kumaraswamy on Saturday said that efforts are being made to destabilise his government.
Summary:
German luxury automaker Audi has unveiled a new electric supercar prototype Audi PB 18 e-tron which can go 0-100 kmph in less than 2 seconds.
Summary:
Launched in 2003, Spitzer trails behind the Earth and has been gradually drifting farther away from the planet.
Summary:
On the occasion of Rakshabandhan, PM Narendra Modi followed 55 women including sports and media personalities from his Twitter account.
Summary:
Over 60 people were injured during the stone-pelting festival held in Uttarakhand's Champawat.
Summary:
The earlier record stood at $38.1 million for a 1963 model of the same car.
Summary:
Actress Neha Dhupia, who recently announced her pregnancy, flaunted her baby bump as she walked the ramp with her husband Angad Bedi at the ongoing Lakmé Fashion Week.
Summary:
Actress Kangana Ranaut has donated â¹10 lakh to the Chief Minister's Distress Relief Fund for Kerala floods, as per reports.
We feel their pain and sense of loss," said Kangana.
Summary:
Summary:
During the 1924 Kerala floods, Mahatma Gandhi had urged people to contribute generously through a series of articles in his publications 'Young India' and 'Navajivan'.
Summary:
The Centre has so far released â¹600 crore for Kerala.
Summary:
Journalist turned politician Ashish Khetan, who recently quit the Aam Aadmi Party, on Sunday said that the party's chief Arvind Kejriwal is not the reason he quit AAP.
Summary:
Congress President Rahul Gandhi on Saturday claimed that liquor baron Vijay Mallya met some BJP leaders before fleeing the country.
Summary:
PM Narendra Modi's Pakistani-origin rakhi sister Qamar Mohsin Shaikh, who has been tying rakhi to him for 24 years, on Sunday said that there has been no difference in his behaviour.
Summary:
Because of what all we get from them, we decided to tie rakhis to the trees," the students said.
Summary:
Following reports of two people committing suicide in the state as part of the 'Momo challenge', the West Bengal government has issued directives to police stations and educational institutions to keep track of students' behaviour.
Summary:
"They then hacked into Cosmos bank's system, obtained the system's correct identification number," he added.
Summary:
Earlier, PM Modi and President Kovind extended their greetings to the nation on the festival.
Summary:
DMK's working president MK Stalin filed nomination for the post of party president on Saturday, the elections for which will be held on Tuesday.
Summary:
Police have booked a 55-year-old man for biting a 14-year-old girl's face during an alleged rape attempt at a village in Haryana's Rohtak district earlier this week.
Summary:
Bihar Chief Minister Nitish Kumar and Deputy Chief Minister Sushil Kumar Modi tied rakhis to trees in Patna on the occasion of Rakshabandhan today to create awareness about environment conservation among people.
Summary:
Iranian Foreign Minister Javad Zarif has said that the US is waging a "psychological war" against his country and its business partners.
Summary:
After a military parade in the Russian city of Kursk, a classic T-34 tank flipped over after falling off the side of a truck it had been attempting to board.
Summary:
The Democratic Republic of Congo has rolled out an experimental treatment for Ebola virus as the death toll rose to 67 since the outbreak was declared on August 1.
Summary:
Saina defeated Ratchanok Intanon 21-18, 21-16 in 42 minutes to become the first Indian to reach women's badminton singles semi-finals at Asiad.
Summary:
"August and September were completely washed out as we saw huge cancellations due to the massive floods," said Kerala's tourism director.
Summary:
Indian men's shooting team's senior shotgun coach, Mansher Singh, has said that the government should recognise the efforts of Indian coaches and consider increasing their salary.
Summary:
Following accusations of using fake Twitter bots to praise the company, Amazon has admitted to paying its employees to spread its message.
Summary:
Three people have been arrested after Akali Dal leader and Delhi Gurdwara Committee chief Manjit Singh GK was attacked by around 20 people at a gurudwara in California on Saturday.
Summary:
Gurugram police on Friday arrested a security guard who confined a 16-year-old girl to a room where he drugged and raped her for three months.
Summary:
Annan will be given a burial that "befits his status as a global icon, diplomat and statesman", he added.
Summary:
PM Narendra Modi on Saturday took to Twitter to express his condolences over the demise of former US Presidential candidate and Senator John McCain.
Summary:
Anil Ambani's Reliance Group filed a â¹5,000-crore defamation suit against Congress-run newspaper National Herald, alleging their article regarding Rafale deal was derogatory.
Summary:
She wanted their marriage to be declared void as it had taken place before completion of divorce with first wife.
Summary:
Rishi Kapoor has said that following last year's fire at Mumbai's RK Studios, which was founded by his father Raj Kapoor in 1948, the Kapoor family has decided to sell it.
Summary:
Summary:
Paying condolences to families of victims of Kerala floods in his Mann Ki Baat address, PM Narendra Modi said, "India stands shoulder to shoulder with the people of Kerala in this hour of grief." He added, "Air Force, Army, Navy, BSF, CISF, RAF, NDRF have left no stone unturned in the rescue and relief operations in...Kerala.
Summary:
Shot-putter Tajinderpal Singh dedicated his Asiad 2018 gold to his father, Sardar Karam Singh, who is battling fourth-stage bone cancer for the last two years.
Summary:
CPL side Barbados Tridents' Pakistani fast bowler Mohammad Irfan produced the most economical four-over spell in T20 history, against St Kitts and Nevis on Saturday.
Summary:
Former IIT Kharagpur staff has shared memories of their student P Sundararajan, who topped the 1993 Metallurgy batch and is now known as Google CEO Sundar Pichai.
Summary:
A group of men threw stones while Rajasthan CM Vasundhara Raje was speaking to a crowd from atop a bus in Jodhpur on Saturday.
Summary:
A group of three managed to enter Congress President Rahul Gandhi's event in London on Saturday and raised slogans like "Khalistan Zindabad".
Summary:
After an almost two-year journey, NASA spacecraft OSIRIS-REx, caught its first glimpse of asteroid Bennu last week and began its final approach toward the space rock.
Summary:
The duo had an argument over it and Aftab stabbed Kalam to death with kitchen knife.
Summary:
External Affairs Minister Sushma Swaraj tied rakhi to Vice President M Venkaiah Naidu on the occasion of Rakshabandhan on Sunday.
Summary:
However, one of the salesmen "started collapsing" after he consumed a soft drink offered by the lady.
Summary:
Children living in Bihar's Specialised Adoption Agencies are verbally abused and often locked in bathrooms, as per a report by Tata Institute of Social Sciences (TISS) which conducted audit of over 20 adoption centres.
Summary:
An engineer and an ex-armyman have been arrested for allegedly forging the signature of Railway Minister Piyush Goyal to dupe a man of â¹10 lakh.
Summary:
A 24-year-old man has been awarded death sentence by a court in Chhattisgarh's Durg district for raping and murdering a five-year-old deaf and mute girl in 2015.
Summary:
At least two people were killed and more than 240 others were injured after a 6.0-magnitude earthquake struck Iran's Kermanshah province on Sunday, officials said.
Summary:
Summary:
Iran's Olympic champion Sohrab Moradi broke weightlifting's longest standing world record in the men's 94kg class by lifting 189kg in snatch at Asiad 2018 on Saturday.
Summary:
Fouaad Mirza scored 26.40 to finish second to become the first Indian to win an individual Asiad silver medal in the equestrian event in Eventing since 1982.
Summary:
Indian cricketer Gautam Gambhir took to social media to share pictures of two transgender women tying rakhis on his wrist.
"It's not about being a man or a woman.
With proud transgenders Abhina Aher and Simran Shaikh and their Rakhi love on my hand.
Summary:
Rejhane Lazoja, a US Muslim woman is suing the country's border agents for allegedly confiscating her iPhone and data at the airport.
Summary:
It is one of 60 or so remaining of the original 200 that were built in 1976 and 1977.
Summary:
Summary:
Talking about Google's head-mounted smart glasses, Google X research lab Co-founder Sebastian Thrun has said, "We launched Google Glass too early." He also said it was launched before they had figured out the exact use case and built a functioning user interface.
Summary:
It is the second such incident this year after a passenger was murdered earlier in May.
Summary:
Ali is the founder of LuLu Hypermarket, a leading retail market chain in the Gulf.
Summary:
Summary:
Six-time senator and former US presidential candidate John McCain passed away on Saturday aged 81 after battling brain cancer.
Summary:
Salman will be sporting five different looks in the film.
Summary:
However, Fender refused and Sidwell was declared out.
Summary:
Summary:
Amazon's first-known job listing posted by the company's Co-founder and CEO Jeff Bezos on August 22, 1994, has gone viral after a Bloomberg anchor shared it on Twitter.
Summary:
Several BJP leaders immersing late Prime Minister Atal Bihari Vajpayee's ashes had a narrow escape after their boat capsized in Uttar Pradesh's Kuano river on Saturday.
Summary:
District Administration officials of UP's Unnao on Saturday exhumed the body of Yunus Khan, a key witness in the alleged murder of Unnao rape victim's father in April this year.
Summary:
The 38-year-old has lived in the UK since he was 12 but is a Ghanaian national.
Summary:
Krishnan further said that private ITIs lack quality labs and equipment.
Summary:
Reliance Naval and Engineering on Saturday said that Anil Ambani has resigned as the company's director with immediate effect.
Summary:
Summary:
Indian athletes participating in the Asian Games 2018 in Indonesia are yet to be paid their daily allowance of $50 per day even though many of the competitions have already finished at the event.
Summary:
India will next face Thailand in their last Pool B match on Monday.
Summary:
Indian shot-putter Tajinderpal Singh Toor, who won gold medal at the Asian Games 2018 with a record throw, wanted to be a cricketer since childhood.
Summary:
Portugal forward Cristiano Ronaldo missed an open goal but managed to create one for Mario MandÃ
¾ukiàwith his attempt as Juventus sailed to a 2-0 win over Lazio on Saturday.
Summary:
City's Aymeric Laporte scored his first goal in the Premier League.
Summary:
Google France announced that it's shutting down its official page on Google Plus service, directing its users to follow it on Twitter and Facebook.
Summary:
Facebook is testing a new label called 'things in common' for the comments section in the US.
Summary:
The only quality you possess is hatred against PM Modi." Patra also slammed Rahul for claiming RSS' idea is similar to the idea of Muslim Brotherhood.
Summary:
An elderly couple, along with their son, has reportedly been cooking food for roughly 1,000 people daily for the past one week in Kushalnagar, which is in the flood-hit Kodagu district of Karnataka.
Summary:
As many as 22 new AIIMS will come up across the country, Union Health Minister JP Nadda announced today while addressing the first convocation of AIIMS Bhubaneswar.
Summary:
The Royal Air Force has deployed Typhoon jets to the Baltic nations as part of the NATO's 'Enhanced Air Policing' mission to protect NATO airspace.
Summary:
China on Saturday called US President Donald Trump's accusations that it was not helping with the denuclearisation of the Korean Peninsula "irresponsible".
Summary:
Venezuelans have been fleeing the ongoing political and economic crisis in their country that has caused a shortage of food, medicine and basic goods.
Summary:
"The bank is fully committed to 'Digital India' initiative," PNB said in a statement.
Summary:
Tejinderpal's gold-winning attempt was an Asian Games record and a national record.
Summary:
The government on Saturday appointed scientist G Satheesh Reddy as the Chairman of the Defence Research Development Organisation (DRDO), three months after S Christopher completed his term in May this year.
Summary:
Earlier, Rahim would sit on a pedestal and address his followers on his birthday.
Summary:
Talking about being ranked 7th on Forbes' list of World's Highest-Paid Actors 2018, Akshay Kumar said, "It feels good momentarily, but I never take these lists too seriously...they keep changing, like seasons." He further said, "The idea is only to do good, better, and best work.
Summary:
Oscar-winning sound designer Resul Pookutty, while talking about Kerala floods, said, "It's like what happened during the (1947 India-Pakistan) Partition.
Summary:
Fashion designer Masaba Gupta, daughter of actress Neena Gupta and cricketer Vivian Richards, announced that she and her husband filmmaker Madhu Mantena have decided to separate on a trial basis after three years of marriage.
Summary:
Iran women's kabaddi Asiad gold-winning coach Shailaja Jain, who is Indian, has revealed she would remove girls from a WhatsApp group to inform them they weren't in the team.
Summary:
The Ministry of Defence on Saturday said that Karnataka minister Sa Ra Mahesh's personal remarks against Defence Minister Nirmala Sitharaman were 'in bad taste, which do not merit a response'.
Summary:
The biggest procurement approved is the over â¹21,000-crore purchase of 111 naval utility helicopters, which will be built by a competitively chosen Indian private sector company.
Summary:
The government is now tracking patients with faulty implants to ensure compensation.
Summary:
PepsiCo's India-born Chairman and CEO Indra Nooyi will be honoured with the 2018 Asia Game Changer of the Year award by global cultural organisation Asia Society.
Summary:
Ramdev's Patanjali Ayurved has moved the National Company Law Tribunal challenging the decision by Ruchi Soya's lenders to approve Adani Wilmar's â¹6,000-crore takeover bid.
Summary:
Hima Das, India's first ever gold-winner in a track event at the World Junior Athletics Championships, set a national record in her Women's 400m Heats at the Asian Games 2018 on Saturday.
Summary:
Shailaja Jain, the Asiad 2018 gold-winning Iranian women's Kabaddi team coach, said she might have helped India's men's team against Iran but their attitude made her feel like a "criminal for coaching outside." "I'm sad that India lost.
But I love kabaddi also...
Summary:
A hotel in Los Angeles' Beverly Hills added $1 million as an upcharge in Houston Astros' pitcher Justin Verlander's bill as he had helped his side beat local team Los Angeles Dodgers in the MLB World Series.
Summary:
Summary:
The vehicles have been recalled to fix a brake problem that can cause longer stopping distances.
Summary:
US-based home-rental startup Airbnb has named Pixar Studios' former Chief Financial Officer Ann Mather as the first woman on its board.
Summary:
The law was passed to tackle illegal listings.
Summary:
Patel said he was fasting at his Ahmedabad farmhouse after the government refused to grant him permission to protest at other venues.
Summary:
Delhi Chief Minister Arvind Kejriwal on Saturday said the alleged move to rename Ramlila Maidan after late PM Atal Bihari Vajpayee will not fetch the BJP any votes but changing the name of the Prime Minister might.
Summary:
The Kerala government has announced that electricity has been restored for over 23 lakh disrupted connections.
Summary:
They said the ministry cleared procurement proposals worth nearly â¹46,000 crore, which included the acquisition of the helicopters.
Summary:
The four accused consumed alcohol, took her to a nearby jungle and raped her, the police said.
Summary:
The fire reportedly broke out in a kitchen on the hotel's second floor.
Summary:
The decree is pending approval by the Spanish Parliament.
Summary:
The move primarily aims to ensure that students do not miss out on education due to lack of access to sanitary products.
Summary:
The Apollo 11 spacesuit worn by NASA astronaut Neil Armstrong was sewn by women at consumer brand Playtex, which manufactured bras.
Armstrong's sixth death anniversary is marked today.
Summary:
Actress Kangana Ranaut has said that she is single and not seeing anyone so there's no maternal instinct and urge to extend her family.
Summary:
We need to give the power of making laws to parliamentarians," Rahul added.
Summary:
Bugatti on Friday unveiled a $5.8 million (over â¹40 crore) worth supercar 'Divo', only 40 units of which will be made by the company.
Summary:
The company bagged the order to supply 3,192 units of Safari Storme to the Army and has successfully delivered over 1,300 vehicles.
Summary:
Hyderabad Police has arrested five fraudsters involved in a cryptocurrency scam, where over 1,200 investors had invested around â¹10 crore.
Summary:
As per official nfigures, over 1.84 lakh Pakistani pilgrims have reached Saudi Arabia to perform Hajj this year.n
Summary:
An estimated 1 million Rohingya refugees live in the Kutupalong settlement in Cox's Bazar, Bangladesh, which is the largest refugee camp in the world.
Summary:
Chinese e-commerce giant Alibaba's Vice Chairman Joseph Tsai has said the company is ready for a possible trade war with the US.
Summary:
Mallya will also have access to a library and a courtyard to take a walk.
Summary:
Denying rumours of her tiff with her upcoming film 'Manikarnika: The Queen of Jhansi' director Krish, Kangana Ranaut said, "Not true, we speak every day." "Krish has another release on January 11, and could give dates only after that," she added.
Summary:
The Rowing Federation of India (RFI) has not yet officially confirmed the dismissal.
Summary:
Both athletes finished with an identical timing, with Inoue finishing fractionally ahead of El-Abbassi.
Summary:
Summary:
Sayali Shelake, an Indian rower participating in the Asian Games 2018, is out of danger after she was hospitalised on August 24 following complains of abdominal pain.
Summary:
Spain's Carolina Marin, who beat India's PV Sindhu to win an Olympic gold in Rio, said Sindhu will soon get the reward she deserves, which would be a gold medal at the Olympics or World Championships.
Summary:
Harper reportedly left because he felt disrespected by the pay he was receiving for the bout.
Summary:
Founded by Piyush Kumar and Akshat Goel in 2016, Rooter is a sports social gaming platform that connects sports fans and engages them during live matches.
Summary:
Summary:
Mercedes-Benz has unveiled its latest concept car, the EQ Silver Arrow.
Summary:
The government has decided to offer a direct subsidy of â¹1.4 lakh for each electric vehicle, according to reports.
Summary:
One person lost his eyesight after allegedly consuming spurious liquor in UP's Bidoli, a day after another man was hospitalised with a similar complaint.
Summary:
The convicts were trying to implicate the girl's uncle over an old enmity.
Summary:
Pakistan has banned first-class air travel for the President, Prime Minister, Chief Justice and other top officials.
Summary:
The US State Department on Friday announced it had cancelled over $200 million in aid for Palestinians in the West Bank and Gaza Strip.
Summary:
India and Singapore signed a second protocol amending the Comprehensive Economic Cooperation Agreement (CECA) to boost trade ties.
Summary:
The fake letter claimed the board of directors unanimously called for the airline's shutdown due to poor profit margins.
Summary:
The first person to walk on the Moon, Neil Armstrong, used to trim grass in an Ohio cemetery for 10 cents an hour at the age of 10.
Summary:
Malayalam actress Priya Prakash Varrier has revealed that she contributed â¹1 lakh to help victims of the Kerala floods.
Summary:
Sunny worked as an adult film star before her Bollywood and TV career.
Summary:
Summary:
Summary:
After Congress President Rahul Gandhi denied his party's involvement in 1984 anti-Sikh riots, former Finance Minister P Chidambaram said he cannot be held responsible for the riots that took place when he was aged 13-14.
Summary:
Congress President Rahul Gandhi said on Friday that the opposition's primary focus is to remove the Narendra Modi government from power in the 2019 elections.
Summary:
Summary:
The rakhis, made of 22 carat gold, are priced between â¹50,000 and â¹70,000.
Summary:
Tata, who was the chief guest, didn't speak at the event.
Summary:
US President Donald Trump on Friday said that "sufficient" progress was not being made on the denuclearisation of the Korean Peninsula and therefore postponed State Secretary Mike Pompeo's visit to the country.
Summary:
After taking note of several cases of patients fitted with faulty hip implants by Johnson & Johnson, the Union Health Ministry will ask the company to compensate affected patients.
Summary:
Called the 'Nandi Puja', it will take place at Deepika's Bengaluru residence, reports added.
Summary:
You know how old she is, right?" "For now, I think she's happy going to playschool and she should stay there," he added.
Misha will turn two years old on Sunday.
Summary:
Abhishek Bachchan and Ileana D'Cruz will star in the sequel to the 2007 film 'Life In A Metro', as per reports.
Summary:
Hina Khan, who will play the role of Komolika in Ekta Kapoor's upcoming production 'Kasautii Zindagii Kay', will be paid â¹2.25 lakh per episode for the show, according to reports.
Summary:
This was Dipika's second straight women's singles bronze at Asian Games, while Joshna Chinappa won her maiden singles Asiad medal.
Summary:
"I think it was just my willpower that helped me win," Ikee added.
Summary:
Needing 31 runs to win off three overs, St Lucia Stars captain Kieron Pollard slammed 30 runs off the 18th over against Guyana Amazon Warriors in the Caribbean Premier League on Friday.
Summary:
Julius Thomas, a player from the American football league NFL, has decided to end his career in American football to pursue a doctorate in psychology and study the brain trauma associated with American football.
Summary:
Students can view the group members' public stories and message them directly from the community lists.
Summary:
Japan has enlisted companies like Uber and Airbus in a government-led group to bring flying cars to the country in the next decade.
Summary:
It read, "I wanted to do a lot of things in life but this body insults me everywhere.
Summary:
Bots and Russian trolls on Twitter are spreading misinformation about vaccines toâ create social discord and distribute malicious content, researchers from US' Johns Hopkins University and George Washington University have claimed.
Summary:
Inter-state flow of wind power has begun in India with four states buying power generated from a plant in Gujarat's Bhuj under a government scheme.
Summary:
At least 60.4 lakh people left their formal jobs in the 10 months ending June and may or may not have rejoined work, according to EPFO payroll data released by the government.
Summary:
Actress Alia Bhatt, when asked about her relationship status in a recent interview, said, "No, sorry, not single." Earlier, actor Ranbir Kapoor had admitted that he and Alia are dating.
Summary:
In the video, the man is seen offering namaz in the premises for two minutes, after which he leaves.
Summary:
UAE's airline Emirates has said that it will fly over 175 tonnes of relief material to Kerala "in their support of the people" affected due to the floods.
Summary:
Apple on Saturday announced a â¹7-crore donation towards the ongoing relief work in flood-hit Kerala.
Summary:
Speaking about gender discrimination during a rally on Friday, Rajasthan CM Vasundhara Raje said, "You think I have no problems just because I'm the CM.
Summary:
Two weeks after Tesla CEO Elon Musk tweeted about taking the company private while claiming that funding was 'secured', he has decided otherwise.
Summary:
Russian scientists have released pictures of a foal that got preserved in the Siberian permafrost around 40,000 years ago.
Summary:
Karnataka CM HD Kumaraswamy on Friday said he has sought a financial assistance of â¹2,000 crore from PM Narendra Modi for the flood-hit Kodagu district.
Summary:
Expressing unhappiness over delay in getting clearances for his amphibious bus service project, Road Transport Minister Nitin Gadkari said he wanted to dump the bus in Arabian Sea. The bus, which can ply on roads and in sea, was supposed to first run on experimental basis and then commerical.
Summary:
Sunny Leone's photograph has appeared against the name and details of a 51-year-old woman named Durgawati Singh in the voter list in UP's Ballia.
Summary:
Pakistan's newly-appointed Foreign Minister Shah Mahmood Qureshi on Friday said that a dialogue was essential for improving relations with India, adding that "it takes two to tango".
Summary:
Home Ministry officials said the decision on cancelling the channel's broadcasting license will be taken by the Ministry of Information and Broadcasting.
Summary:
Some tweeted Amazon offers $15 per hour with bonuses, stock, and overtime compensation.
Summary:
Hina Khan, who recently got trolled for posting her workout pictures on Instagram, said, "Who has the time to read two or three thousand comments on a picture?
Summary:
Esha Gupta, while talking about the undisclosed amount that she has donated for the flood victims in Kerala, said, "Charity, once spoken [about], doesn't remain charity anymore." "This has been taught...since childhood as part of my values.
Summary:
Summary:
Saroj Khan and Remo D'Souza will choreograph a mujra for Madhuri Dixit which she'll perform in her upcoming film 'Kalank'.
Summary:
Indian rowers Sawarn Singh, Dattu Bhokanal, Om Prakash and Sukhmeet Singh, who bagged gold medal at Asian Games 2018, took up rowing to earn promotion in the Indian Army by winning medals in the sport.
Summary:
The Indian men's kabaddi team coach Ram Mehar Singh has said that India lost to Iran in the Asian Games 2018 semi-finals due to captain Ajay Thakur's "overconfidence".
Summary:
Indianàcricketer KL Rahul took to Instagram to share a picture of himself with Chelsea midfielder N'Golo Kanté, who was a part of France's 2018 FIFA World Cup winning squad.
Summary:
Ex-India captain Mohammed Azharuddin will offer "free expert advice" to Goa Ranji team following his son's inclusion, a Goa Cricket Association official said.
Summary:
The president of the Palestinian Football Association, Jibril Rajoub, has been banned from all football activity for 12 months after he urged fans to burn shirts and pictures of Argentina forward Lionel Messi.
Summary:
During a Major League Baseball match on Friday, a father in the stands stuck his hand out and knocked a flying baseball out of the way to save his two kids from getting hit by it.
"Save the kids and the beer.
Summary:
When asked about whether he will join the Congress, former AAP leader Ashish Khetan said, "I can't say what will happen but I am not interested in joining party politics." "I make it a point to never say never but I haven't....made any plans," he added.
Summary:
A man in Rajasthan's Jaipur has been sent to judicial custody for allegedly having unnatural sex with a female stray dog.
Summary:
The North Delhi Municipal Corporation has proposed to rename Ramlila Maidan after late PM Atal Bihari Vajpayee.
Summary:
Launched on August 25, 2017, Koinex, India's first digital assets exchange claims to have crossed 50,000 crore cumulative transaction volume.
Summary:
Kerala Chief Minister Pinarayi Vijayan's office had tweeted that UAE offered an assistance of â¹700 crore for Kerala.
Summary:
PM Modi had thanked the UAE for a "gracious offer" after the country's Prime Minister tweeted that the UAE will offer relief to those affected.
Summary:
Salman Khan, Rekha, Shatrughan Sinha and his daughter Sonakshi Sinha have featured in a remake of the song 'Rafta Rafta', which is in the form of a medley for the Dharmendra starrer 'Yamla Pagla Deewana Phir Se'.
Summary:
Kerala Finance Minister Thomas Isaac on Friday announced a special lottery to raise additional relief funds for the flood-hit state.
Summary:
Summary:
Calling External Affairs Minister Sushma Swaraj a "capable lady", Congress President Rahul Gandhi on Friday said she has nothing better to do than get people visas.
Summary:
Summary:
After late PM Atal Bihari Vajpayee's niece Karuna Shukla accused BJP of carrying his ashes across India for political gains, the party slammed her for "politicising" the leader's death.
Summary:
Talking about Congress' involvement in the 1984 anti-Sikh riots, Congress President Rahul Gandhi in the UK Parliament said, "It was a tragedy, it was a painful experience.
Summary:
Praising AAP leader Dilip Pandey, BJP MP Shatrughan Sinha on Friday said, "Pandey is a very good human...you all should bless him, so that he remains happy and makes you all happy." Pandey is said to be a potential candidate in the 2019 General Elections.
Summary:
Researchers at Ghent University are performing faecal microbiota transplants on patients.
Summary:
Union Transport Minister Nitin Gadkari said that the proposed 1,250 km expressway will reduce the travel time between Mumbai and Delhi to just 12 hours.
Summary:
Aurangabad's deputy mayor Vijay Autade was slammed online after a picture of him taking a selfie with an urn carrying late PM Atal Bihari Vajpayee's ashes went viral.
Summary:
A car carrying BJP MP GVL Narasimha Rao hit two women in Andhra Pradesh's Guntur on Friday, killing one on the spot.
Summary:
Around 150 government schools in Kerala's Kannur district are holding 40-minute classes to teach children how to identify fake news.
Summary:
Former President Pranab Mukherjee on Friday launched Neta App, a platform enabling voters to review and rate their MP or MLA.
Summary:
During her visit to review Army's relief operations in flood-hit Karnataka, Defence Minister Nirmala Sitharaman snapped at district-in-charge minister Sa Ra Mahesh after he asked her to end her press conference due to time constraints.
Summary:
"It has been reported that several videos are being posted...in uniform...which are not only in bad taste but also do not reflect well for the company," the crew members were told.
Summary:
Naik responded saying that L&T had paid money for the land, so it belongs to the company.
Summary:
Janhvi had earlier walked the ramp with her late mother and actress Sridevi in February.
Summary:
Ekta Kapoor, who is bringing a reboot of her 2001 serial 'Kasautii Zindagii Kay', shared a video on Instagram captioning it, "Ok announcing the new Anurag and Prerna...it's me and Shah Rukh Khan...kidding." "Announcing the new date...[show] releases on 25th September," she further wrote.
Summary:
Abhishek Bachchan, while talking about working with his wife and actress Aishwarya Rai Bachchan, said, "It is always a pleasure to work with the missus." He added that every time he has done a film with Aishwarya, it has been special to him.
Summary:
Shailaja, who joined the team 18 months ago, said she wanted to prove that she is the best coach.
Summary:
In their second match, India had defeated Hong Kong 26-0 to register their biggest ever win in history.
Summary:
The US authorities have discovered a secret tunnel leading from a bedroom in Mexico to an abandoned KFC restaurant in the US state of Arizona, which is believed to have been used for smuggling drugs.
Summary:
Tata Sons bought shares of Tata Motors for the third time in the last 14 months increasing its holding in the automaker to 33.4%.
Summary:
This comes after ABHM leader Swami Chakrapani said the Kerala floods happened because people consumed cow meat.
Summary:
The first-ever penguin born in India, born on August 15 at Mumbai's Byculla zoo, has died a week after its birth.
Summary:
A Madhya Pradesh man claimed CM Shivraj Singh Chouhan was his 'saala' (brother-in-law) after he was reportedly stopped by police for driving a car with a siren.
Summary:
The tourism firm said it had received further reports of illness among guests.
Summary:
The amount was reimbursed by Andhra Pradesh's health wing on August 23.
Summary:
Addressing an event in the UK on Friday, Congress President Rahul Gandhi said that the "RSS' idea is similar to the idea of Muslim brotherhood in the Arab world".
Summary:
The video shows the man referring to black people as 'kaffir', an offensive apartheid-era slang term.
In the video, taken at a beach resort, the man says, "And not one kaffir in sight.
Summary:
Bollywood director Karan Johar has revealed that he felt like getting married after seeing Bollywood actor Anushka Sharma's marriage to Indian cricket team captain Virat Kohli.
Summary:
Indian tennis player Prajnesh Gunneswaran, who is ranked 161st in the world, became only the sixth Indian tennis player to win a men's singles medal at the Asian Games after settling for bronze, on Friday.
Summary:
French Tennis Federation President, Bernard Giudicelli, said that American tennis player Serena Williams' 'Black Panther' catsuit, which she wore at the French Open 2018, would no longer be accepted at the tournament.
Summary:
Royal Challengers Bangalore also sacked Daniel Vettori from the position of the head coach.
Summary:
Rajput held administrative positions in the Mumbai Cricket Association and has also served as the coach of the Afghanistan cricket team.
Summary:
Former Premier League footballer Tomas Repka has been given a six-month jail sentence for advertising the sexual services of his ex-wife Vlad'ka Erbova, by depicting her as an escort online, without her knowledge.
Summary:
Google parent Alphabet's self-driving unit Waymo has set up a subsidiary named Huimo Business Consulting in Shanghai, China.
Summary:
It is about 95% accurate in identifying cancer as opposed to 65% by humans, the researchers added.
Summary:
Facebook has invited representatives from technology giants like Google, Microsoft and Twitter among others to discuss plans to counter misinformation during US midterm elections.
Summary:
The study adds that alcohol led to around 2.8 million deaths in 2016.
Summary:
JNU has proposed to rename its School of Management and Entrepreneurship after former Prime Minister Atal Bihari Vajpayee, who passed away aged 93 on August 16.
Summary:
Nine people were arrested for allegedly attacking policemen and raising a pro-Pakistan slogan during a clash between villagers and cops in Jharkhand's Pakur district on Wednesday.
Summary:
The Maharaja of Marwar-Jodhpur has written to Uttarakhand CM Trivendra Singh Rawat to intervene after reports claimed that the memorial of Lt General Hanut Singh Rathore has been sealed.
Summary:
Summary:
The Congress has accused PM Narendra Modi and BJP of "using" the last remains of late PM Atal Bihari Vajpayee for "petty political gains." It also said BJP leaders discover "new lows" daily.
Summary:
Kerala should be treated on a different yardstick for extending flood relief assistance as its loss cannot be compared with damage in any other state at any point of time, CM Pinarayi Vijayan has said.
Summary:
His post had claimed PM Modi would soon carry late PM Atal Bihari Vajpayee's picture and ask for votes to fulfil his dream.
Summary:
US President Donald Trump on Friday said that the social media companies were "silencing" millions of people through censorship.
Summary:
Volkswagen has installed hail cannons at the plant to prevent the formation of hailstones.
Summary:
SBI's Group Economic Advisor Soumya Kanti Ghosh has said that any sudden appreciation or depreciation of the rupee is not good as it adds to volatility in the market.
Summary:
After bagging gold at a World Challenge Cup, Dipa Karmakar is now spearheading the Indian Gymnastics charge at the 18th Asian Games.
As the 25-year-old aims for gold in Indonesia, it's time we celebrate the Indian Contingent with a 1-billion roar.
Summary:
Summary:
The court was hearing a plea by four senior doctors and senior consultants whose request for voluntary retirement was rejected by the state government.
Summary:
Monk Suphachai Suthiyano, 64, allegedly assaulted the boy with a bamboo stick at a temple in Thailand's Kanchanaburi.
Summary:
This comes just two weeks after the company's $1.5-billion Philippine project was halted by the government.
Summary:
Sushmita Sen has said she doesn't believe in talking about concepts like "women power" while adding, "I believe fighting for it is saying we are weaker...For me, there is no fighting for women." She further said, "There was a time when everybody was busy doing, 'What is she wearing?
Summary:
Jim Parsons, who portrays Sheldon Cooper, shared a picture with the cast from the first of the final 24 episodes that they will be shooting.
Summary:
Russian arms maker Kalashnikov, known for making the AK-47 machine gun, has unveiled its concept 'electric supercar', inspired from a 1970s Soviet model.
Summary:
Facial verification will be must for people looking to get a SIM card with their Aadhaar cards from September 15, according to UIDAI.
Summary:
Both India and Pakistan became full members of the SCO in 2017.
Summary:
India and China have agreed to expand military cooperation and implement confidence building measures to maintain peace.
Summary:
Air India has denied allegations made by Italian DJ Olly Esse, who claimed AI staff had assaulted her at Hyderabad airport on August 19.
Summary:
The articles depicted Nazerali as a drug trafficker, arms dealer and a financial supporter of Al-Qaeda.
Summary:
The projects have been delayed for various reasons like litigation, cash crunch, and construction violations.
Summary:
Summary:
The astrologer had also predicted that Priyanka will show interest in politics after turning 45.
Summary:
Sister Mary Jo Sobieck, a Catholic nun, threw a 'perfect pitch' as the customary first pitch before the start of the baseball match between the Chicago White Sox and the Kansas City Royals.
Summary:
France's FIFA 2018 World Cup-winning captain Hugo Lloris, who plays for Tottenham Hotspur, has been charged with drink-driving after being stopped by police in London.
Summary:
Amazon IndiaâÂÂs former fintech Vice President, Sriraman Jagannathan, will reportedly lead WhatsApp's UPI-based payments operations in the country, WhatsApp Pay. He will likely meet WhatsApp CEO Chris Daniels, who is currently on a five-day visit to India.
Summary:
Discussing the 73-day standoff between Indian and Chinese troops in Doklam last year, Congress President Rahul Gandhi said, "The truth is the Chinese are still in Doklam today." Gandhi, who made the statement during an interaction in London, added, "Prime Minister is episodic.
Summary:
Info Edge, the parent company of real-estate website 99Acres and job portal Naukri, has invested â¹2.64 crore in digital medical platform MedCords.
Summary:
US-based housing startup Bungalow has raised $14 million in Series A funding round led by Khosla Ventures.
Summary:
nA 14-year-old girl was allegedly raped and murdered by unidentified persons in the Thane district of Maharashtra on Thursday.
Summary:
The Enforcement Directorate has filed its first chargesheet against RJD chief Lalu Prasad Yadav, his wife Rabri Devi and their son Tejashwi Yadav, among others, in connection with a money laundering case.
Summary:
Sweden has released its 'Feminist Foreign Policy' manual, which the government claimed was launched in 2014 "in response to the discrimination and systematic subordination" faced by women.
Summary:
Much of the infrastructure was destroyed during the course of the civil war in Sri Lanka.
Summary:
The US and Afghanistan will not attend Russia-led peace talks in Moscow next month.
Summary:
Pakistan has asked the US to "immediately correct" its statement that US Secretary of State Mike Pompeo asked Pakistan's Prime Minister Imran Khan to take action against all terrorists operating in the country.
Summary:
Former Indian Idol host Mini Mathur reacted to ex-contestant's tweets alleging mistreatment during auditions in 2012 and tweeted, "I know most of what he has articulated is known to happen on reality TV...RIP organic, pure TV." The ex-contestant said he saw another contestant being slapped by show's crew member.
Summary:
A kilogram of the Golden Needle variety of tea was sold for â¹40,000 at an auction in Assam's Guwahati on Thursday.
Summary:
Tamil Nadu CM EK Palaniswami on Friday refuted Kerala's claim that the water released from Mullaperiyar dam had caused the Kerala floods which killed nearly 400 people.
Summary:
The man, however, has denied the rape charges, claiming he only took her for drinks.
Summary:
A video showing a dead man lying unattended at Madhya Pradesh's Habibganj railway station has gone viral.
Summary:
After an essay from a book claiming to be 'intended for CBSE students' went viral, the board said that the reference is "baseless" and it doesn't recommend books by private publishers.
Summary:
A 70-year-old man and his teenage differently-abled daughter were burnt alive when a mob set ablaze several Dalit houses in Haryana's Mirchpur.
Summary:
The Jharkhand High Court has ordered fodder scam convict and RJD chief Lalu Prasad Yadav to surrender by August 30 and rejected his plea for a three-month extension on medical grounds.
Summary:
Tata Sons cannot force ex-chairman Cyrus Mistry to sell his shares in the company, the National Company Law Appellate Tribunal (NCLAT) has said.
Summary:
The brothers claimed Godhwani 'used his position to conceive and orchestrate transactions' that led to the Group's debt load by 2016.
Summary:
Rajan said that an emerging market country like India should focus on macroeconomic stability as it is heading into an election year.
Summary:
Jackie Chan will star in the sequel to Amitabh Bachchan and Arjun Rampal starrer 2002 film 'Aankhen', as per reports.
Summary:
Sunny Leone has donated food to support victims of Kerala floods.
Summary:
Trolling Salman Khan, who asked people on Twitter to watch his film 'Race 3', a user tweeted, "Even [your] fans can't survive, forget about others." "Who'll survive this race of life?
Summary:
Summary:
She walked the runway in a Kanjiwaram saree with a customised one-piece jumpsuit.
Summary:
Summary:
Chauhan, who was carried on a stretcher to the medical centre, was unable to stand during the medal-distribution ceremony.
Summary:
Gymnast Dipa Karmakar, who missed her women's team final at the Asian Games due to a knee injury, missed the bronze medal mark by 0.825 points to finish fifth in the women's balance beam final.
Summary:
Indian spinner Harbhajan Singh has criticised England's batting in the ongoing Test series against India, saying that their batsmen are playing "as if they are touring India".
Summary:
Summary:
Chinese forward Wang Shanshan scored nine goals in 29 minutes after coming on as a substitute during her team's Asian Games 2018 Group B match against Tajikistan.
Summary:
Tesla CEO Elon Musk has reportedly hired American investment bank Morgan Stanley to help him take Tesla private.
Summary:
Maharashtra Navnirman Sena chief Raj Thackeray on Thursday sketched a cartoon of late PM Atal Bihari Vajpayee within a few minutes at an event in Pune.
Summary:
The European Union has announced an aid of â¬18 million for Iran amid its tensions with the US over the imposition of sanctions following its withdrawal from the 2015 nuclear deal.
Summary:
She was South Korea's first democratically elected leader to be ousted from power.
Summary:
Passengers travelling in Delhi's DTC and cluster buses can now use their metro cards to pay bus fares after the service was launched on Friday.
Summary:
The Central Government on Thursday stated that over 60,000 people were successfully rescued and shifted to relief camps in the "massive rescue and relief operations" launched by the Centre in flood-hit Kerala.
Summary:
The residents of a relief camp stopped the officials when they were loading relief materials into a vehicle.
Summary:
The Supreme Court on Friday ordered the Tamil Nadu government to maintain the water level in Mullaperiyar Dam at 139 feet, which is 2-3 feet below its permissible limit, till August 31.
Summary:
Liberal Party leader Scott Morrison was elected Australia's fifth Prime Minister in five years on Friday after successfully challenging the leadership of former Prime Minister Malcolm Turnbull.
Summary:
Actress Kangana Ranaut, while talking about joining politics, said, "If I have to be a national servant, I can't have a family or kids, or an alternate career.
Summary:
Dilpreet had threatened to shoot Gippy, similar to the way he claimed he shot singer Parmish Verma.
Summary:
Summary:
Former marketing head of PepsiCo and Visa, Antonio Lucio has announced that he will be leaving his HP job after three years to be Facebook's Chief Marketing Officer.
Summary:
Facebook, which owns WhatsApp, had launched its Asia hub in Hyderabad in 2010.
Summary:
The Supreme Court has rejected a plea by opposition parties to hold re-election for about 20,000 seats that were won uncontested by Trinamool Congress in the panchayat elections held in May. The opposition parties alleged the TMC workers intimidated their candidates and prevented them from filing their nominations.
Summary:
CEO Elon Musk, who was present at the site, said, "Cardboard being prepped for recycling...
Musk further thanked the local fire department for a quick response in containing the fire, from which no injuries or damage was reported.
Summary:
An auto-rickshaw driver in Mumbai has been booked for allegedly masturbating in front of a woman passenger on Wednesday night.
Summary:
Authorities have decided to remove the brown-rug flooring spanning across Delhi airport's Terminal 3 after a flyer complained on Twitter saying, "Almost all passengers want the dirty rugs to go." "Most good, busy airports across the world use hard flooring," he added.
Summary:
A self-styled godman known as 'Kissing Baba' has been arrested in Assam for allegedly sexually exploiting female devotees.
Summary:
A consumer redressal commission in Delhi has directed a private hospital and doctor to give â¹20-lakh compensation to a patient who lost four fingers on his right hand after being given the wrong injection 17 years ago.
Summary:
Procter & Gamble (P&G), the US-based maker of Tide detergent and Pantene shampoo, has applied to trademark four acronyms â WTF (what the f***), LOL (laugh out loud), NBD (no big deal), and FML (f*** my life).
Summary:
Nawazuddin Siddiqui's 'Genius', which released today, is "weak, flawed and is scattered everywhere", wrote Bollywood Hungama.
It has been rated 1/5 (Bollywood Hungama, Firstpost) and 2/5 (TOI).
Summary:
The release date of Ajay Devgn, Tabu and Rakul Preet Singh starrer 'De De Pyaar De' has been announced as February 22, 2019.
Summary:
India have won six gold, five silver and 13 bronze medals at Asiad 2018 so far.
Summary:
Italian football club AS Roma have announced that they will auction off five jerseys worn by the players after their first home match of the season to help raise money for Kerala flood relief fund.
Summary:
Heena Sidhu finished third in the women's 10m Air Pistol event on Friday to bag India's third shooting and overall 13th bronze medal in shooting at Asian Games 2018.
Summary:
Indian fugitive businessman, Vijay Mallya's Formula One team Force India's name has been changed to Racing Point Force India after the team was given a re-entry into the sport as a completely new team.
Summary:
John Mitchell was hit on the cheek before his wife stormed on to the ground and grabbed Kulkarni.
Summary:
Google on Thursday terminated 39 YouTube channels, 6 blogs on Blogger, 13 Google+ accounts linked to Islamic Republic of Iran Broadcasting.
Summary:
Thomas Mar Athanasios was standing near the train door when it suddenly slammed shut, causing him to fall out.
Summary:
Japan's Air nSelf-Defense Force (ASFD) allowed women to fly fighter jets and reconnaissance aircraft in 2015.
Summary:
Not only is he the DSP of Himachal Pradesh Police, he is also the Captain of the Indian Kabaddi team.
As the team trains, you can send them a cheer with #GetBehindThem.
Summary:
This is India's fifth men's doubles gold medal in tennis in Asian Games history.
Summary:
Shaw has been added to Team India squad for remaining England Tests.
Summary:
World's most valuable company Apple's CEO Tim Cook's first job was delivering newspapers as a teenager.
Summary:
This was revealed by Cook during Apple's memorial service for Jobs at the company's campus during the same year.
Summary:
The Sonakshi Sinha and Diana Penty starrer 'Happy Phirr Bhag Jayegi', which released today, "manages to make audiences laugh despite the loose ends," wrote Bollywood Hungama.
Summary:
During his visit to relief camps on Thursday, Kerala CM Pinarayi Vijayan was accused of visiting them late by flood victims.
Summary:
The researchers found an idle Android phone with Chrome browser active in the background sent location information to Google 340 times within 24 hours.
Summary:
Despite Twitter attempting to ban scammers on its platform, an impersonator appeared in the Tweet thread of Tesla CEO Elon Musk's official account on Thursday.
The fake 'verified' account promised Musk's 22.4 million followers free Bitcoin and Ethereum cryptocurrencies.
Summary:
Responding to the suggestion, Chairman RC Bhargava said the company's effort would be to provide features found in luxury cars in its affordable products.
Summary:
An 11-year-old girl in Delhi was allegedly abducted and raped by an unidentified man when she went to a forested area to relieve herself.
Summary:
Around 128 private schools in Delhi have agreed to roll back their "arbitrary" fee hike following government directives that were sent based on parents' complaints, AAP government said.
Summary:
After a man claiming to be his brother-in-law created a ruckus over being stopped for a traffic violation in Madhya Pradesh, CM Shivraj Singh Chouhan said the law will take its own course.
Summary:
Former Union Minister Gurudas Kamat was cremated with full state honours in Mumbai on August 23, 2018, coincidentally at the Charai crematorium which he had inaugurated on the same day nine years ago.
Summary:
Doctors at Delhi's Ganga Ram Hospital have successfully removed a 4-kg cervical tumour, as big as a newborn baby, from a 47-year-old woman's body in a three-hour surgery.
Summary:
Myanmar leader Aung San Suu Kyi has been stripped of her Freedom of Edinburgh award over her refusal to condemn the violence against Rohingyas.
Summary:
The film's post-production work has reportedly been delayed as director Pradeep Sarkar was diagnosed with dengue.
Summary:
Sharing a magazine cover of Femina which featured his wife Gauri Khan, Shah Rukh Khan wrote, "For us, she is the Cover Mother." "Gauri Khan on creativity and being the queen of decor," the magazine wrote on its cover.
Summary:
Remembering her father Dr Ashok Chopra on his birth anniversary on Thursday, Priyanka Chopra shared a video on Instagram with the caption, "Dad. You are so missed.
Priyanka lost her father to cancer in 2013.
Summary:
Former India cricketer Sachin Tendulkar has said Team India all-rounder Hardik Pandya deserved the Man of the Match award as much as captain Virat Kohli in Trent Bridge Test.
Summary:
Mumbai-headquartered Edtech startup Imarticus Learning has raised $2 million in a Series B funding round from venture capital fund CBA Capital.
Summary:
On competition with food delivery startups like Zomato and Uber Eats, Swiggy CEO Sriharsha Majety has said growth is an absolute priority and the company is "just scratching the surface" of profitability.
Summary:
Gurugram-headquartered AltF CoWorking said on Thursday it has made its first acquisition by buying Daftar India, a Noida-based coworking centre, in an undisclosed deal.
Summary:
Bombay High Court has warned a man against filing applications claiming possession of Ward C and E of Mumbai and the court building, its furniture and staff based on a decree.
Summary:
RJD chief Lalu Prasad Yadav's son Tej Pratap has claimed that on his way to his constituency Mahua on Eid, an armed man caught his hand and was unwilling to let go.
Summary:
A 37-year-old man in Uttar Pradesh's Allahabad allegedly stabbed his younger brother to death in a fit of rage on Thursday after his brother wore his jeans without permission.
Summary:
Indian rowers Sawarn Singh, Dattu Bhokanal, Om Prakash and Sukhmeet Singh on Friday won the men's Quadruple Sculls to win India's fifth gold medal at the Asian Games 2018.
Summary:
UAE Ambassador Ahmed Al Banna said there has not been any official announcement about the amount of UAE's aid to flood-hit Kerala yet.
It has not been announced," he said after Kerala CM said that UAE has pledged â¹700 crore for the state.
Summary:
A church, a temple and a madrasa in Suntikoppa, a town located in Karnataka's flood-hit Kodagu district, have been turned into relief camps for flood victims.
Summary:
Morrison's election comes after Turnbull lost support of a majority of the party's MPs.
Summary:
Apple Co-founder Steve Jobs had convinced Tim Cook to work for the company in 1998 in just five minutes, Cook had revealed in a 2012 interview.
Summary:
A 12-year-old girl from Tamil Nadu has donated â¹5000 from the â¹20,000 she had raised through crowdfunding for her heart operation.
Summary:
India has refused foreign aid for Kerala following a policy by the 2004 UPA government.
After the December 2004 tsunami, the Manmohan Singh-led government decided to shed the "poor country" tag and refused foreign assistance.
Summary:
"On behalf of the people of Pakistan, we send our prayers and best wishes to those who have been devastated by the floods in Kerala," he tweeted.
Summary:
Adani Foundation, the Corporate Social Responsibility (CSR) arm of the Adani Group, has committed to giving â¹50 crore for relief and rehabilitation of the Kerala flood victims.
Summary:
Virat Kohli and his wife actress Anushka Sharma have reportedly sponsored a truck loaded with food and medicines to help animals in crisis in Kerala.
Summary:
Workplace discussion platform Hush on Thursday raised an undisclosed amount in seed funding from venture capital firm Accel, BabyOye Co-founder Sanjay Nadkarni and other angel investors.
Summary:
The capsules were extracted at a city-based hospital in four days, the customs department said.
Summary:
Gandhi, who was on a two-day visit to Germany, earlier called on parliamentarians to discuss trade and jobs.
Summary:
SBI said that out of 59,521 ATMs, 41,386 have been recalibrated at a cost of â¹22.50 crore.
Summary:
HCL Technologies CEO C Vijayakumar earned â¹33.13 crore in remuneration in 2017-18, which is more than double of Tata Consultancy Services (TCS) CEO Rajesh Gopinathan's pay of â¹12 crore during the same period.
Summary:
Indian football team and Kerala Blasters player CK Vineeth was spotted volunteering at a relief camp amid flood crisis in Kerala.
Summary:
The temple trust also arranged for facilities, including water for the devotees to clean themselves before prayers.
Summary:
Former Australian captain Steve Smith, who has been suspended from international cricket, got dismissed after getting caught and hit-wicket off the same ball while playing for the Barbados Tridents in the Caribbean Premier League.
Summary:
Astronauts aboard the International Space Station (ISS) played the first-ever tennis match in space.
Summary:
Summary:
A tackle during the semi-final match between India and Iran at the Asian Games 2018 left Indian Kabaddi captain Ajay Thakur with a bloodied face, forcing him to withdraw from the match immediately.
Summary:
The 120-volt cables being recalled, allowed electric and hybrid cars to be plugged into a standard home outlet.
Summary:
A special court in UP's Mathura has imposed a fine of â¹20,000 on a man and sentenced him to 20 years in prison for raping a three-year-old girl in 2015.
Summary:
After Congress MP Sunil Jakhar received a legal notice from the Reliance Group over his comments on the Rafale deal, he tweeted, "Mr Anil Ambani...my aeroplane making skills...are better than yours." Jakhar also tweeted an image of himself waving a paper replica of the aircraft.
Summary:
A 15-year-old girl committed suicide at her home in Uttar Pradesh on Thursday after allegedly being gangraped on August 20, the police said.
Summary:
The graffiti has raised suspicion that he killed himself following instructions from online game Momo Challenge.
Summary:
Summary:
BB Misra, who probed the 2013 IPL scandal, revealed a phone conversation between the two was recorded.
Summary:
Rawat earlier said there were legal issues in holding simultaneous elections.
Summary:
Talking about campaign violations by his former personal lawyer Michael Cohen, US President Donald Trump said, "If I ever got impeached, I think the market would crash".
Summary:
A man has been sentenced to four months in jail in the UK after he posed as the ghost of his former fiancée's mother in an attempt to win her back.
Summary:
Sushant Singh Rajput donated â¹1 crore on a fan's request to help victims of the Kerala floods.
Malayalam actor Rajeev Pillai postponed his marriage to help with relief work.
Summary:
Google, Apple and IBM are among 15 companies hiring for some of their top jobs with the interested candidates not requiring to present their college degrees.
Summary:
Congress President Rahul Gandhi has said he hugged PM Narendra Modi before the no-confidence vote in Parliament because he wanted to tell him "the world wasn't a bad place".
Summary:
Panchkula CBI court on Thursday rejected the bail application of rape convict Gurmeet Ram Rahim Singh who was sentenced to 20 years in jail in two rape cases.
Summary:
Kochhar is on leave till the investigation is completed.
Summary:
Prime Minister Narendra Modi is likely to accept NITI Aayog's recommendation to cap trade margin for medical devices at 65%, as per reports.
Summary:
US financial services giant JPMorgan Chase is reportedly laying off about 100 workers in its asset management division after a business review.
Summary:
The altercation broke out after Kim accidentally hit the Chinese swimmer's face while she was swimming in the pool during a warm-up session.
Summary:
She said, "I want this to be given to my sisters in Kerala."
Summary:
The Indian Men's Kabaddi team missed out on winning the gold medal for the first time in the history of the Asian Games after suffering anâ 18-27 defeat against Iran in their semi-final on Thursday.
Summary:
The 27-year-old finished with a timing of 8.28.56 minutes.
Summary:
Australia's former captain Steve Smith, who has been suspended from international cricket, picked up two wickets in the Caribbean Premier Leauge with an action he says he has modelled after former Pakistan captain Shahid Afridi.
"I'm trying to base my action off Shahid Afridi actually...
Summary:
He added that it will be spread over 2,000 acres of land near Etawah Safari Park.
Summary:
PM Narendra Modi has said that India would have been a disease-free country if programmes like the Swachh Bharat Abhiyan were launched 70 years back.
Summary:
The apex court sought the response of the Election Commission and State Election Commissions of both Madhya Pradesh and Rajasthan.n
Summary:
Malik, who had quit the Congress in 1987 and joined BJP in 2004, was previously the Governor of Bihar.
Summary:
CBI officer JP Mishra, who was part of the team probing Bihar shelter home rape case, was transferred and posted as Superintendent of Police in the office of the DIG, Patna.
Summary:
Summary:
Dauneriya had allegedly thrashed his wife after getting drunk, following which the police were called.
Summary:
They said they were transporting the puppies from Pataudi in Haryana to Mathura in Uttar Pradesh.
Summary:
The oil-to-telecom conglomerate on Thursday became the first Indian company to cross â¹8 trillion in market capitalisation.
Summary:
A newborn baby died on Tuesday after the ambulance he was being taken in was stuck in a traffic jam for 30-40 minutes, caused by a Congress rally in Haryana's Sonipat.
Summary:
Akshay Kumar and Salman Khan have surpassed the ranking of 'The Avengers' actor Chris Evans, who portrays Captain America, and are the only Indians to feature on Forbes' list of World's Highest-Paid Actors 2018.
Summary:
Earlier, it was reported that Shah Rukh Khan's Meer Foundation had donated â¹21 lakh.
Summary:
Search engine for GIF files, Giphy is hosting its first-ever film festival in New York on November 8, where it will be showing professional-grade micro-films of only 18 seconds or less in length.
Summary:
Union Minister of State for Tourism KJ Alphons posted a photo of himself sleeping on a mattress at a relief camp in Kerala on Monday.
Summary:
Stamos said it is "too late to protect the 2018 elections", referring to Facebook deactivating 652 accounts and pages with links to Iran and Russia.
Summary:
Summary:
A video has emerged which shows BJP ministers from Chhattisgarh, laughing loudly and joking with each other during a condolence meet for late PM AB Vajpayee in Raipur on Wednesday.
Summary:
A video of Sudha Murthy, Infosys Foundation's Chairperson and Infosys Co-founder Narayana Murthy's wife, showing her packing relief material for Kodagu flood victims in Karnataka has gone viral.
Summary:
While some people can be seen handing down ropes, others can be seen wading towards the bus to help the students.
Summary:
Mumbai Police on Wednesday arrested Abdul Razak Ismail Supariwala, builder of nCrystal Tower in Mumbai's Parel, in connection with the fire at the residential tower which claimed four lives.
The fire broke out on the 12th floor of the building.
Summary:
After Donald Trump's former lawyer Michael Cohen admitted paying $130,000 to pornstar Stormy Daniels for her silence over her alleged affair with the US President, she tweeted, "How ya like me now?!" Meanwhile, Daniels' lawyer Michael Avenatti tweeted, "We. Are.
Summary:
Trump tweeted that South Africa's government is "seizing the land from white farmers" and asked State Secretary Mike Pompeo to look into the matter.
Summary:
A Nepalese man has been arrested for sharing a doctored image on Facebook showing PM KP Sharma Oli's head superimposed on a monkey's body.
Summary:
A terrorism suspect involved in a foiled attack in France's Lyon in 2014 was released from custody after a judge forgot to renew his pre-trial detention.
Summary:
Nike has removed a balaclava from its website after Twitter users accused the company of "targeting gang culture for profit." A widely circulated image showed a black model wearing the headgear, which included straps that some users compared to holsters.
Summary:
Summary:
Bollywood dancer Abhijeet Shinde, who has worked with Ranbir Kapoor and Ranveer Singh, has allegedly committed suicide.
Summary:
Kerala Forests Minister K Raju on Thursday issued an apology for taking a trip to Germany during the Kerala floods, saying, "The timing of the trip was ill-timed and wrong." He added, "I returned in four days but by that time, the flood situation...
Summary:
After Facebook's Cambridge Analytica data scandal, Microsoft-owned professional networking service LinkedIn has said that it will provide access to data of over 500 million users for approved academic studies.
Summary:
Video streaming company Netflix said it's testing a way to bypass Apple in-app subscriptions, for which it has to pay a 15% cut, by sending users to its own website.
Summary:
Israel-based data analytics company Onavo, acquired by Facebook in 2013, was reportedly collecting information from other apps on users' iPhones.
Summary:
A railways official had earlier said that 100 coaches of different trains will be decorated with these paintings.
Summary:
The life of an average Indian is shortened by 1.5 years due to ambient air pollution, a study by researchers from United States' University of Texas has found.
Summary:
A 13-year-old girl was allegedly kidnapped and raped multiple times by two men in Uttar Pradesh's Makrandpur village, said the police today.
Summary:
Anil Ambani-led Reliance Communications (RCom) has completed the sale of its media convergence nodes (MCN) and related infrastructure assets worth â¹2,000 crore to Reliance Jio. The sale which concluded on Thursday represents the initial tranche of a planned larger deal.
Summary:
India's benchmark indices Sensex and Nifty 50 extended their record-breaking run on Thursday, with the Sensex closing above 38,300 for the first time.
Summary:
The Bengaluru police has arrested seven Oxford College students for allegedly ragging two juniors, who had joined the college just over 10 days ago.
Summary:
Notably, Reliance Industries shares have surged nearly 37% this year.
Summary:
He added that because of GST and demonetisation, "large numbers of people who worked in small businesses were forced back to the villages".
Summary:
The Department of Telecommunications (DoT) has reportedly said that people will be allowed to make calls and use the internet during flights from October.
Summary:
Directed by Tabrez Noorani, the film will release on September 14 in India.
Summary:
The Indian men's tennis players had to use their own shorts at the Asian Games 2018 after the ones provided by the official sponsors did not have pockets.
Summary:
Kohli, who had become the top-ranked Test batsman for the first time on August 5, reclaimed the spot after scoring 200 runs in the Trent Bridge Test.
Summary:
In order to tackle fake news issue in India, WhatsApp has agreed to all demands raised by the government except tracing the origin of messages.
Summary:
Congress President Rahul Gandhi, during his address in Germany on Wednesday, said that India is not the worst place for women in the world.
"Men have to start viewing women as equal and with respect.
Summary:
"I saw myself in his children", he said, adding "I have suffered violence.
The only way you can move forward after violence is forgiveness".
Summary:
He said, "it is very dangerous in the 21st century to exclude people.
Summary:
Harvard professor Karin Michels has said coconut oil is "pure poison", adding it's "one of the worst things you can eat".
Summary:
However, the picture was from 2007 and the grandmother recently said she lived at the old age home out of her own will.
Summary:
A man working at a shoe factory in Uttar Pradesh's Agra attempted suicide after he was paid â¹6 as his monthly salary.
Summary:
UN Secretary-General Antonio Guterres visited the office of the Permanent Mission of India to the UN in New York, US, and wrote his tribute for former Prime Minister Atal Bihari Vajpayee who passed away last week.
Summary:
At least 11 people, including three children, died when the SUV they were travelling in rolled down a gorge near Rohtang Pass in Himachal Pradesh on Wednesday night.
Summary:
Summary:
At least 2 people were killed and another was wounded in a knife attack claimed by Islamic State in the Paris suburb of Trappes on Thursday, police officials said.
Summary:
The company will buyback shares aggregating up to 4.29% of the equity capital at a premium of 13.5% to Tuesday's closing price.
Summary:
Idris Elba has denied that he will be playing the character James Bond after Daniel Craig leaves the film franchise.
Summary:
Mirza had won women's singles silver medal in the 2006 edition and a bronze in the 2010 edition.
Summary:
Fifteen-year-old Indian shooter Shardul Vihan lost to South Korea's 34-year-old Shin Hyunwoo in the final round of the men's double trap event to win India's fourth silver medal at Asian Games 2018.
Summary:
Pacer Jhulan Goswami, who is the only female Indian bowler to have registered five-wicket hauls in all three formats of international cricket, announced her retirement from Women's T20 Internationals on Thursday.
Summary:
Portugal captain Cristiano Ronaldo said that after spending nine years at his former club Real Madrid, it was an easy decision for him to leave the club for a transfer to Juventus.
Summary:
At least one person was killed and five others were injured, when an explosion took place at the Trinamool Congress office in West Bengal's West Midnapore district on Thursday morning.
Summary:
The US and China have now slapped tit-for-tat tariffs on a combined $100 billion of products since early July.
Summary:
Arun Jaitley has resumed charge as the Finance Minister and Minister of Corporate Affairs after taking a break for three months to undergo a kidney transplant.
Summary:
The Supreme Court on Tuesday acquitted two brothers from Haryana in a 2001 rape case involving a minor as her medical report didn't substantiate rape.
Summary:
The 5th Edition of India's largest fashion rental event is happening this year at Flyrobe stores across Mumbai, Delhi and Pune from 29th Aug to 2nd Sep. Choose from over 1000+ exclusive wedding styles curated for brides, grooms and their families from 100+ designers.
Summary:
Yunus was a witness in the case involving the death of the rape survivor's father.
Summary:
Kerala Finance Minister Thomas Isaac has urged the Centre to either accept UAE's â¹700-crore financial aid for the flood-hit state or compensate it.
Summary:
India captain Virat Kohli, who was given a bottle of champagne for being named Man of the Match in Trent Bridge Test, gifted the bottle to head coach Ravi Shastri.
Summary:
Former Amazon executive Dan Rose, who joined a two-year-old Facebook in 2006, announced on Wednesday he would be quitting his Vice President (Partnerships) position at the California-based company, to be with his family in Hawaii.
Summary:
Samsung Electronics CEO DJ Koh on Wednesday said, "India is already making smartphones for the country.
Now we are pushing India to make for the world".
Summary:
Summary:
Slamming NDA government for demonetisation and "badly conceptualised GST", Congress President Rahul Gandhi in Germany said, "A large number of people who worked in small businesses were forced back into villages." "This is what's making people angry.
Summary:
Co-founder and CEO of self-driving vehicle startup Zoox, Tim Kentley-Klay, said he was fired by the company's board without warning, adding, "Today was Silicon Valley up to its worst tricks".
Summary:
Extending his condolences on the demise of veteran journalist Kuldip Nayar, PM Narendra Modi tweeted, "Kuldip Nayar was an intellectual giant of our times.
Summary:
The Supreme Court on Wednesday ruled that the husband's family should not be roped in in cases related to matrimonial and dowry disputes "unless specific instances of their involvement in the crime are made out".
Summary:
The woman also spit on the man's car and called him a "loser".
Summary:
The Supreme Court has directed District Magistrates to carry out inspection in all religious and charitable institutions with regard to their hygiene, assets, access, and accounts.
Summary:
After Donald Trump's former lawyer Michael Cohen testified that the US President directed him to arrange payments to silence two women, the White House said, "Trump did nothing wrong.
Summary:
US-based think tank 38 North has said satellite photos indicate that North Korea halted work to dismantle a missile launch site in early August.
Summary:
World's most valuable company Apple's CEO Tim Cook is set to collect 560,000 shares of the company worth about $120 million (nearly â¹840 crore) this week.
Summary:
"He's different, he's like when Malinga came on the scene or...Mitchell Johnson," Shastri said about Bumrah.
Summary:
Talking about Virat Kohli fielding a different playing XI in each of the 38 Tests under his captaincy, Indian spinner Harbhajan Singh said that "it is too much".
India have won 22 Tests under Kohli's captaincy.
Summary:
Batsman Hanuma Vihari has become the first Andhra cricketer in 19 years to be picked in India's Test squad.
Summary:
Pakistan's cricket captain Sarfraz Ahmed said, "If I ever get a chance to work in a film, I'd love to play a role similar to that of Salman Khan's Dabangg character." Ahmed further revealed that his favourite actress is Bollywood's Katrina Kaif.
Summary:
Team India fast bowler Jasprit Bumrah took to Twitter to share a picture of himself next to Trent Bridge's Honour's Board after getting his name etched on it.
Bumrah took seven wickets in Trent Bridge Test.
Summary:
Facebook revealed on Wednesday that it banned the myPersonality app for improper data controls.
Summary:
Men's grooming startup Bombay Shaving Company has raised an undisclosed amount from Colgate-Palmolive Asia Pacific Limited in Series A funding.
Summary:
Delhi-based Alinz has tied up with Czech firm Petrocard to set up four facilities to manufacture portable petrol pump machines in India at an investment of â¹1,600 crore.
Summary:
Veteran journalist Kuldip Nayar passed away at the age of 95 in a Delhi hospital on Wednesday night.
Summary:
Some people in Lucknow celebrated Bakrid on Wednesday by cutting goat-shaped cakes, or cakes with pictures of goats on them, instead of sacrificing the animal.
Summary:
The song 'Dekhte Dekhte' from Shahid Kapoor and Shraddha Kapoor starrer 'Batti Gul Meter Chalu' has become the most viewed Hindi song on YouTube in 24 hours, as claimed by the makers.
Summary:
Filmmaker Mukesh Chhabra has denied reports that actor Sushant Singh Raput got 'extra-friendly' with Sanjana Sanghi, the lead actress of his upcoming film 'Kizie Aur Manny'.
Summary:
India's 18-year-old Under-19 World Cup-winning captain Prithvi Shaw and 24-year-old batsman Hanuma Vihari have been called up to the Indian squad for the last two Tests against England.
Summary:
Asian Games gold medalist wrestler Vinesh Phogat has slammed rumours of her affair with javelin thrower Neeraj Chopra, saying "a simple gesture" has been "painted in wrong light".
Summary:
Congress MP Shashi Tharoor said that his meeting at the United Nations over flood-affected Kerala was carried out in individual capacity.
Summary:
As many as 40 Indian footballers are registered on the website.
Summary:
Andhra Pradesh CM Chandrababu Naidu on Wednesday said that floods in river Godavari in East and West Godavari districts in the past one week caused an estimated damage of â¹600 crore.
Summary:
Air India's debt is unsustainable.
Forget Air India, nobody can handle that debt," Prabhu added.
Summary:
The allowance, which comprises about 70% of the pilots' total pay, is reportedly paid after two months.
Summary:
Punjabi singer Jassie Gill has said actress Sonakshi Sinha changed his perception about stars in Bollywood, while adding, "I realised that the bigger the star, the more humble and down to earth he or she is." "I thoroughly enjoyed working with Sonakshi," he said.
Summary:
Prateik Babbar, while speaking about battling drug addiction, said, "I take full responsibility for my actions and blame myself and unfortunate circumstances together." "For users, abusers and addicts, being called a drug addict is much deeper than someone just bringing it up in a casual conversation.
Summary:
Actress Vaani Kapoor has said that it has taken time for the projects that she wanted to be a part of to come her way, while adding, "I'm in a very happy space now." Talking further about her acting career, she said, "I made my own choices and stuck to them.
Summary:
Sunny Deol, while speaking about nepotism, said, "I didn't become what I'm today because dad (Dharmendra) wanted me to but because there was something in me." "It all stands on what you are...Those who...can't do anything...talk about such stuff in anger," he added.
Summary:
Actress Sonam Kapoor took to Twitter to praise 8-year-old Anupriya who donated her piggy bank savings for Kerala flood relief.
"At the age of 8, Anupriya has a heart of gold," Sonam tweeted.
Summary:
A 68-year-old farmer committed suicide in the Ernakulam district of Kerala on Wednesday.
Summary:
One of the three airports in Kerala, it has reportedly suffered an estimated loss of over â¹220 crore due to the floods in the state.
Summary:
Facebook on Tuesday removed over 600 accounts that displayed misleading political behaviour linked to campaigns originating in Iran and Russia.
Summary:
Addressing people in Germany, Congress President Rahul Gandhi said, "India has a strategic relationship with the US...But India cannot ignore that China is growing very fast and is going to shape the planet.
India's role is to balance these two".
Summary:
After the two women had lodged a police complaint, he was dismissed from the temple's services and had gone missing.
Summary:
The police said the ganja was being transported from Narsipatnam in Visakhapatnam to a man identified as "Golu" in Maharashtra.
Summary:
Four people died after the car that they were travelling in was washed away in Madhya Pradesh's Mandsaur district following heavy rainfall in the area, the police said.
Summary:
Four students, between seven and 14 years of age, were washed away in the Krishna river in Andhra Pradesh's Guntur district on Wednesday morning, said a police inspector.
Summary:
Goa Chief Minister Manohar Parrikar returned on Wednesday from the US, where he had gone for a medical check-up.
Summary:
The goons had tried to snatch their mobile phones and money, and when the girls objected, they stabbed them and escaped with the items.
Summary:
Kerala CM Pinarayi Vijayan on Wednesday announced that the state government will organise a farewell on August 26 for various defence forces who helped in relief and rescue operations in the recent floods.
Summary:
Ashraf had reportedly taken three goats to sell when he misplaced one.
A man told Ashraf he had found his goat and handed him an animal covered with a cloth.
Summary:
Sunny further said, "He supports every dream of mine like it's his own...he makes me believe that anything is possible."
Summary:
A woman, identified as Naomi H, lost her NASA internship after her tweet making the announcement had the F-word.
Summary:
Microsoft co-founder Paul Allen's Stratolaunch has announced it is developing rockets and a reusable space plane, for transporting both humans and satellites.
Summary:
Zen said she learnt in disaster management that breathing through wet cloths stops one from inhaling carbon.
Summary:
Two cops reached the balcony of the second floor and made a human chain to reach the parapet to rescue a woman who was about to fall.
Summary:
After spending years in Europe as a fugitive, a former Puerto Rican beauty queen has been put on trial for ordering the murder of her millionaire husband in 2005.
Summary:
A man was shot in the leg by his neighbour in the US state of Texas when he stabbed his 16-month-old son allegedly after yelling 'Jesus is coming.' The neighbour reportedly shot the man from a second-floor balcony when he saw him stabbing his son.
Summary:
After a failed bid to oust Australian Prime Minister Malcolm Turnbull as party leader, 10 ministers in the government have offered to resign.
Summary:
Cryptocurrency trading platform BitMEX has reportedly rented the world's most expensive offices in Hong Kong.
Summary:
Actress Soha Ali Khan, while reacting to the paparazzi using camera flash on her 10-month-old daughter Inaaya, said, "You use so much flash.
Summary:
Indian Wushu fighter Surya Partap Singh, who won a bronze medal at the Asian Games 2018 on Wednesday, was carried off the mat by his Iranian opponent Erfan Ahangarian after he suffered an injury.
Summary:
Reacting to a photo posted by Indian opener Shikhar Dhawan with opening partner Murali Vijay, a user asked, "Kaun si beer?".
Summary:
Pakistani cricketer Shoaib Malik took to Twitter to send his "thoughts and prayers" to the victims of the Kerala floods on the day Eid al-Adha was being celebrated.
My thoughts and prayers are with the people effected by the #KeralaFloods.
Summary:
The family of Indian swimmer Sajan Prakash, who is in Indonesia for the Asian Games 2018, has been found safe in Kerala after five members of his family went missing while Prakash was in Indonesia.
Summary:
India won four medals in Wushu at the Asian Games after 17-year-old Roshibina Devi, 26-year-old Santosh Kumar, 24-year-old Narender Grewal, and 24-year-old Surya Partap Singh won bronze medals in their respective categories on Wednesday.
Summary:
Four students in Mexico have developed a prototype of a jacket that could protect those wearing it from physical attacks.
Summary:
Mayfield Robotics, maker of the robot companion Kuri, will cease all operations by October 31st, 2018, the company announced in a blog post.
Summary:
On the occasion of Eid al-Adha, PM Narendra Modi tweeted, "May this day deepen the spirit of compassion and brotherhood in our society." Meanwhile, President Ram Nath Kovind tweeted, "Eid Mubarak to all fellow citizens, especially to our Muslim brothers & sisters in India and abroad...
Summary:
The accused, identified as 24-year-old Avinish Singh, was arrested based on the complaint lodged by the girl's mother.
Summary:
Former Jammu and Kashmir Chief Minister Farooq Abdullah was heckled during Eid prayers in Srinagar on Wednesday.
Reports claim he was heckled for chanting 'Bharat Mata ki Jai' and 'Jai Hind' while paying tribute to late PM Atal Bihari Vajpayee in a gathering on Monday.
Summary:
Summary:
The decomposed body of a three-and-a-half foot dolphin washed ashore at Mumbai's Marine Drive on Tuesday evening, which is reportedly the thirteenth marine mammal death in the city this year.
Summary:
On searching the car, police found a hotel's letterhead where one of the accused worked, following which they tracked him.nnn
Summary:
The US has imposed preliminary anti-dumping duties on metal pipes imported from India, China, Canada and three other countries.
Summary:
The Institute of Chartered Accountants of India (ICAI) will launch an exclusive job portal for its members on September 1.
Summary:
The Indian government has asked its missions abroad to decline offers of foreign aid for flood relief operations in Kerala.
Summary:
POCO F1 is an upcoming flagship smartphone, the first to be announced under Xiaomi's 'POCO' sub-brand.
Summary:
Xiaomi, which raised $5.4 billion in its initial public offering, shipped 32 million smartphones during the quarter, up 44% from a year ago.
Summary:
In an advisory, the UGC said the directive was being issued to "set new standards for healthy food" and making students "live better and learn better".
Summary:
Pranathi Vivek, a 12-year-old Indian-origin girl from Dubai, donated a cake made of gold worth â¹19 lakh and weighing half a kg, which she received as a birthday gift, to aid victims affected by the floods in Kerala.
Summary:
"This place was home for me for last four days.
We keep our home clean right?", an inmate said.
Summary:
Google on Wednesday announced it is testing a new feature that will allow users of Assistant-enabled devices to hear a summary of uplifting news stories.
Summary:
Congress' Chhattisgarh in-charge PL Punia has said the party doesn't have a leader in the state who is hated like former CM and Janta Congress Chhattisgarh leader Ajit Jogi.
Summary:
Girish Mathrubootham, Co-founder and CEO of Chennai-based Freshworks, which recently joined India's unicorn club at a $1.5-billion valuation, has said, "When I look up, I see Thalaiva (Rajinikanth)".
Summary:
Earlier, militants asked policemen to leave their jobs or face consequences.
Summary:
The data was based on a survey conducted by the Centre in 2016-17 covering 9,000 child care institutions.
Summary:
Slamming those who have been calling for a ban on Hindu right-wing outfit Sanatan Sanstha, the group on Tuesday called them "urban Naxals".
Summary:
The fire has been brought under control and cooling operations are underway, officials said.
At least 20 fire tenders were involved in rescue operations.
Summary:
The teacher reportedly promised to give her good marks and allegedly raped her multiple times over the past two years, officials said.
Summary:
Al-Qaeda's chief bomb maker Ibrahim al-Asiri, who was "probably the most sophisticated terrorist bomb maker on the planet", was killed in Yemen last year, reports quoting US officials said.
Summary:
In dollar terms, however, the market cap is at $2.24 trillion, 8.6% below January-23 levels.
Summary:
Karan Johar has said he wouldn't mind if his daughter Roohi and his friend Kareena Kapoor's son Taimur want to be together 20 years from now.
20 saal ke baad maybe Taimur aur Roohi saath rehna chahte hai.
Summary:
Actress Priyanka Chopra and her fiancé Nick Jonas will have a beach wedding in Hawaii, as per reports.
Summary:
Indian captain Virat Kohli dedicated the Indian team's victory over England in the Trent Bridge Test to the victims of the floods in Kerala.
Summary:
More than 100 HAM radio operators have helped trace over 800 people missing and stranded in flood-hit Kerala.
Summary:
Romanian tennis player Simona Halep, who is the top-ranked female tennis player in the world, revealed that she was "intimidated" by American tennis star Serena Williams, whom she described as "so big and huge".
Summary:
Dating app Tinder on Tuesday announced the release of a college-only service named Tinder U, that will allow students to connect with each other in and outside their campus.
Summary:
An underwater transmitter releases sonar signals that travel like pressure waves causing tiny vibrations on the surface.
Summary:
Delhi-based food startup Sattviko has raised an undisclosed amount of strategic funding led by Ashish Gupta, an angel investor and co-founder of Helion Venture Partners.
Summary:
The video showed the judge and the woman exiting a car before entering the store.
Summary:
In a trial linked to Special Counsel Robert Mueller's investigation of Russia's role in the 2016 US election, President Donald Trump's former campaign manager Paul Manafort was on Tuesday convicted of eight charges related to tax and bank fraud.
Summary:
A US school asked an 11-year-old black student to leave class after administrators said her braided hair extensions violated school rules.
Summary:
Manu Bhaker, who had won gold at Commonwealth Games earlier this year, finished sixth in the event.
Summary:
Virat Kohli has become the second-most successful Test captain for India after surpassing Sourav Ganguly's tally of 21 Test wins following India's third-biggest Test victory (by runs) against England on Wednesday.
Summary:
Actor Irrfan Khan will make his acting comeback in Bollywood by starring in the sequel to the 2017 film 'Hindi Medium', as per reports.
Summary:
Summary:
Trolling actor Salman Khan who tweeted a message remembering former PM Atal Bihari Vajpayee five days after his demise, a Twitter user wrote, "Tiger so raha tha," while referring to his character in 'Tiger' franchise.
Summary:
Speaking about Kerala floods, Union Minister KJ Alphons said the worst is over and the Centre and state government will work together on rehabilitation work.
Summary:
NASA has provided estimates of monsoon rainfall that affected India from August 13-20 and resulted in severe flooding in parts of India, with Kerala being the hardest hit.
Summary:
Toyota's second greenest plant situated in northern France derives 35% of its energy needs from renewable sources.
Summary:
Flipkart has launched its own refurbished goods platform '2GUD' via mobile web after ending a year-old strategic partnership with eBay for India operations.
Summary:
This comes after managing directors VT Bharadwaj and Gautam Mago resigned to float a joint fund A91 Partners.
Summary:
A West Bengal college student has filed a police complaint, claiming she got a call from an unknown person convincing her to participate in the suicide game 'Momo Challenge'.
Summary:
Punjab Cabinet on Tuesday approved amendments to Code of Criminal Procedure and Indian Penal Code to make sacrilege of all religious text punishable with life imprisonment.
Summary:
A child was left alone on a running bike after her parents were thrown off their bike when her father tried to overtake a scooter in Bengaluru.
Summary:
Three men in Pennsylvania, US, have been arrested and charged with 1,460 counts of sexual intercourse with animals in addition to animal abuse.
Summary:
Pictures of passengers travelling on the roof of a train in Dhaka, Bangladesh, to get home for Eid al-Adha celebrations have gone viral.
Summary:
Actress Afshan Azad, who played Padma Patil in the 'Harry Potter' film franchise, got married to Nabil Kazi on Sunday.
The wedding was attended by 'Harry Potter' actors Katie Leung, who played Cho Chang, and Bonnie Wright, who played Ginny Weasley.
Summary:
Model Gigi Hadid celebrated Eid al-Adha with her boyfriend Zayn Malik and his family members.
She took to Instagram to share a story, which featured Zayn and his younger sister Waliyha Azad.
Summary:
Indian gymnast Dipa Karmakar has pulled out of the women's artistic gymnastics final at the Asian Games 2018 due to a knee injury she suffered at the event in Indonesia.
Summary:
Indian cricketers KL Rahul and Rishabh Pant created history by becoming the first pair of teammates to take seven catches each in a Test match.
Summary:
Former Pakistan captain Shahid Afridi defended former Indian cricketer and politician Navjot Singh Sidhu on his visit to Pakistan, saying, "Peace is the only way forward for both countries." "I really hope that his warm gesture is accepted wholeheartedly...
Summary:
Facebook will remove over 5,000 advertising options in order to avoid misuse of its platform to discriminate and exclude audiences based on factors like ethnicity and religion.
Summary:
Slack had previously raised $250 million in a funding round led by Japan's Softbank in 2017, that valued it at over $5 billion.
Summary:
The Supreme Court on Tuesday asked the Centre to inform it about how many special courts have been constituted to exclusively hear and decide cases against politicians.nIn December 2017, the apex court had ordered setting up of 12 special courts to deal with such cases and said that these should start functioning from March 1, 2018.
Summary:
Two people were killed and five others were critically injured on Tuesday after being hit by a train while trying to board another train from the tracks at a station near UP's Mathura, railway officials said.
Summary:
Vowing to defeat "all inimical forces which have tried to push Pakistan towards darkness", Army chief General Qamar Javed Bajwa has said the country is on a "positive trajectory" to defeat terrorism.
Summary:
Israel on Tuesday banned the import and sale of e-cigarettes made by US-based startup Juul Labs due to their high nicotine content.
Summary:
The Supreme Court on Tuesday said the only way to secure â¹5,112 crore from Amrapali Group for construction of pending projects by NBCC is to sell the directors' personal assets.
Summary:
India's previous biggest ever victory had come in the 1932 Los Angeles Olympic Games, when they defeated USA 24-1.
Summary:
A fire broke out on the 12th floor of Crystal Tower in Mumbai's Parel on Wednesday morning, leaving a man and a woman dead, and at least 14 people injured.
Summary:
Cricketer-turned-politician Navjot Singh Sidhu defended his hug with the Pakistani Army chief, saying he is "human, not a robot".
We have forgotten to be human since ages", he said.
Summary:
It directed that on the day of Bakrid, âÂÂno animals including goat/sheep/buffalo shall be sacrificed in an open space, on any public street".
Summary:
Sharing an old picture on Twitter, veteran singer Lata Mangeshkar wrote, "Sharing my 'self-clicked' picture, which was clicked in 1950s.
Summary:
Actress Kriti Sanon has made a special appearance in the song 'Aao Kabhi Haveli Pe', which released on Wednesday and is from the Rajkummar Rao and Shraddha Kapoor starrer 'Stree'.
Summary:
Actor Ranbir Kapoor, while talking about rumours of his marriage with actress Alia Bhatt, said, "It's all a part of show business." He added, "I have always believed that marriage is something that will happen naturally.
Summary:
An eight-year-old girl from Tamil Nadu has donated her piggy bank savings of â¹8,246 to help those affected in the flood-hit Kerala.
But I decided to donate my savings to Kerala people after I saw the floods on TV," she said.
Summary:
Dubai-based Indian billionaire Yusuff Ali MA has donated â¹9.5 crore towards Kerala floods relief.
Summary:
BJP leader Shabir Ahmad Bhat, who was allegedly abducted by terrorists on Tuesday while he was on way to his home from J&K's Srinagar, was found dead on Wednesday morning in Pulwama.
Summary:
Google-backed task management app Dunzo has stopped delivering alcoholic beverages in Bengaluru, Gurugram, and Pune for past several days over issues with existing regulations.
Summary:
A 20-year-old man has been arrested for allegedly raping and killing his five-year-old cousin in Madhya Pradesh's Jabalpur district, police said on Monday.
Summary:
Tamil Nadu Hotels Association, consisting of 10,000 members, has decided to offer a 5% discount if people bring their own utensils for takeaways or parcel orders.
If customers bring their own utensils, they can benefit from it," Chennai Hotels Association President said.
Summary:
Jamia Millia Islamia student Mohammed Aamir Ali, son of an electrician working at the institute, has bagged a job with a US firm with an annual package of nearly â¹70 lakh ($100,000).
Summary:
The 20-year-old student who ran over a homeless woman in Delhi's Connaught Place area on Sunday, had stopped for a few seconds but later fled.
Summary:
Minister for Information and Broadcasting Chaudhry Fawad Hussain tweeted that Pakistan Television and Radio Pakistan will have complete editorial freedom over content.
Summary:
Australian legend Sir Donald Bradman scored 974 runs in the 1930 Ashes which ended on August 22, 1930, setting the record for most runs scored in a Test series, which has remained unbroken for 88 years.
Summary:
As many as 10 different players scored, including four netting hat-tricks, as Indian women's hockey team defeated Kazakhstan 21-0 in the 2018 Asian Games Pool B match on Tuesday.
Summary:
Summary:
Pakistan Super League side Peshawar Zalmi's owner Javed Afridi has offered to donate 5,000 tents and basic medical supplies to Kerala flood victims.
Summary:
FC Rostov, a Russian football club, has launched an exclusive fourth alternative kit featuring the design of a rug, with which the club's fans celebrated during a match.
Summary:
Uber has reportedly agreed to pay 56 current and former employees who filed claims of sexual harassment a total of $1.9 million, which averages to nearly $34,000 each.
Summary:
The protestors, under the banner of Centre of Indian Trade Unions and Kisan Sabha, were demanding increased participation of local youth at the unit.
Summary:
During an event, Canadian PM Justin Trudeau slammed a heckler telling her "your racism has no place here".
Summary:
Ahead of the meeting with the Taliban next month, Russian Foreign Minister Sergey Lavrov has said that the country won't use the militant group to fight Islamic State.
Summary:
Former Puma India MD Rajiv Mehta has launched his own sports lifestyle brand D:FY on Tuesday.
Summary:
The Supreme Court on Tuesday ordered the auction of the personal assets of real estate firm Unitech's directors, to refund home-buyers who were not given possession.
Summary:
Described as "a story about a new-age Indian family that challenges stereotypes and dares to dream", the film's announcement video featured the cast and director's actual pictures with their families.
Summary:
Italian actress Asia Argento had denied the sexual assault allegations made against her by the former child actor and musician Jimmy Bennett.
I've never had any sexual relationship with Bennett," she said.
Summary:
The ashes will be taken in a procession to various regions of the state before being immersed on Sunday at 11 am.nn
Summary:
The ashes of late PM Atal Bihari Vajpayee will be immersed at five places in West Bengal, BJP National Secretary Rahul Sinha said.
Summary:
Vijayan also said the state government will demand a â¹2,600-crore special package MGNREGA from the Centre.
Summary:
With earnings of $8.5 million (nearly â¹60 crore), Rio Olympic silver medallist PV Sindhu is the only Indian to feature in Forbes' list of top 10 highest-paid female athletes of 2018.
Summary:
Former Union Minister and veteran Congress leader Gurudas Kamat passed away on Wednesday at a private hospital in New Delhi at the age of 63, Mumbai party officials said.
Summary:
Stating that there are various narratives of the letter PM Narendra Modi wrote to his newly elected Pakistani counterpart Imran Khan, Congress Spokesperson Manish Tewari said PM Modi should make the letter public for clarification.
Summary:
Chai is a former Merrill Lynch CFO and most recently the CEO of insurance firm The Warranty Group.
Summary:
Madhya Pradesh CM Shivraj Singh Chouhan on Tuesday confirmed that as many as 13 people accused of raping minor girls have been sentenced to death in the state since December.
Summary:
About 11,000 candidates had applied for the 80 posts but only around 8,000 appeared for the exam held in January.
Summary:
"If those payments were a crime for Cohen, then why wouldn't they be a crime for Trump?" Cohen's lawyer said.
Summary:
After announcing plans to convert the Prime Minister House into a university, Pakistan PM Imran Khan moved into a three bedroom house.
Summary:
Mukesh Ambani-led telecom company Reliance Jio secured the top spot in Fortune's global 'Change the World' list released on Monday.
Summary:
Actor Rishi Kapoor took to Twitter, urging his fans to donate for the Kerala flood victims.
He further wrote that both he and his son Ranbir Kapoor have also donated for the flood victims.
Summary:
Summary:
Reliance Foundation Chairperson Nita Ambani on Tuesday announced a donation of â¹21 crore to the Kerala Chief Minister's Distress Relief Fund.
Summary:
India need one more wicket to register their first win in the five-match Test series against England.
Summary:
English pacer Stuart Broad has been fined 15% of his match fees by the ICC after he was found using inappropriate language against India's Rishabh Pant after dismissing him in the third Test.
Summary:
Ex-India cricketer Navjot Singh Sidhu on Tuesday spoke to Pakistan Tehreek-e-Insaf (PTI) senator Faisal Javed regarding a three-match series between the winners of Indian Premier League and Pakistan Super League.
Summary:
Facebook has started to rate its users based on their trustworthiness as part of its efforts to fight fake news, reports said, citing Facebook's Product Manager Tessa Lyons-Laing.
Summary:
Startup School is a free, 10-weeks' online course.
Summary:
PM Narendra Modi has called India-China relations a factor in global stability.
Summary:
A 95-year-old former Nazi guard in the US believed to be the last surviving Nazi war crimes suspect in the country, has been deported to Germany.
Summary:
Bahrain cited Qatar's "hostile behaviour" for its decision and said the action was to stop "the actions of the Qatari authorities".
Summary:
As a tribute to late three-time PM Atal Bihari Vajpayee, the Chhattisgarh government has decided to rename 'Naya Raipur' as 'Atal Nagar'.
Summary:
Meghalaya Governor Ganga Prasad was transferred to Sikkim.
Summary:
Oscar-winning singer-composer AR Rahman at a concert in the US changed the lyrics to his song 'Mustafa Mustafa' to 'Don't worry Kerala' to express solidarity with the state battling with floods.
"Kerala, you are in our prayers.
Summary:
Priyanka Chopra took to Instagram to share a story in which she can be seen posing with a ring-shaped balloon.
Summary:
The government is exempting basic customs duty and IGST for relief materials being despatched or imported from abroad for Kerala flood victims.
Summary:
"We don't get much time off from training but whenever I do, I go back to village and help my father," Saurabh said.
Summary:
WhatsApp is the top mobile app overall by time spent and its users spent over 85 billion hours on the app in the last three months, app analytics company Apptopia said on Monday.
Summary:
There are 164 illegal bungalows in Murud and Alibaug, owners of which include industrialists and Bollywood celebrities.
Summary:
Sikkim CM Pawan Chamling has said that neither the central government nor the Army informed the state government about the 2017 Doklam stand-off with China.
Summary:
Following an argument, police in the US' Michigan tasered a man who was holding his two-month-old baby.
Summary:
An Indonesian court has sentenced a woman to 18 months in prison for blasphemy after she complained about a mosque's noisy loudspeakers.
Summary:
Police officer Celeste Ayala who breastfed someone else's malnourished, hungry baby at a hospital in the Argentinian capital Buenos Aires has been promoted by the local government.
Summary:
Filmmaker Karan Johar has responded to a Twitter user who trolled him over nepotism.
Summary:
Actress Priyanka Chopra will star in Hrithik Roshan's superhero film 'Krrish 4', as per reports.
When Rakesh [Roshan] sounded her out about the fourth Krrish film, she happily agreed," said reports.
Summary:
Actor Sunny Deol, while speaking about his son Karan Deol's upcoming Bollywood debut 'Pal Pal Dil Ke Paas', said he will have to make a mark on his own in the film industry.
Summary:
Indian slip fielder KL Rahul did the celebration made famous by Tottenham's English footballer Dele Alli after he took his fifth catch of the match on Tuesday.
Summary:
Pandya picked his five-for in six overs before scoring an unbeaten run-a-ball 52 in India's second innings.
Summary:
Indian swimmer Virdhawal Khade finished fourth in the Asian Games' men's 50m freestyle final, missing the third spot and the bronze medal by a margin of 0.01 seconds.
Summary:
Union Health Minister JP Nadda has said that 65 tonnes of medicine were airlifted to Trivandrum for flood victims in Kerala.
Summary:
After winning the bronze medal at the Asian Games 2018, wrestler Divya Kakran revealed that she comes from a family which "sometimes couldn't even afford milk".
Kakran won her medal by beating her opponent in 90 seconds.
Summary:
Wenger took Weah from Africa to play for his Ligue 1 side Monaco.
Summary:
Cold-pressed juice startup RAW Pressery has raised â¹33.5 crore from Mumbai-based venture-debt firm Alteria Capital in a debt and equity funding.
Summary:
US-based car-rental startup Getaround has raised about $300 million in a series D funding round led by JapanâÂÂs SoftBank with participation from Toyota Motor Corporation and others.
Summary:
Schedules for exams including JEE Mains, NEET (UG), UGC NET have been announced.
Summary:
Ukraine recorded the highest number of cases, where over 23,000 people have been diagnosed with the disease.
Summary:
A 12-year-old girl in the US city of Detroit suffered serious burns while attempting the 'fire challenge'.
Summary:
Myanmar's leader Aung San Suu Kyi has said that it is up to Bangladesh to decide how quickly the Rohingya refugees would return to Myanmar.
Summary:
The areas under severe flood may take a decade to fully recover, reports said.
Summary:
The Ministry of Health on Monday announced all cigarette and tobacco packs will carry new pictorial warnings including 'Quit Today' message from September 1.
Summary:
The user tagged Sushant and wrote that he wants to help the victims but doesn't have the money to do so.
Summary:
An Indonesian couple have named their newborn daughter 'Abidah Asian Games' as she was born just hours before the opening ceremony of the 2018 Asian Games in the co-host city of Palembang.
Summary:
The airport has suspended operations till August 26.n
Summary:
Sex workers from Maharashtra's Ahmednagar district have donated â¹21,000 to the Prime Minister's Relief Fund for Kerala flood victims.
They plan to raise â¹1 lakh by the end of this month for further assistance to the flood victims.
Summary:
Union IT Minister Ravi Shankar Prasad met WhatsApp CEO Chris Daniels on Tuesday and said that WhatsApp must have a grievance officer in India to tackle fake news problem.
Summary:
Congress President Rahul Gandhi on Tuesday appointed Ahmed Patel as the party's new Treasurer.
Summary:
SBI Chairman Rajnish Kumar has said that apart from banks and borrowers, the government and the judiciary too had a role to play in the bad loan problem.
Summary:
'Bharat' director Ali Abbas Zafar, while speaking about reports of Salman Khan being angry with Priyanka Chopra for quitting the film, said, "I don't think we're so shallow." "Priyanka...came with very valid reasons...I couldn't say no to them," he added.
Summary:
British carmaker Aston Martin will recreate its iconic DB5 model, driven by James Bond in 'Goldfinger (1964)', in partnership with Bond-films producer EON Productions.
Summary:
Denying reports that he and his wife Ankita Konwar have been approached for Bigg Boss 12, Milind Soman said, "Nobody has approached me yet for Bigg Boss...I've no idea when this happened." "I don't know why they're even coming up with names that aren't confirmed.
Summary:
"[Kohli] has shown he's learned a lot on this tour alone," Farbrace added.
Summary:
Fighting in the 68 kg category, Kakran got a 10-0 lead within 90 seconds of the six-minute bout.
Summary:
The feature, which is available on the web version of Gmail, as well as GoogleâÂÂs Inbox app for Android and iOS, will allow users to pull back sent emails within a limited time frame.
Summary:
Arctic's oldest and thickest sea ice has been found to crack, opening waters north of Greenland that normally remain frozen even in summer.
Summary:
A video shows BJP leader Vinay Dubela hitting one of the two men convicted for raping a seven-year-old girl in Madhya Pradesh's Mandsaur while they were being produced before the court.
Summary:
Uttar Pradesh Deputy CM Keshav Prasad Maurya on Tuesday claimed that majority of Muslims want Ram Mandir to be built on the disputed Ayodhya site.
Summary:
"Since these officers do not report to the elected government, therefore they are working against the interests of the people of Delhi," said a statement from Delhi CM's office.
Summary:
US President Donald Trump has said that he might consider lifting sanctions on Russia if it does "something good" for the US on issues like Syria and Ukraine.
Summary:
The UN's nuclear watchdog, International Atomic Energy Agency (IAEA) has said that there are no indications that North Korea's nuclear activities have stopped and called the regime's enhancement of its nuclear programme "a cause for graven concern".
Summary:
The Taliban militant group on Tuesday fired a pair of rockets toward the presidential palace in Kabul as President Ashraf Ghani was delivering a speech to mark the Eid ul-Adha holiday, police said.
Summary:
Greece on Monday emerged from its third and last bailout programme worth â¬61.9 billion.
Summary:
Emirates held 44% in SriLankan Airlines until 2010, when the government bought the stake after the end of a 26-year civil war.
Summary:
Jet Airways stock has plunged 65% this year compared with a 9% drop for rival IndiGo.
Summary:
US-based Simonelli Innovation has sued TCS for wrongfully using its intellectual property (IP) and trade secrets to build a consulting practice.
Summary:
NEXA on Monday unveiled The New Ciaz in a launch event at Taj Bangalore.
Summary:
A special court on Tuesday awarded death penalty to two men accused of raping a seven-year-old girl in Madhya Pradesh's Mandsaur.
Summary:
Pakistan's Prime Minister Imran Khan on Tuesday took to Twitter to thank Indian politician and former cricketer Navjot Singh Sidhu for attending his oath-taking ceremony in Pakistan.
Summary:
The delivery man ate food from a container inside an elevator and put it back in his bag.
Summary:
In a letter addressed to Indian President Ram Nath Kovind and Prime Minister Narendra Modi, Russian President Vladimir Putin expressed his condolences over the casualties caused by the floods in Kerala.
Summary:
Kerala Chief Minister Pinarayi Vijayan on Monday said that 90% of rescue operations have been completed in the flood-hit state.nn
Summary:
Shiv Sena leader Namdeo Bhagat has been accused of molesting a 19-year-old college student in Maharashtra's Uran area.
Summary:
After PM Narendra Modi announced India's first human space programme, ISRO has confirmed a facility to train astronauts in a zero-gravity environment will soon be set up in Bengaluru, 10 km from the airport.
Summary:
A video showing a sweeper giving stitches to a patient in the presence of doctors and nurses in a hospital in Gujarat has surfaced.
Summary:
Union Minister Narendra Singh Tomar's personal assistant allegedly committed suicide by hanging himself at his residence in Delhi's Laxmibai Nagar on Monday.
Summary:
Bihar government has cancelled the selection of 50 NGOs for running shelter homes across the state and the state's Social Welfare Department will take over the management of those shelters within three months instead, an official said.
Summary:
Delhi Sikh Gurudwara Management Committee President Manjit Singh GK on Tuesday posted a video on Twitter claiming that he and his relatives were attacked by Khalistan supporters in New York.
Summary:
Iran on Tuesday unveiled its first fighter jet designed and manufactured by domestic military experts amid increased tensions with the US.
Summary:
Former Pakistan Prime Minister Nawaz Sharif has claimed that he used to pay the day-to-day expenses of the Prime Minister House from his own pocket.
Summary:
Reliance further said there has been no discussion with Alibaba or anyone else on Reliance Retail stake sale.
Summary:
Airtel, however, retained its position as India's biggest telecom operator with 34.4 crore subscribers, while Jio's customer base crossed 21.5 crore.
Summary:
Nawazuddin Siddiqui, who plays the role of Ganesh Gaitonde in the web series 'Sacred Games' has said that the locals in Rome could recognise him as Ganesh Gaitonde and appreciated his performance.
Summary:
Actress Sonakshi Sinha will be reportedly appearing in a song in Anil Kapoor and Madhuri Dixit starrer 'Total Dhamaal'.
Summary:
Dharmendra has said that while he was shooting for 'Yamla Pagla Deewana 2', he knew that the film was "bakwaas".
Dharmendra further said that he did not enjoy shooting the film.
Summary:
American singer Nick Jonas has shared a video of his fiancée Priyanka Chopra dancing with a child at an orphanage.
My heart is full", he wrote with the video in which Priyanka is seen dancing to 'Tune Maari Entriyaan' from her film 'Gunday'.
Summary:
The sport of Sepaktakraw, in which India won its first ever medal in the form of the Asian Games 2018 bronze, is a sport similar to volleyball.
Summary:
The Indian Sepaktakraw men's team won the nation's first ever medal in the sport after winning the bronze medal in the Men's Team Regu category at the Asian Games 2018 on Tuesday.
Summary:
Digital payments firm Paytm has partnered with China's Alibaba to launch AI-based cloud computing platform 'Paytm AI Cloud'.
Summary:
Her family claimed the guard was giving her injections for the last two days, adding that there was no one to hear their objections.
Summary:
A hotline to get information on the sexual abuse of children within Pennsylvania's Roman Catholic dioceses in the US has received over 400 calls in nearly a week.
Summary:
Malaysian PM Mahathir Mohamad, who is on a five-day visit to China, on Tuesday announced suspension of China-backed projects worth more than $22 billion signed under his predecessor Najib Razak.
Summary:
Police said the accused was driving on the wrong side of the road and had dragged the woman's body for 300 metres before they managed to stop her car.
Summary:
Pakistan's Prime Minister Imran Khan on Tuesday took to Twitter to slam people in India who had criticised Punjab minister and former cricketer Navjot Singh Sidhu for attending his oath-taking ceremony.
Summary:
Kerala Chief Minister Pinarayi Vijayan's office on Monday tweeted that strict action will be taken by police against those spreading fake messages on social media regarding floods in the state.
Summary:
"The people of Kerala have always been and are still part of our success story in the UAE," Maktoum said.
Summary:
India's largest e-commerce firm Flipkart has acquired AI startup Liv.ai, which built a platform that translates speech to text in nine Indian languages.
Summary:
The Supreme Court has ruled that None of the Above (NOTA) option is not applicable in Rajya Sabha elections and is only available in direct elections.
Summary:
Walnut's 35-member team will be absorbed into Capital Float, with founders Amit Bhor and Patanjali Somayaji joining the senior management.
Summary:
Uttar Pradesh CM Yogi Adityanath has instructed the police to be vigilant during the ongoing Kanwar yatra and keep a check on cow slaughter during Bakrid (Eid-ul-Adha).
Summary:
Calling the hug a "human reaction", Sidhu said, "Will you show your back if someone offers the hand of friendship?"
Summary:
During a meeting earlier this year, US President Donald Trump reportedly told King Abdullah II of Jordan that a one-state solution to the Israeli-Palestinian conflict might lead to someone named Mohammed becoming PM of Israel.
Summary:
Deutsche Bank also invited all employees to submit their own cost-cutting proposals last month.
Summary:
Talking about his film 'Race 3', Bobby Deol has said that he does not understand why the film was trolled so much for "everything" and "anything".
Summary:
Actress and Priyanka Chopra's cousin Parineeti Chopra, while replying to a fan who asked if she will steal Priyanka's fiancé Nick Jonas' shoes at her wedding, said, "OF COURSEE!!!
Summary:
Actress Neha Dhupia, who is playing the role of a drama instructor in Kajol starrer 'Helicopter Eela', said, "[Kajol] lights up the screen when she is there." "I feel there are only a few people who are meant to be on screen and Kajol is definitely one such person," Neha added.
Summary:
Congratulating Vinesh Phogat for becoming the first Indian woman wrestler to win a gold medal at the Asian Games 2018 in women's 50kg freestyle wrestling, Aamir Khan tweeted, "Mhaari chhoriyan chhoron se kam hai ke!".
Summary:
Vaani Kapoor, who will be seen with Hrithik Roshan and Tiger Shroff in Siddharth Anand's dance film, said, "I don't think anyone will look at me...I'll get lost between them or will be in the background." "Those two are fabulous dancers...I stand no chance in front of them," she added.
Summary:
Malaika Arora Khan will be appearing in a song in Vishal Bhardwaj's upcoming film 'Pataakha'.
Summary:
UP CM Yogi Adityanath has announced a cash reward of â¹50 lakh for 16-year-old shooter Saurabh Chaudhary, who bagged gold in the men's 10m Air Pistol final at Asian Games today.
Summary:
Bolt broke Michael Johnson's 200-metre world record in 2008, clocking 19.3 seconds before improving upon it with 19.19 seconds in 2009.
Summary:
American gymnast Simone Biles, who won four gymnastics gold medals at the Rio Olympics, has won all the five titles on offer at the US Gymnastics Championships 2018.
Summary:
Sarri, known to smoke around five packets of cigarettes a day, was earlier seen chewing on a cigarette during the match against Huddersfield.
Summary:
MRIs take so long because the machine creates a series of 2D images, which are stacked to make a 3D image.
Summary:
Summary:
The two men arrested for allegedly attacking JNU student activist Umar Khalid have claimed they're 'gau rakshaks' and disrupted the event at the Constitution Club of India to draw attention towards cow protection, police said.
Summary:
The airport said the glitch led to several people missing flights, adding that there were no flight delays linked to the issue.
Summary:
Consumer goods giant Emami has said that it is not in the race to buy GlaxoSmithKline's Horlicks and Kraft Heinz's Complan and Glucon-D.
ITC had earlier said it's not interested in acquiring the Kraft Heinz brands.
Summary:
The junior world record holder shot a total score of 240.7 to set Games record, while another Indian shooter, Abhishek Verma won bronze in the same event.
Summary:
Safeguard yourself against life's unpleasant surprises with Aegon Life iTerm.
Summary:
A video of a man going down on his knees in flood water to help women climb a rescue boat in Kerala has gone viral.
Summary:
Lt Commander Abhijeet Garud, the 33-year-old pilot who landed a helicopter on the rooftop of a house in Kerala to rescue people, said that he was counting seconds during the operation.
Summary:
The prisoners had similarly prepared 50,000 rotis for people stranded during floods in Chennai in 2015.
Summary:
Three-year-old P Sanjana from Chennai shot 1,111 arrows in three-and-a-half hours in a bid to set a Guinness World Record.
Summary:
WhatsApp has warned that chat backups which have not been updated for over one year will be automatically removed from Google Drive, starting November 12, 2018.
Summary:
ISRO launched Chandrayaan-1 in 2008 and the first evidence of frozen water on Moon was found a year later.
Summary:
A Bengaluru-based marketing consultant became a mother via surrogacy three years after her husband died in a road accident.
Summary:
A 23-year-old student was dragged by her hair and killed by a man against whom she had filed a sexual assault case in Madhya Pradesh's Seoni on Monday.
Summary:
A 21-year-old woman in Delhi committed suicide by hanging herself during a WhatsApp video call with her male friend.
Summary:
Upon police interrogation, he claimed his pregnant wife was admitted in the hospital and he wanted easy access to the wards.
Summary:
A 12-year-old girl, who was allegedly raped by her father, delivered a baby boy in Gujarat on Monday.
Summary:
As many as 11 people were killed after a vehicle carrying 'Machel Mata' devotees rolled down into Chenab river in Jammu and Kashmir on Tuesday.
Summary:
However, the court ruled that the government has the exclusive domain to name schemes.
Summary:
Allahabad police have recovered bodies of a man, his wife and three daughters from a locked house on Monday night.
Summary:
Justifying BSF jawan Tej Bahadur Yadav's sacking after his video on the quality of food served to security personnel, the Centre on Monday told Punjab and Haryana High Court that his video "could have led to mutiny among the armed forces".
Summary:
The woman has alleged that one of the ads morphed another man into her family photo without her consent.
Summary:
US President Donald Trump on Monday said that he could run the Russia investigation himself if he wanted to.
"I'm totally allowed to be involved if I wanted to be.
Summary:
Rani Mukerji starrer 'Hichki', in which she portrays a teacher with Tourette syndrome, is set to release in Kazakhstan four days after its release in Russia on September 6.
Summary:
Summary:
The medal is Rajput's fourth in Asiad history, after having won two bronze and a silver in the previous editions.
Summary:
Team India captain Virat Kohli blew a flying kiss with his bat to wife Anushka Sharma, who was present in the stands, after scoring his 58th international hundred on Monday.
Summary:
Manchester City goalkeeper Ederson Santana de Moraes provided an assist to forward Sergio Agüero from 86 yards away during their 6-1 victory against Huddersfield in the Premier League.
Summary:
During the altercation, the two accused thrashed the boy and at one point, one held his arms while another bit his ear.
Summary:
Indian cricket team captain Virat Kohli smashed his 58th international hundred against England in the third Test on Monday, scoring 103 runs off 197 balls.
Summary:
Hours after claiming that Indian PM Narendra Modi offered to open talks with the newly sworn-in PM Imran Khan, Pakistan backtracked on the claim saying a controversy was "being unnecessarily created by sections of the Indian media".
Summary:
Talking about 1995 film Dilwale Dulhania Le Jayenge's climax scene, Kajol said, "Raj (Shah Rukh Khan) should have just pulled the chain instead of making me run like a crazy person." In the scene, Kajol runs towards SRK, who holds out his hand from a moving train.
Summary:
Actress Richa Chadha on Monday in an Instagram post said her film 'Shakeela' co-star Rajeev Govinda Pillai postponed his wedding to help people stuck in floods at his hometown Nannoor in Kerala.
Summary:
Chief Justice of India Dipak Misra on Monday said that judges of the Supreme Court would contribute to a relief fund set up to help Kerala flood victims.
Summary:
The Indian Space Research Organisation (ISRO) has tasked five of its satellites to assist with planning and monitoring of the flood relief operations in Kerala.
Summary:
When asked about Twitter's responsibility to make sure people are not misinformed on its platform in an interview, Co-founder and CEO Jack Dorsey responded by saying, "We have not figured this out." "But I do think it would be dangerous for a company like ours⦠to be arbiters of truth," Dorsey added.
Summary:
A video has surfaced online, wherein Rashtriya Bajrang Dal leader Sanjay Jaat can be seen holding a cheque of â¹5 lakh while announcing to reward it to anyone who will behead Punjab minister Navjot Singh Sidhu.
Summary:
Shanghai based news aggregator app backed by Tencent, Qutoutiao has filed for an initial public offering of up to $300 million in the United States.
Summary:
It also suggested a fine of â¹25 lakh on a charity for raking up a "conflict of interest" issue against Chief Justice of India (CJI) Dipak Misra.
Summary:
A 22-year-old man was sentenced to death on Monday for raping and killing a 14-year-old girl in Madhya Pradesh last year.
Summary:
Around eight policemen were suspended in Bihar's Bihiya after a woman was beaten up, stripped and paraded naked by people over suspicion of her involvement in the murder of a boy.
Summary:
Outgoing UN High Commissioner for Human Rights Zeid Ra'ad al-Hussein has warned that the world body's five permanent Security Council member states wield too much power and it could lead to its "collapse".
Summary:
Slamming the US for telling the Philippines to "think very carefully" about acquiring Russian submarines and other weapons, President Rodrigo Duterte said, "Who are you to warn us?" "Did you stop other countries?
Summary:
The letter also referred to a report which claimed that 301 priests abused minors over the past 70 years in Pennsylvania, US.
Summary:
The sequel will reportedly be produced by Yash Raj Films but the director is not yet decided.
Summary:
Reports added that the new release date of Kangana's film hasn't been decided yet.
Summary:
Shiv Sena has said that its MLAs and MPs will donate a month's salary to Kerala Chief Minister's Relief Fund.
Summary:
Dilpreet Singh, Simranjeet Singh and Mandeep Singh netted hat-tricks as the Indian men's hockey team defeated hosts Indonesia 17-0 in their opening match of the 2018 Asian Games on Monday.
Summary:
Wrestler Vinesh Phogat, who on Monday became the first-ever Indian woman wrestler to win gold medal at Asian Games, said that she feels there is nothing that she cannot do.
So I was determined to win a gold...My body responded well," she added.
Summary:
Wrestler Vinesh Phogat, who became the first Indian woman wrestler to clinch gold in Asian Games history, will be awarded a cash prize of â¹3 crore and a HCS/HPS job, Haryana Sports Minister Anil Vij announced.
Summary:
Captain Virat Kohli's 103 and all-rounder Hardik Pandya's 52* in the second innings helped India set a 521-run target for England in the third Test on Monday.
Summary:
Skype has rolled out its end-to-end encrypted conversations feature for users on Skype iOS, Android, Linux, Mac, and Windows Desktop.
Summary:
Ghani had said the ceasefire would continue only if Taliban respects it.
Summary:
A special CBI court on Monday granted bail to former Allahabad Bank MD and CEO Usha Ananthasubramanian in relation to the Punjab National Bank (PNB) scam case.
Summary:
Virat Kohli smashed his 23rd Test and 58th international hundred, against England in the third Test on Monday.
Summary:
A female Superintendent of Police in Tamil Nadu has filed a complaint claiming that an Inspector-General-rank officer has been sexually harassing her for the last seven months.
Summary:
The Centre has declared the Kerala floods as a 'Calamity of Severe Nature', categorising it as a Level 3 disaster.
Summary:
US-based software engineer Aditi Kamal, the former Google and Yahoo techie who designed Patanjali's messaging app 'Kimbho' to rival WhatsApp in India, has quit the project to relaunch her own app.
Summary:
Reflecting lower than expected traffic growth and higher expenditure, the high operating ratio means it doesn't have money for capital investments.
Summary:
Stressing on the need to cut down on government expenses, Pakistan PM Imran Khan said he plans to convert the Prime Minister House into a university.
Summary:
The nurses got to know about this when they joined a Facebook group chat for pregnant workers at the hospital.
Summary:
He has also reportedly handed over the copyright of a selfie of them lying in bed to the actress.
Summary:
Actor Kevin Spacey's recent release 'Billionaire Boys Club', which is his first film since the sexual assault allegations against him were reported, earned just over $126 (nearly â¹8,700) on its opening day.
Summary:
After rescuing 4 people using a winch, the crew landed on the roof to rescue 22 more, the pilot said.
Summary:
The central government has asked industrialists and business organisations to help flood-hit Kerala in whatever way possible, Union Minister of Commerce and Industry and Civil Aviation Suresh Prabhu said on Monday.
Summary:
Qatar has announced a financial aid of $5 million (over â¹34 crore) for flood-hit Kerala.
Summary:
The island nation of Maldives on Sunday announced that it is donating $50,000 (nearly â¹35 lakh) for the ongoing rescue and relief operations in the flood-hit state of Kerala.
Summary:
This was revealed when the actress in the advertisement posted a few behind-the-scenes photos of the advertisement's filming on her Instagram.
Summary:
"There is no contract from the MoD to any Reliance Group company related to 36 Rafale aircraft," Ambani said.
Summary:
Congress President Rahul Gandhi took to Twitter to share a picture of late father Rajiv Gandhi on his 74th birth anniversary.
Summary:
A video showing Karnataka Public Works Department Minister HD Revanna throwing biscuit packets at people displaced by floods in the state has surfaced online.
Summary:
Pakistan's Foreign Minister Shah Mahmood Qureshi has said both India and Pakistan need an uninterrupted dialogue to resolve all outstanding issues, calling it the "only wise course".
Summary:
New Zealand's 42-week pregnant minister Julie Anne Genter on Sunday cycled for a kilometre on her way to the hospital to deliver her first baby.
Summary:
Russia's Deputy Foreign Minister Sergey Ryabkov has said the country will not deploy weapons in the space first.
Summary:
The Pakistan government has placed former Prime Minister Nawaz Sharif and his daughter Maryam Nawaz on the Exit Control List (ECL) that bars them from leaving the country.
Summary:
Summary:
Researchers from MIT have developed an 'in-body GPS' system named ReMix that can locate implants inside the body.
Summary:
Technology giant Apple has removed illegal gambling apps from its App Store in China amid strict regulations and criticism from state media.
Summary:
San Francisco-based startup Zippin launched the city's first AI-powered cashierless store before Amazon Go's San Francisco launch.
Summary:
Summary:
Mumbai-based search engine company Justdial reported a 1% year-on-year rise in its net profit at â¹38.5 crore in its first fiscal quarter, ended June 30.
Summary:
Vinesh, who had won bronze medal in the 2014 edition of the Asian Games, bagged her second Asiad medal.
Summary:
In his first speech to the nation after being sworn-in as Prime Minister, cricketer-turned-politician Imran Khan said he doesn't need 524 servants at the Prime Minister House and will keep only two.
Summary:
A 19-year-old boy in Kerala has committed suicide after finding out that his Class 12 school certificates were destroyed when his house got flooded.
Summary:
A message reading 'Thanks' was seen painted on a rooftop of a house in Kochi from where the Naval ALH piloted by Commander Vijay Varma had rescued two women, including a pregnant woman, on August 17.
Summary:
Speaking at the prayer meeting of late Prime Minister Atal Bihari Vajpayee in New Delhi, PM Narendra Modi said, "He never buckled under pressure.
Summary:
Netaji Subhas Chandra Bose's grandnephew CK Bose has said the country and most of their family members won't accept his ashes, preserved at a temple in Japan, without DNA testing.
Summary:
Union Minister KJ Alphons has said that Kerala needs thousands of electricians, plumbers, carpenters among others, to help in rehabilitating the state after floods.
Summary:
A Delhi court today granted bail to former Himachal Pradesh Chief Minister Virbhadra Singh's son Vikramaditya Singh in connection with a disproportionate assets case.
Summary:
Sixteen ministers from Pakistan Prime Minister Imran Khan's 21-member cabinet were sworn in in Islamabad on Monday.
Summary:
Zarif added the US was more interested in imposing sanctions than fulfilling the terms of the deal.
Summary:
The shares of Mukesh Ambani-led Reliance Industries rose as much as 2.55% to hit a record high of â¹1234.50 on Monday on reports of China's Alibaba mulling a joint venture with the company.
Summary:
Citing India's low external debt and strong external finances, credit ratings agency Fitch has predicted that the impact on India's sovereign ratings due to the sharp fall in the rupee will be limited.
Summary:
While Sensex closed over 330 points higher at 38,278.75, Nifty ended 81 points higher at 11,551.75.
Summary:
Amazon is reportedly in talks to buy India's fourth largest supermarket chain, Aditya Birla Retail's 'More'.
Summary:
PepsiCo on Monday announced it is buying Israel-based at-home carbonated drink-maker SodaStream in a deal worth $3.2 billion.
Summary:
Suhana Khan will appear as a guest in the opening episode of Koffee with Karan's sixth season and will be formally introduced to the public before making her Bollywood debut, as per reports.
Summary:
Summary:
Clarifying the reports that suggested Janhvi Kapoor and Sidharth Malhotra will be starring in the sequel to the 2008 film 'Dostana', Karan Johar tweeted, "All news circulating about Dostana 2 is untrue!".
Summary:
Homegrown taxi-hailing startup Ola launched its services across South Wales in the UK on Monday.
Summary:
The company plans to build new mobility platforms with the startup, it said in a statement.
Summary:
He added that the third option to pass a law in Parliament for building Ram Mandir was also open.
Summary:
A case was filed against Punjab minister Navjot Singh Sidhu in a Bihar court for allegedly insulting Indian Army by hugging Pakistan Army Chief during Imran Khan's swearing-in ceremony as Pakistan's Prime Minister.
Summary:
The Supreme Court has issued a notice to the Uttar Pradesh government asking it to explain why CM Yogi Adityanath should not be prosecuted in a 2007 hate speech case.
Summary:
A three-year-old girl has died and two other children have fallen sick in Uttar Pradesh's Hapur after polio drops were given to them, reports quoting police sources said.
Summary:
This comes days after the CBI arrested one of the suspected shooters in the 2013 murder, which allegedly took place over ideological differences.
Summary:
World number six Novak Djokovic defeated world number two Roger Federer 6-4, 6-4 in the final of the Cincinnati Masters to become the first man to claim all nine ATP Masters 1000 titles.
Summary:
Nirav and his uncle Mehul Choksi are being probed in the scam by the CBI and the Enforcement Directorate (ED).
Summary:
Nineteen-year-old shooter Lakshay finished second in the men's trap event on Monday to win India's second silver medal in shooting at the 2018 Asian Games.
Summary:
West Bengal TMC MP Derek O'Brien has tweeted to clarify that the textbook mistakenly showing actor Farhan Akhtar as former athlete Milkha Singh is not published by the state government and not used in government-run schools.
Summary:
A 46-year-old British woman has been rescued after spending 10 hours in the Adriatic Sea after falling from a cruise ship off the coast of Croatia.
Summary:
Since May 29, at least 370 people have lost their lives in the worst floods in the state in around 100 years.
Summary:
Apple employees at the store secured the iPad and punctured battery in a container of sand after it exploded.
Summary:
Calling it "heights of shamelessness", it added, "Nobody called Sidhu a traitor despite his visit to Pakistan.
Summary:
After Tesla CEO Elon Musk's emotional interview with The New York Times about the challenges at the company, Mahindra Group's Chairman Anand Mahindra tweeted to him, "Hang in there".
Musk had revealed he's been working 120 hours a week at Tesla.
Summary:
A shop in Gujarat's Surat is selling sweets with a covering of 24-carat pure gold leaf at â¹9,000 per kg, days before Raksha Bandhan on August 26.
Summary:
United Progressive Alliance (UPA) chairperson Sonia Gandhi, Congress President Rahul Gandhi along with his sister Priyanka Gandhi Vadra on Monday paid tribute to late Prime Minister Rajiv Gandhi on his 74th birth anniversary.
Summary:
Police have arrested 11 men in Jharkhand's Lohardaga district for raping two minor girls who were stranded on a railway bridge after their motorbike broke down.
Summary:
The half-brother of 26/11 Mumbai terror attacks mastermind David Headley, Danyal Gilani, has defended himself as an "honest" Pakistani civil servant, saying, "Kinship is not a sin." He added he has nothing to do with Headley who is lodged in a US jail.
Summary:
Around 90 families from the two Koreas were reunited in the North on Monday after being separated for more than six decades by the 1950-53 Korean War. Over 57,000 South Korean survivors have registered for the reunions.
Summary:
Taliban militants have taken around 170 people hostage following an attack on a convoy of buses in Kunduz, according to reports.
Summary:
The militants had abducted the people following an attack on a convoy of buses.
Summary:
The European Union, European Central Bank and IMF had loaned Greece â¬289 billion under the three bailout deals.
Summary:
The first look posters of Sidharth Malhotra and Parineeti Chopra starrer 'Jabariya Jodi' have been unveiled.
Summary:
Summary:
Shah Rukh Khan, Salman Khan and Katrina Kaif will be appearing as guests in the next season of Karan Johar's 'Koffee With Karan', as per reports.
Summary:
Madhuri Dixit paid tribute to Madhubala by dancing on song 'Mohe Panghat Pe' from the film 'Mughal-E-Azam' on the dance-based reality show where she is one of the judges.
Summary:
Summary:
"We will decide on the appropriate punishment for the players once we've heard all the facts," Japan basketball chief said.
Summary:
Elsewhere, Manchester City's city rivals Manchester United suffered a 2-3 defeat against Brighton.
Summary:
Italian side Chievo's goalkeeper Stefano Sorrentino suffered a broken nose, bruised shoulder and whiplash after colliding with Cristiano Ronaldo during the latter's Serie A debut for Juventus.
Summary:
A 13-year-old girl died due to food poisoning after eating lunch served at her school in Uttar Pradesh's Mirzapur.
The school's warden has been suspended, said the district magistrate.
Summary:
Delhi's Patiala House Court has allowed Congress MP Shashi Tharoor to travel to Geneva in Switzerland to meet former UN Secretary-General and his mentor Kofi Annan's family.
Summary:
Former CIA Director John Brennan has threatened legal action against Donald Trump over the US President's decision to revoke his security clearance.
Summary:
Swimmer Sajan Prakash, who set a national record during his fifth-place finish in the Asian Games 200m butterfly event on Sunday, learnt on Saturday that some of his family members were missing in Kerala floods.
Summary:
The Kochi navy airport had stopped commercial operations around two decades ago.
Summary:
After being sworn-in as Pakistan's PM, Imran Khan has said he would not live in the official residence.
Summary:
Summary:
'Bharat' director Ali Abbas Zafar said that Salman Khan always lets him take his own decisions when it comes to casting.
Summary:
Actress Sujata Kumar, who had played the role of Sridevi's sister in 2012 film 'English Vinglish', has passed away after battling stage four cancer.
Summary:
These poems will give a new direction to inmates," Uttar Pradesh prison minister Jai Kumar Jaiki said.
Summary:
A UAE retail company has fired its employee Rahul Cheru Palayattu, who is from Kerala, after he made "highly insensitive and derogatory comments" on a social media post about the floods in the state.
Summary:
After taking his first-ever Test five-wicket haul on Sunday, India all-rounder Hardik Pandya said he never wanted to be Kapil Dev, adding, "Let me be Hardik Pandya, I'm good at being Hardik Pandya." "I've come so far (41 ODIs and 10 Tests) being Hardik and not Kapil.
Summary:
However, the Pakistani bureaucrat did not attend the funeral nor the courtesy meeting with Union Minister Sushma Swaraj, government sources said.
Summary:
A 29-year-old man was killed and his cousin wounded after they were allegedly stabbed by a group of inebriated men when asking directions for a cigarette shop in Delhi on Sunday, the police said.
Summary:
The Delhi Police has arrested two men who had released a video claiming responsibility for the attack on JNU student activist Umar Khalid on August 13.
Summary:
The Italian engineer who designed the Morandi bridge that collapsed and killed 43 people warned of the risk of corrosion nearly 40 years ago.
Summary:
A day after assuming office, Pakistan Prime Minister Imran Khan arrived to work on Sunday post morning workout wearing a tracksuit.
Summary:
In his inaugural address, Pakistan Prime Minister Imran Khan has said it is time to change the country's destiny, adding that he had spoken with neighbouring countries to improve bilateral relations.
Summary:
The incident comes amid the ongoing diplomatic row between the countries over the detention of a US pastor.
Summary:
After Afghanistan President Ashraf Ghani announced a conditional ceasefire with Taliban, US State Secretary Mike Pompeo has said the country is ready to support and facilitate direct peace talks between the Afghan government and the Taliban.
Summary:
Swara Bhasker, who recently deactivated her Twitter account, has said that she's on a "digital detox".
She further said that she'll reactivate her account after returning to India next week.n
Summary:
Sara Ali Khan's debut film 'Kedarnath' will be releasing in 2019 instead of November 30 to avoid a clash with Rajinikanth and Akshay Kumar starrer '2.0' which will release on November 29, as per reports.
Summary:
Sidharth Malhotra and Janhvi Kapoor will be starring in the sequel to the 2008 film 'Dostana' while the second male lead is yet to be finalised by Karan Johar, as per reports.
Summary:
Indian shooter Deepak Kumar bagged silver medal in the men's 10m Air Rifle event on Monday, giving India its third medal at the 2018 Asian Games.
Summary:
Indian wrestler Bajrang Punia, who won India's first gold medal at Asian Games 2018 on Sunday, took to Twitter to dedicate his achievement to late Prime Minister Atal Bihari Vajpayee.
Summary:
Congress President Rahul Gandhi's brother-in-law Robert Vadra has said, "People want change in government.
Summary:
Explaining their modus operandi, police said the husband first befriended the victims before his wife, acting as another passenger, requested them to get her a ticket.
Summary:
The medal is Bajrang's second in Asian Games history, after having clinched silver in the 2014 edition.
Summary:
Twenty-year-old Rishabh Pant has become the first Indian cricketer to take five catches in his Test debut, playing against England on Day 2 of the third Test.
Summary:
The Indian Railways has announced that government organisations and private bodies can send relief materials to all stations in flood-hit Kerala for free.
Summary:
The central government has received a total of 6,077 applications for 10 joint secretary posts after it announced 'lateral entry' in bureaucracy and opened these posts for private sector specialists.
Summary:
The Tamil Nadu government has issued a directive asking all government and private colleges to ban students from using mobile phones on premises.
Summary:
During the Emergency in 1975, late three-time PM Atal Bihari Vajpayee was a fellow prisoner of then Bharatiya Jana Sangh president LK Advani in Bangalore jail and even cooked food for him.
Summary:
Actor Shah Rukh Khan's welfare organisation Meer Foundation has donated â¹21 lakh to Kerala Chief Minister's Disaster Relief Fund for the flood victims, as per reports.
Summary:
The Indian Army on Sunday warned against a video of an imposter wearing Army combat uniform and spreading disinformation about rescue and relief efforts related to Kerala floods.
Summary:
Pope Francis on Sunday called on the international community to help those affected by the floods in Kerala, calling it a "great calamity".
Summary:
Indian all-rounder Hardik Pandya took five wickets within his first 29 deliveries in England's first innings in the third Test on Sunday, registering his maiden five-wicket haul in Test cricket.
Summary:
Indian-origin businessmen based out of the UAE have pledged over â¹12.5 crore for relief operations in Kerala after heavy rains and floods left over 350 dead and displaced over 3 lakh.
Summary:
Sharma had recently sent a legal notice to Yadav for dragging his name into the shelter home abuse case.
Summary:
Billionaire Jack Ma-led Chinese conglomerate Alibaba is planning to invest in Indian companies including Reliance Industries, Tata Group and Future Retail.
Summary:
Joshi wrote to Rajan after former CEA Arvind Subramanian praised him before the committee.
Summary:
Sexual abuse in varying forms and degrees was prevalent in almost all shelter homes in Bihar, a Tata Institute of Social Sciences (TISS) report made public by Bihar government stated.
Summary:
Over the issue of dealing with 'Fake News', US President Donald Trump on Saturday said, "Censorship is a very dangerous thing and absolutely impossible to police." He further accused social media platforms of discriminating against users with right-wing views.
Summary:
"If Melania were to pull the ultimate humiliation, he would find a way to punish her," she wrote.
Summary:
Further, the state government will also bear the repairing costs of boats damaged during rescue operations.
Summary:
Sixteen wickets fell on the second day of the third England-India Test as the visitors extended their lead in the second innings to 292 runs after ending the day at 124/2 on Sunday.
Summary:
This amounts to creating user content, the attorneys said.
Summary:
Martin is accused of hacking video game company 'Electronic Arts' to access accounts.
Summary:
Shiromani Akali Dal (SAD) chief Sukhbir Singh Badal on Sunday announced that the party would contest parliamentary and state assembly elections in Haryana independently.
Summary:
Former Environment Minister Jairam Ramesh said, "From 2014, ministers of environment have been ministers of approval." He added that an environment minister isn't doing his job if his success is based on number of approvals he gave.
Summary:
Three men have been arrested after they threatened to upload 'obscene' pics of a Hyderabad-based woman on the Internet after morphing them, if she didn't pay a ransom of â¹5 crore.
Summary:
Afghanistan on Sunday celebrated its 99th Independence Day, with President Ashraf Ghani laying a wreath at the Independence Minaret to pay tributes to security forces who lost their lives.
Summary:
Afghanistan's President Ashraf Ghani on Sunday offered a 3-month ceasefire with the Taliban militant group to mark the Eid ul-Adha holiday.
Summary:
A sinkhole that remained open for months in Canada's Toronto is being fixed by the authorities after the residents planted tomatoes in it to protest.
Summary:
Kangana Ranaut has denied allegations of not paying the brokerage fee for her house in Mumbai's Pali Hill.
Summary:
Actress Deepika Padukone has shared a picture with Ranbir Kapoor on the occasion of World Photography Day on Sunday.
Summary:
Actor Anil Kapoor, although not seen in the pictures shared by Aishwarya, had also been present to meet the former PM.
Summary:
No formula that you go to filmy parties and you might get work."
Summary:
Summary:
The Army, Navy and Air Force along with the National Disaster Response Force (NDRF) are conducting rescue operations across the state.
Summary:
In an open letter to Tesla CEO after his teary-eyed interview where he said he's working 120 hours a week, Huffington Post founder Arianna Huffington has requested Musk to change the way he works.
Summary:
The UAE has deported a 36-year-old engineer from Kashmir over his suspected links with the Islamic State, officials said.
Summary:
Summary:
Former Bihar Social Welfare Minister Manju Verma and her husband have been booked for possession of over 40 live cartridges.
Summary:
Iranian Foreign Minister Javad Zarif on Sunday said that the Iran Action Group created by the US State Department aims to overthrow the country's leadership.
Summary:
The US government spent $32,000 (over â¹22 lakh) for the India visit of US President Donald Trump's son Donald Trump Jr, reports citing US government records claimed.
Summary:
Saudi Arabia cut ties with Qatar last year, accusing it of supporting terrorism.
Summary:
The retailer, which currently runs nearly 75 stores, plans to open most of the new stores in the cities where it already has a presence.
Summary:
"I've often heard people saying politicians are corrupt, but you elect them.
You're corrupt, and that's why you are electing them.
Summary:
Wishing Priyanka Chopra on her engagement to Nick Jonas, Shahid Kapoor said, "Marriage is a beautiful thing, I can say that from my experience and I wish her all the best." "Many, many congratulations to Priyanka and Nick," he added.
Summary:
India's two-time Olympic medallist wrestler Sushil Kumar bowed out of Asian Games after losing his first round bout 3-5 to Bahrain's Adam Batirov in the 74kg category.
Summary:
Ex-Australia captain Ian Chappell has said it'd be a "bookable offence" if India lose the ongoing Test series in England and the series in Australia later this year.
Summary:
Former President Pranab Mukherjee's daughter Sharmistha revealed on Twitter that their pet dog 'Daku' had once bitten late PM Atal Bihari Vajpayee during his morning walk when they were neighbours.
Summary:
Summary:
A Hythe player was umpiring when Ford assaulted him and the former lost his tooth in the process.
Summary:
Stricter localisation norms will allow Indian authorities to access data easily while conducting investigations, authorities had earlier said.
Summary:
However, Netflix allows users to rate its content with a 'thumbs up' or 'thumbs down'.
Summary:
Summary:
Takla escaped to Dubai after the blasts which killed over 250 people.
Summary:
A then 22-year-old woman was beaten up and sexually assaulted by the attacker while on her walk home.
Summary:
Former PM Atal Bihari Vajpayee's ashes were immersed by his adopted daughter Namita in Ganga in Haridwar on Sunday.
Summary:
The move is a bid to reduce attacks on cash vans.
Summary:
A former librarian from Utah, Adam Winger has been found guilty of embezzling $89,000 (over â¹62 lakh) in public funds to spend on 'Game of War' mobile game.
Summary:
Actress Priyanka Chopra and her fiancé American singer Nick Jonas are seen dancing in a video shared by Nick from their engagement party.
Summary:
Commending people from across the nation for providing aid for flood relief, Kerala CM Pinarayi Vijayan said any Keralite will be proud of the "unity of our land".
Summary:
The India Meteorological Department has withdrawn red alert from all 14 districts of Kerala amid floods and predicted moderate rains in isolated areas over the next 24 hours.
Summary:
A school textbook in West Bengal has mistakenly used the picture of actor Farhan Akhtar as former athlete Milkha Singh.
Summary:
Summary:
The Allahabad High Court has stayed the construction of a heritage hotel which was being built by Samajwadi Party chief Akhilesh Yadav in Lucknow.
Summary:
The bomb used by the Saudi-led coalition in an attack targeting a school bus in Yemen that killed 40 children was sold as part of a US State Department-sanctioned arms deal with Saudi Arabia, according to a report.
Summary:
The Bombay Stock Exchange (BSE) and National Stock Exchange (NSE) will suspend trading in shares of nine firms, including PNB scam accused Mehul Choksi's Gitanjali Gems, from September 10.
Summary:
The first song titled 'F For Fyaar' from Abhishek Bachchan, Taapsee Pannu and Vicky Kaushal starrer 'Manmarziyaan' has been released.
Summary:
Kareena Kapoor Khan has said she's a working mother and has always been a working wife, adding, "I hope women take inspiration from what I'm trying to do." "I hope women understand the importance of finding the right balance- dividing your time between family, work and friends," she added.
Summary:
Actor Varun Dhawan stitched a shirt for his father and filmmaker David Dhawan to gift him on his birthday.
Summary:
She further said she's still wanted and respected which is a good feeling.
Summary:
Priyanka Chopra, who hosted her engagement party in Mumbai after her roka ceremony with Nick Jonas on Saturday, reportedly invited only Ranveer Singh and not Deepika Padukone to the party.
Summary:
While the film will mark the first collaboration of director Sriram Raghavan and Ayushmann, it will be the second collaboration of Sriram and Radhika after 2015 film 'Badlapur'.
Summary:
Meanwhile, PM Narendra Modi announced an interim relief fund of â¹500 crore for the state on Saturday.
Summary:
MP CM Shivraj Singh Chouhan announced that late PM Atal Bihari Vajpayee's biography will be made part of school curriculum in the state from the next academic session.
Summary:
The defeat was Arsenal's second successive in the league this season, marking their worst start to a Premier League campaign since 26 years.
Summary:
Rahane scored 81(131) in the third England Test on Saturday.
Summary:
Summary:
Taken my final wicket...I think mentally I'm done as well," Johnson said.
The 36-year-old picked up 872 wickets in 413 matches across all forms of professional cricket.
Summary:
Patidar leader Hardik Patel was on Sunday detained ahead of a one-day fast he was to observe along with around 500 supporters while sitting onboard vehicles at a parking lot in Gujarat's Ahmedabad.
Summary:
Summary:
On Netaji Subhas Chandra Bose's 73rd death anniversary, his daughter Anita Bose-Pfaff reiterated her request to the governments of India and Japan to transfer his mortal remains which are preserved at Tokyo's Renkoji temple.
Summary:
Chinese President Xi Jinping will visit North Korea next month at the invitation of leader Kim Jong-un to attend the 70th anniversary celebrations of the nation's founding, according to a report.
Summary:
Shooters Apurvi Chandela and Ravi Kumar opened India's medal tally at the 2018 Asian Games by winning bronze in the final of the 10m Air Rifle mixed team event.
Summary:
As many as 113 criminal cases including that of murder, robbery and contract killing were registered against Basiran and her family members, police added.
Summary:
Priyanka Chopra and her fiancé American singer Nick Jonas hosted an engagement party in Mumbai on Saturday night.
Summary:
The current record of most Rubik's Cubes solved underwater in a single breath is five, achieved by US' Anthony Brooks.
Summary:
The Maharashtra government has announced an immediate aid of â¹20 crore for flood-hit Kerala.
Summary:
The Central Bureau of Investigation (CBI) on Saturday arrested one of the suspected shooters in the 2013 murder of rationalist and anti-superstition activist Narendra Dabholkar.
Summary:
Moti reportedly holds a 10-year UK visa and is a resident of Karachi, Pakistan.
Summary:
The family alleged that Uttar Pradesh Police did not lay him to rest and cremated him as per "Hindu rituals" instead.
Summary:
Mourning the death of former UN Secretary-General Kofi Annan, former US President Barack Obama said the diplomat "never stopped his pursuit of a better world".
Summary:
Amid rising temperatures and heatwave, Colombians in the Santa Marta city have been urged to stay cool by avoiding sex during the day.
Summary:
The rupee, Asia's worst performing currency this year, touched an all-time low of 70.40 against the dollar on Thursday.
Summary:
Manoj Bajpayee, while talking about the success of his film 'Satyameva Jayate', said, "I didn't even yawn or get distracted during narration...It was proof...that the audience is not going to run out of the theatre." "Don't want to get used to it [the success].
Summary:
Salman Khan's rumoured girlfriend Iulia Vantur will star opposite Randeep Hooda which will mark her debut film in Bollywood, as per reports.
Summary:
Aamir Khan, who is currently shooting for his upcoming film 'Thugs of Hindostan', will be remaking a Hollywood film after completing the film's shoot, as per reports.
Summary:
After Cheteshwar Pujara got out for 14(31) in the third England Test on Saturday, former captain Sunil Gavaskar said the former's "mind has been messed up".
Summary:
Virat Kohli has set the record for most runs scored by an Indian captain outside India in Test cricket.
Summary:
Indian captain Virat Kohli was dismissed in the 'nervous 90s' for only the second time in his Test career after falling short of his 23rd ton by three runs in the third Test against England on Saturday.
Summary:
Congress President Rahul Gandhi had said he didn't appreciate the remark and expected Aiyar to apologise.
Summary:
Volkswagen CEO Herbert Diess was told about the existence of cheating software in cars two months before regulators exposed the multi-billion dollar exhaust emission scandal, German magazine Der Spiegel reported.
Summary:
The court directed the authorities to take the girl for an abortion and preserve the foetus for DNA sample.
Summary:
Summary:
Meghan Markle's father Thomas Markle has compared the UK royal family to a secret cult "like Scientology...because they are secretive".
Thomas hadâ earlier said that Meghan is "terrified" and living under pressure after marriage.
Summary:
Russian President Vladimir Putin was seen dancing with Austria's Foreign Minister Karin Kneissl at her wedding on Saturday.
Summary:
The GPS position of the bomb has been recorded and it'll be defused next week.
Summary:
The minimum wage will be set at 1,800 sovereign bolivars, Maduro announced.
Summary:
With a market share of 10.6% in health insurance, the Chennai-based company is India's largest standalone health insurer.
Summary:
After 22 more people were reported killed in heavy rains and floods in Kerala on Saturday, the death toll in the state's worst natural calamity increased to 357.
Summary:
A 25-year-old businessman named Nilesh Khedekar spent over â¹72,000 to put over 300 banners with 'Shivde, I am sorry' written on them in Maharashtra's Pimpri Chinchwad to apologise to his girlfriend.
Summary:
Filmmaker Karan Johar took to social media to hint at the upcoming sixth season of his talk show 'Koffee With Karan'.
Summary:
South Indian director Shankar also reportedly donated â¹10 lakh for the flood victims.
Summary:
Sophie is engaged to Nick's elder brother Joe Jonas.
Summary:
We would pretend to be shy brides," she wrote.
"Today there was no pretending.
Summary:
In a letter to PM Narendra Modi, pilots of the cash-strapped national carrier, Air India, committed to fly planes without payment to support rescue operations in flood-hit Kerala.
Summary:
A CISF personnel forcibly stopped him, when the man tried to snatch the pistol but was caught.
Summary:
Congress leader Randeep Singh Surjewala has said that all Congress MPs, MLAs and MLCs will donate their one month's salary for relief measures in Kerala, which has been facing its worst floods in nearly a century.
Summary:
After facing criticism for hugging Pakistan's Army Chief Qamar Javed Bajwa, cricketer-turned-politician Navjot Singh Sidhu said, "He (Bajwa) want peace".
Summary:
Over 30 pilgrims on the Kanwar yatra were injured after they were allegedly attacked in Uttar Pradesh's Farrukhabad district late Friday night.
Summary:
Pant is overall Test cricket's 12th player to get off the mark with a six.
Summary:
Former Jammu and Kashmir Chief Minister Omar Abdullah today said he would donate one month's salary to the relief efforts in flood-hit Kerala.
Summary:
Indian cricketers wore black armbands in memory of India captain Ajit Wadekar and former Indian Prime Minister Atal Bihari Vajpayee on the first day of the third Test against England on Saturday.
Summary:
Indian captain Virat Kohli missed hitting his 23rd Test ton by three runs as India ended the first day of the third Test against England at 307/6.
Summary:
England's limited-overs captain Eoin Morgan tweeted his support for the victims of the floods in Kerala.
Summary:
Cristiano Ronaldo failed to score in his first match for his new club Juventus, as his side registered a 3-2 win with a 93rd-minute goal in their season's opening match against Chievo Verona on Saturday.
Summary:
Summary:
A study by Indian researchers has found that the fast-melting rates of Arctic ice can have adverse implications for Indian monsoon rain.
Summary:
The Pune rural police have arrested sixteen people after raiding a restaurant where bidders were betting on cockfights.
Summary:
Nearly two lakh cusecs of water have been released from Mettur dam into the Cauvery river but farmers in Tamil Nadu's Cuddalore and Nagapattinam districts claim they are not getting enough to irrigate their fields.
Summary:
An 11-year-old girl was allegedly gangraped and murdered by four men after being kidnapped from her house in the middle of the night in Uttarakhand's Uttarkashi district, said the police.
Summary:
A Muslim woman in Haryana divorced her husband by writing "talaq talaq talaq" on a piece of paper and eloped with her lover, who also happens to be her nephew, the police said.
In a letter to her husband, she wrote, "I am leaving...
Summary:
Kamble lives on the first floor of a building, but the burglary attempt was noticed by a woman who informed the police.
Summary:
Congress spokesperson Randeep Surjewala said the party will launch a month-long effort to expose the BJP-led government on its alleged corruption and scams.
He added, "scams of the Modi government, particularly Rafale scam, will be taken to people of India.
Summary:
Trump confused Agent Orange with napalm, the use of which was actually shown in the movie.
Summary:
Former Finance Minister P Chidambaram has said the "back series calculation of GDP has proved that the best years of economic growth were the UPA years 2004-2014".
Summary:
Walmart's investment includes $2 billion of new equity funding to help accelerate the growth of the Flipkart business, Walmart said.
Summary:
Japanese carmaker Toyota was ordered to pay $242 million (nearly â¹1,690 crore) to a family on Friday after a Texas jury found 2002 Lexus ES 300 sedan's front seats were 'unreasonably dangerous'.
Summary:
She further revealed that when she was appointed, previous collectors called to congratulate her but also warned of ghosts on the first floor.
Summary:
The roka ceremony of actress Priyanka Chopra and Nick Jonas was held today at her residence in Mumbai.
Summary:
Following the roka ceremony of Priyanka Chopra and Nick Jonas, a Twitter user wrote, "I've officially given the title 'Nation's Jiju' to Nick Jonas today." "I have so much respect for Nick Jonas for embracing Priyanka Chopra's culture and customs," tweeted another user.
Summary:
Actor John Abraham has cancelled the success party of his film 'Satyameva Jayate' owing to the floods in Kerala.
John's father Abraham John hails from Kerala.
Summary:
The NDRF teams have rescued 194 persons and evacuated 10,467 persons affected by Kerala floods.
Summary:
Three-time Prime Minister and Bharat Ratna awardee Atal Bihari Vajpayee had reportedly locked himself in a room at a friend's house for three days when his parents tried to get him married.
Summary:
Summary:
He also shot his 80-year-old aunt in the leg during the incident.
Summary:
Reacting to Infosys CFO Ranganath's resignation, the company's Co-founder Narayana Murthy described him as "one of the best CFOs" in India and a "rare individual".
Summary:
Following the roka ceremony of Priyanka Chopra and Nick Jonas, the latter's brother, singer Joe Jonas took to Twitter to wish the couple.
"I couldn't be happier for my brother.
Summary:
Football clubs including Spain's FC Barcelona and England's Liverpool FC expressed their solidarity with the victims of the Kerala floods with their posts on social media.
Summary:
The government has directed speedy settlement of claims under its crop insurance, life insurance and general insurance schemes in flood-hit Kerala.
Summary:
The Asian Games will have athletes participating across 58 sports with 462 gold medal events.
Summary:
North and South Korea on Saturday marched under a united flag at the opening ceremony of the 18th Asian Games in the Indonesian capital of Jakarta.
Summary:
Roy threw his bat to the ground in the dressing room after which it rebounded to hit him in the face.
Summary:
In an attempt to raise awareness about the dangers of the Momo Challenge, the Mumbai Police has tweeted an image saying, "Not all Momos are meant to be consumed!" The Momo Challenge entices children to talk to a stranger online who dares them to perform violent acts.
Summary:
The incident occurred when she slipped through the gap between the iron grilles of the balcony railing while her family members were inside the flat.
Summary:
Russian President Vladimir Putin will attend the wedding of Austria's Foreign Minister Karin Kneissl on Saturday before meeting German Chancellor Angela Merkel in Berlin.
Summary:
Mexican marines have seized a record 50,000 kg of crystal methamphetamine from a drug lab outside the capital of the state of Sinaloa.
Summary:
The US has imposed sanctions against Myanmar's security forces over their role in the "ethnic cleansing" of Rohingyas and "widespread human rights abuses" against other ethnic minority communities.
Summary:
The US announced on Friday that it is ending $230 million in funding for stabilising Syria and will redirect the funds to other areas.
Summary:
Former Sri Lankan President Mahinda Rajapaksa was questioned on Friday as part of an investigation into the abduction of journalist Keith Noyahr who covered the country's civil war.
Summary:
Saudi Arabia is introducing free sleep pods for Hajj pilgrims in the city of Mina.
Summary:
Describing him as a "predator", the air hostess alleged that the executive harassed her for the last six years.
Summary:
UIDAI has announced a phased rollout of face recognition feature as an additional authentication mode, starting with telecom operators from September 15.
Summary:
Animal rights group Humane Society International India is working towards rescuing stranded animals in Kerala, which has been hit by the worst floods in nearly a century.
Summary:
Paytm founder and India's youngest billionaire Vijay Shekhar Sharma was criticised on social media after he tweeted that he had donated â¹10,000 to Kerala flood victims.
Summary:
American singer Nick Jonas took to Instagram to share a picture with his fiancée Priyanka Chopra from their roka ceremony which was held on Saturday at the actress' residence.
Thirty-six-year-old Priyanka also shared the same picture captioned, "Taken...
With all my heart and soul."
Summary:
Bollywood celebrities, including Preity Zinta and Sophie Choudry wished Priyanka Chopra and her fiancé Nick Jonas after their roka ceremony was held on Saturday.
Summary:
At an official lunch, Vajpayee, a diabetic, was heading to eat gulab jamuns when his aides introduced him to Madhuri.
Summary:
The United Arab Emirates PM Sheikh Mohammed bin Rashid Al Maktoum has ordered formation of an emergency committee to provide relief to the Kerala flood victims.
Summary:
Delhi CM Arvind Kejriwal on Saturday took to Twitter to announce that all AAP MLAs, MPs and ministers will be donating their one-month salary towards relief work in flood-hit Kerala.
Summary:
Navy Captain P Rajkumar, who was awarded Shaurya Chakra on Independence Day this year, on Friday rescued 26 people stuck in Kerala floods during a single sortie in a Sea King 42B helicopter.
Summary:
Kerala-based journalist Manoj has cancelled his daughter's engagement ceremony and chose to donate the money he saved for the function to the Chief Minister's Distress Relief Fund.
Summary:
Sitharaman tweeted that the Army, Navy and Coast Guard have deployed a total of eight helicopters, 86 boats, eight task forces and 19 rescue teams.
Summary:
"We got very little time to tweak his security plan," he added.
Summary:
Amid the worst floods in Kerala in nearly a century, victims took to social media to call for help.
Mobile phones are not reachable...Please help," a viral Facebook post read.
Summary:
Google on Saturday said that people waiting for relief in flood-hit Kerala can share their location even when they are offline.
Summary:
A woman in flood-hit Kerala's Thrissur refused to leave her flooded house and sent back the rescue personnel when they said they cannot evacuate her 25 dogs.
Summary:
AIMIM leader Syed Matin, who was thrashed by BJP leaders for opposing condolence resolution on former PM Atal Bihari Vajpayee's demise, has been arrested for hurting sentiments and inciting riots.
Summary:
Rajasthan Royals' cricketer Sanju Samson has made a donation of â¹15 lakh towards the victims of Kerala floods.
Summary:
Aviation regulator DGCA has asked domestic airlines to mount additional flights to and from Kerala and cap maximum fare at â¹8,000 for shorter routes and â¹10,000 for longer routes.
Summary:
Northamptonshire then appealed for catch after the umpire told their captain that the batsman had nicked the ball.
Summary:
Talking about struggling against depression, Michael Phelps, the world's most decorated Olympian with 23 Olympic golds to his name, said that saving lives is more important than winning gold medals.
Summary:
Whistleblower Edward Snowden has suggested that the government must slap a 'criminal penalty' on anyone who uses Aadhaar data for purposes other than public services.
Summary:
The deceased had discovered his wife's alleged affair, and the two would quarrel often as she continued to meet her lover.
Summary:
A boy in Rajasthan's Ajmer on Friday committed suicide by hanging himself in his room, months after failing his Class 10 board exam.
Summary:
Karnataka Governor Vajubhai Vala has opened his official residence, Raj Bhavan, for public viewing from August 16 to August 31.
Summary:
Switzerland's Lausanne has denied citizenship to a Muslim couple over their refusal to shake hands with people of the opposite sex.
Summary:
India's largest natural gas marketer GAIL has sought shareholder approval to amend the company's charter to invest in startups.
Summary:
Priyanka reportedly got engaged to the 25-year-old singer last month during her 36th birthday celebrations in London.
Summary:
Former UN Secretary-General and Nobel Peace Prize winner Kofi Annan passed away on Saturday aged 80 at a hospital in Switzerland.
Summary:
PM Narendra Modi announced an interim relief fund of â¹500 crore for flood-hit Kerala after a meeting with CM Pinarayi Vijayan on Saturday.
Summary:
Pant has slammed 1,744 runs in 23 first-class matches, including a triple hundred.
Summary:
As a tribute to late PM Atal Bihari Vajpayee, Uttar Pradesh government is planning construction of memorials at four places in the state.
Summary:
Kerala CM Pinarayi Vijayan on Saturday tweeted that he had informed PM Narendra Modi during a meeting that the state has suffered a loss of over â¹19,500 crore as per initial assessment.
Summary:
PM Narendra Modi on Saturday conducted an aerial survey of flood-hit Kerala, which was earlier delayed due to bad weather conditions.
Summary:
Summary:
Communist Party of India (CPI) leader TS Chandran died on Thursday after he slipped into a canal on his way to buy material for a relief camp in flood-hit Kerala's Alappuzha district.
Summary:
Ex-Team India captain Sunil Gavaskar has revealed Imran Khan persuaded him to not retire after he told him he was planning to hang up his boots after India's England tour in 1986.
Summary:
Ballon d'Or winner George Weah, who scored 22 goals in 60 matches for Liberia, became the 25th President of the nation in January.
Summary:
Pakistan Tehreek-e-Insaf chief Imran Khan fumbled several times while taking the oath as the 22nd Prime Minister of Pakistan on Saturday.
Summary:
The Messenger issue arose in California during an investigation of the MS-13 gang, which President Donald Trump once called "animals".
Summary:
Congress President Rahul Gandhi on Saturday tweeted, "Dear PM, Please declare #Kerala floods a National Disaster without any delay.
Summary:
Restaurant table reservation startup EazyDiner has raised $5.85 million (â¹41 crore) in its latest funding round led by Denlow Investment Trust and early-stage investment firm Beenext.
Summary:
They alleged farmers invested their capital in seeds and carried out sowing activities based on the department's predictions of a normal monsoon.
Summary:
The principal of a missionary-run school in Assam was arrested on Friday for not having flag-hoisting ceremony on Independence Day.
All educational institutions have to hoist the flag," a policeman said.
Summary:
The Delhi Police has arrested two people for allegedly burning copies of several religious books and the Constitution on August 15 at India Gate on the occasion of Independence Day. The religious books included the Bible, Gita, Quran and Guru Granth Sahib.
Summary:
Sidhu was seated next to Pakistan-occupied Kashmir President Masood Khan at the event.
Summary:
The verdict came seven months after he assaulted the 22-year-old woman on a flight from Las Vegas.
Summary:
Police said that after meeting the girl they found out that she had left the ashram as she wasn't happy there and worked in Delhi for two years.
Summary:
MD Ranganath has resigned as the Chief Financial Officer of Infosys after 18 years at India's second-biggest software services exporter.
Summary:
The firearm was reportedly retrieved from a blood-stained speedboat, which Matias crashed in the Paraná River last year.
Summary:
Five-time Ballon d'Or winner Cristiano Ronaldo stood up on a chair and sang Portuguese song 'A minha Casinha' in front of his Juventus teammates as part of his initiation ceremony.
Summary:
Pollard, who made his T20 debut in 2006, has scored 42 fifties.
Summary:
UK and US-based researchers have identified galaxies orbiting the Milky Way, that are "some of the very first galaxies that formed in the Universe" over 13 billion years ago.
Summary:
Most corporates can withstand the ongoing rupee fall as the share of their dollar-linked earnings largely balances the share of their debt repayable in dollars, according to a Standard & Poor (S&P) report.
Summary:
Presenting Glam, Mia by Tanishq's latest collection that celebrates the unique traits of women and the difference that women bring into their lives and work, by doing things their unique way.
Summary:
Amid the worst floods in the state since 1924, Kerala MLA Saji Cherian broke down on live TV and pleaded Prime Minister Narendra Modi to send helicopters, saying "50,000 people will die otherwise".
Summary:
Pakistan's Cricket World Cup-winning captain and Pakistan Tehreek-e-Insaf chief Imran Khan took oath as the 22nd Prime Minister of Pakistan at the President House in Islamabad on Saturday.
Summary:
Anil Kapoor took to Twitter to share a letter late Prime Minister Atal Bihari Vajpayee had written to him in 1998.
Summary:
The 'roka ceremony' of actress Priyanka Chopra and her rumoured fiance, American singer Nick Jonas will be held on Saturday at her Mumbai bungalow, as per reports.
Summary:
Hanan Hamid said she will only keep the money she earned and not the public donations she received after being trolled.
Summary:
Telangana CM K Chandrashekar Rao on Friday announced immediate financial help of â¹25 crore for flood-hit Kerala.
Summary:
The 1924 Kerala floods had a cumulative rainfall of 3,368 mm over three weeks, while the state has received a rainfall of 2,087.67 mm between June 1-August 15 this monsoon, 30% increase from the normal.
Summary:
An assistant professor of Mahatma Gandhi Central University in Bihar was thrashed by a group of people on Friday after he shared a post critical of late PM Atal Bihari Vajpayee.
Summary:
The men who released a video claiming responsibility for the attack on JNU student activist Umar Khalid have failed to surrender before the police as committed by them in the video.
Summary:
The husband of the Kerala nurse who died of Nipah virus while treating affected victims has donated the first salary from his government job towards flood relief.
Summary:
There were reportedly no fatalities as the people had been safely evacuated from the building.
Summary:
Chinese authorities have detained an 18-year-old man who asked online which law prohibited anyone from calling self-ruled Taiwan a country.
Summary:
India's forex reserves have declined by $25.147 billion between April 13 and August 10 amid speculation that RBI sold dollars to defend the rupee.
Summary:
The Central Board of Direct Taxes has said the income tax collection stood at a record â¹10.03 lakh crore during 2017-18.
Summary:
Speaking about his two-year-old son Ahil, Salman Khan's brother-in-law Aayush Sharma said, "With the kind of attention he gets...somewhere he thinks...he's already an actor, for sure." "As for his career, he's...
Summary:
Israeli Prime Minister Benjamin Netanyahu on Friday condoled the demise of former Indian Prime Minister Atal Bihari Vajpayee and called him "a true friend" of his country.
Summary:
Warwickshire's Jack Parsons was declared absent hurt on August 17, 1931, in a match against Worcestershire, after he reportedly went home to fetch his glasses and returned to find his team all-out.
Summary:
Patidar leader Hardik Patel and 500 supporters will observe a day-long fast while sitting in cars in a parking lot in Gujarat's Ahmedabad on Sunday.
Summary:
Tesla shares fell as much as 9% on Friday after CEO Elon Musk told the New York Times that his tweet about taking the company private wasn't reviewed by anybody.
Summary:
A 50-year-old non-resident Indian died of a cardiac arrest after he was allegedly thrashed by a security guard and his employer in DLF Phase-2, Gurugram.
Summary:
The Uttar Pradesh government on Friday told the Supreme Court that it has got 157 government bungalows vacated, including those allotted to former chief ministers.
Summary:
A man allegedly killed his sister-in-law and her nephew while they were sleeping and grievously injured a third relative over a property dispute in Delhi's Paharganj area, the police said.
Summary:
The CBI has arrested a middleman who was allegedly receiving a bribe of â¹10 lakh on behalf of a Punjab police inspector general posted in Ferozepur.
Summary:
The US has threatened more sanctions against Turkey if it doesn't release Brunson soon.
Summary:
The US said that the satellite, launched in 2017, displayed behaviour "inconsistent with anything seen before from" Russian inspection satellites, apparently implying that it may be a space weapon.
Summary:
India's largest multiplex chain PVR Cinemas on Friday announced that it has completed the acquisition of 71.69% stake in Chennai-based chain SPI Cinemas in a deal worth â¹850 crore.
Summary:
Pandey had hijacked Lucknow-Delhi flight IC-810 to protest against then PM PV Narasimha Rao's assurance that Babri Masjid would be rebuilt.
Summary:
A 16-year-old Australian boy has admitted to hacking the world's most valuable company Apple's servers and downloading internal files because he was a fan of Apple and wanted to work for it one day.
Summary:
Summary:
Singer Lata Mangeshkar dedicated her previously unreleased song 'Than Gayi Maut Se Than Gayi' to late PM Atal Bihari Vajpayee.
The song uses words from Vajpayee's poem as its lyrics.
Summary:
Actress Rosamund Pike has revealed she was asked to strip and appear in underwear during her audition for the 2002 James Bond film 'Die Another Day'.
Summary:
"The end of a great life," Yadav had earlier tweeted on Vajpayee's demise.
Summary:
Bhutan's King Jigme Khesar Namgyel Wangchuk was among the several South Asian leaders who attended the funeral of former PM Atal Bihari Vajpayee on Friday.
Summary:
It is also a personal loss for me," the letter read.
Summary:
Vajpayee visited China in 2003 during which the two countries set up the Special Representatives talks to resolve boundary disputes.
Summary:
Some genius went and recorded laundry as lingerie!" said Goel.
Adding that there's nothing wrong in selling lingerie, he said, "Let's set the record straight that it was laundry".
Summary:
Tesla CEO Elon Musk said in an interview he's been putting up 120-hour work weeks, sometimes not leaving the factory for 3-4 days, adding he spent his entire 47th birthday in office to meet Model 3 production goals.
Summary:
The pilots have alleged that while the salaries and perks of other staff are paid in full, flying allowances for the pilots and cabin crew are "ignored".
Summary:
The Delhi High Court has dismissed a Public Interest Litigation (PIL) against the cap on free-of-charge withdrawals from own bank ATMs, saying it was a policy decision.
Summary:
The contestants performed a Bollywood routine on the song.
Summary:
Sonakshi Sinha has said much of her learning about acting happened on film sets, while adding, "I never wanted to be an actor...I was a fat kid, I lost weight and was put in a film." "I never went for workshops, acting or dancing classes," she added.
Summary:
PM Narendra Modi and BJP Chief Amit Shah walked on foot alongside the hearse car carrying his mortal remains.
Summary:
Following the demise of former PM Atal Bihari Vajpayee, Congress leader P Chidambaram described him as compassionate and tolerant.
Summary:
Summary:
Expressing his condolences following the demise of former PM Atal Bihari Vajpayee, Tibetan spiritual leader the Dalai Lama said, "I feel privileged to have known him and am honoured to have counted him as a friend." He added, "Shri Vajpayee was a truly dedicated politician.
Summary:
Following the demise of former Prime Minister Atal Bihari Vajpayee, RSS chief Mohan Bhagwat said, "He was an intense, decisive leader who was acceptable to all." He added, "With his ideas and conduct, he established Indian cultural values in his public life...
Summary:
Indian tennis player Sania Mirza posted a picture of all the medals won by her in the Asian Games.
Summary:
Alipore Court has ruled that Indian pacer Mohammed Shami will have to pay â¹80,000 per month instead of the â¹10 lakh monthly amount earlier demanded by his estranged wife Hasin Jahan as family maintenance.
Summary:
Pakistan's World Cup-winning former captain Imran Khan is set to become the first international cricketer to be elected as the Prime Minister of a nation.
Summary:
Former Indian cricketer and politician Navjot Singh Sidhu reached Pakistan to attend the oath-taking ceremony of Pakistan's Prime Minister-elect Imran Khan.
Summary:
Speaking about the accommodation facilities at the Asian Games' Village in Indonesia, an athlete from the Indian contingent said, "Rooms are on the smaller side.
Summary:
Trump had proposed a parade to honour US military veterans and commemorate the 100th anniversary of the end of WWI.
Summary:
China is "likely" training its pilots for strikes against the US and allies, the US' Defence Department has said.
Summary:
Three-time PM Atal Bihari Vajpayee's pyre was lit by his foster daughter Namita Bhattacharya at the Rashtriya Smriti Sthal on the banks of river Yamuna in Delhi today.
Summary:
Kerala CM Pinarayi Vijayan tweeted 324 people have died and 2.2 lakh are in 1,500 relief camps, in the worst floods in 100 years in the state.
Summary:
Former cricketer and Pakistan Tehreek-e-Insaf (PTI) chief Imran Khan was elected the Prime Minister of Pakistan after a vote in the country's lower house of parliament on Friday.
Summary:
Hollywood actress Scarlett Johansson, with earnings of $40.5 million, has topped the World's Highest-Paid Actresses 2018 list by Forbes while Angelina Jolie ranked second in the list.
Summary:
CM Vijayan tweeted an appeal to raise funds for victims.
Summary:
PM Narendra Modi and BJP Chief Amit Shah walked on foot alongside the hearse vehicle carrying late PM Atal Bihari Vajpayee's mortal remains.
Summary:
He can also be seen with celebrities like Hrithik Roshan and Rajinikanth in some of the other photos.
Summary:
Russian President Vladimir Putin on Friday condoled the demise of former three-time Indian PM Atal Bihari Vajpayee, calling him an "outstanding statesman".
Summary:
Kerala is the worst-affected, with over 247 people losing their lives.
Summary:
Condoling the demise of former PM Atal Bihari Vajpayee, Pakistan PM-designate Imran Khan said, "It is only through establishing peace that we can really honour the legacy of Atal Bihari Vajpayee." "With the death of Vajpayee sahab, South Asian politics is now left with a huge political vacuum.
Summary:
In a company-wide meeting on Thursday, Google CEO Sundar Pichai said that the company is "not close" to launching a search engine app in China that meets the country's censorship norms.
Summary:
Tata Steel and UK's Liberty House have reportedly offered â¹17,000 crore and â¹19,000 crore respectively for BPSL.
Summary:
The order is applicable to all insurance companies in India with immediate effect.
Summary:
Ranveer Singh has revealed he was called 'atrangi' when he was in school because of his mohawk, ear piercings and baggy jeans.
Ranveer further said, "I have started making choices that are authentic, especially when it comes to fashion."
Summary:
Kylie Jenner's boyfriend Travis Scott has donated $800 (â¹56,148) to one of his fans to help cover the cost of his mother's funeral.
Summary:
Senior Shiv Sena leader Manohar Joshi said he became the Lok Sabha Speaker due to former PM Atal Bihari Vajpayee, who passed away on Thursday aged 93.
Summary:
Ex-England football captain David Beckham scored a 60-yard goal from his own half just near the halfway line while representing Manchester United against Wimbledon on August 17, 1996.
Summary:
Mumbai Police also gave a gun salute as a tribute to the former Indian cricketer.
Summary:
A baseball player in USA's Major League Baseball's Twins-Tigers game flipped his bat after hitting a shot, following which the home-plate umpire standing behind the batter caught the bat with one hand.
Summary:
Astronomers using the NASA's Hubble Space Telescope have captured approximately 15,000 galaxies, about 12,000 of which are forming stars, in a single mosaic.
Summary:
British cancer scientist Nazneen Rahman has had ã3.5 million (around â¹31 crore) in grant money revoked after allegations of bullying by 45 current and former colleagues.
Summary:
Seventeen students and a staff member were admitted to the hospital on Thursday with symptoms of food poisoning after they ate the mid-day meal served at a Mumbai school.
Summary:
Turkey has accused Brunson of being a part of the failed coup attempt against President Recep Tayyip ErdoÃÂan two years ago.
Summary:
Malaysia has repealed a law that banned 'fake news', reversing the legislation passed in April by former PM Najib Razak's government.
Summary:
A video has emerged online that shows Turks smashing their iPhones after Turkey announced a boycott of electronic goods from the US.
Summary:
IDBI Bank CEO B Sriram has said the lender is looking to complete the transfer of majority ownership from the government to LIC within the next three months.
Summary:
Sudan has requested ONGC Videsh to withdraw arbitration proceedings against the African nation for recovery of over $400 million in unpaid oil dues.
Summary:
Three-time PM and Bharat Ratna Atal Bihari Vajpayee, who passed away on Thursday aged 93, was cremated with full state honours at Delhi's Smriti Sthal on Friday.
Summary:
Three-time PM Atal Bihari Vajpayee was cremated on Friday with state funeral at Central Delhi's Rashtriya Smriti Sthal on the banks of river Yamuna.
Summary:
The government of Mauritius has decided to fly both the country's and India's flags at half-mast on Friday as a mark of respect to deceased former Indian Prime Minister Atal Bihari Vajpayee.
Summary:
A Sikh man named Terlok Singh was stabbed to death at his store in the US in the third attack on Sikhs in America in three weeks.
Summary:
Turkish football club Gulspor sold 18 youth players for around â¹1.75 lakh and bought 10 goats in a bid to earn extra money from milk sales.
Summary:
Following the judge's intervention, Jolie has reportedly allowed Pitt to visit their children for four hours on school days and 12 hours for holidays.
Summary:
Salman Khan has revealed he used to flirt with his school teacher and dropped her home on his bicycle.
He said this on a show when asked about Indians falling in love for the first time with their school teacher.
Summary:
During an interview in 2011, veteran BJP leader LK Advani revealed he had confessed to his colleague Atal Bihari Vajpayee in the 1970s that he developed an inferiority complex due to his speeches.
Summary:
PM Narendra took part in the funeral procession of former PM Atal Bihari Vajpayee from BJP headquarters to Rashtriya Smriti Sthal, where he'll be accorded a state funeral at 4 pm on Friday.
Summary:
Tesla CEO Elon Musk on Thursday said that he was not high on weed when he had tweeted "Am considering taking Tesla private at $420.
Earlier, American rapper Azealia Banks had claimed that Musk tweeted it while he was high on acid.
Summary:
In an emotional interview after his 'funding secured' tweet, Tesla founder Elon Musk has said the last year was "excruciating" and "the most difficult and painful" time of his career.
Summary:
A 25-year-old pregnant woman was airlifted from a rooftop in a flood-hit village in Kerala by the Indian Navy after which she gave birth to a baby boy at a hospital.
Summary:
Kerala government has hiked the excise duty on liquor by 0.5%-3.5% for 100 days to raise additional funds for relief and rehabilitation of those affected in floods across the state.
Summary:
The group said the data will be historical evidence of atrocities committed against the Rohingyas.
Summary:
Chokhani Securities, a non-banking financial company (NBFC) recently acquired by former Religare Enterprises CEO Shachindra Nath, has raised â¹1,000 crore in the last six months.
Summary:
Three brokerages allegedly gained preferential access to the NSEâÂÂs high-speed algorithmic trading platform through its co-location service.
Summary:
Richa Chadha, while talking about #MeToo movement against sexual harassment, has said that Indian cinema has a long way to go.
Summary:
Rajpal Yadav, while talking about his journey in Bollywood, said, "I came to Mumbai from a village to become a good actor." "I have really got much love from my industry and audience and that's really satisfactory for me," he added.
Summary:
Sajid Ali, who will be making his directorial debut with the upcoming film 'Laila Majnu', said, "I am the first fan of my brother." "Bhai is a natural storyteller...he used to put me to bed telling stories in a very engaging manner," he added.
Summary:
The release date of Freida Pinto, Manoj Bajpayee and Demi Moore starrer 'Love Sonia' has been announced as September 14.
Summary:
Marchisio, who is a product of Juventus' youth football academy, won a total of seven Serie A titles after having appeared in 389 matches for the Turin-based club.
Summary:
TMC MP Kalyan Banerjee was hospitalised on Friday after a taxi, ignoring traffic signals, rammed into his car in Kolkata.
Summary:
The minor confided in her teacher, following which a police complaint was lodged and he was arrested.
Summary:
The militants opened fire during the operation in which the jawan was injured and later died at a hospital.
Summary:
The girl's medical report has confirmed rape and she has been sent for counselling.
Summary:
A man from Bathinda who was arrested on charges of radicalism and links with an Australia-based Khalistani outfit has been granted bail after the police failed to file a chargesheet within the stipulated 90 days.
Summary:
Former White House adviser Omarosa Manigault Newman has released a tape of US President Donald Trump's daughter-in-law Lara offering her a $15,000-a-month job after she was fired.
Summary:
At least 164 people have died in the floods in Kerala, which is the state's worst floods since 1924.
1,568 relief camps have opened up," said Kerala CM Pinarayi Vijayan.
Summary:
Actor Siddharth on Thursday launched #KeralaDonationChallenge on Twitter and urged people to donate for those affected by the floods in Kerala.
Please," Siddharth tweeted.
The actor donated â¹10,00,000 for the cause.
Summary:
Actor Amitabh Bachchan, in a blog written after the demise of late PM Atal Bihari Vajpayee, wrote, "He was one that personally would ring me on my birthday, as I would on his." "A stalwart, a poet, a writer, an enlightened mind, a compassionate being leaves this world...
Summary:
Pakistan's acting Law and Information Minister Barrister Syed Ali Zafar will represent the country at the last rites of former PM Atal Bihari Vajpayee on Friday.
Summary:
Kumar, who also has a picture with Vajpayee, said he met him when he visited Uttarkashi en route to Gangotri.
Summary:
Then MP Atal Bihari Vajpayee led a protest by driving a flock of 800 sheep to the Chinese embassy in Delhi.
Summary:
The BJP-led NDA government has reportedly decided to build a memorial in the memory of late PM Atal Bihari Vajpayee.
Summary:
Batsman Nasir Jamshed has been banned for 10 years by Pakistan Cricket Board's Anti Corruption Tribunal for his involvement in the 2017 Pakistan Super League (PSL) spot-fixing scandal.
Summary:
Over 1,000 Google employees have signed a letter protesting against the company's secretive plan to build a search engine for China that would comply with the country's censorship norms.
Summary:
The pods can carry 8-16 passengers each, at around 240 kmph, the company added.
Summary:
Chinese researchers have discovered a beetle preserved in Burmese amber (tree resin) for an estimated 99 million years along with pollen grains of cycads, a plant that preceded flowering plants.
Summary:
A 50-year-old teacher, serving life imprisonment for abducting and raping two schoolgirls, allegedly abducted another girl while on parole in Gujarat on August 11.
Summary:
The CBI on Friday raided former Bihar Social Welfare Minister Manju Verma's houses in connection with her husband's alleged involvement in the Muzaffarpur shelter home case wherein at least 34 girls were raped.
Summary:
Social activist Swami Agnivesh was assaulted by a mob near the BJP headquarters in New Delhi while he was reportedly on his way to pay tribute to late PM Atal Bihari Vajpayee.
Summary:
Meanwhile, PM Narendra Modi will visit Kerala on Friday evening to take stock of the flood situation.
Summary:
During his tenure as the External Affairs Minister in 1977, former PM Atal Bihari Vajpayee became the first person to deliver a speech in Hindi at the United Nations General Assembly.
Summary:
Tijarawala added that the app's trial version was removed by Google without citing any reason.
Summary:
Kajol, while talking about her children Nysa and Yug, said, "We all want the best for our kids, [which is a life] without the pressure of [dealing with] the media at that age." "They [the children] have other issues to deal with," she added.
Summary:
The first song titled 'Gold Tamba' from Shahid Kapoor and Shraddha Kapoor starrer 'Batti Gul Meter Chalu' has been released.
Summary:
Condoling the demise of former Prime Minister Atal Bihari Vajpayee, Sourav Ganguly tweeted, "Bharat loses its gleaming Ratna...An amazing soul...may his soul rest in peace." He also shared a picture of himself with Vajpayee clicked in 2004 ahead of Team India's tour of Pakistan.
Summary:
The club claimed that someone in the clubhouse used a universal remote device to affect TV output.
Summary:
During the same match, another six from Harmanpreet narrowly missed hitting a reporter.
Summary:
Kieron Pollard-led St Lucia Stars slammed 16 sixes in the match, while Trinbago Knight Riders smashed 18 maximums.
Summary:
Real Madrid captain Sergio Ramos tried to replicate former teammate Cristiano Ronaldo's celebration and pulled off former UFC featherweight and lightweight champion Conor McGregor's signature walk after scoring against Atlético Madrid in the UEFA Super Cup.nThe 32-year-old scored for Real Madrid by converting a penalty in the 63rd minute.
Summary:
This is India's first-ever medal at any cycling World Championship event.
Summary:
This comes after ousted employee Martin Tripp alleged Tesla uses old batteries.
Summary:
Earlier, reports suggested that Priyanka would host a party to announce their engagement on August 18.
Summary:
Summary:
Speaking to journalist Karan Thapar, former PM Atal Bihari Vajpayee had once said, "Rajiv Gandhi is the reason I'm alive today." Vajpayee recalled that Rajiv Gandhi, who was the PM then, called him after learning about his kidney problem.
Summary:
Late Prime Minister Atal Bihari Vajpayee had won Screen Videocon Award for Best Non-Film Lyrics in 2000 for his album 'Nayi Disha'.
Summary:
Summary:
A procession was carried out to take mortal remains of former PM Atal Bihari Vajpayee from his residence to the BJP headquarters in Delhi.
Summary:
Officials advised commuters to avoid central Delhi unless they want to pay homage to the late PM.
Summary:
PM Narendra Modi has penned a tribute titled 'A leader for the ages, ahead of his times', following the demise of former PM Atal Bihari Vajpayee.
Summary:
Google has revised an erroneous description on its website, clarifying it continues to track users even after disabling the location.
Summary:
Uttar Pradesh BJP has approached Bareilly-based Nida Khan, who moved the court after she was allegedly given instant Triple Talaq by her husband, to join the party.
Summary:
Registering its highest-ever Gross Transaction Value (GTV) growth, e-commerce conglomerate Infibeam Avenues has reported a 128% year-over-year growth to â¹10,245 crore in the first quarter of financial year 2018-19.
Summary:
Amid the floods in Kerala, the Supreme Court on Thursday directed the Disaster Management sub-committee of Mullaperiyar Dam to consider reducing its water level down to 139 feet from the current 142 feet.
Summary:
A video has surfaced online, wherein a man could be seen being airlifted by the Indian Air Force in the flood-affected Pathanamthitta district of Kerala.
Summary:
UPI 2.0 also allows customers to check invoice before making a payment to the merchant.
Summary:
The collective fortunes of Walton family members Alice, Jim, Rob, Lukas and Christy surged by $11.6 billion on Thursday to $163.2 billion, according to Bloomberg.
Summary:
Nathalie Emmanuel, known for portraying 'Missandei' in 'Game of Thrones', said the final season of the show is going to be "incredibly exciting and heartbreaking".
So, this season is going to be incredibly satisfying for people," she added.
Summary:
Quentin Tarantino's 'Kill Bill', starring Uma Thurman, will be remade in Bollywood, as per reports.
Summary:
Arjun Kapoor, on being asked about his marriage plans, said, "It could take two, four or even six years, I don't know." He added that he'll marry after his sisters Anshula Kapoor and Rhea Kapoor get married.
Summary:
Talking about the rumours that Shahid Kapoor opted out of Imtiaz Ali's film, Imtiaz said, "I never announced a film...I never said I am working with Shahid Kapoor." "Now when people ask me that the film is not happening, I reply, 'Which film?' Go talk to the person who spoke about it.
Summary:
Summary:
"Through history there are a lot of players who have played with an injury and scored runs and taken wickets," Bayliss added.
Summary:
Following Indian cricket team's losses in the first two Tests against hosts England, coach Ravi Shastri advised the Indian batsmen to be prepared to "look ugly and dirty " and asked them to "show some grit".
Summary:
Shah Rukh Khan-owned Trinbago Knight Riders' captain Dwayne Bravo's half-brother Darren Bravo smashed five sixes in St Lucia Stars' captain Kieron Pollard's last over in a Caribbean Premier League match on Thursday.
Summary:
Ronaldinho's 13-year-old son Joao Mendes tried to hide his identity as the Brazilian footballer's son during his trial with Brazilian side Cruzerio as he reportedly wanted to gain his place in the club through merit.
Summary:
The BCCI has paid â¹1 crore to Gautam Gambhir as a share of gross revenue for the tournaments played outside India for 2011-12, 2012-13 and 2014-15 seasons.
Summary:
Tennis player Leander Paes withdrew from the upcoming Asian Games for not getting a "specialist" men's doubles partner.
Summary:
The Intelligent and Sporty 2018 Nissan Micra has features like the Xtronic CVT Automatic, 6.2" Touch AVN and NissanConnect with 50+ connected car features.
Summary:
Late PM Atal Bihari Vajpayee arrived at the Parliament House on a bullock cart in 1973 to protest against the hike in petrol and kerosene prices by Congress government.
Summary:
In a tearful tribute to late three-time Prime Minister and Bharat Ratna awardee Atal Bihari Vajpayee, PM Narendra Modi on Thursday said, "In Atal ji's passing away, it is as if I have lost my father".
Summary:
After the passing away of former PM Atal Bihari Vajpayee on Thursday, former Congress President Sonia Gandhi said, "I join millions of our fellow Indians in mourning his loss." She added, "Shri Vajpayee was a towering figure in our national life.
Summary:
Late Prime Minister Atal Bihari Vajpayee once enrolled for a degree in law at the DAV College in Kanpur, along with his father Krishna Bihari Vajpayee.
Summary:
In a tribute to former PM Atal Bihari Vajpayee who passed away today, the Congress tweeted, "Atal the, Atal hai, Atal hi rahenge." Earlier, Congress President Rahul Gandhi tweeted, "Today India lost a great son.
Former PM, Atal Bihari Vajpayee ji, was loved and respected by millions.
Summary:
As a tribute to late three-time PM Atal Bihari Vajpayee, Delhi and at least 12 states including Uttar Pradesh, Bihar and Tamil Nadu have ordered government offices and educational institutions to remain shut tomorrow.
Summary:
Late PM Atal Bihari Vajpayee, who passed away in Delhi on Thursday, had an adopted daughter named Namita Bhattacharya.
Late PM Vajpayee's family comprised Namita, her husband Ranjan Bhattacharya and their daughter.
Summary:
India's first Prime Minister Jawaharlal Nehru had once predicted that Atal Bihari Vajpayee would become the Prime Minister of the country "one day".
Summary:
Filmmaker Kunal Kohli has announced his upcoming film on Ramayana titled 'Ramyug'.
The cast is ready and soon I'll be making that announcement," said Kunal.
Summary:
Summary:
Following the passing away of former Prime Minister Atal Bihari Vajpayee, Congress MP Shashi Tharoor in a tribute wrote, "What distinguished him was...insaniyat- his humanity." He added that the late PM had a "great-heartedness that embraced even those with whom he disagreed".
Summary:
An old video shows former Prime Minister Atal Bihari Vajpayee playing with a National Bravery Award winning child during the 2003 award ceremony.
Summary:
Facing no-confidence motion against his 13-day-old government in 1996, then-PM AB Vajpayee said, "Respected speaker, I am going to the President to tender my resignation".
Till the work started by us...is completed...we shall not rest," he said addressing the Opposition.
Summary:
A photo gallery shows rare and unseen pictures of former Prime Minister Atal Bihari Vajpayee, who passed away aged 93 on Thursday.
Summary:
The BJP has shared a video tribute to late PM Atal Bihari Vajpayee, where the Bharat Ratna awardee can be seen reciting his poems.
Summary:
However, it later deleted the tweet and shared the correct photograph of Vajpayee.
Summary:
Expressing grief over late PM Atal Bihari Vajpayee's demise, Pakistan PM-designate Imran Khan said, "We stand with India in this difficult time." "There's a void in the politics of South Asia after his death.
Summary:
Serena Williams has revealed that 10 minutes before her match against Johanna Konta on July 31, she discovered on Instagram that the man convicted of killing her half-sister Yetunde Price had been released from prison.
Summary:
Paes was also excluded from India's Target Olympic Podium Scheme.
Summary:
Usha said that affected her performance in the final 35 of 400 metres.
Summary:
India's crude oil import bill is likely to jump by about $26 billion in 2018-19 as the weakening rupee made buying oil costlier, government officials have said.
Summary:
Following the demise of former PM Atal Bihari Vajpayee, Shiv Sena chief Uddhav Thackeray said, "My heart isn't ready to accept Atal ji is no more...He was a simple man and an innocent politician." Claiming NDA remained strong as Vajpayee took everybody along, Thackeray added, "He is in our hearts.
Summary:
The 118-year-old Davis Cup tournament will be changed into an 18-team, week-long event after International Tennis Federation (ITF) approved a proposal by a consortium that has pledged support of $3 billion over a 25-year-long duration.
Summary:
Karnataka Chief Minister HD Kumaraswamy on Wednesday said he hoped the Centre would respect and respond positively to public sentiments in favour of holding the Aero India show in Bengaluru instead of shifting it to Lucknow.
Summary:
In an alleged reference to the Muzaffarpur shelter home rape case, Bihar Chief Minister Nitish Kumar said, "Some glaring incidents have recently come to light.
Summary:
Summary:
The last rites of late three-time Prime Minister and Bharat Ratna awardee Atal Bihari Vajpayee will be conducted at 4 pm tomorrow on the banks of Yamuna river at Smriti Sthal, where Presidents and Prime Ministers are usually cremated.
Summary:
India conducted five successful nuclear tests from May 11-13, 1998, in Pokhran after which then-PM AB Vajpayee declared India a "full-fledged nuclear state".
Summary:
Aretha Franklin, the long-reigning Queen of Soul, died on Thursday morning at the age of 76 from advanced pancreatic cancer.
Summary:
Vajpayee, a diabetic, had one functional kidney.
Summary:
Summary:
Indian wrestler Geeta Phogat has admitted that she "lost focus" following the hype around her biopic 'Dangal', which was co-produced by Aamir Khan.
"I think staying away from wrestling for two years with injury and the movie, I lost my focus.
Summary:
Vajpayee had then declared India a full-fledged nuclear state, the sixth nation to do so.
Summary:
Late PM Atal Bihari Vajpayee had watched Hema Malini starrer 'Seeta Aur Geeta' twenty-five times when the film released in 1972.
Summary:
Summary:
Late PM Atal Bihari Vajpayee, in his 1988 poem 'Maut se than gayi', wrote, "A battle with death!
What a battle it will be!".
Summary:
He took oath as the PM in May 1996, and resigned 13 days after forming the government, amid a no-confidence motion.
Summary:
After late three-time Indian PM Atal Bihari Vajpayee's speech at his felicitation in Pakistan, the country's then PM Nawaz Sharif said, "Vajpayee sahab ab toh Pakistan mein bhi election jeet sakte hain".
Summary:
Following the demise of former Prime Minister Atal Bihari Vajpayee on Thursday, West Bengal CM Mamata Banerjee tweeted, "Very very saddened that the great statesman and former PM Shri Atal Bihari Vajpayee ji is no more with us." "His passing away is a very big loss to our nation.
Summary:
The Centre has announced a seven-day state mourning across India as a mark of respect following the demise of former PM Atal Bihari Vajpayee.
Summary:
Mahindra Group Chairman Anand Mahindra on Thursday tweeted his picture with late former PM Atal Bihari Vajpayee and said, "It is with enormous grief that I remember him today and mourn his passing." Adani Group Chairman Gautam Adani tweeted, "RIP Shri Vajpayee!
You epitomised fairness, integrity and collaboration.
Summary:
Following the passing away of former PM Atal Bihari Vajpayee, Vice President Venkaiah Naidu said, "Never expected end will come so soon.
Summary:
Summary:
The mortal remains of the late Prime Minister Atal Bihari Vajpayee will be taken to the BJP headquarters at 9 am on Friday in New Delhi for last tributes.
Summary:
Michael Terpin said hackers accessed his cryptocurrency account by carrying out SIM swap fraud.
Summary:
Following Atal Bihari Vajpayee's demise, Sachin Tendulkar tweeted, "India is at a great loss today.Shri #AtalBihariVajpayee ji's contributions to our nation have been innumerable." "Asaman ko choo gaya, jo asmaan sa vishal tha, dharti mein simat gaya, jo mitti jaisa narm tha.
Summary:
After the demise of former Prime Minister and Bharat Ratna awardee Atal Bihari Vajpayee, Delhi Chief Minister Arvind Kejriwal tweeted, "Am deeply saddened.
Summary:
He completed the race in 9.69 seconds and went on to better his world record with a timing of 9.58 seconds on the same date the following year.
Summary:
Speaking about the current Australian team, Australian cricket legend Shane Warne said that the team "desperately needs" the suspended duo of Steve Smith and David Warner.
Summary:
Indian women's team's ODI captain Mithali Raj shut down a troll who questioned the delay in her tweet about Independence Day.
Summary:
Taking a free-kick from around 25 yards out, Rooney placed his kick into the top-right beyond the reach of the diving goalkeeper.
Summary:
Odisha CM Naveen Patnaik spoke to Kerala CM Pinarayi Vijayan on the phone, following which the financial aid was announced.
Summary:
Kerala's Kochi Airport has suspended operations till August 26 as heavy rainfall has led to the flooding of its runway and surrounding areas.
Summary:
Late former Prime Minister Atal Bihari Vajpayee is the only parliamentarian to have been elected from four different states at different times.
Summary:
Former Prime Minister and Bharat Ratna awardee Atal Bihari Vajpayee on Thursday passed away aged 93 at AIIMS Delhi, where he was being treated since nine weeks.
Summary:
In an old video shared on social media, the then Prime Minister Atal Bihari Vajpayee can be seen hugging current Prime Minister Narendra Modi, who had been a BJP worker then.
Summary:
Following the passing away of former PM Atal Bihari Vajpayee on Thursday, PM Narendra Modi tweeted, "Main nishabd hoon, shoonya mein hoon [I am speechless, I am in vacuum]." "His passing away marks the end of an era.
Summary:
Senior BJP leader LK Advani said late Atal Bihari Vajpayee was his "closest friend for over 65 years", following the former PM's demise on Thursday.
Summary:
He was again elected in 1999 and served a full five-year term.
Summary:
In a tribute to late three-time Indian PM Atal Bihari Vajpayee, BJP President Amit Shah shared a poem penned by Vajpayee on Twitter.
Summary:
The decision was reportedly taken after a meeting between Gunn and Walt Disney Studios chairman Alan Horn.
Summary:
"Aaj mujhe waisa dukh hua hai jaise mere pita ji ke swargwas ke samay hua tha," wrote Lata Mangeshkar.
Summary:
Vidya Balan is being considered to portray late Tamil Nadu CM Jayalalithaa in a biopic, as per reports.The first look of the film will be released on her birthday on February 24 next year.
Summary:
It was India's first full tour of Pakistan in over 15 years.
Summary:
Summary:
Summary:
Summary:
Summary:
In a tribute to late three-time PM Atal Bihari Vajpayee, Congress President Rahul Gandhi said, "Today India lost a great son".
"Former PM, Atal Bihari Vajpayee ji, was loved and respected by millions.
Summary:
However, Facebook, YouTube and other social media platforms blocked objectionable content as requested, it added.
Summary:
India's aviation regulator DGCA has reportedly advised airlines to operate relief flights to flood-hit Kerala and not to overprice air tickets.
Summary:
The London High Court has ordered Vijay Mallya to pay a further â¹1.5 crore towards the legal fees of a consortium of Indian banks, after losing a case against them.
Summary:
The Indian rupee on Thursday touched a fresh all-time low of 70.40 against the US dollar after the country's trade deficit widened to a more than 5-year high in July.
Summary:
Nitin Sandesara, the promoter of Gujarat-based pharmaceutical company Sterling Biotech which is being probed for â¹5,383 crore fraud, has been arrested in Dubai.
Summary:
Deepika Padukone and Ranveer Singh have asked guests not to carry phones at their wedding, as per reports.
Only 30 guests have reportedly been invited to their wedding, which is rumoured to be held in November.
Summary:
The court declared this along with a ruling that has denied a follower of the 'Church of the Flying Spaghetti Monster' the right to wear a colander on her head in her official photographs.
Summary:
Players and staff of the Indian cricket team, including captain Virat Kohli, observed a two-minute silence to mourn the death of former Indian skipper Ajit Wadekar, who passed away on Wednesday aged 77.
Summary:
A man in Assam was killed and three others were injured when nearly 20 people attacked them on the suspicion that they were cattle thieves, the police said.
Summary:
Delhi CM Arvind Kejriwal, who turned 50 today, has appealed to AAP volunteers and his followers to avoid celebrating his birthday in view of the deteriorating health condition of former PM Atal Bihari Vajpayee.
Summary:
Villagers caught the youth when the girl started screaming.
Summary:
Over 1.5 lakh people have been shifted to relief camps across the state.
Summary:
In a video widely circulated on social media, two men claimed responsibility for the attack on JNU student activist Umar Khalid and called it "a gift from us this Independence Day".
Summary:
Mallika Sukumaran, actress and mother of Malayalam actor Prithviraj was rescued after water entered her residence during the Kerala floods.
Summary:
The 'engagement ring' that American singer Nick Jonas gave to his rumoured fiancée Priyanka Chopra costs $300,000 (â¹2.1 crore), as per reports.
Summary:
Over 40 lakh names have been excluded from the NRC draft.nnn
Summary:
It added that PM Modi gave a good 2019 election speech from the ramparts of the Red Fort.
Summary:
Chief Election Commissioner (CEC) OP Rawat said on Wednesday that the Election Commission can hold the general election and elections in 4 states simultaneously in December.
Summary:
Madras High Court has issued notices to Tamil Nadu and Central governments after a PIL sought judicial probe into alleged security lapses during Congress President Rahul Gandhi's visit to pay homage to late DMK chief M Karunanidhi.
Summary:
In the footage from 2014, only the man's hands and private parts were visible with the face hidden.
Summary:
KELT-9b, the hottest known planet whose star-facing side reaches temperatures of over 4,000 úC, has an atmosphere of vaporised iron and titanium, a study has revealed.
Summary:
In response to DNA damage, a tumour-suppressing protein wakes up the non-functioning gene called LIF6 to kill cancer-prone cells.
Summary:
Tripura Governor Tathagata Roy on Thursday tweeted that former PM Atal Bihari Vajpayee had passed away, but deleted the tweet later.
Summary:
The Empire State Building in New York, US, was on Wednesday lit up in tricolour to mark India's 72nd Independence Day. A ceremony was organised at the skyscraper in collaboration with Federation of Indian Association.
Summary:
Meanwhile, 11 people are reported to have been swept away by strong currents.
Summary:
Indian Army jawans have built a 35-foot-long bridge in Kerala's Malampuzha to rescue people stuck in floods.
Summary:
The 53-year-old was paid ã2.6 million last year, compared with ã1.6 million in 2015, when Nikkei bought FT.
Summary:
Exiled Chinese property tycoon Guo Wengui's daughter Guo Mei is seeking the release of assets frozen by Hong Kong police as part of a $4.2-billion money laundering investigation.
Summary:
Former heavyweight boxing champions Vitali Klitschko and Lennox Lewis, who fought each other 15 years ago in the "Battle of the Titans" fight, are set to face off in a chess match in Kiev in October.
Summary:
Twitter has temporarily suspended the account of conspiracy theorist Alex Jones for "inciting violence", after he tweeted a video calling on supporters to get their "battle rifles".
Summary:
Summary:
Martin Tripp, the Tesla employee fired and then sued by the company for exposing confidential information, has tweeted several photos claiming Tesla "reworks" damaged batteries for its Model 3 cars.
Summary:
US-based investment firm Matrix Partners has raised $300 million from 43 investors for its third India-dedicated fund.
Summary:
Girnar Software, which owns auto portals CarDekho, Gaadi, ZigWheels, and BikeDekho has acquired PowerDrift, a YouTube channel focused on car and bike reviews.
Summary:
A case of treason has been filed against three teachers of a Madrasa in Uttar Pradesh allegedly after a video showed them stopping children from singing the National Anthem during the Independence Day function.
Summary:
PM Narendra Modi and Home Minister Rajnath Singh visited former PM Atal Bihari Vajpayee in AIIMS as the latter's condition remains critical.
Summary:
Stating that Kerala is in "great pain", he tweeted, "Thousands are stranded...
It's time to step up & help." Over 80 deaths have been reported in the state.
Summary:
Kessler then explains that his father doesn't agree with him over his views on Israel and Jewish people.
Summary:
UpGrad and IIIT Bangalore's Post Graduate Program in Machine learning and AI helps students transition to high demand-high growth job roles in machine learning and AI, delivering an average 36% salary hike.
Summary:
A Humboldt penguin chick was born on Independence Day at Mumbai's Veermata Jijabai Bhosale Udyan zoo, the first such birth in India.
The zoo has four female penguins and three male adult penguins.
Summary:
BJP leader LK Advani paid a visit to former Prime Minister Atal Bihari Vajpayee in AIIMS as the latter's condition remains critical.
Summary:
Katie Stubblefield, a 21-year-old American who survived a suicide attempt has become the youngest to receive a face transplant in US history.
Summary:
A divorced woman has won ã13,100 (over â¹11 lakh) in damages from a UK-based dating agency after it failed to find her a wealthy boyfriend.
Summary:
'Kkusum' actress Aashka Goradia Goble has admitted to getting a lip job while saying, "People will shame you but there is nothing to be ashamed of." She added, "I wanted to do something to my face, and that's my choice...
Summary:
The Akshay Kumar starrer 'Gold' has earned â¹25.25 crore to become the third highest opening day grosser of 2018 among Bollywood films in India.
Summary:
Billionaire tobacco tycoon Michael Bambang Hartono, who's listed as Indonesia's richest man along with his brother in Forbes' list, will represent the hosts in Asian Games in the bridge event.
Summary:
Facebook on Thursday admitted it had been "too slow" to crack down on hate speech which contributed to violent attacks against the minority Rohingya Muslims in Myanmar.
Summary:
Summary:
Hotel chain OYO Rooms may soon raise $500 million to $1 billion in its next funding round, which could take its valuation up to $4.5-5 billion, as per reports.
Summary:
The woman had been practising as a junior advocate in the same court.
Summary:
A video of two men is being circulated on WhatsApp, wherein they are claiming responsibility for the attack on JNU student activist Umar Khalid on August 13.
Summary:
AIIMS has started a doorstep test and screening service for the people living in old age homes in Delhi.
Summary:
With the death toll in Kerala floods crossing 70, Tourism Minister KJ Alphons said, "12 districts in Kerala are severely affected.
These are the worst floods since 1924." "Army, Navy, IAF, Coast Guard and NDRF are conducting rescue and relief operations.
Summary:
Former PM Atal Bihari Vajpayee's niece Kanti Mishra on Thursday said, "I have been praying to god that just once I can see him give a speech again." "Our family can never ever erase that image of his from our minds.
Summary:
Nearly 350 US newspapers will on Thursday publish coordinated editorial responses to President Donald Trump's attacks on what he calls the "fake news" media.
But at least we can agree that such attacks are alarming," the appeal read.
Summary:
Philippine President Rodrigo Duterte on Tuesday said he is tired and thinking of stepping down.
But I do not think she can improve on anything here," he further said.
Summary:
Italy's ruling party, the Five Star Movement, had in 2013 dismissed safety fears about the motorway bridge that collapsed on Tuesday killing at least 39 people as a "fairy tale".
Summary:
Tesla had not formally hired Goldman Sachs and private equity firm Silver Lake as financial advisers when CEO Elon Musk tweeted about taking the company private, as per reports.
Summary:
Interestingly, on August 16, 2009, the Jamaican clocked 9.58 seconds in the World Championships, again breaking his own record.
Summary:
Mumbai-born US-based software engineer Saurabh Netravalkar plays for Pakistani all-rounder Shoaib Malik-led Guyana Amazon Warriors in the Caribbean Premier League.
Summary:
Premier League side Tottenham Hotspur's 26-year-old forward Son Heung-min faces a compulsory stint of nearly two years' military service if he fails to win Asiad gold with South Korea.
Summary:
Condoling the demise of former Team India captain and manager Ajit Wadekar, former captain and coach Anil Kumble tweeted that Wadekar was "a shrewd tactician" and "a father figure to the entire team".
"My heartfelt condolences to his family and loved ones.
Summary:
Two priests were murdered and one was critically injured in a temple in Uttar Pradesh's Auraiya district that led to protestors setting shops ablaze and pelting stones at the police.
Summary:
A clash erupted between a group of Kanwariyas and local residents in Uttar Pradesh's Ambedkar Nagar on Monday allegedly after a girl, who was ill, fainted due to loud music played by the Kanwar pilgrims.
Summary:
Kerala-born Nihal Sarin has become India's 53rd Grandmaster after attaining his third and final GM-Norm by drawing in the eighth round of Abu Dhabi Masters against Uzbekistan's Temur Kuybokarov.
The 14-year-old, who was the 2014 World Under-10 Champion, is the 12th youngest grandmaster in chess history.
Summary:
Condoling ex-Team India captain Ajit WadekarâÂÂs demise, actor Boman Irani tweeted, âÂÂ1971 was no less than a World Cup victory...You will be missed dear captain.â Wadekar was the captain when India won its first-ever overseas Test series against England and Windies in 1971.
Ajit Wadekar RIP.âÂÂ
Summary:
Actress Aishwarya Rai Bachchan, while talking about the possibility of a biopic or biography on her, said, "It's important to share your story as it is.
Summary:
India's patent office rejected a plea last April by a Canadian company to patent a vibrator, citing sex toys violate "public order and morality".
Summary:
Ajit Wadekar, who died aged 77 on Wednesday, was a Mumbai-born batsman who captained India in their first-ever ODI in 1974.
Summary:
Former Indian batsman Sachin Tendulkar, who scored record 15,310 runs as an opener in ODI cricket, opened for the first time under former India captain Ajit Wadekar's management.nWadekar was appointed as Team India's first-ever manager in 1992 and agreed to let Sachin open in 1994 on the latter's request.
Summary:
World's third-richest person Warren Buffett's Berkshire Hathaway raised its stake in Apple by 5% in the second quarter, taking the position's value to nearly $53 billion.
Summary:
Akhil Bharatiya Hindu Mahasabha on Wednesday set up the first Hindu court, which will function on the lines of Shariat courts.
Summary:
Uber has reported an $891 million loss for the April-June period, with a revenue of $2.8 billion.
Summary:
BJP leader Ram Madhav said on Wednesday that a dispute over a "large segment" of the India-China border has been resolved.
Summary:
A local leader of Telangana Rashtra Samithi (TRS), hoisted his party's flag instead of the Tricolour at an event on Independence Day. The incident occurred in Sangareddy district, where people were seen singing the National Anthem after the party flag's unfurling.
Summary:
Iranian Supreme Leader Ayatollah Ali Khamenei has admitted he made a mistake in allowing the country's Foreign Minister Mohammad Javad Zarif to speak to his then US counterpart John Kerry during negotiations that led to the 2015 nuclear deal.
Summary:
Turkish currency lira has lost nearly 40% against the dollar this year.
Summary:
San Francisco has established 'Poop Patrol' to deal with human waste that's contaminating sidewalks in the US city amid rising number of homeless people.
Summary:
The power authority took to Twitter to share an image of its last customer to receive electricity.
Summary:
New Zealand's parliament on Wednesday passed a bill banning the sale of existing homes to foreign buyers, saying that citizens were being "tenants in our own land".
Summary:
The agency has initiated a criminal investigation into three companies over the illegal dumping.
Summary:
The fake switch server approved 12,000 transactions worth over â¹78 crore in 28 countries on August 11.
Summary:
Playboy had announced that it was developing a digital wallet that would support cryptocurrencies across the company's websites.
Summary:
Olympic bronze medallist Yogeshwar Dutt has said Indian coaches live in the past and lack the hunger to learn.
Summary:
Paying tribute to former Team India captain Ajit Wadekar who passed away on Wednesday, Ravi Shastri tweeted, "Sad moment for Indian cricket to lose one of its most successful captains.
Summary:
Mithali Raj was rewarded with ã10 (â¹740 on that date) by the team manager after recording the first Test double hundred by an Indian woman on August 16, 2002.
Summary:
Real Madrid, playing their first competitive match since club's all-time top scorer Cristiano Ronaldo left, suffered a 2-4 defeat against rivals Atlético Madrid in UEFA Super Cup on Wednesday.
Summary:
"The bots can navigate on their own, identify and greet passengers, respond to queries deciphering variances in accents and converse with fun," the airport tweeted.
Summary:
Chinese technology giant Tencent Holdings on Wednesday reported its first quarterly profit fall in nearly 13 years.
Summary:
US President Donald Trump on Wednesday revoked the security clearance of former CIA Director John Brennan.
Summary:
SPI, which operates 76 screens under brands like Sathyam, Palazzo, and The Cinema, reported revenues of â¹309.6 crore in 2017-18.
Summary:
He played 37 Tests for India, making his debut in 1966 against the West Indies, and was named the national team captain in 1971.
Summary:
Former Prime Minister Atal Bihari Vajpayee's condition is critical and he is on life support system, AIIMS Delhi said in a statement on Wednesday.
Summary:
Arjun Kapoor and Parineeti Chopra's upcoming film 'Namaste England' was forced to release a new poster after it received flak over showing a wrong map of India.
Summary:
A video of police rescuing a bride dressed in her bridal gown from the top of her car amid flooding in New Jersey, US, has gone viral on the internet.
Summary:
Christopher, who was supposed to travel to Inuvik from Yellowknife, mistakenly took a flight to Iqaluit.
Summary:
Prime Minister Narendra Modi has shared a video tribute posted by singer Shankar Mahadevan on the occasion of India's Independence Day. In the song, Mahadevan has sung about the government's schemes like Swachh Bharat, Jan-Dhan Yojana, and Startup India among others.
Summary:
Opening up on how he fell in love with his wife Kiran Rao, Aamir Khan said, "It was after my...divorce." "In that moment of trauma, her phone came and I talked to her...for half an hour...When I put the phone down, I said, 'I feel so happy'," he added.
Summary:
The Uttar Pradesh government has approached the Centre for its approval to rename Bareilly airport to 'Nath Nagri', which is believed to be an ancient name of the city which had worshippers of Lord Shiva.
Summary:
The India Meteorological Department has issued a red alert in Kerala amid floods and over 65 deaths have been reported in the state.
Summary:
Scientists have found radioactive isotopes in Australian sheep, which has hinted towards an illegal nuclear test that is claimed to have been conducted by Israel in the Indian Ocean around 39 years ago.
Summary:
The carrier has reportedly offered cash flows from credit card receivables as collateral for the loans.
Summary:
Yami Gautam, who worked with Hrithik Roshan in the film 'Kaabil' has said the actor is where he is because he is "selfless".
Summary:
Ayushmann Khurrana took to Twitter to announce that his wife Tahira Kashyap will be making her directorial debut.
The cast of the film, which will be produced by T-Series, will be announced soon.
Summary:
Bryan Adams, known for singing songs like 'Summer of '69' and 'Please Forgive Me', will be visiting India in October for a multi-city tour.
Summary:
Summary:
An app that claims to reduce the energy consumption and extend the battery life of smartphones for up to an hour each day has been developed.
Summary:
Photo-sharing app Instagram has responded to user reports claiming their Instagram accounts were hacked and the data associated with the accounts changed.
Summary:
Speaking about PM Narendra Modi's speech on Independence Day, BSP president Mayawati said it was an election speech given in a political style.
Summary:
Summary:
Orios Venture Partners and the Indian Angel Network's IAN Fund also participated in this round, the startup said.
Summary:
Uber is due to release its second-quarter earnings to investors this week.
Summary:
Summary:
A police team later found the girl in the jungle and arrested all the four accused, including a minor.
Summary:
"According to the United Nations, no other country or state...has recorded the steepest fall in poverty level as quickly as Sikkim," Chamling said.
Summary:
Speaking about Ayushman Bharat healthcare scheme, UP CM Yogi Adityanath nsaid, "I appeal to those citizens who...are financially capable, to please voluntarily opt out from it." He added that six crore people in the state would initially benefit from it.
Summary:
Addressing the nation on the 72nd Independence Day, PM Narendra Modi said, "India has registered its name as the sixth largest economy in the world." He added, "It has created positivity.
Summary:
Uttar Pradesh Chief Minister Yogi Adityanath has ordered the release of 72 prisoners from different jails on the occasion of India's 72nd Independence Day. The prisoners who will be released are poor and have been serving extra terms for being unable to deposit fines imposed by courts, an official said.
Summary:
Haydor Khan, the nine-year-old boy from a picture that went viral on August 15 last year, has been left out of the Assam NRC.
Summary:
ISRO is planning to put an Indian astronaut in space in its first manned mission by 2022 for at least seven days at a cost of less than â¹10,000 crore, ISRO Chairman K Sivan said on Wednesday.
Summary:
Sonowal also thanked 55,000 government employees for making the NRC upgradation possible.
Summary:
Summary:
A 3.5 kilometre long Tricolour was made in Assam's Uparkhuti village by a local club for Independence Day. The flag was stitched by six tailors who didn't charge money for making it.
Summary:
A 12th-century bronze Buddha statue stolen from an ASI museum at Nalanda, Bihar, 57 years ago has been returned by London's Metropolitan Police on Independence Day. The statue was among 14 stolen in 1961 and surfaced many years later at an auction in London.
Summary:
Speaking about rape cases of minors, Madhya Pradesh Chief Minister Shivraj Singh Chouhan said that the state has become a "role model" by giving death sentence to over 10 such offenders.
Summary:
The national flag dropped during a flag-hoisting ceremony led by BJP President Amit Shah at the BJP head office in Delhi on Wednesday.
Summary:
Wirecard, whose market capitalisation stands at about $24.1 billion, gets 5% as much revenue as Deutsche Bank.
Summary:
A video from the sets of the Ranveer Singh and Sara Ali Khan starrer 'Simmba' has been released on the occasion of the 72nd Independence Day. The video carries a message discouraging crimes against women.
Summary:
Singer Nicki Minaj's ex-boyfriend Safaree Samuels has accused her of domestic abuse and alleged that she had stabbed him.
Summary:
Shah Rukh Khan has shared a picture of his son AbRam holding a National Flag and wrote, "Tum hi Bhavishya ho mere Bharat Vishal ke, Iss Desh ko rakhna mere bachhon sambhaal ke." "Celebrating at home with our future generation of...kind and pure Indians," he added.
Summary:
Akshay Kumar has said when he joined Bollywood, he was given the tag of an 'action hero', while adding, "I kept doing action films for 14 years.
Summary:
After England all-rounder Ben Stokes was found not guilty on charges of affray, former England captain Michael Vaughan said that Stokes missing the "whole of the Winter in Australia" is punishment enough for him.
Summary:
Brewing company Anheuser-Busch is planning to instal smart fridges at bars throughout Cleveland that will open only when the American football team Cleveland Browns wins their first game of the season.
Summary:
Former Indian hockey team captain Sardar Singh has registered a score of 21.4 points in the Yo-Yo test, a score higher than all the reported scores of the members of the Indian cricket team.
Summary:
Sandhu was part of the Bengaluru FC squad that faced FC Barcelona's B team as part of the Indian club's pre-season friendly matches.
Summary:
WWE wrestler John Cena was a part of WWE's video in which several wrestlers are seen wishing their Indian fans on the occasion of the nation's 72nd Independence Day. Cena says, "Happy wonderful and safe Independence Day".
Summary:
After Indian tennis player Sania Mirza took to Twitter to wish her Pakistani fans on their nation's 72nd Independence Day, her husband, Pakistan's Shoaib Malik did the same for Indian fans on Wednesday.
Summary:
Summary:
American startup accelerator Y Combinator is set to debut in China, with the new unit to be led by former Baidu Chief Operating Officer Qi Lu. The move marks Y Combinator's first international expansion.
Summary:
This occurred at a function organised at the Indian Embassy in Kathmandu.
Summary:
Around six people who tried to hoist the Indian flag at a city centre in Jammu and Kashmir's Srinagar on Tuesday were allegedly thrashed by locals.
Summary:
Summary:
The poor will have access to education and employment." He also highlighted housing, electricity and other financial schemes in his speech.
Summary:
After Aero Show 2018 was reportedly shifted from Bengaluru to Lucknow, UP Civil Aviation Minister Nand Gopal Gupta said, "We are conducting a grand Kumbh Mela next year.
Summary:
Prince Hussam was ordered to pay over $500 million after he lost an arbitration hearing in London.
Summary:
American video game company Electronic Arts' (EA) Chief Design Officer Patrick Söderlund, the highest-paid executive at the company with â¹340-crore annual salary, announced his exit from the company on Tuesday.
Summary:
Chief Justice of India Dipak Misra, in his address on Independence Day, made references to the criticism he faced from senior judges earlier this year.
what is difficult and challenging is to transform it to a performing one," he said.
Summary:
India's first Prime Minister Pandit Jawaharlal Nehru delivered a speech on the midnight of August 14, 1947, the eve of India's independence.
Summary:
Sara is related to Tagore from her paternal grandmother Sharmila Tagore's side.
Summary:
John Abraham's 'Satyameva Jayate', which released on Independence Day, is "deeply irresponsible and tone-deaf waste of time", wrote Hindustan Times.
Summary:
The teaser of Salman Khan starrer 'Bharat' has been released.
Summary:
Actress Priyanka Chopra has reportedly been seen wearing her 'engagement ring' in pictures shared by actress Raveena Tandon from fashion designer Manish Malhotra's party on Tuesday night.
Summary:
The i5 Summit 2018, an entrepreneurship summit organised by IIM and IIT Indore, will be held at IIM Indore from 18 to 19 August this year.
Summary:
After AAP leader Ashutosh announced his resignation from the party, AAP Chief and Delhi CM Arvind Kejriwal tweeted, "How can we ever accept your resignation?
Summary:
Two short-sellers earlier filed lawsuits against Musk and Tesla, calling the tweets "fraudulent".
Summary:
Notably, India-born late Kalpana Chawla and Indian-origin Sunita Williams flew into space as American astronauts.
Summary:
US President Donald Trump on Tuesday called former White House aide Omarosa Manigault Newman a "dog" over allegations made by her that he repeatedly used the N-word during his career in reality TV.
Summary:
The report stated that Church leaders protected the priests across six Catholic dioceses.
Summary:
The videos made several claims against Ramdev and also accused Patanjali of adulteration in its products.
Summary:
Former England captain Geoffrey Boycott termed India's batting as "naive, brainless, and arrogant".
Wafting drives at tempting outswingers is thoughtless," Boycott said about India's batting in the Test series against England so far.
Summary:
Former South Africa captain AB de Villiers, who quit international cricket in May, said that he is relieved to quit international cricket as the pressure was "unbearable at times".
Summary:
A $10,000 reward was announced by John McAfee for anyone who would hack the Bitfi wallet.
Summary:
After PM Narendra Modi's address to the nation on its 72nd Independence Day, Congress leader Randeep Surjewala said, "Achche din to aaye nahi ab is desh ko sacche din ka intezar hai." He added, "PM Modi's speech on Independence Day proved to be shallow.
Summary:
Nitish further said that a few years ago, he had promised to improve the state's electricity situation and if he failed to do it, he wouldn't seek votes in the next election.
Summary:
Google's parent company Alphabet has invested $375 million in US-based health insurance startup Oscar Health.
Summary:
MIT mathematicians found twisting and bending it could break it into just two.
Summary:
Delhi CM Arvind Kejriwal sang 'Hum Honge Kamyab Ek Din' after he unfurled the National Flag at Chhatrasal Stadium during the Independence Day function in the National Capital.
Summary:
The children's mother said that she had stepped out of the house for 15 minutes and found the cub sleeping with the kids under a mosquito net after she returned.
Summary:
During a fundraising event in Utica, US President Donald Trump dared New York Governor Andrew Cuomo to run against him in 2020 presidential election.
Summary:
The White House has said that President Donald Trump is frustrated that Turkey has not released US pastor Andrew Brunson, who has been detained for nearly two years.
Summary:
Summary:
The halt, affecting online, mobile and console games, reportedly follows a restructuring of power among government departments.
Summary:
Journalist-turned-politician Ashutosh on Wednesday announced that he has resigned from the Aam Aadmi Party (AAP), citing a "very personal reason".
My association with AAP which was beautiful/revolutionary has also an end...Thanks to party/all of them who supported me throughout," the leader tweeted.
Summary:
All beneficiaries will be entitled to cashless medical cover during treatment at all empanelled hospitals across the country.
Summary:
Economic Affairs Secretary Subhash Chandra Garg has said that the rupee is "depreciating due to external factors", and there is "no need to panic".
Summary:
The first poster of the Kangana Ranaut starrer 'Manikarnika: The Queen of Jhansi' has been revealed on the occasion of India's 72nd Independence Day. Kangana will be seen portraying the titular role of Rani Lakshmi Bai in the film, which also stars Sonu Sood.
Summary:
Also starring Vijay Raaz, the film has been directed by Vishal Bhardwaj and is scheduled to release on September 28.
Summary:
America's 69-year-old racer Danny Thompson has claimed to set a land speed record using a car constructed by his father and late motorsports entrepreneur Mickey Thompson in 1968.
Summary:
A group of Tinder co-founders and executives have sued parent company Match Group and its controlling shareholder IAC, seeking at least $2 billion in damages.
Summary:
Kerala's Kochi Airport has suspended operations till 2 pm on Saturday reportedly after its runway and area surrounding the airport were flooded due to heavy rainfall.
Summary:
NASA's Opportunity rover, which has spent over 5,000 days on Mars, is still radio silent after a dust storm hit the red planet in May. The $400-million solar-powered rover had gone into hibernation over low power.
Summary:
PM Modi went into the crowd of children and shook hands with them.
Summary:
The postmaster said he didn't deliver the mails as he couldn't walk properly for years.
Summary:
Minister of State for Civil Aviation Jayant Sinha said that the government's goal is to position Air India as a great global airline.
Summary:
Summary:
During his speech at the Red Fort on the Independence Day, PM Narendra Modi announced that women recruited through Short Service Commission in the armed forces will be given status of permanent commission like their male counterparts.
Summary:
White House Press Secretary Sarah Sanders has said she is unable to guarantee that no recording exists of President Donald Trump using the N-word.
Summary:
This comes after both the countries agreed to hold a summit in North Korea in September.
Summary:
More than 400 people have been evacuated from buildings near or below the still-standing section of the Morandi bridge.
Summary:
Five-time Ballon d'Or winner Lionel Messi will not play for Argentina for the rest of 2018, according to reports.
Summary:
World number 18 tennis player Nick Kyrgios forgot to bring his shoes to his Cincinnati Masters match against Denis Kudla.
Summary:
Brazilian legend Ronaldo has been discharged from a hospital in Spain's Ibiza after spending four days receiving treatment for pneumonia.
Summary:
England all-rounder Ben Stokes was added to the squad for the third Test against India just 102 minutes after being found not guilty of affray in September 2017's nightclub brawl incident.
Summary:
Several users shared videos of themselves trying to copy Alli's move.
Summary:
On the occasion of India's 72nd Independence Day, former Indian cricketer Sachin Tendulkar tweeted that there would have been no Team India if "not for the sacrifice of our brave freedom fighters".
Just like our independence...Let us not take that freedom for granted.
Summary:
Microsoft is still offering a â¹2 crore bounty for the capture of Conficker malware creators, 11 years after the virus first started to infect devices.
Summary:
On predicting SpaceX's first manned mission date, President Gwynne Shotwell said, "I hope I am not proven to be a liar on this one." "Predicting launch dates could make a liar out of the best of us," she added.
Summary:
The researchers also found that ion transport in water was temperature dependent.
Summary:
Summary:
Also, avail â¹10,000 worth benefits on Notte & the whole Vespa and Aprilia range.
Summary:
It is the world's largest government-funded public healthcare scheme.
Summary:
Austria's capital Vienna has topped the Economist Intelligence Unit's Global Liveability Index for the first time, beating Australian city Melbourne, which had topped the list for the past seven years.
Summary:
He further said that India's voice is being heard effectively on the world stage now.
Summary:
The trailer of the Nawazuddin Siddiqui starrer 'Manto' has been released.
Summary:
'Gold' was rated 4/5 (Bollywood Hungama), 3.5/5 (HT) and 2/5 (NDTV).
Summary:
"India is proud of our scientists, who are excelling in their research and are at the forefront of innovation," he said.
Summary:
The launch sent NASA-made Nike-Apache rocket to space and led to the foundation of Indian Space Research Organisation (ISRO) by Vikram Sarabhai on August 15, 1969.
Summary:
Karnataka Chief Minister HD Kumaraswamy has visited over 35 temples since he became the chief minister in May, as per reports.
Summary:
Speaking from the ramparts of the Red Fort on the 72nd Independence Day, PM Narendra Modi said, "There was a time when citizens from the Northeast thought Delhi was too far away.
Summary:
He also said that it is due to the "honest taxpayer" that "so many people are fed, and the lives of the poor are transformed."
Summary:
Addressing the nation on the 72nd Independence Day, PM Narendra Modi said that by crackdown on black money and corruption, "We have saved â¹90,000 crore from falling into wrong hands." "The honest taxpayer of India has a major role in the progress of the nation.
Summary:
Talking about the success of the Swachh Bharat Mission during the 72nd Independence Day speech, PM Narendra Modi claimed, "WHO has said 3 lakh kids were saved due to the cleanliness drive in India." "Mahatma Gandhi led the Satyagrahis to freedom.
Summary:
An actor wearing a silicone mask modelled on US President Donald Trump punching a picture of German Chancellor Angela Merkel on a punchball has been unveiled at the Madame Tussauds museum in Berlin.
Summary:
Varun Dhawan and Anushka Sharma were both seen wearing handloom sarees to promote their upcoming film 'Sui Dhaaga- Made In India'.
Summary:
Facebook has won the rights to show Spanish top-flight soccer league in the Indian subcontinent.
Summary:
The account shared a picture of West's tweet and a list of rankings with every batsman having "=1" rank.
Summary:
Juventus forward Cristiano Ronaldo's bicycle kick goal for Real Madrid against Juventus in the UEFA Champions League quarter-final first leg last season has been nominated for the UEFA Goal of the Season award.
Summary:
The couple added they were grateful to Stokes, who "didnâÂÂt deserve being put through a trial".
Summary:
Former UFC champion Ronda Rousey beat up her opponent Alexa Bliss' three male security guards while facing them on the WWE Raw. The fourth security guard ran away after seeing Rousey beat up the other guards, who were shielding Bliss.
Summary:
A 23-year-old Nepalese labourer died while working on one of the venues for the 2022 FIFA World Cup in Qatar.
Summary:
Electric carmaker Tesla's board has formed a special committee to evaluate CEO Elon Musk's proposal to go private.
Summary:
The villagers reportedly said the temple has been built on disputed land.
Summary:
Thieves stole Red Bull cans worth nearly â¹8 crore from a depot in Belgium in what police described as a "very professional" heist.
Summary:
India's national carrier Air India on Tuesday disbursed the salaries to its employees for the month of July, after a delay of 15 days.
Summary:
India's trade deficit widened to a more than five-year high of $18.02 billion in July driven by a higher oil import bill.
Summary:
Addressing the nation on the 72nd Independence Day, PM Narendra Modi said, "By 2022 when India completes 75 years of Independence, or before that, a son or daughter of India will go to space with a Tricolor in their hands".
Summary:
The actress is reportedly planning a party for her close friends and family members.
Summary:
Actor Irrfan Khan has quit the series 'Gormint' created by All India Bakchod (AIB) due to his ill health.
Summary:
Tennis player Sania Mirza on Tuesday responded to a Twitter user, who gave her Independence Day greetings on August 14, which is Pakistan's I-Day. Sania, who is married to Pakistani cricketer Shoaib Malik, had tweeted wishes to Pakistanis on August 14.
Summary:
A businessman was arrested at Delhi's IGI Airport on Thursday after he screamed "bomb" at a boarding gate and threatened to crash a plane.
Summary:
Addressing the nation on the eve of Independence Day, President Ram Nath Kovind said every citizen who does his or her duty sincerely upholds principles of our freedom struggle.
Summary:
It also revealed that over 61,000 people were arrested on its trains this year and added that â¹1.5 crore was collected from them as fines.
Summary:
Australia has resumed the adoption of children from India after reportedly 8 years, the Women and Child Development (WCD) Ministry said.
Summary:
Speaking about the clash between his film 'Satyameva Jayate' and Akshay Kumar's film 'Gold', John Abraham said, "With Akshay and me, it will be very difficult to find a controversy because we genuinely like each other." "Fortunately, for both of us, we are not producers of the film.
Summary:
Manoj Bajpayee has said that his job as an actor is not to make people happy.
Manoj further said, "Filmmakers are not supposed to make you happy.
Summary:
Actress Aishwarya Rai Bachchan has revealed that she has walked away from a lot of projects due to pay disparity.
Summary:
Chahar and Kishan are seen trying to place a peanut in Gill's mouth, who is seen sleeping with his mouth open.
Summary:
Former Indian cricketer Sachin Tendulkar took to Twitter to wish a belated birthday to former Pakistan pacer and rival Shoaib Akhtar, with a tweet that read, "Belated birthday wishes to, @shoaib100mph.
Summary:
Elon Musk-led SpaceX has unveiled its Crew Dragon spacecraft and introduced four NASA astronauts for its first manned mission.
Summary:
Summary:
Bihar CM Nitish Kumar on Tuesday said that 'one nation, one poll' was a good idea but not feasible in the 2019 General Elections.
Summary:
Former BJP MLA Shamji Chauhan and former Rajkot mayor Ashok Dangar joined the Congress on Tuesday.
Summary:
When the family failed to pay up, they sodomised and killed the boy.
Summary:
West Bengal Chief Minister Mamata Banerjee claimed that around 66% of the Bengalis in Assam whose names do not figure in the final NRC draft are Hindus.
Summary:
Following this, his wife and fellow family members participated in a 'thiyya' (sit-in) agitation of the Maratha Kranti Morcha (MKM).
Summary:
Summary:
Three cops have been suspended after two pages containing over 40 phone numbers, including that of a Bihar minister, were recovered from the prison where Muzaffarpur shelter home rape case accused Brajesh Thakur is lodged.
Summary:
Masked youth set ablaze at least 80 cars in the Swedish city of Gothenburg and in the surrounding towns of Falkenberg and Trollhattan in a suspected coordinated attack.
Summary:
Iran on Monday unveiled the next-generation of its 'Fateh' short-range ballistic missile amid ongoing tensions with the US.
Summary:
Further, depending on the success of the open offer to acquire another 26% from public shareholders, IHH will hold a stake of up to 57.21%.
Summary:
Civil Aviation Minister Suresh Prabhu on Tuesday said that all airlines in the world and not just Indian carriers are suffering from rising fuel costs.
Summary:
Economic Affairs Secretary SC Garg has said that RBI's intervention, in the form of selling dollars, to stabilise the rupee may not help.
Summary:
Major Aditya Kumar and rifleman Aurangzeb (posthumously) will be awarded the Shaurya Chakra, the third highest peacetime gallantry award in India.
Summary:
The Central Board of Film Certification (CBFC) has had reference to political parties BJP and Congress muted in John Abraham starrer 'Satyameva Jayate', as per reports.
Summary:
The actor reportedly used to get paid â¹100 a day for doing these impressions in public.
Summary:
The Mumbai police have registered a case of outraging the modesty of a woman against singer Abhijeet Bhattacharya after he allegedly used derogatory remarks while speaking to her on the phone.
Summary:
To stop Google from doing so, users need to turn off the 'location history' option under the 'Web & App Activity' tab in their settings.
Summary:
A Delhi woman, who complained to Zomato on finding a roasted fly in her biryani on Monday, was told by a customer support executive that the concerned restaurant has been asked to add another fly to biryani as 'topping'.
Summary:
"The government has a leading role but not the sole role," he added.
Summary:
The SC had earlier stayed the Karnataka High Court order quashing government's 2014 regulation on the pictorial warning on 85% of the packaging.
Summary:
The Chinese state media has said that the country's crackdown on Muslims in the Xinjiang region has prevented it from becoming "China's Syria" or Libya.
Summary:
Before being made a floating currency, the Rupee was devalued four times.
Summary:
Following India's loss in the first two Tests against England, Indian spinner Harbhajan Singh has said Indian cricketer Hardik Pandya should not be called an all-rounder.
Pandya has scored 90 runs and picked three wickets in the Test series so far.
Summary:
Arun Karthik, a former Royal Challengers Bangalore player and Indian captain Virat Kohli's teammate, has claimed to have surpassed Kohli's score in the Yo-Yo Test, a test that is mandatory for selection into the Indian team.
Summary:
Former Indian team spinner Ramesh Powar, from Mumbai, has been named as the Indian women's cricket team coach from a list of six candidates that included Virat Kohli's childhood coach Raj Kumar Sharma.
Summary:
India's former World Cup-winning captain Kapil Dev has reportedly declined to attend Pakistan's former World Cup-winning captain Imran Khan's swearing-in ceremony as the nation's new Prime Minister on August 18.
Summary:
The cover of the 2019 edition of EA Sports' FIFA video game series features Juventus' newly-arrived Portuguese forward Cristiano Ronaldo and Paris Saint-Germain's Brazilian forward Neymar Jr. Ronaldo had featured on the cover of the 2018 edition of the video game in his former club, Real Madrid's colours.
Summary:
Coca-Cola is buying a minority stake in BodyArmor, a sports drink brand backed by American basketball star Kobe Bryant.
Summary:
Cricketer Yuvraj Singh gifted a signed bat to actor and friend Angad Bedi, who is playing the role of a cricketer in the upcoming film, 'The Zoya Factor'.
Summary:
Indian tennis player Sania Mirza wished Pakistani fans on their nation's 72nd Independence Day, with a tweet that read, "Happy Independence Day to my Pakistani fans and friends !!
Summary:
Luxembourg-based AI startup LuxAI has developed an expressive humanoid robot called 'QTrobot' to help reduce anxiety in autistic children.
Summary:
Parts of Delhi will get free WiFi and high-speed broadband as Union Home Minister Rajnath Singh launched a host of 'Smart City' projects on Monday.
Summary:
Reacting to Rajinikanth slamming Tamil Nadu CM EK Palaniswami for not attending DMK chief M Karunanidhi's funeral, AIADMK leader D Jayakumar said that the actor lacks political maturity.
âÂÂIt was a condolence meeting for a departed leader.
Summary:
Kerala Chief Minister Pinarayi Vijayan on Tuesday announced that the state government has decided to cancel this year's Onam celebrations amid floods in the state.
Summary:
Summary:
The Gujarat government plans to move an ordinance recommending punishment of seven to 10 years' imprisonment for chain-snatching.
Summary:
Two women have been sentenced to caning in Malaysia after they admitted to engaging in lesbian sex in violation of Sharia laws, officials said.
Summary:
Benchmark indices Sensex and Nifty gained on Tuesday, breaking a two-day losing streak after retail inflation slowed to a nine-month low in July.
Summary:
The Turkish lira has become more volatile than world's largest cryptocurrency Bitcoin amid the country's ongoing currency crisis.
Summary:
POCO F1, the first smartphone from Xiaomi's new sub-brand POCO, is launching in India on August 22nd.
A video wherein 7 individuals try to break into the POCO warehouse to steal F1 was released.
Summary:
As many as 11 people were killed after a motorway bridge collapsed in the Italian port city of Genoa on Tuesday, reports citing Italy's Interior Ministry said.
Summary:
This Independence Day, get freedom from worrying about your family's future.
Summary:
Stokes had missed the entire Ashes tour following the incident.
Summary:
Summary:
The UK police have arrested a man suspected of deliberately ploughing a car into pedestrians before ramming into barriers outside the Parliament on Tuesday and are treating the attack as a terrorist incident.
Summary:
Residents in the region have also opposed the construction of the Neelum Jhelum Hydropower Project which will further divert water away from the Neelum River.
Summary:
Jet Airways has not yet approached the SBI for any funds, the bank's Chairman Rajnish Kumar said on Tuesday.
Summary:
A new song 'Chogada' from Aayush Sharma and Warina Hussain starrer 'Loveratri' has been released.
Summary:
The role of 'Maharawal Ratan Singh' in 'Padmaavat', which was played by Shahid Kapoor, was first offered to actor Prabhas, as per reports.
Summary:
Our very conscious version." Kajal did the Kiki challenge with her co-actor Sai Sreenivas Bellamkonda who was sitting on a wheelchair at the sets of their film.
Summary:
Actor Vicky Kaushal has said that an actor's job gets reduced to half with a good director.
Let's see where the journey goes," he further said.
Summary:
Actress Shraddha Kapoor, while talking about the delay in Saina Nehwal's biopic, said, "It was tough and I wanted to take time for training." "If you're playing the role of a real-life hero, you need to make sure that you're convincing," she added.
Summary:
Taking a dig at Punjab minister Navjot Singh Sidhu over his proposed visit to Pakistan, BJP leader Subramanian Swamy said, "I don't think he is mentally stable." "The decision to attend Imran Khan's oath-taking ceremony may have an adverse impact on his political career.
Summary:
The bumper of a brand new Tesla Model 3 car fell off minutes after driving in the rain this week, according to its owner Rithesh Nair.
Summary:
In an attempt to implement data localisation, the government has asked Amazon to set up local data servers in India.
Summary:
Automaker Hero MotoCorp's Chairman Pawan Munjal along with Ola's parent company ANI Technologies has invested an undisclosed amount in Bengaluru-based scooter rental startup Vogo Rentals.
Summary:
A 22-year-old woman recently gave birth in a Police Control Room (PCR) van of the Delhi Police, the police have revealed.
Summary:
A 10-day pineapple festival showcasing different varieties of the fruit has been organised in Manipur's Thayong village.
Summary:
Chinese courts have started imposing 'cooling-off' period for couples seeking divorces to give them time to reconsider, the Chinese state media reported.
Summary:
The US has asked the UK to cooperate with it in imposing sanctions against Iran or face "serious" consequences.
Summary:
Chhattisgarh Governor Balram Das Tandon passed away at the age of 90 after suffering a cardiac arrest on Tuesday.
Summary:
Alia Bhatt, when asked why Katrina Kaif doesn't like her pictures on Instagram, said that she will send her a message to start liking her pictures if that's the barometer to measure friendship.
Summary:
American rapper Azealia Banks has claimed that Tesla CEO Elon Musk tweeted about considering taking his company private while he was high on acid.
Summary:
"It's a very special day for both Ranveer and Deepika which is why they just want the close ones to be present for their wedding ceremony," reports said.
Summary:
Former Indian cricketer Sachin Tendulkar hit his first century in international cricket on the same day as Australian great Don Bradman played his last Test innings, 42 years apart.
Summary:
Chief Election Commissioner OP Rawat on Tuesday said there are not enough VVPAT machines to conduct 11 state elections simultaneously with 2019 Lok Sabha polls.
Summary:
After rupee hit a record low of 70 against the US dollar for the first time in early trade on Tuesday, Economic Affairs Secretary SC Garg said, "Nothing to worry at this stage." "Rupee is depreciating due to external factors, which may ease as we go forward," he added.
Summary:
Summary:
Summary:
The Madras High Court on Tuesday ordered a CBI probe into the police firing during anti-Sterlite protests in Tuticorin on May 22, after hearing around 15 PILs demanding the CBI investigation.
Summary:
They were drinking alcohol when an argument ensued and the Frenchman was killed on the spot.
Summary:
The tourist, Eva Zubeck, danced inside the aircraft with Pakistan's national flag wrapped around her.
Summary:
The bird was finally retrieved by her owner after it flew onto another roof.
Summary:
The servers of Pune-based Cosmos Bank, the second-largest cooperative bank in India, were hacked on August 11 and August 13 and â¹94 crore were transferred to accounts in India and Hong Kong.
Summary:
Parzaan is best known for his dialogue in the film, "Tussi ja rahe ho?
Summary:
Anushka Sharma has said just because an actor hasn't applied makeup in a film, it doesn't mean there will be good acting.
"You don't do any better acting if you apply or don't apply makeup," she added.
Summary:
Summary:
Boney Kapoor has said that the way Arjun Kapoor and Anshula Kapoor accepted Janhvi Kapoor and Khushi Kapoor after Sridevi's death, has lessened his burden.
Summary:
Salman Khan's brother-in-law Aayush Sharma and his 'Loveratri' co-actress Warina Hussain were fined for riding without a helmet during their debut film's promotion in Vadodara.
Summary:
Jamaica's eight-time Olympic gold medalist Usain Bolt has demanded Australian football club Central Coast Mariners a black car to help him reach the club, which is situated almost 75 kilometres away from Sydney.
Summary:
English Premier League club Liverpool reported their forward Mohamed Salah to the police after discussions about a footage in which he is seen using his phone with both his hands while driving his car around children.
Summary:
US-based AI startup Observe.AI, which has a tech team in Bengaluru, has raised $8 million in Series A funding led by Nexus Venture Partners.
Summary:
Congress Spokesperson Randeep Surjewala has said, "The Modi government's Law Minister (Ravi Shankar Prasad) is a habitual offender in weaving lies based on figments of his imagination." Surjewala accused Prasad of misleading people by lying "to save his master, Narendra Modi".
Summary:
TVS Motor Company has invested â¹6 crore in Bengaluru-based electric bike startup Ultraviolette Automotive as part of the startup's extended Series A round of funding.
Summary:
PM Modi had asked citizens to give ideas for the speech on July 31, a practice he has followed in the last few years.
Summary:
Summary:
The rate of wholesale inflation fell in July due to easing prices of food articles, especially fruits and vegetables.
Summary:
The Indian rupee, which has become Asia's worst-performing currency this year, breached the 69 mark for the first time in June.
Summary:
Rajiv Kumar was shot during a suspected robbery attempt, after which he was taken to the Ruban Memorial Hospital in a critical condition.
Summary:
She had served as the CEO and Managing Director of PNB from 2015 to 2017, and was named in the CBI chargesheet.
Summary:
Responding to rumours of plans of marrying Ranbir Kapoor next year, actress Alia Bhatt said, "I don't react to rumours.
Summary:
Adding that NASA's responsibilities involve science, space exploration and technology development, Bridenstine said, "We want to be an agency that maintains its independence from those capabilities."
Summary:
It added that the group continues to seek security gaps for opportunistic attacks.
Summary:
US President Donald Trump, on learning that PM Narendra Modi has been estranged from his wife Jashodaben, had once jokingly said, "I think I can set him up with somebody," as per reports.
Summary:
A CCTV grab of a man, who is suspected to have opened fire at JNU student activist Umar Khalid on Monday, has surfaced online.
Summary:
The exam is conducted by NGOs and is not mandatory for prison inmates.
Summary:
In an interview released by Madame Tussauds, PM Narendra Modi had requested that Mahatma Gandhi's wax figure be the first statue at the Delhi museum and not his.
Summary:
His family rejected a proposal from a few CPI(M) leaders to drape his mortal remains in the party's flag.
Summary:
The Indian Army gunned down two Pakistani soldiers in a retaliation to unprovoked ceasefire violations and repeated attempts to facilitate infiltration by the Pakistani army in J&K's Tangdhar on Monday, the Defence Ministry said.
Summary:
A 14-year-old boy named Ethan Sonneborn is running for Governor in the US state of Vermont.
Summary:
The FBI has fired Peter Strzok, an agent who sent text messages criticising Donald Trump during his presidential campaign.
Summary:
Iran's Supreme Leader Ayatollah Ali Khamenei on Monday ruled out the possibility of any military confrontation with the US.
Summary:
Trump was also confused by Nepal and Bhutan's geographic locations between India and China, the report added.
Summary:
Several people were injured after a car collided with security barriers outside the UK Parliament building on Tuesday.
Summary:
Subway, Pizza Hut and KFC have been questioned by the National Anti-profiteering Authority (NAA) for allegedly not passing on GST rate cut benefits to the consumers on select items.
Summary:
Talking about being trolled for her acting debut in an advertisement, Mira Rajput said, "People can say what they feel...(internet) gives everyone the right to express themselves." She added there'll be opinions and not everyone is going to love her.
Summary:
Amitabh Bachchan will be doing a cameo in Kajol starrer 'Helicopter Eela'.
Summary:
Varun Dhawan has said that when he read the script of his upcoming film 'Sui Dhaaga', he couldn't leave the film even though he didn't have dates when he read it initially.
I had to do the film and become 'Mauji'," Varun further said.
Summary:
Arsenal and former Germany midfielder Mesut ÃÂzil hosted Bollywood actor Ranveer Singh in England.
The 33-year-old actor took to social media to share a picture of himself with ÃÂzil with the caption "An absolute pleasure meeting (Mesut ÃÂzil)...A thorough gentleman...full of warmth, humility & grace.
Summary:
Virat Kohli has urged fans to not give up on Team India after suffering his biggest Test defeat as captain.
The 29-year-old shared a picture of team in a huddle on Facebook, writing, "Sometimes we win and other times we learn.
Summary:
As many as four women footballers were hospitalised after a mass brawl broke out during a football match in Argentina.
Summary:
Ex-Australia cricketer Dean Jones has said that playing two ODIs in two days in the upcoming Asia Cup won't be a problem for India as the players are "athletes and unbelievably fit".
Summary:
Smith is currently serving a one-year ban from international and Australian domestic cricket.
Summary:
Constable Khan had immediately taken off his uniform and jumped in the canal after seeing the crowd shouting to rescue the man.
Summary:
In a fitting tribute to the 90s, the latest campaign by Uber Eats has us humming our favorite jingles and reliving the wonder years.
Summary:
Sachin is the third youngest player to score a Test ton.
Summary:
Legendary Australian batsman Donald Bradman had scored 6,996 Test runs at an average of 101.39 as he came out to bat for the last time on August 14, 1948.
Summary:
Talking about an event where she was in conversation with yogi Sadhguru Jaggi Vasudev, Kangana Ranaut said, "We didn't normalise lynching at any point." She added, "If a certain religion worships cows, you can't slaughter cows.
I can't be shamed for my choices.
Summary:
West Bengal CM Mamata Banerjee asked if hilsa fish, mishti doi, which have origins in Bangladesh, would be called infiltrators or refugees.
Summary:
Actor-turned-politician Rajinikanth has slammed Tamil Nadu CM EK Palaniswami for not attending DMK chief M Karunanidhi's funeral, stating he should have been present with his entire cabinet.
Summary:
Summary:
An engineer has filed an FIR accusing 43 of her colleagues of sexual harassment at an IT company in Noida.
Summary:
China has reportedly intruded 400 metres inside Ladakh along the Line of Actual Control (LAC) almost a year after the Doklam standoff.
Summary:
In its directions to the state government, the court ordered setting up a cow shelter for every cluster of 25 villages and registering cases against those who abandon their cattle.
Summary:
The Centre on Monday said, "Reports about any Chinese currency printing corporation getting any orders for printing Indian currency notes are totally baseless." "Indian currency notes are being and will be printed only in Indian government and RBI currency presses," it added.
Summary:
Slamming former aide Omarosa Manigault Newman for airing alleged secret audio recordings from the White House, President Donald Trump has said, "Wacky Omarosa...begged me for a job." "She was vicious, but not smart," Trump further said.
Summary:
A video of Pakistan's Prime Minister-in-waiting Imran Khan borrowing the waistcoat of a photographer for his National Assembly card picture has gone viral.
Summary:
Duane Youd's wife and a child were inside the house at the time of the crash, but were able to escape, police officials said.
Summary:
Parineeti and Arjun, who worked together for the first time in Arjun's debut film 'Ishaqzaade' which released in the year 2012, will be reuniting after six years with 'Namaste England'.
Summary:
Former captain Sunil Gavaskar slammed Team India for having a day off in London after losing the Lord's Test, saying "they are in love with London".
Summary:
Belarus' Volha Mazuronak overcame nosebleeds and a late navigational error to win the women's 42-km marathon at the European Championships.
Summary:
Indian spinner Harbhajan Singh has said that Team India head coach Ravi Shastri should be held accountable for going 0-2 down in the five-match Test series against England.
Summary:
At least 12 fans of Ecuadorean football team Barcelona SC were killed and another 30 injured when a bus carrying them overturned on a highway.
Summary:
England Under-20 women's football team forward Lauren Hemp inadvertently scored a goal with her backside during a match against Mexico in the FIFA Under-20 World Cup. The 18-year-old was tripped by Mexico's goalkeeper and she fell on the ball, which popped into the net.
Summary:
It broke the previous record of 14 days, marked by a prototype Zephyr aircraft.
Summary:
Google parent Alphabet-owned AI firm DeepMind has developed a system that can spot over 50 eye diseases as accurately as a doctor.
Summary:
Google has announced the '2018 Doodle 4 Google' contest in India, inviting students to make a doodle for the company's logo.
Summary:
An editorial in Shiv Sena's mouthpiece 'Saamana' took a dig at PM Modi's recent interviews and stated, "Journalists would soon lose...jobs in case he continued...giving interviews through e-mails." It added that PM Modi would then be responsible for providing them employment.
Summary:
Shiv Sena chief Uddhav Thackeray has slammed the NDA government, saying earlier the media kept a watch on the government but now the government is keeping a watch on the media.
Summary:
Amazon simultaneously invested about â¹100 crore ($14 million) into the business, Amazon Retail India.
Summary:
Jodhpur was followed by stations Jaipur and Tirupati in cleanliness in the A1 Category of railway stations.
Summary:
The Supreme Court on Monday accepted a proposal seeking to issue hologram-based coloured stickers for vehicles in Delhi based on the fuel used.
Summary:
However, there is no information on how Gajanand ended up in Pakistan when his village was 800 km from the border.
Summary:
Tesla CEO Elon Musk today defended his 'considering to take Tesla private' tweet saying, "I felt it was the right and fair thing to do so all investors had the same information at same time." He added 'funding secured' claim was backed by his conversations with Saudi sovereign fund.
Summary:
Taking to Twitter on the International Lefthanders Day, former Indian cricketer Sachin Tendulkar said, "I may be left-handed...but I'm always right".
Summary:
Former Indian captain Kapil Dev will help Ranveer Singh prepare for his role in the upcoming film on India's 1983 Cricket World Cup victory titled '83, in which the actor portrays the former cricketer.
Summary:
Actor Varun Dhawan while reacting to Drake's comment on Athiya Shetty's picture with her father Suniel Shetty, wrote, "Athiya who knew you were Kiki?" Varun's mention of 'Kiki' was a reference to Drake's song 'In My Feelings', which had led to the viral Kiki Challenge.
Summary:
Wells will help the company find a successor and will continue at the position until the new CFO takes over.
Summary:
"There are gaming providers which prevent users from playing for one to two hours," Chye added.
Summary:
Late DMK chief M Karunanidhi's son MK Alagiri has claimed that his brother, MK Stalin, is DMK Working President, but he is not working.
Summary:
Speaking about Karnataka farm loan waivers, Congress President Rahul Gandhi said, "I challenge PM Modi...why does he not give 50% of the money required to waive loans." He alleged that PM Modi can't spend a single rupee for Karnataka farmers.
Summary:
The body of former Lok Sabha speaker Somnath Chatterjee, who passed away aged 89 on Monday, will be donated to the SSKM Hospital in Kolkata for medical research.
Summary:
A tweet by a parody account announcing that Congress MP Shashi Tharoor was going to marry Pakistani author Mehr Tarar has gone viral, receiving 1,200 re-tweets and 1,800 likes.
Summary:
The state-owned China Banknote Printing and Minting Corporation (CBPMC) has won contracts to print currencies of countries like India, Thailand, Bangladesh, Sri Lanka, Malaysia, CBMPC President Liu Guisheng has said.
Summary:
Smaller increases in food prices helped the retail inflation rate to ease.
Summary:
As many as 125 MPs have signed a petition submitted by four BJP MPs to President Ram Nath Kovind demanding a two-child law in the country to control increasing population.
Summary:
The painting's owner Lyn said she "didn't have any doubt" about its authenticity when she bought it in 2006.
Summary:
The death toll from the earthquake in Indonesia's Lombok island has crossed 430 and the damage caused to homes, infrastructure and other property is at least $340 million.
Summary:
Pakistan Prime Ministerial candidates of PML-N and PPP parties, Shehbaz Sharif and Bilawal Bhutto-Zardari, will lose their security deposit after failing to get the minimum 25% vote share.
Summary:
WWE wrestler-turned-actor John Cena recently shared pictures of comedian Kapil Sharma and singer Daler Mehndi on his Instagram account, without any captions.
Summary:
SpaceX rival Arianespace is planning to launch three more heavy Indian satellites over the next 9 months, a space official said on Sunday.
Summary:
Last year, similar reports emerged claiming Google was collecting users' location data using cellphone towers.
Summary:
The Caesars Palace hotel in the US, which hosted the annual hacking conference Defcon this week, asked Google engineer Matt Linton to leave after he tweeted about hacking.
Summary:
It comes weeks after WeWork's China unit said it was raising $500 million to boost growth in the country.
Summary:
Kishore Biyani-led Future Retail may raise funding from a foreign investor in the next 2-3 months, the company's boss has confirmed.
Summary:
BJP President Amit Shah wrote a letter to the Law Commission regarding simultaneous elections in the country.
Summary:
"The elephant was tired...we (thought) the gushing water should be controlled to save it," said a forest official.nn
Summary:
Delhi CM Arvind Kejriwal and Deputy CM Manish Sisodia have been named as accused in the chargesheet filed by police in the case of assault on Delhi Chief Secretary Anshu Prakash.
Summary:
Rejecting an offer last month by US President Donald Trump for talks without preconditions with Iran, Supreme Leader Ayatollah Ali Khamenei has banned holding any direct talks with the US.
Summary:
Jewellery chain Tribhovandas Bhimji Zaveri's Chairman and Managing Director Shrikant Zaveri may receive a basic annual salary of â¹7.26 crore from January 1, 2019.
Summary:
Directed by Sharat Katariya, the film is scheduled to release on September 28.
Summary:
Actress Ruby Rose quit Twitter after she was slammed for being cast as the first openly lesbian superhero Batwoman in a TV series.
Summary:
Clarification has been made by whoever had to make it.
Summary:
India captain Virat Kohli has slipped to the second position in rankings for Test batsmen after aggregating 40 runs in the Lord's Test.
Summary:
The system also watermarks papers for easy tracking if they get leaked after being downloaded by examiners.
Summary:
Samajwadi Party chief Akhilesh Yadav has said that the BJP has the capability to even confuse Google.
Summary:
After addressing a rally in Rajasthan's Jaipur, Congress President Rahul Gandhi was seen winking at state party chief Sachin Pilot while on stage.
Summary:
Slamming the Centre's announcement of â¹100 crore as flood relief for Kerala, state's Finance Minister Thomas Isaac said that an amount larger than â¹100 crore must be provided to deal with the crisis.
Summary:
A 40-year-old man has been arrested in Delhi for allegedly burning a copy of the Constitution during a protest against amendments to the Scheduled Castes/Schedule Tribes act.
Summary:
Maharashtra's Pune has topped the Ease of Living Index rankings released by the Ministry of Housing and Urban Affairs on Monday.
Summary:
Speaking minutes after escaping unhurt on being shot at by an unknown assailant, JNU activist Umar Khalid on Monday said he was reminded of what happened to veteran journalist Gauri Lankesh.
Summary:
The Indian Army's Engineer Task Force has constructed a 40-foot-long temporary foot overbridge with fallen trees and local resources in flood-hit Kerala's Wandoor.
Summary:
Former Lok Sabha Speaker Somnath Chatterjee will be given the highest state honour in the West Bengal Assembly where his mortal remains will be kept for a few hours, CM Mamata Banerjee has announced.
Summary:
Trump has repeatedly designated the press as "the enemy of the people".
Summary:
Nearly 10,000 people got cancer by inhaling toxic particles following the 9/11 attack on Twin Towers in New York City, according to a report quoting World Trade Centre Health Program.
Summary:
The title song from Arjun Rampal, Jackie Shroff and Sonu Sood starrer 'Paltan' has been released.
Summary:
I now want to start portraying characters who care about people," he further said.
Summary:
A mosquito net laced with drugs and insect growth inhibitors has been designed to help prevent malaria, according to a study.
Summary:
The data exposed included configuration files for hostnames, operating systems, workloads, AWS regions, memory, CPU specifications, and more.
Summary:
Telangana BJP MLA T Raja Singh on Sunday said he has offered his resignation to the party so that he can work towards cow protection without getting the party into any trouble.
Summary:
Legg will build the senior leadership team and drive operations to establish overall presence in the UK by the end of 2018, Ola said in a statement.
Summary:
At least 12 Pakistani Hindus have been arrested in Rajasthan for flouting visa rules and staying illegally in India.
Summary:
The Amarnath Yatra from Jammu has been suspended for three days from Monday onwards to ensure safety of pilgrims ahead of Independence Day. No pilgrim was allowed on Monday to proceed towards the Kashmir Valley from Jammu.
Summary:
China on Monday rejected allegations by a UN panel that the country is detaining 1 million Uighurs in secret camps in the Xinjiang autonomous region.
Summary:
Uber Eats, the world's largest food delivery network, paid an evocative, nostalgic tribute to memorable Indian advertisements of the 90s.
Summary:
An unidentified man opened fire at JNU student activist Umar Khalid outside Constitution Club of India in New Delhi, where he had gone to attend an event.
"A man in white shirt came, pushed and opened fire at him.
Summary:
Ten-time MP Somnath Chatterjee was expelled from the CPI(M) in 2008 after he refused to resign as Lok Sabha Speaker and vote against the UPA government in a no-confidence motion.
Summary:
Ranbir Kapoor has said he does not agree with producer Vidhu Vinod Chopra, who earlier said the actor's choice of scripts had been stupid.
He further said, "You always feel attached to them."
Summary:
Salpeter realised her error when officials indicated the start of the final lap.
Summary:
An 11-year-old girl, Audrey Jones, successfully hacked a replica of the Florida secretary of state's website within 10 minutes to change election results at a hackathon.
Summary:
The arm worked with startups including Bellatrix Aerospace, Aniara Communications and Exseed Space.
Summary:
A 24-year-old executive working with a multinational company in Gurugram on Sunday died after his Suzuki Hayabusa hit a truck-trailer on Kundli-Manesar-Palwal Expressway.
He was riding at a speed of at least 200 kmph, police said.
Summary:
Two church priests Father Sony Varghese and Father Jaise K George accused of sexually abusing and blackmailing a 34-year-old married woman for years, surrendered before a local court in Kerala.
Summary:
Supreme Court has ordered the Meerut Police to provide protection to Hapur lynching survivor and submit a report on the incident.
Summary:
A killer whale has stopped carrying her dead newborn calf after at least 17 days, during which she covered over 1,600 km, according to researchers.
Summary:
Manoj has won the Best Actor award for the film at the Indian Film Festival of Melbourne 2018.
Dipesh Jain's directorial debut film has also won a Special Jury Mention at the festival.
Summary:
Remembering late actress Sridevi on her first birth anniversary on Monday, Anil Kapoor shared her family picture and tweeted, "We see your reflection in Janhvi Kapoor and Khushi Kapoor everyday.
Summary:
Malayalam actor Dulquer Salmaan, who made his Bollywood debut with Irrfan Khan starrer 'Karwaan', has said that his primary focus will be Malayalam films.
Summary:
"I approach each of them differently.
He further said that the approach needs to be changed depending on the kind of film it is.
Summary:
Meghan Markle's father Thomas Markle has said he has not spoken to his daughter since her wedding to Britain's Prince Harry and fears she will not contact him again, according to a report.
Summary:
Talking about the advice given to her by her late mother Sridevi, Janhvi Kapoor said, "She'd tell me, 'It's never about the kind of role you get, you need to create magic with whatever is given'." Janhvi added she hopes to get to that stage one day.
Summary:
Salman Khan shared his picture on Instagram captioning it, "Swachh Bharat toh hum fit...hum fit toh India fit...you can do whatever you want to do man...don't trouble your motherland." Salman had recently posted a video of him working out as part of Union Minister Rajyavardhan Rathore's fitness challenge nearly three months after being challenged by Union Minister Kiren Rijiju.
Summary:
Stuart was on a hat-trick in the 31st over of India's second innings when the TV visuals showed 'Chris Broad on a hat-trick'.
Summary:
Virat Kohli admitted that the team management got the combination wrong for the Lord's Test, which India lost by an innings and 159 runs.
"First time in the last five Tests that we've been outplayed.
Summary:
Manchester City won the league last season with record 100 points, while Arsenal finished sixth.
Summary:
DC United had their net empty when Orlando's Will Johnson headed towards the goal, with match tied at 2-2.
Summary:
Late DMK chief M Karunanidhi's elder son MK Alagiri said, "My father's true relatives are all on my side.
Summary:
Following the demise of former Lok Sabha Speaker Somnath Chatterjee on Monday, Congress President Rahul Gandhi tweeted, "He was an institution.
Summary:
Bengaluru and US-based drug research startup Bugworks Research has raised $9 million in Series A funding led by University of Tokyo Edge Capital (UTEC).
Summary:
Paytm's parent company, One97 Communications, and Alibaba Group-owned gaming company AGTech have invested $16 million into mobile gaming startup Gamepind.
Summary:
Meanwhile, all schools in Shimla district remained closed on Monday.
Summary:
Former Lok Sabha Speaker Somnath Chatterjee passed away aged 89 in Kolkata on Monday.
Summary:
Akhtar, who picked up 444 international wickets for Pakistan in 224 matches, had revealed in an interview that he also used to bowl with rocks and other kids used to think that he was mad.
Summary:
Sridevi was known for her roles in films like 'Chandni', 'Sadma' and 'English Vinglish' among others.
Summary:
The Muslim festival of Bakrid, also known as Id-Ul-Zuha, will be celebrated in India on August 23, the Jama Masjid in New Delhi has announced on Sunday.
Summary:
The students had met Telangana Home Minister N Narasimha Reddy two weeks ago complaining that Sanjay demanded sexual favours.
Summary:
Yoga guru Baba Ramdev on Sunday said, "Who can be a bigger rashtra bhakt and gau bhakt than PM Narendra Modi?" and urged him to enact a law to ban cow slaughter in the country.
Summary:
PM Narendra Modi on Monday took to Twitter to condole the demise of former Lok Sabha Speaker and ten-time MP Somnath Chatterjee and called him a "stalwart of Indian politics".
Summary:
Former White House aide Omarosa Manigault Newman recorded Chief of Staff John Kelly as he fired her.
Summary:
Michael Avenatti, the lawyer for pornstar Stormy Daniels, has said that he is "seriously considering" running for US presidency in 2020, adding that the Democratic Party needs to put up a "fighter" against President Donald Trump.
Summary:
A video of a Filipino couple exchanging vows in a flooded church has gone viral.
Southwest monsoon has caused heavy rains that resulted in flooding across the Philippines.
Summary:
The rupee hit an all-time low of 69.62 against the US dollar in the early trade on Monday amid the ongoing financial crisis in Turkey and weakness in other emerging market currencies.
Summary:
'Kkusum' actress Nausheen Ali Sardar, who recently got trolled for her picture, said, "If someone expects me to look the same as I did 15 years ago, then something is wrong with that someone." "Don't people...use photo technologies and filters to look different and beautiful in photos?
Summary:
Sharmila Tagore, in an article on Alia Bhatt, wrote, "Alia has gone ÃÂbeyond the crutches of her lineage.
Summary:
Actress Aishwarya Rai Bachchan, while talking about cosmetic surgery, has said that people should make informed choices.
Aishwarya further said, "Twenty years ago, if you had asked me would I ever colour my hair...
Summary:
Mouni Roy has said Salman Khan has played no role in helping her get her Bollywood debut film 'Gold'.
"[Now] it'll look like I'm using Salman sir's name for publicity," Mouni said.
Summary:
Emraan Hashmi, while talking about nepotism and son Ayaan Hashmi, said, "If Ayaan decides to become an actor, he'll definitely have an easier access coming from a film family." "You can hold your child's hand, take him to a point, but the journey is his," he added.
Summary:
Cristiano Ronaldo scored his first goal for Juventus just eight minutes into his debut for the side against Juventus' B team in an annual traditional pre-season friendly on Sunday.
Summary:
Lionel Messi has become the most decorated player in Barcelona's history, winning his 33rd trophy for the club as defending La Liga champions beat Sevilla 2-1 to win their 13th Spanish Super Cup on Sunday.
Summary:
Former Real Madrid and Brazil striker Ronaldo was admitted to hospital on Friday suffering with pneumonia while on a holiday in Ibiza.
Summary:
England woman cricketer Danielle Wyatt took to Instagram to share a video of India Under-19 player Arjun Tendulkar walking on the Lord's ground during a rain interruption in the second England-India Test.
Summary:
Egyptian forward Mohamed Salah, who was Premier League 2017-18's top-scorer with 32 goals, opened the scoring for Liverpool in their opening match of the 2018-19 season against West Ham on Sunday.
Summary:
MIT researchers have incorporated electronics into soft fabrics, making it possible to produce clothing that can communicate with other devices using light pulses.
Summary:
McAfee researchers announced at a hacker event this week that they were able to hack into a medical network and change a patient's vital signs in real time.
Summary:
After PM Narendra Modi called Opposition's attempts at coalition "political adventurism" bound to failure, Congress leader Randeep Surjewala described his remarks as "Mungerilal Ke Haseen Sapne".
Summary:
The leaders of the two countries had first met in April and agreed to sign a peace treaty to end the 65-year-long Korean War.
Summary:
Indian shuttler Ajay Jayaram finished as runner-up in the men's singles event at the â¹52-lakh Vietnam Open.
Started badly, never found any rhythm," Jayaram wrote on Instagram after the match.
Summary:
India lost to England by an innings and 159 runs in the second Test on Sunday, suffering their first-ever innings defeat in their 37th Test under Virat Kohli's captaincy.
Summary:
Actress Sridevi Kapoor named her daughters Janhvi and Khushi reportedly after characters of films produced by her husband Boney Kapoor.
Summary:
The email also urged employees to spend enough time at home and maintain a healthy "work-life harmony."
Summary:
Summary:
She had said that her salary was â¹5,000, while Rajinikanth, who was a newcomer then, was paid â¹2000.
Summary:
Summary:
Sadhguru Jaggi Vasudev recently took yoga guru Baba Ramdev for a ride on a Ducati Scrambler bike through the foothills of Velliangiri near Coimbatore in Tamil Nadu.
Summary:
The 30-year-old, who will earn around ã12,500 (â¹11 lakh) match fee, became the first England player in 13 years to complete a Test without contributing.
Summary:
There will be no penalty on applicants whose claims and objections related to Assam's National Register of Citizens (NRC) updating exercise are rejected, according to a report.
Summary:
After the large-scale failure of paper trail machines in recent bypolls and assembly elections, the Election Commission has added a hood over a sensor and changed the paper used to prevent such failures.
Summary:
External Affairs Minister Sushma Swaraj has said that all passports damaged due to floods in Kerala will be replaced for free.
Summary:
"As our jawans have to live away from families for long...we've decided to make their birthday special," it added.
Summary:
National Investigation Agency (NIA) on Sunday arrested two people in Hyderabad, including a teenager, for their alleged links with the ISIS and conspiring to carry out terror attacks on their instructions.
Summary:
The Indian Army is expected to save â¹300 crore annually by stopping imports and manufacturing specialised equipment and clothes for soldiers deployed at Siachen, the world's highest battlefield.
Summary:
Around 2,500 lamps will illuminate Delhi's Red Fort from 7.30 pm till 11 pm ahead of Independence Day. It is the first ever illumination of the monument's front fortification wall and its two important gateways-Lahori Gate and Delhi Gate, a statement by Ministry of Culture stated.
Summary:
Union Minister of Railways Piyush Goyal on Sunday announced a 50% reservation for women in the upcoming recruitment of up to 10,000 Railway Police Force jawans.
Summary:
Pointing out that India currently has 45 satellites in space, Indian Space Research Organisation (ISRO) Chairman K Sivan has said that India needs 45 more due to "national demand".
Summary:
The Pakistan Election Commission has allotted 33 more reserved seats- 28 for women, 5 for non-Muslims, to the Imran Khan-led Pakistan Tehreek-e-Insaf (PTI) party, bringing its total National Assembly seats to 158.
Summary:
Thirty-year-old Enrique Doleschy from Germany beat six other finalists to be crowned Mr Gay Europe 2018 in Poland's Poznan amid protests in the mostly-Catholic country.
Summary:
In 2003, Akhtar went on to bowl the fastest delivery in recorded history, clocking 161.3kmph.
Summary:
PVR will acquire a 71.69% stake in cash for â¹633 crore and the remaining stake in stock valued at â¹212 crore.
Summary:
Google India's Vice President (VP) Rajan Anandan has said, "Indian companies have proved that they can compete with the best in the world".
Summary:
"In the last lap of his term, PM Modi wants people to buy his massive failures as 'Acche Din'," added Khera.
Summary:
"National President (Amit Shah) said we will grant citizenship to those who came here as refugees," said Pandey while adding that infiltrators will be thrown out.
Summary:
The lander of India's second lunar exploration mission 'Chandrayaan-2', scheduled for next year, will be named 'Vikram' in honour of ISRO Founder Vikram Sarabhai.
Summary:
Justice Vijaya Kamlesh Tahilramani on Sunday was sworn in as the Chief Justice of the Madras High Court, making her the third woman appointed to the position.
Summary:
Delhi Police has announced traffic restrictions on Monday due to full dress rehearsals of Independence Day. Six roads will be closed for general traffic from 5 am to 9 am and only labelled vehicles will be permitted.
Summary:
Indian-American astrophysicist Subrahmanyan Chandrasekhar's intervention helped a research paper on 'solar winds' get published 60 years ago, the basis of NASA's first mission to 'touch' the Sun. The 1958 paper by Eugene Newman Parker was backed by Chandrasekhar when scientific community refused to believe it.
Summary:
The police interrogated staff at the shelter after they found out about the deaths of a 40-year-old and an 18-year-old.
Summary:
Salman Khan, in the first promotional video for 'Bigg Boss 12', has said, "Iss baar badal jayegi game ki ABCD, jab ayengi vichitra jodis (unique pairs)." The video shows interacting with different pairs of people which include a mother-in-law and daughter-in-law pair and twins among others.
Summary:
Filmmaker Karan Johar has tweeted that one cannot promote extramarital affairs as it is already a big hit.
Summary:
The Opposition parties' attempt to form a 'Mahagathbandhan' against the BJP-led NDA government for the 2019 general elections is "political adventurism" that's bound to fail, PM Narendra Modi has said.
Summary:
AAP leader Sanjay Singh has said that the party plans to contest around 80 to 100 seats in 2019 Lok Sabha elections so that they're in a better position to influence results.
Summary:
It will need to cancel sideways motion of the Earth, which orbits the Sun at over one lakh kmph.
Summary:
Talking about the over 40-year Indo-China border dispute, PM Narendra Modi has said the fact that they have not even 'fired a single bullet at each other' shows their maturity.
Summary:
"The privacy issue is about the application, if you're using the Aadhaar for your taxes and benefits, who has access to that information," Gates said.
Summary:
More than 100 people have been killed and over 130 others have been injured in Afghanistan's Ghazni since August 10 when hundreds of Taliban militants launched an attack on the city, reports said.
Summary:
DLF Group's CFO Saurabh Chawla has said that as a part of its new business model, the realty major will offer apartments for sale only when they get occupancy certificate after completing the project.
Summary:
Summary:
Kamal Haasan has donated â¹25 lakh for flood relief in Kerala, as per reports.
Tamil actor Suriya Sivakumar and his brother Karthi also announced a donation of â¹25 lakh.
Summary:
Summary:
Dharmendra revealed after he refused to do the film, Mehra approached Dilip Kumar, Raaj Kumar and Dev Anand before finalising Amitabh.
Summary:
Anderson is only the second bowler after ex-Sri Lankan spinner Muttiah Muralitharan to take 100 wickets at a single venue.
Summary:
CCI also said the deal is "not likely" to have an adverse effect on competition.
Summary:
It would take the startup's market capitalisation to $40-50 billion, according to documents obtained by CoinDesk.
Summary:
Saudi Arabia's Public Investment Fund (PIF) has reportedly shown no interest in financing Elon Musk's proposed deal to take Tesla private, despite acquiring a minority stake in the startup this year.
Summary:
The Perseid meteor shower will peak on the night between August 12 and August 13 and will be visible over India in areas away from city lights.
Summary:
A family in Kerala's Kanjikuzhy village was recently saved from a landslide after their alert pet dog raised an alarm.
Summary:
Central Industrial Security Force (CISF) has arrested a Brazilian national at the Mumbai airport for allegedly smuggling cocaine worth approximately â¹2.5 crore.
Summary:
Over 5,600 posts of faculty members are lying vacant in central universities across the country, out of which more than 2,800 are in Indian Institutes of Technology (IITs), the Human Resource Development Ministry revealed on Sunday.
Summary:
Home Minister Rajnath Singh on Sunday undertook an aerial survey of flood-affected areas in Kerala.
Summary:
The Home Affairs Ministry has warned states and union territories against directly dealing with "countries of concern", directing that such communication be routed through it in the interest of national security.
Summary:
The US state of Tennessee has executed Billy Ray Irick, an inmate convicted of the 1985 rape and murder of seven-year-old Paula Dyer, by injecting a drug that inflicts "torturous pain".
Summary:
A US police officer has been suspended after a video emerged of him warning suspected trespassers not to do anything "stupid" as he is "trigger-happy" and will be paid "ton of money in overtime" to shoot them.
Summary:
Launched on Sunday, NASA's Parker Solar Probe is set to enter the Sun's atmosphere.
Summary:
Tamil actor Vikram's son Dhruv was arrested after his car allegedly hit three parked auto-rickshaws in Chennai, which reportedly led to three people getting injured.
Summary:
Actor Amitabh Bachchan, while sharing old pictures of his family on his mother Teji Bachchan's birth anniversary on Sunday, wrote in his blog post, "She introduced me to theatre, films and music...and to ballroom dancing." He added, "I have just her memories with me...
Summary:
Summary:
Speaking about updating National Register of Citizens (NRC), ex-Assam CM Tarun Gogoi has claimed that the idea was his "baby", conceived during his term in office.
Summary:
India has won eight gold medals in hockey in the history of Olympics, which is the highest among all nations.
Summary:
The video shows him asking why the BJP government is not buying mobiles for the scheme from state-owned BHEL.
Summary:
Born on August 12, 1919, Vikram Sarabhai founded ISRO in 1969 while spearheading the launch of IndiaâÂÂs first satellite 'Aryabhata'.
Summary:
Billionaire Anil Ambani-led Reliance Group on Sunday denied allegations of the government being favourable to Reliance Defence for Rafale deal and said the Defence Ministry had no role in it.
Summary:
The UIDAI is planning to sensitise people on the dos and don'ts of sharing their Aadhaar number and caution users against putting it on digital platforms like Twitter and Facebook.
Summary:
A class 10 boy in Madhya Pradesh distributed â¹46 lakh of his father's money among his friends in school, on the occasion of Friendship Day. He reportedly gave â¹15 lakh to a daily wage earner's son and â¹3 lakh to a friend who finished his homework.
Summary:
State Disaster Management Authority has issued a red alert for eight districts based on rainfall predictions from weather department.
Summary:
US President Donald Trump has branded former FBI Director James Comey and former FBI Deputy Director Andrew McCabe as "clowns and losers" for ruining the once "stellar reputation" of the FBI.
Summary:
M&S in May announced that it plans to close 100 stores by 2022.
Summary:
Summary:
Five-time Ballon d'Or winner Cristiano Ronaldo, who recently joined Juventus after spending nine seasons at Real Madrid, said he wanted to play for the defending Italian first division champions since he was a child.
I'm happy," Ronaldo said.
Summary:
An Everton fan dislocated his elbow while celebrating debutant 21-year-old Richarlison's second goal in the Premier League match against Wolverhampton Wanderers on Saturday.
Summary:
Arjun Tendulkar was spotted taking a nap on the ground just behind the advertising boards outside the boundary rope during England-India Test at Lord's Cricket Ground.
Summary:
Blue light emitted from smartphone screens and laptops can speed up blindness, according to a study by University of Toledo researchers.
Summary:
The robot uses a single elastic material which is capable of body-shaping, motion, and having color.
Summary:
Julian Assange-founded WikiLeaks has been served with a lawsuit over Twitter by the Democratic National Committee (DNC).
Summary:
Congress leader TS Singh Deo has said there will be a swayamvar for the chief ministerial post in Chhattisgarh after the party wins the Assembly elections.
Summary:
Speaking about recent incidents of mob lynching, Minister of State for External Affairs VK Singh has said that mob lynching is happening everywhere in the country, not only in western Uttar Pradesh.
Summary:
Also, the startup had $1.9 billion in cash on hand as of June 30 and has already raised about $5 billion from SoftBank so far, according to WeWork's financial results.
Summary:
This is reportedly the sixth encounter with militants in August during which six security personnel have been martyred and 16 militants killed.
Summary:
Gul Zafar Khan, a Pakistan Tehreek-e-Insaf ticket holder who was widely reported to be a 'chaiwala' and claimed victory from NA-41 (Bajaur) in the recent elections, has turned out be a millionaire.
Summary:
The aircraft had been travelling from Tanah Merah to Oksibil in the province of Papua.
Summary:
NASA on Sunday successfully launched its Parker Solar Probe, aimed to enter the Sun's corona (outer atmosphere), where no spacecraft has gone before.
Summary:
Talking about Sonali Bendre who is getting treated for cancer in New York, Anupam Kher tweeted, "I got the opportunity to spend some quality time with her in NY...
Summary:
Union minister Jitendra Singh on Saturday said the Congress brought Bangladeshis and Rohingyas to India with the "dubious motive to change the vote demography".
Summary:
US First Lady Melania Trump and President Donald Trump met Apple CEO Tim Cook on Friday after which she tweeted, "Proud of the job he is doing at Apple...big innovations and investments in the USA, which positively impacts our economy!".
Summary:
Lokman Tsui, former Google Asia-Pacific head of free expression has said that Google's reported plan of a censored search engine for China is a "bad idea" and "stupid move".
Summary:
Launched on Sunday, the Parker Solar Probe is the first NASA mission to be named after a living individual, Dr Eugene Parker.
Summary:
Condoling the demise of Nobel Prize-winning writer VS Naipaul, PM Narendra Modi on Sunday described it as a "major loss" to the world of literature.
Summary:
The veteran politician, who was expelled from CPI(M) in 2008, had served as the Lok Sabha Speaker from 2004 to 2009.
Summary:
Uttarakhand CM Trivendra Singh Rawat on Saturday said the government will not allow slaughterhouses in the state and all the licences issued by the previous regimes will be cancelled.
Summary:
Assam CM Sarbananda Sonowal referred to Union IT Minister Ravi Shankar Prasad as 'Pandit Ravi Shankar' at an event.
Summary:
Janardan Singh, a 34-year-old man, ended up catching two thieves, who robbed him at an ATM in Delhi, within five minutes as they got stuck in a traffic jam while escaping on a bike.
Summary:
An Independence Day event, 'We Stand With India', has been planned in the UK to counter a pro-Khalistan rally scheduled to be held in London.
Summary:
During a raid at Bihar's Muzaffarpur jail, police recovered two handwritten pages from shelter home case accused Brajesh Thakur that listed 40 phone numbers, including one purportedly of a minister.
Summary:
Summary:
A Cheeto shaped like a man running with an American football has won a Canadian woman C$27,000 (over â¹14 lakh) in a contest sponsored by the maker of Cheetos.
Summary:
Harvard Business School's India-born dean Nitin Nohria will not extend his term as one of the board of directors at Tata Sons and will step down from the position next month.
Summary:
'Mulk' director Anubhav Sinha has said that people in India raise the issue of religion whenever election dates approach.
Summary:
Ranveer Singh, on whether he would star in a football player's biopic, said, "It would be hard to cast me as a football player." "I'd really have to work on my skills...I'm sort of...a player in the mould of a bullhead," he added.
Summary:
Actress Karishma Tanna, who made her TV debut with Ekta Kapoor's 'Kyunki...
Summary:
Piqué won 2010 World Cup and 2012 EURO with Spain.
Summary:
The European Tour had the American's bank account details as he had competed in Challenger Events in Europe decades ago.
Summary:
Indian all-rounder Hardik Pandya has said that he doesn't have "any one particular role" in the team, adding, "I'm a batsman when I'm batting, bowler when I'm bowling." Talking about England scoring 357/6 on third day of the Lord's Test, Pandya said, "Nothing happened and that was the problem.
Summary:
Former Team India captain MS Dhoni took to social media to share a video of himself enjoying at a waterfall near Ranchi.
Summary:
Brazil-born Italian midfielder Jorginho, playing in his first Premier League match for Chelsea, converted a penalty after a dummy hop in his run-up to score his team's second goal in a 3-0 victory over Huddersfield on Saturday.
Summary:
Summary:
The Uttar Pradesh Shia Waqf Board has issued an order that mandates chanting 'Bharat Mata Ki Jai' slogan after the national anthem during Independence Day celebrations at all schools and colleges that are run under it.
Summary:
The Mumbai Police on Sunday shared a Calvin and Hobbes cartoon to promote road safety, asking people to not ignore the signs.
Summary:
Nobel Prize-winning author VS Naipaul, who was born to parents of Indian descent, has passed away aged 85.
Summary:
Twitter users slammed Swara Bhasker after misinterpreting her tweet on 2016 Una flogging, when a Dalit family was tied to jeep and beaten over skinning a dead cow.
Summary:
Reacting to people referring to her yet-to-be-born baby as 'India-Pakistan's love child', Sania said, "We don't take these tags seriously."
Summary:
Facebook has created a new umbrella organisation called 'Connectivity' which will contain the social media giant's various internet projects.
Summary:
While booking tickets, the passengers will have to choose from two options, either to opt-in or opt-out of travel insurance.
Summary:
Gandhi's shares in the company would assess his income at â¹154 crore and not â¹68 lakh, the department said.
Summary:
Summary:
The Indonesian island of Lombok was raised by nearly 10 inches by a 6.9-magnitude earthquake that hit the region on Monday, scientists from NASA and the California Institute of Technology have claimed.
Summary:
Paying tribute to Nobel Prize-winning author VS Naipaul, writer Salman Rushdie tweeted, "We disagreed all our lives, about politics, about literature, and I feel as sad as if I just lost a beloved older brother.
Summary:
Prime Minister Narendra Modi in an interview to ANI said, "Reservation is here to stay.
Summary:
Slamming former White House aide Omarosa Manigault Newman over claims made by her in her new book, President Donald Trump has called her a "lowlife".
Summary:
A French theme park is set to deploy six crows who have been taught to collect cigarette ends and rubbish.
Summary:
The Uttar Pradesh Police on Saturday arrested a man for allegedly impersonating Patanjali Ayurved MD Acharya Balkrishna on Facebook.
Summary:
Summary:
Actor Rajkummar Rao has been signed to star in the sequel to the 2007 film 'Life In a Metro', as per reports.
Summary:
The song will be used for promotional purposes and will be shown during the film's end credits, as per reports.
Summary:
England ended Day 3 of the Lord's Test with a lead of 250 runs, after batsmen Jonny Bairstow and Chris Woakes added 189 runs for the sixth wicket.
Summary:
Chelsea manager Maurizio Sarri, known to smoke around five packets of cigarettes a day, was seen chewing on a cigarette on the bench during his team's Premier League match against Huddersfield on Saturday.
Summary:
Former Tour de France champion Jan Ullrich was arrested for allegedly attacking and injuring a 31-year old prostitute in a luxury hotel in Germany's Frankfurt.
Summary:
The 31-year-old attempted a reverse sweep and gloved the ball before leg-spinner Imran Tahir made a half-hearted appeal and umpire declared Warner out.
Summary:
Vice President Venkaiah Naidu on Saturday said the only two ways to work in the Parliament are to either "talk out or walk out (but) no break out otherwise democracy will be all out".
Summary:
A minor girl was allegedly raped by her uncle in Madhya Pradesh's Sidhi district when her mother had gone to visit a temple, the police said today.
Summary:
Congress President Rahul Gandhi on Saturday wrote to Prime Minister Narendra Modi, urging the Central government to extend financial aid to Kerala amid the flood situation in the state.
Summary:
The boy, who had promised to marry her, gangraped her with his friends for at least three days before abandoning her.
Summary:
Siraj Ibn Wahhaj, a Muslim extremist trained 11 children rescued earlier this month from a compound in New Mexico, US, to carry out school shootings, prosecutors said.
Summary:
However, the plan was put on hold after banks declined to handle payment from Iran for the cattle.
Summary:
State-owned oil and gas giant Indian Oil Corporation on Saturday posted a 50% rise in its June quarter profit at â¹7,092 crore.
Summary:
German Police has rescued a man who called the emergency services claiming that he was being chased by a baby squirrel.
Summary:
'Sanju' director Rajkumar Hirani, while responding to allegations that he tried to whitewash Sanjay Dutt's image in the biopic, said, "If we had to whitewash anyone, we would have made him Mahatma Gandhi." Hirani further questioned, "I have shown that he had 308 girlfriends, that he was so addicted to drugs, he slept with his friend's girlfriend.
Summary:
Musk recently proposed to take Tesla private, valuing the company at $72 billion.
Summary:
The Advertising Standards Authority is set to rule that Amazon's claim is misleading in the case of some items.
Summary:
Una SP said the decision was taken after people alleged policemen at checkpoints demanded bribes from pilgrims entering the state.
Summary:
Delhi Police on Friday inducted an all-female special weapons and tactics (SWAT) team, making it the first unit of its kind in the country.
Summary:
Kishore Biyani-led Future Group's home furnishing chain HomeTown has trolled Swedish furniture giant IKEA, which recently opened its first Indian store in Hyderabad, with its ads placed on walls across IKEA's store.
Summary:
She took to Instagram to share a picture of herself with the car and wrote, "A blessed birthday.
Summary:
Sonakshi Sinha, while speaking about being body-shamed, said, "I used to focus on other things which I'm good at.
Summary:
A new poster of 'Dangal' actress Sanya Malhotra from Vishal Bhardwaj's upcoming directorial 'Pataakha' has been released.
Summary:
The Punjab Police on Saturday arrested another member of the Dilpreet-Rinda gang, who was allegedly involved in the attack on Punjabi singer Parmish Verma in April.
Summary:
England's wicketkeeper-batsman Jonny Bairstow surpassed Indian captain Virat Kohli's tally to become the highest run-scorer in international cricket in the year 2018.
Summary:
Austrian football club Sturm Graz has issued an apology after an assistant referee was left with a bloodied head after a fan hurled a glass cup during a Europa League match.
Summary:
India's Olympic silver medal-winning badminton player PV Sindhu posted an image on Twitter of her planting saplings as part of a challenge given to her by former Indian cricketer VVS Laxman.
Summary:
The Sports Ministry has cleared an 804-member Indian contingent, including 572 athletes, for the Asian Games but said it will bear the expense of 755 members.
Summary:
Summary:
BJP president Amit Shah was shown black flags by Youth Congress workers when he came out of the Kolkata airport on Saturday to address a rally, the police said.
Summary:
The Arunachal Pradesh cabinet on Friday decided to close down all schools running without students by the end of this month, an official release has said.
Summary:
A 14-year-old boy was allegedly sodomised by a dhaba owner in a village in Uttar Pradesh.
Summary:
Two people were arrested and a murder case was registered against several people.
Summary:
A 28-year-old woman was allegedly gangraped by four men in Andhra Pradesh's Guntur district after she was taken to a room on the pretext of being offered a job and given drinks laced with sedatives.
Summary:
After BJP chief Amit Shah's remarks at a Kolkata rally, Trinamool Congress leader Derek O' Brien said he "should apologise within 24 hours, or else we would take legal action." He added, "Who is Amit Shah...He can't get away by alleging corruption against (WB CM) Mamata Banerjee.
Summary:
A Russian court has sentenced four members of a gang nicknamed the 'GTA gang' to life in prison after they were found guilty of 17 murders.
Summary:
A fight erupted between two female tourists over a selfie spot at Rome's iconic Trevi Fountain, Italy which eventually led to the involvement of their family members.
Summary:
US President Donald Trump ate a piece of paper following a meeting with his former lawyer Michael Cohen, former White House adviser Omarosa Manigault Newman has claimed.
Summary:
Oracle has been named in a lawsuit that alleged its executives lied to shareholders when they explained why cloud sales were growing.
Summary:
Manufacturing, which contributes to 78% of industrial output, grew 6.9% in June compared to 2.8% in the previous month.
Summary:
Summary:
Maharashtra's 2nd largest city Pune has got its first offline retail outlet from OnePlus.
Summary:
Speaking about the launch, Vikas Agarwal, GM at OnePlus India, said, "Following their positive response to the existing experience and authorized stores, we have decided to increase the number of offline touchpoints in the country."
Summary:
The company faces more than 5,000 similar lawsuits across the US.
Summary:
Cars used by Salman Khan's family members and comedian Kapil Sharma featured in Mumbai traffic police's list of traffic rules violators.
Summary:
Former Indian cricketer Harbhajan Singh posted a picture of Arjun Tendulkar selling radios at Lord's, a day after Sachin Tendulkar's son was spotted doing ground staff duties during the ongoing India-England Test.
Summary:
External Affairs Minister Sushma Swaraj on Friday said getting the required two-thirds majority in the United Nations to make Hindi an official language was an "easy task".
Summary:
Justice Gita Mittal was sworn in as the first woman Chief Justice of Jammu and Kashmir High Court on Saturday.
Summary:
The UK has rejected India's request to ban the event citing people's right to demonstrate their views.
Summary:
Two executives of a Singapore-based company were robbed at Bengaluru's MG Road on Wednesday.
Summary:
He also joked about whether the airline would hire him if he landed safely.
Summary:
The World Bank has mandated the Commonwealth Bank of Australia (CBA) to arrange the first bond globally to be created, allocated, transferred and managed using blockchain technology.
Summary:
Beleaguered liquor baron Vijay Mallya's London mansion has a toilet made of gold, author James Crabtree has claimed.
"A gold toilet with a golden rim and gold on top.
Summary:
Anushka Sharma has said there are many misconceptions about her as she is not a very social person.
Anushka further said, "But people close to me know...how I am...I don't go out trying to change...
Summary:
Anil Kapoor will play Mughal emperor Shah Jahan in Karan Johar's upcoming directorial 'Takht', as per reports.
Summary:
The official Lord's Twitter account asked fans about former Indian cricketer Sanjay Manjrekar's bell-ringing technique after Manjrekar was called up to ring the bell before the start of play on the Lord's Test's third day.
Summary:
Speaking about his side's bowling display in India's first innings in the second Test at Lord's, English pacer James Anderson said, "If we were bowling at our batsmen, we'd have the better of them (too)".
Summary:
Renee Young, who is an on-air personality with WWE, is set to become the first female to commentate in an entire episode of WWE RAW.
Summary:
Former Indian cricket captain Sunil Gavaskar has declined the invitation to attend Pakistan's World Cup-winning former captain Imran Khan's oath-taking ceremony on August 18 as the nation's new Prime Minister.
Summary:
A report has claimed that the packed schedule of the English pacer Stuart Broad and his girlfriend, singer Mollie King, led to their breakup.
Summary:
Union Minister Ananth Kumar today held Congress President Rahul Gandhi responsible for the Triple Talaq bill not getting the parliamentary nod in the Monsoon Session.
Summary:
The police have seized his passport, visa and ATM card.
Summary:
An artist has covered the Hollywood Walk of Fame with nearly 50 stars of US President Donald Trump, weeks after the original star was vandalised with a pickaxe.
Summary:
China is holding around 2 million Muslims and ethnic Uighurs in secret camps, the UN Committee on the Elimination of Racial Discrimination has said.
Summary:
NASA dropped an ozone monitoring device from the sky in New Jersey, US which carried a message for President Donald Trump that read, "NOT A BOMB!...If this lands near (Trump), we wish him a great round of golf." Trump has been staying at his golf club in New Jersey.
Summary:
Jet, which has a total debt of â¹9,430 crore, said that its account with all the banks as on date is "standard".
Summary:
Hetero was found to be using a similar manufacturing process to China's Zhejiang Huahai Pharmaceutical for the drug.
Summary:
US-based semiconductor major Broadcom's 59-year-old billionaire Co-founder Henry Nicholas III and his girlfriend Ashley Fargo were arrested in Las Vegas on charges of drug trafficking.
Summary:
The 7-year mission would probe why temperatures in corona reach a million úC while Sun's visible surface below it reach only 5,500úC.
Summary:
Summary:
A 29-year-old Delhi man, Safruddin, has been arrested for stealing nearly 500 luxury cars in the city over the span of five years.
Summary:
Madras High Court on Friday pulled up Central Board of Secondary Education (CBSE) for not issuing a circular to schools, directing them to stop giving homework to Classes I and II students.
Summary:
Addressing the 56th convocation ceremony at IIT Bombay, PM Narendra Modi on Saturday said the nation is proud of what the Indian Institutes of Technology and its graduates have achieved.
Summary:
Addressing students at IIT Bombay's convocation ceremony, PM Narendra Modi on Saturday said the best ideas are born in the minds of people studying on campuses and not those working in government buildings or fancy offices.
Summary:
They come in campuses like yours, in the minds of youngsters like you," PM Modi said while addressing the students.
Summary:
The US has suspended the International Military Education and Training program with Pakistan as part of its decision to reduce security assistance to the country, reports said.
Summary:
The Delhi High Court has restrained ex-Ranbaxy promoters Malvinder and Shivinder Singh from operating their bank accounts while it executes Daiichi Sankyo's â¹3,500-crore arbitration award against them.
Summary:
A special Fugitive Economic Offenders Act court in Mumbai on Saturday issued public summons to absconding diamantaire Nirav Modi's brother Neeshal Modi and sister Purvi Modi.
Summary:
Summary:
Summary:
"The start of a new film always feels like a mission and this time it actually is with 'India's Most Wanted'...starting my 12th film," tweeted Arjun.
Summary:
Summary:
American singer Demi Lovato, who was recently shifted from the hospital to a rehabilitation centre following a drug overdose, has left for Chicago for psychiatric treatment, as per reports.
Summary:
Ekta Kapoor, while talking about Mouni Roy's Bollywood debut with 'Gold', said, "I pray that this girl with a heart of gold shines like gold on screen." "She is fantastic.
Mouni made her TV debut with Ekta's 'Kyunki...
Summary:
Kohli had just come into bat and scored one run off two deliveries when the play was stopped due to rain.
Summary:
Ahead of 2018 Asian Games, table tennis player Manika Batra said she wants to take the sport to greater heights in India just like "PV Sindhu and Saina Nehwal made badminton famous".
Summary:
Seventeen-year-old Norwegian Jakob Ingebrigtsen became the youngest gold-winner in European Championships' track events after beating his two brothers, Henrik, a 1,500m gold-winner in 2012, and 2016 gold-winner Filip in the final of the 1,500m event.
Summary:
Shah Rukh also featured in the anthem video of his side Trinbago Knight Riders.
Summary:
Summary:
Around 25 Kanwariyas were injured on Saturday after the bus they were travelling in overturned and fell into a roadside ditch in Bihar.
Summary:
The probe team suspects the car caught fire after colliding with another speedy vehicle.
Summary:
Greece has accused Russia of attempting to sabotage its deal with Macedonia that would pave way for the country to join the NATO.
Summary:
Microsoft CEO Satya Nadella has sold 30% of his common shares in the company valued at $35.9 million (â¹248 crore) for financial planning reasons.
Summary:
The government on Friday announced that carrying the original Driving Licence and car's Registration Certificate is not necessary, and a digital copy saved on the DigiLocker or mParivahan app can be shown.
Summary:
He was appointed as the company's MD two months ago, before which he served as the Joint Managing Director.
Summary:
Hedge fund manager David Einhorn, who suffered losses after betting against Tesla stock, received a box of shorts after he pointed defects in his Tesla car and said he was "happy that his Model S lease ended".
Summary:
Salman Khan posted a video of him working out as part of Union Minister Rajyavardhan Rathore's fitness challenge, nearly three months after being challenged by Union Minister Kiren Rijiju.
Summary:
A group of Dalit lawyers in Uttar Pradesh's Meerut 'purified' Dr BR Ambedkar's statue with milk and Gangajal soon after it was garlanded by BJP leaders Sunil Bansal and Rakesh Sinha on Friday.
They have nothing to do with Ambedkar but do this to promote BJP and allure Dalits.
Summary:
An RTI reply has revealed that Karnataka government spent â¹43 lakh for CM HD Kumaraswamy's seven-minute swearing-in ceremony.
Summary:
After Congress MP Sunil Jakhar made a paper plane in the Parliament saying he can make a better Rafale jet, he clarified that he used the paper plane to seek attention over the Rafale deal.
Summary:
Tesla short sellers have reportedly lost $1.3 billion in a day after Musk's tweet.
Summary:
After launching its separate wedding vertical 'Auto Party', Gurugram-based hotel chain OYO Rooms has acquired Weddingz, an online marketplace for wedding venues and vendors.
Summary:
Gohain's son filed a counter case claiming the woman was blackmailing him and his father.
Summary:
A policeman said the man was frustrated with regular fights between his two wives and decided to sell one.
Summary:
The Kerala government has announced â¹10 lakh as compensation to people who lost their houses and land in the ongoing floods.
Summary:
Calling for immediate deportation of all illegal immigrants from India, yoga guru Ramdev said Rohingyas will create ten more Kashmir-like problems if they are allowed to stay in India.
Summary:
A 32-year-old man accused of raping and impregnating a 17-year-old girl on the pretext of marriage has been let off with a fine of around â¹2 lakh by village elders in Telangana.
Summary:
Shah Rukh Khan will introduce the lead characters of Ekta Kapoor's production 'Kasautii Zindagii Kay' and will also be the narrator for the first three episodes of the serial, as per reports.
Summary:
Actress Vidya Balan, who acquired the rights to a project in which she will be seen portraying former Prime Minister Indira Gandhi, has revealed that the biopic will be a web series.
Summary:
Karan Johar, on his upcoming directorial 'Takht' being compared to Sanjay Leela Bhansali's films, has said that the comparison scares him.
I love Sanjay's aesthetic," he added.
Summary:
Wishing son Ranveer on his 13th birthday on Saturday, actress Sonali Bendre shared a video on Instagram and wrote, "Happy birthday, my not-so-little one.
Summary:
After Sion Swifts' goalkeeper took a goal kick, the 26-year-old defender executed a first-time volley into the goal from her own half.
Summary:
Former Indian cricketer Sachin Tendulkar has said that he has given his son Arjun, who recently broke into the India Under-19 team, the "freedom to do whatever he wants".
Summary:
"This is a question many have asked after getting foxed by your doosra as well," Sachin responded.
Summary:
Sports Minister Rajyavardhan Singh Rathore has called on Indian athletes and officials to behave responsibly during the upcoming Asian Games.
Summary:
Guyana Amazon Warriors' Pakistani fast bowler Sohail Tanvir has been fined 15% of his match fee for his middle-finger send-off to St Kitts and Nevis Patriots' Ben Cutting in a CPL match.
Summary:
Batsman Cheteshwar Pujara, who returned to India's playing XI in the Lord's Test against England after being dropped for the first Test, was run-out for 1(25) in the first innings on Friday.
Summary:
In an attempt to protect Android users from downloading malicious clones of 'Fortnite Battle Royale' app, Google is warning the battlefield game is not available on the Play Store.
Summary:
A US free speech group on Friday asked President Donald Trump to unblock 41 Twitter users after a federal judge in May ordered him to restore access to a group of individuals who filed suit.
Summary:
Posters reading 'Anti-Bengal BJP Go Back' have been put up on the streets of West Bengal's Kolkata, ahead of BJP chief Amit Shah's rally on Saturday.
Summary:
An employee at the Seattle-Tacoma International Airport in Washington, US, stole an Alaska Airlines plane on Friday night, took-off and crashed shortly afterwards.
Summary:
District Consumer Disputes Redressal Forum (DCDRF) in Andhra Pradesh's Vijayawada on Thursday ordered multiplexes to let moviegoers bring outside packaged water, soft drinks and food.
Summary:
Speaking during the Zero Hour in Rajya Sabha, DMK MP Tiruchi Siva demanded that late DMK President M Karunanidhi be conferred with Bharat Ratna, India's highest civilian award.
Summary:
During his 23-run knock against England at Lord's on Friday, Team India captain Virat Kohli overtook England's Jonny Bairstow to become this year's highest run-scorer in international cricket.
Summary:
Andre Russell took a hat-trick and scored the fastest hundred (40 balls) in CPL history on his captaincy debut for Jamaica Tallawahs on Friday.
Summary:
The recently concluded monsoon session in Lok Sabha saw 110% productivity, the highest in 18 years, according to think tank PRS Legislative Research.
Summary:
Stating that Congress added the prefix 'Pandit' before former PM Jawaharlal Nehru's name, BJP MLA Gyan Dev Ahuja on Friday said, "Nehru was not a Pandit.
Summary:
The Maldives has asked India to withdraw its military helicopters and around 50 personnel stationed in the island nation following the expiry of an agreement in June.
Summary:
During a recent court hearing, Madras High Court judge N Kirubakaran on Friday remarked that single parenting can be dangerous for society, adding that a child needs the affection of both a mother and a father.
Summary:
At least 44 clinics and pharmacies have been sealed in the last 10 days in Jammu and Kashmir's Pattan after nine teachers, one Public Health employee and another government employee were caught treating patients and running illegal pharmacies, the regional medical officer said.
Summary:
A Twitter account purportedly operated by separatist group Sikhs for Justice has warned Punjab CM Captain Amarinder Singh against following in the footsteps of ex-CM Beant Singh, who was assassinated in 1995.
Summary:
The accused had fled to the US to evade arrest and returned to India recently, police said.
Summary:
Russia will treat any US sanctions that target its banking operations and currency trade as a declaration of economic war and will respond to it accordingly, PM Dmitry Medvedev has warned.
Summary:
Turkish President Recep Tayyip ErdoÃÂan has told the country's citizens to trust in God as their currency tumbled 18% against the dollar to a new low on Friday.
Summary:
Australian MP Andrew Hastie got a portrait for himself following a similar request.
Summary:
IndiGo had reported a 97% fall in June quarter profit at â¹28 crore, its biggest-ever drop since listing in 2015.
Summary:
After Swedish furniture giant IKEA received FDI approval to launch in India in 2013, it was looking at Delhi, Mumbai and Bengaluru to set up its first store.
Summary:
Air India pilots, represented by Indian Commercial Pilots' Association, have written a letter to the top management, questioning the safety of the airline.
Summary:
Sonakshi Sinha, who made her Bollywood debut with the 2010 film 'Dabangg', said, "Dabangg is a home ground, it's a family I began with...
Summary:
Anushka Sharma, while talking about her acting career, said, "If I'm ever done with acting I wouldn't want to do anything else...
Summary:
'Gully Boy' is scheduled to release on February 14, 2019.
Summary:
Anderson overtook former Indian leg-spinner Anil Kumble, who took 350 wickets on his home soil.
Summary:
Following Shikhar Dhawan's exclusion from Team India for the Lord's Test against England, former Indian cricket team captain Sunil Gavaskar said that the opener "is always being made the scapegoat".
Summary:
Paul Pogba, who was a part of France's squad that won the 2018 World Cup, captained United and opened the scoring in the third minute.
Summary:
The police said a note found from his house mentioned debts and a lack of reservation for the Maratha community as the reasons behind the act.
Summary:
The accused, who was running a management school, had allegedly posted the photo of an "appreciation letter" received from the President for a book he authored on digital marketing, said reports.
Summary:
Walmart's acquisition of majority stake in Indian e-commerce firm Flipkart in a $16-billion deal is expected to help the government collect up to $2 billion, as per reports.
Summary:
Carrying a physical copy of the driving licence and the vehicle's Registration Certificate (RC) is not compulsory now as the government has validated digital copies.
Summary:
Following allegations by an Indian family who said they were offloaded from a British Airways flight as their three-year-old child was crying, actor Rishi Kapoor took to Twitter to call the airline "racist".
Summary:
Lionel Messi will replace Andrés Iniesta as Barcelona's captain for the new season, after the latter ended his 22-year stint at the Spanish club.
Summary:
India's High Commissioner to Pakistan Ajay Bisaria met Pakistan's PM-in-waiting Imran Khan on Friday and gifted him a cricket bat autographed by all the members of the Indian cricket team.
Summary:
CBI admitted an alleged bribe of â¹20 lakh was given to Tiwari.
Summary:
Officials of the Surat Municipal Corporation on Friday locked themselves in their vehicle for over an hour after they were allegedly attacked by a mob for seizing a stray cow.
Summary:
Earlier, Tamil Nadu had announced free sex change surgeries in government hospitals for transgenders.
Summary:
Summary:
National carrier Air India, which has not paid salaries to its employees for July, on Friday said the delay is due to reasons beyond the management's control.
Summary:
Global casino hub Macau will overtake Qatar as the richest place in the world by 2020, according to the International Monetary Fund.
Summary:
Filmmaker Karan Johar, while talking about his upcoming directorial 'Takht', said, "It's like the Kabhi Khushi Kabhie Gham of the Mughal era." "But it's more extreme, there is more betrayal.
Summary:
On being asked if his wife Mira Rajput is set to join Bollywood, actor Shahid Kapoor said, "When she does a press conference ask her." "Today women have their own minds and take their decision," he added.
Summary:
Indian-origin chef Sashi Cheliah, who won MasterChef Australia 2018, has said he would love to cook for actors Aamir Khan and Kamal Haasan.
Summary:
Summary:
Janhvi Kapoor, who will be seen in Karan Johar's upcoming directorial 'Takht', has said she feels blessed that Karan allowed her to be a part of the film.
Janhvi further said, "I am so excited and hope to do a good job."
Summary:
Fast bowler James Anderson took his Test career's 26th five-wicket haul to help England dismiss India for 107 runs on rain-curtailed Day 2 of the Lord's Test on Friday.
Summary:
Purnell's Decland Redwood left Minehead batsman Jay Darrell stranded on 98* by conceding five runs when the latter's team needed two runs to win.
Summary:
Referring to the shelter home rape cases, Congress President Rahul Gandhi said, "PM Narendra Modi doesn't utter a word when girls are raped in UP and Bihar...
Summary:
The victims were rushed to a primary health centre, but no doctors were available, according to reports.
Summary:
Summary:
Union Home Minister Rajnath Singh on Friday said the Centre will provide all possible assistance to Kerala for controlling the flood situation in the state.
Summary:
The 18-year-old girl, who was shot dead outside the Rohtak court complex for marrying a Dalit boy, was adopted by her father when she was two years old, the police has said.
Summary:
A 12-year-old student died after taking iron-boosting medicines given by a Brihanmumbai Municipal Corporation-run (BMC) school in Mumbai.
Summary:
Over 12,800 trees have been cut in Delhi in the last three years for various government projects, Housing and Urban Affairs Minister Hardeep Singh informed the Rajya Sabha on Thursday as part of a written reply to a question.
Summary:
Former White House adviser Omarosa Manigault Newman has claimed that US President Donald Trump repeatedly used the 'N-word' on his TV show 'The Apprentice' and added that there is a tape which proves Trump used the racial slur.
Summary:
HDFC Bank on Friday said that its Deputy Managing Director Paresh Sukthankar has resigned and will vacate his post in 90 days.
Sukthankar has been with HDFC Bank since its inception in 1994.
Summary:
After Swedish home furnishing giant IKEA, UAE-based Danube Home, part of the diversified Danube Group, will also open its first store in India in Hyderabad.
Summary:
Pakistan Tehreek-e-Insaf party chief and PM-in-waiting Imran Khan has submitted a signed apology to the country's Election Commission for violating the secrecy of the ballot.
Summary:
Arjun Tendulkar was seen doing ground staff duty at Lord's as rain stopped play on the second day of the India-England Test.
Summary:
The F&B revenue of multiplex chain Inox contributed 26.8% to its total revenue in last quarter.
Summary:
A 22-year-old Delhi model, who posed as the casting director of a fake modelling agency, has been arrested for allegedly cheating fifteen aspiring models of almost â¹25 lakh by promising them roles in fashion events and photoshoots.
Summary:
A thief reportedly presented himself as 'Despacito' singer Daddy Yankee and stole jewels worth $2.3 million (â¹15 crore) from his hotel room safe in Spain.
Summary:
All five shutters of the Cheruthoni dam in Kerala's Idukki reservoir were opened on Friday, a day after the first shutter was opened for the first time in 26 years amid incessant rainfall.
Summary:
At least 57 tourists, including 24 foreigners from USA, Singapore, Oman, Saudi Arabia, Russia and UAE were trapped in a resort on Thursday, after a landslide near Munnar, Kerala, following heavy showers.
Summary:
The Anti Terrorism Squad of Maharashtra police has arrested an alleged member of Sanatan Sanstha and seized eight crude bombs and explosives from his house in Nallasopara near Mumbai.
Summary:
Several people from the Sikh community held a rally outside British High Commission in Delhi in protest against a pro-Khalistan event which is scheduled be held in the UK.
Summary:
The Uttar Pradesh government spent â¹14.31 lakh on hiring a chopper from which cops showered rose petals at 'kanwar' pilgrims in Meerut and Saharanpur.
Summary:
The 18-year-old son of a police chief in California, US has been arrested for attacking a 71-year-old Sikh man in the city of Manteca.
Summary:
Pakistan Tehreek-e-Insaf (PTI) Senator Faisal Javed Khan has said that party chief Imran Khan will take oath as the Prime Minister on August 18.
Summary:
Pence also announced plans to establish the US Space Command and the Space Development Agency.
Summary:
Their oath-taking ceremony was not attended by Melania, who is on a vacation with Trump.
Summary:
The original song from the 1958 film 'Howrah Bridge' featured Helen and was sung by Geeta Dutt.
Summary:
The trailer of Dharmendra, Sunny Deol and Bobby Deol starrer 'Yamla Pagla Deewana Phir Se' has been released.
Directed by Navaniat Singh, it is the third film in the 'Yamla Pagla Deewana' film series.
Summary:
Filmmaker Aanand L Rai, while speaking about working with Shah Rukh Khan in the upcoming film 'Zero', said, "There is no hangover, there is no stardom, there is no pretence." "I am not talking about a director-actor tuning or bonding.
Summary:
Former Sweden football team captain Zlatan IbrahimoviÃÂ has said that his 30-yard bicycle kick goal against England in 2012 is the most special for him.
"(People) will remember the goal forever...because of (Sweden's) relationship with the English.
Summary:
As part of the all-cash deal, 4amShop founders would exit and their 2,000 customers would be transferred to DailyNinja.
Summary:
CM Arvind Kejriwal directed officials to clear her documents immediately.
Summary:
The police said they have not found any leads on his second wife, who was pregnant when she went missing.
Summary:
India has asked China to stop Chinese construction activities in Pakistan Occupied Kashmir (PoK), Union Minister VK Singh has said.
Summary:
In a departure from the British-era practice, Himachal Governor Acharya Devvrat has directed the state government to discontinue prefixing the words "His Excellency" or "Mahamhim" as a greeting while addressing him.
Summary:
Germany has lifted a ban on using swastikas and other Nazi symbols in video games.
Summary:
North Korea has said that the US is "throwing cold water" over its efforts to denuclearise the Korean Peninsula.
Summary:
Kerala, Maharashtra, Karnataka and Tamil Nadu together received nearly 60% of the total remittances in 2016-17, according to an RBI survey.
Summary:
India's largest lender SBI on Friday posted a surprise loss of â¹4,876 crore for the June quarter as its provisions for bad loans more than doubled to â¹19,228 crore.
Summary:
The Cabinet approved a provision to grant bail to those found guilty of giving instant Triple Talaq.
Summary:
He had said during an interaction with students that Mahatma Gandhi wanted Muhammad Ali Jinnah as the Prime Minister but Jawaharlal Nehru refused as he "wanted to become PM".
Summary:
About 40,000 people visited IKEA's first India store on its opening day on Thursday in Hyderabad, which led to a stampede-like situation.
Summary:
Anil Kapoor has revealed he rejected the 1989 film 'Chandni' as he did not want to sit in a wheelchair through an entire film.
Summary:
The trailer of Shahid Kapoor and Shraddha Kapoor starrer 'Batti Gul Meter Chalu' has been released.
Summary:
Summary:
ShopClues CEO Sanjay Sethi claimed in an e-mail to employees that the e-commerce website expects to reach break-even during Diwali season and also raised about $16 million from existing investors this year.
Summary:
The Director of a hostel for hearing and speech impaired women has been arrested from Bhopal for allegedly raping a 20-year-old deaf and mute resident and sexually harassing two others.
Summary:
A 14-year-old student has donated â¹27,850 he received in scholarship to help 14 murder convicts who have completed their jail term but are unable to pay their fines.
Summary:
A temple in Delhi refused to perform last rites of a Hindu woman as they believe she was no longer a part of the religion as she married a Muslim man.
Summary:
The first amendment allows only the wife and relative by marriage/blood to file a case.
Summary:
Saudi Arabia on Wednesday executed and "crucified" a man from Myanmar in the city of Mecca after he was convicted of killing a woman, the state media reported.
Summary:
At least 29 children were killed and 48 others were injured after a Saudi-led coalition air strike hit a bus in Yemen's Saada province on Thursday, the International Committee of the Red Cross said.
Summary:
American footwear company Crocs has announced that it is closing the last of its manufacturing facilities but asserted that it is not going out of business.
Summary:
Akshay tweeted this while answering a user who asked him what does he love the most about Bengali people.
Summary:
While answering a Twitter user who asked Akshay Kumar how does he deal with trolling, Akshay said, "I deal with it like I deal with bullies...ignore it." He replied, "Never bought gold, earned medals," to another user who asked when was the first time he bought gold in his life.
Summary:
Rani Mukerji, Rajkumar Hirani and Vicky Kaushal were a part of an opening press conference that was held at the Indian Film Festival of Melbourne which began on Friday.
Summary:
Atif Aslam, who sang 'Tera Hone Laga Hoon' song from the 2009 film 'Ajab Prem Ki Ghazab Kahani', got trolled for singing this song at Independence Day event in Pakistan.
Summary:
Summary:
Major League Baseball umpire Bruce Dreckman left play during a match between New York Yankees and Chicago White Sox to pluck a live insect out of his left ear.
Summary:
Summary:
Smoke from California's ongoing wildfire, classified as the largest in the state's history, has been carried by winds to the US East Coast, nearly 3,000 miles away, satellite observations have shown.
Summary:
Currently lodged at Byculla jail, Mukerjea is undergoing trial for allegedly killing her daughter Sheena in 2012.
Summary:
Jet Airways has postponed its June quarter results to an unspecified late date after its audit committee did not recommend the results to the board for approval.
Summary:
The Income Tax Department has slapped three notices under the foreign black money law against Nirav Modi for allegedly holding illegal assets abroad.
Summary:
The Talwars were acquitted by the Allahabad High Court in the alleged murder case of their daughter Aarushi and domestic help Hemraj.
Summary:
Actor Akshay Kumar hosted an '#AskAkshay' session on Twitter on Friday, during which a user asked him, "Which actor can match with you as an allrounder (supremacy in all genre)".
Summary:
A Twitter user on Friday asked actor Akshay Kumar that if he got a chance to live another life, what would he want to do other than acting.
Summary:
Priyanka Chopra's rumoured fiancé Nick Jonas recently told the media that having a family of his own is his "goal".
Priyanka had earlier said that she "definitely" wants to have kids in the next 10 years, or "earlier".
Summary:
Former Indian cricketer Sachin Tendulkar couldn't ring the five-minute bell at Lord's on Thursday, as the first day of the second England-India Test was abandoned without a ball being bowled due to rain.
Summary:
Field, who left Tesla in June, will reportedly now work for Apple's self-driving car project.
Summary:
He alleged that PM Modi took away even those departments from him that were under Delhi government during Sheila Dikshit's rule.
Summary:
While AAP models are being praised...Haryana people don't even have basic facilities of electricity and water," Kejriwal added.
Summary:
In 2015, the SC said the convicts, who are serving life terms, cannot be released without the Centre's consent.
Summary:
An electrician working at a New Delhi Municipal Council (NDMC) school has been arrested for raping a Class 2 girl in the school premises, police said on Friday.
Summary:
This comes after White House officials revealed that no decision has been taken yet on accepting India's invitation.
Summary:
A gang of five thieves snatched a businessman's bag in Delhi's Shahdara a few weeks ago, but found only a â¹5 coin inside.
Summary:
The Supreme Court on Friday directed the police to act against those Kanwariyas who are indulging in vandalism and other unlawful activities.
Summary:
Actor Ranveer Singh, who will portray former Indian cricketer Kapil Dev in Kabir Khan's upcoming film '83, met Sachin Tendulkar in London prior to the film's shoot.
Summary:
Sidharth Malhotra and Parineeti Chopra starrer film 'Shotgun Shaadi' has been renamed as 'Jabariya Jodi', as per reports.
Summary:
Summary:
John Abraham has said a particular community should not be blamed for everything that goes wrong in the society.
Summary:
During his trial for affray, England all-rounder Ben Stokes admitted to the jury that he consumed seven vodka drinks and two-three pints of beer before the brawl outside a pub in September 2017.
Summary:
Cutting had hit Tanvir for a six off the previous ball.
Summary:
A glass cylinder was placed on the football pitch of Villarreal's home stadium as a magician presided over the proceedings.
Summary:
This comes after Alex Hunter was added into the official Real Madrid squad list in the game's story mode.
Summary:
Neeraj Chopra, the first-ever Indian to win gold in javelin throw at Commonwealth Games, has been chosen as India's flag-bearer at the opening ceremony of the Asian Games 2018.
Summary:
Premier League clubs spent ã1.2 billion (over â¹10,500 crore) on new players during the summer transfer window, which closed on Thursday.
Summary:
Previously, Ishiguro also made a robot called Geminoid that looked exactly like himself and another modelled on a young woman named Erica.
Summary:
Technology major Google has launched a video-focussed question and answer (Q&A) app Cameos which allows users to answer questions about themselves.
Summary:
The campaign will be launched by party President Akhilesh Yadav from Kannauj with a 50-km cycle yatra.
Summary:
Astronauts aboard the International Space Station have photographed the California wildfires from their perspective 400 km above the Earth's surface.
Summary:
Women selection committee members will now get â¹25 lakh, while their chief would earn â¹30 lakh.
Summary:
Shiv Sena was followed by Delhi-based AAP, which received â¹24.73 crore from 3,865 donations.
Summary:
Madhya Pradesh Police has rescued a 27-year-old woman who was allegedly abducted from Delhi to honey trap and perform sting operations on politicians and take their obscene videos to blackmail them.
Summary:
Flipkart's Co-founder and Group CEO Binny Bansal in an interview recalled how the e-commerce startup got its name and said, "Sachin (Co-founder and former CEO) said no more than 8 letters should be available for $8 or less".
Summary:
Flipkart's Co-founder and Group CEO Binny Bansal during an interview revealed Co-founder Sachin Bansal spent one more year completing his degree because he was gaming too much.
Summary:
2018 has witnessed two total lunar eclipses and two partial solar eclipses.
Summary:
The Finance Ministry on Thursday auctioned a property owned by gangster Dawood Ibrahim in Mumbai's Bhendi Bazaar for â¹3.5 crore to Saifee Burhani Upliftment Trust.
Summary:
Delhi High Court has observed that a woman cannot have the right to stay at her in-laws' property if she mistreats them.
Summary:
One of the main whistleblowers in Vyapam medical scam in Madhya Pradesh has been sent to 15-day judicial remand by a special court after he refused to pay â¹200 as fine for not testifying against an accused.
Summary:
"He was clearly caught on camera using a stick to smash the car," police added.
Summary:
Police said they rushed to the spot and took the man to a local hospital.
Summary:
On August 10, 1909, Australia all-rounder Warwick Armstrong kept England debutant Frank Woolley waiting by bowling trial deliveries to his teammates for 19 minutes during an Ashes Test.
Summary:
Kumble, who had made his international debut in April 1990, scored 110*(193) to help India register 664 runs.
Summary:
He can play up to 20 hours in a row before his smartphones and his nine power banks' batteries run dry.
Summary:
The Serious Fraud Investigation Office (SFIO) has arrested former promoter and MD of Bhushan Steel, Neeraj Singhal, for allegedly siphoning bank loans of over â¹2,000 crore.
Summary:
Jet Airways Chairman Naresh Goyal has apologised to shareholders who lost money after the airline's shares plummeted amid concerns over financial health.
"Lots of shareholders have lost money.
Summary:
Rajkummar Rao has said he did not change as a person after achieving success in Bollywood.
Summary:
Actress Shraddha Kapoor has said that one has to accept the fact that the audience might reject at times, while adding, "I accepted their rejection, too." "But you can't dwell on that for long.
Summary:
Deepika Padukone and Salman Khan will star in filmmaker Sanjay Leela Bhansali's upcoming film titled 'Inshallah', as per reports.
Summary:
Shah Rukh Khan-owned Trinbago Knight Riders' pacer Ali Khan started celebrating thinking wicketkeeper Denesh Ramdin successfully completed the catch after St Lucia Stars' Andre Fletcher nicked the ball, in the Caribbean Premier League.
Summary:
Google has updated its internet browser to 'Chrome 69' to add support for phones featuring a notch in beta version.
Summary:
Researchers have developed a method which will allow users to replace their passwords with hand gestures in the air for authentication.
Summary:
Users can plug the device in and place its bottom nodes into their shoes.
Summary:
Congress MP Gurjeet Singh Aujla donated â¹20 lakh from the Members of Parliament Local Area Development (MPLAD) fund to a Chandigarh golf club.
Summary:
Flipkart plans to expand the service to five to six major cities by the end of 2018.
Summary:
A high-level committee led by former Law Secretary TK Viswanathan has recommended that market regulator SEBI should seek powers to intercept phone calls and electronic communications to aid investigations.
Summary:
The Cabinet has decided to offer pulses to states at a discount of â¹15 per kilogram over prevailing wholesale prices for schemes such as PDS and mid-day meal.
Summary:
The death toll due to the heavy rains in Kerala has increased to 22 over the last 24 hours and the army was deployed in worst-affected Idukki, Wayanad, Kozhikode and Malappuram districts.
Summary:
Kangana Ranaut has said she learnt English recently and still has to access the dictionary for a lot of words.
Summary:
Brad Pitt refuted claims by Angelina Jolie that he had not paid any "meaningful child support" since their separation and his lawyers said the actor had loaned her $8 million to help her buy a new home.
Summary:
Actress Kangana Ranaut, on being asked if she will join politics, said, "Right now, I am so successful (in films) that I don't want to make career anywhere else." "Politics shouldn't be a career.
Summary:
Rakesh further said, "I decided to also make an out of the box yet entertaining, mainstream film."
Summary:
Chinese electronics company Xiaomi on Thursday confirmed that it will soon have a new sub-brand called 'POCO'.
Summary:
BJP President Amit Shah asked Congress chief Rahul Gandhi to check facts "when free from winking and disrupting Parliament", after the latter accused PM Narendra Modi of having an "anti-Dalit" mindset.
Summary:
Sivaprasad, who has acted in numerous films, also dressed up as a king and 'possessed' tantrik, among other characters on previous occasions.
Summary:
In a first, a railway court in Mumbai ordered three residents aged 20, 23 and 24 years to clean Vasai railway station for three days after they were arrested for taking the viral 'Kiki challenge' in a train.
Summary:
An audit at Telangana's Dharmapuri temple revealed a set of diamond-studded bangles worth â¹6 lakh was also missing.
Summary:
Tribune said that Sinclair failed to live up to the end of the deal as it did not receive regulatory approval.
Summary:
Eicher Motors, the parent firm of motorcycle brand Royal Enfield, reported its highest quarterly profit in at least a decade during the April-June period at â¹576.2 crore.
Summary:
Kareena Kapoor has increased her fee to â¹10 crore per film after the success of her film 'Veere Di Wedding', as per reports.
Summary:
Nora Fatehi starrer song 'Kamariya', from Rajkummar Rao and Shraddha Kapoor's 'Stree' has been released.
Summary:
Actor Sidharth Malhotra, who will be seen playing Kargil martyr Vikram Batra in an upcoming biopic on the latter, said, "I feel it is an emotional responsibility to play that character." "The family of Vikram Batra felt that I can play his role," he added.
Summary:
Ex-Pakistan all-rounder Azhar Mahmood posted a picture with Virat Kohli, with a caption that read, "Good to see you as always.
@imVkohli all the best brother".
Summary:
BCCI's official Twitter handle shared a photo of the full-course menu at the Lord's as the start of the opening day of the second Test at the venue was delayed due to rain.
Summary:
The Day One of the second Test between India and England at Lord's was abandoned without even a ball being bowled due to rain.
Summary:
The MCC World Cricket committee has proposed introducing a 'shot clock' to reduce time wastage in Test cricket.
Summary:
"He was not acting in self-defence.
I know what self-defence is.
Summary:
Ex-world number one doubles player, China's Peng Shuai was handed a six month-ban and fined $10,000 (around â¹6.8 lakh) for forcing her doubles partner to withdraw from Wimbledon 2017.
Summary:
Notably, female fans watched Iran's men's team's matches at the FIFA World Cup in Russia.
Summary:
After BJP-led NDA candidate Harivansh Narayan Singh was elected the Rajya Sabha's Deputy Chairman today, UPA chairperson Sonia Gandhi said, "Sometimes we win and sometimes we lose." Singh defeated Congress-led UPA's candidate BK Hariprasad by 20 votes.
Summary:
Speaking on Congress not seeking AAP's support for the UPA candidate in Rajya Sabha Deputy Chairman elections, AAP leader Sanjay Singh had said, "If Rahul Gandhi can hug PM Narendra Modi, why cannot he ask (Delhi CM) Arvind Kejriwal (for) support?" AAP members didn't vote in the elections on Thursday.
Summary:
Summary:
A man missing from Jaipur for 36 years has been found in a jail in Lahore, Pakistan.
Summary:
"This shows the faith the tax department has in taxpayers.
Summary:
A 26-year-old Economics graduate used two lifelines to answer 'Where Is The Great Wall of China' in the Turkish version of 'Who Wants To Be A Millionaire'.
Summary:
The Rajasthan government has changed the name of 8 villages with Muslim names, claiming that they have a majority Hindu population.
Summary:
Speaking about her debut Hollywood film 'Baywatch' not performing well at the box-office, Priyanka Chopra said, "My dad is not sitting in Hollywood saying 'Oh, let me make a film for you'".
Summary:
Six directors of Tesla's nine-member board have issued a statement saying that they already knew of CEO Elon Musk's plan to privatise the electric cars making company before he tweeted about it.
The tweet led to Tesla's stock being suspended from trading on Tuesday.
Summary:
Under the cap, Uber and Lyft would be prevented from adding new cabs for one year.
Summary:
Breaking a 20-year-old distance record, a team led by PhD student Aayush Saxena has found a radio galaxy from a time when the universe was only 7% of its current age, at a distance of 12 billion light-years.
Summary:
The calf was the first born to its group in 3 years, of which only 75 are left.
Summary:
The Supreme Court on Thursday directed the Tamil Nadu government to seal 11 resorts and hotels constructed illegally on the elephant corridor of Nilgiris within 48 hours.
Summary:
Thousands of people, including family and friends, on Thursday received the mortal remains of Major Kaustubh Rane, who was martyred in a gunfight with terrorists in Jammu and Kashmir.
Summary:
Almost 50,000 litres of water will be released per second from the reservoir.
Summary:
The government on Thursday reappointed Ram Sewak Sharma as telecom regulator TRAI's Chairman till September 2020 when he turns 65.
Summary:
Fraud accused diamond merchant Nirav Modi was last traced to Dubai recently but intelligence agencies have since lost track of him, according to reports.
Summary:
The BSE Sensex closed 136.81 points up to settle at an all-time high of 38,024.37 on Thursday, also marking the first time ever the benchmark index closed above the 38,000 mark.
Summary:
Sunny Leone has shared a post on Instagram in which she has asked her fans to donate to a crowdfunding page started by her to help Prabhakar, a member of her staff who is battling a kidney disease.
Summary:
Former South African cricketer posted a photo from Rajasthan's Alwar Palace, with a location tag in Hindi that read, "Yaaron ka koi thikana nahi hota".
Summary:
Summary:
US-based startup Anki has developed an AI robot 'Vector' small enough to fit into a user's palm.
Summary:
Apple has filed a patent for an augmented-reality (AR)-powered hi-tech windshield system, termed as 'Heads-Up Display', for its self-driving cars.
Summary:
He has no place for Dalits in his heart." Further, speaking about violence against Dalits, he said, "We don't want an India like this.
Summary:
Home rental startup Airbnb has cancelled its competition offering users a chance to spend a night on the Great Wall of China following criticism over the planned promotion.
Summary:
Speaking about the reason for boycotting the event, JNUSU president Geeta Kumari alleged the university was "systematically destroyed" through anti-student, anti-social justice policies of the Vice Chancellor.
Summary:
Claiming there is enhanced concern in the international community over terrorism that emanates from Pakistan, External Affairs Minister Sushma Swaraj said India's efforts to consistently highlight cross-border terrorism is paying the dividends.
Summary:
A call about a dead body lying on the road got connected to both Delhi Police and Haryana Police.
Summary:
Santali is written in Ol Chiki script and spoken by 6.4 million people in India.
Summary:
The death toll from a 6.9-magnitude earthquake that hit the Indonesian island of Lombok last week has risen to 319, Security Affairs Minister Wiranto said on Thursday.
Summary:
Salgado further said India has three decades before it hits the point where the working-age population starts declining.
Summary:
ICICI Bank's shares surged as much as 8.6% on Thursday after the lender clarified that it has made full disclosures about its bad loans in its annual report, investor presentations and analyst calls.
Summary:
Zac stripped and swam 150 feet out to rescue the 18-year-old till help arrived.
Summary:
The film is a social drama that reportedly deals with the problem of power shortage in India.
Summary:
"The crew said we don't want to look like cow savers," added Kangana.
Summary:
Responding to Ekta Kapoor's post in which she introduced the actors of her film 'Laila Majnu' as "unknown talents who've no...star fathers", Tiger Shroff's mother Ayesha Shroff commented, "It's not a sin to have a star father!" Replying to this, Ekta wrote, "Not at all, ma'am!
Summary:
Subsequently, the court has given full membership status to Mumbai, Saurashtra and Vidarbha associations, among others.
Summary:
AAP spokesperson Saurabh Bharadwaj has said, "Projecting Rahul (Gandhi) as PM candidate is a conscious effort of the BJP to position this contest as Rahul-versus-Modi as it suits them." Adding BJP is choosing opponent according to its convenience, Bharadwaj stated, "If they choose Mayawati or Mamata, there is a problem.
Summary:
After NDA candidate Harivansh Narayan Singh of JD(U) was elected as the Rajya Sabha Deputy Chairman on Thursday, PM Narendra Modi said, "Now, we are all Hari bharose." Congratulating the newly elected Deputy Chairman, PM Modi added, "He has been blessed with the talent of writing.
Summary:
Tesla CEO Elon Musk and his counterpart at the Japanese conglomerate SoftBank, Masayoshi Son, held talks in April 2017 to discuss an investment in Tesla.
Summary:
Two wheeler-rental startup Metro Bikes has rebranded itself to Bounce "to avoid the confusion of being only present in metro cities".
Summary:
World's richest person Jeff Bezos-owned Blue Origin is among the six companies NASA has selected for developing 10 "tipping point" space technologies, including lunar lander and deep space rocket engine.
Summary:
Albanian-Indian Nobel Laureate Mother Teresa was placed 20th on the list while former PM Indira Gandhi was ranked 49th.
Summary:
Summary:
It will "make people understand the importance of our National Anthem", Justice Hegde said.
Summary:
Telugu Desam Party MP Naramalli Sivaprasad dressed up as German dictator Adolf Hitler as part of his protest at Parliament demanding special status for Andhra Pradesh.
Summary:
A former Thai Buddhist monk, Wirapol Sukphol, has been sentenced to 114 years in prison after a court found him guilty of fraud, money laundering and computer crimes.
Summary:
Swedish furniture giant IKEA on Thursday opened its first-ever store in India, a 4,00,000 square feet outlet in Hyderabad offering around 7,500-8,000 products.
Summary:
Sidharth Malhotra, while responding to rumours of him dating actress Kiara Advani, said, "I'm in relationship only with my work.
Summary:
On being asked to give a message to England's 20-year-old Test debutant Ollie Pope, Indian captain Virat Kohli said, "I would just say enjoy the occasion, but don't get too many runs".
Summary:
The five-minute bell, located outside Bowlers' Bar of the Lord's Pavilion, is rung before the start of a day's play during Tests.
Summary:
Former South African cricketer Jonty Rhodes is set to participate in the surfing event of the sixth edition of the annual Covelong Point Surf Music Yoga festival to be held at Kovalam from August 17-19.
Summary:
The previous most expensive goalkeeper was Brazil's Alisson Becker, who joined Liverpool this summer in a deal worth ã56 million (over â¹494 crore).
Summary:
An atmosphere of fear is being created," Ghosh said about the incident.
Meanwhile, TMC has termed Ghosh's allegations as "baseless".
Summary:
Paytm has acquired Bengaluru-based savings management startup Balance Technology for an undisclosed amount.
Summary:
US-based retailer Walmart along with e-commerce major JD.com has co-led a $500 million funding round in Chinese online grocery delivery company Dada-JD Daojia.
Summary:
Further, talking about surveillance of US citizens, Manning said she is concerned about the fact "that a single person (US President) has the power to do these things".
Summary:
The Supreme Court on Thursday ordered a fresh round of bidding for Jaypee Infratech and allowed RBI to initiate insolvency proceedings against parent firm Jaiprakash Associates.
Summary:
In intraday trade, the Sensex rose 188.67 points to a new all-time high of 38,076.23 and the Nifty 50 rose 45.2 points to a fresh record high of 11,495.20.
Summary:
The newly elected Rajya Sabha Deputy Chairman Harivansh Narayan Singh is a member of the JD(U), BJP's ally in Bihar.
Summary:
The BJP-led NDA candidate Harivansh Narayan Singh was on Thursday elected the Rajya Sabha's Deputy Chairman, after the post was vacant since July.
Summary:
Karkara has also been accused of making obscene gestures and sending pornography links to colleagues.
Summary:
The bomb was planned to be dropped on another city Kokura on August 11.
Summary:
Directed by Anurag Kashyap and co-produced by Aanand L Rai, the film is scheduled to release on September 14.
Summary:
Pakistani actress-singer Reshma has been shot dead by her husband in the country's Khyber Pakhtunkhwa province.
Reshma's husband along with an accomplice entered the house and opened fire on her, police said.
Summary:
Three of the twelve boys who were trapped in a cave in northern Thailand for 18 days were granted Thai citizenship on Wednesday.
Summary:
Indian wrestler Jashkawar Gill refused to make his international debut in Turkey after not agreeing to remove his 'patka' as asked by the referee.
Summary:
Facebook has expressed "regret" over displaying balloons in posts related to the 6.9-magnitude earthquake that struck Indonesia's Lombok island on Sunday and took over 130 lives.
Summary:
Four of the exoplanets were found to orbit their host stars in less than 24 hours implying a year on them is shorter than a day on Earth.
Summary:
The Kanwariyas could be seen smashing the windows and the windshield of the vehicle and the police failing to control them.
Summary:
An Indian family alleged they were offloaded from a British Airways flight as their three-year-old child was crying.
Summary:
An 18-year-old girl and a policeman were shot dead by three unidentified bike-borne men in Haryana's Rohtak in a suspected case of honour killing.
The girl eloped with a Dalit boy last year.
Summary:
The Central Bureau of Investigation (CBI) on Wednesday froze the bank accounts of Brajesh Thakur, the prime accused in Bihar's Muzaffarpur shelter home rapes case.
Summary:
Sakal Maratha Samaj, an umbrella body of Maratha groups, has called for a 'bandh' (shutdown) today across Maharashtra over demand for Maratha reservation.
Summary:
At least 26 women were found missing in two shelter homes run by NGOs in Uttar Pradesh's Pratapgarh during a surprise inspection by the District Magistrate on Wednesday.
Summary:
A video has surfaced online, wherein Additional Director General of Uttar Pradesh Police (Meerut Zone) Prashant Kumar can be seen showering rose petals on Kanwariyas from a helicopter.
Other senior officials were also present in the helicopter.
Summary:
The teacher allegedly pricked the boy's eye after the latter failed to read aloud a chapter in the class.
Summary:
Argentinian lawmakers on Thursday voted 38-31 against a bill to legalise elective abortion in the first 14 weeks of pregnancy.
Summary:
Commander of US Strategic Command, General John Hyten, has said that Russia and China are not "our friends" as they are developing hypersonic weapons which the US currently cannot defend against.
Summary:
Old's first fifty came off 51 balls in 28 minutes, including eight fours and a six.
Summary:
England batsman Ollie Pope, who will make his Test debut for England against India today, was still playing school cricket two years ago.
Summary:
East Bengal Football Club had to cancel the unveiling of Costa Rican defender Johnny Acosta, who featured in 2018 FIFA World Cup, as the team failed to arrange a translator.
Summary:
Israeli cybersecurity firm CheckPoint researchers have found a bug in WhatsApp that could allow hackers to modify and send fake messages on the platform.
Summary:
US-based AI startup Cerebras Systems has hired former Intel executive Dhiraj Mallick as its Vice President of Engineering and Business Development.
Summary:
Canada Prime Minister Justin Trudeau on Wednesday said that Saudi Arabia had made some progress on human rights amid the ongoing diplomatic row between the two countries.
Summary:
Make the #SmartestMove with the Vodafone RED postpaid plan and get the lowest possible bill guaranteed every month even when you exhaust all your data quota or make international calls.
Summary:
The Uttar Pradesh Police said in a press conference that it has traced the 18 missing inmates of the shelter home in Deoria.
Summary:
A man on Wednesday tweeted to External Affairs Minister Sushma Swaraj, asking if it is safe to travel to Bali as he has a trip from the 11th to the 17th of August.
Summary:
Several users of the government's BHIM app took to Twitter to complain that they haven't received cashback for transactions that they made.
Summary:
The Japanese city of Nagasaki was not the primary target of the atomic bombing carried out by the US on August 9, 1945.
Summary:
Japan recognises only one person to have survived both the atomic bomb explosions during World War II.
Yamaguchi left for Nagasaki, where the next bomb was dropped three days later on August 9, 1945.
Summary:
Filmmaker Karan Johar has announced that Ranveer Singh, Kareena Kapoor Khan and Alia Bhatt will star in his directorial 'Takht'.
Summary:
After the BCCI shared a picture of Team India members with Virat Kohli's wife Anushka Sharma in it from London's High Commission of India, a BCCI source said "no official protocol was broken".
Summary:
The Academy of Motion Picture Arts and Sciences, which awards the Oscars, has added a new category after 17 years to recognise popular films.
The new Oscar will be awarded for "Outstanding Achievement in Popular Film".
Summary:
After a commuter posted a photograph of a policeman in Gurugram riding a motorcycle without a helmet on Twitter, police on Wednesday issued a challan of â¹200 against him.
Gurugram traffic police on patrolling bike.
Summary:
In order to pay tribute to late DMK chief M Karunanidhi, who passed away at 94 on Tuesday, sand artist Sudarsan Pattnaik created a sculpture of the leader at Puri Beach in Odisha.
Summary:
The Uttar Pradesh Police tweeted a video from dating app Tinder on Wednesday, along with the caption, "Even an app understands the importance of consent, why canâÂÂt you?" It further used the hashtag '#ANoMeansNo'.
Summary:
At least 20 cows were killed after they were hit by Kalka-Shatabdi Express near Delhi's Narela on Wednesday.
Summary:
WikiLeaks announced in a tweet on Wednesday that the US Senate Intelligence Committee called on its founder Julian Assange to testify on Russian interference in the 2016 presidential election.
Summary:
Mocking Pakistan Chief Election Commissioner Sardar Muhammad Raza, the country's Chief Justice Saqib Nisar said that he called Raza thrice on the polling day but he didn't pick up and was likely sleeping.
Summary:
US Ambassador to the UN Nikki Haley has said that the country is "not willing to wait too long" for North Korea to take steps toward denuclearisation.
Summary:
Actor Akshay Kumar has said that his son Aarav is too young to join Bollywood while adding that currently, he is interested only in his studies.
Summary:
Team India have registered only two victories in 17 Tests they have played at Lord's in the last 86 years.
Summary:
Rohit Sharma liked a tweet which said that Anushka Sharma filled up his void in Team India.
Summary:
A cricketer's name gets featured on the Honours Board at Lord's by scoring a century, taking five wickets in an innings or picking up ten wickets in a match.
Summary:
Twenty-eight-time German first division champions Bayern Munich scored 20 goals in 88 minutes in their pre-season friendly match against local German club FC Rottach-Egern.
Bayern went on to win the match 20-2.
Summary:
"Bugs, performance problems, and quality-of-life issues have been limiting PUBG's true potential, and you want it fixed," PUBG said on its website.
Summary:
Summary:
Homegrown e-commerce firm Flipkart has invested about â¹452 crore into its payments arm PhonePe, according to filings.
Summary:
UN Secretary-General Antonio Guterres has chosen former Chilean President Michelle Bachelet to be the world body's new High Commissioner for Human Rights, the UN said on Wednesday.
Summary:
US President Donald Trump's daughter Ivanka Trump has said that PepsiCo CEO Indra Nooyi has been her "mentor and inspiration".
Nooyi will step down on October 3 after 12 years as PepsiCo CEO.
Summary:
The International Monetary Fund's (IMF) mission chief for India, Ranil Salgado, has described the $2.6-trillion economy as an elephant that's starting to run.
Summary:
TRAI Chairman RS Sharma said that he has won the Aadhaar challenge as no harm was done to him after he revealed his Aadhaar number on Twitter.
Summary:
Following Nixon's resignation, the then VP Gerald Ford was sworn in as the 38th President of the US in the East Room of the White House.
Summary:
Rajkummar also revealed he was constantly on the hunt for auditions before he got his first film.
Summary:
Eight-year-old US-based startup Magic Leap on Wednesday launched its first-ever product, an augmented reality headset priced at $2,295 (â¹1.57 lakh), nearly two times costlier than iPhone X's inaugural price in India.
Summary:
Temasek bought the stake from a group of early investors of Ola, the reports added.
Summary:
In one of the fastest trials, a man accused of raping a six-year-old girl was sentenced to life imprisonment till death by a Madhya Pradesh court after a three-day hearing.
Summary:
The National Investigation Agency has arrested Bangladeshi national Mohammed Jahidul Islam in Bengaluru, who's a key accused in 2014 Burdwan blast case.
Summary:
Bengaluru Police has claimed they have solved 105 cases after arresting a chain-snatcher in June.
Summary:
The hospital ordered an inquiry and contacted a pest control company to handle the rat problem.
Summary:
Since plastic flags don't decompose for a long time, ensuring its appropriate disposal commensurate with the dignity of the flag is a practical problem, a Home Ministry advisory stated.
Summary:
Since no one ran in the Republican primary, Tlaib is set to win the seat in November's election for a two-year term beginning January.
Summary:
The Reserve Bank of India's board has approved the transfer of a surplus amount of â¹50,000 crore to the government for the year ended June 30, 2018.
Summary:
Actor Anil Kapoor has said he thought a bare chest photo shoot that he did in his younger days would make him a "sex symbol".
He further called himself very "delusional" for thinking that he would become a sex symbol after the photo shoot.
Summary:
Hrithik Roshan has shared a post on his film 'Koi Mil Gaya' completing 15 years of release.
Talking about his character 'Rohit,' Hrithik added, "Rohit helped me understand every...
Summary:
The MCC World Cricket committee has backed discussions between the MCC and the England and Wales Cricket Club to start a design project for manufacturers to develop "head protection" for bowlers.
Summary:
Later Manchester United manager Jose Mourinho came in to defend the goal for the United players.
Summary:
Newly-crowned badminton world champion and Rio 2016 gold-winner Carolina Marin said that India's Rio 2016 silver-winner PV Sindhu should control her nerves while playing in finals of tournaments.
Summary:
Japan's SoftBank is reportedly in talks to invest $500 million to $750 million in Zume, a US-based startup that makes and delivers pizzas with the help of robots.
Summary:
The National Green Tribunal has directed the UP government to immediately seal all hand pumps which are discharging contaminated water and also sought an action plan to clean the Kali and Hindon rivers.
Summary:
Two minor girls have gone missing from a government-aided shelter home in the Khunti district of Jharkhand, Child Welfare Committee (CWC) members have said.
Summary:
The party also appealed to the police to allow the use of walkie-talkies during the rally.
Summary:
A man was arrested after he allegedly set ablaze a 40-year-old woman, with whom he was having an extramarital affair, in Maharashtra's Nashik following a heated argument.
Summary:
The entry fee for the Taj Mahal has been raised from â¹1000 to â¹1100 for foreign tourists and from â¹40 to â¹50 for domestic tourists.
Summary:
A woman and her twins were found dead in a well in the Udaipur district of Rajasthan on Wednesday, the police said.
Summary:
An eighth-century stone sculpture of Goddess Durga and a third-century limestone sculpture will be returned to India by US' largest museum, the Metropolitan Museum of Art. The sculpture of Goddess Durga was donated to the museum in 2015.
Summary:
West Bengal CM Mamata Banerjee said that she personally called PM Narendra Modi after the Tamil Nadu government denied permission for late DMK chief M Karunanidhi's burial at Marina Beach.
Summary:
She accused her husband, an officer of the Indian Audit and Accounts Service, and his mother of harassment in a suicide note.
Summary:
The court said that a separate legislation can be brought in to stop forced begging rackets.
Summary:
This comes after the Centre argued that adultery should be a criminal offence as it threatens the sanctity of marriage.
Summary:
The Bombay High Court on Wednesday asked the Maharashtra government to explain how bringing outside food in cinema theatres can pose a security threat.
Summary:
Producer Ekta Kapoor has revealed she gets calls from politicians, bureaucrats and actors to get their relatives cast in her films and shows.
Ekta further said, "Don't ask your politician and bureaucrat uncles to get you cast.
Summary:
F1 team Force India has been rescued from administration after a consortium of investors ended Vijay Mallya's 10-year-reign at the club.
Summary:
Talking about her second-place finish at the BWF World Championships, PV Sindhu said she did not "lose gold, but won silver".
Summary:
Walmart had announced acquiring a 77% stake in Bengaluru-based Flipkart in a $16 billion deal.
Summary:
Bengaluru-based mobile app personalisation platform founded by three former Flipkart executives, Hansel.io has raised â¹27.5 crore in a funding round led by Vertex Ventures.
Summary:
The Allahabad High Court on Wednesday asked the UP government why police officers kept sending girls to Deoria shelter home which was blacklisted.
Summary:
The Delhi High Court has rejected Congress President Rahul Gandhi's plea seeking restraint on publishing news by media on National Herald case.
Rahul and mother Sonia Gandhi have been accused of misappropriation of National Herald owner Associated Journal's assets while transferring their shares to Young Indian.
Summary:
The SC today warned Amrapali Group for delaying projects saying, "DonâÂÂt try to play smart or we'll sell each and every property of yours and render you homeless." The group was asked for a valuation report of properties of its directors and managing directors in 15 days.
Summary:
After resigning as the Bihar Social Welfare Minister, Manju Verma on Wednesday said she is sure that her husband Chandeshwar will be cleared of links to the Muzaffarpur shelter home rapes.
Summary:
Punjab CM Amarinder Singh exempted ex-servicemen, senior citizens from mandatory dope tests for issuance and renewal of arms licences.
Summary:
An engineering graduate-turned-militant has been shortlisted for recruitment as sub-inspector in Jammu and Kashmir Police, four days after he was killed in an encounter.
Summary:
Non-resident Indians cannot file RTI pleas and seek information on governance from central government departments, the Centre said in the Lok Sabha on Wednesday.
Summary:
"Even though it's a small part, Rakul is keen to play Sridevi.
"Rakul...is our only choice as she's popular in the South," said producer Vishnu Induri.
Summary:
Actor-turned-politician Shatrughan Sinha has revealed that he was supposed to star in the 1975 film 'Sholay' along with Dharmendra, who had played the character 'Veeru' in the film.
Summary:
Aishwarya Rai Bachchan, while praising Alia Bhatt, said, "She's doing good work along with great opportunities which are virtually there on her lap literally, regularly." "It's fantastic...the kind of support Karan [Johar] has given to her...To have that kind of an establishment with you is very comforting," she added.
Summary:
Sania Mirza's younger sister Anam shared a video on Instagram, which showed the pregnant tennis player practising the sport in the presence of her father.
@imranmirza58 doesn't think too much of my tennis skills #zerotennisskills," Anam captioned the video.
Summary:
Spanish football club Real Madrid will invite Juventus forward Cristiano Ronaldo, who is the Spanish club's highest goal-scorer, in order to honour him for his time at the club.
Summary:
Jamaica's eight-time Olympic gold medalist, Usain Bolt, is undergoing a trial for an Australian football club, after having already given trials for clubs in Germany, Norway and South Africa.
Summary:
Federer, who named the cow 'Juliette', was presented a cow named 'Desiree' after returning to the tournament in 2013.
Summary:
Following this, a police complaint was filed and the Indian embassy in Malaysia was informed.
Summary:
Following this, he was allegedly murdered by his girlfriend's father and his two accomplices.
Summary:
Indian banks reported a total loss of about â¹70,000 crore due to frauds during the last three fiscals.
Summary:
US President Donald Trump on Tuesday hosted corporate leaders including PepsiCo's outgoing CEO Indra Nooyi and Mastercard CEO Ajay Banga at his private golf club.
Summary:
Karunanidhi was laid to rest adjacent to the mausoleum of his mentor CN Annadurai.
Summary:
Over 30 girls were raped and tortured at the Muzaffarpur shelter home that was run by Thakur.
Summary:
Five-time Tamil Nadu CM and DMK chief M Karunanidhi, who passed away on Tuesday, was a screenwriter for over 75 movies.
Summary:
Universal Studios, which is producing the film, has reportedly removed it from its release schedule.
The film was earlier scheduled to release on July 28, 2019.
Summary:
Summary:
The central government in July had asked CBI to probe Cambridge Analytica's misuse of Facebook user data.
Summary:
Reacting to Bihar shelter home rape case accused Brajesh Thakur's claims that he was framed as he was thinking of joining Congress, Bihar Congress Chief Kaukab Quadri said his statement is a joke.
Summary:
Mahindra Group Chairman Anand Mahindra has dismissed Fiat Chrysler's allegations that Mahindra Roxor looks similar to its Jeep as "baseless and without any merit." He added that Mahindra is yet to be served with a notice on the matter.
Summary:
The widow of Indian engineer Srinivas Kuchibhotla, who was killed in a hate crime at a US bar last year, has said her and her husband's "American Dream" is broken.
Summary:
A Sikh man was assaulted and spit at by two men wearing hoodies in California, US, the second such attack on a Sikh community member in a week.
Summary:
Transactions went up by around 14% to 306.42 million in June from 267.78 million in the previous month.
Summary:
Reacting to the low rating given to his recently released film 'Mulk' on IMDb, filmmaker Anubhav Sinha tweeted, "I don't give a Flying F**k!!!" "There are more people who love the film," he added.
Summary:
Gere, who will celebrate his 69th birthday at the end of this month, already has an 18-year-old son Homer with former wife Carey Lowell.
Summary:
Salman Khan's co-star from the 1995 'Veergati' Pooja Dadwal, who has been battling tuberculosis since five months, said it is only because of him that she has survived the ordeal.
Summary:
The left-arm seamer had earlier bowled to the Indian women's team before their World Cup final against England in July.
Summary:
Delhi Chief Minister Arvind Kejriwal on Tuesday described the death of former Tamil Nadu Chief Minister and DMK leader M Karunanidhi as "a great loss to the nation." He tweeted, "Feel very sad to hear about the demise of this great leader.
Summary:
Swaminathan also recalled when Karunanidhi granted him land in Chennai in 1989 for establishing a scientific institution.
Summary:
The Sri Lankan cricket board's official handle commended the fans and shared a video of the fans cleaning the stadium.
Summary:
Nicholas Bett, the former 400m hurdles world champion, has died in a car accident at the age of 28.
Summary:
A team of four Saudi women has won the first prize of â¹1.8 crore for their Android-only translation app Tarjuman at Hajj Hackathon 2018.
Summary:
South Korean electronics conglomerate Samsung is planning to invest about $22 billion to develop technologies and drive growth.
Summary:
Researchers have claimed Samsung's Galaxy S7 smartphones are vulnerable to hacking, due to a security bug 'Meltdown' discovered earlier this year.
Summary:
At that price, Tesla would have an enterprise value of about $82 billion including debt.
Summary:
A 16-year-old girl preparing for NEET allegedly committed suicide on Tuesday by hanging from a ceiling fan in her hostel room in Rajasthan's Kota, in the second such incident in the city in the last two days.
Summary:
At least 43 people were reportedly injured after a level-3 fire broke out at a Bharat Petroleum refinery in Chembur, Mumbai in the afternoon today which also resulted in explosions.
Summary:
The imam said he believed "his life was only for God to take".
Summary:
The Nifty rose to an all-time closing high for a fourth session in a row.
Summary:
The words "Here rests the man who worked without taking rest," have been embossed on the casket of late DMK chief M Karunanidhi, who passed away on Tuesday.
Summary:
The Dalai Lama said recently that the country would not have been divided between India and Pakistan if Muhammad Ali Jinnah was made the Prime Minister instead of Jawaharlal Nehru.
He was self-centred," he said, adding that Pandit Nehru was very experienced, "but mistakes do happen".
Summary:
Actress Angelina Jolie, in a court filing regarding her ongoing divorce case with Brad Pitt, accused him of not paying any "meaningful child support" since their separation.
Summary:
Karunanidhi was the chief guest at the ceremony and the Chief Minister of Tamil Nadu at the time.
Summary:
At least two persons died and 40 were injured after a stampede took place at Chennai's Rajaji Hall on Wednesday where DMK chief M Karunanidhi's mortal remains were kept.
Summary:
The brand value of the Indian Premier League soared 19% to touch $6.3 billion in 2018 from $5.3 billion last year, according to advisory firm Duff & Phelps.
Summary:
Federer was 16, training at Switzerland's national tennis centre in Biel when he threw his racquet at a courtside curtain, ripping it.
Summary:
In order to curb fake news, WhatsApp on Wednesday started rolling out the limit of forwarding messages, photos and videos to only five chats at one time in India.
Summary:
In September 2017, Japan's SoftBank led a $250 million round in Slack, valuing the platform at $5.1 billion.
Summary:
Australia-born artist Ben Taylor has made a painting depicting a parasitic worm that had infected his eye in 2013.
Summary:
The new sentences will run consecutively to another life sentence which Adam Purinton previously received in a district court.
Summary:
The school issued a show cause notice to the teacher.
Summary:
The Women and Child Development Ministry has ordered a social audit of over 9,000 child care institutions across the country in the next 60 days, a senior official said on Wednesday.
Summary:
Thirty-four minor girls aged between 7-17 years were allegedly raped at the shelter home.
Summary:
In 2012, India foiled Pakistan's bid to secure the custody of Husain, who has been imprisoned in Thailand since 2000.
Summary:
Haryana Chief Minister Manohar Lal Khattar on Tuesday announced that the state government would provide land free of cost to those gurukuls which provide free education to children.
Summary:
The fund, which has over $250 billion in assets, reportedly approached Musk about buying newly issued shares but Tesla declined.
Summary:
Late actor Amrish Puri's grandson Vardhan Puri, who is set to make his Bollywood debut with a romantic thriller, said, "Dadu is the God whom I pray to.
Summary:
Indian cricketer Mahendra Singh Dhoni has acquired a 25% stake in Chennai-based sports-tech startup Run Adam for an undisclosed amount.
Summary:
The Indian bowling coach Bharat Arun has said that the less Indian all-rounder Hardik Pandya bowls, the better it would be for India, as it would mean a better performance from other bowlers.
Summary:
Summary:
Condoling the death of DMK chief M Karunanidhi, billionaire Anand Mahindra described him as a giant among the male politicians of Tamil Nadu.
Summary:
Federer was continuously ranked in the top ten from October 2002 to November 2016, having made his professional debut in 1998.
Summary:
Moviebook offers a platform that develops technology to support online video services.
Summary:
Richard Branson-led Virgin Hyperloop One has announced it is planning to build a $500 million research centre in Spain.
Summary:
A 24-year-old computer science graduate, who posed as an author and official of an aviation firm, Tarun Poddar was arrested on Tuesday for duping a woman of â¹8.5 lakh.
Summary:
Fire and rescue service in Derbyshire, UK, have captured on camera a fire tornado while tackling a fire at a factory manufacturing plastic crates for supermarkets.
Summary:
Make the #SmartestMove & get 1-year of Amazon Prime membership at no extra cost with Vodafone RED Postpaid plans starting at Rs.399.
Summary:
Five-time Tamil Nadu CM and DMK Chief M Karunanidhi, who passed away aged 94, became the first CM on August 15, 1974, to hoist the National Flag.
Summary:
Former DMK chief and five-time Tamil Nadu Chief Minister M Karunanidhi had moveable assets worth â¹13.42 crore, and owned no car, house or agricultural land.
Summary:
The investment valued Snap at $10.8 billion, much lower than its $17-billion market cap.
Summary:
The girls rescued from the shelter home in Uttar Pradesh's Deoria told counsellors that they were told to wake up before 5 am and had to clean the house three times in a day.
Summary:
A total of 1,675 girls were reported missing at police stations across the 75 districts of the state last year.
Summary:
Priyanka Chopra shared pictures with the team of her upcoming film 'The Sky Is Pink' on Twitter and wrote, "Some stories just need to be told." She added the film was "in the spirit of Aisha Chaudhary and her incredible parents Aditi and Niren".
Summary:
DMK chief M Karunanidhi, who passed away on Tuesday at the age of 94, was an avid cricket follower and often cancelled meetings to watch cricket matches with colleagues.
Summary:
A video of the incident showed policemen and locals watch the pilgrims wreck the car without stopping them.
Summary:
Apple Co-founder Steve Jobs had told PepsiCo's outgoing CEO, Indra Nooyi, to not to be too nice when she reached out to him for advice after taking over the role in 2006.
Summary:
Apple said iPhones do not record audio while listening for the wake-up command "Hey Siri", and users need to explicitly approve microphone access.
Summary:
Tesla CEO and Co-founder Elon Musk's net worth went up by $1.43 billion on Tuesday after a 61-character tweet, which said he was considering taking the electric carmaker private for $420 a share.
Summary:
Summary:
Police have arrested a 32-year-old cab driver in Uttar Pradesh's Ghaziabad for allegedly raping a 5-year-old girl while drinking and watching porn videos and then killing her on August 2.
Summary:
Opposing Delhi government's order directing them to pay a minimum wage of â¹20,000 to nurses, private hospitals and nursing homes said in Delhi High Court that the order would "render their business unviable".
Summary:
Summary:
"I have a special unit that will monitor you for the rest of your lives," Duterte told the officials.
Summary:
He entrapped the girl, who is now 28, and allegedly deceived her into having sex by claiming to be possessed by the jin (spirit) of a young boy, police said.
Summary:
Saudi suspended ties with Canada after the North American nation criticised the arrest of human rights activists in the kingdom.
Summary:
It's nice to be happy, but never be satisfied when you are a batsman," Sachin added.
Summary:
DMK leader MK Stalin broke down as he came to know that the Madras High Court has allowed his late father M Karunanidhi's burial near Anna Memorial at Chennai's Marina Beach.
Summary:
A consortium of investors led by Canadian billionaire Lawrence Stroll has agreed a deal to bring Force India Formula One team out of administration, effectively ending Vijay Mallya's over 10-year reign.
Summary:
Mahindra Group Chairman Anand Mahindra shared a video of shuttler B Sai Praneeth pulling off a no-look shot against Japan's Kento Momota in the Badminton World Championships.
Summary:
Off-spinner Ravichandran Ashwin took to social media to share a picture of himself with English novelist Jeffrey Archer at the High Commission of India in London.
Summary:
German startup Sono Motors has started testing its all-electric car Sion that has 330 solar cells attached to its body.
Summary:
The molecule facilitates an ion exchange in the sperm cell and turns it alkaline.
Summary:
A foetus was found aboard an American Airlines plane at New York's LaGuardia Airport on Tuesday.
Summary:
The Madras High Court dismissed all petitions against burials at the Marina Beach, and allowed DMK chief and former CM M Karunanidhi to be buried there.
Summary:
Former DMK chief M Karunanidhi, on his 86th birthday in 2010, had donated his Gopalapuram residence to a trust for running a free hospital for the poor, after his and his wife's lifetime.
Summary:
The BCCI took to Twitter to share a picture of Team India members at High Commission of India in London, featuring captain Virat Kohli's wife Anushka Sharma.
Summary:
Summary:
Summary:
Prime Minister Narendra Modi today visited the Rajaji Hall in Chennai to pay his last respects to DMK chief M Karunanidhi, who died aged 94 on Tuesday.
Summary:
DMK chief M Karunanidhi, who passed away on Tuesday at the age of 94, was popularly known as 'Kalaignar', which means 'scholar of arts' and pronounced as 'Ka-lai-nyar'.
Summary:
DMK wants to bury its late party chief and five-time Tamil Nadu CM M Karunanidhi within the Anna Memorial at Marina Beach, where his mentor CN Annadurai is buried.
Summary:
Summary:
Tesla Co-founder and CEO Elon Musk announced on Tuesday that he is "considering taking the company private" as being public "can be a major distraction" for shareholding employees.
Summary:
A group of school children in Haryana's Mahendragarh were seen constructing roads near a government school.
Summary:
Sneha Reddy, a Computer Science graduate from IIT Hyderabad, has bagged an annual salary package of â¹1.2 crore from Google.
Summary:
Australia's population hit a record 2.5 crore on Tuesday, almost a decade earlier than projected.
Summary:
Police officials said that the ammunition and firearms were worth more than $19,000 (â¹13 lakh).
Summary:
John Abraham has said his wife Priya Runchal isn't interested in hogging the limelight.
"She's [the] one who has chosen to stand back and say, 'I'm not interested in this space of hogging the limelight.
Summary:
Actress Sanya Malhotra, who portrayed Babita Phogat in 'Dangal', has said that she was not expecting such a great response from the industry or the audience after the film's release.
Summary:
Former Indian cricketer Virender Sehwag indirectly called for Cheteshwar Pujara's inclusion in Team India for the second Test, tweeting, "Pope likely to play for England.
Should India play Pujara in the second test?
Summary:
A film student filmed England all-rounder Ben Stokes knocking a man out during a late-night street brawl outside a pub in Bristol, a court heard.
Summary:
Snapchat CEO Evan Spiegel revealed the photo-sharing app lost 2% of its 191 million daily active users during the April-June period due to "disruption caused by the redesign".
Summary:
In a bid to end the taxi issue in Goa, the state government has launched its own app-based taxi service 'GoaMiles'.
Summary:
Mercedes-Benz parent Daimler on Tuesday said it was halting business activities in Iran in reaction to renewed US sanctions.
Summary:
Bengaluru-based e-commerce and hyperlocal B2B logistics startup Shadowfax has raised $22 million in Series C funding.
Summary:
The round was led by Battery Ventures, with participation from CRV, Lightspeed Venture Partners, and Tusk Ventures.
Summary:
The Milan Red claims to go from 0-100 kmph in less than 2.5 seconds with a top speed of 400 kmph.
Summary:
The man, who missed his flight, said that he and his girlfriend had purchased the vibrator two weeks ago.
Summary:
The Civil Aviation Ministry is in discussions with the Finance Ministry for a â¹11,000 crore bailout package for debt-ridden Air India, according to reports.
Summary:
Reliance Naval is seeking a refund of the invoked amount, along with â¹105 crore as payment for the vessel.
Summary:
The Madras High Court has agreed to hear an urgent plea filed by the DMK at 10:30 pm on Tuesday over allotting burial space for five-time CM M Karunanidhi near Anna Memorial at Marina Beach.
Summary:
Summary:
The DMK leader, who never lost an election, passed away after a prolonged illness.
Summary:
The logo of the film 'Sui Dhaaga- Made in India', starring Anushka Sharma and Varun Dhawan, has been made by 15 skilled artists and artist groups skilled in different art forms across India.
Summary:
Actress-turned-politician Hema Malini, while tweeting on the demise of DMK chief M Karunanidhi, wrote, "India has lost a towering personality, an elder statesman, a seasoned politician in the passing of Karunanidhiji this evening." "It is an irreparable loss for the DMK & for Tamil Nadu politics in particular.
Summary:
Four of the five petitions against former CM J Jayalalithaa's memorial on Marina beach were withdrawn on Tuesday amid protests over denial of burial space at the beach for five-time TN CM M Karunanidhi.
Summary:
Calling five-time Tamil Nadu CM M Karunanidhi an "expression of the voice of the Tamil people", Congress President Rahul Gandhi said he deserves to be buried at the Marina Beach like former CM J Jayalalithaa.
Summary:
A bowler who deliberately threw the ball to the boundary to deny an opposition player the chance to score his maiden hundred in an English club cricket match has been banned for nine matches.
Summary:
The tweet pushed Tesla's shares 6% higher.
Summary:
Earlier, 21 DMK workers had died of shock after hearing about the DMK chief's illness.
Summary:
The bank had reported its highest ever quarterly loss of â¹13,417 crore in the quarter ended March 2018.
Summary:
Shabana further said, "I don't feel there is any need to include an item song in movies."
Summary:
Indian chess Grand Master Vishwanathan Anand revealed that when he was crowned World Champion for the first time, the late DMK chief M Karunanidhi felicitated him and presented him with a chess set that he cherishes.
Summary:
The former England captain said that he was also surprised by India's decision to leave out Cheteshwar Pujara.
Summary:
PM Narendra Modi is the foster father." Accusing the BJP of trying to hijack it for political gain, Gogoi said all "genuine" Indians should be included in it.
Summary:
On the request of the Tamil Nadu government, the Home Ministry is sending additional paramilitary forces including Central Reserve Police Force (CRPF) personnel to the state following DMK chief M Karunanidhi's demise in Chennai.
Summary:
Summary:
The Bihar government will take over the functioning of all district-level shelter homes in the state from the control of NGOs in a phased manner, CM Nitish Kumar has said.
Summary:
India's e-commerce firms Amazon Seller Services and Flipkart are reportedly lobbying the government to scrap the draft e-commerce policy, which recommends strict restrictions on online retail, including curbs on discounts.
Summary:
"They were registered falsely by the shelter home owner to draw aid," officials added.
Summary:
Following this, her family accused her husband and in-laws of murdering her and hanging her body to pass it off as a case of suicide.
Summary:
Two balloons with the words 'Pakistan' and 'I Love' written on them were recovered on Monday in Rajasthan's Sri Ganganagar district, the police said.
Summary:
PM Narendra Modi today said BJP will observe "social justice fortnight" from August 15 to 30 and "social justice week" from August 1 to 9, starting next year.
Summary:
She also accused him of thrashing her and not allowing her to leave the hotel even though she had to fly to Delhi.
Summary:
A German woman has been sentenced to 12 and a half years in prison for selling her son to paedophiles on the darknet.
Summary:
The government on Tuesday doubled the import duty on as many as 328 textile products to 20% to boost local production.
Summary:
The changed policy reportedly helped ICICI keep bad loan ratios low in FY17.
Summary:
Citing legal issues, the Tamil Nadu government has announced that five-time CM M Karunanidhi cannot be buried near Anna Memorial at Chennai's Marina Beach as requested by the DMK leader's family.
Summary:
Pakistan's Election Commission has withheld the victory notifications of PTI chief Imran Khan from the Islamabad and Lahore constituencies.
Summary:
Actor Imran Khan has shared a screenshot of an email he received, which was addressed to Pakistan Tehreek-e-Insaf (PTI) chief Imran Khan.
The email addressed to the PTI chief was a request to let the individual be a part of the politician's team.
Summary:
Salman Khan has revealed his father Salim Khan always gave him and his brothers the permission to spend time with their girlfriends at home rather than "roaming around the city".
Summary:
"My instructions are that we don't want to change [it]," said Netflix's advocate.
Summary:
The study found that second-placed United, could have finished fourth behind Liverpool and Tottenham.
Summary:
Summary:
NCP's Vandana Chavan is likely to be the Opposition candidate in the election for the post of Deputy Chairperson of Rajya Sabha, as per reports.
The post of the deputy chairman has been vacant since June this year following the retirement of PJ Kurien.
Summary:
Summary:
Congress President Rahul Gandhi on Tuesday tweeted, "In his passing, India has lost a great son" after DMK chief M Karunanidhi passed away aged 94 in Chennai.
Summary:
The UK has rejected India's request to ban a pro-Khalistan event in London to be held later this month.
Summary:
After DMK chief M Karunanidhi's demise, President Ram Nath Kovind tweeted, "Extremely sad to learn of the passing of Thiru M.
Summary:
The family of the 17-year-old Unnao rape victim has been denied a â¹5 lakh insurance claim which they sought under a UP government scheme.
Summary:
The Tamil Nadu government has announced that the state will hold a seven-day mourning as a mark of respect following the demise of DMK chief M Karunanidhi in Chennai today.
Summary:
Filmmaker Milap Zaveri, who directed the 2016 adult comedy film 'Mastizaade', has said he will never direct a sex comedy again.
Milap further said, "I have nothing against the genre.
Summary:
Comedian Shiggy, whose video led to the viral 'Kiki challenge', has said dancing outside moving cars was not his idea.
Summary:
The Pakistan cricketers across the board's central contract have received a hike in their salaries, varying between 25% to 30%.
Summary:
USA's 22-year-old NASCAR driver Chase Elliot received help in the form of a push by seven-time champion Jimmie Johnson during the former's victory lap following his maiden win.
Summary:
A team of researchers in China used a gene editing technique to get silkworms to produce spider silk.
Summary:
Ten people have been arrested for the alleged lynching of a 29-year-old man in Dindori district, Madhya Pradesh.
Summary:
Prime Minister Narendra Modi will travel to Chennai on Wednesday to pay his last respects to DMK chief M Karunanidhi, who passed away aged 94 today in Chennai.
Summary:
A PG medical student who had accused three SV Medical College professors of sexual harassment has allegedly committed suicide by hanging herself in Andhra Pradesh's Chittoor district.
Summary:
Summary:
Razak was arrested last month and charged with abuse of power and criminal breach of trust.
Summary:
The death toll from a 6.9-magnitude earthquake that hit Indonesia's island of Lombok on Tuesday has risen to 105, Indonesia's disaster mitigation agency said.
Summary:
The China Daily responded to Trump's comment on the recent fall in Chinese stocks, claiming that the "tariffs are working far better than anticipated".
Summary:
Dunkin' Donuts has brought down store count in India by more than half to 37 as of June from 77 stores two years earlier.
Summary:
DMK chief M Karunanidhi passed away aged 94 at Kauvery Hospital in Tamil Nadu's Chennai on Tuesday, where he was admitted last month after his blood pressure dropped.
Summary:
DMK chief M Karunanidhi, who passed away aged 94 after multiple-organ failure, was the Chief Minister of Tamil Nadu five times and never lost an election in his life.
Summary:
Aishwarya Rai Bachchan said that Salman Khan was originally meant to play the role of her twin brother in the 2000 film 'Josh' but the cast kept changing at different points of time.
Summary:
Summary:
Former India captain MS Dhoni has said his successor Virat Kohli is "close to a legend".
"Virat is the best...I am very happy for him.
Summary:
ICC CEO Dave Richardson said cricket needs players like Rahul Dravid and MS Dhoni, as much as aggressive ones like Virat Kohli.
Summary:
After DMK Chief M Karunanidhi passed away at 94 in Chennai, PM Narendra Modi tweeted, "We have lost a deep-rooted mass leader, prolific thinker, accomplished writer and a stalwart." "His life was devoted to the welfare of the poor and the marginalised," he added.
Summary:
Responding to former Jammu and Kashmir CM Omar Abdullah's tweet on who she will support as Rajya Sabha Vice Chairman, PDP's Mehbooba Mufti tweeted a lying face emoji.
Summary:
Hong Kong-based startup which runs a travel activities platform for booking tickets, arranging flights and hotels, Klook on Tuesday raised $200 million at a valuation of $1 billion.
Summary:
Ahir further said that there were 133 attempts of infiltration from terrorists.
Summary:
Delhi Metro Rail Corporation (DMRC) collected â¹38 lakh in fine from people sitting on the metro floor from June 2017 to May 2018, an RTI reply revealed.
Summary:
The Delhi government has approved a proposal to increase the MLA Local Area Development (LAD) fund to â¹10 crore annually.
Summary:
One of the 24 rescued Uttar Pradesh Deoria's shelter house inmates, where women including minors were physically and sexually abused, said visitors distributed sweets before taking the children away.
Summary:
The Delhi High Court on Tuesday asked the CBI to find out who allowed the iconic 108-foot Hanuman statue to be built illegally on public land's pavement in the city.
Summary:
Saudi Arabia has suspended all scholarship and education programmes for its students studying in Canada and announced that it will transfer the students to other countries.
Summary:
In a series of photos published by Spanish media on Monday, terrorists linked to the 2017 attack in Spain's Barcelona can be seen preparing bombs and smiling at the camera.
Summary:
After announcing that she is stepping down as PepsiCo CEO after 12 years, Indra Nooyi has ruled out joining politics.
"The last 24 years, the PepsiCo family always came first.
Summary:
Summary:
India's ODI vice-captain Rohit Sharma commented on spinner Kuldeep Yadav's Instagram post, to which Yadav responded with, "@rohitsharma45 missing your company rohit bhai".
Summary:
Former UFC women's champion Ronda Rousey said that WWE is more like "movie choreography" and compared the fights to performing theatre in New York's Broadway.
Summary:
Former Indian captain MS Dhoni revealed that he took the ball from the umpire after the end of the 3rd ODI against England to study the swing of the ball towards the end of the innings.
Summary:
Space exploration startup SpaceX has successfully reused its Falcon 9 Block 5 booster for the first time to launch a satellite to the geostationary orbit.
Summary:
Awards for the hackathon include recognising top 10 winners, with a total prize of over â¹2 crore, NITI Aayog said in a statement.
Summary:
Gurugram-based sanitary pad startup Carmesi has raised â¹3.4 crore in pre-Series A round of funding led by Samrath Bedi, Executive Director of beauty brand Forest Essentials.
Summary:
A nine-year-old boy from a private school in Delhi was allegedly molested by three senior students in a school bus on three different occasions, the police said today.
Summary:
As per available inputs, the merchant vessel involved in the collision appeared to be an Indian registration vessel, said authorities.
Summary:
A judge in Brazil has ordered to prevent Venezuelan immigrants from entering the country through the border state of Roraima.
Summary:
The 94-year-old was admitted to the hospital with low blood pressure last month.
Summary:
Slamming the Centre over lack of women's safety, Congress President Rahul Gandhi has said, "Daughters need to be saved from BJP MLAs." Addressing a meeting of Congress' women's wing, he claimed crimes against women that took place in the last four years had not happened in the last 70 years.
Summary:
Neighbours of Girija and Mohan Tripathi, who were arrested for sexual exploitation of girls at a shelter in Deoria run by them, said the couple got "rich quickly" after opening an NGO.
Summary:
A Madhya Pradesh Group D civic employee, Aslam Khan was found in possession of assets worth â¹4 crore, including â¹22 lakh cash, gold and silver, after police raided his premises on Monday.
Summary:
Outgoing TRAI chief RS Sharma on Tuesday asserted that disclosing Aadhaar number does not increase one's digital vulnerability.
Summary:
At least two militants were killed while four militants ran back to the Pakistan-occupied Kashmir.
Summary:
The girl ran straight to the police station when the home's owner got busy on a call.
Summary:
This comes days after the release of Assam National Register of Citizens' final draft, which aims to identify illegal immigrants.
Summary:
The Supreme Court on Tuesday pulled up two Assam National Register of Citizens (NRC) officials for speaking to the media without its permission.
Summary:
A Japanese medical university has admitted that it manipulated entrance exam scores to keep female students out.
Summary:
The Gujarat High Court has allowed a man without Aadhaar card to submit a hard copy of his Income Tax Return to the I-T Department.
Summary:
"I'm married to someone who belongs to a film family.
I didn't grow up being on film sets and not privileged enough to learn all this but I'm catching up," he added.
Summary:
Johar further said, "Sometimes your eyes too depict your heart's tale and many of them, whose eyes speak volumes, they've been through that journey."
Summary:
Directed by Imtiaz's younger brother Sajid Ali, the film will release on September 7.
Summary:
Shahid Kapoor and Kiara Advani will be starring in the recreation of Prabhudeva's song 'Urvashi', from the 1994 Tamil film 'Kadhalan', which was later dubbed in Hindi.
Summary:
After failing to pick the wicket of Indian captain Virat Kohli in the first Test, English pacer James Anderson said that he will look to devise new tricks against Kohli in the Lord's Test.
Summary:
Former Australian pacer Glenn McGrath gave advice to age-group cricketers from Haryana, revealing that he helped the Haryana cricketers with their action.
Summary:
Responding to reports claiming Google was planning to re-enter the Chinese market, China's leading search engine Baidu's CEO Robin Li has said the company is ready to beat Google if it returns to the country.
Summary:
Social media major Facebook has denied reports claiming it is actively asking the US banks for details of users' financial transactions.
Summary:
Madhya Pradesh Congress leader Deepak Babaria told his party members to learn discipline from RSS, after they were involved in a brawl over a chair.
Summary:
The partnership entitles Mahavir Group to assemble and manufacture Benelli bikes and also import the bikes.
Summary:
The hospital said that Karunanidhi's response in the next 24 hours is crucial.
Summary:
Two fishermen brothers in Maharashtra have sold a 30-kg 'ghol' fish, also called 'fish with a heart of gold', for â¹5.5 lakh at an auction.
Summary:
Nikolas Cruz said he was in constant battle with the voice, that told him to "burn, kill and destroy".
Summary:
The West Hollywood City Council in the US has voted unanimously to remove US President Donald Trump's star from the Hollywood Walk of Fame.
Summary:
Pakistani cricketer-turned-politician Imran Khan's stepdaughter Mehrunnisa Hayat has joined his Pakistan Tehreek-e-Insaf (PTI) party.
Summary:
The 2017 World Champion weightlifter Mirabai Chanu has been ruled out of the upcoming Asian Games after failing to recover from a lower back injury.
Summary:
This will be Ola's first foray in Europe, after it begun overseas operations launching in Australia earlier this year.
Summary:
Railways officials have said that they received more 'good morning' and 'good evening' messages than complaints on their WhatsApp helpline numbers.
Summary:
Actress Priyanka Chopra has said it is her "dream to be able to play a man".
She's basically playing a man."
Summary:
Salman Khan, while talking about Priyanka Chopra quitting 'Bharat', said that whatever it is, be it her wedding, if she wants to work only in Hollywood or if she doesn't want to work in India, it's her reason.
Summary:
Juhi Parmar, who played the lead role in television show 'Kumkum', while talking about being a single parent, said, "I've been a single parent for the last two years.
Summary:
Directed by Neeraj Pathak, the film is scheduled to release on October 19.
Summary:
It also has an 'App Timer' that lets users set time limits on apps and greys out the icon when the time is up.
Summary:
Addressing the Congress Parliamentary Party meeting, Congress President Rahul Gandhi on Tuesday described India as a train that was being driven to disaster by "an autocratic, incompetent and arrogant driver".
Summary:
A child rescued from a shelter home in Uttar Pradesh's Deoria has claimed that they were told that the fellow inmates were being taken to Spain.
Summary:
The Bombay High Court has rejected 1993 Mumbai bomb blast convict Abu Salem's plea for 45-day parole to get married to a Mumbai-based woman.
Summary:
Amid the ongoing diplomatic row between Saudi Arabia and Canada, a verified Saudi Twitter account posted a 9/11-like image showing an Air Canada flight heading towards Toronto's CN Tower.
Summary:
Trump added that the new economic sanctions imposed against Iran were "the most biting sanctions ever imposed".
Summary:
As per reports, seven Indian companies have secured permission from US' Food and Drug Administration, to produce sildenafil citrate, the formula used in Viagra, meant for treating erectile dysfunction.
Summary:
The Anand Mahindra-led automaker's revenues came in at â¹13,358 crore, showing a year-on-year growth of 23%.
Summary:
The new unit, which will manufacture components solely for Xiaomi, could generate 6,000 jobs in three years.
Summary:
Meghna Gulzar will be making a web series based on former Mumbai Police Commissioner Rakesh Maria's life who cracked cases like 1993 Bombay serial blasts and Zaveri Bazaar twin blasts case of 2003.
Summary:
Kamal Haasan, while talking about his upcoming film 'Indian 2', has said that he has been told Ajay Devgn is a part of the film.
Summary:
Denying Priyanka Chopra's exit from Sanjay Leela Bhansali's film, which was reportedly based on female gangster Gangubai Kothewali, his spokesperson has said no such film has been discussed.
Summary:
The procedure will involve people holding a card with their facial data at security check points.
Summary:
After Indian Under-16 and Under-20 football teams registered victories against Iraq and Argentina respectively, Indian cricketer Harbhajan Singh tweeted, "Indian football is showing the world what we're made up of!" India U-20 defeated the most successful team in FIFA U-20 World Cup history, Argentina, 2-1 despite being reduced to 10 men.
Summary:
Google on Monday officially released Android 'Pie' as the latest version of the Android operating system, succeeding Android Oreo.
Summary:
BJP MP Subramanian Swamy has slammed Congress MP Shashi Tharoor for calling Naga headgears "outlandish", saying he looks like a waiter when he wears "suit-boot".
Summary:
In this calendar year, the Mauritius-based company invested â¹170 crore in MakeMyTrip India which contributes about 85% to its revenues.
Summary:
Slamming Bihar government over the Muzaffarpur shelter home rape case, the Supreme Court said, "'Who is giving money to the shelter home in the state?" Speaking about the rising incidents of rapes in the country, the apex court added that women are being raped left, right and centre.
Summary:
Uttar Pradesh Women and Child Welfare Minister Rita Bahuguna has said that the government will have details of the 18 girls missing from the Deoria shelter home in Uttar Pradesh within 48 hours.
Summary:
A British tourist in Dubai has been fined over â¹32 lakh for breaking the speed limit 33 times while driving a rented Lamborghini Huracán.
Summary:
Slamming civic authorities for poor waste management in Delhi, the Supreme Court said that the authorities should dump the waste in front of Lieutenant Governor Anil Baijal's residence.
Summary:
Replying to a query on facing political pressure, Assam National Register of Citizens' Coordinator Prateek Hajela on Monday said he was like the character Arjun from the Hindu epic Mahabharata who only saw the eye of the fish.
Summary:
Former Indian cricket team captain Sunil Gavaskar has revealed that only Ajinkya Rahane from current Team India cricketers takes his tips on batting.
Summary:
Delhi Police have arrested two women who allegedly cried for help and then robbed a motorcyclist of his wallet after he came to help them.
Summary:
A 70-year-old man was crushed to death after a toilet wall collapsed in the second class passengers' waiting room on platform 1 at the Patna Junction railway station on Tuesday.
Summary:
The oath-taking ceremony for the newly-elevated Supreme Court judges Indira Banerjee, Vineet Saran and KM Joseph took place in that order on Tuesday.
Summary:
Nearly 17 lakh government employees in Maharashtra have decided to begin a three-day strike from Tuesday to demand the implementation of the 7th Pay Commission recommendations.
Summary:
Police has arrested a Delhi wig trader for allegedly robbing his rival of 200 kg hair worth â¹25 lakh at a gunpoint.
Summary:
A couple in Uttar Pradesh's Moradabad allegedly killed their 6-year-old malnourished daughter after a tantrik advised them their next child would be healthy if they bury her.
Summary:
Madhya Pradesh Chief Electoral Officer VLK Rao has said people with non-bailable warrants pending against them for over six months might lose their voting rights in the state assembly elections if they failed to appear in person after being served the notice.
Summary:
In 2013, an image of Xi walking with then US President Barack Obama was posted alongside a picture of Pooh walking with Tigger.
Summary:
This comes after Pakistan Tehreek-e-Insaf, the single largest party in the recently held general elections, nominated Imran Khan as its PM candidate.
Summary:
The Mendocino Complex Fire in California, which consists of two wildfires, has become the largest in the US state's history.
Summary:
Rana Daggubati, who'll be portraying TDP chief and Andhra Pradesh's CM Chandrababu Naidu in Nandamuri Taraka Rama Rao's upcoming biopic, met him as part of the preparation for the film.
Summary:
Rajkummar Rao, while talking about the performance of his film 'Fanney Khan', said, "We can't always make films which will get a five-star rating." "That people couldn't connect to the story, is a momentary [setback].
Summary:
Summary:
The Bharat Army, the official Indian cricket supporters' group, took to Twitter to share a video of their members delivering refreshments for the players on an autorickshaw during their cricket match against 'The Barmy Army'.
Summary:
Twenty-three-time Grand Slam champion Serena Williams took to social media to open up about her struggles with postpartum depression, saying she "felt like she wasn't a good mom" last week.
Summary:
Indian tennis player Rohan Bopanna took to Twitter to take a dig at media for their coverage following shuttler PV Sindhu's silver-medal finish at the Badminton World Championships.
Summary:
This comes after various media organisations used one of the posts from the account and attributed all the quotes in it to Ganguly.
Summary:
ICC CEO Dave Richardson has said that ball-tampering and sledging threatens "cricketâÂÂs DNA" and wouldn't be tolerated by fans in the wake of the Australia's ball-tampering scandal.
Summary:
Facebook has reportedly asked large US banks to share detailed financial information about their customers, as part of an effort to offer new services to users.
Summary:
Around 20 MNS workers on Monday entered a multiplex in Mumbai with packets of samosas in order to protest against its management for not allowing outside food.
Summary:
A new service offered by two Russian startups 'Toplivo v Bak' and 'Pump' allows users to order their fuel online and have it delivered to their vehicles.
Summary:
Jet Airways has reportedly rolled back its proposal to cut salaries by up to 25% of its non-management staff after protests from employees including pilots and engineers.
Summary:
Google on Monday announced 'Pie' as the name for the latest version of the Android operating system, succeeding Android Oreo.
Summary:
An Uttar Pradesh constable was granted leave after he applied for it allegedly claiming that Lord Shiva's snake perched on Shivlinga had been appearing in his dreams indicating him to offer 'jalabhishek' at Haridwar.
Summary:
The Pakistan Tehreek-e-Insaf has officially nominated Imran Khan as the party's PM candidate.
We will approach overseas Pakistanis for repayment of debts," Khan said following nomination.
Summary:
Amid ongoing protests over death of two teenagers mowed down by a bus, Bangladesh's Cabinet on Monday approved a new road safety law and promised to consider death penalty for deliberately causing accidents.
Summary:
Nearly 3,000 pieces of military equipment including guns, swords and grenades believed to date back to WWII have been found buried at an elementary school in Tokyo, Japan.
Summary:
Maruti Suzuki will supply 20,000 to 25,000 Baleno cars each year to Toyota India, making it the first cross-badged product of the two automakers, according to reports.
Summary:
Anil Ambani-led Reliance Communications expects to complete its â¹25,000-crore assets sale by August-end and has also agreed to pay â¹550 crore to settle dues with Sweden's Ericsson.nThe Supreme Court had, on August 3, approved the settlement arrived at between RCom and Ericsson.
Summary:
British millionaire Perry Mansukhlal Kansagra has been charged with manslaughter after 48 villagers died when a dam burst on his 33,000-acre farm in Kenya.
Summary:
Priyanka Chopra has said that her personal life is not for public consumption, while adding, "90% of my life is for public consumption but 10% is for me." "My family, friendship, my relationships are things I don't...need to defend or explain to anyone," she added.
Summary:
The film that will reportedly feature two male leads will also star actor Ranveer Singh.
Summary:
A video of several England fans mocking Indian cricket team after its defeat in the first Test at Edgbaston has surfaced online.
Summary:
Slamming opener Shikhar Dhawan's approach in Test cricket, ex-Team India captain Sunil Gavaskar said, "Shikhar simply does not want to change his game." "Till a player makes a mental adjustment, he will continue to struggle against the red ball in overseas condition," Gavaskar added.
Summary:
Talking about comparisons between Hardik Pandya and Kapil Dev, former Indian cricket team captain Sunil Gavaskar said that the 1983 World Cup-winning captain should not be compared with anyone.
Summary:
Thanks for thinking of me, my friend!" Kambli had compared his friendship with Sachin to that of characters 'Jai' and 'Veeru' in 'Sholay' film.
Summary:
Sachin Tendulkar's son Arjun Tendulkar, who recently made his debut for India Under-19, shared a picture on Instagram of himself having lunch with England women's cricketer Danielle Wyatt in England.
Summary:
Summary:
Dubbed the SSO-A mission, the payload includes 15 larger microsatellites and 56 smaller standardised satellites known as CubeSats.
Summary:
WhatsApp has said it is building a local team in India as part of the company's efforts to curb spreading of fake news in the country.
Summary:
While speaking in the Delhi Assembly, BJP MLA OP Sharma on Monday told AAP leader Amanatullah Khan, "Stop talking like a terrorist." Khan, who had criticised government officers and raised the issue of water shortage in his constituency, walked out of the Assembly.
Summary:
BJP MLA Mithilesh Kumar Tiwari on Monday called Congress President Rahul Gandhi and RJD leader Tejashwi Yadav "Bunty and Babli".
Summary:
Summary:
Accusing the BJP-led Centre of unleashing "super emergency", several Trinamool Congress leaders staged a dharna outside the Parliament.
The TMC also criticised the BJP, and accused the Centre of using the CBI and the ED to "crackdown" on opposition party leaders.
Summary:
The students were allegedly given â¹100 each not to complain about the matter.
Summary:
He later killed himself, while his neighbour was admitted to the hospital, where she is out of danger.
Summary:
A fuel tanker explosion resulting from a collision on a motorway near Bologna airport in northern Italy has been captured on camera.
Summary:
The couples met at the Twins Day festival last year.
Summary:
The bill also increases the minimum punishment for rape from 7 years to 10 years.
Summary:
The Rajasthan High Court has acquitted a woman accused of murdering a child on the grounds that she was suffering from insanity triggered by premenstrual stress syndrome (PMS) at the time of the crime.
Summary:
Both Priyanka and Nick were originally photographed with Indonesian singer Afgansyah Reza separately.
Summary:
The girl accused Ghosh of raping her on the pretext of marriage and claimed they were in a relationship for three years.
Summary:
The government has written to telecom companies asking them to explore ways that could be used to block Facebook, WhatsApp and other social media apps in the country.
Summary:
Senior Congress leader and long-time aide of former Prime Minister Indira Gandhi, RK Dhawan passed away at the age of 81 years in Delhi on Monday.
Summary:
Karnataka CM HD Kumaraswamy has ordered a re-test for nearly 3,000 people who were unable to write the exam for police constable posts due to a train delay.
Summary:
After the bodies of family of four were found stacked in a pile, the Kerala Police have revealed that they were murdered over rivalry by a man who practised black magic.
Summary:
A secret staircase connected the Bihar's Muzaffarpur shelter home, where 34 minor girls aged between 7-17 years were allegedly raped, to a printing press owned by the prime accused Brajesh Thakur.
Summary:
PepsiCo CEO Indra Nooyi, who announced on Monday that she is resigning on October 3, said, "Today is a day of mixed emotions for me." "PepsiCo has been my life for 24 years & part of my heart will always remain here," Nooyi added.
Summary:
Saudi Arabia's Aviation Investigation Bureau has said that a Jet Airways flight attempted to take off using full power from a taxiway parallel to the designated runway at Riyadh airport last week.
Summary:
Confirming the news of his wedding to girlfriend Ekta Kaul, Sumeet Vyas said that they are "planning a warm and intimate wedding ceremony".
I am happy that I am marrying Sumeet," said Ekta, while talking about her wedding.
Summary:
Anil Kapoor, while talking about whether he wants any biopic on his life or not, said, "Nobody will want to see my biopic.
Talking about his career, he revealed, "I did some films because I needed the money.
Summary:
"What matters is, what you are doing in the film and it matters what kind of films you are working in," she further said.
Summary:
John Abraham, while talking about taking risks in the film industry, said, "Today's young crop of actors only want to work with A-list directors because outside of them, they are scared that they will fail." "It [trying different films and directors] doesn't matter to me.
Summary:
Summary:
Aishwarya Rai Bachchan has revealed that 'Fanney Khan' is her first film that her 6-year-old daughter Aaradhya has watched.
Summary:
Stokes was initially arrested on suspicion of causing actual bodily harm.
Summary:
In indoor cricket, each side has eight players who bat in pairs for set four-over blocks, one innings lasts 16 overs and each player bowls two overs.
Summary:
China has launched a new generation supercomputer prototype Sunway that can execute a quintillion (a thousand raised to the power of six) calculations per second.
Summary:
The party's district incharges were directed to include more Dalit and OBC workers to strengthen the vote bank, reports added.
Summary:
After a Muslim man was forced to shave his beard in Gurugram, AIMIM President Asaduddin Owaisi threatened the accused saying, "We will convert you to Islam and will make you keep a beard".
Summary:
Summary:
The Directorate of Revenue Intelligence seized 1,125 endangered Indian star tortoises at the Visakahapatnam Railway Station in Andhra Pradesh.
Summary:
The girl told her family about the incident, following which a complaint was filed and police teams were dispatched to nab the accused.
Summary:
Food and beverage giant PepsiCo has named Ramon Laguarta to succeed Indra Nooyi as CEO, when she steps down on October 3.
Summary:
Actor Ajay Devgn on Sunday apologised to lyricist Swanand Kirkire for missing out his name in 'Helicopter Eela' trailer, which is being co-produced by the actor and stars his wife and actress Kajol Devgn.
"We accidentally missed out Swanand Kirkire's name from the trailer.
Summary:
Overall, Kohli is the ninth cricketer to top Test and ODI batsmen rankings at the same time.
Summary:
The updation of the Assam National Register of Citizens was a five-year process that involved 62,214 personnel at a cost of â¹1,100 crore.
Summary:
Japan's SoftBank Group on Monday reported its quarterly earnings where it said that it received a 60% return on its Flipkart stake by selling it to Walmart for $4 billion.
Summary:
After 24 girls were rescued from the Deoria shelter home, Uttar Pradesh minister Rita Bahuguna Joshi said the CBI had ordered to shut it last year after an inspection revealed it was running illegally.
Summary:
The 94-year-old had been admitted to the hospital on July 26 over low blood pressure.
Summary:
In an attempt to help students "befriend" the English language, the Haryana government has launched the 'I am not afraid of English' campaign in primary schools in the state.
Summary:
"There is no harm in providing milk to infants," one of the camp organisers said.
Summary:
Tamil Nadu-born PepsiCo CEO Indra Nooyi, an IIM Calcutta graduate, on Monday announced she is stepping down from the role after 12 years.
Summary:
A 32-year-old Hong Kong singer Ellen Joyce Loo passed away on Sunday after falling from a building.
Summary:
Deepak Dobriyal, who played the role of 'Pappi ji' in 'Tanu Weds Manu' franchise, has said that he hated producers telling him, "Hum to tumhari life bana rahe hain".
Summary:
The Ranbir Kapoor starrer 'Sanju' has beaten 'Baahubali 2: The Conclusion' to become the third highest grossing film in Australia.
Summary:
Former Team India captain Sunil Gavaskar has criticised India's preparations for England Test series, saying, "Kohli and the team management have to understand...that others need practice." "Kohli can take 15 days off and then score a hundred the next day," he added.
Summary:
Murray was ranked 832nd worldwide on July 30 this year.
Summary:
The record for the highest-ever total in an innings of Test cricket, set by Sri Lanka against India on August 6, 1997, has been unbroken for 21 years.
Summary:
Nationalist Congress Party chief Sharad Pawar has said UPA Chairperson Sonia Gandhi and former Prime Minister HD Deve Gowda should join hands with him to unite the Opposition.
Summary:
Musk, however, did not elaborate on when the Tesla mini-car will be launched.
Summary:
Walmart already has technology operations in Bengaluru and Gurugram with currently over 1,800 employees.
Summary:
E-commerce giant Flipkart has hired five new Vice Presidents to strengthen its management after the announcement of $16-billion Walmart deal.
Summary:
A Lashkar-e-Taiba (LeT) terrorist was arrested at Delhi airport after he was deported by Saudi Arabia, the National Investigation Agency said on Monday.
Summary:
Two youths lost their lives while trying to take a selfie near a moving train in Punjab's Ludhiana district on Sunday.
Summary:
The Mumbai Police on Monday used a 'Hulk' reference in its tweet urging people to wear helmets, along with the caption, "Everything may not work out with all the grave mistakes you make!
Summary:
A truck driver allegedly drowned his three sons in a river after consuming liquor and fighting with his wife in Andhra Pradesh's Chittoor district on Sunday.
Summary:
There was no report of any casualty sustained by the security forces.
Summary:
Sensex closed 135.73 points up at 37,691.89, while the Nifty ended 26.30 points higher at 11,387.10.
Summary:
With assets under management of over â¹3 lakh crore, HDFC AMC is the country's second-biggest mutual fund manager.
Summary:
Maggi commanded a market share of around 75% prior to the ban.
Summary:
PepsiCo on Monday announced that its first female CEO Indra Nooyi will step down after 12 years.
Nooyi, who will remain as Chairman until early 2019, will step down on October 3.
Summary:
The Supreme Court on Monday adjourned a hearing on petitions challenging Article 35A of the Indian Constitution which grants special status to Jammu and Kashmir residents amid a statewide shutdown.
Summary:
Alia Bhatt hosted a Q&A session on Instagram on Sunday, during which a fan asked her if she would give up acting after marriage.
Summary:
Television reality show MTV Roadies creator Raghu Ram on Sunday got engaged to his Canadian girlfriend, singer Natalie Di Luccio, in Toronto.
Summary:
The senators further wrote that Google's project is "deeply troubling and risks making Google complicit in human rights abuses" in China.
Summary:
According to the notification, Indira Banerjee and Vineet Saran will take the oath before Joseph, thereby making them senior to him.
Summary:
Kochi's 30-year-old Jawahar Subhash Chandra, a garlanded photo of whom was recently used by Jaipur Police in a campaign to discourage Kiki Challenge, has said people thought he died after seeing their post.
Summary:
A 96-year-old woman on Sunday became the oldest examinee to take the literacy test conducted by the Kerala State Literacy Mission.
Summary:
A US man has been arrested after toxicology reports showed his 8-year-old son died after consuming 180 times the lethal dose of methamphetamine thinking it was breakfast cereal.
Summary:
"You're not welcome here...Go back to your country," the assailants told the 50-year-old.
Summary:
Antigua and Barbuda has reportedly informed India that Mehul Choksi can be extradited to India as both countries are members of the Commonwealth of Nations.
Summary:
He was the husband of late superstar Raj Kapoor's daughter Ritu Nanda and the father-in-law of Amitabh Bachchan's daughter Shweta Bachchan-Nanda.
Summary:
The trailer of 'Loveratri', the debut film of Salman Khan's brother-in-law Aayush Sharma, has been released.
Produced by Salman Khan, 'Loveratri' is scheduled to release on October 5.
Summary:
Emraan Hashmi will be seen playing Suryakant Bhande Patil, a detective who solved 120 child kidnapping cases for free in the upcoming film 'Father's Day'.
Summary:
Bollywood actor John Abraham has invested an undisclosed amount in health and wellness startup Guardian Healthcare, a franchise partner of US-based nutrition company GNC in India.
Summary:
To avoid running into him, Seavey rode on the fence before bringing the car down and continuing.
Summary:
Russia's 18-year-old swimmer Kliment Kolesnikov won the 50m backstroke European Championship title, breaking the world record in the process.
Summary:
Former Indian captain Sunil Gavaskar on being asked about his relationship with another former captain Kapil Dev, said that he recalls only one instance of them having an angry exchange.
Summary:
Bangladesh's 22-year-old pacer Abu Hider Rony has been fined 20% of his match fees by the International Cricket Council for "using language or a gesture that is obscene, offensive or insulting during an International Match".
Summary:
Sweden's ex-Manchester United forward Zlatan Ibrahimovic trolled his own agent, Mino Raiola, in an Instagram post.
Summary:
This leads to being hypercritical of completely normal lines, blemishes, and imperfections masked by Snapchat filters, according to the article.
Summary:
Space agency NASA's Curiosity rover on Sunday tweeted on completing its sixth anniversary on Mars.
Curiosity, which landed on Mars in 2012, was designed to assess whether Mars ever had an environment able to support life forms.
Summary:
Elon Musk-backed startup OpenAI's bot team OpenAI Five on Sunday beat five former professional humans at the multiplayer online video game, Dota 2.
The OpenAI Five beat the professionals 2-1 in a set of three games.
Summary:
A video showing a woman in Uzbekistan singing 'Ichak dana, bichak dana' while standing alongside External Affairs Minister Sushma Swaraj has been posted by ministry officials on Twitter.
Summary:
The boy was reportedly upset after his aunt stopped her daughter from talking to him.
Summary:
Police officials said they have no information as to why Bernicat came under attack.
Summary:
Tech Mahindra CEO CP Gurnani has said the company expects to launch about five 5G pilot projects by September and execute big projects from 2019-20.
Summary:
At least 24 girls were rescued, while 18 are missing from a shelter home in Uttar Pradesh's Deoria after one of the girls escaped from the home and informed the police that the girls were being treated like servants.
Summary:
The 10-year-old girl who complained against the Uttar Pradesh shelter home, told the police that some cars came to pick up girls above 15 years of age, and the girls returned crying later.
Summary:
Chief Election Commissioner OP Rawat on Sunday said that the rumours saying that the new voting machines VVPATs click pictures of voters casting votes are false.
Summary:
The court observed that there was no evidence to show that the actions led to harassment or abetment of suicide.
Summary:
The world's first atomic bomb dropped by an American B-29 bomber plane on the Japanese city of Hiroshima on August 6, 1945 was codenamed as 'Little Boy' by the US.
Summary:
American singer Demi Lovato spoke about her history of drug and alcohol abuse, saying, "I want to thank God for keeping me alive and well." She added that she has not overcome addiction and needs time "to heal and focus on my sobriety and road to recovery".
Summary:
A combined total of 60 leave applications from 41 MPs sought leave for 1800 days in last four years.
Summary:
The US Consul General in Mumbai, Edgard Kagan, has said that his country encourages and welcomes qualified Indians, adding that President Donald Trump is very committed to relations with India.
Summary:
Police have arrested a youth from Jammu and Kashmir who was travelling in a bus to Delhi and seized eight grenades and â¹60,000 cash from him.
Summary:
Police in Kerala has arrested a priest after he made a call to the control room on the intervening night of Sunday and Monday, and threatened to plant a bomb at a college where President Ram Nath Kovind is scheduled to attend an event.
Summary:
Accusing the US of "acting opposite" to its plan to improve ties despite North Korea's goodwill gestures, state-run newspaper Rodong Sinmun has called on the US to drop sanctions against the country.
Summary:
After Canada said it was "gravely concerned" over the arrest of civil society activists in Saudi Arabia, the kingdom gave the Canadian ambassador 24 hours to leave the country and recalled its own ambassador to Canada.
Summary:
Pompeo added that sanctions against Iran will be enforced until the change happens.
Summary:
A twin-engine aircraft crashed in the parking lot of a mall in California on Sunday, killing all five people on-board the plane.
Summary:
The road safety protests in Bangladesh began after a boy and a girl were killed by a speeding bus on July 29.
Summary:
India's 22-year-old cricketer Smriti Mandhana has scored a total of 338 runs in her first six matches for the Western Storm in England's Women's Cricket Super League.
Summary:
Bhullar, who was playing his 106th European Tour event in Fiji, also became the fifth Indian golfer to win on the European Tour.
Summary:
South African batsman Reeza Hendricks smashed an 88-ball hundred to register the fastest ODI hundred by a debutant, helping South Africa beat Sri Lanka by 78 runs to take an unassailable 3-0 lead in the five-match series.
Summary:
Former Indian pacers Zaheer Khan, Ashish Nehra and Ajit Agarkar enjoyed vada pav and chai while on their way to Lonavala on the occasion of Friendship Day. The trio, who made their debuts between 1998-2000, took 1,194 wickets in international cricket.
Summary:
The Indian Under-16 side meanwhile managed to register a 1-0 win over current Asian U-16 Champions Iraq in the WAFF U-16 Championship in Amman.
Summary:
Afghanistan's cricket board has made the Yo-Yo test mandatory for selection into the national team, with their minimum cut-off score being higher than what the BCCI has made mandatory for Indian team selection.
Summary:
Former Indian captain Sourav Ganguly revealed on 'Breakfast With Champions' that his roommate on a tour, Sachin Tendulkar, used to sleepwalk in the night and that the Mumbai-batsman used to borrow and play with his bats.
Summary:
Addressing a seminar in Thiruvananthapuram, Congress MP Shashi Tharoor on Sunday asked why does PM Narendra Modi refuse to wear the Muslim skull cap when he can wear "hilarious outfits" and "outlandish headgears" on his trips abroad.
Summary:
Summary:
Tesla's limited-edition $1,500 surfboards which sold out in hours, are on sale for over $6,000 on eBay. Asking price went as high as $7,000, with most sellers wanting $3,000 to $4,000 for the official merchandise.
Summary:
A headless body of a man, with his arms and legs chopped off, was found stuffed in a black bag near Khalsa College at Delhi University's north campus on Sunday.
Summary:
India's domestic market will grow at around 20% in this financial year, the report stated.
Summary:
More than 80 people were killed and several others were injured after a 7.0-magnitude earthquake struck Indonesia's resort island of Lombok on Sunday, according to reports.
Summary:
After retiring in April this year, the former judge has taken up agriculture in his native village in Tamil Nadu.
Summary:
Aadhaar's governing body UIDAI on Sunday said, "Just by a helpline number in a mobileâÂÂs contact list the data stored on the mobile phone cannot be stolen." This comes after Google admitted to "inadvertently" coding UIDAI's helpline number in the 2014's Android release.
Summary:
Police seized 15 grams of cocaine, 80 grams of dry marijuana and two phones from the duo.
Summary:
Trump had previously said the meeting was about the adoption of Russian children by Americans.
Summary:
Kraft Heinz has been seeking about $1 billion for the assets, reports added.
Summary:
Prateik Babbar, while talking about his drug abuse phase, revealed that he had a tough time and now feels lucky to have survived.
Summary:
Talking about mainstream films, actor Manoj Bajpayee said, "Doing commercial films is like going to [an] office, like a 9 to 5 [job], which I don't like." "In commercial films, things are conveyed easily and I don't get a chance to work on a character.
Summary:
Fashion designer Masaba Gupta will collaborate with 'Game of Thrones' for her official merchandise that would include apparel, jewellery and home products, as per reports.
Summary:
Actress Kajol has said that women should realise that they have their own identity and that they are not just a "caretaker mom".
Summary:
England pacer Stuart Broad posted a video of his teammate James Anderson hitting himself in the face with a golf ball.
Summary:
Ireland, the second-lowest team at the Women's Hockey World Cup, went goalless and lost to the Netherlands with a six-goal difference in their maiden final appearance at the tournament.
Summary:
Defending Premier League champions Manchester City on Sunday defeated Chelsea 2-0 to win the season-opening Community Shield for the fifth time.
Summary:
Minehead Cricket Club needed two to win and their batsman Jay Darrell was batting on 98 when the Purnell CC bowler conceded the boundary and a no-ball.
Summary:
Around 65,000 Indonesians including President Joko Widodo performed mass poco-poco dance through streets of Jakarta on Sunday to promote the Asian Games.
Summary:
Former cricketer Virender Sehwag took to Twitter to share an image from a school textbook and highlighted a part which read, "A large family cannot enjoy a happy life." "A lot of such crap in school textbooks.
Summary:
JD(S) leaders said the decision was taken to allow Kumaraswamy, who had been JD(S) Karnataka president since 2008, to focus on his role as CM.
Summary:
The service will have dedicated women drivers for women commuters.
The mobile app will be programmed in such a manner that women drivers won't be able to get requests from male passengers.
Summary:
Days after a Congress Working Committee meeting was held in Delhi, senior Congress leader Prithviraj Chavan said, "Parliamentary elections are not far.
Summary:
They informed their family of the alleged kidnapping, following which a police complaint was filed and the Indian embassy in Malaysia was informed.
Summary:
A 16-year-old student was killed during a fight with his classmate over a pair of scissors at a madrasa, Kerala police said.
Summary:
Further, about 377 complaints regarding crew behaviour were also registered against the airlines.
Summary:
Six people were arrested for allegedly gangraping a woman in Gujarat's Mehsana, the police said today.
Summary:
Hours after Mughalsarai Junction station was officially renamed after RSS ideologue Deen Dayal Upadhyaya in Uttar Pradesh, state minister Om Prakash Rajbhar said changing names of stations won't make trains come on time.
Summary:
President Ram Nath Kovind has said the best institutions of learning are not just teaching shops or degree factories but are also sources of innovation.
Summary:
The government will soon invite fresh bids for 100% stake sale in helicopter service provider Pawan Hans as ONGC has also approved the sale of its entire stake in the company, officials said.
Summary:
Economic Affairs Secretary SC Garg has said foreign firms keeping data copies in India while retaining offshore storage operations has emerged as a possible solution.
Summary:
The bungalow was left with broken tiles, missing water taps and damaged swimming pool when Yadav vacated it.
Summary:
As many as 24 people were killed after two planes crashed in the Swiss Alps in separate incidents within hours on Saturday.
Summary:
'Sarabhai Vs Sarabhai' actress Rupali Ganguli registered an FIR against two bikers who attacked her while she was in the car with her 5-year-old son in Mumbai.
Rupali's car mistakenly touched a bike following which the bikers allegedly started abusing her and broke her car's window.
Summary:
The Congress on Saturday claimed that 80,000 Bangladeshi foreigners were deported between 2005-2013 under the UPA regime, while only 1,800 were deported in 4 years under the NDA.
Summary:
Summary:
Gavaskar further said if it is on August 15, he won't be able to go because of his mother's 93rd birthday and India's Independence Day.
Summary:
Major Leetul Gogoi may face action after a Court of Inquiry (CoI) found that he violated Army rules by staying away from his place of duty without permission.
Summary:
An Indian man has been jailed for four years in the United States for possessing over 1,000 photos and 380 videos showing minors engaged in sexually explicit conduct.
Summary:
Hamza was reportedly groomed by the late al-Qaeda leader to replace him.
Summary:
Jindal Steel and Power (JSPL) Chairman Naveen Jindal has said supplying rails to Indian Railways is like a "dream come true".
JSPL bagged 20% of â¹2,500-crore global tender, becoming the first private company to supply rails to the Railways.
Summary:
According to police, a clear report was given as no criminal records against Choksi were found.
Summary:
Summary:
Filmmaker Atul Manjrekar, who made his directorial debut with 'Fanney Khan', said that film's actors Anil Kapoor, Aishwarya Rai Bachchan, Rajkummar Rao, Divya Dutta and Pihu Sand have helped him more as a director.
I have got great actors who are stars.
Summary:
Team India all-rounder Ravindra Jadeja, in a recent interview, said that actor Emraan Hashmi would be the perfect choice to portray him onscreen if there is a biopic made on his life.
Summary:
Chitrangda Singh's role in 'Saheb Biwi Aur Gangster 3' has been cut short, as per reports.
Summary:
Angad Bedi, while talking about the performance of his film 'Soorma', said, "Soorma was made on a budget of â¹22 crore and we don't expect it to do a â¹100 crore business." He added that the film has "definitely earned respectable numbers".
Summary:
The 27-year-old will miss the second Test as it clashes with his nightclub brawl incident trial date.
Summary:
Reports claimed that the robbers were wearing hoodies to hide their identity and broke into the store at night when it was closed.
Summary:
The robots, deployed in partnership with startup Alert Innovation, then carry the items to Walmart's associates to consolidate the order for delivery.
Summary:
"My religion teaches me compassion, not hatred," he added.
Summary:
A former employee at ZopNow said that the startup was slowly discontinuing services at multiple pincodes in other markets as well.
Summary:
Two women died and 17 others fell ill after they were administered antibiotic drug Ceftriaxone at the Rajiv Gandhi Institute of Medical Sciences in Ongole, Andhra Pradesh.
Summary:
A court in Mangaluru has sentenced 26-year-old cab driver Gaviranga and his girlfriend Sushma Priscilla to life imprisonment for murdering the woman's former boyfriend in 2014.
Summary:
A 40-year-old Delhi-bound passenger was detained at Jaipur airport today for causing a bomb scare and refusing to cooperate during the security check.
Summary:
The Centre should have consulted all parties to work out a "unanimous mechanism" before going ahead with the NRC exercise in Assam, Loktantrik Janata Dal leader Sharad Yadav has said.
Summary:
The Pakistan Tehreek-e-Insaf (PTI) party is expected to formally announce party chief Imran Khan as its PM candidate on Monday, reports said.
Summary:
Around one lakh Ayushman Mitras will be deployed at both private and government hospitals under the scheme.
Summary:
A 36-year-old BJP corporator who drove a six-seater autorickshaw more than a decade ago, Rahul Jadhav was declared the mayor of Maharashtra's Pimpri-Chinchwad city on Saturday.
Summary:
Uttar Pradesh's iconic Mughalsarai junction was on Sunday officially named after RSS ideologue Deen Dayal Upadhyaya.
Summary:
A fly single-handedly ruined a world record attempt for the most mini-dominoes to fall in one go being carried by 22 individuals near Germany's Frankfurt.
Summary:
Summary:
After meeting PM Narendra Modi, Telangana CM K Chandrashekar Rao on Saturday revealed that the ruling Telangana Rashtra Samiti (TRS) party is open to a post-poll alliance with the BJP.
Summary:
The launch of India's second Moon mission Chandrayaan-2 has been delayed for the second time from October to January next year, according to reports.
Summary:
The Bihar government has suspended six officials of its Social Welfare Department for "negligence and dereliction of duty" over the Muzaffarpur shelter home rape case.
Summary:
The case relates to the alleged rape of at least 34 inmates at a government-funded shelter home.
Summary:
Ahead of the Supreme Court hearing on Jammu and Kashmir's special status, the state has been on a two-day shutdown amid protests seeking to dismiss the petition at the SC.
Summary:
At least 115 students have reportedly been injured in clashes in Bangladesh's capital Dhaka on the seventh day of a youth protest over road safety.
Summary:
After two men were reported missing at a German old age home, police found the duo at Wacken Open Air, which is considered the world's largest heavy metal festival.
Summary:
Police found that an Airtel tower was connected illegally to a transformer used exclusively by BSNL for its mobile tower.
Summary:
Assam, Jharkhand and Bihar are ranked among the least favourable states for investment.
Summary:
Filmmaker Anurag Kashyap has said that if he wanted to make political cinema he wouldn't do it, because it's not censorship that scares him but the process of fighting.
Summary:
Notably, the current Guinness World Record for the longest cucumber, which was grown in Wales in 2011, is 42.1 inches.
Summary:
The 18-year-old has been awarded $250,000 (â¹1.7 crore), a trip to September's The Best FIFA Football Awards and the new FIFA eWorld Cup trophy.
Summary:
Athletes from Saudi Arabia, Egypt and Russia are among the estimated 12,700 participants at the 10th edition of the Gay Games being held in Paris.
Summary:
The video showed Sohail pointing to boundary with the bat after smashing Prasad for a four.
Summary:
US city, Cupertino, that houses Apple's campus has said it is in talks with Hyperloop Transport Technologies to construct the high-speed transportation.
Summary:
UCLA researchers have developed an artificial intelligence (AI)-based device that can analyse data and identify objects at the "actual speed of light".
Summary:
Lok Janshakti Party chief and union minister Ram Vilas Paswan has said there is no vacancy for the prime ministerial post in 2019 elections and asked the Opposition to try harder in 2024.
Summary:
Former Prime Minister HD Deve Gowda on Saturday said, "Why should we (men) alone become PM?
Summary:
Summary:
Uttarakhand will become the first state to give identity cards to gau rakshaks (cow protectors), reports quoting officials said.
Summary:
A 14-year-old girl allegedly committed suicide in the computer room of her government-run residential school after being raped by the headmaster, Odisha police have said.
Summary:
Over 80 ÃÂIRE signs were carved around the Irish coast during WWII.
Summary:
The company currently owns and operates 11 out of the 23 oil refineries in the country.
Summary:
World number three PV Sindhu on Sunday won the silver medal at the Badminton World Championships for the second straight year.
Summary:
Defence Minister Nirmala Sitharaman launched the 'Defence India Startup Challenge' in Bengaluru on Saturday, under which she gave 11 open challenges to startups for the defence sector's technological needs.
Summary:
In February 1968, Upadhyaya was found dead in mysterious circumstances near the station, and BJP had demanded the station to be renamed after him.
Summary:
The station was named Mughalsarai as it was one of the busiest routes connecting east India to north India during the Mughal era.
Summary:
Former Chief Election Commissioner Navin Chawla on Saturday defended the Electronic Voting Machines (EVMs) saying they are tamper-proof and have been used comprehensively in the 2004, 2009 and 2014 general elections.
Summary:
The trailer of Kajol and Riddhi Sen starrer 'Helicopter Eela' has been released.
Summary:
Sunil Gavaskar was the first top-ranked Indian batsman, achieving the feat in 1978 while Dilip Vengsarkar was the second (1987).
Summary:
After scoring 200 runs in the first Test against England, Indian captain Virat Kohli became the first Indian to top the ICC Test batsmen rankings since Sachin Tendulkar, who last topped the rankings in 2011.
Summary:
Gahlot has denied that he misbehaved with Joshi at the meeting.
Summary:
Uttar Pradesh government will give â¹4 lakh to families of people who die from snake bites after it expanded its list of tragedies eligible for compensation under State Disaster Relief Fund.
Summary:
A fugitive economic offender is one against whom an arrest warrant is issued for economic offences of â¹100 crore and above.
Summary:
"Tariffs will make our country much richer than it is today," he added.
Summary:
A US federal judge on Friday ordered President Donald Trump's administration to fully restore the 'Dreamers' program, which protects immigrants who were brought to the country illegally as children from deportation.
Summary:
A special CBI court in Mumbai has granted bail to Vipul Ambani, President (Finance) of the Nirav Modi's Firestar Diamond, in the PNB scam.
Summary:
Among PSBs, SBI emerged as the highest collector with â¹2,433 crore in penalties, almost half of the total collection.
Summary:
A glitch in Air India's system led to retired crew and employees who quit receiving e-mails to report to work.
Summary:
Adani won rights to sell gas for households and vehicles on its own in six cities and in a joint venture with Indian Oil in five cities.
Summary:
A US company has recalled 1.45 lakh half-gallon cartons of refrigerated almond milk because the product may contain actual milk, an allergen not listed on the label.
Summary:
Ex-Miss India International Jhataleka Malhotra will reportedly star opposite Poonam Dhillon and producer Ashok Thakeria's son Anmol Thakeria in Sanjay Leela Bhansali's next film.
Summary:
Kohli, who is ranked world number one in both Test and ODI cricket, is currently holding India's highest ODI batting rating of 911.
Summary:
BJP leader Kabindra Purkayastha has said it his "idea" that an equal number of Muslims and Hindus in Assam were excluded from National Register of Citizens' (NRC) final draft.
Summary:
Britain's 23-year-old swimmer Adam Peaty registered a timing of 57 seconds to set a new world record in 100 metres breaststroke, bettering his own previously-set world record by 0.13 seconds.
Summary:
"With 3D Globe Mode on Google Maps desktop, Greenland's projection is no longer the size of Africa," Google Maps tweeted.
Summary:
Bengaluru-based daily commute startup ZipGo has raised â¹300 crore in a Series B funding round from Essel Infra, an infrastructure arm of the Essel Group.
Summary:
A 20-year-old woman was stabbed to death by her alleged stalker in broad daylight near Mumbai on Saturday morning.
Summary:
She added he suspected her of seeing someone else and made her sit beside him all day while he worked as an autorickshaw driver.
Summary:
Despite being immediately taken down, a screenshot of the picture was shared on social media.
Summary:
Bald is beautiful." The picture was clicked by Hrithik Roshan and featured Sonali's friends Sussanne Khan and Gayatri Oberoi.
Summary:
Actor Ranveer Singh has said that director Sanjay Leela Bhansali's 2013 film 'Goliyon Ki Raasleela Ram-Leela' was his breakthrough film.
Summary:
Actor Ali Fazal, while talking about plans for his wedding, said, "I don't know when it will happen but it will not be a secret one." Ali further said that he does not like discussing his relationship with girlfriend Richa Chadha.
Summary:
Actor Rishi Kapoor, while sharing a short clip on Twitter from a film he did, tweeted, "What film is this?
And I cannot recognise the actress with me!" The clip was from a song in the 1997 film 'Kaun Sachcha Kaun Jhootha'.
Summary:
LeBron had said during an interview that Trump is using sports to create division throughout the country.
Summary:
A 15-year-old boy in Bengaluru is receiving treatment for addiction to online game PlayerUnknown's Battlegrounds (PUBG).
Summary:
Replying to a query on Maratha community's agitation for reservation in Maharashtra, Road Minister Nitin Gadkari said, "Let us assume the reservation is given.
But there are no jobs." Adding that "backwardness" is becoming a "political interest", Gadkari said, "In Bihar and Uttar Pradesh, Brahmins are strong.
Summary:
PTI chief Imran Khan has decided to release 27 Indian fishermen lodged in Pakistani prisons after his prospective swearing-in ceremony as the Prime Minister, according to reports.
Summary:
Delhi Police is on high alert after intelligence agencies warned of a possible terror attack on August 15 on the occasion of Independence Day. According to intelligence information, an ex-bodyguard of Jaish-e-Mohammad chief Masood Azhar's brother has been assigned the mission.
Summary:
DMK President M Karunanidhi will return home from the hospital within 2-3 days as his health condition has improved, DMK Principal Secretary Duraimurugan said.
Summary:
He further said that the woman tricked him by covering her face and he couldn't see her before marriage as it was against the tradition.
Summary:
Choksi had acquired citizenship of the Caribbean nation in November 2017 and fled India in January, days before the $2.1-billion scam was exposed.
Summary:
A man from Mangaluru was arrested by the police for allegedly publishing a derogatory post about Karnataka Chief Minister HD Kumaraswamy on Facebook page 'Kudla Trolls'.
Summary:
Offenders secretly film or photograph women with hidden cameras at public places and share the pictures and videos as advertisements for websites promoting prostitution.
Summary:
After US Secretary of State Mike Pompeo stressed the need to maintain full sanctions pressure on North Korea, the country slammed "alarming" US impatience on denuclearisation.
Summary:
The Russian Foreign Ministry has appointed Hollywood actor Steven Seagal as its special representative for Russian-US humanitarian ties.
Summary:
The ICC trolled Indian captain Virat Kohli over his mic drop send-off to England captain Joe Root in the first Test, which India lost on Saturday.
Summary:
Wishing his friend and former teammate Sachin Tendulkar on Friendship Day, Vinod Kambli tweeted, "On this friendship day all I want to say is..@sachin_rt 'Ye dosti hum nahi todenge..
Summary:
The CSK captain spoke in Tamil to L Sivaramakrishnan, saying that he promises to improve his Tamil in the next edition of IPL.
Summary:
Afridi proposed for a single-wicket match with no dismissal rules after Gayle equalled Afridi's record of most sixes hit in international cricket.
Summary:
While Mamiko was born on 11th October 1993, Ikioi was born on the same date in 1986.
Summary:
A mental health company is offering free therapy sessions to fans of American professional baseball team the New York Mets after the team registered their worst ever loss this week.
Summary:
"[W]hen you become captain it's about taking your team across the line," Kohli added.
Summary:
This year's finalists at the men's singles event of Wimbledon, Serbia's Novak Djokovic and South Africa's Kevin Anderson, are set to partner up to play doubles at the upcoming Canadian Open tournament.
Summary:
Slamming Congress leader Kamal Nath for calling him a 'madari', Madhya Pradesh CM Shivraj Singh Chouhan said, "Yes, I am a madari." Chouhan added he is a 'madari' who has vowed to reform Madhya Pradesh, pay children's fees and build houses for poor.
Summary:
Rajya Sabha Chairman M Venkaiah Naidu on Saturday asked the newly elected members of the upper house to leave politics outside and focus on people's welfare inside the House.
Summary:
Saudi Arabia had temporarily suspended oil shipments through the lane after Yemen's Houthi rebels attacked two oil tankers last month.
Summary:
The Mumbai Police on Saturday clarified that they had issued the required clearance for the $2-billion PNB scam accused Mehul Choksi in 2017 as he did not have a criminal record until then.
Summary:
The Universities and Colleges Admissions Service (UCAS), a UK-based non-profit organisation, wrongly e-mailed 4,100 students informing them they had been accepted to study at Newcastle or Northumbria universities.
Summary:
However, Naval said the police termed the email 'trash' and asked her to ignore it.
Summary:
A panel working on Indian government's cloud computing policy has proposed data generated in India should be stored within the country, according to a report by Reuters.
Summary:
The CWC meeting chaired by Congress President Rahul Gandhi was held in New Delhi on Saturday.
Summary:
Even Priyanka Gandhi felt unsafe." Lekhi was referring to Kathua, Unnao rape case protest in which Priyanka was shoved.n
Summary:
One of the largest sellers on Flipkart, WS Retail, has stopped selling its products on the e-commerce major's online platform.
Summary:
Presently, there are four GST slabs of 5%, 12%, 18%, 28% and the exempted category.
Summary:
A complaint was lodged by their 15-year-old son who told the police that his father was a drunkard and often quarrelled with his mother.
Summary:
The Muslim family approached the court after the girl's biological mother returned and forcibly took her away.
Summary:
A senior officer from the vigilance unit said unless a person is caught red-handed, they are not arrested.
Summary:
Maduro said a device exploded right in front of him, adding that he initially thought it was fireworks.
Summary:
Out of the 93 hat-tricks witnessed in men's international cricket till now, only one has been an all-LBW hat-trick which was achieved by Pakistani bowler Aaqib Javed against India in 1991.
Summary:
It cost millions of dollars to stabilize the system, the company had said.
Summary:
Actor Ali Fazal, while talking about the trend of trolls on social media, has said that the women get a brunt of social media trolls much more than men which makes him sad.
Summary:
Aayush Sharma, who'll be launched by Salman Khan in 'Loveratri', has revealed that Salman had told him that he will be able to give Aayush a debut, but after that it's his job to act and perform.
Summary:
That was the initial reason why I started working towards becoming a producer." "If creative people can manage their business well, they would be successful.
Summary:
Rowe, who became popular during FIFA World Cup, earlier used to watch England's cricket matches dressed as UK's Queen.
Summary:
All-rounder Sam Curran, who was named Man of the Match in England's 1,000th Test, against India on Saturday, said he "could not sleep last night" and the award "feels like a dream" to him.
Summary:
Notably, Kohli had posted just 134 runs in 10 Test innings in England in 2014.
Summary:
Following India's 31-run defeat against England in the Edgbaston Test, captain Virat Kohli said India's top-order batsmen need to "look into the mirror".
Summary:
World number 152 men's tennis player Noah Rubin broke his shoe after slipping mid-point during his Washington Open Round of 32 match against world number nine John Isner.
Summary:
Former UFC featherweight and lightweight champion Conor McGregor will return to the UFC on October 6 in Las Vegas.
Summary:
Congress President Rahul Gandhi and Delhi Chief Minister Arvind Kejriwal were among the leaders who joined RJD's protest over the Bihar shelter home rape case in New Delhi's Jantar Mantar today.
Summary:
RJD leader Tejashwi Yadav has said that the main accused in Bihar shelter home rape case should be hanged.
At least 34 girls were raped at the state-funded shelter home.
Summary:
Sitharaman was responding to a query on infiltration bids after the recent elections in Pakistan.
Summary:
A 28-year-old woman on Friday became the first person to be fined in Denmark for violating the country's ban on full-face veils in public places.
Summary:
Late actor and singer Kishore Kumar would stay up all night counting money, his third wife actor Yogeeta Bali had once said.
Responding to the allegation, Kishore, in an earlier interview, said, "Do you think I can do that?
Summary:
A businessman in Delhi was robbed of â¹70 lakh at gunpoint on a flyover in West Delhi's Naraina on Thursday.
Summary:
North Korea is still pursuing its nuclear and missile programme in violation of international sanctions, according to a confidential United Nations report.
Summary:
Late singer-actor Kishore Kumar, in a 1985 interview, revealed he once came to sets with half his head and moustache shaved off, reportedly because the producer paid him only half his dues.
Summary:
To prove consent, Hollywood producer Harvey Weinstein has submitted in court e-mails he received from the woman who accused him of rape.
Summary:
The music video of Drake's single 'In My Feelings', which inspired the viral 'Kiki challenge', has been released.
Summary:
Late singer-actor Kishore Kumar revealed in a 1985 interview that he told his interior designer he wanted monkeys farting from the ceiling instead of fans as he "liked nature".
Summary:
The SMS says that a person's tax refund has been approved and convinces the receiver to follow a website link.
Summary:
As per petitioners, Article 35A, which appears in the Constitution as an appendix, was only supposed to be a "temporary provision".
Summary:
In a video that surfaced online, a tantrik can be seen hitting a woman with a cloth while chanting a mantra to treat a snake bite at a government-run hospital in Bihar's Vaishali district.
Summary:
The cashback or discount would be capped at â¹100 per transaction.
Summary:
Over 3 lakh deaths due to diarrhoeal disease and protein-energy malnutrition can be prevented if India works towards achieving 100% coverage under the Swachh Bharat Abhiyan, WHO said.
Summary:
Police claimed they opened fire after the victim refused to put the gun down and acted "threateningly".
Summary:
There were over 100 million registered voters in Pakistan.
Summary:
Japan's Economy, Trade and Industry Ministry tested this idea and found that work was not negatively affected.
Summary:
Cezanne Khan, while talking about Ekta Kapoor's 'Kasautii Zindagii Kay' reboot, said, "Watching the musical teaser made me feel super nostalgic...cannot wait to see how the new Anurag [Basu] will be in the show." "I am super excited for the reboot of the show.
Summary:
Janhvi Kapoor and Ishaan Khatter, who made their Bollywood debut with Karan Johar's 'Dhadak', will be appearing as guests in the next season of Johar's 'Koffee With Karan', as per reports.
Summary:
This will be the second film starring Manoj Bajpayee to be screened at IFFM after his 'Love Sonia' which will be opening the festival.
Summary:
Ranbir Kapoor will reportedly star in the biopic after Akshay's exit.
Summary:
After Sachin Tendulkar praised pacer Ishant Sharma for his five-for against England in the first Test, the latter thanked Sachin, calling him "God of Cricket".
"Thanks Sachin Paaji...
Summary:
Team India captain Virat Kohli followed his 149-run knock with 51 runs in the second innings against England in the first Test at Edgbston to record at least 200 runs in a Test for the 11th time.
Summary:
Summary:
World number three PV Sindhu defeated world number two Akane Yamaguchi in the semi-finals on Saturday to reach the Badminton World Championships' final for the second straight time.
Summary:
Davison said Tyson misheard his instructions and instead of executing a body shot, he caught him in the chin.
Summary:
During his rally in Rajasthan, BJP President Amit Shah said that the Congress sees a vote bank in illegal Bangladeshi nationals residing in India.
Summary:
China has rejected the US' request to cut oil imports from Iran but has assured that it will not increase the purchase of Iranian crude, reports quoting US officials said.
Summary:
Pompeo said the security assistance will strengthen maritime security, develop peacekeeping capabilities and counter "transnational threats".
Summary:
England defeated India by 31 runs in the first Test at Edgbaston on Saturday to mark their landmark 1,000th Test with a victory and take a 1-0 lead in the five-match series.
Summary:
With earnings of â¹341.22 crore, Ranbir Kapoor's 'Sanju' has crossed the lifetime business of Aamir Khan starrer 'PK' in India.
Summary:
Late actor-singer Kishore Kumar, in a 1985 interview, had said that directors know nothing while adding, "Except for Satyen Bose and Bimal Roy, no one even knew the ABC of filmmaking." He said he never had the privilege of working with any good director.
Summary:
While users can set how long the location can be shared, there is no way to stop sharing the battery percentage.
Summary:
A computer virus on Friday night halted the production at factories of Apple's iPhone chipmaker Taiwan Semiconductor Manufacturing.
Summary:
Gurugram-based home rental services marketplace ZiffyHomes has raised $120,000 (around â¹82 lakh) from Silicon Valley-based startup accelerator Y Combinator.
Summary:
The capsule's return completes the CRS-15 mission, which brought scientific experiments, crew provisions, equipment and other supplies to the ISS.
Summary:
22-year-old Umesh Atmaram allegedly committed suicide by hanging himself.
Meanwhile, a 20-year-old woman from Osmanabad allegedly committed suicide over the issue on Thursday.
Summary:
UIDAI denied asking manufacturers to add the number.
Summary:
US President Donald Trump has denied reports that he kept UK's Queen Elizabeth II waiting to meet him last month and added that it was the Queen who was late.
Summary:
Talking about her son Osama bin Laden, mastermind behind 9/11 attack, Alia Ghanem said, "He was a very good child until he met some people who pretty much brainwashed him in his early 20s." She added he really liked to study and loved her a lot.
Summary:
Intercontinental Exchange, which owns the New York Stock Exchange, has announced it is launching a new company 'Bakkt' that aims to "create an open and regulated, global ecosystem for digital assets".
Summary:
The Constitution of India does not prescribe environment and forest clearances for the development of airports and major ports in the country, Union Transport Minister Nitin Gadkari said on Friday.
Summary:
Aishwarya Rai Bachchan, who got trolled for a picture where she's seen kissing her daughter Aaradhya on lips, said, "Judge it.
It's my daughter and my life," she added.
Summary:
Aishwarya Rai Bachchan has said that the housewives are the biggest CEOs in the country and should be given utmost respect and appreciation.
Summary:
I've often said yes very quickly.
Summary:
An Alaskan man John Martin, boating down the Yukon River in his one-seater, accidentally entered the Bering Sea before crossing over into Russia's Chukotka region.
Summary:
People who have cases pending against them in Foreigners Tribunal won't find a place in the final Assam National Register of Citizens (NRC) list, NRC state-coordinator Prateek Hajela said.
Summary:
Indian fast bowler Ishant Sharma has been fined 15% of his match fee for his animated send-off to England's Dawid Malan in the first Test at Edgbaston.
Summary:
The Trinamool Congress has said it will observe 'black day' in West Bengal on August 4 and 5 by wearing black badges to protest the "heckling" and "illegal detention" of its leaders at Assam's Silchar airport.
Summary:
Indian cricket captain Virat Kohli's childhood coach Rajkumar Sharma has reportedly applied for the position of the chief coach of the Delhi Ranji Trophy team for the upcoming season.
Summary:
Swedish forward Zlatan Ibrahimovic personally called up an LA Galaxy fan, who had renewed his season ticket for the current season.
That I will bring to you also, don't worry," Zlatan is heard saying in the video of the call.
Summary:
Six months after raising $40 million in Series C funding led by Mahindra & Mahindra, car rental platform Zoomcar has raised $3.6 million (â¹25 crore) from Trifecta Venture Debt Fund.
Summary:
The warrant comes after Nayamuddin, who is a witness in the case, failed to appear before the court for deposition.
Summary:
The initiative is expected to help over two lakh students in Delhi each year.
Summary:
A youth was lynched in Haryana's Palwal after a family alleged that he tried to steal their cattle, along with two others who managed to escape.
Summary:
Philippine President Rodrigo Duterte has said that God promised him that all victims of extrajudicial killings would go to heaven.
Summary:
Former Assam CM Syeda Anwara Taimur's name has not been included in the final draft of Assam's National Register of Citizens.
Summary:
Singer Kumar Sanu has revealed that he adopted a daughter named Shannon in 2001, while adding, "I never wanted to disclose this as I was scared of what the society would think." "I wasn't sure how [the society was] going to see this," he added.
Summary:
The episode from the sitcom's 17th season was titled 'Kiss Kiss, Bang Bangalore' and showed the characters, including Homer Simpson, dancing to the song.
Summary:
The National Register of Citizens (NRC) Coordinator Prateek Hajela on Friday clarified that December 31 was not the deadline for the release of the final list for Assam.
Summary:
Tech giant Google has limited its employees' access to documents related to Project 'Dragonfly' under which it is building a search engine to meet China's censorship rules, according to reports.
Summary:
Two months after announcing its dating feature, Facebook has started testing the feature internally among its employees in the US.
Summary:
Two employees of a cash replenishing company, Manish Kumar and Satpal, were arrested for allegedly stealing â¹1.72 crore from the cash meant to refill ATMs across New Delhi.
Summary:
The Jammu and Kashmir High Court is set to get women judges for the first time after the Centre cleared the appointment of advocate Sindhu Sharma and former district and sessions judge Rashid Ali Dar. Further, Gita Mittal has been appointed Chief Justice, becoming the first woman to lead the court.
Summary:
Tailoring systems according to TRAI's new rules on avoiding annoying calls and messages will cost up to â¹400 crore and requires 18 months for rollout, mobile industry body COAI has said.
Summary:
India has become the third Asian nation after Japan and South Korea, and 37th overall, to get the Strategic Trade Authorization-1 status from the US.
Summary:
Singh had earlier alleged that he was assaulted and forcefully evicted from his house.
Summary:
The Mi-8 helicopter crashed when it collided with the cargo of an adjacent helicopter.
Summary:
Salman on Friday filed a plea in the district and sessions court, seeking permanent permission to travel abroad.
Summary:
Actor Shah Rukh Khan will play the lead in the fourth instalment of the 'Dhoom' franchise, as per reports.
Summary:
Actress Esha Gupta has denied reports which said that she is set to get married to cricketer Hardik Pandya.
Hardik and Esha reportedly started dating after he broke up with actress Elli Avram.
Summary:
The Bharat Army, the official Indian cricket supporters' group, has come up with a new chant for captain Virat Kohli.
Summary:
England pacer James Anderson on Friday said the England team will "go to bed dreaming about getting Virat Kohli's wicket".
Summary:
Brazilian footballer Gabriel Jesus video-called his mother Vera Lucia Diniz de Jesus after signing a contract extension till 2023 with last year's Premier League champions Manchester City.
Summary:
Swedish biathlete Peppe Femling, who won gold at 2018 Winter Olympics, suffered an injury after his ski pole lodged deep into his right leg.
Summary:
An Air India flight from Milan to Delhi had to return to the airport within 30 minutes of take-off after an Indian national forcibly tried to enter the cockpit.
Summary:
The student alleged that she was asked by the teacher to enact a scene as part of an examination during which he touched her inappropriately, said the police.
Summary:
The father of the man, who was shot dead for forcibly entering former J&K CM Farooq Abdullah's residence, said, "I want to know why was he killed.
Summary:
In a letter to Bihar Chief Minister Nitish Kumar on Muzaffarpur shelter home rape case, Delhi Commission for Women (DCW) chief Swati Maliwal wrote, "Sir, you don't have any daughter.
Summary:
Safaa Boular, the youngest woman convicted of plotting a terror attack on British soil, has been jailed for life with a minimum term of 13 years.
Summary:
A judge in the US state of Ohio ordered to shut a defendant's mouth with a tape.
Summary:
Tata Group may have to pay $1.3 billion to the government in dues to get approval for its mobile business' sale to Bharti Airtel, according to reports.
Summary:
Google says the alleged UIDAI helpline was "inadvertently coded" along with the 112 distress helpline in the Android release given to Indian manufacturers in 2014.
Summary:
John Abraham has confirmed he will star in the sequel to the 1999 Aamir Khan starrer 'Sarfarosh'.
"I'm in fact very excited.
I love Aamir, I'm his big fan.
Summary:
The petition against Haasan was filed by production company Pyramid Saimira which alleged that he owes them the amount.
Summary:
Priyanka added, "Thank you for opening your homes and hearts to me every week!"
Summary:
Aishwarya Rai Bachchan has revealed that Sanjay Leela Bhansali wanted her to star in his directorial 'Padmaavat' but "couldn't get the Khilji" for her.
Aishwarya further revealed she was also supposed to star in Bhansali's 'Bajirao Mastani'.
Summary:
Priyanka Vadra will replace her mother Sonia Gandhi as the Congress candidate from Rae Bareli in 2019 Lok Sabha elections, reports said.
Summary:
Opposition parties will decide the Prime Ministerial candidate only after the results of 2019 Lok Sabha elections are declared, said a report quoting Congress sources.
Summary:
Five militants have been killed by security forces in an overnight operation in Shopian district of Jammu and Kashmir.
Summary:
A man was gunned down by security personnel when he forcibly entered and vandalised former Jammu and Kashmir CM Farooq Abdullah's residence in Jammu.
Summary:
The family of a man in Uttar Pradesh's Agra has alleged he was set on fire by two men after he refused to share a packet of gutka with them.
Summary:
A knife-wielding man was caught while charging towards Kerala CM Pinarayi Vijayan's room at Kerala House in Delhi on Saturday.
Summary:
The Madhya Pradesh police intelligence unit reportedly issued an alert on Friday that militants could target Uttar Pradesh CM Yogi Adityanath.
Summary:
It will be the first human spaceflight from US soil since the retirement of its space shuttle in 2011.
Summary:
The Supreme Court will have three serving women judges for the first time, after the Centre cleared the elevation of Madras High Court Chief Justice Indira Banerjee.
Summary:
Angelow, who was drunk, hurdled the stumps at each end, and was later fined ã20.
Summary:
A 29-year-old Australian climber trapped for nearly a week on New Zealand's Mount Aspiring was rescued on Friday.
Summary:
Fugitive Indian businessman Vijay Mallya's request to meet Indian cricket captain Virat Kohli in England was reportedly denied by the Indian government.
Summary:
BJP youth wing chief Poonam Mahajan said on Friday she would call West Bengal CM Mamata Banerjee "U-turn didi" rather than "didi" over her "u-turn" on the NRC issue.
Summary:
Former world number one Andy Murray withdrew from the on-going Washington Open ahead of his quarterfinal match after breaking into tears post a 3 AM finish in his pre-quarterfinal match.
Murray said, "Finishing matches at three in the morning...
Summary:
Dagar, who won a bronze medal at the last Asian Games, reportedly tested positive for 'Meldonium'.
Summary:
Former Indian cricketer Virender Sehwag dressed up as a 'Baba' to bless Team India for their on-going Test series against England.
Summary:
Nepal registered their maiden win in ODI cricket, beating the Netherlands by one run after registering a run-out by uprooting the stump on the final delivery of the match.
Summary:
Gibraltar-based club Gibraltar United is set to become the first ever football club to pay its players in cryptocurrency after announcing that all payments to players will be made using cryptocurrency from the next season.
Summary:
After three-time NBA champion LeBron James' interview in which he claimed US President Donald Trump is using sports to divide the nation, Trump tweeted that the interviewer made James looks smart, which "isn't easy to do".
Summary:
Over 650 URLs have been blocked by social media platforms like Facebook and Twitter till June 2018, said IT Minister Ravi Shankar Prasad in Rajya Sabha.
Summary:
Kashmiri separatists have called for a two-day strike ahead of the Supreme Court hearing on Article 35A of the Constitution, which allows J&K legislature to define its 'permanent residents' and give them special rights.
Summary:
China on Friday threatened to impose import tariffs on $60 billion worth of US goods in retaliation to the tariffs imposed on its goods by the US.
Summary:
After reports said Jet Airways told its employees it may shut down in 60 days, its CEO Vinay Dube on Friday clarified that the reports were "malicious" and "factually incorrect".
Summary:
Hari Narayan Rajbhar, BJP MP from Uttar Pradesh's Ghosi, raised a demand for a "Purush Aayog" for "suffering husbands" in the Lok Sabha on Friday.
Summary:
While liquor baron Vijay Mallya topped India's fugitive economic offenders list owing banks â¹7,500 crore, PNB scam accused Mehul Choksi (â¹7,080 crore) and Nirav Modi (â¹6,498 crore) took the second and third spots.
Summary:
Madhya Pradesh CM Shivraj Singh Chouhan has again said that roads in the state are better than those in the United States.
Summary:
China's stock market overtook Japan's in 2014 and soared to an all-time high of over $10 trillion in 2015.
Summary:
Chhattisgarh CM Raman Singh said India is not a "Dharamshala" that people from outside will keep on entering the country.
Speaking on the NRC issue, Singh said, "They must be deported and people have been marked for it.
Summary:
The posts claimed the electric car can run for 1000 kms in a single charge and comes with a 10-year battery warranty.
Summary:
"They are a nearly identical copy of the iconic Jeep design," Fiat Chrysler said about Roxor, which is modelled after the original Willys Jeep.
Summary:
Bihar School Examination Board has been fined â¹1 lakh by Patna High Court for wrongly failing a Class 12 student in exams conducted in 2017.
Summary:
Pihu Sand, who played the role of Anil Kapoor's daughter in 'Fanney Khan', said she feels lucky to be able to play the role of the same body type that she was in.
Summary:
Sania had once said that she would like Parineeti Chopra to play her character in a biopic.
Summary:
Make-up artist for Vogue India Namrata Soni, while talking about styling Suhana Khan for this month's magazine cover, said, "She is a daughter of a superstar [Shah Rukh Khan] and she is a superstar." "I had one of the best times shooting with her.
Summary:
Revealing their conversation on the day Paul Walker died, his mother Cherryl Walker, said, "We were having this good conversation...he'd forgotten about an event he had.
Summary:
The Information and Broadcasting ministry has issued a letter stating that Hindi films will now roll credits in Hindi or bilingually.
Summary:
Actor Rajeev Khandelwal has said that cancer is not that scary, but the thought of someone close to you going through it is more scary.
Summary:
Abhishek Bachchan, while praising his wife and actress Aishwarya Rai Bachchan's performance in 'Fanney Khan', took to Twitter and wrote, "The Mrs continues to be my favourite!" "Congratulations to the entire team.
Summary:
If India chase down the 194-run target, it will be their highest successful chase in Tests in England.
Summary:
As many as 32 players selected from over two crore FIFA 18 video game players are competing in the ongoing FIFA eWorld Cup Grand Final being held in London.
Summary:
Sussex pacer Jofra Archer registered the first-ever hat-trick at London's Lord's Cricket Ground against Middlesex in T20 Blast on Thursday.
Summary:
World number three PV Sindhu defeated defending champion Nozomi Okuhara 21-17, 21-19 in 58 minutes on Friday to reach the semi-finals of the Badminton World Championships.
Summary:
Japanese club Tokyo FC will reportedly bring in Andres Iniesta's impersonator for their match against ex-Barcelona midfielder's side Vissel Kobe to please the sell-out crowd of 50,000 on Sunday.
Summary:
Nepalese cricketer Rohit Kumar Paudel, aged 15 years and 335 days, has become the fourth youngest debutant in men's ODI cricket.
Pakistan's Hasan Raza was the youngest-ever debutant (14 years, 233 days).
Summary:
Summary:
A group of alleged terrorists looted a bank in Jammu and Kashmir's Shopian district and snatched the rifle from the security guard deputed at the bank.
Summary:
Two policemen were seen sitting on the roof of their vehicle while the third was inside the car as it was being rescued from a waterlogged road in Uttar Pradesh's Kanpur.
Summary:
Talking about garbage segregation, Goa CM Manohar Parrikar said that puppies and kittens are being dumped while they're still alive in garbage.
Summary:
Pakistan's National Accountability Bureau has summoned PTI chief Imran Khan in an ongoing inquiry over alleged misuse of government helicopters.
Summary:
This comes after DGCA failed to send circulars to airlines operating from Delhi's IGI Airport, warning them against emptying toilet tanks mid-air.
Summary:
Former Flipkart CEO and Co-founder Sachin Bansal is planning to launch a venture capital fund of $700 million-$1 billion for investing in startups by the end of 2018, reports said.
Summary:
The government wants 22.5% reservation for SC and ST candidates in promotion in government jobs, Attorney General KK Venugopal told the Supreme Court on Friday.
Summary:
Actor Anil Kapoor, while talking about working with his daughter Sonam Kapoor in the film 'Ek Ladki Ko Dekha Toh Aisa Laga', said, "It's difficult to work with your own blood." He also revealed Sonam asked her why he "looked so relieved" after finishing the film's shooting.
Summary:
He was also seen shaking hands with another spectator who was wearing a mask of US President Donald Trump.
Summary:
After stepping aside to undergo a kidney transplant, Arun Jaitley is expected to resume work as Finance Minister at the end of August following a three-month break, reports said.
Summary:
Notably, small businesses were exempted from paying excise duty to the Centre under the indirect tax system before the GST regime was implemented.
Summary:
However, it did not specify how it knew Nirav Modi was in the United Kingdom.
Summary:
Villagers had beaten up three of the eight accused after the owner of the goat caught them in the act.
Summary:
Claiming that it never received Antigua's request on PNB scam accused Mehul Choksi's citizenship, Indian markets regulator SEBI has clarified that it did not give its clearance.
Summary:
Mnangagwa took over as President last year after Mugabe was ousted by the Army.
Summary:
Russia is allowing thousands of North Korean workers to enter the country and giving them new work permits in potential violation of UN sanctions, according to reports.
Summary:
The script of Hrithik Roshan starrer 'Super 30', a biopic on mathematician Anand Kumar, will be changed following accusations against Anand, as per reports.
Summary:
Malayalam actor Dulquer Salmaan, while talking about co-star Irrfan Khan, has said he was "completely awestruck" by Irrfan and that he is a "huge fanboy".
Summary:
Team India captain Virat Kohli has said he rates his 149-run knock at Edgbaston second only to his 141-run knock at Adelaide in 2014.
Summary:
Following Indian cricket team captain Virat Kohli's 149-run knock against England in the first Test, former Australian captain Steve Waugh called Kohli a "global superstar" and an "ultimate competitor".
Summary:
Summary:
Ex-world number one tennis player Andy Murray broke down after winning his Washington Open last 16 match against Marius Copil at 3.01 am local time today.
Summary:
Italian football club Sampdoria used the monochrome graphical style used by their rivals Juventus to unveil five-time Ballon d'Or winner Cristiano Ronaldo, to announce the signing of midfielder Ronaldo Vieira.
Summary:
English spinner Monty Panesar, who last played a first-class match in 2016, has said he has written letters to 18 county teams in order to revive his career.
Summary:
During Parliament's ongoing monsoon session, MoS for Human Resource Development Satya Pal Singh on Thursday informed the Rajya Sabha that more than 1,500 colleges were set up across the country in the last three years.
Summary:
A 51-year-old woman has been arrested for allegedly tearing two pages from the Guru Granth Sahib at a gurudwara in a village in Patiala.
Summary:
IIT Delhi professor AK Gosain has submitted a drainage plan to the Delhi government which can help prevent the city from waterlogging.
Summary:
A 35-year-old woman was arrested by Narcotics Control Bureau (NCB) on Thursday for attempting to smuggle drugs, reportedly worth over â¹1.2 crore, in noodle packets.
Summary:
Michelle, a student of Class 3 was invited to visit DMK President M Karunanidhi, who's currently admitted in Chennai's Kauvery hospital, after she e-mailed a message for him to DMK.
I'm praying for you very much," she wrote in the note.
Summary:
Contradicting her father US President Donald Trump's views, Ivanka Trump has said that the media is not the enemy of the people.
Summary:
Notably, France outlawed sexual harassment on the street earlier this week.
Summary:
After reports claimed that an Aadhaar helpline number was auto-stored on Android phones, Aadhaar's governing body UIDAI said the number was "invalid" and it did not ask any manufacturer or telecom provider to add it.
Summary:
The Caribbean nation of Antigua and Barbuda has clarified that it has granted citizenship to the $2-billion PNB scam accused Mehul Choksi only after getting a police clearance certificate.
Summary:
Filmmaker JP Dutta, when asked about actor Abhishek Bachchan's sudden exit from his directorial 'Paltan', said, "Please talk to the Bachchans." "I don't know what exactly happened and what went wrong," he added.
Summary:
After his film 'Mulk' was banned in Pakistan, director Anubhav Sinha has penned an open letter in which he has urged Pakistan's citizens to watch the film "illegally".
Summary:
Aishwarya Rai Bachchan, Anil Kapoor and Rajkummar Rao starrer 'Fanney Khan', which released today, is a "slice-of-life film," wrote Hindustan Times (HT).
It has been rated 3/5 (HT), 2.5/5 (NDTV) and 2/5 (Firstpost).
Summary:
'Bharat' director Ali Abbas Zafar, while talking about Priyanka Chopra quitting his film, said, "I'm...
Summary:
Assam Governor Jagdish Mukhi has called for updating the National Register of Citizens (NRC) in every state, stating that the Centre has the right to know about every foreigner living in the country.
Summary:
India captain Virat Kohli has scored more runs in one innings in the ongoing Test series in England than the entire five-match Test series in 2014.
Summary:
Unwarranted accusations are unfortunate." Over 40 lakh names have been excluded from the NRC draft.
Summary:
The former WWE World champion was running for the mayoral seat as a Republican and reportedly secured over 66% of the total votes.
Summary:
Leaving Paytm and Google Tez behind, PhonePe has claimed the top spot on the UPI (Unified Payments Interface) network.
Summary:
American researchers have found that high-intensity earthquakes can trigger tremors on the opposite side of the globe, most likely within a three-day window.
Summary:
Around 50 youths have left their jobs in Saudi Arabia and returned home to Kashmir's Salani village to join the Army and police in order to avenge the killing of their fellow villager, rifleman Aurangzeb.
Summary:
The Indian government will file an appeal at the High Court after an international tribunal rejected public sector oil company ONGC's $1.55-billion claims against Reliance Industries, Oil Minister Dharmendra Pradhan said.
Summary:
Khurana asked the delivery boy to meet him outside a metro station and then took him to his alleged house.
Summary:
The Centre on Friday informed the Supreme Court that it was withdrawing its proposal to create a social media hub for tracking online content and will completely review its policy on the issue.
Summary:
Wenguang had also supported late dissident Liu Xiaobo's manifesto that called for democratic reforms in China.
Summary:
Richa Chadha, who will be seen portraying South Indian adult film actress Shakeela in an upcoming biopic on her, will be visiting Shakeela's ancestral home, as per reports.
Summary:
Aishwarya Rai Bachchan has revealed that she lived her college days just like any other ordinary teenager, adding, "I have done the bus and the train, everything, as a college kid." "I have done the [Mumbai local] trains.
Summary:
Actor John Abraham, while speaking about the growing threat towards women in India, said, "We're one of the few countries where we disrobe a woman by just looking at her." "It's sad and getting worse.
Summary:
After netting his first hat-trick in the MLS, LA Galaxy forward Zlatan IbrahimoviÃÂ shared pictures of his career-threatening injury and celebration of hat-trick, writing, "They said it was over.
Summary:
Ex-Formula One world champion Niki Lauda underwent a successful lung transplant in Vienna, the Austrian capital's general hospital said on Thursday.
Summary:
During Parliament's monsoon session in Lok Sabha, senior Congress leader Mallikarjun Kharge on Friday alleged that government pressure was behind the recent resignation of a managing editor and an anchor from a TV news channel.
Summary:
Talking about the Muzaffarpur shelter home rape case, Bihar Chief Minister Nitish Kumar said that he's ashamed of the incident.
Summary:
The police said the body was found with injury marks and a post-mortem is being conducted.
Summary:
While PTI has secured 116 seats in the lower house, the anti-PTI alliance including Pakistan Muslim League-Nawaz and Pakistan Peoples Party has won over 120 seats combined.
Summary:
It had recently cut salaries of employees by up to 25%, as part of "cost rationalisation measures".
Summary:
Jobs then famously said, "We've to let go of this notion that for Apple to win, Microsoft has to lose."
Summary:
Irrfan Khan starrer 'Karwaan', which released today, "has very little [faults]," wrote Hindustan Times (HT).
Summary:
Vijay Gutte, director of Anupam Kher's 'The Accidental Prime Minister', has been arrested by the Directorate General of Goods and Services Tax Intelligence (DGGSTI) for alleged Goods and Services Tax (GST) fraud of â¹34 crore.
Summary:
Responding to criticism over Shah Rukh Khan's daughter Suhana Khan's Vogue photoshoot wherein social media users commented that a child should not be sexualised, photographer Errikos Andreou said, "[She] is not a child.
Summary:
Rishi Kapoor and Taapsee Pannu starrer 'Mulk', which released today, "is a hard-hitting...saga that...talks about...burning issues of our country," wrote Bollywood Hungama.
It has been rated 3.5/5 (Bollywood Hungama, TOI) and 4/5 (NDTV).
Summary:
Responding to allegations that IIFA's video tribute to Sridevi has been plagiarised, Sridevi's husband Boney Kapoor said, "The clips...
Summary:
A video showing Trinamool Congress MLA Mahua Moitra shouting and pushing a female constable as the policewoman pleaded with folded hands at Assam's Silchar Airport has surfaced.
Summary:
After Apple crossed the $1-trillion market capitalization on Thursday, CEO Tim Cook wrote to 120,000 employees, saying that it was "significant milestone...to be proud of" but should not be the company's focus.
Summary:
Started in the garage of late co-founder Steve Jobs in 1976, Apple became the first US company to hit a $1-trillion valuation on Thursday.
Summary:
A white-coloured statue of Mahatma Gandhi has been painted saffron in a village in Uttar Pradesh's Shahjahanpur.
Summary:
The shelter home is run by Brajesh Thakur, accused owner of Muzaffarpur shelter home where 34 inmates were raped.
Summary:
The Centre has reportedly approved the Supreme Court Collegium's suggestion to elevate Uttarakhand Chief Justice KM Joseph as SC judge.
Summary:
The victims were looking for a couple to work for their hotel business when one of the accused approached them with prospective candidates.
Summary:
Gurugram Police has arrested three men, including a barber, after a Muslim youth alleged his beard was forcefully shaved and he was called 'Pakistani'.
Summary:
Tens of thousands of students in Bangladesh have been protesting for the sixth day after two teenagers were killed by a speeding bus.
Summary:
A federal jury in US' California has awarded Canadian patent licensing company WiLan $145.1 million (nearly â¹1,000 crore) in damages against Apple for patent infringement.
Summary:
The first look of actors Kartik Aaryan and Kriti Sanon from their upcoming film 'Luka Chuppi' has been released.
Summary:
BITSians' Day is celebrated on the first Friday of August every year by the alumni and students of BITS Pilani at multiple locations all over the world.
Summary:
After two more FIRs were filed against West Bengal CM Mamata Banerjee in Assam for her alleged "instigating" remarks, she said, "I am not scared...They can lodge millions of FIRs against me, I don't care." She added, "They have done such a great thing.
Summary:
Summary:
Southeast Asia's ride-hailing major Grab's Co-founder Hooi Ling Tan has said, "I hate the concept of getting stuck in traffic and I also get motion sick." Talking about the future of transportation, she also said, "A pipe dream of mine is teleportation".
Summary:
At least two students died and five were injured after a roof collapsed when they were practising karate at a private school in Hyderabad.
Summary:
"This is a matter on which all opposition parties agreed.
Further, West Bengal CM Mamata Banerjee also urged opposition leaders to approach the EC over the matter.
Summary:
Apple's valuation is on par with Indonesia's GDP, the 16th-largest economy in the world.
Summary:
Users can avail exciting cashback on bus, hotel & cab bookings from 3rd - 5th August on the PhonePe app.
Users can also get 100% cashback on Redbus and Ola bookings, up to 50% discount on Goibibo hotel bookings.
Summary:
An 18-year-old US girl was left critically injured with a fractured skull after she attempted the viral Kiki Challenge.
Summary:
In a first, a study led by Carnegie Mellon University has shown that a 12-year-old boy regained brain functionality after a third of his brain's right hemisphere was removed to control seizures.
Summary:
The victim in the Kerala rape case retracted her statement during trial, saying she had consensual sex with the church priest whom she earlier accused of rape.
Summary:
Actress Sonali Bendre's husband Goldie Behl, while speaking about Sonali's health condition, said, "She is stable and following her treatment without any complications." "This is a long journey but we have begun positively," he added.
Summary:
Blockchain knowledge company Dunya Labs is co-hosting IBC Hack, a 36-hour hackathon in Hyderabad on August 3 and 4, as part of its mission to build the blockchain ecosystem in India.
Summary:
Apple's stock has surged more than 50,000% since its 1980 initial public offering.
Summary:
Trinamool Congress said the country's situation is "worse than Emergency" after eight party leaders were detained at Silchar Airport in Assam on Thursday for allegedly protesting and creating a ruckus.
Summary:
Police officers have booked 10 professors for allegedly "receiving money" from some engineering students and giving them extra marks during the re-evaluation of answer sheets in Anna University, Chennai.
Summary:
Pakistan on Thursday welcomed PM Narendra Modi's phone call congratulating Pakistan Tehreek-e-Insaf chief Imran Khan and said it wants to resume bilateral talks with India which were halted in 2015.
Summary:
Philip N Howard, director of the Oxford Internet Institute has told US lawmakers that Russia is attempting to meddle in the elections of countries like India and Brazil.
Summary:
The communication was received by the CBI in response to their queries on Choksi's whereabouts.
Summary:
Johnny Depp has alleged his ex-wife Amber Heard had 'punched him twice in the face' while they were married, as per reports.
Summary:
England ended the second day of the Test at 9/1 in the second innings, leading the visitors by 22 runs.
Summary:
With this, Ireland, the second-lowest ranked side in the competition, advanced to the semi-finals of World Cup for the first time in history.
Summary:
Indian all-rounder Yuvraj Singh took to Twitter on Thursday to share a throwback picture of himself, Sachin Tendulkar and Virender Sehwag playing chess with Windies' legend Sir Viv Richards.
Summary:
Facebook on Thursday announced that it will invest $4.5 million in programs that support news publishers.
Summary:
Aerospace company Boeing has delayed its first major test flight for its passenger spacecraft to mid-2019.
Summary:
Musical.ly users will see their app switch to Tik Tok following an update, with their videos and settings intact.
Summary:
Silicon Valley company Zest Labs has sued Walmart for $2 billion, accusing the retail giant of stealing its technology.
Summary:
To minimise such incidents, a system ensuring flexible use of airspace and safety management was implemented at airports, he added.
Summary:
A 44-year-old private tutor was arrested on Wednesday for allegedly raping at least five minor students over two years in Deogarh district, Odisha.
Summary:
However, parents will still have to pay a monthly fees for food and extra-curricular activities.
Summary:
China has proposed to conduct military drills with the 10 Association of Southeast Asian Nations (ASEAN) members in the South China Sea, a draft document has revealed.
Summary:
State-run telecom operator BSNL's loss for the last financial year reduced by just â¹1 crore to â¹4,785 crore, Telecom Minister Manoj Sinha informed the parliament.
Summary:
Overall, Kohli has now scored 57 international hundreds.
Summary:
World's most valuable company Apple on Thursday became the first company in the US stock market history to reach $1 trillion market valuation after its stock hit an all-time high of $207.05 per share.
Summary:
Daniel Salvame, an 11-year-old Philippines boy, has been dubbed 'Popeye' after a mystery illness left him with swollen biceps.
Daniel noticed swelling on his right upper-arm when he was four.
Summary:
A retired couple from Scotland was on Thursday handed a â¹520-crore cheque for a jackpot they won with a lottery ticket torn into two pieces.
Summary:
A police complaint has been filed against actor-turned-politician Kamal Haasan for "defaming" late CM Jayalalithaa by portraying her as a "dictator" on Bigg Boss' Tamil version.
Summary:
"What Mamata Banerjee said about NRC...it has been brought in Assam to drive out Bengalis, I don't agree with that," said Pathak.
Summary:
A former Junior Commissioned Officer claimed he and his family haven't been included in the final draft of Assam's National Register of Citizens.
Summary:
Talking about Pakistan Tehreek-e-Insaf chief and former cricketer Imran Khan's looks, Punjab Minister Navjot Singh Sidhu called him a "Greek God".
Summary:
The principal of the school is reportedly on the run.
Summary:
The ransomware crippled the town's computer infrastructure, including computers, servers, telephones and email exchange.
Summary:
The White House has confirmed that India has invited US President Donald Trump to be the Chief Guest for next year's Republic Day parade.
Summary:
The main building of UP's Mughalsarai Junction station, which was recently renamed Pandit Deen Dayal Upadhyaya Junction, is being painted saffron ahead of BJP president Amit Shah's visit on Sunday.
Summary:
Hanan, a college student from Kerala who sold fish to raise money, walked the ramp to promote Khadi products in Thiruvananthapuram on Wednesday.
Summary:
A report sent to the government accused Xuecheng of forcing nuns into sexual relations by "controlling their minds" and also sending them illicit messages.
Summary:
Kohli was also the fastest to 4,000, 5,000 and 6,000 runs as captain.
Summary:
After Virat Kohli slammed his first-ever Test hundred in England on Thursday, a user tweeted, "Kabhi kabhi lagta hai Kohli hi bhagwan hai." Other tweets read, "Kohli dropped his bat and his helmet to show off his engagement ring," and "India's future is safe.
Summary:
Virat Kohli has gone past his previous highest Test score of 39 in England, achieving the feat during the second day of the first Test at Edgbaston on Thursday.
Summary:
Pacer Mohammad Shami has said his "love for cricket" helped him fight the off-field problems he faced after the South Africa tour in January.
Summary:
After England lost a DRS review in the second over of India's innings in the first Test, former England off-spinner Graeme Swann said wicketkeeper-batsman Jonny Bairstow should be banned from taking a call for reviews.
Summary:
World number three PV Sindhu also advanced to the quarter-finals.
Summary:
Summary:
Further, Reddit said the affected users will receive private messages or emails to notify them of the breach.
Summary:
While hearing a rape case against a priest in a church in Kerala in 2016, the Supreme Court on Wednesday said, "It is disturbing that recently cases of rape are coming from churches in Kerala.
Summary:
The Supreme Court today said the penal provision on adultery is apparently violative of Right to Equality under the Constitution as it treats married men and married women differently.
Summary:
A goat abandoned by her ticketless owner at a Mumbai railway station is being auctioned as per existing rules, authorities said.
Summary:
Chinese President Xi Jinping has ordered the military to stop running kindergartens and other businesses and end commercial activities by the end of the year.
Summary:
RBI Governor Urjit Patel has said that "we are possibly at the beginning of currency war" in the wake of rising trade tensions.
For how long, I don't know," Patel said.
Summary:
Venkaiah's design, originally for the Indian National Congress, was unanimously agreed upon in the presence of Mahatma Gandhi in 1921.
Summary:
Gul, who gave birth at the age of 39, further said women should have children when they're ready and not when society wants them to.
Summary:
Directed by JP Dutta, who is known for directing films like 'Border' and 'LOC Kargil', 'Paltan' is scheduled to release on September 7.
Summary:
Amitabh Bachchan, who had suffered a near-fatal injury while shooting for the 1983 film 'Coolie', tweeted, "To them that have sent greetings for my 2nd birthday Aug 2...I send my...thanks." Bachchan, who got injured while shooting for a fight sequence, was reportedly declared 'clinically dead for a few minutes'.
Summary:
Shah Rukh Khan's daughter Suhana Khan has said when she was a child, she wanted her father to be addressed as 'Suhana's dad', but it wasn't the case.
Suhana further said, "He'd want to hug me...I'd push him back in the car.
Summary:
Talking about Virat Kohli's 'mic-drop' celebration after running him out in the first Test on Wednesday, England captain Joe Root said the gesture gives "a bit of humour" to the series.
Summary:
Facebook has started monetising WhatsApp four years after acquiring it in 2014, the social media giant announced on Wednesday.
Summary:
A 48-year-old American had to get all his limbs amputated after he contracted sepsis, a life-threatening blood infection caused by a bacteria found in the saliva of dogs and cats.
Summary:
"Thrombolysis is a very challenging treatment method for seniors," a doctor at the hospital said.
Summary:
A grade 11 student from Ajmer's Mayo College was allegedly sodomised by six seniors from grade 12 multiple times in July.
Summary:
Goa Agriculture Minister Vijai Sardesai has said that beauty contests can be held in paddy fields to make agriculture as a profession more appealing to youths.
Summary:
The allegations include nepotism, quid pro quo, and failure to make adequate disclosures.
Summary:
Sashi Cheliah, a 39-year-old Indian-origin prison officer from Adelaide, has won MasterChef Australia 2018, defeating fellow contestant Ben Borsht and earning a prize money of $250,000.
Summary:
Summary:
The world number 55 smashed his racquet after failing to break Baghdatis in last set.
Summary:
Team India opener Shikhar Dhawan on Thursday took to Instagram to share a picture of himself with his wife Aesha and wish her on her birthday.
Being d pillar of our family," Shikhar wrote.
Shikhar tied the knot with Aesha in 2012.
Summary:
The $2-billion figure includes a $1-billion investment from Toyota announced earlier in June and includes investors like OppenheimerFunds, Ping An Capital, and Mirae Asset, among others.
Summary:
Elon Musk-led Tesla has announced that the electric carmaker aims to produce 10,000 Model 3 cars per week in 2019.
Summary:
Founded in 2015, the startup delivers a wide variety of products including food, electronics, and accessories.
Summary:
As part of the round, former Whole Foods executive Walter Robb has joined the startup's board.
Summary:
The police have seized nearly 400 hides of cows, buffaloes and goats from a warehouse in Alwar, Rajasthan.
Summary:
The Roman Catholic Church has said that it will seek the worldwide abolition of death penalty, changing the previous Catholic teaching that allowed it in rare cases.
Summary:
The UAE has begun a three-month visa amnesty program which allows illegal foreign workers to legalise their status in the country or return home.
Summary:
Venezuelan President Nicolás Maduro has admitted that his economic model has "failed", saying that "the responsibility is ours, mine and yours".
Summary:
"Syria was able to defeat terrorists...Now we are planning to rebuild Syria and we are looking for help from our friends especially India," Abbas said.
Summary:
Cricket legend Sachin Tendulkar is planning to take his clothing line 'True Blue', a joint venture with Arvind Group, to global markets including the US and UK.
So why not an Indian brand in those markets?" Tendulkar said.
Summary:
Fino Payments Bank has been barred by the RBI from adding new customers since the end of May. Earlier, Paytm Payments Bank was reportedly told to stop adding new customers over discrepancies in adherence to KYC norms.
Summary:
An Indian man working for a multinational company was among the three people kidnapped and killed by militants in the Afghan capital of Kabul on Thursday.
Summary:
He also denied reports which said Imran's party Pakistan Tehreek-e-Insaf has invited him to attend the ceremony.
Summary:
Team India captain Virat Kohli has revealed that he has started to accept losses only now.
Summary:
Lisa Brennan-Jobs, late Apple Co-founder Steve Jobs' daughter, has revealed that her father lied about naming an Apple computer 'Lisa' after her.
Summary:
A Dutch startup named BioArt Laboratories is making clothes out of cellulose extracted from cow dung.
Summary:
India and the US on Wednesday began a military cooperation meeting, co-chaired by Lieutenant General Satish Dua, Chief of Integrated Defence Staff to the Chairman and Lieutenant General Bryan Fenton, Deputy Commander, Indo-Pacific Command.
Summary:
The Tamil Nadu government has issued a notification fixing â¹6,836 as the minimum monthly wage for 'unskilled' domestic workers including domestic helps.
Summary:
A major mishap was averted at Hyderabad's Rajiv Gandhi International Airport on Thursday when a fire broke out in an engine of Jazeera Airways flight from Kuwait during landing at 1:30 am.
Summary:
The cop is seen asking the female rider to move her scooty on side of the road before chasing her.
Summary:
After the remains of missing American service members killed in the Korean War arrived in the country, US President Donald Trump on Thursday said he hopes to see North Korean leader Kim Jong-un soon.
Summary:
Pakistan's Finance Ministry has said that a bailout by the International Monetary Fund will not be used to repay Chinese loans and added that the US' concerns in this regard were "totally wrong".
Summary:
A Tokyo medical university cut women applicants' entrance exam scores for years to keep them out and boost the number of male doctors, Japanese media reported.
Summary:
A McDonald's franchise owner in Canada has apologised after a pregnant woman was served cleaning solution instead of milk in latte.
Summary:
The Supreme Court on Wednesday pulled up Amrapali Group for playing "fraud" and "dirty games" with the court and ordered the attachment of bank accounts and movable properties of 40 subsidiary companies.
Summary:
Salman Khan and Katrina Kaif turned showstoppers for designer Manish Malhotra in a fashion show held on Wednesday.
Summary:
A brawl between two rival French rappers caused flight delays and closure of a terminal at France's Paris Orly Airport.
Summary:
Actor Akshay Kumar has announced his upcoming film titled 'Good News', in which he will be paired opposite Kareena Kapoor.
Summary:
Team India head coach Ravi Shastri was caught napping on a chair in the dressing room during the second session of the first Test against England at Edgbaston on Wednesday.
Sanjay (batting coach), can you convey my message to Ravi?" commentator Harbhajan Singh said.
Summary:
Talking about his dismissal on the first ball after play resumed following a delay caused by a pigeon, England opener Keaton Jennings said he wasn't "distracted at all".
That's the way it is," he further said.
Summary:
Brazilian forward Neymar was reportedly paid $266,000 (â¹1.8 crore) for appearing in a commercial wherein he admitted exaggerating fouls during the 2018 World Cup and promised to "become a new man".
Summary:
The 'Safety Centre' will let users see what Uber is doing to keep its trips safe and also suggest tips to the riders.
Summary:
Ola-owned online food ordering and delivery startup Foodpanda India is reportedly in advanced talks to acquire Mumbai-based defunct food startup Holachef.
Summary:
The lungs were grown for 30 days and weren't rejected even after two months of transplantation.
Summary:
The Pakistan Foreign Office has denied permission to invite foreign leaders to the prospective swearing-in of Imran Khan as Prime Minister after his party emerged as the largest in the recently-held elections.
Summary:
Warning against a 'hard Brexit', UK Foreign Secretary Jeremy Hunt said, "Frankly, if we end up with no deal, the only person rejoicing will be Russian President Vladimir Putin." "The probability of no deal is increasing by the day until we see a change of approach from the European Commission," Hunt added.
Summary:
A senior union member said pilots may resign en masse if the salary cuts are forced on them.
Summary:
Compliance improved during the month as 66 lakh returns were filed as on July 31, compared with 64.69 lakh returns in June.
Summary:
Aamir said when director Ashutosh Gowariker approached him with the final draft, he loved it but was "scared".
They heard it and were crying...and told me I should do it," said Aamir.
Summary:
Irrfan Khan, who's undergoing treatment for Neuroendocrine Tumour, said, "My mind could always tell me, 'I've this disease and I could die in a few months or a year or two'." "Or I could just avoid this conversation completely and live my life the way it offers me," he added.
Summary:
Indian-Australian mathematician Akshay Venkatesh won the Fields Medal on Wednesday, considered the Nobel Prize equivalent for mathematics.
Summary:
The Supreme Court on Thursday barred print and electronic media from publishing the images and interviews of the minor girls who were allegedly raped inside a shelter home in Bihar.
Summary:
A 10-year-old swimmer named Clark Kent has broken a 100-metre butterfly record set by 23-time Olympic gold medalist Michael Phelps in 1995.
Summary:
The Congress party's Rajya Sabha members from Assam are planning to complain against Vice President and Rajya Sabha Chairman Venkaiah Naidu, in a letter addressed to Rajya Sabha Chairman Venkaiah Naidu.
Summary:
During the first quarter's call, Musk called a Wall Street analyst "boring bonehead" and called another's questions "dry".
Summary:
Earlier, Defence Minister Nirmala Sitharaman had said India will purchase the Russian S-400 air defence systems despite US sanctions on military transactions with Russia.
Summary:
Hanan Hamid, the student from Kerala, who was trolled on social media for selling fish after college has been appointed as the brand ambassador of the Kerala Khadi Board.
Summary:
A 14-year-old girl was raped by her stepfather for over five months in Madhya Pradesh's Dewas.
Summary:
Initially on the run, he was arrested when he returned to pack his bags.
Summary:
Samajwadi Party President Akhilesh Yadav will reportedly have to pay â¹10 lakh as damages for leaving the government bungalow in a poor state.
Summary:
A video showing two DMK workers beating up staff at a restaurant in Chennai after being denied free biryani recently went viral on social media.
Summary:
The Queen of Angels' School in Gujarat's Bharuch has issued a notice saying students who come to school wearing mehendi on their hands will not be allowed to attend classes.
Summary:
The mob, allegedly drunk, attacked the cops when they were taking one of the villagers to the hospital.
Summary:
During a rally in Florida on Wednesday, US President Donald Trump wrongly claimed Americans need a photo ID to buy grocery.
Summary:
This is the tenth Ebola outbreak since the discovery of the virus in Congo in 1976.
Summary:
A video of Deepika Padukone and her rumoured boyfriend Ranveer Singh from their vacation in the US has surfaced online.
Summary:
Team India captain Virat Kohli, in an interview, said during his initial days, people thought he would just be "flash in the pan".
I'd get constant feedback about my appearance," Kohli added.
Summary:
The BCCI on Wednesday took to Twitter to share pictures of Indian wicketkeeper-batsman Wriddhiman Saha and wish him a speedy recovery following his surgery.
Summary:
However, all three managed to run out of the room just before the scooter exploded.
Summary:
On being asked about using the company products, Tinder parent Match Group's CEO Mandy Ginsberg in a recent interview said, "We just launched a new app and I got connected with my cousin." Ginsberg further said, "I took a screenshot and I sent it to him (and) he said, 'That's gross'".
Summary:
Tesla CEO Elon Musk on Wednesday trolled short seller David Einhorn for betting against the automaker by saying, "Tragic.
Summary:
Former Vishwa Hindu Parishad (VHP) leader Sadhvi Prachi has requested Muslim women to leave their religion and marry Hindu men to get rid of the fear of Triple Talaq and Nikah Halala.
Summary:
"The man had married the second time with consent of his first wife, as they did not have a child.
Summary:
The Nepal Police has arrested 28 Indians allegedly involved in the grey market from Tulsipur in Dang district.
Summary:
The Nazi Germany flag was removed by police officials and taken in as evidence.
Summary:
Birkar reportedly left the medal in a briefcase on a table at the venue, along with his phone and wallet.
Summary:
A 22-year-old man named Thomas Watson on Tuesday managed to extinguish a fire reportedly started by a cigarette butt by peeing on it, saving the worldâÂÂs longest pleasure pier 'Southend Pier' in the UK.
After one failed attempt, I kneeled and peed," Watson said.
Summary:
"I have filed the complaint because 'Ashok Stambh' can't be used for business purpose," Patil said in a statement.
Summary:
Speaking about actresses undergoing plastic surgery, Neha Dhupia said, "You either focus on your job or you focus on the boob job." "Some of the most beautiful women are the ones who haven't gone through [plastic surgery]," she added.
Summary:
Summary:
It was an apparent response to Root who celebrated his match-winning hundred in the third ODI by dropping his bat.
Summary:
Eiffel Tower's management has started reserving specific lifts for each type of ticket holder.
Summary:
New Delhi-born Australian mathematician Akshay Venkatesh has won the prestigious Fields Medal, often dubbed the "Nobel prize for mathematics".
Summary:
Weeks after 11 family members were found hanging inside their home in Delhi's Burari, four of a family were found buried, stacked over one another, with deep stab wounds, at their Kerala home on Wednesday.
Summary:
A Special Border Personnel meeting took place in Sikkim's Nathu La on Wednesday between the armies of India and China as part of celebrations to commemorate the 91st anniversary of the foundation of China's People's Liberation Army (PLA).
Summary:
Saudi Arabia had planned to invade Qatar with the help of the UAE last year, according to a report quoting a US intelligence official and two former US State Department officials.
Summary:
On August 2, 1934, Adolf Hitler became the Führer of Germany after the death of President Paul von Hindenburg.
Summary:
Iraqi soldiers invaded Kuwait on August 2, 1990, after the country was unable to repay its debt to Kuwait from the Iraq-Iran war and accused Kuwait of stealing oil from its Rumaila oil field.
Summary:
However, state-owned Indian Oil Corporation is the top-ranked Indian company at 137.
Summary:
Discussing misconceptions about her portrayal in the media, American actress Jennifer Aniston has said, "With all due respect, IâÂÂm not heartbroken." She added, "The misconceptions are 'Jen can't keep a man' and 'Jen refuses to have a baby because she's selfish'...
Summary:
Summary:
Former Australian all-rounder Shane Watson has said Indian batsman KL Rahul is the best in world cricket right now.
Notably, Rahul has scored 1,512 runs in 38 Test innings so far.
Summary:
Summary:
Xiaomi has launched a smart dustbin which opens automatically using sensors to detect human hand or other objects within a distance of 0-35 cm.
Summary:
Jaitley further wrote that Congress is compromising India's sovereignty.
Summary:
During his visits to their home, he allegedly sexually exploited the girl by threatening to implicate the two in the suicide.
Summary:
A four-year-old boy in Andhra Pradesh's Vijayawada was allegedly killed by a woman as revenge against his father, with whom she had an affair that had become strained.
Summary:
The Delhi Commission for Women has rescued 39 girls who were trafficked from Nepal on the pretext of being offered jobs.
Summary:
A tribal couple was allegedly abducted, thrashed and made to drink urine by the woman's family for marrying against their wishes in Alirajpur district, Madhya Pradesh.
Summary:
Birla is the chairman of the $44.3 billion Aditya Birla Group, which operates in 35 countries across six continents.
Summary:
Rakesh Srivastava, Director (Sales and Marketing) at Hyundai India, has resigned from his position after being associated with the company for almost six years.
Summary:
Billionaire Anand Mahindra has tweeted a video showing the kiosk his team in Mumbai designed for 'shoe doctor' Narsi Ram from Haryana.
Summary:
Apple in its Q3 earnings on Tuesday revealed having $243.7 billion in cash, which is more than the combined market value of India's two largest companies, TCS and Reliance Industries.
Summary:
Nine needles were removed from the throat of a 14-year-old girl at a government-run hospital in West Bengal after a four-hour surgery.
Summary:
A former waitress who stole money from a Mexican restaurant in the US 20 years ago, recently sent $1,000 and an apology letter to the restaurant's owner.
Summary:
Shah Rukh Khan's daughter Suhana has admitted that getting trolled online does affect her.
"People feel like they can judge you.
I keep telling myself that haters are going to hate, but I can't honestly say that I dont get upset by it," said Suhana.
Summary:
Preity alleged Wadia had grabbed her arm during IPL 2014.
Summary:
"I hope it's not taken as entitled just because she happens to be Shah Rukh Khan's daughter.
Summary:
just put that in...it feels like a nonsensical word, but people (in India) would recognise these words," added Pierre.
Summary:
The bridge was designed to evoke the image of the "giant hands of Gods, pulling a strip of gold out of the land," said an official.
Summary:
Punjab Cabinet Minister Navjot Singh Sidhu has accepted Pakistan's Prime Minister-in-waiting Imran Khan's invitation to the oath-taking ceremony on August 11.
Khan's Pakistan Tehreek-e-Insaf (PTI) has also invited former cricketers Sunil Gavaskar and Kapil Dev to the ceremony.
Summary:
Following her meeting with Congress leaders Sonia Gandhi and Rahul Gandhi, West Bengal CM Mamata Banerjee said Opposition parties will unite in the 2019 elections to defeat the BJP.
Our priority is to defeat the BJP.
Summary:
National Herald, a Congress mouthpiece, has published the results of a pre-poll survey conducted in Madhya Pradesh, according to which PM Narendra Modi was voted as the most attractive leader with 41% support.
Summary:
The three-year-old girl who fell into a 110-feet-deep borewell while playing outside her grandfather's house in Bihar's Munger has been rescued after over 30 hours.
Summary:
"While learning Kung Fu, my confidence level has increased," said one of the girls who participated.
Summary:
The Army has 42,635 officers, which is 7,298 short of the sanctioned strength of 49,933.
Summary:
When asked about Priyanka Chopra's upcoming rumoured wedding to American singer Nick Jonas, Shah Rukh Khan jokingly replied, "Even I am getting married." He further said, "I'll send you an invite.
Summary:
Actor Rajkummar Rao, who will be seen romancing Aishwarya Rai Bachchan for the first time in upcoming movie 'Fanney Khan', has said, "It was a very weird combination." He added, "My character is in awe of her in the film.
Summary:
England opener Keaton Jennings and captain Joe Root moved the pigeon away from near the pitch before the match restarted.
Summary:
Off-spinner Ravichandran Ashwin took four wickets to help India restrict England to 285/9 from 216/3 at one stage on the first Test's opening day on Wednesday.
Summary:
Revealing about suffering from mental health issues, Sunrisers Hyderabad's Australian all-rounder Moises Henriques said, "I've been a long time sufferer of mental illness." Henriques also confirmed that he is feeling much better now while admitting that he needs some more time to get back on track.
Summary:
Neymar's mother Nadine Goncalves has come out in defence of her son after the Brazilian forward admitted he "sometimes exaggerated" his reactions during the 2018 FIFA World Cup.
Summary:
An Australian channel took a dig at India captain Virat Kohli, sharing a video of his Test dismissals in England in 2014 with the caption, "Virat Kohli's favourite shot in England." Kohli was dismissed seven times edging the ball to wicketkeeper or slips during his last Test series in England.
Summary:
The report also stated that enough state police wasn't deployed within five kilometre radius of PM Modi's rally.
Summary:
A Russian Su-34 fighter jet destroyed a ship during a naval drill in the Caspian Sea last week.
Summary:
Violent clashes erupted between Zimbabwe's Opposition supporters and police and soldiers in the capital Harare on Wednesday after the Election Commission announced the parliamentary election results.
Summary:
A US federal judge on Tuesday blocked an attempt to release blueprints of untraceable and undetectable 3D-printed plastic guns.
Summary:
Jet Airways has informed its employees that they will have to take an up to 25% cut in their salaries.
Summary:
Malta-based Binance, one of the world's biggest cryptocurrency exchanges, has bought crypto-wallet provider Trust Wallet in its first-ever acquisition.
Summary:
Tata Consultancy Services (TCS) on Wednesday beat India's richest person Mukesh Ambani-led Reliance Industries Limited (RIL) to reclaim the title of India's largest firm by market valuation, within a day.
Summary:
The 56-year-old 'Golden Baba', known for participating in Kanwar Yatra wearing gold jewellery, reached Haridwar on Wednesday to attend the pilgrimage wearing 20 kg of gold jewellery worth â¹6 crore.
Summary:
Pakistani cricketer-turned-politician Imran Khan's Pakistan Tehreek-e-Insaf (PTI) has reportedly invited actor Aamir Khan and ex-cricketers Sunil Gavaskar, Kapil Dev and Navjot Singh Sidhu to his oath-taking ceremony on August 11.
Summary:
The cover, which shows Suhana wearing an Emilio Pucci dress, was unveiled by Shah Rukh at the Vogue Beauty Awards 2018.
Summary:
Team India off-spinner Ravichandran Ashwin bowled England's Alastair Cook for 13(28) in the first Test at Edgbaston on Wednesday.
Summary:
The DMK on Wednesday said that 21 of its party workers have died as they were unable to bear the 'shock' of party Chief M Karunanidhi's illness.
Summary:
Meanwhile, Kolkata Police tweeted that the permission for the rally has been granted.
Summary:
Speaking about being slammed by BJP for her 'civil war' remark on Assam's National Register of Citizens (NRC) draft, West Bengal CM Mamata Banerjee said she's not BJP's servant that she has to reply to their statements.
Summary:
A Bengaluru resident was awarded â¹10,090 by a consumer court after he proved the cakes he bought from a Reliance Fresh outlet were expired.
Summary:
The Hyderabad Traffic Police on Tuesday warned people from taking the viral 'Kiki challenge' and said, "Restrain from Kiki challenge or count the bars." "Accept worthy challenges in life.
Summary:
Singh said concerned states have been asked to shut down these colleges.
Summary:
Authorities eventually pumped out all of the water and services at the station resumed shortly after.
Summary:
Katrina Kaif, who is playing the female lead in upcoming film 'Bharat' after Priyanka Chopra left the project, has said, "I thought the script was wonderful.
Summary:
When asked about actress Priyanka Chopra and American singer-songwriter Nick Jonas' rumoured upcoming wedding, Kangana Ranaut said, "I spoke to Priyanka the other day and I congratulated her.
Summary:
Alia Bhatt has shared a photograph clicked by 'RK', allegedly her boyfriend Ranbir Kapoor, on Instagram.
Summary:
Praising her 'Dhadak' co-star Ishaan Khatter, Janhvi Kapoor has said, "As an actor, I am in awe of him and the way he approaches his scenes." She added, "He has great energy and it is probably because he is new too.
Summary:
PV Sindhu, who was runner-up at the 2017 Badminton World Championships, defeated Indonesia's Fitriani 21-14, 21-10 on Wednesday to reach the women's singles pre-quarterfinals in the ongoing tournament.
Summary:
A study conducted on male and female amateur footballers has found that female footballers showed more signs of microscopic damage as compared to male footballers with the same heading frequency.
Summary:
India, who are playing their first Women's World Cup since the 2010 edition, will face Ireland in the next round on Thursday.
Summary:
After all-rounder Hardik Pandya took to Instagram to share a picture of himself with Dinesh Karthik with the caption "My no.
Summary:
US-based fitness startup Naked Labs, which makes 3D body scanning mirrors, has raised $14 million in funding.
Summary:
The tool is located under 'Your Time On Facebook' in Facebook's 'Settings' and 'Your Activity' in Instagram's 'Settings'.
Summary:
The municipal corporation in Raipur has introduced logs made out of cow dung to conduct funerals.
He added that these logs will be provided to all crematoriums.
Summary:
Rehman was an operational leader of the LeT's attacks in India between 1997 and 2001.
Summary:
The Taliban said that it killed over 150 ISIS fighters and captured 130 others since it launched an offensive against the group in Jawzjan several weeks ago.
Summary:
Kolkata-based Bandhan Bank briefly became India's seventh most valued listed lender on Wednesday, surpassing Yes Bank, which has a nearly seven times larger loan book.
Summary:
The firms have defaulted on payments to Fortis.
Summary:
An SUV plunged 15-20 feet deep after a service road caved in alongside the Agra-Lucknow expressway on Wednesday, following heavy rains.
Summary:
The Bombay HC ruled that children born out of a second marriage don't have any rights on the family's joint-property.
Summary:
Bangladesh's Information Minister Hasanul Haq Inu on Tuesday said that it is incorrect to link illegal immigrants to the country, adding that "you can't link every Bengali speaking person to Bangladesh".
Summary:
Saina allegedly told the makers that she will give a go-ahead only when Shraddha is "completely ready".
Summary:
Janhvi Kapoor and Ishaan Khatter starrer 'Dhadak' has grossed â¹100 crore worldwide while earning â¹63.39 crore in India.
Producer Karan Johar tweeted, "â¹100 crore WORLDWIDE GROSS!!!
Summary:
However, this is $23.5 billion down from the $267.2 billion cash it reported in March quarter.
Summary:
The RBI has reportedly asked Paytm Payments Bank to stop adding new customers on its platform with immediate effect following an audit.
Summary:
The calf was the first born to its group in 3 years, of which only 75 are left.
Summary:
The car's owner, found unconscious in the car, was identified as Jagadeesh, owner of Rathinam College in the city.
Summary:
External Affairs Minister Sushma Swaraj has said that the India-China standoff over Doklam was resolved through "diplomatic maturity without losing any ground".
Summary:
A three-year-old girl fell into a 110-feet-deep borewell while playing outside her grandfather's house in Bihar's Munger on Tuesday.
"The girl is safe and it might take four more hours to rescue her," said an official.
Summary:
The tablets were distributed to enable state-run schools to keep an online track of the attendance of both teachers and students.
Summary:
Delhi's Patiala House Court has allowed Congress leader Shashi Tharoor, an accused in wife Sunanda Pushkar's death, to travel abroad after he deposits â¹2 lakh.
Summary:
As part of an anti-corruption campaign, Philippine authorities crushed 76 luxury cars and bikes worth over â¹37 crore on orders of President Rodrigo Duterte.
Summary:
I love you brother and enjoy your new truck!" Johnson wrote.
Johnson was able to surprise Reed with the truck by convincing him they were giving an interview about their career together.
Summary:
Kylie, who has about 112 million followers on Instagram, currently has a net worth of about $900 million.
Summary:
After falling down at the end of a point in the match, Paire sat on the court and smashed his racquet four times on the court.
Summary:
Kaur scored 34* off 21 balls in the match.
Summary:
It includes one 4K over-the-top display covering the 'main deck' and two full HD displays on each side of the 'upper deck'.
Summary:
Maruti's exports in July fell 9.9% from last year to 10,219 units.n
Summary:
Tesla sued Tripp in June for allegedly sabotaging software in the automaker's manufacturing system and stealing data.
Summary:
A 31-year-old British woman with two wombs got pregnant in both uteri and successfully delivered a baby from each in a "1-in-500-million case".
Summary:
Defending the US government's policy of keeping illegal immigrants crossing into the country at detention centres, an Immigration and Customs Enforcement agency official said that the centres are like a "summer camp".
Summary:
The tribunal also awarded costs of $8.3 million to be paid by the government to the consortium, also comprising BP and Niko Resources.
Summary:
Reliance Industries Chairman Mukesh Ambani had said that registration for JioGigaFiber would start from August 15.
Summary:
Parekh, who received 22.64% negative votes, said ISS had made similar recommendations in the past as well.
Summary:
The RBI's monetary policy committee in its third bi-monthly monetary policy review of 2018-19 on Wednesday hiked repo rate by 25 bps for the second time in a row to 6.5%.
Summary:
Ziauddin said they could not apply as their family's legacy data were missing.
Summary:
England are followed by Australia, who have played 812 Test matches.
Summary:
A 14-year-old girl from Jharkhand has accused two policemen, politicians and builders of raping her and forcing her into sex trade for a year.
Summary:
NRC was prepared in 1951, with the updating process being done in 2015.
Summary:
One of Bihari's helpers said, "We have made almost 400 pens so far."
Summary:
Apple announced Tuesday that its profits rose 30% to $11.5 billion in April-June period, registering its strongest-ever third quarter.
Summary:
BJP-ally Shiv Sena alleged that even though PM Narendra Modi-led government had maintained that Aadhaar cards are completely secure, "its claims have been exposed before everyone".
Summary:
Chief Election Commissioner OP Rawat said that those whose names are not in Assam National Register of Citizens (NRC) draft can vote if their names are on the voter's list and they fulfil all conditions.
Summary:
A four-month-old baby developed breathing problems while on a flight with his parents on Tuesday, and died at the Hyderabad airport.
Summary:
However, the girl's father did not like him and rejected the proposal.
Summary:
Pro-quota groups led by the Maratha Kranti Morcha organised a "jail bharo" agitation on Wednesday at Azad Maidan in Mumbai while local groups in other parts of Maharashtra held similar protests.
Summary:
The unarmed test missile was launched on Tuesday from the Vandenberg Air Force Base in California.
Summary:
Thieves on Tuesday stole some of Sweden's royal jewels from a cathedral, before fleeing in a motorboat.
Summary:
The US embassy in London is auctioning off unwanted items, including 1,200 toilet rolls and a 2007 Volvo S80, following its relocation to a new $1-billion facility in Nine Elms earlier this year.
Summary:
Huawei shipped 54.2 million handsets in the second quarter compared to the 41.3 million iPhones that Apple sold.
Summary:
Ahead of the first Test against England, India captain Virat Kohli said he's not in the "frame of mind" to prove himself in any country.
"I just want to...score...and take Indian cricket forward," added Kohli, who averages 13.40 in Tests in England.
Summary:
Twenty-three-time Grand Slam champion Serena Williams suffered the worst loss of her 23-year-long career after losing 6-1, 6-0 to Britain's Johanna Konta in the first round of the Silicon Valley Classic on Tuesday.
Summary:
England's Football Association is set to bring in a new set of rules in which even team coaches and managers can be handed red and yellow cards by the referees over "irresponsible behaviour".
Summary:
The government has clarified that WhatsApp can't launch its payments services 'WhatsApp Pay' in India without an office and a team in the country.
Summary:
US-based artificial intelligence (AI) startup test.ai has raised $11 million in a Series A funding round led by Google's AI-focused venture fund Gradient Ventures.
Summary:
Amid the controversy over Assam's National Register of Citizens (NRC) draft, Hyderabad BJP MLA Raja Singh said, "If these Rohingyas and Bangladeshi illegal immigrants don't leave India respectfully, then they should be shot and eliminated.
Summary:
A police complaint has been filed by BJPâÂÂs youth wing against West Bengal CM Mamata Banerjee for her remarks on Assam National Register of Citizens (NRC) draft.
Summary:
The world's biggest colony of king penguins and the second biggest of all penguins has reduced by 88% over the past 35 years for reasons yet unknown, according to scientists.
Summary:
The followers had to beat each other, which the leader said was needed to be done to avoid God's punishment.
Summary:
About 7,700 US troops remain unaccounted from the Korean War.
Summary:
One of the gay partners was asked to give up the seat or get off the plane.
Summary:
UpGrad and IIIT BangaloreâÂÂs PG Diploma in Data Science helped learners get placed in companies like Oracle, and Microsoft among 250 recruitment partners.
Summary:
It was my mom's dream to have me pilot her last flight as an Air Hostess," wrote Chinchankar in her Twitter post.
Summary:
A 27-year-old man in Haryana's Pataudi killed himself on a Facebook live stream on Monday evening following an altercation with his wife who left home along with their two kids, Gurugram police said.
Summary:
Following the separation, the families of the man and the woman tried for their reconciliation.
Summary:
The differently abled man used to live alone on a monthly government pension of â¹1,000, police added.
Summary:
"Our first priority is to ensure the security of our passengers and crew," the airline said following the crash.
Summary:
After US President Donald Trump offered to meet his Iranian counterpart Hassan Rouhani for talks without preconditions, Iran Interior Minister Abdolreza Rahmani Fazli said, "The US is not trustworthy." "How can we trust this country when it withdraws unilaterally from the nuclear deal?" Fazli added.
Summary:
Dismissing US President Donald Trump's offer to meet Iranian President Hassan Rouhani, the commander of Iran's Revolutionary Guard Corps Major General Mohammad Ali Jafari said, "Mr Trump!
Summary:
Reiterating that his campaign did not collude with Russia during the 2016 presidential election, US President Donald Trump on Tuesday said, "Collusion is not a crime." Trump's tweet came hours before the start of a trial against his former campaign chairman Paul Manafort.
Summary:
An Indian-origin couple was threatened and racially abused by a man in Canada's Hamilton city who told them to go back to their country and threatened to kill their children.
Summary:
T-Mobile US has named Finland's Nokia to supply it with $3.5 billion in next-generation 5G network gear, marking the world's biggest 5G deal so far.
Summary:
Tata Motors reported its worst loss in nearly nine years at â¹1,902 crore for the June quarter compared to a profit of â¹3,199 crore in the year-ago period.
Summary:
HDFC Chairman Deepak Parekh was reappointed as non-executive director of the country's largest mortgage lender, though 22.64% of the shareholders voted against his continuation.
Summary:
"Sushant decided to bring them [the characters] to life on screen," said Varun.
Summary:
On being asked what he would do if he were to sit across Trump, LeBron said, "I would never sit across from him.
Summary:
A spectator once ran on to the ground to congratulate former Windies' captain Sir Frank Worrell after the latter reached his double hundred during a match in the Caribbean.
Summary:
Worrell, who was born on August 1, 1924, played 51 Test matches for Windies, scoring 3,860 runs at an average of 49.48 and taking 69 wickets.
Summary:
Former Indian batsman Virender Sehwag has not attended a single anti-doping hearing since being inducted into the Anti-Doping Appeals Panel (ADAP) of the National Anti-Doping Agency (NADA) in November 2017.
Summary:
Facebook is reportedly working on a talent show feature that would allow users to compete by singing on its app.
Summary:
Facebook has announced that it removed 32 Pages and accounts that engaged in "coordinated inauthentic behaviour" designed to influence the US elections.
Summary:
US-based no-brand e-commerce startup Brandless on Tuesday announced that it had raised $240 million from SoftBank's $100-billion Vision Fund.
Summary:
A minor girl was allegedly married off by her father to a 25-year-old man in Greater Noida two months ago so he could pay off a debt.
Summary:
At least 60 students fell ill on Tuesday after they drank contaminated water from taps near their school in Maharashtra's Ahmednagar district, the police said.
Summary:
Urging the US to "not send any wrong signals to Taiwan independence forces", China has called on the US not to allow Taiwan President Tsai Ing-wen to transit its territory when she visits Belize and Paraguay next month.
Summary:
A van driver has been sacked after he was captured on video splashing pedestrians by driving into large puddles in Canada's Ottawa.
Summary:
Consumer goods giant Reckitt Benckiser-owned Durex has recalled some condom brands in the United Kingdom and Ireland due to concerns they may burst.
Summary:
Chris Pratt, Zoe Saldana and Bradley Cooper, along with other cast members from the 'Guardians of the Galaxy' franchise, have signed an open letter in support of director James Gunn.
Summary:
American reality television star Kim Kardashian, who recently appeared on TV show 'Jimmy Kimmel Live', revealed she was shooting nude when US President Donald Trump called her to accept her proposal for a meeting.
Summary:
In a police complaint filed against Kannada actor Dharma, a woman has alleged she paid him â¹14 lakh as he was blackmailing her over an obscene video he made of her.
Summary:
Google in its developer's blog on Monday said that it is working with device partners to support display cutouts on edge-to-edge screens with Android P, limiting the number of notches to two.
Summary:
The temporary improvement in water quality is an yearly affair, said a Yamuna Biodiversity Park scientist.nn
Summary:
It will pay at old rates all the pensions halted due to lack of Aadhaar.
Summary:
Earlier, while slamming BJP over NRC, West Bengal CM Mamata Banerjee said there will be civil war in the country.
Summary:
French lawmakers on Monday passed a law banning smartphones, tablets and other internet-enabled devices in schools.
Summary:
A UK judge asked Indian authorities to submit a video of a cell at the Arthur Road Jail in Mumbai, where Mallya would be kept.
Summary:
Nick Jonas will be travelling to India with his entire family to meet Priyanka Chopra and her family, as per reports.
Summary:
Anubhav Sinha, the director of Rishi Kapoor and Taapsee Pannu starrer 'Mulk', has said that no such court order of stalling the film's release has been served upon them.
Summary:
The release date of Shahid Kapoor and Tara Sutaria starrer 'Arjun Reddy' has been announced as June 21, 2019.
Summary:
The first look posters of some of the characters from the upcoming film 'Paltan' have been unveiled.
Summary:
On July 4, Sonali had revealed that she has been diagnosed with cancer that has metastasised.
Summary:
Everybody who knows me knows...I got him out," he added.
Summary:
After MS Dhoni was criticised for his batting in the two ODIs against England, ex-Australia and CSK batsman Michael Hussey defended the former India captain, saying, "You should never write off a champion player." "It's just two innings, come on...He plays according to the situation," Hussey added.
Summary:
Pacer Deepak Chahar, who made his India debut in a T20I against England earlier this month, said he took up cricket seriously only after watching Sachin Tendulkar.
Chahar revealed he met Sachin for the first time when he was 13 and he bowled to him as a net bowler.
Summary:
Daisy said that she was mistaken for an "African prostitute".
Summary:
A man died after blowing himself up on an empty football field in Belgium's Verviers in an apparent suicide.
Summary:
An American football player has retired aged just 24 after suffering his sixth documented concussion.
Summary:
Up to four people can participate in group calls which will be "end-to-end encrypted" like other chats, according to WhatsApp's blog post.
Summary:
HP has announced its first bug bounty program, offering up to â¹7 lakh to hackers who can find bugs in its printers.
Summary:
Union Minister Kiren Rijiju on Tuesday slammed Congress chief Rahul Gandhi for opposing the NRC final draft, tweeting, "Rahul Gandhi ji claims that NRC is a Congress baby...why is Congress Party opposing it?
Summary:
Taking a jibe at Congress over the no-confidence motion against the government, PM Narendra Modi today said he was "thankful" to the party as it allowed him to expose the Opposition's hollowness.
Summary:
CBI court on Tuesday sentenced each of the four accused in the Vyapam scam case to nfour years imprisonment.
Summary:
He has also directed officials to provide immediate financial and medical assistance to people affected by rains.
Summary:
Russian President Vladimir Putin has signed a decree establishing a new directorate in the Russian Army to promote patriotism.
Summary:
The UIDAI on Tuesday warned people from publicly putting their Aadhaar numbers on the internet and posing challenges to others.
Summary:
OnePlus has emerged as the market leader in the premium segment of smartphones in India beating Samsung and Apple in the last quarter, according to a report.
Summary:
France took the lead in the 30th minute before Sarangapani Raman scored India's first-ever international goal in the 70th minute.
Summary:
India said Mallya would be put in barracks with a private toilet and clean bedding.
Summary:
Anil Kapoor has revealed that his wife Sunita Kapoor went abroad on their honeymoon without him as he had to go for a shoot three days after his marriage.
Summary:
A computer systems failure was reported at Mumbai's Chhatrapati Shivaji International Airport on Tuesday, with check-ins for all airlines being done manually.
Summary:
He will continue to be admitted due to overall decline in general health, said the hospital.
Summary:
The Delhi Police on Monday arrested a 63-year-old man who committed burglaries to gift stolen valuables and spend money on his five girlfriends aged between 28-40 years.
Summary:
Tejashwi Yadav, former Bihar Deputy Chief Minister and son of Lalu Prasad Yadav, has defended Super 30 coach Anand Kumar over lying allegations, saying he is being targeted because of his caste.
Summary:
Supreme Court on Tuesday dismissed a petition seeking further probe into CBI Judge BH Loya's death.
The plea sought review of the court's April verdict in which it had held that the judge died of natural causes.
Summary:
In an interview with a TV news channel, a differently-abled victim of the Bihar shelter home rape case said, "I used to be taken upstairs and the âÂÂhead Sirâ would strip and beat me if I didn't fulfil his demands." 34 out of 44 girls were raped at the state-funded shelter home.
Summary:
The government on Tuesday reported a fiscal deficit of â¹4.29 trillion ($62.57 billion) for April-June or 68.7% of the budgeted target for 2018-19.
Summary:
TV actress Hina Khan has said that people "love to see her in a changed avatar" adding, "When I post pictures, I get such good response, they don't want to see me just in Indian clothes." Talking about her plans on daily soaps, she said, "I won't stick to just doing that.
Summary:
Filmmaker Omung Kumar, who made his directorial debut with a biopic on boxer Mary Kom, has said the biopics in Bollywood are not going to die anytime soon.
Similar is the case with biopics," he added.
Summary:
Akshay Kumar, while talking about his early life, said, "I still remember when I could not buy a book called 'How To Learn Acting' because I did not have sufficient money." He added that he couldn't find the book later when he searched for it.
Summary:
New Zealand last toured Pakistan in 2003, just a year after an attack near their team hotel in Karachi killed at least 12.
Summary:
Indonesia has invited North Korean leader Kim Jong-un to attend the opening ceremony of the Asian Games next month.
Summary:
Further, Harley-Davidson is set to release two more electric models by 2022 to broaden the portfolio with lighter, accessible product options.
Summary:
MS-ISAC said the packages arrived in a China-postmarked envelope containing a "confusingly worded typed letter" and a set of Word files that include script-based malware.
Summary:
Rajasthan BJP MLA Gyan Dev Ahuja has said that cow slaughtering is a bigger crime than terrorism.
Summary:
Two security guards have been sentenced to life imprisonment for raping a 30-year-old engineering graduate inside a park in Bengaluru in 2015.
Summary:
Slamming BJP over the final draft of the National Register of Citizens in Assam, West Bengal CM Mamata Banerjee today said, "They are trying to divide the people.
There will be a civil war, bloodbath in the country." She added, "The NRC is being done with a political motive.
Summary:
A 35-year-old farmer allegedly committed suicide in Maharashtra's Savkhed Tejan village after building his own pyre with animal fodder and wood.
Summary:
Judges in the UK will no longer be required to give permission to end life support of patients who have been in a vegetative or minimally conscious state, the UK's Supreme Court ruled.
Summary:
Khan violated the secrecy of ballot by casting vote publicly.
Summary:
HDFC Bank, India's largest lender by market capitalisation, launched its share sale to raise up to â¹15,500 crore on Monday.
Summary:
Outgoing Bank of Baroda Chairman Ravi Venkatesan has said the government must allow banks' boards to hire their own management and free them up to decide strategy.
Summary:
Chinese internet giant Tencent's stock has tumbled 25% since its peak in January, wiping $143 billion from its market value, the biggest ever slump worldwide as measured from the date of each stock's 52-week high.
Summary:
Freedom fighter Shaheed Udham Singh, who assassinated former Lieutenant Governor of Punjab Michael O'Dwyer in revenge for the Jallianwala Bagh massacre, was hanged by the British on July 31, 1940.
Summary:
Central Board Of Film Certification Chairman Prasoon Joshi has said that references to Kashmir in Tom Cruise's film 'Mission: Impossible -Fallout' were asked to be "rectified or removed" as the integrity of India's borders is "non-negotiable".
Summary:
Actor Akshay Kumar, while talking about his wife Twinkle Khanna said, "Looking at the 14 films what she has done, writing has been her best decision." He added, "I still remember when I was doing films with her, before the shot was ready...
Summary:
Neha Dhupia, while talking about having a private wedding which she announced later on Instagram, said, "I had around 600 messages that read, "What the f**k!" instead of "Congratulations"...it was a surprise to a lot of people." Neha, who married Angad Bedi in May, added, "We just wish to control...
Summary:
Chennai and San Bruno based business software tools providing startup Freshworks (formerly Freshdesk) on Tuesday raised $100 million in Series G funding and became a billion-dollar startup at a valuation of $1.5 billion.
Summary:
Interestingly, reports in April claimed that Amazon is working on making robots for home codenamed 'Vesta'.
Summary:
Astronomers have detected the first radioactive molecule in space, believed to be from a stellar explosion that was visible in the 17th century by the naked eye.
Summary:
A 35-year-old man allegedly committed suicide by hanging himself from a tree in Maharashtra's Beed district over Maratha reservation demand.
Summary:
Following the protest by the Opposition on Assam's recently released National Register of Citizens (NRC) draft, BJP President Amit Shah said, "Whom do you want to save?
Summary:
Earlier, then Army Chief General Dalbir Singh had stopped golfing activities after the Uri attack.
Summary:
A drunk police officer parked his car in the middle of the road, played loud music and danced on the road in Gurugram on Monday night.
Summary:
The anti-graft agency has disciplined more than 1.5 million officials since 2012.
Summary:
"Not easy to learn the accent and cadence of the language but this Chinese lady seems to have conquered the Great Wall of Tamil," Mahindra wrote.
Summary:
According to CCTV footage, Mika's employee Ankit Vasan was seen leaving the building around the time of the theft.
Summary:
The song is a recreation of Shammi Kapoor starrer song which was sung by Rafi for the 1969 film 'Prince'.
Summary:
After Akshay's exit, Gulshan's son Bhushan Kumar had said that the "new lead actor could be bigger than Akshay".
Summary:
Reacting to a video of his 13-year-old son Bronny James' dunk shot, three-time NBA champion LeBron James tweeted, "Uh-Oh!!
Summary:
Meanwhile, cricketers Harbhajan Singh and RP Singh also came forward to help the ailing 64-year-old athlete, who is suffering from liver and kidney ailments.
Summary:
A stray dog was awarded a medal after it completed a half-marathon in outback Western Australia this month.
Summary:
The record for the best-ever bowling figures in Tests, set by late England off-spinner Jim Laker, on July 31, 1956, has been unbroken for 62 years.
Summary:
Tripura CM Biplab Deb said there's no demand for a citizen's register like National Register of Citizens (NRC) in Tripura and added, "This is not a big issue even for Assam." He added that Assam CM Sarbananda Sonowal is capable of managing the situation.
Summary:
Scientists have successfully documented the first-ever hybrid between a rough-toothed dolphin and a melon-headed whale near Hawaii coast.
Summary:
After the final draft of the National Register of Citizens was released in Assam, the BJP said a similar exercise would be conducted in West Bengal to "kick out illegal Bangladeshi immigrants" if BJP came to power.
Summary:
The girl, who would visit the coaching institute for computer training, has been sent to a hospital for medical examination.
Summary:
China on Tuesday launched an optical remote sensing satellite which will be used to monitor its Belt and Road Initiative.
Summary:
Shale gas, found trapped under sedimentary rock formations, is an important source of energy in the US and Canada.
Summary:
Mallya categorically stated he's ready to settle outstanding dues with the banks.
Summary:
Actress Priyanka Chopra is set to play the lead female role opposite Chris Pratt in the upcoming Hollywood film 'Cowboy Ninja Viking', as per reports.
The film's co-producer Nikhil Namit had said she had cited her engagement for quitting the film.
Summary:
Actress Aishwarya Rai Bachchan has confirmed that she will star in the film 'Gulab Jamun' with her husband Abhishek Bachchan.
Summary:
A six-year-old boy named Ryan who has become a YouTube star with his toy review videos is launching his own toy line at Walmart under the name 'Ryan's World' next month.
Summary:
Slamming the final draft of Assam's National Register of Citizens (NRC), West Bengal CM Mamata Banerjee on Tuesday said she was surprised to see that the names of former President Fakhruddin Ali Ahmed's family members are not on the list.
Summary:
Jaipur Police on Monday posted a unique graphic on its social media platforms warning against the viral 'Kiki challenge' with the caption "Don't challenge death." "Keep away from silly stunts & advise your friends as well to stay safe," their post further read.
Summary:
He added that 12 of them joined militancy in the period after Governor's rule was imposed in the state on June 20.
Summary:
PM Narendra Modi's official channel on video-sharing platform YouTube has garnered over 1 million subscribers.
Summary:
Chirag Patnaik, member of Congress' social media team was arrested by Delhi Police on Monday for allegedly sexually harassing a former colleague of the team and was later released on bail.
Summary:
Pakistan Tehreek-e-Insaf (PTI) spokesperson Fawad Chaudhry has said the political party is considering inviting Prime Minister Narendra Modi to its leader Imran Khan's oath-taking ceremony as Pakistan Prime Minister next month.
Summary:
Supreme Court told the Centre that no "coercive action" should be taken against those whose names were excluded from National Register of Citizens (NRC) draft released by Assam government as it's only a draft.
Summary:
Reacting to a query on law and order in Rajasthan in view of recent lynching incidents, CM Vasundhara Raje said lynching is not the reality of Rajasthan but the reality of the world.
Summary:
Four members of the Russian feminist protest group 'Pussy Riot' were immediately arrested after being released from prison.
Summary:
US State Secretary Mike Pompeo on Monday warned the International Monetary Fund (IMF) against a possible bailout for Pakistan.
Summary:
India's richest person Mukesh Ambani's Reliance Jio will spend about â¹50,000 crore in the next six to eight quarters to build its broadband business JioGigaFiber.
Summary:
The Competition Commission of India has ordered a probe against Star India and Sony Pictures for alleged unfair practices with regard to pricing of television channels.
Summary:
Former pornstar Mia Khalifa has revealed she will undergo surgery after one of her breast implants deflated when she was hit by a puck during an ice hockey match in May. Khalifa said the puck was travelling at 80 mph when it struck her left breast.
Summary:
The India A pacer captioned the post, "#bowled #cook #indiaA #bleedblue @indiancricketteam".
Summary:
Real Madrid have been awarded an honorary WWE championship by WWE veteran and Executive Vice President 'Triple H' as a tribute to the club's haul of three consecutive UEFA Champions League titles.
Summary:
Notably, Brian Christopher competed in the WWE under the name of Grandmaster Sexay.
Summary:
In the video, Maximo is talking to his father before turning around and excitedly saying, "Messi" and giving him a high-five.
Summary:
Uber had to pay Waymo nearly $245 million in equity and later also fired Levandowski for the same.
Summary:
A 16-year-old girl died on Monday in the Bhadohi district of Uttar Pradesh after her alleged stalker barged into her house and set her on fire.
Summary:
Prime Minister Narendra Modi has asked citizens to give ideas for his speech on Independence Day at the Red Fort in Delhi, a practice he has followed in the last few years.
Summary:
In the report, investigators said the controls of the aircraft were likely deliberately manipulated to take it off course.
Summary:
Russia may offer its Project 22800 corvettes equipped with Kalibr cruise missiles to India, China, Vietnam and other countries in the Asia-Pacific region, Deputy Prime Minister Yury Borisov said.
Summary:
The growth in profit was aided by a dividend income of â¹511 crore from HDFC Bank in the reporting quarter.
Summary:
RIL's market capitalisation during the day was â¹7.44 trillion as compared to TCS' â¹7.39 trillion.
Summary:
TRAI Chief RS Sharma wrote in an article that he has "not lost the challenge", and is confident that he will not, after hackers claimed to have hacked his bank account details using his Aadhaar number.
Summary:
WhatsApp has officially released its group calling feature on both Android and iOS, where up to four people can participate in audio and video conversations.
Summary:
Further, China-based rival Xiaomi had surpassed Samsung in the Indian smartphone market for two quarters.
Summary:
A NASA-backed research has refuted SpaceX CEO Elon Musk's idea of nuking the arid atmosphere of Mars to make it warm and habitable.
Summary:
A headline of an article in 'National Herald', a Congress mouthpiece, has referred to the Rafale jets deal as PM Narendra Modi's Bofors.
Summary:
Summary:
The Delhi High Court has issued notices to e-commerce giants Flipkart and Amazon for violating FDI norms after a PIL by NGO Telecom Watchdog.
Summary:
However, a dust storm presently engulfing Mars is obscuring surface details normally visible through telescopes, said scientists.
Summary:
After tests and configurations spanning three months in space, NASA's latest planet-hunting spacecraft TESS has begun science operations.
Summary:
Villagers in Uttar Pradesh's Hamirpur have washed a temple with 'gangajal' (holy water) and sent the statues of deities to Allahabad for purification after BJP MLA Manisha Anuragi's visit.
Summary:
Jailed RJD chief Lalu Prasad Yadav's elder son Tej Pratap dressed up as Lord Shiva to offer prayers at the deity's temple in Bihar's Patna.
Summary:
The US has granted Strategic Trade Authorization-1 (STA-1) status to India, thereby allowing it easier access to sensitive and high-technology products.
Summary:
Actress Kangana Ranaut and Chhattisgarh CM Raman Singh on Monday launched a smartphone distribution scheme called 'Mobile Tihar' under Sanchar Kranti Yojana.
Summary:
The traffic police in Bengaluru recently deployed a man dressed as Lord Ganesha to give helmets to commuters as part of its road safety campaign.
Summary:
The Islamabad chief commissioner has declared former Pakistan Prime Minister Nawaz Sharif's private ward at the Pakistan Institute of Medical Sciences (PIMS) as a sub-jail.
Summary:
Earlier, US confirmed that North Korea is producing material for nuclear bombs.
Summary:
The New Zealand Transport Agency (NZTA) has agreed to update its "Linemen" signs to "Line Crew" after receiving a letter from a seven-year-old who pointed out that "women can be line-workers too".
Do you agree?" Zoe Carew wrote in a letter to the NZTA.
Summary:
Turkish President Recep Tayyip ErdoÃÂan has reportedly called on BRICS leaders to take necessary steps to allow the country's accession to the group.
"I have seen that BRICS members are considering involving other countries in this platform.
Summary:
A petition on change.org is seeking to change the borders of Turkey's Batman province so that it resembles the logo of the superhero on maps.
"Batman needs some change!
Summary:
Karthik had earlier revealed that he and Pandya became friends last year after meeting for the first time during the ICC Champions Trophy in England.
Summary:
Skofterud won the 4x5 kilometre cross-country skiing relay gold at the Vancouver Winter Olympics in 2010 and was twice world champion, in 2005 and 2011.
Summary:
Sri Lankan cricket board's head Thilanga Sumathipala has accused the country's World Cup-winning former captain Arjuna Ranatunga and his then-teammate Aravinda de Silva of match-fixing.
Summary:
Artificial intelligence startup OpenAI, co-founded by Elon Musk, has developed an AI system to train robot hands in grasping and manipulating objects like humans.
Summary:
Samajwadi Party MP Jaya Bachchan on Tuesday staged a protest in the Parliament complex along with fellow parliamentarians against Assam government's final draft of National Register of Citizens (NRC).
Summary:
Physicists are testing with lead atoms to see if the LHC could be used as a gamma-ray factory to produce exotic particle beams.
Summary:
Shares of IndiGo operator InterGlobe Aviation slumped as much as 11.3% to hit a 16-month low after the company reported a 97% decline in its June-quarter profit to â¹28 crore.
Summary:
Researchers said the shape makes packing stable and "energetically efficient".
Summary:
Prime Minister Narendra Modi called up Imran Khan to congratulate him for his party Tehreek-e-Insaf emerging as the largest political party in the National Assembly of Pakistan in the recent elections.
Summary:
Actress Aditi Rao Hydari said when she spoke about facing casting couch in film industry in 2013, she didn't get work for eight months.
Summary:
The club is powered by solar panels installed on the stadium roof and has electric car charging facilities.
Summary:
External Affairs Minister Sushma Swaraj has assured help to a man who lost his passport in the US, days before he was scheduled to travel for his wedding.
Summary:
The mass blooming of Neelakurinji flowers, a phenomenon which occurs once in 12 years, is taking place in the Eravikulam National Park in Kerala's Munnar.
Summary:
Summary:
US President Donald Trump on Monday said that he is willing to meet Iranian President Hassan Rouhani without any preconditions.
I believe in meetings," he added.
Summary:
After director Ali Abbas Zafar confirmed that Katrina Kaif will be playing the female lead in 'Bharat', Salman Khan tweeted, "Ek sundar aur shusheel ladki jiska naam hai Katrina Kaif...Swagat hai aapka 'Bharat' ki zindagi mein." Katrina was approached after Priyanka Chopra's exit from the film.
Summary:
Former Indian cricketer Sachin Tendulkar took to Twitter to wish singer Sonu Nigam on the occasion of his 45th birthday.
Wishing a very happy birthday to you, #SonuNigam," Tendulkar wrote.
Summary:
Former Sri Lankan captain Sanath Jayasuriya was seen throwing balls for his son to practise his batting skills.
Jayasuriya represented Sri Lanka in 110 Tests, 445 ODIs and 31 T20Is.
Summary:
Indian woman cricketer Smriti Mandhana took to Instagram to share a picture of herself with Kumar Sangakkara, calling it "big fan girl moment".
Great ambassador and great skill," Sangakkara tweeted about Mandhana's joint-fastest women's T20 fifty on Sunday.
Summary:
Indian men's senior football team coach Stephen Constantine has apologised for his comments on India's Under-17 World Cup football team, saying he did not want to offend anyone.
Summary:
One of Messi's kids says, "He (Hulk) is very good playing football," before the other replies "Yeah, but dad is better."
Summary:
Ukrainian middle-distance runner Anton Grabovsky has been banned for six months by the athletics federation for criticising the team kit as "unattractive" and "poorly-designed".n"I think they (national federation) exaggerated a bit that I insulted sponsor, calling their outfit s**t," Grabovsky said.
Summary:
US-based manufacturer Corning has developed 'Gorilla Glass 6' for smartphones that can survive up to 15 drops onto rough surfaces from one-metre height.
Summary:
The startup gets access to users' listening data after they log-in using their Spotify account.
Summary:
Amazon's US employee Shannon Allen has claimed that the company "screwed me over and over and I go days without eating" over a workplace accident.
Summary:
The West Bengal government will compensate families of those killed or injured in accidents and natural disasters within 24 hours.
"We on our part can ensure speedy disbursal of compensation," said Disaster Management Minister Javed Ahmed Khan.
Summary:
Kerala Chief Minister Pinarayi Vijayan is set to undergo treatment and a possible surgical procedure at the Mayo Clinic in United States' Minnesota.
Summary:
After a Hindu man and a Muslim woman had eloped, her relatives stormed his house and staged a hunger strike outside the police station.
Summary:
Claiming the Samajwadi Party and BSP symbolise "casteist politics", expelled Samajwadi Party leader Amar Singh on âÂÂMonday said he would prefer to support Prime Minister Narendra Modi and UP Chief Minister Yogi Adityanath.
Summary:
A 32-year-old Indian man in the UAE is battling for his life after he allegedly jumped off the third-floor balcony of his apartment in a bid to escape when some of his lenders showed up, the police said.
Summary:
Summary:
The administration was triggered by Force India's Mexican driver Sergio Perez who was reportedly owed $4 million.
Summary:
An undeveloped 157-acre plot of land overlooking Beverly Hills in the US has been listed for sale at $1 billion.
Summary:
The company's shares fell 34% over the last six days even after it clarified that it never produced or sold human vaccines.
Summary:
After TRAI Chairman RS Sharma challenged hackers to access his personal information using his Aadhaar number, his daughter Kavita Sharma on Monday received an e-mail threatening her of regretful consequences.
Summary:
Pictures from the sets of 'Bharat' showing Salman Khan's look in the film have emerged online.
Summary:
The song was being used by trolls to target the government as some lyrics matched PM Narendra Modi's political slogan 'Acche Din'.
Summary:
Summary:
The Criminal Law (Amendment) Bill, 2018, which provides for stringent punishment including death penalty for those convicted of raping girls below the age of 12 years, was passed in Lok Sabha today.
Summary:
As many as 16 BJP MPs and MLAs have criminal charges related to kidnapping filed against them, the highest for any political party in India, according to an Association for Democratic Reforms (ADR) report.
Summary:
Rajasthan CM Vasundhara Raje on Monday said mob lynchings happen all over the world and she would have to be âÂÂmore than Godâ to know about every incident that happens in the state.
Summary:
A 35-year-old man allegedly committed suicide by jumping in front of a train in Aurangabad over the Maratha reservation demand.
Summary:
A corrected version was not posted, but several another tweets on America's economy were posted later.
Summary:
The refund amount cleared so far is almost 35% higher at around â¹77,700 crore, the report added.
Summary:
A woman named Saba Arif has accused IIFA of plagiarism as IIFA Awards 2018 used clips in their tribute video on Sridevi from a video which Saba had made and uploaded on YouTube in March 2018.
Summary:
Actor Sanjay Mishra has said that people go to cinema halls for heroes and not for actors like him.
Summary:
Actor Ranveer Singh has said that he stopped fearing being judged for his fashion after he started doing what he really felt like doing.
Summary:
Summary:
During a question-answer session on Instagram, France's World Cup-winning midfielder Paul Pogba revealed his medal is currently with his mother and he hopes she will give it back after his holidays.
Summary:
Selected players will be invited to a parade during the third day of the Test against India.
Summary:
Cricket Australia's employee Angela Williamson has alleged that she was sacked by the Australian cricket board over her tweets related to women's abortion rights in the nation.
Summary:
British comedian John Oliver has trolled Facebook for its business model, its content moderation, and its recently released apology ads on the recent data scandal.
Summary:
The policy also proposes that the government would have access to data stored in India for national security.
Summary:
Summary:
A married woman allegedly murdered her lover in Andhra Pradesh's Prakasam district while the two were having bondage sex on Saturday night.
Summary:
A plumber allegedly smashed his wife's head with a hammer and slit his four-year-old son's neck with an electric cutter in Fatehabad district, Haryana on Sunday.
Summary:
Speaking of Shiromani Akali Dal, former Punjab Chief Minister Parkash Singh Badal has said, "I have treated the party like my mother." Badal, who served as the president of Shiromani Akali Dal between 1996 and 2008, said he "remained a loyal soldier" even during disagreements on critical issues.
Summary:
Congress spokesperson Anand Sharma on Monday asked the Assam government to convene an all-party meeting on the National Register of Citizens issue and inform the Opposition on the proposed steps to ensure that no Indian citizen is left out.
Summary:
Provisions for bad loans fell to â¹3,338 crore, from â¹7,179.5 crore in the previous quarter.
Summary:
India's largest airline IndiGo's operator InterGlobe Aviation reported its worst performance in at least 3 years as its June quarter profit fell 97% to â¹28 crore.
Summary:
The biopic on actor Sanjay Dutt also became the first ever film in Ranbir's 11-year-long career to earn â¹300 crore in India.
Summary:
South African author Shubnum Khan has revealed how her photos taken six years ago by a photographer went viral and ended up being on a McDonaldâÂÂs advert.
Her photos were used to promote immigration in Canada, sell carpets in NYC and even sell fairness creams.
Summary:
Global smartphone maker OnePlus recently opened an offline authorised store in Bengaluru at Jayanagar, 4th Block on July 28.
Summary:
Seven members of a family including two infants were found dead at their rented home in Jharkhand's Ranchi on Monday, with two of them hanging from the ceiling.
Summary:
Tesla's billionaire CEO Elon Musk personally delivered Model 3 car to a customer using a new delivery method where an enclosed trailer directly delivers cars from the factory to home.
Summary:
All the five participating students from India have won gold medals at the 49th International Physics Olympiad held in Portugal this year, in a first since India started competing in 1998.
Summary:
During his first official visit to China, British Foreign Secretary Jeremy Hunt mistakenly described his Chinese wife as Japanese.
Summary:
Sulzberger revealed the details of their off-the-record meeting after Trump tweeted about it.
Summary:
UPL's $4.2 billion acquisition of Arysta LifeScience is the largest overseas acquisition by an Indian company for the year.
Summary:
Dismissing former Telecom Minister Dayanidhi Maran's appeal, the Supreme Court on Monday asked him and his brother Kalanithi Maran to face trial in the 'illegal' BSNL telephone exchange case.
Summary:
Tiger Shroff starrer 'Student of The Year 2', which was earlier scheduled to release on November 23, has got a new release date which is May 10, 2019.
Summary:
John Abraham, while talking about the pregnant goat's death after it was allegedly gangraped by eight men in Haryana's Mewat, said, "Being an Indian, I say women and animals are not safe in our country." "These guys should be given capital punishment, simple.
Summary:
Sharing the video of the song on Twitter, Anil wrote, "A bond beyond words is that of a father and daughter!
Summary:
Ishaan Khatter, on being compared with his half-brother Shahid Kapoor, said he doesn't think he's a better dancer than Shahid.
I've learnt so much from bhai [Shahid] just by being around him that I just can't do that," he added.
Summary:
Summary:
Sonam Kapoor, while wishing her husband Anand Ahuja on his 35th birthday on Monday, shared their picture captioning it, "You make my world better...I'm so blessed you were born today." "To the love of my life and the kindest gentlest soul I know...happy birthday," she further wrote.
Summary:
Former Indian cricketer Virender Sehwag took to Twitter to congratulate Indian javelin thrower Neeraj Chopra for winning gold medal at Savo Games in Finland.
Chopra had earlier won gold at the Commonwealth Games 2018.
Summary:
"(The night before the ODI)...I was wondering how I could turn Dhoni into a 'player' because he had...a lot of potential," Ganguly said.
Summary:
Graham Prior, coach of South Africa's squash team, died after collapsing on the road due to a heart attack after the team's World Junior Squash Championship play-off match against Singapore in Chennai.
Summary:
Speaking about the ball-tampering scandal, South African pacer Dale Steyn said that the scandal was almost like a cry for help from the bowlers due to the disparity between batting and bowling in cricket.
Summary:
Researchers at film company 20th Century Fox have developed an artificial intelligence (AI) system that can predict a movie's audience based on its trailer.
Summary:
While addressing the audience at the recent music festival Loveloud benefiting the LGBTQ+ youth, Apple CEO Tim Cook said that they are "a gift to the world".
Summary:
In his recent Mann Ki Baat address, PM Narendra Modi praised two Indian techies Yogesh Sahu and Rajnish Bajpai in the US for creating India's first 'smart gaon', Taudhakpur.
Summary:
Speaking of Congress president Rahul Gandhi, former Punjab CM Parkash Singh Badal said, "Rahul is immature.
Summary:
Chinese e-commerce startup Pinduodo (PDD), founded by former Google employee Colin Huang, has reached a valuation of approximately $30 billion within 3 years of launch.
Summary:
Moody's said the estimated revenue loss from the GST rate cuts is 0.04%-0.08% of GDP annually.
Summary:
Rosha, currently HSBC's Head of Financial Institutions Group for Asia-Pacific, has 27 years of experience in financial services.
Summary:
A 22-year-old girl's father got his daughter's stalker from Uttar Pradesh arrested after posing as a Mumbai-based producer of film titled 'Mai Hu Auto Wala'.
Summary:
"I am extremely excited to work with Katrina and Salman once again...
Summary:
A US man got hit by a car as he slipped on the road while doing the viral 'Kiki challenge'.
Summary:
The government is mulling a single regulator and legislation to address all e-commerce related issues in the country, according to a draft policy document seen by Reuters.
Summary:
Bengaluru-based health and fitness startup Cure.fit has raised $120 million in Series C funding round led by IDG Ventures, Accel Partners, and Kalaari Capital.
Summary:
India is a key partner in US' efforts to ensure peace, stability and prosperity in the Indo-Pacific region, the US State Department has said.
Summary:
The Ministry of External Affairs has reportedly asked the government of Antigua and Barbuda to "confirm his (Mehul Choksi) presence in their territory and detain him and prevent his movement by land, air or sea".
Summary:
The nun had alleged the bishop raped her multiple times between 2014-2016.
Summary:
During his 'Mann ki Baat' address, PM Modi praised Panda saying she didn't let her disability deter her from becoming a topper.
Summary:
A constable employed with the Central Reserve Police Force (CRPF) was shot dead by unidentified militants when he was on leave at his home in south Kashmir's Pulwama on Sunday.
Summary:
Saudi King Salman bin Abdulaziz has told the US that the kingdom won't be able to support its plan for Israeli-Palestinian peace if it doesn't include a Palestinian capital in East Jerusalem.
Summary:
German breweries are running out of beer bottles amid the ongoing heatwave, with some breweries turning to social media to ask for help.
Summary:
Malaysia Airlines flight MH370 was probably deliberately steered off course and flown to the southern Indian Ocean, according to the Malaysian government's safety report into the disaster.
Summary:
A US man was convicted on all charges in the death of his 12-year-old daughter, who was shot by a constable serving eviction papers with a bullet that went through her father's arm.
Summary:
Diana Penty, who made Bollywood debut with 'Cocktail' in 2012, said that the time between her debut film and second film 'Happy Bhag Jayegi', which released in 2016, was very confusing.
Summary:
Former Pakistan pacer Shoaib Akhtar has said that the nation will become an 'Asian Tiger' under the leadership of World Cup-winning former captain Imran Khan, who is Pakistan's PM-elect.
Summary:
Kapil Dev smashed four consecutive sixes off England spinner Eddie Hemmings at Lord's on July 30, 1990, becoming the first-ever player to hit sixes off four consecutive balls in Tests.
Summary:
Reacting to a photo earlier posted by Shikhar Dhawan, Indian batsman Cheteshwar Pujara has retweeted the same photo with a different caption, that reads, "Na ho koi fikar, jab humaare beech mein ho Shikhar!" Dhawan had earlier posted the photo that featured Pujara and Virat Kohli, with the caption, "Kaise na ho gujara..
Summary:
Zimbabwe's cricket board has received funds from ICC to clear all the dues of the players and staff of the Zimbabwe national cricket team.
Summary:
Manika Batra, who won four medals at CWG in April, is yet to receive cash reward promised by the Delhi government.
Summary:
Swedish forward Zlatan Ibrahimovic won his side, LA Galaxy, the match against Orlando City SC after scoring his first ever hat-trick in the MLS championship on Sunday.
Summary:
Brazil's forward Neymar Jr has admitted in an advertisement that he sometimes did exaggerate his reactions while playing for Brazil in the recently-concluded World Cup 2018 in Russia.
Summary:
After the Assam government released National Register of Citizens' (NRC) final draft, state Congress chief Ripun Bora said it was surprising that 40 lakh people are excluded, adding there are a lot of irregularities in the list.
Summary:
Online food delivery app Swiggy is looking to expand its service offering delivery for categories including grocery, medicines, flowers and gift shops, according to reports.
Summary:
Amazon India has led an $11-million Series B funding round in Gurugram-based bus aggregating startup Shuttl, along with Dentsu Ventures.
Summary:
The prisoner claimed he paid â¹1 lakh to the jailer who provided him with all the items, including cake, candles, knife and lighter, for his 40th birthday.
Summary:
For deposits from 2 years to 3 years, the interest rate has been revised to 6.75% from 6.65%.
Summary:
The fully-loaded variant of Asus Zenfone 5z with 8GB RAM, 256GB storage is now available on Flipkart at â¹36,999.
Summary:
Talking about why he signed 'Race 3', actor Anil Kapoor said he did it for the money.
Summary:
The apps were uploaded in June and July but have reportedly been taken down now.
Summary:
A polar bear was shot dead by a guard after it attacked and injured his colleague working for tourist cruise ship MS Bremen, which was visiting an Arctic archipelago in Norway.
Summary:
The Assam government on Monday released the final draft of National Register of Citizens (NRC) list, in which over 40 lakh people were excluded.
Summary:
Ethical hackers on Sunday claimed to have accessed TRAI Chief RS Sharma's bank account details and deposited â¹1 in his bank account to highlight the potential of Aadhaar being misused.
Summary:
Delhi CM Arvind Kejriwal on Sunday publicly tore a report on CCTVs prepared by a special committee constituted by the L-G and said his government would install the cameras without Delhi police's licence.
Summary:
US President Donald Trump has threatened to shut down the government ahead of the spending deadline in September if Democrats do not fund his border wall and back immigration law changes.
Summary:
The US began imposing sanctions against Iran after it withdrew from the 2015 nuclear deal.
Summary:
Former Pakistan Prime Minister Nawaz Sharif was on Sunday shifted to the Pakistan Institute of Medical Sciences (PIMS) in Islamabad after his health deteriorated at Rawalpindi's Adiala prison.
Summary:
"They would have to take somebody else to portray his younger version," he further said.
Summary:
Former Manchester United captain Wayne Rooney was left with a broken nose after scoring his first goal for his new club, MLS' DC United, on Sunday.
Summary:
Geraint Thomas became the first Welshman to win the Tour de France cycling race in Paris on Sunday.
Summary:
With nine races remaining in the season, Hamilton now holds a 24-point advantage at the top of the drivers' championship.
Summary:
A video shows skydivers trying to unlock a phone using Face ID in free fall.
Summary:
Google's keyboard, Gboard, suggests the phrase 'on my face' on typing 'sit' on Android devices.
Are you free to sit", to which, Google's autocomplete added "on my face".
Summary:
Brikk also offers â¹34,000 luxury iPhone charging docks which include built-in audio jacks and lightning ports.
Summary:
Summary:
Former Jammu and Kashmir CM Omar Abdullah has claimed that more youths have been joining militancy in recent years.
Summary:
The Assam government has made it mandatory for its staff to take care of their elderly parents and differently-abled siblings who don't have an income source.
Summary:
Seventeen people were injured when a tin shed collapsed during a tractor race in Padampur, Rajasthan.
Summary:
He said, "I don't know why Satish Mahana sounded rather low-key while referring to launch of projects worth â¹60,000 crore...
Summary:
A man in Mumbai has filled 556 potholes in the city in memory of his 16-year-old son who died after his bike fell into a pothole on a waterlogged road in 2015.
Summary:
A youth has been arrested in Mumbai after he made a call to National Security Guard (NSG) control room and warned of a chemical attack on PM Narendra Modi.
Summary:
Around 1,000 fast-track special courts need to come up across India as part of a scheme to dispose of rape and Protection of Children from Sexual Offences (POCSO) cases, the Law Ministry estimated.
Summary:
Summary:
A Spirit Airlines flight was diverted after passengers were sickened by an odour they say smelled like "dirty socks".
Summary:
An official statement by Kauvery hospital, where DMK President M Karunanidhi has been admitted in the ICU, has stated that there was a transient setback in the clinical condition of the 94-year-old leader.
Summary:
A 26-year-old homeless web developer in California, David Casarez received over 200 job offers after he stood at a busy street and distributed his CVs. His story went viral on the internet after a passerby took his picture and posted it online urging others to support him.
Summary:
Neeraj Chopra, who became the first Indian to win gold in javelin throw at Commonwealth Games in April this year, won gold at the Savo Games in Finland on Saturday.
Summary:
A 22-year-old tribal man was beaten to death by a group of 20 people with wooden sticks over suspicion of stealing a mobile phone in GujaratâÂÂs Dahod area on Saturday night.
Summary:
A 13-year-old mentally-challenged girl was raped repeatedly over a period of two months by ten people, including two minors, in Meghalaya's North Garo Hills district, police said.
Summary:
BJP's Delhi spokesperson Tajinder Pal Singh Bagga was forced to change his email address 'Phirdildomodiko' to 'volunteerformodi' after people read 'dil do' as 'dildo' and trolled him on Twitter.
Summary:
A 40-year-old Bengaluru woman lost â¹16,000 after she mistakenly paid previous month's electricity bill of â¹317 through a mobile app and tried to retrieve it.
Summary:
Each train will have 55 seats for business class and 695 seats for standard class.
Summary:
TRAI Chairman RS Sharma, who challenged Twitterati to prove how mere knowledge of his Aadhaar number could be misused to cause harm, said he disclosed the number not as a regulatory head but as an ordinary citizen.
Summary:
The Duchess of Sussex Meghan Markle hopes to be a bridesmaid at Priyanka Chopra and her rumoured boyfriend Nick Jonas' wedding, as per reports.
Summary:
Taapsee Pannu has said she prefers to express her opinion on social issues through the medium of cinema.
Summary:
Wishing Sanjay Dutt on his 59th birthday on Sunday, Pooja Bhatt posted her pictures with Sanjay and wrote, "Security...reverence...kindness...that's what these three images represent and that's what you evoke in my heart and head." Pooja shared the stills from their 1991 film 'Sadak'.
Summary:
The England and Wales Cricket Board (ECB) took to Instagram to share a video of ex-captain Alastair Cook and pacer James Anderson taking the Yo-Yo test with the caption, "The yo-yo test is brutal!".
Summary:
Mumia was sent to the canvas by Aguiar after a few seconds but the latter stumbled after Mumia recovered.
Summary:
Gayle has slammed 103 sixes in T20Is, 275 in ODIs and 98 in Test cricket.
Summary:
Indian men's football team coach Stephen Constantine has said the Indian Olympic Association (IOA) made an "appalling decision" of not sending the national football teams to the upcoming Asian Games.
Summary:
Team India head coach Ravi Shastri has said that Virat Kohli, who averaged 13.4 in Tests in England in 2014, would like to "show the British public why he's the best" in the upcoming Test series.
Summary:
Facebook has revealed that it is constantly training a team of 7,500 content reviewers to review 'objectionable' content including posts on terror and hate speech.
Summary:
The court asked the police why it acted on this despite knowing she's an adult.
Summary:
In an address to party workers, senior Congress leader P Chidambaram today said, "If at all there will be a mukt Bharat, it will be a BJP-mukt Bharat, it will never be Congress-mukt." He added, "Don't let the BJP fool us.
Summary:
Summary:
The woman had visited the temple with a female relative, following which the priest called her into his room and allegedly raped her.
Summary:
Three persons, including a woman and her lover, were arrested for allegedly killing her husband and trying to dispose of his body in Maharashtra's Virar.
Summary:
In a letter to the Scheduled Caste department of the AICC, Congress president Rahul Gandhi has said that it is important for the Congress to reach out to the victims of "mindless violence".
Summary:
A police constable deployed at BJP MP and actor Shatrughan Sinha's residence at Juhu in Mumbai accidentally fired a bullet from his service weapon, an official said.
Summary:
The Mukesh Ambani-led company had an outstanding debt of â¹2.42 lakh crore (over $35 billion) as of June, up 10.6% from the previous quarter.
Summary:
India's second-biggest software services exporter said the 2.7 million square feet facility would be able to accommodate 5,000 staff.
Summary:
The UIDAI on Sunday rubbished the claims of a French ethical hacker hacking TRAI Chairman RS Sharma's personal information using his Aadhaar number and called it "completely false".
Summary:
Summary:
Talking about PM Narendra Modi, Kangana Ranaut said, "He is the most deserving candidate.
Summary:
Reacting to reports of Priyanka Chopra getting engaged to rumoured boyfriend Nick Jonas, actress Kangana Ranaut, said, "I am upset now that she didn't tell me about it." Kangana further said that Priyanka is a close friend.
Summary:
Akshay Kumar said he would like to make a biopic on sprinter Hima Das, who became the first-ever Indian to win track gold in a world championship.
Summary:
India's 1983 Cricket World Cup-winning captain Kapil Dev has been selected in the national golf team to take part in the 2018 Asia-Pacific Senior Amateur Championship, which will be held from October 17 to 19 in Japan.
Summary:
Digital payments major Paytm's parent company One97 Communications is planning to build a new campus in Noida's Sector 137 that will serve as Paytm's headquarters.
Summary:
Commending UP's investment policy, PM Modi said he was satisfied at seeing the transformation that has occurred across the state.
Summary:
Summary:
Imran Khan will be sworn in as Pakistan's Prime Minister before the country's Independence Day on August 14, his party Pakistan Tehreek-e-Insaf has said.
Summary:
The Iranian rial on Sunday plunged to a record low of 100,000 against the US dollar on the unofficial market, as the country faces US sanctions.
Summary:
Over 1.08 lakh passengers were affected due to flight cancellations by IndiGo during the first five months of the year, the highest among the domestic carriers.
Summary:
Built in 1924, the 94-year-old heritage building has undergone refurbishment and restoration for the first time in history.
Summary:
Filmmaker Tigmanshu Dhulia, while talking about the behaviour of moviegoers, said, "It is strange that youth is interested only in a spectacle.
Summary:
Summary:
Actress Huma Qureshi has said that she never lets success or failure get to her head.
"Failure and success are a part of everyone's journey.
Summary:
Akshay Kumar, whose upcoming film 'Gold' is based on India's first Olympic medal as a free nation, has asked not to compare the film to Shah Rukh Khan's 'Chak de!
Shah Rukh had played the role of women's hockey team coach in 'Chak de!
Summary:
Hollywood actress Emma Thompson has revealed that she was always paid less than her male counterparts.
Summary:
Actress Vidya Balan, who will be portraying N T Rama Rao's first wife Basavatarakam in his biopic, will be paid a remuneration of â¹1.5 crore, as per reports.
Summary:
Indian women's cricket team opener Smriti Mandhana smashed the joint-fastest fifty in women's T20 cricket off 18 balls on Sunday.
Summary:
After withdrawing from Rogers Cup, world number two Roger Federer said his main goal is to win titles and not facing world number one Rafael Nadal.
Summary:
Former pacer Zaheer Khan has said the minimum required score of 16.1 to clear Yo-Yo test for selection in Team India is "pretty low" compared to "world standard".
Summary:
"This research provides opportunities to develop robots and computers so that they can become more natural," a researcher said.
Summary:
US President Donald Trump has wrongly claimed that Apple is planning to build new manufacturing plants in the country.
Summary:
National Conference leader Omar Abdullah has said the Congress has to be the "backbone" of opposition unity with its chief Rahul Gandhi at the forefront of the campaign for the 2019 Lok Sabha polls.
Summary:
He first started working with Tesla cars after buying a second broken-down car for repair parts.
Summary:
PDP MP Muzaffar Hussain Baig has said, "The killings of Muslims in the name of cows and buffalos should stop or the consequences will not be good.
Summary:
Several attendees of the patients spent the night at the hospital standing in the waterlogged rooms.
Summary:
A man named Timothy Buchanan from California has claimed that a real-life spider has got stuck between his iMac's glass display and the screen.
Summary:
Hyderabad-based startup which helps SMEs come online, NowFloats' Co-founder and CEO Jasminder Gulati has said that writing speeches for Microsoft Co-founder Bill Gates is his greatest achievement.
Summary:
Using genetic screening, doctors at Mumbai's Jaslok hospital have edited out a cancer-causing gene mutation from twins born to Bengaluru's 37-year-old Swayam Prabha, who has cancer-causing oncogene.
Summary:
American space agency NASA, that was founded on July 29, 1958, has an Office of Planetary Protection that functions to 'protect Earth's biosphere in case life does exist elsewhere'.
Summary:
The Gujarat government has decided to give a nine-day holiday to school and college students to celebrate Navratri festival in October.
Summary:
A 15-year-old Indian-American has completed his graduation in biomedical engineering from US' University of California, Davis with the highest honours of summa cum laude.
Summary:
PM Narendra Modi on Sunday launched 81 investment projects worth â¹60,000 crore in what he termed as a "record-breaking" event in Uttar Pradesh.
Summary:
Karunanidhi is continuously being monitored and is being treated at the hospital's Intensive Care Unit.
Summary:
US President Donald Trump has thanked North Korean leader Kim Jong-un for handing over the remains believed to be of 55 US soldiers killed in the Korean War.
Summary:
Israel had captured the West Bank during the 1967 Middle East War.
Summary:
Politicians attending a debate on electricity in the Ghanaian Parliament burst into laughter after an MP started listing villages in his constituency named 'Testicles are sad', 'Penis is fool' and 'Vagina is wise'.
Summary:
In terms of economic activity, 31% of the companies were into business services and 20% were engaged in manufacturing.
Summary:
'Karwaan' director Akarsh Khurana has said that the only way to survive in the film industry is by focusing on content.
"Hindi films are always fighting with regional cinema.
Summary:
Sacred Games' actress Rajshri Deshpande shared a photo with former Indian captain MS Dhoni, revealing in her post that he said he liked her work in the web series.
Later, one of the show's directors, Anurag Kashyap retweeted Deshpande's tweet, captioning it, "@msdhoni loved Sacred Games ..
Summary:
With this, Yane Petkov beat the record of Indian fisherman Gopal Kharvi, who swam 3.071 kilometres in the Indian Ocean in 2013.
Summary:
Sharma's post read, "The downside of being married to your manager", later his wife replied with, "What about the perks!!!".
Summary:
BCCI has reportedly made a new rule that wives and girlfriends of Indian cricketers can stay with them for 14 days while they are on tours of 45 days or more.
Summary:
Indian shuttler Sourabh Verma came from behind to win the men's singles event at the â¹51-lakh Russian Open on Sunday.
Summary:
Earlier this week, Facebook said that the cost of higher privacy standards will hit the company's profit margins for several years.
Summary:
Video-sharing platform YouTube is planning to create scripted series and original programming content for international markets including France, Germany, Japan, Mexico, and India.
Summary:
Apple shipped around 35 lakh Apple Watches globally in the second quarter of this year, according to data analytics firm Canalys.
Summary:
The jury ruled that Groupon used IBM's patented e-commerce technology without authorisation or consent.
Summary:
The Tesla Surfboard features a mix of the same high-quality matte and gloss finishes used on all of the automaker's cars.
Summary:
Delhi University's St Stephen's College has cancelled an event in which West Bengal CM Mamata Banerjee was scheduled to address students.
Summary:
As much as â¹15,167 crore of policyholders' money is lying unclaimed with 23 life insurers, with state-owned LIC having the maximum unclaimed amount at â¹10,509 crore, IRDAI's data showed.
Summary:
Niti Aayog CEO Amitabh Kant has said India needs to improve its Human Development Index (HDI) to achieve a growth of around 10%.
Summary:
Choudhary, who underwent a heart transplant in May, was surviving with the help of LVAD, a pump inserted inside the patient connected to a power source.
Summary:
A 10-year-old victim said that the girls were given sedatives mixed with food and were asked to sleep in the owner's room.
Summary:
Salman Khan's father Salim Khan, while reacting to Priyanka Chopra quitting the film 'Bharat', said, "We are not upset with Priyanka.
Earlier, Bharat's co-producer Nikhil Namit said it was unprofessional of Priyanka to quit.
Summary:
A petrol bomb was hurled at former AIADMK leader and Sasikala's nephew TTV Dhinakaran's car outside his home in Chennai on Sunday.
Summary:
Congress is no longer "unchallenged" as more parties have come up, Chidambaram added.
Summary:
A pregnant goat was allegedly gangraped by eight men in Haryana's Mewat on Wednesday, and died a day later, after which, a complaint was filed by the goat's owner.
Summary:
In the video, she said he was the only son in the family and was about to resign from his post.
Summary:
A student said, "We belong to poor families and the fees which we can't pay is paid by Basavaraj sir in memory of his daughter."
Summary:
The man had challenged his sister's partition plea of a property supported by their mother.
Summary:
An article in The New York Times has compared yoga guru Baba Ramdev to US President Donald Trump, stating there is much speculation that the former could run for Prime Minister.
Summary:
A woman has moved Madras High Court seeking action against doctors of a government hospital after they misdiagnosed a tumour in her abdomen as pregnancy.
Summary:
An 18-year-old girl was allegedly abducted, held hostage and gangraped for seven months by three men.
Summary:
An unidentified prankster placed a portrait of Russian President Vladimir Putin in a space intended for a picture of US President Donald Trump at the Colorado State Capitol Hall of Presidential Portraits.
Summary:
Summary:
Turkish President Recep Tayyip ErdoÃÂan has said the US will lose a sincere partner if it imposes sanctions on the country.
Summary:
After Imran Khan's Pakistan Tehreek-e-Insaf emerged as the single largest party with 116 seats in Pakistan general elections, the cricketer-turned-politician's ex-wife Reham Khan has said the Army will now run the country's foreign office.
Summary:
Saeed's Milli Muslim League (MML) party candidates registered under Allah-o-Akbar Tehreek, after MML was barred from contesting elections.
Summary:
Chinese Premier Li Keqiang has said that Tibet is an inseparable part of China's "sacred" territory.
Summary:
Calling on the US to "show common sense" over its plan to create a space force, the Russian Foreign Ministry has said using space for military purposes may be as harmful as the nuclear arms race.
Summary:
A credit card was used by the referees in place of the traditional coin toss at the start of the International Champions Cup friendly match between Arsenal and Paris Saint-Germain on Saturday.
Summary:
The ICC has shared a video of a two-year-old Bangladeshi kid playing off-side shots while practising with his father.
Summary:
Liverpool's new signing, Switzerland's Xherdan Shaqiri created a goal for forward Daniel Sturridge and then scored with a bicycle kick on his debut for the club while playing in the friendly against Manchester United.
Summary:
The first-ever Indian to win a track gold medal in a world championship Hima Das' coach Nipon Das has been accused of sexual assault by a female athlete.
Summary:
Cottrell was bowling to Bangladesh's Anamul Haque and gave away a free hit because of the height of the delivery.
Summary:
Afghanistan's wicketkeeper-batsman Mohammad Shahzad has been banned for one ODI and fined 50% of the match fee of his next T20I appearance after being found guilty of breaching the code of conduct.
Summary:
After Congress President Rahul Gandhi accused him of being a 'bhagidar' (participant) and not 'chowkidar' (watchman) of corruption, PM Narendra Modi said he takes pride in being called a 'bhagidar'.
Summary:
Aditya Birla Group Chairman Kumar Mangalam Birla has said the Insolvency and Bankruptcy Code is a "deep reform", much more than GST and demonetisation.
Summary:
In its latest brand communication, NEXA embraces the relentless spirit of creators.
They have beautifully showcased the circle of creation and inspiration, touching our hearts.
Inspire.
Summary:
A French security expert, Elliot Alderson, posted a series of tweets leaking Sharma's personal address, birthday and PAN card number.
Summary:
Photographs of a police officer, Pravin Singh, in uniform kneeling down in front of UP CM Yogi Adityanath, have gone viral.
Summary:
Saif Ali Khan's spokesperson has clarified that reports of the actor's Instagram debut was a hoax while adding that his son Ibrahim Ali Khan's account was also hacked.
Summary:
Madhya Pradesh CM Shivraj Singh Chouhan used his 'discretionary powers' to reallot official bungalows to Kailash Joshi, Uma Bharti and Babulal Gaur, state's three former chief ministers.
Summary:
India has extended an aid of over â¹131 crore to Nepal as part of the post earthquake reconstruction programme.
Summary:
Devotees have decorated the Mahali Amman Temple in Tamil Nadu's Coimbatore nwith 2,000 kilogram of fruits.
Summary:
French hacker Elliot Alderson tweeted to PM Narendra Modi on Saturday asking for his Aadhaar card number, after leaking TRAI chief RS Sharma's personal details.
Summary:
A 66-year-old retired banker from Gurugram was cheated of â¹35 lakh by his Facebook 'girlfriend', who claimed she was travelling from London to India to meet him.
Summary:
After Imran Khan's Pakistan Tehreek-e-Insaf emerged as the single largest party in Pakistan general elections, India said that it hoped the new government in Pakistan "will work constructively to build a safe, stable and secure South Asia free of terror and violence".
Summary:
Prakash Sawant Desai, the only person who survived a bus accident that killed 33 in Maharashtra, said, "The bus...fell into the gorge...Trees arrested the fall someway down.
Summary:
Two men and a woman, including the suspected killer were found dead at a nursing home in the US state of Texas on Friday, officials said.
Summary:
Rishi Kapoor, while talking about his relationship with his son Ranbir Kapoor, said, "Perhaps it was my mistake.
I should have looked at Ranbir in a different way." "But it's only at this age that I've realised it.
Summary:
Mithila Palkar, while talking about her 'Karwaan' co-star Irrfan Khan who is currently undergoing treatment for Neuroendocrine Tumour in London, has said that Irrfan is a fighter.
Summary:
Priyanka Chopra and her rumoured boyfriend Nick Jonas visited the Duke and Duchess of Sussex at their house, where Priyanka introduced her boyfriend to her friend Meghan Markle and Prince Harry, as per reports.
Summary:
National Award winning actress Neena Gupta has said that she is greedy for roles and wants more of them.
Summary:
"I congratulate you & feel proud to say...Imran Khan is PM of my beloved Pakistan #NayaPakistan," Zaman added.
Summary:
Former Germany midfielder Mesut ÃÂzil signed an autograph on the yellow card after the referee asked him for an autograph just before Arsenal's friendly against PSG on Saturday.
Summary:
Sri Lanka's Mahela Jayawardene and Kumar Sangakkara broke the record for the highest-ever partnership in Test history with their 624-run stand against South Africa on July 29, 2006.
Summary:
"Catch him Virat, bring to India," a user wrote on Instagram.
Summary:
RJD leader Tejashwi Yadav has tweeted that there is Rakshas Raj in Bihar and added that the selfish duo of Ravana and Duryodhana has made it difficult for daughters and mothers to go outside without fear.
Summary:
As many as 537 people have died due to floods and rains in six states during the monsoon season so far, according to the Home MinistryâÂÂs National Emergency Response Centre.
Summary:
New Delhi's smart parking project meant to tell drivers how many parking slots are available in and around Connaught Place and other parts of central Delhi has been affected due to air pollution.
Summary:
Imran Khan's Pakistan Tehreek-e-Insaf emerged as the single largest party, securing 116 seats in the National Assembly.
Summary:
The court also issued summons to Nirav Modi, Mihir Bhansali, Rakhi Bhansali, Ajay Gandhi and Kunal Patel in connection with $2.1-billion PNB scam.
Summary:
This relates to a complaint lodged with CCI in 2011 alleging anti-competitive practices by three carmakers in India.
Summary:
Breastfeeding in public is legal in all of United Kingdom and Australia.
Summary:
Former RAW chief AS Dulat has said Imran Khan, who is set to be Pakistan's Prime Minister, may invite Kapil Dev, Sachin Tendulkar and Sunil Gavaskar for his swearing-in in Pakistan.
Summary:
PDP president Mehbooba Mufti said she "drank the cup of poison" to continue in a coalition government with BJP out of compulsion, following her father Mufti Mohammad Sayeed's demise in 2016.
Summary:
A Delhi man has been arrested for allegedly killing a woman on Friday, after he shot her to prove that his weapon was real.
Summary:
The shelter home was sealed in June when an FIR was lodged.
Summary:
Maharashtra government has announced an ex-gratia of â¹4 lakh to the kin of those who died after a bus fell into a gorge along the Mumbai-Goa highway in Maharashtra's Raigad district on Saturday.
Summary:
DMK President M Karunanidhi's health condition remains stable, as per an official press release by Chennai's Kauvery Hospital, where the 94-year-old leader is being treated.
Summary:
According to police, Bhupendra Kumar's note stated that he was committing suicide because he was unhappy.
Summary:
However, Ahmed's editor said, "Everyone at the editorial level congratulates him for this picture."
Summary:
A dog wrapped in the flag of Pakistan's general election-winning party, Imran Khan's PTI, was shot dead, with the video of the incident going viral.
Summary:
The US is planning to establish an "Arab NATO" force to counter Iran's military expansion in the region, a spokesperson for the US National Security Council said.
Summary:
Actress Kareena Kapoor Khan has been approached for the third film in 'Happy Bhag Jayegi' franchise, as per reports.
Summary:
Actress Priyanka Chopra and her rumoured fiancé singer and actor Nick Jonas have a combined net worth of $41 million (â¹281 crore), according to reports.
Summary:
Tigmanshu Dhulia, talking about his experience working with Shah Rukh Khan, said, "He gives respect to everyone present on the set right from light men, spot boys to his co-actors and directors." "Despite being such a big and successful actor, he's so modest and humble," he added.
Summary:
Sanjay Leela Bhansali is set to launch actress Poonam Dhillon and producer Ashok Thakeria's son Anmol Thakeria in his next film tentatively titled 'Tuesdays And Fridays'.
Summary:
Actress Huma Qureshi, on the occasion of her birthday on Saturday, tweeted, "As I turn older and (hopefully) wiser...
So are regrets'." Huma, who turned 32, thanked everyone for "all the love and duas." Actor Arshad Warsi wished Huma, tweeting, "Wishing my lovely, spunky, funny, talented friend...a very happy birthday."
Summary:
Cheteshwar Pujara has said he "obviously" deserves his place in the Test team as he performed enough in the 2017-18 season.
I've proved that I'm worthy enough," Pujara added.
Summary:
Talking about MS Dhoni, ex-captain Sourav Ganguly said he feels happy seeing the rise of cricketer player from the east.
Summary:
Former England captain Michael Vaughan took to Instagram to share a picture of himself wearing a hoodie which read "Stupid".
This comes after England spinner Adil Rashid slammed Michael Vaughan for calling his Test selection "ridiculous", saying his comments are "stupid".
Summary:
Shreyas Iyer has revealed after he broke into Team India, ex-captain MS Dhoni advised him to avoid reading newspapers and stay away from social media "as much as possible".
Summary:
Taking a dig at PM Narendra Modi, Congress president Rahul Gandhi said taxpayers would have to pay â¹1 lakh crore over the next 50 years to "Mr 56's friend" for the Rafale deal.
Summary:
Shaktipada Sardar, a local BJP leader from West Bengal died on Friday night after he was allegedly attacked by goons with a sharp weapon in Kolkata's Mandir Bazar while returning home.
Summary:
The Taliban held its first direct talks with the US about future talks aimed at ending the 17-year-long war in Afghanistan, a senior member of the militant group claimed.
Summary:
A vandalised piece of US President Donald Trump's star on the Hollywood Walk of Fame is on sale on e-commerce website eBay, reports said.
Summary:
India's largest lender SBI, PNB and Bank of Baroda are planning to introduce a performance-linked salary structure for the senior management, according to reports.
Summary:
Fast-moving consumer goods giant ITC has said it is open to acquisition of GlaxoSmithKline's Horlicks brand "if it is up for sale and at a right price".
Summary:
The company had posted â¹2,618.17 crore net profit in the corresponding period last fiscal.
Summary:
She also claimed in her suit that Allen forced numerous women to have sexual intercourse with him in exchange for roles.
Summary:
Former cricketer Imran Khan's political party Pakistan Tehreek-e-Insaf (PTI) has emerged as the single largest party with 116 seats in Pakistan elections.
Summary:
A couple in their sixties woke up in their Palo Alto, California home around midnight last week to find a 17-year-old intruder asking them for their WiFi password, police have revealed.
Summary:
Bihar CM Nitish Kumar skipped an event to mark NDA's first anniversary after forming government in Bihar.
Summary:
The Air Quality Index of New Delhi was recorded at 43 which falls under the "good" category.
Summary:
The West Bengal government will be informing the farmers about the details of its buying of crops through SMS, starting August.
Summary:
In a letter to the police, Tathireddy Lachi Reddy wrote about his plan to attain 'Sajeeva Samadhi (live burial)'.
Summary:
In a Facebook post, Kerala Chief Minister Pinarayi Vijayan said that the state must support nHanan Hamid, the girl who was trolled for selling fish in uniform after college.
Summary:
An Israeli cartoonist has been fired for depicting PM Benjamin Netanyahu and his allies as pigs from George Orwell's novel 'Animal Farm'.
Summary:
The move was aimed at depriving the fires of oxygen with the help of the pressure caused by the explosive devices.
Summary:
A new record was made when a kg of an Assam tea variety in Guwahati Tea Auction Centre (GTAC) fetched â¹39,001 at an auction.
Summary:
Antigua and Barbuda PM Gaston Browne has said no Interpol Red Corner Notice was issued by India against Mehul Choksi when he was extended citizenship.
Summary:
Slamming Rishi Kapoor for his tweet in which he congratulated Imran Khan for his party Pakistan Tehreek-e-Insaf's victory in the 2018 Pakistan general elections, a user tweeted, "Most shameless way to promote a movie." "I realised someone's movie is getting released soon," wrote another user.
Summary:
Writing a note for Janhvi Kapoor and Ishaan Khatter on Twitter, Karan Johar tweeted, "Looking far and ahead!
Karan produced Shashank Khaitan's directorial 'Dhadak', which marked Janhvi and Ishaan's Bollywood debut.
Summary:
Priyanka Chopra, who has opted out of Salman Khan's 'Bharat', reportedly had a clause that she won't feature in the film's poster with co-star Disha Patani.
Summary:
South African fast bowler Dale Steyn has said that writing off Team India captain Virat Kohli is the "biggest mistake".
So he will be fine in England," Steyn added.
Summary:
Sobers had played his first colonial game with 11 fingers, after one of the spare fingers was removed before he was nine.
Summary:
West Indies' cricketing legend Garry Sobers, who was born on July 28, 1936, played his career's only ODI against England and was dismissed for a duck in that match.
Summary:
Ex-WWE world champion Rey Mysterio gifted Manchester United goalkeeper David de Gea a personalised mask during his visit to the team's training camp in Los Angeles.
Summary:
Indian all-rounder Hardik Pandya posted a photo on Instagram, recalling the day he made his Test debut for India on July 28, 2017.
Summary:
Norway-based Opera, which released its first web browser in 1995, raised $115 million in its initial public offering on Friday.
Summary:
As many as 364 prisoners exploited a vulnerability on their JPay tablets to steal almost $225,000 (over â¹1.5 crore) worth of credits in the US state of Idaho, according to officials.
Summary:
Their property could be sold to give financial aid to the wives, she added.
Summary:
Former Finance Minister P Chidambaram has said the 28% tax slab under the GST has only added the Excise, Value Added Tax (VAT), and Central Sales Tax (CST).
Summary:
The Supreme Court refused to grant "custodial parole" to Unitech MD Sanjay Chandra as he said he was finding it difficult to raise funds and comply with court orders.
Summary:
He added that the US wanted to change Iran's behaviour in the Middle East.
Summary:
Hailing the US' GDP growth of 4.1% in the second quarter of the year, President Donald Trump said that the country is "the economic envy of the entire world".
Summary:
At least 30 people have died after a bus fell into a gorge along the Mumbai-Goa highway in Maharashtra's Raigad district on Saturday.
Summary:
A video showing few policemen thrashing and pulling the hair of two girl students protesting against BJP President Amit Shah's rally in Allahabad has surfaced online.
Summary:
Mahesh Kumar Malani of the Pakistan Peoples Party's (PPP) has become the first Hindu candidate to win a general National Assembly seat in Pakistan.
Summary:
Responding to criticism that he whitewashed caste politics in 'Dhadak', director Shashank Khaitan said, "Apparently, we should've been...more open about it." "We didn't use the words to verbalise it, but cinema is an audio-visual medium so I thought we've visually achieved it," he added.
Summary:
Speaking about being trolled for posting pictures of herself in a bikini, model Mandana Karimi said, "I wear a bikini, and...I'm a Muslim...That doesn't make me a bad person." "The only thing you can do is...[not get] bothered about these trolls," she added.
Summary:
Sonam Kapoor's husband Anand Ahuja has revealed that he and Sonam have meals together on Skype even if they are in different time zones.
Summary:
Dhawan was dismissed for a golden duck in the first innings and was bowled off his third ball in the second.
Summary:
'New Retail' was coined by Jack Ma, founder of Alibaba, which also backs Paytm.
Summary:
The total eclipse started at 1:00 am IST and phased out to a partial eclipse by 2:43 am.
Summary:
The Delhi government has issued a flood warning after the water level of Yamuna crossed the danger mark, an official said.
Summary:
The police have rescued 36 children aged 5-15 years from a madrasa in Pune after allegations of sexual abuse surfaced against the maulana.
Summary:
Party workers gathered around his residence and hospital and chanted, "Long live Thalaivar (leader)."
Summary:
He further called on increasing the judges' retirement age from 65 years in SC and 62 years in HC, to 70 years.
Summary:
Ecuador President Lenin Moreno has said that WikiLeaks founder Julian Assange must eventually leave the country's embassy in London.
Summary:
Benchmark index BSE Sensex surged 840.48 points or 2.30% during the five trading sessions starting from July 23.
Summary:
Prakash Jha is set to direct a biopic on Bihar mathematician Dr Vashishtha Narayan Singh.
Talking about his upcoming film, Jha said, "Dr Vashishtha...is our national treasure.
Summary:
Beyoncé and Jay-Z, who got married in 2008, also have a six-year-old daughter.
Summary:
Actress Sophie Turner, known for portraying 'Sansa Stark' in HBO series 'Game of Thrones', has said the finale of season 8 will be "full of betrayal, full of war [and] full of danger".
Summary:
The new release date of Abhishek Bachchan, Taapsee Pannu and Vicky Kaushal starrer 'Manmarziyaan' has been announced as September 14.
Summary:
After Germany's Turkish-origin footballer Mesut Ozil announced his retirement from international football due to racism faced by him, '#MeTwo' has been trending in Germany.
Summary:
New Zealand's Martin Guptill, the highest run-scorer in T20I cricket, hammered a 35-ball hundred for Worcestershire against Northamptonshire in the T20 Blast tournament on Friday.
Summary:
Notably, the team owes $15.15 million to engine provider Mercedes.
Summary:
On being asked about the reception he received in the Los Angeles FC stadium, LA Galaxy's Swedish footballer Zlatan Ibrahimovic said that LA FC's 22,000-seater stadium was too small for him.
Summary:
A bride in Bihar's Bhabua fled with â¹20,000 cash, ornaments and other valuables on the first night at her husband's house.
Summary:
In an affidavit filed in the Supreme Court, CBI has said that Kerala Chief Minister Pinarayi Vijayan must face trial in the SNC-Lavalin corruption case.
Summary:
More than 7,000 children have been killed or injured in Syria's civil war since 2013, the United Nations has confirmed.
Summary:
Each store is likely to create 2,000 direct and indirect jobs, resulting into at least 30,000 local jobs in the state, said Walmart India.
Summary:
The employee mistakenly issued 2.8 billion shares to 2,000 employees in April instead of issuing them with dividends worth 2.8 billion Korean won.
Summary:
Nikhil Namit, the CEO of Reel Life Productions which is co-producing 'Bharat', while speaking about Priyanka Chopra quitting the project, said, "It was a little unprofessional of her to do it so suddenly." "Priyanka told us...she had to exit due to her engagement," he was quoted as saying.
Summary:
Actor Akshay Kumar has said he will never make a biopic on himself, while adding, "I would be a fool [if I do so].
Summary:
Rishi Kapoor has said 'Jagga Jasoos', which starred his son Ranbir Kapoor, was a "bad film" and it was "absolutely rubbish".
Summary:
Slamming reports that claimed she's getting married to a US doctor, actress Tamannaah Bhatia said, "While I love the idea of being in love, I definitely don't appreciate baseless news [about] my personal life." "These rumours make it sound like I'm on a husband shopping spree," she said.
Summary:
A 28-year-old man, who paid ã40 for a seat, travelled alone in a plane from Greece to England, after the only other person who had booked a seat in the 168-seater plane didn't show up.
Summary:
Shivangi Pathak, the 17-year-old who became the youngest woman from India to reach the peak of Mount Everest from Nepal side, has scaled Africa's highest peak, Mount Kilimanjaro, in three days.
Summary:
However, some of the sunlight passes through Earth's atmosphere to reach the Moon.
The remaining red wavelengths light up the Moon in blood-red colour.
Summary:
A group of Russian and Princeton University scientists claim to have revived a pair of frozen roundworms that were 32,000 and 41,700 years old and were found buried in Siberia.
Summary:
A 26-year-long study using Chile-based telescopes has for the first time revealed the effects predicted by Albert Einstein's general relativity theory on a star's motion in the gravitational field of a supermassive black hole.
Summary:
A Gwalior court in Madhya Pradesh has awarded a double death sentence to a man for raping and murdering a six-year-old, 36 days after he committed the crime.
Summary:
Police recovered a bottle of pesticide and a knife from the scene of the incident while her mobile phone was not found in her bag.
Summary:
The council called the proposal "shocking" and an "irresponsible" act done with ulterior motives.
Summary:
At least 36 cows were found dead at a cowshed in Delhi's Dwarka on Friday.
Summary:
Summary:
The participating students will be allowed to take home the solar lamps they assemble.
Summary:
Madhya Pradesh Chief Minister Shivraj Singh Chouhan slipped and fell on the stairs of the stage after addressing a rally on the second day of the 'Jan Ashirwad Yatra' on Thursday.
Summary:
A Thai rescue team volunteer group rescued a four-month-old baby after he was found alive days after the Laos dam collapse.
Summary:
Salva Kiir-led South Sudan's government has been slammed for giving parliamentarians $40,000 (over â¹27 lakh) each to buy cars for themselves.
Summary:
Les Moonves, CEO of American broadcast television CBS, has been accused by six women including actress Illeana Douglas for sexually harassing them.
Summary:
The Indian women's cricket team underwent the Yo-Yo test, which is mandatory selection criteria for the Indian men's team, at the National Cricket Academy in Bengaluru.
Summary:
Facebook and its CEO Mark Zuckerberg were sued by a shareholder on Friday after the social media giant lost about $120 billion of shareholder wealth, the biggest single-day loss in US history.
Summary:
"The Centre has hiked the MSP by only â¹200, but claiming it has increased it by 50%," Banerjee said.
Summary:
Union Minister Rajyavardhan Rathore said that death due to stone pelting is also lynching and the committee set up to examine if the country needs a separate law on mob lynching will also consider such cases.
Summary:
Israeli airline El Al has withdrawn its plea against the government's decision to allow Israel-bound Air India to fly over Saudi Arabia's airspace.
Summary:
The bank's net interest income rose 28.6% to â¹4,381 crore during the quarter.
Summary:
LG Air Conditioners with Monsoon Comfort Technology is specially designed to ensure pleasant cooling with the right balance between room temperature, body temperature, air movement and air flow.
Summary:
The partial eclipse started at 11:54 pm Friday, and will become a total eclipse or a 'Blood Moon' at 1:00 am Saturday.
Summary:
In case of sanitary napkins, many components attract a higher tax incidence than the product itself.
Summary:
A tenth black rhino died in Kenya after wildlife workers relocated the animals to a new national park to start a new population in the area.
Summary:
Akshay Kumar confirmed that he is not a part of 'Mogul', a biopic on founder of T-Series Gulshan Kumar, while adding that it was disagreements over the script that led to him quitting the film.
Summary:
The city's rules bar companies from providing fully subsidised meals to employees in their campuses, but allows them to provide in-house food at 50% subsidy.
Summary:
If you want to offer namaz, offer it at home." Thackeray further asked why Muslims offer namaz on roads.
Summary:
Rajasthan BJP chief Madan Lal Saini has said that his statement on Mughal emperor Humayun being Babur's father was a slip of tongue.
Summary:
Mumbai-based used cars marketplace Truebil's Co-founder Shubh Bansal in an interview said the first problem they faced was that people were not entertaining them and clients told them that they were children.
Summary:
All India Motor Transport Congress called off its strike after eight days, following government's assurance to look into their demands.
Summary:
ITC's valuation rose to â¹3.69 trillion, which was â¹10,460.27 crore more than that of HUL's â¹3.58 trillion market cap.
Summary:
Mukesh Ambani-led Reliance Industries (RIL) on Friday posted a 4.47% year-on-year increase in its consolidated net profit to â¹9,485 crore for the June quarter.
Summary:
ICICI Bank on Friday posted a net loss of â¹119.55 crore for the June quarter, the first ever quarterly loss reported by the lender since at least 2001, according to Bloomberg.
Summary:
HCL Technologies has surpassed Wipro to become India's third-largest software services company in terms of dollar revenue, after reporting a revenue of $2.05 billion during the June quarter.
Summary:
The makers of the film transformed a valley in New Zealand into a small Kashmiri village to shoot a portion of the film.
Summary:
Summary:
Ajay Devgn announced the new release date of Kajol's upcoming film 'Helicopter Eela' as September 7.
Directed by Pradeep Sarkar and produced by Ajay, 'Helicopter Eela' was earlier scheduled to release on September 14.
Summary:
Kareena Kapoor Khan, who recently walked the ramp wearing a 30 kg lehenga, said she is just a born actress and not a born model.
Summary:
For the first time in 18 years, Real Madrid are without a Ballon d'Or winner in their squad after five-time winner Cristiano Ronaldo joined Juventus.
Summary:
The former Manchester City forward has scored 14 goals in 35 international matches.
Summary:
Team India captain Virat Kohli and opener Shikhar Dhawan did bhangra on dhol beats while entering the field against Essex during their warm-up match.
Well played, @imVkohli & @SDhawan25!" Essex wrote while sharing the video.
Summary:
Google has updated its Play Store policies to ban several more categories of apps, including cryptocurrency mining ones and apps with disruptive ads.
Summary:
External Affairs Minister Sushma Swaraj has said that the agent responsible for trafficking 39 Indians to Iraq, who were later killed, is still sending people abroad.
Summary:
Over 20 people have reportedly been killed in attacks by leopards in the reserve's Motichur range in the past three years.
Summary:
Speaking during a meeting with women self-help groups, Andhra Pradesh CM Chandrababu Naidu on Friday said that the misuse of mobile phones by youth is leading to an "increase in criminal tendencies".
Summary:
It'll be difficult for people like me and you to enter politics with reservation." Sharma further said many women who've been elected at panchayat level "have no clue about their work".
Summary:
Former President Pranab Mukherjee on Friday said India was "way behind" in the overall happiness ranking as it occupies the 133rd place on the list according to a 2018 global survey.
Summary:
Ronaldo owed the Spanish government â¬5.7 million in taxes.
Summary:
Three sisters aged two, four and eight, who died due to starvation in Delhi earlier this week, lived in a windowless room, the size of a car.
Summary:
A company, Indian Potash Limited had booked the wagon for delivery of a compost parcel worth â¹10 lakh, but Railways authorities couldn't track the wagon later.
Summary:
Actress Deepika Padukone and actor Ranveer Singh have finalised Lake Como in Italy as the destination for their wedding, as per reports.
Summary:
The first day of the Test between England and West Indies in Manchester, on July 27, 1995, was called off 15 minutes before tea after umpire Dickie Bird thought there was too much light.
Summary:
A panel headed by retired SC judge BN Srikrishna submitted its report to the government on suggestions for a data protection law that will also cover Aadhaar.
Summary:
Police on Thursday arrested a school van driver for driving under influence and rescued 15 children from the vehicle in Maharashtra's Thane.
Summary:
National Green Tribunal (NGT) chairperson AK Goel said that just like cigarette packets carry 'injurious to health' warning, people should be informed about adverse effects of Ganga water.
water is unfit for consumption," added Goel.
Summary:
AAP MLA Amanatullah Khan has admitted his two children to a government school in Delhi.
Khan further said he hoped his move inspires people to "shed their bias against government schools".
Summary:
Paying tribute to former President Dr APJ Abdul Kalam on his third death anniversary on Friday, a Twitter user wrote, "We can't scale his contributions in the field of science." "He has ignited millions of minds with his teachings and thoughts," another user wrote.
Summary:
Indian passport holders no longer require an Airport Transit Visa (ATV) while transiting through the international zone of any airport in France.
Summary:
At least 27 people have died and over 12 others injured since Thursday due to heavy rains in various parts across Uttar Pradesh.
Summary:
Of the 21 samples which tested positive for GM content, 80% were imported.
Summary:
Russian President Vladimir Putin has said he's ready to visit Washington for a meeting with US counterpart Donald Trump and added he had invited Trump to Moscow.
Summary:
Marchionne's family confirmed that Fiat wasn't told of his condition until last week, when they were notified he wouldn't return to work.
Summary:
ED alleged the companies involved in the fraud acted as "dummies" while "decision making was only with Choksi".
Summary:
Amitabh Bachchan, while talking about his film 'Abhimaan' which completed 45 years on Friday since its release, said, "We do not get to hear such music as in the film, now." "Jaya [Bachchan] and I, not married then, jointly produced it [Abhimaan].
Summary:
Actor Prateik Babbar has said he would love to have a biopic on his late mother and actress Smita Patil and it should be called 'Ek Thi Smita'.
Have seen all her films...loved her the most in 'Bhumika'," he further said.
Summary:
David Saharia, an aspiring actor from Assam who has been likened to Tiger Shroff by social media users, has said he's known by Tiger's name and not his own.
Summary:
Actress Katrina Kaif and Deepika Padukone have been approached to play the female lead in 'Bharat' after Priyanka Chopra opted out of the project, as per reports.
Summary:
Summary:
Team India opener Shikhar Dhawan took to Twitter to share a picture of himself fielding at slips alongside captain Virat Kohli and batsman Cheteshwar Pujara during their match against Essex.
jab saath ho Kohli aur Pujara!" the batsman captioned the picture.
Summary:
Handscomb said his walkie-talkie conversation with Lehmann was more than 20 minutes before he came onto the field.
Summary:
Sachin Tendulkar took to Twitter to share pictures of himself taking blessings from childhood coach Ramakant Achrekar on the occasion of Guru Purnima.
Sachin earlier termed his relationship with Achrekar as "something which cannot be described in words".
Summary:
CWG 2010 gold medalist wrestler Geeta Phogat took to Instagram to share a video of her husband Pawan Kumar dancing to Haryanvi song 'Bol Tere Mithe'.
Summary:
After former England captain Michael Vaughan described spinner Adil Rashid's selection for the first Test against India as "ridiculous", the spinner said Vaughan's comments are "stupid" and his opinions "did not matter to anybody".
Summary:
US President Donald Trump has said the American media is "dying to see" his government make mistakes and added that they analyse every word he says.
Summary:
The proposal was reportedly discussed during a party meeting, but no decision was taken on the same.
Summary:
Twitter reported a net income of $100 million, its third-straight profitable quarter.
Summary:
The partial eclipse will start from 11:54 pm and become a total eclipse or a 'Blood Moon' from 1 am to 2:43 am.
Summary:
The woman started receiving anonymous calls for dates after which she approached the police.
Summary:
My privacy is supreme to me".
Summary:
A radio station in New Jersey, US, has suspended two radio hosts after they referred to the state's Sikh Attorney General Gurbir Grewal as the "turban man" on their show.
Summary:
Urabeños, Colombia's largest drug gang, has put a bounty of 200 million Colombian peso (over â¹47 lakh) on a police dog after it sniffed out over 10,000 kgs of cocaine.
Summary:
He paid a premium of over $2,600 as opposed to over $3,400 he would have paid as a man.
Summary:
The items which get cheaper from today as the revised GST rates come into effect include refrigerators, hair dryers, washing machines, perfumes and vacuum cleaners, which have been shifted from 28% to 18% slab.
Summary:
The company had posted a net profit of â¹2,560.5 crore in the corresponding quarter last year.
Summary:
Summary:
Sanjay Dutt's friend Paresh Ghelani, on whom the character 'Kamli' from 'Sanju' is based, has said that Dutt has always been truthful to him.
Summary:
Announcing the date, Sonam tweeted, "Don't forget the date!" The film revolves around the relationship between a father and a daughter.
Summary:
Salman will also be reportedly launching Zaheer Iqbal, the son of his childhood friend, who will star opposite Pranutan.
Summary:
The festival also featured cultural events and food from cricket-playing nations like India, Pakistan and Sri Lanka.
Summary:
Eighteen-time European Tour winner Mark James' tee shot at the 17th hole at the Senior Open Championship at St Andrews hit a seagull mid-flight, causing the ball to ricochet off into the out-of-bounds section.
Summary:
After Lewis Hamilton credited "divine intervention" for his victory in German Grand Prix, former world champion Jacques Villeneuve said the four-time world champion believes he's Jesus Christ.
Summary:
Former Team India captain Sourav Ganguly, talking about his shirt-waving act at Lord's after India's NatWest series win in 2002, revealed his daughter asked him if "it was necessary to do it".
Summary:
The boys team that will represent India is from New Delhi, while the girls team is from Bengaluru.
Summary:
After IBM claimed its AI-enabled supercomputer Watson suggested up to 96% correct cancer treatment plans, a report has found "multiple examples of unsafe treatment recommendations." In one case, a 65-year-old patient was recommended a drug that could cause fatal bleeding while he was already suffering from severe bleeding.
Summary:
Iceland-based multi-millionaire Kristján Loftsson, whose whaling company made the first known killing of an endangered blue-fin hybrid whale since 1966, has threatened to kill at least 150 more before the summer hunting season ends.
Summary:
The National Human Rights Commission (NHRC) has issued notices to the Delhi Chief Secretary and Union Women and Child Development Ministry after three sisters aged between two and eight years starved to death.
Summary:
The labourers were reportedly transplanting paddy in the fields when the blast took place.
Summary:
During the monsoon session in Rajya Sabha, Information Technology Minister Ravi Shankar Prasad on Thursday said that social media is being misused to create unrest and violence.
Summary:
A 32-minute movie 'inspired' by PM Narendra Modi's childhood was screened for BJP leaders at the Parliament's library building.
Tweeting the trailer, BJP said "It presents an inspiring story of young Naru, destined to serve the nation.
Summary:
Residents of over 60 flats from two Ghaziabad apartments were evacuated after an adjacent road caved in due to rainfall.
Summary:
China has said that it is ready to work with the new Pakistani government to move forward the strategic partnership.
Summary:
TRAI Chairman RS Sharma defended the government's move to create Aadhaar, saying that it does not violate privacy.
Summary:
The 19-year-old taekwondo player from Guwahati, who lost her foetus in an AirAsia flight on Wednesday, has claimed she wasn't aware of her pregnancy.
Summary:
Talking about the controversy that surrounded Sanjay Leela Bhansali's film 'Padmaavat', Chief Justice of India Dipak Misra on Thursday said, "I cannot really conceive how a film can be banned." "If [Supreme Court] upheld the right of the producer to show 'Bandit Queen', then 'Padmaavat' was nothing.
Summary:
Chiyo Miyako, a 117-year-old Japanese woman, died on July 22, days after her applications for the titles of 'oldest person living' and 'oldest person living (female)' were approved.
Summary:
The Ghaziabad Development Authority has denied claims that a viral video showing a flooded flyover is from Hindon Elevated Road, adding that it's from somewhere else.
Summary:
Although the commuters are not fined for violating the ban, they are regularly directed to adhere to it.
Summary:
According to data revealed by the Indian Railways, an express train in Uttar Pradesh travelled at a speed of 409 kilometres per hour, covering a distance of 116 kilometres between Fatehpur and Allahabad in 17 minutes in 2016.
Summary:
The growing population of Muslims in India is the reason for the increase in cases of rape and murder, BJP MP Hari Om Pandey has said.
Summary:
Karnataka BJP MLA Basanagouda Patil Yatnal on Thursday said that he would have ordered the police to shoot intellectuals and liberals if he was the Union Home Minister.
Summary:
The municipal corporation of Vadodara has imposed a ban on the sale of panipuris over hygiene issues.
Summary:
Guterres said that the cash crunch was caused primarily by the failure of the member states to pay their contributions and urged them to pay the dues at the earliest.
Summary:
The US government has said that 1,820 children aged 5 and above, who were separated at the border with Mexico have been reunited with parents or sponsors.
Summary:
The National Anti-Profiteering Authority has issued a notice on Jubilant FoodWorks, which operates pizza chain Domino's in India, for allegedly not passing on GST rate cut benefits to consumers at Domino's outlets.
Summary:
Benchmark index BSE Sensex surged 352.21 points on Friday to end at a record closing high of 37,336.85.
Summary:
Janhvi Kapoor, while talking about her family's reaction after watching her debut film 'Dhadak', said, "They told me not to do a remake of any film for a while now." 'Dhadak', which is an adaptation of the Marathi film 'Sairat', also stars Ishaan Khatter in the lead role.
Summary:
Shah Rukh Khan has praised a post, which uses his signature pose to spread traffic awareness, shared by Assam ACP Ponjit Dowarah.
The message in the ACP's post read, "The universal pose of @iamsrk has touched all down the ages, but please read the message also #FollowTrafficRules."
Summary:
Revealing the kind of films he used to watch in his childhood, Ranveer Singh said, "Mainstream Hindi films, masala entertainers are the reason I ever wanted to become an actor...It's been my education." Adding that mass comedy is "his home territory", he said, "I've grown up watching...Govinda's films.
Summary:
Speaking about actors being referred to as 'heroes', Rajkummar Rao said, "We're not heroes...heroes are people who're fighting for us on borders.
Rajkummar further said he doesn't understand the term "quintessential hero in Hindi films".
Summary:
After the British heatwave led to relaxing of the strict dress code for spectators in the Pavilion at Lord's Cricket Ground, a user tweeted, "My God, the Apocalypse is upon us." "And the Doomsday Clock moves another minute closer to midnight," wrote another.
Summary:
Former India captain Sourav Ganguly, in Breakfast With Champions' recent episode, revealed he told spinner Harbhajan Singh to also open his shirt while doing his shirt-waving celebration at Lord's balcony after winning the NatWest series in 2002.
Summary:
After announcing its plan to relaunch its India business, US-based online retailer eBay is reportedly in talks with ShopClues to acquire the Gurugram-based e-commerce company.
Summary:
Uttar Pradesh BJP MP Hari Om Pandey has claimed that Muslim population is "rapidly increasing" and will soon demand "a new Pakistan".
Summary:
Punjab CM Amarinder Singh and 17 others were acquitted of all charges on Friday in the 2008 Amritsar Improvement Trust (AIT) scam case.
Summary:
A man demanding special status for Andhra Pradesh climbed a tower near Delhi's Metro Bhawan on Friday.
Summary:
The government told the Supreme Court there'll be no changes in One Rank One Pension scheme as it'll create financial implications.
Summary:
PM Narendra Modi on Friday tweeted that he has enquired about the health of DMK President M Karunanidhi from his daughter Kanimozhi and son MK Stalin, adding that he is praying for his "quick recovery".
Summary:
North Korea on Friday handed over the remains believed to be of 55 US soldiers killed in the Korean War. A US military transport plane flew to North Korea to bring the remains to a US military base in South Korea.
Summary:
Confirming his Antigua citizenship, PNB scam accused Gitanjali Gems promoter Mehul Choksi on Friday said he chose Antigua and Barbuda citizenship to obtain visa-free travel access to 130 countries.
Summary:
Congratulating Imran Khan on his party Pakistan Tehreek-e-Insaf winning the Pakistan general elections, Rishi Kapoor tweeted, "I hope you succeed in making your 'Mulk' have good relations with my 'Mulk'." His tweet is in reference to his film 'Mulk', in which he portrays a Muslim man accused of treason.
Summary:
Firstpost wrote compared to the franchise's first two films, the third part is "just okay." It was rated 1/5 (HT), 2/5 (NDTV) and 1.5/5 (Firstpost).
Summary:
Saif further said Kareena "was surprised by how good" the web series is.
Summary:
Facebook on Thursday approved a $10 million annual allowance (nearly â¹19 lakh per day) to boost security for CEO Mark Zuckerberg and his family 'to address safety concerns due to specific threats'.
Summary:
DMK President M Karunanidhi on Friday became the first Indian political figure to lead a party for 50 years.
Summary:
The planet-wide Mars dust storm that shut down operations of NASA's Opportunity rover originated largely from a single 1,000-km-long geological formation near the Red Planet's equator, American researchers have found.
Summary:
Bihar Social Welfare Minister Manju Verma has said she will resign and quit politics if her husband is found guilty in the shelter home case wherein 29 girls were raped.
Summary:
After the National Commission for Women (NCW) recommended abolishing the practice of confessions in churches, Kerala BJP leader George Kurian on Friday said the feminist ideology is crossing its limits.
Summary:
Former Pakistan PM Nawaz Sharif has rejected the "tainted and dubious" results of the general elections and said that the mandate had been stolen from the people.
Summary:
Michael Avenatti, the lawyer for pornstar Stormy Daniels has claimed US President Donald Trump paid money to three more women to hide their affair besides Daniels and former Playboy model Karen McDougal.
Summary:
Papa John's Pizza Founder and former Chairman, John Schnatter, has sued his own company demanding documents related to his exit from the pizza chain.
Summary:
Richa Chadha, who will be seen portraying South Indian adult film actress Shakeela in an upcoming biopic on her, shared her first look from the film on Instagram.
Summary:
Former Indian cricketer Sunil Gavaskar had once said that Pakistan's World Cup-winning former captain Imran Khan "could be the next Prime Minister of Pakistan" while commentating during an India-Bangladesh ODI.
Summary:
After the 2003 World Cup, the Indian cricket team was invited to meet late President APJ Abdul Kalam, where Indian batsman Rahul Dravid asked him to sign his copy of Kalam's book Ignited Minds.
Summary:
Essex medium-pacer Paul Walter, who dismissed Team India captain Virat Kohli in a warm-up match, has said that he will save the video of the dismissal and keep it in the locker.
Summary:
English footballer Bradley Wright-Phillips, playing for the New York Red Bulls against DC United, scored his 100th MLS goal and celebrated it by removing his 99 number jersey to reveal a 100 number jersey beneath it.
Summary:
The Indian Archery team had recently shocked the Chinese Taipei team in 2018 archery World Cup in Berlin, defeating them to reach the final of the tournament.
Summary:
Canada's smartARM has won Microsoft's global competition Imagine Cup 2018 for creating an affordable, robotic arm prosthetic.
Summary:
After teaming up with Google, Microsoft, and Twitter last week for a common data sharing platform, Facebook said "Even if we're all taking steps to shore up our privacy protections, we won't find the answers in a silo".
Summary:
Co-working space giant WeWork has raised $500 million funding in Series B round led by Temasek, SoftBank Vision Fund and others for its China business.
Summary:
Six months after Skechers filed cases in Delhi High Court against Flipkart and its sellers over fake shoes, the Walmart-backed company has reportedly offered an out-of-court settlement to the US-based footwear brand.
Summary:
Summary:
Four months ago, a case was also registered against the girl's father, who is currently in custody, for allegedly taking her to various places where she was gangraped.
Summary:
Uttar Pradesh CM Yogi Adityanath on Thursday said that the state would have had the maximum number of lynchings had illegal slaughterhouses not been shut down.
Summary:
A man in Mumbai has been arrested after he allegedly hit an Uber driver on the head with an iron rod for refusing his friend's ride.
Summary:
Salem claimed he never met Dutt and didn't give him arms and ammunition.
Summary:
Priyanka Chopra got engaged to rumoured boyfriend, American singer Nick Jonas, on her 36th birthday on July 18 and will get married in October, as per reports.
Summary:
The Mumbai Police on Thursday tweeted a post advising people against taking up the viral Kiki challenge.
Summary:
The Times of India (TOI) called it "a great mix of plot, pacing and performances." Firstpost said the film is "cleverly executed...with astonishing practical effects".
Summary:
Former Indian captain Sourav Ganguly said that he was surprised when India's then captain MS Dhoni handed him the captaincy in the last session of his career's last Test match in 2008.
Summary:
Billionaire Richard Branson-backed Virgin Galactic set a new speed record of Mach 2.47 and flew to a record altitude of 52 km in the third successful test flight of its spaceplane.
Summary:
Congress MLA Bharat Bhalke and NCP MLA Dattatray Vithoba Bharne on Thursday submitted their resignation to Maharashtra Assembly Speaker in support of the agitation for Maratha reservation in government jobs and educational institutes.
Summary:
Ahead of the release of the final draft of National Register of Citizens (NRC), Assam CM Sarbananda Sonowal on Thursday directed officials not to treat those people who are excluded from the list as "foreigners".
Summary:
Hitting out at his own party-led Goa government, BJP MLA Michael Lobo on Wednesday said that some "so-called" cow protectors are responsible for the shortage of beef in the state.
There are many meat eaters in Goa. Tourists come here to eat beef," he said.
Summary:
Former Pakistani President Pervez Musharraf on Thursday said that he hoped Pakistan Tehreek-e-Insaf (PTI) Chairman Imran Khan will govern Pakistan in a better way.
Summary:
Ambae, once home to about 10,000 people, was temporarily evacuated last September when the eruption cycle began.
Summary:
The jump was attributed to Amazon's ad sales, which generated $2 billion.
Summary:
Neymar had entered the tournament with five of his friends.
Summary:
Following the news that Pakistan's World Cup-winning former captain Imran Khan is set to become the nation's Prime Minister, his former rival and India's World Cup-winning former captain Kapil Dev called it a 'huge achievement'.
Summary:
Samit had scored a match-winning century in January in the BTW Cup U-14 tournament.
Summary:
Amazon's facial recognition tool called 'Rekognition' matched 28 US politicians to mugshots of people arrested for a crime, according to a test conducted by the American Civil Liberties Union (ACLU).
Summary:
Google has unveiled tiny artificial intelligence (AI) chips called Edge TPU to power AI predictions in IoT devices.
Summary:
Former Maoist ideologue Gaddar has announced that he will vote for the first time in his life in the next Telangana elections.
Summary:
Summary:
Talking about BigBasket's initial days, the grocery delivery startup's Co-founder Abhinay Choudhari said, "I still remember the very first customer order, which had only one fruit and vegetable item." He also said BigBasket is now among the top Indian retailers in fruit and vegetable sales.
Summary:
Paytm "respects users' need for data privacy and security", the startup added.
Summary:
The Indian Railways has inducted five new track maintenance machines, which will mechanise the monitoring, relaying and maintenance of tracks.
Summary:
The decision to induct private sector specialists at joint-secretary level via lateral entry does not mean that the Indian bureaucracy is inefficient, Minister of State for Personnel Jitendra Singh said in Rajya Sabha.
Summary:
Congress President Rahul Gandhi has told party leaders to "strengthen the organisation in such a fashion that it is not a candidate but the party that will fight the election," party MP PL Punia claimed.
Summary:
The price of a cup of coffee in Venezuela's Caracas soared to 2,000,000 bolivars this week from 190,000 bolivars in late April, according to Bloomberg's Cafe Con Leche Index.
Summary:
The Department of Telecom has given its final approval to the merger of Vodafone India and Idea Cellular, which will create India's largest mobile operator with around 430 million subscribers.
Summary:
Chief Economic Adviser Arvind Subramanian on Thursday demitted office to return to the US for research and writing.
Summary:
Facebook on Thursday posted the largest single-day loss of $120 billion in market value by any company in the US stock market history.
Summary:
According to reports, Tom Cruise's foot injury on the sets of 'Mission: Impossible - Fallout' increased the film's budget by approximately $70 million (over â¹480 crore).
Summary:
Filmmaker Ali Abbas Zafar took to Twitter to confirm that Priyanka Chopra has quit his upcoming directorial 'Bharat'.
Summary:
Directed by Amar Kaushik, the film is scheduled to be released on August 31.
Summary:
The Indian Olympic Association (IOA) has been fined nearly â¹74,000 by the Commonwealth Games Organising Committee for damages caused by athletes at the Games Village during CWG 2018 in Gold Coast, Australia.
Summary:
The player boarded the plane in Guwahati and delivered "a pre-mature dead foetus", the police said.
Summary:
The structure will be separate from the existing museum dedicated to Nehru.
Summary:
Lok Sabha on Thursday passed the Trafficking of Persons (Prevention, Protection and Rehabilitation) Bill, 2018.
Summary:
An initial assessment has also revealed that a total of 8,286 houses have been partially or fully damaged.
Summary:
Somalia will prosecute a female genital mutilation (FGM) case for the first time in the country's history after a 10-year-old girl died from the procedure last week.
Summary:
Asserting that Pakistan-US ties cannot be a one-way relationship, Pakistan Tehreek-e-Insaf chief Imran Khan on Thursday said they will work on a mutually beneficial policy.
Summary:
Former Pakistani fast bowler Wasim Akram took to Twitter to share a picture of himself with 1992 World Cup-winning captain Imran Khan, who on Thursday declared his party's victory in the Pakistan general elections.
Summary:
Barcelona women's team was made to fly in economy while the men's team travelled in first class to US in their first-ever tour together.
Summary:
Nine Facebook insiders have sold about $4.13 billion worth of stock since the Cambridge Analytica data-mining scandal first surfaced on March 17, compared to $4.31 billion in all of 2017.
Summary:
The 'world's first ever computer algorithm' which was written by a Victorian woman named Ada Lovelace 175 years ago has been sold at an auction for â¹86 lakh.
Summary:
Researchers at Italian Institute of Technology (IIT) have developed a four-legged robot called 'Centauro' that is aimed to help in disaster relief operations.
Summary:
Independent MLA Ravi Rana today warned that he and six other independent legislators supporting the BJP-led Maharashtra government would withdraw their support if CM Devendra Fadnavis is replaced.
Summary:
Former Jammu and Kashmir CM Farooq Abdullah said Pakistan Tehreek-e-Insaf chief Imran Khan's statement on developing "good neighbourly relations" with India was "kind-hearted'.
Summary:
The Supreme Court has said that it can't remain oblivious to the fact that entry of women between 10 and 50 years is banned in Kerala's Sabarimala temple on account of menstruation.
Summary:
887 students from 15 states and Union Territories were reported ill after having mid-day meals in the last 3 years, Union Minister of State for HRD Upendra Kushwaha informed the Rajya Sabha today.
Summary:
Locals took three hours to pull the boy from under the bus.
Summary:
The body of a 14-year-old missing girl was found inside a locked house in West Bengal's Howrah on Thursday.
Summary:
Summary:
Police said the bodies of the children have been handed to their family and a second autopsy report is awaited.
Summary:
Railways may convert old coaches into rail-themed restaurants, as per a senior official.
Summary:
There is no proposal under the consideration of the Human Resource Development Ministry to set up a university for minorities, MoS for HRD Satya Pal Singh said in response to a written question in the Rajya Sabha.
Summary:
Ajgaonkar further said that they won't allow tourists who do not respect 'Goaness'.
Summary:
Sreeram N, organiser of the Young Achievers Matrimony Meet, has said they made a mistake after an advertisement for the event listed "beautiful" women as "young achievers".
"We...made the mistake of putting beautiful girls under achievers.
Summary:
"We want to turn it into an educational or public institution," he added.
Summary:
PepsiCo filed a â¹2-crore defamation suit against Facebook, YouTube and Twitter and obtained Delhi HC orders in June 2018 asking platforms to remove jokes and fake news of its snack Kurkure containing plastic.
Summary:
The Central Bureau of Investigation will investigate the Cambridge Analytica data breach scandal, Union IT Minister Ravi Shankar Prasad said in the Rajya Sabha on Thursday.
Summary:
Kerala Finance Minister TM Thomas Isaac on Wednesday revealed that 64,473 owners of high-end vehicles are availing various welfare schemes provided by the state government.
Summary:
They would swap their ATM cards and withdraw the amount from ATMs and use that money to shop online.
Summary:
The Karnataka State Medical Education Department has written to the Centre, seeking a reservation of 50% NEET seats in the All India Quota in deemed medical universities for its students.
Summary:
HRD Minister Prakash Javadekar on Thursday told the Rajya Sabha that the Jio Institute has not been declared an 'Institution of Eminence'.
Summary:
Priyanka Chopra has thanked Variety for including her in the magazine's list of 500 most influential business leaders in the entertainment industry.
Summary:
Argentina Football Association (AFA) president Claudio Tapia has said Lionel Messi must continue to play for Argentina as the federation benefits financially from his appearances.
Messi hasn't addressed his future with Argentina after France knocked them out of World Cup.
Summary:
Manchester United goalkeeper Joel Pereira missed a penalty but saved three to help his team win.
Summary:
Team India batsmen Dinesh Karthik and Hardik Pandya were welcomed by Bhangra dancers on the ground as they walked out to the pitch on Day two of their warm-up match against Essex on Thursday.
Summary:
India's leading carmaker Maruti Suzuki is planning to develop electric motors for its small cars, Alto, Wagon R, Celerio and A-Star over the next few years.
Summary:
Speaking about the Maratha reservation protests, Shiv Sena said in party mouthpiece 'Saamana' that Maharashtra paid the price for the government's nature to suppress issues.
Summary:
Days after Karnataka CM HD Kumaraswamy broke down in tears, Karnataka Congress chief Dinesh Gundu Rao said, "I do not think a chief minister should do that.
Summary:
National Commission of Women (NCW) has recommended abolishing the practice of confessions in churches as it can lead to blackmailing of women.
Summary:
Speaking about the deaths of three girls due to starvation, Delhi Deputy CM Manish Sisodia said, "Our system has failed." He has sought a report from the Integrated Child Development Services to ascertain if the girls were registered on government records.
Summary:
Meanwhile, several local Trinamool Congress leaders were accused of threatening the woman's family to withdraw their complaint but the Patrasayer TMC block later denied the allegations.
Summary:
After Uttar Pradesh CM Yogi Adityanath said everyone should respect religious sentiments, AIMIM chief Asaduddin Owaisi said the nation should be governed according to the Constitution and not sentiments.
Summary:
Madhya Pradesh CM Shivraj Singh Chouhan has slammed Congress leader Digvijaya Singh for calling slain terrorist Osama bin Laden as "Osama ji" in 2011, adding that he should know the difference between a terrorist and a patriot.
Summary:
A 24-year-old dance trainer was arrested for allegedly raping his 16-year-old student in Ghaziabad, while his parents were arrested for their alleged involvement in extorting money from her.
Summary:
Union Minister RK Singh said on Thursday that the elections in Pakistan were rigged and that the Army helped cricketer-turned-politician Imran Khan win.
Summary:
He also took the youth to the police station, where his wife told cops she talked to the latter on her own.
Summary:
Pakistan Tehreek-e-Insaf chief Imran Khan said that he wanted to learn poverty alleviation from China.
Summary:
The US embassy said in a statement that no other person apart from the suspect was injured and there was no damage to embassy property.
Summary:
The Election Commission of Pakistan said on Thursday that the final result of the general elections will be announced within 24 hours.
Summary:
The Sunil Mittal-led company had posted a profit of â¹367.30 crore in the corresponding quarter last year.
Summary:
The Ministry of Finance has extended the deadline for filing of income tax returns to August 31, 2018, for categories of taxpayers who were to file their returns by July 31.
Summary:
He also said he wants to fix Pakistan's relations with India.
Summary:
Ileana D'Cruz has responded to a fan who asked her if she has faced criticism for having an "awkward body".
"Firstly, I don't have an 'awkward' body type.
Summary:
Facebook CEO Mark Zuckerberg on Wednesday said that WhatsApp Payments is seeking 'green light' from the Indian government to officially launch its UPI payments service in the country.
Summary:
Congress MP Jyotiraditya Scindia moved a privilege motion against Madhya Pradesh CM Shivraj Singh Chouhan, MP government, and Guna District Collector in the Lok Sabha for not inviting him to a highway inauguration in his Parliamentary constituency.
Summary:
This comes after the UP government suggested that the Taj Mahal be brought under the Centre's 'Adopt a Heritage Scheme'.
Summary:
BJP MP Nishikant Dubey on Thursday said, "Yes, we do fear hugging Rahul Gandhi as our wives might divorce us after that." "If he gets married, we will hug him," he added.
Summary:
My freedom of movement will end," the Uttar Pradesh BJP MP said.
She also said she had done a lot of work for the BJP even before entering Parliament.
Summary:
Speaking at the inauguration of a new block of the Delhi High Court on Wednesday, Union Law Minister Ravi Shankar Prasad said the judiciary should be trusted to solve the differences between judges without political intervention.
But let us trust the statesmanship of the judiciary," he said.
Summary:
A 35-year-old woman in Uttar Pradesh's Pilibhit was allegedly held captive by her husband and in-laws for almost a week, beaten up and attacked with acid and hot oil, police said on Wednesday.
Summary:
Rejecting the bail plea of a 42-year-old Bangladeshi national arrested for illegally staying in India, a Thane court said that Aadhaar card cannot be considered as a citizenship proof or domicile, as observed by the Calcutta High Court.
Summary:
Fugitive diamantaire Mehul Choksi, accused in the â¹13,500-crore PNB fraud, is reported to have got an Antiguan passport, which is available after a donation of â¹1.3 crore.
Summary:
"The narrative was that Imran Khan's election will bring about everything wrong in India-Pakistan relations," he added.
Summary:
Pakistan Tehreek-e-Insaf chief Imran Khan on Thursday said that Kashmir remains the core issue between India and Pakistan and added that both the nations should resolve the issue through talks.
Summary:
Jemima Goldsmith, the first wife of Pakistan's thrice-married politician Imran Khan, has tweeted her "sons' father is Pakistan's next PM".
Summary:
Venezuela will remove five zeroes from its bolivar currency rather than the three zeroes originally planned, President Nicolas Maduro has said.
Summary:
Actor Sanjay Dutt, while praising Madhuri Dixit, said, "[She is] absolutely beautiful, gorgeous, down to earth and a great actress." Sanjay and Madhuri, who were last seen together in the 1997 film 'Mahaanta', will star in the upcoming film 'Kalank'.
Summary:
The BCCI wants the schedule of Asia Cup to be changed after India were pitted to play against Pakistan just a day after their opening match, according to reports.
Summary:
China has reportedly withdrawn its approval for Facebook's plan to open a venture in the country, a day after granting the company a licence for the same.
Summary:
The tests included dropping the flexible OLED screen 26 times from a height of four feet and subjecting it to extreme temperatures.
Summary:
Singh said this during a march held in response to Chouhan calling him anti-national and a terrorist sympathiser.
Summary:
India's largest automaker Maruti Suzuki on Thursday reported a 27% rise in net profit at â¹1,975 crore for the April-June period.
Summary:
The West Bengal government has proposed to build crematoria for animals to prevent the disposal of their bodies in Ganga river, Water Resources and Ganga Rejuvenation Ministry has said.
Summary:
A court in Muzaffarnagar has sentenced three brothers to life imprisonment and imposed a fine of â¹10,000 for beating to death a labourer in 2015.
Summary:
Residents in the Greek town of Mati had just 20 minutes to flee the area before the fire spread, officials said.
Summary:
Addressing an event at the BRICS summit in South Africa, Chinese President Xi Jinping on Wednesday said that there would be no winner in any global trade war.
Summary:
Novelis will acquire Aleris' 13 manufacturing facilities across North America, Asia and Europe.
Summary:
The companies had one common auditing firm SRSR Advisory Services and at least 50 of them had no business operations.
Summary:
Indian innovator Sonam Wangchuk, who was the inspiration for the character Rancho in the movie '3 Idiots', has been awarded the 2018 Ramon Magsaysay Award for "harnessing nature, culture and education for community progress".
Summary:
A special women's court on Wednesday sentenced Mukesh Mishra, executive producer of television serial 'Ek Veer Ki Ardaas...Veera' to seven years in prison for raping a junior artist.
Summary:
It provides two-step verification by simply tapping the button on the key instead of retyping codes.
Summary:
Facebook's $150-billion plunge is also more than India's most valuable company TCS' market cap of $110 billion.
Summary:
Summary:
In six Moon landing missions, astronauts brought back 2,200 rock samples weighing about 382 kg, out of which 84% still remain untouched, NASA curator Ryan Zeigler has revealed.
Summary:
The incident took place when the deceased was working on the ground floor and did not notice the lift coming down, the police said.
Summary:
Para was not at home at the time of the raid and was informed of the incident by his family.
Summary:
The UK has asked India to allow the UN High Commissioner for Human Rights to visit Jammu and Kashmir after the body alleged human rights violations in the state.
Summary:
US President Donald Trump will lose everything he has if he wages war against Iran, the commander of Iran's Quds Force, Major General Qassem Soleimani, has said.
Summary:
The death toll from multiple attacks carried out by the Islamic State in Syria on Wednesday has risen to 215, officials said.
Summary:
Antigua & Barbuda authorities have confirmed that Mehul Choksi, an accused in the $2.1-billion PNB scam, was granted citizenship in November 2017.
Summary:
Speaking about his equation with his 'Dhadak' co-star Janhvi Kapoor, Ishaan Khatter said, "It's going to be a lifelong friendship." "It felt like being on set with your best friend...There was a lovely energy on the set during the making of the film," he added.
Summary:
The policeman thought that Froome, wearing a raincoat over his racing uniform, was a supporter trying to ride the course.
Summary:
BBC Newsnight mistook ex-Pakistan captain Imran Khan for former fast bowler Wasim Akram in a news segment covering Pakistan's general elections, showing clips of the latter's bowling to highlight the former's cricketing career.
Summary:
Users can earn points for things like how often the clothes are worn or walking around to find Tommy-branded icons on the app's map.
Summary:
Facebook CEO Mark Zuckerberg has revealed that 2.5 billion people use at least one of the company's apps, Facebook, Instagram, WhatsApp or Messenger, each month.
Summary:
Other than asking each Hindu couple to give birth to five children, BJP MLA Surendra Singh said, "Giving birth to a child is 'prasad' from God." Adding that Hindus will be a minority, not due to terrorists but due to themselves, Singh stated, "India can become strong, when Hindus are strong.
Summary:
Speaking about the Pakistan general elections, Congress leader Shashi Tharoor said that Pakistan's Tehreek-e-Insaf (PTI) leader Imran Khan's expected win won't "necessarily be turbulent weather for Indo-Pak relations".
Summary:
A 28-year-old man driving on hilly terrains of Uttarakhand has died after he lost control of his car while trying to record a video of the journey.
Summary:
Addressing the Rajya Sabha on Wednesday, Minister of State for Home Kiren Rijiju said the government has received reports that terrorist groups including Jaish-e-Mohammad and Hizbul Mujahideen "misuse children to further their agenda".
Summary:
Internet services were suspended in Navi Mumbai on Thursday in the wake of incidents of violence over the protest for reservations for the Maratha community.
Summary:
Seven other cult members responsible for the attack, including leader Shoko Asahara were hanged earlier this month.
Summary:
A South Korean company that claimed to have found the wreck of a Russian warship carrying $130 billion in gold on Thursday said it has not verified the existence of any gold.
Summary:
Australian investment bank Macquarie Group on Thursday said that Shemara Wikramanayake will take over as the group's first female CEO in December.
Summary:
The West Bengal Assembly has passed the resolution to change the state's name to 'Bangla'.
Summary:
Three girls aged eight, four and two years died in Delhi due to starvation from prolonged malnutrition, police said quoting initial autopsy report on Wednesday.
Summary:
Former cricketer Virender Sehwag has advised Team India to not play Asia Cup over the tournament's schedule, which will see India play two ODIs in two days, including a match against Pakistan.
"Which country plays back-to-back cricket...these days?
Summary:
The decision comes after several Huawei users left negative one-star reviews on the Android app store.
Summary:
Facebook on Wednesday suffered a $150-billion loss in market capitalisation within two hours after it announced its slowest-ever user growth in quarterly reports.
Summary:
Google parent Alphabet had more contract workers than direct employees for the first time ever earlier this year, according to Bloomberg.
Summary:
Before Facebook's biggest-ever loss of $150 billion in market capitalisation on Wednesday, American chipmaker Intel lost about $91 billion in a single day in September 2000.
Summary:
However, he quickly got up after the fall and continued the cycle protest.
Summary:
Nirav Tolia, Co-founder and CEO of Nextdoor, the social network for local neighbourhoods, would be stepping down after almost eight years.
Summary:
Uttar Pradesh's Partappur village head, who was wanted in two cases, was arrested on Wednesday when he showed at Jhinjhana police station to welcome a newly posted Station House Officer.
Summary:
Police said the boy took permission from the girl's grandmother to take her to his home, where he raped her while watching a pornographic clip on a mobile phone.
Summary:
The court said this while ruling on an interfaith marriage case of a Hindu-Muslim couple.
Summary:
On the 19th Kargil Vijay Diwas, PM Narendra Modi paid homage to soldiers who served India during the Kargil war.
Summary:
However, zoo authorities refused to accept that the zebra was fake despite the evidence.
Summary:
Shilpa Shetty, who won an amount of â¹10 lakh on the Salman Khan-hosted reality show 'Dus Ka Dum', has donated the money to her NGO named Shilpa Shetty Foundation, which provides shelter and education to orphans.
Summary:
Television actress Ankita Lokhande has said she has decided to stop talking about her ex-boyfriend Sushant Singh Rajput.
Summary:
Barmy Army, a semi-organised group of English cricket fans, presented Team India captain Virat Kohli with International Player of the Year award for 2017 and 2018.
Summary:
Bengaluru-based video blogging startup Trell has raised â¹8.5 crore in its seed round of funding led by Singapore-based BeeNext and Mumbai-based WEH Ventures.
Summary:
TaxiForSure Co-founder Aprameya Radhakrishna-led knowledge sharing startup Vokal has raised about â¹34.5 crore in a Series A round of funding led by Chinese investor Shunwei Capital and 500 Startups.
Summary:
Slamming the Uttar Pradesh government over its draft vision document for Taj Mahal, the Supreme Court said, "Who is exactly the in-charge of the Taj Mahal?
Summary:
TDP MP Thota Narasimham on Wednesday said that PM Narendra Modi "seems to have drowned in the River Ganga the promises he made to Andhra Pradesh".
Summary:
The Haryana government has granted â¹8 lakh to the kin of the man who was lynched to death in Alwar recently.
Summary:
DMK Working President MK Stalin demanded the resignation of Defence Minister Nirmala Sitharaman and Tamil Nadu Deputy CM O Panneerselvam over the use of a military air ambulance to shift Panneerselvam's ailing brother.
Summary:
The brother of a rape victim allegedly raped the 15-year-old sister of the accused as revenge in Uttar Pradesh's Kannauj on Tuesday.
Summary:
After US Secretary of State Mike Pompeo said that the country rejects Russia's annexation of Crimea, the Russian Foreign Ministry has said the US fails to stick to commitments.
Summary:
Hong Kong billionaire businesswoman Pollyanna Chu has lost 74% of her fortune, the biggest destruction of individual wealth in Asia this year.
Summary:
After Pakistani actress Mahira Khan was slammed for missing the Pakistan General Elections 2018, she took to Instagram to apologise for not being able to vote.
Summary:
Former Pakistan PM Nawaz Sharif, who has been jailed for corruption, had also played professional cricket.
Summary:
Facebook lost over $150 billion in valuation in two hours on Wednesday, suffering its history's biggest slump.
Summary:
Facebook CEO Mark Zuckerberg lost $16.8 billion within 2 hours on Wednesday, sliding to the sixth place from third among the world's richest persons.
Summary:
After Samajwadi Party MLA Azam Khan requested Muslims to stay away from dairy business and cow trading for their safety, his wife Tanzeem Fatima has returned her cow over mob lynching fears.
Summary:
The Centre on Wednesday informed the Lok Sabha that all villages adopted by the MPs under 'Sansad Adarsh Gram Yojana', will be provided free WiFi services.
Summary:
A woman in labour was carried on a cot by her family members to a hospital through flooded streets in Madhya Pradesh's Tikamgarh after the ambulance service failed to reach on time.
Summary:
After a passenger who travelled in Air India's Newark-Mumbai flight complained of bed bugs in their business class seats, the airline claimed, "Infestation may have happened due to the current weather conditions." Apologising for the inconvenience, Air India also offered to refund 75% of the passenger's fare.
Summary:
Police have booked the woman's husband in connection to her death.
Summary:
US President Donald Trump has postponed a second summit with Russian President Vladimir Putin until 2019, National Security Advisor John Bolton said on Wednesday.
Summary:
The football that Russian President Vladimir Putin gave to US President Donald Trump during a recent summit may have had a microchip, reports said.
Summary:
US State Secretary Mike Pompeo on Wednesday confirmed that North Korea is still producing fissile material for nuclear bombs despite the deal signed between the leaders of both the countries.
Summary:
The White House will no longer make public the summaries of President Donald Trump's phone calls with world leaders, according to reports.
Summary:
US President Donald Trump's star on the Hollywood Walk of Fame has been vandalised by a pickaxe wielding man who later surrendered to police.
Summary:
India's benchmark index BSE Sensex hit the 37,000-mark for the first time during live-trading on Thursday while Nifty also touched an all-time high to reach 11,172.20 points.
Summary:
Shahid Kapoor, who is set to get his wax statue at the Madame Tussauds museum, has said the museum's team sent options for the poses and his wife Mira Rajput took the final call on it.
Summary:
The bug affects devices from Broadcom, Qualcomm, Intel, and Apple among others.
Summary:
The vehicles will then drive to the Walmart and wait outside until an employee brings out the customers' groceries.
Summary:
German automaker Porsche has unveiled the new Macan SUV in China featuring an 11-inch touchscreen, voice controls, and self-driving features.
Summary:
Summary:
Goa Congress MLA Pratapsingh Rane on Wednesday said that "countries that consume beef look after their cattle in a much better way".
Summary:
The employee had asked the policewoman to return the stolen goods and to write an apology note.
Summary:
Bihar CM Nitish Kumar on Thursday ordered a CBI probe into the Muzaffarpur shelter home rapes case.
Summary:
A man who made â¹3 crore from selling his land was rescued from kidnappers after the sunglasses they made him wear at night reportedly aroused the police's suspicion.
Summary:
Summary:
A video of a Queen's Guard pushing a woman who was blocking his march at the Windsor Castle has surfaced online.
Summary:
An advertisement for a matrimony meet in Bengaluru, titled 'The Grand National Young Achievers Matrimony Meet', has gone viral after it listed "beautiful girls" under the category of 'Young Achievers'.
Summary:
Janhvi Kapoor, while speaking about the demise of her mother Sridevi during the time she was shooting for 'Dhadak', said, "I wanted to shoot the next day (after the cremation)." "But the shoot got cancelled.
Summary:
French defender Benjamin Pavard's long-range goal against Argentina in the Round of 16 has been voted as the Goal of the 2018 FIFA World Cup. With this, Pavard has become the first European player to win the Goal of the Tournament award since its creation in 2006.
Summary:
As we have shown, it will be sustained and regular." India will strengthen its cooperation and mutual capabilities with Africa to combat terrorism and extremism, he added.
Summary:
In a written reply to Rajya Sabha MP KR Arjunan, the Ministry of Home Affairs on Wednesday said that security agencies cannot track calls made using Voice over Internet Protocol (VoIP).
Summary:
The Delhi Development Authority (DDA) is planning to plant nearly 10 lakh saplings across the national capital during the ongoing monsoon season, the body said in a statement on Tuesday.
Summary:
A girl who had posted on Facebook that she was going to commit suicide was saved by Assam Police after the company's US-based headquarters alerted them.
Summary:
Gandhi alleged the joint venture between Dassault and Reliance was okayed by Centre despite latter having insufficient expertise in defence manufacturing.
Summary:
After being sentenced to two years in jail for riots during Patidar protests in 2015, Patidar leader Hardik Patel tweeted that BJP's 'Hitlershahi' can't suppress his voice from fighting for truth, farmers, youth and the poor.
Summary:
Prime Minister Narendra Modi on Wednesday took to Twitter to congratulate President Ram Nath Kovind on completing one year in the office.
He is extremely well versed in key policy issues," the PM wrote.
Summary:
Elin Ersson livestreamed her protest, a footage of which emerged on social media.
Summary:
Clare Bronfman, an heiress to the Seagram's liquor fortune, has been arrested in a probe of a self-help organisation which prosecutors claim was a sex cult.
Summary:
Producer Boney Kapoor, while speaking about the compliments his daughter Janhvi Kapoor has received for her debut film 'Dhadak', said, "Shabana Azmi told me 'Has Janhvi done chupke se 25-30 films that you haven't released?'" He added that Shabana also said Janhvi looks very "polished" onscreen.
Summary:
Former Indian cricketer Virender Sehwag has been named in the three-member Cricket Committee of the Delhi and District Cricket Association (DDCA), which also includes former players Aakash Chopra and Rahul Sanghvi.
Summary:
Twitter will limit the apps to 300 tweets and retweets per three hours and 1,000 likes per day.
Summary:
The cars will feature an active driver monitoring system to keep tabs on the safety driver.
Summary:
BJP MLA Surendra Singh on Wednesday said, "Population of Hindus should increase.
Summary:
Slamming Prime Minister Narendra Modi for visiting Africa while the Parliament is in session, Congress MP Mallikarjun Kharge on Wednesday said, "The meeting could have been avoided." "Prime Minister is out on a five-day tour...It was not an inevitable meeting.
Summary:
Bhanushali resigned from his position following the rape accusation.
Summary:
Organisations such as Ram Sena, Hanuman Sena, Ayyappa Dharma Sena, among others, have called for a statewide strike against the Kerala government's decision to support women's entry inside the Sabarimala temple.
Summary:
Two Lashkar-e-Taiba terrorists were killed in an encounter with security forces in Kashmir's Anantnag following an intelligence input about their presence inside a house, the police has said.
The police said, "This was a difficult operation as it was in a crowded locality.
Summary:
Summary:
A 50-year-old man named Rajesh Bangera has been arrested in Karnataka's Kodagu district by a Special Investigation Team (SIT) in connection with the Gauri Lankesh murder case.
Summary:
Shiv Sena MLA Harshavardhan Jadhav and NCP MLA Bhausaheb Patil Chikatgaonkar have resigned from their positions in support of the Maratha community's demand for reservation in education and government jobs.
Summary:
Iran has said that it will never take part in one-sided negotiations with the US under threat.
Summary:
Financial services giant Motilal Oswal's MD Raamdeo Agrawal has said US President Donald Trump's tweets are affecting his investments in oil refining companies.
"We are 70% to 80% dependent on oil imports and Trump is not helping," Agrawal added.
Summary:
Outgoing Chief Economic Adviser Arvind Subramanian has said the highest GST slab of 28% would be "virtually a hollow shell" over the next year or so.
Summary:
She mentioned the ring to a spectator who turned out to be the man's brother.
Summary:
The 29-year-old was the top wicket-taker in New Zealand's domestic first-class competitions for the last three seasons and the domestic Player of the Year in 2017.
Summary:
"You can fight someone with all your mind but hate is a choice," Gandhi said.
Summary:
Jeep Compass SUV wasn't meant to come to India but was launched here due to a "real warm relationship" between Tata Sons Chairman Emeritus Ratan Tata and Fiat Chrysler's former CEO Sergio Marchionne.
Summary:
It was previously believed that ocean to land transition happened 2.7 billion years ago.
Summary:
Summary:
Railway Minister Piyush Goyal on Wednesday praised a Railway Protection Force (RPF) constable for saving a woman from slipping under a train at Kanjurmarg railway station in Mumbai.
Summary:
A 25-year-old Indian student in Australia has died after being found critically injured at the house of a 19-year-old girl he met through a dating site.
Summary:
Pakistan's intelligence agency ISI is helping new terror outfit Al Badr to organise attacks against India and Afghanistan, reports quoting intelligence inputs have claimed.
Summary:
The Election Commission is going to examine if the video violates rules on the secrecy of ballot.
Summary:
US President Donald Trump on Wednesday slammed his former lawyer Michael Cohen over reports that he taped a conversation in which the US President discussed paying former Playboy model Karen McDougal.
Summary:
New Zealand's Parliament on Wednesday passed a law granting paid leave to victims of domestic violence.
Summary:
The militants launched simultaneous attacks on villages and killed residents in their homes, according to the Syrian Observatory for Human Rights (SOHR).
Summary:
Meanwhile, the Income Tax Department said the assessees can use other options like Internet banking and demat accounts for e-verification.
Summary:
Pakistani cricketer-turned-politician Imran Khan listened to the 1992 World Cup theme song "Who Will Rule The World" in his car after casting his vote during Pakistan's General Election on Wednesday.
Summary:
Brazilian forward Neymar barged a teenager to the floor after losing the ball to him during a five-a-side match.
Summary:
Slamming PM Narendra Modi for his Africa tour, BJP leader Shatrughan Sinha tweeted, "Parliament is in session...Heavens wouldn't have fallen if you'd left after the session." He also criticised PM Modi for his silence on mob lynching incidents.
Summary:
The Centre on Tuesday said 53 rape cases involving foreigners were registered between 2014 and 2016.
Summary:
The railways suffered a loss of around â¹90 lakh after a Mumbai road overbridge collapsed earlier this month, Minister of State for Railways Rajen Gohain informed the Lok Sabha today.
Summary:
Addressing the Lok Sabha, Minister of State for External Affairs VK Singh on Wednesday said that over 7,700 Indians are lodged in jails in foreign countries, adding that India spent over â¹2.7 crore between 2015-18 to assist them.
Summary:
Union Minister of State for Home Affairs Kiren Rijiju on Wednesday said that Rohingya refugees were "illegal" and will not be permitted to thrive in India.
Summary:
Two people have been arrested after a 22-year-old Dalit man was beaten to death by a mob for allegedly having an affair with a Muslim woman in Barmer, Rajasthan.
Summary:
A woman was killed and eight others were injured when part of an illegal three-storey building collapsed on a tenement and an adjoining public toilet in Maharashtra's Bhiwandi on Tuesday.
Summary:
Addressing the Rajya Sabha on Wednesday, Minister of State for Home Hansraj Ahir said that PM Narendra Modi has asked the state governments to take strict action against cow vigilantes who practice violence.
Summary:
Their demand also includes compensation to families of teachers who lost their lives in previous protests against the state government.
Summary:
Choksi had earlier claimed that he was afraid of being lynched if he returned to India.
Summary:
The Rajya Sabha on Wednesday passed the Fugitive Economic Offenders Bill, 2018, which empowers authorities to confiscate the assets of economic offenders who flee the country.
Summary:
Scientists have found evidence of liquid water underneath the south pole of Mars using radar measurements from Europe's Mars Express Orbiter.
Summary:
The body of a newborn was found with toilet paper stuffed in its mouth on a flight from Guwahati to New Delhi on Wednesday, according to the police.
Summary:
Eight accused, including the criminal and three women, were arrested for attacking Nagle and his team with sticks and axes.
Summary:
Kylie, with a fan base of 111 million followers, topped Hopper's 2018 Instagram Rich List.
Summary:
Italy-based photographer Alessio Mamo, who faced criticism for placing fake food in front of malnourished Indian children for a picture, has apologised.
Summary:
Police booked the coach under the Protection of Children from Sexual Offence (POCSO) Act.
Summary:
Samsung has toppled Xiaomi to regain the top spot in the Indian smartphone market with a 29% share in the June quarter, according to market tracker Counterpoint Research.
Summary:
Calling Rahul Gandhi's hug to PM Narendra Modi a "political stunt", Uttar Pradesh CM Yogi Adityanath dared the Congress President to try and hug him.
Summary:
Gurugram-based Mediology Software's Readwhere CMS (Complete Mobile Solution) has been certified by Google Developers as a solution partner for building advanced mobile experiences in the News and Media vertical.
Summary:
The Prime Minister of India's residence at 7, Lok Kalyan Marg in Delhi, does not have an electricity meter and there's no electricity consumption record of the residence, an RTI query has revealed.
Summary:
As many as 111 people were killed in 822 incidents of communal violence in the country in 2017, Union Minister Hansraj Gangaram Ahir said on Wednesday.
Summary:
The incident took place when the couple was fighting and it created a commotion in the neighbourhood.
Summary:
Women in Pakistan's Upper Dir district voted for the first time on Wednesday since the country came into being in 1947, officials said.
Summary:
Reliance expects to release a few web series within six months, reports said.
Summary:
Filmmaker Aanand L Rai, while praising Shah Rukh Khan and Salman Khan, said, "If you know them personally, they'll never make you feel that they're stars." Rai, who has directed them in his upcoming film 'Zero', added that he feels fortunate to direct two superstars.
Summary:
Serena added she's ready to be tested whenever to keep the sport clean.
Summary:
Facebook has obtained a licence to set up a startup incubator in China despite its website being banned in the country since 2009.
Summary:
While Arianespace's Ariane 5 rocket carried four satellites into the orbit, SpaceX launched 10 satellites aboard its Falcon 9.
Summary:
He further said that the no-confidence motion has exposed Congress.n
Summary:
Dickerson claims the startup failed to pay him for using his system integrating cell phones, GPS technology, and automated billing.
Summary:
A mob on Wednesday attacked four men, who were transporting a dead buffalo in Uttar Pradesh's Hathras.
Summary:
The Bengaluru Development Authority (BDA) is planning to axe 171 trees in order to demolish and reconstruct its 30-year-old complex in Indiranagar.
Summary:
Adding that train fares "may or may not be higher than airfares", he said railways is not losing passengers to airlines.
Summary:
A 50-year-old woman was allegedly mauled to death by around 10 dogs while she was working at a farm near her house in the Kushinagar district of Uttar Pradesh on Tuesday evening, the police said.
Summary:
She consumed pesticide in the college toilet, said the police.
Summary:
Two people were arrested by the Directorate of Revenue Intelligence at the Coimbatore International Airport on Tuesday for trying to smuggle gold worth over â¹34 lakh.
Summary:
US President Donald Trump on Tuesday said that Russia will attempt to interfere in the upcoming congressional elections in the US.
Summary:
Two Kerala police officers were awarded death sentence by a special CBI court on Wednesday for torturing a 26-year-old man to death at a Thiruvananthapuram police station 13 years ago.
Summary:
"Nestlé did not show its shape was a sufficient mark of distinctive character in the countries it seeks trademark," the court said.
Summary:
During a Test against New Zealand from July 24-29, 1986, England fielded four different wicketkeepers.
Summary:
Stamos had reportedly disagreed with COO Sheryl Sandberg over security issues.
Summary:
The privilege motion notices moved by the Congress against Prime Minister Narendra Modi and Defence Minister Nirmala Sitharaman are under consideration, Lok Sabha Speaker Sumitra Mahajan said on Wednesday.
Summary:
The man, who started his chat with "Bandhu", received "Hum fir milenge" in response at the conversation's end.
Summary:
Sergio Marchionne, who stepped down as Fiat's CEO due to illness last week after leading the company for 14 years, passed away at 66 on Wednesday.
Summary:
Uttar Pradesh CM Yogi Adityanath has said mob lynching incidents are being given unnecessary importance.
"If you talk about mob lynching, what was 1984?
Summary:
The government had called it "a deliberate, targeted and well-planned cyber attack".
Summary:
Several restaurants across Pakistan are offering free food and free drinks in order to motivate people to vote as the country went to polls on Wednesday.
Summary:
Pakistan's Election Commission on Wednesday stated that a low turnout of women voters at any polling booth will result in the cancellation of all votes cast in that booth.
Summary:
Karnataka Chief Minister HD Kumaraswamy on Tuesday met Wipro Chairman Azim Premji to propose a partnership to combat issues like air pollution in the state, especially Bengaluru.nKumaraswamy said the state is keen to adopt the technology developed by Wipro to improve urban air quality.
Summary:
Infosys Chairman Nandan Nilekani has said there should be a broader law on data protection and privacy, which applies to government and private agencies.
Summary:
No actor has been cast to play Bruce Lee's role yet, reports added.
Summary:
Tariq Mir, also known as the Indian lookalike of Peter Dinklage, who portrays 'Tyrion Lannister' in 'Game of Thrones', will star in Salman Khan's 'Bharat', as per reports.
Summary:
Former Team India captain MS Dhoni was spotted playing football with Bollywood actor Ishaan Khatter, whose film 'Dhadak' released on July 20.
Summary:
After being ignored by BCCI, Bengal captain Manoj Tiwary said that he doesn't know what metric is being used for selection.
Summary:
Latin America took the top spot for most simultaneous trips on a continent, the startup further revealed.
Summary:
The trillion-tonne iceberg that broke off from Antarctica's Larsen C ice shelf last July, travelled only about 45 km before getting stuck behind an elevated ice structure (star-marked), NASA satellite photos showed.
Summary:
During his visit to Uganda, PM Narendra Modi on Wednesday announced to build a Gandhi Heritage Centre in Uganda's Jinja, where a statue of Mahatma Gandhi was installed.
Summary:
Former Jammu and Kashmir Chief Minister Mehbooba Mufti has said she hopes that a stable government is formed in Pakistan following the general elections, adding that a democratic Pakistan is in the best interest of India.
Summary:
A man, aged about 50, committed suicide in Rajasthan after allegedly trying to rape his 30-year-old daughter-in-law while his son was away, the police have said.
Summary:
Meanwhile, ex-PM Manmohan Singh said he expected his successor to fulfil the commitments made to Andhra Pradesh by UPA government.
Summary:
Union Minister of State for Home Affairs Kiren Rijiju on Wednesday said that Rohingyas are illegal and "won't be allowed to thrive in India".
Summary:
He said any understanding with the Congress would amount to giving a clean chit to the alleged "perpetrators" of the 1984 anti-Sikh riots.
Summary:
Pandey said the signboards carrying the incorrect names have been repainted, adding that school authorities have been warned of strict action for flouting rules.
Summary:
At least 19 people have been killed and more than 100 are reported missing after an under-construction hydropower dam collapsed in Laos on Monday, the state media reported.
Summary:
The Maratha Kranti Morcha, which has been spearheading the Maratha reservation protests, has called off the bandh in Mumbai city.
Summary:
A 78-year-old woman and her 31-year-old grandson were killed after their car was sandwiched between two buses in Delhi's Nand Nagri on Tuesday.
Summary:
Over 2 lakh people have signed a petition, addressed to Disney, to rehire 'Guardians of the Galaxy' director James Gunn, who was fired by Disney over old tweets where he joked about rape and pedophilia.
Summary:
The trailer of Diana Penty and Sonakshi Sinha starrer 'Happy Phirr Bhag Jayegi', a sequel to the 2016 film 'Happy Bhag Jayegi', has been released.
Summary:
With a fan base of 23.2 million followers on Instagram, Team India captain Virat Kohli earns up to $120,000 (over â¹80 lakh) per sponsored post, as per Instagram scheduling tool Hopper.
Summary:
India Under-19 batsman Pavan Shah slammed 282 runs off 332 balls against Sri Lanka Under-19 to record the highest-ever score by an Indian in a Youth Test.
Summary:
Google Cloud's CEO Diane Greene while announcing a partnership with coding platform GitHub on Tuesday remarked, "I'm sort of sad they're at Microsoft." The world's largest collaborative coding platform GitHub was acquired in June by Google's rival Microsoft for $7.5 billion in an all-stock deal.
Summary:
Rajasthan BJP chief Madan Lal Saini has said that when Mughal emperor Humayun was dying, he asked father Babur to respect cows, Brahmins and women if he wants to rule in India.
Summary:
A year after its merger with Flipkart fell apart, Snapdeal in a letter to its employees has claimed that the e-commerce startup was cash flow positive in June 2018.
Summary:
An HIV positive man in Odisha committed suicide by hanging himself after he was allegedly denied treatment by government hospitals, police said.
Summary:
Mumbai's St Xavier's College is set to get its first non-Christian Principal since its inception nearly 150 years ago after the appointment of Rajendra Shinde, currently heading the Botany department, as the 24th principal.
Summary:
David Headley's lawyer John Theis has dismissed reports that the 26/11 Mumbai attacks mastermind was battling for his life in Chicago, US, after being beaten by inmates at a detention centre.
Summary:
Over 50% students who applied for re-evaluation of their CBSE Class 12 examinations reportedly saw an increase in marks.
Summary:
Acting New Zealand PM Winston Peters is demanding that Australia change its flag because it is too similar.
Summary:
China had demanded that foreign firms including airlines should not refer to Taiwan as a non-Chinese territory on their websites.
Summary:
Ranbir Kapoor has doubled his endorsement fee to â¹6 crore following the success of his latest film 'Sanju', as per reports.
Summary:
Barcelona have won four of the last six La Liga titles, while Real managed to win only one.
Summary:
The company has partnered with Finnish weather forecasting provider Foreca's road-weather experts for the service which will "alert to hazards before critical situations can develop".
Summary:
India's leading carmaker Maruti Suzuki has said that it is recalling 1,279 units of the new Swift and Dzire models over possible fault in the airbag controller units.
Summary:
New Delhi-based co-working space startup Awfis has raised $20 million in a Series C funding round from existing investors Sequoia Capital, The Three Sisters: Institutional Office, and InnoVen Capital.
Summary:
Police have recovered â¹5.86 lakh from the accused so far.
Summary:
Summary:
Nikah Halala is the practice wherin a man cannot remarry a woman unless she marries and divorces someone else.
Summary:
Police have arrested seven men for allegedly harassing and insulting a woman over her caste after she was appointed to a school as a cook in Tamil Nadu's Tiruppur.
Summary:
The European Commission has offered to pay countries â¬6,000 (over â¹4.8 lakh) per person to take in migrants crossing the Mediterranean on boats.
Summary:
India's drug regulator Central Drugs Standard Control Organisation has reportedly asked Johnson and Johnson (J&J) to reveal the composition of its talcum powder.
Summary:
Bribe givers have also been included in the legislation for the first time, liable for imprisonment up to seven years, and/or fine.
Summary:
At least 25 people have been killed and over 20 others have been injured in an explosion near a polling booth in Pakistan's Quetta, according to reports.
Summary:
Speaking about his children Arjun, Anshula, Janhvi and Khushi coming together after Sridevi's demise, Boney Kapoor said, "They've happened through...different mothers but why should they get affected?" "They're...my blood.
Summary:
Abhishek Bachchan responded to a troll who mocked Anurag Kashyap for casting him in his film 'Manmarziyaan'.
After Anurag tweeted 'Manmarziyaan' will premiere at the Toronto International Film Festival, a user commented, "From Kay Kay Menon to...Nawazuddin.
Summary:
Veteran singer Lata Mangeshkar has said that she would love to sing for late actress Sridevi and producer Boney Kapoor's daughter Janhvi Kapoor, who recently made her acting debut with 'Dhadak'.
Summary:
However, India will play against the last-placed team on September 18, which will be decided by qualifiers between UAE, Singapore, Oman, Nepal, Malaysia and Hong Kong.
Summary:
A passenger who travelled on Air India's Newark-Mumbai flight last week has tweeted pictures of bed bug bites she allegedly got on the plane.
Summary:
A Gujarat court on Wednesday sentenced Patidar leader Hardik Patel to two years in jail in connection with the vandalism of BJP legislator Rushikesh Patel's office in Visnagar during 2015 Patidar reservation protests.
Summary:
Sharing an Amul poster on Rafale deal, Congress President Rahul Gandhi has tweeted, "India has had 4 "RAFALE Mantris".
Summary:
A lawyer in Chandigarh allegedly gave his wife â¹24,600 in the form of â¹1 and â¹2 coins and four â¹100 notes as part of her â¹25,000 monthly maintenance in a divorce case.
Summary:
An autopsy revealed that the woman died due to "a partial rupture of liver leading to internal bleeding".
Summary:
The Centre has asked states to appoint nodal officers of the Superintendent of Police rank in each district to monitor social media content to curb incidents of mob violence.
Summary:
Telangana Police jailed a groom and eight others for obscenity and not taking prior permission to host a belly dancing event at a wedding reception.
Summary:
Delhi Commission for Women (DCW) chief Swati Maliwal has said "My next target is to ensure no prostitution in Delhi" after CM Arvind Kejriwal extended her term.
Summary:
The Speaker of the Iranian Parliament Ali Larijani has said US President Donald Trump's recent threats against the country are the "words of a troublemaker" pursuing "ignorant diplomacy".
Summary:
The Pakistan Electronic Media Regulatory Authority has directed private satellite TV channels to stop airing any content related to the general elections being held today.
Summary:
Revealing that he built his physique for 'Race 3' in four months, Bobby Deol said, "Had I trained well in my 20s, I'd...have had the best physique in Bollywood." "I sense that people look at me differently [now]," he added.
Summary:
Researchers at MIT have created self-powered robots the size of human egg cells that can sense the environment, store data, and carry out computational tasks.
Summary:
The interface will help users understand that all HTTP sites are not secure, and will put pressure on sites to support HTTPS.
Summary:
Talking about AIADMK's support to the Centre in the no-confidence motion, Tamil Nadu CM Edappadi Palaniswami said that the party's goal is to have a "cordial" relationship with the Centre.
Summary:
The findings could explain why the loss of ability to smell is an early symptom of Alzheimer's disease.
Summary:
The Maratha Kranti Morcha has said that it is carrying out a peaceful protest in Maharashtra for reservations for the community and are not blocking any roads.
Summary:
The Delhi Commission for Women (DCW) on Tuesday rescued 16 girls in Munirka, who were reportedly being trafficked from Nepal to Iraq and Kuwait.
Summary:
Telangana Irrigation Minister T Harish Rao on Tuesday said that if Andhra Pradesh is granted Special Category Status, then Telangana should too.
Summary:
Jayalalithaa was an animal lover, who had taken measures for basic infrastructure in the zoo, the CM said.
Summary:
Pompeo's remarks come despite China's growing influence in the region.
Summary:
The singer had earlier spoken out publicly about her addiction to alcohol, cocaine and opioids.
Summary:
Producer Boney Kapoor, while speaking about the demise of his first wife Mona Shourie in 2012 and Sridevi's demise in February this year, said, "Today, I am prepared for anything." "My shock absorbers are strong, physically and emotionally...I have my moments when I am down and low.
Summary:
Nearly 50 workers were seen holding placards and banners with pictures of party President Rahul Gandhi hugging PM Narendra Modi and slogans reading, "remove hatred, save country".
Summary:
However, 17 babies developed lung problems, with 10-15 women yet to know if their child has been affected.
Summary:
In 2003, Mars was the closest in nearly 60,000 years, at 55.7 million km, which won't be repeated until the year 2287.
Summary:
The personnel are eligible for the scheme if they had Delhi as their permanent residence at the time of joining.
Summary:
US President Donald Trump on Tuesday said that he is ready to make a "real deal" on Iran's nuclear program.
Summary:
US President Donald Trump's daughter Ivanka on Tuesday said she was shutting her fashion line to focus on her role as a White House advisor.
Summary:
Mayor Andre Marchand issued the decree after residents complained of being swarmed by mosquitoes following severe flooding last month.
Summary:
Free-to-play battle royale game Fortnite has made 47-year-old developer Tim Sweeney, the Founder and CEO of the company behind the game, a billionaire.
Summary:
Liquor baron Vijay Mallya has reportedly informed the Enforcement Directorate (ED) of his "willingness to return" to India.
Summary:
The ships were reportedly constructed off the coast of the European country Malta.
Summary:
Kylian Mbappé has revealed that he had displaced three vertebrae in his back three days before 2018 champions France defeated Belgium in the World Cup semifinals.
Summary:
The satellite will then be taken up to the International Space Station and released by astronauts.
Summary:
Google's Translate app translates 143 billion words a day, CEO Sundar Pichai revealed during the company's recent earnings call.
Summary:
Twitter has not revealed if similar measures are employed for other public figures' accounts.
Summary:
Asked if he would support TMC chief Mamata Banerjee or BSP chief Mayawati as the PM face in the upcoming elections, Congress President Rahul Gandhi said he would support anyone who will defeat BJP and RSS.
Summary:
Congress is raking up a "fake controversy" about the Rafale fighter jet deal because "many in the Congress realise that 2019 is not their election," Union Minister Arun Jaitley has said.
Summary:
Responding to reports claiming Tesla asked suppliers for refunds, the startup has said, "We asked fewer than 10 suppliers for a reduction in total capex project spend for long-term projects." Tesla also said it was negotiating with suppliers to reach a "more sustainable long-term cost basis".
Summary:
Founded in 2010, Pinterest offers a platform for users to get ideas for recipes, travel, products and 'pin' things they like.
Summary:
Karnataka Congress President Dinesh Gundu Rao has issued a show cause notice to former Assembly speaker KB Koliwad after he claimed certain Congress MLAs were the reason CM HD Kumaraswamy broke down in tears.
Summary:
In an interview with Shiv Sena mouthpiece Saamana, party chief Uddhav Thackeray said, "I'm not fighting for the dreams of Modi.
I'm fighting for the dreams of common people.
Summary:
A 7-year-old girl's stepmother allegedly branded her with a hot spatula on her stomach, thighs and private parts for wetting the bed in Kerala's Kollam.
Summary:
The police said she was allegedly in touch with another local youth and this might have made the accused jealous.
Summary:
Turkish President Recep Tayyip ErdoÃÂan has called Israel the world's "most fascist, racist state", referring to a bill passed by the Israeli parliament that defines the country as an exclusively Jewish state.
Summary:
Banga also said the "cost of production in India is much higher than the cost of production elsewhere".
Summary:
The government is planning to use LIC for funding some of the infrastructure projects, including power and highway projects, according to reports.
Summary:
Italian sports car manufacturer Pagani's Zonda HP Barchetta was sold for over â¹121 crore, making it the world's most expensive new car ever sold.
Summary:
According to estimates, a 7-billion-strong population would need five Earths to sustain if all live like an average US citizen.
Summary:
Submitting old video clips of late Tamil Nadu CM J Jayalalithaa, the state government told the Madras High Court that she was never pregnant in her lifetime.
Summary:
Two-time winner Cristiano Ronaldo and two-time runner-up Lionel Messi have been nominated for the 2018 edition of The Best FIFA Men's Player award.
Summary:
India and Pakistan have faced each other twice on September 19, with Pakistan winning both the ODIs.
Summary:
Colin Cowdrey walked out to bat with his broken arm in plaster against Windies in 1963 to help England draw a Test.
Summary:
A tantrik had told Congress President Rahul Gandhi to touch the Prime Minister's chair in the Lok Sabha and that's why Rahul hugged PM Narendra Modi, Delhi BJP spokesperson Tajinder Pal Singh Bagga said.
Summary:
Congress has submitted a notice to move a privilege motion in Lok Sabha against PM Narendra Modi and Defence Minister Nirmala Sitharaman "for making misleading statements" on Rafale deal during no-confidence motion debate.
Summary:
At least nine people, including eight children, were hospitalised on Tuesday after they consumed the midday meal at an Anganwadi centre in Delhi's Dwarka.
Summary:
Karnataka Chief Minister HD Kumaraswamy has reportedly issued an order banning the entry of media personnel inside the state assembly building.
Summary:
All 115 Kailash Mansarovar Yatris who were stranded in Uttarakhand's Gunji village have been rescued and safely brought to Pithoragarh, Union External Affairs Minister Sushma Swaraj announced on Tuesday.
Summary:
The firm has been ordered to stop production and authorities have recalled unused vaccines produced by the company.
Summary:
Summary:
Janhvi Kapoor, while talking about her father Boney Kapoor's reaction after watching her debut film 'Dhadak', said, "That night he came to my room and held me tight and started crying." While talking about her sister Khushi Kapoor's reaction, she added, "Khushi was crying...
Summary:
Actor Vicky Kaushal has shared a picture on social media from his film 'Masaan' as the movie completed three years since its release on July 24, 2015.
Summary:
President Ram Nath Kovind on Tuesday attended a special screening of 'Chalo Jeete Hain', a film inspired by the early life of Prime Minister Narendra Modi.
Summary:
Abhishek Bachchan, Taapsee Pannu and Vicky Kaushal starrer 'Manmarziyaan' will have its world premiere at the Toronto International Film Festival (TIFF) this year.
Summary:
New Zealand rugby player Kurt Baker stripped off to celebrate his team's Rugby World Cup Sevens final victory against England.
The 29-year-old posed naked in a team photo while sitting on the shoulders of a teammate.
Summary:
The Centre earlier offered a special package to Andhra Pradesh in place of special status.
Summary:
He further slammed BJP for "duping" people who voted for the party.
Summary:
Stating that lynchings can't be stopped, he added that a law should be formulated to punish people for slaughtering cows.
Summary:
The girl was sleeping next to her grandmother outside their home when the accused dragged her to a nearby ground and raped her.
Summary:
A 15-year-old girl was allegedly raped for over two months by her stepfather in Bhopal after her mother died.
Summary:
This was the first high-level visit by a Chinese politician to Bhutan since the Doklam standoff between India and China last year.
Summary:
It was the ninth Ebola outbreak since the discovery of the virus in Congo in 1976.
Summary:
During the same period, the three stocks added â¹4.66 lakh crore to their value.
Summary:
Mahindra & Mahindra Managing Director Pawan Goenka's remuneration overtook that of Chairman Anand Mahindra last fiscal.
Summary:
The RBI has said that e-commerce majors like Flipkart and Amazon are "not authorised" to collect money from customers on behalf of third-party vendors in cash-on-delivery (CoD) deals.
Summary:
Texas-based Saltgrass Steak House has clarified that its waiter Khalil Cavil had faked the viral image of a receipt on which a customer allegedly wrote 'we don't tip terrorist'.
Summary:
Anil Kapoor has revealed that he started his career as a background dancer in 1979-80.
Anil further revealed he used to get ã15 for a show at that time.
Summary:
Rajasthan Royals' wicketkeeper-batsman Sanju Samson has been picked in India A squad for the upcoming quadrangular series after passing the Yo-Yo test.
Summary:
Lancashire captain Liam Livingstone wore a shin pad on left hand to protect his broken thumb while batting at number 11 in the second innings against Yorkshire in County Championship today.
Summary:
However, the building's managers, Guizhou Ludiya Property Management, have clarified the waterfall will be run only on special occasions and use recycled water.
Summary:
The body of a freelance journalist working with a Malayalam news channel was found in a canal near Kerala's Vaikom on Tuesday after a boat carrying him capsized in the canal.
Summary:
Earlier, Interpol reportedly informed Indian government that Choksi wasn't in the US.
Summary:
Medical reports confirm that 29 out of 44 girls of a shelter home in Bihar's Muzaffarpur were raped, Director General of Police KS Dwivedi said on Tuesday.
Summary:
Aakansha Pande, a 37-year-old Indian-origin senior economist working with World Bank, drowned while she was swimming in a restricted area at a beach in Bali.
Summary:
A fake message being circulated on WhatsApp claims that Prime Minister Narendra Modi will distribute free bicycles to students on August 15 this year.
Summary:
China has banned students in Tibet from taking part in religious activities over the summer vacation, the Chinese state media reported.
Summary:
Analysis of the images by the monitoring group '38 North' revealed North Korea also began dismantling a site used to assemble space launch vehicles.
Summary:
The release date of Amitabh Bachchan and Taapsee Pannu starrer 'Badla' has been announced as March 8, 2019.
Summary:
He had earlier played Sunny Deol's son in his father Anil Sharma's directorial 'Gadar: Ek Prem Katha'.
Directed by Anil, 'Genius' is scheduled to release on August 24.
Summary:
Summary:
India's only warm-up match, scheduled to take place from July 25-28, ahead of Test series against England, has been reduced to a three-day affair over ground condition.
Summary:
Karnataka CM HD Kumaraswamy on Tuesday said that JD(S) has an agenda to forge a pre-poll alliance with Congress for the 2019 Lok Sabha elections.
Summary:
Addressing a press conference on Tuesday, Bahujan Samaj Party chief Mayawati said BSP is open to an alliance with Congress only if it is offered a respectable number of seats.
Summary:
New Delhi-based Corner Store Technologies, which runs subscription-based online pharmacy startup LifCare, has raised $11 million in a Series B funding round.
Summary:
PM Modi is the first Indian PM to visit Rwanda.
Summary:
Congress leader Pratapsingh Rane on Tuesday said Goa will become 'Udta Goa' if the drug trade in the state is not checked.
Summary:
The accused visited her house when her father was in an inebriated state and her mother was in the washroom.
Summary:
The heatwave in Japan has claimed the lives of more than 65 people in one week, with the temperature reaching a record 41.1ðC in the city of Kumagaya.
Summary:
Defence industry had attracted $0.82 million, $0.08 million and $0.10 million foreign inflows in FY14, FY15 and FY16 respectively.
Summary:
India's largest airline IndiGo has revised the number of snags it faced last year to 14,628, a 43 times jump from the 340 it had reported in December.
Summary:
The stage 16 of the annual bicycle race, Tour de France, was brought to a temporary halt after the path of the riders was obstructed by hay bales thrown by protesting farmers.
Summary:
The family of Anissia Batra, the 39-year-old Delhi-based air hostess who allegedly committed suicide, released photos to the police to prove she was regularly assaulted by her husband, Mayank Singhvi.
Summary:
Italy-based award-winning photographer Alessio Mamo has been slammed for posting pictures of underprivileged children with fake food in his series on hunger in India.
Summary:
Talking about the 3-hour delay in getting the victim to the hospital, Kataria said, "They wasted time in sending the cows to cow-shed".
Summary:
Summary:
Pakistani actress Saba Qamar, who starred opposite Irrfan Khan in 'Hindi Medium', has been trolled by social media users over a picture which shows her with a cigarette in her hand.
Summary:
The producer of Kangana Ranaut's 'Manikarnika: The Queen of Jhansi', which is scheduled to release on the same date as Hrithik Roshan's 'Super 30', has said the clash between the two films isn't deliberate.
Summary:
The Supreme Court on Tuesday slammed the Centre's affidavit on the appointment of Lokpal, saying that it was "unsatisfied" with it and didn't accept it.
Summary:
The CBI will launch a probe into the alleged rape of over 40 minor girls in a Bihar shelter home only if the state sends a formal request, Union Home Minister Rajnath Singh said.
Summary:
If a building fails to meet our criteria, we seal it," a GDA official said.
Summary:
Idea Cellular and Vodafone India have made a joint payment of â¹ 7,248.78 crore "under protest" to the Department of Telecommunications for merger of their mobile business.
Summary:
Summary:
Speaking about her breakup with 'Home Alone' actor Macaulay Culkin, Mila Kunis said, "It was a horrible...breakup.
Summary:
Janhvi Kapoor, while talking about her late mother and actress Sridevi, said that acting was instinctive and like breathing for her mother.
Summary:
Former Team India captain Sourav Ganguly has said that the Indian team can't let off-spinner Ravichandran Ashwin fade away so quickly.
He will reinvent himself because he feels challenged, he knows Kuldeep is up for his Test spot," Ganguly further said.
Summary:
Messi donned the number 19 jersey for Barcelona before switching to the number 10 jersey.
Summary:
The clip showed Harmon's character breaking into a family home and simulating rape on a baby doll.
Summary:
Google has partnered US-based blockchain startup Digital Asset, its second blockchain partnership within a week to boost its cloud services.
Summary:
Alphabet's revenues for the second quarter jumped 26% to $32.7 billion.
Summary:
Accusing Prime Minister Narendra Modi of focusing on other countries instead of India's development, Shiv Sena chief Uddhav Thackeray claimed Indian citizens were "cheated" after they voted BJP to power.
Summary:
Edtech startup Byju's has acquired Bengaluru-based math learning startup Math Adventures in its fourth acquisition for an undisclosed amount.
Summary:
It suggests the Moon's surface was blasted by the same meteorites that brought life forms to the Earth.
Summary:
The statement came after opposition parties, including the Congress and BSP, slammed the government over the Alwar lynching case.
Summary:
The passenger, who hails from Punjab, had claimed passengers should not untie their seat belts since the flight had been hijacked.
Summary:
Vice President Venkaiah Naidu on Monday urged the Reserve Bank of India to reveal if it had received black money following demonetisation in 2016 to prove the credibility of the reform.
Summary:
Replying to a question in the Lok Sabha, MoS for Home Affairs Hansraj Ahir on Tuesday said the former residence of Pakistan's founding father Muhammad Ali Jinnah in Mumbai is not classified as 'Enemy Property'.
Summary:
Pakistan has deployed more than 3.7 lakh troops at 85,000 polling stations across the country to oversee the general elections scheduled to be held on Wednesday.
Summary:
However, Bitcoin still remains almost 60% down from its peak of almost $20,000 in December last year.
Summary:
While Kumar claimed that 26 of the 30 selected got into IITs, students said only 3 got in.
Summary:
London-headquartered startup Kano has teamed up with 'Harry Potter' franchise for a coding app that can help teach basic coding skills with a wand.
Summary:
The 11 boys of a football team rescued from the cave in Thailand will become Buddhist novices.
Summary:
Rahul Dravid has said he favours his innings of 81 against West Indies at Jamaica in 2006 over his 233 against Australia in 2003 and 180 against the same opposition at Kolkata in 2001.
Summary:
Summary:
US-based e-commerce giant eBay, on the other hand, is expected to re-launch in India independently of Flipkart.
Summary:
After an MP raised the issue of monkey menace in Delhi, Rajya Sabha Chairman Venkaiah Naidu said even his official Vice President's residence is facing the problem.
Summary:
After the robbery, the assailants pulled the chain and jumped off the train.
Summary:
In its first draft of a vision document for preservation and protection of Taj Mahal, Uttar Pradesh government suggested the Supreme Court that the monument precinct should be declared a no-plastic zone.
Summary:
Calling attempts by the US to force its allies to join anti-Iran sanctions "irritating", Germany's Federal Foreign Office has said India should ignore US pressure and continue buying crude oil from Iran.
Summary:
Cuba has started providing internet on the mobile phones of select users as it aims to roll out the service nationwide by year-end.
Summary:
US Ambassador to the UN Nikki Haley has said the country will never trust Russia or its President Vladimir Putin.
That's...a fact," Haley added.
Summary:
Singer Jubin Nautiyal, who was recently accused of molesting a woman and thrashing her friend, has said people knew he was falsely accused.
The girl who had accused Jubin has reportedly apologised to him.
Summary:
Leyton Orient, an English fifth-division football club, has asked its fans to walk their male dogs outside the club's stadium due to the recent increase in fox sightings near the stadium.
Summary:
Australian all-rounder Glenn Maxwell has said he's "hurt" over allegations of spot-fixing during the 2017 Ranchi Test in an investigative documentary.
Summary:
Out of the 275 samples sent by BCCI, Indian batsman, Yusuf Pathan was the only Indian cricketer who registered a failed dope test in the past year, World Anti-Doping Agency's report said.
Summary:
Batsman Ambati Rayudu has failed to make it to any of the six different squads named by BCCI for Duleep Trophy and India A, B matches after reportedly skipping the Yo-Yo test.
Summary:
Russia is reportedly considering a new law that would allow the government to fine social networks for "inaccurate" posts.
Summary:
Technology major Samsung accidentally leaked its upcoming Galaxy Watch on its own retail website in the US.
Summary:
Uber drivers in Miami have been accused of falsely charging riders a cleaning fee ranging from $80 to $150 for vomiting in the car.
The riders claimed the drivers submit fake photos of vomit in their car to Uber, to add a cleanup charge to the bill.
Summary:
RSS leader Indresh Kumar on Monday said that "many crimes of the Satan" can be stopped if people don't consume cow meat.
Summary:
A Muslim man was beaten up by a group of people at the Ghaziabad court for trying to register his marriage to a Hindu woman, reports said.
Summary:
The doctors will not be attending any classes and have also vacated their hostel rooms, state Junior Doctors Association President Sachet Saxena said.
Summary:
The agitation demanding reservation for the Maratha community in government jobs and educational institutes in Maharashtra turned violent on Tuesday as protesters set ablaze a truck in Aurangabad.
Summary:
Days after a man was lynched on suspicion of cow smuggling in Rajasthan's Alwar, state minister Jaswant Yadav on Tuesday appealed to the Muslim community to understand Hindu sentiments and to stop smuggling cows.
Summary:
Nike is raising the salaries of about 7,400 employees or 10% of its global workforce following an internal review of its pay structure.
Summary:
Mahindra Group Managing Director Pawan Goenka's remuneration rose 65.22% to â¹12.21 crore last fiscal, according to the company's annual report.
Summary:
Huma Qureshi has denied reports that a DTH brand dropped her and her brother Saqib Saleem as they quoted a very high price.
No one approached us yaaa...kaun sa brand hai ye @Saqibsaleem??
Summary:
You just seem too...normal to be doing this job." Rumours of Hailey's pregnancy surfaced after Justin wrote 'I promise to lead our family with honor' in his post confirming their engagement.
Summary:
Their opponents Bexley CC chased down the target in just 12 minutes without conceding any wickets.
Summary:
Gurugram-based hotel chain OYO may become India's next unicorn as Chinese Internet company Tencent is reportedly planning to invest $300-$500 million at a valuation of over $2 billion.
Summary:
Khan and his friend were attacked by a mob last week on suspicion of being cow smugglers.
Summary:
The girl can be seen requesting the accused to not shoot the video while being dragged by them.
Summary:
Summary:
At least four people died and several were injured on Tuesday after they fell off a crowded local train in Chennai on being hit by a wall or iron poles beside railway tracks.
Summary:
Citing a NITI Aayog study conducted on water management in the country, MoS for Drinking Water and Sanitation Ramesh Chandappa Jigajinagi said as many as 60 crore people face high to extreme water stress.
Summary:
The Greek government has declared a state of emergency after wildfires killed at least 50 people and injured over 150 others.
Summary:
US President Donald Trump is considering revoking the security clearances of officials who have been critical of his presidency.
Summary:
Indian-Americans Bharat Desai and wife Neerja Sethi have sold their IT services company Syntel to France's Atos for $3.4 billion.
Summary:
Inflation in Venezuela could top 1,000,000% by the end of the year as the country faces its worst economic crisis, the International Monetary Fund has said.
Summary:
Saif Ali Khan, while talking about his daughter Sara Ali Khan who is set to make her Bollywood debut this year, said that he is not nervous about her anymore.
Saif had earlier said that he was worried how Sara will deal with failure.
Summary:
A video showing then seven-year-old Novak Djokovic saying that he aims to be the world number one tennis player in the future has surfaced online.
Summary:
New Zealand are now the current world champions in four Rugby World Cup disciplines, namely the Men's Rugby Sevens, Men's Rugby 15s, Women's Rugby Sevens, and Women's Rugby 15s.
Summary:
Notably, Dravid once declared the innings in 2004 when Sachin was batting on 194.
Summary:
Afghanistan's 19-year-old player Rashid Khan will feature in the T10 cricket league alongside the likes of former New Zealand captain Brendon McCullum and former Pakistan skipper Shahid Afridi.
Summary:
The feature is currently in testing with 1% of YouTube users on iOS app.
Summary:
During the monsoon session in Rajya Sabha, Congress MP Anand Sharma accused the NDA government of misusing central agencies for "targetted political vendetta", adding that it was leading to an "atmosphere of distrust and fear".
Summary:
The suits claim that the startup deceptively marketed the product as safe when it contains more potent doses of nicotine than cigarettes.
Summary:
A speeding Jaguar car, whose driver was reportedly drunk, injured several people and rammed into around ten vehicles on Monday in Mumbai.
Summary:
Toxic foam from the Bellandur lake in Bengaluru has now reached the Lakshmi Sagara lake in Kolar.
Summary:
A 27-year-old man died on Monday after jumping into the Godavari river as part of a 'Jal samadhi' agitation for reservation quota for the Maratha community.
Summary:
The Centre on Monday confirmed that, according to a study by the Central Ground Water Board, the groundwater in the SIPCOT area of Tamil Nadu's Tuticorin where the Sterlite copper plant is located is polluted.
Summary:
Congress President Rahul Gandhi on Tuesday wrote to CBSE seeking a probe into the alleged leak of personal data of NEET 2018 candidates.
Summary:
Sheena Bora's brother Mikhail on Monday testified in her murder case in a Mumbai court, alleging he was tortured at a mental hospital for a month at the behest of their mother Indrani.
Summary:
Model-actor Milind Soman, on being asked about the age gap of 26 years between him and his wife Ankita Konwar, replied, "It doesn't matter to us.
Summary:
The upcoming eleventh season of Coke Studio Pakistan will be featuring two transgender singers as revealed by its promo, released on Monday.
It shows two transgender singers singing the lines 'Khalq-e-Khuda...
Summary:
Using tiny 2-D materials, researchers have built microscopic chemical sensors that can be sprayed as aerosols.
Summary:
Google's parent company Alphabet posted a 26% increase in year-over-year quarterly revenue at $32.7 billion.
Summary:
Google parent Alphabet ended 2018's second quarter with cash reserves of $102 billion and saw its employee headcount rise to 89,000 from 75,000 a year ago, the company revealed.
Summary:
August 1 will mark the day humanity's annual demand for natural resources will exceed what the planet can provide for the year, a date that arrived two days sooner than last year, according to the Global Footprint Network.
Summary:
After his visit to Hathras on Monday, Yogi Adityanath became the first Uttar Pradesh CM to visit all the 75 districts in the state in 16 months of his government's rule.
Summary:
PM Modi, who is the first Indian Prime Minister to visit the country, also announced that the first Indian diplomatic mission would be opened there.
Summary:
A mob thrashed four women and stripped two of them on Monday after they suspected them to be child lifters in West Bengal's Daukimari village.
Summary:
The police have arrested self-styled godman Asif Noori in Maharashtra after videos of him forcing male devotees into unnatural sex with each other circulated online.
Summary:
After being released at Attari-Wagah border, a 16-year-old Pakistani prisoner in India said, "I don't want to go back.
India is good.
Summary:
Iranian Foreign Minister Javad Zarif on Monday slammed threats made by US President Donald Trump, warning him to "be cautious".
Summary:
Vowing to continue his war on drugs, Philippine President Rodrigo Duterte on Monday said the fight would be "as relentless and chilling as on the day it began".
Summary:
Summary:
Actor Shahid Kapoor is set to get his wax statue at the Madame Tussauds museum.
Summary:
The Secretary-General of Cycling Federation of India has written to the Switzerland Embassy after the embassy denied visas to members of the Indian cycling team, who are set to participate in the World Junior Cycling Championships.
Summary:
Lochte's ban has been backdated to May when he received the treatment.
Summary:
The AI uses a data-driven model to detect damaged area of the remote and dangerous section of the Wall.
Summary:
Google spinoff Waymo's CEO John Krafcik has revealed that the self-driving startup's fleet now covers 25,000 miles (40,300 km) a day.
Summary:
Around 52% of Indian respondents reported a data breach last year, way above the global average of around 36%, according to the report.
Summary:
The supercomputer would take snapshots of all trillion particles and rewind through their trajectories to locate them.
Summary:
Goa BJP leader Dattaprasad Naik has called Congress President Rahul Gandhi a "loafer" for winking at fellow MPs after his hug with PM Narendra Modi in the Parliament.
Summary:
In the video, Gerst is seen greeting the band and their audience from his workplace at the International Space Station (ISS).
Summary:
The government further added that offices under its own administrative control have been asked to eliminate single-use plastic.
Summary:
An 18-year-old student in Haryana's Jind was stabbed to death on Saturday during a fight between two groups of school students over talking to a girl.
Summary:
During interrogation, Saw confessed that he would act a middleman for Maoists for either collecting levy or supplying arms and ammunition.
Summary:
Democratic candidate Willie Wilson, who is running for mayor of Chicago, US, was seen handing out hundreds of thousands of dollars in cash to potential voters in a church last week, allegedly to "help them pay property taxes".
Summary:
A fake news of WhatsApp introducing a third blue tick for chats being read by the government is doing rounds online.
Summary:
A plaque inscribed, "Here men from the planet Earth first set foot upon the Moon," is also there.
Summary:
Responding to his rumoured ex-girlfriend Nora Fatehi saying 'Who is Angad?' on being asked to comment on his wedding with Neha Dhupia, Angad Bedi said, "I'm nobody to comment on...what [others] feel." "All I want to look forward to is a good future in cinema," he added.
Summary:
Portugal's 33-year-old forward Cristiano Ronaldo's medical for his new club Juventus has revealed that his fitness is similar to a 20-year-old's.
Summary:
Dhoni had paid â¹10.93 crore as tax in 2016-17 but he was not the highest taxpayer in that fiscal, an official said.
Summary:
Qualcomm on Monday unveiled the new QTM052 mmWave antenna module that will enable 5G networking spectrum to work with mobile phones.
Summary:
Andhra Pradesh Deputy CM KE Krishnamurthy has claimed that he will quit politics if the BJP wins even a single seat in Andhra Pradesh in the 2019 elections.
Summary:
Scientists have discovered that our galaxy, Milky Way, once had a massive sibling galaxy that was shredded by our neighbour galaxy, Andromeda.
Summary:
On Aadhaar being used as state surveillance, Nilekani said, "It is an over-inflated fear.
Summary:
Attorney General KK Venugopal said the live-streaming can be undertaken for around three months to understand how it functions technologically.
Summary:
After police booked a woman with no prior criminal records under Goondas Act in Tamil Nadu's Theni, the Madras High Court asked if it had to meet "Goondas targets".
Summary:
Narendra Modi on Monday arrived in Rwanda, becoming the first Indian Prime Minister to visit the east African country.
Summary:
Justice Tahira Safdar was on Monday nominated as the first woman chief justice of a Pakistani high court.
Summary:
Oil imports from Iran were only second to Iraq.
Summary:
Summary:
"Gender bias is universal, something that is there in every industry," she added.
I have not felt the bias," she further said.
Summary:
Television actor Saumya Tandon, who plays the role of Anita Vibhuti Narayan in the TV show 'Bhabiji Ghar Par Hai!', has denied the reports that stated she is quitting from the show.
Summary:
WWE wrestler Braun Strowman met an astrologer who read his palm during his visit to India.
Summary:
Maruti Suzuki has crossed production of 20 million vehicles in India at its Gurugram and Manesar facilities, becoming the first carmaker in the country to cross the milestone.
Summary:
Two more suspects have been arrested by a Special Investigation Team (SIT) in connection with the Gauri Lankesh murder case.
Summary:
Villagers later spotted the car floating in the dam and informed the police.
Summary:
The ministry said the disclosure of reports, which were prepared on the basis of studies commissioned by the UPA government in 2011, would cause a breach of privilege of Parliament.
Summary:
A 10-year-old girl in Hyderabad was allegedly made to run 60 laps around the school ground as punishment for not doing her homework.
Summary:
The Kalyani University in West Bengal has cancelled the appointment of an assistant professor two days after he joined work, claiming that he was appointed because of an "inadvertent mistake".
Summary:
RJD leader Tejashwi Yadav on Monday said the amendment to the liquor ban law in Bihar is a "discount for the rich".
Summary:
Summary:
Jeff Bezos-led Amazon's shares fell as much as 2.4% on Monday after US President Donald Trump tweeted against the company, saying the US Postal Service is its "delivery boy".
Summary:
After being suspended over the delay in taking the Alwar mob lynching victim to the hospital, Assistant Sub-Inspector Mohan Singh admitted to the mistake and said, "Now punish me.
Summary:
This comes after the Supreme Court asked the Parliament to come up with a law on lynchings.
Summary:
Singer R Kelly, in his new 19-minute long song 'I Admit', denied allegations that he ran a "sex cult", where he imprisoned and sexually abused young women.
Summary:
Summary:
The 27-year-old's suspension is scheduled to end on September 14, while the tournament will be held between August 17 and September 8.
Summary:
The smartphone is also expected to have dual cameras on the top left on its rear.
Summary:
It was most recently valued at $7 billion following an investment last year.
Summary:
The man took the step after the woman refused to marry him.
Summary:
A video showing a nun in Kerala's Sholayar blocking the state Forest Minister K Raju's car to complain about the elephant menace faced by her convent has gone viral on social media.
Summary:
Transporter associations have pegged the nationwide loss due to the truckers' strike at â¹10,000 crore on Sunday.
Summary:
Krishna received a standing ovation with other two contestants while performing in second round.
Summary:
Salman Khan danced on 'Joote De Do Paise Le Lo' song at Praful Patel's daughter Poorna Patel's wedding with industrialist Namit Soni.
Summary:
Reacting to reports of Hina Khan playing Komolika in Ekta Kapoor's upcoming production 'Kasautii Zindagii Kay', Shilpa Shinde said, "Wasn't she the Komolika of Bigg Boss 11 already?" "Well, she's a good actress and playing a negative role shouldn't be difficult for her.
Summary:
Indian leg-spinner Yuzvendra Chahal, who is celebrating his 28th birthday today, is the only person to represent India in both chess and cricket.
Summary:
Indian tennis player Sania Mirza has said German midfielder Mesut ÃÂzil's statement in which he declared his international retirement is the "saddest thing to read".
Summary:
Mesut ÃÂzil, who retired from German national football team citing "racism", revealed a German fan called him "Turkish pig" during the recently-concluded World Cup.
Summary:
Reacting to Mesut ÃÂzil's retirement from German national football team, Bayern Munich's President Uli Hoeness said that he is glad that the nightmare is over.
Summary:
New Zealand performed the traditional haka dance after winning the Rugby World Cup Sevens 2018 on Sunday.
Summary:
American golfer Tiger Woods gave a signed glove to a fan who got hit by his errant shot at the recently-concluded British Open.
Summary:
Twitter has revealed that over 10 lakh tweets were recorded during the no-confidence motion debate against PM Narendra Modi's government.
Summary:
Google-owned video-sharing platform YouTube's CEO Susan Wojcicki has revealed that users watch over 180 million hours of YouTube on TV screens every day.
Summary:
Claiming Congress President Rahul Gandhi is taking up the cause of the people, Congress leader Mallikarjun Kharge said, "He has become aggressive because there is anger." Meanwhile, on the issue of Rahul hugging PM Narendra Modi in Lok Sabha, Kharge said, "After criticising so much, going and wishing the PM is a good thing.
Summary:
The RJD on Monday expelled its National Spokesperson Shankar Charan Tripathi for slamming Congress President Rahul Gandhi after he hugged PM Narendra Modi and winked at a colleague during the no-confidence debate in the Lok Sabha.
Summary:
Summary:
A 4-year-old girl was allegedly raped by the 70-year-old owner of a shop near her house in Motihari, Bihar.
Summary:
US retail giant Walmart will open 20 wholesale cash-and-carry stores in India within the next three years, Walmart India President and CEO Krish Iyer has said.
Summary:
The mastermind of 26/11 Mumbai attacks, David Headley, is critical after being attacked at a US jail on July 8 while serving a 35-year jail term.
Summary:
A 21-year-old default admin of a WhatsApp group is jailed for the last five months in Madhya Pradesh after people filed a complaint against a group member for posting an anti-national message.
Summary:
First 100 customers at the store will get free OnePlus 6 x Marvel Avengers Iron Man Case and free OnePlus branded t-shirts.
Summary:
Cow vigilantes had attacked Aslam and Rakbar, who bled to death on the way to the hospital.
Summary:
Summary:
Rishi Kapoor has said it is high time that his son Ranbir Kapoor, who is currently dating Alia Bhatt, got married while adding, "He can marry anyone of his choice." Rishi added he had settled down when he was 27 while Ranbir is 35 now.
Summary:
Actress Deepika Padukone is set to get a wax statue at Madame Tussauds in London.
She further said the only time she visited Madame Tussauds was in London when she was very little.
Summary:
Gandhi claimed, "humanity is replaced with hatred and people are crushed and left to die".
Summary:
Vijay Shekhar Sharma-led digital payments app Paytm, which launched its services in Canada last year, is now set to launch its services in Japan.
Summary:
Police stopped digging the compound of a government-run shelter home in Bihar's Muzaffarpur after it failed to find the body of a girl who was allegedly buried after being killed over a disagreement with the staff.
Summary:
A significant benefit can be achieved if GST on raw materials is also slashed, a manufacturer said.
Summary:
TV actress Hina Khan said she doesn't remember anything about Bigg Boss and the show "Yeh Rishta Kya Kehlata Hai", which she did for eight years.
I don't remember anything," she added.
Summary:
Karwaan's dialogue writer Hussain Dalal has said that Irrfan Khan and his family seemed pretty pleased after watching the film at a special screening which was organised for him at London.
Irrfan is currently undergoing treatment for Neuroendocrine Tumour in London.
Summary:
The teaser of Diana Penty starrer 'Happy Phirr Bhag Jayegi' has been released.
Summary:
The Indian team management has reportedly asked players to stay away from their wives and girlfriends till the third Test against England.
Summary:
Indian batsman Rohit Sharma took to Twitter to share a picture of himself with Indian leg-spinner Yuzvendra Chahal on the occasion of the latter's 28th birthday.
Summary:
Sri Lanka's Suranga Lakmal became the 12th Test captain in history to lead his side to a win without scoring a single run or picking a single wicket or taking a catch or stumping.
Summary:
German scientists have developed drug-filled 'nano-submarines' that can latch on to immune cells to attack tumours in the body without damaging healthy tissue.
Summary:
Online video game PlayerUnknown's Battlegrounds (PUBG) has apologised for its reference to Japan's military regime during World War II via in-game content.
Summary:
Photo-sharing app Snapchat is shutting down its digital payments service Snapcash next month on August 30 after four years of its launch.
Launched in 2014, Snapcash allowed users to send money to friends' bank accounts without leaving the app.
Summary:
Slamming BJP, Shiv Sena president Uddhav Thackeray said, "Our women are unsafe today, and you are protecting the cows." He said he did not accept the Hindutva being adhered to in India in the last three to four years.
Summary:
A woman from Uttar Pradesh's Bulandshahr has filed a petition against Nikah Halala in the Supreme Court, following which the SC tagged her petition with similar petitions.
Summary:
Kurmi said that none of the eight doctors appointed by the state government were available at the hospital during his visit.
Summary:
A group of women on Sunday sat on a JCB machine in Madhya Pradesh's Gwalior to protest against an anti-encroachment drive by the Gwalior Municipal Corporation.
Summary:
His family claimed it was impossible for a class four boy to hang himself, and lodged a murder complaint.
Summary:
Notably, Wipro's larger rival TCS won three multi-year deals worth $5.6 billion since December last year.
Summary:
India's benchmark index Sensex closed above 36,700 for the first time on Monday led by gains in FMCG and consumer durable stocks.
Summary:
Bihar Police started to dig up the compound of a government-funded shelter home in Muzaffarpur over allegations that an inmate was killed and buried by the staff in the premises.
Summary:
The sensor rivals high-performance SLR cameras, making it possible to capture high-resolution images even with a smartphone.
Summary:
Former PM Indira Gandhi faced 15 of 27 no-confidence motions moved in Lok Sabha, while Lal Bahadur Shastri and PV Narasimha Rao faced three each during their 19-month and five-year tenures respectively.
Summary:
Bengaluru-based budget hotel chain Treebo Hotels has fired between 70 to 80 of its employees which make about 10% of its total workforce of 800 employees.
Summary:
Rajya Sabha Chairman Venkaiah Naidu on Monday informed the MPs that they can submit notices for discussion and question hour through an app.
Summary:
The woman was seen in the area months prior to the incident and her images were circulated on WhatsApp along with rumours that she kidnapped children, reports said.
Summary:
The head of the Samajwadi Party's minorities panel said on Monday that husbands give triple talaq to their wives so that they don't have to murder them.
Summary:
Defence Minister Nirmala Sitharaman on Monday informed the Parliament that the Rafale deal with France is on track, adding the delivery of the 36 fighter jets will start in September 2019 and be completed by April 2022.
Summary:
The US has sold more weapons to its foreign allies in the first six months of 2018 than in the whole of 2017, according to the Defence Security Cooperation Agency (DSCA).
Summary:
The government's move to slash GST rates on over 50 goods will lower revenue by as much as â¹15,000 crore each year, according to reports.
Summary:
Actor Anupam Kher, who will portray former Prime Minister Manmohan Singh in upcoming biopic 'The Accidental Prime Minister', shared a picture which shows actors playing Sonia Gandhi and Lalu Prasad Yadav.
Summary:
Reacting to Mesut ÃÂzil's retirement from international football, Turkey's Justice Minister Abdulhamit Gül tweeted, "I congratulate Mesut ÃÂzil who by leaving (German) national team has scored the most beautiful goal against virus of fascism." ÃÂzil, who has Turkish heritage, retired citing "disrespect and racism".
Summary:
Hariharan was bowling left-arm spin to right-handed batsman but then changed his bowling arm while facing a left-handed batsman.
Summary:
Summary:
Indian cricketer Gautam Gambhir posted a video on Instagram of his elder daughter Aazeen completing the Yo-Yo test, the fitness test that is mandatory for selection into the Indian cricket team.
Summary:
Summary:
Pakistan's Hassan Ali, who pulled up a neck muscle while performing his 'bomb explosion' celebration in the second ODI against Zimbabwe, asked teammate Shadab Khan to perform it in fifth ODI.
Summary:
Alibaba has joined a $600 million funding round for Chinese AI startup Megvii along with other investors including Boyu Capital, according to reports.
Summary:
Addressing the Bihar Assembly on Monday, CM Nitish Kumar said the liquor ban was introduced in the state to help the poor people as they were wasting a major portion of their income in purchasing alcohol.
Summary:
At least five members of a family were killed after a fire broke out in a residential building in Himachal Pradesh's Mandi district on Monday.
Summary:
A nine-year-old girl was allegedly gangraped and killed along with her minor brother on Sunday in Bihar.
Summary:
Accusing Tamil Nadu CM Edappadi Palaniswami of 'Himalayan corruption', DMK Working President MK Stalin on Monday met with Governor Banwarilal Purohit seeking a CBI probe into the matter.
Summary:
Reacting to Congress President Rahul Gandhi's post on the Alwar lynching case, Railways Minister Piyush Goyal tweeted, "Stop jumping with joy every time a crime happens." Calling Gandhi a "merchant of hate", the minister added, "The state has already assured strict and prompt action.
Summary:
Maharashtra CM Devendra Fadnavis on Monday skipped the annual puja at Lord Vitthal Temple in Pandharpur and performed the rituals at his Mumbai residence after Maratha groups seeking reservation threatened to disrupt the event.
Summary:
Retired SC Judge Jasti Chelameswar, who had earlier voiced concerns regarding the administration of the SC, has urged people to raise their voices even if they are labelled "anti-national".
Summary:
Two people were killed and two others suffered injuries after a 100-year-old building collapsed in Kolkata's Sealdah on Monday night.
Summary:
The National Payments Corporation of India (NPCI) has decided to block transactions made within the same account using different UPI IDs, effective August 1.
Summary:
The Supreme Court on Monday said there cannot be any "blanket ban" on holding protests at Delhi's Jantar Mantar and Boat Club near the India Gate.
Summary:
The ad allegedly showed the characters being mistreated by bank employees.
Summary:
OnePlus, as a part of its back-to-school-sale, is offering exclusive deals to the students from July 23 to July 30.
Summary:
India-born engineer Rohit Prasad spearheaded the development of Amazon's voice assistant Alexa almost from its inception five years ago along with Amazon executive Toni Reid.
Summary:
Shiv Sena's chief Uddhav Thackeray explained his party's stand on abstaining from voting during the no-confidence motion, saying that the party is a friend of the Bharatiya Janata and not any other party.
Summary:
Earlier, the UP Police used a scene from actor Amitabh Bachchan's 'Deewaar' to warn against spreading rumours and fake news.
Summary:
The police have arrested the alleged mastermind behind the gangrape of five women NGO activists in Jharkhand.
Summary:
A Station House Officer (SHO) in Delhi has been transferred to police lines after a photo showing him getting a "healing" head massage from self-styled godwoman Namita Acharya went viral.
Summary:
A figurine of one of her trainers has been placed next to her statue.
Summary:
A senior commander of Iran's Revolutionary Guards Brigadier General Gholamhossein Gheybparvar has said threats by US President Donald Trump against the country amount to "psychological warfare".
Summary:
A passenger aircraft made an emergency landing in Moscow, Russia, after a dog opened the luggage compartment from the inside, triggering an alarm onboard.
Summary:
France's Minister of Economy and Finance Bruno Le Maire has referred to US President Donald Trump's trade policies as "the law of the jungle", saying that a trade war is now a reality.
Summary:
A video of the Toronto mass shooting suspect who killed one person and injured 13 others has surfaced online.
Summary:
HCL Technologies Founder and Chairman Shiv Nadar has made a donation of â¹1 crore to the Lord Venkateswara temple in Tirupati.
Summary:
Saif Ali Khan, while talking about his and Kareena Kapoor Khan's son Taimur Ali Khan, has said that for them as parents of Taimur, it's important to give him a lot of time.
Summary:
The MS University of Baroda in Gujarat has cancelled the booking for comedian Kunal Kamra's show after it received a letter from 11 former students complaining that his content was "anti-national".
Summary:
Sri Lankan batsman Danushka Gunathilaka has been suspended from international cricket after a Norwegian woman accused his friend of raping her in a hotel room where he was present.
Summary:
Air India apologised immediately after its officials stopped the Indian Table Tennis team, including 17 players and officials, from boarding the Delhi-Melbourne flight on Sunday.
Summary:
Formula One driver Charles Leclerc, who drives for the Sauber Formula One team, survived a 360ð spin during German Grand Prix in Hockenheim on Sunday.
Summary:
Pakistan captain Sarfraz Ahmed bowled his international career's first over in his 179th international outing in the last ODI against Zimbabwe on Sunday.
Summary:
The pod traveled 50% faster than WARR Hyperloop's winning entry in the previous SpaceX Hyperloop Pod Competition held in August 2017.
Summary:
Summary:
US-based artist Tom Edwards has reached a settlement with Elon Musk after challenging the Tesla Co-founder's use of a 'farting unicorn' motif he had drawn as a tribute to electric cars.
but everything has been cleared up," Edwards said.
Summary:
It claimed the startup is requesting back a "meaningful" portion of suppliers' payments since 2016.
Summary:
Justice Madan B Lokur, chairman of the Supreme Court Juvenile Justice Committee, has said that juvenile convicts cannot be given the death penalty for every rape or murder case.
Summary:
BJP MP Sakshi Maharaj has said those who need Sharia law should go to Pakistan, adding that people don't have a right to live in India if they don't believe in its Constitution.
Summary:
The petitioners have alleged that incidents of mob lynching and vigilantism are taking place despite a verdict by the court on the matter.
Summary:
First 100 customers at the store will get free OnePlus 6 x Marvel Avengers Iron Man Case and free OnePlus branded t-shirts.
Summary:
As he chaired his first Congress Working Committee meeting, Congress President Rahul Gandhi warned party members against making wrong statements.
Summary:
A Pune-based firm SRKay Consulting Group has claimed that its new algorithm MindMatch can predict a startup's success.
Summary:
The Alwar police reportedly stopped for tea before taking lynching victim Rakbar Khan to a hospital, after he was allegedly beaten by a mob on cow smuggling suspicion.
Summary:
They further said that the victims have been transported to hospital, adding that the young girl is in a "critical state".
Summary:
A team of doctors that visited Nawaz Sharif in jail has reportedly said in a report that the former Pakistan PM is suffering from kidney ailment.
Summary:
An inflatable balloon depicting US President Donald Trump as a chicken is due to set sail off the coast of San Francisco.
Summary:
North Korea has told South Korea to implement the agreement reached during the inter-Korean summit in April, in order to formally end the 65-year-long Korean war.
Summary:
Warning Iranian President Hassan Rouhani against threatening the US, President Donald Trump has said, "Never, ever threaten the US again or you will suffer consequences." "We are no longer a country that will stand for your demented words of violence and death," he added.
Summary:
Dangal actress Sanya Malhotra, on Sunday, took to Instagram to share her picture with actor Jackie Chan and captioned it, "Met a legend who's so humble, gracious and hospitable." "Thank you so much...for having us at Jackie Chan Action Film Festival," she further wrote.
Summary:
Actor Ranveer Singh will be starring in Karan Johar's next directorial, as per reports.
This will reportedly be Karan and Ranveer's first collaboration.
Summary:
Around 600 Indian construction workers are stranded in Qatar without pay while working on the infrastructure development for the next edition of the FIFA World Cup set to be hosted in the nation in 2022.
Summary:
Israel's seven-year-old chess champion Liel Levitan will be unable to participate in the World Chess Championship because host nation Tunisia will not allow Israelis to compete in the championship.
Summary:
Poland's Andrzej Bargiel on Sunday became the first person to ski down the world's second-highest mountain, the 8,611-metre high K2 peak.
Summary:
The action is directed by the design and shape of the fingers.
Summary:
It also climbs vertically by pressing its wheels to walls without touching the floor.
Summary:
The meeting was the first chaired by Rahul after he became Congress President.
Summary:
Goa Congress chief Girish Chodankar on Sunday said CM Manohar Parrikar once had a reputation of a "roaring tiger", but is now reduced to a cat.
Summary:
The Unemployment Insurance Appeal Board of New York has granted three Uber drivers and other "similarly situated" drivers employee status.
Summary:
Amazon India's ex-delivery boy partnered with a current employee for allegedly cheating the company and customers by collecting returned items before the authorised personnel could take it, the police have said.
Summary:
The pet dog of the family whose 11 members were found dead at their residence in Burari, passed away after suffering a heart failure at an animal shelter in Noida.
Summary:
In order to "shame authorities into action", Mumbai resident Navin Lade has nominated the city for Guinness and Limca book of records for potholes.
Summary:
Uttar Pradesh CM Yogi Adityanath on Sunday said that "nationalist thinking" is required to ensure the country's development.
Summary:
As many as 841 such cases were pending as on April 1 this year.
Summary:
He also said that GST rates on many items were gradually reduced with stabilisation of revenue.
Summary:
First 100 customers at the store will get free OnePlus 6 x Marvel Avengers Iron Man Case and free OnePlus branded t-shirts.
Summary:
Shahid Kapoor has bought a duplex flat in Mumbai's Worli, which is said to cost around â¹56 crore, as per reports.
Summary:
Responding to being called by her cousin Priyanka's name, Parineeti turned back and jokingly told Arjun to shut up.
Summary:
Germany's Mesut ÃÂzil announced his retirement from international football on Sunday over "disrespect and racism".
Summary:
Kerala has been rated as the best-governed state in India for the third consecutive time in the Public Affairs Index released by Bengaluru-based think tank Public Affairs Centre (PAC).
Summary:
Stating that the US under President Donald Trump won't stay silent, Secretary of State Mike Pompeo on Sunday said that Iran "is run by something that resembles the mafia more than a government".
Summary:
The trailer of M Night Shyamalan's 'Glass' has been released.
The film is linked to Shyamalan's previous two films 'Unbreakable', a 2000 film and 'Split', a 2016 film.
Summary:
AIB comedian Tanmay Bhat has said that he is proud of the fact that he has been doing his job and will continue to do so "until the day he gets completely suppressed".
Summary:
Actress Huma Qureshi has said that she doesn't chase success and chases excellence which is more important to her.
Summary:
The film, sequel to the 2016 film 'Fantastic Beasts and Where to Find Them', will be directed by David Yates and will release on will release on November 16.
Summary:
Neelima Azim, while talking about being a single mother and sons Shahid Kapoor and Ishaan Khatter, said, "I was a single mother and till today he [Shahid] is taking care of Ishaan and me in every way." "He took our lives forward in Mumbai.
Summary:
Hamilton's championship rival Sebastian Vettel crashed while leading the race with 15 laps to go.
Summary:
The 33-year-old had recently become the second Indian footballer after former captain Bhaichung Bhutia to play 100 matches for the national team.
Summary:
The stadium is owned by Mid and East Antrim Council, which leases it to both the club and Ballymena Raceway.
Summary:
On being asked how he changed the American soccer culture, former SwedenÃÂ captain and current LA Galaxy forward Zlatan Ibrahimovic, jokingly said that he would be President of the US if he had arrived 10 years earlier.
Summary:
Addressing the Congress Working Committee meeting, party President Rahul Gandhi said, "The electoral math is clear, elections will be won on Opposition unity." He added that the BJP and RSS unite to siphon money from the government and build their institutions.
Summary:
BJP President Amit Shah has reportedly told party workers that the BJP will not enter into an alliance with the Shiv Sena for the 2019 Lok Sabha and Maharashtra Assembly elections.
Summary:
Speaking about the confidentiality pact on the Rafale fighter jet deal between India and France, Congress President Rahul Gandhi on Sunday tweeted that Defence Minister Nirmala Sitharaman "flip-flops between it's-not-a-secret & it's-a-BIG-secret".
Summary:
Addressing Congress President Rahul Gandhi, BJP leader Anil Baluni has tweeted, "You forcibly hugged Prime Minister Narendra Modi in Parliament but people will not hug you in the 2019 general elections." He added, "Heard that desperate and disappointed Congress...
Summary:
Worms were found in the midday meal served to primary school students in West Bengal, following which parents lodged a protest with school authorities.
Summary:
The constable was tortured by the militants, Director General of Police SP Vaid said.
Summary:
Congress leader Digvijaya Singh on Saturday tweeted a picture of PM Narendra Modi performing aarti without removing his shoes in front of a person dressed as Lord Ram during a Ramleela event in Delhi last year.
Summary:
A youth allegedly shot dead an elderly man after the latter opposed to him visiting a neighbouring girl's house in Allahabad.
Summary:
The incident followed the release of excess water from the Stanley reservoir of the Mettur dam.
Summary:
UP Chief Minister Yogi Adityanath has instructed authorities to visit the site of the collapse and take action against those guilty.
Summary:
A user tweeted, "Wait why is her palm so brown.
Summary:
Singh had joined Jio before the soft launch of 4G services and had previously worked with Samsung and Airtel.
Summary:
A candidate, reportedly belonging to Pakistan Tehreek-e-Insaf, has used images of Bollywood stars Madhuri Dixit and Amitabh Bachchan on his campaign poster for the upcoming general elections.
Summary:
In the video, the 61-year-old actor is seen on the road diverting vehicles coming from the opposite side on the same lane where his car is.
Summary:
Bigg Boss 11 contestant Bandgi Kalra has been booked by Bengaluru police for allegedly cheating a city-based engineering student by posting a fake advertisement of an iPhone X on her Instagram account.
Summary:
Summary:
As many as four people were injured after a five-storey, under construction building collapsed near Dasna flyover in Ghaziabad on Sunday.
Summary:
Imran's remark follows several claims by Reham in her book including him being homosexual and having relationships with a Pakistani actor and a member of his political party.
Summary:
At least 11 people were killed and 14 others were wounded in a suicide bombing outside the Hamid Karzai International Airport in Kabul, Afghanistan.
Summary:
Canadian authorities launched an investigation on Saturday after an artillery gun detached itself from a military vehicle and rolled away into traffic in Canada's Nanaimo.
Summary:
An arbitration tribunal has rejected media tycoon Kalanithi Maran's â¹1,300 crore claim for loss on account of non-issue of share warrants by SpiceJet. The tribunal, however, awarded Maran a refund of â¹579 crore, the subscription amount he made for the warrants.
Summary:
A New Zealand-based e-will managing company Perpetual Guardian is said to make a four-day work week permanent for employees after a two-month trial for the same turned out to be a success.
Summary:
The GST Council has pruned the 28% slab by cutting rates on 191 goods over the past one year, leaving just 35 items in the highest tax bracket.
Summary:
Hina took to Twitter to share a copy and a courier receipt of the notice.
Summary:
Four-time F1 world champion driver Lewis Hamilton tried to push his car back to the pit-lane after it suffered a hydraulics leak during German Grand Prix's opening qualifying session on Saturday.
Summary:
Batra revealed out of the contingent of 17 players and officials, only 10 members were allowed to board as the flight was "overbooked".
Summary:
The 27-year-old completed his hat-trick by dismissing 16th-ranked Test batsman Jonny Bairstow.
Summary:
MS Dhoni, during a match against Australia in his first away tournament as ODI captain, asked his teammates to not celebrate once India won, a book has revealed.
Summary:
Italian design firm CRA-Carlo Ratti Associati has developed a 'writing' robot that can draw and erase images uploaded from a user's smartphone on any vertical surface like a wall.
Summary:
Google is reportedly working on an operating system (OS) called 'Fuchsia' which will replace Android.
Summary:
Responding to a journalist's article criticising meaningless conversations on Twitter, CEO Jack Dorsey has said that there is a need to focus on "conversational dynamics within Twitter".
Summary:
Researchers at the Stanford University have developed a wearable sensor patch which can detect stress levels from a user's sweat.
Summary:
Summary:
Punjab CM Captain Amarinder Singh has said Congress President Rahul Gandhi should be the PM candidate for the united Opposition in the upcoming Lok Sabha elections.
Summary:
Addressing the meeting, Rahul said "winning back" the trust of voters was the biggest task for Congress leaders and workers.
Summary:
Ahead of the publication of the final draft of the National Register of Citizens, Home Minister Rajnath Singh said all individuals in Assam will get "sufficient opportunity" to prove their citizenship.
Summary:
The Goa Police has busted a marijuana cultivation racket being run in the backyard of a house in Siolim village, allegedly by two Russian nationals.
Summary:
A day after government slashed the GST rates on several items, former Finance Minister P Chidambaram said that the decision was taken keeping upcoming Assembly elections in mind.
Summary:
BSNL Chairman Anupam Shrivastava has said the company has earned â¹100 crore revenue in one year from its satellite phone business.
Summary:
India's richest person Mukesh Ambani, his brother Anil Ambani, Priyanka Chopra and Salman Khan have featured on Variety Magazine's list of 500 most influential business leaders in the entertainment industry.
Summary:
A 30-year-old Assam man was arrested on Saturday for running fake Facebook profiles of 17 Indian police officers, which he claims he was doing 'just for fun.' "He'd add these profiles to his account, perhaps to show off the proximity to his friends," said Guwahati Commissioner.
Summary:
The trailer of Bradley Whitford, Millie Bobby Brown and Vera Farmiga starrer 'Godzilla: King of the Monsters' has been released.
Summary:
In a scene in her biopic series 'Karenjit Kaur: The Untold Story of Sunny Leone', Sunny Leone's character is shown apologising to Guru Nanak after watching a porn film for the first time.
Summary:
"(Dhoni) doesn't believe in overt displays of aggression.
If they believe in swearing, you don't need to do it," an excerpt read.
Summary:
Lyric Jain, a 21-year-old Indian-origin entrepreneur originally from Mysore, has founded startup Logically in the UK and developed a machine-learning algorithm to combat fake news.
Summary:
The complaints have risen from just 5,204 in 2013-14 to 78,000 in 2017-18.
Summary:
A Mumbai man's sarcastic tweets on an Uber driver who started a trip without picking him up has gone viral.
Summary:
Ecuadorian President Lenin Moreno, who is on a visit to the UK, will reportedly meet British officials to finalise an agreement to hand over WikiLeaks founder Julian Assange to the UK.
Summary:
Slamming a law passed by the Israeli parliament that defines Israel as a nation-state of the Jewish people, Egypt Foreign Ministry said it rejects the law sanctioning "racial segregation" against Palestinians.
Summary:
CNN host Chris Cuomo has said US President Donald Trump's tweet slamming the "fake news media" is a proof that he hates America and everything it stands for.
Summary:
Toblerone's US-based maker Mondelez International faced criticism when it introduced wider gaps between the distinctive pyramids as a cost-saving move.
Summary:
Summary:
Rohit Shetty, on his film 'Singham' completing 7 years of its release, took to social media and wrote, "I want to thank...everyone from all walks of life for making 'Singham' an iconic character." "Singham earned us tons of love and respect," he further wrote.
Summary:
Sharing his pictures with Ranbir Kapoor on Twitter, actor Amitabh Bachchan tweeted, "Out on a walk on the streets of NYC with THE Ranbir Kapoor...selfies and all." Amitabh Bachchan, along with Ranbir Kapoor, is currently in New York while shooting for Karan Johar's film 'BrahmÃÂstra'.
Summary:
Pakistani opener Fakhar Zaman has become the first batsman in history to slam 500-plus runs in a five-match bilateral ODI series.
Summary:
Summary:
Other experts claimed that religious texts may have been used to train Google's AI.
Summary:
Facebook-owned messaging service WhatsApp has rolled out its 'Suspicious Link Detection' feature for beta users on Android.
Summary:
BJP President Amit Shah is part of 1,800 WhatsApp groups formed by Delhi BJP for providing "direct information" and preventing the spread of fake news.
Summary:
Mumbai-based fintech startup PaySense has raised $18 million in its Series B round of funding led by Naspers-backed payments provider PayU.
Summary:
A woman carried a five-month-old foetus to a police station in Uttar Pradesh's Amroha on Sunday to file a complaint, alleging that she was raped six months ago and was forced to consume contraception pills.
Summary:
Summary:
The police said the accused, who persuaded her to visit a secluded area and allegedly raped her there, was arrested within hours of the incident.
Summary:
The Bombay High Court has granted anticipatory bail to a woman accused of breaching the trust of her lesbian partner and using casteist slurs against her.
Summary:
In a massive recruitment drive, the government has advertised for nearly 55,000 job openings in armed police forces, out of which 47,307 vacancies are for men and 7,646 for women.
Summary:
A woman allegedly committed suicide by jumping from the ninth floor of a district court building in Surat on Saturday.
Summary:
The previous record was by ex-Pakistan batsman Mohammad Yousuf who scored 405 runs between two dismissals in 2002.
Summary:
The trailer of Jason Momoa starrer superhero film 'Aquaman' has been released.
Jason first appeared as the superhero in the 2017 film 'Justice League', which is based on the DC Comics superhero team.
Summary:
The Congress' Mumbai unit has put up in Andheri posters of party President Rahul Gandhi hugging PM Narendra Modi during the discussion on no-confidence motion in Lok Sabha.
Summary:
Ukrain's Oleksandr Usyk beat Russian rival Murat Gassiev by a unanimous decision to become the first man to hold all four world cruiserweight titles.
Summary:
Indian shuttler Lakshya Sen became the first men's singles player from India in 53 years to win the gold medal at the Asian Junior Badminton Championships.
Summary:
Jogi was earlier a member of the Congress but broke away in 2016 to form his own party, Chhattisgarh Janata Congress.
Summary:
Carmaker Fiat Chrysler has named its Jeep division chief Mike Manley to replace CEO Sergio Marchionne, who suffered serious complications following shoulder surgery.
Summary:
The experts said radioactive cloud from the disaster floated over the Pacific Ocean to California, settling on grapes there.
Summary:
Ahead of the general elections in Pakistan, a candidate from cricketer-turned-politician Imran Khan's party PTI has been killed in a suicide attack that wounded four others.
Summary:
A Pakistani high court judge has alleged that the ISI had asked the Chief Justice to make sure that former PM Nawaz Sharif and his daughter Maryam should not come out of jail before the July 25 general elections.
Summary:
Actor Abhishek Bachchan will star opposite his wife and actress Aishwarya Rai Bachchan in Anurag Kashyap's next production 'Gulab Jamun', as per reports.
Summary:
Janhvi Kapoor, who recently made her Bollywood debut with Shashank Khaitan's 'Dhadak', has said that she doesn't feel she has become a star with the success of the film but she is just trying to be an actor.
Summary:
Indian pacer Mohammad Shami donated tricycles to differently-abled people in his hometown of Amroha, Uttar Pradesh.
Summary:
Pakistan's sole double century-scorer Fakhar Zaman broke West Indies legend Sir Viv Richards' and four other batsmen's record of being fastest to 1,000 ODI runs after going past the landmark in Sunday's fifth ODI against Zimbabwe.
Summary:
Former Indian pacer S Sreesanth posted a video that showed his gym workout.
Summary:
After Delhi CM Arvind Kejriwal announced that the government was planning a massive plantation drive in the capital, cricketer Gautam Gambhir wrote to him on Twitter, "...besides plantation you also need to adopt the trees to preserve them." "I hope that thrust is on that aspect too...," Gambhir added.
Summary:
Dhawan captioned the photo, "Tom nd jerry waala badmaash billa @virat.kohli...
Summary:
Officials claim hackers could send out fake confidential email alerts to trick users into entering personal data.
Summary:
The deal consisted of $306 million in cash and $266 million worth shares in Giosis, the Singapore-based parent of Qoo10.
Summary:
Why did Government not follow our advice in July 2017?" Adding that the present GST is still "unreformed", he said, "When elections are around the corner, government cuts rates.
Summary:
Maharashtra BJP councillor Dheeraj Digambar Pathe has been arrested for allegedly raping a woman for the last three years and trying to extort â¹5 lakh from her when she refused to marry him.
Summary:
The court was hearing a PIL seeking a ban on the use of loudspeakers at religious places in Delhi.
Summary:
Women are provided free treatment for 42 days after delivery and children aged under one year are given free medical aid, he added.
Summary:
The project was initially planned in 2011, but had not made any headway then.
Summary:
The Delhi Police has arrested a man for allegedly strangling his brother to death with a shoelace after he advised him against smoking cigarettes.
However, hospital authorities later informed police about the suspicious death.
Summary:
Summary:
Summary:
The GST tax rates have been cut for 88 items including refrigerators, water coolers, washing machines, vacuum cleaners, small-screen TVs, all of which have been shifted from 28% to 18% slab.
Summary:
IIT Bombay generated the highest revenue through research, inventions, consultancy and patents in the last three years among all the IITs, according to HRD Ministry's data.
Summary:
Summary:
The user's remarks were in response to a video of PM Modi's speech in Lok Sabha during a discussion on the no-confidence motion.
Summary:
PM Modi was also seen saying something to Gandhi.
Summary:
Elon Musk-led space startup SpaceX on Sunday launched the Telstar 19 Vantage satellite, the world's heaviest commercial communications satellite weighing over 7,000 kg, through its Falcon 9 rocket.
Summary:
Summary:
PM Narendra Modi will gift 200 cows to Rwandan President Paul Kagame on his upcoming visit as a contribution to the latter's flagship 'Girinka' programme, wherein each poor family is given one cow.
Summary:
The state government constituted a committee and took legal advice before deciding to implement the reservation.
Summary:
Earlier, Meghwal had said, "The more popular Modiji becomes, the more such (lynching) incidents will happen."
Summary:
Adding that Iranians will only be "united" by further threats from the US, Rouhani said the country will "certainly defeat America".
Summary:
Russian Foreign Minister Sergei Lavrov on Saturday told his US counterpart Mike Pompeo that a woman arrested in the US on accusations she was a Russian agent had been detained on "fabricated charges" and should be released.
Summary:
I felt very bad but I did not know what was happening," she further said.
Summary:
I've got more reason to be happy than sad," Neymar added.
Summary:
Former Indian cricketer Sachin Tendulkar said the Yo-Yo test used by team India should not be the sole criteria for selection of players.
ability of a player," Sachin said.
Summary:
Cesc Fabregas' wife Daniella Semaan was also present and seen spending time with Messi's wife Antonella.
Summary:
Former Indian cricketer Sachin Tendulkar said the decision of MS Dhoni's retirement should be left to him.
There had been calls for MS Dhoni's retirement following his performances in the recently-concluded ODI series against England.
Summary:
An FIR has been registered against AAP MLA Fateh Singh for allegedly giving false information about his educational qualifications in his nomination papers.
Summary:
Jason Gargac, an Uber driver in Missouri, US, live-streamed hundreds of riders without their consent on video platform Twitch, according to a report.
Summary:
The Kerala High Court has quashed the decision by a college in the state to expel two students for a 'love affair'.
It is all about individuals and their freedom," the court said.
Summary:
A Pakistani intruder was gunned down in Jammu and Kashmir's Kathua by BSF troops on Sunday after they saw him trying to enter Indian territory.
Summary:
A youth from Uttar Pradesh's Muzaffarnagar was arrested on Saturday after he allegedly uploaded videos of him raping a 15-year-old girl on a social media site.
Summary:
Congress leader Manish Tewari has claimed that 60,000 Indian youth are being detained at the US-Mexico border for illegally trying to enter the US through Mexico.
Summary:
Those deployed included commanders involved in alleged abuses during the civil war in 2009.
Summary:
The Goods and Services Tax Council on Saturday exempted the GST on the supply of services by an old age home which was 18% earlier.
Summary:
Infosys has said that increased rejection of work visa applications could result in delays and rise in project costs for clients.
Summary:
The revealed assets of Kukreja, who has been a member of the club since 1993, included property documents, jewellery, gold and premium watches.
Summary:
TV actor Siddharth Shukla, known for his role in 'Balika Vadhu', was arrested for rash driving after his BMW hit three cars and then a divider in Mumbai on Saturday, injuring three people in the accident.
Summary:
After Madhya Pradesh Chief Minister Shivraj Singh Chouhan said that Congress leader Digvijaya Singh's actions are anti-national, Digvijaya has said he would appear before police and they could arrest him if he's anti-national.
Summary:
Summary:
Japan's parliament on Friday passed a controversial law to legalise casino gambling paving way for up to three casino resorts to open.
Summary:
He said you two are really great together." Ishaan added, "It's a very big deal for me that my family likes my film.
Summary:
Summary:
The match was India's first-ever World Cup match since the 2010 edition in Argentina.
Notably, the Indian women's teamÃÂ has never won the World Cup.
Summary:
Several Toronto FC supporters mistakenly set a section of stands on fire during the second half of their team's Canadian Championship match against Ottawa Fury FC.
Summary:
Former world number one Billie Jean King, who won 39 Grand Slam titles, said that American tennis star Serena Williams is not supported like Roger Federer and Rafael Nadal because of her skin colour.
Summary:
Yahiya is only the second Indian after Milkha Singh to compete in men's 400m CWG final.
Summary:
Former Sri Lankan off-spinner Muttiah Muralitharan, the only player in Test cricket history to take 800 wickets, picked up his 800th wicket on the final ball of his Test career.
Summary:
Australian cricketer David Warner, who is currently serving a one-year ban over the ball-tampering scandal, has said that if he didn't love cricket, he would've retired by now.
Summary:
Siddaramaiah, who had contested the recently-concluded state election from two constituencies, won from the Badami seat.
Summary:
BJP President Amit Shah on Saturday announced that incumbent Rajasthan CM Vasundhara Raje will be the party's CM face in the Assembly elections later this year.
Summary:
Sidelined BJP MP Shatrughan Sinha on Saturday said Congress President Rahul Gandhi stole the show during the Lok Sabha debate on the no-confidence motion against the government.
Summary:
Indian-American scientist Keshav Singh and his team have managed to reverse the age-associated skin wrinkles and hair loss in mice.
Summary:
The scientists made the dumbbell spin by levitating it using a laser.
Summary:
The staff of a civic body in Jharkhand's Dhanbad held a puja to chase away the 'ghost of a woman', who the staff claims wanders on the top floor of the four-storey office building.
Summary:
The body of a trainee constable of the Jammu and Kashmir Police was found with bullet holes in Kulgam on Saturday.
We all stand by his family at this critical juncture," the Kashmir zone police tweeted.
Summary:
A mob had gathered outside the accused's house but he was saved after his wife locked him inside.
Summary:
US President Donald Trump has slammed the "Fake News Media", calling them "hypocrites" for saying he's been "too nice" to Russian President Vladimir Putin.
Summary:
The US has said that it is working with India to avoid sanctions arising from its military deals with Russia.
Summary:
The plan includes introducing new traffic signal technology to make it easier and safer to cross roads, among other provisions.
Summary:
China is waging a "quiet kind of cold war" against the US and making efforts to replace it as the world's leading superpower, Deputy Assistant Director at CIA's East Asia mission centre, Michael Collins said.
Summary:
The GST Council on Saturday approved quarterly filing of return for small taxpayers having a turnover of up to â¹5 crore as an optional facility.
Summary:
The GST Council has also reduced the tax rate on ethanol used to blend petrol and diesel to 5% from 18%.
Summary:
In the first such sentence under Rajasthan's new law, a 19-year-old man was sentenced to death for raping a seven-month-old infant.
Summary:
Denying reports that he was secretly recorded by his former lawyer Michael Cohen while discussing payment to a former Playboy model Karen McDougal, US President Donald Trump tweeted, "Your favourite President did nothing wrong!" Reports had stated an audio tape was uncovered during FBI raid on Cohen's office.
Summary:
A 15-year-old Indonesian girl has been jailed for six months for having an abortion after she was raped by her elder brother, an official said on Saturday.
Summary:
Samin, now 42, also fabricated his university degree and links to societies in job applications.
Summary:
Actor Ranveer Singh was seen hugging and dancing with spiritual leader Sadhguru at an alumni event of IIM Bangalore on Saturday.
Summary:
Sharing the promo on Instagram, Ekta wrote, "Love never dies!
Summary:
A 14-year-old girl was murdered for resisting sexual assault and buried in the backyard of a short-stay home run by an NGO in Bihar's Muzaffarpur, rescued inmates claimed.
Summary:
Islamic Seminary Darul Uloom Deoband in Uttar Pradesh's Saharanpur has issued a fatwa against waxing and shaving, saying they are not "considered to be good" under the Sharia law.
Summary:
Eight people have been booked for allegedly sedating and raping a 16-year-old girl in Bengaluru.
Summary:
The victim was found suffering from a gunshot wound and was taken to a local hospital where she was pronounced dead.
Summary:
India's largest private lender by market capitalisation, HDFC Bank, on Saturday posted an 18.2% increase in its profit at â¹4,601 crore for the quarter ended June.
Summary:
The government on Friday indicated that 25% of the ATMs run by state-owned banks may be vulnerable to fraud as they are running on outdated software.
Summary:
Dave Bautista, who plays 'Drax the Destroyer' in 'Guardians of the Galaxy', has said that he's not ok with Disney firing the director of 'Guardians of the Galaxy' franchise James Gunn.
I'm not ok with what's happening to him," tweeted Dave.
Summary:
Actress Neha Dhupia, who appears in various reality-based TV shows, said, "As long as television gives me the opportunity to be myself which is non-fiction, I'll definitely do it." "I've always been a part of the small screen in situations where I'm doing things that I'm comfortable with.
Summary:
Actor Sumeet Vyas is set to write the script for a feature film independently for the first time.
Summary:
Summary:
A fan climbed a tree during France's 2018 FIFA World Cup victory celebrations and jumped towards the crowd in France.
Summary:
Former Sweden captain Zlatan Ibrahimovic has agreed to attend an England match wearing England jersey at the Wembley Stadium and eat fish and chips after losing a bet to former England captain David Beckham.
Summary:
Notably, Ronaldinho was unveiled as Barcelona player on July 21, 2003.
Summary:
On July 21, 2014, India pulled off their first Test victory at Lord's Cricket Ground since 1986.
Summary:
This is Hingis' second marriage after being married to French equestrian Thibault Hutin (2010-2013).
Summary:
Slamming PM Narendra Modi for remaining silent on mob lynching incidents, AAP MP Sanjay Singh has asked, "Does BJP want to turn the country into a Taliban state?" The government is shielding the accused in lynching incidents, he added.
Summary:
BJP President Amit Shah has asked party workers in Rajasthan to work 18 hours a day over the next few months as the state will go to polls this year.
Summary:
Slamming BJP after a tent collapsed during PM Narendra Modi's rally in Midnapore, West Bengal CM Mamata Banerjee has asked, "How can they build the country when they cannot build a pandal?" Around 90 people had sustained injuries, following which PM Modi visited victims at a hospital.
Summary:
Iran's Supreme Leader Ayatollah Ali Khamenei has said it would be an "obvious mistake" to negotiate with the US.
Summary:
India has relied on imports to meet more than 90% of its solar power sector requirements over the last three financial years, Power Minister RK Singh has said.
Summary:
Kumar further said cronyism has given capitalism a bad name in India.
Summary:
The GST Council on Saturday shifted certain items from 28% tax slab to the lower 18% slab including washing machines, refrigerators, up to 25-inch televisions, vacuum cleaners, perfumes, food grinders, mixers, water cooler and paints.
Summary:
Following the rollout of GST, several petitions were filed before various High Courts seeking tax exemption for sanitary napkins.
Summary:
Directed by Amar Kaushik, the film is scheduled to release on August 31.
Summary:
Mentioning Modi government's win in the no-confidence motion, Mamata added, "That number was inside the house.
Summary:
In a Facebook post on Congress President Rahul Gandhi's no-confidence motion debate speech, union minister Arun Jaitley on Saturday wrote, "If this was his best argument for 2019, God help his party." "Those who desire to be Prime Minister never blend ignorance, falsehood and acrobatics...every word he speaks should be precious.
Summary:
Andhra Pradesh CM N Chandrababu Naidu has said that the opposition knew that PM Narendra Modi-led NDA government had the majority, but the motion was a "fight between majority and morality".
Summary:
Union Minister Arjun Ram Meghwal on Saturday said Rajasthan's Alwar incident where a man was lynched to death over suspicion of cow smuggling was a reaction to PM Modi's popularity.
In UP election, it was mob lynching," he further said.
Summary:
The apex court also ruled that third-party insurance for a period of five years will be mandatory for two-wheelers.
Summary:
Three people including a kid were severely injured after a group of monkeys reportedly dropped crude bombs on them from a tree in Uttar Pradesh's Fatehpur.
Summary:
The husband of a 22-year-old woman from Chandigarh who was gangraped by 40 men in Haryana after being lured for a job has claimed his wife was called 'prostitute' by the police in Panchkula.
Summary:
State BJP MLA Gyan Dev Ahuja has claimed Akbar Khan, who was beaten to death in Rajasthan's Alwar on suspicion of cow smuggling, wasn't lynched by a mob but was beaten by cops.
Summary:
At least one person was killed and three others were injured after an under-construction building collapsed in Noida Sector 63 in Uttar Pradesh on Saturday.
Summary:
'Mulk' director Anubhav Sinha, while talking about trolls who labelled him as "anti-Hindu" based on the trailer of his upcoming film, said, "The narrow-minded people...speak much louder than the majority." "People who are trolling with narrow thoughts, are a minuscule, negligible minority," he added.
Summary:
Talking about getting more than what he actually deserves, Amitabh Bachchan took to his blog and wrote, "I feel I give back less than what I receive, and this disturbs me." "I do know and am intelligent enough to know my present standing and what I deserve.
Summary:
American singer Taylor Swift will be a part of the upcoming film adaptation of 'Cats' along with Jennifer Hudson, James Corden and Ian McKellen, as per reports.
Summary:
Richa Chadha, who will be seen portraying South Indian adult film actress Shakeela in an upcoming biopic on her, met Shakeela in Bengaluru prior to the biopic's shoot.
Summary:
Indian cricket team's bus driver in England, Jeff Goodwin, has revealed that Suresh Raina gave him his shirt many years ago to auction off to help his wife, who was suffering from some illness at the time.
Summary:
Speaking about the Lok Sabha debate on the no-confidence motion, Shiv Sena compared Congress President Rahul Gandhi to FIFA World Cup runners-up Croatia.
Rahul is now being talked in the same way," Shiv Sena said.
Summary:
Kedar Jadhav has revealed that captain Virat Kohli gifted him a Blackberry phone when he made his Team India debut.
Summary:
"(B)lack may be one of our club's colours, but we only want whites," a fan said.
Summary:
US technology giant Microsoft's shares rose about 5% to an all-time high on Friday after the company's annual revenue crossed the $100-billion milestone for the first time boosted by its cloud business.
Summary:
Neeraj, who passed away at the age of 93 earlier this week, had signed a declaration in 2016 to donate his body to medical students.
Summary:
German Chancellor Angela Merkel has said that the import tariffs announced by US President Donald Trump "endanger the prosperity of many people around the world".
Summary:
The US State Department in April amended the Foreign Terrorist Organisation designation of LeT to add MML as its alias.
Summary:
British pharmaceutical giant GlaxoSmithKline (GSK) is reportedly considering splitting up the company after pressure from investors to spin off its consumer division.
Summary:
She wrote that a teacher at the exam centre "verbally shamed" her for wearing "indecent" clothes.
Summary:
Meanwhile, Hrithik's film was earlier scheduled to release on November 23 this year.
Summary:
Speaking about being imprisoned for possessing arms, Sanjay Dutt said, "A gun destroyed my life." "I was sentenced...But I didn't run away.
Summary:
Priyanka Chopra's rumoured boyfriend Nick Jonas in an Instagram story posted a picture of Priyanka with 'Game of Thrones' actress Sophie Turner and captioned it, "Blocking the haters out like." The picture credit was given to Nick's brother Joe Jonas, who is Sophie's fiancé.
Summary:
Hollywood filmmaker James Gunn on Friday was fired as director of 'Guardians of the Galaxy Vol 3' because of old tweets where he joked about subjects like rape and pedophilia.
Summary:
Ab kaaran nahi bata paaye to gale pad gaye", Modi said.
Summary:
TRAI has warned Apple to allow its Do-Not-Disturb app on iPhones within six months in order to "curb the problem of unsolicited commercial communication." It further said that network providers will "derecognise" devices that do not allow the installation of the app developed by TRAI.
Summary:
About 157 GB of sensitive data from over 100 companies, including General Motors, Fiat Chrysler, Ford, Tesla and Toyota, were exposed on a public server, security researcher UpGuard Cyber Risk has revealed.
Summary:
"[Our] priority is to ensure that the hard work of the farmers of this nation is respected.
Summary:
Most of the accused named by the CBI in the latest chargesheet for the February 2016 Rohtak violence are linked to former Haryana CM Bhupinder Singh Hooda, state Finance Minister Captain Abhimanyu has said.
Summary:
Former BJP MP Chandan Mitra on Saturday joined Trinamool Congress (TMC) at a mega rally in Kolkata, TMC President and West Bengal Chief Minister Mamata Banerjee announced.
Summary:
Dubbed the "world's loneliest man", he is seen cutting a tree with an axe.
Summary:
A US court has sentenced 21 Indian-origin people to up to 20 years in prison in the US for their involvement in a multimillion-dollar India-based call centre scam.
Summary:
The Union Ministry of Women and Child Development has asked all states and Union Territories to inspect all the homes run by Mother Teresa's Missionaries of Charity.
Summary:
The accident took place when the victim, Vaibhav Sondhi, was arguing with another cab driver who had hit his car on the Delhi-Gurugram expressway, police said.
Summary:
The Delhi Police has filed an FIR against a senior editor of Times Now news channel for allegedly outraging the modesty of two women and clicking their photos against their will.
Summary:
Pakistani cricketer-turned-politician Imran Khan has said that the Sindh province has been worst affected due to "incompetent and corrupt political elite".
Summary:
Actress Shabana Azmi, after watching late actress Sridevi's daughter Janhvi Kapoor's performance in her debut film 'Dhadak', took to Instagram and wrote, "Sridevi wish you were here to watch your daughter Janhvi's debut." "You would have been so proud.
Summary:
Addressing a rally in Uttar Pradesh on Saturday, PM Narendra Modi said the Opposition is uniting to create 'daldal' (quicksand), adding that a lotus blooms the brightest in quicksand.
Summary:
Michael Collins, the mission's third astronaut, orbited the Moon alone in 'Columbia' for that duration.
Summary:
Summary:
All India Faizan-e-Madina Council leader Moin Siddique Noori has announced a reward of â¹11,786 for stoning and shaving the heads of Triple Talaq victim Nida Khan and union minister Mukhtar Abbas Naqvi's sister Farhat.
Summary:
Militants allegedly abducted a trainee police constable from his residence in Jammu and Kashmir's Kulgam on Friday.
Summary:
Punjab CM Captain Amarinder Singh has asked Home Minister Rajnath Singh to resolve the territorial dispute between Punjab and Haryana and restore "Chandigarh to Punjab, being its legitimate original capital".
Summary:
The soldier was the first member of Israel's Army to be killed since the last war between Israel and Hamas in 2014.
Summary:
The US announced on Friday that it has released $200 million in military assistance to Ukraine.
Summary:
India's fourth most valuable IT services firm Wipro on Friday announced it would buy US-based Alight Solutions' India operations for $117 million (â¹804 crore).
Summary:
The woman informed the concerned financial consultant after she found $1.1 million in her account instead of $50.
Summary:
Summary:
Parties supporting BJP...should be taught a lesson." "Instead of doing justice to AP, PM Modi is resorting to political attack...alleging I took U-turn," Naidu added.
Summary:
After abstaining from the no-trust vote on Friday, BJP-ally Shiv Sena praised Congress President Rahul Gandhi on his Lok Sabha speech, saying he "has now graduated from the real school of politics".
Summary:
BJP President Amit Shah on Friday hailed PM Narendra Modi-led NDA government's win in the no-confidence motion, called it "a victory for democracy and a defeat of familism".
Summary:
Congress President Rahul Gandhi has tweeted that the point of Friday's no-confidence motion debate was that PM Modi "uses Hate, Fear and Anger in the hearts of...people to build his narrative." "We're going to prove that Love and Compassion...is the only way to build a nation," he added.
Summary:
Kenyan sprinter Beatrice Chepkoech bettered the world record in the women's 3,000 metres steeplechase by more than eight seconds at the Monaco Diamond League meeting on Friday.
Summary:
In 2016, Facebook's internet satellite for Africa was lost when SpaceX's rocket exploded.
Summary:
In the wake of complaints regarding sub-standard food, the Food Safety and Standards Authority of India (FSSAI) has asked 10 food apps including Swiggy, Zomato and Foodpanda to de-list non-licensed eateries from their platforms.
Summary:
Artefacts collected by Neil Armstrong, the first person to walk on the Moon, from the Apollo 11 mission are set to be auctioned off by his son Mark.
Summary:
Fifty years after an AN-12 aircraft of the Indian Air Force crashed in Himachal Pradesh's Lahaul valley with 102 people on board, a mountaineering expedition has located the body of one of the soldiers.
Summary:
Baba Amarpuri, a Mahant at a temple in Haryana, was arrested on Friday after videos of him allegedly raping several women surfaced online.
Summary:
Coleman claimed the captain told passengers to not put on life jackets during the boat tour.
Summary:
'Baahubali' actress Anushka Shetty's mother Prafulla Shetty has said she would love to get a man like Prabhas, who played the lead role in the 'Baahubali' films, for her daughter.
Summary:
In case of a whitewash, India will fall to 112 points, which will still be out of reach for second-placed South Africa.
Summary:
Congress leader in the Lok Sabha, Mallikarjun Kharge, has called PM Narendra Modi's speech against the no-confidence motion "dramebaazi" (theatrics), adding that he failed to answer questions about the Rafale deal and Nirav Modi.
Summary:
India's women's team captain Mithali Raj revealed in the Breakfast With Champions web-series that she wanted to be a dancer but her father wanted her to become a cricketer.
Summary:
Indian-origin spinner Keshav Maharaj became the second South African cricketer to pick nine wickets in an innings after registering career best figures of 9/129 in the second Test against Sri Lanka.
Summary:
Opener Fakhar Zaman, who on Friday became the first Pakistani cricketer to slam a double hundred in ODI cricket, revealed that team coach Mickey Arthur had been asking him to hit double century in ODIs since many days.
Summary:
Reacting to the criticism being directed at BCCI's National Cricket Academy over the fitness of players, Indian cricketer Yuvraj Singh said he bounced back after cancer with help from the academy.
Summary:
Mumbai Indians' Bangladeshi pacer Mustafizur Rahman has been forbidden by Bangladesh's cricket board from participating in foreign leagues for two years as he gets injured while playing in the leagues and is then unable to play for Bangladesh.
Summary:
After making at least 10 acquisitions in India over the past two years including ItzCash Card and Centrum Capital, Nasdaq-listed software firm Ebix Inc on Friday announced the acquisition of Pune-headquartered Indus Software Technologies for $29 million (around â¹200 crore).
Summary:
Canada-based medical marijuana company Tilray has raised $153 million (over â¹1,050 crore) in its Initial Public Offering (IPO) at US' stock market Nasdaq.
Summary:
The mother alleged the accused took advantage of her absence and raped the girl while she was asleep.
Summary:
The US on Friday rejected a proposal to solve the Ukranian crisis by holding a referendum after Russian President Vladimir Putin reportedly suggested the idea to US counterpart Donald Trump.
Summary:
UK-based artist Conor Collins has made a portrait of late Princess Diana using a mixture of HIV-positive blood and diamond dust.
Summary:
The Comptroller and Auditor General of India (CAG) has warned that flexi-fare system in premium trains could "force" passengers to opt for airlines.
Summary:
Prime Minister Narendra Modi addressed the Lok Sabha for 90 minutes ahead of the voting on the no-confidence motion.
Summary:
US President Donald Trump was secretly recorded by his former lawyer Michael Cohen two months before the 2016 election discussing payment to a former Playboy model Karen McDougal, as per reports.
Summary:
Directed by Michael Dougherty, the film is scheduled to release on May 31, 2019.
Summary:
She also said that she has been following a few musicians in India and believes they are wonderful.
Summary:
In his speech in the Lok Sabha during the no-confidence motion debate on Friday, Prime Minister Narendra Modi said that Congress had bought votes two times in the past.
"Congress has lost its touch from ground reality.
Summary:
Taking a dig at Congress President Rahul Gandhi for hugging him during the no-confidence motion debate, PM Narendra Modi said, "In the morning...one member comes running to me saying-Utho Utho Utho." "What is his hurry to come to power?
Summary:
PM Narendra Modi has said that he will pray to Lord Shiva that the opposition will get the strength to bring in no-trust motion in 2024 again.
Summary:
Talking about the issue of special status to Andhra Pradesh in the no-confidence motion debate in the Lok Sabha on Friday, PM Narendra Modi said TDP made a U-turn to hide their shortcomings.
Summary:
Prime Minister Narendra Modi while speaking in the Lok Sabha on Friday said he called up Andhra Pradesh CM Chandrababu Naidu when TDP was leaving NDA.
Summary:
Summary:
Further, the components of the Solar Probe have high melting points, as temperatures of the shield are expected to go as high as 1,370úC.
Summary:
The ATM operations industry on Friday said an investment of â¹100 crore will be needed to recalibrate 2.4 lakh ATMs across the country to make them ready for dispensing new â¹100 notes.
Summary:
A man named Akbar Khan was allegedly beaten to death by a mob in Alwar, Rajasthan on Friday night on the suspicion of smuggling cows.
Summary:
The Rajya Sabha on Thursday passed the Prevention of Corruption (Amendment) Bill, 2013 which prescribes that anyone who is caught bribing government officials can be sentenced to a jail term of up to seven years.
Summary:
One of the accused, posing as Lieutenant Colonel, was wearing the Army uniform and carrying a fake PMO ID.
Summary:
The US and China had earlier imposed tit-for-tat tariffs of $34 billion on each other's imports.
Summary:
US President Donald Trump said on Thursday that he will be Russian President Vladimir Putin's "worst enemy" if talks between the two leaders fail.
Summary:
Uganda has banned motorcycle drivers from wearing hoodies in a bid to curb the rising rate of crime in the country.
Summary:
Television actress Juhi Parmar, while slamming her ex-husband Sachin Shroff for saying she was never in love with him, wrote on Instagram, "When did I ever say...I haven't loved you even after marriage?" "You've put the entire blame on me...by calling it a loveless marriage," she added.
Summary:
Slamming Congress for questioning the BJP-led NDA government over the exclusion of petroleum from GST, PM Modi asked the party to "sometimes look outside" its family's affairs.
Summary:
Defence Minister Nirmala Sitharaman on Friday accused TDP MP Naramalli Sivaprasad of making an offensive remark against PM Narendra Modi after the TDP began the debate on the no-confidence motion in the Lok Sabha.
Summary:
After Congress President Rahul Gandhi claimed PM Narendra Modi cannot meet his eye, PM Modi said leaders including Subhash Chandra Bose, Morarji Desai, Sardar Vallabhai Patel, and Pranab Mukherjee were insulted for trying to look Congress in the eye.
Summary:
Brazilian forward Neymar, who was criticised for his 'diving antics' during the World Cup, has said he was "fouled all the time" during the tournament.
"Do you think I want to suffer fouls all the time?
Summary:
World's most expensive footballer Neymar has said five-time Ballon d'Or winner Cristiano Ronaldo, who has joined Juventus for ã99 million, will change Italian football.
Summary:
Vedanta Resources Chairman Anil Agarwal has said the company could see a loss of about $100 million if its Sterlite copper plant in Tamil Nadu's Tuticorin continues to remain shut for a year.
Summary:
The Maharashtra government has announced a special package worth over â¹21,000 crore for the development of industries, agriculture and tourism in the Vidarbha and Marathwada regions.
Summary:
At least 17 people have died and seven others have been injured after a boat ferrying tourists capsized and sank during a thunderstorm in the US state of Missouri on Thursday.
Summary:
Summary:
Commenting on Rahul Gandhi winking after delivering his speech during the no-confidence motion debate in the Lok Sabha, Malayalam actress Priya Prakash called it a "very sweet gesture".
Summary:
Nawazuddin will be acting with superstar Rajini." Directed by Karthik Subbaraj, the film will also star Simran and Vijay Sethupathi.
Summary:
Summary:
Summary:
Responding to the no-confidence motion moved against his government in the Lok Sabha, PM Narendra Modi shared a little poem during his speech on Friday.
Summary:
During his speech in the Lok Sabha on the no-confidence motion, Prime Minister Narendra Modi on Friday said that India is moving towards becoming a $5 trillion economy.
Summary:
Attacking the Opposition in the Lok Sabha on Friday, PM Narendra Modi during his speech said that Congress has no faith in the Election Commission, Judiciary, RBI, or the International Agencies.
Summary:
Speaking at the no-confidence motion debate in the Lok Sabha on Friday, Prime Minister Narendra Modi said, "I urge all of you (MPs) to reject this proposal." The PM added, "If you (Opposition) were not prepared for the debate why did you bring the motion?
Summary:
Speaking on the no-confidence motion moved by the Opposition in the Lok Sabha, PM Narendra Modi on Friday asked, "Was the Opposition expecting an earthquake?" In 2016, Congress President Rahul Gandhi had said that an earthquake will come if he were allowed to speak in the Parliament.
Summary:
Ridiculing Congress President Rahul Gandhi's wink after hugging him in the Lok Sabha on Friday, PM Narendra Modi said, "The entire country saw what the eyes did today." "It is clear in front of everyone," he added.
Summary:
The Trinamool Congress (TMC) has extended its full support to TDP's no-confidence motion in the Lok Sabha.
Summary:
Summary:
The Indian Railways terminated contracts of 16 caterers and imposed penalty of â¹4.87 crore for various lapses in catering services, including poor quality and hygiene, in FY18, Union Minister Rajen Gohain has said.
Summary:
The children may have "unique access to information", the Office added.
Summary:
The RBI on Friday told the Supreme Court that allowing dealings in cryptocurrencies would encourage illegal transactions and it has already issued a circular prohibiting use of crypto.
Summary:
Vivek Oberoi, Sonali Bendre's co-judge on a TV show, revealed, "When we [were] shooting...Sonali used to complain about suffering from pain in body and hands." Vivek added that he advised Sonali to get a complete check-up done following which she was diagnosed with cancer that has metastasised.
Summary:
Linkin Park's bassist Dave Phoenix Farrell, took to Instagram and posted the band's late singer Chester Charles Bennington's picture, captioning it, "You are loved, and you are missed." "It still hurts to not have you here.
Summary:
Rakul Preet will be playing the role of late actress Sridevi in Nandamuri Taraka Rama Rao's upcoming biopic, as per reports.
Summary:
Bollywood actor Varun Dhawan met WWE wrestler Braun Strowman in Mumbai.
Last year, the actor had met wrestlers Triple H and Sasha Banks.
Summary:
Nine-time Lok Sabha MP from Congress Kamal Nath on Friday skipped the no-confidence motion debate in the Lower House of the Parliament, saying, "For me, Madhya Pradesh is the priority." "[I've] seen a number of no-confidence motions in last 38 years," he added.
Summary:
"Thank you, but I did not play in Russia," the striker reportedly said.
Summary:
Summary:
Forward Didier Drogba appealed to the warring factions in Ivory Coast to end the civil war, just after the country qualified for 2006 FIFA World Cup. Drogba, who joined Chelsea on July 20, 2004, made the appeal on television from team's dressing room.
Summary:
Five-time Major champion Phil Mickelson performed a flop shot over the head of former European Tour star Gary Evans from barely a yard in front of him.
Summary:
Sri Lanka leg-spinner Jeffrey Vandersay has been punished with a one-year suspended ban and fined 20% of annual contract fee over misconduct.
Summary:
Addressing the Rajya Sabha, MoS for Railways Rajen Gohain on Friday said Shatabdi trains plying across the country were late by around 30%, while Rajdhani trains were late by 22% in the past two months.
Summary:
Summary:
It was aimed at patients who visited clinics between May 2015 and July 2018, the Health Ministry said.
Summary:
The Indian Express wrote that the film is "strictly for Dwayne Johnson fans".
The film was rated 3/5 (HT), 1.5/5 (Indian Express) and 2/5 (TNIE).
Summary:
After Congress President Rahul Gandhi winked at his fellow MPs following his hug with Prime Minister Narendra Modi on Friday, Lok Sabha Speaker Sumitra Mahajan said, "Winking is against the dignity of Parliament." "PM Narendra Modi was on his seat which commands respect...Why will I oppose hugging?
Summary:
After France said that India and France are legally bound to protect the classified information on Rafale deal, Congress President Rahul Gandhi on Friday said, "Let them deny it if they want." Earlier, Gandhi accused Defence Minister Nirmala Sitharaman of lying to the nation.
Summary:
Speaking in the no-confidence motion debate in the Lok Sabha on Friday, Congress MP Mallikarjun Kharge said, "If we followed your (BJP's) path, democracy would have ended long time ago." "Congress has always tried to safeguard democracy," he added.
Summary:
Lok Sabha Speaker Sumitra Mahajan reprimanded Congress president Rahul Gandhi for hugging Prime Minister Narendra Modi during the no-confidence motion.
He is not Narendra Modi but the PM of India," Mahajan said.
He is like my son."
Summary:
Microsoft's market capitalisation surpassed the $800 billion mark for the first time earlier this month.
Summary:
Microsoft's former CEO Steve Ballmer in an interview to Bloomberg said that he and company's Co-founder Bill Gates recommended Satya Nadella as the CEO and he's doing a great job.
Summary:
The Supreme Court on Friday dismissed the bail plea of the Class 11 student of a private school in Gurugram, who has been accused of killing a 7-year-old boy in the school's washroom.
Summary:
Migrants do not have the unfettered right to choose their host nation, the UN's refugee agency has said.
Summary:
Infosys CEO Salil Parekh cannot join a rival company for six months if he decides to leave the IT major, according to his employment contract.
Summary:
Marlboro-maker Philip Morris has been slammed for 'disgraceful PR stunt' by offering "smoke-free" tobacco products to England's National Health Service (NHS) staff to mark its 70th anniversary.
Summary:
Actor Arjun Kapoor will be seen playing the lead role in the sequel of Boney Kapoor's 2005 film 'No Entry', as per reports.
Summary:
"UrbanClap never again...their pathetic service has bruised and left marks on my skin," she wrote on Instagram.
Summary:
Abhishek Bachchan and Taapsee Pannu's 'Manmarziyaan' will be clashing with Shahid Kapoor and Shraddha Kapoor's 'Batti Gul Meter Chalu' as both the films are scheduled to release on September 21.
Summary:
Actor John Abraham has said he believes he has the right to criticise his own country, while adding, "Every Indian has the right to criticise India because it's for the betterment of our country." "I'm a hardcore India fan...somewhere it plays out in my films.
Summary:
Summary:
RJD leader Tejashwi Yadav on Friday tweeted a photograph of Congress President Rahul Gandhi winking at a colleague after delivering his speech during the no-confidence motion debate in the Lok Sabha.
Summary:
Summary:
After Congress President Rahul Gandhi hugged PM Narendra Modi in the Lok Sabha on Friday, Union Minister Harsimrat Kaur Badal asked him, "What did you take today?" She said, "They call us Punjabis drug addicts.
Summary:
Addressing the Lok Sabha during the debate on the no-confidence motion against the government, Congress President Rahul Gandhi thanked PM Narendra Modi, BJP and RSS for teaching him the meaning of "Hinduism and Lord Shiva".
Summary:
Pakistan opener Fakhar Zaman, who on Friday became the sixth batsman to slam ODI double hundred, achieved the feat in his 17th innings.
Summary:
Pakistan registered their highest-ever ODI total by scoring 399/1 in 50 overs in the fourth ODI against Zimbabwe on Friday.
Summary:
The Uttar Pradesh Police will deploy over 3.6 lakh 'digital volunteers' across around 1,500 police stations to stop the spread of rumours and fake news on social media.
Summary:
Russia annexed Crimea in 2014 and pro-Russian separatists declared independence in Ukraine's Donbass region following referendums which were not internationally recognised.
Summary:
A Pakistani-American father-son duo has been sentenced to 18 months in prison in the US for exporting products illegally to the Pakistan military.
Summary:
Zaman reached the 200-run mark off 148 balls, becoming the fourth fastest batsman to reach the milestone.
Summary:
India and the US will hold the inaugural 2+2 dialogue led by India's External Affairs Minister Sushma Swaraj, Defence Minister Nirmala Sitharaman and their US counterparts in New Delhi on September 6.
Summary:
Ram Gopal Varma has said he'll make a biopic on actor Sanjay Dutt.
"Varma's film will focus on Dutt's possession of the AK-56 rifle," said reports.
Summary:
BJP MP Kirron Kher, while speaking about Congress President Rahul Gandhi's speech during the no-confidence motion debate on Friday, said, "I think his next step will be Bollywood.
Summary:
Taking a dig at Congress President Rahul Gandhi ahead of the no-confidence motion debate, BJP MP Paresh Rawal said, "If Rahul will speak for 15 minutes without reading from paper, without...mistakes, mother earth will shake." "It'll not only shake it'll dance," he had added.
Summary:
Punjab Police presented commendation certificate to honour traffic policeman Gurdhian Singh on Thursday, a day after actress Gul Panag praised him on Twitter for managing traffic on submerged roads of Zirakpur during heavy rain.
Summary:
It's unfortunate that the president of Congress is so ill-informed and immature," Ananth added.
Summary:
It is unfortunate that the president of Congress is so ill-informed and immature," Kumar further said.
Summary:
Gandhi said he met the French President who told him no such pact existed.
Summary:
Union Home Minister Rajnath Singh has said that he would like to inform those raising concerns over mob lynching that the biggest case of mob lynching happened during 1984 Sikh genocide.
Summary:
Telugu Desam Party MP Jayadev Galla, who initiated the debate in the no-confidence motion on Friday, was elected to Lok Sabha in 2014 from Andhra Pradesh's Guntur constituency.
Summary:
The previous highest opening stand in ODI cricket of 286 runs was recorded by Sri Lanka's Sanath Jayasuriya and Upul Tharanga against England in 2006.
Summary:
Earlier in February 2016, TVF raised $10 million from Tiger Global at a valuation of $61 million.
Summary:
The Supreme Court on Friday stayed the Madras High Court order which granted 196 grace marks to students who took the NEET 2018 exam in Tamil.
Summary:
South Korea's central bank has said that North Korea's economy in 2017 declined at the sharpest rate in 20 years.
Summary:
Trump had said that he looked forward to his second meeting with Putin to work on several issues, including Ukraine and the Middle East.
Summary:
Federal Reserve Chairman Jerome Powell has said that the estimated $285 billion cryptocurrency market is not big enough to pose a threat, and the US isn't looking to regulate it.
Summary:
India's fourth most valuable IT firm Wipro on Friday reported a 16.3% quarter-on-quarter rise in net profit to â¹2,093.8 crore for the June quarter, compared to â¹1,800.8 crore in previous quarter.
Summary:
Summary:
Bollywood couple Genelia and Riteish Deshmukh have invested an undisclosed amount in Mumbai-based online homoeopathic healthcare startup WelcomeCure.
Summary:
FIFA World Cup 2018 runners-up Croatia's football federation has sent team jerseys to each of the 12 Thai teenagers who were recently rescued from a cave after being trapped for over two weeks.
Summary:
Meanwhile, BJP has been allotted 213 minutes in the seven-hour debate.
Summary:
Defender Samuel Umtiti, whose goal against Belgium helped France reach the 2018 FIFA World Cup final, took to social media to share a picture of himself having a shower with the World Cup trophy in his hands.
Summary:
Yoga guru Ramdev has said that unemployment is a big issue in the country and both the Centre and state governments are not doing enough to tackle the problem.
Summary:
CBI arrested Malik's aide Pawan Hooda over violence at a Haryana minister's residence during 2016 reservation protests.
Summary:
Interim Finance Minister Piyush Goyal has said absconding offenders like Vijay Mallya and Nirav Modi were "products" of the UPA government.
Summary:
He also said that PM Modi cannot look him in the eye.
Summary:
They upvoted a post containing a photo of Trump and the word 'idiot' on Reddit.
Summary:
While Shiv Sena has 18 MPs in the Lok Sabha, the BJD has 20.
Summary:
Gandhi said this in his speech during the no-confidence motion discussion today.
Summary:
Microsoft's record revenue was largely attributed to commercial cloud sales, which contributed over $23 billion.
Summary:
Hina Khan, while responding to the legal notice filed by a jewellery brand claiming she didn't return ornaments worth â¹11 lakh, said, "My stylist's assistants misplaced it in auto rickshaw." "She's trying hard to return it...She has already paid about â¹2.86 lakh," she added.
Summary:
Speaking in the Lok Sabha during the no-confidence motion debate on Friday, Congress President Rahul Gandhi said Prime Minister Narendra Modi is not a 'chowkidar' (watchdog) of corruption but a 'bhagidar' (participant) in it.
Summary:
Summary:
Gandhi claimed a jet's cost which was â¹520 crore under UPA's rule, hiked to â¹1,600 crore after PM Modi visited France.
Summary:
Summary:
Congress divided people on the basis of vote bank during their regime," BJP MP Rakesh Singh said.
Summary:
In the no-confidence motion against PM Narendra Modi-led NDA government, Telugu Desam Party's Jayadev Galla said, "If people of Andhra are cheated, the BJP will be also decimated in the state like the Congress.
Summary:
Telugu Desam Party (TDP) MP Jayadev Galla attacked Prime Minister Narendra Modi saying, "the saga of Andhra Pradesh during this Modi-Shah regime is a saga of empty promises".
Summary:
After ending his speech during the no-confidence motion debate in the Lok Sabha on Friday, Congress President Rahul Gandhi went and hugged Prime Minister Narendra Modi.
Summary:
Gandhi said that the PM can't look him in the eye.
Summary:
Amid the ongoing no-confidence motion against PM Narendra Modi-led NDA government, the official Twitter handle of Congress wrote, "PM Modi claimed he will revolutionise women's safety in India.
This was his only revolution," Congress claimed while depicting a worldwide survey which included Pakistan.
Summary:
He slammed PM Modi for promising â¹15 lakh to every person, adding that the PM is a "bhagidaar in corruption".
Summary:
Singapore-based Temasek Holdings reportedly bought shares worth at least $30 million from Ola's early and former employees as part of a secondary share sale.
Summary:
A ragpicker's son from Madhya Pradesh's Dewas ranked 707th in the AIIMS medical entrance exam and secured admission at AIIMS Jodhpur.
Summary:
A 22-year-old woman in Haryana's Panchkula has alleged that 40 men held her captive in an isolated government guest house and raped for four days after luring her for a job, the police said.
Summary:
The business class of Air India Newark-Mumbai flight on Thursday was infested with bed bugs which reportedly left an infant covered in bites and blood.
Summary:
Till now, the unavailability of Wi-Fi and mobile phone network due to jammers inside the houses meant making physical copies of all bills, amendments and reports for all members.
Summary:
Jacqueline Fernandez will star opposite Kartik Aaryan in Hindi remake of Kannada film 'Kirik Party', which will be their first film together, as per reports.
Summary:
Indian all-rounder Hardik Pandya accepted his brother Krunal and Afghanistan's spinner Rashid Khan's challenge to face bouncers from them after Krunal shared a video of him bowling a bouncer to an England Lions batsman.
Summary:
The hospital is yet to ascertain the reason behind their illness.
Summary:
Park is already serving a 24-year prison sentence for corruption and abuse of power.
Summary:
ICC has revealed that four international captains reported approaches to the council's Anti-Corruption Unit (ACU) between June 1, 2017 to May 31, 2018.
Summary:
Messaging app WhatsApp has said that it is testing a limit on forwarding messages to five chats at one time in India.
Summary:
Former PM HD Deve Gowda lost a no-confidence motion after being in power for 10 months in 1997.
Summary:
A 27-year-old Indian man in Canada has been shot dead at his home by four assailants in Brampton city.
Summary:
Netflix has changed the English translation of the word 'fattu', used for former Prime Minister Rajiv Gandhi, in the subtitles of its show 'Sacred Games', the company's lawyer told court.
Summary:
Summary:
Ishaan Khatter, while speaking about his equation with his half-brother Shahid Kapoor, said, "The concept of a half-brother has never been there in our home." "I've literally grown up with him as all siblings do.
Summary:
Suryawanshi claimed she and her family were evicted before the lock-in period as Ranbir wanted to shift into the premises.
Summary:
To handle such volumes of data, Facebook runs trillions of configuration checks daily, while simultaneously delivering updates to users in their respective languages.
Summary:
The Congress has been asked to vacate its Allahabad office after it failed to pay the â¹35 per month rent for years.
Summary:
Patanjali staff can use the delivery bikes to earn extra income, Johri added.
Summary:
Scientists believe that NASA's Chandra X-ray Observatory may have, for the first time ever, observed a parent star consuming the debris of nearby planets that got destroyed.
Summary:
Neil Armstrong's NASA application to become an astronaut had reached a week later than the deadline of June 1, 1962.
Summary:
Four-month-old Cherry, reportedly the smallest surviving baby in India and South East Asia, weighed 375 grams at the time of her birth in Hyderabad.
Summary:
Researchers led by University of Alberta, Canada have discovered the first-ever snake embryo, preserved in 105-million-year-old amber.
Summary:
The girls were lured, kidnapped, and taken to Bengaluru and Mangaluru, while the police tracked them after the victim's mother filed a missing complaint.
Summary:
A four-year-old girl was allegedly raped by a 15-year-old boy in Moradabad, UP on Thursday.
The girl reportedly went to the accused's place to play when the boy took her to a room and forced himself upon her.
Summary:
A total of â¹1,484 crore was spent on chartered flights, maintenance of aircraft and hotline facilities for PM Narendra Modi's foreign visits to 84 countries since 2014.
Summary:
Former WWE wrestler Hulk Hogan was re-inducted into the WWE Hall of Fame after three years.
Summary:
Switzerland's junior squash champion Ambre Allinckx has pulled out from the World Junior Squash Championships in Chennai as the 16-year-old's parents felt that India is unsafe for women.
Summary:
Brazilian Alisson Becker became the world's most expensive goalkeeper after English Premier League side Liverpool FC signed him for a deal estimated to be worth just under â¹600 crore (ã66.8 million).
Summary:
Organisers of the Women's Hockey World Cup placed the Indian national flag without the Ashoka Chakra during a photoshoot with the teams' captains before the kick-off of the tournament.
Summary:
Talking about the advances in artificial intelligence (AI), Microsoft CEO Satya Nadella has said that the company is going to infuse everything with AI.
Summary:
The government has issued a second notice to WhatsApp, seeking more effective solutions to curb fake news.
Summary:
Accusing Elon Musk of over-promising on Tesla's capabilities, American investor Jim Chanos said, "What bothers me...
Summary:
Astronauts aboard Apollo 11, which landed on the moon on July 20, 1969, filled out customs forms, a standard procedure for international travellers, on returning from their mission.
Summary:
The second man to walk on the Moon, Buzz Aldrin, once punched a conspiracy theorist for claiming that the first-ever Moon landing was fake.
Summary:
Obama was on a two-day visit to Kenya, visiting his father's native country for the first time since leaving office.
Summary:
IPL Chairman Rajeev Shukla's executive assistant Akram Saifi was forced to resign after being accused of demanding prostitutes in return for selection in the UP team, a BCCI official said.
Summary:
A no-confidence motion can be moved by any House member who feels the government in power doesn't have the majority.
Summary:
The archaeological site 'Rani ki Vav' that features on the rear of new â¹100 notes is a UNESCO World Heritage Site in Gujarat's Patan.
Summary:
The Rupee on Thursday took a 43-paise dip, the biggest single-day fall since May 29, to close at an all-time low of 69.05 against the US dollar.
Summary:
In another post, she wrote she received "many me-too messages" from customers who faced similar issues with Samsung products.
Summary:
Sridevi's daughter Janhvi Kapoor's debut film 'Dhadak', which released today, "is a simple tale told in a beautiful way," wrote Bollywood Hungama.
Times Now called 'Dhadak' "an excellent piece of film-making with captivating performances".
Summary:
Summary:
During a debate on the Fugitive Economic Offenders Bill, 2018 in the Lok Sabha on Thursday, interim Finance Minister Piyush Goyal said he fails to understand the "foreign accent" of Congress MP Shashi Tharoor.
Summary:
Meanwhile, AIADMK and TMC have been allotted 29 minutes and 27 minutes of speaking time respectively.
Summary:
Samajwadi Party chief Akhilesh Yadav on Thursday said that after the 2019 Lok Sabha elections, India will have a new Prime Minister and he will be from Uttar Pradesh.
Summary:
The dairy farmers in Maharashtra will get â¹25/litre for milk with effect from July 21, the state government announced in the Legislative Assembly on Thursday after a four-day agitation by dairy farmers.
Summary:
The Lok Sabha on Thursday passed the Fugitive Economic Offenders Bill, 2018 after it was supported by majority of the Lower House.
Summary:
Expressing dissatisfaction over the cleaning of River Ganga, the National Green Tribunal on Thursday said the situation was extraordinarily bad and hardly anything effective had been done.
Summary:
Lakshmivara Tirtha, the head of the Shiroor mutt in Karnataka's Udupi, died on Thursday in a Manipal hospital, which suspects he was poisoned.
Summary:
Billionaire Kumar Mangalam Birla-promoted Idea Cellular lost 25.31 lakh subscribers in May, the maximum among Indian wireless carriers.
Summary:
US broadcasting giant Comcast has formally withdrawn its $65-billion bid to acquire most of media conglomerate 21st Century Fox. Comcast's bid was a premium of approximately 19% to the value of Disney's $52.4 billion all-stock offer for same set of assets.
Summary:
Noted Hindi poet and lyricist Dr Gopaldas Neeraj passed away on Thursday at the age of 93 in Delhi's AIIMS hospital.
Summary:
French defender Raphaël Varane has said 2018 FIFA World Cup's best young player Kylian Mbappé deserves to win the next Ballon d'Or.
Summary:
Denis Ten, the first Kazakh figure-skater to win an Olympic medal, was stabbed by two unknown assailants after he caught them attempting to steal his car mirrors.
Summary:
The previous fourth-most liked picture on Instagram was Ronaldo's post announcing the birth of his daughter in November last year.
Summary:
US Open 2018 men's and women's singles champions will get $3.8 million (over â¹26 crore) each and the tournament's total prize money will be $53 million (around â¹366 crore).
Summary:
Reacting to 17-time Grand Slam champion Rafael Nadal flying in the economy class while going from Barcelona to his home island Mallorca, a user tweeted, "New definition for humility." "Prime difference between Rafa and Fed. Guarantee that we won't see Fed in economy," tweeted another user.
Summary:
Earlier, WhatsApp also released full-page ads in newspapers listing tips on how to fight fake news.
Summary:
The TIME magazine has in its latest cover morphed the images of US President Donald Trump and his Russian counterpart Vladimir Putin following their first bilateral meeting.
Summary:
Trump earlier said he held Putin responsible for Russia's meddling in 2016 elections.
Summary:
The US, Australian and Japanese troops sunk the decommissioned USS Racine during the Rim Of The Pacific (RIMPAC) 2018 naval exercise.
Summary:
UK's Prince Charles will give evidence in an inquiry into child sexual abuse by bishop Peter Ball.
Summary:
This translates to $1 (â¹37 in 1997) invested in Amazon during its IPO is now worth over $1,233 (â¹85,000).
Summary:
This takes the total worth of products burnt by Burberry over the last five years to over â¹806 crore.
Summary:
The card also carries instructions for the guests to put the card to use later.
Summary:
Summary:
Being repeatedly questioned over accountability for Facebook's recent data scandal, CEO Mark Zuckerberg asked the interviewer, "Do you really want me to fire myself right now?".
Summary:
Samajwadi Party MP Ram Gopal Yadav on Thursday used foul language while responding to a reporter's question on the no-confidence motion outside the Parliament.
Summary:
After receiving death threats for getting married despite belonging to different religions, a Kerala couple uploaded a video of themselves on Facebook, saying, "What are you going to get by killing us?" "We got married a couple of days back...I've uploaded the photo as my profile picture.
Summary:
Mukesh Ambani's Reliance Foundation's Jio Institute has claimed that it is projected to earn â¹100 crore from 1,000 students in its first year.
Summary:
The salient features of the new lavender-coloured â¹100 banknote to be issued soon include raised printing of Mahatma Gandhi portrait, Ashoka Pillar emblem and raised triangular identification mark with micro-text â¹100, for the visually impaired.
Summary:
On being named an accused in Aircel-Maxis case, ex-Finance Minister P Chidambaram said, "CBI has been pressured to file a chargesheet to support a preposterous allegation against me and officers with a sterling reputation." He allegedly misused his position in approving â¹3,500-crore FDI in Aircel-Maxis deal.
Summary:
Berkshire Hathaway shares surged 5.1%, the most in almost seven years, lifting Buffett's fortune to $83.1 billion.
Summary:
Aditya Birla Group Chairman Kumar Mangalam Birla has said that the ongoing trade wars, especially the one between the US and China, will have negative impact on the Indian economy.
Summary:
Singer-composer Vishal Dadlani, while retweeting a video of a sadhu singing on the streets, wrote that he would "love to write, record and produce music" with him.
Summary:
Pooja Bhatt shared a collage of pictures from 'Tamanna', the first film she produced and revealed along with her, her half-sisters Alia Bhatt and Shaheen Bhatt were also part of the film's cast.
Summary:
A group of children at a football school in Russia re-enacted the 2018 FIFA World Cup final, which France won 4-2 against Croatia.
Summary:
Summary:
A defender was sent off for a two-footed WWE-style 'drop kick' tackle on his opponent during a UEFA Champions League qualifier match.
Summary:
Juventus forward Cristiano Ronaldo, who went to Greece for a holiday with family and friends after Portugal exited the 2018 FIFA World Cup, reportedly left a tip of around â¹16 lakh for the staff of a luxury resort.
Summary:
Volvo parent Geely-owned startup Terrafugia has announced that the first production models of its hybrid-electric flying car Transition will go on sale sometime in 2019.
Summary:
A jet suit developed by British inventor Richard Browning which can travel at 51 kmph has gone on sale in the UK, priced at â¹3 crore.
Summary:
Google-owned video sharing platform YouTube now allows users to add hashtags to video descriptions titles to make it easier to search for their channels and content.
Summary:
Homegrown e-commerce startup Flipkart has approached grocery delivery startup Grofers for an acquisition to build on its grocery services, according to reports.
Summary:
A Chinese student has reportedly become the first person in the country to sue a college over alleged sexual assault after filing a lawsuit against the Nanchang University.
Summary:
Princess Eugenie, the granddaughter of UK's Queen Elizabeth II, has invited 1,200 commoners to her wedding who will able to apply to attend via an online ballot.
Summary:
Authorities in Nigeria have arrested eight Boko Haram militants over the abduction of more than 200 schoolgirls in the town of Chibok in 2014.
Summary:
India's biggest power producer NTPC has signed a term loan agreement with HDFC Bank for availing a loan of â¹1,500 crore.
Summary:
Kotak Mahindra Bank lost â¹9,873 crore in market capitalisation on Thursday after it reported a nearly 9% quarter-on-quarter decline in net profit to â¹1,025 crore for first quarter of FY19.
Summary:
In 2017, 15 lakh students' data was put for sale for â¹60,000.
Summary:
Congress leader P Chidambaram has been named as an accused in Aircel-Maxis case in a chargesheet filed by the CBI on Thursday.
Summary:
Delhi's 39-year-old air hostess Anissia Batra allegedly texted a friend two hours before jumping off her house's building that her husband Mayank Singhvi has locked her up inside a room and she should call police.
Summary:
Speaking about being labelled as "anti-Hindu" based on the trailer of his film 'Mulk', director Anubhav Sinha said, "Instead of calling me pro-Muslim or anti-Hindu...it's wise to find out the...story from the film." "A trailer is a glimpse...It's not the whole movie," he added.
Summary:
Tyce, who was blindfolded, was supposed to catch Mary's feet while she dropped herself from the bar but failed to do so.
Summary:
Former Team India captain Mahendra Singh Dhoni's main profile on BCCI's official website still shows him as captain, despite him having left international captaincy last year.
Summary:
The European Union hit Google with a record â¹34,000-crore fine on Wednesday for breaking antitrust laws, saying the tech giant abused its Android market dominance.
Summary:
Talking to his team ahead of test launch on Wednesday, aerospace startup Blue Origin's Founder Jeff Bezos said, "This flight is getting us closer to putting humans in space", adding that the flight is important "from that point of view".
Summary:
Meanwhile, TDP has asked all its members to be present in the Parliament on Thursday and Friday to support the motion against the Council of Ministers.
Summary:
SoftBank's CEO Masayoshi Son slammed Japan for prohibiting ride-sharing services calling the country "stupid".
Summary:
The designation comes after the discovery of a stalagmite rock in Meghalaya's Mawmluh cave.
Summary:
The Income Tax Department has seized reportedly 100 kg of gold and â¹10 crore cash during raids on a Lucknow-based company.
Summary:
A Pakistani man allegedly tried to dupe a Mumbai woman on a matrimonial site by posing as an Indian doctor working in London.
Summary:
Marlin James Mack, the killer of Indian student Sharath Koppu had a long criminal record in the US, the local media reported.
Summary:
A British man has been found guilty of plotting to assassinate PM Theresa May by first detonating an explosive device to get into her official residence and then using a knife or a gun to attack her.
Summary:
Khalil, a Christian, said he was named after one of his father's best friends.
Summary:
The Supreme Court on Wednesday directed the Centre to form proper guidelines within two weeks to blacklist contractors, architects and builders found to have constructed buildings against sanctioned plans.
Summary:
Kotak Mahindra Bank has reported a 12.3% year-on-year rise in net profit to â¹1,025 crore for first quarter of FY19.
Summary:
Tweeting a post which shows her father Anil Kapoor and Juhi Chawla posing for a magazine in the 90s, Sonam Kapoor wrote, "Can't wait to see you...reunite [onscreen] after so many years." Anil and Juhi will be paired together after 11 years in 'Ek Ladki Ko Dekha Toh Aisa Laga'.
Summary:
After failing to make it to the squad for Tests against England, Indian batsman Rohit Sharma tweeted, "Sun will rise again tomorrow." The 31-year-old, who was dropped during the three-match Test series against South Africa after playing the first two matches, was also not named in the squad for the one-off match against Afghanistan.
Summary:
Following their release from the hospital, the 12 boys trapped in a cave in Thailand played football on Wednesday during their first public appearance since their rescue.
Summary:
Juventus forward Cristiano Ronaldo's mother, Maria Dolores Aveiro, has denied reports that she wanted the five-time Ballon d'Or winner to play for Manchester United again after leaving Real Madrid.
Summary:
For instance, on tapping, the 'Trumpy Cat' speaks in Donald Trump's voice using the US President's statements.
Summary:
Meanwhile, the Aam Aadmi Party (AAP) has directed its MPs to vote in favour of the no-confidence motion.
Summary:
Two women have accused a priest of sexually assaulting them in separate incidents last month at a temple in south Goa. One of the victims claimed the accused had hugged her tightly and attempted to kiss her on the pretext of asking her to take "pradakshina".
Summary:
Iranian President Hassan Rouhani ignored eight calls by US President Donald Trump requesting a meeting between the two leaders, Iranian presidential aide Mahmoud Vaezi said.
Summary:
Pakistan's Punjab province has said that former PM Nawaz Sharif is getting all the facilities he is entitled to under the law, including a TV, special cook and bed among other things.
Summary:
The Reserve Bank of India on Thursday announced it will shortly issue lavender coloured new â¹100 denomination banknotes in the Mahatma Gandhi (New) Series.
Summary:
Cricketer Rahul Sharma has reportedly accused IPL Chairman Rajeev Shukla's executive assistant Mohammed Akram Saifi of asking him to arrange prostitutes in return for selection in the Uttar Pradesh state team.
Summary:
Sonali Bendre, who's currently undergoing treatment for cancer in New York, shared a picture with her 12-year-old son Ranveer and wrote that he took the news of her cancer diagnosis "maturely".
Summary:
Television actress Hina Khan has slammed reports saying she has been sent a legal notice by a jewellery company on charges of cheating.
Reports had said Hina cheated the jewellery company of ornaments worth â¹12 lakh.
Summary:
In celebration of its 50th anniversary on Wednesday, American chipmaker Intel flew 2,018 drones over its facility in Folsom, California, setting a new Guinness World Record for the most unmanned aerial vehicles airborne simultaneously.
Summary:
The EU has fined Google for 'illegally' abusing Android dominance against rivals.
Summary:
CEO Mark Zuckerberg has said Facebook cannot remove all the misinformation on it as the social network is about "giving people a voice so they can express their opinions." However, "our responsibility is to prevent hoaxes from being widely distributed," added Zuckerberg.
Summary:
But Elon's innovation on climate cannot be denied," the executive tweeted.
Summary:
Standard Chartered Bank's equity arm Standard Chartered Private Equity (SCPE) has agreed to acquire Naspers' stake in Indian travel major Travel Boutique Online (TBO).
Summary:
BJP MP RP Sharma's daughter Pallavi Sharma and 18 other government officers have been arrested in connection with the Assam Public Service Commission cash-for-job scam.
Summary:
"We were not consulted and no survey was done to identify dangerous trees," Forest Department officials said.
Summary:
The Delhi High Court has said every vehicle in the city has to comply with the Motor Vehicles Act, 1988, and display number plates, even those designated for the President, Vice President, Governors and Lieutenant Governors.
Summary:
The Turkish government has ended the nationwide state of emergency imposed following a failed coup attempt in July 2016 that killed over 250 people and wounded nearly 2,200.
Summary:
Commenting on US President Donald Trump's attempts to backtrack on comments he made during his summit with Russian President Vladimir Putin, German Foreign Minister Heiko Maas has said US' allies demanded a "minimum degree of reliability" from Trump.
Summary:
The bird, which mistook the girl for prey, can be seen attacking her from behind.
Summary:
The legislation, under which consent would have to be explicit, states that "yes means yes" and anything else, including silence, means no.
Summary:
Outgoing Chief Economic Adviser Arvind Subramanian, who will move back to the US in September, has said the country should judge him for his work and not on his country of residence.
Summary:
Aishwarya Rai Bachchan took to Instagram to share an old pic with former South African President Nelson Mandela to mark his 100th birth anniversary, which was on Wednesday.
Summary:
"Janhvi wanted to dedicate her first film to her mother and it was only obvious for the makers to include this...tribute in the film," reports stated.
Summary:
Vida then hugged and thanked Subasic, who kept on holding his shirt.
Summary:
Sachin Tendulkar's son Arjun Tendulkar got out for a duck in his first-ever innings for India Under-19.
Summary:
Mumbai-based healthcare startup Medlabz, founded by six alumni from IIT Bombay and IIT Delhi, offers diagnostic services using its AI-based symptom-to-disease search engine.
Summary:
Tom Gruber, the last of three voice assistant Siri's Co-founders still at Apple, has quit from his role in the company's Product Design group.
Summary:
"Every Indian has the right to know the truth.
Summary:
Schools will now be allowed to withhold students' promotion to the next class if they fail in either class.
Summary:
The Israeli parliament has passed into law a bill that defines the country as an exclusively Jewish state.
Summary:
Haley said UNHRC's members included some of the "worst human rights violators".
Summary:
E-commerce giant Amazon briefly crossed $900-billion market cap for the first time in its history on Wednesday, becoming only the second company after Apple to achieve this milestone.
Summary:
Elnaaz Norouzi, who portrayed an actress in an abusive relationship with a movie star in 'Sacred Games', has said although her character is similar to Katrina Kaif, it's not inspired by her.
Summary:
A BCCI official has slammed the decision to play half-fit Bhuvneshwar Kumar in the third England ODI, which aggravated his back injury.
Summary:
After former captain MSâÂÂDhoni's gesture of asking the match umpires for the ball raised retirement speculations, coach Ravi Shastri said, "That's rubbish.
Summary:
World's richest person Jeff Bezos-founded aerospace startup Blue Origin successfully launched its space capsule, New Shepard, breaking its own record of highest-ever test flight at nearly 120 km.
Summary:
US-based Walmart is reportedly planning to hire foreign executives for senior roles at Flipkart including Chief Financial Officer, legal counsel and compliance officer to uphold anti-corruption laws.
Summary:
After Blue Origin broke its own test flight record, founder Jeff Bezos took to Twitter to reveal that his "lucky boots worked again".
Summary:
Over 1.10 lakh cases of rape were registered in India between 2014-16, Union Minister of State for Home Affairs Kiren Rijiju informed the Rajya Sabha on Wednesday.
Summary:
In a recently released video, Israeli PM Benjamin Netanyahu can be heard saying that it was Israel that convinced US President Donald Trump to withdraw from the Iran nuclear deal.
Summary:
A horse trainer at the stable, where the man was caught, said the animal had been left "traumatised".
Summary:
Notably, the flight school has been involved in a total of 29 incidents since 2007.
Summary:
The Delhi High Court has directed former Ranbaxy promoters, Malvinder and Shivinder Singh, to disclose their foreign bank accounts and assets in a case related to execution of â¹3,500-crore arbitration award that Japanese drugmaker Daiichi won.
Summary:
Taapsee Pannu, who'll be seen playing a lawyer in 'Mulk', while talking about her inspiration for the role, said, "On celluloid, [Amitabh] Bachchan sir's character...in 'Pink'...was the best point of reference." "While of course, we're diverse as actors...there were still nuances of the role which I picked up," she added.
Summary:
The script of 'Munna Bhai 3' is still being written, Hirani had said.
Summary:
Summary:
The startup last raised $30 million in a funding round led by Google parent Alphabet's investment arm, GV.
Summary:
Talking about the no-confidence motion moved by Congress against NDA government, Union Minister Ananth Kumar said, "Soniaji's maths is weak.
Earlier, asked about the motion, Congress leader Sonia Gandhi had said, "Who says we don't have the numbers?"
Summary:
Union Minister VK Singh on Wednesday said that the government is engaged with relevant authorities abroad to look into ways to bring back the Kohinoor diamond from the UK.
Summary:
The station code for the newly renamed Prabhadevi station will be PBHD, the statement added.
Summary:
Police then reached the school and detained the girl and her mother.
Summary:
The exercise will involve over 100 aircraft from around the globe, the IAF said.
Summary:
During the monsoon session in the Lok Sabha on Wednesday, Union Minister Jitendra Singh said that 21 nuclear reactors with a total installed capacity of 15,700 megawatt are currently under construction.
Summary:
The US had placed Khalil on the Specially Designated Global Terrorist list in 2014.
Summary:
A footage of a plane crash purportedly shot by one of the passengers onboard in South Africa's Pretoria has surfaced online.
Summary:
The meeting between Trump and Putin did not include any staff other than the translators.
Summary:
US President Donald Trump on Wednesday said it's "true" Russia meddled in the 2016 US presidential election, and he would hold Russian President Vladimir Putin responsible for interference.
Summary:
Summary:
The union added that the advertisement aimed to create distrust in the banking system.
Summary:
Further, Facebook-owned Instagram also witnessed 3 billion interactions with over 270 million people globally posting about the World Cup this year.
Summary:
A lawyer who registered a complaint after spotting rats and being served sub-standard food in a compartment of Mumbai-Ernakulam Duronto Express in 2015 has been awarded â¹19,000 compensation by a Mumbai consumer forum.
Summary:
The police has said that a family of four that went missing, after an under-construction building fell on another building in Uttar Pradesh's Greater Noida on Tuesday night, had arrived at the apartment just four days ago.
Summary:
The RBI will issue new â¹100 notes in a smaller size than previous version and with violet colour as the base, reports said.
Summary:
A Muslim cleric was arrested after he slapped Farah Faiz, a female advocate fighting against Triple Talaq, during a debate on a live TV show.
Summary:
Blankfein, who's been CEO since 2006, will receive bulk of that pay in performance-based shares and cash awards that were to be earned through 2024.
Summary:
Crutcher had been at the company for 22 years before assuming CEO's role.
Summary:
Airtel Chairman Sunil Mittal's total remuneration for last fiscal is two times than that of Reliance Industries Chairman Mukesh Ambani.
Summary:
Summary:
Argentina captain Lionel Messi was the most discussed player on Facebook during the 32-day 2018 FIFA World Cup followed by Brazilian forward Neymar and Portugal captain Cristiano Ronaldo, the social media platform has revealed.
Summary:
Following India's series defeat against England, ex-cricketer Virender Sehwag said that he feels MS Dhoni is not the "same person that he was before as age has started to catch up with him".
Summary:
"Dhoni is playing a lot of dot balls...He needs to be more pro-active," Gambhir added.
"I haven't seen MS play so many dot balls a couple of years back.
Summary:
Coach Ekaphol Chantawong who was stuck in a Thai cave with twelve of his players said on Wednesday that they all felt guilty about the death of former Navy SEAL Saman Kunan who died during the rescue operation.
Summary:
The 20-year-old hurled the javelin to a distance of 85.17 to bag the gold medal.
Summary:
Pacer Mohammad Shami has been summoned by a Kolkata court after a â¹1-lakh cheque that he gave to his estranged wife Hasin Jahan bounced.
Summary:
He had served as a two-term Rajya Sabha MP when he was nominated for a term from August 2003 to August 2009 and elected to another term as a BJP MP in 2010.
Summary:
A 40-year-old woman along with her sisters allegedly cut off the ears of her 20-year-old husband Tanveer at gunpoint in Kolkata on Tuesday.
Summary:
"Paintings under possession of Air India are the precious heritage of the country," he added.
Summary:
Trump further said he discussed important subjects with Putin during their recent summit.
Summary:
The wreckage of Russian warship 'Dmitrii Donskoi' believed to be carrying gold worth $133 billion has been found off the South Korean island of Ulleungdo.
Summary:
Saudi Arabia has announced that it is banning several popular video games after a 13-year-old girl and a 12-year-old boy reportedly killed themselves while completing the Blue Whale Challenge.
Summary:
Markets regulator SEBI has said it will auction 43 properties of Pancard Clubs (PCL) as well as five vehicles, including Mercedes-Benz and Toyota Innova, owned by the company.
Summary:
The ED alleged the firm took loans of over â¹5,000 crore from an Andhra Bank-led consortium, which turned into bad loans.
Summary:
The infusion is a part of remaining â¹65,000 crore out of â¹2.11 trillion capital infusion over two financial years.
Summary:
Summary:
In their first-ever press conference on Wednesday, four of the twelve boys rescued from a cave in Thailand said that they want to be Navy SEALs when they grow up.
Summary:
Mahajan said discussions regarding the motion led by the TDP will take place on Friday.
Summary:
Anti-apartheid revolutionary Nelson Mandela had attributed his success to Mahatma Gandhi while receiving the Nobel Peace Prize in 1993.
India conferred Mandela with the International Gandhi Peace Prize in 2001.
Summary:
US-based moving company Bellhops' CEO Luke Marklin has gifted his own car to an employee who walked (20 miles) 32-kilometres after his car broke down to make his first day at work.
Summary:
Actress Rajshri Deshpande, who went topless for scenes in the web series 'Sacred Games', while speaking about the criticism over the scenes, said, "They (the audiences) are immature and don't understand the relevance of these scenes." "I'm not dancing on something...derogatory.
Summary:
'Dhadak' director Shashank Khaitan has said if his idea was to make a "blockbuster", he would have approached bigger stars who would have given him a larger audience.
Summary:
Actress Priyanka Chopra celebrated her 36th birthday with her rumoured boyfriend, American singer Nick Jonas, in London.
Priyanka also shared an Instagram story on Tuesday night which showed a plate of desserts with 'Happy Birthday Priyanka' written on it, and captioned it, "And it starts!!
Summary:
EU issued the fine over Google's "illegal" restrictions on smartphone makers and mobile network operators using its Android operating system.
Summary:
The European Union has slapped a record â¬4.34-billion (over â¹34,000-crore) fine on Google for anticompetitive "illegal practices" with its Android operating system.
Summary:
On being asked about Opposition not having enough numbers to push the no-trust motion against the BJP-led government, Congress leader Sonia Gandhi said, "Who says we don't have the numbers?" To pass the motion to oust the current council of ministers, a simple majority of Lok Sabha MPs is required.
Summary:
In one of India's biggest tax recoveries, officials have found around â¹163 crore cash and 100 kg gold during raids on Tamil Nadu-based road construction company SPK Group and its Managing Director Nagarajan Seyyadurai.
Summary:
MGM Resorts International has filed a lawsuit against over 1,000 victims of the Las Vegas mass shooting that took place last year.
Summary:
Iran has arrested 46 people for posting images on Instagram in its latest crackdown against "immoral" behaviour, the state media reported.
Summary:
The net worth of world's richest person and Amazon CEO, Jeff Bezos, is more than the Gross Domestic Product (GDP) of Hungary.
Summary:
After hitting a record high of 36,747.87 during intraday trading, benchmark index BSE Sensex fell 146.52 points to end Wednesday's trading session at 36,373.44.
Summary:
Mukesh Ambani-led Reliance Industries plans to raise about â¹40,000 crore in debt during FY19 as it expands its consumer businesses, according to reports.
Summary:
Since they did not honour their commitment, Malaika declined to go," reports said.
However, the organisers said the issue has been sorted and the event has been rescheduled.
Summary:
Former captain Sourav Ganguly has said Ajinkya Rahane and KL Rahul are not being "looked after properly".
You have to have solid number four and five," he further said.
Summary:
Google-owned smart home device making startup Nest's CEO Marwan Fawaz is stepping down, the technology giant has confirmed.
Summary:
Earlier, it was reported that Twitter suspended 70 million accounts in May and June to stop misinformation on its platform.
Summary:
Talking about the social media platforms like Facebook and Twitter, US Congressman Steve King suggested converting "the large behemoth organisations...
Summary:
Mumbai-based micro-hospitality startup SaffronStays has raised $2 million in a pre-Series A funding round from venture capital firm Sixth Sense Ventures.
Summary:
Union Minister Ashwini Choubey on Wednesday slammed Congress leader Shashi Tharoor, calling him "schizophrenic" and asked him to clarify whether he was an Indian or a Talibani.
Summary:
Hungary will withdraw from the Global Compact for Safe, Orderly and Regular Migration agreement which will be adopted in December, Foreign Minister Peter Szijjarto has said.
Summary:
Iran is planning to jointly manufacture defence equipment with Pakistan and present them as a joint achievement of Muslim nations, the Iranian state media reported.
Summary:
Earlier in June, another pilot was killed when an Indian Air Force fighter jet crashed in Gujarat.
Summary:
Former South African President Nelson Mandela's first meal after his release from prison after 27 years on February 11, 1990 was Indian chicken curry.
Summary:
American singer Katy Perry has revealed that she had bouts of situational depression after the failure of her 2017 album 'Witness'.
Summary:
Reports added that Priyanka, who got married three years ago, was living seperately from her husband for the last two months.
Summary:
Twenty-year-old wicketkeeper-batsman Rishabh Pant has earned a maiden call-up to the Indian Test squad after being named in the 18-member squad for the first three Tests against England.
Summary:
Telecom regulator TRAI's Chairman RS Sharma has said entities should not try to hide data breaches.
Summary:
Online ticketing platform BookMyShow has raised $100 million in Series D funding led by private equity firm TPG Growth.
The Mumbai-based company has raised over $200 million so far.
Summary:
During proceedings against Section 377 in the Supreme Court, CJI Dipak Misra said, "If 377 goes away entirely, there'll be anarchy...We're only on consensual acts between adults in private.
Summary:
Phool Singh Meena, 55-year-old BJP MLA in Rajasthan, resumed his studies after 40 years and is now appearing for his BA first year exams.
Summary:
The Sri Lankan police on Tuesday arrested a man on suspicion of feeding beer to his one-year-old son.
Summary:
Called the International Wet Gunpowder Award, the prize was handed over to a lookalike of the US leader.
Summary:
American chipmaker Intel, which was founded 50 years ago in California on July 18, has an asteroid named after its 8080 microprocessor.
Summary:
Police in New Jersey, US, posted a mugshot of a pug on social media after they found the canine in a yard last week.
Summary:
Actress Kangana Ranaut, while talking about being outspoken in the industry, said, "Bullies need to be put in their place and that's what I did." "I don't think I have paid any price.
Summary:
'Dhadak' director Shashank Khaitan, while talking about the film's comparison with Marathi film 'Sairat', said, "These comparisons can't shake me." "The negativity isn't unexpected, but I am nullifying it with my positivity," added Khaitan.
Summary:
Rajkummar will play a struggling Gujarati businessman while Mouni will be seen as a Mumbai girl in the film.
Summary:
World Cup-winning player Paul Pogba delivered an inspirational speech before France's last-16 win over Lionel Messi-led Argentina, telling his team-mates, "today we will kill them.
I want to party tonight...I want to see warriors on the field," Pogba added.
Summary:
Former Australian wicketkeeper-batsman Adam Gilchrist jokingly said he knows the dimensions of Sachin Tendulkar's "arse from seeing it in close range from keeping behind him for hour after hour after hour".
Summary:
Photo-sharing app Instagram is testing a feature to allow public accounts to remove their followers, a spokesperson for the platform said.
Summary:
US-based self-driving car startup Zoox has raised $500 million at a $3.2 billion post-money valuation.
Summary:
Slamming the Karnataka CM HD Kumaraswamy-led government after a Congress minister reportedly gifted iPhones to 40 MPs from the state, BJP tweeted, "This government is a shame on democracy." This comes after BJP MP Rajeev Chandrasekhar refused the gift, calling it "unacceptable that public money is misspent like this".
Summary:
Gurugram-based used car buying startup Cars24 has raised $50 million from Sequoia Capital and early backers including Kingsway FCI Fund and Toronto-headquartered KCK Global Limited.
Summary:
After a mob allegedly attacked him in Jharkhand on Tuesday, social activist Swami Agnivesh said, "This was an attempt to murder, I could've been murdered.
Summary:
Former Uttar Pradesh CM Akhilesh Yadav on Tuesday stopped and helped accident victims whose car had overturned while trying to avoid an animal on the Agra-Lucknow Expressway.
Summary:
Jharkhand Minister CP Singh on Wednesday said that Swami Agnivesh, who claims he was attacked by BJP youth workers, planned the attack himself to gain popularity.
Summary:
In her complaint, the accused's sister claimed he also pierced his mother's eyes with some pointed object after killing her.
Summary:
After huge traces of cancer-causing chemical formalin were found in fish consignments, Goa CM Manohar Parrikar on Wednesday banned import of fish from neighbouring states for 15 days.
Summary:
Former South African President Nelson Mandela was awarded India's highest civilian honour, the Bharat Ratna in 1990 for his role in the anti-apartheid movement.
Summary:
Dwayne Johnson, with earnings of $124 million (â¹850 crore) in the past 12 months, has been named the highest-paid actor by Forbes.
Summary:
Elon Musk has apologised to British cave diver Vernon Unsworth, who helped in Thai cave rescue, for calling him a 'pedo', and added, "The fault is mine and mine alone." "My words were spoken in anger after Mr. Unsworth...
Summary:
Actress Priyanka Chopra, who turned 36 on Wednesday, had featured in a 2001 music video titled 'Sajan Mere Satrangiya' by Daler Mehndi.
Summary:
Brazil tweeted the most followed by Japan and UK.
Summary:
Taking a dig at BJP, Congress shared a video clip of French football player Paul Pogba looking around in mock confusion asking, "Where, Where, Where" and a caption above reading, "When someone says "Ache Din"".
Summary:
Several tech leaders including Tesla and SpaceX CEO Elon Musk have signed a pledge promising to not develop "lethal autonomous weapons".
Summary:
Congress moved a no-confidence motion against the NDA government in the Lok Sabha on the first day of the Monsoon session of the Parliament on Wednesday.
Summary:
While hearing petitions against the Section 377, the Supreme Court on Tuesday said unsafe sex and living in denial should be blamed for spread of sexually transmitted diseases like AIDS and not homosexual relationships.
Summary:
A total of 12 tankers, each carrying 44,000 litres milk, will be transported.
Summary:
India's first government-sponsored 'Transgender Poets' Meet' was organised on Tuesday at the Sahitya Akademi in West Bengal's Kolkata.
Summary:
A 12-year-old boy, one of the five minors accused of gangraping an eight-year-old girl after watching porn in Uttarakhand, had also molested a one-year-old baby, police said.
Summary:
A 53-year-old businessman in Mumbai has been arrested and charged under Section 377 of the Indian Penal Code and POCSO Act for allegedly having sex with a minor boy.
Summary:
At least 17 men accused of raping the 11-year-old hearing-impaired girl in Chennai for over six months also filmed each other and took her nude photographs while committing the crime, police said.
Summary:
Following his visit to the UK earlier this month, US President Donald Trump falsely claimed that Queen Elizabeth II inspected a guard of honour for the first time in 70 years because of his visit.
Summary:
As US President Donald Trump read a statement expressing his "full faith and support" to the US intelligence agencies, lights went out at the White House.
Summary:
Prison authorities launched an investigation into the matter after the video surfaced online.
Summary:
At least three people were killed on Tuesday after two small planes from a flight school in Florida, US, crashed midair.
Summary:
The Oxford Aviation Academy has received applications from hundreds of women.
Summary:
Obama added people must "resist cynicism" in global politics.
Summary:
Former Team India captain MS Dhoni was spotted taking the match ball to the dressing room after India's ODI series defeat to England.
Summary:
Harris was one of the last people who got out of the cave after all the boys and their coach were rescued.
Summary:
Following Tesla shares plummeting by $2 billion, investors have demanded an apology from CEO Elon Musk after the billionaire's "pedo" remark on a British diver who helped rescue the youth football team stuck in the Thailand cave.
Summary:
"We hope Parliament functions smoothly, whatever issues any party has, it can raise on the floor of the house," he added.
Summary:
Reacting to protests against his "Hindu Pakistan" remark, Congress leader Shashi Tharoor on Tuesday said, "Have they [BJP] started a Taliban in Hinduism?" "They are asking me to go to Pakistan.
Summary:
The MLA had been travelling in a private vehicle and officials were unable to see the MLA sticker, reports said.
Summary:
The new teams will include a photographer and a person to collect all DNA and physical evidence.
Summary:
Prior to this, Kohli had led India to eight ODI series victories since 2013, against Zimbabwe, Sri Lanka (twice), South Africa, Australia, Windies, England and New Zealand.
Summary:
Actress Priyanka Chopra made her acting debut opposite Vijay in the 2002 Tamil film 'Thamizhan'.
Priyanka went on to make her first appearance in Bollywood in the 2003 film 'The Hero: Love Story of a Spy', which also starred Sunny Deol and Preity Zinta.
Summary:
England's Joe Root celebrated his match-winning 100*(120) with a 'bat drop' gesture on Tuesday, after the hosts won an ODI series against India after nearly seven years.
Summary:
A day before the Monsoon Session of the Parliament, TDP met various political parties to seek support for its no-confidence motion against the BJP-led NDA government at the Centre.
Summary:
The new CWC also includes former party chief Sonia Gandhi, and former PM Dr Manmohan Singh as members.
Summary:
Amid reports of Uber facing federal investigation by the US Equal Employment Opportunity Commission over alleged gender discrimination, the company's CEO Dara Khosrowshahi has said that he takes sole responsibility.
Summary:
This brings the total number of Jovian moons to 79, the most for any planet.
Summary:
A draft amendment to the Central Motor Vehicles Rules has proposed that driving licence and pollution control certificates can be carried in physical or digital form, Ministry of Road Transport and Highways has said.
Summary:
While hearing pleas seeking to make marital rape an offence, Delhi High Court observed, "Marriage doesn't mean the woman is all time ready, willing and consenting (for sex)." Adding that physical force is not a pre-condition for rape, the court stated, "It's not necessary to look for injuries in a rape.
Summary:
Police have arrested three people in connection with the collapse.
Summary:
US President Donald Trump has confirmed he is redesigning the presidential planes of Air Force One in red, white and blue.
Summary:
Summary:
The station will provide meteorological support for national defence and further promote border development.
Summary:
US President Donald Trump on Tuesday said there is no time limit set for North Korea to get rid of its nuclear weapons program.
Summary:
Actress Janhvi Kapoor, while speaking about comparisons with Sara Ali Khan, said, "There is no competition." "She holds great promise and I think women should support each other," she added.
Summary:
Hollywood actress Meryl Streep kissed singer-actress Cher at the premiere of their upcoming film 'Mamma Mia!
Summary:
Summary:
Walmart has signed a five-year partnership with Microsoft to use the company's cloud services in retail.
Summary:
Out of the list comprising 124 countries, Qatar ranked first in the list with 63.22 Mbps average download speed.
Summary:
Speaking at a recent event, Khosrowshahi also said he was more focused on generating positive cash flow than making Uber profitable.
Summary:
As part of the agreement announced in a joint statement, Booking Holdings will allow users to hail Didi cars in its apps.
Summary:
A ninth 'critically endangered' black rhino has been reported dead after a failed operation to move the animals to a new reserve in southern Kenya.
Summary:
Delhi Commission For Women chief Swati Maliwal, who visited her, said, "She is in a very bad condition."
Summary:
After AIMIM leader Asaduddin Owaisi accused the Centre of neglecting Muslims, the government said, "Religion is not a criteria for recruitment in paramilitary forces.
Summary:
A two-month-old infant allegedly died of suffocation in Chhattisgarh's Raipur after the door of the ambulance carrying him got stuck and his father was stopped from breaking its window.
Summary:
Summary:
Miller has been charged with murder, child molestation and criminal confinement.
Summary:
This was the first time in nearly seven years that England won an ODI series against India.
Summary:
Further, the company also said that users post over 700 million emoji in posts on the Facebook platform every day.
Summary:
Scientists estimate the diamonds are buried over 100 miles below, deeper than any drilling expedition has ever reached.
Summary:
The Supreme Court on Tuesday commenced its hearing on issue of the ban on entry of women between 10 and 50 years of age in Kerala's Sabarimala temple.
Summary:
The Russian Ministry of Foreign Affairs tweeted "we agree" in response to a tweet by US President Trump that said US' "foolishness and stupidity" is to be blamed for the poor relations between the two countries.
Summary:
Fraud-hit PNB has realised â¹151.66 crore as penalty from nearly 1.23 crore savings fund accounts for not maintaining monthly average balance in FY18, an RTI query revealed.
Summary:
Blankfein will also step down as Chairman at the end of the year and Solomon will take over that role beginning in 2019.
Summary:
Adani Group Chairman Gautam Adani's son, Karan Adani, has said the group has "never defaulted on a single loan".
Karan, who is Adani Ports' CEO, said, "Ambition is to be the world's largest port operator developer based out of India."
Summary:
Patanjali MD Acharya Balkrishna has said that Khadi must be produced "by Indians, for Indians at an affordable price".
Summary:
Priyanka Chopra, who is penning her memoir titled 'Unfinished', said, "I want whoever reads it to be like, 'Oh I can do this too'." "It's my personality, fun rebellious, bold, and provocative," she added.
Summary:
Puducherry Tourism has announced the first Pondicherry International Film Festival (PIFF), which will showcase over 100 films from more than 25 countries.
Summary:
Supporting the new social media movement called #TalkToAMuslim, Gauahar Khan tweeted, "By land I'm a Hindu, by faith I'm a Muslim and by heart and soul Indian is my identity." "Didn't think a day would come where talking to a Muslim...would question...patriotism or...faith," Gauahar further wrote.
Summary:
Nick's brothers Joe Jonas and Kevin Jonas were also spotted with the rumoured couple.
Summary:
Dimple Kapadia will star opposite Nagarjuna Akkineni in Karan Johar's 'BrahmÃÂstra', as per reports.
Summary:
Opener Rohit Sharma slammed four sixes in the first ODI, while India failed to hit a single six in the second ODI.
Summary:
Summary:
Argentine football legend Diego Maradona, who joined Belarusian football club Dynamo Brest as its chairman, visited the home stadium of the club in a military-style open jeep.
Summary:
Reviving supersonic passenger flights will harm the environment, and cause too much pollution, according to a study by the International Council on Clean Transportation.
Summary:
Opposition leader Tejashwi Prasad Yadav today asked Bihar CM Nitish Kumar to stop "befooling" people on the issue of special category status for Bihar when the Centre has already rejected the demand.
Summary:
The body of an 11-year-old boy, whose throat had been slit, was found in a house in Maharashtra's Thane, the police said today.
"The boy was with his parents till late evening yesterday.
Summary:
After Karnataka CM HD Kumaraswamy broke down in tears and told JD(S) workers that he is not happy being CM, the Congress asked its spokespersons to defend him as he is "an emotional person." A Congress spokesperson said, "He is now our partner in the government.
Summary:
Assam Police has banned former Vishva Hindu Parishad (VHP) leader Pravin Togadia from organising public meetings in Guwahati for two months without permission.
Summary:
Police have booked the West Bengal unit of BJP for attempting to commit culpable homicide after a canopy collapsed at PM Narendra Modi's rally in Midnapore, injuring nearly 90 people.
Summary:
Farmers in Karnataka's Tarikere are reportedly using cut-outs of Prime Minister Narendra Modi, BJP President Amit Shah, and former Karnataka CM BS Yeddyurappa as scarecrows.
Party leaders had kept the cut-outs to seek votes in the villages and semi-urban areas.
Summary:
The Bihar government has raised the compensation awarded to acid attack victims from â¹3 lakh to â¹7 lakh, while victims aged under 14 years will receive 50% more compensation.
Summary:
Iran on Monday filed a complaint at the International Court of Justice (ICJ) over the US' reimposition of sanctions.
Summary:
The Bombay Stock Exchange (BSE) said it has secured a trademark for its iconic building Phiroze Jeejeebhoy Towers at Dalal Street in Mumbai.
Summary:
Union Law Minister Ravi Shankar Prasad on Tuesday wrote to Congress President Rahul Gandhi, asking him to join hands with the government to pass women reservation, Triple Talaq, and Nikah Halala bills in the Parliament.
Summary:
Madras High Court Advocates Association President Mohana Krishnan announced that no lawyer will take up the case of the accused.
Summary:
A Delhi court has framed molestation charges against former Delhi Law Minister Somnath Bharti in connection with the 2014 midnight raid at Khirki Extension and he will face trial in the case.
Summary:
The media had reported that he was not happy being the CM of the Janata Dal (Secular)-Congress coalition state government.
The media had further quoted Kumaraswamy as saying, "I know the pain of coalition government...
Summary:
"They alleged that I was speaking against Hindus...I thought Jharkhand was a peaceful state, but my views have changed after this incident," said Agnivesh.
Summary:
World's richest person and Amazon CEO Jeff Bezos has added $52 billion to his fortune this year, which is more than India's richest person Mukesh Ambani's total fortune.
Summary:
Karan Adani, son of Adani Group Chairman Gautam Adani, has said his father knew Prime Minister Narendra Modi much before he was Gujarat's Chief Minister.
Summary:
The International Monetary Fund (IMF) on Tuesday lowered India's growth projection to 7.3% from earlier 7.4% in this fiscal owing to high crude oil prices and a tight monetary policy regime.
Summary:
Janhvi Kapoor, while talking about her school days, said, "In my school days, people would think that I was schizophrenic because I would make up these wack stories." "I remember, calling up my friend and saying that I am a secret agent and that I need to spy on someone in school.
Summary:
The Rani Mukerji starrer 'Hichki', where Rani portrays a teacher with Tourette syndrome, is set to release in Russia on September 6.
Summary:
Actress Priyanka Chopra will make her debut in an international web series, as per reports.
Summary:
Talking about his equation with his daughter Sara Ali Khan, Saif Ali Khan said, "I was quite young when I had Sara, we have a drink together from time to time.
Summary:
After KL Rahul was dropped from India's playing XI for the series decider against England on Tuesday, ex-cricketer VVS Laxman said, "This is not the way to treat a youngster." "This is not the first time this is happening with Rahul.
Summary:
Volgograd Arena, a newly-built stadium in Russia which hosted four 2018 FIFA World Cup matches and was built at a cost of over â¹1,750 crore, has been damaged due to heavy rain.
Summary:
After Sachin Tendulkar's son Arjun Tendulkar picked up his maiden wicket for India Under-19, former cricketer Vinod Kambli tweeted, "Tears of joy rolled down when I saw this." "Could not be more happy for you, Arjun.
Summary:
Between five and 15 projects will be selected as recipients and the winners will receive funding and access to Microsoft cloud and AI tools.
Summary:
Former BSP national coordinator Jai Prakash Singh has said, "If this country is afraid of PM Modi then PM Modi is afraid of Mayawati." BJP seeks votes over Ganga and cow dung, he added.
Summary:
AIMIM chief Asaduddin Owaisi on Monday asked PM Narendra Modi to reveal the number of Muslims recruited in armed forces in the last four years.
Summary:
Summary:
China-based electric carmaking startup Xpeng Motors is reportedly raising over $600 million which will value the startup close to $4 billion without selling a single car.
Summary:
Lava flowing from the Kilauea volcano has created a small new island off the coast of Hawaii, the United States Geological Survey (USGS) said.
Summary:
A migrant labourer has died days after he was attacked by three men for allegedly stealing a hen, Kerala police said.
Summary:
The Kerala government has offered a job to the husband of nurse Lini, who died after contracting Nipah virus from one of the patients she was treating.
Summary:
A man was killed by his friend for allegedly peeping into a bathroom where the latter's mother was bathing, Hyderabad police have said.
Summary:
Sloth bears killed one soldier and left another injured after attacking them on the banks of a river in the Kota district of Rajasthan, said the police today.
Summary:
The British Crown owns all unmarked mute swans in open water.
Summary:
Communist-run Cuba will recognise the right to own private property under a new constitution, the state media said.
Summary:
'Asura', which is considered China's most expensive film ever, was pulled from theatres after performing poorly at the box-office in its opening weekend.
Summary:
"I [started] dancing...[Then] Salman called me...asked me to dance in the middle of the room," she further said.
Summary:
Director Mysskin, while 'praising' actor Mammootty's acting in the film 'Peranbu', said, "If he had been younger and...a woman, I might have fallen in love with him...I'd have raped him actually." Mysskin added he wished to say something "controversial" so that the film becomes a hit.
Summary:
Billionaire Richard Branson-backed Virgin Orbit announced that its modified Boeing 747 aircraft, which can launch rockets mid-air, will make Cornwall Airport the first UK spaceport by 2021.
Summary:
BJP MP Rajeev Chandrasekhar on Tuesday slammed the Karnataka government for giving expensive gifts, including an iPhone X and Moochies leather bag, to parliamentarians.
Summary:
Alleging that his senior has appointed him and five other trackmen to build the senior's private house, a trackman of the Indian Railways wrote to minister Piyush Goyal that they're not here to work as "bonded labourers".
Summary:
The woman had appealed against a Bombay High Court order which denied her the permission to abort her unborn child.
Summary:
It reserved its decision on scrapping of Section 377 after a week-long hearing.
Summary:
The International Criminal Court has brought into effect a law under which politicians and military leaders can be held individually responsible for invasions and other major attacks.
Summary:
Jaypee said it had already deposited â¹750 crore with the court registry.
Summary:
Nestle India on Tuesday became third Indian fast moving consumer goods (FMCG) company to join club of firms that have seen their market capitalisation cross â¹1 trillion mark.
Summary:
TV serial Kumkum's lead actress Juhi Parmar, while talking about her co-star and late actress Rita Bhaduri, said, "Used to call her Rita Maa." "I will never be able to forget Rita Ma and will never be able to come to terms that she is not there," she added.
Summary:
The show will reportedly feature contestants in pairs this season.
Summary:
Kunan had died while placing air tanks to replenish low levels of oxygen in the cave.
Summary:
"Dhoni's struggle was understandable because when confronted with an impossible situation, the options get limited...the mind becomes negative," Gavaskar said.
Summary:
Kohli was also the fastest to reach 1,000 (17 innings) and 2,000 ODI runs (36) as captain.
Summary:
IBM is seeking $167 million in a lawsuit accusing e-commerce marketplace operator Groupon of using its patented technology without authorisation.
Summary:
The drone automatically launches from a freestanding base station called the 'Airbase' and can perform pre-programmed missions including surveillance or monitoring for security breaches.
Summary:
Microsoft is updating Skype to include a built-in call recording feature to the video chat platform since it was launched nearly 15 years ago.
Summary:
A mentally-challenged woman was thrashed by locals in West Bengal's Jalpaiguri over suspicions of being a child-abductor.
Summary:
BJP supporters had thrashed police officials after they stopped their buses at a distance from the rally and asked them to walk the remaining way.
Summary:
Goa Tourism Minister Manohar Ajgaonkar on Tuesday said only "good tourists" are welcome in the state, adding that tourists should preserve Goa's culture and natural beauty.
Summary:
After Congress President Rahul Gandhi tweeted that Congress stands with the "last person in line" regardless of religion or caste, BJP said this was a "confession" that his party belongs to Muslims.
Summary:
Trump threw the ball to his wife Melania to give it to their son Barron.
Summary:
US President Donald Trump slammed his Russian counterpart Vladimir Putin during a phone call over a propaganda video that showed Russia's ability to strike the US state of Florida, reports said.
Summary:
Model Mara Martin breastfed her five-month-old daughter while walking the ramp for a fashion show.
Summary:
The team will meet with Singapore authorities to convince them that Nirav Modi is a criminal under a money laundering case, reports added.
Summary:
The Supreme Court on Tuesday reserved its judgement on pleas seeking scrapping of Section 377, while adding that it is its duty to strike down the section if it violates rights.
Summary:
A 14-month-old baby girl was raped by her father's uncle in Madhya Pradesh's Vidisha district on Saturday night.
The man took the girl outside on pretext of playing with her and raped her.
Summary:
Elderly parents can take back property gifted by them to their son if he fails to look after them in their old age, the Bombay High Court has ruled.
Summary:
Sharif and his daughter were arrested upon their return to Pakistan on Friday after being found guilty of corruption.
Summary:
Commenting on a picture shared by his wife Gauri Khan which also features his daughter Suhana Khan, Shah Rukh Khan wrote, "New York Times is carrying great news." Gauri captioned the photo, 'New York Times', which is also the name of a news publication.
Summary:
Answering a question on his rivalry with Lionel Messi especially after leaving Real Madrid, Cristiano Ronaldo said, "everybody is fighting for their own club...
The 33-year-old, attending his first press conference after joining Juventus, also said, "I don't see players as rivals.
Summary:
Amid a controversy surrounding his alleged remarks in an Urdu daily that Congress is a "party for Muslims", Congress President Rahul Gandhi tweeted, "I stand with the last person in the line.
Summary:
Researchers led by Australian National University have found the first proof that Antarctica is not isolated from the rest of the Earth, with the discovery of foreign seaweed that drifted 20,000 kilometres to reach there.
Summary:
The Uttar Pradesh government is planning to table a proposal to restore the provision for anticipatory bail in the upcoming Assembly session, government counsel informed the Supreme Court on Monday.
Summary:
People who are caught drinking in public in Goa will have to pay a fine of â¹2,500 starting August 15, state Chief Minister Manohar Parrikar said on Monday.
Summary:
The Supreme Court has refused to stay the new Health Ministry rules directing manufacturers to put graphic warning images on packets of cigarettes and other tobacco products.
Summary:
An eight-year-old girl in Uttarakhand was allegedly gangraped by five minor boys aged between 9 and 14 years after they watched porn on a mobile phone.
Summary:
A cleric in Uttar Pradesh has issued a fatwa against an activist who has been campaigning against instant triple talaq and nikah halala.
Summary:
However, foreigners will be able to apply for citizenship after five years of residency.
Summary:
An Alpha Jet from the French Air Force's aerobatic unit released a wrong colour for the French tricolour in a formation flight during the Bastille Day parade last week.
Summary:
"I do believe that it will happen at the right time," she further said.
Summary:
Janhvi Kapoor has said her late mother and actress Sridevi used to worry about Janhvi being compared to her.
Janhvi added, "She kept saying, 'I have done 400 films and this is your first but they will compare you to my 400th film'." She further said, "But I was like, 'I love acting, mumma.
Summary:
Several members of France's World Cup-winning squad including Antoine Griezmann, who was named Man of the Match in the final, touched defender Adil Rami's moustache for 'luck' ahead of matches.
"It's now the most famous moustache in France.
Summary:
Two-time Wimbledon champion Andy Murray, who was the world number one in August 2017, has dropped to 839 in the world rankings after pulling out of Wimbledon due to injury problems.
Summary:
The staff also revealed that they crouched in corridors during their breaks due to a lack of official break areas.
Summary:
Twenty-three-time Grand Slam champion Serena Williams, who finished as runner-up in the women's singles event at Wimbledon, has dedicated her run in the tournament to fellow mothers.
Summary:
Apple made $22.6 billion in worldwide gross app revenue as compared to $11.8 billion made on Play Store.
Summary:
Online bookmarking service Instapaper has announced it is buying itself back after being acquired by Pinterest two years ago.
Summary:
South Africa-based MeerKAT radio telescope, which was inaugurated last week, took the clearest view yet of the Milky Way's centre, which contains the galaxy's largest black hole, weighing about four million solar masses.
Summary:
In a first, IIT Delhi researchers have developed a silk-based hydrogel that emulates human hair growth, and may help screen drugs for treating hair loss without animal tests.
Summary:
A jawan has allegedly committed suicide by shooting himself with his service rifle at an Army camp near the Line of Control in Jammu and Kashmir's Akhnoor.
Summary:
In the Catholic church, women dress as brides for the consecration ceremony and devote their physical virginity as a gift to Christ.
Summary:
With earnings of $40.5 million (â¹276 crore), Akshay Kumar has beat Salman Khan to become the highest-paid celebrity in India.
Summary:
Meanwhile, Conor McGregor, who took part in second richest fight in history with Mayweather, earned $99 million.
Summary:
The Supreme Court delivered its verdict on petitions against mob lynchings across the country, saying "violence can't be allowed".
Summary:
Aditya Datt, director of the web series 'Karenjit Kaur: The Untold Story of Sunny Leone', has said it is one's birthright to use his or her family name.
Summary:
After the parade, the French team was given a special reception at the French Presidential Palace.
Summary:
Mayawati clarified that the remarks were Singh's personal opinion.
Summary:
Photo sharing mobile app Vebbler has raised an undisclosed amount in a pre-series A funding round from investors including former Mu Sigma CEO Ambiga Subramanian, actor Dino Morea, and VJ Nikhil Chinapa, among others.
Summary:
IIT Madras has commissioned the world's first remotely operated Local Electrode Atom Probe (LEAP), which can provide a 3D atom-by-atom view of a material.
Summary:
The accused had lured the dog to the factory's staff quarters while his family was away for a wedding.
Summary:
Swaraj replied saying citizenship matters fall under Home Affairs Ministry, ending the tweet with 'Ayushmaan Bhava'.
Summary:
The students had to use the risky medium after a bridge over Chuflagad river was swept away after heavy rainfall on Monday.
Summary:
The gold that will be used in the renovation is donated by the devotees.
Summary:
Following his summit with US President Donald Trump in Helsinki, Finland, Russian President Vladimir Putin has said that it was the responsibility of both the US and Russia to maintain international security.
Summary:
Warren Buffett has donated around $3.4 billion of Berkshire Hathaway stock to charities, the billionaire's largest contribution under his plan to give away his fortune.
Summary:
Authorities said that her father thought the weapon was unloaded.
Summary:
The International Monetary Fund (IMF) has warned that US President Donald Trump's trade war could cost the global economy $430 billion (over â¹29 lakh crore).
Summary:
Paris' Louvre Museum that houses Leonardo Da Vinci's Mona Lisa posted an image of the portrait dressed in the French jersey in honour of the French team that won the World Cup 2018 title.
Summary:
Former world number ones Serbia's Novak Djokovic and Germany's Angelique Kerber danced together at the annual Wimbledon Champions' Dinner that is hosted after the completion of the tournament.
Summary:
The city of Paris has temporarily renamed six metro stations in honour of the French team that lifted the World Cup on Sunday.
Summary:
Juventus Sporting Director Fabio Paratici has revealed how Cristiano Ronaldo's "crazy" bicycle-kick goal against them triggered his â¬112-million transfer talks.
Paratici said Ronaldo's agent told them "Cristiano was stunned by the attention...
Summary:
Zohri ran the 100m in 10.18 seconds, a personal best and the Indonesian junior record.
Summary:
Finance Minister Arun Jaitley on Monday said what the Congress is doing to Karnataka CM HD Kumaraswamy is a repeat of what it did to his father ex-PM HD Deve Gowda, IK Gujral and Chaudhary Charan Singh.
Summary:
A 19-year-old youth in Hyderabad has been arrested for allegedly killing and burning the body of his 17-year-old friend to steal the victim's mobile phone.
Summary:
The video of the incident shows the party workers hacking the road and the footpath in front of the Mantralaya with pickaxes and shovels.
Summary:
The US government has charged a 29-year-old Russian woman with conspiracy to act as a Russian government agent while developing ties with American citizens and infiltrating political groups.
Summary:
Commenting on the relationship between Americans and Russians, model-actress Pamela Anderson has said Americans are "programmed" to blame Russia if anything goes wrong.
Summary:
The apartment's 66-year-old lift operator took her to an isolated place in the complex in January and raped her.
Summary:
On July 17, 1975, US spacecraft Apollo 18 and Soviet Union's Soyuz 19 docked in space to create history.
Summary:
Born on July 17, 1894, Belgian astronomer Georges Lemaître is regarded as the founder of the modern Big Bang theory, which says the observable universe began with an explosion of a single particle.
Summary:
Veteran actress Rita Bhaduri, known for starring in television serials like 'Nimki Mukhiya', 'Choti Bahu' and 'Khichdi', passed away on Tuesday at the age of 62.
Summary:
Filmmaker Vishal Bhardwaj has said Irrfan Khan, who is undergoing treatment for neuroendocrine tumour, is recovering, while adding, "These days he is sending me voice note by recording songs in his own voice." "He is watching cricket too," added Vishal.
Summary:
Kim Kardashian, while responding to the criticism received by Forbes for including her half-sister Kylie Jenner in its list of America's richest self-made women, said, "I really didn't get it." "What, because we came from a family that has had success?
Summary:
Portugal captain Cristiano Ronaldo was unveiled as a Juventus player on Monday after completing his â¬112 million transfer from Spanish giants Real Madrid, where he had spent 9 years.
Summary:
Luxury car company Aston Martin has unveiled its plans for a flying electric car concept called the Volante Vision Concept with vertical take-off and landing (VTOL) capabilities.
Summary:
Talking about the ownership rights over users' data, the Telecom Regulatory Authority of India (TRAI) has said the companies controlling the data do not have primary rights over it.
Summary:
It is the oldest known direct evidence of bread, predating the advent of agriculture by at least 4,000 years.
Summary:
The order comes after Jharkhand Police arrested nuns from MC's Ranchi-based home for allegedly selling four babies.
Summary:
"The victim had gone to washroom in her school when the teacher identified as Satyawaan barged in and brutalised the girl," an officer said.
Summary:
Mannan Wani, a PhD scholar who joined Hizbul Mujahideen, in a letter mailed to news agency CNS, reportedly wrote, "We (Hizbul) are soldiers we don't fight to die but to win." "We do feel dignity in fighting (Indian) occupation, its military might...and most of all its ego," he added.
Summary:
A woman in Uttar Pradesh has alleged she was given Triple Talaq twice and forced to consummate marriage with her father-in-law and brother-in-law under Nikah Halala practice so that her husband could marry her again.
Summary:
A woman in Madhya Pradesh was allegedly forced to give birth in an unsanitary condition inside a moving bus after she was denied an ambulance by a community hospital.
Summary:
The Supreme Court has agreed to hear a petition by Shia Waqf Board chief Waseem Rizvi against the hoisting of green flags with crescent and star in Muslim-dominated areas.
Summary:
At least 23 people were injured after a lava bomb hit a tour boat on Monday in Hawaii, US, puncturing the vessel's roof.
Summary:
American tennis player Serena Williams climbed 153 spots to reach the 28th rank in the women's singles rankings following her run to the final of the Wimbledon 2018.
Summary:
Sri Lankan captain Dinesh Chandimal, coach Chandika Hathurusingha and manager Asanka Gurusinha have been handed a ban for two Tests and four ODIs for acting against the spirit of the game.
Summary:
Ali, who picked 3/32 from 8.2 overs, got the injury scare after uprooting a stump for his second wicket.
Summary:
South African captain Faf du Plessis has said that he is in favour of scrapping away the toss in Tests to create some balance between the visiting team and hosts.
Summary:
Notably, the Indian contingent secured two bronze medals in the Taolu discipline and three in Sanshou.
Summary:
BSP's national coordinator Jai Prakash Singh on Monday said Congress President Rahul Gandhi is more like his mother than his father, adding that his mother is a foreigner so he cannot be the PM.
Summary:
With reference to Hindu mythological epic Mahabharata, Congress spokesperson Randeep Surjewala said, "Sensing defeat in 2019 general elections, PM (Narendra) Modi has become blind like Dhritarashtra due to his lust for power." "By spreading hatred and pursuing divisive politics, he is aiming to win the election," he added.
Summary:
Alibaba-owned food delivery platform Ele.me is reportedly seeking at least $2 billion funding to compete against Meituan Dianping.
Summary:
Five men travelling in an SUV overtook Durga Sharan's bike, blindfolded him and took him to the wedding venue, where he was forced to marry the woman.
Summary:
The motorcyclists were part of a group tracing patterns during a choreographed performance last week.
Summary:
The net worth of world's richest person and Amazon Founder Jeff Bezos crossed $150 billion on Monday.
Summary:
Russian President Vladimir Putin, at a joint press conference with US President Donald Trump, denied any Russian interference in US elections, saying Moscow "will never interfere in internal American affairs." This comes despite the indictment of 12 Russian intelligence officers for hacking into Democratic Party computers during the 2016 campaign.
Summary:
The film, which is a biopic on actor Sanjay Dutt, is also the first ever film in Ranbir's 11-year-long career to earn â¹300 crore in India.
Summary:
Tesla lost around $2 billion in market capitalisation after CEO Elon Musk faced backlash for calling British cave diver, who aided in Thai cave rescue operation, a 'pedo' (pedophile).
Summary:
A Jammu and Kashmir police officer was killed on Monday after militants opened fire at a police post located outside National Conference leader Mohiuddin Mir's residence in Pulwama.
Summary:
A litre of top-shelf Scotch whiskey in Venezuela's capital Caracas now costs one billion bolivars, equivalent to the sum earned by a minimum-wage worker in 16 years.
Summary:
She's under too much pressure." "I've seen her smile for years.
I know her smile.
Summary:
Soha Ali Khan thanked Indian women's cricket team captain Mithali Raj for gifting a cricket bat to her daughter Inaaya.
Summary:
Former Indian fast bowler Zaheer Khan and his wife Sagarika Ghatge attended the 2018 FIFA World Cup final between France and Croatia at Moscow's Luzhniki Stadium.
Summary:
A Russian court on Monday sentenced four members of the feminist protest punk rock band 'Pussy Riot' who invaded the pitch during the FIFA World Cup final to 15 days in jail.
Summary:
French President Emmanuel Macron and Grabar-Kitarovic also visited the Croatian dressing room.
Summary:
As many as four people invaded the pitch during the final, which Croatia lost 2-4.
Summary:
Southgate Tube station in London has been temporarily named after England football manager Gareth Southgate to honour him for leading England to their best finish in World Cup since 1990.
Summary:
"I want to win.
I want to be the best.
Summary:
Vancouver Knights captain Chris Gayle pulled off a one-handed catch with his right hand after having almost dropped the catch with his left hand during the Global T20 Canada final on Sunday.
Summary:
Portugal captain and former Real Madrid forward Cristiano Ronaldo's jersey at his new club Juventus was sold 52 times more than that of Brazil's Neymar in the first 24 hours of their transfers.
Summary:
After Karnataka CM Kumaraswamy teared up at an event over being unhappy while heading a coalition government, BJP MP Subramanian Swamy said he won't be unhappy for too long and things will "sort out soon".
Summary:
Karnataka Congress leader KB Koliwad today accused some of his own party leaders of "tormenting" Chief Minister HD Kumaraswamy, who earlier broke down in tears and told JD(S) workers that he is not happy being CM.
Summary:
Flipkart-owned digital payments startup PhonePe has acquired Noida-based Zopper Retail, a hyperlocal Point of Sale (POS) platform for small and medium businesses.
Summary:
Three nominated BJP MLAs were stopped from entering the Puducherry Assembly today despite the Madras High Court order upholding their appointments.
Summary:
After Karnataka CM HD Kumaraswamy broke down over heading a coalition government, Deputy CM G Parameshwara on Monday claimed that Kumaraswamy was crying "happy tears" and everything was fine with the Congress-JD(S) coalition.
Summary:
The word 'Asha' will no longer be printed on the packets of condoms supplied by the government in Madhya Pradesh, health ministry officials have said.
Summary:
A 15-year-old girl named Ishita Mukund Mate succumbed to her injuries after falling from the Tung fort in Pune district on Sunday.
Summary:
Over 60 students fell sick after eating dinner at a school hostel in Bihar's Baisi, the police said.
Summary:
President Ram Nath Kovind has approved the Assam Witch Hunting (Prohibition, Prevention and Protection) Bill, which was passed by the state Assembly in 2015.
Summary:
Larry Fink, the Chairman and CEO of the world's largest asset manager BlackRock, has said the company has assembled a working group to study blockchain technology and cryptocurrencies, such as Bitcoin.
Summary:
Global airlines' body IATA chief Alexandre de Juniac has said it's "wrong" to levy GST on international air tickets as it contravenes many global agreements to which India is a party.
Summary:
A health insurance helps complete your financial planning and cushion your family's finances from unexpected medical expenses.
Summary:
France's 19-year-old forward Kylian Mbappé became the first teenager to score in WC final since Pelé in 1958.
Summary:
He became the first teenager after Brazilian legend Pelé in 1958 to score a goal in World Cup final.
Summary:
The FIFA World Cup 2018 saw several iconic moments including Cristiano Ronaldo's hat-trick and Lionel Messi's penalty being saved by Iceland.
Summary:
CBI on Monday filed a charge sheet against former Jammu and Kashmir Chief Minister Farooq Abdullah and three others in a special court in Srinagar over an alleged misappropriation of over â¹43 crore in J&K Cricket Association.
Summary:
Amazon, which is competing with homegrown rival Flipkart in India, has invested substantial funding across its various segments to expand operations in the country.
Summary:
The Uttar Pradesh Police has arrested two of the five men accused of raping a 30-year-old woman after barging into her residence and setting her on fire inside temple premises in Sambhal.
Summary:
The Central Industrial Security Force on Monday arrested an airline employee with nine gold biscuits worth â¹31 lakh at Delhi's Indira Gandhi International Airport.
Summary:
The police on Monday arrested Mayank Singhvi over the death of his wife Anissia Batra, an air hostess who allegedly committed suicide by jumping off the terrace of her Delhi house.
Summary:
Summary:
Wishing Katrina Kaif on her 35th birthday today, Arjun Kapoor tweeted his pictures with her and captioned it, "Happy birthday fellow Cancerian...From then to now, you have been my partner in crime." "Hope you've a good one...be happy," he further wrote.
Summary:
"We are honoured and exceptionally excited to have the one and only Nagarjuna doing an extremely 'special' role in our film," tweeted Karan, while posting a picture from the sets.
Summary:
Shah Rukh Khan, on the occasion of co-star Katrina Kaif's 35th birthday today, unveiled her first look from their upcoming film 'Zero'.
Summary:
Further, players with jersey number nine scored combined 16 goals, same as players with jersey number seven.
Summary:
Reacting to it, a user tweeted, "Mbappe high-fiving a pitch invader.
Summary:
After Karnataka CM HD Kumaraswamy broke down over being unhappy as the CM in a coalition government, union minister Arun Jaitley said Kumaraswamy's statement reminded him of "dialogues from the tragedy era of Hindi cinema".
Summary:
Ola has signed a memorandum of understanding (MoU) with the Haryana government to create 35,000 job opportunities in the state.
Summary:
E-commerce firms Flipkart and Amazon India have reportedly reduced their advertising spending on Google by 30% in the last three months.
Summary:
After Congress President Rahul Gandhi reportedly called the Congress a "party for Muslims", Union Minister Prakash Javadekar said, "The Congress is the worst communal party.
Summary:
At least seven people died on the spot when two private cars collided on a highway in the outskirts of Maharashtra's Lonavala, an official said today.
Summary:
Air hostess Anissia Batra's brother has claimed she had once texted her family about her husband Mayank Singhvi, "because of him my life is going to go, please don't leave him." Further, days before her alleged suicide, her father had filed a complaint against Mayank, alleging he was harassing her.
Summary:
A groom named Sanjay Jatav became the first Dalit to lead his baraat through UP's Nizampur village.
Summary:
The Income Tax Department on Monday conducted raids at premises of SPK Group, one of the main road contractors in Tamil Nadu.
Summary:
As many as 105 couples tied the knot in Kashmir's biggest mass wedding on Sunday.
Summary:
A Class 8 student has made a video slamming Karnataka CM Kumaraswamy for failing to allot sufficient funds for Kodagu in the budget, adding that "relentless rain" damages crops and affects civic life in the region.
Summary:
US-based Goldman Sachs Group is expected to name David Solomon as its next CEO, according to reports.
Summary:
ICICI Bank has decided to postpone its Annual General Meeting (AGM) by a month amidst independent enquiry conducted by Justice BN Srikrishna on alleged cases of impropriety against the bank's CEO Chanda Kochhar.
Summary:
Over 70,000 employees of associate banks of SBI, which merged with the lender in 2017, have been asked to return "overtime compensation" for "extra hours" they worked post demonetisation, according to reports citing an SBI circular.
Summary:
Anubhav added the film is not doing what trolls think it is doing and isn't about Hindus or Muslims.
Summary:
Talking about how her statements are taken out of context and reported in the media, Janhvi Kapoor said, "Maybe I should just shut up...I read the kind of stuff that's being printed and it makes me cringe." She added her statements are often paraphrased.
Summary:
Musk's remark came after Unsworth described his submarine plan to help in the rescue effort as a "PR stunt".
Summary:
Bengaluru-based edtech startup Unacademy has raised $21 million in Series C funding round, the startup's Co-founder and CEO Gaurav Munjal said.
Summary:
In a letter for a martyr's five-month-old daughter, District Magistrate of Rajasthan's Jhalawar, Jitendra Soni, wrote, "You sat on the coffin and laid on that without crying...It was very emotional." "Grow well and make your father's glorious martyrdom your pride," he added.
Summary:
Summary:
"We had a truly great summit...NATO is now strong and rich!" Trump added.
Summary:
The board of Life Insurance Corporation (LIC) gave its approval to buy up to 51% stake in public sector lender IDBI Bank, Economic Affairs Secretary SC Garg said on Monday.
Summary:
Revenue from HUL's operations increased 2.88% to â¹9,356 crore.
Summary:
Sunny Leone, who adopted daughter Nisha Kaur Weber last year, shared a family picture on Monday captioning it, "One year ago today our lives changed when we brought you home with us!" "Can't believe it's only been one year because I feel I've known you a lifetime," she further wrote.
Summary:
Denying being a part of Salman Khan's upcoming film 'Bharat', Katrina Kaif said, "I am not a part of that film." 'Bharat', which also stars Priyanka Chopra and Disha Patani, is an official adaptation of 2014 South Korean film 'Ode to My Father'.
Summary:
Actress Kajol, while talking about her profession, has said that actors are supposed to be perfect all the time.
Summary:
According to the rules, babies in arms and children under five are not allowed into Show Courts including the Centre Court where the final is played.
Summary:
Pogba also dabbed with the trophy during the celebrations.
Summary:
Technology major Microsoft is working on a new smartphone model which will be powered by Android, according to reports.
Summary:
Google is reportedly facing a record European Union (EU) fine for using its Android operating system to manipulate the smartphone manufacturers.
Summary:
Summary:
The attack comes days after Tharoor said India would become 'Hindu Pakistan' if BJP wins 2019 general elections.
Summary:
NITI Aayog CEO Amitabh Kant has said for India to grow at 9-10% for three decades consistently, promoting women entrepreneurship has to be key strategy.
Summary:
The BJP tweeted that the woman, who was "barely able to talk", had asked PM Modi for an autograph despite being bedridden at the hospital.
Summary:
Puducherry Lieutenant Governor Kiran Bedi has asked Sri Venkateshwaraa Medical College Hospital and Research Centre to not discriminate against students over a fee dispute being heard in the High Court.
Summary:
The Kerala University has postponed all examinations scheduled for Monday to July 21 due to heavy rainfall in the area.
Summary:
A 40-year-old barber has been arrested in Noida for allegedly killing his wife after she reportedly "refused to engage in sexual activity with him" as his mouth cancer had left him with a hole in his cheek.
Summary:
UP police stopped a child marriage in Jansath two days before the wedding after receiving a complaint in this regard.
Summary:
Punjab CM Captain Amarinder Singh on Sunday directed state police to not harass drug addicts and prohibited them from entering de-addiction centres to question patients.
Summary:
Congress President Rahul Gandhi had tweeted that a fictional web series cannot change people's perception of his father.
Summary:
The Uttarakhand government on Sunday refuted reports that it issued any order for levying charges on the use of helicopters during rescue operations in the state.
Summary:
The Interpol Washington wrote to the Indian government saying that absconding diamantaire Nirav Modi's uncle Mehul Choksi is not in the United States, according to reports.
Summary:
Katrina Kaif's surname was changed from Turquotte to Kaif in her debut film 'Boom', which also starred Amitabh Bachchan.
Summary:
Gurugram-based grocery delivery startup Grofers has shut down its fresh produce service delivering vegetables and fruits across cities including Delhi (NCR) and Bengaluru.
Summary:
The girl had arrived at the post following a scuffle between her family and neighbours.
Summary:
President Donald Trump on Monday blamed "years of US foolishness and stupidity", and the Russian investigation for the dismal state of relations between the US and Russia.
Summary:
A mob of villagers killed nearly 300 crocodiles after a man was killed by one of the reptiles at an Indonesian breeding farm.
Summary:
Vegetable prices grew by 8.12% in June, while primary articles that account for over one-fifth of entire WPI, grew by 5.3%.
Summary:
Shares of Delhi-based PC Jeweller plunged about 26% on Monday after it withdrew a proposal to buyback shares worth â¹424 crore.
Summary:
Actress Priyanka Chopra, while shooting for her upcoming film "Isn't It Romantic" in New York, was seen dancing on the streets of New York for a sequence of the film.
Summary:
Actor Shahid Kapoor took to Instagram and shared a picture with his wife Mira Rajput from her baby shower, which was hosted on Sunday at their Mumbai residence.
Summary:
After Russian President Vladimir Putin stood under an umbrella while Croatia and France's Presidents got drenched in the rain, a user tweeted, "They've only brought one umbrella, and it's for Putin.
Summary:
French midfielder Paul Pogba trolled England by singing their adopted FIFA World Cup chant "It's coming home" in an Instagram Live video after winning the World Cup on Sunday.
Summary:
Out of the 64 matches at the 2018 FIFA World Cup, only one match finished with a scoreline of 0-0.
Summary:
French midfielder Paul Pogba became the first Manchester United player to score in a final of the World Cup after scoring France's third goal in the World Cup final against Croatia on Sunday.
Summary:
Jamaica's eight-time Olympic gold medal winner Usain Bolt attended the final of the World Cup 2018 with his friends, while former Indian cricket captain Sourav Ganguly was also in attendance.
Summary:
McGregor posted the photo with the caption that mentioned that he was attending the final as a guest of the Russian President.
Summary:
Further, the company only has a 2% market share in India and it sold 3.2 million iPhone devices in 2017, according to a report by Counterpoint Research.
Summary:
Speaking at an event in West Bengal's Midnapore, Prime Minister Narendra Modi said, "There is a 'murder your opponents' syndicate operating here.
Summary:
Questioning if PM Narendra Modi is a crusader for women empowerment as he claims, Congress President Rahul Gandhi has written a letter asking him to "walk-his-talk" on the passing of women's reservation bill in Parliament's upcoming session.
Summary:
Senior executives at Flipkart reportedly opposed Google's plan to invest in the e-commerce startup as they felt Google could be a potential rival in the future.
Summary:
Over 20 people were injured on Monday after a section of a tent's canopy at PM Narendra Modi's rally in West Bengal's Midnapore collapsed.
Summary:
The State Disaster Response Force (SDRF) and fire department team on Monday rescued around 55 people who were trapped in flood water in Andhra Pradesh.
Summary:
We are investigating the matter," police officials said.
Police suspect that the victim, who worked at a mine, arranged the dynamite from his workplace.
Summary:
A â¹50-fee will be charged for the doorstep delivery of 100 public services such as birth certificate, caste certificate, driving licence, among others from next month onwards by the Delhi government.
Summary:
Talking about deaths caused by potholes, Maharashtra PWD Minister Chandrakant Patil on Saturday said that five lakh other people travel on the same road and the entire blame cannot be put on the road's condition.
Summary:
Musk said he'd prove it would've worked and added, "Sorry pedo guy, you really did ask for it".
Summary:
At least 110 students who scored zero or negative marks in Physics and Chemistry in the NEET examination got admission into MBBS colleges in 2017, a report said.
Summary:
A man who was suspected to have shot dead 25-year-old Indian student Sharath Koppu in a restaurant in Kansas City has been killed in a gunfire exchange, the city police said.
Summary:
While hearing a petition seeking deletion of scenes from Netflix series 'Sacred Games' that allegedly defamed late PM Rajiv Gandhi, the Delhi High Court on Monday observed that actors cannot be held liable for dialogues.
Summary:
Russia neutralised nearly 2.5 crore cyber attacks and other criminal activities against the information infrastructure of the country during the FIFA World Cup, President Vladimir Putin has said.
Summary:
After France's 19-year-old Kylian Mbappé became the first teen since Brazil's Pelé to score in World Cup final, the legendary footballer tweeted, "If Kylian keeps equalling my records like this I may have to dust my boots off again".
Summary:
Russian President Vladimir Putin said that foreign visitors holding "fan ID" cards for the World Cup 2018 can have multiple visa-free entries to Russia for the rest of the year.
Summary:
Delhi-born 21-year-old cricketer Mayank Dagar, who plays for Kings XI Punjab, has surpassed Virat Kohli and Manish Pandey's score in the Yo-Yo test, which is a mandatory parameter to be selected in Team India.
Summary:
Kashyap later clarified that this was his own thinking, adding that the number of religious conversions will be brought down once such an action is taken.
Summary:
A US woman who attempted to sell her two-year-old daughter for a sex act at a cost of $1,200 has been sentenced to 40 years in prison.
Summary:
Summary:
After US President Donald Trump called the EU a foe on trade matters, European Council President Donald Tusk on Sunday said, "The US and the EU are best friends.
Summary:
On the post, Pandya's Mumbai Indians teammate Kieron Pollard asked whether Devgn is his "real dad".
Summary:
Summary:
Defender Benjamin Mendy, part of France's World Cup-winning squad, made French President Emmanuel Macron perform the 'dab' with him while celebrating the triumph with the players in the French dressing room.
Summary:
World Cup-winning French football players invaded their coach Didier Deschamps' post-match press conference to soak him in champagne, energy drinks and water.
They're young and they're happy," Deschamps said about the players.
Summary:
France's Antoine Griezmann celebrated his penalty goal in the final of the World Cup 2018 with 'Take the L' emote celebration from the popular online multiplayer video game Fortnite.
Summary:
Former World number one Serbia's Novak Djokovic ate blades of grass at the Centre Court after winning the fourth Wimbledon title and the 13th Grand Slam title of his career on Sunday.
Summary:
Former Indian cricketer Ramesh Powar has been named as the interim coach of the Indian women's cricket team.
Summary:
Indian wrestler Vinesh Phogat gave away just one point in her five bouts on her way to win the gold medal at the Spanish Grand Prix.
Summary:
Slamming BJP's Tribal Welfare Minister Jual Oram for calling fugitive Vijay Mallya 'smart', an editorial in Shiv Sena's newspaper 'Saamana' said the BJP should name the liquor baron its brand ambassador for 'Start-Up India' and 'Make in India'.
Summary:
Finance Minister Arun Jaitley will be missing Parliament's upcoming monsoon session as he recovers following a successful kidney transplant surgery, according to reports.
Summary:
Delhi CM Arvind Kejriwal on Sunday questioned PM Narendra Modi on whether talking about Hindus and Muslims would help India become the number one country in the world.
Summary:
On Saturday, the CM had been in tears and said, "I know the pain of coalition government.
Summary:
Meanwhile, her parents have alleged dowry harassment by her husband.
Summary:
The Supreme Court has ruled that both government and private universities cannot raise their fees arbitrarily without approval from the Committee on Fee Fixation.
Summary:
A man in Uttar Pradesh's Shamli allegedly gave Triple Talaq to his wife after she gave birth to a girl.
Summary:
England captain Harry Kane won the Golden Boot award for scoring the most goals (6) at 2018 FIFA World Cup. Croatia's Luka ModriÃÂ won the Golden Ball award, given to the competition's best player.
Summary:
Pelé had scored two goals in the 1958 final against Sweden, which Brazil won 5-2.
Summary:
Featuring 8GB RAM and 128GB built-in storage, OnePlus 6 Red Edition is a dramatic take on the OnePlus 6 which will be available for sale from 12:00 noon on 16th July.
Summary:
Katrina Kaif is the only Bollywood actress who has a Barbie doll modelled after her.
Summary:
Referring to the French player Kylian Mbappé who scored a goal at the World Cup final against Croatia, actor Ranveer Singh tweeted, "The Wonderboy...
Summary:
:) France and its diverse team did." "If a nation could integrate their immigrants to the mainstream of society so successfully, it's a huge credit to them", read another tweet.
Summary:
Janhvi Kapoor has said she would portray the character Rose and her sister Khushi Kapoor would play Jack while enacting scenes from 'Titanic'.
Summary:
After leading France to victory in 2018 FIFA World Cup, France coach Didier Deschamps became only the third person to win the trophy as both a player and manager.
Summary:
Croatia's Mario MandÃ
¾ukiàon Sunday became the first-ever player to score an own goal in a FIFA World Cup final.
Summary:
Puducherry Lieutenant Governor Kiran Bedi on Monday was trolled on micro-blogging site Twitter after she congratulated the people of the union territory on France's 2018 FIFA World Cup victory.
Summary:
Rolls-Royce has unveiled an hybrid-electric air vehicle concept that can travel at 402 kmph speed for approximately 800 km.
Summary:
Bengaluru-based furniture rental startup Furlenco's Founder and CEO Ajith Karimpana in a recent interview said that his greatest regret was that he "wasted ten years in corporate life".
Summary:
Addressing the Indian diaspora in Bahrain, External Affairs Minister Sushma Swaraj said an Indian passport would act as a shield for its citizens when they are abroad.
Summary:
Mountaineer Pemba Sherpa, who has scaled the Mount Everest eight times, went missing from Jammu and Kashmir's eastern Karakoram range after scaling 7,672 metre-high Saser Kangri peak.
Summary:
While 17 affected people including Sabith died, two patients recovered.
Summary:
"Well I think we have a lot of foes.
I think the European Union is a foe...Russia is a foe in certain respects.
Summary:
Ahead of the general elections in Pakistan, the country's National Counter Terrorism Authority has warned that suicide bombers could be used to target political leaders of all major parties.
Summary:
Maryam Nawaz, who was arrested along with her father, former Pakistan Prime Minister Nawaz Sharif, upon their arrival in Lahore, has said that she is in prison for being the daughter of a "brave man".
Summary:
The 23-member strong World Cup-winning French football team has 15 players of African descent, including the likes of Paul Pogba, Kylian Mbappé and N'Golo Kanté.
Summary:
Giroud has been compared to France's Stephane Guivarc'h who failed to score a single goal in France's 1998 World Cup-winning campaign.
Summary:
Four members of the Russian feminist protest punk rock band 'Pussy Riot', dressed in black trousers, white shirts along with black ties, ran onto the pitch during the FIFA World Cup final on Sunday.
Summary:
Punjab minister Navjot Singh Sidhu on Sunday alleged that the Badal family spent â¹121 crore on private helicopters and â¹7 crore on government helicopters during the Shiromani Akali Dal's regime in 2007-2017.
Summary:
Adding that language reflects culture, values, morals and traditional knowledge, he said that one should never neglect their mother tongue.
Summary:
Earlier, the board had said it wouldn't contest if the Supreme Court scrapped Section 377.
Summary:
"Aadhaar is your homegrown technology (at) one dollar each," he further said.
Summary:
A group of delivery boys were caught on CCTV vandalising a restaurant in Delhi after an argument over parking space.
He added that later around 80 boys came and vandalised the restaurant even though families were present inside.
Summary:
The constables had attended to the woman after receiving information about her having labour pain while travelling with her family.
Summary:
France defeated first-time finalists Croatia 4-2 in 2018 FIFA World Cup final on Sunday to win the quadrennial tournament for the first time since 1998.
Summary:
Ex-world number one Novak Djokovic defeated Kevin Anderson on Sunday to clinch his fourth Wimbledon title and overall 13th Grand Slam.
Summary:
Three crore Aadhaar authentications are done every three seconds, Union Minister for Information Technology Ravi Shankar Prasad said on the final day of Goa IT Day celebrations.
He further said that 80 crore bank accounts are linked to Aadhaar.
Summary:
US President Donald Trump said in an interview on Friday that he "fully intends" to run for a reelection in 2020, because "everyone wants him to".
He further said that the Democrats do not have the "right candidate" to beat him.
Summary:
After a fan asked him why he got married at such a young age, actor Shah Rukh Khan replied, "Bhai love aur luck kabhi bhi aajate hain (Brother, love and luck can come at anytime).
Summary:
Summary:
The minimum prize money for teams eliminated at the group stage will amount to $8 million (â¹55 crore) each.
Summary:
Canadian startup Opener has revealed its one-person aircraft, called BlackFly, that can travel up to 40 km at a speed of 100 kmph.
Summary:
Musk announced the bricks earlier this year and said they would be used for low-cost housing.
Summary:
Elon Musk-led Tesla has rolled out an attendance policy under which all hourly employees face termination for being even one minute late without permission for a certain number of days.
Summary:
Rajinikanth has promised to sponsor the higher education of a Class 2 boy from Erode who returned to police a wallet containing â¹50,000, in 100 notes of â¹500, that he found on the road leading to his school.
Summary:
The bank made a recovery of about â¹5,400 crore last fiscal.
Summary:
Summary:
Summary:
The final was kicked-off by Netherlands and their players knocked the ball to each other for 54 seconds before Johan Cruyff was fouled inside the box.
Summary:
Offering financial support to Indian sprinter Hima Das, Mahindra Group Chairman Anand Mahindra tweeted, "If there is a need for financial support beyond government resources I am happy to contribute." "All of us want to see Hima Das on the Olympic podium," Mahindra added.
Summary:
Reacting to the catch, a user tweeted, "The pitcher owes him a nice steak dinner." "THAT was like a Spiderman move @Reds !!
Summary:
After Karnataka CM HD Kumaraswamy broke down into tears over being unhappy as the CM in a coalition government, Deputy CM G Parameshwara said, "How can he say that?
Summary:
After reports claimed that fish preserved in toxic chemical formalin were entering Goa from other states, CM Manohar Parrikar said people should understand that fake news can be damaging.
Summary:
The troll had given rape threats to Chaturvedi's mother and sisters.
Summary:
Pakistani Major General Asif Ghafoor was slammed for tweeting a picture of a late political party leader standing on the Indian flag.
Ghafoor's tweet was to condole Siraj Raisani's death in the Balochistan blast.
Summary:
The government aims to double farmers' income by 2022 and end the divide between the rich and the poor, said PM Narendra Modi today.
Summary:
At least five people were killed and 25 others were injured when a boulder rolled down a hill and hit tourists bathing in the Siar Baba waterfall in Reasi district, Jammu and Kashmir.
Summary:
Slamming PM Narendra Modi for suggesting that Congress is a party for Muslims, Congress leader Anand Sharma said, "He (PM Modi) has less knowledge of history.
Summary:
The National Green Tribunal (NGT) is planning to hear cases via video conferencing as petitioners have to travel to Delhi to attend hearings due to non-availability of judges and expert members at the tribunal's regional benches.
Summary:
Goyal said that currently there are 118 rules in existing law due to which many traders have to face legal hurdles.
Summary:
Narendran, CEO and MD of Tata Steel, has over 30 years of experience in metal and mining industry.
Summary:
One of the divers who helped rescue 12 kids stuck in a Thai cave for 18 days, called Elon Musk's kid-sized submarine, which he offered to help, a "PR stunt" that "had absolutely no chance of working".
Summary:
Another user said, "Would have been nice to know that the Instagram questions weren't anonymous before I called my bro's girlfriend ugly."
Summary:
After Karnataka CM HD Kumaraswamy broke down while talking about his unhappiness at being the CM in a coalition government, Congress leader Mallikarjun Kharge said he should be courageous to face such circumstances.
Congress and JD(S) are in coalition in Karnataka.
Summary:
Mumbai-based automaker Vazirani Automotive has unveiled India's first turbine-electric hypercar called 'Vazirani Shul' at the 2018 Goodwood Festival of Speed.
Summary:
No claimants have come forward to successfully stake claim to dormant accounts with deposits of around â¹300 crore linked to six Indians in Swiss banks.
Summary:
The notice, which mentioned her name, asked her to appear before police to give a statement.
Summary:
Her mother claimed they found her hanging in a room while three of her brothers were locked in another room at the police post.
Summary:
NITI Aayog Vice Chairman Rajiv Kumar has said the think-tank is working on a proposal to replace LPG subsidy with cooking subsidy to extend the benefit to people using piped natural gas and biofuels for cooking.
Summary:
Summary:
After claiming she faced the casting couch in Tollywood and Kollywood, actress Sri Reddy said, "I am feeling threat from Tamil actor Vishal Reddy." Vishal had earlier slammed her for "picking her targets randomly" but not coming forward with any evidence.
Summary:
A month after TV actors Juhi Parmar and Sachin Shroff were granted divorce, Sachin claimed, "She was never in love with me...Nothing I did could make Juhi love me." He called one-sided relationships "doomed" from the beginning.
Summary:
The Madame Tussauds in Delhi also features wax statues of Shah Rukh Khan and Salman Khan, among others.
Summary:
"We just wanted her to survive...10 months later, she's in the #Wimbledon final," he wrote on Instagram.
Summary:
The spectators booed after every dot ball Dhoni played during a David Willey over.
Summary:
Former forward Stéphane Guivarc'h, who was a part of France's 1998 FIFA World Cup final winning team, now works as a swimming pool salesman.
Summary:
English Premier League champions Manchester City will be paid around â¹35 crore as FIFA pays clubs ã6,400 (â¹5.8 lakh) per day for each player representing his national side in the tournament.
Summary:
As many as 34% of 153,038 people who voted want Cuadrado to wear the jersey number 49.
Summary:
Summary:
Facebook's advertising tools algorithmically labelled 65,000 Russians as 'interested in treason', potentially putting the users at risk of a probe by the government.
Summary:
After PM Narendra Modi claimed that he was not surprised over Congress calling itself a party for Muslims, Congress spokesperson Randeep Singh Surjewala accused him of spreading the "poison of hatred and division".
Summary:
To strengthen the anti-Romeo squads in Uttar Pradesh to protect women from stalkers and eve-teasers, the personnel deployed will now be provided with wardrobe-mounted cameras.
Summary:
A 48-year-old man who allegedly bludgeoned his wife to death with an iron rod was lynched by villagers in Rohtas district, Bihar.
Summary:
The Reliance Foundation has proposed the name of eminent scientist Raghunath A Mashelkar as the Chancellor of yet-to-be established Jio Institute, according to reports.
Summary:
A group of four people allegedly murdered a 60-year-old man on Saturday by crushing him under the wheels of their SUV multiple times in Bihar's Kaimur.
Summary:
The Malaysia-based airline is discussing the possible purchase of as many as 100 A321neo aircraft, reports said.
Summary:
Global airlines' body IATA's chief Alexandre de Juniac has said India needs comprehensive aviation infrastructure plan but developing airports like real-estate business is "doomed to fail".
Summary:
The total number of deaths caused due to terrorism was 803, while 3,597 people died because of potholes.
Summary:
Earlier, Irrfan said he has no idea when he will be returning to India.
Summary:
Praising her cousin Janhvi Kapoor after watching the film 'Dhadak', Sonam Kapoor tweeted, "What a stunning debut Janhvi...so so proud!
Summary:
He went on to hit another boundary and ended the match with 12 runs.
Summary:
Indian sprinter Hima Das, who recently claimed India's first track World Championship gold medal in the 400m race, led the Indian women's relay team to a junior national record at the same event.
Summary:
Adding they aren't sure how it happened, Indian Embassy officials said they are doing everything to help the families.
Summary:
The woman was sleeping with her children at home when the men entered and took turns to rape her.
Summary:
NITI Aayog VC Rajiv Kumar has said Nobel laureate Amartya Sen should spend time in India to see structural reforms undertaken by the Centre.
Summary:
Earlier, Trump had said that the Brexit deal pursued by May "is not what the people voted on".
Summary:
US Ambassador to the UN Nikki Haley had termed the UNHRC a "hypocritical and self-serving organisation".n
Summary:
In a video posted online, a glass-panelled cantilever of the Artz Pedregal mall can be seen collapsing to the ground.
Summary:
ITC was the only company which saw a decline in its market capitalisation and lost â¹2,234.52 crore in value.
Summary:
The appearance of a giant iceberg near the coast of Greenland has raised the fears of flooding in Greenland's Innaarsuit island settlement.
Summary:
Summary:
Italian club Inter Milan and German champions Bayern Munich are the only two clubs to have had at least one player playing in the final of the FIFA World Cup since 1982.
Summary:
First-time finalists Croatia have played a full 90 minutes more than fellow finalists France at 2018 FIFA World Cup. France won all their knockout matches in regulation time, while Croatia won their first two knockouts via penalties and defeated England in semi-finals after extra time.
Summary:
Buyan, a Siberian bear at the Royev Ruchey Zoo in Russia's Krasnoyarsk, predicted the champions of the FIFA World Cup by choosing between two watermelons marked with flags of France and Croatia respectively.
Summary:
Croatia's midfielder Ivan Rakitic, who plays for Barcelona, jokingly said that he would get a tattoo on his forehead if Croatia win the World Cup by beating France on Sunday.
Summary:
The case started in 2013 when the government ordered Founder Cody Wilson to remove the online source files, citing regulations for exporting firearms.
Summary:
Puducherry CM V Narayanasamy has claimed that his government has to overcome "hurdles" caused by the Centre, which is delaying sanction of grants, and by the returning of files by Lieutenant Governor Kiran Bedi.
Summary:
European car designing startup Automobili Pininfarina has revealed its hypercar concept, codenamed 'PF0', which can go from 0-100 kmph in under 2 seconds.
Summary:
Early-stage venture firm SRI Capital has launched a $100 million technology-focused fund for the US and Indian startups.
Summary:
Six members of a debt-ridden family allegedly committed suicide in Jharkhand's Hazaribagh on Saturday.
Summary:
A transporter and his friend in Jabalpur have been booked for stripping naked three tribal employees and beating them with a baseball bat on suspicion that they stole 120 litres of diesel.
Summary:
Former Vice President Hamid Ansari has said that it is a matter of concern if 'gau rakshaks' (cow vigilantes) are not listening to even Prime Minister Narendra Modi.
Summary:
The Delhi Metro Rail Corporation (DMRC) will be getting green power from a solar plant in Madhya Pradesh in two months, Madhya Pradesh Renewable Energy Principal Secretary Manu Srivastava has said.
Summary:
The citizenship process for stateless people involves proving Thai lineage and could take up to ten years.
Summary:
The Uttarakhand Civil Aviation Development Authority has issued a notification saying that people who avail helicopter services during rescue operations will have to pay for it.
Summary:
A 32-year-old Google engineer was allegedly beaten to death by a mob in Karnataka on Friday, over rumours claiming he was a child-lifter.
Summary:
Karnataka CM HD Kumaraswamy was in tears as he told his party workers he is not happy being the CM.
I became Lord Vishakantha and swallowed pain." "People...tell me they are happy about the farm loan waiver.
Summary:
The Sanjay Dutt-biopic, which had entered the â¹100 crore club within three days of its release and â¹200 crore club within a week, achieved the â¹300-crore milestone in 16 days.
Summary:
A police officer in Meerut filed a complaint against himself and others for failing to prevent cow smuggling in the area of their jurisdiction.
Summary:
The model who was held hostage by her stalker for 12 hours at her apartment in Bhopal has sought death penalty for him, stating he threatened to kill her after coming out of jail.
Summary:
A swimming instructor was arrested for raping a 4-year-old girl at a private school in Uttar Pradesh's Greater Noida.
Summary:
Dutta claimed that his registered mobile number on the account was changed and net banking activated without his knowledge.
Summary:
UK Prime Minister Theresa May has warned there may be "no Brexit at all" if lawmakers fail to back her plan to leave the European Union.
Summary:
A US woman survived by drinking water from the radiator of her car after it crashed off a coastal cliff in California, according to police officials.
Summary:
Trump was met with hundreds of thousands of protesters as he arrived in the UK.
Summary:
Iranian President Hassan Rouhani on Saturday said that the US was more isolated than ever over sanctions against Iran, even among its allies.
Summary:
Earlier, reports stated that the father-daughter duo will get facilities like AC and TV in jail.
Summary:
Playing at the Lord's cricket ground, India managed to hit only 16 boundaries in the match.
Summary:
After 1958, Argentina won it for the first time in 1978, followed by France's maiden World Cup title in 1998.
Summary:
Manny Pacquiao, the 39-year-old Filipino boxer, claimed his first knockout victory in nine years to win the WBA welterweight title on his return to the sport in the title fight against Argentina's Lucas Matthysse.
Summary:
Indian sprinter Hima Das, who bagged a gold medal at the IAAF World Under-20 Athletics Championships recently, has been ensured support by the government till the Tokyo 2020 Olympics.
Summary:
The first cruise service between Mumbai and Goa will begin from August 1, Road Transport and Shipping Minister Nitin Gadkari announced on Saturday.
Summary:
Actor-turned-politician Rajinikanth on Sunday extended support for 'One Nation One Election', or simultaneous polls, saying that it would save money and time.
Summary:
Pointing out that the BJP-led government announced the decision of note ban instantly, Shiv Sena chief Uddhav Thackeray on Saturday said they can take a decision to build the Ram Mandir in Ayodhya instantly since they have a majority.
Summary:
Summary:
For the first time in history, the Lord Venkateswara temple in Tirumala will be shut from August 11 to 16 to take up the cleansing of the entire temple complex.
Summary:
He was also previously arrested for stealing imported liquor in 2016.
Summary:
A deal would be struck for â¹3-5 lakh and the fraudsters would make fake ration cards, voter IDs, among others to procure passports.
Summary:
The Jammu and Kashmir administration has revoked individual arms licences issued between January 1, 2017, to February 23, 2018.
Summary:
Summary:
England registered an 86-run victory in the second ODI at Lord's on Saturday to end India's three-match winning streak and level the three-match series 1-1.
Summary:
A woman was arrested for hugging singer Majid al-Mohandis at a concert in Saudi Arabia.
A video shows her running towards the stage and hugging Majid while security personnel attempt to pull her off him.
Summary:
MS Dhoni has become the fastest wicketkeeper-batsman and third fastest Indian to score 10,000 runs in ODI cricket, achieving the feat in his 273rd innings during the second ODI against England on Saturday.
Summary:
As many as 639 farmers in Maharashtra committed suicide between March 1 and May 31 this year, state Revenue Minister Chandrakant Patil told the Legislative Council in Nagpur on Friday.
Summary:
At least six students are missing after a boat capsized in Godavari river near Andhra Pradesh's Pasuvula Lanka village on Saturday.
Summary:
Assam became the third Indian state to have a transgender judge.
Summary:
A video has emerged in which women can be seen thrashing the man who allegedly held a model hostage in Madhya Pradesh's Bhopal.
Summary:
Two US police officers have been suspended after bodycam footage showed them using a coin flip phone app to decide whether or not to arrest a woman suspected of dangerous driving.
Summary:
US President Donald Trump has said that Vladimir Putin is "probably" a "ruthless person", in remarks made ahead of his summit with the Russian President.
Trump had earlier called Putin his competitor.
Summary:
US retail giant Walmart has reportedly assured the Income Tax Department that it will fulfil all tax obligations on its proposed acquisition of Flipkart.
Summary:
Actress Katrina Kaif will go on a holiday with her family to celebrate her birthday this year, as per reports.
Summary:
Summary:
After India's MS Dhoni became only the second wicketkeeper-batsman to reach 10,000 runs in ODI cricket, ODIs' first wicketkeeper-batsman to achieve the feat, Sri Lanka's Kumar Sangakkara wrote a congratulatory tweet for Dhoni.
Summary:
Former India captain Sourav Ganguly has said that opener Rohit Sharma is the second most valuable player for India after captain Virat Kohli in ODI cricket.
"I still believe that thereâÂÂs enough time for Rohit to make a major impact in Test cricket.
Summary:
"Bahrami saved me", Björkman later tweeted about it.
Summary:
After joining the BJP, Mahendrasinh said given Congress chief Rahul Gandhi's style of working, revival of the Congress doesn't seem possible any time soon.
Summary:
Reacting to Congress President Rahul Gandhi's recent meet with farmers, Madhya Pradesh CM Shivraj Singh Chouhan said Gandhi "hardly" knows if chillies grow upward or downward and if onions grow above the ground or below.
Summary:
Launching BJP's 51-day 'Jan Ashirvad Yatra' from Madhya Pradesh's Ujjain on Saturday, party chief Amit Shah said CM Shivraj Singh Chouhan is one of the best Chief Ministers in India.
Summary:
Lucknow Additional Director General of Police Praveen Kumar on Saturday said that at least 15 lakh people have received counselling from anti-Romeo squads, which were constituted on the order of the Uttar Pradesh government.
Summary:
The survivor of the Hapur lynching has alleged that the local police is protecting the accused in the case at the behest of CM Yogi Adityanath-led Uttar Pradesh government.
Summary:
A class 7 student had to get 35 stitches on his back after his classmates attacked him with blades in a government school in Delhi's Badarpur.
Summary:
Two NRIs settled in the United States have donated â¹13.5 crore to Tirupati's Lord Venkateswara temple, in the presence of Andhra Pradesh minister Amarnath Reddy.
Summary:
The man identified as Sami A, had been living in Germany since 1997 and had argued against his deportation by claiming he could be tortured if sent back to Tunisia.
Summary:
US President Donald Trump has said he would not have allowed Russia to annex Crimea in 2014 if he was in power.
The US recently said it doesn't recognise Russia's annexation of Crimea and will not lift sanctions against it over its invasion of Ukraine.
Summary:
Afghanistan has admitted to killing at least six civilians in ground and air operations in the Nangarhar province.
Summary:
Bihar Deputy CM and GST Council member, Sushil Modi, has said that the GST Network (GSTN) has been able to decipher a large number of tax defaulters by means of data analytics developed by Infosys.
Summary:
Former world number one Angelique Kerber on Saturday defeated seven-time champion Serena Williams 6-3, 6-3 in the women's singles final to clinch her first-ever Wimbledon title.
Summary:
Belgium defeated England in the third-place playoff on Saturday to finish third at the 2018 FIFA World Cup. This is Belgium's best-ever World Cup finish after having finished fourth in the 1986 edition of the quadrennial tournament.
Summary:
The engagement ring that singer Justin Bieber gave to his fiancée Hailey Baldwin is worth $500,000 (â¹3.4 crore), as per reports.
Summary:
Rahul Gandhi tweeted that his father, former PM Rajiv Gandhi's image can never be changed based on views of a character on a fictional web series, while referring to 'Sacred Games' and the recent controversy around it.
Summary:
Garrett Matthias, a five-year-old boy from the US helped his parents compile his own obituary before losing his life to a rare pediatric cancer on July 6.
Summary:
Former world number one Novak Djokovic defeated world number one Rafael Nadal on Saturday to reach the Wimbledon men's singles final for the fifth time and the first time since 2015.
Summary:
An alcoholic man in Uttar Pradesh's Shahjahanpur allegedly shot dead his 30-year-old wife after she refused to cook egg curry for him on Thursday.
Summary:
Home Minister Rajnath Singh on Saturday along with his Bangladeshi counterpart Asaduzzaman Khan Kamal inaugurated India's largest visa centre in the world in Bangladesh's capital Dhaka.
Summary:
The Central Railway earned a record revenue of â¹59.36 crore from ticketless and irregular passengers between April and June this year.
Summary:
The Enforcement Directorate has chargesheeted former Congress MP and industrialist Naveen Jindal, his company Jindal Steel and Power and others for money laundering in its probe into the coal block allocation case.
Summary:
It empowers USCIS to issue "Notice to Appear" order for a person whose application has been denied.
Summary:
'Housefull 4' will also star Akshay Kumar, Riteish Deshmukh and Bobby Deol.
Summary:
Former captain MS Dhoni has become the first-ever Indian wicketkeeper to take 300 catches in ODI cricket, achieving the feat against England in the second ODI on Saturday.
Summary:
Summary:
Congress leader P Chidambaram has asked Defence Minister Nirmala Sitharaman to share "her secret information" on "plans to incite riots in the run-up to Lok Sabha election" with Home Minister Rajnath Singh.
Summary:
A 'trainer' had pushed the 19-year-old from the school building leading to her death, after which the police had arrested the accused.
Summary:
Police on Friday arrested five Columbian nationals for allegedly attempting to break into former Karnataka Chief Secretary Kaushik Mukherjee's residence in Jayanagar.
Summary:
As many as sixty poisonous Russell's viper snakes were found at a Zilla Parishad school's kitchen in Maharashtra's Hingoli on Friday, officials said.
Summary:
Locals from Jharkhand's Bariatu village thrashed a Naxal to death after a group of Naxals assaulted a contractor for refusing to pay â¹15,000 as levy.
Summary:
Karnataka Deputy CM G Parameshwara has urged the Centre to formulate a law awarding death penalty to those accused of peddling drugs, adding that the government should take the initiative after consulting with states.
Summary:
China is spying on US-led military exercises off the coast of Hawaii, the US Defence Department said.
Summary:
It is a part of the China-Pakistan Economic Corridor (CPEC) project.
Summary:
Thousands of people on Friday across the UK attended planned protests against US President Donald Trump.
Summary:
Former Pakistan PM Nawaz Sharif's daughter Maryam Nawaz has said that she refused better facilities in jail by her own will.
Summary:
IHH will also make a mandatory open offer of up to â¹3,300 crore to buy 26% more stake in Fortis from existing shareholders.
Summary:
PC Jeweller has withdrawn a proposal to buyback shares worth â¹424 crore after it failed to receive the requisite no-objection certificate from its bankers.
Summary:
Andhra Bank has filed a bankruptcy petition against apparel retailer Provogue India at the National Company Law Tribunal (NCLT) for non-payment of dues, according to reports.
Summary:
Scarlett Johansson has quit the role of a transgender man in the upcoming film 'Rub & Tug' after facing criticism over her casting.
Summary:
Summary:
An Uber driver in Bengaluru assaulted a passenger, leaving him with a broken nose, fractured fingers and injuries to his face, while driving him home.
Summary:
On July 14, 1930, Indian poet Rabindranath Tagore met Albert Einstein at his Berlin home.
Summary:
The Shiromani Gurdwara Parbandhak Committee stated that actress Sunny Leone will not be allowed to use 'Kaur' in the title of her web series 'Karenjit Kaur: The Untold Story of Sunny Leone', which premieres on July 16.
Summary:
A spectator proposed to his girlfriend in the stands during the second India-England ODI at Lord's Cricket Ground on Saturday.
Summary:
After Forbes declared Kylie Jenner's worth is $900 million and she could become the world's youngest-ever 'self-made billionaire', comedian Fat Jew started a GoFundMe page to make her a billionaire.
Summary:
After reports claimed that BJP President Amit Shah said Ram temple will be constructed before the 2019 elections, the party on Saturday said he didn't make any such statement.
Summary:
Musk also took a dig at GM saying their top floor is reserved for chairperson and CEO who use "special elevators".
Summary:
The woman's father claimed the jawan had raped her with the false promise of marriage and was harassing her.
Summary:
An Uttar Pradesh court has sentenced three doctors to three-year jail term each for preparing an incorrect post-mortem report of a 14-year-old girl who was murdered on the Nighasan police station campus in 2011.
Summary:
The Income Tax Department has decided to reassess the ITRs of over 50 high net-worth individuals (HNIs) who purchased costly jewellery from Nirav Modi's firms, according to reports.
Summary:
Indian economy is expected to become the world's third largest by 2030 with GDP worth $10 trillion, Economic Affairs Secretary SC Garg has said.
Summary:
Upon examining the company's records, it was found that excise duty of â¹17.76 crore was evaded on 5,92,085 litres whiskey, the excise department's notice said.
Summary:
Shabana Azmi has denied a quote against India attributed to her by a man named Santosh Bharatiya, which said 'India is not a good...nation as the Muslims are not happy here'.
Summary:
Eight of 14 critically endangered black rhinos have died after being relocated to a new wildlife reserve in Kenya.
Summary:
The incident resulted in the deployment of passenger oxygen masks and forced the pilots to decrease the altitude of the plane by 10,000 feet.
Summary:
China has so far arrested 540 suspects and frozen around $39 million to stem illegal WC betting.
Summary:
He entered top-flight football in 2014 and managed Serie A side Napoli for the last three seasons.
Summary:
SunRisers Hyderabad mentor VVS Laxman has revealed that his children cried when they got to know that David Warner was banned from Indian Premier League 2018 over the ball-tampering scandal.
Summary:
Summary:
New York-headquartered co-working startup WeWork told its 6,000 global staff it won't pay for or allow any kind of meat at staff events.
Summary:
He was rushed to a hospital after his eyes opened slightly minutes before he was to be buried.
Summary:
The Rajasthan High Court asked CM Vasundhara Raje to choose one of the two bungalows retained by her as her residence, adding that the other should be used for official purposes.
Summary:
Maharashtra Congress chief Sanjay Nirupam and former MLA Baba Siddique on Saturday repaired a pothole in Mumbai's Bandra in protest against the poor condition of roads.
Summary:
'Heute', a news programme on Germany's public TV channel ZDF, replaced Trump's pictures while covering the US President's ongoing visit to the UK.
Summary:
Amazon Prime Video has launched a new Prime Original show-Comicstaan where top Indian comics will judge and mentor new talent in a one-of-a-kind reality show.
Summary:
A former Buddhist monk, the coach advised the boys to meditate and not move around much to conserve energy.
Summary:
I should've taken someone else's name." Oram, while giving Mallya's example, had asked tribal communities, "Who asked Adivasis not to influence the system?
Summary:
After posting 86 tweets in June to counter critiques amid attempts to reach Tesla's production targets, CEO Elon Musk said "most of the time I do say nothing.
Summary:
South Africa has unveiled the 64-dish MeerKAT radio telescope, slated to be the world's largest and most powerful telescope on its completion in 2030.
Summary:
Based on similarities in metabolism, researchers concluded fat consumption could be the sole cause of weight gain in humans too.
Summary:
Dinesh Singh Bisht, a fifteen-year-old class 10 student, was burnt alive in the middle of the road in Uttarakhand, by unidentified boys when he had gone out for a morning walk.
Summary:
The Assam Police on Friday posted a warning on micro-blogging site Twitter against sharing rumours and hate messages online, with the caption, "What does your weekend look like?
Summary:
The woman had written to the police alleging Bhanushali raped her several times on the pretext of securing her admission into a fashion designing college.
Summary:
The court was hearing a petition by a woman, who gave birth to a baby through intrauterine insemination, against Trichy Municipal Corporation (TMC) who had issued her a birth certificate with the sperm donor's name as the father.
Summary:
A local BJP leader in Agra has been booked for allegedly sexually harassing a police inspector's wife.
Summary:
Cisco Chairman Emeritus John Chambers has said India's "impressive development and inclusive growth" stand at risk if PM Narendra Modi doesn't get a chance to lead the country after 2019 general elections.
He further said, "I think (Modi) has the country headed in the right way."
Summary:
US President Donald Trump broke protocol thrice during his meeting with Queen Elizabeth II at the Windsor Castle on Friday.
Summary:
The Islamic State has claimed responsibility for the attack on an election rally in Pakistan on Friday that killed 128 people.
Summary:
Ishaan Khatter has said he used to copy his half-brother Shahid Kapoor a lot when he was a child.
Earlier, Ishaan had said he is not competing with Shahid.
Summary:
'Taarak Mehta Ka Ooltah Chashmah' actress Munmun Dutta has slammed fans for taking selfies at the funeral of Kavi Kumar Azad, who played 'Dr Hathi' on the show.
Summary:
The 12 boys of a football team and their coach rescued from the Tham Luang cave in Thailand will be discharged from hospital on Thursday, Health Minister Piyasakol Sakolsatayadorn said.
Summary:
FIFA President Gianni Infantino said that he can reiterate his statement that he made before the World Cup that the Russian edition of the tournament is the "best of all time".
Summary:
Windies all-rounder Dwayne Bravo caught up with Indian cricketers MS Dhoni and Hardik Pandya over dinner in London ahead of Saturday's 2nd ODI between India and England at Lord's.
Summary:
"Seeing her passionately search for the Tricolour immediately after winning...touched me deeply.
Which Indian wonâÂÂt have tears of joy seeing this!" PM Modi wrote.
Summary:
Rabada picked up his 150th Test wicket against Sri Lanka at the age of 23 years 50 days.
Summary:
Samajwadi Party chief Akhilesh Yadav on Friday said that he is getting "severely abused" on social media, adding that he filed a complaint with the police but no action was taken.
Summary:
The Directorate of Revenue Intelligence (DRI) has busted a â¹2,000-crore money laundering racket at Bharat Diamond Bourse (BDB) in Mumbai.
Summary:
A woman in Telangana climbed a cell phone tower on Friday and threatened to jump if her partner wasn't brought there to marry her, police said.
Summary:
Bombay High Court on Friday declared that thermocol, or polystyrene foam, can no longer be used for decorations during Ganesh Chaturthi.
Summary:
A herd of cows had attacked the leopard after it killed a calf in the sanctuary.
Summary:
The President has the power to nominate 12 MPs to the Upper House.
Summary:
Sharing a video of himself from a bowling arcade, Shaan said he booked the entire arcade for himself and his family.
Summary:
'Superman' actor Henry Cavill has said he is hesitant to flirt with women for fear of being called a "rapist".
Summary:
Assam's Chief Minister Sarbananda Sonowal has said that Indian sprinter Hima Das will be named the state's sports ambassador after her 400m gold medal at the IAAF World Under-20 Athletics Championships.
Summary:
Defence Minister Nirmala Sitharaman on Friday said, "Congress is playing a dangerous game.
Summary:
Tesla's billionaire CEO Elon Musk has revealed he wore the same clothes for five days before reaching the 5,000-cars-a-week Model 3 production goal.
And everybody else was really intense, too," added Musk.
Summary:
An asteroid first observed in December 2017 has been found to be a double asteroid with two similar-sized co-orbiting bodies.
Summary:
A Kolkata court has issued summons to Congress MP Shashi Tharoor after a man filed a case against him for saying that India will become a "Hindu Pakistan" if BJP wins 2019 general elections.
Summary:
The Northern Railways has installed an automatic train washing plant at Delhi's Hazrat Nizamuddin station in an attempt to save water used for cleaning trains.
Summary:
Karnataka government has mandated all government, aided and private engineering and polytechnic colleges in the state to ban the usage of all types of plastic articles in their campuses.
Summary:
Addressing a gathering of tribal entrepreneurs, union minister Jual Oram on Friday called liquor baron Vijay Mallya "smart", stating he employed intelligent people and bought politicians, government and bankers.
Who prevented you from influencing bankers?" Mallya is wanted in India for defrauding banks of â¹9,000 crore.
Summary:
The Japan International Cooperation Agency is planning to invest around â¹72 crore in Bengaluru to install smart signals that will reduce the waiting time by 30%.
Summary:
Students of a government school in Uttar Pradesh's Sambhal were seen washing dishes at a handpump in school premises.
Summary:
Punjab Chief Minister Captain Amarinder Singh has called Kashmir the new source of drugs in the state, stating that it started with Pakistan and its intelligence agency ISI.
Summary:
A 32-year-old ISIS supporter who called for an attack on UK's Prince George has been jailed for life.
Summary:
The two are eligible for class 'B' facilities in jail, which is accorded to people accustomed to a superior mode of living.
Summary:
Priyanka Chopra is set to become the first Bollywood actress to get a share of the profits of her upcoming film 'The Sky Is Pink', as per reports.
Summary:
Ex-world number one Novak Djokovic played with marbles while waiting for the outcome of the first Wimbledon semifinal between John Isner and Kevin Anderson, which turned out to be tennis' third-longest singles match (6 hours 36 minutes).
Summary:
South Africa's Kevin Anderson fell down mid-rally, only to pick up the racquet and play a forehand with his left hand against John Isner in the fifth set of Friday's Wimbledon semifinal.
Summary:
Indian spinner Harbhajan Singh has said that his former teammate Mohammad Kaif, who retired from cricket on Friday, could have played a "bit more" for the Indian team.
He was a committed cricketer," Harbhajan said about Kaif.
Summary:
Portugal national team captain Cristiano Ronaldo's agent Jorge Mendes has said that the star's last club will be Juventus, who recently bought him from Real Madrid for an estimated amount of â¬100 million.
Summary:
Rabii worked at Google for over six years, where he led chip building for the Pixel smartphone.
Summary:
Uber has begun running continuous background checks for criminal charges on its drivers in the US in an attempt to make the ride-hailing service safer.
Summary:
The woman then plotted his murder with her lover and son-in-law.
Summary:
"Such personal questions don't need insta replies!
They need to be sent insta-ntly to the police," the caption read.
Summary:
After making attendance compulsory for students and administrative staff, the Jawaharlal Nehru University (JNU) in Delhi on Friday announced that it is introducing biometric attendance for teachers.
Summary:
Turkey signed a deal on Friday to sell 30 T129 ATAK helicopters to Pakistan and also provide logistics, spare parts, training, and ammunition services.
Summary:
Billionaire Jeff Bezos-led Amazon would make $258.22 billion in US retail sales in 2018, amounting to 49.1% of all online retail spend, with the next biggest rival eBay just making a 6.6% market share, according to market research firm eMarketer.
Summary:
Former Pakistan Prime Minister Nawaz Sharif and his daughter Maryam Sharif were arrested on their return to Lahore from London on Friday, after being convicted of corruption.
Summary:
World number eight Kevin Anderson took six hours and 36 minutes to defeat John Isner in Wimbledon's longest singles semi-final and second-longest match on Friday.
Summary:
Actress Priyanka Chopra, while speaking about her rumoured relationship with American singer Nick Jonas, said, "We're getting to know each other." Talking about his visit to India last month, Priyanka added, "I think it was a great experience for him.
Summary:
It crossed the â¹500 crore mark worldwide after two weeks of its release.
Summary:
The 12 boys of a football team and their coach who were stuck in a cave in Thailand for 18 days were meant to stay there only for an hour, one of the boys' father said.
Summary:
The family of Indian sprinter Hima Das couldn't see her receive the IAAF World Junior Championships gold medal due to a power cut.
Summary:
The Facebook-owned company took to Twitter to acknowledge the issue stating, "We're aware that some users are having trouble accessing their Instagram accounts.
Summary:
India will buy the Russian S-400 Triumf air defence missile despite US sanctions on military transactions with Russia, Defence Minister Nirmala Sitharaman said on Friday.
Summary:
The Uttar Pradesh Shia Waqf Board on Friday told the Supreme Court that it was willing to donate the Muslim part of the Ayodhya land to Hindus for the construction of the Ram temple.
Summary:
The Delhi High Court has asked the Indian Air Force (IAF) to review and change the protocols dealing with stress and substance abuse, stating that the force's system needs to be in line with the law.
Summary:
A woman labourer unearthed a pot filled with 57 gold coins, a silver coin and a gold earring belonging to the 12th century at a road construction site in Chhattisgarh's Kondagaon.
Summary:
The death toll from an explosion which hit an election rally in Pakistan's Mastung town on Friday has risen to 85, Balochistan's caretaker Health Minister Faiz Kakar said.
Summary:
Fashion designer Rohit Bal shared a Facebook post which read, "Why can't these celebrities pay for what they wear like everyone else...
Summary:
After reports of Indian women's T20I captain Harmanpreet Kaur losing the DSP post in Punjab over fake degree emerged, the 29-year-old said that her degree is not fake.
Summary:
Swiss tennis star Roger Federer, who crashed out of the Wimbledon 2018, played miniature table tennis (ping-pong) with Man vs Wild host Bear Grylls while shooting for Grylls' survival show 'Running Wild'.
Summary:
Madhya Pradesh Congress chief Kamal Nath has written an open letter to Lord Mahakaleshwar, an avatar of Lord Shiva, seeking his blessings to end the BJPâÂÂs "misrule" in the state.
Summary:
The Shiv Sena has asked if BJP President Amit Shah will apologise for party MLA Surendra Narayan Singh's remark claiming even Lord Ram can't stop rapes.
Summary:
Scientists at the University of Zurich have found that similar to the case with fingerprints, each person's brain anatomy is also unique.
Summary:
A 31-year-old man was thrashed to death by locals after he broke into a house in Delhi's Burari during a failed theft attempt.
Summary:
The Delhi High Court on Friday told top three Delhi bureaucrats, including Chief Secretary Anshu Prakash, to appear before Assembly committees or face contempt of court proceedings.
Summary:
The girl's Aadhaar card and pictures recovered from her phone prove she is married to Bhagat, Monika claimed.
Summary:
After union minister Arun Jaitley wrote a Facebook post slamming Congress over its policies in 1970s and 1980s, Congress spokesperson Randeep Surjewala asked Jaitley to write a Facebook post on who is India's Finance Minister.
Summary:
The BJP had asked Congress President Rahul Gandhi to apologise for the remark.
Summary:
The Delhi Noida Direct (DND) flyway will continue to remain toll-free for now, the Supreme Court said on Friday.
Summary:
The Supreme Court on Friday disposed of BJP MP Subramanian Swamy's petition in the Sunanda Pushkar death case.
Summary:
Former J&K CM and National Conference leader Farooq Abdullah said an open border similar to the one between UK-governed Northern Ireland and the Irish Republic is the best solution for the Kashmir issue.
Summary:
US President Donald Trump reportedly lost around 1 lakh Twitter followers after the micro-blogging site began removing locked accounts from follower counts.
Summary:
Johnson & Johnson has been ordered by a jury in Missouri, USA, to pay $4.7 billion to 22 women claiming that the company's talcum powder caused them to develop ovarian cancer.
Summary:
Recently, the post-mortem reports of the other ten family members confirmed that they died of hanging.
Summary:
Summary:
Producer Boney Kapoor said that Syed is an unsung hero, whose achievements must be saluted.
Summary:
The Athletics Federation of India (AFI) has issued an apology after commenting on junior world champion Hima Das' English speaking skills on Twitter.
Summary:
Twitter Co-founder and CEO Jack Dorsey himself lost at least 2 lakh followers on Friday after the micro-blogging site introduced a new policy to count the number of followers.
Summary:
With built-in motion sensors, the earphones begin playing music once the user 'swings' them up to their ears.
Summary:
Elon Musk-led Tesla offered free Red Bull drinks to workers at its California factory to keep them awake and complete Model 3 car production goal, a Bloomberg report said.
Summary:
An Andhra Pradesh official on Friday lost his cool while trying to manage the crowd at the Anna Canteen in Kurnool and slapped several people.
Summary:
The CBI has booked unnamed officials of the External Affairs Ministry for allegedly fraudulently withdrawing â¹92 lakhs from various General Provident Fund accounts.
Summary:
A model, who had been held hostage by a man at her house in Bhopal, was rescued by the police.
Summary:
US President Donald Trump has said that UK PM Theresa May's Brexit plan would "probably kill" any trade deal between the two countries.
Summary:
Duangpetch Promthep or Dom, one of the 12 boys rescued from a cave in Thailand revealed they used their hands to dig out mud to get to higher ground to avoid drowning while trapped inside the cave.
Summary:
The National Company Law Tribunal (NCLT) has dismissed all allegations against Tata Sons and Chairman Emeritus Ratan Tata in â¹22 crore AirAsia fraud citing no merit in any of the issues raised.
Summary:
Congratulating 18-year-old Hima Das who became the first-ever Indian to win track gold in a world championship, Shah Rukh Khan tweeted, "Felt a genuine wave of pride...inspiration.
#HimaDas Kya baat hai!" Meanwhile, Amitabh Bachchan tweeted, "India is proud of you...
Summary:
Whalers in Iceland faced backlash after they were seen killing a blue whale, an endangered species that has not been deliberately captured since 1978.
Summary:
According to FIFA, a total of 2,037 tests have been carried out to produce a total of 3,985 blood, urine and serum samples since January 2018.
Summary:
Croatian cabinet ministers wore jerseys of the football team to a meeting to mark the country's 2018 FIFA World Cup semi-final victory against England.
"What happened...is the best possible promotion for the country on a global level.
Summary:
Hima Das, who became the first-ever Indian to bag gold in a track event at world championships, said that the Athletics Federation of India has not done anything wrong in calling her English "not so fluent".
Summary:
Cab aggregators Ola and Uber have pulled back an order of over 2.5 lakh vehicles from automobile manufacturer Tata Motors.
Summary:
It widened to $16.6 billion due to a rise in oil imports that surged 56.61% to $12.73 billion.
Summary:
A 17-year-old boy allegedly hanged himself from the ceiling while he was on a WhatsApp video call with his girlfriend in West Bengal's Baruipur area.
Summary:
The Maharashtra Legislative Council was adjourned after the Opposition objected to two Gujarati pages being printed in the Class 6 Geography textbook, which was in Marathi language.
Summary:
This comes after media reports claimed that all applicants will have to submit their Aadhaar details or undergo Aadhaar authentication.
Summary:
US House Speaker Paul Ryan has claimed his "car was eaten by animals", referring to an instance when a family of woodchucks ate the wiring of his Chevy Suburban and rendered the car useless.
Summary:
Balochistan provincial assembly candidate Siraj Raisani was killed in the second election-related attack.
Summary:
Swedish furniture major IKEA, which was set to open its first-ever store in the country in Hyderabad on July 19, has postponed the store launch to August 9.
Summary:
Ambani's net worth now stands at $44.3 billion as compared to Jack Ma's $44 billion wealth, according to Bloomberg.
Summary:
The Supreme Court on Friday slammed the Information and Broadcasting Ministry's decision to create a social media hub for tracking online content.
Media persons will be hired under the project to be the government's "eyes and ears".
Summary:
The man who pushed a 19-year-old girl from a college's second floor during a safety drill in Tamil Nadu's Coimbatore was a 'fake instructor', the National Disaster Management Authority (NDMA) said.
Summary:
The talks will feature India's Ministers for External Affairs and Defence and the US Secretaries of State and Defence.
Summary:
A Twitter account operated by the Congress mistakenly tagged actress Priyanka Chopra instead of its spokesperson Priyanka Chaturvedi in a tweet criticising PM Narendra Modi.
Summary:
Actress Kajol, while sharing a new poster of her upcoming film 'Helicopter Eela', tweeted, "Holding on to my baby be like." The film also stars National Award winning actor Riddhi Sen, who will play Kajol's son.
Summary:
Actor Shahid Kapoor's wife Mira Rajput, on being asked what the gender of her unborn baby is, replied, "Don't know and doesn't matter".
Summary:
Actress Rajshri Deshpande, who went topless for scenes in the web series 'Sacred Games', revealed she is getting messages saying she's a porn star.
"Collages have been made saying 'Hot Indian Actress With Mangalsutra!' The scene has made way to porn sites," added Rajshri.
Summary:
"I wish I'd played longer for India," he further wrote talking about regrets.
Summary:
India has invited US President Donald Trump to be the Chief Guest for next year's Republic Day parade, reports said.
Summary:
A man has kept a model hostage at her house in Bhopal, Madhya Pradesh claiming that he loves her and wants to marry her.
Summary:
Haryana Governor Kaptan Singh Solanki has been given the additional charge as the Governor of Himachal Pradesh during the absence of incumbent Himachal Pradesh Governor Acharya Devvrat.
Summary:
A video showing waterlogging and leakage inside the Delhi Secretariat has emerged after heavy rain was reported in the area.
Summary:
Profit was marginally impacted by a â¹270-crore reduction in the fair value of Panaya.nn
Summary:
Summary:
Kohli had scored 2,818 runs in 2017, which is the third-highest tally of international runs scored by a batsman in a calendar year.
Summary:
Former Indian cricket team captain Sourav Ganguly, who took off his shirt at Lord's after India's NatWest series win on July 13, 2002, had later called the celebration a "big mistake".
I made a mistake.
Summary:
Sun Tianqi, the Founder of China-based electronics startup Vincross has developed a plant-carrying robot called Hexa which can chase the sunlight or retreat into the shade automatically.
Summary:
Facebook spent $88.3 million on virtual reality unit Oculus-related permits for eight offices in the US in 2018, as per the analysis by real estate resource BuildZoom.
Summary:
Stating that Rahul personally attacked him, Jayant asked him to not "hide behind social media".
Summary:
Ride-hailing startup Ola has started making money on each ride after taking into account expenses including driver incentives and customer discounts.
The Effective Net Take Rate represents the commission that Ola makes on each ride after discounts.n
Summary:
PM Narendra Modi lost around 2 lakh Twitter followers within 24 hours and currently has 43.1 million followers after the micro-blogging site started removing fake and automated accounts, reports said.
Summary:
Four similar incidents of deaths due to potholes have previously been reported from the area after the arrival of monsoons.
Summary:
Delhi police have arrested a man for allegedly stabbing his friend in the throat after an argument over sharing a water bottle.
Summary:
The organisers said that the giant balloon had been designed to speak to Trump "in a language that he understands, which is personal insults".
Summary:
Syrian government forces have taken control over Daraa, the birthplace of protests that led to the country's civil war, the state media reported.
Summary:
Former Pakistan PM Nawaz Sharif's wife, Begum Kulsoom Nawaz, has come out of a month-long coma, the Sharif family said.
Summary:
Maharashtra Food Supplies Minister Ravindra Chavan announced that people will be allowed to carry food items along with them in cinema halls and multiplexes in the state.
Summary:
Its 'New Shepard' capsule can fly 6 passengers over 100 km above Earth into suborbital space.
Summary:
Responding to allegations that 'Sanju' is an attempt to whitewash Sanjay Dutt's image, his sister and Congress leader Priya Dutt said, "He made a lot of bad decisions...The film shows that." "Sanjay was not a victim of circumstances...'Sanju' shows him with his flaws," she added.
Summary:
Kaif represented India in 125 ODIs and 13 Tests.
Summary:
Athletics Federation of India shared an interview of Hima Das after she won 400m semi-final at IAAF World Junior Championships, writing, "Not so fluent in English but she gave her best there too." Users slammed the federation, saying that her spoken English shouldn't take away from her achievement.
Summary:
Women now make up 36% of Facebook's global workforce, up from 31% in 2014, the report said.
Summary:
The last CM of united Andhra Pradesh, N Kiran Kumar Reddy, has rejoined the Congress, months ahead of the 2019 Assembly elections.
Summary:
Parents of the students have alleged that the food served at the school was of poor quality.
Summary:
Individuals accused of rape and molestation in Haryana will be barred from government services including losing their driving and arms licenses and old-age pension till their trial is completed, CM Manohar Lal Khattar announced.
Summary:
A youth from Uttar Pradesh's Aligarh has announced a reward of â¹11,000 to anyone who blackens Congress MP Shashi Tharoor's face for his remark that India will become a 'Hindu Pakistan' if BJP wins 2019 elections.
Summary:
A section of IDBI Bank officers has threatened to go on six-day strike from Monday in protest against proposed acquisition of the bank by Life Insurance Corporation and wage-related issues.
Summary:
Actor Farhan Akhtar, who played Milkha Singh in a movie about the former Indian sprinting star, said that sprinter Hima Das has fulfilled Milkha's dream with her women's 400m gold at the World U20 Athletic Championships.
Summary:
After Rohit Sharma slammed 137*(114) to help India win the first ODI against England, former cricketer Virender Sehwag tweeted, "Sharma ji ka ladka hit tha, hit hai, hit rahega." The 31-year-old opener smashed 15 fours and four sixes in his knock.
Summary:
Hima Das clocked 51.46 seconds to win the women's 400m event at the IAAF World Junior Championships in Finland on Thursday.
Summary:
India's maiden ODI resulted in India losing to the English by four wickets at Headingley.
Summary:
Swedish transport startup Einride has unveiled its all-electric and self-driving truck called 'The T-log' made to carry logs.
Summary:
Technology major Apple is planning to shut down its 'Photo Print Products' service after 16 years, the company has confirmed.
Summary:
After former J&K CM Mehbooba Mufti warned the Centre that breaking her party PDP would create more militants, Union Minister Mukhtar Abbas Naqvi said that with her statement, Mufti was "trying to give oxygen to terrorists".
Summary:
Congress President Rahul Gandhi has started monthly performance reviews for the party leaders, wherein the general secretaries, secretaries, and leaders in-charge of states will fill self-appraisal forms on the 10th of every month.
Summary:
"Both BJP and YSRCP are conspiring against (CM) Chandrababu Naidu and TDP.
TDP is demanding special category status for the state.
Summary:
Once the fund is closed, Misra will reportedly step down from his existing role at SoftBank, citing personal reasons.
Summary:
Mumbai-based artist-focused startup Wishberry has raised â¹10 crore in Series A funding led by Reliance Entertainment, Director of Scrabble Entertainment Sunil Patil, and 3one4 Capital.
Summary:
Earlier this year, Waymo had announced a partnership with Jaguar to use the I-Pace as part of Waymo's self-driving service.
Summary:
Answering a question about India being feared to be turning into an illiberal democracy, former Vice President Hamid Ansari said, "Yes, yes.
Summary:
Yagnik had joined the Dainik Bhaskar group in 1998, after working at the Free Press Journal.
Summary:
Scientists from New Zealand have performed the first-ever 3-D, colour X-ray on a human body, using the imaging technology developed for the Large Hadron Collider at the CERN physics lab.
Summary:
A video of the incident shows her being assisted by a trainer on the second floor.
Summary:
It has been rated 2.5/5 (Bollywood Hungama) and 2/5 (NDTV, Hindustan Times).
Summary:
Summary:
Oscar-winning actress Mira Sorvino has revealed a casting director gagged her with a condom during an audition for a horror film when she was 16.
Summary:
Speaking on hate comments about her on social media, Janhvi Kapoor said, "I go online and read these comments, and...I'm like 's**t, I'm really the scum of the earth'." "Everyone tells me not to [read comments].
Summary:
Ranbir Kapoor, while speaking about his drinking habit, said, "I have a tendency to drink a lot.
Ranbir had earlier said when he is not working, he can "drink anything".
Summary:
Former J&K CM and PDP chief Mehbooba Mufti on Friday warned of dangerous outcomes if Delhi tries to interfere and create divisions in her party, amid reports that rebel PDP MLAs are in touch with the BJP.
Summary:
Tharoor had said BJP would write a new constitution creating a "Hindu Pakistan" if it won the 2019 elections.
Summary:
The particles are nicknamed 'ghost particles' as they are uncharged, causing their paths and trajectories to remain unaffected by magnetic fields.
Summary:
The Archaeological Survey of India has allowed photography at all centrally protected monuments except for the mausoleum at Taj Mahal, Ajanta Caves and Leh Palace.
Summary:
A thief in Kerala returned stolen jewellery to the owners along with an apology note that read, "Please forgive me, I did this because of my circumstances and I'm sorry." The owners had filed a police complaint on finding the ornaments missing at home after returning from a wedding.
Summary:
The two victims, who hailed from Bihar, were killed in a similar manner along the same railway route in a span of 36 hours.
Summary:
The External Affairs Ministry has lodged protests with the UK government over a pro-Khalistan rally being organised in London in August.
Summary:
Madhya Pradesh CM Shivraj Singh Chouhan on Thursday announced that the state government will sponsor the treatment and education of the four-year-old girl who was raped in Satna earlier this month.
Summary:
A man in Andhra Pradesh was allegedly killed by his friends for refusing to have sex with them.
Summary:
The Delhi High Court on Thursday pulled up the Indian Air Force for confining an officer to the psychiatric ward for two months over alcoholism without his consent.
Summary:
Shridhar Chillal, the 82-year-old man who holds the Guinness world record for having the longest nails, has become permanently handicapped for not cutting them for 66 years.
Summary:
The UK government under then PM Margaret Thatcher had tried to ban Sikh protests in the country after 1984 Operation Blue Star, recently declassified documents revealed.
Summary:
During the launch of 'Ek aur Sudhar' project, Haryana CM Manohar Lal Khattar said, "If anyone dares to point fingers at our women, their fingers will be chopped off." After being criticised for his statement, Khattar clarified, "What I intended to say was that the culprits will be punished.
Summary:
'Friggatriskaidekaphobia' is when a person has an irrational fear of a month's 13th day falling on a Friday.
Summary:
During India's first ODI against England, former England captain Michael Vaughan tweeted, "Can we have Australia back please ......." England had beaten Australia 5-0 in the ODI series between the two sides.
Summary:
Australian cricketer Glenn Maxwell trolled Indian spinner Yuzvendra Chahal by comparing him to Brazil's forward Neymar Jr after posting a picture of Chahal falling to the ground during India's ODI against England.
Summary:
Summary:
Madhya Pradesh CM Shivraj Singh Chouhan said, "I met PM Narendra Modi and discussed about China levying tariff on American soybean.
Summary:
China on Thursday slammed the US at the World Trade Organisation (WTO) and called it a "bully" that started a trade war.
Summary:
Former Chief Minister of Pakistan's Punjab Province, Shehbaz Sharif has said that while India punishes corrupt politicians, those in Pakistan fight elections and give sermons.
Summary:
Major Indian and International Brands are starring together at the sale, offering discounts ranging from 50-80%.
Summary:
Further, Kohli has now led India to 39 victories in 50 ODIs.
Summary:
Dismissing allegations against director Rajkumar Hirani of whitewashing his image through 'Sanju', Sanjay Dutt on Thursday said, "I don't think anyone would spend â¹30-40 crore to change his image." He added, "I've told the truth and it has been accepted by India...the movie's collection shows that." "After the film ended, I broke down.
Summary:
FIFA has asked broadcasters to stop cameramen from zooming in on "hot women" in the stands at major tournaments, including the ongoing 2018 FIFA World Cup, in order to curb sexism in football.
Summary:
Talking about Ranbir Kapoor who portrays him in 'Sanju', Sanjay Dutt has said he bets the former has had over 10 affairs.
Summary:
It has been rated 3.5/5 (Times Now, Koimoi) and 4/5 (Firstpost).
Summary:
Das had clocked an Indian U-20 record of 51.32 seconds to finish sixth in 2018 CWG 400m final.
Summary:
A Huawei Poland customer representative, who was addressing a user's query, accidentally referred to Android P as 'Android Pistachio'.
Summary:
Tesla and SpaceX's billionaire CEO Elon Musk on Thursday said that he might visit India early next year.
Summary:
Uttar Pradesh Minister and BJP leader Nand Gopal Gupta performed a pooja in Allahabad on Thursday to mark his 'rebirth', according to reports.
Summary:
The Uttarakhand government will make provisions for awarding death penalty to rapists of minor girls, CM Trivendra Singh Rawat said on Thursday.
Summary:
India on Thursday slammed Pakistan over reports that the country's first Sikh police officer was mistreated, saying this was not the first incident of religious minorities being disrespected there.
Summary:
The 'happiness curriculum' introduced by the Delhi government will begin next week, Deputy CM Manish Sisodia said today.
Summary:
After completing the process, the officer allegedly said, "I've done your verification.
Summary:
Talking about Congress MP Shashi Tharoor's statement that India will become "Hindu Pakistan" if BJP wins in 2019, former Vice President Hamid Ansari said he hasn't read what Tharoor said but he's a learned man.
Summary:
A Gujarat engineering college is charging an annual tuition fees of â¹2,500, while another college has hired commission agents to bring students, after majority of their seats have gone vacant.
Summary:
Meanwhile, the government said schools in most first-world countries have cameras in classrooms for security.
Summary:
Twenty-three-time Grand Slam champion Serena Williams, who gave birth to her first child Alexis Olympia just over 10 months ago, reached her 10th Wimbledon final by defeating Julia Görges on Thursday.
Summary:
Croatia's coach claimed that KaliniÃÂ had refused to come in as a substitute in a warm-up match also.
Summary:
Summary:
A man allegedly kidnapped and raped a 15-year-old girl before hitting her head with a stone to kill her in Madhya Pradesh, the police said today.
Summary:
A security guard masturbating outside a hostel in Guwahati was caught on camera by a woman, who posted the video on her social media account.
Summary:
The incident occurred after a car owned by one of the teachers suffered minor scratches while the students were playing on campus.
Summary:
More than 4,000 personnel will be deployed in the UK for Trump's security.
Summary:
Addressing a press conference at the NATO summit on Thursday, US President Donald Trump called himself a "very stable genius".
Summary:
Talking about the ongoing trade war between the US and China, Veteran economist Stephen Roach has said that the US is on track to lose this trade.
Stephen Roach further said, "Trade wars are not easy to win.
Summary:
The company's shares fell 15% during intraday trading, taking its total market valuation to $89.4 billion.
Summary:
Former Pakistan cricket team captain and PTI chief Imran Khan has five illegitimate children that he knows, some of whom are Indian, his ex-wife Reham Khan has claimed.
Summary:
Shah met Bihar CM and JD(U) Chief Nitish Kumar over breakfast, and will reportedly meet again for dinner to discuss seat sharing.
Summary:
The man said he was sexually abused by a cousin and a teacher.
Summary:
A 46-year-old Indian doctor who was on a holiday with his wife and daughter was arrested on Thursday for allegedly molesting four women at the rooftop swimming pool of a five-star hotel in Singapore.
Summary:
Criticising Sanjay Dutt's biopic 'Sanju', 'Panchjanya', a magazine published by Rashtriya Swayamsevak Sangh (RSS) wrote the film is an attempt to whitewash Dutt's image.
Summary:
Murali Kartik had posted previous best bowling figures by a left-arm spinner (10-3-27-6).
Summary:
A new book 'Valley of Genius: The Uncensored History of Silicon Valley' claims that Google's Co-founder Sergey Brin was the company's 'playboy' in the early days.
Summary:
Heirs have the right to access the Facebook accounts of their deceased relatives, a German court ruled on Thursday.
Summary:
If the proposed amendment to the Bihar liquor law is passed in the state assembly, the first-time offenders would not mandatorily face jail term if they pay a fine of â¹50,000.
Summary:
At least six workers died and five others were seriously injured after a poisonous gas leaked in the Gerdau Steel India Limited plant in Andhra Pradesh's Anantapur.
Summary:
After members of Mother Teresa's charity were accused of child trafficking, Delhi RSS leader Rajiv Tuli said Mother Teresa's Bharat Ratna should be withdrawn if the allegations are proven to be true.
Summary:
While hearing the pleas against Section 377, the Supreme Court said homosexual behaviour is not an aberration but a variation.
Summary:
Yogendra's nephew Gautam Yadav allegedly paid â¹3.25 lakh cash, out of total â¹6.50 lakh, for jewellery purchased from Nirav's firm.
Summary:
Iran's embassy in India has said the country will do the best to ensure the security of oil supply to India amid the difficulties in dealing with the unstable energy market.
Summary:
US President Donald Trump has said that his visit to China last year where he spent two days with President Xi Jinping, were the most "magical" days he has ever lived.
Summary:
The auctioning process of Sahara's Aamby Valley property has failed and no bids have been received, market regulator SEBI has told the Supreme Court.
Summary:
"It's my first Hindi film in a very long time.
I can't remember when was the last time I did a Hindi film," he said.
Summary:
Sanjay Dutt will be releasing his autobiography on his 60th birthday on July 29, 2019.
Summary:
Croatian President Kolinda Grabar-KitaroviÃÂ gifted personalised football jerseys to US counterpart Donald Trump and UK PM Theresa May at a summit ahead of the team's World Cup semi-final on Wednesday.
Summary:
I would play a final without a leg if necessary," said the 30-year-old after the win.
Summary:
The man then contacted the owner of the wallet using the ID cards and informed him about the matter.
Summary:
Earlier, a woman was crushed to death by a bus after falling off her bike due to a pothole in Kalyan.
Summary:
Congress President Rahul Gandhi has met Muslim intellectuals in Delhi to reportedly assure them that Congress will adopt an inclusive approach for all sections of society.
Summary:
Dada JP Vaswani, spiritual leader and head of the Sadhu Vaswani Mission, passed away in Pune today morning at the age of 99.
Summary:
A music video showing Turkmenistan President Gurbanguly Berdimuhamedov rap with his grandson has surfaced online.
Summary:
An Iranian man was publicly flogged 80 times for drinking alcohol more than 10 years ago, human rights organisation Amnesty International has said.
Summary:
RCom alleged DoT didn't insist for bank guarantee against pending OTSC of Vodafone while approving Vodafone-Idea merger.
Summary:
Consumer or retail inflation accelerated to 5% to hit a five-month high in June this year, well above May's 4.87%, majorly due to rise in the fuel prices.
Summary:
Anurag Kashyap, responding to allegations that his web series 'Sacred Games' "insults" former PM Rajiv Gandhi, said, "This series doesn't...target any particular politician." "It doesn't talk about Indira Gandhi or Rajiv Gandhi per se.
Summary:
The Thai Ministry of Foreign Affairs thanked India in a letter for its help in the rescue of 12 kids and their football coach from a cave.
Summary:
Bezos' wealth has hit $144.4 billion, while Gates' wealth is at $93.4 billion, according to Forbes.
Summary:
The Supreme Court bench, on its third day of hearing against Section 377, said the stigma felt by LGBTQ individuals will go once the criminality attached to gay sex is removed.
Summary:
The first promotional video of 'Gul Makai', a film based on the life of Pakistani activist and Nobel Prize winner Malala Yousafzai, was released on the occasion of her 21st birthday today.
Summary:
After Congress MP Shashi Tharoor said that India will become "Hindu Pakistan" if BJP wins in 2019, the Congress has asked him to choose his words carefully.
Summary:
US hedge fund Tiger Global has taken a stake worth $1 billion in SoftBank Group and told its investors that SoftBankâÂÂs shares are âÂÂmeaningfully undervalued", according to reports.
Summary:
As per reports, five thieves broke into four shops and looted goods worth lakhs of rupees.
Summary:
Bhopal mayor Alok Sharma on Thursday sat on a chair in the middle of a waterlogged street to inspect the ground situation in the region.
Summary:
Failing to let girls complete 12 years of education cost countries between $15-30 trillion in lost lifetime productivity and earnings, according to a World Bank report.
Summary:
Axis Bank's deputy MD V Srinivasan and PS Jayakumar, MD and CEO Bank of Baroda, are two of the three candidates that Axis Bank recommended for CEO's post, according to reports.
Summary:
Hero Enterprises Chairman Sunil Munjal has said "money is like a manure" and one must spread it so that it becomes useful.
Summary:
Hollywood actor Dwayne Johnson has said the birth of his daughter Tiana Gia changed the way he looks at women and mothers.
And out comes the baby," he said while recalling his experience.
Summary:
Priyanka Chopra took to Instagram to wish her brother Siddharth Chopra on the occasion of his birthday.
"Happiest birthday and all my love and luck...Thank you for your kindness," Priyanka added.
Summary:
The photographer kept on taking pictures despite being pinned to the ground by the Croatian players.
Summary:
World number one Rafael Nadal clambered over the net and went towards Juan MartÃÂn del Potro to console him with a hug after defeating him in a five-set 288-minute Wimbledon quarter-final on Wednesday.
But Rafa came to me...it was kind of him," Potro said.
Summary:
The KKR Academy has been launched to provide off-season training facilities and coaching to the players in the squad.
Summary:
"That's how high in regard I hold Smith...Ashes summer last year was just some of the...purest batting," he further said.
Summary:
Virtual reality startup SmartVizX has raised â¹10 crore in pre-series A funding from YourNest Venture Capital and the Indian Angel Network's IAN fund.
Summary:
Parts of Australia will witness a partial solar eclipse with a supermoon as it passes over the Antarctic Ocean at 1 pm local time on Friday, July 13, 2018.
Summary:
A man in Odisha allegedly killed his father by pushing him into a well following an argument over â¹5 for liquor.
Summary:
India has saved over â¹90,000 crore as of March 31 this year by using Aadhaar in some schemes like Public Distribution System, Unique Identification Authority of India Chairman J Satyanarayana has said.
Summary:
One of the five priests of a church in Kerala, who were last month accused of sexually assaulting a woman, surrendered on Thursday.
Summary:
Amid heavy rains in the city, Mumbai Police has tweeted a GIF featuring lyrics from the theme song of TV series 'Friends'.
Summary:
The Navy also permitted women to sport lock hairstyles and wider hair buns under the new rules which came into effect on Wednesday.
Summary:
Amid the ongoing trade war, the US has threatened a "reckoning" over China's "unfair" trade policies.
Summary:
The Thai Navy SEAL has released a video of the multi-day rescue mission carried out to save 12 boys of a football team and their coach, who were trapped in a Thailand cave for 18 days.
Summary:
"The Dreamery is about making sleep a part of regular wellness routines," âÂÂsaid COO Neil Parikh.
Summary:
Kylie Cosmetics' 20-year-old Founder Kylie Jenner, whose net worth is $900 million, may beat 34-year-old Facebook CEO Mark Zuckerberg as the world's youngest self-made billionaire.
Summary:
Actor Shah Rukh Khan, while replying to Madhuri Dixit's tweet in which she shared a still from their 2002 film 'Devdas', wrote, "You will always be the one jisne 'Maar Daala!!'".
Summary:
Kevin Anderson, who knocked Roger Federer out of Wimbledon on Wednesday, once lost to former South African cricket captain AB de Villiers in a tennis match in junior circuit.
Summary:
After Uber's self-driving car crash which killed a pedestrian in Arizona in March, the ride-hailing startup has laid off about 100 self-driving vehicle operators.
Summary:
Congress leader Shashi Tharoor, who earlier remarked that India will become 'Hindu Pakistan' if BJP wins in 2019 general elections, took to Facebook on Thursday to clarify it.
Summary:
Summary:
While hearing the petitions against Section 377, the Supreme Court on Thursday observed that LGBT individuals are forced to marry a person of the opposite sex and face "mental trauma".
Summary:
India has expressed concern over reports of ISIS acquiring chemical weapons and asked the international chemical weapons watchdog OPCW to monitor the threat.
Summary:
Work on a collapsed bridge in Gujarat's Kheda district was started soon after a video showing school children and locals risking their lives while crossing it went viral.
Summary:
West Bengal Chief Minister Mamata Banerjee on Thursday defended Mother Teresa's Missionaries of Charity (MOC), whose members have been accused of child trafficking, and said, "Malicious attempts to malign their name." "The Sisters are being targeted.
Let MOC continue to do their work for the poorest of the poor," she tweeted.
Summary:
South Korean President Moon Jae-in on Thursday said that North Korea's criticism of the US was part of its negotiating strategy and the talks between the two countries are on the "right track".
Summary:
Benchmark index BSE Sensex surged 282.48 points to end at a record closing high of 36,548.41 on Thursday.
Summary:
Janhvi, who will make her acting debut with 'Dhadak', will be seen playing a Rajasthani girl in the film.
Summary:
Belgian capital Brussels played French football team's anthem Tous Ensemble (All Together) in its metro trains on Wednesday after Belgium's 0-1 World Cup semifinal loss to France.
Summary:
After Roger Federer and Kevin Anderson were locked at 8-8 in the final set of Wimbledon quarter-final, an England football fan shouted, "Hurry up, I need to watch the football." Federer went on to lose the match in four hours and 13 minutes.
Summary:
Summary:
Eligible content creators will see a Copyright section in YouTube Studio and a Matches tab will show similar videos the tool has identified.
Summary:
Twitter will start removing locked accounts from follower counts across profiles globally, the micro-blogging site announced.
Summary:
"This is Russell's Viper snake.
The snake was later released in the nearby bushes, Dhanani's media coordinator said.
Summary:
Summary:
Those killed included a family of four whose house collapsed in heavy rain that followed the cloudburst.
Summary:
Reacting to Congress leader Shashi Tharoor's "Hindu Pakistan" remark, BJP leader Subramanian Swamy said, "The Prime Minister should take pity on Mr Tharoor, find out whether he needs medical help." Adding that the Congress leadership should disown Tharoor's comments, Swamy said, "I don't know if he overdosed on something.
Summary:
A US man who abandoned a 5-month-old baby under a pile of sticks and debris in Montana after a car crash has said the newborn was very heavy.
Summary:
The payments bank said it has also been permitted by the UIDAl to resume adding new customers using Aadhaar based eKYC.
Summary:
Mukesh Ambani-led Reliance Industries Limited crossed the $100-billion market cap mark on Thursday, joining Tata Consultancy Services as the only two $100-billion companies in India.
Summary:
Pure Flix Entertainment has announced it will make a film on the rescue of 12 schoolboys and their football coach from a flooded cave in Thailand.
Summary:
Speaking about Paresh Rawal's portrayal of her late father Sunil Dutt in 'Sanju', Sanjay Dutt's sister Namrata Dutt said, "I didn't connect, but I'm not the audience.
I'm Sunil Dutt's daughter." "Not that I didn't like him...[But] I can't see anyone portraying my father.
Summary:
"I feel like Forbes doesn't know what 'self-made' means," tweeted a user.
Summary:
With a 4-million population, Croatia became the smallest nation to reach a World Cup final since Uruguay in 1950, on defeating England 2-1 in the 2018 World Cup semifinal.
Summary:
US-based augmented reality (AR) startup Magic Leap has announced it will sell its first headset this summer through its owner AT&T.
Summary:
Billionaire Elon Musk has committed that he will fund the installation of filters in any house in the US city of Flint with water contamination above FDA levels.
Summary:
Summary:
Summary:
The live-stream was reportedly watched by 2,750 people, but no one alerted his family members.
Summary:
British MP Lord Alexander Carlile was denied entry into India upon arrival at Delhi Airport on Wednesday and was deported back for not having an appropriate Indian visa, the External Affairs Ministry said.
Summary:
To discourage the practice of dowry and ward off false cases, the Supreme Court suggested the Centre make it compulsory for families to disclose wedding expenditure to concerned marriage officers.
Summary:
Earlier, the reports had quoted Tiwari as confirming the ban.
Summary:
Delhi CM Arvind Kejriwal reprimanded the principal of a girls' school that locked up students in school basement for hours on Monday after their parents failed to pay the fees on time.
Summary:
A Russian asbestos company has branded its products with US President Donald Trump's face, along with the words "Approved by Donald Trump, 45th President of the US".
Summary:
Slamming Pakistan Election Commission's decision to deploy soldiers inside polling stations during the upcoming general elections, former Prime Minister Nawaz Sharif has said his party will not tolerate efforts being made to "engineer" the polls.
Summary:
Fox News political editor Chris Stirewalt has said that "like a seagull", US President Donald Trump is going to "defecate all over everything" during a NATO summit in Brussels, Belgium.
Summary:
Pornstar Stormy Daniels who claimed she had a sexual affair with US President Donald Trump in 2006 has been arrested at a strip club in Ohio for letting a customer touch her while on stage in violation of state law.
Summary:
Benchmark index BSE Sensex rose to a fresh all-time high in early trade on Thursday overtaking the previous peak of 36,443.
Summary:
Saif Ali Khan and his daughter Sara Ali Khan will star as father and daughter in an upcoming film directed by Nitin Kakkar, as per reports.
The film will reportedly be a relationship drama.
Summary:
The body of a seven-year-old boy strangulated to death has been found in Uttar Pradesh's Shamli with his hands, legs, and tongue cut off.
Summary:
A mid-air collision between two IndiGo planes was averted after they came face-to-face in Bengaluru airspace on Tuesday.
Summary:
The branch manager of a bank in Uttar Pradesh has been booked for allegedly depositing fake demonetised currency notes to the RBI, officials said on Thursday.
Summary:
A Class 9 boy allegedly hanged himself at his house in Bengaluru after becoming depressed over not being elected class leader at his school.
Summary:
Former Uttar Pradesh CMs Akhilesh Yadav and Mulayam Singh Yadav on Thursday withdrew their petitions from the Supreme Court seeking time to vacate their government bungalows.
Summary:
Mexico President-elect Andres Manuel Lopez Obrador on Wednesday said that he will cancel an over $1-billion helicopter deal with the US as the country "cannot afford the expense".
Summary:
Notably, Macedonia was invited to join NATO in 2008, however, Greece blocked the move over the long-running name dispute.
Summary:
Kylie, who appeared on the list for the very first time, amassed the fortune in less than three years.
Summary:
A 32-year-old screenplay writer named Ravi Shankar Alok allegedly committed suicide on Wednesday by jumping off the roof of a building in Mumbai where he lived.
Summary:
Late actress Sridevi's daughter Janhvi Kapoor, while talking about being criticised over nepotism, said, "Maybe I suck, but give me a chance." "I underestimated how angry people are.
Janhvi further said, "I'm sure there are people who are more talented than me...but why the hell should I give up [this opportunity]?"
Summary:
Two-time Wimbledon Champion Rafael Nadal defeated Juan Martin Del Potro in a five-set thriller to reach his first semi-final since 2011.
Summary:
"Is it normal for one person to earn millions, while thousands of families can't even get to the middle of the month," the workers questioned.
Summary:
"Leaving gamosas behind must have been the culprit's way of sending a message," police said.
Summary:
The napkins are sold at subsidised rates in the prison and the revenues are transferred to inmates' bank accounts.
Summary:
The membership will help Indian companies undertake joint investments in regions in which the EBRD operates.
Summary:
The women complained that the man wore a mask on his face during the calls.
Summary:
Trump is looking towards America," and "NATO relations in a nutshell."
Summary:
Slamming US President Donald Trump's policy to separate children of illegal immigrants from their families, Nobel Peace Prize laureate Malala Yousafzai described it as "cruel".
Malala further said, "I hope that the children can be together with their parents."
Summary:
After Macron finished giving a statement in French, Trump quickly responded, "It sounded beautiful.
Summary:
Summary:
Subramanian also reportedly appreciated Rajan for his efforts in tackling the NPA crisis.
Summary:
The actress is currently undergoing treatment in New York.
Summary:
Running Sirin OS, the phone comes with a built-in cold storage crypto wallet which supports major cryptocurrencies and tokens.
Summary:
Photo-sharing app Instagram has started letting users request for verified accounts across the platform.
Summary:
Shroud claimed the hacker had killed him twice in dodgy ways, so he decided to play with him.
Summary:
Congress leader Shashi Tharoor on Wednesday said that if BJP wins the 2019 polls, it would write a new constitution which will create a "Hindu Pakistan".
Summary:
The police have started conducting verification of all residents and saints in Ayodhya to check the number of culprits hiding in and around the city disguised as saints.
Summary:
The leopard had a limp, and authorities said this might be the reason it became a man-eating leopard instead of hunting in the forests for prey.
Summary:
Further, an 18-year-old woman was gangraped after being kidnapped while she was asleep on her terrace.
Summary:
The woman's cousin had asked his friend, named Idris, to make arrangements for her stay in Bhopal.
Summary:
Bus depots will be constructed by the Transport Department at six locations for these 1,000 buses.
Summary:
A UK-based gin distillery has named its new vodka after Novichok, the Soviet-era type of nerve agent allegedly used to poison former Russian spy Sergei Skripal and his daughter.
Summary:
Trump's remarks came as he called on the NATO members to increase their military spending, claiming that his country bears most of the expenditure.
Summary:
The UK government will pay ã40,000 (over â¹36 lakh) in damages to an Indian man for unlawfully detaining him.
Summary:
Kubbra Sait, who portrays 'Cuckoo' in web series 'Sacred Games', has revealed the series' co-director Anurag Kashyap requested her to shoot for a nude scene seven times.
Summary:
Croatia defeated England 2-1 after extra time in the second semi-final on Wednesday to reach FIFA World Cup final for the first time in history.
Summary:
Net neutrality implies that telecom service providers must treat all internet traffic equally, without any regard to the type, origin or destination of the content.
Summary:
Pune's 82-year-old Shridhar Chillal, who holds Guinness world record for longest fingernails on a single hand ever, is set to cut them after 66 years.
Summary:
Actor Diljit Dosanjh has revealed that he refused Bollywood films offered to him by some of his "favourite" directors as they had asked him to act without his turban.
Diljit had made his Bollywood debut with the 2016 film 'Udta Punjab'.
Summary:
The 36-year-old had won 34 consecutive sets at Wimbledon before losing three straight sets against Anderson.
Summary:
Thailand will turn the Tham Luang cave, where 12 boys of a football team and their coach were trapped for 18 days, into a museum.
Summary:
Alleging that the Income Tax department carried out a raid at his sister's hospital in Haryana's Rewari, Swaraj India leader Yogendra Yadav on Wednesday said, "Modiji you can't silence me." In a tweet, he claimed that the raid was the government's attempt to "intimidate" him.
Summary:
Three accused were running fake SBI call centres to cheat customers by obtaining their credit card details and OTP numbers.
Summary:
Hyderabad-based businessman KS Rao on Tuesday made an offering of â¹1 crore to the Tirumala Tirupati Devasthanams shrine of Lord Venkateswara.
Summary:
Hearing a petition against the gender-specific nature of sexual assault law, the Delhi High Court on Wednesday asked if there will ever be a right time to make rape laws gender-neutral.
Summary:
In her statement to the one-man panel probing the death of former Tamil Nadu CM Jayalalithaa, a doctor said the late CM was against weight loss surgery and wanted to reduce weight through dieting.
Summary:
The 60 women on the list have a record combined fortune of $71 billion.
Summary:
Cricket legend Sachin Tendulkar took to Twitter to share a video of himself backing England football team to win 2018 FIFA World Cup. In the video, Sachin can be seen kicking the ball into the camera.
Summary:
Summary:
Former Pakistan cricketer Abdul Razzaq took to social media to share a video, dismissing rumours that he died in a road accident.
"Today on Facebook somebody gave incorrect news that I died in a road accident.
Summary:
The Fair Trade Commission (FTC) said the Japanese unit of Apple forced companies like KDDI and SoftBank to sell iPhones at a discount.
Summary:
In a Facebook post, Ponnada said she moved to the US when she was 14 with her mother.
Summary:
After the yet-to-be-established Jio Institute was listed as an 'Institution of Eminence' by the Centre, Delhi Chief Minister Arvind Kejriwal tweeted, "Earlier Congress government was in Ambani's pocket, now the Modi government is in Ambani's pocket.
Summary:
The Bengaluru-based startup's existing investor 3one4 Capital also participated in the round.
Summary:
Eight people of a family were killed and three others injured when the jeep they were travelling in crashed into a stationed truck on the Agra-Lucknow Expressway today morning.
Summary:
At least seven people were killed and two others injured as heavy rain lashed parts of Dehradun on Wednesday, the police said.
Summary:
Police reportedly believe the pistol and bullets used to murder gangster Munna Bajrangi may have been smuggled into the UP jail in food packets meant for his rival Sunil Rathi.
Summary:
A 35-year-old labourer was beaten to death at a wedding venue when he objected to the bursting of firecrackers as he was hit by a splinter, Assam police said.
Summary:
A Japanese nurse has admitted to poisoning over 20 patients in a way that they didn't die during her shift, in order to avoid the "nuisance" of informing their families.
Summary:
A US court has directed the government to reunite migrant children with their parents or face penalties.
Summary:
A picture has surfaced online which shows a man taking a selfie with three accident victims lying on the road in the background.
Summary:
The water pumps draining the flooded cave in Thailand, where a football team of 12 boys and their coach were trapped for 18 days, failed just hours after the last boy was evacuated.
Summary:
Australian doctor Richard Harris with 30 years' diving experience cut short his vacation in Thailand to rescue 12 kids trapped in a cave.
Summary:
BSNL users will be able to call on any network's number by installing BSNL's app 'Wings' on their devices including smartphone, tablet or laptop.
Summary:
Rajkummar Rao, while speaking about working with Aishwarya Rai Bachchan in 'Fanney Khan', said, "People are saying there's a new couple in town in the form of both of us and I'm completely okay with it." "The chemistry between Aishwarya Rai and me is being appreciated," he added.
Summary:
The 12 boys rescued from a cave in Thailand on Tuesday, lost an average of two kilograms in weight while they were trapped inside for over 2 weeks.
Summary:
The first video of the boys rescued from a flooded cave in Thailand showed them making victory signs from their hospital beds on Wednesday.
Summary:
Juventus' online store crashed just hours after the Italian football club put on sale jerseys bearing the name and jersey number (7) of their new signing Cristiano Ronaldo.
Summary:
Malviya quoted Nawazuddin's dialogue along with the video in the post.
Summary:
For the first time, Rajya Sabha members can speak in any of the 22 languages listed in the eighth schedule of the Constitution, Rajya Sabha Chairman M Venkaiah Naidu has decided.
Summary:
The Goa Congress has written to Guinness World Records claiming PM Narendra Modi has set a record by making 41 trips to 52 countries within four years.
Summary:
The government might withdraw the 'Institute of Eminence' status for the Jio Institute if it is "not found to be performing up to the mark" within three years, Higher Education Secretary R Subrahmanyam said.
Summary:
Roofing distributor ABC Supply's Chairman Diane Hendricks has topped the Forbes list of America's Richest Self-Made Women for 2018 with a net worth of $4.9 billion.
Summary:
Veteran investor Mark Mobius has said the world will see a "financial crisis sooner or later" because it's coming off from "period of cheap money".
Summary:
Katarina Zarutskie said one of the sharks bit her arm and dragged her underwater and she pulled her arms out as fast as she could.
Summary:
England football team players threw around rubber chickens to warm up during their training session ahead of their 2018 FIFA World Cup semi-final match against Croatia.
Summary:
"I prefer to lose with this Belgium than win with this France," forward Eden Hazard said.
Summary:
A video of guests at a Punjabi wedding in the UK dancing to England's 2018 FIFA World Cup chant 'It's coming home' has surfaced online.
Summary:
"If these girls want to achieve something, they need to come out of their comfort zone.
Summary:
Former Google artificial intelligence (AI) chief John Giannandrea has been appointed as Apple's Chief of Machine Learning and AI Strategy, the company said.
Summary:
The students claimed they found a lizard in the meal.
Summary:
New Delhi's Connaught Place is the ninth most expensive location globally to set up or rent an office, with an annual rent of â¹10,512 per square feet, according to American property consultant CBRE.
Summary:
A BSF chopper carrying top CRPF officials deployed for anti-Naxal operations had to make an emergency landing in Bihar's Aurangabad after it developed a technical problem.
Summary:
A research scholar was arrested after allegedly assaulting a Dalit professor and making casteist remarks at him in Lucknow's Babasaheb Bhimrao Ambedkar University after the latter did not select him for a fellowship.
Summary:
Saudi Arabia's King Salman bin Abdulaziz has issued a royal decree pardoning all soldiers who are serving in Yemen's ongoing civil war.
Summary:
Huh Chin-kyu, the 77-year-old Chairman of South Korea-based Iljin Group, has become a billionaire after the increasing demand for the firm's copper coils, a key component of rechargeable batteries used in electric vehicles.
Summary:
The makers of Tom Cruise starrer 'Mission: Impossible - Fallout' transformed a valley in New Zealand into a small Kashmiri village to shoot a portion of the film.
Summary:
The character was originally portrayed by Dutt in the 2003 film 'Munna Bhai MBBS'.
Summary:
Handwritten notes dating back to November 2017 state that the Burari family might not celebrate the Diwali in 2018, the police said on Tuesday.
Summary:
Congress workers in Chhattisgarh are wearing t-shirts with the caption 'Udd Gayi Vikas Ki Chidiya', in an apparent jibe at the BJP.
Summary:
CBI on Wednesday filed a chargesheet against BJP MLA Kuldeep Singh Sengar in Uttar Pradesh's Unnao rape case, naming him as an 'accused'.
Summary:
A study by UK's University of Surrey has revealed average black carbon concentration on roads in New Delhi was up to five times higher compared to Europe or North America.
Summary:
Iran sold oil to India with long-term credits and at discounted prices and received payments in rupee, Rahaghi added.
Summary:
A special CBI Judge handed down the jail term to Rathore for spying.
Summary:
Kerala-based Kalyan Jewellers has moved the Kerala High Court, claiming fake videos on YouTube caused it a â¹500-crore loss.
Summary:
The Twitter handle of the Delhi Traffic Police was hacked on Tuesday, after which it was restored and a probe initiated into the incident.
Justin Forementin is tweeting on the Delhi Traffic Police Twitter.
Summary:
A worker committed suicide on Monday as he faced a severe financial burden.
Summary:
Passengers of a Jet Airways flight on Tuesday night protested on the runway of the Delhi Airport after their flight was cancelled.
The passengers, who sat on the runway, alleged harassment.
Summary:
The court was hearing a petition saying not just the man, but the woman he has a relationship with must also be punished.
Summary:
Indian Oil Corporation Chairman Sanjiv Singh has warned the Organisation of the Petroleum Exporting Countries (OPEC) to reduce crude oil prices, or decreasing demand will mean a curb in purchases from the crude cartel.
Summary:
Manchester United have invited the 12 Thai teen footballers and their coach, who were rescued from a cave after being trapped for over two weeks, to visit Old Trafford stadium (nicknamed 'The Theatre of Dreams').
Summary:
Cricketing legend Sachin Tendulkar has responded to tennis star Roger Federer's tweet "why wait?" over exchanging notes on cricket and tennis.
Summary:
Cristiano Ronaldo will reportedly get paid â¬30 million annually at his new club Juventus which is four times the salary of the Italian club's highest earner and ex-Real Madrid teammate Gonzalo HiguaÃÂn.
Summary:
The over six-minute video includes Ronaldo's top goals, winning moments and other key moments from his nine-season spell with the Madrid club.
Summary:
Hence, the 5% will be split between his former clubs Manchester United, Sporting Lisbon and Nacional, with United making â¬2.5 million.
Summary:
Facebook-owned WhatsApp has launched a 'forward label' feature which will highlight the forwarded messages on the platform.
Summary:
Google has launched its Launchpad Accelerator programme to mentor startups in India that use artificial intelligence and machine learning.
Summary:
Summary:
Chinese bike-sharing startup Ofo is shutting down its India operations within 60 days as "part of a global strategy to shrink the footprint", a company executive has said.
Summary:
Eight children and a woman were killed in landslides triggered by heavy rain in Manipur's Tamenglong district early on Wednesday.
Summary:
The toddler was refusing to go to the anganwadi centre and started crying when his mother left him there as part of her routine.
Summary:
US President Donald Trump has suggested that NATO members should reimburse his country for its military expenditures.
Summary:
The company's revenue increased 15.8% to â¹34,261 crore during the quarter.
Summary:
Central has announced a Red Haute Saturday for its customers in India's first 'You Shop, We Pay' on July 14.
Summary:
A special committee has been formed by Centre to find the pollution's source.
Summary:
Haryana's Mahavir Singh Phogat has said South Korean First Lady Kim Jung-sook told the Phogat family she'd try and invite them to South Korea so that they could teach wrestling to South Koreans.
Summary:
Krushna added, "I...told him we can perform together if you want.
Summary:
'Mohabbat', the first song from 'Fanney Khan', which has been picturised on actress Aishwarya Rai Bachchan has been released.
Summary:
Cristiano Ronaldo was bought for ã12.24 million by Manchester United as an 18-year-old from Portuguese club Sporting CP.
Summary:
A former Apple employee Xiaolang Zhang has been charged by the US authorities with stealing the technology giant's self-driving car trade secrets.
Summary:
Reportedly, the food packets contained oats and soya bean but had "Pepperoni - Made with pork and beef" mentioned on them instead.
Summary:
A Delhi court extended protection from arrest granted to Chidambaram and his son Karti in the case till August 7.
Summary:
Andhra Pradesh government on Wednesday launched 60 'Anna' canteens in nearly 25 municipalities across the state in the first phase.
Summary:
Summary:
The Chinese government has directed the country's media to not inflame the trade row with the US.
Summary:
"This will hit the country's budget, because until now most of the traffic fines were assigned for small offences," police officials added.
Summary:
The Sri Lankan Cabinet has unanimously approved a move to bring back capital punishment for drug-related crimes.
Summary:
Russian team doctor Eduard Bezuglov has admitted to a German newspaper that players sniffed ammonia before World Cup knockout matches, both of which went to extra-time.
Summary:
Indian spinner Kuldeep Yadav has revealed Steve Smith asked fast bowler Pat Cummins to break his ribs while he was batting during a Test against Australia.
"Smith came towards me and told Cummins, 'Bowl in his ribs, so that he can't bowl wrong ones, make his ribs hurt'," Kuldeep said.
Summary:
Portuguese captain Cristiano Ronaldo, who has left Real Madrid after 9 years for Juventus, had scored a bicycle kick goal against the Italian giants in the Champions League quarterfinals.
Summary:
The UK's Information Commissioner's Office (ICO) has issued Facebook a maximum fine of $662,000 for the data privacy scandal involving the British firm Cambridge Analytica.
Summary:
Apple has fixed a bug that crashed iPhone devices when users typed 'Taiwan' or used the Taiwanese flag emoji.
Summary:
Delhi Chief Minister Arvind Kejriwal on Wednesday sought a report on the alleged locking up of 16 girls in the basement of a school for not clearing their fees.
Summary:
Reacting to the row over IAS officer Shah Faesal's tweet against rape in India, former J&K CM Omar Abdullah said, "How is a sarcastic tweet dishonest?
Summary:
A Delhi court on Wednesday awarded retired Captain Salam Singh Rathore seven years rigorous imprisonment in the 2006 Navy War Room leak case.
Summary:
Summary:
The CBI has registered cases against three Mumbai-based companies for alleged banking fraud that caused cumulative loss of â¹136.9 crore to the SBI.
Summary:
The police on Wednesday received the post-mortem report in Delhi's Burari mass suicide case, confirming 10 of the 11 Bhatia family members died of hanging and no injury marks were present on the bodies.
Summary:
IAS officer Shah Faesal, who topped the 2009 UPSC exam, has been served a notice by the government over an April tweet commenting on a report of a "porn addict" raping his mother.
Summary:
An American tourist carried an unexploded World War II artillery shell to the Vienna Airport and asked customs officials if the "souvenir" could be taken onboard her flight home.
Summary:
Anushka Sharma is set to become the first Indian personality to get a 'talking statue' at Madame Tussauds Singapore, as per reports.
Summary:
Speaking about the feud between his family and his uncle Govinda's family, Krushna Abhishek said, "My mother has raised Govinda ji...I've all the rights to be upset with him." Krushna added that following the feud, Govinda didn't attend his son's first birthday.
Summary:
Australian medic Richard Harris, who helped the 12 boys and their coach stuck in Thai cave for 18 days, came out of the water-logged complex to the news of his father's death.
Summary:
What have you done?" The user was replying to Musk's tweet on "negative" use of the tag by media.
Summary:
A bi-weekly train in Tamil Nadu halts at 35 unmanned-level crossings to close and open the gates before proceeding.
Summary:
India is the sixth largest economy in the world, with a GDP of $2.59 trillion in 2017, according to a recent World Bank report.
Summary:
The entire state will be covered in separate phases over the span of two years.
Summary:
People shared stories about local cuisine and drinks in the closed group having 18 lakh members.
Summary:
A woman in Uttar Pradesh's Bareilly, who was given Triple Talaq by her husband over the phone, died during medical treatment after she was allegedly thrashed and confined to a room without food for a month over dowry.
Summary:
During a NATO summit in Brussels, Belgium, US President Donald Trump has said that Germany is "captive" of Russia.
Summary:
Earlier, WHO declared gaming addiction as a mental health disorder.
Summary:
A woman in Canada's Ontario accidentally stole a Nissan Infiniti for two weeks having mistaken it for the Nissan Sentra that she had rented.
Summary:
"Looking forward to playing #Chanakya, a film about one of the greatest thinkers in Indian History," tweeted Devgn.
Summary:
Russia defender Ilya Kutepov kept on playing until penalties despite injuring his right foot 20 minutes into the World Cup quarterfinal against Croatia, Russian football team's Twitter handle revealed.
Summary:
Pogba shared photos of the 12 boys while tweeting, "This victory goes to the heroes of the day".
Summary:
After cricketing legend Sachin Tendulkar joked about exchanging notes on cricket and tennis with 20-time Grand Slam champion Roger Federer, the latter tweeted, "why wait?
Summary:
Himachal Pradesh CM Jairam Thakur on Tuesday announced a â¹1.55-crore project to set up a cow sanctuary at Kotla Barog.
Summary:
Police have arrested two members of a five-member gang allegedly involved in over 200 ATM fraud cases.
Summary:
Reacting to media reports, the All India Muslim Personal Law Board said it never demanded a parallel court system.
Summary:
BJP Spokesperson Sambit Patra on Tuesday claimed that the "confession" by Pakistan-based Imam Zafar Bangash showed that the UN report on human rights violation in Kashmir is a "nefarious conspiracy designed by Pakistan".
Summary:
A man in Madhya Pradesh's Tikamgarh was forced to carry his mother's body on a motorcycle for the post-mortem after the hospital allegedly denied sending a hearse van.
Summary:
There is "very clear evidence of humanitarian need" in North Korea, UN Under-Secretary-General for Humanitarian Affairs and Emergency Relief Coordinator Mark Lowcock has said.
Summary:
Stating that demonstrations against Donald Trump could turn violent, Americans in the UK have been warned to "keep a low profile" during the US President's visit this week.
Summary:
Croma is offering you a chance to upgrade to a laptop that matches your lifestyle and budget with exciting offers.
Summary:
The letter was shared on social media by the deceased woman's husband.
Summary:
"He was one of the worst fathers to his children in history," Murray further said.
Summary:
Sunny Leone, born as Karenjit Kaur Vohra, while speaking about her biopic 'Karenjit Kaur: The Untold Story of Sunny Leone', said, "Everyone will get to see...the real me.
Summary:
The boys were trained how to breathe underwater through an oxygen tank as they had no diving experience.
Summary:
Researchers in Argentina have claimed to discover the world's "first giant" dinosaur, a 200-million-year-old species, about three times the size of the largest Triassic dinosaurs from its era.
Summary:
Locals and school children in Gujarat's Kheda town risk their lives by commuting every day through a bridge that collapsed over two months ago.
Summary:
PM Narendra Modi on Tuesday said that India is a stakeholder in the peace process between North and South Korea and will contribute towards ensuring peace on the Korean Peninsula.
Summary:
Prime Minister Narendra Modi today said South Korea's participation in the Make in India mission has created many employment opportunities in India.
Summary:
In a first, Indian Navy's P-8I long-range maritime patrol aircraft has been inducted at Hawaii for participating in the Rim of the Pacific (RIMPAC) exercise, which is the world's largest international maritime exercise.
Summary:
Malaysian Prime Minister Mahathir Mohamad on Tuesday reportedly said that he will not easily give in to India's demand for deporting controversial Islamic preacher Zakir Naik.
"We do not easily follow the demands of others.
Summary:
Mandsaur Police on Tuesday filed a 350-page chargesheet against the two accused in the eight-year-old girl's gangrape case.
Summary:
EAM is listening to only harsh language these days." The user tweeted while supporting the minister against the "harsh language" used by an Indian passenger who was stranded at Bali airport and was seeking Swaraj's help.
Summary:
US Secretary of State Mike Pompeo on Tuesday accused Iran of using its embassies to plot terrorist attacks in Europe.
Summary:
Patanjali's MD Acharya Balkrishna has said the company won't back out from the race to acquire bankrupt Ruchi Soya.
Summary:
Summary:
Ishaan Khatter has said that his upcoming film 'Dhadak' is an honest adaptation of the Marathi film 'Sairat' while adding, "It was never meant to be a gimmicky remake." He added, "The characters, their...
Summary:
Curmi, aged 46, said he felt a warm sensation in his trouser pocket before the device exploded seconds later.
Summary:
Video sharing platform YouTube has announced it will invest $25 million to counter the spread of fake news on its platform.
Summary:
A surveillance video showing four robbers stealing 26 Apple devices worth â¹18.5 lakh within seconds from a US store has surfaced online.
Summary:
Jadavpur University authorities have restored the entrance exams that were scrapped last week for admission to six arts faculty departments.
Summary:
Haryana Congress chief Ashok Tanwar has offered to "resolve differences" with former Haryana CM Bhupinder Singh Hooda in the interest of the party, stating, "Time is a great healer." He added, "I have political and personal differences with Hooda.
Summary:
According to the study, India is one of three countries where this has happened.
Summary:
A two-year-old girl was hospitalised in a critical condition after she was allegedly raped by her neighbour in Bihar on Tuesday.
Summary:
Ahead of his visit to the UK, US President Donald Trump has said it is up to the people of the country to decide if they want PM Theresa May to remain in power.
Summary:
Trump will meet Putin in Finland on July 16.
Summary:
Axis Bank on Tuesday said it has recommended the names of three candidates for the CEO's post for approval of the RBI.
Summary:
Be completely worry-free with unlimited data and calls on International Roaming packs available for Vodafone's Postpaid customers.
Summary:
Twelve boys and their football coach were rescued from a flooded cave in Thailand on Tuesday, after spending 18 days trapped underground.
Summary:
France defeated Belgium on Tuesday to reach the FIFA World Cup final for overall third time and the first time since 2006.
Summary:
After signing for Italian football club Juventus, Cristiano Ronaldo wrote an open letter to Real Madrid fans, urging them to "understand his decision".
Summary:
The 33-year-old played 438 matches for Real Madrid in nine seasons, scoring 451 goals.
Summary:
Following Cristiano Ronaldo's transfer from Real Madrid to Italian side Juventus, the former released a statement saying "Real Madrid will always be his home".
Summary:
Summary:
The total is seven runs more than the highest-ever T20 and T20I total of 263/3, which was registered by Australia in 2016.
Summary:
Pakistan's first Sikh police officer Gulab Singh alleged that he and his family were forcibly evicted from their house in Lahore while adding that his turban was forced open and hair was untied.
Summary:
The commission further said the doctor got an "unfilled form" signed by the family.
Summary:
However, the Railway Ministry clarified the same message is printed on every ticket.
Summary:
The maids are sisters and had been working at the former minister's house for over 15 years, the police said.
Summary:
Pakistan on Tuesday placed former PM Nawaz Sharif and his daughter Maryam's name on the Exit Control List (ECL) following their conviction in the Avenfield reference corruption case.
Summary:
The CBI on Monday arrested two people, who are considered 'close associates' of fraud-accused jeweller Nirav Modi, from Rajasthan's Ajmer district.
Summary:
Four other Winnie-the-Pooh illustrations were also sold at the auction.
Summary:
The 12 young footballers rescued from a cave in Thailand won't be able to attend the World Cup final, FIFA said.
Summary:
Australian pacer Pat Cummins has said Team India captain Virat Kohli will not be able to score a century during India's tour to Australia later this year.
Summary:
A football match in Brazil's D-League witnessed five red cards following a brawl involving football players from the opposing sides, Treze and Caxias.
Summary:
Reacting to five-time Ballon d'Or winner Cristiano Ronaldo joining Juventus from Real Madrid for over â¬112 million, a user tweeted, "Oh yeah there's World Cup today lol.
Summary:
German automaker Porsche has launched the 911 GT2 RS in India at a price of â¹3.88 crore.
Summary:
A 14-year-old girl who was allegedly hit on the head with a shovel while resisting a rape attempt has succumbed to her injuries at a Shillong hospital.
Summary:
The Punjab government will provide free treatment to drug addicts at government-run de-addiction centers, CM Captain Amarinder Singh said during a meeting on Tuesday.
Summary:
The Supreme Court has observed that Delhi is getting buried under "mountain loads of garbage" and Mumbai is sinking, adding that the government "does not do anything" to rectify the situation.
Summary:
Kerala Police on Monday arrested three 44-year-old men for allegedly circulating a morphed picture of Kerala CM Pinarayi Vijayan from his visit to a new police station in his hometown Pinarayi.
Summary:
Police on Monday arrested two Rohingya Muslims for illegally procuring an Indian passport and an Aadhaar card in Hyderabad's Balapur.
Summary:
The bank now has a valuation of â¹22,243.93 crore.
Summary:
He also became Real Madrid's all-time record goalscorer during his tenure.
Summary:
Ronaldo, who was playing for Sporting CP at that time, had an irregular heartbeat even when he was resting.
Summary:
Talking about the film 'Sanju', Union Minister Nitin Gadkari said late Shiv Sena chief Balasaheb Thackeray had once told him that Sanjay Dutt was "completely innocent".
Summary:
All trapped inside the cave were rescued on Tuesday.
Summary:
After all the 12 teenage footballers and their coach were rescued from Thailand cave on Tuesday, Thai Navy SEAL posted "We are not sure if this is a miracle, a science, or what" on its Facebook Page.
Summary:
After Real Madrid's all-time record goalscorer Cristiano Ronaldo joined Juventus, Real Madrid captain Sergio Ramos took to Twitter to wish luck to the five-time Ballon d'Or winner.
Notably, Ronaldo won four Champions League and two La Liga titles with the club.
Summary:
Paswan's son has filed a complaint against the man.
Summary:
A Tesla spokesperson said it will take 2-3 years before the new factory will be ramped up to hit the target.
Summary:
A private Delhi school's authorities allegedly locked minor girl students in the basement for hours on Monday after their parents failed to pay fees on time.
Summary:
The Madras High Court has upheld the death penalty for 23-year-old Chennai engineer S Dashwanth, who raped and killed his seven-year-old neighbour in February last year.
Summary:
Maharashtra Chief Minister Devendra Fadnavis has directed the Brihanmumbai Municipal Corporation (BMC) to seek IIT Bombay's help to find a solution to the city's pothole problem.
Summary:
Actor Bobby Deol has said that his father veteran actor Dharmendra has always been his hero while adding, "I have never thought of him in that way 'oh I have to match up to this'." Bobby added, "I was never asked to emulate him.
Summary:
Refuting this, Nadiadwala said that he hadn't approached Dutt for 'Housefull 4' while adding Nana was signed before Sanju's release.
Summary:
The fan had made a promise on Twitter that if Maguire scored against Sweden, he'll get the tattoo done.
Summary:
Former Indian cricketer Virender Sehwag took to Twitter to wish former captain Sunil Gavaskar on the occasion of his 69th birthday, calling the latter "truly a Dabanng".
Summary:
The Delhi High Court (HC) has fined Google-owned YouTube â¹9.5 lakh for failing to remove an offensive video from its platform.
Summary:
Priced at â¹3 lakh, Big Clapper has a motion sensor to detect users and different operation modes like clapping on basic rhythms, claps on demand or clap along with the music.
Summary:
Noida-based student housing startup Placio has acquired the subscription-based food delivery startup Paco Meals, the startup said in a statement.
Summary:
Karnataka Additional Director General of Police, Bhaskar Rao, has said police officers who fail to reduce weight will be punished with harsh duties.
Summary:
The girl was approached by three other men on her way home and was taken back to the accused's Chhindwara residence, where she was gangraped again.
Summary:
A woman killed her 75-year-old father-in-law on Monday night by beating him repeatedly with his stick at their house in a Himachal Pradesh village over a domestic dispute, the police have said.
Summary:
Iranian authorities had arrested Hojabri after she posted videos of herself dancing on Instagram without wearing the mandatory headscarf.
Summary:
Liu Xia, the widow of Chinese Nobel Peace Prize laureate Liu Xiaobo has left China after being released from house arrest, her relatives said.
Summary:
The company added it is communicating with a number of exchanges to "make it more difficult for the thief to liquidate" the stolen tokens.
Summary:
The bank's net interest income rose by 19.6% year-on-year to â¹2,122.43 crore during the quarter.
Summary:
Rathi claimed he was out for a walk when he met Bajrangi and the two started arguing.
Summary:
Telugu film producer Suresh Babu, who is the father of actors Rana Daggubati and Abhiram Daggubati, has said that flesh trade, liquor, alcoholism are part of man's life.
Summary:
Following the successful rescue of 12 boys from a football team and their coach from a cave in Thailand, Rishi Kapoor tweeted, "This script is a sure shot blockbuster whenever and whosoever makes it." Some Twitter users slammed him for trying to think of only "business" and "money".
Summary:
Kuldeep Yadav, in an episode of What The Duck, revealed once when he didn't listen to MS Dhoni about setting the field, the latter got angry at him.
Summary:
The hackers place a thermal camera on the keyboard of the victim and then use the footage captured to detect the password.
Summary:
Congress President Rahul Gandhi on Tuesday shared a petition from Change.org urging people to sign it in order to get MoS for Civil Aviation Jayant Sinha's Harvard alumnus status removed.
Summary:
In an affidavit, a former assistant professor at Pune's Zeal College of Engineering has claimed the institute's principal and director forced him to write the latter's wife's exam.
Summary:
Trump had slammed the NATO over military spending and claimed it "benefits Europe far more than the US".
Summary:
The company's revenue increased 15.8% to â¹34,261 crore during the quarter.
Summary:
Actor Will Smith's wife Jada Pinkett Smith has revealed when she was younger, she was addicted to sex.
Summary:
Filmmaker Atul Manjrekar, whose upcoming directorial 'Fanney Khan' will feature Aishwarya Rai Bachchan as a singer, has said she used to sing on the film's sets between takes.
Summary:
Summary:
Croatian forward Mario Mandzukic paid around â¹2.7 lakh for the drinks consumed by Croatian fans in his hometown of Slavonski Brod during the side's penalty shootout quarterfinal win against Russia.
Summary:
A Vijayawada-Mumbai Air India Express flight overshot the runway at Mumbai airport today.
Summary:
Congress President Rahul Gandhi tweeted, "Everyone knows Prime Minister Narendra Modi says his Mann ki Baat.
Summary:
US-based co-working startup WeWork's rival Convene has raised $152 million led by existing investor ArrowMark Partners.
Summary:
Alibaba's Jack Ma-backed Chinese venture capital (VC) firm Ganesh Ventures plans to invest $250 million in Indian startups over the next 3-5 years.
Summary:
London-based Environmental Investigation Agency has claimed that 18 factories in ten Chinese provinces admitted to using chlorofluorocarbons (CFCs).
Summary:
A man has been arrested for allegedly making a video of two nurses while they were sleeping at a Gurugram PG.
Summary:
The Centre on Tuesday told the Supreme Court that legislators are not full-time government employees and cannot be stopped from practising a profession.
Summary:
She was also carrying 20 blots of LSD in her bag and will be arrested after the narcotics in her uterus are recovered.
Summary:
A five-year-old daughter of a migrant labourer was gangraped by unidentified men in Punjab, the police said on Tuesday.
Summary:
Around 35 Muslim women who suffered due to Nikah Halala and Triple Talaq in Uttar Pradesh's Bareilly urged the government to take stronger steps to end the practices.
Summary:
The PRSS-1 is China's first optical remote sensing satellite sold to Pakistan.
Summary:
They claimed the electricity provider had been notified of Daniels' heart condition two years ago.
Summary:
Mukesh Ambani-led Reliance Industries added â¹19,247 crore in market capitalisation on Tuesday after a joint venture of UK's BP and Reliance bid for licence to retail gas in 15 cities.
Summary:
The invite-only event lets attendees do activities like mountain biking and golfing and hold merger talks as well.
Summary:
Twelve boys of a Thai football team and their coach have been rescued from a flooded cave after being trapped for over two weeks.
Summary:
Andhra Pradesh has topped the ease of doing business 2016-17 rankings released by Department of Industrial Policy and Promotion (DIPP) on Tuesday for the second year in a row with a score of 98.42%.
Summary:
The complainant alleges Nawazuddin's character in the show insults former PM Rajiv Gandhi and abuses him, besides misrepresenting facts.
Summary:
Rajinikanth's wife Latha Rajinikanth will have to face trial for fraud over unpaid dues of â¹6.2 crore to an advertising agency, as directed by the Supreme Court.
Summary:
The Supreme Court on Monday said the three sets of dying declarations by Nirbhaya, including the last one by hand gestures, were "true, voluntary and consistent".
Summary:
Film critic Mahesh Kathi has been banned from entering Hyderabad for six months by the Telangana police over his controversial remarks on Lord Ram and the Ramayana made recently on a television debate show.
Summary:
A video which shows Katrina Kaif being heckled by fans while coming out of her hotel in Vancouver has surfaced online.
In the video, a girl can be heard saying, "We don't want to take a pic with you!
Summary:
Veteran actor Mithun Chakraborty's son Mahaakshay Chakraborty aka Mimoh married girlfriend Madalsa Sharma in a traditional ceremony in Ooty on Tuesday amid rape allegations by another woman.
Summary:
A letter dated May 25, 2005 was written by Sunil Dutt hours before his death to Paresh Rawal, in which the veteran actor shared birthday wishes for Rawal.
Summary:
No recalls are required as the affected models conformed to Japanese safety standards, Nissan said.
Summary:
Section 377, the law criminalising consensual gay sex, violates the fundamental right of Indians and societal perceptions can't be used as an excuse for its existence, petitioners have told the Supreme Court.
Summary:
American actor Will Smith's son Jaden Smith has launched his latest album 'SYRE: The Electric Album' only on Instagram.
Summary:
Taapsee Pannu has said it is disturbing to see Muslims being targetted.
"It's disturbing...because my life is run by Muslims.
Summary:
Varun Dhawan has said his first thought, when he started pursuing acting as his career, was he wanted to explore parts of cinema no one else has.
Summary:
Malayalam actress Priya Prakash Varrier, who became popular after clip showing her winking from her song 'Manikya Malaraya Poovi' went viral, has been paid around â¹1 crore for a television commercial, as per reports.
Summary:
Goalkeeper Joe Hart, who was left out of England's 23-member squad for the 2018 FIFA World Cup, missed watching the team's quarter-final victory to play cricket for his hometown cricket club.
England football team defeated Sweden 2-0 to enter semi-finals.
Summary:
Planned to launch in 2026, the rover would find and collect samples left by NASA's Mars 2020 rover.
Summary:
While talking to a user regarding Reddit's hate speech policy, the company's CEO Steve Huffman said that hate speech is "difficult to define", adding that a ban is "impossible to enforce consistently".
Summary:
Kerala-based startup Ajna and Delhi-based Brun Health have won the Global Impact Challenge 2018 and will be going to the Silicon Valley, US for a 10-week incubator programme.
Summary:
Congress leader Mallikarjun Kharge on Monday claimed that even the Ahmedabad-Mumbai bullet train proposed by the Centre will not be able to accommodate all the criminals associated with the BJP.
Summary:
People living in Chhattisgarh's Naxal-affected Churegaon village finally got a concrete bridge after 71 years of struggle.
Summary:
A Bihar school principal and a teacher were arrested on Monday after three schoolgirls complained that they were made to watch obscene videos and sexually exploited.
Summary:
Union minister Jayant Sinha has apologised for garlanding eight men convicted in a lynching case, adding that he does not promote any type of violence.
Summary:
Insurgency-related incidents in the Northeast have come down by 85% when compared to the 1990s, Home Minister Rajnath Singh said in Shillong on Monday.
Summary:
North Korean leader Kim Jong-un did not meet US State Secretary Mike Pompeo as he was reportedly visiting a potato farm.
Summary:
Turkey has scrapped the post of the Prime Minister after the new Constitution that extends President Recep Tayyip ErdoÃÂan's executive powers came into effect.
Summary:
Gopalakrishnan further said, "AI is a transition that is bound to happen, whether we like it or not."
Summary:
The 'kid-sized' submarine offered by billionaire Elon Musk to help evacuate teenage footballers trapped in Thailand cave is "not practical for this mission", the rescue mission's head said on Tuesday.
Summary:
Tesla quit 'Edison Machine Works' within six months, reportedly over unpaid bonuses, and went on to develop alternating current (AC) technology which directly challenged Edison's direct current (DC).
Summary:
The crew member said he was punched after he told Depp he had to finish an outdoor scene owing to legal permits.
Summary:
The police are waiting for the final post-mortem report of the deceased.
Summary:
Lalit Bhatia, the family member who is considered the 'mastermind' behind the mass suicide at Burari, was the only member aware that the entire family was going to die, an official said.
Summary:
It listed 10 tips for users to help them sort truth from rumour.
Summary:
Smashing the previous record by two hours, Russian cargo ship 'Progress' took three hours and 40 minutes to reach the International Space Station, which orbits Earth at 400-km altitude.
Summary:
Wildlife rangers in Australia managed to catch a 15-foot-long saltwater crocodile weighing 600 kg that was first spotted in 2010.
Summary:
Expected to run out of fuel in a few months, NASA has placed its Kepler Space Telescope in a no-fuel-use safe mode to download its latest scientific data.
Summary:
India's representative to UN, Tanmaya Lal, on Tuesday rejected the United Nations Human Rights Council's report on Kashmir, calling it "biased" and based on "unverified sources".
Summary:
The event, organised by an NGO affiliated to the RSS, will reportedly take place on August 24.
Summary:
He had also served as IAF officers' personal driver.
Summary:
Donald Trump on Monday posted a video trolling people who said he would never become the US President.
Summary:
An Iranian woman who removed her compulsory Islamic headscarf out of protest has been sentenced to two years in prison and 18 years of probation.
Summary:
Benchmark index BSE Sensex reclaimed the 36,000 mark and ended Tuesday's session at over 5-month high.
Summary:
Summary:
After Brazil crashed out of 2018 FIFA World Cup after losing to Belgium in quarter-finals, Pope Francis consoled Brazilian fans during his traditional Sunday blessing at St Peter's Square in Vatican City.
"I see a lot of Brazilian flags: Have courage!
Summary:
All-rounder Krunal Pandya took to Twitter to share a picture of his brother Hardik Pandya signing an autograph on his Team India jersey.
"Privileged to be the senior Pandya!
Summary:
Photo-sharing app Snapchat is working on a visual product search feature, codenamed 'Eagle', that lets users find products on Amazon using its app.
Summary:
Facebook shut down its helicopter drone project called 'Tether-tenna' months after its first demo last year, the company has confirmed.
"Tether-tenna was a proof of concept project we were evaluating...
Summary:
Lok Sabha Speaker Sumitra Mahajan has written to the MPs, reminding them that only three sessions are left and several items of work are still unfinished.
Summary:
The Brihanmumbai Municipal Corporation (BMC) on Tuesday asked people not to believe recent rumours being circulated on social media about a cyclone warning.
Summary:
After the 2012 December 16 Nirbhaya gangrape case, the Delhi Police launched several awareness campaigns which made women start visiting police stations to lodge complaints, Deputy Commissioner of Police Madhur Verma said.
Summary:
Upset with the behaviour of drunk tourists, the residents of Surla village in North Goa have demanded that the bars in the area should be either closed or relocated.
Summary:
The IRCTC has ordered enquiry into a complaint by a passenger of Yesvantpur-Howrah Duronto Express about quality of food served to him in the train.
Summary:
Union minister Maneka Gandhi has urged Interim Finance Minister Piyush Goyal to amend the law to ensure that income generated from an asset gifted to a wife is not added to the husband's taxable income.
Summary:
Nearly 170 Islamic State militants were killed in the over two-month-long operation.
Summary:
The fossils range from blood red to deep purple in concentrated form, and bright pink when diluted.
Summary:
"Ask him to laugh in a scene and he can't do it," Johar added.
Summary:
Summary:
Television actress Kritika Kamra, while speaking about being trolled for posting a picture of herself in a bikini, said, "I don't have time to deal with rubbish." "It's my Instagram page and I can put up whatever I want," she added.
Summary:
ICC later also added a meme featuring Sachin Tendulkar and Federer.
Summary:
Lalu Prasad Yadav's son Tej Pratap took bath at a Dalit family's house in his constituency Mahua in Bihar and shared pictures of the same on Twitter, calling it a "sweet experience".
Summary:
Within less than six months into its India launch, Beijing-based bicycle sharing startup Ofo has reportedly fired a majority of its employees in India operations.
Summary:
The bandage is aimed to prevent infections and amputations.
Summary:
Houses built under Pradhan Mantri Awas Yojana (PMAY) in Madhya Pradesh will have tiles with PM Narendra Modi and CM Shivraj Singh Chouhan's picture on them.
Summary:
The Delhi State Consumer Dispute Redressal Commission has ordered a hospital to pay â¹10 lakh to a man on whom doctors carried out a heart procedure without properly revealing the risks involved.
Summary:
Madras High Court on Tuesday ordered the CBSE to award extra 196 marks to all candidates who took the all-India medical entrance exam NEET in Tamil as the question paper contained errors.
Summary:
While hearing a PIL seeking ban on 'khatna' or female genital mutilation practised among Muslims of the Dawoodi Bohra Community, the Supreme Court said, "How can you touch anybody's genitals?" "Bodily integrity of a woman cannot be infringed without her consent," the court observed.
Summary:
After the Supreme Court upheld the death penalty awarded to the convicts in the 2012 Nirbhaya gangrape case, Delhi Police officials who probed the case said that they kept the promise they made to the victim.
Summary:
The leaders of Ethiopia and Eritrea on Monday signed a declaration to fully implement a peace deal reached in 2000, ending the 20-year war between the two countries.
Summary:
A 5-month-old baby was left buried under a pile of sticks and debris in Montana, US for at least nine hours before being discovered by police officials.
Summary:
Earlier this year, seven Mexican states were put on alert after a nuclear densometer was stolen.
Summary:
US President Donald Trump called some of his aides "stupid people" during a phone call with Vladimir Putin after the Russian President's electoral victory earlier this year, The New York Times reported.
Summary:
After the NCLT dismissed Cyrus Mistry's plea challenging his removal as Tata Sons Chairman in 2016, Ratan Tata said, "Judgement...is a vindication of the actions that Tata Sons felt obliged to take in October 2016".
Summary:
Former Pakistan captain Shahid Afridi posted photos after meeting Bollywood actor Salman Khan in Toronto, Canada.
Summary:
USA's 23-time Grand Slam champion Serena Williams said that she hopes her daughter Alexis Olympia does not play tennis while also stating that "ice skating could be fun".
Summary:
Former England captain Nasser Hussain trolled former Indian captain Sourav Ganguly for posting a selfie from the Lord's balcony, where Ganguly had celebrated shirtless after winning against Hussain-led England in the NatWest Trophy final in 2002.
Summary:
A 15-year-old boy drowned on Saturday after jumping into a trench in Mumbai to show his friends his swimming skills.
Summary:
A three-year-old girl was crushed to death under her school bus on Monday after she fell off the vehicle in Haryana.
Summary:
Speaking about his decision to order a mandatory dope test for all government employees, Punjab CM Captain Amarinder Singh said such tests are also conducted for Army personnel as a precautionary measure.
Summary:
Talking about the plea in the Supreme Court against Section 377 which criminalises homosexuality, BJP leader Subramanian Swamy on Tuesday said, "It is not a normal thing.
Summary:
BJP MP Subramanian Swamy has said a law should be formulated "to make the rapist undergo surgery after which he cannot rape anyone in future".
Summary:
The Department of Telecommunications has approved merger of Vodafone India and Idea Cellular that will create India's largest telecom operator, according to reports.
Summary:
When deciding the right term insurance plan, checking the Claims Paid Percentage of the insurance company is the right thing to do.
Summary:
Former Indian cricket team captain Sunil Gavaskar acted in a Marathi movie titled 'Savli Premachi', which released in 1980.
Summary:
Hollywood actor Dwayne Johnson, on being asked if he is responsible behind Priyanka Chopra's relationship with American singer Nick Jonas, jokingly said, "If they're happy...I take credit." "Baywatch and Jumanji," he added, pointing out to his work with Priyanka in 'Baywatch' and with Jonas in 'Jumanji: Welcome to the Jungle'.
Summary:
Singer Justin Bieber took to Instagram to confirm that he got engaged to model Hailey Baldwin on Saturday.
Summary:
Billionaire Elon Musk arrived at the flooded Thailand cave with his escape pod where five members of a youth football team remain trapped.
Summary:
Former cricketer Sunil Gavaskar, who turns 69 today, was almost exchanged at birth after a nurse accidentally placed him next to a fisherwoman in the hospital.
Summary:
Gavaskar, who wasn't wearing a helmet, asked Bird to cut his hair as they were getting in his eyes.
Summary:
Lithuanian couple, Vytautas Kirkliauskas and Neringa Kirkliauskiene, won the world wife-carrying championship title after beating 53 other couples participating in the hour-long race in Finland on Saturday.
Summary:
Founded in 2017 in California, Lime lets customers rent scooters and leave them on the sidewalk for the next person across 70 cities in the US and Europe.
Summary:
A video has surfaced online, wherein a Hyderabad man could be seen flinging his 3-year-old son and banging him against an auto-rickshaw reportedly after a fight with his wife.
Summary:
Indian Institute of Management, Ahmedabad has reportedly sought the intervention of Human Resource Development Ministry after it was slapped a â¹52-crore service tax notice.
Summary:
The CM had ordered a mandatory dope test for all state government employees including police personnel from the time of recruitment.
Summary:
However, the Trump Organisation said Cintron was paid "generously".
Summary:
British Prime Minister Theresa May on Monday appointed Jeremy Hunt as Foreign Secretary after Boris Johnson resigned in protest at the government's Brexit plan.
Summary:
After resigning as the UK Foreign Secretary, Boris Johnson has warned that the Brexit "dream is dying" and Britain is "headed for the status of colony" with its plan to stay close to the European Union.
Summary:
France's consumer fraud agency on Monday revealed that up to 1 crore bottles of Spanish rosé wine were falsely labelled as French vintages by hundreds of producers in 2016 and 2017.
Summary:
Expressing confidence that North Korean leader Kim Jong-un would honour his commitment on denuclearisation, US President Donald Trump has said China may be exerting negative pressure on North Korea because of his posture on Chinese trade.
Summary:
Interim Finance Minister Piyush Goyal has said proposal for single GST rate slab was a "ridiculous suggestion".
"How is it that Mercedes Benz and aircraft becoming cheaper by a single rate.
Summary:
Sand artist Sudarsan Pattnaik has created a sculpture on Odisha's Puri beach depicting members of the football team stuck inside a cave in Thailand.
Summary:
Indian opening batsman Rohit Sharma dedicated his ton in the 3rd T20I against England to Sudan, the world's last male northern white rhino who was euthanised in March this year.
Summary:
The Spanish national side, who crashed out of the World Cup 2018 in the pre-quarterfinal stage, has hired ex-Barcelona manager Luis Enrique after the national side's former manager Julen Lopetegui joined Real Madrid.
Summary:
The Indian women's T20I team captain Harmanpreet Kaur has reportedly been removed from the post of DSP in Punjab Police after her graduation degree was found to be fake during the verification phase.
Summary:
Summary:
He said, "The cure for these rumours of horse-trading, breaking political parties over government formation will be solved...
sort of rumour mongering."
Summary:
Karnataka CM HD Kumaraswamy on Monday said that the state government was formed under "strange circumstances" and he couldn't do "jaadu (magic) to change things immediately".
Summary:
"Such kind of behaviour on duty is unacceptable," officials said.
Summary:
A 17-year-old girl from West BengalâÂÂs Murshidabad allegedly hanged herself after her male friend posted intimate pictures of her on social media platform Facebook.
Summary:
The world's fifth largest smartphone seller, China's Xiaomi made a public debut (IPO) after it hit the Hong Kong Stock Exchange on Monday.
Summary:
Amitabh Bachchan shared a picture of some of his family members using their mobile phones while sitting together and captioned it, "The family that mobiles together, stays together." His son Abhishek Bachchan and daughter Shweta Bachchan Nanda are seen using their phones.
Summary:
Summary:
The East Japan Railway Company has launched a two-year construction project to make a bullet train run one minute faster.
Summary:
Kerala Police has issued an advisory to the public asking them to refrain attending calls from numbers which start from +5 and +4 as they appear to be suspicious.
Summary:
The principal's son was among those who gangraped her on knifepoint in December, she added.
Summary:
Earlier, McDonald's said it would switch to paper straws in the UK and Ireland by next year, and test alternatives to plastic straws in some US locations.
Summary:
Tech Mahindra CEO CP Gurnani earned â¹146.19 crore in remuneration in 2017-18, bringing his total earnings over the last five years to â¹510 crore.
Summary:
Cyrus Mistry has said he was disappointed but not surprised by the National Company Law Tribunal's dismissal of his petition challenging his removal as Tata Sons Chairman.
Summary:
Janhvi Kapoor has said that she wants to earn the same kind of love as her late mother Sridevi.
Summary:
'Wonder Woman' actress Gal Gadot visited a children's hospital in the US dressed up in her superhero costume.
The actress distributed Wonder Woman comics, pictures with her autograph and other gifts.
Summary:
Tiger Shroff's preparation for 'Baaghi 3' will involve military boot camp training in Syria, as per reports.
Summary:
After cricket legend Sachin Tendulkar praised pacer Siddharth Kaul for his performance in the third T20I against England, the latter tweeted, "What more can one ask for?" "Mix of variations at the right time from (Siddharth) was the key to his 2 superb wickets...Keep it up!" Sachin had tweeted.
Summary:
After slamming his third hundred in T20I cricket on Sunday, Team India opener Rohit Sharma revealed to teammate Dinesh Karthik that he likes his 'Hitman' nickname a lot.
Summary:
Former Indian football team captain Bhaichung Bhutia has named his 2018 FIFA World Cup Best XI, choosing players from the remaining four sides.
Summary:
Video game Grand Theft Auto's creator Dave Jones has said it is hard to know whether the game one is working on is going to be a hit or not.
Summary:
A scheme to provide free SIM cards to foreign tourists arriving in India has been discontinued because it was "unnecessary", Tourism Secretary Rashmi Verma has said.
Summary:
Alibaba-backed grocery delivery startup BigBasket has reportedly acquired Bengaluru-based daily essential ordering platform Morning Cart.
Summary:
Claiming his government will not tolerate any attempts to disturb communal harmony in Bihar, Chief Minister Nitish Kumar on Monday called the meeting between Union Minister Giriraj Singh and jailed Bajrang Dal activists "not acceptable".
Summary:
A cook was fired from a government school in Rajasthan for throwing away the mid day meal touched by a schoolgirl who belonged to a lower caste, the school principal has said.
Summary:
BJP President Amit Shah has said PM Narendra Modi follows the governance principles advocated by philosopher Chanakya, adding that the Centre's 'sabka saath, sabka vikas' slogan is inspired by Chanakya's idea of development.
Summary:
The Supreme Court on Monday ordered that seven people accused of raping and murdering an eight-year-old girl in Jammu and Kashmir's Kathua are transferred to Punjab's Gurdaspur jail.
Summary:
An Ahmedabad-Delhi Vistara flight was delayed by four hours today due to a hoax bomb threat, a senior aviation official said.
Summary:
Stating that live-streaming will promote discipline in courts, A-G Venugopal added that the move will help law students.
Summary:
The Supreme Court has asked the Ministry of Petroleum and Natural Gas (MoPNG) if it considers itself to be God or a 'super government', and imposed a fine of â¹25,000 for laxity.
Summary:
Godrej Group has moved the court against acquisition of its prime property in Mumbai's Vikhroli worth over â¹500 crore for the government's bullet train project connecting Mumbai and Ahmedabad.
Summary:
South Korean multinational conglomerate Samsung on Monday opened the world's largest mobile phone manufacturing factory in Noida, Uttar Pradesh.
Summary:
His resignation came 30 minutes before UK PM Theresa May addressed the Parliament about her new Brexit plan.
Summary:
On July 3, Inshorts published a story titled 'Former Navy chief Admiral JG Nadkarni passes away aged 86'.
Summary:
The trailer of the Rishi Kapoor and Taapsee Pannu starrer 'Mulk' has been released.
Summary:
The status provides these institutes with special entitlements, which included academic and administrative autonomy.
Summary:
Rescue workers on Monday brought out four more boys part of the 12-member teenage football team stuck inside a Thailand cave for over two weeks, bringing the total number of rescued boys to eight.
Summary:
Sachin Tendulkar met his son Arjun Tendulkar's NCA roommate Yashasvi Jaiswal and gifted an autographed bat to him ahead of India's Under-19 tour to Sri Lanka.
Yashasvi has been included in the one-day squad, while Arjun is in the four-day squad.
Summary:
Owning Samsung TV set is 58.0% indicative of being high-income, the study added.
Summary:
Flipkart Co-founder Binny Bansal has said that Flipkart will look at investing less in startups as there was a time probably when there was more cash than the e-commerce startup needed.
Summary:
A woman in Uttar Pradesh's Mahoba has filed a police complaint alleging that her husband divorced her by way of triple talaq and then forced her to leave their house after the rotis she prepared got burnt.
Summary:
UK Minister of State for Housing and Planning Dominic Raab has been appointed by PM Theresa May as the Brexit Secretary following David Davis' resignation on Sunday.
Summary:
His statement comes after the Supreme Court refused to grant temporary stay on RBI's banking restriction on cryptocurrencies.
Summary:
Mallya is wanted in India for defrauding banks of â¹9,000 crore.
Claiming that he was always an England resident and a non-resident of India, Mallya said, "So where's the running away concept?
Summary:
Actor Diljit Dosanjh was gifted former Indian hockey team captain Sandeep Singh's hockey stick by his father when the actor visited their hometown in Haryana.
Summary:
Ex-France captain Zinedine Zidane headbutted Italian defender Marco Materazzi in extra time of the 2006 FIFA World Cup final on July 9, which was also his farewell match.
Summary:
Former South African cricketer AB de Villiers, who had said at the time of his international retirement that he had no plans to play overseas, has revealed he'll "keep on playing IPL for a few years".
Summary:
South African women's cricket team captain Dane van Niekerk tied the knot with teammate Marizanne Kapp on Saturday.
Summary:
Delhi CM Arvind Kejriwal has asked how L-G Anil Baijal could be "selective" in accepting the Supreme Court order, which said the Delhi government doesn't need the L-G's approval on every issue.
Summary:
Haryana BJP MP Raj Kumar Saini on Sunday claimed that 90% of the BJP candidates who will contest the upcoming Lok Sabha and Assembly polls will lose, adding that BJP does not have intent or right policies.
Summary:
Comparing the BJP-led UP government with the previous Samajwadi Party rule, CM Yogi Adityanath claimed his government's performance has been far better.
Summary:
A man has been arrested for allegedly supplying a mobile phone to an inmate of a jail in Uttar Pradesh.
Summary:
Summary:
A 10-year-old boy suffering from high fever died last week after doctors and nurses refused to treat him at a UP district hospital, his father has alleged.
Summary:
The worker had to stop sending his seven-year-old and ten-year-old children to school last month over the shortage of money.
Summary:
A 23-year-old civil services aspirant allegedly tried to commit suicide by jumping in front of a moving train at the Karol Bagh Metro Station in Delhi on Monday.
Summary:
The alleged criminals were arrested from different parts of Amethi district, the officer added.
Summary:
Schwenk will replace Roland Folger, who will assume a new position for Mercedes-Benz's Thailand and Vietnam markets.
Summary:
PG Diploma in Data Science by UpGrad and IIIT Bangalore helps over 250+ students transition to Data Science.
Students have been placed in companies like Oracle, Microsoft, Adobe among over 250 recruitment partners.
Summary:
The Supreme Court today ordered Delhi's private hospitals that got land at subsidised rates from the government to provide free treatment to patients from the weaker sections of the society.
Summary:
Chinese electronics maker Xiaomi's public relations team accidentally gave the media persons the notes it made for the company's executives on how to answer media during a press briefing.
Summary:
Flipkart's Co-founder and Group CEO Binny Bansal on Sunday said Co-founder Sachin Bansal quit the e-commerce startup after $16 billion Walmart deal as they wanted to do "different things".
Summary:
Delhi's 2012 gangrape victim Nirbhaya's mother Asha Devi on Monday said that the Supreme Court's decision to uphold the death sentence of the convicts has reaffirmed her family's trust in court.
The SC has dismissed convicts' petition to reduce their death sentence to life term.
Summary:
Responding to this, SRK thanked Cena for spreading the goodness.
Summary:
I did not have any other option." Hasin added she was forced to leave modelling after marrying Shami.
Further, director Amjad Khan said Hasin was his first choice for the film.
Summary:
The poster of 'Kizie Aur Manny', the official Hindi adaptation of 'The Fault In Our Stars', has been unveiled.
Summary:
Late actress Madhubala's youngest sister Madhur Brij Bhushan has announced that a biopic will be made on the legendary actress.
Summary:
Former captain MS Dhoni has said it was due to "overexposure" that he would disappear in the background after receiving the trophy whenever India won a tournament under him.
Summary:
Dhoni said intelligent players would think "Why is he telling this" but at the same time, it's bad to single out someone who doesn't understand.
Summary:
Billionaire Elon Musk on Sunday shared a video of a 'kid-sized submarine' pod made by his company SpaceX that might help in the rescue of teenage football team trapped in a Thailand cave for two weeks.
Summary:
The 99-year-old targeted the girl, who used to refer to him as 'owner thaatha (grandfather)', because her mother worked part time for him as a helper, police said.
Summary:
Summary:
The Supreme Court has dismissed a plea challenging a district magistrate's order barring non-residents in Agra from offering namaz at the Taj Mahal.
Summary:
Stating that there were injury marks on his body, the victim's family alleged that he was murdered by the school management.
Summary:
The boy was reportedly carried on a stretcher into a waiting ambulance hours after the rescue mission resumed.
Summary:
The National Company Law Tribunal (NCLT) has dismissed the petition of Cyrus Mistry challenging his removal as the Chairman of Tata Sons, saying the conglomerate's board had "lost confidence in him".
Summary:
He then scored 33*(14) to help India successfully chase down the 199-run target.
Summary:
After being captured on camera reportedly refusing to shake hands with Pakistan captain Sarfaraz Ahmed after losing the tri-series final, Australian all-rounder Glenn Maxwell has issued a clarification, explaining the incident was a "genuine oversight".
Summary:
BJP MP Subramanian Swamy has said, "Economic development is not going to bring in votes...Hindutva is going to help BJP." Claiming that former PM Atal Bihari Vajpayeeji's 'shining India' campaign had failed, Swamy said BJP won the 2014 elections as it emphasised on Hindutva.
Summary:
Uttar Pradesh Health Minister Sidharth Nath Singh has written to Governor Ram Naik, asking him to consider changing the name of Allahabad to 'Prayag'.
Summary:
Karnataka Deputy CM G Parameshwar has written to police chief Neelamani Raju to make sure ambulances are given preference over VIP convoys.
"I have observed that ambulances are sometimes stopped to make way for my convoy.
Summary:
A defence lawyer representing some of the accused in the Kathua rape and murder case on Monday claimed that 'Jihadis' were responsible for the incident.
Summary:
A woman from the US state of Kentucky has been charged with trafficking a controlled substance after she offered to provide three people with drugs while she was waiting for a judge in a courtroom right before her hearing.
Summary:
"I will not say that we have fulfilled all the promises we made in 2014," Swamy said.
Summary:
Canadian pop singer Justin Bieber reportedly got engaged to American model Hailey Baldwin on Saturday during a trip to the Bahamas.
Summary:
Actor Kavi Kumar Azad, best known for his role of Dr Hansraj Hathi in 'Taarak Mehta Ka Ooltah Chashmah', has passed away after suffering from a heart attack.
"Later we got the news that he passed away.
Summary:
The Supreme Court today upheld the death penalty for the convicts of the 2012 Nirbhaya gangrape case, after hearing a review petition seeking reduction of sentence.
Summary:
Chandigarh Police has arrested gangster Dilpreet Singh Dhahan months after he claimed responsibility in a Facebook post for firing multiple shots at Punjabi singer Parmish Verma in April.
Summary:
Before the visit, Jung-sook had watched 'Dangal', which is based on the Phogat family.
Summary:
Tharoor, who has repeatedly criticised the BJP over 'achhe din', had earlier said, "The story of the last four years is one of...
Summary:
Swiggy's official Twitter handle tweeted "We are facing a technical issue due to which we're unable to process orders on time".
Summary:
The consumer forum ordered a restaurant to pay â¹4.9 lakh compensation to a customer who lost his Toyota Innova car after giving the keys for valet parking in Hyderabad.
Summary:
The Punjab government will be providing â¹5 lakh to every village that turns free of drugs to purchase sports and gym equipment for the youth, state minister Tripat Rajinder Singh Bajwa has said.
Summary:
Munna Bajrangi was a gangster in Uttar Pradesh who was undergoing trial for 2005 murder of BJP leader Krishnanand Rai. Bajrangi was a core member of five-time MLA Mukhtar Ansari's gang and had around 40 cases of murder and extortion against him.
Summary:
A girl who live-streamed a video of her splashing ink on Chinese President Xi Jinping's picture has gone missing.
Summary:
The number of people who have died in floods and landslides triggered by "historic" levels of torrential rain in Japan climbed to 100 on Monday.
Summary:
A British woman who was exposed to Novichok, the type of nerve agent used to poison former Russian spy Sergei Skripal and his daughter in March, died on Sunday.
Summary:
The US had threatened to cut aid to Ecuador and other nations who backed a resolution encouraging breastfeeding during a World Health Organisation meeting earlier this year, according to a report by The New York Times.
Summary:
Croatia's first-ever female President Kolinda Grabar-Kitarovic celebrated with the players in the dressing room after her country defeated hosts Russia in the FIFA World Cup 2018 quarter-finals on Saturday.
Summary:
American stunt performer Travis Pastrana honoured legendary stuntman Evel Knievel by replicating three of his most iconic motorcycle jumps on Sunday.
Summary:
The BJP recently broke alliance with the PDP, leading to imposition of Governor's rule.
Summary:
The woman, a school peon, was on her way home with a relative when the accident occurred.
Summary:
Uttarakhand CM Trivendra Singh Rawat on Monday announced that the holidays of all government officers stand cancelled in view of the heavy rain alert issued for the next few days.
Summary:
When the woman objected, he reportedly sent her obscene and abusive messages.
Summary:
South Mumbai recorded 51.4 mm rain between 8:30 am and 11:30 am, while the suburbs recorded 39.6 mm.
Summary:
South Korean President Moon Jae-in paid a visit to the Swaminarayan Akshardham Temple in Delhi on Sunday.
Summary:
The Supreme Court has refused to delay hearing of petitions challenging Section 377 which criminalises homosexuality and rejected the Centre's plea requesting four more weeks to file its reply in the matter.
Summary:
The bodies of three out of five children aged between 12 to 15 years have been recovered after they drowned while bathing in the Ganga barrage in Kanpur, police said.
Summary:
A 40-year-old woman was allegedly gangraped by four men in the forest area of Madhya Pradesh's Betul district on Saturday.
Summary:
The Union Environment Ministry has set noise standards for airports across the country, excluding defence aircraft, and those that are landing and taking off.
Summary:
Meanwhile, the terrorists managed to escape after attacking the woman.
Summary:
Jaskirat Singh Sidhu, a 29-year-old Indian-origin truck driver in Canada, has been arrested for a bus crash that killed 16 people, mostly members of a junior hockey team.
Summary:
Actress Priyanka Chopra has shared the script of her next Hindi film, which is titled 'The Sky Is Pink'.
Summary:
The woman has accused a social media manager of the party of harassing her.
Summary:
At least one person out of the 11 of a family that allegedly committed suicide in Delhi tried saving his life at the last minute, police has said.
Summary:
The missing younger brother of an IPS officer has joined militant group Hizbul Mujahideen.
Summary:
The principal and professors of Delhi University's Bharati College paid a student's admission fee after she told them she was unable to afford it.
Summary:
A man was caught masturbating outside a train's women's compartment at the Bandel railway station in West Bengal.
Summary:
Gangster Munna Bajrangi, accused of killing BJP leader Krishnanand Rai, has been shot dead inside Uttar Pradesh's Baghpat jail.
Summary:
Maedeh Hojabri said that was not her intention and that she was attempting to garner more followers.
Summary:
Days after UK PM Theresa May secured the cabinet's backing for her Brexit plan, State Secretary for Exiting the EU David Davis has resigned from the UK government.
Summary:
They further said that the failed attack on a train in 2015 was the "motivating factor" for the operation.
Summary:
However, eBay pulled the product down for violating the company's terms and agreements.
Summary:
Talking about the enforcement agencies seizing his UK assets, Vijay Mallya said, "IâÂÂll physically hand them over.
Summary:
Summary:
Diane Warren, who co-wrote the #MeToo movement anthem 'Til It Happens to You', showed support for 81-year-old veteran actor Morgan Freeman and said, "Give him a break." She added, "Morgan Freeman said, 'You're really cute.
Summary:
Interestingly, the Japanese players cleaned their locker room themselves after crashing out of World Cup.
Summary:
Reacting to India defeating England in the third T20I on Sunday, former cricketer Virender Sehwag tweeted, "England ham sharminda hain, Talent abhi Zinda hai." He further praised Rohit Sharma and Hardik Pandya for their performance in the match.
Summary:
Former India captain MS Dhoni crashed into the stumps and fell down while talking England captain Eoin Morgan's catch in the third T20I on Sunday.
Summary:
Ichwandardi designed the sequence on MacPaint using pixels to animate each individual frame and capturing every minute movement.
Summary:
After Madhya Pradesh CM Shivraj Singh Chouhan said cities in the state would be better than those in the US in the next five years, Congress state chief Kamal Nath called it "yet another joke".
Summary:
Summary:
The government has proposed to create a special group to keep a check on e-commerce platforms like Flipkart and Amazon India so that the foreign investment policy is not violated.
Summary:
Tiwari was admitted to the ICU of Delhi's Max Hospital after suffering from a kidney infection.
Summary:
Last year, he claimed Madhya Pradesh's roads were in a better condition than the roads in the US.
Summary:
A 'tree wall' of nearly 31 lakh native trees will soon encircle Delhi to protect it from dust storms coming from Rajasthan, a senior official of Union Ministry of Forest, Environment and Climate Change said.
Summary:
A groom married a relative at the Srikanteshwara temple in Karnataka's Mysuru after the bride, Nandhini, eloped with her lover on the day of the wedding.
Summary:
Vijay Mallya has said there was no question of "being homeless" at the end of the day as the authorities were entitled to seize assets declared in his name.
Summary:
Team India opener Rohit Sharma has become the first Indian cricketer to smash three centuries in T20I cricket.
Summary:
India defeated England in the third T20I on Sunday to win the three-match series 2-1 and register their sixth successive T20I series victory.
Summary:
The police added such actresses were paid â¹1 lakh for a week and Rao collected â¹20,000 from each customer.
Summary:
Paresh recently shared a note after re-joining social that he wanted to "hug Dutt and cry" after watching 'Sanju'.
Summary:
Actor Vicky Kaushal said that he does not think he has outperformed Ranbir Kapoor in 'Sanju'.
I don't think we can be compared." Vicky played the character Kamli, who is shown as the friend of Sanjay Dutt, portrayed by Ranbir in the biopic.
Summary:
Rohit achieved the feat after scoring his 14th run against England in the third T20I on Sunday.
Summary:
Thai official heading the cave rescue operation said the healthiest boys were taken out first.
Summary:
Dhoni also became the first-ever wicketkeeper to reach 50 T20I catches, taking his tally to 54.
Summary:
Bihar CM Nitish Kumar-led JD(U) will continue being a part of NDA alliance for the 2019 Lok Sabha elections, JD(U) General Secretary Sanjay Kumar Jha announced after the party's national executive meeting on Sunday.
Summary:
The accused got angry when the victim tore the letter.
Summary:
These aircraft undertook 91 sorties to transport notes from printing presses and mints across India.
Summary:
The alleged "Maggi" packets were reportedly purchased from a local grocer and as soon as the children consumed it, they started vomiting.
Summary:
Should we be focusing on this?
Yes." Citing his reason for focusing on boys' rescue, Mahindra said, "We live on the same planet.
Summary:
Mallya is wanted in India for defrauding Indian banks of â¹9,000 crore.
Summary:
Talking about making a sequel of the 2011 film 'Ra.One', director Anubhav Sinha said, "Shah Rukh (Khan) and I keep talking about it.
It's never easy to make a sci-fi film.
Summary:
Actress Maisie Williams, who portrays Arya Stark in the series 'Game of Thrones', shared a picture on social media of her shoes with 'blood' on them and captioned it, "Goodbye Arya.
Summary:
Former Team India captain Sourav Ganguly once attended Durga Puja festivities disguised as a "Sardarji" during his India captaincy days to avoid getting mobbed.
Summary:
Russian forward Fedor Smolov, who missed a penalty in the shootout against Croatia in 2018 FIFA World Cup quarter-final, sat alone in the middle of the pitch after his team crashed out of the tournament.
Summary:
Summary:
Talking about the early challenges faced while building the e-commerce firm, Jabong Co-founder Manu Jain said that people's perception towards fashion e-commerce was one of the challenging aspects.
Summary:
The trackers were listed for sale on Amazon, Selfridges, and Groupon without a functional app.
Summary:
Bengaluru-based home automation startup Silvan Innovation Labs has raised â¹4.5 crore in a bridge round from equity crowdfunding platform 1Crowd and existing investor Infuse Ventures.
Summary:
Maharashtra Police has arrested the main accused in the lynching of five men in Dhule, taking the tally of arrested people to 26.
Summary:
Indian economist and Nobel laureate Amartya Sen said India has taken a "quantum jump in the wrong direction" since 2014.
Summary:
Former Vice President Hamid Ansari has said PM Narendra Modi's remarks during his farewell in 2017 were considered to be "a departure from accepted practice".
Summary:
Seven cops, including two inspectors, have been suspended over a 'security breach' at the official residence of Bihar CM Nitish Kumar at Aney Marg.
Summary:
The world's biggest cryptocurrency exchange, Binance, has pledged $1 million for the victims of the floods in Japan.
Summary:
Two of the boys from a 12-member teenage football team trapped in a Thailand cave for two weeks were successfully rescued on Sunday, a rescue official said.
They are currently at the field hospital near the cave," said an official of the rescue team.
Summary:
Over 100 chimneys are being drilled into a mountainside to rescue the 12-member teenage football team and their coach trapped inside a cave in Thailand.
The chimneys may help rescue them from above if the cave's underground chambers get flooded.
Summary:
The release date of Ajay Devgn and Ranbir Kapoor's film with director Luv Ranjan has been announced and is set to clash at the box office with the Hrithik Roshan starrer 'Krrish 4'.
Summary:
Summary:
The film's prequel 'Jurassic World', which released in 2015, had minted over $1.6 billion worldwide.
Summary:
Arjuna-awardee gymnast Dipa Karmakar, who finished fourth at Rio Olympics, clinched the gold medal in the vault event of Artistic Gymnastics World Challenge Cup on Sunday.
Summary:
Xiaomi's Global VP and India MD Manu Kumar Jain in an interview said, "If someone told me in 2014 that Xiaomi would be so successful in such a short time, I would not have believed it".
Summary:
The relatives of the family whose 11 members were found dead at their house in Burari have appealed to Delhi Police for a fresh probe citing several missing links.
Summary:
A Karnataka court on Saturday sentenced a 75-year-old man to life imprisonment for murdering his wife, 11 days after he committed the crime.
Summary:
Cellular body COAI has opposed telecom regulator TRAI's public WiFi model saying it'll "compromise national security".
Summary:
'X-Men: Apocalypse' actress Sophie Turner, who portrays Jean Grey's younger version in X-Men films, said, "I just want to be another Avenger." She was asked which Marvel hero she would like to meet if there is a cross over of the Avengers and X-Men in upcoming films.
Summary:
Swiss tennis star Roger Federer will appear in an episode on British survival expert Bear Grylls' survival show.
Summary:
A London store of the Swedish furniture-making company Ikea was stormed and trashed by jubilant English fans after the national side's win over Sweden in the World Cup quarter-final on Saturday.
Summary:
Pakistani debutant Sahibzada Farhan got dismissed without facing a legal delivery against Australia in the final of the T20I tri-series on Sunday.
Summary:
Pakistan chased down Australia's 183 in the T20I tri-series final on Sunday to register their first international tournament final victory against Australia since 1990 and record their highest successful chase in T20I cricket.
Summary:
Cricket legend Sachin Tendulkar on Sunday posted a tweet in Bengali to wish former Indian captain Sourav Ganguly on the occasion of the latter's 46th birthday.
Notably, Sachin and Ganguly added 12,400 runs as partners in international cricket.
Summary:
Paliwal will be heading to New York to take up the position under the AI (Artificial Intelligence) Google Residency Program.
Summary:
The value of transactions fell sharply in March as know-your-customer (KYC) requirements took effect.
Summary:
Delhi CM Arvind Kejriwal has said the Centre should approach the court if it is confused about Supreme Court's recent ruling, adding they are interpreting it in a "strange way".
Summary:
Summary:
The Uttar Pradesh government is in talks with e-commerce firm Flipkart to sell khadi products on its website.
Summary:
The Uttar Pradesh government has directed department heads to screen employees aged above 50 years and consider asking non-performing staff to take early retirement.
Summary:
A 26-year-old man has been arrested for allegedly harassing a female constable while travelling in a bus in Uttar Pradesh.
Summary:
Over 100 people stranded at Chinchoti waterfall in Maharashtra's Vasai due to heavy rainfall were rescued on Saturday.
Summary:
A Pune-New Delhi IndiGo flight was diverted to Indore on Sunday and landed under emergency conditions after a passenger suffered a cardiac arrest mid-air.
Summary:
A driver, who suffered a fatal heart attack while driving a bus at a high speed, managed to halt the vehicle before collapsing on the steering wheel in Chhattisgarh's Kawardha.
Summary:
Accusing The Washington Post and The New York Times of peddling fake news, US President Donald Trump has slammed the newspapers saying, "They'll be out of business in seven years." "Twitter is getting rid of fake accounts at a record pace.
Summary:
A majority of 119 IPS officers out of 122 from the 2016 regular recruit batch failed to pass in the necessary exams they took before graduating from Hyderabad's Sardar Vallabhbhai Patel National Police Academy (SVPNPA).
Summary:
The 18-year-old girl allegedly raped by her friend's father during a sleepover at the friend's place has told the police that the man seemed to have planned the rape.
Summary:
The wedding of veteran actor Mithun Chakraborty's son Mahaakshay aka Mimoh was cancelled on Saturday after a police team arrived at the wedding venue to investigate a complaint of rape and cheating against Mimoh, as per reports.
Summary:
Congress leader and ex-Finance Minister P Chidambaram has said External Affairs Minister Sushma Swaraj was the natural choice for PM in 2014 as she served as Leader of Opposition between 2009-2014.
Summary:
The girl was sleeping at her home when the accused dragged her in her sleep, took her to the terrace and gangraped her.
Summary:
A 36-year-old woman who was severely injured when an overbridge collapsed onto the rail tracks at a station in Mumbai's Andheri has died at a hospital on Saturday.
Summary:
The parents of 12 boys stranded inside a cave in Thailand have written to the coach who led them inside, telling him, "Please don't blame yourself." "We want you (the coach) to know that no parents are angry with you at all," a note read.
Summary:
He dismissed the NDA government's claim of creating 70 lakh jobs in four years, adding that people who were arrested in recent cases of mob lynchings were jobless.
Summary:
Actress Alia Bhatt shared a picture with boyfriend Ranbir Kapoor's mother veteran actress Neetu Kapoor to wish her on her 60th birthday and wrote, "Happy Happy Birthday." In the picture, filmmaker Ayan Mukerji is also seen with Alia and Neetu.
Summary:
Actress Kashmera Shah, the wife of Govinda's nephew Krushna Abhishek, discussed the tiff she and her husband have with Govinda and his wife Sunita Ahuja and said, "It's a waste of my time." She added, "I'm not upset with anyone anymore...
Summary:
Spain's world number one Rafael Nadal's win in the third round has ensured that Swiss star Roger Federer will not return to the world number one rank even after winning the Wimbledon 2018 title.
Summary:
In the video, the elderly woman can be seen pretending to be hurt after being hit by furniture, drinking tea and cutting vegetables among others.
Summary:
Spain's world number one tennis star Rafael Nadal played a between-the-legs tweener lob shot that won him a point against 19-year-old Alex de Minaur in their Wimbledon third round match on Saturday.
Summary:
Referring to union minister Jayant Sinha garlanding eight people convicted of lynching a meat trader to death, Congress leader Kapil Sibal tweeted, "You got it wrong Modiji.
Summary:
Senior Samajwadi Party leader Ram Gopal Yadav on Sunday said the party is in favour of conducting 'one nation, one election', adding it should be implemented from 2019.
Summary:
The Bihar Chief Minister Nitish Kumar-led JD(U) on Sunday passed a resolution in favour of one nation one election, or simultaneous elections.
Summary:
Indian National Lok Dal MP Dushyant Chautala has filed a defamation case against Haryana Health Minister Anil Vij for allegedly calling him a drug addict.
Summary:
US-based SheaMoisture personal care products' Founder Richelieu Dennis has launched a $100-million startup fund called New Voices Fund for 'women of colour'.
Summary:
The virtual side cameras of Audi's e-tron quattro electric SUV feature a touch display through which the driver can adjust the view by dragging the image around.
Summary:
Condoling the death of an Indian student during a shooting at a restaurant in US' Kansas, External Affairs Minister Sushma Swaraj has tweeted that all assistance will be provided to the family of Sharath Koppu.
Summary:
Authorities have suspended the Amarnath Yatra for a day on Sunday for security reasons in view of the strike called by J&K separatists on the second death anniversary of Hizbul Mujahideen militant Burhan Wani.
Summary:
The Himachal Pradesh government has banned the use and sale of thermocol cutlery including cups, plates, glasses, spoons or any other item in the state.
Summary:
After meeting with jailed Bajrang Dal and VHP activists in Bihar, BJP MP and union minister Giriraj Singh on Saturday said the state government feels there can be communal harmony only if they "suppress Hindus".
Summary:
Urging world leaders to honour their commitments to curb global warming, Pope Francis on Friday said climate change and unsustainable development threaten to turn the Earth into a vast pile of "rubble, deserts and refuse".
Summary:
Turkey on Sunday dismissed more than 18,000 civil servants as part of a crackdown over an attempted coup in July 2016.
Summary:
The CBI, which is probing the â¹14,000-crore PNB scam as well as other financial frauds, has sought deputation of banking and tax experts from other ministries.
Summary:
Eight out of the 10 most valuable Indian companies added â¹66,625.6 crore to their market valuation this week.
Summary:
The witness said the suspect, wearing a brown shirt, had demanded money and pulled out a gun.
Summary:
A 25-year-old girl on Saturday allegedly jumped from the third floor of Noida's The Great India Place Mall after a rift with her boyfriend.
Summary:
A video of a sewage truck extinguishing a flaming vehicle in the Russian city of Ivanovo has gone viral.
Summary:
Facebook Co-Founder and CEO Mark Zuckerberg on Saturday overtook Berkshire Hathaway's Warren Buffett to become the world's third-richest person.
Summary:
The US police has released a footage of the suspect in the murder of Indian student Sharath Koppu at a restaurant in Kansas.
Summary:
The relatives of Sharath Koppu, the 25-year-old student from Telangana who was shot dead by a suspected robber at a Kansas restaurant, are raising money through crowdfunding to bring his body back to India for last rites.
Summary:
Jewellery worth â¹1 lakh and â¹1.5 lakh in cash were stolen from former Finance Minister P Chidambaram's house in Chennai, police said on Sunday.
Summary:
Further, those opting to visit Sri Lanka will be transferred to Chennai by train and flown to Colombo.
Summary:
Police in the US state of Wisconsin found 81 grams of drugs including cocaine, methamphetamine, marijuana, ecstasy and synthetic pot from a woman's vagina after they received a tip.
Summary:
A Lebanese tourist has been sentenced to eight years in jail by a Cairo court for calling Egypt a "son of a bitch country".
Summary:
Thai authorities have said it would take nearly 11 hours to rescue the first batch of boys trapped inside a cave for two weeks.
Summary:
Philippine President Rodrigo Duterte on Friday said he will immediately resign if anybody can prove that God exists.
Summary:
Mukesh Ambani was made the Chairman of the company after the death of his father Dhirubhai Ambani in July 2002.
Summary:
Wishing former Indian captain Sourav Ganguly on his 46th birthday, former cricketer Virender Sehwag posted a tweet that featured four photos from Ganguly's career, while also outlining a 4-step guide.
Summary:
Indian all-rounder Hardik Pandya posted a photo on Instagram of him giving a haircut to MS Dhoni as a gift on his 37th birthday.
Pandya's post featured the caption, "Special day calls for a special haircut.
Summary:
Talking about artificial intelligence (AI) and automation, billionaire investor Ray Dalio has said that it is a "two-edged sword" that is improving productivity but also eliminating jobs, leading to big wealth and opportunity gaps.
Summary:
After National Conference leader Omar Abdullah accused the BJP of trying to form government in J&K, BJP General Secretary Ram Madhav replied the party instead wants Governor's rule to continue.
Summary:
US-based bicycle making startup PIM Bicycles has developed a three-wheeled electric scooter called MYLO which can fold vertically in less than one second.
Summary:
A 29-year-old constable died in Uttar Pradesh on Saturday after collapsing during a 5 km race, which was part of the physical examination in a recruitment drive for filling up police sub-inspector vacancies.
Summary:
After clashes in J&K's Kulgam claimed three lives, Governor NN Vohra asked the Army to follow Standard Operating Procedures to avoid civilian casualties even in situations of extreme provocation.
Summary:
Mumbai Police's Anti-Extortion Cell led by Pradeep Sharma has recovered an AK-56 assault rifle during a raid at the residence of jailed Naeem Khan, an aide of underworld don Dawood Ibrahim.
Summary:
A man from Kolkata on Saturday made a hoax call claiming there was a bomb on the Howrah-New Delhi Rajdhani Express to delay the train after he missed it.
Summary:
A Delhi court has prevented the police from supplying the chargesheet against Congress leader Shashi Tharoor in his wife Sunanda Pushkar's death case to any third person.
Summary:
A teenage girl was among the three civilians killed in firing by the Army during clashes with stone-pelters in J&K's Kulgam on Saturday.
Summary:
The National Board of Wildlife has recommended that states use Section 144, which prohibits the assembly of four or more people, during wildlife emergencies.
Summary:
The UK government said the new scheme demonstrates its commitment to make UK a "dynamic, open, globally-trading" nation.
Summary:
Croatia registered a 4-3 victory on penalties in the fourth quarter-final on Saturday to knock hosts Russia out of the 2018 FIFA World Cup. This is the first time since the 1998 edition that Croatia have reached the semi-finals of the quadrennial tournament.
Summary:
Sharath Koppu, a 25-year-old student from Telangana studying at the University of Missouri-Kansas City in the US, was shot dead in a Kansas restaurant where he was working on Friday.
Summary:
A 40-year-old man has been sentenced to death by a court in Madhya Pradesh's Sagar district on Saturday for raping a nine-year-old girl.
Summary:
A 53-year-old Canadian national fell to death while attempting to scale the world's second highest peak, 8,611-metre K2, on Saturday.
Summary:
Former Finance Minister Yashwant Sinha on Saturday slammed his son union minister Jayant Sinha for garlanding eight men convicted in Ramgarh mob lynching case after the Jharkhand High Court released them on bail.
Summary:
A panel set up by Delhi L-G Anil Baijal has said Delhi government's flagship CCTV project will not be controlled by the AAP government but will be under the L-G via Delhi Police.
Summary:
A day after refusing India's plea to deport controversial Islamic preacher Zakir Naik, Malaysian Prime Minister Mahathir Mohamad met him on Saturday.
Summary:
The BJP has asked journalists to furnish their personal details including Aadhaar number or Voter ID in order to obtain a pass for party President Amit Shah's event in Chennai scheduled for Monday.
Summary:
Atul and his aides forced the victim's father to withdraw the case and beat him up while in custody.
Summary:
A 32-year-old employee of Christy Friedgram jumped off the first floor of a building during an Income Tax raid and questioning in Tamil Nadu's Tiruchengode.
Summary:
At least 64 people have been killed and 44 others have been missing in flooding and landslides caused by torrential rain in western and central Japan.
Summary:
French investigators have said the 2016 EgyptAir crash that killed 66 was likely caused by cockpit fire, contradicting Egyptian authorities who claimed the plane had been bombed.
Summary:
Following US Secretary of State Mike Pompeo's visit to the country, North Korea has accused the US of making "cancerous" demands in talks over its nuclear program.
Summary:
Summary:
Actress Jacqueline Fernandez will be making her debut in Kannada films as she will feature in a dance song in actor Nikhil Kumar's film 'Seetharama Kalyana', as per reports.
Summary:
Actress Sonakshi Sinha, on Friday, shared a video of her workout with Katrina Kaif and captioned it, "Statutory warning: working out with Katrina Kaif...is hazardous to health." Sonakshi and Katrina are seen lying on their backs on a training mat, exercising with their arms tangled together.
Summary:
Reacting to Indian batsman Shikhar Dhawan's catch at the long leg boundary to dismiss English captain Eoin Morgan, former South African cricketer Jonty Rhodes tweeted, "@SDhawan25 what a catch - Kabaddi could do with your skills!!".
Summary:
Serena became a mother in September 2017 and missed last year's Wimbledon because of pregnancy.
Summary:
Mahindra Group's Chairman Anand Mahindra wished former Indian cricket team captain MS Dhoni on his 37th birthday calling him a "worthy role model".
"Happy birthday & in addition I hope that we will see the birth of many more sportspersons like him," Mahindra tweeted.
Summary:
Reacting to an image of former Indian cricketer S Sreesanth from the gym, a user tweeted, "#Sreesanth can now play the role of #Hulk.
Other users reacted with tweets like, "Good god.
Summary:
Google has denied the reports claiming it is testing its human-sounding AI assistant 'Duplex' for enterprises to replace humans at call centres.
Earlier, reports claimed an insurance company was investigating ways to use Duplex in call centres for customer service.
Summary:
West Bengal CM Mamata Banerjee has said she is willing to ally with Congress to ensure that BJP is not elected in the 2019 elections, adding that BJP leaders behave like a "hundred Hitlers".
Summary:
A 57-year-old man attempted to commit suicide by jumping in front of a metro which was approaching the Jawaharlal Nehru Stadium station in Delhi on Saturday.
Summary:
Talking about rising rape incidents in Uttar Pradesh, BJP MLA Surendra Narayan Singh on Saturday said, "I can say this with full confidence that even Lord Ram will not be able to prevent such instances." "It is people's responsibility to treat others as their family, as their sisters.
Summary:
The Gujarat Police has booked Patidar leader Hardik Patel and MLAs Jignesh Mevani and Alpesh Thakor for allegedly 'raiding' a woman's house on suspicions that a 'liquor den' was being operated at the site.
Summary:
A mob in Bihar's Nalanda on Friday threw a man accused of murder and a policeman from the first-floor balcony of a building.
Summary:
Addressing students at the Goa University, President Ram Nath Kovind on Saturday said access to higher education is still a privilege in India.
Summary:
This is the third time in their 15 World Cup appearances that England have reached the last four of the quadrennial tournament.
Summary:
As many as eight out of 10 millennials are in favour of inter-caste marriages in India, Inshorts' 'Pulse of the Nation' poll has revealed.
Summary:
Indian women's cricket team captain Mithali Raj has said that she thinks Priyanka Chopra will be a great choice to portray her in her biopic while adding, "Our personalities match a lot." However, Mithali said she is happy to leave the final decision to the makers.
Summary:
Former Team India captain MS Dhoni took to Instagram to share a video of himself celebrating his 37th birthday with his family and teammates in Bristol.
Summary:
Tech billionaire Elon Musk on Saturday tweeted he was working with experts to create an escape pod to rescue the 12 Thai schoolboys and their coach, who have been stuck in a cave for 14 days.
Summary:
Chhattisgarh Chief Minister Raman Singh-led BJP government has defeated the no-confidence motion that the Congress moved against it in the state assembly.
Summary:
Homes run by Mother Teresa's Missionaries of Charity in Jharkhand's Ranchi have not been able to produce records of births given by 280 women, the police said on Saturday.
Summary:
The issue of the shifted border was raised by residents last month.
Summary:
These include water supply and sewerage projects in several cities like Sikar and Mount Abu, and an elevated road project in Ajmer.
Summary:
Haryana CM Manohar Lal Khattar, while scolding a reporter, said that he should first learn "etiquettes of media".
Responding to this, Khattar said the media's job is to ask questions and not accuse the government.
Summary:
Maharashtra's Vidhan Bhavan in Nagpur was flooded on Friday as liquor bottles and plastic were found to have choked drains.
Summary:
A man has been arrested after he reportedly made a call threatening a blast in Jaipur, where PM Narendra Modi was conducting a public rally on Saturday.
Summary:
Saying that global trade is passing through "most challenging time", Commerce Minister Suresh Prabhu said existence of World Trade Organisation (WTO) was under threat for first time as people were questioning the accepted trading norms.
Summary:
Sidharth, who will play Captain Vikram Batra, will also reportedly portray Vikram's identical twin brother Vishal in the film.
Summary:
Indo-Canadian actress Lisa Ray, a cancer survivor, sending her wishes to Bollywood actress Sonali Bendre on her cancer diagnosis, tweeted, "Words often fall short and I've learned that okay, but I do want to send love." "You are in my thoughts," she further wrote.
Summary:
Coe had been reportedly drinking with a friend before the fall.
"There was a beer can next to him," said Coe's neighbour.
Summary:
The winning pairs of the men's and women's doubles events will get ã450,000 (â¹4.1 crore) respectively.
Summary:
Dhoni's face can be seen smeared with cake in the picture.
Summary:
Uruguayan defender José Giménez started crying during the dying minutes of 2018 FIFA World Cup quarter-final match between Uruguay and France on Friday.
Summary:
WhatsApp is working on a feature called 'Suspicious link Detection' to restrict spam messages from spreading.
Summary:
This comes after Railways Minister Piyush Goyal was given the additional charge of Finance Ministry while Arun Jaitley recovered following a kidney transplant.
Summary:
The round is likely a part of the $200 million funding round PolicyBazaar raised last month, a spokesperson said.
Summary:
Members of the family which was found dead in Delhi's Burari brought material for a havan a week before the suspected mass suicide, CCTV footage accessed by Delhi Police has revealed.
Summary:
Goa Governor Mridula Sinha on Saturday administered a pledge to 9,000 state university students, urging them to not end marriages over trivial issues.
Summary:
The disaster management team of a municipal body recovered two unidentified bodies from the Khadavli river in Maharashtra's Kalyan Dombivli on Saturday amid heavy rainfall.
Summary:
Police had warned businesses against taking boats into the sea.
Summary:
The NSE has imposed a penalty of over â¹1 crore on Electrosteel Steels for non-compliance in filing its financial results within stipulated time for the quarter and year ended March 31, 2018.
Summary:
HRD Minister Prakash Javadekar has said the main feature of JEE Main and NEET being held twice a year from 2019 is that "a student won't lose a year".
The best score will be (considered)," Javadekar added.
Summary:
Bad weather conditions in western Nepal for the past five to six days had led to the pilgrims getting stuck.
Summary:
Bengali television actor Joy Mukherjee was arrested on Friday by Kolkata police over charges of assaulting his girlfriend actress Sayantika Banerjee.
She alleged that Joy physically assaulted her when she was returning from her gym.
Summary:
Dutt reportedly also made sure some aspects of his life, including his relationships with actresses who are married now, won't be depicted onscreen.
Summary:
Sanjay Dutt's friend Paresh Ghelani, on whom the character 'Kamli' from 'Sanju' is based, has said he wanted to "hug [Dutt]...
Paresh further wrote, "You always have been, you are and you always will be the greatest friend, brother that anyone can ask for."
Summary:
After former cricketer Virender Sehwag took to Facebook to wish former captain MS Dhoni on the occasion of his 37th birthday on Saturday, a fan commented on the post saying that Dhoni finished the former opener's career.
Summary:
The Congress has alleged that a "Bitcoin scam" of over â¹5,000 crore had surfaced in Gujarat with suspected involvement of some BJP leaders.
Summary:
The child welfare committee has evacuated the Nirmala Shishu Bhavan, a shelter run by Mother Teresa's Missionaries of Charity (MC) in Jharkhand's Ranchi, and shifted 22 children to an undisclosed location.
Summary:
A nine-year-old girl was allegedly raped by a 15-year-old boy in Uttar Pradesh's Zafarabad area.
Summary:
Following an FIR lodged by a class 9 female student alleging that she was raped by 18 people from her school in Bihar, the principal, a teacher and four students were arrested.
Summary:
The Jawaharlal Nehru University in New Delhi will hold its first convocation in 46 years, to award degrees to its outgoing PhD students on August 8.
Summary:
A small town in the United Kingdom will be converted into a twin city of Amritsar in the memory of the last king of the Sikh Empire, Maharaja Duleep Singh.
Summary:
Rajaram bought the bus, with help of some alumni, after students rapidly started dropping out due to a 3-km forest trek to the school.
Summary:
Summary:
Five people, including senior bank officials, have been convicted and awarded varying jail terms in the 1992 securities scam.
Summary:
Wishing actor-husband Shahid Kapoor on their third marriage anniversary, wife Mira Rajput shared a picture of him as her Instagram story and captioned it, "Bad pictures make for the best memories." "This is why I love you.
Summary:
Director Vinod Tiwari has revealed that after watching 'Sanju', he feels inspired to make a biopic on Kapil Sharma.
Summary:
Summary:
The chant 'It's coming home' is being used by England football team supporters to signify that England will win World Cup for the first time since 1966.
Summary:
Daimler, the parent company of Mercedes-Benz, has been granted a license to test self-driving vehicles on public roads in Beijing, China.
Summary:
This comes after RJD leader Tejashwi Yadav said Congress leaders may have a "soft corner" for Nitish.
Summary:
Richard Branson-led commercial spaceflight Virgin Galactic has announced that it will launch its commercial space flights from Italy.
Summary:
Answering a question about crimes against women, BJP MP from Madhya Pradesh Nand Kumar Chauhan on Saturday said easy access to internet and smartphones allows youngsters to watch obscene content, which negatively impacts their minds.
Summary:
Billionaire Ray Dalio, founder of world's largest hedge fund firm, on Saturday said that the "first day of the war with China" has begun.
Summary:
The Asian Development Bank on Friday approved a grant of $100 million to Bangladesh for developing facilities for Rohingya migrants from neighbouring Myanmar.
Summary:
Summary:
A 45-year-old businessman has been arrested for allegedly raping his daughter's friend while she was on a sleepover at his house in Gurugram.
Summary:
The examinations will be conducted by the newly-formed National Testing Agency, and will be conducted online.
Summary:
Steve Ditko, the Marvel Comics artist who co-created the superhero Spider-Man, has passed away aged 90.
Summary:
Rose Knight, the woman who had accused Canadian PM Justin Trudeau of groping her at a music festival in 2000, has reiterated that the incident did take place, but she will not be pursuing it further.
Summary:
Actress Swara Bhasker has slammed Union Minister Jayant Sinha for garlanding the eight people convicted for lynching Alimuddin Ansari in Ramgarh, Jharkhand.
Summary:
Two transgender actors named Trace Lysette and Jamie Clayton have slammed Scarlett Johansson and producers of 'Rub & Tug', after the actress was cast as a transgender man in the film.
Summary:
However, Pietersen asked for a DRS review and the decision was overturned, denying Dhoni a wicket.
Summary:
After photos showing him garlanding eight people convicted in Ramgarh lynching case went viral, union minister Jayant Sinha defended himself saying he was only honouring "the due process of law".
Summary:
Delhi's Patiala House Court on Saturday granted regular bail to Congress MP Shashi Tharoor in view of the anticipatory bail he was earlier given by a lower court in his wife Sunanda Pushkar's death case.
Summary:
Thai authorities overseeing an operation to rescue a football team of 12 kids and their coach stuck in a cave have said that they have a three-to-four day window to attempt their rescue.
Summary:
US Secretary of State Mike Pompeo met with North Korean officials in Pyongyang on Saturday to discuss nuclear disarmament and improving bilateral relations.
Summary:
A fraud in the Central GST (CGST) involving issuance of fake GST invoices causing tax evasion of around â¹43 crore was reportedly unearthed on Friday.
Summary:
Miss World 2017 Manushi Chhillar, while talking about her experience of working with Ranveer Singh for a TV commercial, said, "His energy and whole aura is so infectious that (it) just keeps you going." She added it was a "great experience" for her to work with him.
Summary:
Filmmaker Rakeysh Omprakash Mehra, while saying there won't be a sequel to his 2006 film 'Rang De Basanti', said, "It's not a Superman or Batman film that can be spun into a franchise." "It was just my own angst that manifested on the screen with this film," he added.
Summary:
South Korea knocked four-time champions Germany out with a 2-0 victory in group stage.
Summary:
Russia's central bank has stated that they will mint commemorative half-rouble coins if the host nation reaches the semi-finals stage of the tournament after beating Croatia on Saturday.
Summary:
The Swedish football team evacuated their team hotel over a false fire alarm ahead of Saturday's FIFA World Cup quarter-final against England.
Summary:
BCCI has posted a video of Indian team cricketers' birthday wishes for former captain MS Dhoni, who turned 37 years old on Saturday.
Summary:
Italy's legendary goalkeeper Gianluigi Buffon joined French side Paris Saint-Germain after a 17-year-long spell at Italian club Juventus.
Summary:
UK-based software startup Wayve has developed an artificial intelligence (AI) system which can learn how to drive a car in 15-20 minutes.
Summary:
Kenya will deploy Alphabet's internet balloons to connect its rural population to the web, the country's information, communication and technology (ICT) minister has said.
Summary:
Weighing around 40 kg, the robot is equipped with algorithms that help it navigate its environment by touch which the researchers describe as "blind locomotion".
Summary:
Twitter suspended 70 million accounts in the past two months as part of a crackdown to stop misinformation on its platform, according to a report.
Summary:
Addressing a rally in Rajasthan's Jaipur, PM Narendra Modi on Saturday slammed the Congress, saying people have started calling the party a "bail-gaadi" since its prominent leaders and former ministers are now out on bail.
Summary:
In a statement, the startup said it will use the capital to expand to other international markets.
Summary:
A tribal couple was stripped and paraded naked in a village in Rajasthan's Udaipur on Friday by the woman's ex-husband and his aides.
Summary:
"I thought it is a special time for me to spend with the children over here," Nita Ambani said.
Summary:
Facebook's 34-year-old CEO Mark Zuckerberg has dethroned Berkshire Hathaway CEO Warren Buffett to become the world's third-richest person with $81.6 billion wealth, according to Bloomberg.
Summary:
Singer Elvis Costello has revealed he underwent a surgery for a "small but..aggressive cancerous malignancy" and cancelled the final six dates of his ongoing European tour.
Summary:
Television actress Juhi Parmar and Sachin Shroff have been granted divorce by the Bandra family court.
They also have a five-year-old daughter named Samaira, who will stay with Juhi following the divorce.
Summary:
English cricketer Joe Denly became the first cricketer in history to hit a century and pick up a hat-trick in a single T20 match.
Summary:
Former PM Jawaharlal Nehru's intolerance towards the opinions of Bharatiya Jana Sangh Founder Syama Prasad Mookerjee led to the Constitution (First Amendment) Act, 1951, union minister Arun Jaitley has said.
Summary:
"In 2013, PM Modi had said there's a competition between Congress and Rupee and who will fall lower.
Summary:
Mother Teresa's Missionaries of Charity has said it is "carefully looking into" the child trafficking case in connection with which two of the nuns of the charity have been arrested in Jharkhand.
It is against our moral conviction," the charity's spokesperson said.
Summary:
The Uttarakhand High Court on Friday authorised the state's transport department to seize the mobile phones of those talking while driving for a period of 24 hours after issuing a valid receipt.
Summary:
Marathon runner Sameer Singh, who completed a 13,750-km-run across India over a span of seven months and six days, was on Friday felicitated at Attari-Wagah border.
Summary:
KE Venkatesh was on night duty when he caught the thief after a 4-km chase on bike, wherein he also injured himself.
Summary:
After their first meeting since the Supreme Court judgement, Delhi CM Arvind Kejriwal said Lieutenant Governor Anil Baijal agreed that government files need not be sent to him and only the decisions be made known to him.
Summary:
Law Commission Chairman Justice BS Chauhan on Friday said the panel's report on betting and gambling was misunderstood, clarifying that they recommended a complete ban instead of legalising the two activities.
Summary:
Tantrik Geeta Maa, who was detained on Friday, does not seem to have any links with the alleged mass suicide committed by 11 members of a family in Burari, police said after interrogating her.
Summary:
A contractor employed at the Burari house, where 11 family members died, revealed he installed 11 pipes in a wall near the entrance for ventilation since a window was not feasible.
Summary:
Parmar, who hails from the Hindu Meghwar community, is contesting polls from Tharparkar district in Pakistan's Sindh province as an independent candidate.
Summary:
The 12 boys of a football team trapped in a cave in Thailand have written letters to their parents assuring them of their safety.
Summary:
Akshay Kumar, while talking about the release date of his upcoming film 'Gold' clashing with that of John Abraham's upcoming film 'Satyameva Jayate', said, "John is a friend...I wish them good luck...hope both films do very well." He further said that any film can release on any day.
Summary:
'The Big Bang Theory' actress Kaley Cuoco revealed on Thursday that she underwent a surgery to correct an undisclosed medical issue, five days after her wedding to professional equestrian Karl Cook.
Summary:
Swiss star Roger Federer became the player with the most number of wins on grass in the Open Era after registering his third round win over Germany's Jan-Lennard Struff on Friday.
Summary:
Former Sweden captain Zlatan Ibrahimovic asked former England captain David Beckham to buy him anything he wants from Ikea Sweden if Sweden win the World Cup quarter-final fixture against England on Saturday.
Summary:
Former Indian cricketer Virender Sehwag wished former captain MS Dhoni on his 37th birthday with a post, part of which read, "Om Finishaya Namaha!".
Summary:
Uttar Pradesh CM Yogi Adityanath has claimed that PM Narendra Modi is not afraid of the Opposition, adding that the only danger he faces is the silence of the Indian intellectuals.
Summary:
The family of a BJP youth leader, who shot himself after his girlfriend's father asked him to prove love through suicide, has donated his organs.
Summary:
An Indian-origin finance consultant has been sentenced to eight years in prison for raping an 18-year-old woman after a night out drinking with his colleagues.
Summary:
Indiabulls Real Estate on Friday announced the sale of its commercial assets in Chennai to private equity giant Blackstone Group for about â¹850 crore.
Summary:
Earlier, Adhia had said expectation of oil prices coming down if crude comes under GST is unfair.
Summary:
England registered a 5-wicket victory in the second T20I at Cardiff on Friday to end India's seven-match winning streak in T20I cricket and level the three-match series 1-1.
Summary:
Belgium defeated five-time champions Brazil on Friday to reach FIFA World Cup semi-finals for the second time in history.
Summary:
Dhoni, who turns 37 today, led India to victory in the inaugural World T20 in his first-ever tournament as captain in 2007.
Summary:
Speaking about his father Rishi Kapoor's comments wherein he had slammed director Anurag Basu for delaying Ranbir Kapoor starrer 'Jagga Jasoos', Ranbir said, "I can't control him...But I always pass on a harsh message through my mom." "I have never looked my father in the eye.
Summary:
MS Dhoni became the third Indian cricketer after Sachin Tendulkar and Rahul Dravid to appear in 500 international matches, after taking the field against England in the second T20I on Friday.
Summary:
Khosla completed her first full Ironman Triathlon, in Carinthia, Austria, in 15 hours, 54 minutes and 54 seconds.
Summary:
The newly built â¹350-crore 26-storey Air Traffic Control tower at Delhi's Indira Gandhi International Airport was waterlogged due to heavy rains last month.
Summary:
A female student of class 9 from a private school in Bihar alleged in an FIR that she was raped by 18 persons including the principal, two teachers and her schoolmates over the last eight months.
Summary:
Supreme Court judge Justice Adarsh Kumar Goel was on Friday appointed as the Chairman of the National Green Tribunal for either "a period of 5 years or till the age of 70 years, whichever is earlier".
Summary:
An order dated May 4 that directed ten government employees, including officers, to serve breakfast and lunch to Uttar Pradesh minister Mukut Bihari Verma during a visit has surfaced.
Summary:
The decline was particularly evident after the informal summit between PM Narendra Modi and Chinese President Xi Jinping, officials said.
Summary:
The case pertains to Sharif and his family's ownership of four flats in London which were not declared in his family's wealth statement.
Summary:
I will come back to Pakistan." Sharif, who is currently in London for his wife's treatment, said he will continue his struggle from jail.
Summary:
The company's shares surged nearly 2%, taking its market valuation to â¹7.32 lakh crore ($107 billion).
Summary:
Actor Zac Efron has been accused of cultural appropriation by his fans after he posted a picture of his dreadlock hairstyle on Instagram, captioned, "Just for fun".
"You've been afforded so much privilege and world experiences that should also inform you that dreadlocks on white people is cultural appropriation," commented a user.
Summary:
Idris Elba will star as the villain in 'Hobbs And Shaw', the spinoff to 'Fast and Furious'.
Summary:
Actress Deepika Padukone shared a video of her dancing as her Instagram story while wishing rumoured boyfriend Ranveer Singh on his 33rd birthday on Friday and captioned it, "Hey hottie...it's your birthday!!!" Ranveer and Deepika will get married in November this year, as per reports.
Summary:
Summary:
FIFA President Gianni Infantino has invited the Thailand boys football team, that got trapped in a cave in the country, to attend the final of the FIFA World Cup 2018 in Moscow on July 15.
Summary:
Former Pakistani all-rounder Abdul Razzaq has said that according to him Pakistani batsman Ahmed Shehzad had more talent than former Indian batsmen Virender Sehwag and Sachin Tendulkar.
Summary:
Congress President Rahul Gandhi has claimed that the Minimum Support Price (MSP) hike announced by PM Narendra Modi-led Centre was like "applying a band-aid to a massive haemorrhage".
Summary:
Union Minister Jayant Sinha on Thursday met and garlanded eight people convicted in the Ramgarh lynching case in Jharkhand.
Summary:
The Delhi High Court on Friday pulled up Delhi Police for inaction in the rape case against self-styled godman Daati Maharaj and asked why he had not been arrested in over a month's time.
Summary:
India's economic model has the scope to bear the world's economic burden, he further said.
Summary:
The Uttar Pradesh government will spend â¹2 crore for building cow sheds in jails in 12 districts including Meerut, Gorakhpur, Firozabad, Kannauj, Agra and Raebareli among others.
Summary:
The US is performing DNA tests on migrant children in a bid to reunite them with their families.
Summary:
France defeated two-time champions Uruguay 2-0 on Friday to reach the FIFA World Cup semi-finals for the first time since the 2006 edition and overall sixth time.
Summary:
Sunny Leone is set to bring forth her real-life journey through the web-series 'Karenjit Kaur: The Untold Story'.
Summary:
The incidents were reported from Gujarat where users got a double refund - once from SBI and again from Flipkart.
Summary:
"We needed six different looks...He had to play a youth of 20 and a man of 55," said director Rajkumar Hirani.
I had a certain muscular look that I have never had in my entire life," said Ranbir.
Summary:
Former Google designer Nicholas Jitkoff has created a web tool called 'itty bitty site' that lets users create microsites that exist solely as URLs. On the web tool, users can post a combination of text, characters and emojis.
Summary:
Shayara Bano, who was one of the five women to file a petition against Triple Talaq, is set to join the BJP after she met Uttarakhand BJP chief Ajay Bhatt on Friday.
Summary:
Punjab Assembly Speaker Rana KP Singh on Friday voluntarily underwent a dope test after CM Captain Amarinder Singh ordered a mandatory drug test for all government employees.
Summary:
On July 5, a passenger tweeted he noticed the girls crying and looking uncomfortable, after which officials in Varanasi and Lucknow took action and rescued the girls, aged between 10-14 years.
Summary:
US President Donald Trump has reportedly sent North Korean dictator Kim Jong-un a CD of Elton John's song 'Rocket Man' signed by him, through his Secretary of State Mike Pompeo.
Summary:
The first song titled 'Naino Ne Baandhi' from Akshay Kumar starrer 'Gold' has been released.
Directed by Reema Kagti, 'Gold' will release on August 15.
Summary:
Actress Deepika Padukone has become the second Indian to get 25 million followers on the photo-sharing platform Instagram after Priyanka Chopra.
Summary:
Riteish Deshmukh took to Twitter to apologise for having his pictures taken in front of the statue of Maratha king Chhatrapati Shivaji at Raigad fort, Mumbai.
Yet, if anybody's hurt, we apologise," he tweeted.
Summary:
Ahead of 2018 FIFA World Cup quarter-final match between Belgium and Brazil, Belgian forward Romelu Lukaku said his Brazilian counterpart is not an actor.
Summary:
Karthik said the incident happened when the match was in a "tense" situation.
Summary:
Ntini is the first black African to represent South Africa in international cricket.
Summary:
Lahore-born South African leg-spinner Imran Tahir sang late Pakistani singer Nusrat Fateh Ali Khan's 'Sajna Tere Bina' song in a recent episode of Indian off-spinner Harbhajan Singh's talk show.
Summary:
After the Law Commission recommended legalising betting and gambling, Congress spokesperson Manish Tewari asked, "Does BJP-NDA government want to turn every paan shop in the country into a 'juye ka adda'?" Legalising betting will spoil the sports, he added.
Summary:
It is the government's duty to ensure leprosy patients are rehabilitated, the SC added.
Summary:
Over 1,200 Indian pilgrims, who were stranded in Nepal's Hilsa and Simikot region while returning from Kailash Mansarovar pilgrimage in Tibet, have been rescued since the Indian embassy in Nepal launched rescue operations this week.
Summary:
Summary:
Iran has threatened to block oil shipments passing through the Strait of Hormuz if its oil exports are cut.
Summary:
Raffaele also took blood samples from women and injected them with unknown substances.
Summary:
China is no longer a participant in the first phase of a landmark deal to curb the emissions from international flights, according to the UN aviation agency's website.
Summary:
Scott Pruitt has resigned as head of the US Environmental Protection Agency amid allegations of misspending and misuse of office.
Summary:
Deutsche Bank shares jumped up to 6% on Friday after a magazine report claimed that JPMorgan Chase and China's largest bank ICBC could be interested in buying a stake.
Summary:
The two officers, VV Agnihotri and PK Shrivastava, had allegedly granted undue favours to the company in granting credit limits.
Summary:
The police have also sought more time to identify other properties of Mallya.
Summary:
Asus Zenfone 5Z will go on sale on July 9 on Flipkart starting at â¹29,999.
Summary:
Former Pakistan Prime Minister Nawaz Sharif was on Friday sentenced to ten years in prison in a corruption case.
Summary:
Aamir's film had a total earnings of â¹202.47 crore while 'Sanju' minted â¹202.51 in a week.
'Sanju' also became Ranbir's first film to earn â¹200 crore.
Summary:
A tantrik identified as Geeta Ma has reportedly confessed on camera to driving the 11-member Bhatia family of Delhi's Burari to commit suicide.
Summary:
Ranveer Singh, who turned 33 today, had earlier revealed his debut film 'Band Baaja Baaraat' was rejected by Ranbir Kapoor.
"Yash Raj Films was looking for a new face.
Summary:
Actress Sonali Bendre, while responding to Manisha Koirala's tweet on her cancer diagnosis, wrote, "Thank you Manisha you are my inspiration." Manisha had tweeted, "By the grace of God all will be fine and you will be back home soon with good news.
Summary:
Singer Chris Brown was arrested moments after he stepped off the stage at his concert in Florida, USA.
Summary:
Union minister and former Mumbai Police Commissioner Satyapal Singh, while speaking about Sanjay Dutt's biopic 'Sanju', said, "I think glorification of criminals should be avoided, whether it is Dawood Ibrahim or any other person." "There should not be any glorification of Sanjay Dutt also.
Summary:
Three YouTubers who posted travel videos on their YouTube channel 'High On Life', Ryker Gamble, Alexey Lyakh and Megan Scraper, have died after falling from a waterfall in Canada.
Summary:
Actor Nawazuddin Siddiqui has said lead heroes are the "biggest typecast" in Bollywood, while adding, "Which hero has done something new?
Summary:
Billionaire Elon Musk is sending a team of engineers to Thailand to explore ways in which a team of teenage footballers and their coach can be rescued from a cave.
Summary:
The Bhatia family, which was found dead in Delhi's Burari last week, performed a "badh tapasya" or worship of banyan tree, to free the house from five spirits.
Summary:
Summary:
The Tripura Police has arrested the prime suspect and seven others in connection with the murder of the man appointed by the state government to run the anti-rumour campaign.
Summary:
More than 5,200 bodies buried under the debris of buildings have been recovered in Iraq's Mosul in the past few months, local authorities said.
Summary:
A bird that caught fire from an electric cable fell down and triggered fire on 17 acres of land in the coastal city of Rostock in Germany.
Summary:
Singer Sukhwinder Singh, who recently sang 'Kar Har Maidaan Fateh' song for 'Sanju', has said that people's love is more special to him than winning an Oscar.
Summary:
Zareen Khan, whose weight was above 100 kg during her school and college days, has said, "It took so much time to recognise the potential of plus-size models in India." "They [plus-size models] are equally confident and enthusiastic as compared to normal looking models," she added.
Summary:
Ranbir Kapoor said that he does not have the personality to be a "macho hero" while adding that "Salman Khan, Ajay Devgn or Akshay Kumar bring macho-ness to any part (in a film)".
Summary:
Dan Welch had made a promise that if England reached the quarter-finals of the quadrennial tournament, he will get the names tattooed on him.
Summary:
Barega managed to fend off 20-year-old Kejelcha and keep his shorts up before the latter fell to the ground.
Summary:
The bodies of three 17-year-old boys, who drowned after going for a swim off Mumbai's Juhu Beach on Thursday evening, have been found following search and rescue operations.
Summary:
The Delhi High Court on Friday extended its stay on the strike proposed by 9,000 non-executive staff members of the Delhi Metro till further order.
Summary:
The West Bengal Police on Thursday arrested five people for allegedly carrying radioactive uranium worth â¹3 crore in Kolkata's Mango Lane.
Summary:
Flags for the 2020 re-election campaign of US President Donald Trump are being made in China, a flag manufacturer claimed.
Summary:
Users took to Twitter to praise UK online fashion retailer ASOS' move of launching a jumpsuit that has been designed to be "wheelchair-friendly." A user tweeted, "This is so awesome!
Summary:
Finance Secretary Hasmukh Adhia has said it was the "technology" that failed a smooth transition to the GST regime from the previous indirect tax system.
Summary:
"I don't know where I'd have landed without Rihanna," she further said.
Summary:
ZTE received the ban in April after it failed to punish top employees over trade violations.
Summary:
Online travel startup Goibibo's founding member and Chief Technology Officer Vikalp Sahni in an interview on Friday said, "We were asked to build Goibibo in two weeks".
Summary:
She wrote about the molestation in a suicide note, adding that the accused blackmailed her on social media.
Summary:
Uttar Pradesh CM Yogi Adityanath has announced a ban on plastic in the state effective July 15, days after Maharashtra announced a plastic ban from June 23.
Summary:
This comes in the backdrop of China developing the Hambantota seaport project in the country.
Summary:
The men had allegedly taken the woman from her home to a secluded forest in order to molest her.
Summary:
The two men were then joined by other people who started hitting the man.
Summary:
The Delhi Crime Branch will conduct a psychological autopsy on the 11 members of a family who were found hanging in a house in Burari earlier this week.
Summary:
A teacher in Telangana's Model Government School made one of the students give her a head massage and braid her hair during an ongoing class.
Summary:
In June, two youths were lynched by a mob based on rumours of child-lifting, leading to massive outrage in the state.
Summary:
At least two suspected rhino poachers have been eaten by lions on a South African game reserve.
Summary:
Japan has executed seven members of the Aum Shinrikyo doomsday cult including former leader Shoko Asahara for carrying out a sarin gas attack on the Tokyo subway in 1995.
Summary:
Filmmaker Rohit Shetty shared a new still of Ranveer Singh from his upcoming film 'Simmba' on the actor's 33rd birthday today.
Sharing the still on Instagram, he captioned it, "Straight.
Happy Birthday," he further wrote.
Summary:
A video of a male South Korean reporter being kissed on cheek by two female Russian fans during live coverage of 2018 FIFA World Cup has gone viral.
Summary:
Wimbledon's organisers have said that the timing of men's final, which might coincide with the FIFA World Cup 2018's final on July 15, will not be changed even if England reach the championship match.
Summary:
Social media giant Facebook is in talks with footballer Cristiano Ronaldo for a 13-episode reality show for Facebook Watch, according to a report in Variety.
Summary:
Mumbai and CSK pacer Shardul Thakur has been named as Bumrah's replacement for England ODIs.
Summary:
Italian club Juventus' shares rose 20% amid reports claiming that Portugal captain Cristiano Ronaldo is set to sign for them in a four-year deal for an estimated amount of â¬100-â¬120 million.
Summary:
A 77-year-old man has moved the Kerala High Court, seeking a DNA test on his three children after his 68-year-old wife allegedly confessed that the children were not fathered by him.
Summary:
The college principal, however, refuted allegations of ragging in the college.
Summary:
After a JNU inquiry committee upheld the punishments given to Umar Khalid and Kanhaiya Kumar, JNU Students' Union said the BJP was trying to defame the university using "puppet administration".
Summary:
A woman in Uttar Pradesh was allegedly tied to a tree and beaten up on the orders of a village panchayat over an illicit relationship with her brother-in-law's son.
Summary:
The Rajasthan High Court has directed police to not mention an individual's caste on arrest memos and bail bonds, adding that the state should create a "casteless society".
Summary:
The Mumbai Police on Friday shared a GIF of Pablo Escobar, the lead character of Netflix series 'Narcos', in a tweet aimed at spreading awareness against drugs.
Summary:
Germany-based Thyssenkrupp's CEO Heinrich Hiesinger on Thursday offered to resign, days after he hailed "historic" merger of the firm's steel-making business with India's Tata Steel to form a 50:50 joint venture.
Summary:
Summary:
Islamic preacher and founder of Islamic Research Foundation Zakir Naik will not be deported to India, as per Malaysian Prime Minister Mahathir Bin Mohamad.
Summary:
You should also become happy.
Look at my face...I am so happy".
Summary:
An ex-Thai Navy SEAL diver has died from lack of oxygen while rescuing a children's football team trapped in a cave.
Summary:
China's Commerce Ministry on Friday said the country had no choice but to retaliate after the US started "the biggest trade war in economic history".
Summary:
The Bombay High Court on Thursday refused to grant interim relief from arrest to Mithun Chakraborty's wife Yogita Bali and son Mimoh in a rape and cheating complaint filed by a woman in Delhi.
Summary:
Actress Sheela Sharma, mother of Madalsa Sharma who's set to marry Mithun Chakraborty's son Mimoh, while speaking about the rape complaint filed against Mimoh by an actress, questioned, "Why did she wait for so long to take action?" She added, "Mimoh met her in 2015...We're aware of it.
Summary:
The official trailer of Aishwarya Rai Bachchan, Anil Kapoor and Rajkummar Rao starrer 'Fanney Khan' has been released.
Summary:
A video, which was reportedly taken on Ranveer Singh's first day at acting class, shows him dancing in front of other students.
Summary:
A Kerala court on Thursday convicted 11 CPM workers and awarded life sentence to them in connection with the murder of a BJP activist Mahesh in March 2008.
Summary:
It will be the biggest such tax payment if the deal goes through.
Summary:
An Ola driver was arrested in Bengaluru for allegedly attempting to kidnap a woman passenger on her way to Kempegowda International Airport on Thursday.
Summary:
A 37-year-old woman from Uzbekistan sat down after 32 years post a successful two-hour surgery to treat burn wounds on her lower back and thighs at a Delhi hospital.
Summary:
The Maharashtra Assembly was adjourned for an hour on Friday after electricity supply had to be closed due to water logging in the circuit room at the Vidhan Bhawan in Nagpur.
Summary:
A man from Kerala has written a Facebook post alleging a madrasa expelled his daughter for wearing a sandalwood paste bindi on her forehead.
Summary:
According to reports, residents of the colony want the house to be converted into a temple.
Summary:
Overruled all objections to the proposal." This comes days after the Supreme Court ruled that the Delhi government does not require Lieutenant Governor's concurrence on every issue and he should not act as "obstructionist".
Summary:
SBI MD Arijit Basu has said the 13 Indian banks' consortium has recovered â¹963 crore from the auction of Vijay Mallya's Indian properties.
Summary:
Pakistani pacer Mohammad Amir, who was handed a five-year ban in 2011 for being part of a spot-fixing scandal, said that he would like to have Bollywood actor Shahid Kapoor play him in his biopic.
Summary:
Karthik revealed that Nayar used to conduct exercises like completing 40 swimming laps and climbing up a hill instead of cricket-related activities.
Summary:
England allrounder David Willey has accused Indian bowlers of stopping in the middle of their run-ups to look to "see what I was going to do".
Summary:
Indian cricketer Dinesh Karthik revealed on the show Breakfast With Champions that Rohit Sharma scored his first-ever international half-century with his bat.
Summary:
Recommending that betting and gambling be legalised, the Law Commission said they should be used as a source for attracting FDI.
Summary:
"Your face will be your passport and your boarding pass at every step of the process," Sydney Airport CEO Geoff Culbert said.
Summary:
Addressing an event organised by a Muslim committee in Mumbai, BJP MP Gopal Shetty said, "Christians were 'angrez' (British), hence they didn't participate in the freedom movement." "India wasn't freed by Hindus or Muslims, we fought as one, as Hindustanis for our independence," he added.
Summary:
Karnataka CM HD Kumaraswamy on Wednesday proposed a hike in rate of tax on fuel, liquor and electricity to fulfil the promise of loan waivers to farmers.
Summary:
Two owners of a Madhya Pradesh petrol pump have been arrested for allegedly tying up a man and beating him with a whip for missing work without permission.
Summary:
The film had entered the â¹100 crore club within three days of its release.
Summary:
The ruling comes as the court rejected former Law Minister Shanti Bhushan's plea which said that collegium should be consulted to set up roster of cases.
Summary:
They were reportedly printing counterfeit currency to make up for sudden losses they had incurred in their business.
Summary:
Three people were charged in Los Angeles for allegedly kidnapping Hollywood actress Daisy McCrackin and forcing her to pay a $10,000 (â¹6 lakh) ransom for actor Joseph Capone, who they allegedly also kidnapped and held naked.
Summary:
Joey Chestnut ate 74 hot dogs in 10 minutes to extend his world record he had set last year to win his 11th annual Nathan's Famous July Fourth hot dog eating contest.
Summary:
After Punjab AAP MLA Aman Arora challenged him to take the dope test to set an example for other MPs and MLAs, CM Captain Amarinder Singh tweeted he is ready to undergo the test.
Summary:
Earlier in April, Hyderabad Police had banned the use of drones for a month after receiving information from intelligence agencies about possible terror attacks.
Summary:
A police constable Javaid Ahmad Dar, who had been kidnapped by terrorists from a local medical shop in Jammu and Kashmir's Shopian on Thursday, was found dead on Friday in Kulgam.
Summary:
A woman in West Bengal was allegedly gangraped in front of her husband and son by two men she had danced with at a wedding party.
Summary:
Andhra Pradesh Chief Minister Chandrababu Naidu on Thursday conducted a house-warming ceremony for three lakh two-bedroom houses which have been built for the poor.
Summary:
In an attempt to cut the costs incurred by the state over travel expenses of ministers and bureaucrats, West Bengal Chief Minister Mamata Banerjee on Thursday announced the 'one person, one car' policy.
Summary:
The newborn baby girl rescued by Hyderabad Police within hours of being abducted has been named Chetana after Assistant Commissioner of Police M Chetana, who had led the investigation to find her.
Summary:
The Principal of a school in Uttar Pradesh, along with her brother and two teachers, was arrested on Thursday after a video of girl students in school toilet surfaced online.
Summary:
While recommending legalisation of betting and gambling on sports, Law Commission of India cited that the battle of Mahabharata wouldn't have taken place if gambling was regulated in that era.
Summary:
Pakistani pacer Mohammad Amir has said that fatherhood is tougher than bowling to Indian captain Virat Kohli, as it demands more responsibility.
Summary:
Talking about the negative effects of Facebook, the social media network's former employee Sandy Parakilas said the firm's goal was to "addict" people.
Summary:
Matrimonial site Shaadi.com has started using Aadhaar numbers to verify user profiles against fake accounts.
Summary:
So far, it can determine the nationality of people from countries including Iran, China, India, and Bangladesh.
Summary:
The AIADMK mouthpiece Namadhu Amma on Wednesday said jailed AIADMK leader VK Sasikala's family prevented treatment for late Tamil Nadu CM J Jayalalithaa and waited for her to die so they could grab power.
Summary:
Tesla has already added the Summon feature to its Model S and Model X vehicles.
Summary:
Taiwan on Thursday said it is "deeply disappointed" after state-owned national carrier Air India changed 'Taiwan' to 'Chinese Taipei' on its official website and described it as "succumbing to absurd pressure from China".
Summary:
The Indian Railway Catering and Tourism Corporation (IRCTC) has started to live stream the preparation and packaging of food in its kitchens, allowing passengers to see whether the food prepared is hygienic or not.
Summary:
Iran has said US President Donald Trump's tweets have caused a rise in oil prices by at least $10 per barrel and asked him to stop tweeting on the matter.
Summary:
The New York Times has demoted a 26-year-old reporter who was covering National Security in Washington after it was revealed she was in a relationship with US President Donald Trump's aide James Wolfe.
Summary:
Former US President Barack Obama called UK's Foreign Secretary Boris Johnson the British version of President Donald Trump, former National Security Adviser Ben Rhodes said.
Summary:
"Sprinkling a bit of freedom for all of us", Trump Jr wrote in the caption.
Summary:
Bajaj Auto Managing Director (MD) Rajiv Bajaj's remuneration for the financial year 2017-18 rose over 10.5% to â¹28.32 crore.
Summary:
Customers just need to Add "Big Bazaar" before their search word to get one-day offers.
Summary:
An 8-year-old girl was raped and murdered near J&K's Kathua in January 2018.
Summary:
The pilot of the plane that crashed in Mumbai's Ghatkopar last week killing five people had said "Yes, the weather is bad" in his last conversation with Juhu Air Traffic Control (ATC).
Summary:
World's most expensive footballer Neymar has spent 14 minutes on the ground after falling down intentionally or unintentionally during Brazil's first four matches at 2018 FIFA World Cup. The 26-year-old has been slammed by fans and pundits around the globe for his antics.
Summary:
TaxiForSure Co-founder Aprameya Radhakrishna has said "I felt incomplete.
Post the deal, Radhakrishna took a sabbatical and made 22 angel investments.
Summary:
"These people think fulfilling the needs of the human body is only what life is all about," he further said.
Summary:
The police, however, said that the allegation might be true as a temple priest saw the man lifting a minor girl from outside the temple.
Summary:
An elevator in Gaur Saundaryam Society in Greater Noida suffered a free fall from the 14th floor till the seventh after a reported power cut.
Summary:
Rupee is Asia's worst-performing currency this year, depreciating 7.36% against the dollar.
Summary:
This rise is more than Reliance Industries Chairman Mukesh Ambani's entire year's salary of â¹15 crore.
Summary:
Mural artists in the 2018 FIFA World Cup venue city of Kazan have painted Brazilian forward Neymar's portrait on a wall behind his team hotel.
Summary:
A Russian man commissioned a 12-storey-high mural of his wife on an apartment building in Moscow for the 2018 FIFA World Cup. In the portrait, Ivan Pantellev's wife Daria can be seen wearing a gym kit and holding a football.
Summary:
Argentine legend Diego Maradona has issued an apology after being rebuked by FIFA after he claimed that England's win over Colombia in FIFA World Cup was a "monumental robbery" and criticised the referee.
Summary:
A wrestler named Ace Romero sent his opponent, Anthony Gaines, flying out of the ring during a wrestling match in New York.
Summary:
The Law Commission has recommended that gambling and betting on sports including cricket should be allowed in India as regulated activities under the direct and indirect tax regimes.
Summary:
Indian captain Virat Kohli took to Twitter to share a picture of himself ready to walk to the ground with his teammates, calling it the "most exciting feeling".
Summary:
BJP MP Subramanian Swamy has said Congress President Rahul Gandhi takes cocaine and will fail a dope test if he takes it.
Summary:
Telugu Desam Party (TDP) MP JC Divakar Reddy has advised Sonia Gandhi to get her son, Congress President Rahul Gandhi, married to a Brahmin girl from UP so he can become the Prime Minister.
Summary:
A video shot in a Kashmir university showed some students sitting while the National Anthem was being played.
Summary:
An inquiry committee appointed by the Jawaharlal Nehru University has upheld the punishments recommended for students Umar Khalid and Kanhaiya Kumar in connection with the 2016 event protesting against Afzal Guru's execution.
Summary:
"Though the forest department's staff went to the spot, the snake died before it could be rescued.
Summary:
The Indian Railways will conduct nationwide classes for its officers, to teach them ethics and integrity.
Summary:
London Mayor Sadiq Khan's Greater London Authority has approved a request to fly a six-metre-high inflatable 'Trump Baby' balloon during US President Donald Trump's visit to the country on July 13.
Summary:
Over 3,600 people have signed a petition to prevent the closure of the privately-run Hindu faith institution, The Swaminarayan School, in the UK.
Summary:
India's second-most valuable company Reliance Industries lost â¹15,870 crore in market capitalisation on Thursday after future plans for Reliance Jio were announced at the 41st Annual General Meeting.
Summary:
Maruti Suzuki, with a market capitalisation of â¹2.82 lakh crore, is now India's seventh-most valued firm.
Summary:
He also said that Reliance Retail, which runs stores such as Reliance Fresh, Reliance Trends and Reliance Footprint, recorded revenues of â¹69,000 crore, showing a 100% year-on-year growth.
Summary:
Two nuns working at Mother Teresa's Missionaries of Charity were arrested from Jharkhand's Ranchi on Thursday for allegedly selling four babies.
Summary:
A 20-year-old college student in West Bengal died while trying to imitate his idol Lionel Messi's moves during a football match.
Summary:
Nomination papers filed for the upcoming general elections in Pakistan have reportedly exposed over 60 politicians who had been hiding their second marriages.
Summary:
Summary:
Talking about his son Ranbir Kapoor's choice of films, Rishi Kapoor said, "His decision to swim against the tide and still hold his own is something I appreciate.
Summary:
In a Facebook post on the Supreme Court's judgement regarding administration of Delhi, Finance Minister Arun Jaitley said the Centre's opinion overrides that of the Delhi government.
Summary:
Indian Railways constructed a subway crossing in a record time of four and a half hours between Pendurthi and Kothavalasa line in Andhra Pradesh.
Summary:
Former UP CM Akhilesh Yadav has sought permission to build a hotel on Lucknow's Vikramaditya Marg, the locality he was asked to vacate earlier.
Summary:
Parrikar was interacting with local journalists after returning to Goa from USA, where he underwent a three-month-long treatment.
Summary:
Services will be restored after the railing is removed.
Summary:
The European Parliament on Thursday voted to reject a copyright law that would ban the usage of memes by Internet users.
Summary:
After an 8-day hiatus, petrol price in Delhi increased by 16p a litre while diesel price increased by 12p a litre.
Summary:
The agents "may use reasonable force to enter the property if necessary," the court's order stated.
Summary:
Aditi Rao Hydari has said she takes the tag 'underrated actor' as a "reverse compliment".
Aditi further said it takes patience to get the kind of work she wants to do.
Summary:
Actor Sacha Baron Cohen posted a video on Twitter trolling US President Donald Trump on the occasion of Independence Day. The clip featured an old footage of Trump slamming Cohen and implied Cohen may release a film taking a dig at the US President.
Summary:
Canadian tennis player Eugenie Bouchard was slammed on social media after she tweeted about staring at a ballboy's unzipped shorts during her Wimbledon match on Tuesday.
Summary:
England cricket team will train against a unique spin-bowling machine, known as Merlyn, to prepare for Indian Chinaman bowler Kuldeep Yadav, who took five wickets in the first T20I.
Summary:
Netherlands-based artificial intelligence (AI) startup OneWatt has developed a way to use AI to detect machine breakdown through sound.
Summary:
Uttar Pradesh CM Yogi Adityanath has so far sanctioned over â¹223.21 crore for the treatment of 15,716 people who were seriously ill, the CM's Office said in an RTI reply.
Summary:
According to Audi, the screens on the e-tron system can adjust their field of view to suit the driver's preference.
Summary:
Bengaluru-based foodtech startup HungerBox has raised $4.5 million in a Series A funding round led by South Korea-based Neoplux and Sabre Partners.
Summary:
Also, Myntra reduced losses to $96.06 million in FY17, compared to $120.7 million in the previous year.
Summary:
The school said girls can only wear white or skin-coloured innerwear.
Summary:
The 12 boys and their football coach trapped 4km deep inside a cave in Thailand may be able to walk out as authorities reduced water levels in the first section of the cave by 40%.
Summary:
Turkey signed a memorandum of understanding to build four corvettes for Pakistan under the MiLGEM project last year.
Summary:
Exchanges will act as an intermediary connecting buyers and sellers and will release crypto after payment confirmations.
Summary:
Akash Ambani also announced Jio Smart Home Solutions, which will help users control appliances remotely.
Summary:
A typo in Fortis Healthcare's annual report for Financial Year 2016-17 showed CEO Bhavdeep Singh's salary grow over four times to â¹16.8 crore, a Fortis spokesperson has said.
Summary:
Mukesh Ambani-led Reliance Industries on Thursday at the company's 41st Annual General Meeting announced that customers will be able to exchange their existing feature phones for a new JioPhone by paying â¹501.
Summary:
Sanjeev Shrivastava, dubbed as 'dancing uncle' on social media after a video of him dancing to Govinda's 'Aap Ke Aa Jane Se' went viral, shared a video of himself dancing to Hrithik Roshan's song 'Kaho Naa Pyaar Hai'.
Summary:
Under the technology, fiber optic cable is installed from a central point to individual residences directly to provide high-speed internet access.
Summary:
Five members of a family were found in a critical condition at their home in Maharashtra's Raigad after they allegedly attempted suicide by consuming phenyl mixed with soft drinks.
Summary:
To prevent the school from closing, the headmaster decided to offer incentives to students.
Summary:
Pakistani cricketer-turned-politician Imran Khan has said that PM Narendra Modi-led Indian government is trying to isolate the country with its "aggressive" anti-Pakistan policy.
Summary:
The Air Intelligence Unit (AIU) at Mumbai's Chhatrapati Shivaji International Airport on Thursday arrested a passenger for hiding cash worth $1,48,500 (over â¹1 crore) concealed inside a cardboard roll.
Summary:
Delhi Police have revealed that Lalit Bhatia, who is said to be the "mastermind" behind the deaths of 11 family members in Burari, used to research on deaths and mystery of souls.
Summary:
Iran will trade only with countries that import its oil, representative of the Iranian Parliament's energy committee, Asadollah Qarekhani said.
Summary:
US President Donald Trump has claimed that former President Barack Obama gave citizenship to 2,500 Iranians as part of the 2015 nuclear deal.
Summary:
Ahead of the general elections in Pakistan, cricketer-turned-politician Imran Khan has said, "You contest elections to win.
Summary:
A couple in the UK's Amesbury were exposed to Novichok, the type of nerve agent used to allegedly poison former Russian spy Sergei Skripal and his daughter in March.
Summary:
Introducing the JioGigaFiber broadband service, Reliance Jio director Isha Ambani said, "Gone are the days of Mbps, now it will be about Gbps." The service will come with a set-top box that provides users with TV channels and other content in 4K resolution.
Summary:
Actor Ranveer Singh took to social media to share a video on the occasion of his 2013 film 'Lootera' completing five years of release.
Summary:
Talking about his match-winning 54-ball 101* against England in the first T20I, KL Rahul said that the knock "means the world to him".
Summary:
Pacer Deepak Chahar and all-rounder Krunal Pandya, who received their maiden call-ups to the Team India T20I squad, were asked to stand on chairs and give their 'newcomer' speech.
Summary:
The company also claimed the AI is capable of generating promotional, functional, or poetic content for users.
Summary:
The store features 'smart mirrors' which display product information on a screen when shoppers are touching or picking up a garment.
Summary:
Facebook has claimed it is a 'publisher' in a court case, contrary to its insistence that the company is a technology platform.
Summary:
Former Delhi CM Sheila Dikshit on Wednesday said that the AAP government's conflict with Lieutenant Governor Anil Baijal was AAP's "own creation".
Summary:
The Supreme Court has issued a notice to the Centre and state governments after hearing a petition seeking reservation for orphans.
Summary:
The Maharashtra Police has arrested the man who was reportedly leading the mob which beat five people to death in Dhule on Sunday.
Summary:
The Home Affairs Ministry has asked states and union territories to check mob violence incidents triggered by child-lifiting rumours on WhatsApp and other social media platforms.
Summary:
Chennai police have arrested five people for racing in auto-rickshaws on the Outer Ring Road in the city and impounded their vehicles.
Summary:
Abe's visit to Iran would have been the first by a Japanese leader in 40 years.
Summary:
Shloka Mehta, fiancée of Mukesh Ambani's eldest son Akash, attended Reliance Industries' AGM in Mumbai on Thursday.
Summary:
The order said that CM will approve transfers of IAS, all-India services officers, equivalent officers of the central civil services and provincial civil services.
Summary:
Priyanka Chopra, who reached the 25 million follower mark on Instagram, has become the most followed Indian on the photo-sharing platform.
Summary:
The clip features children running on a field with their own footballs and dropping to the ground the moment their coach screams out 'Neymar'.
Summary:
Meanwhile, world number 13 HS Prannoy entered men's singles quarter-finals.
Summary:
Korean researchers have developed a flexible and transparent fingerprint sensor that measures the human skin temperature to unlock a smartphone.
Summary:
Union Minister Nitin Gadkari on Wednesday flagged off India's first taxi ambulance services in Delhi, a service by a Gurugram-based startup Wagon Cab. The cabs are equipped with medical supplies and medically trained drivers.
Summary:
Tata Motors has produced only one unit of its small car Nano last month as against 275 units in June 2017.
Summary:
Researchers also plan to use this process on last two northern white females to produce pure northern white rhino embryos.
Summary:
Uttarakhand High Court on Wednesday directed the authorities to get the eyesight of all the drivers of the Uttarakhand Transport Corporation and private transporters checked within 15 days.
Summary:
Slamming Indian Railways and the Brihanmumbai Municipal Corporation over Tuesday's bridge collapse at Andheri station, Bombay High Court on Wednesday said, "You cannot leave people to die." After BMC pointed out the bridge was a railway property, the court said, "It's very easy to say that it's their property.
Summary:
Karnataka Public Works Minister HD Revanna on Thursday denied reports of travelling 300 km daily on the advice of his astrologer to avoid bad luck.
Summary:
The Burari mass suicide, in which 11 people died, was part of a week-long 'thanksgiving' ritual being performed by the family.
Summary:
A two-year-old boy was allegedly sexually abused at his play school in Kolkata during a Doctor's Day programme.
Summary:
An Indonesian woman who was swept away by a wave 18 months ago has been found alive on the same beach.
Summary:
Ambani said the service would provide Ultra HD entertainment on TV, voice-activated assistance, VR gaming as well as smart home solutions.
Summary:
Janhvi Kapoor, while praising her half-brother Arjun Kapoor, said, "Arjun is very wise, just like dad." "They can comfort and guide you in a way that many people can't," she added.
Summary:
Actor Akshay Kumar took to social media to introduce television actress Mouni Roy's character in the upcoming film 'Gold', which will mark her Bollywood debut.
Summary:
Baidu is also working with Chinese automaker King Long to build the buses and has made 100 of them so far.
Summary:
Users can touch any point on the map and the wheelchair will drive to that place automatically.
Summary:
After Congress leader Shashi Tharoor was directed not to travel abroad without the court's permission, BJP leader Subramanian Swamy said Tharoor can't go meet "all his girlfriends in various parts of the world." "[H]e can sit with Sonia and Rahul Gandhi, they are also bail-wallas," he added.
Summary:
A man was arrested from Ahmedabad on Thursday for tweeting a rape threat directed at Congress spokesperson Priyanka Chaturvedi's 10-year-old daughter.
Summary:
A National Investigation Agency court has issued a notice to revenue officials to seize the properties of youths who had left Kerala to join terrorist organisation ISIS.
Summary:
Police on Thursday arrested 15 people, including five women from Thailand, for their alleged involvement in a sex racket following a raid at a spa in Gurugram's sector 29 market.
Summary:
The Chinese Commerce Ministry on Thursday said the US is "opening fire" on the world with its tariff threats.
Summary:
The US on Wednesday celebrated its 242nd Independence Day, the day marking its independence from Great Britain after the American Revolutionary War. The celebrations included concerts, parades, fireworks and hot dog-eating contests among others.
Summary:
"If oil prices rise and other currencies depreciate, the rupee depreciating has to be part of the adjustment mechanism," Subramanian said.
Summary:
The Supreme Court has directed Jaypee Group to pay â¹650 crore, instead of â¹1,000 crore ordered earlier, to refund the principal amount to homebuyers.
Summary:
Actress Manisha Koirala has been cancer-free for five years after she was diagnosed with ovarian cancer and underwent treatment in New York.
Summary:
Kerala Governor P Sathasivam directed his staff to pay a fine of â¹400 after his car was booked for exceeding the speed limit.
Summary:
He said that loans of up to â¹2 lakh for each farmer will be waived.
Summary:
A new poster of Anil Kapoor, Aishwarya Rai Bachchan and Rajkummar Rao starrer 'Fanney Khan' has been released.
Summary:
She has a lot of positive energy." "It happened suddenly.
Aisi sab baatein suddenly hi hoti hain," she added.
Summary:
Alia Bhatt has said she can't expect the same monetary investment to be made in her films as Varun Dhawan's because he has a "wider reach".
Summary:
Two-time Olympic medal-winning wrestler Sushil Kumar suffered his first defeat in over 4 years, losing 4-8 to Poland's Andrzej Piotr Sokalski in the 74 kg category at Tbilisi Grand Prix on Wednesday.
Summary:
Congress MP Shashi Tharoor was on Thursday granted anticipatory bail by a Delhi court in his wife Sunanda Pushkar death case on the surety of â¹1 lakh.
Summary:
Tojo Mathew, who hails from Kerala, has won over â¹13 crore in a lottery in UAE's Abu Dhabi.
Summary:
Karnataka CM HD Kumaraswamy's wife and five other family members have been accused by a media agency of evading property tax for 10 years, with unpaid taxes amounting to â¹3.17 crore.
Denying the accusations, Kumaraswamy slammed the media firm, saying, "My family members aren't tax defaulters, you can go check.
Summary:
Madras High Court has ruled that private schools in Tamil Nadu cannot have any tie-up with private agencies to conduct coaching classes for competitive exams like NEET and IIT-JEE during school hours.
Summary:
A lawyer from Uttar Pradesh has filed a petition in the Supreme Court seeking to be declared former PM Atal Bihari Vajpayee's son.
Summary:
Iranian President Hassan Rouhani on Wednesday threatened to reduce cooperation with UN nuclear watchdog International Atomic Energy Agency over the US' plan to cut Iranian oil sales.
Summary:
Ahead of Donald Trump's state visit to the UK, Sheffield's Lord Mayor Magid Magid called the US President "wasteman" and barred him from visiting the city.
Summary:
An immigrant from DR Congo on Wednesday scaled the base of Statue of Liberty to protest against US President Donald Trump's immigration policy.
Summary:
Mukesh Ambani-led Reliance Industries has spent â¹28,900 crore ($4.2 billion) in at least 12 deals in last 12 months, as per Bloomberg.
Summary:
LinkNYC said people use the booth's phone app to call a number to play the music and press its home button to hide the call.
Summary:
With this method, sound waves are set at an angle to put pressure on blood cells.
Summary:
Tesla CEO Elon Musk reportedly ordered his employees to skip a key braking test on Model 3 cars before they left the factory in the US.
Summary:
The police have revealed that the mob which beat five people to death in Maharashtra's Dhule on Sunday wanted to burn the victims on the spot.
Summary:
The United Nations Educational, Scientific and Cultural Organisation (UNESCO) has come into an agreement with the Andhra Pradesh government to set up a 'Design University for Gaming' in Visakhapatnam.
Summary:
The panel will choose a suitable song from amongst the entries received and shortlisted by the Kerala Sahitya Akademi.
Summary:
It is the district's last village to be connected to the rest of the state by road, reports said.
Summary:
The police have rescued 32 women who were allegedly being forced to dance topless and perform obscene acts for the customers at a pub in Bengaluru.
Summary:
Irish Prime Minister Leo Varadkar reportedly said he sympathised with US President Donald Trump's views about the media.
Summary:
The protests are the deadliest in Nicaragua since the civil war ended in 1990.
Summary:
Union Minister Piyush Goyal has said it's an inappropriate time to sell or list Air India and the government is making efforts to turn around the airline.
Summary:
Footage from a CCTV camera installed opposite the Burari house where 11 people were found dead, has revealed the family's eldest daughter-in-law brought the stools, while two teenagers got wires for the 'pooja'.
Summary:
The first poster of Sushant Singh Rajput, Manoj Bajpayee and Ranvir Shorey starrer 'Sonchiriya' has been released.
Summary:
Hollywood actress Jessica Alba has said it's important to talk to her daughters about the sexual harassment she faced in the film industry and to teach them about consent.
Alba has two daughters aged ten and six.
Summary:
Comedian Krushna Abhishek, while speaking about the family feud involving his uncle Govinda, said, "Mama (Govinda) can slap me twice or abuse me...Things will get resolved after that." "Whatever he says I'll listen to quietly," Krushna added.
Summary:
France, who are among the six European teams to reach the 2018 FIFA World Cup quarter-finals, will face two-time champions Uruguay in the first quarter-final on Friday.
Summary:
Zimbabwe's national rugby team players, currently participating in World Cup qualifiers, were forced to sleep on a street outside their hotel in Tunisia because of poor facilities.
Summary:
The 43-run total is the lowest for Bangladesh in Test cricket history.
Summary:
Messaging app WhatsApp on Wednesday told the government that it is testing a 'new label' that exclusively highlights forwarded messages to prevent misuse.
Summary:
Dubai-based airline Emirates has confirmed it will continue to provide 'Hindu meal' option, after earlier stating they were removing it from their menu.
Summary:
Goa politicians have shared videos of them ploughing fields and helping farmers in an 'agriculture challenge' thrown by sarpanch Siddhesh Bhagat to create awareness about farming.
Summary:
"We found that disinformation on WhatsApp played a major role in instigating violence...they must remain responsible and vigilant," Prasad added.
Summary:
The parents, who are daily wage labourers, had found the girl bleeding profusely and rushed her to a hospital.
Summary:
The Uttarakhand High Court on Wednesday declared the entire animal kingdom including birds and aquatic animals a legal entity with rights of a living person.
Summary:
US President Donald Trump reportedly discussed with his aides about the possibility of invading Venezuela, a senior official working in his administration claimed.
Summary:
Sharif further asked an accountability court to delay its verdict in a corruption case against him until he returns.
Summary:
Air India has changed its reference to Taiwan on its website to 'Chinese Taipei' after pressure from China, which does not recognize Taiwan as a separate country.
Summary:
Argentine football legend Diego Maradona has claimed that Colombia were victims of a "monumental robbery" in their 2018 FIFA World Cup Round of 16 defeat to England on Tuesday.
Why didn't he use VAR?
Summary:
World number 18 tennis player Nick Kyrgios accidentally hit a ballgirl with a 217-kmph serve during his Wimbledon first round match against Denis Istomin on Tuesday.
The ballgirl grabbed her arm and started crying as the players rushed to console her before she left the court.
Summary:
Team India batsman KL Rahul has revealed that his celebration move with captain Virat Kohli has been inspired by Portugal and Real Madrid forward Cristiano Ronaldo.
Summary:
Twenty-three-time Grand Slam champion Serena Williams jokingly said she will continue playing until 20-time Grand Slam winner Roger Federer stops.
"How long?
Summary:
The US defeated Belgium in the fourth Quidditch World Cup's final to clinch their third title.
Summary:
German automaker Volkswagen has announced an all-electric car-sharing service called 'We' that will launch next year.
Summary:
Future Lifestyle Fashions, part of the Kishore Biyani-led Future Group, has agreed to acquire up to 29.9% stake in online fashion retailer Koovs for about â¹140 crore.
Summary:
Parents alleged that the school also restricted the number of times students could use toilets.
Summary:
Pakistan Peoples Party's (PPP) prime ministerial candidate Bilawal Bhutto Zardari has said that he did not choose to join politics.
Summary:
Retail operations for PNB customers continue to operate from the branch, an official said.
Summary:
Punjab CM Captain Amarinder Singh has ordered a mandatory dope test for all government employees, including police personnel, from the time of their recruitment through every stage of their service.
Summary:
A video of a Pakistani journalist sitting in an inflated pool on a flooded road in Lahore has gone viral.
Summary:
Choreographer-turned-filmmaker Remo D'souza has denied rumours of a fallout between him and Salman Khan following response received by their film 'Race 3'.
Salman will star in a dance film, tentatively titled 'Dancing Dad', which will be directed by Remo.
Summary:
A Russian couple, who first met while watching 2002 FIFA World Cup in a bar, have divorced after getting into an argument about which player is better among Cristiano Ronaldo and Lionel Messi.
Summary:
The museum appears to be a set of halls with black walls without the lights.
Summary:
BJP spokesperson Sambit Patra on Wednesday called the Supreme Court verdict in the tussle between the Delhi government and Lieutenant Governor a "severe blow" to CM Arvind Kejriwal, adding he should leave his "politics of anarchy".
Summary:
The Delhi Police has booked a member of the Congress' social media team after a former colleague filed a complaint against him for sexual harassment.
Summary:
The release date of Ranbir Kapoor and Sanjay Dutt starrer 'Shamshera' has been announced as July 31, 2020.
Summary:
While Sushant has reportedly already signed the film, Kriti is yet to be finalised for the role.
Summary:
Sports Minister Rajyavardhan Singh Rathore has revealed the name of Sports Authority of India will be changed to Sports India.
Summary:
The camera uses neural networks to identify the objects and then draws upon images from Google's 'Quick, Draw!' dataset to provide an interpretation.
Summary:
WhatsApp has announced Research Awards of up to â¹34 lakh per research proposal on fake news spreading on the platform.
Summary:
Google's public WiFi project aims to capture 40 million new users in India by 2019, a company executive has said.
Summary:
BJP MP Subramanian Swamy on Wednesday said that the Delhi Lieutenant Governor must respect the government's decisions, adding that he can still oppose if the decisions are anti-national and anti-constitutional.
Summary:
Puducherry CM V Narayanasamy on Wednesday warned Lieutenant Governor Kiran Bedi saying the Supreme Court ruling in the tussle between Delhi government and L-G was "totally applicable" to Puducherry.
Summary:
In discussions with Careem, Uber is seeking a majority stake in the combined company, if not buy the startup outright, reports further claimed.
Summary:
Earlier, Muslim Waqf and Haj Minister Mohsin Raza had said they wanted to implement a formal dress code to bring madrasas on par with other educational institutions.
Summary:
The terrorists forced the woman for information and discovered Aurangzeb would be seeing her before proceeding to Poonch.
Summary:
Three coaches of Indian Railways' Pooja Superfast Express derailed in Rajasthan's Phulera and no casualties were reported in the incident on Wednesday.
Summary:
The researchers conducted experiments for a year, researching on cancer cells procured in a bottle, with their attempt to kill cells using cow urine emerging successful.
Summary:
Lucknow University was temporarily closed until further notice on Wednesday after over a dozen teachers including the Proctor were attacked inside the campus by outsiders claiming to be Samajwadi Party workers.
Summary:
The Syrian government has called on its citizens fleeing the civil war and terrorist attacks to return home after the liberation of most areas previously under terrorists' control.
Summary:
The Australian government will start issuing fines to parents who do not vaccinate their children.
Summary:
Russia will build two nuclear power units in China which are expected to be operational by 2026 and 2027 respectively.
Summary:
Income tax refunds worth over â¹70,000 crore have been issued and over 99% of all refund claims pending as on June-end have been processed, the Central Board of Direct Taxes has said.
Summary:
Former RBI Deputy Governor KC Chakrabarty was reportedly stopped from travelling abroad in May at the Mumbai airport due to a Look Out Circular issued by CBI.
Summary:
The Minimum Support Price is the price at which government purchases crops from the farmers, regardless of the market price.
Summary:
Chinese conglomerate HNA Group's 57-year-old billionaire Chairman Wang Jian died on Tuesday after he fell off a wall while getting his pictures taken during a business trip in France.
Summary:
Angela Ponce, who has been crowned Miss Universe Spain, will be the first ever transgender model competing at the Miss Universe pageant later this year.
Summary:
Colombian footballer Andrés Escobar was murdered in his hometown for scoring an own goal against the United States in 1994 FIFA World Cup. Escobar was subjected to insults in Colombia, with his own goal being blamed for his country's exit from the tournament.
Summary:
"You're worse than a cancer," a post targeting Bacca read.
Summary:
Apple's digital assistant Siri on Tuesday interrupted the UK Parliament when Defence Secretary Gavin Williamson was making a statement against the Islamic State and said 'Syria'.
Summary:
Bryant joined Google Cloud after spending more than 25 years at Intel.
Summary:
Taking a dig at the Centre's bullet train project, Congress President Rahul Gandhi said, "It should not be called a bullet train.
Summary:
A note recovered from Delhi's Burari house where 11 family members were found dead on Sunday reads, "During the fulfilment of the last wish...the earth will tremble".
It further reads, "Chant more vigorously.
Summary:
Islamic preacher and founder of Islamic Research Foundation Zakir Naik on Wednesday denied reports he is coming to India, saying he will not return unless he feels safe from unfair prosecution.
Summary:
Lalit Bhatia, younger son of the Bhatia family said to be 'mastermind' behind the suspected mass suicide at Burari, bought 10 mobile numbers adding up to 51 on the day of the incident.
Summary:
The Regional Passport Officer of Lucknow has cleared the passport of the woman, who had accused a passport officer of humiliating her and her husband over their interfaith marriage.
Summary:
Israel has said that Palestinian militant group Hamas created fake dating and sports apps to hack the soldiers' phones.
Summary:
Dhillon, who holds a law degree from the University of California, became the first Director of the Office of Counternarcotics Enforcement in 2006.
Summary:
Eike Batista, the former mining and oil magnate who was once BrazilâÂÂs richest man, has been sentenced to 30 years in prison in connection with a corruption probe.
Summary:
India's largest telecom operator Airtel's CEO Gopal Vittal has said that "financial pain" in the industry caused due to Jio's entry has made Airtel a "sharper company".
Summary:
The Reserve Bank of India (RBI) has reportedly issued a licence to Bank of China to operate in India.
Summary:
Jacqueline Fernandez has said she wouldn't be able to date an actor as there's just too much going on in an actor's life.
Jacqueline further said, "As for me, I'm independent...So, I need someone who can complement that."
Summary:
Hollywood actress Amber Heard has been slammed for posting a racist tweet advising people to give their housekeepers and nannies a ride home because of an immigration checkpoint near her house.
Summary:
Wicketkeeper-batsman Jos Buttler shared a video of England cricket team celebrating the country's 2018 FIFA World Cup Round of 16 shootout victory against Colombia on Tuesday.
Summary:
Warner has scored six runs in three matches in the tournament so far.
Summary:
Karnataka government has denied BJP's Leader of Opposition BS Yeddyurappa's request to be allotted the same bungalow as his official residence where he stayed during his tenure as CM.
Summary:
Ola on Wednesday announced that it has appointed Simon Smith as the Managing Director for its Australia operations.
Summary:
Homegrown e-commerce startup Flipkart is set to enter financial services business and has applied for an NBFC (Non-Banking Financial Company) license to focus on consumer lending.
Summary:
Employees will be able to demand this leave thrice a year, till the time their children turn 18.
Summary:
After stopping their deliveries for a day due to the suspension of rail services in Mumbai on Tuesday, Dabbawalas fed 1,000 people from financially weak backgrounds affected by heavy rainfall in the city.
Summary:
Anna Mae Blessing's son wanted her to leave for an assisted living facility because she "had become difficult to live with".
Summary:
Italian Wikipedia shut down on Tuesday to protest against reforms in EU copyright laws that it says will restrict internet freedom.
Summary:
Metastatic cancer, usually occuring in stage IV, is when cancer cells spread from their primary position to other body parts through blood or lymph system.
Summary:
Sony Pictures Entertainment accidentally uploaded the entire 'Khali the Killer' movie on its YouTube channel instead of the trailer.
Summary:
Hembram had dragged the teacher from the school towards his house and beheaded her with a sword, police said.
Summary:
Alia Bhatt, on being asked if she'd reduce her fee for a film, said, "I won't let go of a movie that I like because of remuneration." "I'll still do it because the emotional attachment to my work is way more than the monetary one," she added.
Summary:
Dubai-based airline Emirates has taken down the 'Hindu meal' option from its economy class menu, citing customer feedback.
Summary:
Slamming the Uttar Pradesh government over development claims, Samajwadi Party MLC Shashank Yadav shared a picture of a mango tree in the middle of the National Highway-24 with a caption, "There's development but on NH24 near Maigalganj".
Summary:
The Centre on Wednesday approved the raise in Minimum Support Price (MSP) for kharif crops in line with its budget announcement to ensure that farmers get at least 1.5 times of the production cost.
Summary:
A fisherman from Maharashtra will receive National Maritime Search and Rescue Award for saving 12 fishermen whose boat had capsized.
Summary:
Punjab minister Navjot Singh Sidhu has issued directions mandating the use of Punjabi for all official work in departments of Tourism and Cultural Affairs, and Local Government that are headed by him.
Summary:
The Shiromani Gurdwara Parbandhak Committee has decided to install portrait of Khalistan leader Jarnail Singh Bhindranwale, along with the 890 people killed in Operation Blue Star, at Amritsar's Golden Temple.
Summary:
New notes from 2007 have also been recovered, contents of which are about Lalit Bhatia's father.
Summary:
At least 10 workers lost their lives while several others suffered serious burns following a blast at a firecracker manufacturing unit in Telangana on Wednesday.
Summary:
The South Western Railway (SWR) on Tuesday announced that it has eliminated all 71 unmanned level crossing gates in and around Bengaluru, making it the first city in SWR to attain the feat.
Summary:
Warning NATO allies that the US is losing patience, President Donald Trump has asked them to increase defence spending to meet security obligations shared by the alliance.
Summary:
Mexico's incoming President, Andrés Manuel López Obrador, has said that he does not need bodyguards as the people of the country would protect him.
Summary:
Somalian jihadist fundamentalist group al-Shabaab has announced a ban on plastic bags in the territories it controls, saying the discarded bags "pose a serious threat to the well-being of humans and animals alike".
Summary:
Parneros, who was named CEO in April 2017, is the company's fourth chief executive to depart in five years.
Summary:
Shera's son, who had earlier assisted director Ali Abbas Zafar in 'Tiger Zinda Hai' will reportedly be launched in an action film.
Summary:
Responding to reports claiming that Google gave its employees and third-party apps access to users' emails, the company has said, "No one at Google reads your Gmail." However, Google said it makes exceptions in cases including security purposes.
Summary:
An artificial intelligence (AI) system, BioMind, has defeated 15 of China's top doctors by a margin of two to one in tumour diagnosis.
Summary:
A BJP youth leader allegedly shot himself with a revolver at his girlfriend's house in Bhopal after her father asked him to prove his love through suicide.
Summary:
Muslims in Allahabad are reportedly demolishing parts of mosques to assist in widening roads for the Kumbh Mela next year.
The Kumbh Mela is held every 12 years on the banks of âÂÂSangamâ in Allahabad.
Summary:
Hyderabad Police rescued a 7-day-old baby girl within hours of being kidnapped from a government hospital by an unknown woman.
Summary:
A 13-year-old student was crushed to death after he slipped through the hollow floor of his school bus in Uttar Pradesh's Agra on Tuesday.
Summary:
On Monday, Tanauan City's mayor Antonio Halili was shot dead by a sniper.
Summary:
After Harley-Davidson decided to move some production out of the US, President Donald Trump said his administration is working to bring other motorcycle companies to the country.
Summary:
Actress Sonali Bendre on Wednesday revealed that she has been diagnosed with cancer.
Summary:
The Supreme Court has said that Delhi cannot be given the status of a 'state' but Lieutenant Governor is bound by the aid and advice of the elected Delhi government.
Summary:
"That wasn't my problem.
My problem was to pay my rent on time...pay salaries on time to the people who run my life," he added.
Summary:
Indian wicketkeeper MS Dhoni effected two stumpings against England on Tuesday, surpassing Pakistan's Kamran Akmal to be the player with the most stumpings in T20I history.
Summary:
Jamaat-ud-Dawah chief and 26/11 Mumbai attack mastermind Hafiz Saeed has called Pakistan politician puppets of India and the US.
Summary:
After the Supreme Court said the Lieutenant Governor is an administrative head and should not act as an "obstructionist", Delhi CM Arvind Kejriwal hailed it as a victory for the people of Delhi and democracy.
Summary:
The warning comes a day after a part of an overbridge at a station in Andheri collapsed, injuring five people.
Summary:
Goa Agriculture Minister Vijai Sardesai has approved pilot project 'Shiv Yog Cosmic Farming' wherein farmers will chant 'Om rom jum sah' for 20 minutes daily to "channel cosmic energy" for better crops.
Summary:
The Uttar Pradesh government has proposed a new "formal" dress code for madrasa students, who currently wear kurta-pyjamas to the institutions.
Summary:
So far, 11 people have died during the Amarnath Yatra this year.
Summary:
Indian Railways, BMC and Indian Institute of Technology will now jointly conduct a safety audit of 445 bridges over train tracks, he added.
Summary:
Summary:
Citizens in Delhi will receive around 100 public services like driving license, ration card and marriage certificate at their doorstep by August, under a scheme proposed by the Delhi government.
Summary:
Haroon Sultan, a former minister in Pakistan's Punjab province, has said it is 'haram' to vote for women.
Summary:
A video of US President Donald Trump gatecrashing a wedding at his golf club in Bedminster, New Jersey has surfaced online.
Summary:
A picture of a dad in Wisconsin, US, "breastfeeding" his newborn daughter using a plastic nipple shield, a feeding tube and a syringe has gone viral.
Summary:
A son of Islamic State leader Abu Bakr al-Baghdadi has been killed in Syria, the militant group's news channel reported on Tuesday.
Summary:
The sequel will reportedly trace the cricketer's journey following India's 2011 World Cup victory.
Summary:
Jacqueline Fernandez has said that for her, Salman Khan and his ex-girlfriend Aishwarya Rai are the perfect onscreen pair.
Salman and Aishwarya, who started dating after meeting on the sets of the 1999 film, broke up in 2001.
Summary:
Former world number 1 female tennis player Russia's Maria Sharapova suffered her first opening-round Wimbledon defeat and earliest Grand Slam exit in eight years on Tuesday.
Summary:
Blockchain startup Waves will give the Russian football team $1.5 million if the team wins the FIFA World Cup. It is because Waves launched an airdrop distribution of football tokens for users to invest in their favourite World Cup team.
Summary:
The students of Sapthagiri College of Engineering in Bengaluru have developed a six-legged robot which acts as a smart stick to assist the visually challenged.
Summary:
In 2015, the startup introduced the $1,950 L16 camera which used 16 lenses to capture 52-megapixel imagery.
Summary:
The government has warned WhatsApp to take urgent steps to prevent the spread of "irresponsible and explosive messages" through its platform leading to cases of lynching.
Summary:
A 65-year-old farmer in Tamil Nadu's Madurai was electrocuted to death on Tuesday while he tried to save his cow after it had stepped onto a live wire in his fields.
Summary:
Protesting against US President Donald Trump's policy of separating migrant children from their parents, a church in Indiana has placed statues of baby Jesus, Mary and Joseph in a cage.
Summary:
Gitanjali Gems promoter Mehul Choksi began the process of selling all the company's properties and move outside India after he learnt that PNB lodged a complaint, the ED alleged.
Summary:
England defeated Colombia 4-3 on penalties in the Round of 16 on Tuesday to reach the FIFA World Cup quarter-finals for the ninth time.
Summary:
The ICC Hall of Fame, which recognises the achievements of cricketing legends, has five Indians but is yet to induct international cricket's highest run-scorer Sachin Tendulkar.
Summary:
KL Rahul slammed a 53-ball hundred to help India defeat England in the first T20I on Tuesday and register their seventh consecutive T20I victory.
Summary:
Kohli overtook ex-New Zealand captain Brendon McCullum, who reached the landmark in his 66th innings.
Summary:
Ayesha Takia's husband Farhan Azmi has alleged his wife, mother and pregnant sister are being harassed by a litigant in an ongoing case.
Summary:
The world's most valuable company, Apple, has a market cap of $917 billion, about 10% more than Amazon.
Summary:
The longest total lunar eclipse of 21st century will occur on July 27 and will be visible in its entirety from all parts of India.
Summary:
Mumbai's local train driver Chandrashekhar Sawant who stopped a train 55 metres away from the overbridge that collapsed on Tuesday will be awarded â¹5 lakh, Railway Minister Piyush Goyal said.
Summary:
Union Health and Family Welfare Minister JP Nadda has confirmed that fruit bats are the source of the Nipah virus infection, which killed 17 people in Kerala.
Summary:
Environmental group Greenpeace's activists crashed a Superman-shaped drone into a French nuclear plant's spent-fuel pool building to highlight drawbacks in security.
Summary:
President Donald Trump on Tuesday credited himself for preventing a war between the US and North Korea, adding that conversations with the east Asian nation were "going well".
All of Asia is thrilled," Trump tweeted.
Summary:
Harry Potter series author JK Rowling posted a series of tweets trolling US President Donald Trump after he misspelt 'pore' as 'pour' and also claimed himself as a best-selling author in the same tweet.
Summary:
Comedian Krushna Abhishek, the nephew of Govinda, has said that his wife Kashmera Shah is at fault and must apologise to Govinda's wife Sunita Ahuja.
Summary:
It only pushes us to do better work.
Summary:
Saif Ali Khan has revealed he will be a part of 'Go Goa Gone 2' and will be playing the same role of 'Boris' as he did in the 2013 film 'Go Goa Gone'.
Summary:
Wimbledon has a longstanding British tradition of eating strawberry and cream, which is thought to have begun during the Victorian times.
Summary:
Belgian defender Jan Vertonghen scored with a header from a distance of 18.6 metres against Japan in 2018 FIFA World Cup's Round of 16 on Monday to register the longest headed World Cup goal in recorded history.
Summary:
ICC has decided to hand stricter bans for ball tampering, upgrading it to a Level 3 offence, following the two instances of ball tampering by Australian and Sri Lankan cricketers.
Summary:
Wishing Indian off-spinner Harbhajan Singh on the occasion of his 38th birthday, former cricketer Virender Sehwag tweeted, "The chutney to our Bhajji and the life of all places, wishing @harbhajan_singh a very very Happy Birthday.
Summary:
Following Japan's knockout from the FIFA World Cup by Belgium, Billionaire Anand Mahindra tweeted that he felt Mumbai skies were "weeping for Japan".
Summary:
Ride-hailing startup Uber is planning to launch its cheapest cab service 'Express Pool' in India.
Summary:
India had earlier slammed Pakistan for its repeated reference to Jammu and Kashmir, saying it is an inalienable part of India.
Summary:
A 50-year-old man was found dead in a room in the MLA hostel in Maharashtra's Nagpur, a day before the monsoon session starting on Wednesday.
Summary:
The US has asked countries to cut their oil imports from Iran to zero by November or else they would be subject to US sanctions.
Summary:
China also warned citizens about the expensive medical services in the US and urged them to purchase health insurance beforehand.
Summary:
The government is expected to raise the Minimum Support Price (MSP) for paddy by â¹200 to â¹1,750 per quintal, reports said.
Summary:
Mehul Choksi's brother Chetan Choksi visited Gitanjali Ventures office in UAE in February to "put pressure on staff" to handover jewellery worth â¹110 crore, according to Enforcement Directorate.
Summary:
Sweden defeated Switzerland 1-0 on Tuesday to reach the FIFA World Cup quarter-finals for the first time since the 1994 edition.
Summary:
When asked about his personal security during road shows, PM Narendra Modi said, "I am not a Shahenshah or an imperious ruler who is unaffected by their (people's) warmth".
Summary:
A bus owned by a private tour operator plying in Kerala features sketches of ex-adult stars Mia Khalifa and Sunny Leone, among others, on its exterior.
Summary:
Holding actor Rajinikanth's wife Latha personally liable, the Supreme Court has warned her over the non-payment of dues to a private company which financed Kochadaiiyaan and said she may have to face trial.
Summary:
Actress Mallika Sherawat has revealed she was thrown out of projects as she refused to get intimate with actors offscreen.
Summary:
Uttara Pant Bahuguna, the teacher who was suspended by Uttarakhand CM after she argued with him over her transfer, has claimed she was approached by reality TV show Bigg Boss' makers.
Bahuguna had demanded a transfer to Dehradun on personal grounds.
Summary:
Nigerian captain John Obi Mikel has revealed he played against Argentina in the 2018 FIFA World Cup last week despite knowing his father was kidnapped.
Summary:
After former India captain Rahul Dravid was inducted into ICC's Hall of Fame, Dravid's teammate Sachin Tendulkar tweeted, "The wall is finally in the HALL." Dravid became the fifth Indian to be inducted in the list, after Bishan Singh Bedi, Sunil Gavaskar, Kapil Dev and Anil Kumble.
Summary:
Australian captain Aaron Finch and D'Arcy Short recorded the first-ever 200-run stand in T20I cricket, in the 683rd T20I against Zimbabwe on Tuesday.
Summary:
While Facebook Messenger is second most downloaded iOS app of all time, Google's YouTube is ranked third on the list.
Summary:
The former Chief Operating Officer of MakeMyTrip (online), Mohit Gupta was on Tuesday appointed as the CEO of Zomato's food delivery business.
Summary:
Following the deteriorating law and order situation, people in the Northern province were wishing for the LTTE's return, she added.
Summary:
Sri Lanka formally handed over the port to China in December last year.
Summary:
Wilson did not report about the abuse of two altar boys by a paedophile priest in the 1970s.
Summary:
Earlier, synthetic diamonds estimated to be worth â¹1.06 crore, which were seized from Choksi's firm, were reportedly valued at â¹10 lakh.
Summary:
Axis Bank Managing Director and CEO Shikha Sharma's remuneration for the last fiscal fell nearly 16% to â¹4.83 crore.
Summary:
Ranbir Kapoor on Monday made a video call to Vicky Kaushal, from the success party of 'Sanju', to include Vicky in the celebrations as he could not attend the party.
Summary:
Actress Kim Sharma, who has been accused of assaulting her former maid, has denied the claim.
Summary:
Directed by filmmaker Amjad Khan, the film also stars Divya Dutta who plays Malala's mother.
Summary:
Nawazuddin Siddiqui will reportedly play the role of Ranveer Singh's coach in Kabir Khan's upcoming film '83'.
Summary:
After Russia knocked Spain out of the FIFA World Cup 2018, England's former cricket captain Michael Vaughan tweeted, "Is Mr Putin operating VAR !?" Another user tweeted a photo of Putin looking at a screen, with the caption, "VAR referee in Moscow sees no Spanish penalty #sparus".
Summary:
Yuki Bhambri, India's only singles player at the Wimbledon 2018, will pocket around â¹35 lakh after losing in the first round of the tournament on Monday.
Summary:
New Zealand's Kane Williamson held the previous record, scoring 70% of NZ's 60 in a T20I against SL.
Summary:
Anthony Levandowski, the former Google engineer accused in the trade secrets lawsuit between Uber and Waymo, is working with a self-driving trucking startup, Kache.ai.
Summary:
The image has captured three separate clusters of galaxies merging into a single massive cluster.
Summary:
Mihir, as per the doctors, is the world's heaviest teen to undergo a gastric bypass surgery.
Summary:
While Singh called it "absolutely wrong", Gadkari said, "This is very unfortunate.
Summary:
A wedding planner from Madhya Pradesh's Bhopal, Hamid Khan has remodelled a car, which he claims was originally a Rolls-Royce, into a carriage to give rides to couples on their wedding.
Summary:
Summary:
On the 18th anniversary of 'Kyunki Saas Bhi Kabhi Bahu Thi', Union Minister and the show's then lead actress Smriti Irani posted a picture on Instagram, thanking producer Ekta Kapoor.
Summary:
Clarifying that he no longer takes drugs, Ranbir further said, "I am addicted to nicotine now and it's worse than drugs."
Summary:
Rabiot, a 'psychic' octopus that correctly predicted Japan would win against Colombia, draw with Senegal and lose to Poland in World Cup has been killed and sold to market.
Summary:
More than 23,000 people took part in the six-month-long weaving process of the krama scarf.
Summary:
India's Sameer Verma also entered the second round of the tournament.
Summary:
Major General Dogra completed the triathlon in 14 hours and 21 minutes to earn the 'Ironman' title.
Summary:
Bihar minister and Lalu Prasad Yadav's son Tej Pratap on Monday claimed his Facebook account was hacked after a threat to quit politics was shared on his verified profile.
Summary:
The Congress party on Monday took out a rally in Hyderabad demanding that the TRS-led Telangana government fulfil its poll promise of 12% reservation for the Muslim community.
Summary:
After Tesla announced it has achieved the milestone of producing 7,000 cars a week, Ford's Europe CEO Steven Armstrong trolled Tesla CEO Elon Musk on Monday by tweeting "7000 cars, circa 4 hours".
Summary:
A 4-year-old girl was allegedly gangraped by four minors aged between 6-10 years in Uttar Pradesh's Kanpur on June 30, police said on Tuesday.
Summary:
A viral video of a rally by the Muslim community allegedly seeking the release of the man accused of raping an 8-year-old girl in Madhya Pradesh's Mandsaur was found to be fake.
Summary:
China has lent $1 billion to Pakistan despite it being placed on the FATF 'grey list' for financing terror on its soil.
Summary:
Actress Kangana Ranaut and actor Rajkummar Rao, in a video, have announced the release date of their upcoming film 'Mental Hai Kya' as February 22, 2019.
Summary:
Janhvi Kapoor has revealed that she had deleted all her photos before making her Instagram account public.
Summary:
Charles had proposed to Felicity in May last year.
Summary:
Argentine legend Diego Maradona has said he'd like to coach Lionel Messi-led Argentina for free, after the team crashed out of 2018 FIFA World Cup in Round of 16.
Summary:
Chinese smartphone maker Huawei has patented a smartwatch that can store a pair of wireless earbuds.
Summary:
They claimed that the issue affected Samsung Messages following a mobile network T-Mobile update for advanced messaging between carriers.
Summary:
Uber rival Lyft has acquired Motivate, the largest bike-sharing company in the US for a reported sum of $250 million.
Summary:
Elon Musk-led Tesla's Senior Vice President of Engineering Doug Field has left the electric car-making company.
Field, who previously worked at Apple and Segway, joined Tesla in 2013 to develop the company's next-generation electric vehicles.
Summary:
The Jammu and Kashmir police on Monday registered a case after drivers from a local taxi union allegedly created fake stories about attacks on Amarnath pilgrims and shared it on social media.
Summary:
The Delhi High Court on Tuesday fined JNU students' union office bearers â¹2,000 each for "wilful disobedience" of its 2017 orders not to hold protests within 100 metres of the administrative block.
Summary:
Mumbai University has announced that students who missed their exams on Tuesday due to the rains will be allowed to give them later.
Summary:
Leading stock exchange BSE will delist 222 companies from July 4 as trading in their shares has remained suspended for over six months.
Summary:
In one instance, a third-party bottler allegedly paid an official â¹10 lakh to approve product registration.
Summary:
Finch and D'Arcy Short shared a 223-run opening stand, which is the highest-ever partnership for any wicket in T20Is.
Summary:
The girl was abducted from her school and the duo raped her, slit her throat and left her for dead.
Summary:
The driver of a local train that was approaching Mumbai's Andheri station applied emergency brakes, stopping the train 55 metres away from the bridge that collapsed on Tuesday morning.
Summary:
The owners and occupants have been asked to remove all the illegal constructions and restore the original structure.
we'll demolish the illegal construction," an official said.
Summary:
Japan, who exited from the World Cup in the Round of 16 for the third time in history, wrote "Spasibo" in Russian, meaning "thank you".
Summary:
Digital payments and e-commerce startup Paytm has bought Delhi-based last minute hotel booking app NightStay Travels for reportedly â¹130 crore in a cash and equity deal.
Summary:
Two policemen in Punjab have been dismissed for allegedly luring girls into drugs.
Summary:
The police has charged an Israeli man with culpable homicide not amounting to murder after his girlfriend suffocated to death during sexual intercourse at a hotel in Mumbai.
Summary:
A food delivery boy, who was the last person to see the 11-member family in Delhi's Burari alive, has said, "Everything was normal." He revealed that the family had placed an order for 20 rotis at 10:30 pm and he delivered it at 10:45 pm.
Summary:
Out of the stranded Indians, at least 290 are reported to be from Karnataka.n
Summary:
The wife of Saudi blogger Raif Badawi, who has been jailed by the kingdom for "insulting Islam", has urged Ontario's Premier Doug Ford to ban burqa in the Canadian province.
"Nowhere in Islam is a woman required to cover her face.
Summary:
Established in 1875, Ochanomizu University is Japan's first institution of higher education for women.
Summary:
The Supreme Court on Tuesday refused to grant a temporary stay on RBI's banking restriction on cryptocurrencies.
Summary:
Sanjay Dutt, who'll be seen playing a gangster in an upcoming film 'Saheb, Biwi Aur Gangster 3', has said being a gangster comes naturally to him and he has been to jail too.
Summary:
Sushant Singh Rajput, who'll be seen with Sara Ali Khan in Abhishek Kapoor's 'Kedarnath', has said Sara knows her craft well and is confident "about her way ahead".
Summary:
Switzerland's Roger Federer gave his new headband to a young girl who held up a banner as he was signing autographs after winning his first round match at Wimbledon on Monday.
Summary:
Switzerland's Roger Federer ended his decades-long partnership with Nike, thereby losing his 'RF' logo to the company.
Talking about his clothing logo, Federer said, "The RF logo is with Nike at the moment, but it will come to me at some point.
Summary:
Facebook also said, "We regularly review our apps to assess which ones people value most."
Summary:
A Buddhist temple in China has employed a robot monk 'Xian'er' to chant mantras and answer questions about faith.
Summary:
Google allowed third-party apps to read the emails of millions of Gmail users, according to The Wall Street Journal report.
Summary:
Amid media speculation about a PDP-Congress alliance in J&K, BJP leader Subramanian Swamy on Tuesday said the alliance is "bad as both are pro-terrorist".
Summary:
Members of Shiromani Akali Dal (SAD) and Shiromani Gurdwara Parbandhak Committee (SGPC) staged a protest in Delhi against the suicide attack in Afghanistan that killed at least 19 people, including 10 Sikhs.
Summary:
The Supreme Court on Tuesday said it is the responsibility of states to ensure that cow vigilantism incidents don't occur.
Summary:
A BEST double-decker bus on Tuesday crashed into an overhead guardrail while on its way from Bandra to Santacruz's Kalina area.
Summary:
Ahead of the monsoon session of the Maharashtra legislature, the Public Works Department (PWD) has decided to hire 10 snake catchers to protect MLAs. The snake catchers will monitor Raj Bhavan, the CM's official bungalow, ministers' cottages, Ravi Bhavan Circuit House, Nag Bhavan, Hyderabad House, and MLA hostel.
Summary:
Crimea will not be on the agenda at the upcoming summit between US President Donald Trump and his Russian counterpart Vladimir Putin, Russian spokesperson Dmitry Peskov said.
Summary:
Union Minister Nitin Gadkari has said that he would be "sad" if a private person buys the iconic Air India building in Mumbai.
Summary:
She claimed that Mimoh had promised her he would convince his parents for their marriage.
Summary:
Actress Kangana Ranaut has revealed that she was subjected to physical violence and exploitation when she was a minor.
"I wouldn't want anyone to go through physical abuse," she added.
Summary:
The bug, active between May 29 and June 5, let people in affected users' block list see things posted to a wider audience.
Summary:
She is survived by the erstwhile ruler of Marwar Gaj Singh and two daughters Chandresh Kumari and Shailesh Kumari.
Summary:
However, Iranian meteorological service chief Ahad Vazife rebuked the claim, saying it is not possible for one country to steal another country's clouds.
Summary:
The new charges are punishable by a minimum sentence of 10 years and a maximum of life imprisonment.
Summary:
A user on Twitter recently requested External Affairs Minister Sushma Swaraj to block her, saying she was "once a fan" of the minister.
Swaraj replied to her tweet saying, "Intezaar kyon ?
Summary:
A part of a Road Over Bridge collapsed onto the rail tracks at a station in Mumbai's Andheri on Tuesday morning, injuring at least five people.
Summary:
A prisoner in Luksar jail in Uttar Pradesh has written to PM Narendra Modi seeking permission to sell his kidney for the legal expenses required to fight his case.
Summary:
Despite a nearly decade-old resolution to publicly disclose details of assets owned by Supreme Court judges, details of only 12 out of 23 apex court judges are available on the court's website.
Summary:
The Rajasthan government has launched a scheme to provide milk thrice a week to 62 lakh students in government schools and madrassas.
Summary:
Former Malaysian Prime Minister Najib Razak was on Tuesday arrested by anti-corruption investigators over his links to misappropriation of $4.5 billion from the state-run 1MDB wealth fund, which was set up to promote economic development.
Summary:
Summary:
Britain on Monday unveiled an action plan to tackle discrimination against the gay community, which includes bringing forward a legislation to ban the practice of conversion therapy.
Summary:
The prize money for Wimbledon this year is ã34 million (â¹307 crore), with singles champions receiving ã2.25 million each.
Summary:
Colombian fan Cesar Daza helps his deaf and blind friend Jose Richard Gallego enjoy the FIFA World Cup 2018 matches by recreating the passes by hand movement on a scaled miniature football pitch board.
Summary:
Thirteen players were ejected with the match continuing with just three Philippines players.
The match later got abandoned as two more Philippines players got fouled out.
Summary:
Earlier, Bawalia had expressed his displeasure to Congress President Rahul Gandhi about the Congress' functioning in the state under the young leadership.
Summary:
Talking about plans for an initial public offering (IPO), insurance startup PolicyBazaar's Co-founder Yashish Dahiya said, "It is not appropriate to take it public yet." He also said that if the startup is going into healthcare venture with a lot of investment, then it is too early.
Summary:
According to the startup, Sunder will be responsible for Swiggy's operating units and strategic direction and priorities, effective immediately.
Summary:
Uttar Pradesh CM Yogi Adityanath on Monday said, "We accepted Ram Rajya as the best example of governance.
Summary:
Former Navy chief Admiral JG Nadkarni passed away on Monday at the age of 86 after battling thyroid cancer.
Summary:
Congress MP Shashi Tharoor on Tuesday moved the Patiala House Court in Delhi seeking anticipatory bail in his wife Sunanda Pushkar's death case, days before he is to appear as an accused in the court.
Summary:
The Supreme Court has issued a notice to the Centre to respond to a plea challenging a change in law allowing political parties to accept foreign funding.
Summary:
The Maharashtra State Commission for Women has decided to install sanitary pad vending machines in nine prisons in the state.
Summary:
US Secretary of State Mike Pompeo will make his third visit to North Korea this week "to continue the ongoing and important work of denuclearisation on the Korean Peninsula", the White House has said.
Summary:
A woman who was declared dead after a car crash in South Africa is recovering in hospital after being found alive in a mortuary fridge.
Summary:
He added, "When Arbaaz (Khan) was summoned (IPL betting case), I had to attend the Race 3 press conference".
Summary:
The National Advisor Bureau Limited of the UAE has proposed to tow icebergs from Antarctica to use them as new sources of water in the Middle East.
Summary:
A 28-year-old man has been accused of raping a 4-year-old girl in Madhya Pradesh's Satna district on Sunday.
The man took away the child while she was asleep in her home's courtyard and raped her.
Summary:
The rescue of a football team of twelve boys and their coach who were found alive in a cave in Thailand after nine days could take months, the Thai military has warned.
Summary:
French luxury food brand 'Laduree' reportedly served the guests at the party.
Summary:
Actress Mallika Sherawat, while talking about her experience of being stalked and harassed, revealed, "There was this mad stalker, he tried to shoot me." "The cops caught him.
Mallika further said knowing a little bit of self-defence can help people go a long way.
Summary:
However, the child in the video is Marco Antonio, a seven-year-old from Brazil whose videos while playing football went viral last year.
Summary:
After Congress leader Shashi Tharoor tweeted that PM Narendra Modi's fitness video cost â¹35 lakh, union minister Rajyavardhan Rathore clarified that no money was spent.
Summary:
Scientists using one of the world's most powerful planet-hunting instruments at Chile's Very Large Telescope (VLT) have captured the first-ever image of a planet being born approximately 370 light-years from Earth.
Summary:
A poverty-stricken farmer in Uttar Pradesh's Badagaon village has been tilling his land while his daughters pull the plough, claiming they didn't have money to hire a tractor or buy oxen.
Summary:
Delhi CM Arvind Kejriwal and the Dalai Lama on Monday launched a 'Happiness Curriculum' for students studying in Class Nursery to Class 8 in government schools.
Summary:
Lalit Bhatia, one of the 11 people who were found hanging in their home in Delhi's Burari area, used to perform 'rituals' on the directions of his dead father, according to reports.
Summary:
Delhi Police on Monday launched a manhunt for a tantrik named Baba Janegadi in connection with the death of a family of 11 in Burari.
Summary:
One of the eight people accused in the Kathua rape case, who had claimed he was a juvenile, is above 20 years of age, according to his medical report submitted in court during the case's hearing.
Summary:
A Delhi-based woman who petitioned against 'Nikah Halala' in the Supreme Court has claimed that she was threatened to withdraw her plea.
Summary:
Following his visit to refugee camps for Rohingya Muslims in Bangladesh, UN Secretary-General Antonio Guterres on Monday said that they were facing a "humanitarian and human rights nightmare".
Summary:
The tournament's inaugural edition, which saw participation from 22 players, made a profit of ã10, with which the pony roller was repaired.
Summary:
HUL has reportedly accepted out-of-court settlements in many cases and also sought damages of â¹2-10 lakh.
Summary:
Switzerland's Roger Federer began the pursuit of a record-extending ninth Wimbledon title with straight-sets win over Serbia's Dusan Lajovic in the first round on Monday.
Summary:
Indian all-rounder Hardik Pandya posted a video of him and batsman Shikhar Dhawan dancing in a washroom in Manchester, where they will play the first T20I against England on Tuesday.
We love dancing & singing," read the post's caption.
Summary:
Researchers at the California Institute of Technology have developed an artificial intelligence (AI) tool which can predict a human's IQ by looking at their brain scans.
Summary:
However, in his tweet, Tharoor misspelt â¹35 lakh as 35 lambs.
Summary:
Former Jammu and Kashmir CM Mehbooba Mufti on Monday called media speculation about a possible PDP-Congress alliance in the state as "fake news" and "utter fabrication".
Summary:
Rajasthan Health Minister Kalicharan Saraf was allegedly caught on tape telling an employee that those who do not have an 'approach' will be removed from the transfer list as they are considered a weak link.
Summary:
Former Punjab Director General of Police (DGP) Shashi Kant has called CM Captain Amarinder Singh's recommendation for the death penalty to convicted drug peddlers and smugglers "a waste of time".
Summary:
Singh said that Saudi Arabia alone can cover most of the world's supply shortfall in case Iran's oil exports stop.
Summary:
The monthly transactions through the Unified Payments Interface (UPI) jumped to 246.37 million in June, a 30% increase from 189.5 million transactions in May. The value of the transactions recorded a 22.6% growth at about â¹40,834 crore.
Summary:
The complainant alleged that Mimoh spiked her drink and raped her.
Summary:
Five-time champions Brazil defeated Mexico on Monday to reach the quarter-finals of FIFA World Cup for the seventh straight edition.
Summary:
Belgium scored in the 94th minute (injury time) to register a 3-2 comeback win against Japan to enter the FIFA World Cup quarter-finals for the second straight time.
Summary:
The autopsies on all 11 members of a family found dead in Delhi's Burari was conducted at Lok Nayak Jai Prakash Narayan Hospital on Monday.
Summary:
A 20-year-old Lionel Messi fan in West Bengal committed suicide by hanging himself after Argentina crashed out of 2018 FIFA World Cup in Round of 16.
Summary:
Brazil, who won the match 2-0, have now scored 228 goals in 108 World Cup matches.
Summary:
All 12 boys and their football coach have been found alive nine days after being trapped in a Thai cave.
Summary:
Elon Musk's space startup SpaceX's Dragon cargo ship on Monday delivered nearly 3 tonnes of supplies including a batch of Death Wish Coffee dubbed as the 'world's strongest coffee' to International Space Station (ISS).
Summary:
A businessman in West Bengal's Bakharpur village allegedly recorded a video of his neighbour while she was in the bathroom and uploaded it on Facebook.
Summary:
The Railways has announced that it will replace the face towels offered in AC coaches with smaller disposable napkins.
Summary:
The bodies of the other 10 members were found hanging.
Summary:
The police has filed a case of rape and molestation against four priests in Kerala after a woman's husband alleged that they sexually abused her by blackmailing her using her confessions.
Summary:
The Islamic State has claimed responsibility for a suicide bombing in eastern Afghanistan that killed at least 19 people, mostly Sikhs and Hindus.
Summary:
State-run insurer LIC has lost money in 18 out of 21 public sector bank investments in the last 2.5 years, as per a report.
Summary:
US-based Atlantic Media's business news website Quartz has been sold to Japan's Uzabase for a price between $75 million and $110 million, depending on the financial performance.
Summary:
Sachin took the selfie at the pre-engagement ceremony of Reliance Industries Chairman Mukesh Ambani's son Akash Ambani.
Summary:
A police complaint has been filed against John Abraham's upcoming film 'Satyameva Jayate' by BJP Minority Morcha's city general secretary Syed Ali Jaffry for hurting religious sentiments.
Summary:
The Dubai Government allowed the theatres to remain open for 24 hours on Friday and Saturday for the screening of 'Sanju', as per reports.
Summary:
"It was heartening to see that thousands of you refused to watch the film illegally," he wrote.
My most heartfelt thanks for speaking up," he further wrote.
Summary:
Singer Beyoncé with rapper husband Jay-Z suffered a stage malfunction during their 'On The Run II' tour at a concert in Warsaw, Poland.
Summary:
Ranveer Singh on Monday took to Instagram to share a caricature of his character in Rohit Shetty's upcoming film 'Simmba' and captioned it, "Aala Re Aala #Simmba Aala!" He will play a cop in the film which is a remake of Telugu action film 'Temper'.
Summary:
After Spain crashed out of the 2018 FIFA World Cup in the Round of 16, captain Sergio Ramos said that he will play the 2022 World Cup in Qatar at the age of 36 with a "white beard".
Summary:
Smartphone maker HTC plans to lay off 25% of its workforce, a decision which would affect 1,500 employees at its manufacturing unit in Taiwan.
Summary:
RJD leader Tej Pratap Yadav on Sunday said he wants to put up a 'no entry' sign for Bihar CM Nitish Kumar outside the residence allotted to his mother and former CM Rabri Devi.
Summary:
Online bra startup Harper Wilde has raised $2 million in a seed round to build its workforce, the startup said.
Summary:
Talking about the recent banking scandals in India, President Ram Nath Kovind on Sunday said that white collar crimes don't leave behind a "smoking gun", but "broken hearts and a shaken confidence".
Summary:
India's seafood exports crossed $7-billion mark for the first time in 2017-18, with frozen shrimp and fish continuing to be the flagship export items.
Summary:
The Gujjars were seeking 5% reservation within OBC quota to not violate the 50% Supreme Court-mandated cap.
Summary:
A video showing actor Shah Rukh Khan teasing Reliance Industries Chairman Mukesh Ambani's younger son Anant Ambani with his rumoured girlfriend Radhika Merchant at Akash Ambani's engagement has surfaced online.
In the video, Shah Rukh can be heard asking Anant to rate Radhika's performance.
Summary:
Singer Ankit Tiwari's brother Ankur Tiwari, while talking about his father being assaulted by Vinod Kambli and his wife, said, "It's quite shocking to see this kind of behaviour from a cricketer who represented our nation." "When we went to intervene Kambli pushed us around," he added.
Summary:
Shah Rukh Khan and Zubin Irani have been friends since childhood.
Summary:
Every single player left in 2018 FIFA World Cup has never won the quadrennial tournament and has never even featured in a final.
Summary:
Pakistani all-rounder Shoaib Malik became the first-ever cricketer to play 100 matches in T20I cricket, achieving the feat against Australia on Monday.
Summary:
Congress leader Shashi Tharoor on Monday tweeted a poem on media after he accepted a friend's challenge to find a rhyme for the word 'prurient'.
Summary:
Punjab Chief Minister Captain Amarinder Singh on Monday announced that the government has decided to seek death penalty for drug peddling and smuggling.
Summary:
Dutta, a divorcee, was depressed for quite some time after being detected with blood cancer, his friends said.
Summary:
PM Narendra Modi has condemned the Afghanistan suicide explosion, which killed at least 20 people including 10 Sikhs.
Summary:
Unidentified gunmen beheaded three men and torched a boys' school in Afghanistan's Nangarhar province last week, in an attack officials claimed was carried out by the Islamic State.
Summary:
The Interpol's Red Corner Notice, issued at the request of a member country, is a request to locate and provisionally arrest an individual pending extradition.
Summary:
nThe Income Tax Department has launched an 'instant' Aadhaar-based PAN allotment service for individuals seeking the unique identification number for the first time.
Summary:
Summary:
Dia Mirza has said Rajkumar Hirani hasn't let "success get to his head".
Dia, who starred in Hirani's 2006 film 'Lage Raho Munna Bhai', also stars in his latest film 'Sanju'.
Summary:
He further said that a film franchise never has the same character or story in continuation which is unfair.
Summary:
Pictures showing actress Kangana Ranaut on the sets of her upcoming film 'Mental Hai Kya' have surfaced online.
Summary:
Anil Kapoor has said that his children Sonam Kapoor, Rhea Kapoor and Harshvardhan Kapoor are trying to do something new and out-of-the-box.
Summary:
Defender Mathias Jørgensen on Sunday scored the quickest goal of 2018 FIFA World Cup, after helping Denmark lead against Croatia in the Round of 16 match after just 57 seconds.
Summary:
As many as 54,250 fluorescent-yellow tennis balls are used at the Wimbledon Championships every year.
Summary:
Talking about his career's most embarrassing memory, Swiss tennis star Roger Federer revealed that he once wore his pants backwards while dressing up to lift the Wimbledon title.
Summary:
With this, Pakistan's eight-match winning streak in T20I cricket also ended.
Summary:
Responding to concerns raised over the mic recording patent, Facebook has said it won't use the technology in any of its products.
Summary:
Global digital payments company PayPal, co-founded by Elon Musk, plans to hire 600 techies in India by December 2018.
Summary:
Founded in 2015, the startup specialises in different types of Biryani, cooked fresh for every order.
Summary:
He further slammed the BJP for not defending Swaraj, adding that the party supports trolling on social media.
Summary:
Prime Minister Narendra Modi has said the government has done what it had to with "utmost sincerity" for national carrier Air India.
Summary:
The footage also shows Andrea having an altercation with Tiwari's father.
Summary:
Singer-composer Shankar Mahadevan took to Twitter to share a video of a daily wage labourer singing his Tamil song 'Unnai Kaanadhu Naan' from Kamal Haasan's 'Vishwaroopam'.
Shankar's tweet also read, "It just makes me feel so...proud of our country that produces so much talent."
Summary:
TV anchor Rajat Sharma, known for his show 'Aap Ki Adalat', has been elected as President of Delhi and District Cricket Association (DDCA) after winning over 54% of the total votes cast.
Summary:
Facebook's Co-founder Chris Hughes has said that Facebook has a lot of responsibilities but it has failed its users on democracy and privacy issues.
Summary:
After Tesla completed its goal of producing 5,000 Model 3 cars in a week, CEO Elon Musk wrote "I think we just became a real car company" in an email to his employees.
Summary:
Tesla also met its Model 3 car's production goal of making 5,000 cars a week on Sunday, a goal that Musk initially planned to meet by the end of 2017.
Summary:
The Congress-JD(S) coalition coordination committee in Karnataka has approved a loan waiver for farmers in the state and CM HD Kumaraswamy will announce the details of the scheme during the state budget presentation on Thursday.
Summary:
After a video of his son thrashing a man circulated online, Rajasthan BJP MLA Dhan Singh Rawat said people should not make a mountain out of a molehill, adding, "It is a matter related to children.
Summary:
Notably, Halili's name surfaced on list of officials allegedly linked to narcotics released by President Rodrigo Duterte.
Summary:
India's manufacturing activity in June expanded at its fastest pace in the last seven months.
Summary:
Future Group Founder and CEO Kishore Biyani's daughter Avni Biyani reportedly got engaged to New York banker Rahul Jain a few days ago.
Summary:
Anil Kapoor shared a post for daughter Sonam Kapoor captioning it, "Your hard work, commitment...has resulted in 8 hits in a row!
Summary:
The 20-time Grand Slam champion faces DuÃ
¡an Lajoviàin 2018 Wimbledon's first round today.
Summary:
Russian goalkeeper Igor Akinfeev saved Spanish forward Iago Aspas' penalty kick with his foot during the shootout to knock Spain out of the 2018 FIFA World Cup on Sunday.
Summary:
After 2010 champions Spain crashed out, FIFA World Cup is set to have a fresh team in the tournament's final after a gap of around 50 years.
Summary:
India's women's T20I team captain Harmanpreet Kaur could lose her post as the DSP in Punjab Police after a police verification reportedly found her graduation degree to be fake.
Summary:
Pakistani batsman Shoaib Malik has beaten Indian captain Virat Kohli to reach 2,000 runs in T20Is and has become the third-highest run-scorer in the T20I format.
Summary:
Zlatan, who signed for LA Galaxy from Manchester United, did not come out of retirement to join the Sweden squad for the FIFA World Cup 2018.
Summary:
Google's parent company Alphabet is reportedly investing in US-based electric scooter startup Lime as part of a larger $300 million funding round that already included Google Ventures.
Summary:
Users can add the questions and their followers can then tap into the text box and respond with whatever they like.
Summary:
Over a dozen Android apps designed to commit billing fraud have infected at least 50,000 devices, allowing hackers to steal money from users, according to McAfee.
Summary:
Speaking about the Opposition's plan to unitedly contest the 2019 elections, Shiv Sena said the Opposition cannot unite without Congress' support as it is the only party which enjoys national acceptance.
Summary:
Days after BJP leaders criticised former PM Indira Gandhi on the Emergency's 43rd anniversary, senior Shiv Sena leader Sanjay Raut has said her contribution cannot be ignored because of her one decision.
Summary:
US-based retail giant Walmart has pushed the deadline of acquiring homegrown e-commerce major Flipkart for further three months to June 2019.
Summary:
The NCERT has released a manual for guiding schools to ensure that they are sensitive to the needs of students from minority communities.
Summary:
Speeches made by murdered journalist Gauri Lankesh, especially where she speaks against Hindutva, were used to provoke main accused Parashuram Waghmore into murdering her, SIT officials reportedly said.
Summary:
This is reportedly the first time the scheme is being implemented for Class 11 and 12 students.
Summary:
The National Green Tribunal (NGT) has directed NBCC (India) Limited and Central Public Works Department (CPWD) not to cut any trees for the development projects in Delhi's seven colonies till July 19.
Summary:
Another note said the family should "carry the act only on a Thursday or a Sunday" and use "dim light".
Summary:
By earning â¹46.71 crore on its third day, Ranbir Kapoor's 'Sanju' beat the record set by the Hindi version of 'Baahubali 2' to collect the highest single day earnings for a Hindi film.
Summary:
Nita Ambani and Isha Ambani can also be seen dancing along with the actors.
Summary:
Indian left-arm pacer Shrikant Wagh picked up all 10 wickets for his side Stokesley Cricket Club in English domestic cricket.
Summary:
A police trainee in Madhya Pradesh's Umaria was arrested after he sat in the judge's chair in a courtroom and clicked selfies.
Summary:
The family was religious and always wanted to help others, the friend added.
Summary:
An RTI activist, Valmiki Yadav, and his friend were shot dead by bike-borne assailants on Sunday night in Bihar's Jamui.
Summary:
The house in Delhi's Burari area, where 11 people of a family were found dead, has 11 pipes coming out of the wall near the entrance.
Summary:
The only Sikh politician in the fray in Afghanistan's upcoming parliamentary elections was among 20 people killed in a suicide explosion in Jalalabad on Sunday.
Summary:
Several photos of Karachi's Ayaz Memon Motiwala, an independent candidate from Aam Admi Pakistan party, lying in a puddle of sewage water to ask for votes have gone viral.
Summary:
Andrés Manuel López Obrador has been elected as Mexico's President with over 53% of the vote, according to the country's electoral commission.
Summary:
US National Security Adviser John Bolton on Sunday said the country could dismantle North Korea's weapons of mass destruction within a year if there is full cooperation and disclosure from the east Asian nation.
Summary:
Trump had earlier claimed that the deal ended the nuclear threat posed by North Korea.
Summary:
Police officers in the US state of Georgia discovered a grow house with over â¹8-crore worth of marijuana while they were seeking to arrest a man on an unrelated charge.
Summary:
RJD patriarch Lalu Prasad Yadav's son Tej Pratap is reportedly building six-pack abs for his first Hindi movie 'Rudra- The Avatar' and training two hours each in morning and evening.
Summary:
Notably, Steyn has included six South African players in his extended list of 13 players.
Summary:
Swiss tennis star Roger Federer said that his long-standing rivalry with Spanish world number one Rafael Nadal is in some ways similar to that between football stars Lionel Messi and Cristiano Ronaldo.
Summary:
The device is expected to release later this year, as per reports.
Summary:
Amazon's Director of Operations for Home Services Brian Donato has quit the company after seven years to join an indoor farming startup, Bowery Farming.
Summary:
Notably, there is a complete liquor ban in Bihar, which was implemented in April 2016.
Summary:
The Supreme Court on Monday issued a notice to the Uttar Pradesh government over a plea alleging that several fake encounters have taken place in the state recently.
Summary:
The report Defence Minister Sitharaman was referring to had said India was "spitting blood" after being snubbed.
Summary:
A Jain organisation said there are several other options to increase farmers' income rather than sending livestock to slaughterhouses.
Summary:
Tata Steel's merger of its European operations with Germany's ThyssenKrupp to form a 50:50 joint venture will see around 4,000 job losses.
Summary:
Agarwal, whose Volcan Investments already owns 66.5% of Vedanta, intends to cancel the companyâÂÂs London listing.
Summary:
Each of the founders own about 30% of BitMEX, which is valued at $3.6 billion.
Summary:
The film, which earned â¹34.75 crore on its first day, also beat Salman Khan's 'Race 3' to become this year's highest opener.
Summary:
Kambli's wife said RK Tiwari "took advantage" of the crowd in the mall and deliberately brushed his hand against her.
Summary:
A case has been registered against former cricketer Vinod Kambli and his wife Andrea Hewitt for allegedly assaulting singer Ankit Tiwari's 59-year-old father RK Tiwari in a Mumbai mall on Sunday.
Kambli and Andrea claimed RK Tiwari deliberately "brushed his hand" against Andrea.
Summary:
The international organisation also named Nirav's brother and a co-accused in the scam, Nishal Modi in its notice.
Summary:
"We were supposed to leave at nine...I said, let's go," Shastri said.
He added that the local managers said, "Dada nahi aaya", to which he replied, "Dada ayega gadi mein.
Summary:
The AAP government will submit 10 lakh letters signed by Delhi residents on full statehood demand to PM Narendra Modi under the 'Dilli maange apna haq' campaign, CM Arvind Kejriwal has said.
Summary:
A pet dog named Jackie was the only survivor in the house in Delhi's Burari where 11 family members were found dead on Sunday.
Summary:
The police in Maharashtra's Malegaon on Sunday rescued a two-year-old child along with four others from a violent mob which was trying to lynch them on suspicion that they were child-lifters.
Summary:
The post-mortem report of six out of the 11 people of a family who were found dead at their home in Delhi on Sunday has revealed the cause of death as ligature hanging, without any signs of struggle.
Summary:
The Kancheepuram Central Cooperative Bank in Chennai refused to return a man's gold kept as collateral for loan, saying he has a balance of â¹1 on the loans that he took.
Summary:
A gangrape victim in Ahmedabad has claimed Joint Commissioner of Police (Crime) JK Bhatt told her that since a wood-like object was inserted into her body, it could not be termed rape.
Summary:
US National Security Adviser John Bolton on Sunday said Russian President Vladimir Putin has assured him that the country did not meddle in the 2016 US presidential polls.
Summary:
UK ministers took part in a secret exercise focused on 'D+1', the day after the Queen's death and the planned 10 days of mourning that would follow the monarch's passing, reports said.
Summary:
The incident comes amid concerns over excessive use of force by US police against black men.
Summary:
Ferrari's Kimi Raikkonen and Sebastian Vettel finished second and third in the race respectively.
Summary:
The 33-year-old, who joins the team Kobe Bryant played for, played in his eighth consecutive NBA finals last month.
Summary:
Spanish midfielder Andres Iniesta confirmed his retirement from international football after Spain got knocked out by Russia from the FIFA World Cup 2018 via a penalty shootout on Sunday.
Summary:
An investor claimed Zuckerberg's roles as CEO and Chairman mean he is "answerable to no one".
Summary:
Five-time Congress MLA Mainul Haque on Saturday decided to join TMC after taking permission from his supporters during a public rally in West Bengal's Murshidabad.
Summary:
A British woman police officer has been sacked for hurling racist slurs against the staff of an Indian restaurant in Newcastle.
Summary:
The first 'Khadi mall' of the country will be opened in Jharkhand soon, Chief Minister Raghubar Das announced on Sunday.
Summary:
The Directorate of Education (DoE) observed that a majority of such private vehicles operate illegally and pose a threat to the safety of children.
Summary:
The Archaeological Survey of India has started replacing wooden doors and windows of Delhi's Qutub Minar as the droppings of birds and bats, which enter the monument through the cracks, damage its stone.
Summary:
The CBI has booked over 300 unidentified members of Indigenous People's Front of Tripura (IPFT), including three party leaders, in connection to the killing of two journalists in the state last year.
Summary:
External Affairs Minister Sushma Swaraj on Sunday tweeted, "Criticism in decent language is always more effective." "In a democracy difference of opinion is but natural.
Summary:
Congress spokesperson Priyanka Chaturvedi on Sunday asked the Mumbai Police to take action against a Twitter user threatening to rape her daughter.
Summary:
Red Cross chief Peter Maurer has said that conditions in Myanmar's Rakhine State are not ready yet for the repatriation of over 7 lakh Rohingya Muslims who have fled to Bangladesh since August last year.
Summary:
Hosts Russia defeated one-time champions Spain 4-3 in 2018 FIFA World Cup's first penalty shootout on Sunday to reach the quarter-finals.
Summary:
After 11 members of a family were found dead in Delhi's Burari on Sunday, police said they recovered handwritten notes that "point towards observance of some definite spiritual/mystical practices by the whole family".
Summary:
FIFA has allowed teams to make a fourth substitution but only in extra time of knockouts during this edition.
Summary:
Croatia defeated Denmark 3-2 on penalties in the Round of 16 on Sunday to set up a FIFA World Cup quarter-final clash against hosts Russia.
Summary:
Adding that all 250 residents of Rainpada left the village after the incident, police said 15 residents were detained.
Summary:
The suicide bomber had struck a market near the provincial governor's compound where President Ashraf Ghani was holding meetings.
Summary:
He also said his grandfather Raj Kapoor never passed Class 10.
Summary:
An 89-carat yellow diamond worth â¹90 crore has been found in Lesotho's Mothae mine in Africa by mining company Lucapa from an unexplored area.
Summary:
This will be the first time since 1994 that an Indian football team will not take part in Asian Games.
Summary:
Former Team India captain Rahul Dravid has become the fifth Indian cricketer after Anil Kumble, Sunil Gavaskar, Bishan Singh Bedi and Kapil Dev to be inducted into the ICC Hall of Fame.
Summary:
It started raining heavily when the group had gathered for the cremation of the chairman of an agriculture cooperative society, police said.
Summary:
Lok Sabha MPs will be allowed to ask a maximum of five questions in the house per day from the upcoming Monsoon Session, a Lok Sabha Questions Cell bulletin has revealed.
Summary:
Under the landmark law, the use of threat or violence by a perpetrator won't be required for a rape conviction.
Summary:
A video of an Australian woman being dragged into water by a shark while she was feeding it on the back of a boat has surfaced online.
Summary:
Chowdhry will set off on a 35 km swim on Wednesday to raise funds for the British Asian Trust, a charity founded by Prince Charles.
Summary:
Summary:
Vicky Kaushal, who played the role of Sanjay Dutt's best friend in the biopic 'Sanju', has tweeted, "Learnt a lot, grew a lot...not only as an artist but as a human being as well." He further thanked his fans and wrote, "Overwhelmed, humbled and feel truly blessed.
Summary:
Priyanka Chopra attended her rumoured boyfriend, American singer Nick Jonas' concert at the VillaMix Festival in Brazil and shared a video of his performance on her Instagram story.
Summary:
The song, which has been composed by Vikram Montrose, shows Dutt and Ranbir interacting with each other.
Summary:
Katrina Kaif, who was recently offered a romantic comedy film opposite Aditya Roy Kapur, has refused to work with him, as per reports.
Summary:
Reacting to Lionel Messi and Cristiano Ronaldo crashing out of the 2018 FIFA World Cup on the same day, a user tweeted, "We've lost Messi & Ronaldo on the same day.
Summary:
Notably, Australia won the most editions (15) of the tournament while India failed to win a single Champions Trophy title.
Summary:
Using AI, it is capable of detecting glucose changes based on over 500 wave characteristics.
Summary:
After a man asked External Affairs Minister Sushma Swaraj's husband Swaraj Kaushal to "beat her" for "appeasing Muslims", Kaushal tweeted, "We adore her.
Summary:
Uttar Pradesh CM Yogi Adityanath has awarded â¹51,000 each to two Lucknow-based sisters for their sharp memory.
Summary:
Uttar Pradesh BJP MLA Brijesh Prajapati has accused Banda Superintendent of Police (SP) Shalini of inciting the sand mafia to murder him.
Summary:
A day after the insurance regulator approved LIC's proposal to buy up to 51% stake in IDBI Bank, the Congress and the Left parties on Saturday slammed the move.
Summary:
Canada's 21-year-old rapper Smoke Dawg reportedly died after multiple shots were fired outside Cube Nightclub in Toronto on Saturday.
Summary:
Chokri had filed a complaint against Sheeran with the Performing Rights Society (PRS) for allegedly copying the song from his track 'Oh Why'.
Summary:
Earlier, reports said Prernaa had not paid Anushka the last instalment for 'Pari', which released in March.
Summary:
Protesting against tax evasion by the iPhone-maker, several activists turned a Paris-based Apple Store into a hospital emergency ward with bloody patients and surgeons.
Summary:
Facebook's data-sharing partnerships with Apple, Amazon and eye-tracking technology company Tobii are due to continue beyond October 2018.
Summary:
Madhya Pradesh BJP leader Sanjeev Mishra on Sunday said that he would give â¹5 lakh to the person who beheads the Mandsaur rape accused if court or administration is not capable of giving capital punishment.
Summary:
Uttarakhand CM Trivendra Singh Rawat has announced a compensation of â¹2 lakh for the families of the 48 people killed after a bus fell into a 200-metre gorge in Pauri Garhwal.
Summary:
He then took her in a taxi, forced her to consume alcohol and raped her, police added.
Summary:
A top gangster on Sunday escaped a prison in France's Seine-et-Marne by helicopter.
Summary:
A 48-year-old man in the US faces trial for trying to give a $4,000 bribe to an immigration official to deport his estranged wife and daughter.
Summary:
The Goods and Services Tax (GST) collection rose to â¹95,610 crore in June from â¹94,016 crore in the previous month, Finance Secretary Hasmukh Adhia has said.
Summary:
The growth rate of India's FDI inflows recorded a five-year low of 3% to $44.85 billion in 2017-18, according to official data.
Summary:
Finance Minister Arun Jaitley on Sunday said that Congress President Rahul Gandhi's idea of a single tax slab under Goods and Services Tax (GST) is flawed.
Summary:
Bollywood actor Amitabh Bachchan tweeted about France's 19-year-old match-winner Kylian Mbappé, calling him "truly a baap".
a young team and the 19 yr old Mbappé does it for them !!", read the rest of Amitabh's tweet about Saturday's France-Argentina FIFA World Cup match.
Summary:
It reportedly broke the record set by Salman Khan's 'Race 3', which earned â¹37 crore on its second day.
Summary:
'The Big Bang Theory' actress Kaley Cuoco got married to Karl Cook, a professional equestrian, in San Diego, California on Saturday.
Summary:
Actor Saif Ali Khan has said that he finds those people very plastic who want to come across as very cool.
"There is a lot of eminence front being put up [by people].
Summary:
Priyanka Chopra has said that women should focus on loving themselves and they are their own best friends.
She further said that everyone doesn't look the same way, so the world needs to be trained to see beauty differently.
Summary:
Indian spinner Washington Sundar has been ruled out of both the T20I and ODI series against England after injuring his ankle while playing football during practice.
Summary:
Satoshi Nakamoto, the creator of Bitcoin, has announced he may be writing a book about it, according to a website.
Summary:
US-based startup Transcend Air Corporation has developed a six-seater 'Vy 400' aircraft that flies like a plane and takes off or lands like a helicopter.
Summary:
After liquor baron Vijay Mallya retweeted Congress President Rahul Gandhi's post against PM Narendra Modi, BJP spokesperson Sambit Patra asked if the 'maha-thag' (fraudster) has entered a 'mahagathbandhan' (grand-alliance) with the Opposition.
Summary:
Weighing around 206 kg, the bike offers a top speed of 299 kmph.
Summary:
Flipkart Internet, the marketplace arm of Flipkart India, has reduced losses by 29% to â¹1,639 crore in the financial year 2017, compared to â¹2,306 crore in the year-ago period.
Summary:
A study conducted by the researchers at USA's Washington University has found that air pollution leads to a significantly increased risk of diabetes.
Summary:
President Ram Nath Kovind on Saturday said managing India's growth in the changing global environment was not an easy task, adding that diplomats have to be "masters at strategic thinking".
Summary:
Interim Finance Minister Piyush Goyal has said that GST rates on all items could be brought down by 4-5 percentage points if consumers demand bills on every purchase.
Summary:
The indirect taxpayer base jumped by 70% since GST's introduction, he added.
Summary:
Swaraj earlier wrote she was "honoured" with these tweets.
Summary:
E Sreedharan, known as the 'Metro Man' of India, has said that bullet trains cater only to the elite community and are highly expensive, adding that the country needs a fast, safe and clean rail system.
Summary:
Extending wishes on the occasion of National Doctor's Day, PM Narendra Modi on Sunday called it one of humanity's noblest professions.
Summary:
The Madhya Pradesh Police will be running an HIV test on the two people accused of raping an eight-year-old girl in Mandsaur, reports said.
Summary:
The 28-seater bus was reportedly carrying 58 persons at the time of the accident.
Summary:
The victim, who was allegedly raped two months ago, questioned why the police hadn't arrested three of the five accused.
Summary:
Kim also urged Xi to work towards bringing an early end to the economic sanctions, reports added.
Summary:
Accusing the World Trade Organisation (WTO) of treating the US "very badly", President Donald Trump has denied that he is planning to withdraw the country from the global trade body.
Summary:
All Toys"R"Us stores closed on Friday after the retailer filed for bankruptcy last year after its debt increased to nearly $5 billion.
Summary:
Also, the car will keep on moving as long as riders keep on singing, according to the company website.
Summary:
Nirav's six dummy companies in Dubai, which borrowed from PNB, allegedly diverted $50 million to Lili Mountain Investments, where his sister Purvi Mehta was a director.
Summary:
Actor-writer Saurabh Shukla has said that he is a reluctant actor and a lethargic writer.
He further said, "Satya was one of my earlier work.
Summary:
France's 19-year-old forward Kylian Mbappé will donate his entire 2018 FIFA World Cup earnings, including match fees and bonus, to a charity.
Summary:
Defender Javier Mascherano, who holds the record for most appearances for Argentina (147), has announced his retirement from international football after crashing out of the World Cup on Saturday.
He represented Argentina in four World Cup editions and five Copa América tournaments.
Summary:
Indian batsman KL Rahul took over the Indian cricket team's Instagram page and showed around the team bus and the team's dressing room at the Old Trafford, where India will play the first T20I against England.
Summary:
Google is testing a feature for Google Maps app on Android which will allow users to report incidents.
Summary:
As the Goods and Services Tax (GST) regime completed one year of implementation on Sunday, Congress spokesperson Randeep Surjewala tweeted, "It remains 'Grossly Scary Tax' for millions of traders, shopkeepers and businessmen." "GST's more popular description is 'Gabbar Singh Tax' than 'Genuine and Simple Tax'," he added.
Summary:
Further, the expenditure increased by 1.8% to â¹7.32 crore in 2017 fiscal.
Summary:
Around 4,000 students have received fake degrees from the Indira Gandhi National Open University (IGNOU) centre in Kathua without writing any examinations, Jammu and Kashmir police said.
Summary:
Congress leader P Chidambaram on Sunday said that the implementation, design, structure, infrastructure backbone, and rates of GST were "so flawed" that it has become a "bad word" among traders and common citizens.
Summary:
Reacting to Congress leader P Chidambaram's criticism of GST, Interim Finance Minister Piyush Goyal said, "I would like to tell P Chidambaram that angoor khatte hain (grapes are sour)." "There was no disruption and economic growth was not affected due to the implementation of GST," he added.
Summary:
As part of 'Beti Bachao Beti Padhao' campaign, Uttar Pradesh CM Yogi Adityanath met with two sisters known for their sharp memory and awarded them â¹51,000 each.
Summary:
The accused raped his neighbour, who was watching television at his residence, after luring her to a secluded spot.
Summary:
The reporter can be seen shooting the segment while several helicopters fly close to her head.
Summary:
Ex-Canara Bank chief S Raman has quit from an RBI-appointed committee after he was named in a chargesheet related to the Winsome Diamonds case.
Raman said the development created "huge anguish" for him.
Summary:
The 28-seater bus was overloaded and was carrying about 58 persons, the police added.
Summary:
The eight-year-old girl who was raped in Madhya Pradesh's Mandsaur reportedly told her mother to "either treat me or kill me" after the incident, not letting her mother to leave her.
Summary:
Several Bollywood celebrities including Shah Rukh Khan, Aamir Khan, Ranbir Kapoor and Alia Bhatt danced to the song 'Gal Mitthi Mitthi Bol' from the film 'Aisha' at Akash Ambani and Shloka Mehta's engagement on Saturday.
Summary:
Deepika Padukone will get married to her rumoured boyfriend Ranveer Singh in Italy between November 12-16, as per reports.
Ranveer's close friend Arjun Kapoor and Deepika's friend Shah Rukh Khan will reportedly also attend their wedding ceremony.
Summary:
Priyanka Chopra's production 'Nalini', based on Rabindranath Tagore's love story, has been barred from shooting on the campus of Visva Bharati University.
Summary:
Over 40 people are feared dead after the bus they were travelling in fell into a deep gorge in Uttarakhand's Pauri Garhwal district on Sunday.
Summary:
The girl was kidnapped from her school by youth who allegedly raped her and slit her throat.
Summary:
Further, the women are reportedly made to stand in markets from where men wanting to rent can choose from them.
Summary:
Former Pakistan Prime Minister Nawaz Sharif's brother Shehbaz Sharif has said that India has surpassed the country in exports, IT & other sectors.
Summary:
A 20-year-old labourer in Madhya Pradesh's Mandsaur allegedly kidnapped an eight-year-old girl while she was waiting for a family member at school and then raped her before slitting her throat.
Summary:
Declaring a formal end to his government's ceasefire with the Taliban, Afghanistan's President Ashraf Ghani on Saturday said that the landmark ceasefire announced by the Taliban during Eid shows that the militant group is tired of war.
Summary:
The Russian town of Kungur has introduced a tax on rain, charging residents seven rubles a month for rainwater that flows from the roof into the sewer.
Summary:
The price of non-subsidised LPG has been increased by â¹55.50 per cylinder, and that of subsidised cylinder by â¹2.71 in Delhi, effective July 1.
Summary:
Russian women wearing white bridal dresses played a friendly football match in the World Cup host city of Kazan on Saturday as a warm-up event ahead of the France-Argentina last-16 clash.
Summary:
Summary:
Summary:
Following their thrashing of Ireland in the two-match T20I series, the Indian team reached the second spot in the ICC T20I team rankings.
India will next face England in a three-match T20I series.
Summary:
AIMIM chief Asaduddin Owaisi has asserted that nobody can defeat the party in Hyderabad and challenged PM Narendra Modi and BJP President Amit Shah to contest elections in the city.
Summary:
"If someone is retiring, he should relinquish office and make way for the person in waiting," the MP said.
Summary:
Six people have been arrested for kidnapping and murdering a man in Punjab, burying his body, digging it up, cutting it into pieces and throwing them into a canal.
Summary:
Lucknow Nagar Nigam's approval for installing Lord Lakshman's statue near Teele Wali Masjid has been opposed by Muslims clerics.
Summary:
A Dalit man in Uttar PradeshâÂÂs Bulandshahr district was allegedly forced to lick his own spit by the Panchayat as his son married a Muslim girl.
Summary:
A man in Andhra Pradesh's Thotaravulapadu allegedly killed his daughter by hitting her with the handle of an axe after he found her talking to her boyfriend despite his warning.
Summary:
Uttara Bahuguna, the teacher whose suspension was ordered by Uttarakhand CM Trivendra Singh Rawat, has demanded an apology from him.
Summary:
The UK accounted for over 27% (403 billion francs) of the total foreign money while India accounted for 0.07%.
Summary:
Summary:
Germany's Thyssenkrupp and India's Tata Steel signed a final agreement on Saturday to establish a steel joint venture, marking the European steel industry's largest deal in 12 years.
Summary:
Eleven people of a family were found hanging in the courtyard of a house in Delhi's Burari area on Sunday.
Of the 11 dead, seven were females while four were males.
Summary:
He had proposed to Shloka, his childhood friend, at a private gathering in March this year.
Summary:
Denying the allegations, López said he did not do anything "serious or criminal".
Summary:
Actor Irrfan Khan, who is currently undergoing treatment for a neuroendocrine tumour in the United Kingdom, has said he has no idea when he will be back in India.
Summary:
Shah Rukh Khan with his family and Abhishek Bachchan along with wife Aishwarya and daughter Aaradhya also attended the engagement.
Summary:
The diary of a suspect in the Gauri Lankesh murder case, Amol Kale, revealed the names of 36 targets for assassination and 50 potential shooters to carry out the operations, reports said.
Summary:
A former air hostess from Delhi and her accomplices duped some youths of â¹10 lakh each on the pretext of getting them a job in the Indian Railways.
Summary:
PM Narendra Modi on Sunday took to Twitter to congratulate people on the occasion of Goods and Services Tax (GST) completing one year, stating the tax reform was "a vibrant example of...'Team India' spirit".
Summary:
A 70-year-old US teacher has been charged with endangering the welfare of a child for offering a 16-year-old student an iPhone X in exchange for sex.
Summary:
Iranian Supreme Leader Ayatollah Ali Khamenei has said that six US Presidents before the current one also made efforts to create a gap between the Iranian government and people, however, they failed to achieve their "vicious goals".
Summary:
In a first, a Sikh man has been hired as an anchor by a news channel in Pakistan.
Summary:
Donald Trump's lawyer Rudy Giuliani on Saturday said that the US President will suffocate Iran's "dictatorial Ayatollahs".
Summary:
Mbappé was brought down in the box by defender Marcos Rojo, which resulted in a penalty.
Summary:
FIFA has fined Russia's soccer federation because of a fan who displayed a neo-Nazi banner at a FIFA World Cup match between Uruguay and Russia.
Summary:
The Indian kabaddi team beat Iran 44-26 to lift the Kabaddi Masters 2018 title in Dubai on Saturday.
Notably, India's Ajay Thakur has not lost a single match as captain of the Indian team.
Summary:
Cappotelli was first diagnosed with brain cancer in 2006, before succumbing to the disease after it reappeared in 2017.
Summary:
World's second youngest Grandmaster R Praggnanandhaa, who is 12 years old, met and impressed five-time world champion Viswanathan Anand.
Summary:
Punjab Sports Minister Rana Gurmit Singh Sodhi has said that uprooting the drug menace in the state cannot be done overnight.
Summary:
The Arunachal Pradesh government is planning to repeal its anti-conversion law, which was passed in 1978.
Summary:
An FIR has been lodged and the cyber crime cell would handle the investigation, police said.
Summary:
The Thane Police has filed a chargesheet against underworld gangster Dawood Ibrahim and his two brothers in an extortion case filed by a builder last year.
Summary:
After the Delhi High Court restrained Delhi Metro employees from going on a strike, the metro's non-executive staff said that the strike has only been postponed and not cancelled.
Summary:
RSS leader Indresh Kumar on Saturday said the 2016 surgical strikes conducted by the Army sent a message to Pakistan that "India can enter Lahore any time".
Summary:
On the occasion of Social Media Day on Saturday, PM Narendra Modi urged the youth to continue using the medium to express and discuss their ideas freely.
Summary:
US President Donald Trump told his French counterpart Emmanuel Macron to quit the European Union (EU) in return for a bilateral trade deal with the US, reports quoting European officials said.
Summary:
US whistleblower Edward Snowden, who is currently living in Russia, has slammed Germany for not granting him asylum.
Summary:
Summary:
Two-time champions Uruguay defeated Cristiano Ronaldo-led Portugal 2-1 in Round of 16 on Saturday to reach FIFA World Cup last 8 for the first time since the 2010 edition.
Summary:
The Central Board of Direct Taxation on Saturday extended the deadline for the PAN-Aadhaar linking from June 30, 2018, to March 31, 2019.
Summary:
Singh said this in response to his earlier claim where he stated that Charles Darwin's theory of evolution is scientifically wrong.
Summary:
The 57-year-old actor took a taxi with his 39-year-old wife and asked the driver to drive to a cash machine.
Summary:
Summary:
The eight-year-old rape victim from Madhya Pradesh's Mandsaur is out of danger and her condition is improving, the MY Hospital Superintendent said on Saturday.
The minor was raped and assaulted by a youth on Tuesday.
Summary:
Uttarakhand Chief Minister Trivendra Singh Rawat's wife Sunita has been posted in a Dehradun school since 1996 despite being promoted in 2008, the reply to an RTI query has revealed.
Summary:
Sathyasri Sharmila on Saturday became the first transgender to be enrolled as a lawyer in Tamil Nadu.
Summary:
The government will oppose the practice of 'nikah halala' in the Supreme Court, with the apex court set to examine its constitutional validity.
Summary:
Jharkhand will send a farmer from each of the 24 districts of the state to Israel so that they can get agricultural exposure, CM Raghubar Das said on Saturday.
Summary:
Canada's move came in retaliation to the 25% and 10% respective tariffs on its steel and aluminium imports imposed by the US.
Summary:
Actor Sanjay Dutt, while talking about his biopic 'Sanju', said that whatever has been shown in the film is the truth.
Summary:
Actor John Abraham has said that his wife Priya Runchal "totally" watches his films and 'Dostana' is her favourite.
Summary:
A 25-year-old man has been arrested from Noida for selling pirated copies of Ranbir Kapoor starrer 'Sanju' which released on Friday.
Summary:
Actor Irrfan Khan has been honoured with Icon Award at the London Indian Film Festival (LIFF) this year.
Richa Chadha won the Outstanding Achievement Award, while Manoj Bajpayee was also awarded an Icon Award.
Summary:
Alia Bhatt, while praising Ranbir Kapoor starrer 'Sanju', said that the film is now included in her top 10 best films list and she found Ranbir outstanding in it.
"It's a fantastic, fabulous, and outstanding film.
Summary:
France's Kylian Mbappé became only the second teenager after Pelé to score multiple goals in a World Cup knockout match, after netting a brace to help France knock Argentina out of the ongoing World Cup. The 19-year-old has won two French league titles (Monaco, 2016-17 and PSG, 2017-2018).
Summary:
This is the second consecutive time that India reached the final of the Champions Trophy.
Summary:
Banswara BJP MLA Dhan Singh Rawat's son Raja thrashed a man for allegedly not allowing his vehicle to pass first on the road.
Summary:
"He had constipation and was also suffering from dehydration," said the hospital's director while denying reports that Bisht had liver problems.
Summary:
On the occasion of Social Media Day on Saturday, Congress tweeted a video of women urging PM Narendra Modi to unfollow trolls on social media.
Summary:
Three former students have been arrested in the alleged rape and blackmailing case of a 22-year-old engineering student from Andhra Pradesh.
Summary:
A UK court has awarded a five-year jail term to a 41-year-old Indian-origin man, who suffers from schizophrenia, for murdering his brother-in-law after suspecting that he had an affair with his wife.
Summary:
The Uttarakhand teacher who was suspended by Chief Minister Trivendra Singh Rawat on Thursday, has said state Education Minister Arvind Pandey has apologised to her and assured her that her problem will be solved.
Summary:
This comes after Shiv Sena announced that it will contest the 2019 Lok Sabha elections without entering an alliance.
Summary:
While a 30-year-old man was washed away while crossing a stream on Friday, a 22-year-old youth died while trying to cross a river.
Summary:
India has adequate reserves and "firepower" to deal with the depreciating rupee, Economic Affairs Secretary SC Garg has said.
Summary:
Further, two-time champions Argentina failed to reach WC quarters for the first time since the 2002 edition.
Summary:
"Getting trolled by a verified troll will carry less psychological weight," he added.
Summary:
A working manuscript of American singer-songwriter Bruce Springsteen's 43-year-old song 'Born to Run' was sold for â¹1.7 crore ($250,000) at an auction at Sotheby's.
Summary:
An Indian football fan, who was in Russia for the 2018 FIFA World Cup, died in a car crash on Saturday near the venue city of Sochi.
Summary:
Talib Hussain, one of the lawyers who led the protest seeking justice for Kathua gangrape victim, has been booked for alleged domestic violence and an attempt to kill his wife Nusrat for dowry.
Summary:
Her move was aimed at making her religious community aware of the 'goodness' of Ramayana, she said.
"Just like holy texts of all religions, Ramayana also gives us a message of peace and brotherhood.
Summary:
The post, which was about Shah's interaction with West Bengal BJP workers, received over 1,600 comments.
Summary:
India's Defence Attache in Pakistan has claimed his domestic help was forced to quit working for him by the local authorities.
Summary:
India's richest person and Reliance Industries Chairman Mukesh Ambani on Friday danced with his daughter Isha Ambani during his son Akash Ambani's pre-engagement festivities in Mumbai.
Summary:
Lloyd's of London, the 332-year-old insurance market, has said its first female CEO Inga Beale has decided to step down.
Summary:
"He [Ranbir] portrays...honesty in every character he plays," Vicky added.
Summary:
Saqib Saleem, who was recently seen in Salman Khan's 'Race 3', has said, "It's become a thing now, that I have to make him [Salman] like what I'm doing." He added that Salman has always "gone out of his way to look out" for him.
Summary:
TV actor Kushal Tandon took to Instagram and apologised to his former girlfriends by writing a letter that read, "I'm sorry to all the girls I've loved before." "If I can go back to [in] time, then I would undo the crime, but...can't make it right," he further wrote.
Summary:
Russian authorities stopped Mexican football fans currently visiting the country for FIFA World Cup from holding a 'Day of the Dead'-themed parade in Moscow's Red Square.
Summary:
A restaurant in St Petersburg, Russia, on Friday served pizzas having portraits of Portugal captain Cristiano Ronaldo and Uruguayan forward Luis Suárez.
Summary:
Cricket Germany's official Twitter account trolled ICC after defending champions Germany got eliminated in the group stage at the ongoing 2018 FIFA World Cup.
Summary:
Team India captain Virat Kohli accepted cricket legend Sachin Tendulkar's KitUp Challenge and shared a video of himself wearing a cricket kit.
Summary:
Maharashtra Chief Minister Devendra Fadnavis should dissolve the "corrupt" Brihanmumbai Municipal Corporation, Mumbai Congress chief Sanjay Nirupam has demanded in a letter addressed to the CM.
Summary:
This comes after Kumar wrote an open letter to Rao and questioned him over visiting the state without fulfilling the government's promises.
Summary:
The expenses for sending the beneficiaries to the rally, which is scheduled for July 7, will reportedly be borne by the state.
Summary:
He said this while talking about land spanning 2.5 acres which Lalu had purchased for a 91-year period on an annual charge of â¹20,000.
Summary:
Responding to an RTI query, Union Ministry of Health and Family Welfare said that use of government supplied condoms has dropped in 19 states in the last six years.
Summary:
A 54-year-old differently-abled man has died after being stung by wasps while strolling in a Mumbai garden.
Summary:
The Jammu and Kashmir Police on Saturday said that the body of only one Lashkar-e-Taiba terrorist was recovered from the site of the Pulwama encounter on Friday while two other terrorists apparently escaped.
Summary:
The Rajasthan police has booked the father and brother of a 17-year-old boy for allegedly murdering him as part of a human sacrifice ritual.
Summary:
The CBI has summoned AirAsia India director R Venkataramanan on July 3 in connection with alleged malpractices and corruption by the airline in securing international flying permit, according to reports.
Summary:
This comes after the Enforcement Directorate moved court seeking to confiscate Mallya's assets and declare him a 'fugitive offender'.
Summary:
On June 30, 1905, 26-year-old Albert Einstein formulated the theory of special relativity, which states that light travels at a constant speed (c) in vacuum, nearly 3 lakh kmps.
Summary:
Talking about the articles written on his son Taimur Ali Khan, Saif Ali Khan said, "I too enjoy it sometimes, but I don't like making gods out of children." He added that during promotions, he ends up being asked more about Taimur and his wife Kareena than his work.
Summary:
British singer-songwriter Robbie Williams flipped his middle finger to the camera during the opening ceremony of the 2018 FIFA World Cup. Swiss players Xherdan Shaqiri and Granit Xhaka celebrated their goals with gestures apparently symbolising Albanian flag's eagle and were fined $10,000.
Summary:
Singh said the incentive offers introduced by NPCI to promote BHIM are only paid if a person uses BHIM app or any bank's app.
Summary:
Nine out of the 10 Border Security Force (BSF) jawans who had gone missing from a special Army train reported back to duty on Friday.
Summary:
India and the US welcomed the Financial Action Task Force's (FATF) decision to place Pakistan in its 'grey list' for failing to act against terror financing on its soil.
Summary:
Their families have refused to accept their bodies until the private company they were working for pays them compensation.
Summary:
A 22-year-old engineering student from Andhra Pradesh has accused two seniors of raping and filming her after spiking her drink at a party last year.
Summary:
The Central Reserve Police Force (CRPF) has trained a team of women commandos to deal with rising incidents of stone pelting and increasing participation of women in such incidents in Jammu and Kashmir.
Summary:
Speaking about the rape of an 8-year-old girl in Madhya Pradesh's Mandsaur, Congress President Rahul Gandhi said that the brutality which the girl was subjected to sickens him.
Summary:
Two Border Security Force (BSF) personnel were robbed on Sunday while they were in the waiting room at the Old Delhi Railway Station in the capital.
Summary:
North Korea has increased the production of enriched uranium for nuclear weapons, reports quoting the US intelligence said.
Summary:
US President Donald Trump got a prank call on board Air Force One from comedian John Melendez who posed as Democratic Senator Bob Menendez.
Melendez published a podcast of the purported conversation between him and the US President.
Summary:
Fugitive business tycoon Vijay Mallya has refuted allegations made by an Enforcement Directorate official claiming he is attempting a "plea bargain".
Summary:
Actress Shweta Tripathi, known for starring in the films 'Masaan' and 'Haraamkhor', got married to her boyfriend, actor and rapper Chaitnya Sharma, also known as SlowCheeta.
Summary:
High time!" Ranbir and Ayan had earlier collaborated for 'Wake Up Sid' and 'Yeh Jawaani Hai Deewani'.
Ranbir will now be seen in Ayan's upcoming film 'BrahmÃÂstra' with Alia Bhatt and Amitabh Bachchan.
Summary:
Bobby Deol has said that he always saw his fans and wondered why was he not getting work.
Summary:
Sophie Turner, known for portraying 'Sansa Stark' on 'Game of Thrones', said the final season of the show will be "bloodier" with more deaths and more emotional torture than all the years before.
Summary:
Maiochi's jugular vein got severed as she fell while celebrating Brazil's win.
Summary:
After India registered their biggest victory in T20I cricket on Friday, Team India captain Virat Kohli said he is having a "headache now about whom to pick" among batsmen as "they've all done so well".
It's a great phase for Indian cricket," he added.
Summary:
A section of fans threw eggs and cushions at the South Korean football team at the Incheon International Airport after the squad's return following group stage exit from the 2018 FIFA World Cup. The reception of the players was mostly pleasant as they were greeted by over 500 people.
Summary:
Suspended former Australian vice-captain David Warner got bowled by Lasith Malinga for 1 run on his second ball on his return to cricket after March's ball-tampering scandal in South Africa.
Summary:
Tinder has fixed a security vulnerability on the dating platform which potentially allowed hackers to see users' swipe actions and intercept photos when connected to the same network.
Summary:
AâÂÂflood alert has been issued in Jammu and Kashmir after water levels in the Jhelum river crossed the danger mark following heavy rains over the last two days.
Summary:
A team of health officials, which had gone to a village in Uttar Pradesh's Muzaffarnagar to collect milk samples from local vendors to test the purity, was attacked by a mob on Friday.
Summary:
A teacher in Odisha's Nayagarh was allegedly tied to a tree, gagged and garlanded with shoes by the owner of a coaching centre for quitting his job over non-payment of dues.
Summary:
The government will celebrate July 1 as 'GST Day' as the indirect tax regime completes one year.
Summary:
The site consists of a 19th-century collection of Victorian structures and 20th century Art Deco buildings.
Summary:
World's richest man Jeff Bezos led e-commerce major Amazon's two announcements on Thursday wiped out $17.5 billion from eight companies' market values including Walmart and FedEx. The announcements included Amazon's $1-billion deal to buy pharmacy startup PillPack and its plan to recruit entrepreneurs to run local delivery networks.
Summary:
Liquor baron Vijay Mallya's Airbus A319-133C luxury jet was auctioned for â¹34.8 crore after three failed auctions.
Summary:
On June 30, 1971, the only deaths in space occurred when three Soviet cosmonauts were returning from first-ever space station Salyut-1.
Summary:
The official trailer of Sanjay Dutt starrer 'Saheb, Biwi Aur Gangster 3' has been released.
Summary:
RJD leader Shivanand Tiwary slammed PM Narendra Modi for saying that Sant Kabir, Guru Nanak and Baba Gorakhnath sat together and discussed spirituality in Uttar Pradesh's Maghar.
Summary:
US-based pharmacy startup PillPack's Co-founders TJ Parker and Elliot Cohen are set to net $100 million each from a deal where Amazon agreed to buy PillPack for $1 billion on Thursday.
Summary:
An unmanned rocket MOMO-2, developed by a Japanese entrepreneur, exploded shortly after lift-off on Saturday, in an attempt to send Japan's first privately backed rocket into space.
Summary:
Major Nikhil Handa searched 'how to destroy evidence' and 'how to make a murder look like an accident' after killing Shailza, police has revealed.
Summary:
External Affairs Minister Sushma Swaraj's husband and lawyer Swaraj Kaushal shared a troll's tweet asking him to beat his wife post the passport issuance row.
Summary:
An Indian woman has reportedly been separated from her 5-year-old differently-abled son after she illegally crossed into the US from Mexico.
Summary:
He revealed that Rajput told him how the plane crashed in Rajasthan, and all people onboard were evacuated safely, though he sustained injuries.
Summary:
The deadline for linking Aadhaar with Permanent Account Number (PAN) ends today.
Summary:
A doctor on duty in Kashmir on Friday declared his 15-year-old son brought dead after he was hit by a bullet during cross-firing between militants and security forces.
Summary:
The US government has said it has the right to detain migrant children with their parents crossing into the country illegally for an indefinite period of time.
Summary:
US newspaper The Capital Gazette left its opinion section blank on Friday to honour its five employees who were killed in the shooting.
Summary:
Summary:
A mural of Portugal captain Cristiano Ronaldo is next to the hotel where Argentine captain Lionel Messi is staying with the national team in Russia's Kazan, where they play France in the World Cup last-16 stage.
Summary:
Maradona was seen smoking a cigar in one match and has been accused of making racist gestures towards visiting fans.
Summary:
In the first picture with the caption "Ghar se nikalte hi", Kaul can be seen playing cricket during his childhood.
Summary:
Honda has said it would likely cease production of its humanoid robot ASIMO, famed for playing football with former US President Barack Obama.
Summary:
Reacting to Uttarakhand Chief Minister Trivendra Singh Rawat suspending a teacher after an argument between the two over her transfer, state's Congress President Pritam Singh said the CM's actions smell of arrogance.
Summary:
Talking to media about leaked videos purportedly showing him talking against the JD(S)-Congress alliance, former Karnataka CM Siddaramaiah said, "Who told you I'm unhappy?
Summary:
Samajwadi Party President Akhilesh Yadav's uncle Shivpal Singh Yadav on Friday said he worked hard for the party since its formation but he was not given his due.
Summary:
California-based startup JUUL Labs is reportedly raising $1.2 billion in a financing round that would value the company over $15 billion.
Summary:
The government believes that the practice is against gender justice, officials said.
Summary:
Mukesh Ambani-led Reliance Industries (RIL) has signed an agreement to acquire US-based telecom solutions provider Radisys Corporation for about $75 million (â¹513 crore) in cash.
Summary:
With earnings of â¹34.75 crore on the first day, Ranbir Kapoor starrer 'Sanju' has become the highest opening day grosser of 2018.
Summary:
nSpeaking about facing casting couch in the film industry, Swara Bhasker revealed that a man claiming to be the manager of a big producer once tried to kiss her ear during a meeting.
Swara further said, "That kind of stuff happens.
Summary:
Ed Sheeran has been sued for $100m (â¹684 crore) for allegedly copying his 2014 song 'Thinking Out Loud' from late musician Marvin Gaye's 'Let's Get It On'.
Summary:
Sonam Kapoor has said her husband Anand Ahuja is encouraging of her work while adding, "He didn't blink when I told him I was flying to Cannes two days after the wedding." "There was no argument, just acceptance," she added.
Summary:
Former Indian captain MS Dhoni went on-field to serve water and drinks and carry kit bags for Indian batsmen Suresh Raina and Manish Pandey during the second T20I against Ireland on Friday.
Summary:
At least seven Karnataka ministers, including CM HD Kumaraswamy, face criminal charges, a Karnataka Election Watch and ADR report based on poll affidavits of 26 of 27 state ministers revealed.
Summary:
Ahmedabad-headquartered e-commerce major Infibeam is looking to raise â¹2,000 crore to set up its payments bank and expand business in IT segment.
Summary:
The skull of a disabled man who died while trying to flee an eruption of Mount Vesuvius 2,000 years ago in Pompeii, Italy has been found.
Summary:
A woman with a fractured leg was dragged out of a government hospital in Maharashtra's Nanded, allegedly due to the unavailability of a stretcher.
Summary:
The driver's family said they were worried about their financial condition before the officer offered help.
Summary:
The Indian Meteorological Department's regional centre in Mumbai has issued warnings of cyclonic circulations over the northeast Arabian Sea off north Gujarat coast and the east-central Arabian Sea off south Maharashtra coast.
Summary:
A Delhi Police constable saved three pilot training students from electrocution using a taekwondo kick.
The constable was on patrol duty when he noticed four students stuck to an iron board near an electric pole.
Summary:
The accused bishop also filed a counter-complaint claiming the nun is taking revenge against him for transferring her.
Summary:
PM Narendra Modi has said 1.25 crore pregnant women were treated free of cost after he requested doctors working in the private sector to voluntarily provide prenatal services to poor women.
Summary:
A man in Bihar was recently shot dead for allegedly intruding into a baraat (marriage procession) of another caste and dancing.
Summary:
At least five Indo-Tibetan Border Police personnel were killed and six injured in Arunachal Pradesh after huge boulders rolled down following a mudslide and crushed their bus carrying 20 personnel on Friday.
Summary:
US President Donald Trump will discuss his country's military withdrawal from Syria with his Russian counterpart Vladimir Putin during the upcoming summit between the two leaders in Finland, reports said.
Summary:
Japanese company Tanita has unveiled a pocket-sized device that can detect body odour and also rate it on a scale of 0-10.
Its replaceable sensor can work for 2,000 uses, or about a year, the company said.
Summary:
The BBC has apologised to former China editor Carrie Gracie for underpaying her and said it "has now put this right" by giving her back pay.
Summary:
Indian boxer Mary Kom, who won a gold medal in the 51 kg category at the Asian Games in 2014, is set to skip the 2018 edition of the championship.
Summary:
A 33-year-old California resident was arrested on Saturday for sending threatening emails to Federal Communications Commission (FCC) Chairman Ajit Pai last year.
Summary:
University of Tokyo researchers have developed a "dragon drone", made up of several small drones, that is capable of transforming mid-flight.
Summary:
The woman claimed the landlady's family members chased her and tore her clothes.
Summary:
A bride in Bihar called off her wedding midway blaming the groom for "unusual behaviour" after he seemed scared following a lightning strike, police said on Friday.
Summary:
A farmer in Tamil Nadu committed suicide after recovery agents of a private bank seized his tractor for failing to pay a loan instalment.
Summary:
Officials said the allegations are an attempt to gain sympathy for Bajrangi and delay trial proceedings against him.
Summary:
The Bank of Maharashtra board on Friday stripped the bank's MD and CEO Ravindra Marathe and Executive Director RK Gupta of all functional responsibilities with immediate effect.
Summary:
Computer technology company Dell has always focussed on delivering technology solutions that enable people everywhere to grow and thrive.
Summary:
India defeated Ireland by 143 runs in the second T20I in Dublin on Friday to register their biggest victory in T20I cricket and win the two-match series 2-0.
Summary:
A 33-year-old man, Sukanta Chakrabarty, hired by the Tripura government to dispel rumours about child-lifters on social media was lynched by villagers on Thursday night after they suspected him to be a kidnapper.
Summary:
A Texas woman has sued a local restaurant buffet for $1 million in damages after she allegedly fell sick with "fried rice syndrome" after eating there.
Summary:
Tabu has said she has no regrets as of yet about not getting married.
When asked if she'll ever get married, Tabu further said she doesn't have an answer.
Summary:
Admins can block participants from messaging in the group by selecting 'Only Admins' in group settings.
Summary:
Madhya Pradesh BJP MLA Sudarshan Gupta was allegedly caught on camera asking the 8-year-old rape victim's family to "thank" party MP Sudhir Gupta for visiting them and the girl at a hospital.
"Say thank you to the MP.
Summary:
After reports revealed that Indian deposits in the Swiss Bank increased by 50% in 2017, Finance Minister Arun Jaitley said assuming that all deposits are black money is "to start on a shaky presumption".
Summary:
This was reportedly the first drill carried out by China in Tibet since the Doklam standoff with India last year.
Summary:
While the slain terrorists are yet to be identified, reports suggested that an LeT terrorist involved in the murder of journalist Shujaat Bukhari was also trapped in the building.
Summary:
Opposition leaders in Madhya Pradesh have accused CM Shivraj Singh Chouhan of purchasing a Toyota Fortuner worth â¹30 lakh from Kisan Sadak Nidhi, which are funds meant for the construction and upgrading of roads.
Summary:
Indamer Aviation, the company that had carried out maintenance and repair work of the aircraft which crashed in Mumbai on Thursday, has denied that the plane could have suffered a technical glitch.
Summary:
South Korea's fourth largest conglomerate LG has announced the appointment of Koo Kwang-mo, the 40-year-old son of the family-controlled conglomerate's late Chairman Koo Bon-moo, as a board member of the holding firm and its CEO.
Summary:
Gauri Khan shared a video of husband Shah Rukh Khan's 'Fauji to Zero' journey on him completing 26 years in Bollywood, captioning it, "26 years of precious memories." The video shows Shah Rukh's journey starting from his debut TV serial 'Fauji' till his upcoming film 'Zero'.
Summary:
She further said that a person's happiness should always come first, adding, "You do all of these when you are ready."
Summary:
Ranveer Singh will reportedly star in filmmaker Maneesh Sharma's musical drama which will be a love story.
Summary:
John Abraham, while talking about his upcoming film Satyameva Jayate's release date clashing with that of Akshay Kumar's upcoming film 'Gold', said, "I think two films can release on the same day and survive." "There are enough screens for both the films," he added.
Summary:
Steve Smith, who's currently serving a one-year ban from international cricket over ball-tampering, has said it "hurt him" that he couldn't help Australia during their tour of England.
Summary:
The Indian women's T20I captain Harmanpreet Kaur became the second Indian cricketer after T20I vice-captain Smriti Mandhana to be selected to play in England's Super League T20 tournament.
Summary:
Reddy further said opposition parties should come together before the polls.
Summary:
Karnataka BJP chief BS Yeddyurappa on Friday claimed that several MLAs from the ruling Congress-JD(S) alliance in Karnataka are willing to join BJP.
Summary:
A group of men allegedly molested a 22-year-old woman earlier this week after gangraping her in a moving car in Gujarat's Ahmedabad in March.
Summary:
The department also predicted fairly widespread rainfall in Delhi over the next three days.
Summary:
Police suspect the man killed the victim as he was opposed to her relationship with a youth from the same village.
Summary:
The app will be linked with the Delhi Police's database of missing children.
Summary:
The Centre on Friday asked state governments to provide home delivery of subsidised foodgrains to beneficiaries in order to avoid cases of starvation deaths.
Summary:
The US has named North Korea as one of the worst human trafficking nations for reportedly the 16th consecutive year.
Summary:
Police in Madhya Pradesh's Jabalpur made a thief undergo surgery to recover a mangalsutra that he had stolen.
Summary:
Smartphone maker OnePlus has committed to a Google Pixel-like software update policy to future-proof its lineup with two years of Android OS updates and an additional year of security updates.
Summary:
Haryana Chief Minister Manohar Lal Khattar rode a Royal Enfield motorcycle to the Karan Stadium in Karnal on Friday for a surprise inspection of the development work being undertaken at the facility.
Summary:
The Delhi High Court on Friday stopped Delhi Metro Rail Corporation (DMRC) employees from going on a strike from Saturday, saying they are running a public utility service that serves 25 lakh people daily.
Summary:
Captain Maria Zuberi, the 47-year-old pilot who died on Thursday while trying to save others in the chartered aircraft crash in Mumbai's Ghatkopar, was a native of Allahabad.
Summary:
Surat-based jewellers Vishal Agarwal and Khushbu Agarwal manufactured a ring containing 6,690 diamonds, registering the Guinness world record for 'Most diamonds set in one ring'.
Summary:
European Union leaders have agreed to a deal on migration after marathon talks on Friday.
Summary:
"If you don't know about it, google Billionaire Watch," Mayweather said.
Summary:
After being named in the playing XI for the second Ireland T20I, fast bowler Umesh Yadav has set the record for the most consecutive T20I matches missed between two appearances for India.
Summary:
2018, HE says: 50% jump in Swiss Bank deposits by Indians, is "WHITE" money," Rahul tweeted.
Summary:
The doctors who are treating the eight-year-old girl who was raped and then abandoned in Madhya Pradesh's Mandsaur have said, "She's too traumatised to even talk." A rod-like object was found inserted inside her private parts and its removal took two surgeries, they added.
Summary:
Uttara Bahuguna, the teacher who was suspended today after an argument with Uttarakhand Chief Minister Trivendra Singh Rawat over her transfer, said, "I'm not afraid, I haven't done anything wrong." Bahugana, who was posted in Uttarkashi for 25 years, wanted a transfer to Dehradun.
Summary:
Iraq on Thursday executed 12 Islamic State terrorists in retaliation for the militant group's killing of 8 captives.
Summary:
The viral footage showed the Portuguese President come out of his car and drag Trump towards him as they shook hands.
Summary:
Comparing it to NAFTA, a trade agreement signed between the US, Mexico and Canada, Trump added NATO is too costly for his country.
Summary:
Rajkumar Hirani has said that he has an unspoken bond with Boman Irani wherein they have decided to do each film together.
Boman has featured in all of Hirani's films including '3 Idiots' and 'PK'.
Summary:
Deepika Padukone, while talking about her wedding rumours with Ranveer Singh, said that she doesn't "try to fight or control the speculation".
Summary:
Maanayata Dutt, wife of actor Sanjay Dutt, shared a picture of him with their children Shahraan and Iqra along with a message on release of his biopic 'Sanju'.
Summary:
Kylie Jenner has featured in the TIME magazine's list of 25 Most Influential People on the internet for 2018.
Summary:
Total market valuation of 100 largest companies globally has increased by 15% since last year to $20 trillion, according to a report by auditing company PwC.
Summary:
India's world number seven Kidambi Srikanth also reached the semifinal with a straight games win.
Summary:
Indian Administrative Service (IAS) 2015 topper Tina Dabi has shared a picture of herself with husband Athar Aamir-ul-Shafi Khan, 2015's second rank holder, wearing lungi.
Summary:
Madhya Pradesh CM Shivraj Singh Chouhan has said the 20-year-old labourer who allegedly raped an eight-year-old girl in Mandsaur should be awarded death penalty, adding that rapists are a "burden on the earth".
Summary:
The Tripura government suspended internet for 48 hours on Thursday to stop the spread of rumours after three people were lynched in the state.
Summary:
Priests associated with Odisha's Jagannath temple have accused government authorities and temple administration of trying to defame them after reports claimed they misbehaved with President Ram Nath Kovind and his wife during their visit in March.
Summary:
A medium-range surface-to-air missile aboard a German warship exploded during a military exercise near the Arctic Circle in Norwegian waters.
Summary:
Several people shared screenshots of the torrent download link of the film on social media.
Many users on Twitter urged people not to encourage piracy by sharing the links.
Summary:
Prabhat Kathuria, the husband of the co-pilot killed in a plane crash in Mumbai on Thursday, has revealed he texted her to know if she had landed and then saw the news of crash on TV.
Summary:
India would start getting data on deposits made by Indians this year in Swiss Banks from 2019 as part of a bilateral treaty signed between the two nations, interim Finance Minister Piyush Goyal said.
Summary:
Over 40 labourers at the construction site in Mumbai where a chartered plane crashed on Thursday escaped as they had gone for lunch minutes before the crash occurred.
Summary:
A video showing Pakistani TV journalist Chand Nawab reporting from a paan shop has gone viral.
Summary:
Isha Ambani performed rituals to welcome her brother Akash and his bride-to-be Shloka Mehta at their pre-engagement ceremony held on Thursday.
Summary:
Hailing the Iranian football team's performance in their recent FIFA World Cup match against Portugal, Israeli PM Benjamin Netanyahu told Iranians to show the same "courage" in standing against their regime.
Summary:
Summary:
Reacting to union minister Anantkumar Hegde's remark calling the Opposition parties "crows, monkeys, foxes", Congress MP Veerappa Moily said, "The tiger has become wild, and has to be sent back to the forest." Hegde had earlier said, "On one side crows, monkeys, foxes and others have come together, on the other side we have a tiger.
Summary:
A 20-year-old woman was sexually assaulted by a cab driver on Thursday near Goa airport.
After she refused, he dragged her into the vehicle, took her to an isolated location and sexually assaulted her, said the police.
Summary:
The services on the Yellow Line of the Delhi metro were disrupted for 30 minutes on Friday morning after a peacock appeared on the tracks at the Model Town station.
Summary:
As many as five people, including a pedestrian, were killed and three others were injured in the crash that took place on Thursday.
Summary:
Under the plan, French boys and girls would do a minimum of one-month service in the first phase which would focus on voluntary teaching and working with charities among others.
Summary:
Pakistan urged FATF to remove its name from the list and negotiated an action plan to eradicate terror financing.
Summary:
The US on Friday withdrew its troops from the South Korean capital of Seoul after nearly 70 years and moved them to Camp Humphreys in the city of Pyeongtaek.
Summary:
As compared to 2013, the rupee has not depreciated in last five years, Goyal added.
Summary:
Filmmaker Meghna Gulzar, who has directed films based on real-life stories like 'Raazi', 'Talvar', has said that she feels she does "a better job with true life" stories.
Summary:
Summary:
As many as nine own goals have been scored in 2018 FIFA World Cup so far with 16 matches remaining, which is the most number of own goals scored in a single edition of the quadrennial tournament.
Summary:
Shastri said that a cricketer is not judged for how much beer he consumes, but for his performance.
Summary:
"If...intention (was) of showing proof, why did they not release video when strike was carried out?" she added.
Summary:
PM Narendra Modi has claimed that the NDA government has announced the establishment of more All India Institute of Medical Sciences (AIIMS) in last four years than the ones approved in the past 70 years.
Summary:
Uttar Pradesh CM Yogi Adityanath on Wednesday refused to wear a cap offered to him at Sant Kabir's mausoleum in Maghar.
Adityanath went to the mausoleum to oversee preparations for PM Narendra Modi's visit.
Summary:
Answering a question on farmer suicides, Chhattisgarh Agriculture Minister Brijmohan Agrawal said, "Countries and cities that are more developed see more suicides.
Summary:
"Airports are on high alert...jackets [are] important in terror attacks," officials added.
Summary:
"Please expedite this," she tweeted to the Embassy of India in China.
Summary:
IDBI Bank added â¹7,567 crore to its market capitalisation on Friday after reports claimed that Life Insurance Corporation (LIC) may acquire majority stake in the company.
Summary:
Xiaomi has raised $4.7 billion from its Initial Public Offering (IPO), valuing the Chinese smartphone maker at about $54 billion.
Summary:
Pakistan on Thursday rejected the recently-released video clips of India's surgical strikes on terror camps across the border in September 2016.
The farcical claims of surgical strikes is a figment of Indian imagination and nothing else!
Summary:
Surabhi Gupta, one of the five killed in the Mumbai plane crash on Thursday, had told her father over phone that she was going to fly in a "sick aircraft", her father revealed.
Summary:
This is putting women down," a user commented.
"Priyanka you better sue them now," wrote another user.
Summary:
Denying rumours that she auditioned to date actor Tom Cruise, actress Scarlett Johansson said, "The very idea...
Summary:
CIMON will be used for interactions with ISS crew and for medical experiments, where it will serve as a flying camera.
Summary:
The closure of the Ngurah Rai airport affected about 75,000 passengers, said the National Disaster Mitigation Agency.
Summary:
Other questions included achievements of former PM Manmohan Singh's government and the number of seats Congress won in 2009 Lok Sabha elections.
Summary:
The fake tweet attributed to Levatich said, "Decision to move some of our operations is 100% based on President Trumps tariffs...Trump knows nothing about economics and even less about trade."
Summary:
The chartered plane that recently crashed in Mumbai killing five people, had been grounded for nine years, a report has revealed.
Summary:
Lt General (Retd) DS Hooda, who oversaw the 2016 surgical strikes to destroy terror launch pads in Pakistan, has said India can carry out the strikes again if a message needs to be sent.
Summary:
Adding that they are using heavy machinery to remove the boulders, Border Roads Organisation officials said clearing the road was a difficult task since rocks are constantly rolling down and leading to massive jams.
Summary:
Uttarakhand Chief Minister Trivendra Singh Rawat suspended a teacher after an argument between the two over her transfer, at the 'Janata Darbar'.
Summary:
ICICI Bank on Friday appointed retired IAS officer and former petroleum secretary Girish Chandra Chaturvedi as part-time non-executive Chairman and independent Director on the bank's Board.
Summary:
Sonam Kapoor, while explaining why she agreed to play a small role in Rajkumar Hirani's 'Sanju', said she was very keen to work with him.
Summary:
Summary:
A criminal complaint has been filed against Congress leaders Ghulam Nabi Azad and Saifuddin Soz for allegedly making seditious remarks against Indian Army.
Summary:
While making a veiled reference to Prime Minister Narendra Modi and 2019 Lok Sabha elections, he added, "On the other side we have a tiger.
Summary:
Gurugram-headquartered logistics startup Delhivery is reportedly looking for raising $350 million in its Initial Public Offering (IPO).
Summary:
The bottles come out as fine plastic pieces which can be reused to make bags or t-shirts.
Summary:
Lalu is serving jail sentence after being convicted over four fodder scams.
Summary:
A Delhi court on Friday sent Army Major Nikhil Handa to 14-day judicial custody for the alleged murder of Shailza Dwidevi, his colleague's wife.
Summary:
Four policemen allegedly kidnapped by Pathalgadi supporters in Jharkhand were released on Friday.
Summary:
PM Narendra Modi on Friday visited former PM Atal Bihari Vajpayee for around 15 minutes at AIIMS Delhi for the third time.
Summary:
US Ambassador to the UN Nikki Haley has called Iran a "theocratic dictatorship" and said that the country is the "next North Korea." Adding that Iran continues to violate global resolutions, Haley said that Iran's pursuit of nuclear weapons threatens the entire world.
Summary:
Bonthu allegedly used non-public information to sell his company assets and made $75,000, a 3,500% return on his initial investment.
Summary:
"The government is also of the view that Air India should be in the hands of Indian entities," the official added.
Summary:
Uber has tapped into stories of their riders and drivers to extend their brand narrative of #MoveForward.
Summary:
Sanjay Dutt's biopic 'Sanju' starring Ranbir Kapoor, which released today, "is flawed and eccentric but it has a brilliant Ranbir at its forefront," wrote Times Now.
It has been rated 3.5/5 (Times Now) and 4/5 (NDTV, TOI).
Summary:
Hosts Russia are among the ten European teams to advance to 2018 FIFA World Cup's second round.
Summary:
The Central Board of Secondary Education (CBSE) has ordered action against 130 teachers across the country for making errors in evaluation of class 10 and 12 board exam answer sheets.
Summary:
A 30-year-old software professional from Delhi has filed a petition for divorce from his wife claiming she is a social media addict and spares no time for him or the family.
Summary:
Sanjay Dutt has said the time he spent in jail broke his ego.
Summary:
Nita Ambani danced to the song 'Shubhaarambh' from the film 'Kai Po Che!' at her son Akash Ambani and his fiancée Shloka Mehta's pre-engagement ceremony held on Thursday.
Summary:
The teaser of Rishi Kapoor and Taapsee Pannu starrer 'Mulk' has been released.
Summary:
Arjun Kapoor, who turned 33 on Tuesday, shared a picture of the birthday gift he received from his grandmother.
Summary:
On the first occasion, on June 29, 1911, Worcestershire bowler Robert Burrows bowled out Lancashire's Bill Huddleston, sending the bail flying 61.4 metres to create a first-class record.
Summary:
The mastermind of 'Rising Kashmir' editor Shujaat Bukhari's murder, Sajjad Gul, had completed MBA from a private institute in Bengaluru and also trained as a laboratory technician.
Summary:
Speaking at Sant Kabir's 500th death anniversary in Uttar Pradesh's Maghar, PM Narendra Modi on Thursday said, "It is said that here Sant Kabir, Guru Nanak and Baba Gorakhnath sat together and discussed spirituality." However, Kabir and Gorakhnath are believed to have belonged to different eras.
Summary:
A video showing MNS workers thrashing and abusing a theatre manager in Pune has surfaced.
MNS leader Kishor Shinde said the theatre was selling â¹5-worth popcorn for â¹250, despite Bombay HC remarks that prices need to be reduced.
Summary:
Maharashtra CM Devendra Fadnavis has provided â¹1.5 lakh from the CM Relief Fund to a 47-year-old woman suffering from breast cancer.
Summary:
The main accused in 'Rising Kashmir' editor Shujaat Bukhari's murder, Sajjad Gul, had planned serial bomb blasts in Delhi in 2002.
Summary:
Sectors such as IT, textiles and others which export goods will benefit due to a weak rupee.
Summary:
Two chameleons assumed to be from one of the rarest species of the reptile, estimated to be worth around â¹1 crore, were seized from a man at Malda railway station in West Bengal.
Summary:
A store in Russia's Saransk has produced 11 jewel-encrusted footballs, costing around â¹1.3 lakh per ball, in honour of the FIFA World Cup, the 2018 edition of which is being hosted in the nation.
Summary:
Indian coach and former player Ravi Shastri revealed in a show that his mother got to know about his record-setting feat of hitting six sixes in an over from a bhelpuri vendor.
Summary:
Smith's knock included eight fours and one six before getting stumped.
I just love being out in the middle," Smith later said in a post-match interview.
Summary:
Segway on Thursday announced a product named 'Drift W1', which is a pair of e-skates made using the company's self-balancing technology.
Summary:
Online certification start-up Edureka has raised $2 million in its first round of funding from venture fund Leo Capital India.
Summary:
E-commerce logistics startup WOW Express has raised â¹30 crore in Series A funding from Tamarind Family Private Trust of the Mansukhani family (promoters of Onida).
Summary:
Jain has now asked for police protection.
Summary:
The External Affairs Ministry has clarified that it has not received any request from Congress President Rahul Gandhi to undertake Kailash Mansarovar Yatra.
Summary:
The CBI has filed a chargesheet against two former CMDs of Canara Bank in connection with alleged loan default of â¹146 crore by Jatin Mehta of Winsome Diamonds.
Summary:
A cup of coffee in Venezuela's capital Caracas now costs one million bolivars, equivalent to almost one-fifth of the monthly minimum wage.
Summary:
Earn up to 6%* interest p.a. with your Kotak 811: a digital bank account that can be opened any time of the day, from anywhere, by anyone.
Summary:
The shooting was "a targeted attack on the Capital Gazette", a police official said.
Summary:
Kalpataru has pre-launched another landmark project in Thane (W) with 2 & 3 BHK starting at â¹79 lacs*.
Summary:
Maria, the pilot of the chartered plane that crashed in Mumbai on Thursday had told her husband before take-off that the flight won't be flown due to bad weather.
The aviation company is responsible for this unfortunate incident", her husband said.
Summary:
Summary:
The Kohli-led side beat Dhoni's side 4-2 in the match.
Summary:
A Facebook representative attending the EC meeting stated that complaints can be filed against contents violating election laws which would be reviewed for removal as per global standards.
Summary:
NDA is and will remain intact in Bihar, union minister Ram Vilas Paswan on Thursday asserted after his talks with Bihar Chief Minister and JD(U) chief Nitish Kumar.
Summary:
Kroger, US' largest supermarket chain, is teaming up with Nuro, a two-year-old startup founded by two veterans of Google's self-driving car team, to launch a fully driverless delivery service.
Summary:
The girl, who was found in a pool of blood near her school, is currently in the hospital.
I want justice for my daughter," said the girl's father.
Summary:
Electricity bill defaulters in Puducherry have paid up â¹2.5 crore due to Lieutenant Governor Kiran Bedi's 'name and shame' policy.
Summary:
Uttar Pradesh Chief Minister Yogi Adityanath has ordered immediate suspension of two traffic constables for hitting a girl with a stick while checking vehicles in Lucknow's Gomti Nagar.
Summary:
The 38-year-old man who is suspected to have carried out the shooting in US newspaper Capital Gazette's office killing five, had sued the paper for defamation in 2012.
Summary:
Talking about reports stating that he was being targeted by the killers of journalist Gauri Lankesh, actor Prakash Raj said he is not afraid of the threats.
Summary:
A petition on South Korean President's official site has demanded the exemption of key national team football players from mandatory two years of military service after they defeated Germany in FIFA World Cup 2018.
Summary:
Tunisia on Wednesday defeated Panama in a match between the already-eliminated sides of 2018 FIFA World Cup Group G to register their first victory in the quadrennial tournament since 1978.
Summary:
Belgium will next face Japan, while England will play against Colombia.
Summary:
Personal information of about 120 million Facebook users was exposed for years by a quiz app called 'nametests.com', a security researcher has disclosed.
Summary:
Philip Frenzel, an engineer at Aalen University in Germany, has developed a case which protects the phone by bouncing back when it senses the phone is falling.
Summary:
Haryana-based online used-phone selling startup Cashify has raised $12 million led by China's equity firm CDH Investments and early-stage fund Morningside Ventures.
Summary:
Investment firm Tiger Global Management-backed e-commerce platform Roposo has posted a loss of â¹30.96 crore in the fiscal year 2016-17, compared to â¹40.24 crore in the previous year.
Summary:
In an ongoing lawsuit against ousted Tesla worker Martin Tripp, whom CEO Elon Musk called a saboteur, Tesla has requested access to Tripp's data from tech firms like Facebook and Dropbox.
Summary:
UK-based automaker McLaren has unveiled its McLaren 600LT coupe which is expected to be priced at $243,000.
Summary:
Japan has unveiled a 'Hello Kitty'-themed bullet train that will begin a three month run between the Osaka and Fukuoka cities on Saturday.
The train's first carriage named 'Hello!
Summary:
The female co-founder of South Korea's largest porn site Sora.net has been arrested for distributing or aiding the distribution of sex videos featuring minors, police said.
Summary:
This is the third straight year that Pakistani funds in Swiss banks exceeded that of Indians.
Summary:
Dia Mirza bought a poster of Sanjay Dutt's late mother Nargis Dutt starrer 'Mother India' for â¹1,45,000 during an auction.
"I thought it'd make a...special present for Sanjay Dutt and his family.
Summary:
Actress Priyanka Chopra attended Reliance Industries Chairman Mukesh Ambani's son Akash Ambani's pre-engagement festivities with her rumoured boyfriend Nick Jonas on Thursday.
Summary:
The Censor board has reportedly ordered makers of 'Sanju' to cut a scene in which Ranbir Kapoor, playing Sanjay Dutt, calls for help as the toilet in his prison cell starts overflowing.
Summary:
To choose between them, fair play points were considered and Japan finished second as they had two fewer yellow cards than Senegal.
Summary:
After their 0-1 defeat to Colombia, Senegal finished the Group H with identical points, goal difference and goals scored as Japan.
Summary:
Google Cloud's CEO Diane Greene on Wednesday admitted that Google lost to Microsoft in buying the world's largest collaborative coding platform GitHub.
Summary:
"The three have been summoned by the state party chief for a meeting in person," a BJP spokesperson said.
Summary:
Union Minister of State for Home Affairs Kiren Rijiju has said Congress should apologise to the country for its comments on the 2016 surgical strikes.
Summary:
PM Modi's nine-day trip to France, Germany and Canada was the costliest at over â¹31 crore.
Summary:
A door-to-door screening carried out by the government has detected almost 40,000 cases of cancer across 100 districts, data published in the National Health Profile 2018 has revealed.
Summary:
The National Commission for Women has claimed that the alleged gangrape of five NGO activists in Jharkhand was planned and executed in a professional way.
Summary:
Samajwadi Party leader Azam Khan on Thursday said Uttar Pradesh CM Yogi Adityanath and many others had told him that the Taj Mahal was originally a Shiva temple.
Summary:
A man allegedly assaulted his wife and 11-year-old son inside a courtroom of Delhi's Tis Hazari court on Thursday.
Summary:
The UK's Supreme Court has called the ban on civil partnerships for heterosexual couples discriminatory and granted a couple the right to the partnership.
Summary:
Pakistan's National Security Adviser Lieutenant General (retd) Nasser Khan Janjua resigned from the post on Wednesday amid differences with interim Prime Minister Nasirul Mulk, the local media reported.
Summary:
After seeing some vehicles passing by, he stops his first attempt at stealing the bulb and pretends that he is stretching.
Summary:
Reversing a three-year downtrend, Indians' money in Swiss banks rose about 50% to 1.01 billion francs (â¹7,000 crore) in 2017, official data showed.
Summary:
China is capping the salaries of actors as part of measures to curb tax evasion and control 'unreasonable' rates of pay in the film industry.
Summary:
Iranian forward Sardar Azmoun, who is nicknamed 'Iranian Messi', has retired from international football aged 23, saying insults aimed at him following Iran's 2018 FIFA World Cup exit ruined his mother's health.
Summary:
Cricket legend Sachin Tendulkar took to social media to urge people to play their favourite sport and invited them to share videos of themselves 'kitting up' as part of the 'KitUp Challenge'.
Summary:
Rohit Sharma and Shikhar Dhawan on Wednesday shared a 160-run stand against Ireland, recording the second highest partnership for India in T20Is. India's highest-ever T20I partnership of 165 runs was recorded by Rohit and KL Rahul against Sri Lanka in December 2017.
Summary:
Portuguese President Marcelo Rebelo de Sousa trolled his US counterpart Donald Trump after the latter joked that footballer Cristiano Ronaldo could beat him if he ever runs for presidency.
Summary:
UK-based healthcare startup Babylon Healthcare has claimed its artificial intelligence (AI) software, in tests, can assess common conditions more accurately than human doctors.
Summary:
The device analyses electrical current usage in appliances from single and multiple power outlets, the researchers claimed.
Summary:
"PM [Narendra] Modi is the most fake person.
Summary:
Around 10 lakh traders from across India will be protesting against the Flipkart-Walmart deal which is being organised by the Confederation of All India Traders (CAIT).
Summary:
This comes after the US Ambassador to the UN Nikki Haley asked PM Narendra Modi to reduce India's dependence on Iran.
Summary:
Speaking about facing sexism in Bollywood, Deepika Padukone on Thursday said, "I was advised...to get a boob job, do the beauty pageants." She added, "[The people who advised me] felt it was the right way to be recognised...by a Bollywood director or producer".
Summary:
This comes after reports said police identified the three attackers as two militants from Kashmir and one from Pakistan.
Summary:
Reliance Industries' Ambani family is the seventh-richest with $43.4 billion wealth.
Summary:
Manisha Koirala has revealed she had a "major crush" on Sanjay Dutt when she was a child.
Manisha further said, "He, in fact, teased me during one of my shoots saying, 'Why don't you have a crush on me now?' I said, 'Now, you're my colleague.
Summary:
KaiOS is a US-based project that started in 2017.
Summary:
NASA has revealed that the launch of James Webb Space Telescope has been postponed to March 2021 from October 2018, raising the developmental cost from $8 billion to $8.8 billion.
Summary:
The Delhi Police has recovered the knife used in the murder of Army Major Amit Dwivedi's wife Shailza near Meerut, as per reports.
Summary:
Eight officials in the town planning wing of the Jalandhar Municipal Corporation continue to report for duty despite being suspended by Punjab Local Bodies Minister Navjot Singh Sidhu.
Summary:
A UP-based man applied henna to his hair and combed it in a way to appear taller and pass the physical test for sub-inspector recruitment.
I had cleared the written test...and didn't want this opportunity to be wasted," said Ankit.
Summary:
The general manager of a hotel in Jaipur has been arrested for allegedly forcefully entering the room of two Mexican women tourists and molesting them.
Summary:
The report further said there might have been incidents where children were used as informants and spies by the security forces.
Summary:
Climate change will lower the living standard of 50% of South Asian population by 2050, with residents of central India being hit the worst, a World Bank report has revealed.
Summary:
The UK's largest wholesaler Booker has limited the sale of beer and soft drinks to 10 cases per customer a day amid a shortage of food-grade carbon dioxide in Europe.
Summary:
US President Donald Trump and his Russian counterpart Vladimir Putin will meet in Finland's capital Helsinki on July 16.
Summary:
Nirav Modi's firms allegedly received one Letter of Undertaking every two days from PNB for about seven years, the Enforcement Directorate chargesheet revealed.
Summary:
Germany goalkeeper Manuel Neuer conceded a goal in the injury time against South Korea in their 2018 FIFA World Cup match after leaving his goal unguarded and going to the opponent's half to help his team's attack.
Summary:
IBM's AI 'Watson' will select moments when players have a heightened sense of emotion after an exciting shot or rally.
Summary:
Bengaluru has claimed the second spot in the list of best locations for launching tech startups, according to research firm SmallBusinessPrices.co.uk.
Summary:
Talking about Elon Musk's artificial intelligence (AI) startup OpenAI's bots beating humans at the video game Dota 2, Microsoft Co-founder Bill Gates said, "That's a big deal." Adding that "their victory required teamwork and collaboration", Gates also said it is a huge milestone in advancing artificial intelligence.
Summary:
Beats Co-founders rapper Dr. Dre and Jimmy Iovine have lost a $25-million royalty lawsuit against Steven Lamar, an early developer of the headphone-making company.
Summary:
Relations between India and the US have grown from indifference and mutual suspicion to friendship and partnership, US Ambassador to the UN Nikki Haley said on Thursday.
Summary:
Seven CCTV cameras were not working at Delhi Chief Minister Arvind Kejriwal's residence on the night of the alleged attack on Chief Secretary Anshu Prakash.
Summary:
A truck carrying cattle was set on fire by a mob in Jammu and Kashmir's Ramban district.
The mob freed over two dozen cattle loaded in the truck and set the vehicle ablaze.
Summary:
Police have arrested a 32-year-old man on charges of raping a 75-year-old woman at her daughter's house in West Bengal's Burdwan district.
Summary:
Shireen al-Rifaie, a female reporter in Saudi Arabia has fled the country after an investigation was launched against her for wearing "indecent" clothes, the authorities said.
Summary:
The Goods and Services Tax investigation wing has detected tax evasion of â¹2,000 crore in two months, a senior official has said.
Summary:
This comes after a whistleblower alleged that ICICI inflated profits by at least $1.3 billion over 8 years by delaying provisioning for 31 bad loan accounts.
Summary:
Two pilots, two aircraft engineers and a pedestrian died in the crash.
Summary:
Madhya Pradesh's meteorological department has advised residents of four divisions in the state against using their mobile phones in the open until Friday to avoid being struck by lightning.
Summary:
This was one of 10 reasons Gitanjali Gems promoter Choksi stated for his non-appearance before the court.
Summary:
Tesla and SpaceX's billionaire CEO Elon Musk enrolled himself at the Stanford University in the US to study Physics when he was 24, however, he dropped out of the university within two days.
Summary:
Priyanka Chopra took to Instagram to share a picture with India's richest man and Reliance Industries Chairman Mukesh Ambani's son Akash Ambani and his fiancée Shloka Mehta from their mehendi ceremony held on Wednesday.
Such a beautiful ceremony...mehendi hai rachne wali...love you both," wrote Priyanka.
Summary:
The song, sung by Guru Randhawa, has been recreated for the upcoming romantic comedy film 'Nawabzaade'.
Summary:
Australia won the toss in each of their six matches (five ODIs, one T20I) but failed to register even a single victory against England in their recently concluded tour.
Summary:
As India played their 100th T20 international on Wednesday, former Team India captain MS Dhoni played his 90th T20I.
Summary:
Summary:
Cab-hailing startup Uber's US-based rival Lyft on Wednesday raised an additional $600 million in Series I financing round led by Fidelity Management & Research Company, taking its valuation to $15.1 billion.
Summary:
The Delhi Metro may be shut from June 30 as Delhi Metro Rail Corporation's non-executive staff including train operators, technicians and maintenance staff have threatened to go on a strike.
Summary:
A man in Andhra Pradesh's Kurnool allegedly tried to sell his wife and children for â¹5 lakh to settle a â¹15-lakh debt.
Summary:
Adding that the US will impose more sanctions against Iran, Haley asked India to reduce its dependence on the country.
Summary:
ASWJ's offshoot Lashkar-e-Jhangvi has claimed responsibility for several terror attacks against Shias in Pakistan.
Summary:
Chinese President Xi Jinping on Wednesday told US Defence Secretary James Mattis that his country will not give up "even one inch" of territory left behind by the ancestors.
Summary:
It then used the natural language processing to cluster the elements according to their chemical properties.
Summary:
The judge also ruled against ZeniMax's request for a ban on the sale of Oculus' products.
Summary:
Instagram has launched a 0.5 MB Lite app for low-end Android devices, which is 1/55th the size of Instagram's 32 MB main app.
Summary:
After Congress criticised the video of the 2016 surgical strikes, Union Law Minister Ravi Shankar Prasad on Thursday said Congress is a fringe party and not a mainstream one.
Summary:
Reacting to the survey ranking India as the most dangerous country in the world for women, Congress leader Shashi Tharoor called it a "sweeping statement" which is "a bit difficult to swallow".
Summary:
Referring to Baba Ramdev and Sadhguru Jaggi Vasudev tweeting about Sterlite copper plant in Tuticorin, Tamil Nadu Fisheries Minister D Jayakumar said, "We don't care about their views." He added that the plant is permanently closed and the government won't reconsider their decision.
Summary:
Andhra Pradesh CM Chandrababu Naidu has requested the appointment of a sitting High Court judge to look into the allegations of theft of antique jewellery from the Venkateswara Temple in Tirumala.
Summary:
Abbasi was found guilty of not declaring his assets accurately.
Summary:
The country's largest lender State Bank of India (SBI) is in the process of closing down nine foreign branches as part of rationalisation of overseas operations.
Summary:
Jio had adjusted gross revenue (AGR) of â¹6,217 crore in the March quarter compared to Vodafone India's â¹4,937 crore.
Summary:
Chanda Kochhar-led ICICI Bank issued hundreds of Letters of Credit (LCs) to corporate borrowers to help them avoid loan defaults, a whistleblower has alleged.
Summary:
The plane, earlier owned by the Uttar Pradesh government, belonged to UY aviation, a Mumbai based company.
Summary:
The Rupee opened at an all-time low of 68.89 against US dollar on Thursday and further went on to breach the 69 mark for the first time ever, reaching 69.09.
Summary:
A jury had earlier ordered Samsung to pay Apple $539 million in damages for copying the iPhone's design and features.
Summary:
An 11-year-old boy, Mohammad Abdullah, from Pakistan-occupied Kashmir (PoK) was on Wednesday sent back with a set of new clothes and a box of sweets after he mistakenly crossed into the Indian side.
Summary:
The meeting will now be held on new mutually-convenient dates in India or US.
Summary:
Actress Mahie Gill has revealed that she feels very nervous about giving auditions while adding, "If anybody offers me for a role and asks me to audition for it, I leave that film." "The moment that word audition comes...I forget everything," she added.
Summary:
The teaser of Sonam Kapoor and Anil Kapoor starrer 'Ek Ladki Ko Dekha Toh Aisa Laga' has been released.
Summary:
Anupam Kher has shared a picture of Aahana Kumra and Arjun Mathur, who'll be seen portraying Priyanka Gandhi and Rahul Gandhi in former Prime Minister Manmohan Singh's biopic 'The Accidental Prime Minister'.
Summary:
The official trailer of John Abraham starrer 'Satyamev Jayate' has been released.
Summary:
Winners of 1934 and 1938 FIFA World Cups, Italy were eliminated in first round of 1950 edition, played after a 12-year gap due to World War II.
Summary:
Former Lok Sabha speaker and CPI(M) member Somnath Chatterjee is in critical condition after he suffered a hemorrhagic stroke and was admitted to a Kolkata hospital on Monday.
Summary:
An Australian-Turkish team has discovered "space grease" in the Milky Way galaxy, enough for 40 trillion trillion trillion packs of toxic butter, by recreating the carbon-based compounds in laboratory.
Summary:
The 'stealth sheet' can hide warm objects like human bodies or military vehicles from night vision infrared cameras, noted researchers.
Summary:
Haryana government has asked all its male employees to submit a record of all the property and money that they receive from their in-laws when they get married.
Summary:
Mallya said that he has "always had honest intentions to settle" and there is "ample proof".
Summary:
Germany's Mesut ÃÂzil had a verbal altercation with fans as he walked off the pitch after his team crashed out of the World Cup from group stage for the first time ever, following a 0-2 defeat against South Korea.
Summary:
Hundreds of Mexican fans arrived at the South Korean embassy in Mexico City on Wednesday to celebrate the Asian country's World Cup win over Germany which ensured Mexico's place in the last 16 despite 0-3 defeat to Sweden.
Summary:
PM Narendra Modi said, "It is the greed for power that those who imposed and those who opposed Emergency have come together today.
Summary:
After the release of video footage of the surgical strikes by the Indian Army, Congress spokesperson Randeep Surjewala accused the PM Narendra Modi-led government of using the strikes to win votes.
Summary:
The Supreme Court has allowed the government to probe allegations of disproportionate assets against Enforcement Directorate officer Rajeshwar Singh, who is investigating the 2G and Aircel-Maxis cases.
Summary:
The Delhi Police will reportedly file a chargesheet against Delhi CM Arvind Kejriwal and Deputy CM Manish Sisodia in connection with the alleged assault on Chief Secretary Anshu Prakash.
Summary:
The police said the two women, whose bodies have been sent for post-mortem, were between 25 to 30 years of age.
Summary:
BJP MP Subramanian Swamy has accused the Congress of conspiring against PM Narendra Modi to "sabotage" the probes of several cases, including the National Herald scam and Aircel-Maxis deal.
Summary:
After the US government told India and other countries to cut oil imports from Iran to "zero" or face sanctions, the Congress asked Prime Minister Narendra Modi if India would adhere to the order.
Summary:
Speaking at the inauguration of several initiatives including the 'Dial 100' system, Maharashtra Chief Minister Devendra Fadnavis told police personnel, "You deal with people from all walks of life, be sensitive towards them.
Summary:
Godrej Group Chairman Adi Godrej has said the government should not seek to reduce the number of GST slabs.
Summary:
The video footage of the surgical strikes by the Indian Army in Pakistan was made public on Wednesday, nearly two years after it was carried out.
Summary:
The group winner will then be decided on fair play, with team accumulating lesser cards finishing first.
Summary:
The film will also star actors like Margot Robbie and Al Pacino.
Summary:
Priyanka, who has also featured on the cover of the magazine's June-July edition, won the title for the fourth time by topping its Hot 100 list.
Summary:
Actor Amitabh Bachchan has revealed that he was mistaken for Salman Khan in Glasgow, Scotland.
Summary:
'Sanju' producer Vidhu Vinod Chopra, while speaking about wanting to cast Ranveer Singh as Sanjay Dutt instead of Ranbir Kapoor, said, "In retrospect, let's say I'm foolish." "At that time, I really felt like maybe he's not right...But what this guy has done, I don't think anybody could have," Chopra added.
Summary:
Apart from the CWG gold medal, this was Manu's seventh ISSF individual gold in the year, third with a world record.
Summary:
Police have started investigating the matter after the missing jawans' commander lodged an FIR stating they were 'absent without leave'.
Summary:
One of the three suspects identified by the police in Rising Kashmir editor Shujaat Bukhari's murder case is the LeT militant who escaped from a Srinagar hospital in February.
Summary:
He further claimed they had called for 18% and 40% rates and said the cesses are a way to implement the 40% rate.
Summary:
The Maharashtra government does not have the rules to regulate the food prices at cinema halls in the state, it has told the Bombay High Court.
Summary:
German defender Mats Hummels took to Twitter to apologise as defending champions Germany crashed out of FIFA World Cup in group stage for the first time ever on Wednesday.
Summary:
Summary:
Summary:
Expressing concerns over the Ola-Uber merger, the Competition Commission of India (CCI) has said that it "shall not hesitate to take action" if the startups are found to be competing less vigorously.
Summary:
Union Environment Minister Harsh Vardhan has said that the Centre did not give permission for the mass felling in South Delhi for the re-construction project of several colonies.
Summary:
Amid speculation of DMK joining the third front for the 2019 Lok Sabha elections, the DMK has declared that it will continue its ties with the Congress.
Summary:
One of the accused in Gauri Lankesh murder case has agreed to undergo a narco-analysis test, the accused's lawyer said.
Summary:
A Kerala government school principal has issued a circular stating that students who wear religious symbols like kumkum on the forehead or sacred threads on their wrists will be expelled.
Summary:
Summary:
Summary:
An eight-year-old girl was allegedly abducted and raped before being abandoned at a secluded place in Mandsaur, Madhya Pradesh on Wednesday morning.
Summary:
A video of the assault emerged on social media, following which the police said they would identify and apprehend the accused.
Summary:
In his keynote address at a cyber warfare conference, Army chief General Bipin Rawat said, "We must exploit cyberspace to our advantage.
Summary:
BJP on Wednesday said fraud-accused liquor baron Vijay Mallya wants to repay money to banks, not because of a change of heart, but because the law is catching up.
Summary:
The building, in which Air India occupies six floors, generates an annual rent of â¹100 crore.
Summary:
Conagra would become the second-largest US frozen food company behind Nestle after the deal's completion.
Summary:
Joe Jackson shaped and promoted 'Jackson 5' band comprising his five sons including Michael Jackson.
Summary:
The match witnessed openers Rohit and Shikhar Dhawan register a 160-run partnership, the second highest for India in T20I cricket.
Summary:
In the film's trailer, Ranbir's character can be heard saying he has slept with '308 women without counting prostitutes'.
Summary:
After Uttar Pradesh Police lathicharged Congress workers in Lucknow, state Congress chief Raj Babbar said that CM Yogi Adityanath has been using the police as bouncers.
Summary:
It became a statutory body with 1956 University Grants Commission Act, with the responsibility of maintaining higher education standards and allocating funds to institutes among others.
Summary:
The accused went on leave after the victim filed a complaint recently, the police said.
Summary:
A relative of Sabad's wife said he seemed radicalised and talked about "holy war".
Summary:
Deputy Commissioner of Police (West Delhi), Vijay Kumar, has said that Army Major Nikhil Handa, who is accused of killing another Army Major's wife Shailza Dwivedi, is giving them misleading information "day after day".
Summary:
However, the newborn died while being rushed back to the hospital, they added.
Summary:
No work has been started on any of the 13 AIIMS approved by the Centre in the last four years, the reply to an RTI query has revealed.
Summary:
A relative of former Union Finance Minister P Chidambaram was killed by a three-member gang, days after he was abducted from his luxury car near the Vellore highway.
Summary:
The man, identified as Abhishek, invited her to his place and assaulted her, the police added.
Summary:
Further, Marathi has replaced Telugu as the third most spoken language in the nation.
Summary:
The US and Russia have reached an agreement to hold the summit between US President Donald Trump and his Russian counterpart Vladimir Putin in a "third country", Russian presidential aide Yuri Ushakov said.
Summary:
Sweden on Wednesday thrashed Mexico 3-0 in their last Group F fixture to advance to the next round of 2018 FIFA World Cup as the winners of their group.
Summary:
Brazil on Wednesday defeated Serbia to top Group E and advance to the next round of 2018 FIFA World Cup. With this, Brazil have now won their group for 10 straight World Cup editions and have qualified for the last 16 for 13th time in a row.
Summary:
Former Indian cricketer Virender Sehwag took to Twitter to wish South African pacer Dale Steyn on the occasion of the latter's 35th birthday on Wednesday, saying "grass always seemed greener whenever Steyn bowled".
Summary:
Former Team India captain MS Dhoni and batsman Suresh Raina have become the only two cricketers to feature in both India's first-ever and 100th T20I.
Summary:
Switzerland will face Sweden in the next round on Tuesday.
Summary:
Twenty three-time Grand Slam champion Serena Williams has been seeded 25 for this year's women's singles event by the organisers despite being world number 183.
Summary:
Canada-based Dean Lubaki has sued Apple over scratches on his Apple Watch, alleging the company's claim that the watch is "brilliantly scratch-resistant" is misleading.
Summary:
Aerospace company Boeing has unveiled its hypersonic jet concept which would be capable of flying from the UK to the US within 2 hours.
Summary:
AAP government has written to Union Power Minister R K Singh stating that Delhi may face a power blackout as its coal reserves will last for over a day.
Summary:
UK-based car manufacturer Aston Martin on Tuesday debuted its DBS Superleggera coupe, priced at $304,995.
Summary:
Around 100 passengers held up a train at a Haryana station for an hour while protesting against unclean coaches and dirty toilets.
Summary:
Summary:
Kenichiro Okamoto was allegedly killed by a man he had argued with online.
Summary:
Defending champions Germany have been knocked out of the World Cup in the group stage for the first time in history after losing 0-2 to South Korea on Wednesday.
Summary:
ICC revealed findings of the largest-ever market research conducted in cricket, deducing that the sport has over one billion followers globally, with the average fan being 34 years old.
Summary:
PlayerUnknownâÂÂs Battlegrounds (PUBG) dropped its copyright infringement lawsuit against Epic Games' Fortnite on Monday, the company has confirmed.
Summary:
TaxiForSure Co-founder Raghunandan G in an interview on Wednesday said, "We're not movie actors or cricketers that need to give one hit film or inning after another." He was speaking over his plans of not setting up another startup after TaxiForSure was acquired by Ola in 2015.
Summary:
The app showed messages mimicking the original Paytm alert saying that the payments have been made to the shopkeepers.
Summary:
The carton belonged to a Gurgaon-based company from where the police found a man to whom it was delivered.
Summary:
Mumbai-based Manoranjan S Roy, who filed the RTI which revealed that notes worth â¹3,118 crore were deposited in BJP-linked Gujarat banks after demonetisation, said he's not worried if he dies telling the truth.
Summary:
The Uttarakhand High Court has ordered the state government to set the limit of loudspeakers at 5 dB(A).
Summary:
A 21-year-old Dalit woman in Bihar's Muzaffarnagar was sexually assaulted by a youth while her mother was attacked for opposing him on Tuesday.
Summary:
North Korea is "rapidly" upgrading its only known nuclear reactor despite its deal with the US to completely denuclearise the Korean Peninsula, reports citing satellite imagery claimed.
Summary:
Items seized from six premises linked to former Malaysian Prime Minister Najib Razak have been valued at $273 million (over â¹1,870 crore), the authorities said.
Summary:
Defending his decision to impose retaliatory tariffs on foreign goods, US President Donald Trump cited India as an example of those countries imposing 100% tariffs on American products.
Summary:
Bobby Deol has said his main aim in life is to work hard and get good projects while adding, "It doesn't matter if I'm playing the main lead or not." "I'm just looking forward to getting good characters to play and some great subjects to be a part of," he said.
Summary:
The survey findings further revealed that 87% of fans want T20 cricket in Olympics and 70% want to see more live coverage of women's cricket.
Summary:
The footballer later demanded an apology from the coach as he didn't select her "just because of one loss".
Summary:
Technology giant Google has announced a four-month accelerator program to train gaming startups from India and other Southeast Asian countries in launching and marketing their mobile games.
Summary:
Facebook is testing a feature to allow users to "snooze" specific keywords so that the posts containing those keywords won't be displayed in the News Feed.
Summary:
Farmers' outfit Swabhimani Shetkari Sanghatana (SSS) leader Raju Shetti today said the outfit is keen on joining hands with the Shiv Sena if it quits the NDA government at the Centre and the BJP-led dispensation in Maharashtra.
Summary:
Tesla's rival electric carmaking startup Faraday Future has announced a $2-billion equity funding round from China's Evergrande Health in exchange for a 45% stake.
Summary:
The Gurugram police have arrested a member of a gang that would allegedly rob people after offering them lifts.
Summary:
Nashik Municipal Corporation has sent a notice to Hindu activist Sambhaji Bhide, asking him to name childless couples who were blessed with sons after eating mangoes from his farm.
"180 childless couples took the fruit from me...Some women who ate my farm's mangoes gave birth to sons," Bhide had claimed.
Summary:
"With Shillong as the transit point, many players, some with militant background or affiliations, are involved in the drug trafficking business to fund their anti-social activities," it added.
Summary:
The Income Tax Department has directed Congress leader Sonia Gandhi's son-in-law Robert Vadra's Skylight Hospitality to pay arrears worth â¹25.8 crore for the assessment year 2010-2011.
Summary:
A group of activists is planning to float a six-metre-high inflatable 'Trump Baby' balloon in London during the US President's visit to the country.
Summary:
Singapore may deny entry to foreign tourists who do not have required vaccinations, in a bid to curb the spread of infectious diseases.
Summary:
The Indian rupee on Wednesday touched a 19-month low of 68.67 against the US dollar and closed at 68.63.
Summary:
The minimum required score in the Yo-Yo fitness Test for Indian players is 16:1, the lowest among most cricketing nations.
Summary:
A new law which entitles women working in India's organised sector to 26 weeks paid maternity leave, may actually lead to 10-12 million losing jobs across sectors, a survey has revealed.
Summary:
Amul has won a 20-year-old case against an Ahmedabad-based private dairy that was selling pouched milk under the brand names of 'Anul Taaza' and 'Anul Shakti'.
Summary:
Actress Kiara Advani, while speaking about her orgasm scene in the film 'Lust Stories', said she didn't look at the scene "awkwardly" while adding that she completely "went by the vision of the director".
Summary:
Rashtriya Janata Dal (RJD) chief Lalu Prasad Yadav's elder son and former Bihar Health Minister Tej Pratap Yadav on Wednesday shared the poster of his first Hindi film, 'Rudra- The Avatar'.
Summary:
While talking about Ola's takeover of his startup in an interview, TaxiForSure's Co-founder Raghunandan G on Wednesday said, "Our identity was taken away".
Summary:
The police has arrested the manager of a Central Bank of India branch in Maharashtra who asked for sexual favours from the wife of a farmer seeking farm loan earlier this month.
Summary:
Odisha government's secretary has denied receiving complaint from the Rashtrapati Bhavan about President Ram Nath Kovind and his wife being harassed during their visit to Puri's Jagannath temple.
Summary:
No private manufacturer will be allowed to manufacture Oxytocin for domestic use from July 1, as per the government.
"This is an effort to check misuse of Oxytocin by dairy operators, farmers," a government official said.
Summary:
As per a study in Brookings blog, India is no longer home to the largest number of extreme poor, being replaced by Nigeria.
Summary:
Health Ministry was slammed on Twitter after it tweeted a poster on ways to cope with depression.
Summary:
The law bans wearing the veils in educational and government institutions, hospitals and on public transport, but not on streets.
Summary:
A Fortis Healthcare subsidiary granted loans worth â¹445 crore to three firms affiliated with former promoters Malvinder and Shivinder Singh despite management objections.
Summary:
Actress Shraddha Kapoor, who will be seen opposite actor Rajkummar Rao in the film 'Stree', said it was a "dream come true" to work with Rao.
Summary:
A video of Argentina captain Lionel Messi revealing he wore a 'lucky charm' amulet given to him by a reporter during his team's victory in the World Cup do-or-die match against Nigeria has surfaced online.
Summary:
Former Sri Lanka captain Kumar Sangakkara, in a recent interview, revealed that he and Mahela Jayawardene "barely spoke about batting" and instead talked about food and retirement during their record 624-run stand.
Summary:
India ranked fourth in the list of top 10 target countries for Web Application Attacks globally since November 2017, according to Akamai Technologies.
Summary:
Each image will have captions along with badges describing what those images are, such as a product or a video.
Summary:
Uttar Pradesh Chief Minister Yogi Adityanath has directed the state police not to conduct raids or serve warrants at night, except in cases of serious crimes.
Summary:
German automaker Audi has postponed the launch of its electric SUV, e-tron quattro, which was scheduled at the end of August.
Summary:
Five youths, between 18 and 23 years of age, were killed when a car fell into a deep gorge in a village near Shimla on Tuesday night.
Summary:
A 62-year-old bus driver was allegedly bludgeoned to death with a brick by a man in Bulandshahr, Uttar Pradesh.
Summary:
A 70-year-old Indian-origin woman has been allegedly murdered at her home in Singapore by a Myanmarese maid, the police has said.
Summary:
The US has threatened to impose sanctions against Turkey if it purchases S-400 missile systems from Russia.
Summary:
Austria on Tuesday conducted a migrant-control drill at its border with Slovenia.
Summary:
The Ministry of External Affairs has written to select European countries seeking help from them to locate Nirav Modi, as per reports.
Summary:
Army Major Nikhil Handa called one of his three girlfriends in Delhi and confessed he allegedly murdered his colleague Army Major Amit Dwivedi's wife Shailza, Delhi Police said on Wednesday.
Summary:
Actress Priyanka Chopra won't be charging any remuneration for her upcoming film 'Bharat', as per reports.
Summary:
One of them is the victim of the incident in which Dileep is accused.
Summary:
The video shows a bleeding Imran being carried by a group of men.
Summary:
At least six people, including four TMC leaders, were killed after a bus rammed into their car in West Bengal's Murshidabad district on Wednesday.
Summary:
The test also revealed the mummy was 98.5% "primate" and 1.5% "unknown", a similar genetic makeup found in modern-day humans.
Summary:
Rajasthan labour department has directed its employees to not come to office wearing jeans and T-shirts.
Summary:
Police arrested three of the five youths accused of gangraping a minor Class 12 girl for three days in Himachal Pradesh's Manali.
Summary:
While three corridors of phase four of the Delhi metro were approved at an estimated cost of â¹29,000 crore, two Kanpur metro corridors were approved at â¹16,192 crore.
Summary:
After the Home Ministry issued guidelines that even ministers needed approval to meet PM Narendra Modi, the ministry on Wednesday said the guidelines are not new but are reiterated periodically.
Summary:
Both the pilots in the aircraft ejected safely, officials said.
The aircraft is a production of the Hindustan Aeronautics Limited (HAL).
Summary:
The tweet, which was later deleted, contained a link to a website named "isjustintrudeauonvacation" that reports on Trudeau's trips.
Summary:
His sister is reportedly Pakistan's first visually impaired civil servant.
Summary:
US chipmaker Intel's interim CEO Bob Swan, who replaced Brian Krzanich, told the company's employees that he doesn't want the job permanently, according to reports.
Summary:
Public sector banks accounted for over 85% of total fraud cases reported in the banking system in 2017-18, according to an RBI report.
Summary:
Former Sri Lankan captain Kumar Sangakkara, in an episode of What The Duck, revealed Muttiah Muralitharan would wake him up to watch cartoons when they were roommates during tours.
Summary:
Google is rolling out personalised features to Maps which will recommend location-based restaurants, cafes or bars to users.
Summary:
"Income Tax has directed Robert Vadra to pay arrears for the year 2010-11," Patra said.
Summary:
Reacting to reports that BJP President Amit Shah's rally posters were removed in Kolkata, party MP Roopa Ganguly said, "Doing something like that is quite stupid as far as state government is concerned." "I don't think CM has instructed something like this.
Summary:
The world's largest fusion device of the stellarator type, Germany's Wendelstein 7-X has achieved record fusion triple product, which combines plasma temperature, density and its confinement time.
Summary:
Mumbai Police posted a meme on Twitter on Wednesday, urging women to block people harassing them with messages such as "hey der, nycc dp, dea!" and "Gimme ur address, will hangout sumtym".
Summary:
She had reportedly been scolded by her employers as they suspected her of stealing several silver coins.
Summary:
After three policemen posted at BJP MP Kariya Munda's residence were abducted, the MP said there was "no doubt" it was done by the 'Pathalgarhi' community to establish their rule.
Summary:
A woman in California, US threatened to report an 8-year-old black girl to the police for "illegally" selling water outside her house.
Summary:
US ambassador to the UN Nikki Haley, who is on a two-day visit to India, said, "It makes my heart happy to be back...it is as beautiful as I remember it to be." Haley is on her first visit to India after she took over as the US envoy to the UN.
Summary:
Tata Sons on Tuesday said that its nominee director R Venkataramanan will continue to serve on the board of AirAsia India, which is being probed by the CBI for corruption.
Summary:
The Centre on Wednesday announced a total overhaul of the University Grants Commission Act and a new legislation to set up the Higher Education Commission of India (HECI).
Summary:
Argentina captain Lionel Messi scored his international career's 65th goal in the World Cup group stage on Tuesday, overtaking Indian football team captain Sunil Chhetri's tally of 64 goals.
Summary:
Facebook, which was working on the plan since 2014, held "technical and geographical limitations" responsible for its decision.
Summary:
The National Commission for Women on Tuesday rejected a Thomson Reuters Foundation survey that claimed that India is the most dangerous country in the world for women.
Summary:
Actress Priyanka Chopra, in an Instagram story, shared a picture of her rumoured boyfriend, American singer Nick Jonas and her brother Siddharth Chopra from their vacation in Goa. The story was captioned "My Favourite Men" followed by a heart-eye emoji.
Summary:
A new song titled 'Zingaat' from Janhvi Kapoor's debut film 'Dhadak' has been released.
It is the Hindi version of the original Marathi song from the film 'Sairat'.
Summary:
Argentine captain Lionel Messi's first 2018 World Cup goal in the do-or-die match against Nigeria has made him the only player to score in the tournament finals as a teenager (2006), in his twenties (2014) and thirties (2018).
Summary:
Rojo had also scored the winning goal against Nigeria in 2014 World Cup group match (3-2), which saw Messi scoring two.
Summary:
Summary:
Sixteen-year-old Indian shooter Saurabh Chaudhary on Tuesday set a new world record and won a gold in the 10m air pistol event in the ISSF Junior World Cup in Germany.
Summary:
The Bombay High Court on Tuesday said the time has come to remind politicians to not act and create an impression that institutions like RBI, ED and CBI are their puppets.
Summary:
The first batch of nearly 3,000 pilgrims in a fleet of around 110 vehicles left the base camp in Jammu for the annual 60-day pilgrimage to Amarnath on Wednesday.
Summary:
Jammu and Kashmir police have identified the three attackers who shot and killed senior journalist and 'Rising Kashmir' editor Shujaat Bukhari.
Summary:
The accused revealed they gangraped the activists to teach them a lesson, police said.
Summary:
At least two infants died and four were in a critical condition allegedly because of dysfunctional air conditioning system due to voltage fluctuation at a civil hospital in Haryana's Panipat.
Summary:
More than 2,300 migrant children have been separated from their parents since May.
Summary:
Senior government officials have reportedly refused to use electric vehicles (EVs) made by Mahindra and Mahindra, and Tata Motors citing low mileage and poor performance.
Summary:
Actress Manisha Koirala, while praising her 'Sanju' co-star Ranbir Kapoor, said, "I have a feeling Ranbir is out for a bigger game than just being a 'superstar'." "He is the best for years to come.
Summary:
When asked whether former Indian players would have cleared the Yo-Yo test, Kapil Dev said, "Sunil Gavaskar may not have enjoyed running more than 15 minutes...but he could bat for three days.
Summary:
Referring to Congress, Union Minister and BJP MP Giriraj Singh said, "Those who eat pizzas worth â¹30,000 will not be able to see a job worth â¹12,000." Adding they can only see "pakora and shoe-makers" but not employment, he said, "We have given jobs to four crore people.
Summary:
The battery of a Tesla model S car re-ignited twice after it crashed last month in the US, according to the National Transportation Safety Board (NTSB).
Summary:
Following its appeal to a London court, the US-based ride-hailing startup Uber has won a 15-month probationary license to operate in the city.
Summary:
Army chief General Bipin Rawat has said that the recent report released by the United Nations on alleged human rights violations in Kashmir was 'motivated'.
Summary:
The accused gagged the girl with a piece of cloth and fled the scene, leaving her in a critical condition.
Summary:
Prime Minister Narendra Modi on Wednesday said that social security cover has been extended to 50 crore people in the country, which is a ten-fold increase since 2014.
Summary:
A 45-year-old woman beggar in Gujarat's Ahmedabad was hacked to death and three others were injured after being attacked by a mob on suspicion of being child-lifters on Tuesday.
Summary:
When the victim's parents intervened, the accused thrashed them too.
Summary:
Argentine legend Diego Maradona had to be assisted from his seat and treated by paramedics at St Petersburg Stadium in Russia during Argentina's 2-1 win against Nigeria in a do-or-die World Cup match on Tuesday.
Summary:
An audio message believed to be from Hizbul Mujahideen commander Riyaz Ahmad Naikoo has assured pilgrims going on Amarnath Yatra that they won't be attacked, since they are "guests".
Summary:
Speaking about Kerala High Court's verdict on 'Grihalakshmi' magazine cover wherein it refused to categorise the cover as 'obscene', television actress Divyanka Tripathi said, "Women's breasts are meant to feed a child." "A mother is a mother.
Nothing can be obscene about [a mother] feeding her child," she added.
Summary:
The film also stars Malayalam actor Dulquer Salmaan and Mithila Palkar and marks Dulquer's Bollywood debut.
The film is reportedly a story about three people from different walks of life meeting on a road trip.
Summary:
Talking about her recent trip to Goa with cousin Priyanka Chopra and her rumoured boyfriend Nick Jonas, Parineeti Chopra said, "It was like a family trip and there were friends with us too." "So it was a friends and a family trip actually," she added.
Summary:
Needing nothing less than a win in the last round of the 2018 World Cup group stage, Argentina captain broke the deadlock in the 14th minute with a right-footed finish against Nigeria on Tuesday.
Summary:
Summary:
Taking note of an attempted arrest inside a Tiruppur court, the Madras High Court said arrests inside court premises cannot be tolerated as it was against the Supreme Court guidelines.
Summary:
Students of a government high school in Karnataka's Alaghatta village travelled over 250 km to meet CM HD Kumaraswamy on Monday to request him to not shut their school down.
Summary:
Earlier, members were allowed to withdraw all their funds and settle the account in one go after two months of unemployment.
Summary:
A pregnant woman was allegedly strip-searched by CISF lady personnel at the Guwahati Airport on Sunday to confirm her pregnancy.
Summary:
At least six Jaguar Force jawans have been martyred and several injured in a landmine blast carried out by Naxals in Jharkhand on Tuesday.
Summary:
A woman died while trying to stop a fight between her partner and a waiter over a sauce at a Mumbai eatery.
Summary:
An Indian-origin man was sentenced to 20 months in prison in the UK for posting anti-Muslim tweets, including one in which he claimed he wanted to "slit a Muslim's throat".
Summary:
Ranbir Kapoor, while praising actor Amitabh Bachchan, said, "Amit ji has been working for 49 years, he's probably the biggest superstar ever born in the world." "But till today, the humility, hard work, passion he shows, it is quite amazing and inspiring for me as a young actor," he added.
Summary:
After scoring for the first time in the 2018 FIFA World Cup, Argentine captain Lionel Messi said, "I knew that God was with us and would not leave us out." "I don't remember having ever suffered so much...because of what was at stake.
Summary:
Love the Nigerian team but have to have Argentina in the play offs." Other tweets read "Maradona has been possessed...by the spirit of Pablo Escobar" and "Messi goal and Maradona reaction...made my day.
Summary:
The PM had pitched for simultaneous polls to ensure smooth functioning of the governments.
Summary:
The Indian Revenue Service (IRS) Association has written to Prime Minister Narendra Modi saying IRS officers are also domain experts but only the IAS officers are chosen for empanelment, secretary and additional secretary positions.
Summary:
BJP MLA Raja Singh on Tuesday said that he would resign from the party and start his "own war" if the Ram Temple is not built by 2019.
Summary:
Police also arrested seven pub staffers for trying to supress the incident.
Summary:
On the occasion of International Day Against Drug Abuse and Illicit Trafficking, Karnataka Deputy CM G Parameshwara on Tuesday announced a new toll-free number 1908 to report drug activity.
Summary:
Construction company NBCC allegedly continued felling trees in Delhi despite a stay till July 4 by the Delhi High Court on Monday.
Summary:
The issues raised $3.9 billion, accounting for 5% of the global proceeds, the report further stated.
Summary:
McDonald's, Burger King and Starbucks are among the companies fined in Mumbai for violating a new state-wide ban on single-use plastics.
Summary:
Lionel Messi scored his first goal at the 2018 FIFA World Cup as Argentina defeated Nigeria 2-1 in their last Group D match to advance to the next round.
Summary:
India's largest banking fraud of â¹14,000 crore was orchestrated by Nirav Modi.
Summary:
A 35-year-old man named Ramesh who stole â¹80 lakh from a Mumbai courier firm was arrested by police from Uttar Pradesh's Vrindavan, where he had organised a feast for the poor.
Summary:
The 2018 FIFA World Cup has broken the all-time WC record for penalties, with 20 spot-kicks being awarded in the group stage itself.
Summary:
Speaking on the Emergency imposed by then PM Indira Gandhi on June 25, 1975, PM Narendra Modi said singer Kishore Kumar was blacklisted then since he refused to sing for Congress.
Summary:
Prime Minister Narendra Modi on Tuesday said Congress' motion to impeach Chief Justice of India Dipak Misra shows "their mentality now is the same as it was during Emergency".
Summary:
Reports suggest that the passport of the woman who alleged harassment by a passport officer for her interfaith marriage in Lucknow may be seized.
Summary:
In draft amendments to the Food Safety and Standards Act, the country's food regulator FSSAI has proposed life imprisonment and a penalty of at least â¹10 lakh for those adulterating food products.
Summary:
Pune-based engineer Aman Khan has alleged he was "forced" to resign from his company after he complained about harassment over his "religious practices".
Summary:
Prince William will also meet Palestinian President Mahmoud Abbas which will mark the first royal visit to the West Bank.
Summary:
Rajkumar Hirani has said that if Sanjay Dutt would have played his older self in his upcoming biopic 'Sanju', it would have been abrupt and weird.
Summary:
Summary:
Summary:
Croatia won all three of their group stage matches at a World Cup for the first time after knocking out Iceland from the 2018 FIFA World Cup with a 2-1 victory on Tuesday.
Summary:
France and Denmark played out a 0-0 draw on Tuesday, producing the first goalless match in the 2018 FIFA World Cup after 12 days.
Summary:
Peru defeated Australia 2-0 in a Group C fixture on Tuesday to end their eight-match winless streak in World Cup and register their first victory in the quadrennial tournament since 1978.
Summary:
Kolkata Police shared a meme taking a dig at Lionel Messi's penalty miss from the World Cup match against Iceland to warn traffic defaulters.
In the meme, the picture of Messi's penalty miss is placed next to an image of a cop issuing fine to a helmet-less biker.
Summary:
Wicketkeeper-batsman Jos Buttler, who slammed 110*(122) to help England beat Australia by one wicket in the fifth ODI, has said that he was thinking about what MS Dhoni would do in that situation while batting.
Summary:
High Wycombe then lost their last three wickets in the last over's first five balls, losing the match by one run.
Summary:
Team India all-rounder Hardik Pandya tried to interview MS Dhoni on flight but was trolled by the former captain.
Summary:
BJP President Amit Shah has said, "I am the chief of a party which allowed a worker like me, who used to paste posters, to eventually become the party President." BJP organises internal elections after every three years, he added.
Summary:
Claiming Bihar Chief Minister Nitish Kumar was feeling "uncomfortable" in the BJP-led NDA, Opposition Leader Tejashwi Yadav has said "the door is closed" for his return to the Grand Alliance.
Summary:
In his third post on Emergency, union minister Arun Jaitley on Tuesday said that the CPI was an unashamed supporter of the move as it had asserted that "Emergency was a war on fascism".
Summary:
The woman, who alleged harassment by a passport officer for her interfaith marriage, didn't stay in Lucknow for a year as mentioned in her passport application form, said the police.
As per rules, applicants should reside at the address in passport form for at least one year.n
Summary:
Discussing the imposition of Emergency in 1975, BJP President Amit Shah said, "India has deep roots in democracy...
Summary:
The court made the observation while upholding a lower court's order, which directed a man to pay his estranged wife and son â¹15,000 as monthly maintenance.
Summary:
Journalists in Kashmir held a protest on Tuesday to condemn the murder of Rising Kashmir editor Shujaat Bukhari, and demanded action against BJP leader Chaudhary Lal Singh for issuing "threats" to the media fraternity.
Summary:
The US Supreme Court on Tuesday upheld the travel ban proposed by President Donald Trump's administration targetting Muslim-majority countries.
Summary:
RSS was among groups which were banned during that period.
Summary:
Xiaomi's IPO, the biggest since Alibaba's 2014 IPO, will see $30 million investment from Li Ka-shing, reports added.
Summary:
Reports said he may leave similar sculptures outside other drug companies.
Summary:
Beiranvand would sleep outside the stadium, with people dropping coins in front of him.
Summary:
William Drummond Hamilton, a cricketer playing England's annual Varsity match, a fixture between the teams of Oxford and Cambridge, mistakenly ran for a single towards slips but wasn't given run out.
Summary:
Talking about BJP observing 'Black Day' on the 43rd anniversary of the Emergency declared by former PM Indira Gandhi, PM Narendra Modi said it's not to criticise Congress but to make the youth aware.
Summary:
Madhya Pradesh BJP MLA Neelam Abhay Mishra on Tuesday cried inside the state Assembly alleging that she and her family members were being harassed by police.
Summary:
US President Donald Trump has threatened to tax Harley-Davidson "like never before" over its decision to move some production out of US to escape retaliatory European Union tariffs.
Summary:
Punjab also accounted for over 30% of all convictions under the Act in 2015.
Summary:
India on Monday slammed the United Nations Security Council (UNSC), calling it "grossly unrepresentative of the wider international community".
Summary:
With his co-pilot's help, he landed the flight safely and was immediately rushed to the hospital for treatment.nn
Summary:
Following the recommendation of the 7th Pay Commission, the Centre has decided to stop giving overtime allowance to most employees, excluding operational staff, an order issued by the Personnel Ministry has said.
Summary:
The EU withdrawal bill repeals the 1972 European Communities Act through which the UK became a member of the bloc.
Summary:
Doctors manually removed the faeces from his bowels and the patient eventually regained full use of his leg.
Summary:
German officials on Monday detained a man, who allegedly was a bodyguard of al-Qaeda founder Osama bin Laden, months after reports said he had been living on social benefits in the country.
Summary:
The duo allegedly forged documents and secretly used an official date stamp to fraudulently authenticate payment of postage for over 8 crore pieces of mail.
Summary:
IREO Management, an Indian real estate company that partnered with the Trump Organization on an office tower project, has been accused of defrauding foreign investors of at least $1.5 billion.
Summary:
Danish actress Brigitte Nielsen, who got married to 39-year-old Italian TV producer Mattia Dessi in 2006, has given birth to her daughter and fifth child at the age of 54.
Summary:
Actor Pankaj Tripathi has said that he cannot become a brand because he is an actor and not a product.
Summary:
'Ladka Aankh Maare' song from the 1996 film 'Tere Mere Sapne' will be reportedly recreated for Rohit Shetty's 'Simmba' starring Ranveer Singh and Sara Ali Khan.
Summary:
Team India opener Shikhar Dhawan took to Instagram to share a video of himself singing Bollywood song 'Mere Do Anmol Ratan' for captain Virat Kohli and former captain MS Dhoni on a flight.
Summary:
On the occasion of 'Passport Seva Divas' on Tuesday, External Affairs Minister Sushma Swaraj launched the mPassport Seva mobile application to help deliver passports to applicants at their residence.
Summary:
Summary:
Owaisi then called Patra a child, adding that children shouldn't interrupt when elders talk.
Summary:
A man rammed a van into the office of Dutch newspaper De Telegraaf in Amsterdam and set it on fire.
Summary:
Police said that the gun belonged to a customer and had fallen out of his trousers as he sat down to test the couch.
Summary:
The number printed on the Flipkart package was actually a BJP-owned number.
Summary:
Talking about being outspoken, Swara further said, "I think I am a little too unguarded!
Summary:
Facebook-owned Instagram is estimated to be worth over $100 billion, marking a 100-fold return for the photo-sharing app purchased in 2012, according to Bloomberg.
Summary:
Shares of Netflix, which has a market value of $167 billion, are up more than 100% this year.
Summary:
Uber has banned the woman passenger accused of physically attacking a journalist in Mumbai during a ride on Monday, from using its app.
Summary:
The craft will also use laser-based navigation to identify debris and send it to lower-Earth orbit, where it will accelerate and burn in the atmosphere.
Summary:
A school bus driver died in Maharashtra's Palghar on Monday while saving two children who got stuck in a pothole during heavy rains.
Summary:
External Affairs Minister Sushma Swaraj on Tuesday announced that the rule requiring married couples to present their marriage certificate for passports has been scrapped, following complaints of some married men and women.
Summary:
The boy's father later went to her with the complaint, to which she said that students will be punished if they indulge in 'mischief'.
Summary:
A video showing a Spanish police dog perform CPR to save an officer's life in a mock demonstration has gone viral.
Summary:
Mahindra tweeted, "Glad to hear that, but please stay safe.
Summary:
Banita Sandhu, who made her Bollywood debut with Shoojit Sircar's 'October' has revealed that she has been working ever since she was 11.
Summary:
Summary:
Summary:
Egyptian football analyst Abdel Rahim Mohamed died after suffering a cardiacÃÂ arrest which was caused by violent emotions just after Egypt lost to Saudi Arabia in their final 2018 FIFA World Cup match on Monday.
Summary:
Brazilian reporter Julia Guimarães shouted at a man who tried to kiss her when she was reporting live on FIFA World Cup from Yekaterinburg, Russia.
Guimarães dodged an attempted kiss from the unidentified man and demanded that he showed respect.
Summary:
Australian tennis player Nick Kyrgios has been fined $17,500 (nearly â¹12 lakh) after being caught seemingly simulating masturbation with a water bottle during a match in London.
Summary:
The team claimed the mouse was used in "manual configuration" for better hardware use, which still constituted for cheating according to organisers.
Summary:
Congress leader Anand Sharma has tweeted that Finance Minister Arun Jaitley's comparison of Emergency imposed by former PM Indira Gandhi to Adolf Hitler's Nazi Germany is "outrageous and a distortion of history".
Summary:
Billion-dollar foodtech startup Zomato has added a feature on its app that allows customers to give a tip to the delivery executive.
Summary:
Kerala food safety department officials on Monday seized around 9,600 kilograms of fish preserved in toxic chemical formalin at a border check post in Kollam district.
Summary:
CJI Dipak Misra has written to all high court chief justices, advising them to set up a new disposal review mechanism to clear cases on priority and reduce the backlog.
Summary:
The Punjab government will distribute the entire court-mandated compensation of â¹4.5 crore among 40 Operation Blue Star detainees if the Centre refuses to pay half the share, CM Captain Amarinder Singh has announced.
Summary:
Slamming PM Narendra Modi for doing "nothing so far" to build the Ram Temple in Ayodhya, former VHP leader Pravin Togadia warned of an agitation by Hindu seers if a law wasn't passed by October.
Summary:
An Army officer accidentally shot himself with his personal firearm in Anantnag district, Jammu and Kashmir today.
Summary:
Tamil Nadu Police on Monday recovered a huge cache of ammunition and explosives from the backyard of a fisherman in Anthoniyarpuram after workers digging the site to build a septic tank found the buried boxes.
Summary:
The agency is facing a shortfall of â¹1,704 crore as a result of the US cutting its contribution to the UNRWA.
Summary:
Ashurbeyli's brainchild Asgardia aims to be an independent space nation, with its own government, currency, justice system and calendar.
Summary:
The decision to get engaged was reportedly taken after Nick's visit to India, during which he also met Priyanka's mother Madhu Chopra.
Summary:
A Lahore sessions court has granted a stay order in favour of Pakistani actor-singer Ali Zafar that restrains singer-actress Meesha Shafi, who accused him of sexual harassment, from making defamatory statements.
Summary:
Summary:
Slamming BJP for its comments on 1975 Emergency period, senior Congress leader Ahmed Patel tweeted if the party will apologise for the "undeclared emergency" of the last 4 years.
Summary:
The FDA approved the drug Epidiolex developed by UK-based firm GW Pharmaceuticals.
Summary:
The lawsuit also accuses the former astronaut's children of forbidding him to remarry.
Summary:
The Railways require an estimated 3.90 lakh blankets every day for all AC passengers.
Summary:
Mumbai Police arrested a man from Uttar Pradesh for allegedly faking his own death to falsely implicate his wife and in-laws.
Summary:
Oliver had compared the Chinese President to cartoon character 'Winnie the Pooh'.
Summary:
Nine European Union nations have agreed to set up a joint military intervention force for rapid deployment in times of crises near Europe's borders.
Summary:
Vijay Mallya has revealed that he wrote letters to Prime Minister and Finance Minister in April 2016 "to put things in the right perspective" but received no response.
Summary:
Liquor baron Vijay Mallya, who is wanted in India over loan default, on Tuesday said he has become the "Poster Boy" of bank default and a "lightning rod of public anger." Mallya said he "will continue to make every effort to settle with the public sector banks".
Summary:
Beleaguered liquor baron Vijay Mallya on Tuesday offered to settle bank dues by selling some of his assets and sought permission from the Karnataka High Court.
Summary:
"The overreach of the ED misusing its vast powers...is self evident," Mallya's statement read.
Summary:
Summary:
A new poster of Irrfan Khan starrer 'Karwaan' has been unveiled.
Summary:
Iran coach Carlos Queiroz has said Portugal captain Cristiano Ronaldo should have been sent off after the video assistant referee (VAR) review in their last 2018 FIFA World Cup group match on Monday.
Summary:
A women's football match in Australia's capital Canberra was delayed for around 30 minutes after a kangaroo invaded the pitch on Sunday.
Summary:
His statement comes after a video of former Karnataka CM Siddaramaiah saying that Kumaraswamy became CM because of his support surfaced online.
Summary:
The police in Maharashtra's Aurangabad has arrested a woman for drowning her ten-month-old son because she wanted a girl.
Summary:
Ahead of the 2019 General Elections, Hyderabad MP Asaduddin Owaisi called on the Muslim community to vote on religious lines.
Summary:
Summary:
Vice President Venkaiah Naidu on Tuesday said lessons on the Emergency period should be included in textbooks across India, adding that the present generations should know why and how it was imposed.
Summary:
At a United Nations General Assembly session, Indian diplomats reiterated that Kashmir is an "integral and inalienable" part of India and no amount of empty rhetoric from Pakistan can change this reality.
Summary:
Students seeking admission to MBBS courses in Haryana will now have to pay bond money of â¹5 lakh if they leave the course before completion of the full period.
Summary:
At least 86 people have been killed in Nigeria's Plateau State following clashes between Muslim herders and Christian farmers, police officials said.
Summary:
The home ministry has laid down security protocol which includes even ministers and officers to be cleared by Special Protection Group (SPG) staff before they can come close to PM Modi.
Summary:
Irrfan Khan's spokesperson has denied reports that Shah Rukh Khan handed Irrfan Khan the keys to his house in London before the latter left for UK for the treatment of neuroendocrine tumour.
Summary:
The teaser of Anil Kapoor and Aishwarya Rai Bachchan starrer 'Fanney Khan' has been released.
Summary:
Responding to Jimmy Fallon's statement that he didn't attempt to "humanise" US President Donald Trump by tousling his hair in an episode of his talk show aired before he became President, Trump wrote, "Be a man Jimmy!" Trump also claimed Fallon called him to tell him about the good ratings the episode received.
Summary:
A series of NASA flight tests has successfully demonstrated technologies that achieved over 70% reduction in airframe noise, the US space agency said.
Summary:
Addressing parental concerns of phone addiction among children, Apple CEO Tim Cook has said that "We've never wanted people to overuse our product".
Summary:
Moradabad Institute of Technology students have created a 'smart wash basin' which sends an alert on the user's mobile phone if the tap is left open.
Summary:
Taking a dig at PM Modi, Congress President Rahul Gandhi tweeted, "While our PM tiptoes around his garden making yoga videos, India leads Afghanistan, Syria...in rape, violence against women." This comes after a Thomson Reuters Foundation survey declared India as world's most dangerous country for women.
Summary:
US President Donald Trump has slammed motorcycle maker Harley-Davidson over its plans to move some production out of the US to avoid retaliatory European Union tariffs.
Summary:
Two months after China's Tiangong-1 crashed on Earth, Tiangong-2 was observed plummeting about 96 km towards the planet two weeks ago, according to a control base in California.
Summary:
Five priests of a Kerala church have been accused of using a woman's confession to blackmail and sexually abuse her for years.
Summary:
Jharkhand CM Raghubar Das danced with people of tribal community at a mass wedding function organised by the state government in Ranchi on Sunday.
Summary:
The victim, accompanied by her two children, had stayed at the gurudwara complex on Sunday night after failing to find transport for her journey forward.
Summary:
The 24-year-old was working out at a gym when the sarpanch shot him dead.
Summary:
After confirming that his statue would be installed at Madame Tussauds museum in London, Yoga guru Ramdev stated, "'Vriksasana' (tree posture) pose will be used for the statue." "At a time on one figure, 20 artists work to make it perfect.
Summary:
ICICI Bank CEO Chanda Kochhar may face a penalty of up to â¹1 crore for alleged violation of SEBI's disclosure norms regarding conflict of interest in her husband's business dealings with Videocon Group.
Summary:
Anshula Kapoor, while wishing her brother and actor Arjun Kapoor on his 33rd birthday today, shared their childhood picture captioning it, "You've always been our "protector" and my anchor in more ways than one." "My shelter from the storm, my strength and my emotional cornerstone," she added.
Summary:
Sachin Tendulkar's son Arjun Tendulkar trained with Virat Kohli-led Team India in England ahead of their T20I series against Ireland.
Summary:
The US Department of Defense has developed a Reconfigurable Wheel-Track technology that converts wheels from tank-like tracks to tyres and vice versa without the need to stop the vehicle.
Summary:
Former BJP leader Yashwant Sinha has said "today's undeclared Emergency" is more dangerous than the Emergency imposed by former PM Indira Gandhi on June 25, 1975.
Summary:
Bengaluru-based healthtech startup SigTuple has raised $19 million in funding led by Accel Partners and IDG Ventures with existing investor Flipkart Co-founder Binny Bansal also participating in the Series B round.
Summary:
RSS leader Biplab Roy has said the organisation received five times more applications after former President Pranab Mukherjee attended its event on June 7.
Summary:
Following heavy rainfall in the city on Monday, a portion of the road at Anandilal Podar Marg in Mumbai caved in.
Summary:
The victim's mother claimed that the accused had warned the barber not to give Dalits haircuts, but her son ignored the threats.
Summary:
A special motorcycle squad has been formed by the Central Reserve Police Force (CRPF) as part of its security arrangements for the annual Amarnath Yatra.
Summary:
India is set to sign a â¹3,400-crore ($500 million) deal with Israel for the purchase of around 4,500 Spike missiles for the Indian Army.
Summary:
Other personalities who have been invited include Madhuri Dixit, Naseeruddin Shah, Ali Fazal and Anil Kapoor.
Summary:
India has topped the list of the most dangerous countries in the world for women, according to a survey conducted by the Thomson Reuters Foundation.
Summary:
In 1959, Naval Commander KM Nanavati was found guilty for murdering his wife's lover, but was later pardoned by the state Governor.
Summary:
A picture of actress Priyanka Chopra and her rumoured boyfriend, American singer Nick Jonas, from their vacation in Goa has surfaced online.
Summary:
Students from IIT-Roorkee have developed a helmet that is worn like a collar around the neck and inflates like an airbag before impact during an accident.
Summary:
As many as 41 BJP MPs are following at least one of the Twitter accounts that trolled Union Minister Sushma Swaraj over the issuance of passports to an interfaith couple, a Hindustan Times analysis revealed.
Summary:
Chaudhary was implicated in a fake currency case by Delhi Police in 2007 and was acquitted after trial.
Summary:
Summary:
Pallavi Durua of Odisha's Koraput district was crowned as the first 'Tribal Queen' at the Adi Rani Kalinga Tribal Queen competition held in Bhubaneswar on Sunday.
Summary:
After he killed his colleague's wife, accused Army Major Nikhil Handa called a female friend and told her he finished Shailza, reports quoting sources said.
Summary:
Ony 46 girls made it to the top 1,000 scorers' list of JEE Advanced 2018 exam, results of which were declared earlier this month.
Summary:
Trump tweeted that the restaurant should focus on "cleaning its filthy canopies, doors and windows".
Summary:
A nine-year-old English bulldog named Zsa Zsa has won the title of the 'World's Ugliest Dog' at an annual contest in the San Francisco Bay Area, United States.
Summary:
Reacting to BJP MP Ashwini Chopra calling her a 'thumkewali', Haryanvi singer Sapna Choudhary said, "He must be watching my dances and that is why he passed that remark.
Summary:
Portugal captain Cristiano Ronaldo missed a penalty in the 53rd minute as Iran salvaged a 1-1 draw in their final 2018 FIFA World Cup Group B fixture on Monday.
Summary:
DMK workers, led by party Working President MK Stalin, walked out of the Tamil Nadu Assembly on Monday after Speaker P Dhanapal barred them from discussing Governor Banwarilal Purohit's visits to various districts.
Summary:
NCP chief Sharad Pawar on Monday said that a Mahagathbandhan (grand alliance) before the 2019 elections is "not practical".
Summary:
Summary:
While upholding the life sentence awarded to a man for raping a minor girl, the Delhi High Court observed that child rape is "inexcusable" and no mercy can be shown to the convict.
Summary:
The Bar Council of India (BCI) has slammed former judge J Chelameswar for making "controversial" statements after retiring from the post, adding that such statements cannot be tolerated by advocates.
Summary:
Treatments and surgeries will be provided at 15-20% cheaper rates under the initiative.
Summary:
The lover also received calls from the victim's mother and could hear the daughter being beaten up.
Summary:
Uttar Pradesh CM Yogi Adityanath has said, "When Lord Ram showers blessings on Ayodhya, Ram Mandir will definitely be built and there should be no doubt about it." Asserting that a democracy is bound by norms, he urged seers to remain patient.
Summary:
Summary:
He had allegedly snatched the baby from his wife while he was being fed and then killed him.
Summary:
Nirav Modi last took a train from London to Brussels on June 12, reports said.
Summary:
Yoga guru Ramdev praised Vedanta Resources Chairman Anil Agarwal on Monday, saying he "salutes his contribution in the national building process by creating lacs of jobs." He added that the anti-Sterlite protestors were instigated by "international conspirators".
Summary:
Salman Khan starrer action film 'Race 3' has entered the IMDb's list of the world's 100 lowest rated films with a rating of 2.7 stars.
Summary:
Army Major Nikhil Handa has confessed he murdered Major Amit Dwiwedi's wife Shailja after she refused to continue her extra-marital affair with him, according to Delhi Police.
Summary:
Seychelles President Danny Faure, who is on his first bilateral visit to India, today sang a song at the lunch hosted by PM Narendra Modi in Delhi.
Summary:
Summary:
Arjun Kapoor has said that his half-sister Janhvi Kapoor's debut film 'Dhadak' is "going to be a big hit" and that he is reminded of the days of his debut film 'Ishaqzaade' (2012).
Summary:
Farhan Akhtar will replace Abhishek Bachchan in Shonali Bose's next film, which will also be starring Priyanka Chopra, as per reports.
Summary:
The release date of actors Ayushmann Khurrana and Sanya Malhotra starrer 'Badhaai Ho' has been announced as October 19.
Summary:
Comedian Krushna Abhishek, the nephew of actor Govinda, has said that no one can do Govinda's biopic as good as him.
He further said that if he portrays Govinda in a biopic, it can be his tribute to Govinda.
Summary:
TV actress Karishma Tanna said that she would love to play Madhuri Dixit in the latter's biopic.
Summary:
Spain scored in the 91st minute to register a comeback 2-2 draw against already-eliminated Morocco in the 2018 FIFA World Cup on Monday to finish as Group B leaders despite just one victory.
Summary:
Midfielder Jimmy Durmaz, who gave away the free-kick that helped Germany defeat Sweden in the ongoing World Cup, has been subjected to racist slurs and death threats.
Summary:
Neymar had earned a penalty by diving in Brazil's match against Costa Rica but the decision was overturned by video assistant referee (VAR).
Summary:
Saudi Arabia on Monday scored a 95th-minute winner against Egypt in the Group A match between the two eliminated teams to end their 12-match winless streak in World Cup and record their first WC victory since 1994.
Summary:
Two-time champions Uruguay defeated hosts Russia in 2018 FIFA World Cup on Monday to win all three of their group stage matches at a World Cup for the first time.
Summary:
Artificial intelligence startup OpenAI, co-founded by Elon Musk, has revealed its bot called OpenAI Five which is trained with 180 years worth of games every day.
Summary:
Google has introduced a measuring tool for Google Earth which allows users to measure distance and surface area between places on the map.
Summary:
Delhi BJP chief Manoj Tiwari has written a letter to CM Arvind Kejriwal, asking him to return from Bengaluru after receiving a 10-day naturopathy treatment and supervise the unclogging of drains ahead of the monsoon season.
Summary:
Former Bihar CM and Hindustani Awam Morcha chief Jitan Ram Manjhi has said RJD leader Tejashwi Yadav will be an ideal replacement if Bihar CM Nitish Kumar vacates the post to join the Grand Alliance.
Summary:
US-based Uber has appealed to a London court to grant the startup its license in the city, claiming that it has changed.
Summary:
A 32-year-old man has been arrested for allegedly stabbing his four-day-old newborn girl as he wanted a son, the Gujarat police said on Monday.
Summary:
Three alcohol addicts died in Bihar's Begusarai after consuming around 12 bottles of spirit, meant to be used for medical purposes, police said on Monday.
Summary:
The 12 AAP leaders who were arrested for allegedly staging a protest at the Raipur airport after "not being allowed" to meet PM Narendra Modi were granted bail by a court today.
Summary:
Although both families later agreed to their marriage, the girl's father allegedly murdered her in her sleep.
Summary:
A 14-year-old girl was allegedly raped by her maths tuition teacher in a UP village, the police said on Monday.
Summary:
Summary:
NITI Aayog Vice Chairman Rajiv Kumar has said petrol and diesel can't be brought under GST as the "total state and central taxes on them are around 90%".
Summary:
The Telecom Department is reportedly looking to raise a â¹4,700-crore demand related to one-time spectrum charges on Vodafone.
Summary:
Actor Shah Rukh Khan, who completed 26 years in Bollywood today, tweeted, "Exactly half a lifetime of being 'others'".
Summary:
Egyptian goalkeeper Essam El-Hadary, aged 45 years and 161 days, has become the oldest player to play a FIFA World Cup match.
Summary:
'Disgrace of Gijón' game is the name given to 1982 World Cup Group 2's final match between West Germany and Austria that took place in Gijón on June 25.
Summary:
Sandeep Patil, who was a member of India's 1983 Cricket World Cup-winning squad, shared an old picture of then captain Kapil Dev celebrating the victory.
Summary:
Chinese smartphone maker Xiaomi gave its founder and CEO Lei Jun about $1.5 billion (â¹10,200 crore) in stock to "reward him for his contributions" ahead of its IPO.
Summary:
Prime Minister Narendra Modi on Monday enquired about the health of an IAF guard who reportedly fainted due to a heat stroke during Seychelles President Danny Faure's ceremonial welcome at Rashtrapati Bhavan.
Summary:
Anupam Kher, who was awarded Outstanding Achievement In Cinema Award at International Indian Film Academy (IIFA) Award 2018, has dedicated his award to the struggling actors.
Summary:
Ranbir Kapoor has said that he hardly talks to his cousin and actress Kareena Kapoor Khan while he is close to his brother-in-law and actor Saif Ali Khan.
Summary:
Following the box-office performance of Remo D'Souza's 'Race 3', the producers have asked Remo to reduce the budget of an upcoming 4D dance film starring Katrina Kaif and Varun Dhawan, as per reports.
Summary:
Malayalam commentator Shiju Damodaran's reaction to Portugal captain Cristiano Ronaldo's free-kick goal against Spain in the 2018 FIFA World Cup has gone viral.
Summary:
Argentine legend Diego Maradona has requested a meeting with Argentina squad before their do-or-die World Cup match on Tuesday.
Summary:
US-based conversational AI sales startup Tact.ai has raised $27 million in a funding round from Amazon's Alexa Fund, Microsoft's M12 and Salesforce Ventures.
Summary:
These drones replicate about 90% of the movements of a real dove like diving and turning in the air.
Summary:
The updated AirPods would come with a new case that is compatible with the Apple's new wireless charging pad, reports further suggested.
Summary:
Jeff Bezos-led e-commerce giant Amazon allows workers, who are about to be fired, to plead their case with a jury consisting of their co-workers.
Summary:
The app has already been in pilot mode with about 5,000 merchants across Mumbai and Ahmedabad.
Summary:
The murder comes a month after unidentified motorcycle-borne assailants shot dead district court lawyer Rajesh Srivastava in Allahabad.n
Summary:
A 23-year old fisherman, who was accused of sexually assaulting a four-year-old girl, was found hanging from a tree in Tamil Nadu's Rameswaram on Sunday, the police said.
Summary:
The Maharashtra CID is still investigating a complaint filed by social activist Anna Hazare in 2009 against former minister Padamsinh Patil for allegedly conspiring to kill him, an RTI enquiry has revealed.
Summary:
A 50-year-old man allegedly committed suicide by jumping in front of a moving train in UP's Muzaffarnagar, the police said.
Summary:
A man in Assam has been arrested for allegedly creating a fake Twitter account in his brother-in-law's name and tweeting about a bomb blast in Guwahati on Independence Day. Ikramul Haque was apparently taking revenge after his wife's family filed a case of cruelty against him.
Summary:
The decomposed body of a Class 9 female student was found hanging from the ceiling fan of her hostel room in Mysuru on Sunday.
Summary:
A youth allegedly sexually harrassed a school girl and threatened to throw acid on her after she turned down his proposal of marriage in Uttar Pradesh's Muzaffarnagar, the police said on Monday.
Summary:
A 22-year-old UP youth, who allegedly drugged and gangraped a minor girl with three others on Saturday, has died at a hospital under mysterious circumstances.
Summary:
The joint venture will manufacture refrigerators, microwave ovens, washing machines and dishwashers under the Voltas Beko brand at a reported investment of â¹1,000-crore.
Summary:
The CBI has moved the Supreme Court challenging bail to former Finance Minister P Chidambaram's son Karti Chidambaram in the INX Media case.
Summary:
Reliance Jio has secured $1-billion worth of term loan covered by the Korea Trade Insurance Corporation (K-SURE) to fund network equipment purchase from Samsung Electronics and Ace Technologies.
Summary:
Former cricketer and 1983 World Cup-winning squad member Sandip Patil has revealed he broke a floating rib during practice and carried the injury throughout the 1983 tournament.
Summary:
A journalist has filed an FIR against a woman passenger who attacked her during a shared Uber ride in Mumbai on Monday.
Summary:
Reacting to External Affairs Minister Sushma Swaraj being trolled over the transfer of a Lucknow passport officer who allegedly harassed an interfaith couple, Swara Bhasker tweeted, "Sick and shameful." "She and her ministry did their job conscientiously and as per the law of our land," Swara added.
Summary:
Nawazuddin Siddiqui has dedicated his Best Supporting Actor IIFA Award, which he won for the film 'Mom', to late actress Sridevi.
Summary:
Talking about doing television roles, Kareena Kapoor said, "I'm not averse to taking up something on...small screen, but it can't be a daily soap." "I'm open to any kind of medium.
Summary:
Algeria had played their last group game a day before West Germany-Austria match and later lodged an official complaint.
Summary:
Talking about the proposed cutting of over 14,000 trees to redevelop seven colonies in Delhi, Minister of State for Housing and Urban Affairs HS Puri said no trees will be cut till he's a minister.
Summary:
North Korea has decided to skip its annual 'anti-US imperialism' rally marking the start of the Korean War following the summit between the two countries.
Summary:
Mosque officials said the move will preserve the sanctity of Islam.
Summary:
The first look poster of Sanya Malhotra starrer 'Pataakha' has been released.
Sanya and Radhika will be playing sisters in the film.
Summary:
Actress Disha Patani, while responding to the rumours of dating actor Tiger Shroff, said, "I want to keep my life as personal as possible." She added, "If I was planning something, I wouldn't share it." She further said that Tiger has impacted her a lot and is a great role model.
Summary:
"Thank you for honouring Shashi Kapoor with his award...It's a moment of pride for us," said Rishi Kapoor, while accepting the award on his uncle's behalf.
Summary:
A video of Portugal captain Cristiano Ronaldo asking a group of Iran fans singing outside his hotel to let him sleep has surfaced online.
Summary:
PlantMD, an app made by high school students, Shada Mehdi and Nile Ravanell, has been designed to detect plant diseases in real time.
Summary:
Apple has filed patent for a technology which can recognise users' handwriting on iPad devices in real time.
Summary:
Ahead of the Rajasthan Assembly elections, five-time MLA Ghanshyam Tiwari on Monday resigned from the BJP to join the Bharat Vahini Party, which was floated by his son Akhilesh.
Summary:
Speaking at a press conference, BJP spokesperson Sudhanshu Trivedi on Monday said Congress still has not apologised for the 'India is Indira and Indira is India' slogan.
Summary:
Finance Minister Arun Jaitley on Sunday compared the Emergency imposed by former PM Indira Gandhi to Adolf Hitler's Nazi Germany.
Summary:
Gurugram-based online insurance startup PolicyBazaar has raised more than $200 million in a new investment round led by SoftBank's $100-billion Vision Fund.
Summary:
Assam CM Sarbananda Sonowal has announced a â¹100-crore relief package for the rehabilitation of people in three districts of Barak Valley after floods and landslides claimed 24 lives.
Summary:
Summary:
While the officer died on the spot, his family members are receiving treatment.
Summary:
Summary:
Rebel BJP leader Shatrughan Sinha will attend a rally organised by the AAP against the "undeclared emergency-like situation created by PM Narendra Modi" in the country at PM Modi's constituency Varanasi on Monday.
Summary:
After IndiGo's president Aditya Ghosh, the airline's Chief Commercial Officer Sanjay Kumar has resigned with effect from July 15 this year.
Summary:
PNB's gross bad loans stood at â¹86,620 crore or 18.38% of the gross advances as of March.
Summary:
A company typically delays the filing only when there is an ongoing investigation by the market regulator, the whistleblower claimed.
Summary:
Army Major Nikhil Handa, arrested on Sunday for the alleged murder of another Major Amit Dwivedi's wife Shailja, made over 3,000 calls to her this year, police said.
Summary:
The Delhi High Court on Monday stayed the cutting of over 14,000 trees for the redevelopment of seven colonies in south Delhi till the next date of hearing on July 2.
Summary:
The entire police department of Ocampo in Mexico has been detained on suspicion of involvement in mayoral candidate Fernando Angeles Juarez's murder.
Summary:
India is the only country to win all three types of Cricket World Cups - 60 overs, 50 overs and 20 overs.
Summary:
Talking about her wish to become a director, Sonam Kapoor said, "Be it Sanjay Leela Bhansali, Aanand L Rai [or] R Balki...any director...I work with has told me, 'Please direct [a film]'".
Summary:
According to investigators, the group crawled into Tham Luang Nang Non Cave through a path, which was later blocked by rising waters.
Summary:
The Gujarat High Court on Monday sentenced three convicts in the Naroda Patiya case to ten years of imprisonment.
At least 97 people were killed in Naroda Patiya, a Muslim-dominated locality, during the 2002 Gujarat riots.
Summary:
External Affairs Minister Sushma Swaraj on Sunday liked several tweets that trolled her over the transfer of a Lucknow passport officer who allegedly humiliated and harassed an interfaith couple.
Summary:
PM Narendra Modi on Sunday night broke protocol by travelling without his security to AIIMS Delhi to meet ailing former PM Atal Bihari Vajpayee, reports said.
Summary:
Earlier this year, Jamaat-ud-Dawah had said it would love to launch jihad against India.
Summary:
A class 9 boy was found dead in the washroom of the Sainik School in South Karnataka's Kodagu district on Saturday.
Summary:
London has been voted the most desirable city in the world for overseas workers, according to a survey conducted by the Boston Consulting Group and totaljobs.com.
Summary:
North Korea on Monday said the country will continue to ignore Japan unless it halts hostilities against its neighbour, such as large-scale military drills and efforts to boost military readiness.
Summary:
In a move aimed at boosting the sales of domestic products amid US sanctions, Iran's Ministry of Industry, Mine and Trade has banned the import of 1,400 items.
Summary:
Reliance's consumer businesses include Jio, Reliance Digital, Reliance Fresh among others.
Summary:
Talking about making "good contacts" in Bollywood, Sana Khan said, "Honestly, whether it's Salman (Khan) or anyone else, I don't know how good contacts are made." "I just feel I could have made some stronger bonds when I had the chance," she added.
Summary:
"The original Sridevi film was made by a producer from the South and helmed by a Bollywood director," stated reports.
Summary:
Meituan Dianping, world's fourth-most valuable tech startup, has revealed a net loss of $2.9 billion for 2017, ahead of its Hong Kong initial public offering (IPO).
Summary:
Technology giant Google is reportedly planning to launch its e-commerce platform in the Indian market later this year.
Summary:
JD(U) spokesperson Sanjay Singh on Monday said that there is a big difference between 2014 and 2019 and BJP knows it will not be able to get through in Bihar without CM Nitish Kumar.
Summary:
After External Affairs Minister Sushma Swaraj liked several posts trolling her on Twitter, the Congress replied, "We applaud your decision to call out the heinous trolls of your own party." The BJP leader was being trolled over the transfer of a passport officer who had allegedly humiliated an interfaith couple in Lucknow.
Summary:
Madhya Pradesh National Cow Service Corps President Mehrunisa Khan has alleged that she has been receiving death threats from outsiders as well as her family for running a cow shelter.
Summary:
During a bilateral meet with Seychelles' President Danny Faure in India, PM Narendra Modi on Monday announced that India has given $100 million to Seychelles on credit for its defence sector.
Summary:
Villagers in Chhattisgarh's Dantewada district have claimed that Naxals threatened to kill them if one member from each family did not join them.
We don't know what to do next," a villager said.
Summary:
BJP MLA KG Bopaiah has said that the party leaders want the Haj Bhavan in Bengaluru to be named after late President APJ Abdul Kalam and not Tipu Sultan, an 18th century ruler.
Summary:
Parliament's Monsoon Session will be held from July 18 to August 10, Parliamentary Affairs Minister Ananth Kumar announced on Monday.
Summary:
An accountancy firm in London, which allegedly has links to companies named in the Panama Papers leak, audited the finances for Nirav Modi's UK business, reports said.
Summary:
The Jammu & Kashmir police has said that Rising Kashmir Editor Shujaat Bukhari was killed by terrorists on instructions from Pakistan.
Bukhari was killed to send a message to other journalists to not voice anything other than Pakistan's official line on Kashmir, police said.
Summary:
The official trailer of Akshay Kumar starrer 'Gold', a film on India's first Olympic medal as a free nation, has been released.
Summary:
A Class 12 student from Delhi, who failed the CBSE boards after scoring 16 in English, got her score changed to 80 after re-evaluation.
Summary:
Veteran actress Rekha performed at the 2018 International Indian Film Academy (IIFA) Awards in Bangkok, 20 years after her last performance at the award ceremony.
Summary:
"I guess I'm gonna faint tonight wearing this 80 kg beautiful gown," wrote Urvashi while sharing a photo.
Summary:
Summary:
The 28-year-old said he was once offered $200,000 for missing two deliveries in a match.
Summary:
Around 15 cars are stuck in debris after the collapse and at least seven are reported to be damaged.
Summary:
An attempt to rape was allegedly made on a 15-year-old girl at the rooftop of Gorakhpur's BRD Hospital recently.
Summary:
Road traffic on Santa Cruz division and Khar subway was blocked due to waterlogging and train services on the western railway were delayed amid heavy rains in Mumbai on Monday.
Summary:
Joking that he is used to evading assassination, Mnangagwa had said the explosion went off a "few inches away from me, but it is not my time".
Summary:
US clothing company Wildfang took a jibe at First Lady Melania Trump by selling jackets bearing the slogan "I really care, don't you?" in response to the "I really don't care" jacket that she wore before meeting migrant children.
Summary:
Philippine President Rodrigo Duterte last week slammed the concept of original sin in the Bible and called God "stupid".
Who is this stupid God?
Summary:
Further, when the user asked to repeat the statement, Alexa said that it did not understand.
Summary:
Uttar Pradesh Chief Minister Yogi Adityanath on Sunday said that Congress President Rahul Gandhi remembers temples only during elections.
Summary:
Makkal Needhi Maiam chief Kamal Haasan said that he is inspired by Delhi CM Arvind Kejriwal even though they are not similar.
Summary:
A retired serviceman in Jammu and Kashmir has alleged BJP MLA Gagan Bhagat kidnapped his daughter, who is a student at a university in Punjab.
Summary:
Congress MLA Rajanish Singh has been caught on camera tying Madhya Pradesh Congress President Kamal Nath's shoelaces in Seoni.
Summary:
The Delhi University on Sunday released its second cut-off list for undergraduate courses, with SRCC having a cut-off of 98.25% for Economics Honours and 97.37% for BCom Honours.
Summary:
One person died after a fire broke out at the Kothari House building in Mumbai's Girgaon on Sunday.
Summary:
Sarojkanta Biswal requested his father-in-law to gift him the saplings after he insisted on giving dowry to the groom.
Summary:
The Supreme Court has asked a Maharashtra medical college to pay â¹20 lakh each to 19 students for wrongfully denying them admission six years ago.
Summary:
The passenger also told them that a previous case of harassment had happened because of "their generation".
Summary:
The Tirumala Tirupati Devasthanams (TTD), accused of stealing ornaments from Lord Venkateswara temple in Andhra, has decided to exhibit the jewellery to end the controversy.
Summary:
Upset after his wife gave birth to their sixth daughter in a row, a man allegedly stabbed his four-day-old baby girl with a knife three times in Gujarat.
Summary:
The woman's head was shaved by the women in the village and the couple's clothes were torn, police said.
Summary:
Summary:
'Tumhari Sulu' was named Best Picture while Saket Chaudhary won the best direction award for 'Hindi Medium'.
Summary:
After every minute, the pace gets quicker and he's given two more beeps to catch up on not reaching the line in time.
Summary:
Aamir Khan and Alia Bhatt will star together for the first time in an upcoming film as the spiritual leader Osho or Bhagwan Rajneesh and his secretary Ma Anand Sheela, as per reports.
Summary:
Douglas Moreton, an England football fan, missed his country's biggest-ever World Cup victory on Sunday as he had forgotten to take England-Panama match ticket from his drawer at home in Bristol.
Summary:
Sachin shared a picture of Mandeep celebrating and congratulated Sardar for "scoring a crucial goal" in his 300th match.
Summary:
"Starting tomorrow, we will start working to realise the promises we made our people," ErdoÃÂan told his supporters.
Summary:
Saudi became the last country in the world to allow women to drive after it lifted the ban on Sunday.
Summary:
Actor Vicky Kaushal, who will be playing the role of Sanjay Dutt's best friend in the biopic 'Sanju', has said that Dutt has seen the best and worst in life and has not seen normalcy.
Summary:
The Singapore government on Sunday revealed that it spent over â¹81 crore on hosting the summit between US President Donald Trump and North Korean leader Kim Jong Un. The foreign ministry added that most of the money was spent on security.
Summary:
Tom Holland took to Instagram to reveal the title of 'Spider-Man: Homecoming' sequel as 'Spider-Man: Far From Home'.
Summary:
Talking about the Kerala High Court's verdict on 'Grihalakshmi' magazine cover which showed her breastfeeding a baby, model Gilu Joseph said, "Personally, I'm much more than my body." "I'm really happy with the judgement because we live in a society where art is not always appreciated in...right sense," she added.
Summary:
Arjun Kapoor, who starred opposite Parineeti Chopra in his debut film 'Ishaqzaade', said, "I never looked at it (Parineeti's role) as 'If hers is better or mine is better'." "I don't think the audience sees it as whose is better," he added.
Summary:
Actress Jacqueline Fernandez's debut English film 'Definition of Fear' will be releasing in August in India.
"I'm very proud of Definition of Fear and also very excited for its release," said the actress.
Summary:
Poland became the first European side to be eliminated from the 2018 FIFA World Cup after losing 0-3 to Colombia on Sunday.
Summary:
A video of Senegal football team players dancing and singing during official training ahead of their 2018 FIFA World Cup match against Japan has surfaced online.
Summary:
Japan came from behind twice to salvage a 2-2 draw against Senegal in a Group H fixture at the 2018 FIFA World Cup on Sunday.
Summary:
England have now won nine of the ten ODIs they have played against Australia in 2018.
Summary:
Lyles also holds the joint-quickest time of 2018 in 200m, clocking 19.69 last month.
Summary:
Google has announced a new feature for its Chrome browser that would allow users to access the web without a constant internet connection on Android devices.
Summary:
Summary:
The research, conducted by UK-based company Oxitec, involves releasing the modified male mosquitoes to mate with female mosquitoes.
Summary:
After BJP ended its alliance with PDP in Jammu and Kashmir, former CM Mehbooba Mufti said, "Allegations of discrimination against Jammu and Ladakh have no basis in reality." The valley needed "focused attention" as it has been in turmoil for a long time, she added.
Summary:
Clashes broke out at a wedding in Uttar Pradesh's Vikrampur area after the organisers ran out of plates for serving food to the wedding guests, police said on Sunday.
Summary:
The mango is believed to have been cultivated by a royal breeder named Hakim Ada Mohammadi at the behest of the last Nawab of Bengal Siraj-ud-Daulah.
Summary:
In his blog series on the Emergency, union minister Arun Jaitley said he was the "first Satyagrahi" against the Emergency as he organised a protest the morning after the decision was announced.
Summary:
Another terrorist surrendered during the encounter, which was triggered after militants attacked an Army patrol party.
Summary:
US State Secretary Mike Pompeo praised Infosys for its plans to create 10,000 American jobs in the next two years.
Summary:
The 28-year-old added he gets offers from bookies to fix matches every time he plays against India.
Summary:
Delhi Police on Sunday arrested Army Major Nikhil Handa for allegedly murdering his colleague Major Amit Dwivedi's wife Shailja and said that Handa wanted to marry her.
Summary:
The author had replied to the girl's note and responded by tweeting, "I'd love to send her something".
Summary:
Mahindra Group's Chairman Anand Mahindra on Sunday took to Twitter to share a video of a 'desi jugad' water park, which he said was probably shot in Punjab.
Summary:
Actor Ranveer Singh has shared a childhood picture, where he is seen with a mohawk hairstyle and captioned it, "Avant garde since 1985".
Summary:
World's richest man Jeff Bezos' space startup Blue Origin may start selling tickets for space tourism to common people from 2019, the startup's senior VP Rob Meyerson said.
Summary:
Saudi Arabia's businesswoman Aseel Al-Hamad on Sunday drove a Formula One racecar to mark the end of 60-year-old women's driving ban in the country.
Summary:
The water, that was used to cook hot dogs, was advertised by the man as a health product that could help people lose weight.
Summary:
Calling the ban "discriminatory", it added that nearly 2,500 members of the association were left with no option but to close operations.
Summary:
Summary:
I felt demotivated, disheartened but looking around at my family I realised I cannot let them down," he added.
He further said that he didn't realise the competition had increased.
Summary:
Actor Saif Ali Khan has said that one cannot benefit from someone else's failure.
Summary:
Aishwarya, who will reportedly play a singer in the film, will make her debut as a singer.
Summary:
Denying the rumours of his ill health, Rana Daggubati tweeted, "Thanks for the concern and love but don't speculate it's my health not yours." "I'm fine guys just some BP based issues I'm addressing.
Summary:
England on Sunday scored 5 goals in the span of 38 minutes against Panama and went on to register a 6-1 win, their biggest ever victory in World Cup history.
Summary:
The smoke came from overheated oil in one of the plane's engines, officials stated.
Summary:
The 38-year-old Frenchwoman will succeed Yannick Noah next season to become the first woman to captain France's Davis Cup team and overall sixth woman to captain in the tournament history.
Summary:
China's artificial intelligence major Baidu has tested its two driverless cars for the first time in Tianjin City, the company said.
Summary:
Apple has denied a hacker's claim that he was able to bypass the passcode limit on an iPhone without erasing the data.
Summary:
'TrumpHotels.org', a parody of US President Donald Trump-owned hotels' website 'TrumpHotels.com', displays photos of immigrants in temporary detention centres.
Summary:
The Dubai-Mumbai air sector was the country's busiest foreign route in 2017-18 with a passenger flow of 25 lakh, according to government data.
Summary:
Accusing PM Narendra Modi of not fulfilling his promises, RJD leader Tejashwi Yadav on Sunday said that the country needs a Prime Minister who does not do "jumlebaazi".
Summary:
After testing the samples provided to them by the Jammu and Kashmir Police, forensic experts revealed that the eight-year-old Kathua rape and murder victim may have slipped into a coma due to an overdose of sedatives.
Summary:
A village Sarpanch in Madhya Pradesh's Tikamgarh thrashed a Dalit man for riding a motorbike near his residence, police said.
Summary:
After India's High Commissioner to Pakistan, Ajay Bisaria, was prohibited from entering Gurdwara Panja Sahib near Rawalpindi, Punjab CM Captain Amarinder Singh on Saturday said Pakistan has stooped to a new low.
Summary:
About 20,000 telephone booths still exist in railway stations across India, according to reports.
Summary:
Absconding jeweller Nirav Modi is believed to have stayed in a flat above his jewellery store in the Mayfair area of UK's London, according to reports.
Summary:
A soldier in West Bengal's Kolkata died on Sunday due to suspected Nipah virus infection, which has killed at least 13 people in Kerala.
Summary:
The Kerala government on Wednesday decided to cut the excise duty on fuel to effect a â¹1 per litre reduction in petrol and diesel prices, starting June 1.
Summary:
Argentina captain Lionel Messi on Tuesday scored a hat-trick in a friendly against Haiti ahead of the 2018 World Cup to go past ex-Brazilian forward Ronaldo's tally of 62 international goals.
Summary:
Apple's App Store generates over 10 times the net revenue per device than Google's Play Store, according to Morgan Stanley.
Summary:
Summary:
In a first, researchers at UK's Newcastle University have 3D printed human corneas, the outermost layer of the eye.
Summary:
Three people were injured after a lift fell from the ninth floor and crashed into the second basement of a Gurugram apartment.
Summary:
Warning that procurement of Russian advanced missile systems may affect cooperation between the US and India, the US House Committee on Armed Services has told India not to rush and carefully consider all potential consequences.
Summary:
In a first, the Centre has revoked the passports of five Non-Resident Indians on the charges of abandoning their wives abroad shortly after marriage or following disputes.
Summary:
India and Indonesia signed 15 Memorandums of Understanding (MoU) in the fields of defence, scientific and technological cooperation, railways and health, among others during PM Narendra Modi's visit to the nation on Wednesday.
Summary:
The US military on Wednesday said that over 50 senior Taliban commanders were killed in its rocket artillery strike in Afghanistan's southern province of Helmand last week.
Summary:
While responding to a query by a Twitter user, the US Geological Survey (USGS) said it is not safe to roast marshmallows over an active volcano.
Summary:
The flight, which had no passengers, was on its way from Leh to Delhi on April 19 when the pilots clicked the selfies.
Summary:
German conglomerate Bayer has won the US antitrust approval for its $66 billion acquisition of US seed major Monsanto to form world's biggest seed and agricultural-chemicals provider.
Summary:
It's a regular thing for [both] men and women to use abusive words," he added.
Summary:
"I dozed off...[and] woke up to the feeling of being inappropriately touched by that uncle," Shrenu added.
Summary:
DJ Caruso, who directed the 'xXx' film franchise, tweeted that he wants to end the upcoming film in the series with a Bollywood dance song led by Deepika Padukone.
Summary:
Speaking about casting couch, National Award-winning actor Pankaj Tripathi said, "Atleast in Bollywood, there'll be no one who'll be forcing you to do anything." "If a woman is refusing...to [do] anything, the other person will apologise to her immediately," he added.
Summary:
Speaking about Aamir Khan not doing the film 'Sanju', Rajkumar Hirani said, "Aamir told me 'I'm already playing father's role in 'Dangal' and people will stop giving me younger roles if I play father again." Aamir was offered the role of Sanjay Dutt's father Sunil Dutt.
Summary:
Actor Ranbir Kapoor, on being asked about his relationships, said, "I have had less than 10 girlfriends." "I like love stories.
Summary:
Talking about his superstition in a talk show with off-spinner Harbhajan Singh, CSK's Ambati Rayudu revealed he takes a bat from Team India captain Virat Kohli every year.
Is saal to gaali deke diya hai," Rayudu said.
Summary:
We're in Malaysia for the Asia Cup #justsaying...See you, India?" Harmanpreet Kaur will lead India in the 20-over format tournament that will start on June 3.
Summary:
Paytm's parent, One97 Communications, has recorded a 38% increase in revenue at â¹828.6 crore for the financial year 2017, up from â¹597.8 crore the year before.
Summary:
President Ram Nath Kovind on Wednesday said, "The armed forces are not merely about doing a job, they are about answering a calling.
Summary:
Delhi CM Arvind Kejriwal has written to PM Narendra Modi, requesting him to direct the Railways to provide rakes for transporting coal to power plants in Delhi NCR due to an "alarming" of coal shortage.
Summary:
Prominent Russian journalist and critic of President Vladimir Putin, Arkady Babchenko, was shot dead at his home in Ukraine's capital Kiev on Tuesday.
Summary:
SGX said it will not launch the disputed product until the arbitration is complete.
Summary:
The official trailer of 'Sanju', the biopic on actor Sanjay Dutt, starring Ranbir Kapoor, has been released.
Summary:
Kochi's Sreelakshmi G also lost one mark in Mathematics, however, Uttar Pradesh's Nandini Garg lost one mark in Hindi.
Summary:
Police suspect a truck loaded with rubber material parked near the warehouse caught fire, which spread to the factory due to strong winds.
Summary:
Hollywood actor Morgan Freeman's lawyer Robert M Schwartz has asked CNN to apologise and withdraw the article in which eight women accused Freeman of harassment and inappropriate behaviour.
Summary:
In an attempt to expose "predatory" journals which publish papers for money, MIT researcher TomáÃ
¡ Pluskal has managed to get a fake computer-generated study published with co-authors "Kim Kardashian" and "Satoshi Nakamoto", the unknown inventor of Bitcoin.
Summary:
A case has been registered against a polling officer after he violated rules and transferred some of the EVMs in his private car after the bypoll in Maharashtra's Palghar on Monday.
Summary:
Indian Oil Corporation on Wednesday revised the fuel price reduction to 1 paisa a litre, calling earlier revision a "clerical error".
Summary:
President Ram Nath Kovind on Tuesday rejected the first mercy petition presented before him, upholding the death sentence given by the Supreme Court to a murder convict.
Summary:
PM Narendra Modi, who is on a three-nation tour, flew kites with Indonesian President Joko Widodo on Wednesday during a kite exhibition in the country's capital Jakarta.
Summary:
North Korea on Tuesday urged South Korea to end a military intelligence-sharing pact with Japan, calling it a "dangerous hurdle" that harms improving inter-Korean relations.
Summary:
Stating that Tibetan Buddhists continue to be in a very difficult situation, US Ambassador-at-Large for International Religious Freedom Sam Brownback has said, "China remains a very, very troubling country on religious freedom." There are between 60 to 80 lakh Tibetan Buddhists in China.
Summary:
Venkataramanan is a director at AirAsia India, a Tata Group and AirAsia joint venture.
Summary:
Actress Taapsee Pannu has rejected a film opposite actor Nawazuddin Siddiqui, as per reports.
Apparently, she wasn't too keen on being paired with Nawaz in the film, hence she refused the offer," reports stated.
Summary:
"Sonam even asked me if I could convince my parents to get Ishaan's wedding date changed," said Swara.
Summary:
Denying rumours of his wife Neha Dhupia being pregnant before marriage, Angad Bedi said, "When it happens, we'll come out and surely speak about it." "First we need to buy a house...When we make more money and get some more work, we'll start a family too," he added.
Summary:
Talking about the T20I against Windies on May 31, World XI head coach Andy Flower has said "we've got Pakistanis and Indians sharing a dressing room which doesn't happen often." "I've been involved in charity events before as a player...there's a wonderful feel to it," added the former Zimbabwean captain.
Summary:
Al Jazeera has responded to the criticism by ICC for not co-operating on its match-fixing claims, saying the cricket governing body showed "a failure to understand investigative journalism".
Summary:
Summary:
Summary:
Alibaba along with a group of investors is leading a $1.38 billion investment in Chinese delivery service ZTO in exchange for 10% stake in the firm.
Summary:
Responding to Congress' claims of coming back into power after the 2019 elections, Union Minister Smriti Irani said party President Rahul Gandhi won't even be able to retain his constituency Amethi.
Summary:
Bengaluru-based mobile payments startup ToneTag has raised $8-10 million from investors led by Amazon and Mastercard.
Summary:
Reports claimed RainCan had better chances of acquisition, given the terms and conditions of ongoing talk.
Summary:
Laura Tenenbaum, a former science communicator for NASA, has said there is "fear and anxiety" in the space agency over cuts in climate science funding as it is considered a "sensitive subject" since US President Donald Trump assumed office.
Summary:
The Vishva Hindu Parishad has reportedly invited ex-RBI Governor Raghuram Rajan to speak at the World Hindu Congress in Chicago, to be held from September 7-9.
Summary:
A day after a search for the missing Malaysia Airlines flight MH370 ended, Malaysian Prime Minister Mahathir Mohamad has said the search may be resumed if new evidence is found.
Summary:
Indian Air Force has joined the operation to douse a massive fire raging for 17 hours in a rubber godown in Delhi's Malviya Nagar after fire tenders failed to contain the blaze.
Summary:
Despite an international ban on whale hunting, Japan killed another 333 Antarctic minke whales last summer under the loophole of "scientific research".
Summary:
Sridevi's daughter, actress Janhvi Kapoor, has featured on the cover of the June edition of Vogue India, marking her debut on a magazine cover.
Summary:
On Tuesday, Williams won her first Grand Slam match post giving birth.
Summary:
Canadian citizen Karim Baratov who was responsible for a massive security breach at Yahoo in 2014 has been sentenced to five years in prison.
Summary:
A former software engineer at Snapchat parent Snap, Shannon Lubetich, in a recent interview accused the company of having a 'sexist' and 'toxic' culture.
Summary:
"The city is facing acute water shortage, because of increased tourism, bad water management," the message read.
Summary:
A 22-year-old daughter of BJP MLA Kushagra Sagar's domestic help in Uttar Pradesh has accused him of raping her several times between 2012 and 2014 on the pretext of marriage.
Summary:
Former Uber executive Travis VanderZanden's e-scooter startup Bird is reportedly raising $150 million led by Sequoia Capital which values the company at $1 billion.
Summary:
Talking about the relationship between PM Narendra Modi and Chinese President Xi Jinping, External Affairs Minister Sushma Swaraj said if the leaders face any issue, they can now speak with each other over the phone.
Summary:
The equipment will also enhance the capabilities of Sukhoi-30 warplanes.
Summary:
The Karnataka government has announced that all schools and colleges in Mangaluru and Udupi will remain closed on Wednesday after heavy rainfall flooded several low-lying areas.
Summary:
Pakistan decreased the size of health warnings on cigarette packs upon the request of the maker of Marlboro cigarettes, Philip Morris International, and the British American Tobacco, according to Reuters.
Summary:
The inaccurate count was a result of the devastation caused by the storm.
Summary:
Vedanta-run Sterlite Copper's CEO P Ramnath has said Tamil Nadu government's decision to shut its copper smelter in Tuticorin will affect around 30,000 direct and indirect jobs.
Summary:
Three bidders who submitted binding offers in the last round, the Munjal-Burman duo, Manipal Health, and Malaysia's IHH Healthcare, have been asked to participate.
Summary:
Lisa Mishra, a US-based YouTuber who did a cover of 'Tareefan' by mixing it with Justin Bieber's 'Let Me Love You' was invited to India to sing a version of 'Tareefan' by Veere Di Wedding's team.
Summary:
She thought I was naive, that I wasn't thick-skinned enough." The 21-year-old actress further said Sridevi wanted her and Khushi to live a "more relaxed life".
Summary:
Filmmaker Meghna Gulzar said that for her, if a story has grit and immediately connects, the genre becomes irrelevant and what its commercial possibilities are also not considered.
Summary:
Sonam Kapoor has said she has never gone for fame or stardom while adding, "I have always gone for good work." She added she does not think if it is a 'masala film' or some other genre.
Summary:
The panel felt that coin toss is an integral part of Test cricket which forms part of narrative of the game, ICC said.
Summary:
Talking about AB de Villiers' retirement, former captain Graeme Smith said South Africa has lost an "X-factor player" who can "single-handedly win games".
Summary:
Cork City's 23-year-old winger Kieran Sadlier scored from a distance of 80 yards from inside his own penalty box against St Patrick's Athletic in League of Ireland Premier Division.
Summary:
After former President Pranab Mukherjee accepted RSS' invite to attend their event, the organisation on Tuesday said eminent personalities like Mahatma Gandhi and former PM Indira Gandhi also attended their events in the past.
Summary:
After former President Pranab Mukherjee agreed to attend an event organised by RSS, union minister Nitin Gadkari said RSS was a nationalist organisation and not Pakistan's ISI.
Summary:
He added that the campaign will be extended to Maharashtra.
Summary:
Sikh peace activist Charanjeet Singh was shot dead on Tuesday by assailants on a bike in Pakistan's Peshawar.
Summary:
As many as 10 lakh bank employees across India will go on a two-day strike from tomorrow in protest against the nominal 2% wage hike, the National Organisation of Bank Workers said.
Summary:
The IRCTC's new 'Wait List Prediction' tool, which was launched on Tuesday, will tell passengers the probability of their waitlist ticket being confirmed at the time of booking.
Summary:
An Italian court has summoned the parents of a 1-year-old boy for naming him Benito Mussolini, report said.
Summary:
Asserting that the Centre is not willing to release funds for Andhra Pradesh, Chief Minister Chandrababu Naidu asked why the state should pay taxes to the government.
Summary:
A man disguised as a devotee attacked a priest of a temple in Rajasthan after WhatsApp messages falsely claimed President Ram Nath Kovind was not allowed to enter the sanctum sanctorum.
Summary:
At least 54 people were killed due to thunderstorms and lightning in Bihar, Uttar Pradesh, Jharkhand, and Madhya Pradesh in the past 24 hours, officials said on Tuesday.
Summary:
Speaking about the Centre's decision to halt anti-militancy operations in Jammu and Kashmir during Ramadan, Home Minister Rajnath Singh on Tuesday said the hands of the soldiers were not tied.
Summary:
The Director Generals of Military Operations (DGMO) of India and Pakistan on Tuesday agreed to fully implement the ceasefire understanding of 2003 in letter and in spirit.
Summary:
Recently, the monthly salaries of the President and Vice President were increased to â¹5 lakh and â¹4 lakh.
Summary:
"The monkey tore up the bag and scattered â¹60,000, which were recovered," the girl's father said.
Summary:
After a transgender was lynched by a mob over suspicions of being a child-trafficker due to WhatsApp rumours, the Hyderabad Police has urged the public to not believe social media rumours.
Summary:
India's largest miner Coal India has posted a 52.3% year-on-year decline in net profit to â¹1,295.30 crore for March quarter, compared to â¹2,718.8 crore in same quarter last fiscal.
Summary:
HDFC Bank Managing Director Aditya Puri is the only Indian to feature in the 'World's Best CEOs' list by financial magazine Barron's.
Summary:
After Mahindra & Mahindra announced its quarterly results, Mahindra Group Chairman Anand Mahindra tweeted, "Devil whispered in my ear, you're not strong enough to withstand the storm.
Summary:
After an Air India air hostess complained to Aviation Minister Suresh Prabhu about sexual harassment by a senior executive, he directed the airline's CMD Pradeep Kharola to address the issue.
Summary:
Salman Khan, who made his television debut in 2008 with the show 'Dus Ka Dum', has said he was really scared to show his original personality through the show.
Summary:
Actor Rishi Kapoor, while tweeting on the death anniversary of his grandfather Prithviraj Kapoor, wrote, "Died- 29th May, 1971...
Wikipedia has got the year of death wrong." Earlier, 1972 was being shown as the year of Prithviraj Kapoor's death on Wikipedia.
Summary:
Kajol has voiced the character Helen Parr, also known as Elastigirl, in the Hindi version of the animated film 'Incredibles 2'.
Summary:
"Whenever my wife and I give advice to Hardik, he says 'My life, my rules'," Krunal revealed.
Summary:
"When someone called him black...our mother used to fight and say he isn't black," Krunal added.
Summary:
MS Dhoni-led Chennai Super Kings slammed 145 sixes in the recently concluded IPL 2018, setting the record for the most number of sixes hit by a team in a single IPL season.
Summary:
Google ARCore supports augmented reality on Android devices without the need for additional sensors.
Summary:
The Supreme Court has stayed the death sentence given to a man who raped and killed an 11-year-old girl in Madhya Pradesh last year.
Summary:
Gaurishankar Gupta had married the tribal woman as he wanted a son and his first wife had borne him three daughters.
Summary:
Denmark will give compulsory lessons on democracy and equality, as well as major Danish traditions and Christian holidays to children living in neighbourhoods containing large numbers of migrants.
Summary:
Two female police officers and a civilian were shot dead by a gunman in the Belgian city of Liège on Tuesday, officials said.
Summary:
As much as â¹20,000 crore is pending with the government on account of GST refund, exporters' body FIEO has said.
Summary:
Vancouver public transit system TransLink also announced plans to "pause" its current campaign featuring Freeman's voice.
Summary:
Summary:
Rajinikanth's 'Kaala' will not be released in Karnataka as no distributors are willing to release it following the actor's comments on Cauvery issue, as per Karnataka Films Chamber of Commerce (KFCC) President Sa Ra Govindu.
Summary:
Union Minister Nitin Gadkari on Tuesday withdrew his defamation case against Congress leader Digvijaya Singh after Singh apologised and expressed regret over his statement.
Summary:
Haryana Minister Anil Vij has said, "Rahul Gandhi is similar to Nipah virus, whichever party he comes in contact with, that party will be finished." He added that opposition parties will be "finished" if they form a 'United Front' for the 2019 elections.
Summary:
After EVMs malfunctioned during Uttar Pradesh bypolls, former CM Akhilesh Yadav on Tuesday said that all parties should support the use of traditional ballot papers for casting votes.
Summary:
Ant Financial last raised funds in April 2016 which valued the startup at $60 billion.
Summary:
Residents in Shimla staged a sit-in protest outside the waterworks office on Monday midnight, alleging that water supply to various localities had been disrupted for over a week.
Summary:
This comes after around 20% of EVMs and VVPAT machines in the constituencies were replaced due to technical glitches.
Summary:
The body of a passenger was recovered from a toilet of the Patna-Kota Express over two days after he had died, officials said on Tuesday.
Summary:
The UAE on Tuesday banned the import of fresh fruits and vegetables from Kerala following the outbreak of the Nipah virus.
Summary:
The Sitapur basic education department has withdrawn its order directing primary school teachers to send their photographs with toilets.
Summary:
The Delhi Police has sent CBSE a list of 60 students who allegedly received the leaked Class 10 mathematics and Class 12 economics question papers, according to officials.
Summary:
The US has temporarily halted applying new sanctions against North Korea ahead of the summit between President Donald Trump and North Korean leader Kim Jong-un, reports quoting US officials said.
Summary:
Telecom regulator TRAI has issued new draft norms to curb unwanted calls and SMS by using blockchain technology.
Summary:
Govinda is set to play the main lead in Pahlaj Nihalani's upcoming film inspired by Vijay Mallya's life.
It'll be a comedy of a kind never attempted by Govinda before," said Nihalani.
Summary:
Actor Rajkummar Rao has said that he had a great experience working with both Aishwarya Rai Bachchan and Anil Kapoor in their upcoming film 'Fanne Khan'.
Summary:
After a picture of Priyanka Chopra and American singer Nick Jonas on a yacht surfaced online, a Twitter user wrote, "Predicting them to be 2018's hottest couple." Another user wrote, "I'm not saying Priyanka...and Nick Jonas are a thing.
Summary:
Pakistan all-rounder Shahid Afridi, who had retired from international cricket last year, has replaced Eoin Morgan as captain of World XI team that will face Windies in a T20I on May 31.
Summary:
Mistakes are human nature." "F**k you Ramos," she further wrote about Real Madrid captain.
Summary:
KXIP opener Chris Gayle has hit out at ex-Australia captain Ian Chappell, who had called for a worldwide ban on the opener for his "Don't blush, baby" remark to an Australian reporter.
Summary:
Alibaba has announced that it will sell several healthcare units on Tmall to healthcare subsidiary Alibaba Health Information Technology.
Summary:
Ten passengers were injured on a Jakarta-bound plane preparing for takeoff after a fellow traveller falsely claimed there was a bomb onboard.
Summary:
Summary:
Amid rising fuel prices in India, people from Uttar Pradesh and Bihar have been smuggling diesel and petrol from the neighbouring country of Nepal, according to reports.
Summary:
China approved 13 new Ivanka Trump trademarks, days before her father President Donald Trump said he would allow Chinese technology giant ZTE to stay in business in the US.
Summary:
The Enforcement Directorate has attached assets worth â¹177 crore owned by Rotomac Global and its directors under the Prevention of Money Laundering Act. It alleged that the assets were the proceeds of illegal money laundering.
Summary:
DPS Gurgaon student Prakhar Mittal who topped the CBSE Class 10 exams has lost only one mark in his French exam to score 499 out of 500.
Summary:
Protesters from Karnataka against Tamil Nadu over the Cauvery issue and Karnataka Film Chamber of Commerce (KFCC) threatened to stop the release of Rajinikanth's 'Kaala' in Karnataka.
Summary:
Yami Gautam revealed that she slapped a man who tried to touch her when she was studying in Chandigarh.
tried to touch my hand.
As soon as I slapped him, they...zoomed off," she added.
Summary:
Roman Abramovich, the Russia-born owner of the Chelsea football club, has become the richest Israeli citizen after immigrating to the country.
Summary:
The company's revenue rose 10.47% to â¹13,307.88 crore during the quarter.
Summary:
Irish campaigners have said they will support a move to name the new abortion law after Savita Halappanavar, an Indian-origin dentist who died after being denied an abortion in 2012.
Summary:
The CBI has booked AirAsia Group CEO Tony Fernandes and several others for alleged violation of norms in getting international flying licences.
Summary:
Further, more than 27,000 of the over 16 lakh students who appeared for the exams scored 95% or above.
Summary:
The man has been admitted to a hospital, while the shooter has been taken into custody by the police.
Summary:
While the overall pass percentage is 86.70%, the board exams were topped by four students who scored 499/ 500 (99.8%) marks.
Summary:
The panel report stated that the treatment administered by the hospital was in compliance with guidelines and protocols.
Summary:
A video showing a Faridkot jail inmate threatening to kill Punjab CM Captain Amarinder Singh has surfaced online.
Summary:
Uttar Pradesh IPS officer Rajesh Sahni on Tuesday asked his staff to get his official gun from his car before shooting himself dead in his Lucknow office.
Summary:
Around 4,500 pair of shoes symbolising the number of Palestinians killed by the Israeli forces in the past decade were laid outside the EU Council building in the Belgian capital of Brussels.
Summary:
The father of the 4-year-old French boy hanging from a balcony had left him alone to go shopping and then remained on the street playing Pokémon Go, officials said.
Summary:
English astronomer Arthur Eddington used the total solar eclipse of May 29, 1919, to prove Einstein's theory that gravity can bend spacetime causing light to deflect, which challenged Newton's ideas of space being a fixed background.
Summary:
English theoretical physicist Peter Higgs, who turns 89 today, had independently predicted in 1964 the 'God Particle' Higgs boson, a subatomic particle which gives matter its mass.
Summary:
RCom made the offer to Ericsson during National Company Law Appellate Tribunal hearing over an appeal it filed against the tribunal's insolvency order.
Summary:
The Enforcement Directorate (ED) has arrested Kanishk Gold MD Bhupesh Jain for alleged money laundering.
Summary:
Actor Akshay Kumar has said that he received feedback from people that his film 'Toilet- Ek Prem Katha' actually changed the mindset of people.
Summary:
Mumbai Indians' all-rounder Krunal Pandya has revealed that Kenyan cricketers once signed autographs for his brother Hardik as they thought he was from Kenya.
Summary:
CSK's 36-year-old captain MS Dhoni beat 34-year-old teammate Dwayne Bravo with a photo-finish in a three-run sprint challenge following their side's IPL 2018 title win.
Summary:
Windies batsman Chris Gayle wore a Sikh turban and performed 'bhangra' alongside Shikhar Dhawan and Rohit Sharma at an award function on Monday.
Summary:
According to the petition, Ramos "intentionally kept Salah's arm under his armpit, causing dislocation of his shoulder".
Summary:
Bengaluru-based peer-to-peer lending startup Cashkumar has raised â¹5 crore in a pre-Series A round of funding through deals platform LetsVenture.
Summary:
The guard deployed there told the police that he took his friend's motorcycle for a ride after getting drunk and didn't know anything about the man's death.
Summary:
A 24-year-old woman in West Bengal was killed by her husband's family because she was dark-skinned and had recently given birth to a girl, her father has alleged.
Summary:
The head of Air India's Women Cell was openly supportive of the executive's actions, she added.
Summary:
Edmund Hillary of New Zealand and Tenzing Norgay of Nepal reached the summit of Mount Everest on May 29, 1953, becoming the first people to stand atop the world's highest mountain.
Summary:
This comes after Kumaraswamy was slammed for saying he was not at the mercy of the 6.5 crore people of Karnataka.
Summary:
Earlier it was reported that the company was planning to use OLED in two of its three models to be shipped later this year.
Summary:
Over 200 farmers in Maharashtra's Hadgaon turned millionaires after the government compensated them for acquiring the villagers' land for constructing a national highway.
Summary:
The southwest monsoon has hit Kerala on Tuesday, three days ahead of its predicted date, India Meteorological Department said.
Summary:
Days after saying that Narendra Modi was the first Indian Prime Minister to reach out to Indians in countries like Nepal, Union Minister Sushma Swaraj tweeted, "This was a mistake on my part.
Summary:
Police have booked 26 villagers in Haryana's Karnal for holding eight government officials, who were part of a raid team of the stateâÂÂs power department, hostage for three hours on Monday.
Summary:
After the Tamil Nadu government ordered permanent closure of the Sterlite plant in Tuticorin, the company issued a statement claiming it operated the plant for 22 years in a transparent and sustainable way.
Summary:
Prime Minister Narendra Modi has said that banks and financial institutions have given â¹6 lakh crore to 12 crore beneficiaries under the Pradhan Mantri Mudra Yojana.
Summary:
Bangladesh security forces have killed over 100 people and arrested about 7,000 in a nationwide anti-drug drive that was launched this month.
Summary:
Spanish luxury label Balenciaga has been trolled for an â¹87,000 clothing item, described to be worn as a t-shirt or a shirt.
Summary:
A new poster of Sanjay Dutt's biopic 'Sanju' featuring actress Anushka Sharma has been released.
Earlier, Anushka had said her character is the only fictional character in the film.
Summary:
Praising Alia Bhatt for her performance in 'Raazi', Kangana Ranaut said, "Alia is most definitely the undisputed queen." "I have no words to express the performance of Alia in the film...It's Alia's world and we are just living in it," she added.
Summary:
Denying rumours that he is dating filmmaker Karan Johar, fashion designer Manish Malhotra said, "Karan is like a brother to me." "It's just ridiculous," he added while addressing the rumours.
Summary:
Actor Matthew Lewis, known for portraying Neville Longbottom in the 'Harry Potter' franchise, has announced his marriage to his girlfriend Angela Jones.
Summary:
Sonam Kapoor, while talking about not playing the lead role in 'Veere Di Wedding', said, "If I had chosen to play the central character, I don't think any other mainstream actor would've done the film." "I don't believe...I need to play the central character," she added.
Summary:
MI all-rounder Krunal Pandya has revealed he proposed to Pankhuri Sharma the day his team won the IPL final in 2017.
Summary:
Israel-based firm Tactical Robotics has successfully completed its first demonstration of an autonomous drone for unmanned casualty evacuation missions.
Summary:
The All India Online Vendors Association (AIOVA) has claimed that homegrown e-commerce firm Flipkart has not been making scheduled payments to merchants which sell on the platform.
Summary:
Flipkart Co-founder Binny Bansal-backed venture capital firm 021 Capital has led a $5-million funding round in Bengaluru-based food startup Y-Cook.
Summary:
Founded in 2015, the startup offers retail investors access to sophisticated investment advice and techniques.
Summary:
Iron-rich rocks near ancient lake sites on Mars are the best place to seek fossil evidence of life which likely existed about four billion years ago, researchers have suggested.
Summary:
Physicists from Australia and Switzerland have proposed a device which uses quantum tunnelling of magnetic flux around a capacitor, breaking time-reversal symmetry.
Summary:
Another RSS leader S Gurumurthy termed Mukherjee, who has served as a Congress leader for decades, as the "new Sardar Patel".
Summary:
The Maharashtra government has decided to construct 400 toilets along state highways at an interval of 100 km.
"We will construct 160 toilets along state highways in the coming days.
Summary:
Summary:
Prakhar Mittal from Gurugram, Rimjhim Agrawal and Nandni Garg from Uttar Pradesh, and Sreelakshmi G from Kerala, have jointly topped the CBSE Class 10 board examinations 2018, each scoring 499 out of 500.
Summary:
Durrani further claimed that a deal was struck between the US and Pakistan in this regard.
Summary:
Bollywood actor Salman Khan once trained under former Indian cricketer Salim Durani, who was India's first cricketer to be given the Arjuna Award.
Summary:
It also posted a net profit of â¹2.8 crore for the same period against a net loss of â¹23.2 crore the previous year, as per filings.
Summary:
Users can also send a pre-filled message to their contacts using the URL 'https://api.whatsapp.com/send?text=' followed by the message.
Summary:
A ã1-million (around â¹9 crore) national biobank is being created in the UK by collecting DNA of thousands of animals, including endangered species.
Summary:
This led to many people approaching prison authorities with requests to eat meals prepared in jails.
Summary:
A video of a Sikh man waking up his Muslim neighbours for the early morning Ramadan meal, Sehri, in J&K has surfaced online.
Summary:
On Monday, the state government had issued an order to shut down the Sterlite copper unit permanently.
Summary:
Around 17 deaths have been reported from Bihar, while 12 died in Jharkhand.
Summary:
Latin America must give serious thought to legalising drugs because illegality is killing people, UN's Economic Commission for Latin America and the Caribbean has said.
Summary:
Public sector lender Bank of India has reported a loss of nearly â¹4,000 crore for the March quarter as it increased provisioning for bad loans.
Summary:
States can reduce petrol prices by â¹2.65/litre and diesel by â¹2/litre if they decide to forego potential additional gains out of high crude oil rates, according to an SBI report.
Summary:
External Affairs Minister Sushma Swaraj on Monday said that India has no plans to use Venezuela's cryptocurrency 'petro' in oil trade with the Latin American nation.
Summary:
This will be the 50-year-old actor's fifth film as the fictional spy character.
Summary:
Ajay Devgn has shared a video of his 7-year-old son Yug, which shows him taking part in the 'Fitness Challenge', a fitness campaign started by Union Minister Rajyavardhan Singh Rathore.
Summary:
Afghanistan's 19-year-old spinner Rashid Khan has said that AB de Villiers, MS Dhoni, and Virat Kohli are the best dismissals he has picked in his career so far.
Summary:
Iceland Cricket's official Twitter account trolled Doha-based news channel Al Jazeera over their sting operation into match-fixing practices.
Mocking the alleged match-fixer's influence, Iceland Cricket tweeted, "Apparently he also paid Ravindra Jadeja to have two hands and two feet, the Pope to be a Catholic and W.
Summary:
Delhi CM Arvind Kejriwal on Monday posted a cartoon on Twitter, mocking the BJP-led Centre by comparing the initiatives taken by AAP with those of the Centre.
Summary:
Summary:
US-based consumer data company Mobilewalla has raised $12.5 million in a Series B funding round led by GCP Capital.
Summary:
The last death event was about 10,000 years ago, due to a massive sediment dump amidst a higher sea level, said scientists.
Summary:
An artificial intelligence system was able to accurately detect skin cancer 95% of the time, as opposed to 86.6% by dermatologists on average.
Summary:
Delhi Metro's Magenta Line from Janakpuri West to Noida's Botanical Garden became fully operational on Tuesday after CM Arvind Kejriwal flagged off the 24.8-km Kalkaji Mandir-Janakpuri West section.
Summary:
A school in Maharashtra's Pune issued leaving certificates to over 150 students for non-payment of fees.
Summary:
The Akhil Bharat Hindu Mahasabha (ABHM) has requested the Centre to replace the picture of Mahatma Gandhi with that of social reformer and former party President Veer Savarkar.
Summary:
The Finance Ministry on Monday clarified that renting or leasing of land by farmers for agriculture, forestry, fishing or animal husbandry is exempt from GST.
Summary:
For the first time in India, discount fashion retailer, Brand Factory launches Unbranded to Branded Festival from May 30 to June 3.
Summary:
Javadekar had called the policy "an illogical menace", stating that such inflation of marks was "unacceptable".
Summary:
OnePlus 6 has become the highest selling smartphone in terms of revenue on any single day.
Summary:
Afghanistan's 19-year-old spinner Rashid Khan, who played for SunRisers Hyderabad in the IPL 2018, said he thinks he is probably the most popular person in his country after the nation's President Ashraf Ghani.
Summary:
Schools in China have been testing an artificial intelligence (AI) based system that can grade students' work, and even offer suggestions where appropriate, according to scientists involved in the program.
Summary:
When damaged, the material heals itself by forming connections with other droplets and rerouting electrical signals without interruption.
Summary:
Andhra Pradesh minister Kalava Srinivasulu on Monday said the ruling TDP won't accept Congress President Rahul Gandhi as the PM candidate of a "United Front" if comes into being before the 2019 polls.
Summary:
Slamming PM Narendra Modi over his silence on the 13 deaths in police firing at anti-Sterlite protests in Tamil Nadu, DMK Working President MK Stalin said, "Is he some foreign country's Prime Minister?
Summary:
Good sense of humour and teamwork are essential traits required among Mars-bound astronauts, as per a study.
Summary:
Stating that he has promised to waive farm loans, Karnataka Chief Minister HD Kumaraswamy on Monday said he would retire from politics and resign as CM if he is unable to do so.
Summary:
Sekar claimed he ordered the firing after all other measures to control the protestors failed.
Summary:
The Election Commission has said media reports claiming that EVMs and VVPATs failed on a large scale were an "exaggerated projection of reality".
Summary:
Set up at a cost of â¹200 crore, the Bhubaneswar national data centre is NIC's fourth in India after Delhi, Hyderabad and Pune.
Summary:
The Indian Railways' revamped website will now have a new tool that can predict the probability of whether a wait-listed ticket will be confirmed.
Summary:
External Affairs Minister Sushma Swaraj on Monday revealed that PM Narendra Modi told UK PM Theresa May that liquor baron Vijay Mallya would be lodged where the UK jailed Mahatma Gandhi and Jawaharlal Nehru.
Summary:
Dassault was the fourth richest person in France with a net worth of $26 billion, according to Forbes.
Summary:
Summary:
Summary:
Pakistani batsman Fakhar Zaman was forced to do 20 push-ups after he played a false shot while practicing in the nets.
Summary:
An Egyptian lawyer has filed an official FIFA report against Real Madrid captain Sergio Ramos for "intentionally hurting Mohamed Salah" during the Champions League final against Liverpool.
Summary:
CAIT alleges Walmart will indulge in predatory pricing, deep discounts, and loss funding after acquiring 70% Flipkart stake.
Summary:
The study has come after French government overturned a proposed ban on the breeding of dolphins in captivity in marine parks.
Summary:
A girl in Tripura committed suicide after she was allegedly harassed by the staff of a shopping mall for shoplifting.
Summary:
The one-month-old babies, who were bundled in a polythene bag, were admitted to a hospital where doctors said their condition was stable.
Summary:
The head priest of a temple in Gujarat's Prachi has been booked after a married woman alleged he raped her repeatedly for nearly two years on the pretext of marrying her.
Summary:
Four men and three juveniles mocked a man dressed as Goddess Kali and then stabbed him to death, the Delhi Police said on Monday.
Summary:
"If you voted 'Yes' you should consider coming to confession," he added.
Summary:
Yoga guru Ramdev's Patanjali Ayurved on Sunday launched 'Swadeshi Samriddhi' SIM cards, in partnership with state-owned telecom operator BSNL.
Summary:
The trailer of the Rajinikanth starrer 'Kaala' has been released.
Huma Qureshi will reportedly be playing a 45-year-old woman who falls for Rajinikanth's character.
Summary:
Navjot Singh, an aspiring Punjabi singer, was found dead with his body bearing 4-5 bullet marks in Dera Bassi near Chandigarh on Sunday.
Summary:
Mehr Jesia, who announced a mutual separation from her husband of 20 years Arjun Rampal, won Miss India when she was 17 and represented the country at Miss Universe 1986.
Summary:
JD(S) supremo HD Deve Gowda on Monday said he'd offered to support a Congress-led government in Karnataka but they insisted on his son HD Kumaraswamy being the Chief Minister.
Summary:
Karnataka CM HD Kumaraswamy on Monday said that he cannot do anything without the permission of Congress leaders as they have given him support.
Summary:
Summary:
Talking about NDA government's four years in power, External Affairs Minister Sushma Swaraj on Monday said that India had organised ministerial-level visits to 186 of 192 member countries of the United Nations.
Summary:
Uttar Pradesh Deputy CM Keshav Prasad Maurya on Monday underwent a surgery at AIIMS, Delhi, to get a lesion in the brain removed.
Summary:
District Magistrate of Maharashtra's Gondia, Abhimanyu Kale, has claimed that several VVPAT machines started malfunctioning due to "scorching heat" during the Lok Sabha bypolls on Monday.
Summary:
"I want to focus on my work and career and I can't let all this affect me," added Hina.
She further said, "When a person...moves up in...career...many...put them down...
Summary:
Actress Diana Penty said that there is fear of being forgotten by the film industry.
Summary:
Malaika Arora, who got trolled last week for posting old pictures of herself in a swimsuit, asked, "What as per you, is the appropriate attire to wear while swimming or diving in the ocean?" Responding to trolls, She added, "To my knowledge, it is swimsuits that one uses...
Summary:
Cricket legend Sachin Tendulkar took to Twitter to share a picture of himself with his wife Anjali and Lata Mangeshkar, revealing he watched the IPL 2018 final at the legendary singer's house.
Summary:
The writers of 'Avengers: Infinity War' Christopher Markus and Stephen McFeely have confirmed that the Marvel characters Captain America and Black Widow will have a bigger role in the film's sequel.
Summary:
Summary:
"Incentive of getting me in team, you get the trophy with me!" the spinner had said.
Summary:
Delhi Daredevils and Team India fast bowler Mohammad Shami has been included in the World XI squad that will play a one-off T20I against Windies at Lord's Cricket Ground, London on May 31.
Summary:
The BCCI on Monday wrote a letter to the Centre, seeking its stance on bilateral series between India and Pakistan.
Summary:
ThereâÂÂs no time to regret...I've had enough time to regret in past," he added.
"I'm going forward with the theory of 'whatever time I have make it count," he further said.
Summary:
US-based Imagen Technologies has developed an artificial intelligence (AI)-based diagnostic tool called OsteoDetect which can detect wrist fractures.
Summary:
External Affairs Minister Sushma Swaraj on Monday said, "Ministry of External Affairs during Congress rule was an elitist ministry...
Summary:
Former Karnataka Governor HR Bhardwaj has said that only non-political persons should be appointed as governors.
Notably, Bhardwaj himself was a Congress leader when he was appointed Karnataka Governor in 2009 and was accused of helping destabilise Karnataka's BJP government in 2010.
Summary:
Bengaluru-based startup iNurture, which provides industry-related skill courses, has acquired a similar platform KRACKiN for an undisclosed amount.
Summary:
A medical student named Kausar Ali has been arrested in West Bengal for allegedly sharing nude pictures of his fiancée.
Summary:
Family members of the accused in the Kathua rape case have called off their hunger strike, days ahead of the commencement of trial.
Summary:
Pakistan captain Sarfaraz Ahmed has been fined 60% of match fee for maintaining a slow over-rate in the Lord's Test against England, which the visiting side won by nine wickets.
Summary:
Earlier, the Madras High court stayed the expansion of the plant.
Summary:
In an email to her husband and Congress MP Shashi Tharoor before her death, Sunanda Pushkar wrote, "I don't have will to live, All I pray for is death." The email was presented by the police in court as evidence of cruelty and abetment of suicide against Tharoor.
Summary:
After Karnataka CM HD Kumaraswamy claimed he cannot do anything without Congress leaders' permission, BJP leader BS Yeddyurappa said, "He cannot work as the CM of Congress party.
Summary:
Summary:
The Supreme Court on Monday refused a plea for an urgent hearing into alleged police atrocities during the protests against the Sterlite Copper plant in Tamil Nadu's Tuticorin.
Summary:
The RBI has appointed Chartered Accountant Sudha Balakrishnan as its first-ever Chief Financial Officer (CFO) effective May 15, according to reports.
Summary:
External Affairs Minister Sushma Swaraj on Monday said, "Jab seema par janaze uth rahe hon, to baatcheet ki awaaz acchi nahi lagti (Talks don't seem favourable when funerals take place on the border)." "Terror and talks cannot go together," she asserted.
Summary:
Vishwas remained the only accused in the case after Delhi CM Arvind Kejriwal and four others apologised to Jaitley.
Summary:
Indian External Affairs Minister Sushma Swaraj on Monday said that the country does not abide by the unilateral sanctions imposed by the US on Iran, adding that it only follows UN sanctions.
Summary:
Earlier, the CBSE had ordered against conducting a retest for the Math exam after it was leaked.
Summary:
In a bid to eradicate a cattle disease Mycoplasma bovis, New Zealand will kill over 1 lakh cows over the next two years, PM Jacinda Ardern has said.
Summary:
The company's revenue from operations rose about 13% to â¹23,100 crore, compared to â¹20,416 crore a year earlier.
Summary:
Wishing his son AbRam on his 5th birthday on May 27, actor Shah Rukh Khan wrote, "My sunshine turns 5 yrs today but he thinks he is 9!
Summary:
As per reports, Kareena Kapoor Khan will be collaborating with Karan Johar after 5 years as she has signed a film with his production house Dharma Productions.
Summary:
Summary:
A new poster of Sanjay Dutt's biopic titled 'Sanju', which features actor Vicky Kaushal as Sanjay's best friend, has been released.
He plays Sanju's best buddy," wrote the film's director Rajkumar Hirani while sharing the poster.
Summary:
After Congress President Rahul Gandhi tweeted that he will accompany his mother Sonia abroad for a medical check-up, the BJP asked if he could ensure a working government in Karnataka before leaving.
Summary:
BJP General Secretary Muralidhar Rao today said the Congress-JD(S) coalition government in Karnataka will not be able to complete its full term, adding, "either the BJP has to take the responsibility or there will be mid-term elections in Karnataka." "People wanted Congress-mukt Karnataka.
Summary:
Goalkeeper Loris Karius was subjected to death threats on social media after his mistakes led to two of Real Madrid's goals in their 3-1 victory over Liverpool in the Champions League final on Saturday.
Summary:
The 30-year-old was named 2018 edition's Most Valuable Player for scoring 357 runs and taking 17 wickets in 16 matches.
Summary:
Reacting to CSK winning their third IPL title, a user tweeted, "With an average age of 33, CSK were mocked as 'Dad's Army'...After 6 weeks and 60 matches...they have proved that indeed baap baap hota hai." Other tweets read, "CSK are back to where they belong," and "Things that get better with age: 3.
Pickles 1.
Summary:
Google India has announced a contest for kids, across the country, out of which 100 winners will be invited to its Gurugram and Hyderabad campuses for a summer camp.
Summary:
The AIADMK has expelled IT wing member Hari Prabhakaran "for giving the party a bad name" after he posted a tweet in which he compared reporters to street dogs.
Summary:
A Dalit Christian from Kerala was found dead two days after he married a Christian girl from an affluent family.
Summary:
Lightning killed at least 11 people while thunderstorms left over a dozen others injured in the past 24 hours in Jharkhand, officials said today.
Summary:
Two girls were hit by a train in Delhi and declared brought dead after they were rushed to a hospital on Sunday, police said.
Summary:
Former Uttar Pradesh Chief Ministers Mulayam Singh Yadav and his son Akhilesh have moved the Supreme Court seeking "appropriate" time to vacate their government bungalows in Lucknow.
Summary:
Voting for Lok Sabha bypolls has been temporarily suspended at 35 booths in Maharashtra's Bhandara-Gondia due to faulty EVMs, district authorities said.
Summary:
The 22-year-old Mamoudou Gassama, who was dubbed 'Spiderman', will be offered a place in the fire brigade.
Summary:
Former Pakistan Chief Justice Nasirul Mulk was on Monday appointed as the interim Prime Minister of the country until the general elections are held on July 25.
Summary:
The film, which also stars Vicky Kaushal, earned â¹102.50 crore within 17 days of its release.
Summary:
The International Cricket Council has stated that Al Jazeera, the Doha-based news broadcaster behind the recent sting operation into match-fixing in cricket, is not cooperating with them for an official investigation into the malpractice.
Summary:
It marks Pereira's fifth accepted bug from Google's bug bounty program.
Summary:
Summary:
The aim is to boost the company's valuation and improve business management, reports added.
Summary:
"The government departments are generally hesitant in sharing data with private players...
"Startups can leverage this data with the use of artificial intelligence," he added.
Summary:
It took two hospital staff members two hours to count all the stones.
Summary:
BJP MP Amar Sable has said PM Narendra Modi never promised to deposit â¹15 lakh in every citizen's bank account, adding that it was not part of the BJP's election manifesto.
Summary:
Donald Trump's lawyer Rudy Giuliani has said that efforts by the US President and his allies to discredit the Russia probe are part of a PR campaign aimed at limiting the risk of Trump's impeachment.
Summary:
Discussing the use of abusive words in the 2006 film 'Omkara', Kareena Kapoor Khan said, "Saif Ali Khan was the villain in Omkara...he was bad mouthing.
Summary:
After winning IPL 2018 on Sunday, CSK captain MS Dhoni said, "Lot of people talk about numbers...so tonight is 27th, my jersey number is seven and this is CSK's seventh final.
Summary:
Dhoni, who was standing at the back while his team posed, saw Ziva running and picked her up before giving her a swing.
Summary:
IPL 2018 final's Man of the Match, Shane Watson, played with an injured leg to score a match-winning unbeaten 117, the highest-ever score in an IPL final.
Summary:
After winning his third IPL title, CSK captain MS Dhoni said, "We talked a lot about age, but what's more important is the fitness." "If you ask most captains, they want players who move well on the field.
Summary:
Talking about Microsoft's business model, CEO Satya Nadella in a recent interview said, "I do believe right now Microsoft is probably on the right side of history." Emphasising on Microsoft's business model, based on its customers being successful, Nadella also said, "If they are successful they will pay us." "We are not one of these transaction-driven...
Summary:
The app, which is allegedly the first ultrasound firewall for smartphones, will also allow users to block such cookies without affecting the device.
Summary:
Summary:
The SAD said Congress was trying to turn its 'Ghar Ghar Naukri' promise into 'Ek Ghar Naukri'.
Summary:
Odisha MP Jay Panda on Monday resigned from the Biju Janata Dal party and said he will formally convey his decision to the Lok Sabha Speaker.
Summary:
After at least 13 people died in protests against the Sterlite Copper plant in Tamil Nadu's Tuticorin, Deputy CM O Panneerselvam on Monday said the government will take necessary steps to permanently close the plant.
Summary:
A jawan and a civilian were killed on Sunday in a militant attack on an Army camp in Jammu and Kashmir's Pulwama district.
Summary:
Punjab CM Captain Amarinder Singh has said no action will be taken against the policeman who was arrested when he entered court premises with a revolver, a week after he booked a Congress candidate for illegal sand mining.
Summary:
He asserted that Indian IT industry uses less than 10,000 of the 65,000 H-1B visas issued every year.
Summary:
South Korean police have summoned Korean Air Chairman Cho Yang-ho's wife over allegations she physically and verbally assaulted over 10 employees.
Summary:
"All journeys have different paths.
We feel that it's time for us to move on to different destinations henceforth," the official statement read.
Summary:
The record of most sixes in a single edition of IPL was set in this year's edition, with 872 sixes hit across 51 matches.
Summary:
Kings XI Punjab fast bowler Andrew Tye, who was bought for â¹7.2 crore, was awarded the Purple Cap for taking the most wickets in Indian Premier League 2018.
Summary:
With around 71,700 pending cases, the Delhi High Court is presently functioning with 36 judges, which is nearly half of its sanctioned strength of 60 judges.
Summary:
Prime Minister Narendra Modi on Monday claimed that only 13 crore families had LPG connections till 2014, most of whom were rich people.
Summary:
During the 44th edition of his Mann Ki Baat programme, PM Narendra Modi praised Odisha-based tea-seller D Prakash Rao for spending 50% of his earnings on education, food, and health for 70 slum children.
Summary:
Pakistan had conducted its nuclear tests in Balochistan's Chagai days after India's Pokhran-II tests.
Summary:
The Dionne quintuplets, the world's first quintuplets known to have survived infancy, were born on May 28, 1934 in Canada.
They were born prematurely, together weighing 14 pounds.
Summary:
A video of a Malian migrant scaling four floors of a building in Paris to save a child hanging from a balcony has gone viral.
Summary:
Confirming that a team of US negotiators was in North Korea for talks ahead of his planned summit with Kim Jong-un, President Donald Trump said, "North Korea will be a great economic and financial nation one day." He further said that North Korea has brilliant potential.
Summary:
Twenty-one state-owned banks have incurred losses amounting to â¹25,775 crore due to banking frauds in 2017-18, an RTI reply has stated.
Summary:
Packaged goods company Patanjali Ayurved's Managing Director (MD) Acharya Balkrishna has said that "others get scared" when Patanjali says it is entering an industry.
Summary:
India on Sunday launched its second IT corridor in China in the southwestern city of Guiyang which will focus on Big Data.
Summary:
Actor Salman Khan responded to commentator Irfan Pathan's question about CSK being called a team of 'old men'.
CSK had as many as nine players aged above 30 in their squad in IPL 2018.
Summary:
Aamir Khan has said that he does rehearsals for three to four months before a film's shoot.
Aamir further said, "It should be your lines...not the writer's...I write lines as well."
Summary:
Summary:
Ferrari's Sebastian Vettel, last year's winner at the Monaco GP, finished second while Mercedes' Lewis Hamilton was third.
Summary:
Summary:
Search engines like Google and Microsoft's Bing may have to start paying for showing news on their platform, under the rules endorsed by the European Union.
Summary:
Andhra Pradesh Chief Minister Chandrababu Naidu on Sunday said that PM Narendra Modi is a "campaign PM" who has failed to deliver on promises.
Summary:
US-based e-commerce giant Amazon has led a $12 million funding round in Mumbai-based online insurance startup Acko.
Summary:
Newly-elected Karnataka Congress MLA Siddu Nyamagouda on Monday died in a car crash near Bengaluru while returning to Jamkhandi from Goa. The incident occurred after a tyre of the car he was travelling in burst and the car smashed into a wall.
Summary:
The giant wheel reportedly crashed after a loose screw in the wheel came off, reports said.
Summary:
A 31-year-old auto-rickshaw driver in Delhi's Khadar Puliya on Saturday threw his six-year-old son into a canal after getting irritated by his constant crying and demand to eat momos.
Summary:
Bharti Airtel Chairman Sunil Mittal is looking to invest $1 billion into a hotel chain founded by his son-in-law Sharan Pasricha in London, as per reports.
Summary:
The lira has lost around 20% of its value against the US currency this year.
Summary:
Allen Solly, India's pioneer brand in unconventional work-wear from Aditya Birla Fashion and Retail Ltd has launched 'Open Work Culture' campaign.
Summary:
IPL 2018 witnessed over 30 records being broken.
Further, the CSK-RCB match in Bengaluru witnessed 33 sixes, the most in any IPL match.
Summary:
Playing in their seventh Indian Premier League final, Chennai Super Kings on Sunday defeated SunRisers Hyderabad to clinch their third Indian Premier League title.
Summary:
The 36-year-old became the first overseas player and overall second to slam a hundred in an IPL final.
Summary:
After Volkswagen's Fallersleben plant was partially destroyed post World War II, the British offered Volkswagen to Ford, free of charge.
Summary:
Domino's Pizza Co-founder James Monaghan in 1961 traded his 50% stake in the company to his brother and Co-founder Tom Monaghan for his used Volkswagen Beetle car.
Summary:
Volkswagen, which was founded on May 28, 1937, had dethroned energy titan Exxon Mobil to become the most valuable company.
Summary:
Chennai Super Kings captain MS Dhoni set the record for the most stumpings in the Indian Premier League, effecting his 33rd stumping dismissal against SunRisers Hyderabad in the IPL 2018 final on Sunday.
Summary:
CSK skipper MS Dhoni has become the first-ever cricketer to win 150 T20 matches as captain.
Summary:
The government will not allow "fly-by-night" data mining firms to improperly harvest social media data of Indian citizens, Union Minister Ravi Shankar Prasad has said.
Summary:
Kartik Aaryan has denied rumours of a rift with his debut film 'Pyaar Ka Punchnama' director Luv Ranjan.
Earlier, there were reports that the two have had a rift over monetary issues.
Summary:
Talking about MS Dhoni getting bald after India's World Cup triumph in 2011, Harbhajan Singh said while the team was celebrating, Dhoni "suddenly went to his room" and "came back like shakaal".
I still don't know why he did it," Harbhajan added.
Summary:
Summary:
Shabina Khan, co-producer of the 'Rowdy Rathore' sequel, has said that the film's script is ready but it just needs to be approved by filmmaker Sanjay Leela Bhansali.
Shabina and Bhansali had co-produced the first film.
Summary:
Talking about her fashion sense, Kajol said, "I don't think people should take any inspiration from me when it comes to fashion." "I started out in films at...16...there was no time to form an opinion on...what is my style," she added.
Summary:
Late 'Harry Potter' actor Alan Rickman's collection of personal diaries, scripts and correspondence, including personal letters from Prince Charles, Tony Blair and Bill Clinton, are set to be auctioned.
Summary:
Karnataka CM HD Kumaraswamy has said he's at the mercy of his coalition partner, the Congress, and not under pressure of the 6.5 crore people of the state.
Summary:
After several fans demanded Indian citizenship for Rashid Khan, the 19-year-old Afghanistan and SRH spinner said he is a "proud Afghan" and will stay in his country.
Summary:
Delhi Daredevils' wicketkeeper-batsman Rishabh Pant, who slammed the most number of sixes (37) in Indian Premier League 2018, won the Emerging Player of the Season award.
Summary:
Following Chennai Super Kings' record-equalling third title in the Indian Premier League, CSK captain MS Dhoni said that he and the team will be visiting Chennai to meet the franchise's fans there.
Summary:
Sachin Tendulkar on Sunday took to Twitter to share an old picture of himself with Team India coach Ravi Shastri on the occasion of the latter's 56th birthday.
Summary:
Sangeeta Bahl, a 53-year-old former model, has become the oldest Indian woman to conquer Mount Everest.
Summary:
Former Environment Minister Jairam Ramesh on Sunday rejected reports claiming he had a role in granting clearance to the Sterlite copper plant in Tuticorin.
Summary:
Congress President Rahul Gandhi on Sunday said he will be out of India for some days to accompany his mother Sonia Gandhi for her annual medical check-up.
Summary:
Two policemen and some locals were injured when members of two communities clashed in Gujarat following an alleged incident of eve-teasing on Saturday.
Summary:
A transgender was beaten to death by a mob in Hyderabad's Chandrayangutta on suspicion of being a child-kidnapper based on fake rumours circulating on WhatsApp. The victim was accompanied by another transgender and a man who sustained injuries as they attempted to intervene in the incident.
Summary:
A Muslim man was assaulted at a railway station in Kanpur allegedly by workers of the Bajrang Dal over his friendship with a girl belonging to the Hindu community.
Summary:
The 2016 India-England Chennai Test, wherein Karun Nair slammed a triple hundred, was fixed by Dawood Ibrahim's D-Company members, Al Jazeera's sting operation claimed.
Summary:
After a sting operation claimed that three Tests featuring India in last two years were fixed, BCCI's Acting Honorary Secretary Amitabh Choudhary said the board's anti-corruption unit is working closely with the ICC on the alleged claims.
Summary:
Sharma was arrested in 2016 for faking an RTI response to show the government was discriminating against Muslim yoga trainers.
Summary:
In an old interview clip, Hollywood actor Morgan Freeman is seen asking a female journalist whether she fools around with older men and if she is married.
Summary:
The bottle, made by 18th-century winemaker Anatoile Vercel, is believed to be among the oldest wines in the world.
Summary:
Photographs of the candidate's poster featuring Kohli have gone viral on social media.
Summary:
The General Data Protection Regulation (GDPR), effective from May 25, will require Indian firms dealing with EU to provide justification of the collected data.
Summary:
Talking about moving dirty heavy industries into space, space company Blue Origin Founder Jeff Bezos said, "We're going to leave it (Earth), and it's going to make this planet better".
Summary:
Former Pakistan President Pervez Musharraf has said that PM Narendra Modi wants to enforce supremacy in India, adding that the Indian leader is not an advocate of peace talks.
Summary:
The Madhya Pradesh High Court has observed that a woman has the right to know details of her husband's salary.
Summary:
Political parties are out of the purview of the RTI Act, the Election Commission (EC) said in a ruling that contradicts a 2013 Central Information Commission directive bringing national parties under the transparency law.
Summary:
Gauri Khan shared pictures on social media with her son AbRam on his 5th birthday and wished him while captioning it, "Happy b'day, my gorgeous." AbRam, who is Shah Rukh Khan and Gauri's third child after Aryan and Suhana, was born through surrogacy.
Summary:
Actress Deepika Padukone is seen apologising to Anil Kapoor in a video for not being able to attend his daughter Sonam Kapoor's wedding with Anand Ahuja.
Summary:
Sharing her son's first picture on social media, Sunidhi Chauhan captioned it, "Ready for my first gig as a Mom!" Sunidhi, who married music composer Hitesh Sonik in 2012, gave birth to their son on January 1 this year.
Summary:
Filmmaker Ashoke Pandit revealed that late actress Geeta Kapoor kept saying, "Mera Raja aayega," before her death.
Raja is her son's name and she passed away while waiting for her son.
Summary:
RR mentor Shane Warne on Sunday named his "All star team" from IPL 2018, featuring RCB captain Virat Kohli, CSK captain MS Dhoni and SRH spinner Rashid Khan.
Summary:
Summary:
Commentator Sanjay Manjrekar asked Chennai Super Kings captain MS Dhoni to "stop fooling around" after the latter trolled him during the toss ahead of the IPL 2018 final.
Summary:
England lost the first Test of the English summer after a gap of 23 years after Pakistan beat them by nine wickets on the fourth day of Lord's Test on Sunday.
Summary:
The BCCI and United Nations Environment have signed an agreement to promote 'green cricket' in India.
Summary:
Apple is reportedly working on a hybrid computer codenamed 'Star' which will be powered by ARM processors and feature 4G connectivity.
Summary:
Andhra Pradesh Chief Minister Chandrababu Naidu today called Prime Minister Narendra Modi a "campaign PM, who gives only slogans, and has failed to deliver on promises." Discussing the 2019 Lok Sabha elections, Naidu said, "The Congress is in the opposition.
Summary:
The lawsuit alleges Tesla released false statements that the production was on track last year.
Summary:
Inaugurating the country's first 14-lane expressway, Prime Minister Narendra Modi on Sunday said, "My country is my family." Speaking of the Congress, he said, "We all know their predicament.
Summary:
Speaking at the launch of a book on India's first Prime Minister Jawaharlal Nehru, former Vice President Hamid Ansari on Sunday said some "inventors" are trying to "rewrite" history.
rewrite history.
Summary:
She said the accused, who were travelling in an auto with her, forced her to consume a tablet following which she lost consciousness.
She said once she regained consciousness, she realised she had been dumped in a secluded place and her clothes were torn.
Summary:
A young couple committed suicide by jumping in front of a train in Sitapur after failing to convince their families for their marriage, said UP police.
Summary:
This season's runners-up will receive â¹12.5 crore, while the Most Valuable Player will be awarded â¹10 lakh.
Summary:
Responding to the post showing the working conditions of a delivery boy, BigBasket said it feels "as pained as all of you who have expressed anger regarding the weight of the loads".
Summary:
Supriya Kaushik, who secured the third rank in CBSE Class 12 exams, scored 100 out of 100 in Englishâ the only subject in which all-India topper Meghna Srivastava lost one mark.
Summary:
On 'Amar Akbar Anthony' completing 41 years since its release on May 27, 1977, actor Rishi Kapoor tweeted that a film like this comes once in ages.
Summary:
An autonomous underwater robot called the REMUS 6000 has discovered a Spanish galleon ship that sunk in 1708 along with gold, silver and emeralds that could be worth as much as $17 billion.
Summary:
The investigation also revealed that "60-70% matches can be set".
Summary:
IndiGo was placed at the fifth position with an average cost of $0.10 per km.
Summary:
Replying to whether the BJP would form political alliances for upcoming Assembly elections, Chhattisgarh CM Raman Singh said, "Dashanan ke bhale dus sir ho jayein, unke liye ek Ram kaafi rehta hai." The BJP has been in power in Chhattisgarh since 2003, winning the last three Assembly elections.
Summary:
Following his second meeting with Kim Jong-un, South Korean President Moon Jae-in on Sunday said that the North Korean leader hopes a summit with US President Donald Trump will be an opportunity to end decades of confrontation.
Summary:
Nehal reportedly moved the jewellery to a safer location as soon as he learned that CBI registered a case against Nirav Modi.
Summary:
The EPFO had collected around â¹3,800 crore as administrative charges from employers last fiscal.
Summary:
Actor Hugh Grant, known for films like 'Four Weddings and a Funeral', has married Swedish TV producer Anna Eberstein.
Eberstein is the mother of three of Grant's children while he has also fathered two children with former partner Tinglan Hong.
Summary:
Talking about her potential in acting, actress Aditi Rao Hydari said, "I do my best whether it is a role of a 20-minute part...or a lead." She added that she is always able to turn a negative into a positive.
Summary:
CSK captain MS Dhoni has admitted the age group was "definitely a concern" for the team in IPL 2018.
Summary:
For the first time in Test cricket, a team's top-four players scored tons in an innings, when Wasim Jaffer, Dinesh Karthik, Rahul Dravid and Sachin Tendulkar scored centuries against Bangladesh in a Test that ended on May 27, 2007.
Summary:
Mahindra Group Chairman Anand Mahindra on Sunday accepted tennis star Mahesh Bhupathi's 'Fitness Challenge', a fitness campaign started by Sports Minister Rajyavardhan Singh Rathore.
Summary:
Facebook is designing its own computer-chips to analyse and filter videos in real time, the company's Director at AI Research Yann LeCun has said.
Summary:
He also said the satellites were "closing the link to ground" at high bandwidth and 25-millisecond latency.
Summary:
Ahead of the 2019 Lok Sabha elections, BSP president Mayawati on Saturday declared that her party was open to an alliance if it was given respectable seats in the pre-election pact.
Summary:
Bihar CM Nitish Kumar on Sunday blamed the banks for not implementing demonetisation properly, claiming that people could not receive its benefits to the extent that they should have.
Summary:
The Sherpa was struck with snow blindness and then left behind by the climbers, reports said.
Summary:
Road Transport Minister Nitin Gadkari on Saturday revealed that late Shiv Sena chief Bal Thackeray used to call him 'Roadkari' because of his passion for roads.
Summary:
A four-year-old female elephant has died after being hit by a train on the Lalkuan-Bareilly track in Uttarakhand, according to forest officials.
Summary:
Addressing the nation during the 44th edition of Mann Ki Baat, Prime Minister Narendra Modi on Sunday said, "I hope the festival of Eid will strengthen the bond of goodwill in our society." "After fasting for a month during Ramadan, the sighting of the moon is an occasion to celebrate," he added.
Summary:
After a user tweeted to her seeking help for his 15-member group stranded near Mount Everest, External Affairs Minister Sushma Swaraj directed Indian envoys in Nepal to look into the matter.
Summary:
A Class 12 boy who was expelled for hugging a female friend in a Kerala school, has scored 91.02% in the CBSE exams, the results of which were declared on Saturday.
Summary:
RBI Governor Urjit Patel will brief the members of a parliamentary panel about banking frauds and rising bad loans on June 12.
Summary:
Further, the delivery boy said his income was based on the number of orders he delivered in a day, as per the post.
Summary:
After completion, the expressway will reduce travel time from Delhi to Meerut from 4-5 hours to 45 minutes.
Summary:
Earlier, the Supreme Court directed authorities to open the expressway by May 31, even without an inauguration.
Summary:
A Swedish brewery partly owned by Carlsberg has launched the country's first beer brewed from treated sewage in an effort to raise awareness about water shortages.
Summary:
Al Jazeera's sting operation claims that a former Indian first-class cricketer and D-Company members fixed three of India's Test matches, including the India-England Chennai Test which featured a Karun Nair triple century.
Summary:
Apple is reportedly planning to use the wireless chip or the near-field communication (NFC) chip in the iPhones to unlock doors enabled with the same technology.
Summary:
Summary:
Sikkim's north district administration is organising a mountain biking race, touted to be the world's highest, at over 17,000 feet across 330 km in June.
Summary:
NASA astronaut Alan Bean, who became the fourth person to walk on the Moon in 1969, passed away aged 86 on Saturday.
Summary:
Government-owned banks have reported losses of â¹53,000 crore for the final quarter of 2017-18, according to data compiled by BloombergQuint.
Summary:
All the forms are available for download on the Income Tax Department's official website 'www.incometaxindiaefiling.gov.in'.
Summary:
Jailed separatist leader Shabir Shah's 19-year-old daughter has topped CBSE Class 12 exams in Jammu and Kashmir with 97.8%.
Summary:
Summary:
The US President had cancelled the summit scheduled for June 12, citing North Korea's "anger and hostility".
Summary:
A retired high school English teacher in Atlanta, US, corrected grammatical mistakes in a letter that she received from President Donald Trump and sent it back to the White House.
Summary:
Qatar has ordered shops to remove goods imported from Saudi Arabia, UAE, Egypt and Bahrain almost a year after the four countries severed all ties with the gas-rich nation.
Summary:
The UK's opposition, Labour Party, has called for the delisting of Anil Agarwal-led Vedanta Resources from London Stock Exchange after 13 people died during protests against its copper plant in Tuticorin.
Summary:
The median compensation of CEOs at biggest public-listed companies is 164 times more than median pay of typical employees, according to data analysed by Equilar.
Summary:
On being asked about under-utilising Harbhajan Singh in the qualifier against SRH, CSK captain MS Dhoni said that he has a lot of cars and bikes in his garage, but he doesn't ride them all at a time.
Summary:
Ahead of the IPL 2018 final, Chennai Super Kings captain MS Dhoni has revealed that he was saddened for not having played more matches at his side's home ground Chepauk Stadium in Chennai.
Summary:
Bale later called the bicycle kick goal the best goal of his career.
Summary:
A pitch invader denied Cristiano Ronaldo a scoring opportunity in the final of the Champions League final against Liverpool on Saturday.
Summary:
Speaking in a post-match interview, Real Madrid's forward Cristiano Ronaldo said, "I'll give an answer to the fans who have always been by my side.
Summary:
Microsoft is developing a tool to automatically identify bias in different artificial intelligence (AI) algorithms, according to MIT Technology Review.
Summary:
BSP supremo Mayawati has told party workers that no one should dream of becoming the party President for the next 20-22 years, adding she will continue to lead the party.
Summary:
Prince Kumar, son of a Delhi Transport Corporation (DTC) bus driver, has topped CBSE Class 12 exams in Science stream across Delhi government schools with a 97% score.
Summary:
Rajasthan BJP MLA Gyan Dev Ahuja has said Lord Hanuman was the world's first tribal leader, claiming that the Hindu god has the highest number of temples at 40 lakh.
Summary:
Indian coach Ravi Shastri still owns and drives an Audi 100 car he won 33 years ago at the 1985 World Championship of Cricket in Australia.
Summary:
Real Madrid on Saturday defeated Liverpool 3-1 in Kiev, Ukraine to win the UEFA Champions League for the third straight year.
Summary:
Illegal abortion in Ireland is punishable by up to 14 years in prison.
Summary:
Houston-based law firm Patterson and Sheridan has bought a $3-million private jet to send its lawyers to meet clients in San Francisco.
Summary:
Responding to a question about portfolio allocation in his newly-formed Karnataka government, Chief Minister HD Kumaraswamy said "Portfolios have not been allocated.
Summary:
Addressing a public rally in Odisha's Cuttack on Saturday, Prime Minister Narendra Modi said that clarity and commitment replaced anarchy and confusion in Indian governance in the four years of BJP-led NDA government.
Summary:
Addressing a rally in Odisha's Cuttack on Saturday, Prime Minister Narendra Modi said Opposition leaders are coming together not for the country but "to save themselves and their families".
Summary:
Union Home Minister Rajnath Singh on Saturday said the government was ready for talks with the Hurriyat Conference leadership if the separatists approached the government for a dialogue.
Summary:
As many as 111 infants died out of the 777 admitted and born between January 1 and May 20, 2018, at the Adani Foundation-run GK General Hospital in Gujarat's Bhuj, the hospital data revealed.
Summary:
Union Home Minister Rajnath Singh on Saturday said he is not ready to believe that stone-pelters in Jammu and Kashmir are terrorists.
Summary:
India has been ranked 145 out of 195 countries on the Healthcare Access and Quality Index (HAQ), according to a report published by The Lancet.
Summary:
A pair of Yubari melons was auctioned at a wholesale market in Japan's Sapporo for a record amount of nearly â¹20 lakh.
Summary:
Virgin Group Founder and billionaire Richard Branson has said he is undergoing training to become an astronaut.
Summary:
GST Council member Sushil Modi has said bringing petroleum products under GST will not have much impact in reducing its prices.
Summary:
Summary:
Shraddha Kapoor will star opposite Sushant Singh Rajput in an upcoming film which will be directed by Nitesh Tiwari, according to reports.
Summary:
But it is nice to do a film when there is a good script," the 70-year-old added.
"I do one film a year which is a nice change," he further said.
Summary:
Actress Disha Patani has shared a video on social media where she can be seen dancing to US singer Beyoncé's Coachella 2018 performance.
Summary:
Talking about his latest film 'Parmanu: The Story of Pokhran' and its performance, actor-producer John Abraham said, "Whether this film does â¹1 or â¹100, it really doesn't matter." "No one is going to question the content from my production house.
Summary:
Summary:
KKR captain Dinesh Karthik hurled abuses at 22-year-old fast bowler Prasidh Krishna after the latter ignored him while fielding against SRH in Qualifier 2 of IPL 2018 on Friday.
Summary:
In the video, Aanjana can be seen calling farmers "beimaan" (dishonest) and "chor" (thieves) and that farmers should be "beaten with shoes".
Summary:
"Shiv Sena has backstabbed us...They should know what BJP is," the man in the clip can be heard saying.
Summary:
A University of Minnesota-led research has discovered that ruthenium (Ru) is the fourth single element to have unique magnetic properties at room temperature.
Summary:
After 13 people were killed in police firing during protests against the Sterlite plant in Tuticorin, writers, journalists, and members of Tamil Nadu film industry staged a protest in Chennai on Saturday.
Summary:
At least 15 people have been killed and more than 1 lakh affected due to floods in Sri Lanka in a week, officials said.
Summary:
IT major Infosys has said it hasn't received any new complaints through whistleblower mechanism which allegedly raised certain issues related to the company.
Summary:
A video showing a 20-year-old 'Lady Don' threatening a shopkeeper with a sword in Gujarat's Surat and forcing him to shut his shop has gone viral.
Summary:
A first-year BTech student from a Mumbai college has alleged a professor touched her inappropriately and forcefully kissed her in his cabin earlier this month.
Summary:
Summary:
Summary:
This comes after Congress leader Salman Khurshid reportedly said Priyanka will play "a big role" ahead of the 2019 elections.
Summary:
Several sellers have filed lawsuits in the National Capital Region against Snapdeal for alleged non-payment of dues.
Summary:
German carmaker Audi's CEO Rupert Stadler has said the diesel emissions "crisis hasn't yet ended".
Summary:
Jammu and Kashmir CM Mehbooba Mufti has said the government is planning to construct a 'Border Bhavan' to provide shelter to civilians during ceasefire violations by Pakistan.
Summary:
Drug lord Pablo Escobar's hitman Jhon Jairo Velásquez, nicknamed 'Popeye', was arrested in Colombia as part of an investigation into extortion.
Summary:
Maryam Nawaz, the daughter of former Pakistan PM Nawaz Sharif, was interrupted by a judge as she read commas and full stops in the court while recording her statement.
Summary:
Liverpool clinched their last Champions League title in 2005, the year Prince Charles tied the knot with Camilla Parker Bowles.
Summary:
India is the third most targeted country for phishing scams, according to the RSA Quarterly Fraud report for January-March period.
Summary:
This compares to a profit of â¹155 crore reported by the bank in the corresponding quarter last year.
Summary:
Actress Kriti Kharbanda, who made her Bollywood debut with the 2016 film 'Raaz Reboot', will reportedly star in the upcoming film 'Housefull 4'.
Summary:
Actor Rajkummar Rao has replaced actor Shahid Kapoor in director Imtiaz Ali's next film, according to reports.
Summary:
India's Minister of External Affairs Sushma Swaraj responded to tweets demanding Indian citizenship for Afghanistan's 19-year-old spinner Rashid Khan, saying that all citizenship matters are dealt by Ministry of Home Affairs.
Summary:
CSK and Team India all-rounder Ravindra Jadeja, in a recent interview, said that MS Dhoni gave him the name 'Sir Ravindra Jadeja' in 2013 but he still doesn't know why he did it.
Summary:
SunRisers Hyderabad leg-spinner Rashid Khan, who was named Man of The Match for his all-round show against Kolkata Knight Riders on Friday, refused to celebrate the victory with champagne.
Summary:
It further says that Facebook used a range of methods to monitor usage of competitive apps on their phones.
Summary:
Accusing the Samajwadi Party of levelling false charges against him, Uttar Pradesh BJP MLA Roshan Lal Verma on Friday claimed that he felt like committing suicide due to "immense mental stress" and "frustration".
Summary:
Its technology also allows customers to validate the authenticity of luxury products.
Summary:
Over 40,000 people across several locations in Australia looked at the Moon at the same time this week to help Australian National University break its own stargazing world record.
Summary:
University of Illinois researchers led by IIT Delhi alumnus Rohit Bhargava have built a 3D printer that makes structures using sugar alcohol, used to make throat lozenges.
Summary:
A mob in Bengaluru's Whitefield area on Friday attacked three women based on a fake viral WhatsApp message that warned citizens against gangs that kidnapped children.
Summary:
National Conference MLA Omar Abdullah has sanctioned â¹1.3 lakh for the family of the woman who was detained at a hotel with Army Major Nitin Leetul Gogoi.
Summary:
A video of the incident, reportedly shot by the man himself, showed him placing a cigarette in his daughter's mouth.
Summary:
Authorities in Nebraska, US have seized 53.5 kilograms of the drug fentanyl, enough to kill an estimated 2.6 crore people.
Summary:
CBSE class 12 topper Meghna Srivastava scored 99 marks out of 100 only in English, scoring full marks in every other subject to get a total of 499 marks out of 500.
Summary:
Low-cost sanitary pads and condoms will be sold at toilet facilities both inside and outside railway stations for passengers as well as people living in its vicinity, according to a policy approved by Railway Board.
Summary:
Speaking on the NDA government's fourth anniversary, BJP President Amit Shah on Saturday said it had the most hardworking PM in Narendra Modi who works 15-18 hours a day.
Summary:
Finance Minister Arun Jaitley has said India has transformed from being a part of the "fragile five" to the "bright spot" on the global economic scene in past four years.
Summary:
The case pertains to calls made by Salem to a Delhi-based businessman to demand â¹5 crore from him as protection money.
Summary:
Girls outperformed boys with a pass percentage of 88.31% against 78.99% in the CBSE class 12 exams, the results of which were declared on Saturday.
Summary:
Former chief of Pakistan's intelligence agency ISI, Asad Durrani, has said that PM Narendra Modi's "drama and tamasha merely creates spectacular confusion".
Summary:
Brazil's President Michel Temer has ordered the Army and federal police to clear roads blocked by truck drivers protesting against rising fuel prices.
Summary:
The two leaders met to discuss the US-North Korea peace summit which was cancelled by US President Donald Trump.
Summary:
China's ruling Communist Party has ordered the provincial governments to regulate construction of large outdoor religious statues in a bid to prevent "commercialisation" of Buddhist and Taoist religions, state media reported.
Summary:
Former India captains Rahul Dravid and Sourav Ganguly shared ODI cricket's first-ever 300-run partnership after notching 318 runs against Sri Lanka in the ICC World Cup on May 26, 1999, nearly 28 years after the first-ever ODI.
Summary:
The valuation of diamonds seized by the Enforcement Directorate from Nirav Modi's showrooms was reduced to â¹489 crore against the book value of â¹1,785 crore, according to a government-authorised valuation.
Summary:
A mini refrigerator, perfumes, phones, and chocolates were recovered from a room in Tihar jail which Unitech promoters Sanjay and Ajay Chandra were using as an office to sell their unencumbered properties.
Summary:
Senior bureaucrat Sushil Chandra has been given one-year extension as Chairman of the Central Board of Direct Taxes (CBDT) till May 2019.
Summary:
Actress Geeta Kapoor, who starred in the 1972 film 'Pakeezah', passed away aged 57 in an old age home.
Summary:
Actress Priyanka Chopra, who recently visited children from Rohingya refugee camps said, "I feel very emotional and sensitive towards especially children because they are innocent." "They have no hand in anything, they don't know anything.
Summary:
Talking about her mother Reema Chopra, actress Parineeti Chopra said, "The most important thing I've learnt from my mom is how to go through any hardship in life with a smile on your face." "SheâÂÂs not just my mom, she is my friend and my buddy.
Summary:
Talking about her cousin Janhvi Kapoor who is set to make her Bollywood debut, Sonam Kapoor said, "There'll be...
Summary:
Ileana D'Cruz has revealed when she started working on her first film at 18, people on the sets told her she wouldn't make it as an actress.
Summary:
Actress Sana Khaan has said people don't like her at film parties because she is sober.
For me, it's about a get-together of like-minded people."
Summary:
Team India opener Shikhar Dhawan has revealed he was nicknamed 'Gabbar' by former cricketer Vijay Dahiya as he used to say dialogues from films like Sholay to boost the morale of his team during Ranji matches.
Summary:
Manchester United scored twice in injury time to register a 2-1 comeback victory in the Champions League final against Bayern Munich on May 26, 1999.
Summary:
Major US media outlets including the New York Daily News and LA Times were forced to close their websites in parts of Europe following the roll out of General Data Protection Regulation (GDPR) on Friday.
Summary:
Most people in America get their news, "true or not" from Facebook, Clinton added.
Summary:
"We are scared but if we complain to the staff they say just shoo the dogs away yourself," people at the hospital said.
Summary:
Pakistan has summoned ex-ISI chief Asad Durrani to seek his explanation over a book he co-authored with India's ex-RAW chief AS Dulat, accusing him of 'violating' military code of conduct.
Summary:
The mob attacked the youth after he was found with his Hindu girlfriend at a temple.
Summary:
Police said the accused had forcibly stripped the couple, clicked their photographs, demanded money and later raped the girl.
Summary:
Assam BJP has filed a complaint against a website which is using its name to host pornographic content.
But when it expired last time, the present owner registered it to launch a pornographic website," BJP leader Shantanu Kalita said.
Summary:
Floating post offices will be set up in the Ganga and Yamuna rivers during the Kumbh Mela in Allahabad next year that will allow people to turn their photos and selfies into postal stamps.
Summary:
Congress President Rahul Gandhi shared a report card grading the performance of PM Narendra Modi-led NDA government, on the occasion of the completion of four years of his government.
Summary:
"Until now we've had no evidence for how dinosaurs shed their skin," said a researcher at University College Cork.
Summary:
The Delhi High Court on Friday issued a notice to the Delhi government over a plea seeking to lower the legal drinking age of 25 years in the capital.
Summary:
Floating hotel 'Ark Deck Bar' capsized on Friday near Bandra-Worli sea link in Mumbai reportedly due to anchorage issues.
Summary:
CBSE class 12 topper Meghna Srivastava has said she never expected to score 499 marks out of 500 and was overwhelmed to see the results.
Summary:
Kerala's capital Trivandrum has registered the highest pass percentage of 97.32% in the Central Board of Secondary Education (CBSE) Class 12 exams.
Summary:
Manipur has become the first state in north east and third in India to get solar toilets, which were inaugurated at Ibudhou Marjing Hill Heingang.
Summary:
Rejecting claims of Russian interference in the UK's affairs, Russian President Vladimir Putin has said that the UK blames his country for all its "mortal sins".
Summary:
Vicky Kaushal, who starred opposite Alia Bhatt in 'Raazi', said she's the most accident-prone human being he has ever known.
Vicky further said, "She'd hurt herself just by holding the gun."
Summary:
Alia Bhatt's sister Shaheen Bhatt, who had earlier revealed she suffered from depression, is set to write a book on the subject of depression.
Summary:
Actors Kit Harington and Rose Leslie, known for starring in HBO series 'Game of Thrones', are set to get married on June 23, as per reports.
Summary:
While talking about her son Taimur Ali Khan, Kareena Kapoor Khan said, "I think Taimur looks like his father (Saif Ali khan).
His eyes look like (that of) a Japanese samurai." Saif had earlier said, "Some days he looks like her (Kareena), some days...like me.
Summary:
After Rashid Khan's all-round showÃÂ against KKR helped SRH reach IPL 2018 final, a user tweeted, "King Khan of cricket owned KKR today." Other tweets read, "Is there any way, Rashid Khan can be given Indian citizenship?
Summary:
Kolkata Knight Riders' owner Shah Rukh Khan said he will have to cancel his flight booked to attend the final of the IPL 2018 after his side's exit on Friday.
Thks for the entertainment & so many moments of glory.
Summary:
Ronaldo later gave his warm-up jacket to the cameraman, who required stitches.
Summary:
This comes after users complained of the issue, adding that the blocked contacts could even read their WhatsApp statuses and see their display pictures.
Summary:
Technology major Apple has said that it is closing a retail store in Atlantic City, New Jersey, a move which will affect 52 employees.
Summary:
Further, users can post content into private or group conversations using the share button under any YouTube video.
Summary:
Bloom added when he contacted Google, it said the video was only for internal use and offered no compensation.
Summary:
"He's no yogi, he's a bhogi," Thackeray said.
Summary:
Micro sculpture artist Sachin Sanghe tweeted a video of himself making a chalk sculpture of Prime Minister Narendra Modi on the occasion of the completion of four years of BJP-led NDA government at the Centre.
Summary:
A man from Thane has been arrested for allegedly cyberstalking a Mumbai woman and sending her obscene messages and pornographic images using six different mobile phone numbers.
Summary:
London police have seized about â¹4.5 crore worth of Bitcoin from a computer hacker in a case described as the first of its kind for the 188-year-old department.
Summary:
An Air India Delhi-Rajkot flight left two passengers behind at the Delhi Airport on Friday after the airline didn't let them onboard, claiming that the flight was overbooked.
Summary:
Ghaziabad's Meghna Srivastava has got an aggregate of 99.8%, scoring 499 marks out of 500 to become the all-India topper for Class 12 CBSE exam, the result of which was declared today.
Summary:
Afghanistan President Ashraf Ghani tweeted to PM Narendra Modi, jokingly saying that they are not giving away their 19-year-old spinner Rashid Khan, following his all-round Man of the Match performance on Friday.
Summary:
Highlighting that its users' data is 100% secure, Paytm has said the video, which claims Prime Minister's Office (PMO) demanded data of its J&K users, holds "no truth".
Summary:
Afghanistan's 19-year-old spinner Rashid Khan contributed with the bat, the ball and in the field to help SRH qualify for the IPL 2018 final and was adjudged the Man of the Match.
Summary:
Indian cricket captain Virat Kohli tweeted his best wishes to South Africa's AB de Villiers, who announced his retirement from international cricket recently.
Summary:
Following a sting operation, Al Jazeera has claimed that two Test matches played at Sri Lanka's Galle International Stadium, including the Test between India and Sri Lanka last July, were fixed.
Summary:
On the first day of enforcement of Europe's General Data Protection Regulation (GDPR), Google and Facebook were hit with lawsuits accusing them of forcing users to share personal data.
Summary:
Protesting against the rising prices of fuel, Congress Uttar Pradesh MLC Deepak Singh wrote to the Principal Secretary of state Legislative Council, demanding a pass for his bullock cart to attend the proceedings.
Summary:
In a first, US-based scientists mixed lab-grown human cells with chicken embryos, where human cells directed them to grow into nervous tissue.
Summary:
Speaking at an event on NDA government's 4 years in power, Home Minister Rajnath Singh on Saturday said he cannot disclose anything on the government's plans to get underworld gangster Dawood Ibrahim back to India.
Summary:
As the residents of Madhya Pradesh's Shahpura are facing acute water shortage, children have to climb down a well to collect water.
Summary:
Speaking on NDA government's fourth anniversary, Union Minister Nitin Gadkari on Saturday promised that 70% of Ganga river will be clean by March 2019.
Summary:
The ILS helps in guiding aircraft to the runway in low visibility situations like dense fog or heavy rainfall.
Summary:
Under Swacch Bharat Mission, Uttar Pradesh's Sitapur District Magistrate Sheetal Verma has ordered all government employees to submit a picture of them posing in front of the toilet at their home.
Summary:
Japanese PM Shinzo Abe on Friday said the summit between US President Donald Trump and North Korean leader Kim Jong-un "is indispensable to resolve the problems that have accumulated".
Summary:
Mottley had reportedly once told her school teacher she would become the country's first female PM.
Summary:
Alerting its people travelling to Kerala, where a Nipah virus outbreak has claimed at least 12 lives, UAE's Ministry of Health and Prevention has asked people to put off unnecessary travel to the Indian state.
Summary:
John Abraham has said commercial success of films is important but he'll never compromise on the content, while adding, "I'm not going to compromise on my creativity to belt out some crap." "I will not make a film because I have got 'A' actress and 'B' actor in it," he further said.
Summary:
A new poster of the biopic of Sanjay Dutt titled 'Sanju', which features actor Paresh Rawal as Sanjay's father Sunil Dutt, has been released.
"'Sanju' is a father-son story.
Summary:
Delhi-based I-League second division club, Sudeva Football Club, became the first Indian club to acquire a European football club after it bought Spanish third division league team, CD Olimpic de Xativa.
Summary:
Former Indian captain and current Cricket Association of Bengal's head Sourav Ganguly revealed that Kolkata Knight Riders' home ground Eden Gardens was named IPL 2018's best venue and ground.
Summary:
In the second half of 2017, the company received 29,718 government requests to access 309,362 devices, while data was provided in 79% of cases.
Summary:
Slamming the NDA government as it completed four years in power, BSP supremo Mayawati on Saturday said it has failed on all fronts.
Summary:
Slamming the NDA government, Congress leader P Chidambaram said, "What they've done...to polarise people along religious lines and divide communities, completely wipes out whatever good work they may have done".
Summary:
The lawsuit claimed the customers paid an extra sum for the Autopilot software, however, Tesla delayed the rollout of features.
Summary:
UK and US-based researchers have designed a finger-prick type blood test that can detect liver damage within an hour, before symptoms appear.
Summary:
A group of boys were detained by the police after they were caught shooting a prank video dressed as ghosts to scare their friend on his birthday in Andhra Pradesh's Vijayawada.
Summary:
Talking about the sexual harassment allegations against him, Hollywood actor Morgan Freeman said he didn't assault women but tried to joke with and compliment them in a "light-hearted and humorous way".
Summary:
The Prime Minister's Office asked Paytm to share the personal data of its users in J&K, Paytm's Senior Vice President Ajay Shekhar Sharma has said in a video of a sting operation by Cobrapost.
Summary:
Pakistan's Ministry of Information and Broadcasting has issued a notification banning the screening of Bollywood and Hollywood movies during Eid. The movies will be banned from two days before Eid to until two weeks after the holiday season.
Summary:
Talking about actress Priyanka Chopra's visit to Rohingya refugee camps in Bangladesh, BJP leader Vinay Katiyar on Thursday said that she shouldn't have gone to meet them.
He added, "VIPs should not visit there.
Summary:
Sara Ali Khan, who will make her debut in Bollywood with 'Kedarnath', has been sued by the film's director Abhishek Kapoor.
Summary:
The wrestlers, who had requested to be exempted from the trials, will get direct entry to the Games.
Summary:
Former Google CEO Eric Schmidt has said that Elon Musk "is exactly wrong" about artificial intelligence (AI).
Summary:
Speaking about the Opposition's plan to create a united front against the BJP, he said the parties had failed to defeat BJP in 2014.
Summary:
The National Institute of High Security Animal Diseases in Bhopal has revealed that the blood and serum samples of bats were not found to be the prime cause of the Nipah virus.
Summary:
India's Arjun Vajpai has become the youngest person in the world to climb six of the 14 peaks that are over 8,000 metres after successfully scaling Mount Kanchenjunga.
Summary:
Professor Ganeshi Lal has been appointed as the new Governor of Odisha with effect from the date that he assumes charge of the office.
Summary:
China has denied US President Donald Trump's remarks hinting that President Xi Jinping influenced North Korean leader Kim Jong-un's change of mind over Korean peace talks.
Summary:
Indian investors saw a wealth addition of â¹72 trillion in the first four years of the BJP government since May 2014, as the benchmark index BSE Sensex has gained 10,207.99 points or 41.29%.
Summary:
Talking about her glamorous image and the kind of films she has done, Kareena Kapoor Khan said, "I'm always proud of my glamorous image...I do films that suit my personality, my time limit." She added one has to enjoy some commercial success.
Summary:
Amitabh Bachchan has said the true actor in his family is his daughter Shweta Bachchan.
Shweta will be seen making her acting debut with Amitabh in an advertisement campaign.
Summary:
Actor John Abraham has revealed that he and 'close friend' MS Dhoni once jumped over a wall as they had gone to John's office to get their bikes out but found the watchman sleeping.
Summary:
Actor Amitabh Bachchan has said that he will consider himself a failure if he is not able to preserve the writings of his late father and poet Harivansh Rai Bachchan.
Summary:
While talking about the casting couch in the film industry, actor Ravi Kishan said, "By sleeping around, you will never be able to get ahead in life." "There is no future in selling yourself," he added.
Summary:
Filmmaker Shoojit Sircar has said Irrfan Khan, who was diagnosed with Neuroendocrine Tumour, is responding well to treatment and treating the recuperation in Europe like a short holiday.
Summary:
Sachin Tendulkar on Friday took to Twitter to praise Afghanistan and SunRisers Hyderabad cricketer Rashid Khan, calling him the "best spinner in the world" in T20 cricket.
Summary:
Indian cricketer Irfan Pathan and former Australian pacer Brett Lee faced off in a kabaddi match.
Summary:
Afghanistan's 19-year-old spinner Rashid Khan, who was called the world's best T20 spinner by Sachin Tendulkar, dedicated his Man of the Match award to the victims of bomb blasts in Jalalabad, Afghanistan.
Summary:
The 25-year-old was sent off in last weekend's match, wherein he kicked opponent Cameron Clark mid-air while catching a kick.
Summary:
California-based startup Kiwi is testing its robots to deliver food to students at the nearby UC Berkeley campus.
Summary:
Japanese conglomerate SoftBank has asked Gurugram-headquartered online hotel aggregator Oyo to get new investors, after which it will participate in its fresh funding round, according to reports.
Summary:
A study on apes has found that seven muscles thought to have evolved only in humans are actually present in the same or similar form in bonobos, chimpanzees and gorillas.
Summary:
Producer Harvey Weinstein was granted bail for $1 million cash, hours after his arrest for the rape and sexual abuse of two women on Friday.
Summary:
SRH had clinched the IPL trophy in 2016 after defeating Royal Challengers Bangalore and lost to KKR in the Eliminator last year.
Summary:
Talking about the days when she joined Bollywood, Sonam Kapoor said, "We (actresses) were not paid the same amount as the hero, and not given the same kind of rooms as the leading man." "People had that 'Woh hero hai' mentality," she added.
Summary:
Addressing the Karnataka Assembly on Friday, CM Kumaraswamy asked if the BJP had "taken a contract" to save democracy.
Summary:
When asked about his online security practices, Twitter CEO Jack Dorsey revealed that he doesn't use a laptop and does everything on his phone.
Summary:
After supporters interrupted his speech with slogans naming him for the post of Prime Minister, Andhra Pradesh CM Chandrababu Naidu announced that he does not aspire to assume office as the Prime Minister.
Summary:
BJP Kerala unit President Kummanam Rajasekharan was appointed as the Governor of Mizoram on Friday.
Summary:
The Indian Army has ordered a Court of Inquiry against Major NL Gogoi after he was detained outside a Jammu and Kashmir hotel with a woman over an alleged altercation with hotel staff.
Summary:
Many areas in Bengaluru will face power cuts between 10 am and 6 pm from May 26-28 due to high electricity consumption for the construction of the Metro Rail.
Summary:
The ban was imposed on Wednesday after over 13 people were killed in police fire during protests against the expansion of Vedanta's Sterlite Copper unit in Tuticorin.
Summary:
Terming the spillage an environmental catastrophe, the PPCB said, "Any damage to this river has to be viewed very seriously."
Summary:
A jury in Georgia, US has ordered a security company to pay $1 billion in damages to a woman who was raped in 2012 by its employee as a teen.
Summary:
Rejecting the claims, Russia said none of its missile launchers had ever entered Ukraine.
Summary:
Iran's Supreme Leader Ayatollah Ali Khamenei has listed three demands for the country to continue to stay in the 2015 nuclear deal.
Summary:
A day after cancelling the summit with North Korea, US President Donald Trump on Friday said that the talks could still take place on the originally scheduled date of June 12.
Summary:
Traders' body CAIT has said, "Walmart is nothing but a US version of The East India Company which conquered the country." In its second letter to Commerce Minister Suresh Prabhu, CAIT also asked for a thorough investigation of the Walmart-Flipkart deal.
Summary:
Netflix on Thursday briefly overtook the Walt Disney Company as the world's most valuable media company for the first time.
Summary:
United Breweries Limited (UBL) has reported about 1,250% year-on-year jump in its standalone net profit to â¹90.88 crore for the March quarter, compared to â¹6.73 crore in the same quarter last fiscal.
Summary:
The Oscar-winning director of 'Slumdog Millionaire' Danny Boyle is set to direct actor Daniel Craig's final 'James Bond' film.
Summary:
American TV host Jimmy Fallon included a mock ICC cricket ad in his monologue in his show, citing that ICC is trying to attract new fans as 'cricket's viewership is down'.
Summary:
Anand Ahuja, while sharing a picture of himself and his wife Sonam Kapoor on Instagram, cited a poem by Emily Dickinson to explain the "meaning and notion" behind the hashtag '#EverydayPhenomenal', used by him and Sonam.
Summary:
Huma Qureshi shared her first look as Zareena from the upcoming Rajinikanth starrer 'Kaala' and wrote, "The only joy we get as actors is to play living breathing characters." The film will be Huma's debut Tamil film, where she will reportedly be playing a 45-year-old woman who falls for Rajinikanth's character.
Summary:
He was later arrested for going through a red light on a scooter.
Summary:
Indian pacer Ishant Sharma uprooted Somerset lower-order batsman Tim Groenewald's leg stump with a yorker while playing for Sussex in a Royal London One-Day Cup match.
Summary:
After the BCCI confirmed that Virat Kohli will not participate in county cricket due to neck injury, veteran Indian spinner Harbhajan Singh said that he should not rush himself and even skip England ODIs and T20Is if need be.
Summary:
Four men were arrested for allegedly duping people by posing as RBI officials, Delhi Police has said.
Summary:
A passenger who was struck with acute pancreatitis on a United Airlines flight to Rome has sued the airline over crew's refusal to land the plane for him to get treatment.
Summary:
He has been charged in two cases, including rape charges by an unidentified woman.
Summary:
As several areas in the state witnessed temperatures over 45ðC, officials warned of hot winds in Gwalior, Chhattarpur, and Satna among other places.
Summary:
Tata Consultancy Services' (TCS) market capitalisation surged past the â¹7 trillion mark on Friday, making it the first Indian company to achieve this milestone.
Summary:
Ingalls retrieved photos of the launch and fire engulfing the camera as the memory card remained unharmed.
Summary:
Meanwhile, Times of India wrote, "'Solo: A Star Wars Story' has enough action...to satisfy both its old and new fans." The film was rated 3.5/5 (HT, TOI) and 2.5/5 (Indian Express).
Summary:
Bobby Deol, while speaking about the time he joined Bollywood, said, "When I started my career...work used to come to me rather than me going and asking for work." He added, "Then things slowed down because I wouldn't [ask for work].
Summary:
BJP leader BS Yeddyurappa on Friday said, "We withdrew the nomination of BJP candidate as we wanted the election to be unanimous in order to maintain the dignity of the Speaker's post." After BJP withdrew its candidate, the Congress-JD(S) candidate KR Ramesh Kumar was elected unopposed.
Summary:
Lucknow-based startup TechEagle has developed a drone with an inbuilt GPS tracking device which will deliver tea to customers after taking an order through a food delivery app.
Summary:
Apple was reportedly aware before launching the iPhone 6 and iPhone 6s that they were more prone to bending than the previous models.
Summary:
The CM was approaching PM Modi to receive him after he landed in West Bengal when he motioned for her to avoid the patch.
Summary:
In a letter to Uttar Pradesh CM Yogi Adityanath, the BSP said the government bungalow allotted to former CM Mayawati cannot be vacated as it was turned into a memorial for Kanshi Ram in 2011.
Summary:
The India Meteorological Department (IMD) scientists have said the heat wave is likely to continue across Delhi-NCR till May 27, advising people to stay indoors for the period.
Summary:
However, the college denied the allegations and claimed that its decision was based only on the student's low attendance.
Summary:
Some senior Income Tax officials including CBDT Chairman Sushil Chandra are under the CBI lens for allegedly sharing probe details about Nirav Modi fraud with extortionists, according to reports.
Summary:
After Major Nitin Leetul Gogoi was detained with a woman at a hotel, Army chief General Bipin Rawat said the Major will be awarded "due punishment" if found guilty.
Summary:
Residents in Kerala have blamed the media for creating "unnecessary panic" leading to a decline in the tourists visiting the state.
Summary:
The Tamil Nadu government is seeking a permanent closure of Vedanta's Sterlite plant in Tuticorin, district official Sandeep Nanduri said on Thursday.
Summary:
Cash worth $28 million stuffed in 35 bags and over 400 luxury handbags were seized in raids carried out on the properties of former Malaysia PM Najib Razak.
Summary:
North Korea had said it was willing to talk to the US "at any time in any form" despite the cancellation of the summit.
Summary:
We need a comprehensive trade peace." Putin made the comment in an apparent reference to the import tariffs and sanctions imposed by the US.
Summary:
Markets regulator SEBI has served a notice to ICICI Bank MD Chanda Kochhar in connection with the Videocon loan row.
Summary:
The Madhuri Dixit starrer Marathi film 'Bucket List' "(as) a journey of self-discovery is hardly compelling," wrote India Today.
Summary:
Amitabh Bachchan was trolled for his tweet calling cake-cutting and candle-blowing celebrations for birthdays a "westernised" concept.
The English left the practice with us and we have become slaves to it." A user posted Amitabh's photo where he is seen cutting a cake and tweeted, "Hypocrite." Another tweet read, "Practice what you preach."
Summary:
KKR spinner Kuldeep Yadav tripped and fell down during his followthrough while appealing for an LBW dismissal against SRH opener Shikhar Dhawan in the Qualifier 2 of IPL 2018 on Friday.
Summary:
However, Babita Phogat still remains barred from the camp after she failed to offer any formal explanation.
Summary:
The official song for the 2018 FIFA World Cup titled 'Live It Up', sung by American actor-rapper Will Smith, singer Nicky Jam and Albanian pop star Era Istrefi, has been released.
Summary:
Carbon dioxide released into the atmosphere after the asteroid strike that triggered the end of dinosaurs about 65 million years ago, warmed the Earth's climate for 100,000 years, as per a study on journal Science.
Summary:
The Congress-JD(S) alliance on Friday proved its majority with the support of 117 MLAs during the floor test in Karnataka Assembly.
Summary:
Weinstein, who was accused of sexual harassment by over 70 women, earlier denied having non-consensual sex with anyone.
Summary:
Brazilian football star Ronaldinho has denied the reports that claimed that he is going to marry his two girlfriends at the same time, calling reports the "biggest lie".
Summary:
The court observed that the word 'Blu' cannot be attributed to the female sex.
Summary:
Summary:
After actor Morgan Freeman was accused of sexual harassment and inappropriate behaviour, a Twitter user wrote, "If these...allegations are true, Morgan Freeman won't be a 'free man' for much longer." Another user tweeted, "Who else saw Morgan Freeman trending on Twitter and thought he died?" "Morgan Freeman was accused of sexual harassment.
Summary:
"The well-crafted film is wonderfully served by a fine cast," wrote NDTV.
Summary:
MIT researchers have built an ingestible sensor equipped with bacteria that can diagnose stomach bleeding and inflammation.
Summary:
Addressing Visva-Bharati University's students in West Bengal's Santiniketan, PM Narendra Modi said, "As I was coming by car, some children gestured to me that they don't even have drinking water.
Summary:
When the hospital refused to take his blood due to fasting, Alam decided to break the fast.
Summary:
The Delhi Government is set to launch 'Spoken English' course for government school students from June.
Summary:
The Bhavan, built with â¹25-crore funds provided by Bangladesh, will include a museum showcasing Tagore's association with the country.
Summary:
North Korea on Thursday demolished its Punggye-ri nuclear test site, destroying three operational tunnels along with accompanying structures.
Summary:
India "ought to be" one of US' closest partners and it needs to be central to what the Trump administration does in South and Central Asia, US Secretary of State Mike Pompeo has said.
Summary:
Israeli border police have arrested a man who deliberately got arrested to disperse six phones to prisoners.
Summary:
The chargesheet filed by the Enforcement Directorate (ED) on Thursday said jeweller Nirav Modi diverted about $165 million (â¹1,118 crore) to his sister Purvi Mehta and father Deepak Modi.
Summary:
Sharing an old picture with his father and late actor Sunil Dutt on his 13th death anniversary, Sanjay Dutt wrote, "Wish you could see me as a free man.
Summary:
Karan Johar, on being asked if he has the fear of not finding a life partner, said, "I don't fear it, I don't care about finding a life partner anymore." "I already have my life partners, my children and my mom," he added.
Summary:
CSK's Suresh Raina has said the team wants to win IPL 2018 for captain MS Dhoni.
Summary:
The Indian Olympic Association took the decision after women athletes gave feedback following Commonwealth Games.
Summary:
England woman cricketer Alexandra Hartley took to Twitter to wish a speedy recovery to Virat Kohli, who has been ruled out from participating in county cricket due to neck injury.
Earlier, Hartley had termed Kohli's Surrey move as "an unbelievable signing".
Summary:
Speaking about Indian captain Virat Kohli skipping his county stint due to neck injury, Indian coach Ravi Shastri said, "He is not a machine but a human being." "It is not a case of putting rocket fuel up his backside and getting him on the park.
Summary:
Slamming Manchester United and France midfielder Paul Pogba over his frequent haircuts, Denmark football team coach ÃÂ
ge Hareide said, "Does he only think about his haircuts?" "He played against Manchester City with his hair dyed blue and white, maybe he'll have it red and white (against) us," he added.
Summary:
Alexa then misheard a subsequent conversation as a "send message" request to a name in the couple's contact list.
Summary:
The selected startups will receive mentorship from Google to deliver the pitch to a panel of investors.
Summary:
Steam had planned to release a free app to allow gamers to continue playing on their phones while being away from their PCs. Steam said that Apple cited "business conflicts with app guidelines".
Summary:
A video showing a Sikh policeman in Uttarakhand's Ramnagar saving a Muslim man from an angry mob which caught him with his Hindu girlfriend at a temple, has surfaced online.
Summary:
A new song titled 'Selfish', penned by Salman Khan and sung by his rumoured girlfriend Iulia Vantur and Atif Aslam, from the upcoming film 'Race 3' has been released.
Summary:
Six-time Congress MLA Ramesh Kumar has been unanimously elected as the Speaker of the Karnataka Assembly after the BJP withdrew nomination for its candidate Suresh Kumar.
Summary:
Ahead of the floor test on Friday, Karnataka CM HD Kumaraswamy said that his father HD Deve Gowda will not "micro-manage" the administration, stating he's the people's CM and he'll "hold the reins".
Summary:
Sri Lankan cricketer Dhananjaya de Silva's father Ranjan, a local politician, was killed by unidentified gunmen in Colombo on Thursday.
Summary:
Former Australian cricket captain Steve Smith will make a return to the sport following the ball-tampering incident in Cape Town, in the inaugural Global T20 Canada league next month.
Summary:
The data was used to influence the US elections.
Summary:
Apple has filed for a patent for a digital assistant which will enable intelligent declining of an incoming call.
Summary:
Karnataka's first woman DGP Neelamani N Raju, who was reprimanded by West Bengal CM Mamata Banerjee before her counterpart HD Kumaraswamy's swearing-in ceremony, has reportedly been transferred.
Summary:
All five people accused in the 2013 Bodhgaya blasts case were found guilty by a special court in Patna on Friday.
Summary:
A CCTV footage of the two suspects who detonated an improvised explosive device inside an Indian restaurant, Bombay Bhel, in the Canadian city of Mississauga, has been released by the regional police.
Summary:
UK's Prince William, who is second-in-line to the British throne, will visit Israel and the Palestinian territories in June, becoming the first British royal to make an official visit there.
Summary:
The cafe, established on the idea of Dr Veeranut Rojanaprapa, aims to teach people the benefits of 'death awareness'.
Summary:
A new poster of Sanjay Dutt's biopic titled 'Sanju' featuring Ranbir Kapoor and Sonam Kapoor has been released.
Summary:
Boney Kapoor, whose wife Sridevi passed away in February, said, "I'm trying to be both mother and father to my children [Janhvi, Khushi, Arjun and Anshula]." "These past months have been difficult...There were many things left unsaid and undone," he added.
Summary:
Sonam Kapoor took to Instagram to share a photo with filmmaker Karan Johar on the occasion of his 46th birthday today and wrote, "Happy happy birthday my darling brother from another mother." "May you always shine brighter than all the stars in the universe!
Summary:
Notably, RR, SRH, DD, and KXIP have Australian coaches.
Summary:
The US National Transportation Safety Board (NTSB) has revealed that emergency braking maneuvers in Uber's self-driving car, which killed a pedestrian in March, were not enabled.
Summary:
Uber has announced that it will open a research centre in Paris, where its flying cars will be developed.
Summary:
A video showing a man proposing his girlfriend for marriage using the intercom on-board an IndiGo plane has gone viral.
Summary:
Uber CEO Dara Khosrowshahi has said the cab-hailing startup is expecting to reinvest its profits back into its products, technology and "emerging markets like the Middle East and India".
Summary:
On exceeding jet stream capacity, "blocking" occurs which could be modelled for weather forecasts, said researchers.
Summary:
Canada-based astronomers have successfully observed two intense regions of radiation, 20 kilometres apart, around a star 6500 light-years away from Earth.
Summary:
Researchers at Antarctica have identified a site which likely holds a 1-million-year-old continuous ice core and would help understand Earth's climate history.
Summary:
Vice President Venkaiah Naidu has made 77 domestic trips during his 10 months in office, which is more than former Vice President Hamid Ansari who made 74 trips in 5 years during his second term.
Summary:
He was awarded the second-highest military decoration, Maha Vir Chakra, for his role in capturing the strategically important Haji Pir Pass during the 1965 war with Pakistan.
Summary:
PM Narendra Modi and his Bangladeshi counterpart Sheikh Hasina on Friday inaugurated the Bangladesh Bhavan in West Bengal's Santiniketan in the presence of West Bengal CM Mamata Banerjee.
Summary:
Buddhism is followed by more than 90% of Thailand's population of 6.9 crore.
Summary:
At least 15 people were injured after a bomb explosion took place in an Indian restaurant, Bombay Bhel, in the Canadian city of Mississauga.
Summary:
Summary:
Former world number one Novak Djokovic's tactical adviser and ATP's strategy expert Craig O'Shannessy has suggested players to use the under-arm serve to counter Rafael Nadal in the clay court season.
Summary:
Apple has won $539 million from Samsung after a US jury ruled the latter should pay the amount for copying patented iPhone features.
Summary:
After 12 people died due to Nipah virus in Kerala, the state government has issued a health advisory for visitors stating that extra cautious people can avoid travelling to Kozhikode, Malappuram, Wayanad and Kannur districts.
Summary:
Congress leader Abhishek Manu Singhvi said the UPA government had framed the rules which mandated that such an expansion required environment clearance based on public consultation.
Summary:
Android Co-founder Andy Rubin's startup Essential, which was launched last year, is considering selling itself and has cancelled development of a new smartphone, as per reports.
Summary:
This comes after at least 12 people lost their lives due to the virus which has limited treatment options.
Summary:
A PIL has been filed asking why the Supreme Court functions for only 193 days a year when the rules require a minimum of 225 working days.
Summary:
A near-miss incident occurred last week between an IndiGo aircraft and an Indian Air Force jet over Chennai, IndiGo has confirmed.
Summary:
Three Indo-Tibetan Border Force constables have been arrested for allegedly molesting three minor national-level table tennis players in Chhattisgarh.
Summary:
I'm confident that we can find a way, where common people will not be affected by such fuel hikes," Pradhan added.
Summary:
Summary:
UN Human Rights experts have asked Indian authorities to provide protection to journalist Rana Ayyub after a hate campaign over a fake tweet that said she sympathised with child rapists and claimed Muslims were unsafe in India.
Summary:
Summary:
North Korea has said it is still open to holding talks between its leader Kim Jong-un and US President Donald Trump despite the cancellation of the summit by Trump.
Summary:
Russia on Thursday rejected an international investigation that claimed Malaysia Airlines flight MH17 which crashed in Ukraine in 2014, was brought down by a Russian military missile.
Summary:
The Competition Commission of India (CCI) has ordered a probe against Aditya Birla Group's Grasim Industries for alleged abuse of dominant position with regard to sale of Viscose Staple Fibre (VSF).
Summary:
Hollywood producer Harvey Weinstein will surrender to New York City police on Friday on charges that he raped one woman and forced another to perform oral sex on him, as per reports.
Summary:
CSK's Pakistan-origin South African cricketer Imran Tahir's son Gibran recreated his father's trademark sprint-across-the-field celebration on being asked what his father does after taking a wicket.
Summary:
US President Donald Trump granted posthumous pardon to boxing's first black heavyweight champion Jack Johnson, who had been convicted by an all-white jury for transporting a woman across state lines for "immoral purposes".
Summary:
Pakistani cricketers were warned by ICC's Anti-Corruption Unit to stop wearing smartwatches after a few players showed up wearing them on the field in the on-going first Test against England.
Summary:
The Congress has asked the public for donations a day after reports claimed the party was facing a financial crisis and had not sent funds to several offices for months.
Summary:
US-based startup Rover has raised $125 million in equity funding from funds and accounts advised by T.
The round has valued the startup around $970 million, as per reports.
Summary:
The asteroid strike that triggered the extinction of dinosaurs 66 million years ago also destroyed forests across the globe, killing all the tree-dwelling bird species, as per a research published in Cell Press.
Summary:
A man in Madhya Pradesh's Betul has been booked for allegedly issuing death threats to the District Collector Shashank Mishra on Facebook.
Summary:
She requested the parents to send their son for tuition separately.
Summary:
Vodafone's FANtastic Breaks Contest now provides a chance to win a trip to "the Mecca of cricket - Lord's" this match season.
Summary:
Hollywood actor Morgan Freeman has apologised after being accused of sexual harassment and inappropriate behaviour by eight women.
That was never my intent," the 80-year-old actor added.
Summary:
Sweden has adopted a law under which sex without consent is considered rape.
Summary:
Actor Abhishek Bachchan has slammed a troll for comparing him to cricketer Stuart Binny, who plays for the IPL team Rajasthan Royals (RR), and calling them both useless.
Abhishek wrote, "Walk a mile in my shoes, brother.
Summary:
The Times of India (TOI) wrote, "The narrative isn't explosive but it does have...dramatic moments." It was rated 3.5/5 (Bollywood Hungama, TOI) and 3/5 (HT).
Summary:
The Karnataka Pradesh Congress Committee has written to the Superintendent of Police of Anti-Corruption Bureau, Bengaluru Urban Wing, seeking to register a complaint again BS Yeddyurappa and several other BJP leaders.
Summary:
The MLAs of Congress and JD(S) are being held in hotels in Bengaluru, a day before the JD(S) leader HD Kumaraswamy-led alliance is scheduled to face a floor test in the Karnataka Assembly.
Summary:
Dwarf planet Pluto was formed by agglomeration of roughly a billion comets, researchers have suggested based on similarities in data from NASA's Pluto probe New Horizons and ESA's Rosetta, the first-ever mission to land on a comet.
Summary:
The Election Commission, in its response to the Law Commission, has reportedly suggested that all elections scheduled for one year should be held together.
Summary:
The Odisha health department has issued an alert over Nipah virus to 30 district headquarters hospitals and five medical colleges.
Summary:
The Railway Protection Force (RPF) recovered stolen items like chained toilet mugs, ceiling fans, blankets, bed linens, iron window grills, washroom showers, and railway track materials from railway passengers in 2017-18.
Summary:
Talking about rising fuel prices, Petroleum Minister Dharmendra Pradhan said, "GST is one way to ease the situation, other ways also being thought of." He said the government is deliberating on an "immediate solution" to deal with the situation.
Summary:
Thousands of women freed from the Boko Haram militant group were raped by the Nigerian forces, human rights group Amnesty International has said.
Summary:
The plane, travelling from Amsterdam to Kuala Lumpur, was shot down while flying over rebel-held territory in eastern Ukraine.
Summary:
UK's MI6 intelligence agency has launched a campaign that seeks to recruit mothers and those belonging to the ethnic minority communities, as spies.
Summary:
CBI joint director Rajiv Singh, who was heading investigations in $2.1-billion PNB fraud involving Nirav Modi and Mehul Choksi, has been prematurely repatriated to his home cadre of Tripura.
Summary:
Summary:
The 18-year-old scored 245 runs in nine IPL 2018 innings.
Summary:
Cricket legend Viv Richards has said that he would have loved to play under the captaincy of Virat Kohli in the Indian Premier League.
Summary:
Veteran South African fast bowler Dale Steyn took to Instagram to pay a tribute to former South African cricketer AB de Villiers, who retired from international cricket on Wednesday.
Summary:
In his farewell message for AB de Villiers, who retired from international cricket on Wednesday, South Africa captain Faf du Plessis said he was "sad" that the pair would never bat together again for the national team.
Summary:
Brazilian left back Marcelo took the header bin challenge with his son Enzo's teammates days after the latter completed the challenge with the Real Madrid squad.
Summary:
Users have claimed the Map Tracker only works with packages delivered by Amazon's own logistics network.
Summary:
Several users have claimed that they are receiving messages from the people they have blocked on WhatsApp. Reports claimed that the issue has emerged due to a WhatsApp bug, which seems to have affected both Android and iOS users.
Summary:
But once the polls are over, he is out again." Mocking the BJP over its "Abki baar Modi sarkar" slogan, he said, "Next time around, it will be 'fuska bar' (damp squib)."
Summary:
Slamming the European Union for demanding an investigation into the killings of Palestinians along the Gaza border, Israel's Energy Minister Yuval Steinitz said the bloc could "go to a thousand hells".
Summary:
Batsman Ed Joyce, the first-ever cricketer to play T20I cricket for two countries (Ireland and England), has announced his retirement from all forms of cricket.
Summary:
A journalist, who had been pregnant when she interviewed Freeman, said he told her, "You are ripe."
Summary:
US President Donald Trump on Thursday cancelled the talks scheduled for June 12 with North Korean leader Kim Jong-un, citing North Korea's recent "tremendous anger and open hostility".
Summary:
Actress Kajol, while sharing a picture on social media of herself with her wax statue at Singapore's Madame Tussauds museum, wrote, "Always been a Kajol fan." She was seen at the unveiling of her wax statue with her daughter Nysa.
Summary:
Ronaldinho had reportedly proposed marriage to Priscilla and Beatriz in January 2017.
Summary:
The company's revenue rose 12.84% to â¹15,430 crore during the quarter.
Summary:
Vedanta Resources Chairman Anil Agarwal has said he is "very much in pain" over death of at least 12 people in police firing during anti-Sterlite protests.
Summary:
Thirteen people were killed and 102 others were injured when cops fired at the anti-Sterlite protesters in Tuticorin, Tamil Nadu, the police said on Thursday.
Summary:
Mumbai will have a total of 436 dewatering pumps installed across the city to prevent waterlogging during monsoon.
Summary:
The Jammu and Kashmir Police has banned the use of smartphones by on-duty personnel, blaming this for an increase in weapons-snatching.
Summary:
Pakistan's military hacked phones of US, UK, and Australian officials as part of a surveillance operation, US-based mobile security company Lookout has claimed.
Summary:
Cancelling scheduled talks with North Korean leader Kim Jong-un, US President Donald Trump said the world and the reclusive regime in particular "lost a great opportunity for lasting peace".
Summary:
Tata Consultancy Services CEO Rajesh Gopinathan's compensation doubled to â¹12.49 crore in FY18, compared to â¹6.2 crore in fiscal 2016-17.
Summary:
Employees of various state-owned banks have called for a 2-day nationwide strike starting May 30 to protest against a nominal 2% wage hike offered by the Indian Banks' Association.
Summary:
The US Department of Justice has launched a criminal probe into whether traders are manipulating the price of cryptocurrencies like Bitcoin, according to reports.
Summary:
Billionaire Anand Mahindra on Thursday praised the newly-enacted Insolvency and Bankruptcy Code (IBC), which provides for resolution of distressed companies.
Summary:
Airtel Payments Bank has appointed former ICICI Bank senior executive Anubrata Biswas as its MD and CEO.
Summary:
'Wonder Woman' actress Gal Gadot has announced that she will be co-producing a film on former Cuban President Fidel Castro, based on the article 'My Dearest Fidel: An ABC Journalist's Secret Liaison With Fidel Castro'.
Summary:
Summary:
"How annoying is the KKR skipper DK, get on with the game please!" Warne tweeted during RR's chase.
Summary:
Summary:
A man was arrested at Delhi airport for allegedly trying to smuggle 1 kg gold worth â¹30 lakh by hiding it in his rectum.
Summary:
Welcoming former NCP MLC Niranjan Davkhare into the BJP, Fadnavis said, "He wanted to join a national party and enter the mainstream politics".
Summary:
Five minor boys were arrested in Andhra Pradesh on Thursday for allegedly raping a 12-year-old girl for two months.
Summary:
A 16-year-old girl immolated herself after she was allegedly gangraped by a neighbour and two of his friends in a village in Uttar Pradesh on Tuesday night.
Summary:
The police arrested the woman and four family members who had helped her conceal the body.
Summary:
To prevent stampedes, the Central Railway (CR)â has decided to block foot overbridges (FOBs) at Mumbai's railway stations for short time spans during the monsoon if they get overcrowded.
Summary:
The government has hiked the import duty on wheat from 20% to 30% to curb cheaper imports and protect domestic growers.
Summary:
The new name derives from a place in the city called Prayag, where three rivers flowing across the state meet.
Summary:
Gujarat Secondary and Higher Secondary Education Board (GSEB) officials seized over 200 kg of cheating material from an examination centre in Junagadh during a Class 12 exam in March.
Summary:
NASA's new administrator Jim Bridenstine, nominated by US President Donald Trump, admitted on Wednesday "human activity is the dominant cause of global warming", adding he didn't doubt the science behind it.
Summary:
Maharashtra Chief Minister Devendra Fadnavis has said that the state has already given its consent to bring fuel under GST.
Fadnavis added that "other states have not given their consent yet".
Summary:
The Delhi government has directed 575 private schools to refund the excess fee they had charged from students in 2008 with an interest of 9%.
Summary:
The death toll from the Nipah virus rose to 12 as the fourth member of a Kerala family passed away today.
Summary:
Talking about the successful circumnavigation of the globe by an all-women crew aboard the sailing vessel INSV Tarini, crew member Lieutenant Commander Pratibha Jamwal on Wednesday said it was a difficult but memorable experience.
Summary:
China's President Xi Jinping has reportedly asked Pakistan PM Shahid Abbasi to relocate Jamaat-ud-Dawah chief Hafiz Saeed to a West Asian country in response to international pressure to act against him.
Summary:
The United States has "disinvited" China from the 'world's largest international maritime exercise' RIMPAC over China's continued militarisation of the disputed South China Sea, according to the Pentagon.
Summary:
While Ardern rejected Twyford's resignation, his responsibilities for the Civil Aviation Authority was transferred to another minister.
Summary:
Ukraine reportedly paid US President Donald Trump's lawyer Michael Cohen over â¹2.7 crore to set up a meeting between the leaders of the two countries.
Summary:
This comes after Trump said that the talks could be cancelled.
Summary:
The Enforcement Directorate (ED) has filed its first chargesheet against Nirav Modi and his associates in the $2.1-billion PNB fraud.
Summary:
Hrithik Roshan has been slammed for shooting a video and not wearing a helmet while cycling for the 'Fitness Challenge' started by Union Minister Rajyavardhan Rathore.
Summary:
Priyanka Chopra and Katrina Kaif will star in the Hrithik Roshan starrer 'Krrish 4', which will be made in two parts, as per reports.
Producer Rakesh Roshan had announced the film on his son Hrithik's birthday earlier this year.
Summary:
Kareena Kapoor, while talking about her career and choice of scripts, said she has rejected many good films.
Kareena further said she has been doing well in her career due to her self-confidence and her personality, while adding, "If your attitude is right, you're bound to succeed."
Summary:
Anupam Kher has said good cinema isn't just entertainment but also a medium for social change.
Summary:
Bobby Deol, while talking about struggles in his acting career, said, "I didn't want my kids to look at me and say he is a loser." "I wanted them to see their father at his best...
Summary:
A farewell message by former Team India captain Sourav Ganguly for former South Africa cricketer AB de Villiers flashed on a big screen at the Eden Gardens ahead of the KKR-RR match on Wednesday.
Summary:
Border had played 153 straight Tests from 1979-1994.
Summary:
The researchers further said the malware shares code with cyberattacks linked to Russia.
Summary:
Former UP CM Mulayam Singh Yadav has written to the estate department seeking permission to extend his stay at a Lucknow bungalow for two more years in an attempt to remain in government housing.
Summary:
After Prime Minister Narendra Modi accepted Team India captain Virat Kohli's fitness challenge, Congress President Rahul Gandhi sent a 'fuel challenge' to him to reduce prices.
Summary:
A rapid rise of land above the ocean 2.4 billion years ago likely triggered dramatic changes in climate and existing life forms, as per a study in journal Nature.
Summary:
Nearly 1.3 lakh cases are pending investigation in the Delhi Police Department, according to reports.
Summary:
A 16-year-old Odisha girl who was allegedly gangraped by six people on May 3 hanged herself at her home on Wednesday.
Summary:
PM Narendra Modi will visit Indonesia and Singapore between May 29 and June 2 and hold bilateral talks with leaders of both nations, the Centre announced.
Summary:
Team India captain Virat Kohli, who was scheduled to play county cricket for Surrey in June, has been ruled out from participating due to a neck injury, the BCCI said.
Summary:
North Korea had conducted all of its six nuclear tests at the site, as a result of which it had partially collapsed and was reportedly rendered unusable.
Summary:
Expressing his views on the recent hike in fuel prices, Bollywood actor Farhan Akhtar said that the petrol prices can be brought down.
Summary:
Further, the company posted a net profit of â¹143.2 crore for the financial year 2017-18.
Summary:
IIT-Kanpur researchers have signed a â¹15-crore MoU with VTOL Aviation India to develop vertical takeoff and landing (VTOL) craft prototypes, potentially to be used as flying taxis.
Summary:
A man, who worked as a cook at an Indian diplomat's house in Pakistan from 2015 to 2017, has been arrested from Uttarakhand for allegedly leaking classified information in exchange for money to Pakistan's Inter-Services Intelligence (ISI).
Summary:
Talking about the anti-Sterlite protestors killed in police firing, Tamil Nadu CM Palaniswami on Thursday said that the police were defending themselves.
Summary:
A 70-year-old man in Madhya Pradesh's Hadua village is digging a well without any help to solve the water crisis his village has been facing for over two years.
Summary:
Aligarh Muslim University's medical college has signed a deal with a UK-based NGO to provide free heart surgeries to babies and children who need it the most.
Summary:
A single page from one of Karl Marx's manuscripts has been sold for â¹3.5 crore at an auction in Beijing, China.
Summary:
A US federal judge on Wednesday ruled that US President Donald Trump may not legally block his followers on Twitter based on their political views.
Summary:
Financial Services Secretary Rajiv Kumar has said the government won't allow any state-run bank to default and will provide capital support.
Summary:
Former RBI Director Charan Singh has been appointed at Punjab & Sind Bank.
Summary:
The bank's global headcount is expected to fall "well below" 90,000.
Summary:
India has jumped one spot to 44th this year in global competitive rankings released by Switzerland-based IMD World Competitiveness Center.
Summary:
Actress Anushka Sharma on Thursday accepted her husband, team India captain Virat Kohli's 'Fitness Challenge', a fitness campaign started by Union Minister Rajyavardhan Singh Rathore.
Summary:
Hrithik, who has been the startup's brand ambassador since 2017, invested directly in cure.fit and also through his entity, HRX, according to filings.
Summary:
Actor Danny Denzongpa, who will be seen in the upcoming film 'Bioscopewala', has said he is like an alien in the film industry.
Danny further said he has been aloof and just does his job of acting.
Summary:
Actor Ranveer Singh and his rumoured girlfriend actress Deepika Padukone are set to get married on November 19, according to reports.
Summary:
David Warner's wife Candice has revealed she suffered a miscarriage days after the Australian cricketer was handed a one-year ban over the ball-tampering scandal.
Summary:
RCB captain Virat Kohli took to Twitter to apologise for the team's failure to reach the IPL 2018 playoffs and vowed to turn things around next season.
Summary:
Technology giant Apple is offering users a refund of â¹3,900 for out-of-warranty iPhone battery replacements last year.
Summary:
DMK and other Opposition parties in Tamil Nadu have called for a day-long statewide bandh on Friday to condemn the police firing incidents in Tuticorin that killed 13 anti-Sterlite protestors.
Summary:
NASA engineers controlling Curiosity rover on Mars have revealed it successfully drilled a 2-inch-deep hole on Mars surface on May 20, capturing the first rock sample since October 2016.
Summary:
DMK Working President MK Stalin was forcibly removed by the police during his protest outside CM Palaniswami's office against the police firing on anti-Sterlite protestors.
Summary:
Janata Dal (United) leader Pragati Mehta's wife Khushboo Kumari reportedly committed suicide by hanging herself from the ceiling on Tuesday in Bihar's Jamui district.
Summary:
Iran's Supreme Leader Ayatollah Ali Khamenei has said US President Donald Trump "will vanish from history" and Iran would defeat the US if Iranian officials fully performed their duties.
Summary:
Another 3,000 pilgrims, part of 25,000 registered for the day's trek, were moved to a safer place near Himkoti Marg.
Summary:
Aamir Khan has revealed he earned â¹11,000 for the 1988 film 'Qayamat Se Qayamat Tak', his first film as a lead actor.
Summary:
"He said, 'If you ever make her feel uncomfortable again, I'll kill you', or something like that," Gwyneth added.
Summary:
Apple is rolling out a tool that lets people download the data the company holds on them, ahead of the new European privacy law.
Summary:
Further, responding to a user saying people don't care about the truth, he said, "Enough of the public does care about the truth.
I have faith in the people."
Summary:
A fake message about Jet Airways giving away two free tickets in a bid to celebrate its 25-year anniversary is being circulated on messaging platform WhatsApp. The airline also issued a "fake alert" on Twitter, saying, "This is not an official contest/giveaway and we advise caution.
Summary:
PM Narendra Modi on Wednesday called up Karnataka's newly appointed CM HD Kumaraswamy and assured him of all help and good relations on the state's development issues.
Summary:
It comes at a time when Uber posted a net revenue of $2.5 billion and $601 million net loss for the first quarter of 2018.
Summary:
In 2015, Hurricane Patricia, the most intense tropical cyclone ever recorded in the Western Hemisphere blasted a beam of positrons, the antimatter counterpart of electrons, towards the Earth, a US-based study has confirmed.
Summary:
Sengupta earlier developed landing gear for Curiosity rover on Mars.
Summary:
Internet services have been temporarily suspended in Tamil Nadu's Tuticorin amid the ongoing anti-Sterlite protests in the area.
Summary:
The Tamil Nadu Pollution Control Board (TNPCB) has ordered the closure of the Sterlite Copper plant in Tuticorin amid ongoing protests by locals.
Summary:
The BJP-led Gujarat government has decided to perform 41 'parjanya yagnas' across the state on May 31 to pray for a good monsoon.
Summary:
Former Russian spy Sergei Skripal's daughter Yulia has said the fact that her father and she were attacked using a nerve agent turned her "world upside down", both "physically and emotionally".
Summary:
The US State Department on Wednesday expelled two Venezuelan diplomats and asked them to leave the country within 48 hours.
Summary:
The CBI has alleged in its chargesheet that six persons, most of them illiterate and unemployed, were made partners in firms owned by Nirav Modi, reports said.
Summary:
The CBI chargesheet has revealed that Nirav Modi's team led by Vipul Ambani "hid" more than 50 cartons of documents in a law firm's offices in mid-February.
Summary:
Filmmaker Indra Kumar, while confirming that Akshay Kumar, Suniel Shetty and Paresh Rawal will star in 'Hera Pheri 3', tweeted, "This is going to be a fun project with a stellar star cast." Indra Kumar is known for directing the 'Masti' and 'Dhamaal' film series.
Summary:
After being sworn-in as the Karnataka Chief Minister on Wednesday, HD Kumaraswamy said, "Even though it is a coalition government, it will be a model for the country." The state government has been formed by an alliance between Congress that won 78 seats and JD(S) that won 37 in the Assembly polls.
Summary:
The report claims the self-driving cars will be based on the Volkswagen T6 Transporter vans for Apple employees.
Summary:
The two-factor authentication requires using a second step, like a single-use key or password, along with the account password for verification.
Summary:
US-based AI startup Hugging Face, which is working on developing chatbots focussed on emotions, has raised $4 million led by Ronny Conway from A.Capital Ventures.
Summary:
A yacht built for former Iraqi dictator Saddam Hussein will be turned into a hotel and recreation facility for sailors.
Summary:
Clashes broke out between some Rajput and Dalit groups in Gujarat's Dholka on Tuesday after a Dalit man added the 'Sinh' suffix to his name, the police said.
Summary:
The university said that the directives were issued to maintain discipline among students.
Summary:
The US embassy in China has issued a health alert for its citizens after a consulate worker reported a mild traumatic brain injury caused by "abnormal" sounds and pressure.
Summary:
The Organisation for the Prohibition of Chemical Weapons is tasked with implementing the convention which is aimed at preventing the manufacture, stockpiling, and use of chemical weapons.
Summary:
Kolkata Knight Riders will now face SunRisers Hyderabad in the tournament's Qualifier 2 on Friday.
Summary:
PM Narendra Modi on Thursday accepted Team India captain Virat Kohli's 'Fitness Challenge', a fitness campaign started by Union Minister Rajyavardhan Singh Rathore.
Summary:
As part of an effort to address the rising cases of divorces in the country, China's Jiangsu province has introduced a voluntary 'divorce test' for couples planning to end their marriage.
Summary:
Mumbai Police has used a reference to a dialogue from the upcoming film 'Race 3' in a tweet spreading awareness about data safety.
None of your data!" In the original dialogue, Daisy Shah says, "Our business is our business.
Summary:
The amount of cash seized during the Karnataka election campaigning this year was over six times the amount seized in the 2013 assembly polls and over thrice the amount seized during 2014 general elections.
Summary:
IPL 2018 auction's most expensive Indian player Jaydev Unadkat, who was bought for â¹11.5 crore by Rajasthan Royals, picked up 11 wickets in 15 matches, with his each wicket costing â¹1.04 crore.
Summary:
Software firm IBM has developed a device called Crypto Anchor Verifier which uses artificial intelligence (AI) and optical imaging to detect counterfeit (fake) goods.
Summary:
West Bengal CM Mamata Banerjee reprimanded Director General and Inspector General of Police Neelamani Raju reportedly because the leader had to walk some distance to reach Karnataka Assembly on Wednesday.
Summary:
Adding that Congress hasn't sent funds to several offices for the past five months, reports said the party members have been asked to contribute more and cut down expenses.
Summary:
A case was filed against actor-turned-politician Kamal Haasan on Wednesday for visiting a Tuticorin government hospital with his supporters while Section 144 was in place.
Haasan was going to meet people injured in the protests against the expansion of the Sterlite plant.
Summary:
Drinking too much water can cause excess fluid accumulation, leading to low sodium levels in the blood or hyponatremia, which results in brain swelling, Canada-based scientists have warned.
Summary:
Officials collected samples of the dead bats for further investigation but dismissed rumours of an outbreak of the virus.
Summary:
The CBI has booked 10 employees of Sify Technologies, the agency which conducts the SSC exam, in connection with the paper leak in February this year.
Summary:
Andhra Pradesh's Crime Investigation Department has arrested AgriGold Vice President Avva Sitarama Rao, a key accused in the â¹6,380-crore scam.
Summary:
Former Pakistan PM Nawaz Sharif has claimed that an ex-intelligence chief had asked him to step down during the Opposition protests in 2014.
Summary:
Jet Airways on Wednesday posted a loss of â¹1,036 crore in March quarter, compared to the â¹602.4 crore profit in same quarter last fiscal.
Summary:
US cable operator Comcast has confirmed that it is considering and is in "advanced stages" to top Walt Disney Company's $52-billion bid to acquire 21st Century Fox's film and TV assets.
Summary:
Speaking about her upcoming film 'Veere Di Wedding', Sonam Kapoor said, "Young, urban, working women...do curse, drink and are sexually active." She said this when asked if the film 'reduced women empowerment to behaving like men'.
Summary:
Actress Kareena Kapoor Khan has said that she does not want the life of her son Taimur Ali Khan to be documented.
Summary:
She added, "He came back four years later and said that I had wasted four years of his life.
Summary:
Team India captain Virat Kohli accepted Sports Minister Rajyavardhan Rathore's fitness challenge and shared a video of himself doing his "favourite core workout" on Twitter.
Summary:
Users have reported that Amazon has been banning customers from its website without warning for returning too many items.
Summary:
Martinod has performed over a dozen transplants since 2009 using aortas from deceased donors while one of his patients has even taken up long-distance running.
Summary:
Four men allegedly preserved the body of their 70-year-old mother with chemicals for five months to draw her pension of â¹13,000, said Varanasi police.
Summary:
A 36-year-old Ola driver was arrested for allegedly molesting a 24-year-old female bank professional in his vehicle on May 21, the police said on Wednesday.
Summary:
A 45-year-old worker died due to a fall while running away from a boiler blast at a farm owned by Union Minister Nitin Gadkari's family in Maharashtra, the police said today.
Summary:
Malaysia had signed a deal to pay Ocean Infinity up to $70 million if it was able to find the plane.
Summary:
The website was down for over 40 minutes and the brand confirmed it crashed after Meghan was spotted wearing the dress.
Summary:
After marrying UK's Prince Harry, former actress Meghan Markle must follow several royal protocols like not clicking selfies with fans.
Summary:
De Villiers had collaborated with South African singer Ampie Du Preez for the pop album .
Summary:
Ex-South Africa cricketer AB de Villiers holds the records for scoring the fastest fifty, hundred and 150 in ODIs. De Villiers slammed ODI's fastest-ever century off 31 balls against Windies in January 2015.
Summary:
Japanese conglomerate SoftBank has confirmed it is selling its entire stake of roughly 20% in Indian e-commerce firm Flipkart to Walmart.
Summary:
The man can be seen lying on the ground unable to get up while multiple policemen in riot gear surround him.
Summary:
A special investigation team has been set up to probe extortion threats received by 12 Uttar Pradesh MLAs, the police said.
Summary:
An average of four cases of Aadhaar-related frauds were reported every week in 2018 up to May 8, an independent research has found.
Summary:
The Tamil Nadu government has transferred Tuticorin Superintendent of Police P Mahendran and District Collector N Venkatesh after at least 12 people were killed in police firing during anti-Sterlite protests.
Summary:
A few days ago, Lalu was admitted to a government-run hospital in Patna after he complained of breathing problem and chest pain.
Summary:
US President Donald Trump on Tuesday said his Chinese counterpart Xi Jinping is a "world-class poker player", referring to his ties with North Korean leader Kim Jong-un.
Summary:
White House aides drafting tweets for US President Donald Trump intentionally include grammatical errors to mimic his style, reports said.
Summary:
Venezuela's envoy to India Augusto Montiel has said that the South American country is willing to accept oil payments from India in rupees.
Summary:
The Indian government may levy Goods and Services Tax (GST) at the rate of 18% on cryptocurrency trading, according to reports.
Summary:
However, the company reported a 16% increase in its revenue to â¹91,279 crore.
Summary:
A whistleblower has reportedly written to markets regulator SEBI claiming current Infosys board led by Nandan Nilekani failed to uphold "highest traditions" of corporate governance and is "a huge disappointment".
Summary:
I want no part of my trophies, my achievements, nothing in my house when our kids are growing up," the 29-year-old added.
Summary:
Summary:
As per reports, the teaser of the Rajinikanth and Akshay Kumar starrer '2.0' will be released at the Indian Premier League finale on May 27.
Summary:
Deepika will reportedly have various high-octane action sequences in the film.
Summary:
After South African cricketer AB de Villiers announced his retirement from international cricket, cricket legend Sachin Tendulkar tweeted, "Like your on-field game, may you have 360-degree success off the field as well." Meanwhile, Virender Sehwag wrote, "Congratulations De Villiers, the most loved cricketer in the world, on a wonderful career.
Summary:
Reacting to South African cricketer AB de Villiers' retirement from international cricket, a user tweeted, "The SuperMan hangs his Cape...Adios Champ!" Other tweets read, "AB De Villiers did what he always does.
Summary:
Real Madrid forward Cristiano Ronaldo has said he feels a decade younger than his age of 33 years, adding "I've still got a long time left, I can keep playing until I'm 41".
Summary:
Further, De Villiers won the ICC ODI Player of the Year for a record three times.
Summary:
Major Nitin Leetul Gogoi, who once tied a local to his jeep's bonnet as a human shield, was briefly detained by police today.
Summary:
After a sinkhole opened up on the White House lawn near the press briefing room, a Twitter user wrote, "It's from Satan.
Summary:
Arsenal has appointed Unai Emery as its new manager as Arsène Wenger stepped down after 22 years with the club.
Summary:
Kotak Securities has launched brokerage free intraday trading on their online platforms for Cash, Futures and Options.
Summary:
Vodafone Zoozoos are here to help you.
Summary:
Residents of Tamil Nadu's Tuticorin have been demanding the closure of Vedanta's Sterlite copper smelting plant, claiming that it is causing pollution and health issues among the people residing close to the unit.
Summary:
Aamir Khan has revealed Rajkumar Hirani had approached him for Sanjay Dutt's biopic titled 'Sanju'.
"I told Raju (Hirani) Sanjay Dutt's role is so good that...I can't do any other role.
Summary:
The BJP boycotted the swearing-in ceremony of the Congress-JD(S) coalition government in Karnataka on Wednesday.
Summary:
De Villiers added that he hopes he can continue to be available for South African domestic side Titans.
Summary:
South African cricketer AB de Villiers, who retired from all forms of international cricket on Wednesday, said that he wanted to retire while still playing decent cricket.
Summary:
The Madras High Court has ordered to preserve the bodies of 11 people who were killed in police firing at anti-Sterlite protests in Tuticorin on Tuesday, until further orders.
Summary:
Union Law Minister Ravi Shankar Prasad on Wednesday said the government is concerned over frequent hike in fuel prices and will make decision based on long-term solution.
Summary:
A group of monkeys attacked two foreign tourists at the Taj Mahal on Tuesday.
Summary:
India is currently the world's sixth wealthiest country with a total wealth of $8,230 billion.
Summary:
HPCL Chairman Mukesh Kumar Surana has said that he was not aware of any meeting called by Oil Minister Dharmendra Pradhan or anyone else in the government to discuss the rising fuel prices.
Summary:
The demand for cash has increased by 7% since November 2016 when the government announced demonetisation, according to a report by the RBI.
Summary:
Aishwarya Rai Bachchan took to social media to share a picture with her mother Vrinda Rai on the occasion of her birthday and wrote, "I love you.
Summary:
Ranveer Singh has said celebrity life isn't easy as there's a lot of scrutiny.
Summary:
Late actress Sridevi was posthumously conferred with the BRICS Business Forum Leadership Award for Lifetime Achievement in Indian Cinema.
Summary:
They will show you the full movie in 2019 elections." He added, "We had a tie-up with BJP in 2014 elections.
Summary:
Pacer Shardul Thakur, who slammed 15 runs off 5 balls against SRH to help CSK qualify for their seventh IPL final, had once smashed six sixes in an over.
Summary:
Real Madrid forward Cristiano Ronaldo has been named as the world's most famous athlete for the third straight year in ESPN's annual rankings.
Summary:
But he shall be exposed soon." Rupani further said that people have neglected the Congress and chosen BJP everywhere.
Summary:
E-commerce firm Flipkart is likely to burn as much as $2 billion cash in the next 18 months to push its sales growth, according to reports.
Summary:
Bengaluru-based education management startup Edyoo has raised $1 million in pre-Series A funding from RS Shanbag, Chairman of Valuepoint Group.
Summary:
A 10-year-old girl was allegedly gangraped by three people, including her paternal uncle, in Bhopal several times over the last one year.
Summary:
A man and his wife in Mumbai have been arrested for allegedly strangling their neighbour Rakesh Shinde to death after Shinde asked the wife for her mobile number.
Summary:
A drunken man bit off a part of another man's ear and swallowed it during a fight in Delhi on Tuesday, according to police.
Summary:
A Cheetah helicopter of the Indian Air Force crash-landed in Natha Top in Jammu and Kashmir soon after it took off on a routine sortie on Wednesday morning, officials said.
Summary:
Further, Karnataka Congress chief G Parameshwara took oath as the Deputy CM while Congress MLA KR Ramesh Kumar became the Assembly Speaker.
Summary:
South African cricketer AB de Villiers on Wednesday announced his retirement from all forms of international cricket with immediate effect.
Summary:
India Meteorological Department has forecast chances of rain during IPL 2018 Eliminator between KKR and RR in Kolkata on Wednesday.
Summary:
The ICC's official Twitter account gave a ruling on a Pakistani street cricket dismissal after a fan shared a video asking the governing body whether it was out.
Summary:
The company also introduced features to help Xiaoice create a 10-minute audio story for kids in about 20 seconds.
Summary:
Another member asked Zuckerberg if Facebook would split off WhatsApp or Messenger if it's established that the company is a monopoly.
Summary:
Congress on Wednesday announced that the party will observe 'Vishwasghat Diwas' on May 26, the day that NDA-led government completes its four years at the Centre.
Summary:
Each bike features a maroon and blue Pegasus emblem on the fuel tank along with an individual serial number.
Summary:
The Parker Solar Probe is named after American physicist Eugene Parker, who theorised solar wind.
Summary:
Four civilians were killed and 30 others, including BSF personnel, were injured in the latest round of shelling by Pakistan Rangers across the international border in Jammu region on Wednesday.
Summary:
During fresh anti-Sterlite protests in Tuticorin on Wednesday, police firing killed one protestor and injured three others.
Summary:
The National Human Rights Commission (NHRC) has issued a notice to the Tamil Nadu Chief Secretary and Director General of Police (DGP) over the police firing on anti-Sterlite protesters in Tuticorin.
Summary:
The promoters of over 2,100 companies have cleared outstanding dues worth â¹83,000 crore before action was initiated under the Insolvency and Bankruptcy Code, government data showed.
Summary:
In India, both entities have a presence in production and sale of vegetable seeds, cotton seeds and non-selective herbicides.
Summary:
Vedanta's shares fell as much as 6% on Wednesday to their lowest level in nearly 11 months after protests against the Sterlite copper unit in Tamil Nadu's Tuticorin turned violent, killing at least 11.
Summary:
Summary:
Sonam Kapoor, while speaking about her husband Anand Ahuja changing his name to Anand S Ahuja on social media, said, "I didn't even know...he had changed his name.
Summary:
Stylist Juliet Angus, while sharing a picture of Meghan Markle, claimed 'big' fashion designers didn't want to dress her when she was on a press trip to London five years ago.
Summary:
Summary:
The co-passengers alleged the man was "extremely intoxicated" and made inappropriate physical contact on several occasions.
Summary:
In April, filings revealed that S Chand Group will invest â¹35 lakh in Smartivity.
Summary:
Digital payments startup Paytm has acquired Chennai-based ticketing startup TicketNew for a reported amount of $40 million.
Summary:
The Maoists had threatened the watchman to leave the place before targeting the farmhouse.
Summary:
The Delhi Minorities Commission has issued a notice to the registrar of Jawaharlal Nehru University (JNU) over the varsity's proposal to start a course on 'Islamic terrorism'.
Summary:
More than 4,000 people in the Philippines have been killed in the drug war since Duterte became President in June 2016.
Summary:
Over 15,000 people took part in the protests, according to police.
Summary:
Kilmartin had himself attempted suicide in the past by overdosing on antipsychotic medication.
Summary:
The first case of Nipah virus was reported from Perambra in Kerala's Kozhikode, where three members of a family succumbed to the virus.
Summary:
Bardeen shared the 1956 Prize with William Shockley and Walter Brattain for the invention of transistor.
Summary:
In response, Amazon said it would "suspend" customer access if they abused the technology.
Summary:
Called 'Stickman', it uses a pendulum to launch itself into the air after swinging and folds to change its moment of inertia, and unfolds to reduce its spin.
Summary:
Also, the algorithm uses less information, allowing cars to make quicker decisions, according to MIT.
Summary:
Congress leader and former Finance Minister P Chidambaram claimed that the petrol price can be reduced by â¹25 per litre but the government is not doing it.
Summary:
Indian neurosurgeons have revealed Michael Jackson's 45-degree lean was achieved by a mix of trick and talent as strongest dancers can reach only 30 degrees.
Summary:
A Swedish court has blocked the construction of a new Nobel Centre in Stockholm, intended as a future venue for the prestigious arts and science awards.
Summary:
The Kerala government on Wednesday announced a monetary aid of â¹20 lakh to the family of the nurse who died due to Nipah virus while treating affected victims.
Summary:
Delhi Archbishop Anil Couto on Tuesday clarified that his letter about a threat to democracy in India was not about the PM Narendra Modi-led government.
Summary:
One of the patients is a 20-year-old woman, who may have been exposed to the virus when she visited the Perambra hospital in Kozhikode.
Summary:
Reportedly, NCERT curriculum would also be introduced in the madrasas, which will include subjects like Science, Social Science, Hindi, English and Mathematics for the students.
Summary:
More than 40,000 foreigners from 110 countries are estimated to have travelled to join ISIS.
Summary:
Venezuela's President Nicolas Maduro on Tuesday ordered the expulsion of two top US diplomats in retaliation to the new round of sanctions imposed by the US over his re-election.
Summary:
North Korea has allowed South Korean reporters to visit its Punggye-ri nuclear site, South Korean Unification Ministry said on Wednesday.
Summary:
The Rohingya militant group Arsa killed nearly 100 Hindu civilians in Myanmar's Rakhine State in August last year, sparing those who converted to Islam, a report by human rights group Amnesty International has revealed.
terrorised them before slaughtering them outside their villages," the report further read.
Summary:
Aviation Secretary RN Choubey has said that a proposal will be made to Finance Ministry to bring jet fuel under GST to contain the rise in prices.
Summary:
Actor Angad Bedi, who recently got married to actress Neha Dhupia, said he was a commitment-phobic person and he never thought that he would settle down.
Summary:
Filmmaker Vishal Bhardwaj has said one is lying if he says he's not looking for success.
"Success represents greed.
Bhardwaj further said, "With success comes...money, fame and power.
Summary:
'Deadpool 2' screenwriter Rhett Reese has revealed actor Brad Pitt agreed to do a cameo in the film for minimum pay, which is less than $1,000 (â¹68,207) and a cup of coffee.
Summary:
Summary:
After meeting people injured during the anti-Sterlite protests in Tuticorin on Tuesday, actor-turned-politician Kamal Haasan said, "We must know who ordered this firing.
Summary:
A man in Delhi had a narrow escape while crossing tracks at Shastri Nagar Metro Station after a metro driver applied brakes just in time to avoid running over him.
Summary:
Talking about the anti-Sterlite protestors killed in police firing in Tuticorin, Congress President Rahul Gandhi on Wednesday said that Tamilians are being killed because they refused to bow down to RSS ideology.
Summary:
A UK court has found a woman guilty of tricking her teenage daughter into travelling to Pakistan and forcing her to marry a man nearly twice her age.
Summary:
India's largest bank SBI is planning to list its general insurance business and cards business by 2019-20, Chairman Rajnish Kumar has said.
Summary:
The Madras High Court on Wednesday stayed the construction of a new copper smelter by Sterlite Copper in Tamil Nadu's Tuticorin, where 11 people were killed in police firing while carrying out anti-Sterlite protests.
Summary:
Olga Tokarczuk has won this year's Man Booker International Prize for her novel 'Flights', becoming the first Polish writer to receive the award.
Summary:
Summary:
During Mark Zuckerberg's recent testimony, European Parliament member Guy Verhofstadt asked the Facebook CEO to decide if he wants to be remembered as the failed "genius that created a digital monster that is destroying our democracies".
Summary:
A female tourist was allegedly kidnapped by a gang shortly after she deboarded her flight from Hong Kong at Bangkok airport earlier this month.
Summary:
Elon Musk-led SpaceX launched twin NASA satellites on Tuesday that would track the Earth's water movement and ice melt.
Summary:
Astronomers have proposed that the "alien asteroid" that circles the Sun near Jupiter's orbit in the opposite direction is "a strong candidate for the oldest object in the solar system".
Summary:
In a written complaint to the District Magistrate, the girls claimed that the warden walks around the premises mysteriously and touches them inappropriately.
Summary:
A man teaching at a school in West Bengal was arrested on Sunday for allegedly molesting three girl students aged between nine and 13 years and showing them pornography for the last three years.
Summary:
BJP leader Kanhaiya Lal Mishra has been arrested for allegedly raping a 32-year-old woman at a lodge in Uttar Pradesh's Varanasi.
Summary:
Kerala CM Pinarayi Vijayan on Tuesday welcomed Dr Kafeel Khan, accused in the deaths of 65 children in a state-run Gorakhpur hospital, after he volunteered to treat patients affected by Nipah virus.
Summary:
The protestors are demanding the closure of Vedanta's Sterlite Copper unit in Tamil Nadu's Tuticorin.
Summary:
Trump reportedly refuses to follow security protocols, including swapping the phones for fresh devices, saying it's "too inconvenient".
Summary:
A couple in New York, US have filed a lawsuit against their 30-year-old son after he refused to move out of their house despite giving him multiple notices.
Summary:
Tata Steel has put in place a new management team at Bhushan Steel after its â¹35,200 crore takeover through India's new insolvency process.
Summary:
Laszlo Hanyecz, a computer programmer from US' Jacksonville, purchased two Papa John's pizzas worth about $25 for 10,000 Bitcoins on May 22, 2010.
Summary:
Kareena Kapoor, while speaking about her take on feminism, said, "I am as proud to be known as Saif Ali Khan's wife as I am to be Kareena Kapoor.
I wouldn't say that I am a feminist.
Summary:
Singer Taylor Swift, in an Instagram story, thanked actor Ryan Reynolds for featuring her cats Olivia and Meredith in 'Deadpool 2'.
Summary:
Talking about his days as an actor when he waited to meet Amitabh Bachchan, Jackie Shroff recalled, "Here I'm waiting to see Bachchan sir and his kids want my autograph!
Summary:
On Tuesday, BJP termed the alliance as "unholy", alleging that they "hijacked the people's mandate".
Summary:
The feature called 'Mute' will let users see posts on the account's profile page even after it is muted and notify them about posts they're tagged in.
Summary:
Odisha's forest department has confirmed the presence of the first black panther in the state via camera footage in Sundargarh district, 26 years after first reports of spotting.
Summary:
Vaishnav, who was a third-year MBBS student, had complained of chest pain soon after eating dinner with his family on Tuesday and was rushed to a hospital.
Summary:
Bowers, who previously also worked at Microsoft and Facebook, will be working on Tesla's Autopilot software, the company said.
Summary:
A US-based surgeon is facing several lawsuits for malpractice after posting YouTube videos of herself singing and dancing around unconscious patients.
Summary:
The principal of a Dehradun school allegedly beat an 11-year-old boy with an iron rod for complaining about the quality of food being served in the mid-day meal.
Summary:
The admin of a WhatsApp group in Mumbai was attacked by three people and stabbed at the behest of a man, who was angry over his removal from the group.
Summary:
Chennai Super Kings on Tuesday defeated SunRisers Hyderabad in the Qualifier 1 to reach Indian Premier League final for the seventh time.
Summary:
The official website of Jamia Millia Islamia University was hacked for the second time on Tuesday and hackers left a message reading, "Sorry, I have a boyfriend.
Summary:
"Since all the contacts are under observation...there is no reason for people to panic.
Summary:
US President Donald Trump on Tuesday said he may cancel or delay the North Korea summit scheduled for June depending on the actions of North Korean leader Kim Jong-un.
Summary:
Vishva Hindu Parishad (VHP) has said the name of Salman Khan's upcoming production 'Loveratri' distorts the meaning of Hindu festival Navratri.
'Loveratri' will mark the acting debut of Salman's brother-in-law Aayush Sharma.
Summary:
Talking about losing several projects to people hailing from film families, Priyanka Chopra said, "When I entered Bollywood, everyone was somebody's uncle or somebody's daughter." She added it's very difficult to get inside a production office if one is an actor with no film background.
Summary:
MS Dhoni has become the first cricketer to reach eight IPL finals, following CSK's victory over SRH in the IPL 2018 Qualifier 1 on Tuesday.
Summary:
The floor test of the Congress-JD(S) alliance is scheduled for Thursday in the Karnataka Vidhana Soudha.
Summary:
The cartoon shows a caricature of Congress chief Rahul Gandhi taking away 'power' from BJP chief Amit Shah.
Summary:
After 11 people were killed in police firing during protests against Vedanta's Sterlite Copper unit in Tamil Nadu's Tuticorin, Congress President Rahul Gandhi termed the police action as "state-sponsored terrorism".
Summary:
With a declared income of â¹82.76 crore, the Samajwadi Party (SP) was the richest of the 32 regional parties in 2016-17, an Association for Democratic Reforms (ADR) report has revealed.
Summary:
After the Centre proposed allocating cadres and services to civil services candidates after a foundation course, Congress President Rahul Gandhi said PM Narendra Modi wants to appoint officers of RSS' choice to the Central Services.
Summary:
The All India Online Vendors Association (AIOVA) has filed a petition with the Competition Commission of India (CCI) against Flipkart, alleging the e-tailer is favouring its own brands and select merchants.
Summary:
Sterlite Copper CEO P Ramnath has said what happened was "unfortunate" and clearly people were "misled".
Summary:
Consumers in India spend as much as 35% more on petrol than consumers in Pakistan.
Summary:
Some crematoria in Kerala's Kozhikode have refused to cremate dead bodies, fearing that the staff will contract the Nipah virus from the deceased.
Some of the staff allegedly went on mass leave without informing the authorities.
Summary:
A man sent an RTI request addressed to the Medical Council of India seeking information about his blood group after tests done at various pathology labs showed different results.
Summary:
A forest fire has been raging in Uttarakhand's Pauri Garhwal district for five days, reports said.
Weather is dry, makes the situation look worse," Chief Conservator of Forests Jayaram said.
Summary:
The Enforcement Directorate has seized assets worth nearly â¹21 crore belonging to Dabur India's former director Pradip Burman for holding undisclosed assets abroad.
Summary:
India's largest lender SBI added â¹8,077 crore in market capitalisation on Tuesday even as the bank's fourth-quarter loss widened to â¹7,718 crore compared to â¹2,416 crore in the previous quarter.
Summary:
The Akal Takht has constituted a 21-member Sikh Censor Board to look into films having Sikh-related content.
Summary:
It's like two of my three sons working together (in Race 3)." Adding that Salman has been very close to him and his family, Dharmendra said, "I've always seen many of my traits in Salman.
Summary:
Summary:
CSK all-rounder Dwayne Bravo pulled off a diving catch to dismiss SRH'sÃÂ Yusuf Pathan for 24 runs off his own bowling during the IPL 2018 Qualifier 1 on Tuesday.
Summary:
Several Muslim organisations on Tuesday held a press conference, demanding that either Congress MLA Roshan Baig or some other Muslim leader be made the Deputy CM in Karnataka.
Summary:
KXIP's Yuvraj Singh had a batting average of just 10.83 in the IPL 2018, his worst-ever in any IPL season.
Summary:
Israel is the first country outside the US to acquire the jets.
Summary:
Around 80% women in India support live-in relationships, according to the Inshorts Pulse of the Nation Poll.
Summary:
After the JD(S)-Congress announced the cabinet positions in Karnataka on Tuesday, five-time Congress MLA G Parameshwara was selected as the Karnataka Deputy Chief Minister.
Summary:
The Civil Aviation Ministry has proposed a minimum compensation of â¹3,000 per kilogram in case airlines lose the baggage of passengers.
Summary:
In the first draft of its passengers' charter, the Civil Aviation ministry has proposed compensations ranging from â¹5,000 to â¹20,000 if passengers miss connecting flights due to delays of 3 to over 12 hours.
Summary:
Punjab has the lowest consumption of meat in India, with 10% of the men and 4% of the women in the state eating meat weekly, the IndiaSpend analysis of national health data has revealed.
Summary:
The US city of Lake Worth accidentally issued a "zombie activity" and power outage alert.
Summary:
Data showed that over half of the jobs created in organised sector were in Maharashtra, Tamil Nadu and Gujarat.
Summary:
China on Tuesday announced that it will slash the import duty on passenger cars to 15% starting July 1 from the current 25% which has been in place for over a decade.
Summary:
Confirming that victims were killed after being abducted in a PAC truck, a court in 2015 acquitted all accused officials citing lack of evidence against them.
Summary:
At least 16 people were killed and 38 others were injured on Tuesday in Afghanistan's Kandahar after explosives in a minivan accidentally detonated while security forces were trying to defuse them, officials said.
Summary:
The African-American bishop who gave a sermon at the Royal Wedding revealed in an interview that he thought the invitation for the Royal Wedding was an 'April Fools' joke'.
Summary:
Tata Steel on Tuesday said it will raise â¹16,500 crore through debt instruments to fund â¹32,500 crore acquisition of bankrupt Bhushan Steel.
Summary:
The company's revenue from operations jumped about 12% to â¹1.37 lakh crore.
Summary:
Responding to the allegations, McDonald's spokeswoman Terri Hickey said there is "no place for harassment and discrimination of any kind" in the workplace.
Summary:
Bigg Boss 11 winner Shilpa Shinde, who had several altercations with Hina Khan on the show, said, "I don't have any problem with Hina nor is she my competition." "Our reality show is over, so what is point of dragging things from the past," she added.
Summary:
Ekta Kapoor is planning to produce a biopic, via her on-demand video streaming service Alt Balaji, on former Indian cricketer and captain Sourav Ganguly.
"I have had a few discussions with Balaji, though nothing is final yet.
Summary:
Akshay Kumar was slammed after he deleted a tweet from 2012 on rising petrol prices.
Akshay had tweeted, "I think it's time to clean up your bicycles and hit the road!" The tweet was deleted after a user 'Unofficial Sususwamy' retweeted Akshay's tweet and wrote, "Akshay Sir, Big Fan!
Summary:
Though Madhuri also played a courtesan in the 2002 film 'Devdas', her character in 'Kalank' is said to be be very different from what she portrayed earlier.
Summary:
According to reports, Katrina Kaif and Kartik Aaryan will perform at the Indian Premier League (IPL) 2018 finale.
Kartik will perform on [songs] from 'Sonu Ke Titu Ki Sweety'.
Summary:
A video had appeared on social media, wherein Zinta appeared to say that she was 'very happy that MI didn't qualify for IPL 2018 finals'.
Summary:
SRH opener Shikhar Dhawan was dismissed for a golden duck on the very first ball of the Qualifier 1 of IPL 2018 on Tuesday.
Summary:
Rathore also shared a video of himself doing 10 push-ups.
Summary:
Biyani and Amazon CEO Jeff Bezos met earlier this year to explore a possible deal, reports added.
Summary:
Summary:
Tashi Wangchuk was detained in 2016 after he spoke in an interview about his campaign to promote the use of Tibetan language in school education.
Summary:
A 72-year-old man accused of indecent assault had his penis measured in a New Zealand courthouse using a wooden ruler.
Summary:
A man was tackled and later arrested by the police in Milwaukee, US, after he investigated a suspicious package.
Summary:
Police imposed Section 144 and used teargas after protestors indulged in stone-pelting, toppled police vehicles, and set vehicles on fire.
Summary:
Actor Hemu Adhikari, known for his cameo appearance in Rajkumar Hirani's 'Lage Raho Munna Bhai', passed away at 81 due to a lung ailment at his residence in Dadar, Mumbai on Monday.
Summary:
Kareena Kapoor said she didn't shoot for 'Veere Di Wedding' during pregnancy as there is no maternity insurance in India for films.
Summary:
Tweeting his picture with Indo-American singer and YouTuber Vidya Iyer (known as Vidya Vox), actor Hrithik Roshan wrote, "Vidya Vox is in the house!
She also shared the pictures while tweeting, "When dreams come true!"
Summary:
Shreyas Iyer, who replaced Gambhir as the captain of DD, had said that Gambhir had decided himself to sit out of playing XI.
Summary:
After Congress President Rahul Gandhi said he will become the Prime Minister if the Congress emerges as the single largest party in 2019 elections, union minister Prakash Javadekar said, "There is no ban on daydreams." "A smart tweet or big talk is not politics," he added.
Summary:
The analysis further revealed that weekly meat consumption among women is highest in Kerala while that among men is in Tripura.
Summary:
On being questioned about not revising fuel prices during Karnataka elections, Indian Oil Corporation Chairman Sanjiv Singh said, "Government has given us freedom to revise prices...we took a call." Notably, fuel prices were hiked after a 19-day hiatus on May 14, two days after the Karnataka polls.
Summary:
Six people were killed in mudslides triggered by flash floods in Tripura, government officials have said.
Summary:
An intense heatwave in Pakistan's Karachi has claimed the lives of 65 people in three days, according to Edhi Foundation, a non-profit organisation that runs the city's morgues.
Summary:
The US has threatened to impose the "strongest sanctions in history" on Iran if it does not accept several demands made by the country.
Summary:
Actor Annu Kapoor has said if content and talent were really appreciated, he'd have been a big star.
Annu further said, "There're some filmmakers who try to give content, but they've to face...
Summary:
Actress Priyanka Chopra, while sharing a picture with children from a Rohingya refugee camp, wrote, "The world needs to care.
We need to care.
Summary:
"Thanks a lot PUNE for supporting us and turning the whole stadium yellow, hope CSK entertained you," wrote Dhoni.
Summary:
DD coach Ricky Ponting has said 20-year-old wicketkeeper-batsman Rishabh Pant's brilliant form hurt Glenn Maxwell.
Summary:
Further, talking about AB de Villiers' leaping catch, Zinta said, "Is he related to superman?
Summary:
DD, who finished last in the league stage of the IPL 2018, took to Twitter to troll KXIP over their failure to qualify for the playoffs.
Summary:
Indian women's ODI captain Mithali Raj, England's Danielle Wyatt and Australian all-rounder Ellyse Perry were among the players who represented Supernovas.
Summary:
Smriti lifted an Ellyse Perry delivery in the third over towards mid-on, where Kaur leapt backward to take the catch.
Summary:
The player, whom Zlatan slapped from behind, seemed unaware of the incident.
Summary:
Bengaluru-based startup Ather Energy on Monday launched its electric vehicle (EV) charging network called 'AtherGrid' in the city.
Summary:
Astronomers have discovered that an object beyond Neptune orbits the Sun in a plane nearly perpendicular to the plane established by the known planets, which could be due to gravity from Planet Nine.
Summary:
The Army started firing in retaliation, which injured four people.
Summary:
Allahabad Mayor Abhilasha Gupta was seen travelling in Lucknow in a car which did not have the registration number on the licence plate on Monday.
Summary:
They killed her when she demanded her â¹2-lakh salary that they had withheld.
Summary:
The passengers were evacuated via emergency slides.
Summary:
Civil Aviation Secretary RN Choubey has said the government won't sell Air India stake if the bid price is inadequate.
But the transaction will happen only at the right price," he added.
Summary:
The Delhi Excise Department has clarified that playing of recorded music is not banned in the city's restro-bars and pubs.
Summary:
The sales exceeded entire Day 1 sales of OnePlus 5T within the first hour.
Summary:
India's largest lender State Bank of India's (SBI) fourth-quarter loss widened to â¹7,718 crore compared to â¹2,416 crore in the previous quarter.
Summary:
A departmental inquiry will be ordered against the accused, police said.
Summary:
Intel said that there is no evidence that the flaw is already being used by hackers.
Summary:
Amid the ongoing tussle between the Delhi government and Lieutenant Governor Anil Baijal, CM Arvind Kejriwal has asked the L-G to do something constructive instead of rejecting every government proposal.
Summary:
The Juvenile Justice Board in Gurugram has tried 38 juveniles since January 2016 as adults after amendments in the Juvenile Justice Act. While convictions have taken place in seven of the cases, trials are still on in 31.
Summary:
Family members of the accused have claimed the police wanted revenge for the trouble they had to undergo to nab him.
Summary:
The Syrian military on Monday declared that it has taken full control of the capital, Damascus, and all the areas around it, for the first time in nearly seven years.
Summary:
The five-starred red flag should be hung in a "prominent position" in the mosques' courtyards, the association said.
Summary:
Sweden has been distributing leaflets to all 48 lakh households on how to be prepared in the event of a war for the first time in nearly 60 years.
Summary:
Japan's Sony on Tuesday said it would pay about $2.3 billion to gain control of EMI Music Publishing, becoming the world's largest music publisher.
Summary:
Former Infosys CEO Vishal Sikka, who quit the company in August last year, was paid about â¹13 crore in FY18 compared to â¹16 crore the previous fiscal.
Summary:
The New York Stock Exchange (NYSE) has promoted Stacey Cunningham to President, making her the first sole woman head of the 226-year-old exchange.
Summary:
Producer Rhea Kapoor, while sharing a picture of her sister Sonam Kapoor and Kareena Kapoor from Sonam's wedding, wrote, "And they say actresses can't be friends." "Real and reel bride.
Summary:
Singer Katy Perry, while criticising Meghan Markle's wedding dress, said, "I would have done one more fitting." "I'm sorry!
Summary:
He first tweeted that everyone needs hugs followed by another tweet, in which he posted Amma's picture and wrote she has given over 32 million hugs.
"Hug life," commented a user.
Summary:
Rajeev Khandelwal, who lost his mother Vijay Laxmi Khandelwal to cancer recently, said, "She became my daughter, my baby, who I wanted to protect." "There is peace that she isn't suffering anymore...(but) I can't call anyone mummy, the way I used to," he added.
Summary:
Actor Jake Gyllenhaal will reportedly be playing the role of a villain in the upcoming sequel of superhero film 'Spider-Man: Homecoming'.
Summary:
Summary:
The BJP slammed the letter, arguing that it was wrong to "instigate communities".
Summary:
Automakers including General Motors and Ford have urged the White House to cooperate with California officials in a letter on vehicle efficiency standards, saying "climate change is real".
Summary:
After the deal, Vavian International will become a direct subsidiary of Infibeam Global which is a subsidiary of Infibeam Incorporation.
Summary:
American researchers have developed a technique that would allow them to control the growth rate of human heart cells in a dish by shining a light and varying its intensity.
Summary:
Using techniques similar to those used to search for missing Malaysia Airlines plane MH370, researchers have proposed that a founding population of 100-200 people reached Australia by boat over 50,000 years ago.
Summary:
They asked the commission to come down hard on politicians who violate the model code of conduct.
Summary:
An Australian archbishop, Philip Wilson, was found guilty on Tuesday of concealing child sex abuse by a paedophile priest, making him the most senior Catholic in the world to be convicted on such a charge.
Summary:
Summary:
Chief Ministers of the non-BJP ruled states, including West Bengal CM Mamata Banerjee and Delhi CM Arvind Kejriwal, will be attending the swearing-in ceremony of HD Kumaraswamy as Karnataka CM on Wednesday.
Summary:
Summary:
Further, the cancellation fee cannot be more than the base fare, according to the government's draft passenger charter.
Summary:
Japanese conglomerate SoftBank has agreed to sell its entire 21% stake in Indian e-commerce startup Flipkart to US-based retail giant Walmart, according to reports.
Summary:
"The baby was born with a fish-like body and had its hands spread like fins.
Summary:
Talking about recent cases of Nipah virus in Kerala, state Health Minister KK Shailaja has said, "There's no need to panic.
Summary:
President Kovind has a bachelor's degree in commerce, an LLB from Kanpur University and earlier practised law in the Supreme Court.
Summary:
The Kerala nurse who died reportedly due to Nipah virus while treating affected victims, wrote a note to her husband, stating, "Am almost on the way.
Summary:
The peon had raped the girls in the school bathroom and handed one of them â¹50 to keep quiet, which the police seized as evidence.
Summary:
A family court in Pune recently observed that babysitting is not the duty of grandparents and they should not be asked to compromise on their relaxation, entertainment and travel plans.
Summary:
This comes after Trump said he'll officially demand the DOJ to probe whether the FBI had "infiltrated" or "surveilled" the presidential campaign.
Summary:
US President Donald Trump is willing to walk away from the planned summit with North Korean leader Kim Jong-un scheduled to take place on June 12 in Sinagpore, Vice President Mike Pence said on Monday.
Summary:
Trump's remarks come after China said it would "significantly increase" purchases from the US.
Summary:
The first shipload of 2 million barrels of crude oil sent by Abu Dhabi National Oil Company (ADNOC) has reached the strategic petroleum reserve at Karnataka's Mangaluru on Monday.
Summary:
The CBI chargesheet has revealed that two overseas suppliers, to whom fraudulent Letters of Undertaking (LoU) were issued, were controlled by Nirav Modi.
Summary:
Actress Tabu has joined the cast of Salman Khan and Priyanka Chopra starrer 'Bharat'.
Also starring Disha Patani, 'Bharat' is scheduled for an Eid 2019 release.
Summary:
In the video shared by IPL's official account, Kohli added, "It's more like a teaser or trailer for that particular league [women's T20 league]."
Summary:
The BCCI Anti-Corruption Unit (ACU) has warned Delhi Daredevils after they invited some cheerleaders to a celebrity golf tournament dinner in Gurugram on the eve of their match against Chennai Super Kings in IPL 2018.
Summary:
Founded in 2013, Zunum Aero makes aircraft designed for regional transit and is backed by Boeing.
Summary:
The Brihanmumbai Municipal Corporation (BMC) has collected around 120 tonnes of plastic after the Maharashtra government announced a statewide plastic ban in March this year.
Summary:
Samajwadi Party President Akhilesh Yadav has reportedly asked the Uttar Pradesh government for two years to vacate his government bungalow, days after the Supreme Court ordered all former CMs to vacate their official accommodations.
Summary:
Kerala Police on Saturday arrested a 27-year-old law student, dubbed as the 'naked thief', who would strip down before breaking into a house and wear his underwear over his head to avoid being identified.
Summary:
He came in contact with a LeT recruiter and subsequently received arms training at a military camp, he revealed to intelligence agencies.
Summary:
The Delhi Metro Rail Corporation on Monday announced that the remaining part of the Magenta line will open to public on May 29.
Summary:
However, SGX said it would list new Indian equity derivative products in June.
Summary:
In a world filled with predictable formats to success, only a visionary leader creates impact and leaves a mark of greatness.
Summary:
The first trailer of 'Mowgli', which is an adaptation of 'The Jungle Book', has been released.
Directed by Andy Serkis, 'Mowgli' is scheduled to release on October 19.
Summary:
BJP leader and former Karnataka CM BS Yeddyurappa on Tuesday wrote to the Election Commission alleging "grave irregularities" in the conduct of Assembly elections in the state.
Summary:
Google is being sued by the high court for allegedly tracking and collecting personal information of 4.4 million iPhone users in the UK.
Summary:
Facebook CEO Mark Zuckerberg's testimony to the EU Parliament over the data scandal around the social media major will be broadcasted live, parliamentary officials and the company said on Monday.
Summary:
She claimed men at Uber openly discussed who they wanted to have sex with and made inappropriate comments about her appearance.
Summary:
"Just setting up an experiment of this magnitude would take a researcher all day, while the robot can do it in 20 minutes," said a scientist.
Summary:
Karnataka Chief Electoral Officer Sanjiv Kumar has clarified that the eight VVPAT carrying cases found in a shed in Vijayapura did not belong to the district or state Election Commission.
Summary:
An 8-month-old infant, who was sleeping with his family outside their home, was killed after being hit by a bullet during ceasefire violation by Pakistan in J&K's Pallanwala sector along the LoC.
Summary:
Born on May 22, 1772 in a Bengali-Brahmin family, social reformer Raja Ram Mohan Roy is known as the 'Maker of Modern India' and 'Father of Indian Renaissance'.
Summary:
A nurse who was treating a Nipah virus victim in Kerala's Kozhikode died of the infection on Monday.
Summary:
Indian-origin lawyer and politician Gobind Singh Deo became Malaysia's first minister from the Sikh community after he was handed the communications and multimedia portfolio in the Malaysian cabinet on Tuesday.
Summary:
The CBI chargesheet has alleged that former PNB MD Usha Ananthasubramanian used to meet with Nirav Modi and his top officials in order to continue credit facilities.
Summary:
The first chargesheet deals with â¹456.63 crore loan of Bank of Baroda as the investigation into the remaining amount was still continuing, officials said.
Summary:
Singer Diljit Dosanjh paid a tribute to Prince Harry and his wife Meghan Markle during his concert in Birmingham, UK.
Summary:
England's Danielle Wyatt, who had proposed to Virat Kohli on Twitter, posted a video of herself enjoying a Punjabi song alongside India's Harmanpreet Kaur and Veda Krishnamurthy, her teammates for today's one-off women's T20 exhibition match.
Summary:
According to reports, Kolkata Knight Riders' cheerleaders are the highest paid of all the franchises in IPL.
Summary:
Karnataka Congress MLA DK Shivakumar has said the alliance with JD(S) was "very, very hard" and hurt the Congress workers since they fought like warriors in the elections and now have to "sail together".
Summary:
Chennai Super Kings captain MS Dhoni distributed â¹20,000 cheques and awards to the ground staff of his side's adopted home ground in Pune.
Summary:
Taking a dig at the NDA-led Centre in his editorial, Congress MP Kapil Sibal wrote, "Governors are playing to the tune of the Pied Piper in New Delhi.
Summary:
Stating that cellphones and Internet were the reasons behind increasing rape incidents, Samajwadi Party General Secretary Ramashankar Vidyarthi has said, "Minor boys and girls should be barred from using mobile phones and Internet".
Summary:
Gurugram-based grocery delivery startup Milkbasket has raised around â¹47 crore in a Series A funding round led by early-stage investment firm Kalaari Capital.
Summary:
The world's largest amphibians, six-foot-long Chinese giant salamanders face imminent extinction due to illegal poaching and hunting as a luxury food, researchers have warned.
Summary:
After union minister Ravi Shankar Prasad posted a picture from an interactive programme with village women who set up a sanitary pad manufacturing unit, a user asked, "Is this a puzzle?
Summary:
Home Minister Rajnath Singh on Monday said that a special force called 'Black Panther' has been set up by the Chhattisgarh Police to counter the Maoists in Bastar.
Summary:
Summary:
Dooley reportedly handed over the knife to the security staff voluntarily.
Summary:
The official website of Jamia Millia Islamia University was hacked in the early hours of Tuesday with a message "Happy Birthday POOJA" and "Your LOVE" written at the bottom.
Summary:
A baby was born for the first time in 12 years on the Brazilian island of Fernando de Noronha, where births are banned because the island doesn't have a maternity ward.
Summary:
Former US President Barack Obama and his wife Michelle Obama have signed a multi-year deal to produce films and series for Netflix.
Summary:
The users can access the feature by tapping on the arrow while in driving navigation mode to select their vehicle of choice.
Summary:
In a first, astronomers have discovered an asteroid near Jupiter which has been a part of our solar system for 4.5 billion years, since the end of planet formation.
Summary:
Arunachal Pradesh's first commercial flight landed at Pasighat Advanced Landing Ground in East Siang district on Monday.
Summary:
External Affairs Minister Sushma Swaraj on Monday said she was saddened when US President Donald Trump said his slogan was 'Me First' during a speech last year.
Summary:
The government has given its approval to a female Maharashtra Police Constable to undergo a sex-change operation.
Summary:
Sri Lanka President Maithripala Sirisena has warned that Tamil extremists were regrouping abroad to revive their demand to divide the country.
Summary:
China's State Council has commissioned a research to understand the repercussions of ending birth limits and plans to end the policy by 2019, reports said.
Summary:
None of your business," from their upcoming film 'Race 3' while slamming trolls who mocked Daisy over the dialogue.
Daisy can be seen delivering the dialogue in the film's trailer.
Summary:
Speaking about his film 'Bhavesh Joshi Superhero' clashing with his sister Sonam Kapoor's 'Veere Di Wedding', Harshvardhan Kapoor said, "It's a calculated, unemotional move." "Let's just say, Kapoors will take over that Friday," he added.
Summary:
Summary:
As per reports, Tara Sutaria, who will make her Bollywood debut with 'Student of the Year 2', will star opposite Shahid Kapoor in the remake of the Telugu film 'Arjun Reddy'.
Summary:
KXIP owner Preity Zinta on Monday took to Twitter to apologise to the fans of the team for failing to qualify for the IPL 2018 playoffs.
Summary:
After his meeting with Congress leaders Sonia and Rahul Gandhi in Delhi on Monday, Karnataka CM-designate HD Kumaraswamy said, "I wanted to show my respect and regards to Gandhi family." He added he has invited them to his swearing-in ceremony which is scheduled for Wednesday.
Summary:
The umpire deemed it as not out after CSK made a half-hearted appeal but Gayle walked off.
Summary:
Sharma registered five single-digit scores this season, including three ducks.
Summary:
Chennai Super Kings all-rounder Shane Watson has said that captain MS Dhoni's "feel and intuition for the game" is rare.
Summary:
On being asked about the proposed abolition of the coin toss in Test cricket, former Indian captain Sourav Ganguly said that personally he is not in favour of scrapping the coin toss.
Summary:
Ahead of the upcoming FIFA World Cup in Russia, Iran has unveiled seven World Cup-themed Persian carpets and rugs, to be gifted to football bodies and opponents in the tournament.
Summary:
The Iceland cricket team's Twitter account requested BJP President Amit Shah to perform the traditional Viking thunder clap.
We don't know Who you are..
But we know We love you..
Summary:
Summary:
Flipkart-owned fashion retailer Myntra's losses have reduced by 25% to â¹655 crore in the fiscal year 2017 as compared to â¹823 crore in the previous financial year.
Summary:
The J&K Police has booked a Twitter user for spreading fake news that five CRPF personnel were killed during the government's ceasefire between security forces and militants during Ramadan.
Summary:
A US court has convicted an Indian-origin student after he admitted to stealing professors' computer passwords using a keystroke logger to change his grades from F's to A's.
Summary:
In addition to the visa applications, 50 people are believed to be staying in the country unlawfully.
Summary:
Riva sustained injuries as a result of the assault, police added.
Summary:
Summary:
The auction house will now sell only the pant, shirt and hat of the costume which was earlier being auctioned as an "actual uniform".
Summary:
The official pictures from Prince Harry and Meghan Markle's royal wedding have been released.
Summary:
The 20-year-old finished as the highest run-scorer in the league stage of IPL 2018.
Summary:
A video showing BJP leader Lal Singh's brother Choudhary Rajinder using abusive language against Jammu and Kashmir CM Mehbooba Mufti during a rally in Kathua has surfaced online.
Summary:
A woman was forced to walk around a village wearing a garland of shoes by Trinamool Congress (TMC) activists in West Bengal allegedly for protesting against the party during panchayat elections.
Summary:
A Gurugram court on Monday dismissed a plea challenging the Juvenile Justice Board's decision to try a 16-year-old as an adult over the murder of a 7-year-old school boy.
Summary:
The official gift bags given to commoners who attended the Royal wedding of UK's Prince Harry to actress Megan Markle have been listed for sale online with bids crossing â¹18 lakh.
Summary:
The United Kingdom has listed Pakistan, along with Nigeria and Russia, as the top three sources of money laundering to the country.
Summary:
Pakistan has blocked the distribution of 'Dawn' newspapers for publishing former PM Nawaz Sharif's remarks on 26/11 Mumbai attacks, according to a media watchdog.
Summary:
The United Arab Emirates Cabinet has approved a plan to allow foreign investors to own 100% of UAE-based businesses by end of 2018.
Summary:
We are great friends." Sonam and Kareena are starring together in Rhea's upcoming production 'Veere Di Wedding'.
Summary:
The first look of Rishi Kapoor and Taapsee Pannu from the film 'Mulk' has been revealed.
Summary:
Shaw casually walked towards the crease and was caught outside as ball hit the stumps.
Summary:
Chennai Super Kings' South African pacer Lungi Ngidi has revealed that backing from captain MS Dhoni helped him deal with his father's death.
Summary:
Yeddyurappa has condoled his death and is likely to visit his family.
Summary:
Czech motorbike racer Jakub Kornfeil escaped a high-speed crash by using rival Enea Bastianini's crashed bike as a ramp and jumping over it during the Moto3 at Le Mans.
Summary:
Sachin Tendulkar dismissed Pakistan's Saeed Anwar on 194, six runs short of what would have been ODI cricket's first double ton on May 21, 1997.
Summary:
Former WWE wrestler Tom Magee was beaten by as many as six young men in a dispute over a car parking spot.
Summary:
On May 21, 2011, a cricket match between South Wiltshire and Hampshire Academy at Rose Bowl in Hampshire was interrupted for 20 minutes after members of the public reported sighting a white tiger in a field nearby.
Summary:
The Supreme Court has imposed â¹1 lakh as fine on Google, Facebook, Yahoo, Microsoft, and WhatsApp among others for failing to submit steps taken by them to block videos of sexual abuse on their platforms.
Summary:
The National Human Rights Commission (NHRC) on Monday issued a notice to the Uttar Pradesh government following the death of at least 11 people who consumed spurious alcohol.
Summary:
After Catalonia's newly elected leader Quim Torra nominated his Cabinet, Spain's Prime Minister Mariano Rajoy reportedly plans to retain control over the region.
Summary:
A survivor of clerical sexual abuse has revealed that Pope Francis had told him, "That you are gay does not matter.
Summary:
A 20-year-old Indian student has died after falling off rocks into the ocean while trying to take a selfie at a tourist attraction in Australia.
Summary:
The attached assets include four properties owned by Nirav's firms in Mumbai and Surat worth â¹72 crore.
Summary:
The first all-woman Indian Navy crew took 252 days to sail across the globe and was welcomed in Goa by Defence Minister Nirmala Sitharaman on Monday.
Summary:
'Shape of You' singer Ed Sheeran won Top Artist and Top Male Artist awards while American singer-songwriter Taylor Swift has won the Top Female Artist award at this year's Billboard Music Awards.
Summary:
Summary:
Denying rumours about daughter Neha Dhupia being pregnant before marriage, her father Pradip Dhupia said, "People will keep talking about things and spread rumours as per their wish." He added, "Since the two got married early, people are thinking otherwise.
Summary:
Sharing her picture from class 1, actress Aishwarya Rai Bachchan wrote, "Grade 1...
Summary:
The farther hemisphere of the Moon is never directly visible from the Earth.
Summary:
Former BJP MP Tarun Vijay was slammed for his tweet on Ramadan wherein he wrote, "Our world and your Ramadan must connect essentially with glory of our nation.
Summary:
BSP supremo Mayawati has reportedly turned her government bungalow into a memorial for her mentor Kanshi Ram, after the Supreme Court ordered former Uttar Pradesh CMs to vacate their government accommodations.
Summary:
India on Monday successfully test-fired the BrahMos missile to validate life extension technologies developed for the first time in the country.
Summary:
A pilot who once flew the Boeing 737 passenger plane which crashed in Cuba has claimed that he had lodged a complaint regarding the poor maintenance of the aircraft.
Summary:
Talking about her future in the film industry, Taapsee Pannu said, "My box office success will tell me when I will be quitting." She added that she is a moody person and does not know when she will quit Bollywood.
Summary:
#blessher." "Her reaction...sums up the passion that every supporter has for the team," another user tweeted.
Summary:
Summary:
KXIP owner Preity Zinta took to Twitter to offer a clarification for the video in which she seems to say that she is "just happy that Mumbai are not going to the finals".
Summary:
CSK captain MS Dhoni was convinced by 22-year-old South African pacer Lungi Ngidi to take a review, after claiming he didn't hear any nick off KXIP captain Ravichandran Ashwin's bat.
Summary:
CSK captain MS Dhoni has revealed that he promoted lower-order batsmen Harbhajan Singh and Deepak Chahar up the batting order to create "chaos" for KXIP bowlers on Sunday.
Summary:
Rafael Nadal on Sunday defeated world number three Alexander Zverev to win his eighth Italian Open title and 78th career singles title.
Summary:
SpaceX CEO Elon Musk has shared a photo of the company's Crew Dragon spacecraft designed to carry humans to space.
Summary:
Talking about improvement in revenue margins, Gurugram-based automobile marketplace Droom's Founder and CEO Sandeep Aggarwal said, "We are less than a year away from turning fully profitable." Aggarwal also said the investments are growing faster than net revenue as he has "not stopped investing in new areas yet".
Summary:
Bengaluru-based video creation platform Rocketium has raised â¹2 crore in a seed round from early-stage venture capital firm Blume Ventures.
Summary:
The quantum dots measure around 10 nanometres in size.
Summary:
PM Narendra Modi on Monday reached Russia's Sochi for an informal summit with President Vladimir Putin, a month after holding talks in a similar format with Chinese President Xi Jinping in Wuhan.
Summary:
Over 50 people fell sick after eating paani puri served by a roadside vendor in Rajasthan's Sirohi district on Saturday.
Summary:
Minister of State (MoS) in the Prime Minister's Office Jitendra Singh on Monday slammed Pakistan over ceasefire violations during Ramadan.
Summary:
It's a happy working day." Responding to her tweet, a user wrote, "Mam I'm a great fan of your dedication towards work", while another wrote, "we need more Ministers like u.
Summary:
Nobukazu Kuriki was found dead while sleeping in a camp tent at 24,278 feet on the 29,035-feet mountain.
Summary:
HMD sold around 70 million Nokia phones and generated sales of $2.1 billion in its first year 2017.
Summary:
Notably, Moulik Srivastava transitioned from American Express to Bain & company with 200% hike after taking the program.
Summary:
Some symptoms of the Nipah virus that killed 11 in Kerala are fever, headache, drowsiness, disorientation, and mental confusion.
Summary:
Summary:
Congress had alleged BJP was offering a â¹15-crore bribe to Hebbar's wife for his support.
Summary:
Barcelona legend Andrés Iniesta sat alone barefoot on the Camp Nou pitch reportedly until 1 am when the 99,354-seater stadium was empty after his last-ever match for the club on Sunday.
Summary:
Defence Production Secretary Ajay Kumar has said India will integrate Artificial Intelligence (AI) in defence forces to improve preparation for "next-generation warfare".
Summary:
A Dalit man was tied up and beaten to death allegedly on the orders of a factory owner in Gujarat's Rajkot.
Summary:
Referring to his capture, Chandu Chavan said it has now become "very taxing" for him.
Summary:
The government has proposed that those clearing the All India Civil Services Examination be allotted the service as well as the cadre or state only after the three-month foundation course.
Summary:
Summary:
A fire broke out in four coaches of Andhra Pradesh Express near Birlanagar station in Gwalior on Monday.
Summary:
Adding that the cameras were not an invasion of privacy, college Principal Dr Hem Prakash said, "Students used to hide chits in their clothes".
Summary:
In April this year, the apex court had dismissed a plea for an independent probe into the case.
Summary:
US President Donald Trump on Sunday tweeted he will officially demand that the Department of Justice probe whether the FBI had "infiltrated" or "surveilled" his presidential campaign for "political purposes".
Summary:
The transaction is part of the Birla familyâÂÂs plan to consolidate cement businesses within one company, UltraTech MD KK Maheshwari said.
Summary:
The UAE has approved steps to allow 100% foreign ownership in companies by year-end.
Summary:
The meeting was called by two institutional investors to seek the removal of four directors over their handling of Fortis' proposed sale.
Summary:
The 36-year-old started Anker with less than $1 million in seed capital after he left Google in 2011.
Summary:
Global rating agency Moody's has downgraded Punjab National Bank to 'junk' by reducing its rating to Ba1 from Baa3 after the $2-billion Nirav Modi fraud.
Summary:
Patanjali Ayurved MD Acharya Balkrishna has said that farmers can make 10 times of what they earn now if food wastage is reduced through food processing.
Summary:
Alia Bhatt, who recently turned 25, said, "I don't know if it's just because I've turned 25, but of late, I've started thinking of baby names." Revealing that baby names now seem attractive to her, she added, "Suddenly, I come across something nice and think yeh naam hona chahiye.
Summary:
Microsoft on Sunday announced the technology major has acquired the US-based conversational artificial intelligence (AI) startup Semantic Machines.
Summary:
Facebook is reportedly testing a new feature that will allow its mobile app users to directly share posts on WhatsApp. The feature which is in beta can be accessed by clicking on Facebook's 'Share' button and clicking on 'Send in WhatsApp'.
Summary:
Google is reportedly still considering its decision to acquire a minority stake in Flipkart after Walmart invested $16 billion in the homegrown e-commerce firm.
Summary:
Mumbai-based juice startup RAW Pressery has raised $10 million from existing investors Sequoia Capital, Saama Capital, and DSG Consumer Partners.
Summary:
The victim had been waiting for a bus when one of the accused, a distant relative, stopped his car and offered to drop her home, reports said.
Summary:
A 16-year-old girl, whose body parts were found in a drain in Delhi earlier this month, was murdered for demanding her monthly salary, the police said on Sunday.
Summary:
The winner of the Qualifier 2 will qualify for the final.
Summary:
According to Citi Research, Amazon India is currently worth $16 billion, which is the same amount that Walmart is investing in Flipkart in exchange for a 77% stake in the company.
Summary:
The Kerala Health Department has been put on high alert after the Nipah virus led to the death of around ten people in the state.
Summary:
The Qualifier 1 between CSK and SRH will take place on May 22.
Summary:
Kareena Kapoor Khan has said that her attitude towards movies has changed while adding, "I may say no to big-budget films." Talking about her first film after child birth 'Veere Di Wedding', Kareena said, "I could have come back...playing a titular character...
Summary:
Messi's rival Cristiano Ronaldo, who has won the award four times in the past, ended up with 26 goals in the La Liga.
Summary:
The Delhi Police has arrested an NRI man after a woman complained that he was masturbating while sitting next to her on a flight from Istanbul to Delhi.
Summary:
Summary:
During a 2004 interview, then Congress President Sonia Gandhi said, "I came to India as I was madly in love with my husband (late PM Rajiv) as he was with me.
Summary:
Flash floods in Tripura triggered by heavy rainfall forced at least 670 families to seek shelter at relief camps, West Tripura District Magistrate Sandip Mahate said.
Summary:
The woman complained of complications after the surgery and was taken to a government medical college, where a CT scan revealed the sponge inside her body.
Summary:
The Delhi Excise Department has banned 900 establishments that serve alcohol from playing recorded music, citing a rule that permits only live bands.
Summary:
The opposition leaders have called the elections "illegitimate", claiming that there were widespread irregularities including "voter-buying" and "vote-rigging".
Summary:
A video has emerged that shows a naked man in Poland jumping from the first floor of a house and landing right behind the heavily-armed police squad that is raiding the house.
Summary:
Patanjali Ayurved's Managing Director Acharya Balkrishna has said that the company accounts for around 3% of India's total food processing.
Summary:
The CBI will approach the Interpol for a Red Corner Notice against jewellers Nirav Modi and Mehul Choksi aimed at bringing them back for facing trial in the PNB fraud cases.
Summary:
India has told the World Trade Organisation that it proposes to raise duties on 20 products by up to 100% if the US doesn't roll back high tariffs on certain steel and aluminium items.
Summary:
As per reports, actor-producer Suniel Shetty and director Priyadarshan are set to make a sequel to their 2006 film 'Bhagam Bhag'.
Summary:
'Rustom' writer Vipul Rawal has filed a copyright infringement case against director Shree Narayan Singh and writer duo Siddharth-Garima of the upcoming Shahid Kapoor starrer film 'Batti Gul Meter Chalu'.
Summary:
Reacting to a question about quitting as the Delhi Daredevils captain, Gautam Gambhir said that he took the decision as it was a moral responsibility and that he would have quit the sport if he had self-doubt.
Summary:
Twitter users caught a moment from IPL's live feed that showed Kings XI Punjab owner Preity Zinta apparently saying that she is just happy that Mumbai Indians did not qualify for the playoffs.
Summary:
Slamming Congress chief Rahul Gandhi for celebrating BS Yeddyurappa's resignation as Karnataka CM, BJP President Amit Shah on Saturday claimed that Rahul's new theory is to see his party's defeat as a victory.
Summary:
Tesla has released some of its source code for the technology used in its cars including Autopilot and infotainment system.
Summary:
TeenSafe, a mobile app that lets parents track their children's locations and text messages, left the data of its users exposed on the servers.
Summary:
Late PM Rajiv Gandhi worked as a professional pilot with domestic carrier Indian Airlines before becoming a politician.
Summary:
Angered by the delay of his Air India flight to Mumbai, a drunk man stabbed himself with a pen after arguing with airline officials at the Chennai airport on Sunday.
Summary:
He said the rising prices are "not in our hand".
Summary:
Playing in his 291st T20, Dhoni surpassed former Sri Lankan wicketkeeper Kumar Sangakkara's record of 142 catches in 264 T20s.
Summary:
Rishi Kapoor tweeted a video of Prince Harry and Meghan Markle's royal wedding which has been dubbed using Rishi's father late actor Raj Kapoor's dialogue.
Summary:
A week after voting for Karnataka elections ended, police on Sunday recovered covers of eight Voter Verifiable Paper Audit Trail (VVPAT) machines from the house of a labourer in Basavana Bagevadi constituency.
Summary:
The Railways has proposed serving only vegetarian meals to passengers and staff on Gandhi Jayanti, adding that the occasion will be celebrated as a "vegetarian day" for the next three years.
Summary:
"It is the Congress which has bought off the entire stable," he said while rubbishing charges of horse-trading by BJP.
Summary:
Around 6,000 children from Madhya Pradesh's Chhindwara district have deposited â¹1 crore in their 'piggy bank' saving accounts since the launch of the state Arunodaya Gullak Yojana in 2007, officials have said.
Summary:
More than two children were raped in the national capital every day between January and April 2018, with a total 282 such cases being reported, Delhi Police data has revealed.
Summary:
As many as 1.9 billion people around the globe watched on television the wedding of UK's Prince Harry with former American actress Meghan Markle at St George's Chapel in Windsor Castle, according to media reports.
Summary:
This is Congo's ninth Ebola outbreak since 1976, when the disease was first identified.
Summary:
According to reports, Ali Fazal and his girlfriend Richa Chadha will be starring together in a yet-to-be-titled film and will begin shooting for it in September.
Summary:
Summary:
A video shows Madhuri Dixit Nene dancing to the song 'Lo Chali Main' with her 'Hum Aapke Hain Koun..!' co-star Renuka Shahane.
Summary:
Bollywood actress Madhuri Dixit posted a picture with Sunil Gavaskar with the caption, "What a lovely birthday surprise this was!
Summary:
In a dig at the alleged photoshopped cover of Vanity Fair, the cover of GQ magazine's comedy issue features extra photoshopped hands and legs of actresses Kate McKinnon, Issa Rae and Sarah Silverman.
Summary:
Rajkumar Hirani confirmed that he has planned to make the third instalment in the 'Munna Bhai' franchise.
"We wanted to do the third 'Munna Bhai' film and even wrote a lot of it," said Hirani.
Summary:
Actress Jennifer Aniston is set to portray the fictional role of the first lesbian US President in an upcoming film 'First Ladies'.
Summary:
Ex-Bigg Boss contestant Sofia Hayat, who announced her separation from her husband Vlad Stanescu, said, "I am thinking of selling my engagement ring Vlad bought for me.
Summary:
Anupam Kher, who portrays former Prime Minister Dr Manmohan Singh in the upcoming film 'The Accidental Prime Minister', said, "He is the most visible person and...
Summary:
Bottom-placed Delhi Daredevils, who are already out of contention for a place in the IPL 2018 playoffs, registered an 11-run victory over defending champions Mumbai Indians to eliminate them from the playoffs race on Sunday.
Summary:
DD's Glenn Maxwell and Trent Boult combined to pull off a relay catch to dismiss MI captain Rohit Sharma for 13(11) in the IPL 2018 on Sunday.
Summary:
SunRisers Hyderabad all-rounder and Bangladesh captain Shakib Al Hasan took the 'break the beard' challenge and posted a video on his Instagram account.
Summary:
A club statement confirmed no players were hurt in the incident.
Summary:
This comes after Kidambi told selector MSK Prasad that he wanted a gift from Dhoni and Prasad promised him the gift if he gets ranked world number one.
Summary:
Rajbhar was earlier slammed for claiming that Rajputs and Yadavs consume the most amount of alcohol.
Summary:
The Narcotics Control Bureau has arrested a 25-year-old Brazillian woman from Delhi airport for swallowing 106 cocaine capsules weighing over 900 grams in order to smuggle them to a Nigerian national in the national capital.
Summary:
A man from Maharashtra's Thane has alleged that the staff at Odisha's Jagannath temple snatched his gold chain on Sunday after he refused to pay "a huge amount" of money for offering prayers.
Summary:
Mumbai-based identical twins Rohan and Rahul Chembakasseril have scored the same marks, 96.5%, in ISC Class 12 examinations.
The twins, who studied at the same school and prepared for exams together, plan to pursue a career in Science.
Summary:
Team India and RCB captain Virat Kohli has said that his wife Anushka Sharma is the captain off the field as "she takes all the right decisions in life".
Summary:
Priyanka, who is Meghan's friend, wore an off-the-shoulder gown from French fashion label Christian Dior.
Summary:
Amitabh Bachchan has been felicitated with a citation by the European Union.
Summary:
Earlier, Kumaraswamy also declared that there is no rotational chief ministership arrangement with alliance partner Congress.
Summary:
Police said the children may have suffocated to death after being trapped in the box while playing.
Summary:
They have also registered cases against the victim and his companions under the Madhya Pradesh Cow Protection Act.
Summary:
Summary:
Urging people not to panic, state Health Minister KK Shailaja said the outbreak has occurred for the first time.
Summary:
Multi-millionaire Mumbai jeweller Birju Kishore Salla is the first person to be placed on India's No-Fly List for planting a fake hijack note on a Delhi-bound Jet Airways flight last year.
Summary:
Palestine's 83-year-old President Mahmoud Abbas has been admitted to a hospital for the third time in under a week.
Summary:
Harry Potter author JK Rowling trolled US President Donald Trump by comparing the photos of the royal wedding attendance to that of Trump's presidential inauguration.
Summary:
Home Ministry officials said the e-visa scheme was availed by 19 lakh tourists in 2017.
Summary:
State-owned lender PNB has refused to disclose details of the investigation or audit that led to the detection of the â¹14,000-crore scam.
Summary:
Sonu Sood, who will be portraying the villain in 'Simmba', said that his role is very challenging.
Summary:
A behind-the-scenes video from the shoot of 'Race 3' shows Salman Khan as the film's director.
Summary:
The 20-year-old is the fourth batsman to hit 100-plus boundaries in a season after Chris Gayle, Virat Kohli and David Warner.
Summary:
DD wicketkeeper-batsman Rishabh Pant slammed a one-handed six which travelled a distance of 83 metres during his 64-run knock against MI on Sunday.
Summary:
Ace Indian shuttler PV Sindhu took to Instagram to share pictures of herself supporting SunRisers Hyderabad from the Rajiv Gandhi International Stadium during their last league match against Kolkata Knight Riders on Saturday.
Summary:
Maxwell threw the ball inside before crossing the boundary as Boult completed the catch.
Summary:
The official Twitter account of the ICC used a picture of Prince Harry and Meghan Markle from the royal wedding as a reaction to RCB's AB de Villiers' one-handed leaping catch.
Summary:
Swedish professional boxer Badou Jack accidentally punched referee Ian John-Lewis during the WBC light heavyweight championship bout against Adonis Stevenson of Canada.
Summary:
The Epsom-born cricketer replaced Gareth Batty as club captain in December last year.
Summary:
The signature of a Kathua rape accused, who claimed he was giving an exam in Meerut during the time of the crime, doesn't match the signature on the attendance sheet, a forensic report has confirmed.
Summary:
An air hostess working with a private airline has accused Bihar BJP MLC Awadhesh Narain Singh's two sons of holding her captive at their father's government bungalow and attempting to sexually assault her.
Summary:
The bus skidded off the road in order to save a motorcycle-borne person, police said.
Summary:
US President Donald Trump on Saturday misspelt his wife Melania's name as "Melanie" in a tweet welcoming her back home from the hospital.
Summary:
Japanese director Hirokazu Kore-eda's 'Shoplifters' has won the Palme d'Or, the top prize at this year's Cannes Film Festival.
Summary:
During the closing ceremony at this year's Cannes Film Festival, Italian actress Asia Argento said, "In 1997, I was raped by Harvey Weinstein here at Cannes.
Summary:
Summary:
India's Olympic silver-winning shuttler PV Sindhu said that former captain MS Dhoni and current captain Virat Kohli would make for great doubles partners.
Summary:
After Karnataka CM BS Yeddyurappa resigned before the floor test, actor-turned-politician Rajinikanth said, "What happened in Karnataka yesterday was a win for democracy." He added that Governor Vajubhai Vala giving 15 days to the BJP to prove majority was "a mockery of democracy".
Summary:
Electric carmaker Tesla's CEO Elon Musk has revealed that the company's Model 3 car can go from 0-100 kmph in 3.5 seconds.
Summary:
Archeologists claim that the urn could have been part of a Bronze Age cremation ceremony.
Summary:
The petrol price on Sunday touched an all-time high of â¹76.24 per litre in Delhi, while diesel hit a fresh high of â¹67.57.
Summary:
A 37-year-old man was arrested on Friday for allegedly raping his 12-year-old daughter at a factory in Gurugram for the last six months.
Summary:
Six jawans were martyred and one was injured on Sunday in an IED blast in Chhattisgarh's Dantewada.
Summary:
The Tripura government has decided to introduce 10% reservation for women at all levels in the police department.
The state government also made written test mandatory for recruitment to ensure transparency.
Summary:
Around 20 villages in Madhya Pradesh's Satna faced a 12-hour power cut on Saturday as two high-voltage wires pass through the area where Home Minister Rajnath Singh's helicopter was scheduled to land.
Summary:
The 15th Finance Commission has ruled out injustice to any state in the allocation from the pool of central revenue.
Summary:
A video showing people showering notes worth an estimated â¹50 lakh on bhajan singers at an event in Valsad in Gujarat has surfaced online.
Summary:
This comes after the BSF fired a rocket which destroyed a Pakistani bunker and killed a trooper, in retaliation to Pakistan's unprovoked firing.
Summary:
A video showing BJP MLA Harshvardhan Bajpai telling a policeman in Uttar Pradesh's Allahabad, "Tum laaton ke bhoot ho, laaton se hi mante ho" has surfaced online.
Summary:
For delay in filing Tax Deducted at Source (TDS) statement, entities have to pay a fine of â¹200 for each day of default.
Summary:
JD(S) leader and Karnataka CM-designate HD Kumaraswamy has clarified there is no rotational chief ministership arrangement with alliance partner Congress.
Summary:
Earlier, Congress President Rahul Gandhi alleged PM Modi had authorised the "purchasing of MLAs in Karnataka".
Summary:
Madrid coach Zinedine Zidane gave his son Luca his first start in the match.
Summary:
Technology giant Google along with Taiwanese manufacturer Quanta is reportedly working on a standalone augmented reality (AR) headset, codenamed "Google A65".
Summary:
In light of Tesla Model 3 production delays, proxy advisory firm Institutional Shareholder Services has proposed to split the company's Chairman and CEO roles, currently occupied by Elon Musk.
Summary:
The company also revealed its losses reduced to â¹305 crore from â¹534 crore for the same period, as per filings.
Summary:
She said it was Musk who pointed out "my working nickname (c) actually rox".
Summary:
The son of the man who died after being hit by Navjot Singh Sidhu in 1988 road rage case said he was disappointed with the Supreme Court order acquitting the Congress minister of culpable homicide.
Summary:
BJP General Secretary Ram Madhav has said the NDA government will go to any extent to punish those guilty in the 1984 anti-Sikh riots.
Summary:
Markets regulator SEBI will consider penal action against PNB and Mehul Choksi's Gitanjali Gems after the completion of its investigation into suspected disclosure and trading related issues, officials said.
Summary:
A Mumbai man, who created a hijack scare on a Jet Airways flight last year, has become the first to be put on India's No-Fly List for disruptive passengers.
Summary:
Summary:
The term reportedly appeared for the first time online in 2008, meaning "maybe yes and maybe no".
Summary:
After BJP failed to form the government in Karnataka, Goa Congress spokesperson Yatish Naik said that BJP should resign from Goa and other states where it had "stolen" a majority if it had any "shame".
Summary:
Following BJP's failure to form the government in Karnataka, Congress leader Sanjay Nirupam said that people would name their dogs after state Governor Vajubhai Vala after he established "a new record of loyalty".
Summary:
JD(S) leader HD Kumaraswamy, who would be taking oath as Karnataka CM on Wednesday, is also a film producer and distributor.
Summary:
"So, I have Facebook asking for root access, as soon as I open an 'Instant Article'," a user said.
Summary:
Google has reportedly confirmed that its "Duplex" system which mimics a human voice will tell users that the call is being recorded while booking appointments online.
Summary:
A government-run ayurveda hospital in Punjab's Ludhiana will inject goat blood in Thalassaemia patients to ensure that their haemoglobin levels do not drop, medical officers have said.
Summary:
A man hailing from Punjab's Kapurthala travelled over 10,000 km across 11 nations, including Mexico, Brazil, and Peru, in over a month to illegally enter the US in 2016.
Summary:
Dharmshaktu led an expedition team of 25 people and had left the second base camp of the peak on Thursday for the climb.
Summary:
The US sparked possibility of the trade war by imposing tariffs on $60-billion worth Chinese imports.
Summary:
The government is planning to open up restricted areas of Arunachal Pradesh and Sikkim for foreign tourists, Tourism Minister KJ Alphons has said.
Summary:
BJP MLA Kuldeep Singh Sengar, accused of raping a girl in Unnao last year, has been booked by the CBI for allegedly framing the rape victim's father in a false case of possessing illegal firearms.
Summary:
The US has repeatedly accused China of helping North Korea by means of trade and evading sanctions.
Summary:
China has agreed to "significantly increase" its purchase of goods from the US in an attempt to reduce the latter's $375-billion trade deficit, a joint statement issued by the two countries said.
Summary:
South Korea's fourth-largest conglomerate LG Group has said its Chairman Koo Bon-moo passed away at the age of 73 on Sunday due to illness.
Summary:
Summary:
"Very happy cant sleep now!!", part of SRK's tweet read.
Summary:
Talking about her struggle with bipolar disorder, Shama Sikander said, "I don't even know how I survived!
Summary:
SunRisers Hyderabad's Manish Pandey sprinted along the boundary and took a self-relay catch at the rope in his side's match against the Kolkata Knight Riders on Saturday.
Summary:
Italy's legendary goalkeeper Gianluigi Buffon ended his career at Juventus with a win and his ninth Serie A title with the club, after playing 17 years and keeping goal for the Turin club in 656 matches across all competitions.
Summary:
The flaw discovered by Robert Xiao said that it could have been used to track anyone.
Summary:
Addressing a gathering in J&K on Saturday, Prime Minister Narendra Modi said, "Every stone or weapon picked up by misguided youth injures their own." Adding that the youth will have to join the Indian mainstream, PM Modi said, "You will have to come out of this atmosphere.
Summary:
Israel has built a "missile net" along its border with Jordan to defend a new airport from strikes, military officials said.
Summary:
The government has begun the search process for the next chairperson of Competition Commission of India (CCI) after DK Sikri's tenure ends in July.
Summary:
The GST department has arrested two persons in Mumbai for alleged service tax and GST fraud of â¹127 crore.
Summary:
JD(S) has announced that HD Kumaraswamy will be sworn-in as Karnataka's Chief Minister on May 23.
Summary:
This is the third straight time that KKR have qualified for the IPL playoffs.
Summary:
Chelsea on Saturday defeated Manchester United 1-0 in the 2017/18 FA Cup final to win the title for the eighth time.
Summary:
Former actress Meghan Markle's 16-foot-long veil represented all Commonwealth nations, featuring distinctive flowers of the 53 nations.
Summary:
Even as Yeddyurappa resigned as Karnataka CM hours before a floor test, Atal Bihari Vajpayee had resigned similarly at national level in 1996.
Summary:
Former Congress leader Jagdambika Pal served as Uttar Pradesh CM for one day in 1998, making him the shortest-serving Indian CM.
Summary:
Indian Premier League 2018's most expensive overseas player Ben Stokes, who was bought by Rajasthan Royals for â¹12.5 crore, scored 196 runs in 13 innings, with his each run costing â¹6.37 lakh.
Summary:
The record of most sixes in a single edition of the Indian Premier League was overtaken in the 51st match of the IPL-11 between RCB and SRH, wherein 24 sixes were smashed.
Summary:
Congress leader Sanjay Nirupam on Saturday said Indians will probably name their dogs after Karnataka Governor Vajubhai Vala, adding that Vala has established a record in being loyal.
Summary:
Shivangi Pathak, a 16-year-old girl from Haryana, has become the youngest Indian woman to climb the world's highest mountain, Mount Everest, from Nepal side.
Summary:
Former UEFA chief and World Cup 1998 organiser, France's Michel Platini has admitted that the draw for the 1998 World Cup was rigged so that France and Brazil could not meet until the final.
Summary:
IIT Kanpur, which is conducting JEE (Advanced) on May 20, has advised students to appear for the exam wearing open footwear like slippers (chappals), sandals and avoid wearing long-sleeved and big-buttoned clothes.
Summary:
Officials at Uttar Pradesh's Babasaheb Bhimrao Ambedkar University have revealed that students wrote religious songs, Hanuman Chalisa and personal messages among other kinds of responses in their final exam answer sheets.
Summary:
Actress Neha Dhupia has slammed a troll who mocked her on Instagram for marrying Angad Bedi who is two years younger to her.
Summary:
The car driver fled soon after the accident.
Summary:
After BJP refused to face the floor test in Karnataka, BSP Supremo Mayawati said, "What they (BJP) had been planning all along for 2019 has failed, they will now have to rethink and alter their strategies." Meanwhile, Delhi CM Arvind Kejriwal claimed that "BJP's attempts to subvert democracy miserably failed".
Summary:
Reacting to RCB crashing out of IPL 2018, a user tweeted, "Adios, RCB...You are officially the South Africa of IPL." Other tweets read, "Somethings never change," and, "It's high time RCB management thinks beyond @imVkohli, 11 Seasons and 0 Titles." "RCB's not a club.
Summary:
SunRisers Hyderabad's Afghan spinner Rashid Khan took to Twitter to share a picture of himself with Royal Challengers Bangalore captain Virat Kohli after their match in Bengaluru.
Summary:
Gowtham, who also circled the ball, saw Samson fumble and dived to his right to claim the relay catch with one hand.
Summary:
Pakistan's Mohammad Hafeez slammed the ICC for its rules on suspect illegal bowling actions, following which he was handed a show-cause notice for his comments by the Pakistan Cricket Board.
Summary:
Nigerian students in the town of Ayetoro were tied to makeshift crucifixes and flogged with horsewhips for reportedly coming late to school.
Summary:
The US has imposed 25% tariff on steel and 10% tariff on aluminium imported from all countries except Canada and Mexico.
Summary:
Adams was involved in a custody dispute over her son with her estranged husband.
Summary:
RBI Governor Urjit Patel skipped a scheduled meeting with Parliamentary Standing Committee on Finance citing 'prior appointment'.
Summary:
He said some staff used bank funds or their own money to illegitimately activate the accounts.
Summary:
Russian tennis star Maria Sharapova has demanded special seeding for her 23 Grand Slam-winning American rival Serena Williams, who is currently ranked 454th in the world.
Summary:
Spain's national team football captain Sergio Ramos has released his maiden song ahead of the World Cup 2018 in Russia.
My life in a song...
Summary:
JD(S) leader HD Kumaraswamy has announced that Governor Vajubhai Vala invited the JD(S)-Congress post-poll alliance to form the Karnataka government, adding that he will be sworn in as the Chief Minister on Monday.
Summary:
Minutes after Karnataka CM Yeddyurappa's resignation, Congress President Rahul Gandhi said PM Narendra Modi is not fighting corruption but "he is corruption himself".
Summary:
UK's Prince Harry married actress Meghan Markle on May 19, the same date his ancestor King Henry VIII had his wife Anne Boleyn executed on the charges of adultery, incest and plotting his murder.
Summary:
Greeting actress Meghan Markle at the altar of St George's Chapel on Saturday, UK's Prince Harry apparently said, "You look amazing.
I'm so lucky." Harry further thanked his father Prince Charles for accompanying Meghan down the aisle.
Summary:
Rajasthan Royals on Saturday registered a 30-run victory over Royal Challengers Bangalore to eliminate them from the IPL 2018 playoffs race.
Summary:
Karnataka Governor Vajubhai Vala is likely to invite the Congress-JD(S) post-poll alliance, which secured a total of 115 seats, to form the government after CM BS Yeddyurappa resigned ahead of the floor test.
Summary:
After BS Yeddyurappa resigned as Karnataka CM ahead of floor test, former CM Siddaramaiah tweeted, "Democracy has won in Karnataka.
Summary:
Resigning as the Karnataka Chief Minister 55 hours after assuming office, BS Yeddyurappa said the BJP will win all 28 seats in the state in the 2019 Lok Sabha elections.
Summary:
The UN Human Rights Council on Friday voted to probe allegations of war crimes committed by Israeli forces after 60 Palestinians were killed in clashes near the Gaza border on Monday.
Summary:
The researchers, who studied Hitler's teeth and dentures, said that he died from taking cyanide and a bullet.
Summary:
Stanford produced 74 billionaires, MIT has 38 billionaire alumni and Yale has produced 31 billionaires.
Summary:
Actor and television host Maniesh Paul, while talking about his equation with Salman Khan, said, "He's more of a family to me rather than an opportunity, I have never looked at him as one." "I have never explored my connections.
Summary:
Summary:
Hollywood actor George Clooney and his wife Amal Clooney and American television host Oprah Winfrey also attended the wedding.
Summary:
After Google CEO Sundar Pichai praised Virat Kohli and AB De Villiers for their 118-run partnership against Delhi Daredevils, RCB captain tweeted, "Thank you @sundarpichai!
Summary:
The court was hearing the Congress-JD(S)'s petition on the first day of it's summer vacation.
Summary:
Harvey was trolled by social media users over the voice note.
Summary:
IPL auctioneer Richard Madley has said Chris Gayle going unsold twice at the IPL 2018 auction was one of the biggest surprises.
Summary:
The official Twitter account of CSK shared a picture of a fan holding a banner that read "Today I missed my date, just to see my mate #MSD # MahendraBahubali #MahiMaarRahaHai".
Hope your date doesn't spot you on the TV tonight...or perhaps this tweet," CSK captioned the picture.
Summary:
The cat sprinted across the court mid-point during the second set when Marcelo Melo pulled off an overhead smash winner which almost hit it.
Summary:
Bender, who had taken up golf at the age of 28, announced his retirement following the round.
Summary:
Plastic pebbles, thought to originate from plastic bottles melting after being thrown into beach bonfires or barbecues have been reported across the US, UK, Spain and Portugal.
Summary:
Mumbai's Dabbawalas may soon start delivering parcels and couriers in addition to their current job of delivering tiffins in the city.
Summary:
The Railway Board has stopped supply of 'Rail Neer' bottled water at Rail Bhavan headquarters and asked officials to either bring water from home or drink water of RO plants.
Summary:
Five Nigerien troops and four US special forces operatives were killed in the ambush.
Summary:
Apple Co-founder Steve Wozniak has said that blockchain-based decentralised apps platform Ethereum "interests (him) because it can do things and because it's a platform".
Summary:
JSW Group MD Sajjan Jindal has congratulated Tata Group Chairman Emeritus Ratan Tata and senior officials on the successful acquisition of Bhushan Steel.
Summary:
UK's Prince Harry, who is sixth-in-line to the British throne, got married to American actress Meghan Markle today in a royal wedding held at St George's Chapel in Windsor Castle.
Summary:
He is heading to Governor Vajubha Vala's residence to submit his resignation.
Summary:
Tiny plastics have been detected at Point Nemo, which is nearly 2,700 km from the nearest inhabited land.
Summary:
A Macallan single malt was sold for a record â¹7.4 crore at an Hong Kong-based auction hours after another bottle from the same collection went for â¹6.9 crore at the same auction.
Summary:
Priyanka Chopra arrived for the royal wedding of UK's Prince Harry and Meghan Markle at Windsor Castle.
Summary:
Ahead of the floor test in the Karnataka Assembly, Congress has released purported taped conversations of CM BS Yeddyurappa trying to poach Congress MLA BC Patil into voting for BJP.
Summary:
Congress leader DK Shivakumar has claimed Karnataka CM BS Yeddyurappa will resign ahead of the trust motion, scheduled for 4 pm today.
Summary:
RJD chief Lalu Prasad Yadav was on Saturday admitted to a government-run hospital in Patna after he complained of breathing problem and chest pain, party leader Bhola Yadav said.
Summary:
India Emerging Twenty, launched by the Mayor of London Sadiq Khan, has selected 20 of India's "most innovative and high-growth companies" to help them expand business in London.
Summary:
"There is no necessary linkage between oil prices and level of growth.
We'll see strong growth despite elevated oil prices," he added.
Summary:
Nepal's two major left-wing parties, the ruling Communist Party of Nepal (United Marxist Leninist) and Communist Party of Nepal (Maoist Centre) merged on Thursday to form the biggest left party of the Himalayan nation.
Summary:
Johanna Giselhall Sandstrom, a 30-year-old mother from Sweden, changed her son's name after a tattoo artist misspelled it on her arm.
The artist tattooed 'Kelvin' instead of 'Kevin'.
Summary:
Fraud-accused jeweller Nirav Modi is currently in London on a Singaporean passport while his brother Nishal Modi is in Antwerp on a Belgian passport, according to reports.
Summary:
Alia Bhatt, while talking about working with Varun Dhawan in the upcoming film 'Kalank', said, "Though he is fabulous, he is troubling me as always." "Varun and I are working very hard on set," she added.
Summary:
Actor Ranveer Singh, while speaking about voicing Ryan Reynolds in the superhero film 'Deadpool 2', said, "I just wanted to give gaalis onscreen.
Summary:
Talking about casting couch in Bollywood, Alia Bhatt said, "Whenever [casting couch is] discussed...people start believing the industry is bad." "I...understand at times boys and girls have to go through bad situations in order to be able to fetch some work," she added.
Summary:
MLAs were also seen indulging in heckling during the anthem.
Summary:
Danielle, wife of Royal Challengers Bangalore batsman AB de Villiers, took to Instagram Stories to share a photoshopped picture of the cricketer taking a one-handed leaping catch against SunRisers Hyderabad as superhero character 'Superman'.
My Superman," Danielle captioned the picture.
Summary:
The tweets included "Dinesh Karthik as captain is not even near Gautam Gambhir as captain of KKR!
Summary:
Chinese internet major Baidu's Chief Operating Officer (COO) Qi Lu, who is responsible for day-to-day operations in its AI unit, will be stepping down in July.
Summary:
Vishal Kaul, Chief Operating Officer (COO) of cab-hailing startup Ola has resigned from the company.
Summary:
Gupta, who served as Second Secretary at the Indian High Commission in Pakistan, also reportedly had an affair with an ISI officer.
Summary:
After reports of University Grants Commission working to grant autonomous status to Delhi University's St Stephen's College, the Delhi University Teachers Association has written to UGC opposing the move.
Summary:
On his daylong visit to J&K, Prime Minister Narendra Modi on Saturday inaugurated the Kishanganga Hydropower Station in Srinagar and dedicated it to the nation.
Summary:
US President Donald Trump has alleged that the FBI planted an informer in his 2016 presidential election campaign "for political purposes" and to "frame" him for crimes he "didnâÂÂt commit".
Summary:
German newspaper Süddeutsche Zeitung has ended its decades-long collaboration with cartoonist Dieter Hanitzsch over a drawing of Israeli PM Benjamin Netanyahu, which was criticised for being prejudiced against Jews.
Summary:
The royal wedding of UK's Prince Harry and actress Meghan Markle will take place at St George's Chapel in Windsor Castle.
Summary:
Nawazuddin Siddiqui once revealed that a scene from 'Gangs of Wasseypur 2' where he asks Huma Qureshi for permission to have sex with her was based on an incident in his life.
Summary:
Nawazuddin Siddiqui was paid â¹500 for featuring in Pepsi's 'Sachin Ala Re' ad campaign, where he played the role of a dhobi.
Summary:
UK's Prince Harry has been given the title 'Duke of Sussex' by his grandmother Queen Elizabeth II, ahead of his wedding to American actress Meghan Markle on Saturday, Kensington Palace revealed.
Summary:
JD(S) CM candidate HD Kumaraswamy has alleged that the BJP has "hijacked" two JD(S) MLAs ahead of the Karnataka Assembly floor test on Saturday.
Summary:
Walmart has sought the approval of the Competition Commission of India for its $16-billion acquisition of Flipkart, according to a filing.
Summary:
The Union Environment Ministry has allocated â¹10 lakh for each beach and water body.
Summary:
PM Narendra Modi on Saturday laid the foundation stone for India's longest road tunnel on the Srinagar-Leh National Highway in Jammu and Kashmir.
Summary:
Speaking at an event on his last working day, SC judge J Chelameswar said, "These one-crore-a-day lawyers hardly take a stand.
Summary:
During his visit to Jammu and Kashmir, PM Narendra Modi on Saturday announced that â¹25,000 crore will be allotted for development projects in the state.
Summary:
Animal rights organisation PETA India will gift a portrait of a rescued bull with its story written on it to Prince Harry and Meghan Markle on the occasion of their wedding.
Summary:
Finding an address in the box, the couple returned it to their neighbours, who confirmed they were robbed in 2011.
Being asked "Why did you return it?", the couple said, "It wasn't even a question.
Summary:
Notably, Manwani will retire as the Non-Executive Chairman of HUL at the end of June.
Summary:
Talking about action scenes in 'Race 3', Daisy Shah said, "I...hit a couple of people, but...our action masters were good and they were like, 'no worries madam, it happens'".
Summary:
Summary:
This comes after reports alleged the MLA-elects are being "held captive" at Bengaluru's Golden Finch Hotel.
Summary:
Ahead of the floor test in the Karnataka Assembly at 4 pm on Saturday, BJP leader Sadananda Gowda said, "Wait till 4.30 pm.
Summary:
RCB's South African batsman AB de Villiers revealed that he once accidentally listened in on his teammate Paul Harris calling his wife while hiding under his bed as a part of a prank.
Summary:
The attack occurred as players and hundreds of spectators had gathered for a night-time tournament in the provincial capital of Jalalabad.
Summary:
Snap CEO Evan Spiegel reportedly released the Snapchat redesign despite warnings from the platform's designers and a mediocre performance during tests.
Summary:
Princeton researchers have used data from over 2,65,000 video game players, creating a brain atlas of more than 1,000 neurons.
Summary:
NASA's new planet-hunting telescope has captured a test image centred on the constellation Centaurus, revealing over 2,00,000 stars.
Summary:
Summary:
A group of boys playing cricket discovered a woman's decomposed body in a drain in Thane's Vartak Nagar in Maharashtra on Thursday.
Summary:
The CBI has filed a chargesheet against Hyderabad-based Totem Infrastructure and its directors for allegedly defaulting on â¹313.84-crore loan from Union Bank, which was part of the â¹1,394-crore loan given by a consortium of eight banks.
Summary:
Union Road Transport Minister Nitin Gadkari on Friday said he has warned the road contractors that if the work isn't done properly he would "throw them under bulldozers instead of crushed stones".
Summary:
RBI on Friday imposed a penalty of â¹5 crore on South Indian Bank for non-compliance with directions issued by it.
Summary:
The Supreme Court on Saturday allowed BJP MLA KG Bopaiah to continue as the Protem Speaker ahead of the floor test in Karnataka Assembly at 4 pm.
Summary:
Nawazuddin Siddiqui had once revealed that his first kiss was with his co-star Niharika Singh for the 2012 film 'Miss Lovely'.
Summary:
CSK all-rounder Dwayne Bravo revealed to teammate Harbhajan Singh that Deepika Padukone is his favourite actress and she is still in his head since he first saw her in an ad in 2006 on a tour to India.
Summary:
The couple had asked for donations to charity instead of wedding gifts, and had selected seven organisations as beneficiaries, one of which is Suhani's foundation.
Summary:
Ahead of the floor test in the Karnataka Assembly on Saturday, JD(S) CM candidate HD Kumaraswamy said, "For me, today is not an important day, the important days will come in future." "Up to 4 pm, BJP will try to poach our MLAs...no one is going to go to the other side.
Summary:
Senior Congress leader Digvijaya Singh on Friday said, "The Congress is not defeated in the elections.
Summary:
Congress and JD(S) MLA-elects have been shifted from Hyderabad to hotels in Bengaluru ahead of the floor test in Karnataka Assembly on Saturday.
Summary:
Technology giant Apple has paid $1.76 billion to Ireland, its first payment out of around $15.3 billion it is to pay to the country in back taxes, Finance Minister Paschal Donohoe said on Friday.
Summary:
WhatsApp CEO Jan Koum, who recently announced his departure from the firm and parent company Facebook, has received stock awards worth $458 million.
Summary:
US-based aviation company Aurora's Autonomous Aerial Cargo Utility System-enabled helicopter called 'UH-1H' has successfully delivered cargo to the US Marines.
Summary:
However, some Flipkart board members believed that Bansal had led the startup to the brink of collapse in 2015.
Summary:
US-based researchers have created a 3D-printed smart gel that walks underwater, grabs objects and moves them.
Summary:
A French nanorobotics team has assembled the world's smallest house-like structure where ion beams were focussed on a 300-by-300-sq-micrometre area.
Summary:
He revealed that the simultaneous blasts at Paharganj and in a DTC bus were also planted by Indian Mujahideen militants.
Summary:
Congress MP Shashi Tharoor took to Twitter to share an apology note that read, "I am British born, I am sorry," which he received after speaking about the 1919 Jallianwala Bagh massacre at a literary festival in Auckland.
Summary:
The 17-year-old boy suspected of killing 10 people in a mass shooting at a school in Texas, US, had recently posted a picture of a t-shirt on his Facebook page that read 'born to kill'.
Summary:
Speaking about the discharge of former Russian spy Sergei Skripal from the hospital, Russian President Vladimir Putin said Skripal would have died on the spot if a nerve agent would have been used.
Summary:
China's Air Force has landed bombers on islands and reefs of South China Sea as part of a training exercise in the disputed region, the country said in a statement.
Summary:
No other royal bride in UK has walked unescorted down the aisle at their wedding ceremony.
Summary:
Talking about rumours of dating Ranbir Kapoor, Alia Bhatt said, "I'm happy that people are talking about my chemistry with Ranbir because we're doing a film together that comes out next year." "And all these people who're talking about our chemistry better come and watch the film," she added.
Summary:
Actor Amitabh Bachchan took to Instagram to share a collage with his daughter Shweta Bachchan Nanda.
Shweta my firstborn," he wrote in the caption.
Earlier, Bachchan had written in a tweet that daughters are the best gift in the world.
Summary:
Former J&K CM Farooq Abdullah has asked the author of 'Calling Sehmat', the book which inspired Alia Bhatt's movie 'Raazi', to keep the identity of the Kashmiri spy a secret.
Summary:
Chennai Super Kings captain MS Dhoni broke into laughter after Delhi Daredevils captain Shreyas Iyer tossed the coin too far during the coin toss at the Feroz Shah Kotla on Friday.
Summary:
US President Donald Trump has personally asked the country's Postmaster General Megan Brennan to double the rate the US Postal Service charges companies like Amazon, as per reports.
Summary:
However, corals can recover if temperature drops and algae recolonise.
Summary:
Jharkhand government has announced a compensation of â¹10 lakh for the family of BSF jawan, who was killed in ceasefire violation by Pakistan in Jammu and Kashmir on Friday.
Summary:
A referendum on the anti-abortion rule will take place on May 25.
Summary:
The Levi's 501î has been the original blank canvas and an emblem of self-expression.145 years later, Levi's is celebrating 501î Day with the jean that started it all.
Summary:
The most awaited OnePlus 6 will be available at 112 Croma outlets across India starting 21st May. One can avail cashback offers during weekdays with Paytm, Standard Chartered, Axis, ICICI, HDFC cards in addition to SBI cards.
Summary:
Fefar was served a notice, which stated he'd only worked for 16 days in eight months.
Summary:
A plane carrying 104 passengers crashed shortly after take-off from Jose Marti International Airport in Cuba's capital Havana on Friday, as per reports.
Summary:
The plane, which was reportedly carrying 104 passengers and nine crew members, was headed to the Cuban city of Holguin.
Summary:
The first look of actress Sunny Leone from the upcoming multilingual film 'Veermahadevi' has been released.
Directed by VC Vadivudaiyan, the film will also be released in Telugu, Malayalam, Kannada and Hindi.
Summary:
'Simran' writer Apurva Asrani wrote on Facebook that he takes his share of responsibility for being part of many sell-out decisions.
Summary:
Revealing that celebrities at award shows are drunk and high, Sumeet Vyas said, "They are all pretty high...till the time their award comes, they are pretty much sloshed!" Sumeet added they say random things once they are on the stage.
Summary:
Section 144 of IPC has been imposed in Mangalore as a precautionary measure ahead of the Supreme Court-directed floor test in the Karnataka Assembly at 4 pm on Saturday.
Summary:
The Supreme Court will hear Congress' petition against appointment of BJP MLA KG Bopaiah as Karnataka Protem Speaker at 10:30 am on Saturday, hours ahead of the floor test scheduled for 4 pm.
Summary:
South Africa-born former England captain Kevin Pietersen is set to become the first ever foreign player to deliver the annual MAK Pataudi Memorial Lecture on June 12 in Bengaluru.
Summary:
The Delhi High Court has sent notices to Facebook, Google, YouTube and Twitter for revealing the identity of the eight-year-old victim, who was raped and murdered in Jammu and Kashmir's Kathua in January.
Summary:
The term 'ðndiregandi' reportedly originated out of the similarity between 'Indira' and Turkish expression 'indirmek' which means reducing or lowering.
Summary:
At least seven people were also reported to be injured in the accident.
Summary:
Summary:
Bottom-placed Delhi Daredevils, who are already out of contention for a place in the IPL 2018 playoffs, defeated second-placed CSK on Friday to end their three-match losing streak.
Summary:
"Karnataka Congress Legislature Party...unanimously elected Shri @siddaramaiah as the leader of the CLP as per the directions of Congress President Shri @RahulGandhi," the party tweeted.
Summary:
Earlier, Musk had responded to a report that claimed Tesla is heading to a "cash crunch", saying the company doesn't need to raise money.
Summary:
India is among the regions where overuse of water resources has caused a decline in freshwater availability, as per a NASA study.
Summary:
The BMC has removed over 150 illegal ground-plus-one structures so far to ensure fire safety in the Ghat.
Summary:
The airline clarified that the snag developed just as the plane was about to take off.
Summary:
While a class 8 student was raped by two youths when she went to relieve herself in Nabarangpur, a 15-year-old girl in Balasore alleged she was raped by a man for a year.
Summary:
The Centre has approved â¹685-crore relief funds for ensuring that Punjab farmers do not resort to burning stubble, state Health and Family Welfare Minister Brahm Mohindra has said.
Summary:
He said that adequate amount of currency is available and there are no reports of shortage now.
"For last few days...we're seeing net increase in the currency.
Summary:
Speaker of the UK's House of Commons, John Bercow, reportedly called House Leader and Cabinet Minister Andrea Leadsom a "stupid woman" and "f**king useless" during a session.
Summary:
The baby was sent to a community centre for temporary care.
Summary:
As many as 30 Congress workers were detained on Friday for protesting outside the Rajkot residence of Karnataka Governor Vajubhai Vala, the Gujarat Police has said.
Summary:
After the Supreme Court ordered a floor test for Karnataka Assembly, CM Yeddyurappa said, "Of course they are with us, if the MLAs from Congress and JD(S) don't support us, how can we prove majority?" He added that BJP "will win the floor test 101%".
Summary:
This is the 22nd school shooting in US this year.
Summary:
Prernaa Arora of KriArj Entertainment, who had earlier lost a legal battle against John Abraham over 'Parmanu', has been made to step down as the producer of the films 'Batti Gul Meter Chalu' and 'Fanne Khan'.
Summary:
Talking about the controversy regarding casting couch in the film industry, Madhuri Dixit said, "I wouldn't know about the casting couch practice because I never heard of or experienced it." "But I suppose today...people are willing to listen to a woman speaking...they back her up instead of targetting her," she added.
Summary:
'Heeriye', the first song from the Salman Khan starrer 'Race 3', shows actress Jacqueline Fernandez pole dancing.
Summary:
Summary:
"He...will play for a long time for India," Raina further said about Pant, who has scored 620 runs in the IPL 2018 so far.
Summary:
After BJP appointed KG Bopaiah as the Protem Speaker ahead of the Karnataka Assembly floor test on Saturday, Congress spokesperson Randeep Surjewala termed the legislator as "dented and tainted".
Summary:
While Governor Vajubhai Vala had earlier provided 15 days to BJP for proving majority, the SC denied BJP's request for "reasonable time" and ordered that floor test should be conducted on Saturday.
Summary:
Because if you don't know a player's strength or weakness, you cannot give him the proper advice," Dhoni said about being a good captain.
Summary:
The partially-decomposed, naked body of a 28-year-old woman was found by police at a one-room house in Bhopal after locals complained of foul smell.
Summary:
Officials said Saeed's security was restored over threats to his life.
Summary:
A Texas-based physician has been charged for his role in a $240-million healthcare fraud and international money laundering scheme.
Summary:
All of Chile's 34 Roman Catholic bishops on Friday offered their resignations to Pope Francis over a child sex abuse scandal and its cover-up.
Summary:
Summary:
RCB's AB de Villiers has revealed Virat Kohli told him he "raised the bar way too high for them" after proposing to wife Danielle at Taj Mahal in 2012.
"That was a very special time...I surprised Danielle completely.
Summary:
DD captain Shreyas Iyer took to social media toÃÂ share a photo of himself standing alongside CSK captain MS Dhoni, with a part of the caption reading, "Standing beside him at the toss in Pune was unreal".
Summary:
Referring to the audio clip released by the Congress on Friday, Union Minister Prakash Javadekar said, "This audio CD is one of the handiworks of Congress' dirty tricks department.
Summary:
"My father said 'Bhar de bindass opening' and that's how I became opener," she added.
Summary:
Talking about not getting to open for Brisbane Heat in the women's Big Bash League, Indian women's cricket team opener Smriti Mandhana said Australians were not as hospitable as Indians.
Summary:
Smriti added she wanted to keep the bat as a showpiece after her brother got it from Dravid.
Summary:
Concerned at the job losses in telecom sector, Telecom secretary Aruna Sundararajan said the government has begun helping the affected employees get alternative employment.
Summary:
He added his wife had asked him to sell the baby as they couldn't afford her expenses.
Summary:
Brazilian authorities arrested 251 people on Thursday in the country's largest crackdown on child pornography.
Summary:
Emory Ellis was jailed for nearly three months after he tried to pay at Burger King franchisee in Boston in 2015 using a $10 bill that cashier thought was fake.
Summary:
The Bombay High Court has directed Mumbai Police to form a "special team" of officials to probe into allegations of defamatory emails received by Tata Motors' subsidiary, Tata Motors Insurance Broking & Advisory Services.
Summary:
Summary:
Congress has released a purported audio clip of BJP MLA Janardhana Reddy offering money and posts to Congress MLA from Raichur Rural in order to poach him.
Summary:
Nuclear Suppliers Group was founded after India conducted its first nuclear test on May 18, 1974.
Summary:
Actor Jim Sarbh, while responding to the criticism he has received for making a joke on rape, said, "I didn't intend to hurt anybody, and I certainly don't consider actual sexual or physical violence funny." "Sexual violence is a serious issue and I treat it as such.
Summary:
Former Karnataka Chief Minister HD Kumaraswamy's wife, Radhika Kumaraswamy, a Kannada actress-producer, was trending on Google today.
Radhika, who made her acting debut in 2002 aged 14, reportedly married Kumaraswamy in 2006, the year he was elected CM.
Summary:
After the Congress questioned the appointment of BJP MLA KG Bopaiah as the Protem Speaker in Karnataka Assembly by Governor Vajubhai Vala, Union Minister Prakash Javadekar said, "Congress is raising hoax objection." "Bopaiah was appointed as Protem Speaker even in 2008 by the then Governor.
Summary:
Congress leader Ghulam Nabi Azad on Friday alleged that the Centre has abducted Karnataka Congress MLA Anand Singh and is holding him captive in Delhi.
Summary:
Talking about his one-handed leaping catch against SunRisers Hyderabad, Royal Challengers Bangalore's AB de Villiers said he "made it look better than it actually was".
Summary:
The Supreme Court has ordered a floor test for Karnataka Assembly on Saturday, wherein CM Yeddyurappa will have to prove BJP enjoys majority support of at least 112 MLAs. While MLAs can orally cast votes in 'voice vote' method, votes are cast using machines or ballots in the 'division vote' method.
Summary:
Trump had also asked about the negative effects of vaccines at both the meetings, Gates further said.
Summary:
With her appointment, Haspel became the first woman to lead the spy agency.
Summary:
Talking about the viral 'Yanny vs Laurel' audio clip, US President Donald Trump joked that instead of the two words, he heard the word "covfefe" in the clip.
Summary:
The fountains were commissioned after Leeuwarden was declared the 'European capital of culture 2018'.
Summary:
Scott will lead Fox News and Fox Business Network.
Summary:
The RBI said the meeting would be held from June 4-6, instead of scheduled dates of June 5-6.
Summary:
John further said, "I live my life on my own terms, I am frugal in my lifestyle."
Summary:
Filmmaker Mahesh Bhatt, while tweeting on the occasion of Reema Lagoo's death anniversary, wrote, "I am so fortunate to have met her on this journey of life." "She was an exceptional person and an actor with great emotional depth," he added.
Summary:
Summary:
Actor Amitabh Bachchan has said that the mobile phone has become our alter ego, a person's alternate or secondary personality.
"There is reason to assess a person by the kind of mobile he or she uses," he wrote in his blog.
Summary:
The 34-year-old said he told Danielle he would have to take 'security guards' with him to their visit to Taj Mahal.
Summary:
Uber's Chief Product Officer Jeff Holden, who led the startup's flying car operations, has left the US-based startup.
Summary:
On his last working day in the Supreme Court on Friday, Justice Chelameswar was praised by lawyers for doing a "great job in upholding democracy".
Summary:
Reportedly, Deepak is based in Belgium while Purvi and her husband are settled in Hong Kong.
Summary:
Union Minister Dharmendra Pradhan had a telephonic conversation with Saudi Arabia's Energy Minister Khalid Al-Falih, in which he expressed concern over the rising prices of oil and its unfavourable impact on Indian people.
Summary:
The Delhi Police on Friday visited CM Arvind Kejriwal's residence to question him in connection with the alleged assault on Chief Secretary Anshu Prakash in February this year.
Summary:
The Uttar Pradesh government has issued notices to six former chief ministers, asking them to vacate the government bungalows allotted to them.
Summary:
Actress Meghan Markle's nephew has named a new strain of cannabis 'Markle Sparkle' to cash in on her wedding to UK's Prince Harry.
Summary:
"This will enable Reliance Communications to exit the NCLT process," the company said.
Summary:
'The Looming Tower' traces the rising threat of Osama bin Laden and al-Qaida in the late 1990s and how a rivalry between the FBI and CIA during the time may have inadvertently set the path for 9/11.
Summary:
Karnataka Governor Vajubhai Vala on Friday named BJP MLA and ex-Assembly Speaker KG Bopaiah as the protem Speaker ahead of the floor test at 4 pm on Saturday.
Summary:
Pakhi Sharma, formerly known as Bobby Darling, said her husband Ramnik Sharma, whom she had accused of domestic violence and unnatural sex, was recently arrested by Delhi Police.
Summary:
What the Governor did was a murder of democracy," he added.
Summary:
As many as four civilians and one BSF constable were killed on Friday in a ceasefire violation by Pakistan along the borders in Jammu and Kashmir's RS Pura sector and Arnia sub-sector.
Summary:
The Supreme Court on Friday allowed Congress leader P Chidambaram's son Karti to travel to offshore locations in United Kingdom, Germany and Spain from May 19-27 with certain conditions.
Summary:
UK's Prince Charles will walk his to-be daughter-in-law Meghan Markle down the aisle on her wedding day in light of her father's absence.
Summary:
North Korea recently cancelled talks with the South in protest against the US-South Korea military drills.
Summary:
Ranbir Kapoor, while responding to Alia Bhatt's statement that she has a crush on him, said, "Well, I have a boy crush on her now." Ranbir and Alia, who'll be seen together in the upcoming film 'BrahmÃÂstra', are rumoured to be dating each other.
Summary:
It will be based on the real-life story of Aisha Chaudhary, a motivational speaker who was diagnosed with pulmonary fibrosis at the age of 13.
Summary:
Replying to a video of KKR players enacting his popular movie dialogues, owner Shah Rukh Khan tweeted, "As much as I love my team, here's the deal.
Summary:
Hrithik will be seen portraying mathematician Anand Kumar, who is credited with starting the educational initiative Super 30 in Bihar.
Summary:
Yami Gautam has said when her films after 'Vicky Donor' didn't do well, she was wary of going to public events.
Summary:
After the Supreme Court asked BJP to prove majority in Karnataka Assembly, Congress President Rahul Gandhi tweeted, "The BJP's bluff that it will form the govt, even without the numbers, has been called out by the court." He alleged BJP will employ "money and muscle" to influence the mandate.
Summary:
Further, Hardik took to Instagram's Stories to share a picture of Rohit, writing, "Captain makes sure people laugh haha."
Summary:
Royal Challengers Bangalore captain Virat Kohli called AB de Villiers' one-handed catch against SunRisers Hyderabad "SpiderMan stuff" and said "normal human beings" don't do that.
Summary:
After Royal Challengers Bangalore's third straight win in IPL 2018, captain Virat Kohli said it is a great position to be in as other teams don't want them to win.
Summary:
The phone comes attached with the case engraved, "Made on Earth by Humans," inspired by Elon Musk sending a Tesla Roadster car into space.
Summary:
Google has said the Competition Commission of India's (CCI) ruling which found the technology giant guilty of 'search bias' could cause "irreparable" harm and reputational loss to the company.
Summary:
Delhi Chief Minister Arvind Kejriwal on Thursday took to Twitter to ask the BJP-led Centre and Lieutenant-Governor Anil Baijal why the police was "forced to file frivolous cases" against AAP ministers.
Summary:
Summary:
US President Donald Trump's plan to commercialise the International Space Station by 2025 has met with strong opposition from lawmakers, citing it would not be economically viable.
Summary:
A fast food outlet was shut down in a raid by food safety officials on Thursday after a man allegedly found live cockroaches in a beverage he had ordered.
Summary:
At least nine pilgrims travelling barefoot to Uttarakhand's Purnagiri Temple were killed and 21 were injured when a speeding truck rammed into them on Friday.
Summary:
The Supreme Court on Friday approved the Centre's draft scheme to distribute the Cauvery river water among the four shareholder parties, directing that it be implemented before monsoon this year.
Summary:
President Ram Nath Kovind will be staying at the Retreat Building, which is part of the presidential estate, during his three-day visit to Himachal Pradesh.
Summary:
A branch of China Construction Bank has offered Chinese clients an opportunity to have dinner with US President Donald Trump for $150,000.
Summary:
While hearing Congress-JD(S) plea against Karnataka Governor Vajubhai Vala inviting BJP to form the state government, the Supreme Court today ordered BJP to hold the floor test to prove majority in the assembly tomorrow at 4 pm.
Summary:
After the investment, Flipkart, valued at around $1.6 billion at the time, acquired Myntra.
Summary:
On May 18, 1974, India conducted its first nuclear test at Pokhran under the leadership of then PM Indira Gandhi.
Summary:
Summary:
Summary:
During a hearing against BJP forming the Karnataka government, judge AK Sikri said he read a WhatsApp joke that the Eagleton resort owner will stake claim to form the government as he has the majority of MLAs. The Congress MLAs were lodged at the Eagleton resort reportedly to prevent poaching attempts by the BJP.
Summary:
Summary:
The Loop is a high-speed underground public transportation system in which passengers will be transported on autonomous electric skates.
Summary:
British data firm Cambridge Analytica, involved in Facebook's data scandal, has filed for voluntary bankruptcy in the US.
Summary:
NASA researchers are creating an atomic refrigerator to freeze matter to near absolute zero temperatures, ten billion times colder than the vacuum of space, where atoms theoretically lose their energy and become motionless.
Summary:
US drug regulator has approved the sale of the first-ever medicine that prevents migraine, a debilitating headache which can last from hours to days, affecting nearly 15% people worldwide.
Summary:
An international study by 33 scientists has claimed the sudden emergence of octopus on Earth 270 million years ago could be hypothetically explained with their cryopreserved eggs brought by comets.
Summary:
Punjab CM Captain Amarinder Singh has said out-patient departments at government health centres witnessed a 126% rise in the number of drug addicts seeking treatment.
Summary:
Assange has been seeking political asylum in the Ecuadorian Embassy in London since 2012.
Summary:
Summary:
US President Donald Trump on Thursday defended his use of the word 'animals' to describe undocumented immigrants who enter the country illegally.
Summary:
The outlet offered free coffee and a $50 gift card to Pedro as an apology but he did not accept it.
Summary:
Kangana Ranaut and Jim Sarbh have been slammed by Twitter users over a video from an after-party at Cannes Film Festival, which shows Jim making a rape joke and Kangana laughing at it.
Summary:
As the BJP and Congress-JD(S) alliance stake claim to form the Karnataka government, PM Narendra Modi on Friday tweeted birthday wishes to JD(S) supremo HD Deve Gowda.
Summary:
JD(S) leader Mathew Thomas on Friday alleged that the Civil Aviation Ministry did not give permission for a charter plane to shift Congress and JD(S) MLAs from Karnataka to Kerala.
Summary:
RCB captain Virat Kohli appeared surprised and angry after a dismissal off a catch was overruled by the third umpire during his side's match against SunRisers Hyderabad on Thursday.
Summary:
Directing BJP to prove majority in Karnataka Assembly at 4 pm on Saturday, the Supreme Court said, "It's just a number game.
Summary:
The Supreme Court has stayed the nomination of an Anglo-Indian MLA to Karnataka Assembly until the floor test on Saturday.
Summary:
After the Supreme Court's order to hold the floor test in Karnataka Assembly on Saturday, Congress leader Ashwani Kumar said, "The Supreme Court's verdict has upheld constitutional morality and democracy." "Faith of people in wisdom of the Supreme Court is vindicated once again.
Summary:
Instagram has announced a new feature that allows users to share feed posts to their Stories.
Summary:
US-based payments platform PayPal has said that it is buying Sweden-based payments startup iZettle for $2.2 billion in an all-cash deal.
Summary:
Germany's Federal Supreme Court has ruled beer cannot be marketed as beneficial after a consumer rights group sued a brewery for falsely advertising its health benefits.
Summary:
Personal attention will be given to applications.
Spot offers, admissions and application fee waivers will be given for meritorious and complete applications.
Summary:
and well-timed humour," wrote Bollywood Hungama.
It has been rated 3.5/5 (Bollywood Hungama), 4.5/5 (TOI) and 3/5 (The Indian Express).
Summary:
Late actress Sridevi was honoured posthumously for her contribution to Indian cinema at the Titan Reginald F Lewis Film Honours, held as part of Cannes Film Festival.
Summary:
Sixteen black actresses, led by Aissa Maiga, staged a protest against racism at the Cannes Film Festival red carpet.
They recently collaborated on the book 'Black Is Not My Job', in which they provide anecdotes of the racism they've faced in their careers.
Summary:
Television actor Amit Tandon's estranged wife Ruby, who is a dermatologist, has reportedly been released from Dubai jail after 10 months.
Summary:
The Congress has sought to meet Manipur Governor Najma Heptulla on Friday to stake claim to form the state government as it was voted the single largest party in 2017.
Summary:
Ahead of the hearing on its petition against Karnataka Governor Vajubhai Vala's invite to BJP to form the government, Congress leader Ghulam Nabi Azad has said, "We have full faith in the Supreme Court." The apex court will not repeat the same mistake the Governor did, he added.
Summary:
Former Indian cricketer Lalchand Rajput, who was the manager of the winning Indian cricket team for the 2007 ICC World Twenty20 in South Africa, has been named the interim coach of the Zimbabwe cricket team.
Summary:
In a recently leaked video named 'The Selfish Ledger' by Google's research unit 'X', the company detailed how total data collection can shape decisions.
Summary:
More than 100 Congress leaders and workers have been arrested in Tripura for holding 'Akrosh' rally to protest against BJP for allegedly demolishing many party offices in the state.
Summary:
Elon Musk has shared a picture of a real 'Boring Candy', days after saying he will start a candy company.
Summary:
NASA astronaut Ricky Arnold has shared a selfie taken during a spacewalk outside the International Space Station, which orbits the Earth at a 400-km altitude.
Summary:
In turn, India will invest in the port's development and build a hospital on the island, the minister added.
Summary:
Hearing petitions seeking to decriminalise begging, Delhi High Court said, "How is begging an offence in a country where you (government) are not able to provide food or jobs?" "It is out of sheer necessity that someone puts out a hand to beg for food," the court observed.
Summary:
Trump's warning follows National Security Advisor John Bolton's idea of North Korea's Libya-style denuclearisation.
Summary:
The US Air Force has apologised over a tweet that linked the killing of Taliban militants in Afghanistan by US-backed forces with the viral Internet debate on whether a sound strip says 'Laurel' or 'Yanny'.
Summary:
The US State Department said the 26/11 Mumbai terror attacks' mastermind Hafiz Saeed is a tremendous concern to the US.
Summary:
Congress leader Randeep Surjewala on Thursday said, "[Karnataka Governor] Vajubhai Vala had sacrificed his seat for [PM] Narendra Modi earlier, yesterday he sacrificed Constitution and democracy for him." "He conducted first encounter of Constitution yesterday when he invited BJP to form government.
Summary:
Reacting to RCB's AB de Villiers' one-handed catch with his body 1.13 metres above the ground, a user tweeted, "AB de Villiers is not human.
Summary:
Royal Challengers Bangalore's South African batsman AB de Villiers repeated his shuffling outside the off stump shot, that landed over the roof of the Chinnaswamy Stadium while playing against the SunRisers Hyderabad on Thursday.
Summary:
Congress leader Ramalinga Reddy on Thursday said, "After the police was withdrawn (from outside Eagleton Resort), they (BJP) came inside & offered money.
Summary:
SRH lost to RCB in the IPL 2018 on Thursday despite registering their highest-ever total of 204/3 while chasing.
Summary:
RCB captain Virat Kohli took to Instagram to share a picture of AB de Villiers' one-handed leaping catch against SRH and wrote, "Saw SpiderMan Live today!" De Villiers pulled off the catch with his body 1.13 metres above the ground to dismiss SunRisers Hyderabad's Alex Hales.
Summary:
Astronomers have discovered the earliest stars started forming just 250 million years after the Big Bang, nearly 2% of the present age of the 13.6-billion-year-old Universe.
Summary:
Dabbawalas in Mumbai will gift traditional Maharashtrian wedding outfits to UK's Prince Harry and actress Meghan Markle ahead of the royal wedding on May 19.
Summary:
Slamming the Centre's announcement of a unilateral ceasefire in Jammu and Kashmir for the month of Ramadan, Kashmiri separatist leaders described it as a "cosmetic measure".
Summary:
Carlo Palombo, a former Barclays trader accused of rigging a benchmark interest rate, has told a London court that "being a vice president at Barclays was equivalent to the guy that serves you in McDonald's." Palombo allegedly conspired to rig Brussels-based Euribor rates between 2005 and 2009.
Summary:
RCB's AB de Villiers pulled off a one-handed catch with his body 1.13m above the ground to dismiss SRH's Alex Hales in the IPL 2018 on Thursday.
Summary:
Hours after taking oath, Karnataka Chief Minister BS Yeddyurappa said that a waiver of crop loans up to â¹1 lakh will be announced within two days.
Summary:
Ishant Sharma had conceded the previous most runs (66) in an IPL innings.
Summary:
The security forces posted outside the Eagleton Resort near Bengaluru, where Congress MLAs are staying, were withdrawn on Thursday hours after BJP's Yeddyurappa took oath as the state CM.
Summary:
The Congress-JD(S) alliance has filed a plea in the Supreme Court against Karnataka Governor Vajubhai Vala for nominating an Anglo-Indian MLA to the state assembly before BJP's floor test.
Summary:
JD(S) chief HD Deve Gowda had dismissed the Gujarat government of current Karnataka Governor Vajubhai Vala in 1996.
Summary:
The US accused India of not following the protocols of international parental child abduction, which refers to wrongful removal or retention of a child to another country by their parents.
Summary:
The security personnel on Thursday detained a man who breached security cover and threw ink on the face of Haryana Chief Minister Manohar Lal Khattar.
Summary:
Saji Cheriyan decided to build the mosque as workers had to cover long distances to go to their religious place of worship.
Summary:
A high school in the Chinese city of Hangzhou has installed cameras with facial recognition tools to monitor students' attentiveness in class.
Summary:
The monk, who has been working at the temple for nearly 10 years, claimed that he became depressed as a result of working non-stop while attending to tourists.
Summary:
Media tycoon Rupert Murdoch's eldest son Lachlan Murdoch will become Chairman and CEO of the proposed new "Fox" company once its deal with Disney is approved by shareholders and regulators.
Summary:
The Enforcement Directorate (ED) has seized over 34,000 pieces of jewellery worth â¹85 crore from Mehul Choksi-owned Gitanjali Group.
Summary:
Shares of Anil Ambani-led Reliance Communications (RCom) surged 65.7% on Thursday after reports suggested that the company is in talks with Ericsson for a settlement.
Summary:
Stock market regulator SEBI has warned Punjab National Bank (PNB) over delay in disclosing fraudulent transactions related to Nirav Modi group and Gitanjali group.
Summary:
Researchers said the label might indicate that the ceramics were made in Jianning Fu, a district in China.
Summary:
Rahul was also seen swapping his jersey with Hardik Pandya.
Summary:
Patel had flicked a Sandeep Sharma delivery towards the leg side where Ravi jumped and failed to avoid getting hit.
Summary:
De Grandhomme had hit a Siddarth Kaul delivery towards deep midwicket where Rashid initially misjudged the position of the ball, but took the catch after backtracking.
Summary:
"Looking after it is not that difficult because the beard oils have come in and it's very easy," Kohli added.
Summary:
Mumbai Indians captain Rohit Sharma's wife Ritika Sajdeh took to Instagram's Stories to share boomerang videos of the cricketer wearing an 'emoji kit' as punishment.
Summary:
After Congress accused BJP of undemocratic practices, Union Minister Prakash Javadekar today said, "Congress is ill-informed and as a result is making these funny claims.
Summary:
A 44-year-old journalist was found dead under mysterious circumstances in the small hall of a community health centre in Palamu, Jharkhand.
Summary:
Prime Minister Narendra Modi on Thursday greeted people on the occasion of the Muslim Holy Month of Ramzan.
These are also the virtues the Holy Month of Ramzan stands for."
Summary:
A court in Shimla on Thursday sentenced a 55-year-old man to 12 years imprisonment and imposed a fine of â¹25,000 for raping his 12-year-old stepdaughter.
Summary:
The accused allegedly molested the girl while she was playing outside her house in Dubai's Al Barsha region on two different occasions.
Summary:
The world's most expensive motorcycle, 'Harley-Davidson Bucherer Blue Edition', has been revealed to be priced at â¹12.2 crore.
It was jointly built by jewellery-maker Bucherer and Swiss custom Harley-Davidson workshop Bundnerbike in over 2500 hours.
Summary:
Referring to Governor Vajubhai Vala's invitation to Karnataka's single largest party BJP to prove majority, the Congress on Wednesday appealed to Goa Governor Mridula Sinha to invite it to form the government.
Summary:
RJD leader Tejashwi Yadav on Thursday requested Bihar Governor Satya Pal Malik to dissolve the BJP-JD(U) government and invite RJD, the state's single largest party, to form the government like in Karnataka.
Summary:
Ahead of the 2018 World Cup in Russia, Argentina Football Association distributed a "flirting manual" to its coaches, players and journalists on Russian Language and Culture Day. A chapter titled "What to do to for some opportunity with a Russian girl" had advices like "Don't ask stupid questions about sex".
Summary:
Accusing the Centre of misusing the Enforcement Directorate to threaten Karnataka MLAs, JD(S) leader HD Kumaraswamy said, "This Narendra Modi government wants to demolish democracy in the country." "I request Mamata Banerjee, Chandrababu Naidu, Chandrashekar Rao, Mayawati, Naveen Patnaik.
Summary:
Senior lawyer Ram Jethmalani today said, "I have one objective left, to get rid of (Prime Minister) Modi.
Summary:
Talking about the Karnataka elections, Congress President Rahul Gandhi said that RSS has captured the independent institutions of the country.
Summary:
Congress spokesperson Randeep Surjewala on Thursday said that BJP's BS Yeddyurappa will be the Karnataka CM for a day, half of which was already gone.
Summary:
Outgoing Arsenal manager Arsene Wenger has revealed he tried to sign both Lionel Messi and Cristiano Ronaldo when they were aged around 16 and 18 respectively in 2003.
Summary:
Two-time World Cup winner Gautam Gambhir has said BCCI has not marketed Test cricket as well as ODIs and T20s.
Imagine Virender Sehwag, Sachin Tendulkar, VVS Laxman playing and there are only 1,000 people," added the 58 Test-capped cricketer.
Summary:
Commenting on the development, Maheshwary said he is "really excited" and looking forward to joining the Zomato team.
Summary:
Continuing emissions could slow down ozone layer recovery, warned UN environment chief.
Summary:
The UK and five other nations have been referred to Europe's highest court for failing to tackle illegal levels of air pollution.
Summary:
Following the protests by Palestinians near the Gaza-Israel border against the opening of the US embassy in Jerusalem, Israeli Prime Minister Benjamin Netanyahu said, "Palestinians should abandon the fantasy that they will conquer Jerusalem." Israeli forces killed at least 60 Palestinians opposing the US move.
Summary:
Israeli Prime Minister Benjamin Netanyahu on Wednesday met the winner of the Eurovision singing contest and joined her in doing her signature 'chicken dance'.
Summary:
A Japanese train company has apologised after a train left 25 seconds before its scheduled departure time.
Summary:
A US-based nurse has been found guilty of research misconduct for using her own blood to represent samples from 98 people for a cancer study.
Summary:
The company's shares surged about 3.7%, taking its total market capitalisation to $511 billion.
Summary:
Tata Steel will take on board all 5,000 employees of bankrupt Bhushan Steel as part of the resolution plan submitted by it, according to reports.
Summary:
Jio alleged that the ads suggested subscribers could live-stream IPL matches free, without mentioning they would incur data charges.
Summary:
The study estimated Bitcoin network's minimum energy consumption was 2.55 gigawatts, as much as Ireland.
Summary:
Hindustan Unilever (HUL) on Thursday briefly overtook ITC to reclaim spot of India's largest fast-moving consumer goods giant in terms of market capitalisation after a gap of over 13 years.
Summary:
A record 357 new billionaires were added last year, taking billionaires population to an all-time high of 2,754.
Summary:
Speaking about her character in 'Raazi', Alia Bhatt said, "In this film, I needed to be mad about the character and when your director...loves your madness, there's nothing better than that." "It's like being surrounded by fire...You can feel the heat even when you're aware that it's not there," she added.
Summary:
CSK's Suresh Raina has said that cricketers have fewer arguments with their wives as the Indian team management and franchises allow wives to travel with the cricketers.
Summary:
Every single Test has begun with a toss of the coin so far.
Summary:
ISIS has released a doctored image threatening to behead Lionel Messi and Cristiano Ronaldo at the 2018 FIFA World Cup. The image is captioned, "Your blood will fill the ground," and appears to show the players pinned to the ground, with their heads held by terrorists.
Summary:
The Congress and RJD, single largest parties in Goa and Bihar, have appealed to the states' Governors seeking to form the government, citing the situation in Karnataka.
Summary:
Congress has decided to organise state-wide dharnas in all state capitals and at district headquarters on May 18 to protest against Karnataka Governor Vajubhai Vala's decision to invite BJP to prove majority.
Summary:
By then, India is also estimated to replace China and become the world's most populous country, the report added.
Summary:
Hardik suggested the recording was "cleverly synthesised" to trick brain's internal map of speech sounds.
Summary:
A rare pear-shaped blue diamond, which was mined from the Golconda mines in India over 300 years ago, has been auctioned for $6.7 million (â¹45 crore) in Switzerland.
Summary:
Summary:
Amid the protest against the swearing-in of BS Yeddyurappa as Chief Minister of Karnataka, Congress MP DK Suresh today said, "All MLAs are here except Anand Singh.
Summary:
Olympic medalist wrestler Sakshi Malik's husband Satyawart Kadian is among the 15 wrestlers axed by the Wrestling Federation of India from the ongoing national camp for breach of discipline.
Summary:
Pictures of golfers continue to play with ash plumes from Kilauea volcanic eruption in Hawaii rising behind them have emerged online.
Summary:
The decision was taken by the apex court after three witnesses alleged torture by the police during interrogation.
Summary:
China has intensified its crackdown on Uighur Muslims in an effort to curb "Islamic extremism".
Summary:
Interim Finance Minister Piyush Goyal has said the priority is to quickly "get entire banking system on its feet and shed the legacy that was inherited by this government in 2014." "Indiscriminate lending of the past has caused this distress that the banking sector is facing," he added.
Summary:
American singer John Legend and his wife, model Chrissy Teigen announced on Wednesday that they have welcomed a baby boy.
Summary:
Anil Kapoor, while speaking about the clash between his daughter Sonam's film 'Veere Di Wedding' and son Harshvardhan's film 'Bhavesh Joshi Superhero', said, "As a father, I'll be anxious about my children.
Summary:
The film will reportedly be directed by Indra Kumar, who previously directed the 'Masti' and 'Dhamaal' film series.
Summary:
According to reports, Ryan Reynolds starrer superhero film 'Deadpool 2' will feature the song 'Yun Hi Chala Chal' from Shah Rukh Khan starrer 'Swades'.
Summary:
KKR players including captain Dinesh Karthik enacted some popular movie dialogues of team owner Shah Rukh Khan.
Australia's Chris Lynn also performed a dialogue from Raees, "Battery Nahi bolne ka." Shah Rukh tweeted in response, "As much as I love my team, here's the deal.
Summary:
Actress Disha Patani, while talking about being signed for the film 'Bharat', said, "It is like a dream come true to get an opportunity to work with Salman Sir." "I cannot wait to begin my journey with the entire Bharat team," she added.
Summary:
Kings XI Punjab opener KL Rahul and Mumbai Indians all-rounder Hardik Pandya exchanged their jerseys following their match on Wednesday.
Summary:
As many as 724 sixes have been hit in first 50 matches of the IPL 2018, which is the most at this stage in any season.
Summary:
Bengaluru-based online healthcare startup mfine has raised $4.2 million in a Series A funding round led by Prime Venture Partners.
Summary:
Sandeep Aggarwal-led automobile marketplace Droom has raised $30 million in Series D round of funding led by Toyota's subsidiary Toyota Tsusho Corp and Digital Garage.
Summary:
A case has been registered against former Himachal Pradesh Chief Minister Virbhadra Singh and his son for allegedly breaking into a historical structure belonging to a relative over a family dispute.
Summary:
The security guard of a housing society in Thane has been arrested for allegedly abducting and raping a 15-year-old girl.
Summary:
The test run of the Orange Line Metro Train (OLMT) was inaugurated by Punjab province CM Shehbaz Sharif.
Summary:
Malaysia's Ministry of Finance on Wednesday said the Goods and Services Tax (GST) will be reduced to 0% effective June 1.
Summary:
The Munjal-Burman combine had offered to invest â¹1,800 crore without any due diligence, while Manipal offered to invest â¹2,100 crore at a higher valuation.
Summary:
For fans who couldn't snap up tickets to attend the launch, OnePlus is live-streaming the event in its entirety.
Summary:
Former High Court judge CS Karnan, who was sentenced to six months in jail for contempt of court last year, has announced the launch of his political party 'Anti-Corruption Dynamic Party'.
Summary:
Uttarakhand Chief Minister Trivendra Singh Rawat was present for the cabinet meeting.
Summary:
Senior lawyer Ram Jethmalani has moved the Supreme Court in his personal capacity against Karnataka Governor Vajubhai Vala's decision to invite BJP to form the government in the state.
Summary:
On being asked about proving majority in the state Assembly, Karnataka CM BS Yeddyurappa said, "Wait till tomorrow or day after tomorrow." The BJP, which fell short of majority in the elections, has been given 15 days to prove majority.
Summary:
The Union Cabinet has approved the setting up of a central university in the Anantapur district of Andhra Pradesh, Human Resource Development Minister Prakash Javadekar said.
Summary:
Jaipur-based millionaire Rrahul Tanejaa spent â¹16 lakh for the license plate 'RJ 45 CG 0001', which was the highest anyone had ever bid for a premium number, officials said.
Summary:
US President Donald Trump's lawyer Rudy Giuliani has claimed that Special Counsel Robert Mueller had told him that a sitting President can't be indicted under current rules.
Summary:
The US has told North Korea to ship some nuclear warheads, an intercontinental ballistic missile (ICBM) and other nuclear material overseas within six months, according to Japanese newspaper Asahi Shimbun.
Summary:
A 38-year-old man in Florida, US, was killed when his vape pen exploded, sending projectiles into his skull.
Summary:
A video of the incident showed the woman arguing with the employee before pooping.
Summary:
The US Securities and Exchange Commission (SEC) created a fake cryptocurrency called "HoweyCoins" to warn investors against possible scams.
Summary:
The Bombay High Court on Wednesday declared the arrest of PNB scam accused Kavita Mankikar by CBI as illegal as she was taken into custody after sunset.
Summary:
Irrfan Khan, who's currently out of India undergoing treatment for Neuroendocrine Tumour, took to Twitter to wish luck to his 'Karwaan' co-stars Dulquer Salmaan and Mithila Palkar for the film.
Both Dulquer and Mithila will make their Bollywood debut with the film.
Summary:
Amitabh Bachchan took to Twitter to share a survey by Score Trends India which has named him the most engaging Bollywood actor on Facebook.
Summary:
Amruta Khanvilkar, Alia Bhatt's co-star in 'Raazi', said, "Alia is...extremely secure...and an extremely receiving and giving actor." "This girl..in just 25 years of age has achieved so much...and has seen stardom like no one else her age, but despite this, she's so grounded," added Amruta.
Summary:
Vir Das, who has been signed for American series 'Whiskey Cavalier', tweeted, "Priyanka Chopra is...a star, who has opened the doors for small fish like me." "If you feel the need to write an article about both of us, write one that gives her credit and appreciation, because I do," he added.
Summary:
Shah was reacting to Congress President Rahul Gandhi calling BJP's BS Yeddyurappa being sworn-in as "defeat of democracy".
Summary:
Earlier, party President Rahul Gandhi said BJP was making a mockery of the Constitution.
Summary:
JD(S) CM candidate HD Kumaraswamy has alleged that Anand Singh, the Congress MLA who has gone 'missing', told him BJP threatened him with an ED case against him.
Summary:
World number five Karolina Pliskova bashed the umpire's chair and broke her racket after suffering a second-round loss in the Italian Open on Wednesday.
Summary:
Video sharing platform YouTube is testing an incognito mode in its Android app.
Summary:
Facebook has introduced a feature called 'Voice Posts' in India which allows users to share voice messages on its platform.
Summary:
Amazon's board of 10 members consists of only three women, according to executive research firm Equilar.
Summary:
China launched its first privately developed rocket 'Chongqing Liangjiang Star' on Thursday, state media reported.
Summary:
The CBI on Wednesday arrested two sub-inspectors of the Uttar Pradesh Police in connection with the death of the Unnao rape victim's father.
Summary:
Philippine President Rodrigo Duterte has said that Chinese President Xi Jinping had assured to protect him from moves that could result in his removal from office.
Summary:
Wrestling Federation of India has thrown out four Phogat sisters, Geeta, Babita, Ritu and Sangeeta, from an ongoing national camp over alleged "tantrums and indiscipline".
Summary:
Kami Rita, a 48-year-old Nepalese Sherpa scaled Mount Everest on Wednesday for the 22nd time, setting a record for the most successful climbs of the world's highest mountain.
Summary:
RCB and England all-rounder Moeen Ali has said Virat Kohli is "so humble" it's "almost weird how nice he is".
Summary:
In a move to encourage the electric vehicles adoption, the government has proposed setting up charging stations at every 3 km in cities.
Summary:
Apple is seeking $1 billion in damages from Samsung in a case that involves infringement of five patents by the South Korea-based technology giant.
Summary:
The 44-year-old has already been recognised by the Guinness Book of World Records for climbing the Everest eight times.
Summary:
While it is known industrial sewage can cause low oxygen conditions and kill fish, a Kenya-based study has found hippo waste can have a similar effect.
Summary:
Lasting 103 minutes, the July 27 Full Moon would present the longest total lunar eclipse of the 21st century.
Summary:
Amid the diplomatic row between Israel and Turkey over the violence in Gaza, Israeli PM Benjamin Netanyahu's son Yair posted an image on Instagram which read "F*ck Turkey".
Summary:
Slamming US President Donald Trump's "latest decisions", European Council President Donald Tusk said, "With friends like Trump, who needs enemies." "Thanks to him we got rid of all illusions," Tusk added.
Summary:
US President Donald Trump referred to illegal immigrants being detained and deported from the country as 'animals' during an immigration roundtable at the White House on Wednesday.
Trump further said his administration was deporting undocumented immigrants who commit violent crimes.
Summary:
It further stated that India's Delhi will be the world's largest city by 2028.
Summary:
I am very happy where I am," Rajan added.
Rajan is currently a professor at the University of Chicago in the US.
Summary:
Ex-PNB Deputy General Manager Gokulnath Shetty received â¹1.02 crore as bribe from Mehul Choksi's Gitanjali Exports for issuing fraudulent Letters of Undertaking, according to the CBI chargesheet.
Summary:
According to reports, Sonam Kapoor, Kareena Kapoor, Swara Bhasker, and Shikha Talsania starrer 'Veere Di Wedding' has been given an 'A' certificate by the Censor Board because of its strong language.
Summary:
Emilia Clarke, known for starring in HBO series 'Game of Thrones', while speaking about the show's ending, said, "It'll be what none of us will think it'll be." "It...feels like preparing to leave home...That's exciting, but it's [also] sad and scary," she added while talking about the show coming to an end.
Summary:
Nawazuddin Siddiqui, on being asked if he'll do any more cameo roles in films, said, "I'm done with my quota of small roles." He added, "I'll not do [cameo roles] anymore.
Summary:
Summary:
Atletico Madrid striker Antoine Griezmann struck twice as the Spanish side defeated Marseille 3-0 to win the Europa League for the third time.
Summary:
Former YouTube executive Benjamin Grubbs has founded a new firm called 'Next 10 Ventures' which has raised $50 million to fund content creators.
Summary:
Jack Dorsey, the CEO of Twitter and payments company Square, has said that the Internet "deserves a native currency" and "I hope it will be" Bitcoin.
Summary:
This comes a day after Facebook said Zuckerberg has no plans to meet the UK parliament to testify over data privacy.
Summary:
Japanese conglomerate SoftBank is in talks to invest $200-400 million in Gurugram-based food discovery startup Zomato, as per reports.
Summary:
Flipkart India, the wholesale arm of the e-commerce startup, has cut its losses by 55% to â¹244 crore for the fiscal year 2017, filings have revealed.
Summary:
While talking about problems faced by startups, Commerce Minister Suresh Prabhu said, "to startup itself is the most difficult thing, it's like getting up from bed is very difficult in the morning." He urged entrepreneurs to convert ideas into business solutions.
Summary:
The court said this during the hearing over its decision to remove the provision of automatic arrest under the SC/ST act.
Summary:
The armed confrontation took place after the student shot at the officer, the city officials said.
Summary:
Uber furthers its stance on safety with its 'Share Ride Status' feature.
Summary:
Yeddyurappa has been given 15 days to prove BJP's majority.
Summary:
After the Congress-JD(S) alliance sought to stop the swearing-in ceremony of BJP's BS Yeddyurappa as Karnataka's Chief Minister, the Supreme Court agreed to hear the petition at 1:45 am.
Summary:
Karnataka Governor Vajubhai Vala on Wednesday invited BJP's BS Yeddyurappa to form the government and gave him 15 days to prove the party's majority.
Summary:
Calling Karnataka Governor Vajubhai Vala a "stooge of BJP", Congress spokesperson Randeep Surjewala on Wednesday said, "The governor has shamed his office".
Summary:
After hearing a petition filed by the Congress-JD(S) alliance against the Karnataka Governor Vajubhai Vala's decision, the Supreme Court on Thursday refused to stay the swearing-in ceremony of BJP's BS Yeddyurappa as Chief Minister.
Summary:
The Kerala High Court today ruled that talking on a mobile phone while driving is not illegal and police cannot register a case as there are no provisions in the law.
Summary:
The average assets per MLA in Karnataka have increased three times over a span of 10 years, an Association for Democratic Reforms (ADR) report has revealed.
Summary:
Indore has been named the cleanest city in the country, followed by Bhopal and Chandigarh, according to the Centre's Swachh Survekshan 2018.
Summary:
A Kerala couple's wedding reception invite went viral after it said only those who could pronounce the bride Dhyanoorhanagithy's name should attend.
Summary:
Before Karnataka Governor Vajubhai Vala invited BJP's BS Yeddyurappa to take oath as state CM, JD(S) leader HD Kumaraswamy asked if everybody walking on the road had a price.
Summary:
ICC took to Twitter to share a group picture of players from both the teams following Ireland's first-ever Test match against Pakistan, which ended on Tuesday.
Summary:
The Indian government has reportedly raised concerns over WhatsApp sharing its users' payments data with parent company Facebook.
Summary:
Afghanistan's President Ashraf Ghani apologised on Wednesday after a deadly air strike on a Taliban stronghold last month killed 36 civilians, including 30 children.
Summary:
Philippine President Rodrigo Duterte on Wednesday ordered to lift the ban on the deployment of Filipino workers to Kuwait.
Summary:
Tata Steel on Wednesday posted a net profit of â¹10,187 crore for March quarter compared to a loss of â¹725 crore in the corresponding quarter last year.
Summary:
The market value of PNB Housing Finance stands at â¹21,122 crore, while PNB has market capitalisation of â¹20,856 crore.
Summary:
India's largest telecom major Airtel will lay-off several Telenor India employees after their merger and has said that "not all people from Telenor India will find meaningful roles within Airtel".
Summary:
Disha Patani has been confirmed as the second heroine in Salman Khan and Priyanka Chopra starrer 'Bharat'.
Summary:
Rajasthan Royals' all-rounder Ben Stokes, the most expensive overseas player in the IPL at â¹12.5 crore, said that IPL 2018 was "individually very disappointing" for him.
Summary:
Summary:
After being picked in England squad for World Cup, Manchester City defender Kyle Walker revealed on Twitter that he initially missed manager Gareth Southgate's call.
Summary:
MI on Wednesday registered a 3-run victory over KXIP to stay alive in the IPL 2018.
Summary:
In an apparent reference to the post-poll situation in Karnataka, former Jammu and Kashmir CM Omar Abdullah has said MLAs who switch parties should be banned from contesting elections for one term.
Summary:
The accused was arrested based on a statement by a complainant who accused Singh of demanding bribe for passing his pending bills.
Summary:
A journalist was shot dead in Mexico on Tuesday, marking the fourth murder of a media person in the country so far this year.
Summary:
The settlement is believed to be the largest-ever in a sexual misconduct involving a university.
Summary:
The song 'Swag Se Swagat' from the Salman Khan and Katrina Kaif-starrer 'Tiger Zinda Hai' has become the most viewed Hindi song on YouTube.
Summary:
This comes after BJP emerged as the single largest party by securing 104 seats, while 112 seats are required to form the government.
Summary:
The BJP became the single largest party in Karnataka after winning 104 out of 222 seats in the elections and securing 36.2% vote share.
Summary:
The first look of the upcoming movie 'Lihaaf' has been unveiled at the 71st Cannes Film Festival.
Summary:
BJP MPs Shobha Karandlaje, GM Siddeshwara, and PC Mohan have written to Home Affairs Minister Rajnath Singh, alleging the Congress-led Karnataka government is misusing its power and tapping their mobile phones.
Summary:
India TV Chairman Rajat Sharma, who is known for his show 'Aap Ki Adalat', will contest for the post of the Delhi and District Cricket Association (DDCA) President.
Summary:
The Supreme Court has rejected Karnataka's plea seeking to delay the finalisation of draft Cauvery management scheme till the formation of the new government in the state.
Summary:
The sweeper of a mortuary has been arrested for allegedly charging â¹200 from two families for handing over the bodies of those killed in the Varanasi flyover collapse.
Summary:
After 18 people were killed when an under-construction flyover in Varanasi collapsed, Managing Director of UP State Bridge Corporation, Rajan Mittal, termed the collapse a natural disaster.
Summary:
Notably, the Centre had said security personnel could retaliate if attacked.
Summary:
'Operation Hotel' involved monitoring the UK police, embassy staff and people visiting Assange.
Summary:
The Upper House of the Japanese Parliament has enacted a law to promote the participation of women in politics.
Summary:
US President Donald Trump miscalculated that Iran would pull out of the 2015 nuclear deal after US withdrew from the deal last week, Iranian President Hassan Rouhani said.
Summary:
Although no one consumed the brownies and no charges were filed, the woman was fired by her employer.
Summary:
Bank of England Deputy Governor Ben Broadbent claimed that the UK economy was entering a "menopausal" era after a peak in productivity from the digital revolution.
Summary:
The auction process for Sahara Group's Aamby Valley property will continue as it has failed to deposit â¹750 crore in SEBI-Sahara refund account, the Supreme Court has said.
Summary:
Following his team's victory on Tuesday, KKR owner Shah Rukh Khan took to Twitter to share a picture of captain Dinesh Karthik smiling and wrote, "And smiles to go...and keep from Karthik to me." Karthik finished off the chase with a six for the second time against RR in the IPL 2018.
Summary:
Priyanka Chopra, when asked what Bollywood and Hollywood can learn from each other, said, "I don't think we need to learn anything from each other." "We need to conform to what's required for the people who're working in the industry within that country," she added.
Summary:
A Cambodian woman and her husband have been arrested after they made videos of her cooking and eating protected wild animals to earn money on YouTube.
Summary:
Chennai Super Kings have shared a video in which Suresh Raina's daughter Gracia and captain MS Dhoni's daughter Ziva are seen dancing to 'Champion' as Dwayne Bravo sings.
#whistlepodu @DJBravo47 #Gracia #Ziva," CSK captioned the video on Twitter.
Summary:
DD's 17-year-old spinner Sandeep Lamichhane, the first-ever Nepalese cricketer to play in the IPL, has been included in the World XI squad that will play a T20I against Windies at Lord's on May 31.
Summary:
Former US Open golf champion Lucas Glover's wife Krista was arrested by police after she allegedly attacked her husband for not performing well in a tournament.
Summary:
Further, once the flight landed, the passenger was taken into custody and transported to a nearby hospital.
Summary:
US-based smart radar startup MetaWave has raised $10 million in a funding round which saw participation from investors including Hyundai, Toyota AI Ventures, and Khosla Ventures.
Summary:
Former Malaysian Deputy Prime Minister Anwar Ibrahim was released from prison on Wednesday after receiving a royal pardon.
Summary:
Russia-UK ties have reached the "worst level" under the leadership of PM Theresa May, Speaker of the Russian Parliament's Upper House, Valentina Matviyenko said.
Summary:
Several Chinese tourists have been slammed in Vietnam for wearing t-shirts depicting their country's territorial claims over the disputed South China Sea, prompting calls for deporting them.
Summary:
Congress MP Shashi Tharoor's flirtatious nature pushed his wife Sunanda Pushkar to commit suicide, according to the chargesheet filed by the police.
Summary:
A civil contractor in Madhya Pradesh threw a large party for his son after he failed his class 10 board exams.
Summary:
Ved Bhushan, a retired Delhi ACP who runs a private investigation agency, has said Sridevi's death cannot be labelled as 'accidental drowning' as it looked like a 'planned murder'.
Summary:
A new trailer of Tom Cruise starrer Hollywood film 'Mission: Impossible-Fallout', the sixth film in the 'Mission: Impossible' franchise, has been released.
Summary:
Meanwhile, the Congress bagged 78 seats accounting for a vote share of 38%.
Summary:
The Karnataka elections were mentioned over three million times between April 25 and May 15 on Twitter, the social networking site has announced.
Prime Minister Narendra Modi emerged as the most mentioned personality, while former Karnataka Chief Minister Siddaramaiah emerged as the most mentioned candidate.
Summary:
India has been listed among the top four countries with the highest number of forced marriage cases last year, according to a report by the UK's Forced Marriage Unit (FMU).
Summary:
The man died after a wall in his house collapsed on him.
Summary:
Palestine on Tuesday recalled its envoy to the US, Husam Zomlot, in protest against the US decision to move its Israel embassy from Tel Aviv to Jerusalem.
Summary:
The local government in the Estonian district of Kanepi has approved using a flag with an image of a cannabis leaf as its symbol after an online poll.
Summary:
The bank had reported a profit of â¹103.84 crore in corresponding quarter last year.
Summary:
Notably, the unit trades more than $300 billion a day.
Summary:
The court had earlier directed Jaypee to deposit â¹2,000 crore but the firm has deposited only â¹750 crore till now.
Summary:
The range of functions will include bill collection, Letters of Credit (LoC) and opening accounts for trade.
Summary:
The fast-moving consumer goods giant had posted a net profit of â¹2,669.47 crore in the corresponding quarter last year.
Summary:
Actress Mahie Gill, while speaking about choosing film roles, said, "I need to earn money but I won't go about doing just anything." "I'm just figuring out kaun achhe log hain, ya mujhe kiska body of work achha lagta hai," she added.
Summary:
"The film is a murder mystery which revolves around the duo and Taapsee's love interest who's a businessman," reports said.
Summary:
England pacer Mark Wood, who was a part of CSK in the ongoing IPL, along with his Durham teammates, sang and danced to 'I just can't get enough' chant praising Ambati Rayudu.
Summary:
Kuldeep revealed that Warne gave him tips after the match.
Summary:
Brazilian left back Marcelo took to social media to share a video of his eight-year-old son Enzo Vieira playing head tennis with Real Madrid squad in the dressing room.
This is a family @realmadrid," Marcelo wrote.
Summary:
Some Jurassic-era crocodiles had armoured bodies and limbs for walking on land while another group had tail fins and flippers.
Summary:
Other members of the gang included four minors who disappeared after his arrest.
Summary:
A 10-year-old girl was allegedly raped and murdered during a wedding last week in Madhya Pradesh's Umaria district, the police said on Wednesday.
Summary:
Five people sitting on a road divider were killed and three others were injured when they were hit by a truck on the Kanpur-Jhansi highway, the police said.
Summary:
Police are waiting for the autopsy report to establish the time of the murder.
Summary:
The Vatican has issued guidelines advising cloistered nuns to not overindulge in social media and asked them to use Facebook or Twitter "with discretion and sobriety".
Summary:
Ten children were rescued from a home in California, US, where they were tortured and abused by their parents for years.
Summary:
The Centre has ordered security forces in Jammu and Kashmir to not launch any operations during the Muslim holy month of Ramzan.
Summary:
A sound clip circulating on the internet has sparked a social media debate with several users hearing the word 'Laurel' while others heard 'Yanny'.
Summary:
The CBI on Wednesday submitted a second chargesheet of 12,000 pages in the PNB scam case and named Gitanjali Gems MD Mehul Choksi as 'wanted'.
Summary:
Summary:
This comes after BJP, although the single largest party, fell short of nine seats to attain majority in the Assembly elections.
Summary:
Summary:
Earlier, Congress leader DK Shivakumar had accused the BJP of poaching Congress and JD(S) MLAs.
Summary:
Facebook gathers the information based on users' actions on its platform and web, and uses it to predict interests, the report added.
Summary:
While most dinosaurs buried their eggs and waited for them to hatch, a new study suggests feathered dinosaurs weighing as much as a hippopotamus did not sit directly on their eggs but arranged them in a circular fashion with a central gap.
Summary:
The Supreme Court on Wednesday refused to provide protection for three witnesses in the Kathua rape and murder case after they alleged that the J&K Police was harassing them.
Summary:
Guatemala on Wednesday opened its embassy in Jerusalem, becoming the second nation after the US to open its diplomatic mission in the Israeli city.
Summary:
North Korea issued the warning over military drills between the US and South Korea.
Summary:
UK's windfarms provided more electricity than its eight nuclear power stations in the first three months of 2018, marking the first time wind power has overtaken nuclear across a quarter.
Summary:
Shares of billionaire Anil Ambani-led Reliance Communications (RCom) dropped as much as 20% on Wednesday after an insolvency plea filed by Sweden's Ericsson was admitted by a bankruptcy tribunal.
Summary:
President Nicolas Maduro seized the company's manufacturing plant and said that it has been handed to the workers.
Summary:
'Bhavesh Joshi Superhero' is Harshvardhan's second film after 'Mirzya'.
Summary:
Responding to criticism for changing her name to Sonam Kapoor Ahuja following her wedding to Anand Ahuja, Sonam Kapoor questioned, "How do you know Anand hasn't changed his name?" "If people don't understand the concept of feminism, they need to go online and look at the description," she added.
Summary:
A new song titled 'Veere' from Sonam Kapoor, Kareena Kapoor, Swara Bhasker and Shikha Talsania starrer 'Veere Di Wedding' has been released.
Summary:
The Karnataka CM candidate of JD(S) HD Kumaraswamy on Wednesday said that his decision to go with BJP in 2004 and 2005 had created a black spot on his father's career.
Summary:
Summary:
Kolkata Knight Riders' Sunil Narine scored 21 runs in the first over against Rajasthan Royals' Krishnappa Gowtham on Tuesday equalling the record for most runs in an IPL innings' first over.
Summary:
I've played cricket for 15 years...
but now it's time to be a family man," said the 33-year-old batsman.
Summary:
Technology major Microsoft has banned advertising related to cryptocurrency and related products from its Bing search engine.
Summary:
US-based startup LynQ has developed a tracker that allows users to locate other users who use the device without internet connection in real time.
Summary:
The woman asked the driver to stop the auto but he refused, following which she was forced to jump off, the police added.
Summary:
The Brihanmumbai Municipal Corporation has drafted a policy that puts restrictions on billboards and hoardings with photos of political leaders.
Summary:
A restaurant's shift manager was booked in Delhi as a man alleged he was hospitalised after ingesting a piece of a plastic ketchup sachet, which was inside a burger he ate at the outlet.
Summary:
They are supposedly the servers of poor people and they are offering money today," Kumaraswamy said.
Summary:
Minister of State for External Affairs General VK Singh on Tuesday became the first Indian minister to visit North Korea in two decades.
Summary:
Summary:
Special pigments embedded in the thread then respond to the variation by changing their colour.
Summary:
Some unidentified men escaped with a ballot box from a polling booth on Wednesday in Malda district of West Bengal, which is witnessing re-polling for Panchayat elections in 568 booths across the state.
Summary:
UrbanClap CEO Abhiraj Bhal forwarded an email meant for his employees to the user asking them to "ignore him completely".
Summary:
Asteroid 2010 WC9 made the closest approach at about 2,00,000 km from Antarctica, which is over half the distance between Earth and the Moon.
Summary:
The North Eastern Railway (NER) has decided to introduce panic buttons in train coaches to strengthen the security of women passengers.
Summary:
World's largest steel producer ArcelorMittal has reportedly transferred â¹7,000 crore to an escrow account to become eligible to bid for Essar Steel in its insolvency process.
Summary:
China's Wan Long, the CEO and Chairman of world's biggest pork producer WH Group, received a compensation of $291 million last year, topping Apple CEO Tim Cook and Tesla CEO Elon Musk.
Summary:
ICICI Bank CEO Chanda Kochhar's husband Deepak Kochhar was earlier questioned by the department.
Summary:
The National Company Law Tribunal has approved Tata Steel's â¹35,200 crore ($5.2 billion) resolution plan for Bhushan Steel, which owes its lenders about â¹56,000 crore.
Summary:
With 680 billionaires, the United States has more billionaires than China, Germany and India combined, according to a report by Wealth-X.
Summary:
Actress Aishwarya Rai Bachchan has said if a woman applies makeup, it doesn't mean she doesn't have brains.
Summary:
Actor Arjun Kapoor took to Instagram to share a picture with Real Madrid forward Cristiano Ronaldo and wrote, "Amazing feeling meeting & talking football with @cristiano!!!
Summary:
Following the release of the trailer of 'Race 3', a Twitter user compared a scene featuring Salman Khan in the film to Tiger Shroff starrer superhero movie 'A Flying Jatt'.
Summary:
Talking about the Karnataka Assembly election results, Shiv Sena MP Sanjay Raut said, "Seeing the BJP's politics of retaining and purchasing power, the JD(S) may also split up." Currently, Congress and JD(S) have decided to come into an alliance to form the state government with a total of 115 seats.
Summary:
Summary:
Russian tennis star Maria Sharapova asked Rafael Nadal for a practice session amid the Italian Open in Rome.
Summary:
The Income Tax Appellate Tribunal (ITAT) has upheld a tax demand on Google India's remittances of advertisement revenue sent to Google Ireland.
Summary:
Facebook was the most popular US stock among hedge funds in the first quarter of 2018, according to Bloomberg.
Summary:
Instagram CEO Kevin Systrom has confirmed the app is building tools to help users know about the time they spend on the platform.
Summary:
A video shows a wireless flying robotic insect that is powered by a laser beam flapping its wings.
Summary:
Scientists with NASA's NICER mission have discovered two stars that revolve around each other every 38 minutes, the shortest-known orbital period for a X-ray pulsar binary system.
Summary:
The crowd pelted stones at police officers and set a few vehicles on fire.
Summary:
People from all parties except one ruling the state have suffered," PM Modi added.
Meanwhile, TMC General Secretary Partha Chatterjee said the PM was reacting to disappointment over the Karnataka election results.
Summary:
The meme shows a photo of a man riding his two-wheeler without a helmet and a caption on top reading "Ghar se nikalte hi".
Summary:
It is also offering â¹250 gift card for Amazon Prime customers and â¹500 discounts on Amazon Kindle.
Summary:
Threatening to cancel the upcoming summit between its leader Kim Jong-un and Donald Trump, North Korea has said the US President will remain as a "failed leader" if he follows in the footsteps of previous US Presidents.
Summary:
Talking about the Karnataka Assembly election results, Congress leader Ghulam Nabi Azad said that the Governor cannot take sides while deciding who will form the government.
Summary:
Congress leader Amaregouda Patil, who won from Kushtagi constituency in the Karnataka Assembly elections, said, "I got a call from the BJP leaders.
Summary:
Facebook removed 583 million fake accounts in the first quarter of 2018, the company has revealed in a blog post.
Summary:
Talking about its $100-billion technology Vision Fund, SoftBank CEO Masayoshi Son has said, "Vision Fund II will definitely come, it's just a matter of when", adding that it could be "sometime in the near future".
Summary:
George Soros' firm Soros Fund Management has invested $35 million in Tesla bonds during the first three months of 2018, filings have revealed.
Summary:
Australian astronomers have found the fastest growing black hole known in the Universe, describing it as a "monster" that consumes a mass equivalent to our Sun every two days.
Summary:
The solar and wind energy sectors in India will employ over 3 lakh workers by 2022 to meet the country's renewable energy target, according to an International Labour Organisation (ILO) report.
Summary:
Candidates can apply to all Delhi University colleges, except St Stephen's College and Jesus and Mary College, through a centralised online form.
Summary:
Meghan Markle's father Thomas Markle has reportedly said that he will not be attending his daughter's wedding to UK Prince Harry because he has to undergo a heart surgery on Wednesday.
Summary:
North Korea on Tuesday announced its plans to join international efforts that seek a complete ban on nuclear weapons tests.
Summary:
North Korea has rejected the idea of Libya-style denuclearisation put forward by US National Security Advisor John Bolton.
Summary:
Russian President Vladimir Putin on Tuesday inaugurated a road-and-rail bridge linking Russia to the annexed Crimean peninsula, driving a truck across the span.
Summary:
Chinese startup Luckin Coffee has threatened to sue coffee giant Starbucks for monopolising the market.
Summary:
"[The film's makers] have brought an extremely fun concept to me...It's going to be my breakaway film from all the serious ones [that I'm doing]," said Alia.
Summary:
According to reports, Kareena Kapoor and Kartik Aaryan will star in an upcoming film which will be produced by Karan Johar.
On the other hand, Dharma is about to zero down on a younger heroine who will romance Kartik," reports said.
Summary:
Salman Khan, while speaking about his film 'Tubelight', said, "I'm really honoured and privileged...
Summary:
Summary:
Union Oil Minister Dharmendra Pradhan and Union Health Minister JP Nadda have been appointed as observers who'll attend a meeting of newly elected BJP MLAs in Karnataka.
Summary:
Sania announced her pregnancy last month and had earlier revealed she would want her child's surname as 'Mirza-Malik'.
Summary:
A Welsh scientist has claimed the giant ring of stones at Stonehenge were moved 225 km from Wales to England 5,00,000 years ago by a glacier.
Summary:
US-based Uber on Tuesday announced it will let sexual assault and harassment victims sue the company in court and will not force them into arbitration.
Summary:
Started in 2009, Operation IceBridge, NASA's longest-running airborne mission to monitor polar ice change, has concluded another springtime survey of Arctic sea and land ice.
Summary:
Newly appointed I&B Minister Rajyavardhan Rathore has said the Centre has no plans to regulate online media and digital news websites and that they should self-regulate.
Summary:
It seeks approval for merger of Aditya Birla Commodities Broking into Aditya Birla Money.
Summary:
The trade deficit for fiscal 2017-18 grew to $156.8 billion from $105.72 billion in the previous year.
Summary:
Get started on your quit smoking journey with Nicotex.
Summary:
North Korea has cancelled a summit with South Korea over ongoing military drills between the US and South Korea.
Summary:
While the vote counting for the Karnataka Assembly elections took place on Tuesday, the official handle of Kerala Tourism invited all MLAs to "unwind at the safe and beautiful resorts" in Kerala.
Summary:
Talking about pay disparity and gender bias in the film industry, Aishwarya Rai Bachchan said, "If you want to bridge the disparity, you should say no and walk away." She added that it is all about the choices one makes.
Summary:
The teaser of 'Bohemian Rhapsody', a biopic on the rock band Queen and its lead singer Freddie Mercury, has been released.
Summary:
After more than 15 people were killed in violence during the voting for Panchayat polls in West Bengal on Monday, 568 booths across various violence-affected districts will undergo re-polling on Wednesday.
Summary:
Quikr's VP of Finance, Rajesh Warrier, will now report to Tewari.
Summary:
Uttar Pradesh CM Yogi Adityanath has said a three-member committee has been constituted to probe the collapse of an under-construction flyover near Varanasi's Cantonment railway station.
Summary:
Enquiries were conducted into both the complaints, it added.
Summary:
A boat carrying 40 people on Tuesday capsized in Godavari river in Andhra Pradesh's East Godavari district, reportedly due to strong winds.
Summary:
Gujarat Governor Om Prakash Kohli was given the additional charge of Madhya Pradesh while the state's Governor Anandiben Patel is on leave.
Summary:
The two countries have been at odds over the legislation that deals with the transfer of power after the UK's withdrawal from the European Union.
Summary:
A swirl of yellow circles has appeared on the walls of France's Carcassonne Castle as part of a contemporary art project.
Summary:
An Australian man has won two lotteries in one week, winning AU$1,020,487 (â¹5 crore) on May 7 and another AU$1,457,834 (â¹7 crore) on Saturday.
Summary:
The National Company Law Tribunal has admitted an insolvency plea filed by telecom equipment maker Ericsson against Reliance Communications (RCom) and its subsidiaries.
Summary:
Summary:
When asked about his jail term in the black-buck poaching case at a recent media interaction, Salman Khan replied, "Did you think I was going to go in forever?" To this, the reporter said, 'No!' Salman added, "Thank you!
Summary:
President of Marvel Studios Kevin Feige said a film on Muslim superhero Ms Marvel, also known as Pakistani-American teenager Kamala Khan, is being planned.
Summary:
nRCB batsman AB de Villiers, during a recent talk show, revealed he would like to name his next child 'Taj'.
Summary:
RR mentor Shane Warne took to Twitter to share a farewell message, expressing his gratitude to the team ahead of the KKR-RR match on Tuesday.
Summary:
KKR's Kuldeep Yadav became the eighth left-arm spinner to take a four-wicket haul in the IPL.
Summary:
After the BJP emerged as the single largest party in the Karnataka Assembly Elections on Tuesday, Prime Minister Narendra Modi said the BJP was not confined to Hindi-speaking states.
He stated, "They said the BJP is a party of Hindi-speaking states.
Summary:
The BCCI on Tuesday opposed the plea by Sreesanth in Supreme Court seeking relaxation of the life ban on him in order to play county cricket.
Summary:
The interim insolvency professional, appointed by the National Company Law Tribunal (NCLT), has called for an expression of interest from potential buyers of defunct homestay startup Stayzilla.
Summary:
The BSF has confirmed that five Pakistani terrorists managed to infiltrate via a tunnel in Jammu and Kashmir's Kathua on Sunday.
Summary:
Amid clashes between Israeli forces and Palestinians along the Gaza border, Israeli MP Avi Dichter has warned that the forces have "enough bullets" for everyone.
Summary:
Turkey has expelled Israel's ambassador Eitan Naeh after Israeli forces killed over 60 Palestinians during protests on the Gaza border, reports quoting the Turkish Foreign Ministry said.
Summary:
Meanwhile, the BJP has won 100 seats and is leading in four constituencies, emerging as the single largest party.
Summary:
BJP CM candidate BS Yeddyurappa and a JD(S)-Congress delegation including Siddaramaiah and CM candidate HD Kumaraswamy have met Karnataka Governor Vajubhai Vala to stake claims to form the state government.
Summary:
The Allahabad Bank board on Tuesday stripped all functional responsibilities of the bank's MD and CEO Usha Ananthasubramanian with immediate effect.
Summary:
The BJP has emerged as the single largest party in Karnataka, securing at least 100 seats.
Summary:
Reacting to this, a Twitter user wrote, "Now waiting for losers to come up with stories of EVM hacking, EVM picking up bluetooth/ WiFi /JIO/BSNL/infrared/microwave signals." "No EVMs were tampered this time around?
Summary:
Summary:
A Congress delegation, led by Karnataka Congress President G Parameshwara, was denied entry into Karnataka Governor Vajubhai Vala's residence on Tuesday.
Summary:
All-rounder Kevin O'Brien, who holds the record for scoring the fastest World Cup century, became Ireland's first-ever century scorer during their debut Test against Pakistan on Monday.
Summary:
The West Bengal BJP has accused the Trinamool Congress of "murdering democracy".
Summary:
Defending the violence that killed over 15 people on the day of panchayat polls in West Bengal, Trinamool Congress MP Derek O'Brien said the death toll this year was "closer to normal" than earlier.
"400 killed in poll violence in 1990s in CPIM rule.
Summary:
Eighteen people have died and three others have been rescued safely after an under-construction flyover collapsed in Varanasi, Relief Commissioner Sanjay Kumar said.
Summary:
Bahrain has claimed that Iran had helped the accused set up a militant group called 'Zulfiqar Brigades'.
Summary:
The White House has called deaths of Palestinians on the Gaza border a "gruesome propaganda attempt" by the Hamas militant group.
Summary:
Two independent directors of IDBI Bank have resigned after CBI named them in an FIR in connection with a â¹600-crore loan granted to former Aircel promoter C Sivasankaran's companies.
Summary:
The bank reported a profit of â¹262 crore in the corresponding quarter last fiscal.
Summary:
TPG Capital-backed Manipal Health has offered a higher share price for Fortis Hospital days after the hospital chain backed a joint bid from the Munjal and Burman families.
Summary:
While talking about working with Salman Khan, actress Jacqueline Fernandez said, "I owe Salman a lot.
Summary:
Talking about being cast in Salman Khan's 'Race 3', actor Bobby Deol said, "I was preparing myself for work and he (Salman) called and said, 'shirt utarega?''' Bobby added, "Mamu (Salman) is my angel.
Summary:
Under-19 World Cup winning Kolkata Knight Riders' Shivam Mavi conceded 28-plus runs in an over for the second time in IPL 2018 on Tuesday.
Summary:
Talking about Congress' performance in the Karnataka Assembly elections, state Energy Minister DK Shivakumar on Tuesday said Siddaramaiah's over-confidence brought the party to this level.
Summary:
India's 2011 World Cup winning-coach Gary Kirsten will help recruit a new head coach for the Bangladesh cricket team by interviewing interested candidates, Bangladesh Cricket Board (BCB) chief Nazmul Hasan has said.
Summary:
Out of the 11 teams who have played Test cricket, only Australia managed to win on their debut while Zimbabwe managed a draw in their maiden Test.
Summary:
An air hostess tried to intervene but the passenger continued trying to sneak the drinks to his friends.
Summary:
Summary:
Scientists have used an X-ray laser to heat water from room temperature to 1,00,000úC in 75 quadrillionths of a second (75 millionths of a billionth of a second).
Summary:
The American media was doing "injustice" to its people by portraying India negatively, he further said.
Summary:
The UK is scheduled to exit the European Union in March 2019.
Summary:
The trailer of the Salman Khan, Jacqueline Fernandez and Bobby Deol starrer 'Race 3' has been released.
Summary:
Currently, the BJP has won 95 seats and secured a lead in 9 constituencies.
Summary:
Over 12 people were killed after a portion of an under-construction flyover collapsed near Varanasi's Cantonment railway station on Tuesday.
Summary:
The Karnataka CM candidate of JD(S)-Congress alliance, HD Kumaraswamy, has retained the Ramanagaram constituency by defeating Congress candidate Iqbal Hussain with a margin of over 22,000 votes.
Summary:
Vodafone Group on Monday announced that CEO Vittorio Colao will step down in October after working at the company for a decade.
Summary:
While this is Sonam's eighth year at Cannes, Mahira, who made her debut at the festival this year, is reportedly the first Pakistani actress to walk the event's red carpet.
Summary:
Priyanka further said, "Paani is special because it's based on a true story and deals with a very topical issue."
Summary:
As per reports, Salman Khan will be playing Lord Krishna in Aamir Khan's 'Mahabharata' trilogy.
Aamir will reportedly be playing the role of 'Arjuna' in the film.
Summary:
Talking about trolls and abuses on his blog posts, actor Amitabh Bachchan said, "(It) provokes me to get bigger and vastly improve myself, my demeanour, my standing and my dignity." He added that he is grateful to them for it drives him better and longer with the better-enlightened mind.
Summary:
Summary:
Taking a dig at KXIP's selection policy for the match against RCB on Monday, South African pacer Dale Steyn tweeted, "So why isnâÂÂt Miller getting a game #justaskingforafriend." KXIP were dismissed for 88 runs as RCB won the match by 10 wickets.
Summary:
CSK's head coach Stephen Fleming has said captain MS Dhoni practised "really hard" before the IPL 2018 began.
Dhoni has slammed 413 runs at an average of 103.25 in the IPL 2018.
Summary:
Harmanpreet Kaur and Smriti Mandhana, who represented India in the women's World Cup 2017, will lead the two teams that will play the women's T20 Challenge match ahead of the IPL 2018 playoff on May 22.
Summary:
Cena had proposed to Nikki during WrestleMania in April 2017.
Summary:
Kevin O'Brien, who slammed Ireland's first-ever Test ton on Monday, has said he rates his 50-ball ton against England at Bengaluru in the 2011 World Cup as the pinnacle of his career.
Summary:
The co-pilot of a Sichuan Airlines flight that was forced to make an emergency landing on Monday was "sucked halfway" out of the plane after a windshield blew out, the flight's captain said.
Summary:
The police added that the accused would target women and schoolchildren.
Summary:
An Asiana Airlines aircraft with over 200 passengers collided with a stationary Turkish Airlines plane at the Istanbul Atatürk Airport on Sunday.
Summary:
The family of a 73-year-old man who was killed in a road accident with a mini bus in Delhi, has been granted a â¹23-lakh compensation by the Motor Accident Claims Tribunal.
Summary:
The Uttar Pradesh government has started distributing 'shagun' to all newlyweds as part of an effort to promote family planning.
methods of family planning by young couples."
Summary:
The accused had broken into the woman's apartment several times and assaulted her, police said.
Summary:
Confirming its post-poll alliance with the Congress in Karnataka, JD(S) leader Danish Ali said, "As per results, we're doing everything to keep BJP out of power." The JD(S) and Congress will meet state Governor Vajubhai Vala on Tuesday evening, he added.
Summary:
Karnataka Chief Minister Siddaramaiah on Tuesday submitted his resignation to state Governor Vajubhai Vala after the Congress' poor performance in the state assembly elections.
Summary:
Former BCCI President Shashank Manohar has been re-elected as the independent Chairman of International Cricket Council after he was the sole nominee put forward by the ICC Board.
Summary:
A nude portrait by Italian painter Amedeo Modigliani has fetched $157.2 million (over â¹1,000 crore), the fourth highest price for any work of art at an auction.
Summary:
Thanking the people of Karnataka for granting their mandate to BJP, he claimed that people will not tolerate Congress forming the government.
Summary:
After announcing a post-poll alliance with JD(S) in the Karnataka Assembly elections, Congress announced support to JD(S) supremo Deve Gowda's son HD Kumaraswamy for the Chief Minister post, according to reports.
Summary:
Summary:
Siddaramaiah, who was contesting from two seats, lost the Chamundeshwari seat to JD(S) candidate GT Devegowda by a margin of over 36,000 votes.
Summary:
To comply with new European Union privacy regulations, Google updated 1.2 crore contracts with companies that use its services, Google's global privacy counsel Peter Fleischer said.
Summary:
The government on Tuesday clarified that Aadhaar has not been made mandatory for getting pension for government employees.
Summary:
Accusing Indian media of distorting remarks made by former Pakistan Prime Minister Nawaz Sharif on 26/11 Mumbai terror attacks, Prime Minister Shahid Khaqan Abbasi said, "It is unacceptable that Sharif is being termed a traitor." "It is unfortunate that we followed their (Indian media's) lead," he added.
Summary:
China's Litang county has banned monks "wrongly" educated in India from teaching Buddhism, the Chinese state media said.
Summary:
US' National Security Advisor John Bolton has said North Korea should send its dismantled nuclear weapons to a US lab for sanctions to be eased against the regime.
Summary:
Summary:
"Kapoor and sons -The Sequel," Arjun wrote in the photo's caption.
Summary:
Richa Chadha has said that she regretted choosing the film 'Sarbjit' as she felt misused.
Summary:
Former midfielder Zinedine Zidane scored through a left-footed volley to help Real Madrid win the Champions League final against Bayer Leverkusen on May 15, 2002.
Summary:
The opt-in feature will not reveal the users' real-time location and will wait for a while after they leave to show the same.
Summary:
In a major security lapse, the chopper carrying Uttar Pradesh Chief Minister Yogi Adityanath was forced to land on a field instead of a makeshift helipad at a Kasganj school today.
Summary:
Bengaluru-based food delivery startup Swiggy is in talks with investors including Japan's SoftBank and China's Tencent to raise $250 million, as per reports.
Summary:
Fresh data analysis from NASA's Galileo spacecraft has confirmed the probe flew through a giant plume of water vapour that erupted from Jupiter's icy moon Europa in 1997.
Summary:
A group of Chinese volunteers have come out from 110 days of isolation in a virtual "lunar lab" as the country pursues its ambition to put people on the Moon.
Summary:
A 12-year-old girl was allegedly raped by three men at a hotel in Vrindavan and subsequently abandoned on a Delhi-bound train, the police said on Monday.
Summary:
"No one should dare to drive like that," the victim's mother said.
Summary:
The New Delhi Municipal Council has started the process of e-auctioning three premium hotels located in the Lutyens area, including the Taj Mahal Hotel on Mansingh Road, reports quoting officials said.
Summary:
PM Narendra Modi will travel to Russia on May 21 for an informal summit with Russian President Vladimir Putin, the External Affairs Ministry announced on Monday.
Summary:
The committee has asked the site to be off-bounds for everyone.
Summary:
The BJP's Chief Ministerial candidate BS Yeddyurappa has won by a margin of over 35,000 votes from the Shikaripura seat in the Karnataka Assembly elections.
Summary:
We don't have numbers to form government", it added.
While the two parties won 47 seats and are leading in 68 constituencies, they need 112 seats to form the government.
Summary:
Pierre, who discovered radium and polonium with wife Marie Curie, accepted the award on the condition that her contribution was also recognised, making Marie the first-ever female Nobel Laureate.
Summary:
Talking about Congress trailing in Karnataka Assembly elections, Congress leader Navjot Singh Sidhu said, "I'll stand with Rahul Gandhi till the time I have blood in my body." "Rahul bhai is a leader in the ascent.
Summary:
With BJP leading in the Karnataka Assembly elections, party leader Ram Madhav said, "BJP's southward march has begun." "I'd like to thank the people of Karnataka for this mandate.
Summary:
It has also received an initial commitment of $12.5 million.
Summary:
Foxconn's investment subsidiary FIH Mobile has written off $40 million of its $200 million investment in Snapdeal.
Summary:
The East Delhi Municipal Corporation has imposed a â¹6-crore fine on the AAP-led Delhi government for shifting around 3,000 Tihar Jail inmates to the newly constructed Mandoli prisons without obtaining a completion certificate.
Summary:
A Kerala State Road Transport Corporation bus changed its route and rushed a pregnant passenger to the hospital after she developed uneasiness while travelling.
Summary:
A Lamborghini Huracán presented by the Italian carmaker to Pope Francis has been auctioned for four times its price, raising over $800,000 for charity.
Summary:
The only other double amputee to summit Everest is New Zealander Mark Inglis, who achieved the feat in 2006.
Summary:
Meanwhile, India's wholesale inflation climbed to a four-month high of 3.18% in April.
Summary:
"I wanted to drive home the imagery of how young girls who're being trafficked are trapped in a small 12x8 foot room," said Mallika.
Summary:
Her move was seen as a protest against the 'unspoken rule' that women must wear heels on the Cannes red carpet.
Summary:
As the BJP took lead in 114 seats in Karnataka elections, BJP leader and Chhattisgarh CM Raman Singh said, "Now there will be a Congress khojo abhiyan in the country.
Summary:
Summary:
BJP leader Rajyavardhan Rathore on Tuesday said it is good if all the Opposition wants to unite so that all of the country's dirt could be removed together.
Summary:
Summary:
Swamy had earlier tweeted his prediction for the elections, stating the BJP will win 115 to 130 seats.
Summary:
Indian wheelchair cricket team successfully completed its first international tour, winning a three-match series in Bangladesh, after cricketing legend Sachin Tendulkar donated nearly â¹4.5 lakh.
Summary:
Australia's chief T20 selector Mark Waugh has confirmed he will not renew his contract ending August to take up a commentary role.
Summary:
Proofpoint researchers have discovered a 'Vega Stealer' malware which harvests information from Chrome and Firefox browsers.
Summary:
Around 30 million smartphone units were shipped in India in the first quarter of 2018, leading to a year-on-year growth of 11%, according to IDC.
Summary:
Summary:
After a man tweeted that he and his wife were booked in separate batches for Kailash Mansarovar Yatra, External Affairs Minister Sushma Swaraj tweeted, "The computer is guilty of separating you." The 69-year-old man had sought help claiming that he and his wife cannot travel separately.
Summary:
Their bodies were recovered in October last year after the area where they were buried was recaptured from the militant group.
Summary:
US President Donald Trump has slammed those leaking information out of the White House, calling them "traitors" and "cowards".
Summary:
The BJP has crossed the halfway mark, leading in 112 seats in the ongoing Karnataka Assembly elections for 222 electoral constituencies.
Summary:
The Supreme Court has acquitted cricketer-turned-politician Navjot Singh Sidhu of culpable homicide not amounting to murder in the 1988 road rage case, while convicting him of voluntarily causing hurt.
Summary:
Filmmaker Karan Johar charged â¹11 to star in Anurag Kashyap directorial 'Bombay Velvet', which released on May 15, 2015.
Summary:
Early trends in the counting of votes in Karnataka Assembly elections show CM candidates of BJP, Congress and JD(S) leading from their constituencies.
Summary:
Summary:
In a first, CBSE has conducted separate 10th and 12th board exams for six students who were representing the country in international sports championships.
Summary:
A Google spokesperson, however, said the company has users' permission to collect data.
Summary:
Elon Musk on Monday responded to reports claiming that Tesla compromised on Autopilot safeguards and said, "This is false." According to a report by Wall Street Journal, Tesla rejected the idea to add safeguards like eye-tracking sensors into its Autopilot system because it cost too much.
Summary:
Credit rating agency Moody's has said it expects that Flipkart will continue to generate losses for the next few years.
Summary:
Current employees will reportedly be allowed to liquidate 50% of their vested ESOPs during the first year after Flipkart-Walmart deal and 25% in the second and third year.
Summary:
The snails which received the RNA showed the same behaviour, suggesting the "memory" of the electrical shocks had been transplanted.
Summary:
The government will wait for concrete evidence before taking any action against the heads of state-owned lenders Syndicate Bank and Indian Bank, Financial Services Secretary Rajiv Kumar has said.
Summary:
Shukla further said that â¹500 notes are circulated in adequate numbers in the wake of the currency crunch in various states in the past few months.
Summary:
The chargesheet named 22 persons including Nirav Modi, his brother, and former PNB CEO Usha Ananthasubramanian.
Summary:
US First Lady Melania Trump on Monday underwent a surgery at the Walter Reed National Military Medical Centre in Maryland to treat what the White House called a "benign kidney condition".
Summary:
Canada will add a third gender option to its future government surveys including the 2021 census paving the way for an overhauled census.
Summary:
India's largest telecom operator Bharti Airtel completed the acquisition of the Indian arm of Telenor Communications on Monday.
Summary:
Actress Margot Kidder, best known for playing the role of Lois Lane in the Superman film franchise of the 1970s and 1980s, passed away on Sunday at the age of 69.
Summary:
A motion poster introducing Taapsee Pannu's character from the upcoming film 'Soorma' has been released.
Summary:
The Election Commission has dismissed media reports that BJP workers were found with 1,000 postal ballot covers at a hotel in Karnataka's Badami ahead of the state polls.
Summary:
After BJP took a lead in the Karnataka Assembly elections on Tuesday, former Jammu and Kashmir Chief Minister Omar Abdullah tweeted, "Et tu Karnataka." Abdullah was referring to Shakespeare's tragedy 'Julius Caeser', in which the Roman leader was killed by his friend Brutus.
Summary:
Earlier, over 3,100 employees signed a petition urging the company's CEO Sundar Pichai to end Google's participation in the project.
Summary:
Notification detecting app called WhatsRemoved developed by Development Colors allows users to read WhatsApp messages even after they have been deleted.
Summary:
Facebook has added a feature that allows users to report conversations in Messenger on mobile that violate its Community Standards.
Summary:
The Supreme Court has agreed to hear a plea seeking prosecution of Uttar Pradesh Chief Minister Yogi Adityanath in a 2007 hate speech case.
Summary:
Around 5,000 farmers in Gujarat have sought mass euthanasia if the government does not return their land acquired by a state-owned mining company.
Summary:
A petition was filed in the Lahore High Court on Monday to register a treason case against former Pakistani Prime Minister Nawaz Sharif following his remarks on 26/11 Mumbai terror attacks.
Summary:
Its latest ad film stars Akshay Kumar telling users to 'Come home to the best.
Summary:
nEarly trends in the counting of votes in Karnataka Assembly elections show that the Bharatiya Janata Party (BJP) is leading in 76 seats, while Congress is leading in 38.
Summary:
The Curies had two daughters, Irène and ÃÂve.
Summary:
Facebook data of over 3 million people who took a personality quiz was reportedly published on a website accessible to unauthorised parties.
Summary:
The suspensions are part of an investigation into "thousands of apps" that had access to Facebook data.
Summary:
The driver of a Tesla Model S which crashed into a firetruck at a red light in Utah, US, has confirmed that the vehicle was operating on "Autopilot" mode.
Summary:
The Delhi Police used psychological analysis of at least five friends and family members to prove Congress MP Shashi Tharoor and his wife Sunanda Pushkar had a "strained relationship", reports quoting officials said.
Summary:
The central government has issued instructions to retiring employees to not use selfies as photographs while filling their pension forms.
Summary:
While a sessions court acquitted Sidhu over lack of medical evidence, the Punjab and Haryana High Court convicted him in 2006.
Summary:
After Madhya Pradesh Board announced the Class 10 and 12 results, as many as six students committed suicide while three survived the attempts.
Summary:
Meghan Markle's father Thomas Markle has refused to attend his daughter's wedding to UK Prince Harry, according to reports.
Summary:
Calling drug trafficking a menace, police officials said, "We hope we'll overcome it together."
Summary:
China aims to deliver its domestically developed AG600, the world's largest amphibious aircraft, by 2022, state media reported.
Summary:
The central bank also restricted the lender's access to raise high-cost deposits and creation of non-banking assets.
Summary:
Speaking about being offered the role of Hrithik Roshan's mother in 'Agneepath', Richa Chadha said, "That was a...stupid idea of the person who offered me that role." "I think he was smoking something wrong," she jokingly added.
Summary:
Actor Ryan Reynolds, who portrays the superhero 'Deadpool', went on a South Korean singing show 'King of Masked Singer' disguised as a unicorn and sang 'Tomorrow' from 'Annie'.
Summary:
Ranbir Kapoor and Ajay Devgn will be starring in an upcoming film by Luv Ranjan, who directed 'Pyaar Ka Punchnama'.
Summary:
RJD chief Lalu Prasad Yadav on Monday returned to Ranchi's Birsa Munda jail after the completion of the five-day parole granted to him to attend his son Tej Pratap's wedding.
Summary:
After BJP appointed former Congress minister Kanna Lakshminarayana as the party's Andhra Pradesh chief and MLA Somu Veerraju as state convenor of the election management committee, two local BJP local leaders resigned from their positions.
Summary:
Around 12 people were killed during various incidents of violence that took place during West Bengal panchayat elections on Monday, police said.
Summary:
After her eldest son Tej Pratap Yadav married RJD MLA Chandrika Rai's daughter Aishwarya Rai, former Bihar CM Rabri Devi said, "Hamari bahu Lakshminiya hai (My daughter-in-law is highly auspicious)." "Her arrival has brought good omen and several pleasant developments in the family," she added.
Summary:
In a recent email to Tesla employees, CEO Elon Musk said, "To ensure that Tesla is well prepared for the future, we have been undertaking a thorough reorganisation of our company." As part of the reorganisation, Tesla is also "flattening the management structure", he added.
Summary:
Only two cases of conjoined twins have been found in white-tailed deer, however, both were not delivered successfully.
Summary:
Friend of a 19-year-old youth, who died after debris fell on him due to storm in Delhi, said people present there took photos instead of helping his friend.
Summary:
The police on Monday charged Shashi Tharoor in his wife Sunanda Pushkar's suicide case of 2014.
Summary:
Adding that the product had been withdrawn from the Chinese market and destroyed, the retailer said it respects the sovereignty and territorial integrity of China.
Summary:
Deutsche Bank CEO Christian Sewing has told staff in Asia that the bank has no plans to exit any country in the region as it overhauls its global business.
Summary:
In a Cabinet reshuffle announced on Monday, Railways Minister Piyush Goyal was allotted the additional charge of the Finance Ministry while Arun Jaitley recovers from a kidney transplant.
Summary:
A study conducted by think-tank Centre for Media Studies has claimed that Karnataka witnessed the maximum expenditure by candidates and parties in the 2018 Assembly elections.
Summary:
Over 96% of the 80,880 students secured at least 35% to pass the examinations.
Summary:
It spent the maximum amount of over â¹2,000 crore on electronic media advertisements.
Summary:
A photo of Toronto Police arresting a man dressed as Thanos, the villian from 'Avengers: Infinity War', has gone viral after it was shared on Twitter.
Summary:
O'Brien is only the fourth batsman to score a century on his team's Test debut.
Summary:
After being charged with abetment to suicide over his wife Sunanda Pushkar's death, Congress MP Sashi Tharoor tweeted that he plans to stay off Twitter due to the "epicaricacy" he encounters on the microblogging site.
Summary:
Over 70 people were killed and 96 injured in dust and thunderstorms across 6 states in India on Sunday, according to Home Ministry officials.
Summary:
Delhi CM Arvind Kejriwal on Monday sat on a dharna outside Lieutenant Governor Anil Baijal's residence, accusing Baijal of blocking the AAP government from installing CCTV cameras in the national capital to enhance women safety.
Summary:
A group of 20 students and alumni of IITs across India have moved the Supreme Court against Section 377, which criminalises homosexuality, on behalf of over 350 LGBT alumni, students, faculty and staff from the institution.
Summary:
Sharing YouTuber PewDiePie's 'You India You Lose' video on Twitter, Ekta Kapoor tweeted, "You seem obsessed bhai...
Summary:
Summary:
While sharing the new poster of his Bollywood debut film 'Karwaan', Malayalam actor Dulquer Salmaan took to Twitter to announce the release date of the film as August 10.
Summary:
After he was not awarded the Best Supporting Actor Award at BAFTA Awards, actor Anupam Kher shared the speech he didn't get to deliver at the event.
Summary:
Talking about her son Taimur, Kareena Kapoor Khan said, "I spoil him with the warmth and the cuddles.
Summary:
Talking about his performance in the 1988 film 'Qayamat Se Qayamat Tak', Aamir Khan said, "When I see my work I don't like it.
Summary:
Before this season, Kohli had scored 500-plus runs in 2011 (557), 2013 (634), 2015 (505) and 2016 (973).
Summary:
Earlier, Anushka had shared a picture of herself wearing a t-shirt with husband Kohli's name on it just before the match started.
Summary:
With this, RCB registered their fifth victory of IPL 2018 while KXIP suffered their third successive loss.
Summary:
Chennai Super Kings' fast bowler Lungi Ngidi took to Instagram to share pictures and a video of himself training at a local cricket club in Pune, Maharashtra, describing it as "a really touching experience".
Summary:
I-League champions Minerva Punjab's owner Ranjit Bajaj has been banned for one year from any football activity and fined â¹10 lakh for racially abusing a referee during a match.
Summary:
Former Manchester United defender Rio Ferdinand's TV documentary show 'Rio Ferdinand: Being Mum and Dad' has won the 'Best Single Documentary' BAFTA (British Academy of Film and Television Arts) award.
Summary:
He had achieved the top rank for the first time in February this year, surpassing Andre Agassi.
Summary:
Anushka Sharma took to social media to share a picture of herself wearing a t-shirt with her husband Virat Kohli's name and jersey number 18 on it, ahead of RCB-KXIP match on Monday.
Summary:
Less than a month after raising â¹75 crore, Mumbai-based beauty and wellness startup Nykaa has raised â¹165 crore in a Series D round of funding.
Summary:
The two used to have frequent fights over family issues, police officials added.
Summary:
India's largest fast-moving consumer goods manufacturer Hindustan Unilever has posted a 14.2% rise in its March quarter profit to â¹1,351 crore.
Summary:
Mumbai-based student Swayam Das has topped the ICSE Class 10 examinations by securing 99.4%.
Summary:
Trump had announced the embassy breaking decades-old US policy by recognising Jerusalem as Israel's capital.
Summary:
The video showed him drinking, crying and talking about how his bad habits ruined his life.
Summary:
A sequel to Madhur Bhandarkar's directorial 'Chandni Bar' has been announced 17 years after the original film.
Summary:
Australian Steve Plain became the fastest climber to scale the highest peaks on seven continents, taking 117 days, after he scaled Mount Everest on Monday, according to his expedition company in Nepal.
Summary:
After Delhi Police charged him with abetment to suicide over his wife Sunanda Pushkar's death in 2014, Congress leader Shashi Tharoor said he will "vigorously" contest the "preposterous chargesheet".
Summary:
Finance Minister Arun Jaitley underwent a successful kidney transplant surgery at the All India Institute of Medical Sciences (AIIMS) Delhi on Monday and is in stable condition, hospital authorities have said.
Summary:
The woman was reportedly in a relationship with the man, who was arrested earlier.
Summary:
Invigilators in Bihar's Muzaffarpur cut the sleeves of women's clothes in "full public view" to prevent cheating in a nursing entrance exam on Saturday.
Summary:
Ahead of the inauguration of the US embassy in Jerusalem, Speaker of Iranian Parliament Ali Larijani has called US President Donald Trump "feeble-minded" over his decision to shift the embassy.
Summary:
Turkish President Recep Tayyip ErdoÃÂan has said the US had lost its role as a mediator in the Middle East by moving its Israel embassy to Jerusalem.
Summary:
Ananthasubramanian had headed PNB between August 2015 and May 2017.
Summary:
Post Kolkata Knight Rider's victory over Kings XI Punjab in the ongoing Indian Premier League, Shah Rukh Khan shared a picture of him smiling.
This pic is for him," he wrote while sharing the picture.
Summary:
Actress Taapsee Pannu has said that her personal style is one that personifies independence, confidence and beauty with ease and comfort.
Summary:
Actor Ranveer Singh took to Instagram to share a childhood picture of himself exercising on a cycle.
#throwback #mondaymotivation", wrote the actor while sharing the picture.
Summary:
Talking about daughter Aaradhya, actress Aishwarya Rai Bachchan said, "Glamour is a part of my life, but I try to keep things normal for Aaradhya." "I don't want to make anything different for her.
Summary:
Get addicted to bettering yourself." Reacting to positive response from the audience, Alia said, "I didn't expect this kind of response...
Summary:
The first look from the Kriti Sanon and Diljit Dosanjh starrer upcoming comedy film 'Arjun Patiala' has been revealed.
Summary:
The ground staff at Pune's Maharashtra Cricket Association Stadium, which is the makeshift home of IPL franchise CSK, gifted a portrait to captain MS Dhoni after CSK's victory against SRH on Sunday.
Summary:
Mumbai Indians' Suryakumar Yadav pulled off a catch despite losing his balance and slipping backwards to dismiss Rajasthan Royals' captain Ajinkya Rahane in the IPL 2018 on Sunday.
Summary:
In an apparent message to people wanting him dropped from the SRH playing XI over his batting form, Manish Pandey took to Instagram and updated his story, writing, "Every hater at the moment...IDGAF (I don't give a f**k)." However, the story disappeared after some time.
Summary:
CSK captain MS Dhoni has said he rates Ambati Rayudu highly and had planned to make him open even before the IPL 2018 started.
Summary:
Australian spin legend Shane Warne has said that it is "uncanny" the number of times Indian captain Virat Kohli has hit hundreds while chasing down opposition's score and even Sachin Tendulkar could not do it.
Summary:
Former Australia captain Ian Chappell has said that the BCCI's decision to not play a day-night Test in Australia is "extremely disappointing".
Summary:
YET!" Since its acquisition from the British in 1911, the supermarket is still run by the same family.
Summary:
Currently, SoftBank holds 20-22% stake whereas Walmart has acquired 77% of the e-commerce firm.
Summary:
Founding member of the Indian Mujahideen, Abdul Qureshi, also attended the camp.
Summary:
The Delhi Police has charged Congress leader Shashi Tharoor with abetment to suicide and cruelty over his wife Sunanda Pushkar's death in 2014.
Summary:
The CBI on Monday filed a chargesheet against former Punjab National Bank Managing Director and CEO Usha Ananthasubramanian in relation to the Nirav Modi case.
Summary:
Former PM Manmohan Singh has written to President Ram Nath Kovind, asking him to caution PM Narendra Modi against using "threatening" and "intimidating" language against Congress leaders.
Summary:
Rajasthan Royals captain Ajinkya Rahane was fined â¹12 lakh for maintaining slow over-rate in the match against Mumbai Indians on Sunday.
Summary:
Honouring US President Donald Trump, Israeli football club Beitar Jerusalem has added Trump to its name ahead of the inauguration of the US embassy in Jerusalem.
Summary:
However, Zuckerberg and co-creator Adam D'Angelo got a patent for the technology and went to college instead.
Summary:
Facebook Co-founder and CEO Mark Zuckerberg created a family messaging system called ZuckNet when he was 12 years old.
Zuckerberg turned 34 on May 14.
Summary:
Diesel prices on Monday reached â¹66.14 per litre in Delhi, a fresh record high.
Summary:
Sharif had said that militant organisations based in Pakistan were responsible for the Mumbai terror attacks.
Summary:
The court said it would consider and approve the scheme on May 16.
Summary:
Former North Korean deputy ambassador to Britain Thae Yong Ho, who fled his post in 2016, has said the country will never fully give up nuclear weapons.
Summary:
Notably, legislation to allow women bishops was formally adopted by the Church in 2014.
Summary:
The video showed six lionesses and three cubs walking across the road.
Summary:
Notably, the wholesale inflation in March was at an eight-month low of 2.47%.
Summary:
The government is reportedly planning to introduce a mechanism to identify fake medicines wherein drugmakers will be required to print a unique 14-digit alphanumeric code on packages.
Summary:
US printer and copier company Xerox has called off a $6.1-billion takeover by Japan's Fujifilm Holdings in a settlement with activist investors Carl Icahn and Darwin Deason.
Summary:
This data has now been circulated to relevant regional departments, reports added.
Summary:
Denying the rumours of marrying Prabhudeva, actress Nikesha Patel tweeted, "I think it is time to clarify...I am not marrying anyone...he is purely just a friend...and a well wisher.
Summary:
Kareena Kapoor Khan said that there is a direct link between a girl being educated and empowered.
"There's an important need to stress on education of the girl child.
Summary:
MI's Hardik Pandya dropped his bat while backing up to non-striker's end in the middle of a run, and made a football-like sliding tackle before a throw hit his stumps on Sunday.
Summary:
Summary:
While a cabin crew member and a pilot were injured, all passengers landed safely.
Summary:
Sinha has been elected as an MP from the constituency for two consecutive terms.
Summary:
The incident came to light after the victim fell unconscious and was rushed to a hospital, where doctors found her three months pregnant.
Summary:
Three of the accused in the Kathua rape and murder case have moved the Supreme Court alleging custodial torture by the police.
Summary:
Taking a jibe at Congress, Oil Minister Dharmendra Pradhan has said that as opposed to previous regimes, the present government worked hard to earn 10% stake in a UAE oilfield.
"There was an oil minister earlier too.
Summary:
A Tesla Model S car crashed into the back of a fire truck at a red light in Utah, United States.
Summary:
Lina Medina is the youngest person on record to give birth after she delivered a baby on May 14, 1939, aged five.
Summary:
Over 53 people died and 65 were injured due to thunderstorms across the country on Sunday, the Home Affairs Ministry has said.
Summary:
An iPhone exploded and caught fire at a repair shop this week in Las Vegas, United States, according to reports.
Summary:
Mark Zuckerberg once had a business card which read, "I'm CEO, B*tch." during the early years of Facebook.
Summary:
The clashes were triggered after TMC Minister Rabindra Nath Ghosh allegedly slapped an Opposition candidate inside a polling booth.
Summary:
A clause in the Flipkart agreement restricts SoftBank from investing more than $500 million in Paytm Mall until 2020, reports claimed.
Summary:
Pakistan witnessed 12 instances of Internet shutdowns, while Bangladesh, Afghanistan, and Sri Lanka reported one such case each, the report further said.
Summary:
After Nawaz Sharif said that militant organisations based in Pakistan were responsible for the 26/11 Mumbai terror attacks, his political party PML-N stated that the former Prime Minister's statement had been "grossly misinterpreted".
Summary:
Al-Qaeda chief Ayman al-Zawahiri has called on Muslims to carry out jihad against the US over its decision to shift its Israeli embassy to Jerusalem.
Summary:
Condemning the Islamic State attack in Paris that killed one person, US President Donald Trump said countries will have to "open their eyes" and "change their thought process" on terror.
Summary:
US State Secretary Mike Pompeo has said the country will have to assure Kim Jong-un that his ouster is not part of the agenda for the summit between the North Korean leader and President Donald Trump.
Summary:
A family of six, including four children, was behind the suicide attacks on three Indonesian churches that killed at least 13 people.
Summary:
Security cameras caught a burglar doing a victory dance after he successfully entered an office building in California, US.
Summary:
A 24-year-old Chinese woman woke up from coma after hearing pop songs by Taiwanese singer Jay Chou, a Chinese newspaper reported.
Summary:
The man used fraudulent caller ID information to falsely present calls as coming from local numbers.
Summary:
The woman had been raising the animal for two years.
Summary:
Airtel has denied Jio's accusations that it is providing eSIM service on Apple Watch in violation of licence conditions.
Summary:
The Sunday Times Rich List said Hinduja brothers were worth ã20.64 billion, while Ratcliffe was worth ã21.05 billion.
Summary:
Pant has scored 582 runs in 12 matches so far, while Gambhir hit 534 runs for DD in the first IPL.
Summary:
The 33-year-old four-time world champion overtook seven-time world champion Michael Schumacher, who had won 40 races from pole.
Summary:
Liverpool winger Mohamed Salah set the record for most goals in a 38-match Premier League season after scoring his 32nd during his team's 4-0 thrashing of Brighton on the 2017/18 season's last day on Sunday.
Summary:
Britain regulators have suggested buying 'porn passes' available at the local newsstands to verify user age on porn websites under the new digital economy law.
Summary:
He also said there was no limit to the number of payments made through this feature.
Summary:
An IndiGo Airlines employee has been arrested for making a hoax call to Delhi's Airport, falsely claiming there was a bomb in a Mumbai-bound flight, earlier this month.
Summary:
The daughter of noted Pakistani poet Faiz Ahmed Faiz has alleged that she was denied entry to the 15th Asia Media Summit in New Delhi, where she was invited as a speaker.
Summary:
Amid the controversy over a picture of Pakistan founder Muhammad Ali Jinnah inside AMU, Haryana Finance Minister Captain Abhimanyu said the university should be renamed after Jat King Raja Mahendra Pratap Singh.
Summary:
The Maharashtra Anti-Terrorism Squad (ATS) has arrested a 32-year-old man for allegedly planning a terror attack on essential services in Maharashtra and other parts of the country.
Summary:
With a legacy of 67 years, Sanyo brings to India its range of 4K Ultra HD, Smart, Full HD and HD ready LED TVs. The Japanese TV giant is offering a minimum of 30% off on its range of LED TVs. ICICI cardholders can avail extra 10% discount.
Summary:
At least 18 people were killed after being struck by lightning in Andhra Pradesh, West Bengal, and Telangana on Sunday, officials said.
Summary:
The description of the video on YouTube said, "Kasamh Se original title track (good quality)".
Summary:
The 69-year-old leader, who had earlier claimed that the 2013 Assembly elections were his "last elections", said Congress high command had directed him to contest elections in 2018 due to his position as the CM.
Summary:
Karnataka Chief Electoral Officer Sanjiv Kumar announced that Karnataka witnessed 72.13% voter turnout on Saturday, making it the highest-ever turnout recorded by the state in Assembly elections.
Summary:
RR wicketkeeper-batsman Jos Buttler slammed his fifth straight fifty in IPL 2018 on Sunday to equal former Indian cricketer Virender Sehwag's record of most straight 50+ scores in the IPL.
Summary:
CPI(M) General Secretary Sitaram Yechury has said true believers of Marxism adapt to changing conditions as the philosophy is based on "concrete analysis of concrete conditions".
Summary:
Former Pakistani Interior Minister Chaudhry Nisar Ali Khan on Sunday blamed India's "stubbornness" and "uncooperative attitude" for delays in concluding the country's trial into the 26/11 Mumbai attacks.
Summary:
Director Vikramaditya Motwane revealed that he had approached Sidharth Malhotra and Imran Khan before finalising Harshvardhan Kapoor for 'Bhavesh Joshi Superhero'.
Summary:
Sonakshi Sinha, who has worked in Tamil film 'Lingaa' with Rajinikanth, said, "Their (regional cinema's) style of work is slightly better than how we work over here (in Bollywood)." She added, "In terms of timings, vision, originality and the concepts that they come up with...
Summary:
Hollywood actor Benedict Cumberbatch said he will only agree to roles if female actors are paid as much as male actors.
Summary:
Sharing an old poem on Twitter which Sushant Singh Rajput had written for his late mother, he wrote, "Happy Mother's Day everyone." Sushant had earlier revealed the poem was his first ever attempt at "creative writing".
Summary:
Pakistani actress Mahira Khan, who will make her red carpet debut at Cannes Film Festival 2018, said she hopes she doesn't trip and fall on the red carpet.
Summary:
Wicketkeeper-batsman Jos Buttler slammed 94*(53) after scoring 95*(60) in the previous match as his team Rajasthan Royals defeated Mumbai Indians to register their third consecutive victory in the IPL 2018 on Sunday.
Summary:
RR's Sanju Samson pulled off a diving catch to dismiss MI's Hardik Pandya in the IPL 2018 on Sunday.
Summary:
Delhi Daredevils' wicketkeeper-batsman Rishabh Pant took to Twitter to clarify after a parody news account shared a statement attributed to him, which claimed he was "angry" with the selectors for not picking him in the senior Indian team.
Summary:
Arsenal fans on Sunday used a plane to display a 'One Arsene Wenger...Arsenal Legend' banner as a tribute to mark manager Arsene Wenger's last match in charge of the London club against Huddersfield.
Summary:
Levante were leading 5-1 at one stage before Barcelona netted thrice in a match featuring two hat-tricks, 30 fouls, and 13 yellow cards.
Summary:
A five-foot-long snake slithered its way into the outfield grass during a Minor League Baseball match between San Antonio Missions and Frisco RoughRiders, bringing the match to a brief halt on Friday.
Summary:
World number 10 Petra Kvitova has become the first female tennis player to win the Madrid Open thrice after defeating world number 20 Kiki Bertens on Saturday.
Summary:
CSK on Sunday registered an eight-wicket victory in the top-of-the-table clash to end SRH's six-match winning streak in the IPL 2018.
Summary:
Further, City's 106 goalsÃÂ are the most by a team in a PL season.
Summary:
Summary:
The police on Sunday arrested a 65-year-old labourer for raping a five-year-old and a seven-year-old after using toffees to lure them inside a panchayat building in Andhra Pradesh's Chittoor district.
Summary:
In a video message played at Goa BJP workers' meeting on Sunday, CM Manohar Parrikar said he will return from the US after receiving treatment for a pancreatic ailment in the "next few weeks".
Summary:
After the US withdrew from the 2015 Iran nuclear deal, US National Security Advisor John Bolton has said that the country could impose sanctions on European companies that continue trade with Iran.
Summary:
"We would like banks to fund everything which is genuine, bankable and has the capability to scale up," he said.
Summary:
All flight operations were suspended at Delhi's Indira Gandhi International Airport on Sunday due to a major thunderstorm.
Summary:
Defence Minister Nirmala Sitharaman has refuted the possibility of a unilateral ceasefire between security forces and militants in Jammu and Kashmir.
Summary:
She left a suitcase filled with the cash in a bar after arguing that the compensation to end the relationship should be over â¹10 crore.
Summary:
'Manto' director Nandita Das joined Salma Hayek in the women's protest march against lack of female representation at the 71st Cannes Film Festival.
Summary:
Most exit polls conducted on Saturday predicted a Hung Assembly in the 224-constituency state, suggesting that the JD(S) will be the 'kingmaker'.
Summary:
Rayudu's previous highest score in the IPL was 82(53).
Summary:
Congress' Karnataka CM candidate Siddaramaiah has said he is ready to "sacrifice the Chief Minister's post for a Dalit", adding that Congress high command will decide the next CM if the party wins.
Summary:
During a conference call regarding SpaceX's Falcon 9 Block 5 rocket launch, Elon Musk revealed, "I love NASA so much that literally my password was 'ILoveNASA'".
Summary:
The researchers claim that the hand weighs about the same as a human hand.
Summary:
The tax applies only if SoftBank exits less than a year after investing in Flipkart.
Summary:
Summary:
The proposal follows a ban on petcoke ordered by the apex court in October in the region around New Delhi.
Summary:
The cause of the accident is yet to be ascertained, Sirmaur Deputy Commissioner Lalit Jain said.
Summary:
The Delhi Metro Rail Corporation (DMRC) has told the Delhi High Court that the nominal fee charged for toilets and drinking water at its stations is to prevent misuse.
Summary:
Summary:
Late actress Sridevi's daughter Janhvi Kapoor took to Instagram to share an old picture with her on the occasion of Mother's Day. The picture shows Janhvi as a child posing for the camera.
Summary:
DD's Rishabh Pant pulled an Umesh Yadav delivery in the 5th over towards square leg, where Mandeep leapt to his left and flicked the ball back into play with his outstretched left hand.
Summary:
Dhoni picked the ball and executed the dummy throw at Jadeja, who had come running in from deep mid-wicket.
Summary:
Pakistani spinner Shadab Khan, who slammed his maiden Test fifty against Ireland on Saturday, dedicated it to hockey legend Mansoor Ahmed who passed away aged 49 on the same day in Karachi.
Summary:
The school has made it compulsory for the girls to only wear skin-coloured bras reportedly to avoid any distraction for the male students.
Summary:
The three leaders and the driver died on the spot.
Summary:
In a recently held offensive exercise, the Indian Army tested a military strategy called 'Air Cavalry', used by the US Army to locate and assault enemy ground forces during the Vietnam War. The strategy included using weaponised helicopters to carry out combined action in coordination with tanks and mechanised ground forces.
Summary:
Swamy said that only a "very small fraction" pays income tax, adding, "So, why should you impose this burden on this small fraction".
Summary:
There is a specific target for the next 10 years in terms of volume of ammunition to be produced, officials said.
Summary:
Train compartments at South Africa's Pietermaritzburg station will be covered in khadi cloth on June 7 to commemorate the 125th anniversary of Mahatma Gandhi being evicted from a first-class train compartment over racial discrimination.
Summary:
Videos of a dragon float catching fire during the Festival of Fantasy parade at Disney World in Florida, US, have surfaced online.
Summary:
After carrying out air strikes on Iranian facilities in Syria, Israeli Defence Minister Avigdor Liberman has called on Syrian President Bashar al-Assad to "throw" Iranian forces out of his country.
Summary:
Summary:
The teaser of the Nawazuddin Siddiqui starrer 'Manto' has been released.
Summary:
The dress that actress Aishwarya Rai Bachchan wore at the 2018 Cannes Film Festival's red carpet took 3,000 hours to make.
Summary:
Reacting to the Pakistani cricket team wearing sweaters without the traditional green stripes in the Ireland Test, ex-Pakistan captain Wasim Akram tweeted, "Where is the green stripe gone from our sweater?
Summary:
Talking about ex-Pakistan PM Nawaz Sharif's remarks that Pakistan-based militant organisations carried out the attacks, Singh said he should have accepted it earlier.
Summary:
The theatre owners found CCTV footage of the incident and passed it onto an NGO called Childline, which passed it onto the police.
Summary:
The Public Works Department (PWD) employee who was injured after a Kasauli hotel owner opened fire during a demolition drive earlier this month died on Saturday.
Summary:
The Central Information Commission has directed the Prime Minister's Office to make public records related to ex-PM Lal Bahadur Shastri's mysterious death in 1966.
Summary:
The Jamaat-ud-Dawah (JuD) chief held the prayers at JuD headquarters in Lahore and held a rally outside the headquarters to express solidarity with the Kashmiris.
Summary:
The height of these escalators is equal to the height of a five-storey building, a metro spokesperson said.
Summary:
The convicts, one of whom used to work on the ex-MLA's land, had kidnapped the boy in 2014 for a ransom of â¹50 lakh.
Summary:
The carrier's maiden sea trial follows President Xi Jinping's announcement of plans to build a "world-class" navy.
Summary:
A man in US' Iowa was hospitalised after his pet dog accidentally triggered a handgun.
Summary:
US cybersecurity company Symantec's shares tumbled 33% on Friday, wiping out $6 billion from its market capitalisation after it disclosed an internal investigation.
Summary:
Parineeti Chopra and Sidharth Malhotra will be reuniting after four years in Ekta Kapoor's 'Shotgun Shaadi', according to reports.
Summary:
Actor Kartik Aaryan shared a photoshopped picture with his mother Mala Tiwari in a scene from 'Baahubali 2: The Conclusion' to wish her on Mother's Day. The scene is from the film where the character Sivagami announces birth of Mahendra Baahubali.
Summary:
While speaking about motherhood, actress Rani Mukerji said, "After Adira (was born), I realised, you can love somebody more than yourself and that happens when you have a child." "Motherhood changes a person in a very positive way...
Summary:
All-rounder Krishnappa Gowtham, who was bought by Rajasthan Royals for â¹6.2 crore, has said the wicket of Kings XI Punjab captain Ravichandran Ashwin is one of his favorites in the IPL 2018.
Summary:
Former European champions Hamburg's fans threw flares on the pitch as the team got relegated from Germany's top tier league Bundesliga for the first time despite a 2-1 victory over Borussia Mönchengladbach on Saturday.
Summary:
Royal Challengers Bangalore batsman AB de Villiers shifted his stance to move outside the off stump's wide crease to hit a six over backward square leg.
Summary:
Gene therapies work by inserting DNA instructions into a virus, which conveys them into animal cells.
Summary:
Apple did not disclose the amount of cash the company held outside of the US in its latest quarterly report, according to Bloomberg.
Summary:
After the Income Tax Department filed four chargesheets under the black money law against ex-Finance Minister P Chidambaram and his family, BJP leader and Defence Minister Nirmala Sitharaman said it was a "Nawaz Sharif moment" for the Congress.
Summary:
A Railway Protection Force (RPF) personnel in Mumbai saved a five-year-old girl from falling in the gap between the platform and coach after she slipped.
Summary:
The RBI has declined to share inspection reports for scam-hit Punjab National Bank, in response to an RTI query.
Summary:
Jio alleged that Airtel has not set-up the eSIM provisioning node within India in "gross violation to the license terms".
Summary:
Oil Minister Dharmendra Pradhan has said it was too early to predict the sanctions impact on India's imports of Iranian oil after US withdrew from Iran nuclear deal.
Summary:
Buyers will have to purchase an Amazon.in e-Gift Card worth â¹1,000 from May 13-16 which can be used to buy OnePlus 6 on May 21 and 22.
Summary:
To avoid detection by US spy satellites before Pokhran-II nuclear test, Indian scientists including then project lead Abdul Kalam used false IDs and dressed in Army uniforms as alibis.
Summary:
India conducted its first-ever nuclear test in 1974 at Rajasthan's Pokhran, the sixth country after five permanent UN countries to do so.
Summary:
A man in Hyderabad has filed a complaint with the police after an SBI ATM allegedly dispensed five â¹2,000 notes, which were torn and soiled with ink.
Summary:
A group of people stole crockery and food items after breaking a cordon meant to separate VVIPs and media personnel at the wedding of RJD supremo Lalu Prasad Yadav's son Tej Pratap on Saturday.
Summary:
At least 11 people have been killed and 40 others have been injured in suicide attacks targeting three churches in Indonesia's second-largest city of Surabaya, police officials said.
Summary:
Amid ongoing tensions between European Union countries and the US over the Iran nuclear deal, German magazine Der Spiegel has mocked US President Donald Trump on its latest cover by depicting him as middle finger.
Summary:
After watching superhero movie 'Avengers: Infinity War', Amitabh Bachchan tweeted, "Bura mat manna, ek picture dekhne gaye 'Avengers'...kuch samajh me nahi aaya ho kya raha hai." Earlier, Bachchan had said wherever Hollywood has gone, it has destroyed the local industry.
Summary:
After exit polls predicted a hung assembly in the state, Karnataka Chief Minister Siddaramaiah on Sunday tweeted, "Exit opinion polls are entertainment for the next 2 days." "So, Dear party workers, supporters & well wishers, donâÂÂt worry about exit polls.
Summary:
Speaking about Delhi Daredevils' debutant Sandeep Lamichhane, the first ever Nepali cricketer in IPL, RCB's AB de Villiers said, "Lamichhane's only 17, it's admirable.
Summary:
SpotMini weighs 30 kilograms and can work for about 90 minutes on a single charge.
Summary:
"We understand and value the discussion around Google Duplex...
transparency in the technology is important," a Google spokesperson said.
Summary:
A class-action lawsuit has been filed against Apple over its 'butterfly' MacBook keyboard design, alleging Apple knew of its defects before the product launched.
Summary:
Talking about SpaceX's future plans, CEO Elon Musk has said it "will launch more rockets than any other country in 2018".
Summary:
Talking about the $16-billion Flipkart-Walmart deal, Co-founder of India's first e-commerce website Indiaplaza.com K Vaitheeswaran said the deal made no sense.
Summary:
The terrorists caught hold of Shamim Ahmad in an attempt to steal weapons from the guard post.
Summary:
In a letter to the students union president, Ansari also noted he had been present during the clashes.
Summary:
Congress spokesperson Randeep Surjewala has asked PM Narendra Modi to ensure Pakistan is declared a terrorist state by the entire international community and sanctions are imposed upon it for aiding terrorism.
Summary:
A day after ex-Pakistan PM Nawaz Sharif confirmed that militant organisations based in Pakistan carried out 26/11 Mumbai attacks, yoga guru Ramdev said a solution to this problem is that India should invade Pakistan-occupied Kashmir and make it a part of the country.
Summary:
The legislator is accused of abducting and raping the victim at his home last year.
Summary:
Starbucks Chairman Howard Schultz has said that bathrooms at all of the company's stores are open to everyone whether they are paying customers or not.
Summary:
All US governments are oppressive, regardless of whether they are run by Republicans or Democrats, WikiLeaks source Chelsea Manning has said.
Summary:
UN World Food Programme chief David Beasley, who was on a four-day trip to North Korea, said that the nation is impoverished but starvation is not as high as it was during the famine in the 1990s.
Summary:
Notably, Ranjan had skipped board meetings of ICICI Bank held last week.
Summary:
The customs department is planning to allow shipments by e-commerce companies in India through all Foreign Post Offices, the Finance Ministry has said.
Summary:
The Competition Commission of India has planned to assess ticket pricing algorithms used by domestic airlines to check for possible cartelisation.
CCI Chairperson DK Sikri said the issue came up after the 2016 Jat agitation when ticket prices on Chandigarh-Delhi flights increased sharply.
Summary:
The Gujarat-based firm took loans of over â¹5,000 crore from an Andhra Bank-led consortium, which turned into bad loans.
Summary:
Doctors revealed the 40-year-old patient was in intensive care for three days after the 8-hour surgery in which he required about 15 units of blood.
Summary:
The country has been on high alert following a series of attacks that has killed more than 240 people since 2015.
Summary:
A senior cardiac surgeon has sued Max Super Specialty Hospital in Punjab's Mohali alleging it asked him to pay â¹15,000 as "referral money" for patients referred to him for surgeries.
Summary:
The Kolkata Police on Saturday arrested a man for allegedly masturbating in a bus while looking at two women, who recorded a video of the incident and posted it on Facebook.
Summary:
US President Donald Trump on Saturday praised North Korea's decision to dismantle its nuclear test site in a ceremony scheduled between May 23 and 25.
Summary:
Bitbond uses the cryptocurrency to bypass SWIFT international transfer system to lend money across the globe at low cost.
Summary:
Canara Bank reported maximum net loss at â¹4,860 crore and Allahabad Bank posted a loss of â¹3,510 crore for March quarter.
Summary:
The first song of Harshvardhan Kapoor starrer film 'Bhavesh Joshi Superhero' has been released.
Summary:
Sunny also worked at a tax and retirement firm before she started working in Bollywood films.
Summary:
Sharing an old interview of Rishi Kapoor and herself, Neetu Kapoor wrote, "This was totally unintentional was asked to compare junior and senior!!!
Ranbir is totally down-to-earth, simple and never loses his cool," she had said in the video while Rishi stared at her.
Summary:
American woman Annie Dillard from South Carolina earned her fourth educational degree at the age of 92 from the Midlands Technical College.
Summary:
Lamichhane, aged 17 years and 283 days, dismissed RCB's Parthiv Patel to become the second youngest overseas player to take a wicket in the IPL.
Summary:
Virat Kohli and AB de Villiers slammed 70 and 72* respectively as RCB defeated DD in the IPL 2018 on Saturday.
Summary:
After PM Narendra Modi visited Muktinath and Pashupatinath temples in Nepal on Saturday, Congress leader Ashok Gehlot alleged the move was aimed at influencing Karnataka voters.
Summary:
The fan ran up to Kohli after managing to surpass the security and touched his feet.
Summary:
The match, which will reportedly feature 20 Indian cricketers and 10 foreign cricketers, will be hosted on May 22 before the first playoff.
Summary:
Real Madrid's Welsh forward Gareth Bale struck twice in Cristiano Ronaldo's absence to help Real Madrid register a 6-0 win over Celta Vigo in the La Liga on Saturday.
Summary:
While Lalu's younger son Tejashwi was Deputy CM in Kumar's former government, Tej served as Health Minister.
Summary:
Police reached the spot and rescued all passengers using two boats.
Summary:
"The question is whether we can enforce legal provisions.
What matters is how to enforce our own legal provisions," Rai added.
Summary:
Vishva Hindu Parishad International President Vishnu Sadashiv Kokje has warned that Hindus will launch a nationwide agitation if the Supreme Court gives a verdict against the construction of Ram Temple in Ayodhya.
Summary:
A 75-year-old woman allegedly committed suicide by hanging herself at her home in Hyderabad after her children refused to take her to a wedding function.
Summary:
The Savitribai Phule Pune University has appointed 60 special police officers who have the authority to arrest any individual violating security guidelines without a warrant.
Summary:
The family got out of the car despite being instructed to not leave the vehicle.
Summary:
Clara Harris, a 60-year-old dentist from Texas, was released from prison after serving a 15-year sentence for running over her cheating husband three times in a parking lot in 2002.
Summary:
The RBI has barred public sector lender Dena Bank from taking fresh loan exposure and recruitment of staff, in view of high net non-performing assets and negative Return on Assets.
Summary:
Karnataka on Saturday witnessed a voter turnout of 70% till 6 pm, short of the 71.2% turnout recorded in 2013.
Summary:
Exit polls have predicted Karnataka will face a Hung Assembly as no party will be able to secure the 113 seats required to form the government in the 224-member Assembly.
Summary:
Bihar CM Nitish Kumar, Union Minister Ram Vilas Paswan, and lawyer Ram Jethmalani were among those who attended the wedding.
Summary:
The Election Commission on Saturday ordered re-elections at a polling booth in Hebbal constituency's Lottegollahalli area due to the failure of EVM machines.
Summary:
Delhi Daredevils' all-rounder Abhishek Sharma slammed the highest-ever score by a 17-year-old in the IPL after slamming 46*(19) against Royal Challengers Bangalore on Saturday.
Summary:
Toro Rosso F1 driver Brendon Hartley crashed his car into the barriers during the final practice for the Spanish Grand Prix on Saturday.
Summary:
The Maharashtra government's new Development Plan (DP) for Mumbai legally allows functioning of restaurants on rooftops in the city.
Summary:
After former Pakistani PM Nawaz Sharif admitted that Pakistani organisations carried out the 26/11 attacks, Indian public prosecutor Ujjwal Nikam said the interview proves the Pakistan government was ISI and Pakistan Army's puppet.
Summary:
The Supreme Court has ruled that a woman can file a complaint against her ex-husband for committing cruelty under the domestic violence law even after securing a divorce.
Summary:
Vaani was last seen in YRF's 2016 film 'Befikre' opposite Ranveer Singh.
Summary:
Summary:
Singer-actor Himesh Reshammiya, who got married to his live-in girlfriend Sonia Kapoor at his residence in Mumbai, said, "I have loved her unconditionally and the same is with her." "I am really happy that Sonia and I have started this new journey," added Himesh.
Summary:
US comedy show 'Brooklyn Nine-Nine' was picked up by American TV network NBC after rival network Fox had decided to cancel the show one day before.
Summary:
Talking about making her debut appearance at Cannes Film Festival 2018, Pakistani actress Mahira Khan said, "I feel like I am a player for a Pakistani team." She called it a proud moment for Pakistan.
Summary:
Summary:
Talking about her birthday falling on the same day as Mother's Day this year, Sunny Leone said, "I am not sure about my birthday but I'm looking forward to Mother's Day." Sunny, while discussing motherhood, added, "I am the same person but now...
Summary:
The residents of Karnataka's Tarkaspet village boycotted state assembly elections on Saturday over their demand for Gram Panchayat headquarters in the village.
Summary:
Pakistan chief selector Inzamam-ul-Haq's nephew Imam-ul-Haq collided with wicketkeeper Niall O'Brien and Tyrone Kane while completing a single off Ireland's first-ever Test delivery on Saturday.
Summary:
Congress spokesperson Yatish Naik has asked BJP President Amit Shah to give a Chief Minister to Goa, adding that the state has been "headless for two months" in CM Manohar Parrikar's absence.
Summary:
A 13-year-old boy in Andhra Pradesh's Upparahal village was married to a 23-year-old woman to fulfil the wish of his terminally-ill mother who wanted an adult woman to take of their family after her demise.
Summary:
A man in Delhi used his teen sister to honey trap a 22-year-old youth and later killed him along with three others.
Summary:
Attorney General KK Venugopal has asked Additional Solicitors General to ensure frivolous appeals filed by ministries challenging lower courts' orders in cases pertaining to service matters of individuals do not reach the Supreme Court.
Summary:
He further said that works worth â¹150 crore have been allotted to BSNL under the smart city projects.
Summary:
Over one-fifth of H-4 visa holders with work authorisation live in California.
Summary:
"A big question mark is whether the Indian education system facilitates entrepreneurship," he added.
Summary:
The banking sector is still against lending to the gems and jewellery sector which recently saw the $2.1-billion PNB fraud, SBI managing director Dinesh Khara has said.
Summary:
Airtel shares plunged about 6.4%, taking its total market capitalisation to â¹1.54 lakh crore.
Summary:
Stephen Hawking's memorial service website allows users to enter a birthdate up to December 31, 2038, apparently inviting "time travellers".
Summary:
The runs and boundaries are both the second-most in an IPL match after 469 and 69 respectively in the CSK-RR match in 2010.
Summary:
It is also KKR's highest IPL score, coming 10 years after their previous-best of 222/3, which was registered in the first-ever IPL match.
Summary:
A video showing former Bihar CM Rabri Devi dancing to Shah Rukh Khan's song 'Tukur Tukur' while wearing sunglasses at her son Tej Pratap's mehendi ceremony has surfaced online.
Summary:
Iranian Supreme Leader Ayatollah Ali Khamenei on Saturday called for unity among Muslims and efforts toward scientific advancement, saying this would make it impossible for "enemies" such as the US to dominate Islamic countries.
Summary:
Investment firm Morgan Stanley has sold 37.86 lakh shares of jeweller Mehul Choksi-owned Gitanjali Gems through open market transactions.
Summary:
The Shah Rukh Khan starrer 'Zero' will be filmed at the US Space & Rocket Center.
Summary:
Writer Abhijat Joshi, who is said to make his directorial debut, has reportedly approached Ranbir to star in his film which will be co-produced by Hirani and Chopra.
Summary:
Summary:
"Lots of duas for both of your happiness, health, comfort, and a beautiful family ahead Inshallah.
You guys make a super beautiful couple," a part of his tweet read.
Summary:
After his match-winning knock against CSK, RR wicketkeeper-batsman Jos Buttler took to Instagram to express his feelings, saying it was a "special night".
Summary:
Kolkata Knight Riders opener Chris Lynn smashed a 91-metre six on the bowling of Kings XI Punjab pacer Barinder Sran, which went out of Indore's Holkar Stadium in the IPL 2018 on Saturday.
Summary:
Talking about the impact of BJP's campaigning on Karnataka Assembly election results, CM Siddaramaiah said "This [BJP President] Amit Shah is a comedy show.
It won't make any impact and has not made any impact on the voters of Karnataka.
Summary:
Ahmed had reportedly rejected Pakistan government's offer of a mechanical heart transplantation, which would have been the first such procedure conducted in Pakistan.
Summary:
In the video, Ganguly can be seen sporting an orange shirt paired with a black pant.
Summary:
Facebook collected the data when users opted for sending SMS from the app or giving access to their contact lists.
Summary:
K Vaitheeswaran, Founder of India's first e-commerce website Indiaplaza, has said Walmart bailed out Flipkart's big investors, since the startup was "going down the drain." "In 24 months there would have been no value left, because Amazon would have totally dominated the market," he added.
Summary:
During a joint press meet on Friday, PM Modi said open borders between India and Nepal play an important role in strong bilateral ties.
Summary:
Maharashtra Real Estate Regulatory Authority (MahaRera) has ordered JVPD Properties Private Limited to refund â¹7.1 crore along with a 15% interest to 21 homebuyers in Mumbai.
Summary:
A video shows Bihar Assembly Opposition Leader Tejashwi Yadav dancing to Bhojpuri song 'Lolipop Lagelu' during a pre-wedding ceremony of his brother Tej Pratap Yadav.
Summary:
The order came based on data that 4 lakh card holders had not collected their ration for two months.
Summary:
RJD leader Dina Gope was shot dead by unidentified assailants near his residence in Patna while he was returning from a wedding ceremony on Saturday.
Summary:
She then started teaching two children at home to convince the labourers.
Summary:
A poster showing Lalu Prasad Yadav's son Tej Pratap and his bride Aishwarya Rai as Hindu gods Shiv and Parvati, was put up outside Lalu's residence in Bihar ahead of their wedding today.
Summary:
Mumbai's Dabbawalas will distribute sweets to relatives of patients admitted to various hospitals in Mumbai on May 19, to mark the wedding of Prince Harry and actress Meghan Markle.
Summary:
Macau's billionaire real estate developer Ng Lap Seng was sentenced to four years in prison on Friday for bribing two UN ambassadors in exchange for their support to build a UN conference centre in Macau.
Summary:
Macau's billionaire real estate developer Ng Lap Seng has been sentenced to four years in prison after being found guilty last year of bribing two United Nations (UN) officials to help him build a UN conference centre.
Summary:
Former Pakistani Prime Minister Nawaz Sharif today accepted that militant organisations based in Pakistan were responsible for the 26/11 Mumbai terror attacks that killed 166 people.
Call them non-state actors, should we allow them to cross border & kill 150 people in Mumbai?
Summary:
The student was protesting against an Assistant Professor who had frowned upon her shorts.
Summary:
'Harry Potter' author JK Rowling mocked US President Donald Trump's 'massive' signature displayed on his Iran sanctions memorandum.
Summary:
American TV network ABC has reportedly cancelled Priyanka Chopra's TV series 'Quantico' after three seasons.
The show, which started airing in 2015, was her first American television series while she made her Hollywood debut with the 2017 film 'Baywatch'.
Summary:
The Indian Oil Corporation on Saturday offered â¹1 discount per litre on petrol to people in Karnataka's Belagavi who cast vote in Assembly elections, reducing the cost from â¹75.86 to â¹74.86.
Summary:
Ex-Australian pacer Glenn McGrath sledged ex-Windies batsman Ramnaresh Sarwan during a Test on May 12, 2003, asking the latter, "What does Brian Lara's d**k taste like?" Sarwan responded, "I don't know.
Summary:
Arsenal manager Arsene Wenger, who is leaving the club after 22 years, said that he regrets never visiting India, adding, "I am fascinated by India, I donâÂÂt know why." Wenger further revealed that he encouraged Arsenal to organise a tour to India but it never happened.
Summary:
Walmart will invest $16 billion in Flipkart, making it the world's largest e-commerce deal.
Summary:
A 22-year-old woman who was born without uterus and vagina underwent a reconstruction surgery at a Kerala hospital three months ago, which has been declared successful.
Summary:
The district administration in Himachal Pradesh's Kullu has said after long deliberations, they have convinced a telecom firm to provide mobile connectivity at over 13,000-feet high Rohtang Pass.
Summary:
Hero Enterprise's Sunil Munjal has said Fortis Healthcare had only â¹70 crore in bank when it last declared its earnings and so "there is a crying need right now for the company for liquidity, support".
Summary:
Infosys Independent Director Ravi Venkatesan has resigned from the firm's board with immediate effect to 'pursue an exciting new opportunity'.
Summary:
The total bad loans of six private sector lenders including ICICI Bank and Axis Bank rose to over â¹1 lakh crore as of March-end, compared to â¹28,033.61 crore in September 2015.
Summary:
For their second red carpet appearance at the 71st Cannes Film Festival, actress Kangana Ranaut was seen wearing a catsuit, Deepika Padukone was spotted in a pink gown.
Summary:
Summary:
The new poster of Rajkumar Hirani's directorial 'Sanju' shows Ranbir Kapoor as Sanjay Dutt at the time of his arrest in 1993.
Sharing the new poster on social media, Hirani wrote, "Sanju was first arrested in 1993.
Summary:
Voting in 222 out of 224 Assembly constituencies in Karnataka is underway, and the results of the polls will be declared on Tuesday.
Summary:
Karnataka CM Siddaramaiah called BJP chief ministerial candidate BS Yeddyurappa "mentally disturbed" on Saturday.
Summary:
Summary:
Ashwin, who played four matches for the team last season, might feature for the side in the final two matches of the County Championship 2018.
Summary:
The phenomenon states entangled particles can influence each other even when they're separated over vast distances and not physically connected.
Summary:
The Centre is planning to increase the jail term from existing 3 months to 6 months for those who abandon or abuse their elderly parents.
Summary:
The downsizing of the list to 35 lakh beneficiaries will save â¹150 crore annually.
Summary:
The Jammu and Kashmir government on Friday abolished the imposition of stamp duty on sale of properties, both in rural and urban areas, in women's name.
Summary:
A 46-year-old woman and her daughter were arrested from separate places for smuggling cocaine worth â¹1.5 crore in eye-shadow palette boxes.
Summary:
The Mexican state Oaxaca's electoral body has rejected applications of 17 male candidates who tried registering as transgender women for the country's upcoming elections in a bid to avoid gender quota.
Summary:
US F-22 fighter jets intercepted two Russian bombers in international airspace off the west coast of Alaska on Friday, according to North American Aerospace Defence Command.
Summary:
The convict, who was the victim's uncle, was caught on CCTV camera carrying the girl to a basement.
Summary:
On the film 'Don' completing 40 years, director Chandra Barot revealed that actor Amitabh Bachchan had a fractured leg while shooting the song 'Khaike Paan Banaraswala'.
Summary:
'Don' director Chandra Barot revealed that actor Pran was signed for twice the money offered to Amitabh Bachchan, who played the film's lead.
Summary:
Aishwarya Rai Bachchan, who made her debut on social media by joining the photo sharing app Instagram on Friday, dedicated her first post, in the form of a grid, to her daughter Aaradhya.
Summary:
To avail the offers, the voters have to show their inked fingers and voter IDs.
Summary:
Technology giant Microsoft has filed a patent for a foldable device that features two adjacent screens coupled with another screen on its hinge.
Summary:
Switzerland-based firm Sirin Labs has unveiled the world's first blockchain smartphone at around â¹68,000, which features a built-in 'cold-storage' crypto wallet.
Summary:
University of Bristol scientists have discovered that soft foundational soil beneath the Leaning Tower of Pisa in Italy has helped it stand despite at least four strong earthquakes that have hit the region since 1280.
Summary:
The IPO should be done at no less a valuation than that at which Walmart invested in Flipkart, the filing said.
Summary:
American and Canadian governments have agreed to contribute $34 million for an experiment to search for hypothetical dark matter particles.
Summary:
A woman in Delhi, who was allegedly molested by a rickshaw-puller outside a metro station, has claimed that there was no policeman available at the nearest police post for 45 minutes to assist her.
Summary:
The Delhi government has released a list of 12 fake education boards operating in the capital, stating that CBSE, ICSE and National Institute of Open Schooling are the only certified boards.
Summary:
Iraq began voting on Saturday for its first parliamentary election since defeating the Islamic State.
Summary:
UK-based farmer Donald Ross has shared a photo where his neighbour used a bra to prevent swelling and infection in a cow's mammary glands.
#Farmideas #TodaysFarmingTip," Ross captioned the photo.
Summary:
Shahid Kapoor has confirmed he is starring in the Hindi remake of Telugu film 'Arjun Reddy'.
"Team ARJUN REDDY is READY...Here we go.
Summary:
Actress-turned-activist Pamela Anderson has written a letter addressing rapper Kanye West asking him to help "set free" WikiLeaks founder Julian Assange.
Public support could set him free." Assange has been seeking political asylum in the Ecuadorian Embassy in London since 2012.
Summary:
BJP's chief ministerial candidate BS Yeddyurappa on Saturday announced he will form the Karnataka government on May 17, the result for which will be declared on May 15.
Summary:
Indian Premier League side Chennai Super Kings captain MS Dhoni revealed that he had told the team coach Stephen Fleming before the tournament that he wanted to bat higher in the IPL 2018 edition.
Summary:
Kings XI Punjab batsman Yuvraj Singh, who recovered from cancer in the past, has gifted a signed jersey to 11-year-old Rocky, who is suffering from the disease.
Summary:
Royal Challengers Bangalore batsman AB de Villiers has said that they are "not dead yet" despite losing seven of their first 10 matches in the IPL 2018.
Summary:
Google is reportedly developing a "Pixel Watch", to be launched as the company's first-ever smartwatch later this year.
Summary:
YouTube has launched a feature on its mobile app that will remind users to take a break while they are watching videos.
Summary:
Hence, Mars surface would already be Earth equivalent of 100,000-feet altitude."
Summary:
In its eighth status report to the Delhi High Court, the CBI on Thursday revealed it sought the help of Interpol, an international police organisation, to trace a JNU student who went missing in October 2016.
Summary:
A clash between two groups over illegal water connection in a religious place in Maharashtra's Aurangabad led to riots, wherein over 100 shops were set ablaze and two people were killed, reports claimed.
Summary:
The test message coding got stripped and caused activation of the Emergency Alert System, a National Weather Service spokeswoman said.
Summary:
Former US President George W Bush cited a quote by former British PM Winston Churchill which was actually never spoken by him.
Summary:
Music composer-singer Himesh Reshammiya got married to his girlfriend TV actress Sonia Kapoor in an intimate wedding ceremony at his residence in Mumbai.
Himesh was in a live-in relationship with Sonia before his divorce with his ex-wife Komal in 2017.
Summary:
The ruling Congress has projected incumbent CM Siddaramaiah as its chief ministerial candidate in Karnataka while the BJP's candidate is its ex-CM BS Yeddyurappa.
Summary:
In a brochure for Amazon Web Services Global Summit, the US-based company published a wrong map of India, eliminating Pakistan-occupied parts of Kashmir.
Summary:
Social media major Facebook is planning to launch its own cryptocurrency, a virtual token that would allow its users to make electronic payments, as per reports.
Summary:
During an interview, West Bengal Chief Minister Mamata Banerjee has said that a political party has given "supari" to eliminate her.
Summary:
Talking about the controversy surrounding newly-elected Tripura CM Biplab Deb's remarks, BJP President Amit Shah said, "Abhi naye hain, samajh jayenge (He is new, will understand)." Recently, Deb mistakenly said poet Rabindranath Tagore returned his Nobel Prize to protest against the British government.
Summary:
SpaceX on Friday completed the first flight of Falcon 9 Block 5, which is capable of over 10 flights, with "very limited refurbishment".
Summary:
Researchers showed cooler incubation temperatures turn up a gene called Kdm6b in the turtle's immature sex organs.
Summary:
The service, which is also known as the Nepal-India Friendship Bus Service, was launched as a part of the Ramayan Circuit Bus Service.
Summary:
Pompeo added North Korea could look forward to "a future brimming with peace and prosperity".
Summary:
Chennai Super Kings spinner Harbhajan Singh bowled Rajasthan Royals' English all-rounder Ben Stokes after getting hit for a six on the previous ball.
Summary:
He is contesting from the Badami seat against incumbent Congress CM Siddaramaiah.
Summary:
A Muslim woman was asked to remove her burkha for identification at a polling booth in Karnataka's Belagavi on Saturday, following which she argued with officials and started crying.
Summary:
The Karnataka Assembly elections, for which voting began today, has 2,654 candidates and an electorate of nearly five crore people.
Summary:
BJP's Karnataka CM candidate BS Yeddyurappa on Saturday said, "We (BJP) will get more than 150 seats and I'm going to make the government on May 17." "People are fed up with the Siddaramaiah government.
Summary:
Following the claims of a verbal spat between Kings XI Punjab mentor Virender Sehwag and owner Preity Zinta, the team issued a statement that said that the culture in the team encourages open and frank debate.
Summary:
commit and execute.
It is not the planning but the execution that goes haywire," Dhoni added.
Summary:
Facebook has responded to the Indian government's latest notice over data scandal, detailing the changes it has made to protect its users' information and elections from abuse.
Summary:
China's Didi Chuxing has said it'll suspend carpooling service for a week in the country as it's investigating a passenger's murder.
Summary:
In an attempt to understand how Homo sapiens differ from their closest ancestral relatives, scientists will be growing miniature brain tissue from human stem cells edited to contain Neanderthal DNA.
Summary:
Visitors at US' Utah state park have been dislodging dinosaur tracks imprinted in sandstone and throwing the pieces into a nearby lake.
Summary:
Scientists examining approximately 90 skeletons with deformation characteristics of leprosy have found the oldest strains of the disease came from Britain dating to 500 AD.
Summary:
BJP MLA Surendra Singh has termed PM Narendra Modi a reincarnation of Lord Ram, while calling BJP President Amit Shah as Lord Ram's brother Laxman and Uttar Pradesh CM Yogi Adityanath as Hanuman.
Summary:
As many as 50 horses will be a part of the 'baraat' procession during RJD chief Lalu Prasad Yadav's son Tej Pratap's wedding to party legislature's daughter Aishwarya Rai on Saturday.
Summary:
As part of the plan, the government also plans to look at sector-specific frameworks, reports added.
Summary:
A 20-year-old student in Madhya Pradesh allegedly died due to a heart attack after he wasn't allowed to give his college examinations over non-payment of fees.
Summary:
Voting for 222 of 224 constituencies in the Karnataka Assembly elections began at 7am today and will go on till 6pm.
Summary:
Talking about the controversy surrounding his film 'Parmanu: The Story of Pokhran', John Abraham said, "We're not here to throw mud on anybody's face, we want to keep it clean." Earlier, an FIR was filed against John by KriArj Entertainment, the co-producers of the film, for allegedly cheating them by terminating their contract.
Summary:
A vegetable vendor from Maharashtra's Aurangabad committed suicide after receiving an incorrect electricity bill amounting to over â¹8 lakh for his two-room tin shed house.
Summary:
Karttikeya Mangalam said that a co-passenger suffering from Type 1 Diabetes had forgotten his insulin injecting device.
Summary:
Maharashtra CM Devendra Fadnavis' helicopter travel cost â¹7.2 crore in 2016-17, activist Anil Galgali has said citing an RTI response.
Summary:
A video showing a reported laundryman stitching a body after autopsy at a government-run hospital in Tamil Nadu's Thuraiyur has surfaced online.
Summary:
In his letter to Maharashtra CM Devendra Fadnavis and Mumbai Police, constable Dnyaneshwar Ahirrao sought permission to "beg in uniform" as he hasn't received salary for two months.
Summary:
Storyteller Ankit Chadha died at the age of 30 on Wednesday night after he drowned in the Uksan Lake near Pune.
Summary:
In another incident, a 65-year-old woman was lynched after a mob attacked her and her four relatives.
Summary:
While the post-mortem report stated Atharva Shinde died due to a chest injury, doctors found wounds near his private parts.
Summary:
The authoritarian leader's wealth also included an estate which hosted a mosque, jungle warfare training camp and a private safari park.
Summary:
Johar reportedly wants to celebrate it by bringing the leading actors of the film together.
Summary:
Sonam Kapoor took to Instagram to thank her family post her marriage with Anand Ahuja.
Summary:
Summary:
Responding to Pakistani actress Mahira Khan's wishes on her marriage, Sonam Kapoor wrote, "Thanks so much Mahira!
Can't wait to hang out with you at Cannes (film festival)!" While wishing Sonam, Mahira had tweeted, "Sonam congratulations!
Summary:
"We used to play WWE and broke many beds.
I used to give him the 'Choke Slam' and 'Rock Bottom' and many other WWE moves," he added.
Summary:
Chennai Super Kings' off-spinner Harbhajan Singh visited Ajmer Sharif Dargah with his wife Geeta Basra and daughter Hinaya Heer Plaha ahead of CSK's match against Rajasthan Royals.
Summary:
Mumbai Indians' all-rounder Hardik Pandya has said that he was "born different" and started colouring his hair when he was just 11.
Summary:
SachinÃÂ addedÃÂ the next match Anjali watched from the stadium was his farewellÃÂ Test.
Summary:
World number one Rafael Nadal's record 50-set winning streak ended on Friday after he dropped the Madrid Open quarter-final opening set 5-7 against Dominic Thiem.
Summary:
Wicketkeeper-batsman Jos Buttler slammed an unbeaten 95 off 60 balls to help Rajasthan Royals defeat Chennai Super Kings in the IPL 2018 on Friday.
Summary:
After the first day of Ireland's first-ever Test against Pakistan was washed out on Friday, Cricket Ireland will issue refunds for the 5,100 tickets they had sold for the day.
Summary:
Claiming that its party offices in Agartala were demolished by the government within two months of coming to power, the Congress said the current BJP-led Tripura government's functioning is "worse than the British rule".
Summary:
After learning about the incident, locals started protesting and stopped the police from taking the dead bodies.
Summary:
India Meteorological Department (IMD) has announced that it will give special heat bulletins everyday for 17 heat wave-prone states so that people can plan their day accordingly.
Summary:
Police have launched a probe after five people hailing from Kashmir, including four women, alleged they were thrashed with hockey sticks by over 30 residents of a colony in Southeast Delhi on Friday.
Summary:
The attendance was marked in an arbitrary manner, students added.
Summary:
Bhatt and another 31-year-old Co-founder Vlad Tenev together own about a third or $1 billion each of the startup.
Summary:
In his suicide note, former Maharashtra Anti-Terrorism Squad chief Himanshu Roy wrote that he committed suicide as he was suffering from cancer, Mumbai Police has said.
Summary:
The Election Commission on Friday announced that the voting in Karnataka's RR Nagar Assembly constituency has been postponed to May 28 after nearly 10,000 fake voter IDs were obtained from a flat.
Summary:
Former South African cricketer Herschelle Gibbs was fined South African rand 10,000 on May 11, 2001 for smoking marijuana in a hotel room in Antigua during the tour of Windies.
Summary:
Snap CEO Evan Spiegel pocketed nearly â¹3,400 crore in 2017, in comparison to Tesla's Elon Musk with â¹1,000 crore and Google's Sundar Pichai with around â¹970 crore pay, according to Bloomberg.
Summary:
The Volkswagen Group has admitted that Volkswagen Polo, Seat Ibiza, and Seat Arona may have potentially lethal faults after a Finnish magazine found that the rear left seatbelts in the cars come undone unexpectedly.
Summary:
The Supreme Court Collegium has decided to again recommend Uttarakhand Chief Justice KM Joseph for elevation to SC, days after the government asked the collegium to reconsider its decision.
Summary:
Posters carrying the phrase 'The Lie Lama' along with a picture of PM Narendra Modi with folded hands surfaced in various parts of Delhi including Mandir Marg, Patel Nagar, and Shankar Road on Thursday.
Summary:
She also said she was asked to remove her bra during frisking as it contained metal parts.
Summary:
A UK court has said liquor baron Vijay Mallya, accused of defrauding Indian banks of around â¹9,000 crore, can be called a "fugitive from justice".
Summary:
The Supreme Court Collegium in January recommended the name of Uttarakhand Chief Justice KM Joseph for elevation as SC judge to the Centre.
Summary:
US President Donald Trump has said that former President Barack Obama paid $1.8 billion to free US prisoners from Iran, while he paid nothing for the recent release of three prisoners from North Korea.
Summary:
Gaining $150 million, Tesla CEO Elon Musk ranked 4th, while 5th-placed Google CEO Sundar Pichai earned $144 million.
Summary:
Fortis Healthcare board has picked the bid jointly made by Sunil Munjal of Hero Enterprise and Dabur Group's Burman family.
Summary:
India's industrial output grew 4.4% in March from a year earlier, the slowest expansion in five months, government data showed on Friday.
Summary:
In some of the pictures, Baahubali is seen interacting with the Avengers while another picture shows the character Devasena with Falcon.
Summary:
Summary:
Talking about working with Alia Bhatt in 'Raazi', actor Vicky Kaushal said, "She is extremely humble and she doesn't take being a star for granted." He added that she is one of the most amazing human beings he has ever met.
Summary:
"Being a nice human being is more important than looking good...God was kind...he gave me both," Hardik further said.
Summary:
Afridi named India's current captain Virat Kohli as his favourite Indian cricketer, and chose Brian Lara over Sachin Tendulkar when asked to choose between the two.
Summary:
Neuroscientists at US-based Indiana University have reported the first evidence that animals can mentally replay past events from memory.
Summary:
Yoga guru Baba Ramdev advised former Bihar Chief Minister Lalu Prasad Yadav, who is out on provisional bail, to take care of himself by practicing Yoga.
Summary:
The Delhi Police has filed a case after a woman was thrashed by a mob of 30-40 people allegedly after they objected to her feeding stray dogs in the capital's Sunlight Colony on Thursday evening.
Summary:
Russia had earlier hinted at supplying the missiles to its Syrian ally after the US carried out air strikes in the country.
Summary:
The lawsuit alleges that indigenous children were used as subjects from 1948 to 1953 to "test certain kinds of foods and drugs".
Summary:
Barclays CEO Jes Staley has been fined nearly â¹6 crore for violating the rules of conduct and trying to identify a whistleblower, who had sent letters to Barclays' board in 2016 expressing concerns about a senior employee.
Summary:
Indian table tennis player G Sathiyan, who won three medals on his Commonwealth Games debut last month, has signed with German Bundesliga's top division club ASV Grunwettersbach Tischtennis.
Summary:
Gupta sold his startup, a price comparison site, to Amazon for $240 million in 1998.
Summary:
The official trailer of John Abraham and Diana Penty starrer 'Parmanu: The Story of Pokhran' was released today on the 20th anniversary of the Pokhran Nuclear test.
Summary:
Actress Aishwarya Rai Bachchan has made her debut on social media by joining the photo sharing app Instagram with the account named, 'aishwaryaraibachchan_arb'.
Summary:
After reports claimed that Kings XI Punjab owner Preity Zinta slammed team mentor Virender Sehwag following their loss against Rajasthan Royals, the actress tweeted that her conversation with Sehwag was "blown out of proportion".
Summary:
"While fielding at slips, I would constantly ask Dhoni about the field setting...what the bowler should do...I would try and interact with him," he added.
Summary:
McMillon had earlier said the decision to acquire the stake in Flipkart was among the best decisions Walmart has ever made.
Summary:
He was one of the first two police officers in Mumbai to get Z+ security.
Summary:
Israel on Thursday launched air strikes against Iranian military targets in Syria in response to the attacks.
Summary:
Housing prices in the China-North Korea border city of Dandong rose by nearly 50% after North Korean leader Kim Jong-un's visit to the country, Chinese state media reported.
Summary:
A man in United States has been booked for changing the address of global shipping company UPS to that of his own apartment in Chicago.
Summary:
The student's assignment had 'I am Groot' written against every entry, including name, address, email ID and qualifications.
Summary:
"This (Cannes) is a great platform from where we can let the world know about the film," said Bajpayee.
Summary:
Actor Farhan Akhtar, in a tweet, wrote that rape and death threats cannot be allowed on Twitter.
Summary:
Amitabh Bachchan has said that he does not know direction and will never be able to do that.
Summary:
The driver had smashed the car to an auto-rickshaw, resulting in damage to the car.
"The rickshaw driver was drunk...We are fine.
Summary:
While Sensex rose 289.52 points to close at 35,535, Nifty increased by 89.95 points to close at 10,806.
Summary:
Following Delhi Daredevils' wicketkeeper-batsman Rishabh Pant's hundred against SunRisers Hyderabad on Thursday, actor Suniel Shetty urged Team India selectors to pay attention to the youngster.
"Pant...Pant...
Pant...
Summary:
A video of Mumbai Indians' owner Nita Ambani praying and chanting mantras while sitting in the stands during an Indian Premier League match has surfaced online.
Summary:
England's second-highest Test wicket-taker Stuart Broad beat nearly 60 lakh people to win the Gameweek 37 round of the Fantasy Premier League.
Summary:
Pakistani cricket umpire Aleem Dar has said that he doesn't use his right-hand index finger for making decisions during cricket matches as the finger has a special place in Islam.
Summary:
RCB captain Virat Kohli has revealed there was a "Kansal aunty" in his colony during his childhood, whose house windows he used to break all the time.
Summary:
The 43-year-old also revealed that his six-year-old daughter Harper plays the sport and he gets very enthusiastic while watching her play the sport.
Summary:
Asking for the error to be corrected immediately, Khurana wrote, "Mantri ji, at least show some respect to our National Flag...(It) belongs to all.
Summary:
SoftBank, which invested $2.5 billion in Flipkart last year, would sell the stake for $4 billion, reports had earlier suggested.
Summary:
The Haryana government will not disrupt the supply of Yamuna water to New Delhi till the Supreme Court decides on the matter, it told the apex court on Friday.
Summary:
He further said India's faith is incomplete without Nepal.
Summary:
White House aide Kelly Sadler reportedly mocked cancer-stricken US Senator John McCain's opposition to CIA director nominee Gina Haspel, saying "it doesnâÂÂt matter" because "he's dying anyway".
Summary:
Former Maharashtra Anti-Terrorism Squad Chief Himanshu Roy committed suicide on Friday by shooting himself at his Mumbai residence.
Summary:
The Jharkhand High Court on Friday granted six weeks provisional bail to former Bihar Chief Minister Lalu Prasad Yadav on medical grounds.
Summary:
Fédération Aéronautique Internationale has theoretically demarcated the beginning of space by the KaÃÂrmaÃÂn Line, 100 km above mean sea level.
However, according to NASA, "There is no hard-definable point where space begins...
Summary:
The Congress has released two videos dated 2010 showing Karnataka BJP leader B Sriramulu allegedly negotiating a bribe with then Chief Justice KG Balakrishnan's son-in-law to get a favourable verdict in a case involving mining baron Janardhana Reddy.
Summary:
Activists from Swadeshi Jagran Manch, a pro-Swadeshi organisation, on Thursday protested against the Walmart-Flipkart deal, with several protesters holding banners that read, "Walmart Go Back!" Protesters said the deal is against "national interests" and will hurt PM Narendra Modi's 'Make In India' drive.
Summary:
Luxury automaker Rolls-Royce has launched its first-ever SUV named Cullinan after the largest diamond ever discovered.
Summary:
The Gujarat High Court on Friday upheld the life imprisonment awarded to 14 convicts in the 2002 Gujarat riots' Ode massacre case, in which 23 people were burnt alive in the town.
Summary:
Class 8 Social Studies book in Rajasthan schools affiliated to the Rajasthan Board of Secondary Education has described freedom fighter Bal Gangadhar Tilak as the 'father of terrorism'.
Summary:
Summary:
PM Narendra Modi and his Nepalese counterpart KP Sharma Oli flagged off Indo-Nepal bus service during his two-day Nepal visit on Friday.
Summary:
Malaysia's newly elected PM Mahathir Mohamad has said jailed politician Anwar Ibrahim will be granted full pardon by the country's monarch.
Summary:
Jaypee group has reportedly offered 2,000 equity shares of Jaypee Infratech Limited for free to each homebuyer as part of its â¹10,000-crore proposal to revive its bankruptcy-hit real estate business.
Summary:
Actor Ranveer Singh, while talking about his upcoming film 'Simmba', said, "It is home territory for me." "I feel I can just be myself in it.
Summary:
American adult sci-fi satire animated series 'Rick and Morty' has been renewed for 70 new episodes, the show's creators announced on Thursday.
Summary:
Summary:
Indian Oil Corporation chief Sanjiv Singh on Thursday said the decision to not revise petrol and diesel prices daily since April 24 is not linked with the upcoming state elections.
Summary:
Kings XI Punjab mentor Virender Sehwag could reportedly quit the franchise at the end of the season following a spat with team owner Preity Zinta after the side's loss to Rajasthan Royals this week.
Summary:
It was hearing WBEC's plea challenging the HC order allowing filing of nominations via email.
Summary:
Flipkart CEO Kalyan Krishnamurthy has said there will be "no changes in Flipkart's operating processes" as a result of Walmart's deal to acquire a 77% stake in the Indian startup.
Summary:
In a letter to PM Narendra Modi, RSS-affiliate Swadeshi Jagran Manch said Walmart's $16-billion deal for 77% majority stake in Flipkart will lead to entry of MNCs into retail sector, adding that it will kill the "Make in India dream".
Summary:
Scientists have recorded a wave measuring 23.8 metres (78 foot) off New Zealand coast.
Summary:
Over 100 girls from a government-operated hostel in Madhya Pradesh were forced to defecate and bathe in open over scarcity of water in hostel toilets for a month, warden Kanti Ahirwar said.
Summary:
A 34-year-old gangster arrested in double murder case over gang rivalry has sought Maharashtra Control of Organised Crime Act (MCOCA) court permission for euthanasia.
Summary:
Reacting to the controversy surrounding the portrait of Pakistan's founding father Muhammad Ali Jinnah at Aligarh Muslim University, Pakistan has said it shows India's "growing intolerance, xenophobia and prejudice against Muslims".
Summary:
Ecuadorian Embassy in London has banned WikiLeaks founder Julian Assange from having visitors and taking phone calls, according to WikiLeaks.
Summary:
A cosmetics brand called 'Beauty and Truth' reportedly used French First Lady Brigitte Macron's image for promoting an anti-ageing wrinkle cream, allegedly claiming that Macron also had a share in the company.
Summary:
Its last major eruption in 2010 killed 347 people and caused the evacuation of 20,000 villagers.
Summary:
The veteran actress had passed away at the age of 54 in Dubai in February.
Summary:
Richard Feynman, whose 100th birth anniversary is observed today, won the 1965 Physics Nobel for his work on quantum electrodynamics.
Summary:
Summary:
Rape-accused producer Harvey Weinstein's estranged wife Georgina Chapman, in her first interview following the sexual harassment row involving Weinstein, said she never suspected his behaviour.
Summary:
Addressing a Karnataka rally, PM Narendra Modi said no Congress leader visited Bhagat Singh, Batukeshwar Dutt and Veer Savarkar when they served time in jail during freedom struggle.
Summary:
Police have filed a case against 14 people, including Congress MLA N Munirathna, in connection with nearly 10,000 voter IDs that were recovered from a Bengaluru flat.
Summary:
Suggesting PM Narendra Modi to not "get personal" and "cross limits" during election campaigning, BJP MP Shatrughan Sinha tweeted, "Being PM does not make anyone the wisest in the country....for being PM requires no qualification...only majority." "Issues should be conveyed in most beautiful way, keeping decorum.
Summary:
US software firm IBM has banned all its employees from using any removable portable storage devices such as USBs and SD cards.
Summary:
Created by American company Boston Dynamics, the 75-kilogram robot named Atlas, has two legs and a total of 28 joints.
Summary:
Musk said the tunneling company will be offering free rides to the public in a few months.
Summary:
Summary:
The victim had alleged that Sengar raped her at his home last year.
Summary:
Doctor Ajay Chaudhary, son of a veteran army man, treats soldiers for free in his clinic in Uttar Pradesh's Lucknow.
Summary:
Slamming the government over delay in opening the Eastern Peripheral Expressway, the Supreme Court on Thursday asked the National Highways Authority of India why it was waiting for PM Narendra Modi to inaugurate it.
Summary:
Ahmednagar jail in Maharashtra has set up an internal radio station for its prisoners that will also be entirely run by the inmates.
Summary:
US officials have issued an apology after a security agent at a US airport asked a Canadian cabinet minister to remove his turban during a security search.
Summary:
Five senior Islamic State leaders have been captured in a sting operation carried out by the US and Iraqi intelligence.
Summary:
As a passenger backs off on seeing the crow, the bird picks up the credit card and apparently tries to insert it in the vending machine.
Summary:
Speaking about doing different kinds of roles, Alia Bhatt said, "I want to be a diva...but I also want to be at the top of all film awards." "I want to have the balance of both worlds," she added.
Summary:
Google celebrated the 100th birth anniversary of renowned Indian classical dancer Mrinalini Sarabhai with a doodle on Friday.
Summary:
The Cricket Association for the Blind in India is planning to conduct a T20 League for blind cricketers, similar to the Indian Premier League, between mid-November and mid-December.
Summary:
After announcing $16 billion investment in Flipkart, Walmart on Thursday said it will open 50 new stores in India in next four-five years.
Summary:
An Oxford University-led research has found about 100 new marine species in a rare light zone at depths from 400-1000 feet from the sea surface.
Summary:
NASA declined to comment on the cancellation beyond "budget constraints and higher priorities within the science budget", said the report.
Summary:
Tripura Chief Minister Biplab Kumar Deb on Wednesday mistakenly said that Indian poet Rabindranath Tagore rejected the Nobel Prize in protest against the British government.
Summary:
This comes amid instances of disruption of Namaz in the city in the last few weeks, followed by a 15-member committee being set up to identify sites to offer prayers.
Summary:
A US soldier was found guilty of destruction of US military property for cutting the parachute straps of three Humvees that were dropped in southern Germany during an airborne exercise in 2016.
Summary:
It gets dynamic body decals with an all-black roof wrap, black wrapped pillars and new wheel-arch claddings.
Bold new stripes have been emblazoned on the SUVâÂÂs hood, fenders, rear bumper, and front and rear doors.
Summary:
SRH became the first team to qualify for IPL 2018 playoffs after registering their highest successful chase against DD on Thursday.
Summary:
On the same day, India successfully tested its first indigenous aircraft Hansa-3 and short-range missile Trishul.
Summary:
'Raazi' "is a...finely performed film," said Hindustan Times (HT).
The Times of India (TOI) said "the film rewrites the spy-thriller genre".
Summary:
Former India captain Kapil Dev on Thursday took to Twitter to share a picture of himself with the 1983 World Cup Trophy at the BCCI office in Mumbai.
Summary:
If Rankin plays in Ireland's first-ever Test, he will become the 15th man ever and first in 25 years to play Test cricket for two nations.
Summary:
Spanish world number one Rafael Nadal broke a 34-year-old record by winning his 50th straight set on clay, the most consecutive sets won by a player on a surface.
Summary:
Amid the ongoing controversy over Mohammad Ali Jinnah's portrait in Aligarh Muslim University, BJP MP Savitri Bai Phule said, "Jinnah was a 'maha purush' (great man) and will always remain one." "He actively participated in the freedom struggle of India," the MP added.
Summary:
The West Bengal government will be held liable for any loss of life and property in the run-up to the upcoming Panchayat elections in the state, the Calcutta High Court ruled on Thursday.
Summary:
Plastic surgeons at a US Army centre have successfully transplanted a new ear on a 21-year-old soldier who lost her left ear in a car accident two years ago.
Summary:
Later, India committed to a 'no first use nuclear policy', wherein it will not use the weapons unless attacked first.
Summary:
The hearing of petitions challenging the constitutional validity of Aadhaar in the Supreme Court lasted 38 days over a span of nearly four months, becoming the second longest hearing in the apex court's history.
Summary:
Police have arrested two men who posed as a BJP leader and a CBI officer and sought â¹1 crore from Unnao rape-accused BJP MLA Kuldeep Sengar's wife to drop the case against him.
Summary:
Condemning Iran for firing missiles targeting Israeli territory, the US on Thursday voiced "its support" for Israel's retaliation against Iranian facilities in Syria, calling it their "right to act in self-defence".
Summary:
The US and other countries had lifted sanctions against Iran after it agreed to curb its nuclear programme as part of the deal.
Summary:
It further hailed the efforts of South Korea, Japan, and China for their role in exerting pressure on North Korea.
Summary:
Actresses Deepika Padukone and Kangana Ranaut walked the red carpet at the 2018 Cannes Film Festival.
Summary:
Naseeruddin Shah has said he normally accepts characters who he can empathise with.
Summary:
All distributors in Pakistan have reportedly boycotted Raazi, which deals with the Indo-Pak war of 1971.
Summary:
England woman cricketer Danielle Wyatt, who had once asked Virat Kohli to marry her, has named SunRisers Hyderabad as the favourites to win the IPL 2018.
Summary:
Three police personnel were killed in an accident in Karnataka's Bagalkot when they were on their way to election duty on Thursday.
Summary:
Sachin Tendulkar, in a recent interview, has revealed while everyone used to call former India captain Sourav Ganguly 'Dada', he was the only one who called him 'Dadi'.
Summary:
Barcelona midfielder Arda Turan, currently on loan at ðstanbul BaÃ
ÂakÃ
Âehir, has been banned for record 16 matches for pushing, insulting and threatening a linesman during a Turkish league match against Sivasspor.
Summary:
Former India captain Sourav Ganguly has said that India can win day-night Tests as they have class players.
"Day/Night Test is the way forward...India has reservations but that's a long-term future for Test cricket," Ganguly further said.
Summary:
SpaceX said the rocket and payload were in good health.
Summary:
A 15-year-old girl in the UK suffered second-degree burns after deodorant was sprayed on her as part of 'The Deodorant Challenge'.
Summary:
Supreme Court judge Justice J Chelameswar has written to CJI Dipak Misra urging the Collegium to meet and reiterate their decision to elevate Uttarakhand Chief Justice KM Joseph as an SC judge.
Summary:
Notably, the 20-year-old had hit the fastest century by an Indian player off 32 balls in January this year.
Summary:
Delhi Daredevils' wicketkeeper-batsman Rishabh Pant smashed 128*(63) against SunRisers Hyderabad on Thursday to record the highest-ever score by an Indian in the history of Indian Premier League.
Summary:
Mahathir, who earlier led the country from 1981-2003, defeated scandal-hit Najib Razak in the general election, ending six decades of rule by a coalition he once led.
Summary:
US President Donald Trump on Thursday took to Twitter to share the details of his meeting with North Korean leader Kim Jong-un.
Summary:
Talking about his tennis elbow in a recent interview, cricket legend Sachin Tendulkar said that there were a billion coaches in India saying that his bat was too heavy.
Summary:
Uber has received designs for 'skyports' from where its flying taxis will take off and land to board and unload passengers.
Summary:
David Goodall, Australia's oldest scientist, has ended his own life at a clinic in Switzerland as liberal euthanasia is illegal in Australia.
Summary:
Sreenath K, a coolie at the Ernakulam Junction railway station in Kerala's Kochi, has cracked the Kerala Public Service Commission (KPSC) exam using the station's free WiFi for preparation.
Summary:
A 65-year-old woman was lynched to death by a mob after being mistaken as a child trafficker in Tamil Nadu's Tiruvannamalai.
Summary:
The Sepoy Mutiny was started 161 years ago on May 10, 1857, after sepoy Mangal Pandey was hanged to death.
Summary:
A student who appeared for the National Eligibility cum Entrance Test (NEET) in Kerala has claimed she was asked to remove her bra before entering the exam as it had metal hooks.
Summary:
He further expressed hope that Parrikar would recover soon and resume his responsibilities as the CM of the state.
Summary:
Union Minister Nitin Gadkari has urged Prime Minister Narendra Modi to donate one month's salary to the Centre's Clean Ganga Fund.
Summary:
Cocaine is delivered to homes faster than pizzas, the Global Drug Survey has revealed.
Summary:
The global benchmark Brent crude rose to a 3.5 year high of $77 per barrel after US President Donald Trump pulled out of the Iran nuclear deal.
Summary:
Ex-Indian cricket team captain Bishan Singh Bedi took to Twitter to share a picture from the wedding ceremony of his son Angad and actress Neha Dhupia.
Summary:
While talking about married female actresses in Bollywood, actor Arjun Kapoor said, "I'm talking to you after the wedding of my sister Sonam Kapoor, she will continue working." "Anushka Sharma has been working after her wedding.
Summary:
After a picture of a fan's image covered by 0-0 scoreline graphic during the Huddersfield-Chelsea match surfaced online, a user tweeted, "The Mask of Zero." Other tweets read, "That's actually amazing!
Summary:
Sachin Tendulkar, who made his Test debut against Pakistan in Karachi as a 16-year-old, revealed that he thought his life's first-ever innings in Karachi would also be his last given the Pakistani pace attack he was facing.
Summary:
Apple has cancelled its plans for a $1-billion data center in Ireland, which the company first announced in 2015.
Summary:
A special card will be introduced to people from the state who are entitled for the free treatment.
Summary:
Further, thunderstorm accompanied with squalls is likely to hit the state on May 13, the India Meteorological Department said.
Summary:
Fighting equipments like tanks, attack helicopters and drones were used in the exercise.
Summary:
A white Yale University graduate student called the police after she found a black student sleeping in a common room of their dorm.
Summary:
UK Prime Minister Theresa May has apologised for the "appalling treatment" of Libyan dissident Abdel Hakim Belhaj and his wife Fatima Boudchar.
Summary:
Bharti Airtel is reportedly planning to raise up to $1.5 billion (â¹10,000 crore) by listing 25% stake in its Africa unit in London or South Africa by early 2019.
Summary:
When used to purchase the device, buyers will get an additional â¹1,000 cashback.
Summary:
Speaking at the ongoing Cannes Film Festival, actor Huma Qureshi revealed she had to deal with people making sexual advances at her not only from the film industry, but also from different professions.
Summary:
Tiger Global, which invested $1 billion, is expected to sell 75% of its $4-billion stake.
Summary:
Meanwhile, Congress President Rahul Gandhi and CM Siddaramaiah campaigned for the party.
Summary:
Kohli will now play a county match from June 25-28 and face Ireland on June 28.
Summary:
The forecast predicts thunderstorm with squall will hit West Bengal and Sikkim on Thursday, and heavy rain is expected in at least 10 states including Tamil Nadu and Kerala.
Summary:
A 36-year-old man in Mumbai died allegedly after he got into a fight with four teenagers over delay in getting down from a taxi.
Summary:
Summary:
Welcoming US President Donald Trump's decision to pull the country out of the nuclear deal, Saudi Arabia's Foreign Minister Adel al-Jubeir said the kingdom will acquire nuclear weapons if Iran does.
Summary:
After European countries failed to prevent US President Donald Trump from pulling out of the Iran nuclear deal, German Chancellor Angela Merkel on Thursday said the European Union can no longer rely on the US to "protect" it.
Summary:
The strikes were carried out in response to Iranian attacks on an Israel-occupied territory.
Summary:
With business sentiment at its "weakest" in four years, India has slipped to the 6th position globally in business optimism index for the first quarter of this year, according to a survey by Grant Thornton.
Summary:
The letter is a spoof of the note that the 'Avengers: Infinity War' makers had published on Twitter.
Summary:
After Sonam Kapoor changed her name to Sonam Kapoor-Ahuja on social media, Bangladeshi author Taslima Nasreen asked if her husband Anand Ahuja would also change his name to Anand Ahuja-Kapoor.
Summary:
According to reports, Kangana Ranaut and Aamir Khan will star together in an upcoming film.
Summary:
While talking about Salman Khan's marriage, singer Mika Singh said, "I think he is the real King.
Summary:
SRH leg-spinner Rashid Khan has said he still watches videos of former leg-spinners Shahid Afridi and Anil Kumble as they were "quick in the air and accurate".
Summary:
The Pakistan XI included names which read, Inzamam-ul-Haq's best friend, Inzamam-ul-Haq's niece, Inzamam-ul-Haq's nephew and Inzamam-ul-Haq's bicycle, among others.
Summary:
England's cricket board has introduced a new 'Rooney Rule' under which at least one black, Asian or minority ethnic candidate will be interviewed during the recruitment stage for all national coaching positions.
Summary:
Australian cricketers Steve Smith and David Warner, who are serving a year-long ban for being a part of the ball-tampering scandal, have been cleared to play club cricket in Australia.
Summary:
Anderson also praised Younis' slip fielding skills and reliability.
Summary:
Reacting to billionaire Elon Musk's girlfriend Grimes wearing a Tesla symbol-like necklace, a user tweeted, "The tesla necklace she's wearing is probably controlling her mind".
Summary:
Israeli researchers have found that male fruit flies enjoy orgasms more than alcohol.
Summary:
A man was crushed to death while riding a scooter after being caught between two buses in Delhi, according to reports.
Summary:
Urging the US not to "hinder" other parties from making the Iran nuclear deal work, UK Foreign Secretary Boris Johnson urged the country to "spell out" further plans after its withdrawal from the agreement.
Summary:
A German court on Wednesday ruled against a Muslim primary school teacher in Berlin, barring her from wearing headscarf to work.
Summary:
The female players will also receive equal prize money, equal rights for image use and will also have the same travel benefits as their male counterparts.
Summary:
The deal boosted Flipkart ESOPs to a reported amount of $2 billion.
Summary:
A woman has filed a lawsuit against Chris Brown and a fellow rapper, alleging she was repeatedly raped and sexually assaulted at Brown's home during a party last year.
Summary:
With earnings of â¹256.91 crore, 'Avengers: Infinity War' has become the first Hollywood film to enter the â¹200 crore club in India.
Summary:
Referring to India's biggest e-commerce platform Flipkart's sale and at the same time US and China hosting multiple global internet giants, former Flipkart CPO Punit Soni tweeted, "Hope one day, India also has a homegrown global internet giant of its own." He further hopes for "better regulatory environment...
Summary:
The Delhi government has sent a derecognition notice to a private school for not providing free books and uniforms to students admitted under the Economically Weaker Section (EWS) category.
Summary:
Comparing women to Goddess Kali, Union Minister Babul Supriyo urged them to carry a sword in their hand to "scare away anti-social elements".
Summary:
Summary:
Pakistan's Parliament has passed a landmark bill granting fundamental rights to transgenders and outlawing discrimination against them.
Summary:
An investigation has been launched after a human foot washed up on the shores of Canada's British Columbia, making this the 14th time such an incident has occurred since 2007.
Summary:
A video posted by the zoo showed the bear leaning out of a vehicle's window and licking ice cream.
Summary:
Following Walmart's acquisition of Flipkart, Future Group Founder and CEO Kishore Biyani said he will sell a minority stake to the "strongest global retailer." "There are going to be alliances which will be formed and we believe that our alliance will be the strongest one," Biyani added.
Summary:
Talking about Sonam Kapoor's wedding reception wherein Shah Rukh Khan and Salman Khan danced together, singer Mika Singh said, "It's very difficult to make the two superstars dance together on stage." He added that both of them came on stage and "took the whole atmosphere to another level".
Summary:
A picture of a fan with a placard reading, 'Rohit, My sister loves you', during the MI-KKR match at the Wankhede Stadium has surfaced online.
Summary:
BJP leader Piyush Goyal on Thursday called Congress President Rahul Gandhi's media address in Bengaluru "tutored".
Summary:
Brazilian football legend Romario has advised Brazil's 21-year-old forward Gabriel Jesus to have enough sex ahead of the 2018 World Cup. He further said making the most of off days, concentration on match days and during the games are key to WC success.
Summary:
Adding that she and her family are scared, the girl claimed the leader's son had been sending her love letters daily.
Summary:
Summary:
Two people were killed and one was injured in the US on Tuesday after a Tesla Model S car crashed into a concrete wall, reportedly causing its battery to catch fire.
Summary:
Adding that Flipkart's evolution has been remarkable, Kola reminisced that Kalaari didn't invest in Flipkart a decade ago as it was unsure of e-commerce's growth.
Summary:
Among the 12 skeletons, the oldest HBV genome was found to be 4,500 years old.
Summary:
University of California researchers have suggested that observing seasonal changes on other worlds could signal the existence of possible alien life as seasonality is biologically modulated on Earth.
Summary:
Shridhar got to know about his blood type in 2002 and has donated blood 45 times since.
Summary:
President Ram Nath Kovind on Thursday visited the Siachen glacier base camp in J&K to interact with the soldiers posted there.
Summary:
West Bengal police on Wednesday held a reception ceremony and organised the wedding feast of two former Maoists.
Summary:
US President Donald Trump and First Lady Melania Trump personally greeted three US prisoners freed by North Korea.
Summary:
Speaking at the US-India Aviation Summit in Mumbai, Civil Aviation Secretary RN Choubey has said no American carrier has expressed a formal interest for Air India.
Summary:
World's largest diamond producer De Beers on Thursday said it tracked 100 high-value diamonds through the cutting, polishing and manufacturing process to a final retailer using blockchain technology.
Summary:
Actress Neha Dhupia took to Instagram to reveal that she got married to actor Angad Bedi in a traditional Sikh wedding ceremony on Thursday.
Hello there, husband!" Neha and Angad were reportedly dating for almost four years before getting married.
Summary:
He further said he empathises with Cameron Bancroft, who tampered with the ball on being asked by David Warner.
Summary:
Flipkart's current valuation of $20.8 billion is equal to the combined market capitalisation of the top four offline retailers listed in India.
Summary:
After Sachin Bansal announced his departure from Flipkart following the deal with Walmart, Binny Bansal said it will be "emotional for me that Sachin won't be a part of next leg of the journey." While Sachin will sell his 5.5% stake in Flipkart, Binny will retain his shares.
Summary:
NGO named Youth for Anti-Corruption has claimed that it performed a sting operation on the Road Transport Authority in Hyderabad, wherein it allegedly found bundles of cash pinned to several forms.
Summary:
Russian President Vladimir Putin welcomed a World War II veteran to walk beside him after he was pushed away by one of his guards during Victory Day celebrations.
Summary:
Bank of India has filed a lawsuit against jeweller Nirav Modi in a Hong Kong court to recover $6.25 million he received based on Letters of Undertaking secured illegally.
Summary:
Jet Airways has said that the Ministry of Civil Aviation has not given approval for the merger of its subsidiary Jet Lite with itself.
Summary:
The net worth of the Walton family, which controls the world's largest retailer Walmart, is about $150 billion, according to Forbes.
Summary:
Summary:
Actress Ankita Lokhande, while talking about her upcoming Bollywood debut, said, "I'm blessed to be starting my film career with 'Manikarnika: The Queen of Jhansi' alongside amazing talents." Ankita will play the role of 'Jhalkari Bai', a soldier in Rani Laxmibai's army in the film.
Summary:
A new song titled 'Bhangra Ta Sajda' from Sonam Kapoor, Kareena Kapoor, Swara Bhasker and Shikha Talsania starrer 'Veere Di Wedding' has been released.
'Veere Di Wedding' is scheduled to release on June 1.
Summary:
Actress Sonam Kapoor and her husband Anand Ahuja took to Instagram to share the first pictures with each other from their wedding ceremony which took place on Tuesday.
Summary:
Addressing a press conference in Karnataka, Congress President Rahul Gandhi said, "I don't think they (BJP) understand meaning of the term Hindu.
BJP doesn't like this," he added.
Summary:
While VV Giri was Sharma's paternal grandfather's brother, the leader's father was S Radhakrishnan's nephew.
Summary:
Addressing a gathering in poll-bound Karnataka, Prime Minister Narendra Modi said that BJP has the highest number of MPs belonging to the SC and ST communities.
Summary:
Addressing a press conference ahead of the Karnataka polls, Congress President Rahul Gandhi alleged that half of the BJP's manifesto was copied from the Congress' manifesto.
Summary:
The Australian cricket team has called off its upcoming Bangladesh series at home, citing the 'financial viability' of the series as it coincides with Australia's local football season.
Summary:
Miranda is already a mother to seven-year-old son Flynn whom she shares with her ex-husband, actor Orlando Bloom.
Summary:
An Ethiopian national was arrested at the Mumbai airport for allegedly attempting to smuggle 60 kg of Miraa (Khat) leaves, a globally banned herbal drug, worth â¹1.5 crore.
Summary:
Astronomers have discovered that asteroid 2004 EW95, formed in the asteroid belt between Mars and Jupiter, was flung billions of kilometres to the Kuiper Belt beyond Neptune.
Summary:
A Ludhiana court on Wednesday sentenced a youth to life imprisonment for causing the death of his 16-year-old co-worker by inserting a hose pipe into his rectum in a tyre workshop.
Summary:
A 45-year-old woman chopped off her tongue and offered it at a temple in a village in Madhya Pradesh, the police said today.
Summary:
After a lawyer was allegedly shot dead by two unidentified motorcycle-borne assailants in Uttar Pradesh on Thursday, a group of lawyers set a bus on fire while protesting against his murder in Allahabad.
Summary:
Responding to the Archaeological Survey of India (ASI) blaming algae on higher parts of the Taj Mahal for poor maintenance, the Supreme Court said, "Can algae fly?" The court added, "This situation would not have arisen if the ASI had done its job.
Summary:
Canadian PM Justin Trudeau will deliver a formal apology in the Parliament for the country's refusal to admit a ship carrying Jewish asylum seekers fleeing Nazi Germany, months before World War II.
Summary:
Germany has approved legislation allowing refugees with 'subsidiary' status to bring their direct relatives to the country.
Summary:
This marks Israel's most significant military action in Syria since the civil war started in 2011.
Summary:
On May 10, 1901, Indian scientist Jagadish Chandra Bose became the first to prove that plants have a definite life cycle and reproductive system, like any other life form.
Summary:
Sachin will also sell his 5.5% stake for a reported amount of $1 billion.
Summary:
At a press conference ahead of the Karnataka polls, Congress President Rahul Gandhi today said, "Rapes are a political issue.
Summary:
Stating that PM Narendra Modi has "got anger inside of him", Congress President Rahul Gandhi on Thursday said, "I'm a lightning rod for anger, I attract anger.
Summary:
Ahead of the Karnataka polls, Congress President Rahul Gandhi today said, "My mother is more Indian than many Indian people I have met." He added, "My mother is Italian, My mother has lived larger part of her life in India...My mother sacrificed for this country.
Summary:
Addressing an election rally on Wednesday, Congress President Rahul Gandhi said, "First, we'll remove you (BJP) from Karnataka.
Summary:
While addressing Flipkart's employees after confirming the acquisition of 77% stake in the startup, Walmart CEO Doug McMillon said the deal is among the best decisions they have ever made.
Summary:
Applauding the Flipkart-Walmart deal, Paytm Founder Vijay Shekhar Sharma said it is a perfect answer to those who were dismissive of Indian startups.
Summary:
Researchers have investigated Earth's climate over half a billion years ago by combining climate models and chemical analyses of fossilised remains about 1 millimetre long from the first animals to produce shells.
Summary:
Companies like Boeing, Lockheed Martin also want to set up their plants in India, Singh added.
Summary:
A notification in this regard will be out in a week's time, Gadkari added.
Summary:
Last year, the ACB had filed three FIRs in the case involving the Delhi CM's late brother-in-law.
Summary:
The Supreme Court on Wednesday slammed the Archaeological Survey of India over blue and green patches on the Taj Mahal and its failure to preserve the monument.
Summary:
Twelve tonnes of melted chocolate covered a highway in Polish town Slupca after a lorry crashed through a traffic barrier and overturned.
Summary:
Glassdoor also provides recruiting solutions to over 7,000 employers, including 40% of Fortune 500 companies.
Summary:
A Shanghai court has sentenced Wu Xiaohui, the founder of the Chinese insurance company Anbang, to 18 years in prison for fund-raising fraud and embezzlement worth more than $10 billion.
Summary:
Commenting on the deal value, McMillon said he is confident Walmart is paying the appropriate value for the business based on its potential.
Summary:
Music composer Qaran has revealed that the song 'Tareefan' from the film 'Veere Di Wedding' was composed on a flight.
Summary:
Dhoni has hit 27 sixes in 10 IPL matches, the most by any player in this edition.
Summary:
Pakistan cricket umpire and a member of the ICC Elite umpire panel Aleem Dar has said that according to him no player can come near Indian captain Virat Kohli at the moment.
Dar also said, "Virat Kohli is the world's best batsman in all formats.
Summary:
Uber is planning to deliver food using drones in the US, as part of its commercial test program approved by the federal government on Wednesday.
Summary:
Talking about Walmart's $16-billion deal with Flipkart, Future Group CEO Kishore Biyani said, "I think it is a change of hands from a financial investor to a strategic investor." Further, referring to the deal's significance, he said, "It is a combination of online and offline...
Summary:
While talking about Walmart acquiring controlling stake in India-based Flipkart, the US-based retail giant's CEO Doug McMillon said there won't be any bureaucracy in the US to try and run Flipkart.
Summary:
The Confederation of All India Traders (CAIT) has said the Walmart-Flipkart deal will only benefit the venture capitalists, investors and promotors, and not the country.
Summary:
All J&K parties on Wednesday suggested appealing to the central government for a unilateral ceasefire with militants during the upcoming holy month of Ramzan and the Amarnath Yatra.
Summary:
The Kerala High Court recently decided the name of a child after his interfaith parents could not decide and contested each other's choices before the court.
Summary:
Nikon has launched an 'I Am Expressing Myself' contest and stand a chance to win a Nikon D-SLR by participating in the same.
Summary:
The 32nd WEF by Edwise, India's Leading Overseas Education Consultant, is being held in 15 Indian cities from 10-27 May. Students will get free counselling, one-on-one interaction with delegates of over 80 universities from 12 countries and receive assistance in program selection, institution selection, applications, visas.
Summary:
Chandra was a blogger and on one of his posts, a user named Sachin gave Flipkart's website address, through which he ordered the book.
Summary:
Human rights activist Nelson Mandela, who was inaugurated as the President of South Africa on May 10, 1994, was the first black leader of the country.
Summary:
The original Iron Man suit worn by Robert Downey Jr in the first Marvel Cinematic Universe film in 2008 has been stolen, the Los Angeles Police Department has said.
Summary:
Flipkart Chief Executive Officer Kalyan Krishnamurthy will hold on to the position after Walmart's $16-billion investment for a controlling stake in the Indian e-commerce major.
Summary:
The 52-year-old was losing about half litre of cerebrospinal fluid through a hole in the skull daily.
Summary:
Supreme Court Bar Association (SCBA) President Vikas Singh has said that the trigger for all the crisis involving the apex court is "politics that is now getting into the courtroom".
Summary:
The Supreme Court on Wednesday held that the Indian Railways must pay compensation in case of death or injury while boarding or deboarding trains.
Summary:
Hearing a case on Aadhaar authentication, Supreme Court judge DY Chandrachud recalled the problems his mother, who was suffering from Alzheimer's disease, had to face in receiving her pension.
Summary:
Expressing concern over Kashmiri youth picking up weapons, Indian Army chief General Bipin Rawat said he wants to tell them that 'Azadi' isn't possible and it won't happen.
Summary:
Replying to a question on if he believes himself worthy of a Nobel, US President Donald Trump said, "The only prize I want is victory for the world." He further said that he is only interested in negotiating a nuclear-free Korea.
Summary:
Ahead of his meeting with Donald Trump, North Korean leader Kim Jong-un has said his summit with the US President "would be a historic chance to build good future".
Summary:
A 4-year-old cryptocurrency wallet and cold storage startup, Xapo, holds around $10 billion worth of Bitcoin in its underground vaults for its clients, according to Bloomberg.
Summary:
An actress died after being bitten by a snake while playing the role of Maa Manasa (goddess of snakes) in West Bengal on Wednesday.
Summary:
Actress Meghan Markle's wax statue was unveiled at the Madame Tussauds London museum ahead of her wedding to UK's Prince Harry on May 19.
Summary:
After nearly 10,000 fake voter IDs were found in a flat in Karnataka, Chief Election Officer Sanjiv Kumar said, "Nobody has broken into our system and no new voter ID cards have been made." "This is a very serious matter.
Summary:
But tonite as the 'Boss' I need to apologise to the fans for the lack of spirit", Shah Rukh tweeted.
Summary:
Manchester City thrashed Brighton 3-1 to reach 97 points, breaking the EPL points table record of 95 points set by Jose Mourinho's Chelsea in the 2004-05 season.
Summary:
Barcelona are now just two games away from completing a historic unbeaten La Liga campaign.
Summary:
A video shows Elon Musk dancing with his girlfriend Canadian musician Grimes at the recent Met Gala fundraising event.
Summary:
Former Paytm employee Beerappa Gadda has been arrested by the Cyber Cell of Rachakonda Police in Hyderabad for duping people through fake KYC verification.
Summary:
It's time the world knew." Earlier, Musk admitted he is dating Grimes after the two appeared at the Met Gala together.
Summary:
After US President Donald Trump directed NASA to send astronauts back to the Moon, NASA administrator Jim Bridenstine has said that a return to the surface of the Moon would not undermine the efforts to send humans to Mars.
Summary:
The Central Bureau of Investigation (CBI) has booked 40 people in relation to the alleged recruitment of 34 ineligible candidates in the Indian Army during a recruitment drive in Lucknow in 2016-17.
Summary:
Eight batchmates of a martyred CRPF soldier contributed â¹5 lakh towards the wedding of his sister.
When his batchmates received his sister Aarti's wedding invitation this year, they decided to help fund the ceremony, stating, "Rakesh was our batchmate.
Summary:
ICICI Bank has said it has not received any communication from the RBI over allegations of impropriety faced by CEO Chanda Kochhar.
Summary:
Kim Jong-un is not the President of North Korea, as the post was not reassigned after the death of his grandfather Kim Il-Sung in 1994.
Summary:
Addressing an election rally in Karnataka's Chikmagalur on Wednesday, PM Narendra Modi said the Congress was spreading lies about a hung assembly in the state as it fears its defeat.
Summary:
Vishva Hindu Parishad Secretary Sharan Pumpwell has said that it is not wrong to beat up a girl who is drinking and dancing in a pub.
That is why the youth want to put an end to such things," he further said.
Summary:
Summary:
US-based retail giant Walmart agreed to buy 77% stake of Flipkart for $16 billion, making it the largest e-commerce deal in the world.
Summary:
India's biggest e-commerce startup Flipkart began as an online bookstore at a 2BHK apartment in Bengaluru's Koramangala 11 years ago by IIT Delhi alumni Sachin and Binny Bansal.
Summary:
It further noted that the reliance on these reports in judicial proceedings doesn't impact Parliamentary privileges.
Summary:
Hearing a case regarding medical admissions in Kerala, the Supreme Court said that lawyers are targeting everyone in the court and are destroying the judicial institution.
By one arrow you want to kill all...If this institution is destroyed then you people won't survive," Justice Arun Mishra said.
Summary:
US President Donald Trump on Wednesday issued a veiled threat to revoke the credentials of media outlets over their coverage of "fake news".
Summary:
This is the ninth outbreak of Ebola since the discovery of the virus in Congo in 1976.
Summary:
Haspel's appointment, pending approval by the Senate, is facing opposition over her role in the torture of suspected al-Qaeda members in 2002.
Summary:
Hollywood actor Sylvester Stallone took to social media to share the first poster of his upcoming film 'Rambo V'.
Summary:
Actor Jada Pinkett Smith said she regretted dating her husband Will Smith in 1995 before his divorce was finalised from his first wife Sheree Zampino Fletcher.
Summary:
Summary:
Actor Sanjay Dutt will be playing the role of the antagonist in the upcoming film 'Shamshera', which will star Ranbir Kapoor in the lead role.
Summary:
With the victory, Mumbai Indians moved to the fourth position on the IPL 2018 points table.
Summary:
KKR took to Facebook to share a video of 18-year-old batsman Shubman Gill, who belongs to Punjab, learning Bengali.
Summary:
RR will don a pink jersey for their home match against CSK on May 11 to spread awareness about early cancer screening.
Summary:
Fast bowler Siddarth Kaul, who has been named in India's T20I and ODI squad for Ireland and England tour, said that he owes a lot to his SunRisers Hyderabad teammate Bhuvneshwar Kumar.
Summary:
The 19-year-old slammed a total of six sixes during his 21-ball 62-run knock.
Summary:
Chennai Super Kings captain Mahendra Singh Dhoni, during an event, revealed that the name of his first crush was Swati and jokingly added, "Don't tell my wife, okay?" Dhoni further said that he had his first crush when he was in the 10th standard and had met her last in 1999.
Summary:
The ministry has made arrangements to share the daily data with the force through email.
Summary:
A 15-year-old girl who was abducted and married to a gangster at gunpoint last month has returned home in Bihar.
Summary:
The rehabilitation package is aimed at helping people who fell into the Maoists' trap, the Kerala government said.
Summary:
The SCBA organises a farewell function for the retiring judge in the SC lawns on his final working day.
Summary:
A woman was stoned to death in Somalia by the al-Qaeda-linked al-Shabaab militant group which accused her of marrying 11 men without seeking a divorce.
Summary:
Summary:
Founded by IIT Delhi alumni Sachin and Binny Bansal, Flipkart's first workplace was a 2BHK apartment in Bengaluru.
Summary:
Walmart on Wednesday announced it will acquire 77% Flipkart stake for $16 billion at a reported valuation of $20.8 billion.
Summary:
Interestingly, the valuation of Flipkart nearly doubled to $21 billion after Walmart's buyout.
Summary:
The Earth-Moon distance was found using time taken by reflected light to return while its accuracy was improved following the installation of retroreflectors on Moon by Apollo 11 astronauts.
Summary:
Richa Chadha received rape and death threats on Twitter where she was asked to leave the country if she wanted to be safe.
Summary:
Last year, eBay had sold its Indian entity to Flipkart in return for a minority stake in the Indian e-commerce giant.
Summary:
The youth's family claims the incident was not an accident and he was deliberately killed.
Summary:
Trump added that Pompeo had a "good meeting" with Kim Jong-un in North Korea.
Summary:
The World Bank has dismissed reports that former Pakistan PM Nawaz Sharif laundered $4.9 billion to India.
Summary:
They also burned a piece of paper representing the country's 2015 nuclear deal with world powers.
Summary:
China and India should aim for 'growth-friendly' fiscal consolidation to promote sustainable, inclusive growth as they together contribute 45% to global growth, the International Monetary Fund (IMF) has said.
Summary:
The bank manipulated the bank bill swap rate 5 times between February and June 2012.
Summary:
Billionaire Mukesh Ambani danced with daughter Isha Ambani at her engagement party on Monday to Harshdeep Kaur's song 'Dilbaro' from Alia Bhatt's upcoming film Raazi.
Summary:
Dangal actress Sanya Malhotra has said that she can't believe that she is an actor, adding, "I think it will take some time for this to sink in." "Glad I'm getting to work with brilliant directors and actors...I'm enjoying each and every day of being an actor," she said.
Summary:
Actress Soni Razdan has said that she is happy that today everyone knows her as her daughter Alia Bhatt's mother.
Summary:
Pakistani sports presenter Zainab Abbas, whose 'cursed selfie' was blamed by Twitter users for Virat Kohli's duck in an ODI against SL last year, praised KXIP opener KL Rahul's knock of 84*(54) against RR.
Summary:
Following RR wicketkeeper Jos Buttler's match-winning knock of 82(58) against KXIP, the team's mentor Shane Warne said he wished they had 2 or 3 Jos Buttlers.
Summary:
German football club Lokomotiv Leipzig has fired two of its youth coaches for gathering a group of players and taking a photo of them performing the Nazi salute.
Summary:
Darren Lehmann, who had stepped down as Australia head coach in the aftermath of the ball-tampering scandal despite being cleared of any wrongdoing, has been appointed an assistant to National Performance Program head coach Troy Cooley.
Summary:
Responding to US-based retail giant Walmart acquiring 77% stake in Flipkart in a $16-billion deal, a user tweeted, "So kart goes to mart." Another user tweeted, "Why Walmart purchased Flipkart...
Summary:
South African conglomerate Naspers sold its entire 11.18% stake in Indian e-commerce firm Flipkart to Walmart for $2.2 billion, it said on Wednesday.
Summary:
Two Border Security Force (BSF) jawans were martyred in an IED explosion near the force's sector headquarters in Manipur's Imphal on Wednesday.
Summary:
Talking about the "tussle" between the navies of India and China in the Indian Ocean, Defence Minister Nirmala Sitharaman on Tuesday said that there is no tension between the two countries' naval forces.
Summary:
India on Tuesday repatriated Pakistani prisoner Syed Sajid Ali Bukhari after nearly 23 years of imprisonment.
Summary:
Russia on Wednesday marked the 73rd Victory Day commemorating the victory over Nazi Germany in World War II by staging a military parade.
Summary:
The 53-year-old worked for the CIA from 1994 to 2007.
Summary:
The acquisition, which is the largest e-commerce deal in the world, will value the homegrown startup at a reported amount of $20.8 billion.
Summary:
Following the deal with US-based retail giant Walmart, Flipkart Co-founder Sachin Bansal will be leaving the Indian e-commerce startup and will sell his entire 5.5% stake to Walmart for a reported amount of $1 billion.
Summary:
Sachin Bansal and Binny Bansal, the Founders of India's largest e-commerce startup Flipkart, once worked at US-based firm Amazon.
Summary:
Twenty-one individuals, including 11 serving Army officers, have sent a notice to Akshay Kumar and his wife Twinkle Khanna for auctioning the naval officer uniform that Akshay wore in 'Rustom'.
Summary:
The trailer of Danny Denzongpa starrer 'Bioscopewala' has been released.
The release date of the film was recently changed from February to May to coincide with the birth anniversary month of Tagore.
Summary:
The ICC on Tuesday took to Twitter to share a picture of Ireland's first-ever Test squad with the caption, "A photo that will go into the history books." Ireland, who were granted Test status in June 2017, will face Pakistan in their maiden Test starting May 11.
Summary:
It makes the conversational experience as natural as possible, allowing people to speak like they would to another person, Google said.
Summary:
E-commerce platform Snapdeal's CEO Kunal Bahl congratulated Sachin Bansal and Binny Bansal after US-based Walmart agreed to buy 77% in Flipkart for $16 billion.
Summary:
After Walmart announced acquisition of Flipkart's 77% stake, the remainder of the business will be held by Co-founder Binny Bansal and other shareholders including Tencent, Tiger Global, and Microsoft.
Summary:
The overall pass percentage in the examinations was almost 60%, while the pass percentage in government schools was 57.8%.
Summary:
Rebuking "silly and superficial comments" made by Donald Trump while announcing US' exit from the nuclear deal, Iran Supreme Leader Ayatollah Ali Khamenei on Wednesday told the US President, "You cannot do a damn thing." "You made a mistake!
Summary:
While a $20 WoW token buys 2,01,707 pieces of virtual gold, $20 is worth roughly 13,98,000 bolÃÂvares.
Summary:
Billionaire Mukesh Ambani, the Chairman and MD of India's second-largest company Reliance Industries, has been ranked 32nd in Forbes' World's Most Powerful People 2018 list.
Summary:
Taylor Swift, in an Instagram story, revealed Katy Perry sent her a note and an olive branch, apologising over an old feud between them.
Summary:
Bipasha Basu has said she doesn't like when people label dance numbers as item songs, adding that it "devalues" the song.
Summary:
Summary:
IPL chairman Rajeev Shukla has announced that the IPL 2018 playoffs and final will start at 7 pm instead of 8 pm.
Summary:
After getting out for a duck against RR on Tuesday, KXIP captain Ravichandran Ashwin revealed the decision to promote himself to number three from number eight was an experiment.
Summary:
Chennai Super Kings' English fast bowler Mark Wood has left IPL 2018 mid-season after playing just one match wherein he conceded 49 runs in four overs.
Summary:
Summary:
Union Minister Rajen Gohain on Monday stopped a retired teacher who was speaking about the poor condition of roads in Assam's Amolapatty at a Swachh Bharat event.
Summary:
Summary:
A 58-year-old man had to get his right eye removed along with jaw and nose bones in 2009 after his eye cancer was misdiagnosed as migraine.
Summary:
Australia-based researchers have trained baby Port Jackson sharks to associate music with a food reward.
Summary:
The woman allegedly strangled her husband following a petty quarrel and disposed of the body with the help of his three friends.
Summary:
The British overseas territory of South Georgia has been declared rat-free, after the world's largest rodent eradication project was declared a success.
Summary:
SoftBank CEO Masayoshi Son announced the Flipkart-Walmart deal by mistake during his company's earnings presentation on Wednesday and said, "Last night there was the official announcement." Someone then slipped Son a note, after which he said, "With regards to Flipkart, it's not officially announced yet".
Summary:
OnePlus has confirmed that OnePlus 6 will get Android P update as and when it releases in a stable build.
Summary:
Prime Minister Narendra Modi has been ranked ninth on Forbes' 2018 list of the world's most powerful people.
Summary:
The nuclear deal between Iran and six world powers including Russia, China, the US, UK, France and Germany was signed on July 14, 2015.
Summary:
Speaking on Indian captain Virat Kohli missing the one-off Afghanistan Test for county cricket, BCCI's Selection Committee Chairman MSK Prasad has said, "Virat is missing out for a good cause." "He is going out so that he comes well prepared for the England Test series...
Summary:
A disaster was averted at the Delhi airport recently when a GoAir flight with over 100 passengers onboard narrowly avoided collision with a chartered jet at the runway.
Summary:
The Walmart-Flipkart deal was confirmed by SoftBank CEO Masayoshi Son on Wednesday.
Summary:
As many as four Lashkar-e-Taiba terrorists and six over-ground workers have been arrested by security forces in separate raids in Jammu and Kashmir's Baramulla district.
Summary:
This clarification comes after reports alleged hike in LPG price in the recent months.
Summary:
SpiceJet Chairman and MD Ajay Singh has said, "Air India is a great brand, but it is not for us." He added that it doesn't make sense for SpiceJet to buy the national carrier.
Summary:
Craig had confirmed in August 2017 that he would star in another James Bond film, after saying that he won't be returning to the franchise.
Summary:
A video shows filmmaker Karan Johar dancing to the song 'Prem Ratan Dhan Payo' at actress Sonam Kapoor's wedding reception on Tuesday.
Summary:
Rape-accused filmmaker Roman Polanski, while speaking about the #MeToo movement against sexual harassment, said, "I think this is the kind of mass hysteria that occurs in society from time to time." "Everyone is trying to back this movement, mainly out of fear...It's total hypocrisy," he added.
Summary:
Chennai Super Kings off-spinner Harbhajan Singh, during a talk show with teammate Suresh Raina, said that no one can beat Kings XI Punjab all-rounder Yuvraj Singh when it comes to farting.
Summary:
Rashtriya Hindu Sena chief Pramod Muthalik has filed a plea in the Supreme Court against Congress' manifesto for the Karnataka elections for seeking votes in the name of religion.
Summary:
Summary:
US-based startup Cafe X Technologies has started using a coffee-making robot arm which fulfills about 300-400 orders per day.
Summary:
The 90-minute 'grocery guru' experience costs $295 (around â¹20,000) and is conducted by a registered dietician.
Summary:
We can't give water to Birla Mandir," the apex court asserted.
Summary:
The mosque had offered shelter and food to parents accompanying the candidates last year as well.
Summary:
Unknown persons tried to rename Akbar Road in Delhi by pasting a poster on a signboard with 'Maharana Pratap Road' written on it, according to reports.
Summary:
The Mumbai Police has arrested seven people in connection with the murder of Shiv Sena leader Sachin Sawant in April.
Summary:
The woman's murder was allegedly plotted by her younger sister and her live-in partner.
Summary:
An acute labour shortage in New Zealand has prompted the government to relax holiday visa conditions in a bid to harvest millions of kiwis, the country's national fruit.
Summary:
Describing US President Donald Trump's decision on Iran nuclear deal as a mistake, French Economy Minister Bruno Le Maire said the US should not consider itself as the world's "economic policeman".
Summary:
A customer has filed an FIR against an ICICI Bank branch in Delhi after she allegedly received fake jewellery instead of the jewellery she had mortgaged with the bank.
Summary:
The Delhi High Court has ordered the sale of ex-Ranbaxy promoter Shivinder Singh's unencumbered shares to repay â¹3,500 crore arbitration award in favour of Japanese drugmaker Daiichi Sankyo.
Summary:
US-based retail giant Walmart has closed the largest e-commerce deal in the world by acquiring a majority stake in the Indian e-commerce platform Flipkart, SoftBank CEO Masayoshi Son has confirmed.
Summary:
Daniels has been working with Facebook for more than seven years and previously worked for Microsoft in product management.
Summary:
Kings XI Punjab bowler Andrew Tye took four wickets for 34 runs against Rajasthan Royals on the day of losing his grandmother.
Summary:
A day after Congress President Rahul Gandhi said that he was ready to be the next Indian Prime Minister in 2019, PM Narendra Modi said, "How can someone just declare himself as the PM?
Summary:
To install the beta version of Android P operating system on Google smartphones, users can enroll their devices by signing up for the access on 'android.com/beta' website.
Summary:
In a first, New York-based researchers have developed a wearable MRI detector that can capture high-quality images of bones, tendons and ligaments moving together.
Summary:
Haryana Staff Selection Commission exam conducted last month asked candidates to select which among 'meeting with a black Brahmin' or 'sight of a Brahmin girl' isn't considered a bad omen.
Summary:
Stating that Donald Trump is not fit for his job, the speaker of the Iranian Parliament said, "Trump does not have the mental capacity to deal with issues." Meanwhile, Iranian lawmakers set a US flag ablaze at the Parliament and chanted "Death to America!".
Summary:
Iranian actors on Monday dressed as Islamic State fighters and 'stormed' a mall to promote Damascus Time, a movie about a father-son duo who get kidnapped by the terror outfit.
Summary:
A British woman was recently banned from singing at a volume that can be heard outside of her property after neighbours complained that she sounded like a "drowning cat".
Summary:
Filmmaker Sudhir Mishra, while talking about his films, said, "I don't make films which are advertisements for heroes or stars." "You cast someone because they work for a 'part', and not because they're stars," he added.
Summary:
After actress Sonam Kapoor got married to businessman Anand Ahuja on Tuesday, comedian Tanmay Bhat tweeted, "Can't believe Sonam actually got married to promote 'Veere Di Wedding'".
Summary:
Despite her injuries, she was determined not to postpone the wedding and the couple ended up getting married in the hospital chapel.
Summary:
In an apparent dig at Congress President Rahul Gandhi, Prime Minister Narendra Modi on Tuesday said, "Those who are born with a golden spoon never understand the difficulties of the poor." Speaking about the Congress, he added, "They run a government and bring down a government for the family.
Summary:
The BJP has demanded that polling in Karnataka's Rajarajeshwari Nagar constituency be cancelled in light of the seizure of nearly 10,000 alleged fake voter IDs.
Summary:
The parents of Indian pacer Shardul Thakur were injured after their bike skidded off the road on Tuesday night.
Summary:
Reid's winnings were nearly comparable to the winning horse, whose owners collected $1.4 million.
Summary:
Facebook CEO Mark Zuckerberg's Chan Zuckerberg Initiative and Bill Gates' Bill & Melinda Gates Foundation have partnered to accelerate breakthroughs in education.
Summary:
Speaking about Google's burger emoji issue at the company's recent event, CEO Sundar Pichai said, "I never knew so many cared about where the cheese is".
Summary:
Yahoo has launched a group messaging app called Squirrel on iOS and Android, focussed on friends, family and work groups.
Summary:
The woman in Uttar Pradesh, who had alleged that she was raped by BJP MLA Roshan Lal Verma and his son Manoj, claimed she has been receiving death threats.
Summary:
They informed the police, helped the baby breathe by tearing the plastic bag, and gave her cow's milk.
Summary:
Summary:
After the US withdrew from the Iran nuclear deal on Tuesday, Treasury Secretary Steven Mnuchin said licenses for Boeing and Airbus to sell passenger jets to Iran will be revoked.
Summary:
Supporters of newly elected Armenian PM Nikol Pashinyan celebrated his election to the position by staging a mass snowball fight.
Summary:
New York-based Parag Diamonds has emerged as the winning bidder in the bankruptcy auction of one of Nirav Modi's companies, A Jaffe Inc. Parag Diamonds, also known as Paramount Gems, is headed by Indian-American businessman Panna Jain.
Summary:
A UK High Court ruling has allowed 13 Indian banks to sell embattled liquor tycoon Vijay Mallya's assets in England and Wales to recover debt.
Summary:
Jailed RJD supremo Lalu Prasad Yadav has been granted a five-day parole from May 10-14 to attend his son Tej Pratap's wedding to party legislator's daughter Aishwarya Rai. The former Bihar CM, who has been convicted in four fodder scam cases, is currently undergoing treatment at a Jharkhand hospital.
Summary:
In a first, UK-based scientists have successfully trained a spider to jump different distances and heights to study how spiders hunt.
Summary:
Uber has unveiled its first electric 'flying car' concept aircraft featuring rotors which can reposition to help it fly after a vertical takeoff.
Summary:
It also offers iPhone X-like navigation swipes and gestures.
Summary:
No one was worried about the portraits until now." Calling it a "non-issue", Mansoor added Jinnah's portrait has been on display inside the campus since 1938.
Summary:
A father-son motor mechanic duo in Delhi has allegedly duped a businessman of â¹1.43 crore on the pretext of selling him a copper plate with unique physical properties that could be sold to NASA for â¹37,500 crore.
Summary:
External Affairs Minister Sushma Swaraj on Tuesday announced that the Nathu La pass has been reopened for the annual Kailash Mansarovar Yatra.
Summary:
The Bihar government has announced an assistance of â¹1 lakh for SC/ST candidates who clear the preliminary UPSC Civil Services exam and â¹50,000 for those clearing preliminary Bihar Public Service Commission Civil Services exam.
Summary:
SpiceJet Chairman and MD Ajay Singh has said that airlines may have to absorb the impact if crude hits $100 per barrel.
Summary:
The Income Tax Department has unearthed black money and undisclosed income of over â¹100 crore after raids on 3 major catering and tent firms in Delhi-NCR region.
Summary:
Indian Oil Chairman Sanjiv Singh has said that petrol and diesel prices have been kept on hold in the interest of customers.
Summary:
Talking about her career as an artiste, Alia Bhatt's mother Soni Razdan said, "I think I didn't get the success I thought I deserve." "I wanted to work in the Hindi film industry much more than what I was offered," she added.
Summary:
Kareena Kapoor has said the most romantic thing her husband Saif Ali Khan has done is getting a tattoo of her name on his arm.
Kareena further said Saif is the more romantic partner between the two.
Summary:
Indian skipper Virat Kohli has been included in the two-match T20I series in Ireland on June 27 and 29 despite Surrey's last county match, which is scheduled from June 25-28.
Summary:
E-commerce major Amazon has invested about â¹2,600 crore into its Indian subsidiary Amazon Seller Services, according to filings.
Summary:
"I'm setting up a small group to explore how to best leverage Blockchain across Facebook," Marcus said in a post on Tuesday.
Summary:
Slamming Congress President Rahul Gandhi, Union Minister Smriti Irani said, "Modi ji and Amit Shah are worried about future of people...while Rahul ji thinks about himself." "He said if his party comes to power, he'll be the PM in 2019.
Summary:
Bengaluru-based food delivery startup Swiggy has received approval from its board to repurchase employee stocks worth $4 million, according to reports.
Summary:
B9 Beverages, the maker of craft beer Bira 91, has raised â¹335 crore in a funding round led by Belgium-based investment firm Sofina at a reported valuation of â¹1,400 crore.
Summary:
After 25 years of collecting fossils at a US site, scientists have achieved the clearest yet picture of a 12-foot aquatic predator which lived roughly 365 million years ago.
Summary:
Talking about the protests over a portrait of Pakistan founder Muhammad Ali Jinnah inside AMU, yoga guru Baba Ramdev said that Muslims should not worry about it since they do not believe in idol worship.
Summary:
The Andhra Pradesh government has rejected an RTI petition seeking details of the expenses incurred by CM Chandrababu Naidu and his son, IT Minister Nara Lokesh, in state-sponsored foreign tours.
Summary:
A newly-married woman in Andhra Pradesh got her husband killed so she could live with her lover, whom she had met on Facebook, the police said.
Summary:
As a protest, lakhs of farmers will court arrests demanding complete waiver of loans and electricity bills, among others.
Summary:
The Mumbai Police has arrested two middle-aged women for the alleged murder of their 15-year-old niece.
Summary:
An investigation found that tax rate on packed Basmati rice was increased and purchase price of paddy had also gone up.
Summary:
Days ahead of the Karnataka Assembly elections, nearly 10,000 fake voter identity cards have been seized from a flat in Bengaluru.
Summary:
Manjula's son Rakesh, who lived in the flat, also contested for civic polls on a BJP ticket in 2015, Surjewala claimed.
Summary:
After Congress President Rahul Gandhi said he could become the next PM if his party wins Lok Sabha elections next year, BJP called it an irony.
Summary:
Mafia vs People," he added.
He further asked people to make a contribution to Congress' fundraising drive, claiming that the party is using a "novel approach" to fund its candidates.
Summary:
US-based researchers have developed a chemical sensing chip that was able to detect cocaine within minutes in lab experiments.
Summary:
As many as three people died on Tuesday in a snowfall which left over 400 pilgrims stranded in Uttarakhand.
Summary:
A portrait of Aligarh Muslim University (AMU) founder Syed Ahmad Khan was allegedly replaced by a portrait of PM Narendra Modi at a government-owned guest house in Aligarh.
Summary:
A 16-year-old girl in Uttar Pradesh's Azamgarh was allegedly set on fire in her house on Monday for not sharing her mobile number with her neighbour.
Summary:
Praising US President Donald Trump's "brave and correct" move to withdraw from the Iran nuclear deal, Israeli Prime Minister Benjamin Netanyahu called the agreement a "recipe for disaster".
Summary:
Calling US President Donald Trump's decision to withdraw from the 2015 nuclear deal illegal, Iranian President Hassan Rouhani said the country will remain in the agreement.
Summary:
Trump further warned of sanctions on any country that aids Iran's nuclear programme.
Summary:
Arguing that the nuclear deal which he had negotiated with Iran was working, former US President Barack Obama called his successor's decision to withdraw from the agreement "misguided" and a "serious mistake".
Summary:
The move was meant to honour Trump's decision recognising Jerusalem as Israel's capital and moving the US embassy from Tel Aviv to the city.
Summary:
Brazil's First Lady Marcela Temer leapt fully clothed into a lake at the presidential palace to rescue her pet dog after it started chasing ducks but struggled to come out of the water, officials have revealed.
Summary:
Nestle India on Tuesday said it has been asked by the National Anti-Profiteering Authority (NAA) to provisionally deposit the amount gained from the reduction in GST rate in the Consumer Welfare Fund.
Summary:
Ranbir Kapoor along with Alia Bhatt, Ranveer Singh, Katrina Kaif, Shah Rukh Khan and wife Gauri Khan were among the celebrities who attended the wedding reception of Sonam Kapoor and Anand Ahuja.
Summary:
A video shows actors Shah Rukh Khan and Salman Khan dancing to the song 'Mujhse Shaadi Karogi' at Sonam Kapoor and Anand Ahuja's wedding reception on Tuesday evening.
Summary:
Tiger Shroff, who will be working with Hrithik Roshan in his next film, said, "My hero and I would be standing in the same frame." "I'm very excited, but at the same time, nervous too...It's just a blessing being around him," said Tiger, who is Hrithik's fan.
Summary:
Five actors of 'Avengers' franchise Robert Downey Jr, Chris Evans, Scarlett Johansson, Chris Hemsworth and Jeremy Renner, got matching tattoos to celebrate the success of their film 'Avengers: Infinity War'.
Summary:
Summary:
Rahul's score is the highest unbeaten score in a losing cause while chasing in IPL.
Summary:
Russia have been fined over â¹20 lakh by FIFA for racist chants by fans during a friendly against France in St Petersburg in March.
Summary:
Plate tectonics theory states the Earth's crust and upper mantle are broken into moving pieces or plates.
Summary:
Top Maoist leaders have been diverting the funds collected from illegal activities for personal uses like providing "best" education for their children, a Union Ministry of Home Affairs (MHA) report has revealed.
Summary:
This comes days after a contractor was fined â¹1 lakh after his employee used toilet water for preparing tea.
Summary:
The women were targeted in 2015 by the same Russian group that intervened in the 2016 US presidential election and exposed the Hillary Clinton email scandal.
Summary:
Following his meeting with North Korean leader Kim Jong-un on Tuesday, Chinese President Xi Jinping told his US counterpart Donald Trump that North Korea wants peace but has security concerns.
Summary:
Mia by Tanishq launches #BornToBeMe Birthstone Bracelets.
Summary:
US President Donald Trump on Tuesday announced the country's withdrawal from the 2015 Iran nuclear deal.
Summary:
Actress Sonam Kapoor's husband Anand Ahuja paired sneakers with a traditional Indian outfit at their wedding reception in Mumbai.
Summary:
Nita Ambani danced to late actress Sridevi's song 'Navrai Majhi' from the movie English Vinglish at daughter Isha Ambani's engagement party on Monday.
Summary:
Over 10 booths will be run by disabled people.
Summary:
However, If the IPO values Xiaomi at $50 billion, only three Co-founders will become billionaires for the first time.
Summary:
A 28-year-old woman has accused Uttar Pradesh BJP MLA Roshan Lal Verma and his son Manoj of raping her in 2011 and getting her married to his younger son Vinod.
Summary:
Foetus born in less than 24 weeks is unlikely to survive as per medical literature, DMC added.
Summary:
A 79-year-old man and his 50-year-old daughter in Madhya Pradesh have been sentenced to life imprisonment over the rape and harassment of minor girls at an orphanage run by the daughter.
Summary:
Vijay Mallya has lost a UK lawsuit filed by Indian banks seeking to collect over $1.55 billion amid allegations that he committed massive fraud.
Summary:
The company's revenue increased 27.2% to about â¹780 crore during the quarter.
Summary:
The bank has a market capitalisation of â¹1.99 lakh crore.
Summary:
The PMO had said that sharing any details may have jeopardised entire process of note ban which had been undertaken in "utmost secrecy".
Summary:
Singer Ariana Grande wore a dress featuring 'The Last Judgement', a painting which covers the altar wall in the Sistine Chapel in Vatican City, to the Met Gala 2018.
Summary:
Bipasha Basu, who was last seen in 2015 film 'Alone', said that whatever her next project will be, it will not be a comeback.
"It will be a comeback if one has been out of the film business.
Summary:
While sharing a picture of his children Shweta Nanda and Abhishek Bachchan from Sonam Kapoor's wedding, Amitabh Bachchan wrote, "Mere dil, Mere Kaleje ke tukre...
Summary:
Reacting to actress Priyanka Chopra's Met Gala look, a user tweeted, "Queen of India came through." Another tweet read, "Priyanka's look was...
Summary:
Mumbai-based model and actress Avantika Gaokar has alleged that her nude photos have been leaked by a person who claimed to be a Hollywood director working on a web series for an international on-demand video streaming service.
Summary:
Reacting to the tweet, a user wrote, "Can you tell when will RCB win IPL?"
Summary:
Kings XI Punjab captain Ravichandran Ashwin, who had batted at number eight in his last innings, promoted himself to number three against Rajasthan Royals on Tuesday and got out for a duck.
Summary:
SunRisers Hyderabad fast bowler Bhuvneshwar Kumar jokingly urged teammate Rashid Khan to not bowl trick deliveries in the upcoming one-off India-Afghanistan Test.
Summary:
Former India captain Sourav Ganguly has said that Ajinkya Rahane's omission from the ODI squad that will tour England is a "harsh decision".
Ajinkya Rahane is a far superior player in England where the ball is going to move.
Summary:
Indian off-spinner Ravichandran Ashwin reportedly declined to play county cricket toÃÂ feature in June's one-off Test against Afghanistan.
Summary:
Meanwhile, KKR's Gill has been included only in the 50-over squad.
Summary:
The accused left the victim at a highway in Chapar district.
Summary:
Andhra Pradesh has been enjoying double-digit growth since its bifurcation with Telangana, state Finance Minister Yanamala Ramakrishnudu said on Tuesday.
Summary:
RJD supremo Lalu Prasad Yadav, who is serving jail sentence after being convicted in four fodder scam cases, has sought a five-day parole to attend his son Tej Pratap's wedding.
Summary:
World's third richest man and Berkshire Hathaway CEO Warren Buffett, the second largest Apple shareholder, does not use an iPhone.
Known for his aversion to technology, Buffett uses a flip phone.
Summary:
World's third richest man and Berkshire Hathaway Chairman Warren Buffett has said he would "love to own 100%" stake in technology giant Apple.
Summary:
Posting a picture of Priyanka Chopra's Met Gala 2018 headgear, design house Ralph Lauren wrote on Instagram, "This...creation is completely crafted by hand, with Swarovski crystals, meticulous beadwork, and over 250 hours of embroidery." Priyanka walked the Met Gala red carpet for the second consecutive year.
Summary:
While wishing actress Sonam Kapoor and Anand Ahuja on their wedding, actress Anushka Sharma tweeted, "Welcome to the club!
Summary:
While referring to his debut movie 'Rocky', which released on May 8 in 1981, Sanjay Dutt shared the film's poster and tweeted, "A film which gave me a real sense of being an actor is Rocky." The film was directed by Sanjay's father Sunil Dutt.
Summary:
This was reportedly Gandhi's third rally in Bijapur, after earlier campaigns in 1991 and 1995.
Summary:
Addressing her first election rally in almost two years for Karnataka Assembly polls, Congress leader Sonia Gandhi said PM Narendra Modi speaks like an actor but "speeches can't fill empty stomachs".
Summary:
The same squad will face England in three T20Is from July 3 to July 8.
Summary:
After YSR Congress MLA and actor Roja slammed TDP for politicising the rape of a nine-year-old girl in Andhra Pradesh, TDP MLC Buddha Venkanna said the youth was getting "spoilt" after watching her "blue films".
Summary:
Urging students to not let studies suffer, he added he and his wife visited the protest site to support students' "genuine demands".
Summary:
Pakistan's National Accountability Bureau has launched a probe into allegations that former PM Nawaz Sharif and others laundered $4.9 billion to India.
Summary:
In 2016, Melania's Republican convention speech was partly copied from then First Lady Michelle Obama's speech.
Summary:
Pashinyan succeeded Serzh Sargsyan who resigned from the post last month following three weeks of mass protests demanding his exit.
Summary:
Around 1,600 crayfish have been captured so far.
Summary:
A Thai Airways passenger was charged extra during check-in after the airline staff said the name on his ticket did not match the name on his passport.
Summary:
The Telecom Regulatory Authority of India (TRAI) issued 26 orders imposing fines of more than â¹2.81 crore on service providers for unsolicited commercial calls and messages last year.
Summary:
Sharing a new poster of Sanjay Dutt's biopic 'Sanju', filmmaker Rajkumar Hirani wrote, "This day in 1981 released Sanju's first film 'Rocky'.
Summary:
Chennai Super Kings off-spinner Harbhajan Singh has said that he has "seen fear in the eyes of bowlers" while bowling to Mahendra Singh Dhoni.
Summary:
Ajinkya Rahane has been dropped from the 16-member ODI squad that will play a three-match series against England in July.
Summary:
After confirming that the BCCI refused to play a day-night Test in Australia later this year, Cricket Australia said that Australia would play a day-night Test against Sri Lanka in January at Brisbane.
Summary:
Microblogging site Twitter is working on an encrypted messages feature, dubbed as 'Secret conversations', according to reports.
Summary:
After the CPM worker's murder, an RSS activist was attacked in what the BJP claimed was retaliation.
Summary:
Former Jammu and Kashmir CM Omar Abdullah has demanded Governor's rule in the state after six civilians were killed and over 130 injured in clashes between protestors and security forces in Shopian district.
Summary:
All India Railwaymen's Federation (AIRF) has called a 72-hour relay hunger strike, wherein protestors take turns to go without food, starting Tuesday to protest against the non-implementation of 7th Pay Commission recommendations.
Summary:
Former Uttarakhand Chief Minister Harish Rawat on Sunday got stranded in Kedarnath along with some other Congress leaders after a heavy snowfall in the region.
Summary:
The order was based on an application by Enforcement Directorate seeking attachment of Mallya's properties.
Summary:
Two lawyers on Tuesday objected to Congress leader Kapil Sibal appearing as an advocate for his party MPs in the petition challenging the rejection of impeachment motion against Chief Justice Dipak Misra.
Summary:
Coca-Cola with its first sale on May 8, 1886, was invented for medicinal purposes by US-based pharmacist John Pemberton, who marketed the drink as a "brain tonic" and "intellectual beverage." Pemberton used cocaine from the coca leaf and caffeine-rich extracts of the kola nut, giving the drink its name.
Summary:
Dargah-e-Aala Hazrat of Uttar Pradesh's Bareilly has issued a fatwa that Muslims should not support Pakistan founder Muhammad Ali Jinnah and it is wrong if they support him.
Summary:
Coca-Cola once recalled an advertising poster after it discovered the artist had hidden a picture of a woman giving a blowj*b in one of the ice cubes painted on the bottle.
Summary:
Sonam Kapoor married Delhi-based businessman Anand Ahuja in a traditional Sikh wedding ceremony on Tuesday.
Summary:
A video shows actress Sonam Kapoor exchanging varmala with Anand Ahuja at their wedding.
Summary:
After a CAG report last year called the food served by the Indian Railways "unfit for human consumption", the national transporter has decided to use an Artificial Intelligence system to ensure that hygienic food is served.
Summary:
High-speed transportation system developer Hyperloop Transportation Technologies has submitted a pre-feasibility route study for building a hyperloop system in Andhra Pradesh.
Summary:
Congress President Rahul Gandhi on Monday tweeted a mock letter ordering the shut down of Finance Ministry and signed it as the 'Prime Minister'.
Summary:
Breakthrough Listen, a $100-million initiative to find signs of intelligent life in the Universe, has expanded its survey to millions of stars located in the plane of Milky Way galaxy, using Australia-based Parkes telescope.
Summary:
Researchers based their claims on finding a complete spectrum of sodium, which can only be observed for an atmosphere free of clouds.
Summary:
The Army tweeted that the cover had "deeply hurt sentiments of veterans and serving soldiers".
Summary:
Expressing concern over the alleged human rights violations in Kashmir, Pakistan PM Shahid Khaqan Abbasi on Monday said that people around the world must raise their voice against Indian "oppression" in the state.
Summary:
North Korean leader Kim Jong-un made his second visit to China in two months, meeting Chinese President Xi Jinping in the port city of Dalian.
Summary:
Earlier this year, the US announced that those entering the country illegally would be criminally prosecuted.
Summary:
Highly-skilled professionals from India accounted for 74.2% of the total number of H-1B visas issued by the US in FY16 and number increased to 75.6% in FY17, the US Citizenship and Immigration Services has said.
Summary:
The Enforcement Directorate has reportedly issued fresh summons to PNB fraud-accused jeweller Nirav Modi's sister Purvi Mehta.
Summary:
Summary:
The film's director Abhishek Kapoor shared the film's poster, while tweeting, "Save the date everyone.
Summary:
It will be the second time that Sidharth and Katrina will be seen together in a film after 'Baar Baar Dekho'.
Summary:
A video shows Ranveer Singh and Arjun Kapoor singing the song 'Masakali' from the 2009 film 'Delhi-6' for Sonam Kapoor at her wedding ceremony.
Summary:
Addressing a public rally in Assembly election-bound Karnataka, PM Narendra Modi said that rigged electronic voting machines would be among the excuses Congress makes after its defeat in the polls.
Summary:
RCB fast bowler Umesh Yadav on Monday tried to bowl a knuckleball against SRH captain Kane Williamson but the ball slipped out of his hands and landed on the adjacent pitch.
Summary:
Addressing an election rally in Karnataka, CM Siddaramaiah on Tuesday mistakenly praised PM Narendra Modi instead of Congress candidate Narendra Swamy for development works in villages.
Summary:
Australian spinner Nathan Lyon has said his team will have to bear the taunts by English fans and players over the ball-tampering scandal during the ODI series in England next month.
Summary:
The Test will be Afghanistan's first-ever after being granted Test status in June 2017.
Summary:
A woman pilot working with IndiGo was critically injured in Haryana's Gurugram after her cab collided with a speeding Scorpio, killing the cab driver and a guard travelling with her.
Summary:
The Bank of India has an exposure of â¹200 crore in the â¹13,900-crore PNB fraud case, the bank's CEO Dinabandhu Mohapatra has said.
Summary:
Actress Sonam Kapoor got married to boyfriend Anand Ahuja in a traditional Sikh wedding ceremony in Mumbai on Tuesday.
Summary:
If stuck in a thunderstorm, one can dial the Government Disaster Management helpline number 108.
Summary:
Rhea Kapoor took to Instagram to share a picture with her sister Sonam Kapoor after her marriage to businessman Anand Ahuja and addressed her as 'Sonam Kapoor-Ahuja' in the caption.
Me and Sonam Kapoor-Ahuja," wrote Rhea.
Summary:
Actor Shreyas Talpade and his wife Deepti Talpade welcomed a baby girl via surrogacy last week.
This is Shreyas and Deepti's first child after 14 years of marriage.
Summary:
Australian speedcuber Feliks Zemdegs has broken the Rubik's Cube world record again on Sunday.
Summary:
Ex-chief selector Sandeep Patil has said MS Dhoni might appear as one of India's most shy players on and off the field, but he has seen him sing and dance on Amitabh Bachchan's song 'Salaam-e-ishq meri jaan' during an India A tour.
Summary:
Former Pakistan all-rounder Abdul Razzaq, who last played an international match five years ago, will make a comeback to first-class cricket at the age of 38.
Summary:
McKinley has had three brain surgeries in his ongoing recovery.
Summary:
In approximately five billion years, the Sun will die off as a massive ring of luminous, interstellar gas and dust, known as a planetary nebula, astronomers have predicted using data-models of stars' lifecycles.
Summary:
BJP MLA Kuldeep Singh Sengar, who is accused of abducting and raping a minor girl, has been shifted from Unnao jail to a Sitapur jail on the victim's family's appeal to the Allahabad High Court.
Summary:
Montreal police said they are investigating the matter.
Summary:
Delhi policemen recently wrapped a dead peacock in the Tricolour before burying it.
The police had rescued the peacock from a road outside the Delhi High Court, but it succumbed to its injuries later.
Summary:
Essar Group has denied any links with the NuPower Renewables, promoted by ICICI Bank CEO Chanda Kochhar's husband Deepak Kochhar.
Summary:
Summary:
"I can see my today, tomorrow and future in those eyes," Rohit captioned the picture in which Ritika can be seen wearing sunglasses.
Summary:
Summary:
Williams, who also won the World Championship in 2000 and 2003, had promised before the tournament to turn up nude if he won the title.
Summary:
Summary:
Flipkart Co-founder Sachin Bansal may sell his entire 5.5% stake in the Indian e-commerce startup as Walmart is looking to acquire a controlling stake in the company, according to reports.
Summary:
Bengaluru-based online grocer BigBasket is in talks to raise between $300 and $500 million from China's Alibaba and new investors, as per reports.
Summary:
The Congress has said it withdrew the petition challenging rejection of impeachment motion against Chief Justice Dipak Misra after the Supreme Court bench hearing it refused to share the administrative order constituting it.
Summary:
The Supreme Court on Tuesday said the Centre is in "sheer contempt" of its verdict on the Cauvery river dispute by delaying the setting up of a mechanism to distribute the water among stakeholder states.
Summary:
After reports alleged the Punjab government had removed chapters on Sikh gurus from Class 12 history book, the Shiromani Gurdwara Parbandhak Committee (SGPC) has said it was another attack on Sikh institutions after 1984 Operation Blue Star.
Summary:
Students claimed that the tuition fee was nearly doubled from â¹89,000 to â¹1.6 lakh in four years.
Summary:
Japan had expressed its dissatisfaction over North Korea's nuclear test suspension, vowing to continue pressurising the latter.
Summary:
Calling the 2015 nuclear agreement with Iran a "very badly negotiated" deal, US President Donald Trump on Monday said former Secretary of State John Kerry was the one who "created this mess in the first place".
Summary:
Crypto exchange Gemini's Co-founder Tyler Winklevoss responded to billionaire Bill Gates' comments saying, "Put your money where your mouth is." Gates said he would short or bet against Bitcoin if there was an easy way to do it.
Summary:
A petition filed by two Congress MPs challenging the rejection of an impeachment motion against Chief Justice Dipak Misra was dismissed as withdrawn by a five-judge Supreme Court bench.
Summary:
Elon Musk has confirmed he is dating Canadian musician Grimes, after the two appeared at the Met Gala together.
Summary:
On being asked whether he can become the Prime Minister in 2019 if Congress is the single largest party in the general elections, party President Rahul Gandhi said, "Yes, why not?" Rahul is currently campaigning for the upcoming Karnataka Assembly elections.
Summary:
Actress Sonam Kapoor's look for her wedding ceremony was shared by stylist Anaita Adajania Shroff on Instagram.
Summary:
Microsoft co-founder and world's second richest person Bill Gates took to Twitter to praise Amitabh Bachchan for an opinion piece he wrote highlighting India's journey in becoming free from polio.
Summary:
Addressing the media in the poll-bound Karnataka on Tuesday, Congress President Rahul Gandhi said, "Amit Shah (BJP President) has been accused of murder.
Summary:
Suspended Congress leader Mani Shankar Aiyar said RSS ideologue Veer Savarkar invented the word 'Hindutva' and, hence, was the first proponent of two-nation theory.
Summary:
Musk, who was already Tesla's largest shareholder, now has 20% stake in the company, the reports said.
Summary:
Mars Cube One (MarCO), a pair of briefcase-sized satellites launched along with NASA's InSight Mars lander on Saturday, have sent first signals from space.
Summary:
Meanwhile, Congress demanded â¹10-lakh compensation for the farmer's family and release of his 'mortgaged' son.
Summary:
Reacting to the death of a 22-year-old tourist after being hit on the head by stone-pelters in Jammu and Kashmir, CM Mehbooba Mufti said, "My head hangs in shame." The CM also met the deceased's family.
Summary:
Japanese Prime Minister Shinzo Abe and his wife were served a dessert in a shoe during dinner at Israeli Prime Minister Benjamin Netanyahu's residence.
Summary:
It is alleged that Chanda Kochhar's husband received financial favours from Videocon promoter Venugopal Dhoot.
Summary:
The offer includes paying part of â¹9,800 crore debt and giving banks an equity stake.
Summary:
India's largest airline IndiGo has said it will use electronic mosquito bats on-board flights to tackle mosquito menace.
Summary:
The Supreme Court has criticised the Income Tax Department for delay in filing appeals in High Courts and the apex court.
It further said that the department has "not reformed at all" and 90% of its appeals were getting dismissed.
Summary:
Reacting to American singer Katy Perry wearing a pair of wings at Met Gala 2018, a Twitter user commented, "Looks like she drank a Red Bull." Another user wrote, "How will she be able to sit??" "Katy Perry is a literal angel," commented a user.
Summary:
After RCB suffered their seventh defeat in 10 matches in IPL 2018 against SRH on Monday, skipper Virat Kohli said his team threw it away.
Notably, RCB have reached three IPL finals but never managed to win a single one.
Summary:
Summary:
The car's sensor detected the woman who was killed in the crash but didn't react in time, reports added.
Summary:
Snap clarified that Vollero has confirmed the transition does not relate to any disagreements with the company.
Summary:
During a TV interview, BSP supremo Mayawati conveyed that she will be allying with Akhilesh Yadav-led Samajwadi Party for 2019 Lok Sabha elections.
Summary:
A US-based study has shown that using sound waves to levitate water droplets can improve the detection of harmful heavy metal contaminants such as lead and mercury in water.
Summary:
Then why does rape happen of elderly people?
Summary:
A video showing journalist Rajdeep Sardesai being heckled while eating at a restaurant in Bengaluru has surfaced online.
Summary:
US Ambassador to the UN Nikki Haley has said she is not thinking about running for presidency and wants to do her best in her current job.
Summary:
A picture of Russian MP Natalya Poklonskaya leaning against a wall ahead of Vladimir Putin's inauguration has gone viral.
Summary:
A drunk man caused a total of 1,280 minutes of delays on German railway after he could not get out of a freight train in which he spent his night.
Summary:
The title is Björnsson's first after having finished second in last two editions.
Summary:
The BBC url shared as the survey link in the message leads to the news agency's India page.
Summary:
Stating that the crude oil price in the international market has decreased to $70 per barrel from $140, Rahul said, "Lakhs of crores of money is being saved by the government.
Summary:
Billionaire Elon Musk has said his startup 'The Boring Company' "will be using dirt from tunnel digging to create bricks for low-cost housing." This comes after Musk announced he is starting a candy company, adding he is "super super serious".
Summary:
Doctors have reported that the patient is back to work after the surgery, performed in August 2017.
Summary:
Tamil Nadu CM Edappadi K Palaniswami has laid the foundation stone for a 50,422-square-foot memorial of late CM J Jayalalithaa in Chennai.
Summary:
People are advised to take shelter indoors in case of a thunderstorm warning and avoid contact with electrical appliances.
Summary:
A 22-year-old tourist from Chennai was killed on Monday after his car came under attack from stone-pelters in Jammu and Kashmir's Narbal.
Summary:
Summary:
Israeli Energy Minister Yuval Steinitz has threatened to liquidate Syrian President Bashar al-Assad if he continues to allow Iran to use Syrian territory to carry out attacks on Israel.
Summary:
Iranian President Hassan Rouhani has hinted Iran could remain in the 2015 nuclear deal even if the US pulls out of it, on the condition that remaining signatories guarantee compliance.
Summary:
It had average assets under management of â¹86,000 crore as of March.
Summary:
Former Infosys CEO Vishal Sikka has revealed in a Silicon Valley conference that he is working on an artificial intelligence (AI) venture, as per reports.
Summary:
A video shows actress Sonam Kapoor and her mother Sunita Kapoor dancing to the song 'London Thumakda' from the 2014 film 'Queen' at Sonam's mehendi function on Monday.
Summary:
Actresses Priyanka Chopra and Deepika Padukone walked the red carpet at the 2018 Met Gala in New York.
Summary:
Puerto Rican professional baseball catcher Yadier Benjamin Molina underwent emergency groin surgery after being hit by a 102-mph fastball from pitcher Jordan Hicks during a Major League Baseball match.
Summary:
Manchester City players dropped the Premier League trophy off its pedestal while celebrating their third title win in seven years.
While trying to pin down veteran Yaya Toure, City player Oleksandr Zinchenko disturbed the trophy off its stand, sending it crashing into the grass.
Summary:
Paine will lead the ODI side in England, with Finch as vice-captain for the series.
Summary:
Amitabh Choudhary, BCCI's Acting Secretary, has informed Cricket Australia that the Indian team will not play a Day-Night Test during their tour to Australia later this year.
Summary:
Indian eyewear startup Lenskart has invested â¹3.3 crore in US-based reading glasses maker ThinOptics.
Summary:
Three Australian scientists, who published a paper in 2007 on global climate zones, were found to be the most cited authors on Wikipedia, with over 2.8 million references to their paper.
Summary:
Japanese researchers have studied a lunar meteorite that crashed onto Earth 17,000 years ago and contains moganite, a mineral formed only in the presence of water.
Summary:
A 58-year-old man and his 30-year-old son have cleared the matric examination from an open school in Odisha with the same marks.
Summary:
People complained of stomach ache and nausea after having the food.
Summary:
A residential government school principal's husband in Hyderabad has been booked for allegedly groping a 14-year-old girl during Diwali festival last year.
Summary:
A mural at a school in California depicted US President Donald Trump's severed head on a spear.
Summary:
Asian Paints' 'Where The Heart Is' season 2 features 7 celebrity homes and every episode takes you on a journey of discovery to these beautiful homes around the country.
Summary:
Punjab and Haryana have remained on high alert after the department issued warnings.
Summary:
Tickets for the launch event of OnePlus 6, which will be unveiled on May 17 in Mumbai, will go on sale at 10 AM on May 8 on the OnePlus website.
Summary:
The first look of Ranbir Kapoor from the upcoming film 'Shamshera' has been revealed.
Summary:
A user tweeted, "Wonder if the human robots in your warehouses think the same, when they are treated like dirt".
Summary:
However, the number of transactions and value were lower compared to 2016, which witnessed deals worth $2.22 billion in 18 transactions.
Summary:
The mosque, which is currently undergoing a facelift, had been abandoned and neglected for several decades, according to reports.
Summary:
The Uttar Pradesh Police will deploy drones and use night vision devices from Monday night to trap stray dogs after the animals killed six children during the last six days in Sitapur.
Summary:
A five-judge Supreme Court bench will hear the petition moved by two Congress MPs against Rajya Sabha Chairman Venkaiah Naidu's rejection of impeachment motion against Chief Justice Dipak Misra.
Summary:
After the Supreme Court quashed Uttar Pradesh government's law granting permanent accommodation to former chief ministers, Samajwadi Party patriarch Mulayam Singh Yadav and son Akhilesh have to vacate their government bungalows.
Summary:
Jamaat-ud-Dawah chief and 26/11 Mumbai terror attack mastermind Hafiz Saeed has begun campaigning for his political party Milli Muslim League (MML) ahead of the general elections in Pakistan.
Summary:
India's third-largest lender by assets ICICI Bank on Monday posted a nearly 50% fall in its profit to â¹1,020 crore as bad loan provisions surged.
Summary:
A video shows Jacqueline Fernandez and Sonam Kapoor dancing to 'Chittiyaan Kalaiyaan' from Jacqueline's 2015 film 'Roy' after Sonam's chura ceremony.
Summary:
A video shows actress Sonam Kapoor dancing with her husband-to-be Anand Ahuja at their mehendi ceremony.
Summary:
'Deadpool' actor Ryan Reynolds has said that if he tries to curse in Hindi, there would be an international incident.
Summary:
Summary:
Shilpa Shetty has shared a video from actress Sonam Kapoor's chura ceremony, which she captioned, "You will make such a beautiful bride tomorrow...
Summary:
She added, "I like the name and the person that Sid is as he is a beautiful person."
Summary:
SunRisers Hyderabad defeated Royal Challengers Bangalore by 5 runs after defending 146 runs on Monday to register their fifth consecutive victory in the Indian Premier League 2018.
Summary:
Former Australian captain Steve Waugh has warned against an 'overreaction' to the ball-tampering scandal, which led to David Warner, Steve Smith and Cameron Bancroft being banned.
Summary:
Following CBSE's decision to make "sports" period compulsory for Classes 9 to 12, cricket legend Sachin Tendulkar urged the CBSE to consider making it mandatory across all other classes as well.
Summary:
That's the goal of other persons, not me." Kohli's highest score in Test cricket is 243, which came against Sri Lanka in December last year.
Summary:
A Delhi court on Monday directed the police to file an FIR against AAP leader Ashutosh for his alleged "vulgar" remarks against late PM Jawaharlal Nehru and Mahatma Gandhi.
Summary:
Ahmedabad-based e-commerce conglomerate Infibeam has acquired 100% stake in Snapdeal-owned warehouse management platform Unicommerce eSolutions.
Summary:
A 46-year-old woman fell asleep with her headphones plugged in and was electrocuted to death, in Tamil Nadu's Chennai.
Summary:
A six-month-old baby fell to death after his mother lost balance due to her high-heel sandals and accidentally dropped him from a first-floor balcony in Mumbai's Kalyan region on Sunday.
Summary:
Israel, which has been using drones to monitor Palestinian protests, has not issued a reaction.
Summary:
The police caught two assailants while the others fled.
Summary:
Rapper Kanye West has announced that he is starting a Yeezy architecture arm called 'Yeezy Home'.
Summary:
Sonam is seen in a white and gold lehenga by designer duo Abu Jani Sandeep Khosla.
Summary:
Summary:
A new trailer of the Hindi version of 'Deadpool 2' has been released, where Ranveer Singh is seen voicing Ryan Reynolds, who plays the lead role of 'Deadpool'.
Summary:
Talking about Sonam Kapoor's outfit for her mehendi celebrations, designer duo Abu Jani and Sandeep Khosla revealed, "She ordered it two years ago...it's taken multiple teams of artisans eighteen months to create." The ivory lehenga incorporates intricate chikankari embroidery and has been paired with a golden top.
Summary:
Former US Army officer Stephen Toumajan, who retired as a Lieutenant Colonel, is currently serving as a Major General in the UAE.
Summary:
The BJP replied that Gandhi functions on "entertainment mode", adding that people attend his rallies for the entertainment he provides.
Summary:
Karnataka CM Siddaramaiah has threatened to file a â¹100-crore defamation case against PM Narendra Modi if he does not apologise for saying at a public rally that the state government takes 10% commission to do work.
Summary:
Users have reported that certain forward messages being circulated on WhatsApp are crashing the app globally on Android and iOS, and are also freezing smartphones in some cases.
Summary:
The Union Women and Child Development Ministry has proposed allowing victims of child sexual abuse to file police complaints till the age of 25.
Summary:
PC Jeweller held a market capitalisation of nearly â¹9,500 crore on Monday, after adding over â¹5,100 crore in three sessions.
Summary:
The telecom major had already initiated arbitration proceedings on the same tax dispute under an India-Netherlands treaty.
Summary:
Esha Deol has shared the first picture of her daughter Radhya, who was born on October 20, 2017.
"Radhya Takhtani...our darling daughter," she wrote while sharing the picture on Instagram.
Summary:
Singer Adele celebrated her 30th birthday by hosting a Titanic-themed party.
Summary:
Makers of 'Bioscopewala' said they decided to change the film's release date from February to May to coincide with the birth anniversary month of Rabindranath Tagore.
Summary:
The title track of the Alia Bhatt and Vicky Kaushal starrer 'Raazi' has been released.
Summary:
RCB captain Virat Kohli, along with other team members including Parthiv Patel, visited teammate Mohammed Siraj's house in Hyderabad for dinner on Sunday.
Summary:
Gandhi also held a padyatra, holding a model of an LPG cylinder to protest against the LPG price hike.
Summary:
Due to the collision, Ali fell short of the crease at the striker's end and got run out for 10(11).
Summary:
Phillip Sullivan, a Tour de Yorkshire race volunteer narrowly avoided an accident by running to his right seconds before a team support car, which had bikes on it, crashed into the traffic island he was standing on.
Summary:
A Southwest Airlines flight from Florida was hit by a pickup truck on the runway at the Baltimore-Washington International Thurgood Marshall Airport in United States' Maryland.
Summary:
Summary:
Responding to a Supreme Court order directing it to release Cauvery water to Tamil Nadu, Karnataka on Monday filed an affidavit saying it had released more than the required share of water.
Summary:
Wildlife authorities said they will remove the leopard from the park once it is caught.
Summary:
Aurobindo is reportedly the only Indian company that has submitted a bid for the business operating under the Sandoz brand.
Summary:
As of February 2018, the total number of onsite ATMs of banks had come down to 1,07,630.
Summary:
The Supreme Court on Monday transferred the Kathua rape and murder case to Punjab's Pathankot Court based on a plea moved by the victim's father stating the atmosphere in Kathua was not conducive for a fair trial.
Summary:
The ceremony was attended by family and close friends.
Summary:
Summary:
The students were protesting against the violence that broke out over Pakistan's founding father Muhammad Ali Jinnah's portrait on the campus.
Summary:
India's largest lender SBI's Chairman Rajnish Kumar has said that banks won't hesitate to push insolvent companies into liquidation if potential buyers try to suppress prices under the bankruptcy process.
Summary:
Berkshire Hathaway Chairman Warren Buffett has said the company will continue to prosper even after he is gone.
Summary:
Ruchi Soya, known for Nutrela soya products, owed â¹12,000 crore to banks as of December 2017.
Summary:
Nestle has said that Starbucks' out-of-shop sales generate $2 billion in annual revenues.
Summary:
Actor Salman Khan on Monday appeared in the Jodhpur District and Sessions Court for hearing of his appeal against his sentencing in the blackbuck poaching case.
His presence is not necessary during next hearing," said Salman's lawyer Mahesh Bohra.
Summary:
Talking about rumours of her dating Ranbir Kapoor, Alia Bhatt said, "I don't know how he feels about those rumours." She added, "There is nothing to feel.
Summary:
Fashion designer Masaba Gupta took to Instagram to share a picture of Sonam Kapoor from her wedding four years ago.
Summary:
Kings XI Punjab player Aaron Finch has said captain Ravichandran Ashwin's calmness as captain comes from playing under MS Dhoni.
Summary:
Outgoing Arsenal manager Arsene Wenger gifted his tie to a young boy holding up a sign which said 'Arsene, can I please have your tie' during his farewell home match on Sunday.
Summary:
Former Pakistan Cricket Board chief selector Wasim Bari has lauded Indian captain Virat Kohli's decision to play county cricket ahead of the Indian cricket team's England tour.
Summary:
Reigning world champion Marc Marquez danced on his bike at 321 kmph after finishing the crossing line to celebrate his victory at the Spanish MotoGP.
Summary:
Users can type the URL 'https://wa.me/(contact phone number)' in their browser which is available on Android version 2.18.138.
Summary:
Researchers at the Massachusetts Institute of Technology have developed a self-driving system called MapLite which can navigate roads without 3D maps.
Summary:
The bank was satisfied with the test results and said it is exploring further assignments for the robots.
and I'm very optimistic about that," an executive of the bank said.
Summary:
After Air France-KLM CEO Jean-Marc Janaillac announced his resignation, French Economy Minister Bruno Le Maire said, "The survival of Air France is in the balance." He added, "I call on everyone to be responsible: crew, ground staff, and pilots...
Summary:
The pilot of a light aircraft was forced to make an emergency landing on a beach in England following an engine failure.
Summary:
Finance Ministers of six non-BJP states are meeting in Andhra Pradesh today to discuss the 15th Finance Commission's Terms of Reference and sharing of Central funds.
Summary:
Summary:
Talking about the death of five civilians amid protests in J&K, CM Mehbooba Mufti on Monday appealed to parents to ensure that their children do not embrace death.
Summary:
During an interview on Sunday, US envoy to the UN Nikki Haley said she tells President Donald Trump if his style of communication makes her uncomfortable.
Summary:
An off-duty police officer in California, US, pulled his gun on a man who he thought was stealing a pack of mints from a gas station store.
I thought my wife could be a widow after tonight," the man said.
Summary:
Ahead of next week's opening, US embassy road signs were put up in Jerusalem after US President Donald Trump recognised the city as Israel's capital.
Summary:
The Delhi Police's Cyber Cell has raided a 4,000 sq ft Ethereum mining unit in Dehradun, owned by alleged scamsters Kamal Singh and Vijay Kumar.
Summary:
Singer Adnan Sami has claimed his staff members were mistreated and called "Indian dogs" by immigration officials at Kuwait airport.
Summary:
Putin, who has ruled the country as either President or Prime Minister since 1999, won the presidential elections in March with over 76% of the votes.
Summary:
A Brazilian bride went ahead with her wedding even after the helicopter carrying her crashed and burst into flames.
Summary:
The average assets per candidate are worth â¹7.54 crore, the report added.
Summary:
Former Pakistani captain Misbah-ul-Haq has revealed that he has no regrets about the scoop shot that resulted in India winning the final of the 2007 World T20.
Summary:
American investor Warren Buffett at a recent shareholders' meeting said, "It just would be a mistake for Berkshire to buy Microsoft", citing perception of insider trading in reference to his friendship with Microsoft Co-founder Bill Gates.
Summary:
The team claims it to be the first device that deposits and sets the tissue in place within two minutes or less.
Summary:
A group of chefs is hoping to set a world record for the highest ever pop-up restaurant by serving a seven-course meal at the Everest Base Camp.
Summary:
The mother of the eight-year-old Kathua rape victim has said that the accused in the case will kill her and other family members if they are freed.
Summary:
The Railways also has to refund the catering charges to the woman.
Summary:
Urging US President Donald Trump not to give up on the Iran nuclear deal, UK Foreign Secretary Boris Johnson has said only Iran would gain if the "handcuffs" on its nuclear programme are taken off.
Summary:
Addressing an election rally in poll-bound Karnataka on Monday, Uttar Pradesh CM Yogi Adityanath said that whenever the country faces any kind of crisis, Congress President Rahul Gandhi "runs away to Italy".
Summary:
Speaking at an election rally in poll-bound Karnataka, Congress leader Ghulam Nabi Azad said that atrocities on Dalits did not occur during the rule of former PM Atal Bihari Vajpayee.
Summary:
Speaking at a press conference in Bengaluru, former Prime Minister Manmohan Singh said that the PM Narendra Modi-led government had reversed the successes of the UPA government in only four years.
Summary:
Welsh snooker player Mark Williams potted a pink ball with his eyes closed during the opening session of the World Snooker Championship final on Monday.
Summary:
NHL side Boston Bruins' ice hockey player Brad Marchand licked Tampa Bay Lightning player Ryan Callahan's face as the duo got involved in a mid-match argument during the sides' second-round NHL playoff game.
Summary:
The party witnessed live music and saw players, including Sergio Aguero and Nicolas Otamendi, dancing to it.
Summary:
Bhuvneshwar ended last year's IPL as the highest wicket-taker.
Summary:
Mumbai Indians all-rounder Hardik Pandya, who was named Man of the Match against Kolkata Knight Riders on Sunday, revealed that he has stopped practising batting.
Summary:
French company SeaBubbles has developed an electric self-driving water taxi called Bubble which glides through water without creating waves.
Summary:
Union minister Vijay Sampla has tweeted a 2014 picture of PM Narendra Modi's over 90-year-old mother Heeraben travelling in an auto when she went to cast her vote in the general elections.
Summary:
The company has also introduced 0% fee for transferring money from one bank account to another for customers using its services.
Summary:
The DJ had refused a song request by the victim, after which the fight broke out between the victim's friends and the staff.
Summary:
Minister of State for External Affairs VK Singh on Saturday said that Muslims who supported Pakistan founder Muhammad Ali Jinnah's portrait in AMU were insulting their forefathers.
Summary:
In a surprise appearance on a US TV show, pornstar Stormy Daniels mocked US President Donald Trump, saying, "I know you don't believe in climate change but a storm's a-coming baby." This comes amid her legal tussle with Trump over an alleged affair in 2006.
Summary:
It is the ninth sinkhole to form on the farm in recent years.
Summary:
Reliance Industries is likely to invest â¹60,000 crore into its telecom unit Jio this fiscal to expand its wireless network and speed up the roll-out of broadband services, reports said.
Summary:
Quashing the Uttar Pradesh law granting permanent accommodation to former state chief ministers, the Supreme Court on Monday said that former CMs are not entitled to government bungalows.
Summary:
Two Congress Rajya Sabha MPs have moved the Supreme Court against Vice President Venkaiah Naidu's decision to reject the Opposition's impeachment motion against Chief Justice of India Dipak Misra.
Summary:
In an apparent reference to the National Herald case, Prime Minister Narendra Modi said that Congress leaders Sonia Gandhi and Rahul Gandhi are out on bail in connection with a â¹5,000-crore scam.
Summary:
West Bengal BJP leader Mukul Roy has prompted criticism after he promised smartphones to young voters who have turned 18 years, if his party wins the upcoming panchayat elections in Jalpaiguri district.
Summary:
SoftBank is planning to retain all of its shares in Flipkart until next year to avoid paying a large tax, according to reports.
Summary:
Asserting that the Chinese Navy is here to stay in the Indian Ocean, Indian Navy Chief Admiral Sunil Lanba has said that Chinese military movement in the water body is a cause for concern.
Summary:
Ten of the 11 militants in the picture featuring former Hizbul Mujahideen commander Burhan Wani, which went viral in 2015, have been killed in various encounters, reports said.
Summary:
The examinations at the Aligarh Muslim University have been postponed till May 12 amid the ongoing protest over Pakistan founder Muhammad Ali Jinnah's portrait hanging in the university's students' union office.
Summary:
The Press Council of India has rejected the 138th rank given to India in the World Press Freedom Index due to a lack of clarity in the parameters on which the ranking was based.
Summary:
As many as 578 rape cases against women were reported till April 15 this year, as compared to 563 during the same period last year.
Summary:
A case has been registered against a college owned by RJD Rajya Sabha MP Ahmad Ashfaque Karim for altering the map of India in its college prospectus.
Summary:
However, the French leader said he does not think that Trump is seeking a military conflict.
Summary:
A Pakistani man was sentenced to 18 years in jail and fined Pakistani Rs 3 million by an anti-terrorism court for throwing a shoe at senior civil judge Zahid Qayyum.
Summary:
Slamming Saudi Arabia's Crown Prince Mohammed bin Salman for "arbitrary detentions", Human Rights Watch (HRW) on Sunday said that the kingdom has detained over 2,000 people for more than six months without trial.
Summary:
Talking about starring opposite Katrina Kaif for the first time in an upcoming dance movie, Varun Dhawan said, "We will look very good together." He added, "Everyone knows she's a huge star, but I have to talk about how hardworking she is.
Summary:
Actress Madhuri Dixit has said that Shah Rukh Khan always ensures that his heroines are taken care of.
Summary:
Team India and SunRisers Hyderabad opener Shikhar Dhawan took to Instagram to share a picture of himself with his "biggest fan" Shankar in Hyderabad.
Summary:
On being asked about when will India play in FIFA World Cup, Indian football team captain Sunil Chhetri said, "Right now, the realistic dream is to reach the top 10 in Asia".
Summary:
Indian captain Virat Kohli recalled that he was shaking and had goosebumps as he sat with his mother during the selection announcement in which he received his maiden India team call-up.
Summary:
YouTube has removed videos of more than 250 channels which had mid-video ads for EduBirdie, a Ukraine-based company which sells essays to students.
Summary:
An Air India air hostess was allegedly molested by a pilot during an Ahmedabad-Mumbai flight on Friday.
Summary:
The Confederation of All India Traders (CAIT) has demanded a probe into the proposed Walmart Flipkart deal, claiming it will promote loss funding and predatory pricing in the e-commerce sector.
Summary:
Walmart, which is expected to become a majority shareholder in Flipkart, is reportedly planning to invest $2-3 billion in the homegrown e-commerce firm.
Summary:
Sudheeran claimed this was the ninth time that he had found such items at his house.
Summary:
A 19-year-old Uzbek woman was arrested at the Delhi airport on Sunday for allegedly carrying a live bullet round in her baggage, an official said.
Summary:
The widow of Indian engineer Srinivas Kuchibhotla, who was killed in a hate crime in the US, said life imprisonment to the convicted Navy veteran won't bring back her husband but sends a strong message that hate is unacceptable.
Summary:
A video showing a man clinging to a car hood to escape flash floods in Turkish capital Ankara has surfaced online.
Summary:
Mercedes-Benz India launched the most powerful version of the E-Class, the new Mercedes-AMG E 63 S 4MATIC+.
Summary:
"It's been on my fridge for years, and I see it every time I open the door," Bezos tweeted.
Summary:
Five-time Ballon d'Or winners Lionel Messi and Cristiano Ronaldo got on the scoresheet as 10-man Barcelona and Real Madrid played out a 2-2 draw in the La Liga on Sunday.
Summary:
The couple's marriage was "voidable" at the most, the court added.
Summary:
Anand Piramal, who got engaged to India's richest man Mukesh Ambani's daughter Isha Ambani, is the son of business magnates Ajay and Swati Piramal.
Summary:
'Avengers: Infinity War' has become the fastest film to collect $1 billion (over â¹6,682 crore) worldwide, by surpassing the earnings milestone within 11 days of its release.
Summary:
The court issued a notice to NGO Nyaya Bhoomi, which had lodged the complaint, and sought its response by August 20.
Summary:
All schools across Haryana will remain closed on May 7 and 8 after the India Meteorological Department issued rain and thunderstorm warnings, state Education Minister Ram Bilas Sharma said.
Summary:
A 17-year-old boy in Bengaluru scored 94.4% in his II PU exam after battling dyslexia, a learning disorder that affects reading and writing.
Summary:
The Enforcement Directorate (ED) has refused to respond to an RTI query on the assets of jewellers Nirav Modi and Mehul Choksi seized during its probe into the PNB scam.
Summary:
Supreme Court judge Kurian Joseph said no government ever sent back a Collegium recommendation before and called for a detailed discussion on the Centre returning Uttarakhand Chief Justice KM Joseph's name.
Summary:
Nearly 100 students who appeared for the National Eligibility Cum Entrance Test (NEET) on Sunday in Tamil Nadu's Madurai were given the question paper in Hindi, which they couldn't understand.
Summary:
Indian all-rounder Irfan Pathan, who is currently commentating in the Indian Premier League 2018, took to Instagram to share a video of himself singing Bollywood song 'Humsafar' with former Australian pacer Brett Lee playing guitar.
Summary:
Summary:
Talking about the recreated version of 'Ek Do Teen Char' song featuring Jacqueline Fernandez in 'Baaghi 2', Madhuri Dixit said, "It is an iconic song...you can't blame the makers." She added, "There is nothing wrong in remaking...
Summary:
Actress Rani Mukerji has revealed that until her 2002 film Saathiya, she did not take the responsibility of her career and her mother Krishna Mukherjee chose roles for her.
Summary:
Carlos Carvalho, an award-winning South African filmmaker, died at the age of 47 after he was head-butted by a giraffe at a safari lodge in South Africa.
Summary:
Summary:
While talking about her weight loss, Parineeti Chopra said, "I have no pressure to look a certain way.
Summary:
Pandya then tried to take a bye and was way out of his crease as KKR captain Dinesh Karthik attempted a direct hit.
Summary:
Mumbai Indians had last lost to Kolkata Knight Riders in the IPL on April 8, 2015.
Summary:
SunRisers Hyderabad's Afghan spinner Rashid Khan, aged 19 years and 227 days, became the youngest cricketer to reach 100 T20s, achieving the feat against Delhi Daredevils on Saturday.
Summary:
KXIP's Mayank Agarwal and Manoj Tiwary combined to pull off a relay catch to dismiss RR's Ben Stokes in the IPL 2018 on Sunday.
Summary:
KL Rahul slammed his highest-ever IPL score of 84*(54) as Kings XI Punjab ended their two-match losing streak with a six-wicket victory over Rajasthan Royals in the IPL 2018 on Sunday.
Summary:
With this, Arsenal registered victories in 415 out of 606 home matches under Wenger.
Summary:
English county team Yorkshire, which included Indian Test batsman Cheteshwar Pujara in its playing XI, defeated Essex by 91 runs on third day despite being all out for 50 in the first innings.
Summary:
After an assistant sociology professor was killed in an encounter 36 hours after joining militants, ex-J&K CM Omar Abdullah said it was an answer to those who believe jobs and development are solutions to alienation and violence in Kashmir.
Summary:
Pakistan's Interior Minister Ahsan Iqbal survived with injuries on Sunday after being shot at during a rally in Narowal.
Summary:
While Isha serves on the boards of Reliance Jio and Reliance Retail, Anand is an Executive Director at Piramal Group.
Summary:
Summary:
Filmmaker Karan Johar, Janhvi Kapoor, Arjun Kapoor and Khushi Kapoor were seen attending Sonam Kapoor's mehendi ceremony.
Summary:
PM Narendra Modi has accused Karnataka's Congress government of celebrating "jayantis of sultans" for "vote bank politics".
Summary:
A case was registered against two BJP workers on Sunday over the alleged gangrape of a Prime Minister Skill Development centre employee in Madhya Pradesh's Sehore.
Summary:
Garg said he had reviewed the cash situation in the country last week and 85% of the ATMs were functional.
Summary:
The Delhi High Court has observed that false allegations by the wife of an illicit relationship between the husband and his sister-in-law amounted to cruelty and valid grounds for divorce.
Summary:
Haryana Chief Minister Manohar Lal Khattar on Sunday said that namaz should be read in Mosques and not in public spaces.
There has been an increase in offering namaz in open," he added.
Summary:
A Hindu woman from Kerala has been rescued after she was allegedly confined by her mother for being in love with a Muslim man.
Summary:
The Kashmir University professor who was killed in an encounter on Sunday, had phoned his father early that morning and said, "I am sorry if I have hurt you...this is my last call...I am going to meet Allah." Mohammed Rafi Bhat was reported missing on Friday afternoon, 36 hours before the encounter.
Summary:
Prince Louis is fifth in line to the British throne.
Summary:
Last month, a suicide bomber blew himself up outside a voter registration centre in Kabul, killing 60 people.
Summary:
Donald Trump's lawyer Rudy Giuliani on Saturday said the US President is committed to a regime change in Iran.
Summary:
Police in Maharashtra's Raigad have booked Republic TV's Editor-in-Chief Arnab Goswami and two others under charges of abetment to suicide after an interior designer killed himself on Saturday.
Summary:
The Delhi Police has arrested 'bits2btc.com' founders Vijay Kumar and Kamal Singh for allegedly duping 2,500 people of over â¹100 crore.
Summary:
She said this while discussing how she feels honoured to have played the role of Nargis Dutt in 'Sanju', a biopic on Nargis' son Sanjay Dutt.
Summary:
Explaining why 'Omerta' had a slow start at the box office, its director Hansal Mehta said, "Thanks to the ongoing success of 'Avengers: Infinity War' we were given very poor show timings." He added that there was not one show that suited the conventional audience.
Summary:
An illegal shipment of 50 live crocodiles was seized at London's Heathrow Airport on Friday.
Summary:
Mumbai Indians all-rounder Hardik Pandya shouted at youngster Mayank Markande for dropping Kolkata Knight Riders batsman Robin Uthappa's catch in the IPL 2018 on Sunday.
Summary:
Speaking at an election rally in poll-bound Karnataka, Prime Minister Narendra Modi said that Congress does not care about 'Dil' or Dalits, but only cares about deals.
Summary:
World Wrestling Entertainment (WWE) COO Triple H has awarded a customised WWE belt to English champions Manchester City to mark their success in the Premier League.
Summary:
The Spanish Football Federation said Stéfano should play alternate seasons with each club, however, Barça rejected the verdict and released Stéfano.
Summary:
The 'Debate Game' includes two debaters who describe an image and the judge who determines which debater is telling the truth.
Summary:
Suspended Congress leader Mani Shankar Aiyar on Saturday referred to Pakistan's founding father Muhammad Ali Jinnah as 'Quaid-e-Azam (great leader)'.
Summary:
A bus stop near Delhi University's Hindu College was vandalised with 'Mandir nahi banega, college yahin rahega' slogan, days after a chapel at St Stephen's College was marred with 'Mandir yahin banega'.
Summary:
The law will focus on what kind of protection can be given to the couples, Badole added.
Summary:
A retired US prison guard has eaten his 30,000th Big Mac. Sixty-four-year-old Donald Gorske said he has eaten at least one Big Mac almost every day since May 17, 1972, and has kept most of the boxes or receipts.
Summary:
Filmmaker Arjun Hingorani, who directed Dharmendra's debut film 'Dil Bhi Tera Hum Bhi Tere' in 1960, has passed away at the age of 92.
Summary:
Ninety-six-year-old Bob Barger started attending college after the war but never finished his degree because he was busy working and raising a family.
Summary:
Midfielder Joe Thompson, who survived cancer twice in last three years, scored a second-half winner against Charlton to save his team Rochdale from relegation on the final day of League One (English football's third division) on Saturday.
Summary:
Notably, the iPhone X is cheaper to purchase in Dubai than in India.
Summary:
Blaming the BJP for the fallout between him and his son Jayant, former Union Minister Yashwant Sinha said political harmony between the father-son duo has now been disrupted.
Summary:
The rumours, first circulated on WhatsApp groups in Raebareli, claimed the wedding will take place in May this year.
Summary:
Of the 4,689 people killed in various disasters in the last three years in Odisha, as many as 1,716 died because of snake bites, Deputy Special Relief Commissioner PR Mohapatra revealed on Saturday.
Summary:
A sociology professor at Kashmir University was among the five militants killed in an encounter on Sunday, 36 hours after he joined militancy.
Summary:
Armed men on Sunday abducted seven Indian engineers working for a power plant from Afghanistan's Baghlan province, the Indian embassy in Kabul confirmed.
Summary:
Congress MP Shashi Tharoor on Saturday shared a news report claiming that former RBI Governor Raghuram Rajan has been appointed Governor at Bank of England.
Summary:
A BSF jawan on Sunday allegedly shot dead three of his colleagues, including a head constable, and then committed suicide in Tripura, police said.
Summary:
A 42-year-old school superintendent has been arrested for pooping on school grounds "on a daily basis", the US police has said after catching him in the act.
Summary:
An Air Canada flight to Toronto was delayed for seven hours after a racoon snuck into the hose of an air conditioning unit.
Summary:
Big wilful defaulters, who have taken loans worth â¹25 lakh and above, owed â¹15,172 crore to Punjab National Bank (PNB) at the end of March this year.
Summary:
Asian Development Bank's Chief Economist Yasuyuki Sawada has said India's projected GDP growth rate of more than 7% for 2018-19 is "amazingly fast".
Summary:
An 8-year-old Berkshire Hathaway shareholder, Daphne, on Saturday asked 87-year-old Chairman Warren Buffett to explain why the company started buying capital-intensive businesses in recent years.
Summary:
Actor Sanjay Kapoor took to Instagram to share a picture of himself and his niece actress Sonam Kapoor dancing at his wedding 20 years ago.
Summary:
Summary:
Lionel Messi scored in the injury time to hand Barcelona a 3-2 victory away at Real Madrid in last season's final El Clasico match.
Summary:
Indian tennis player Leander Paes took to Twitter to ask 23-time Grand Slam winner Serena Williams if her daughter can be his mixed doubles partner for Wimbledon 2040.
Summary:
NBA player LeBron James scored a single-handed running shot off the backboard in the last second of the game to hand his team Cleveland Cavaliers a 105-103 win over Toronto Raptors on Sunday.
Summary:
Around 1.7 lakh people had arrived in Welsh capital Cardiff for the football match between Real Madrid and Juventus last year.
Summary:
This comes a day after three terrorists were killed in an encounter in Srinagar.
Summary:
Advertisements will be displayed on the walls and builders will be offered a share in advertising revenue to ensure minimum cost.
Summary:
The boy had been playing with his three sisters when his father started throwing stones at them angrily.
Summary:
Berkshire Hathaway CEO Warren Buffett on Saturday said, "Elon [Musk] may turn things upside down in some areas, I don't think he'd want to take us on in candy." Responding to Buffett's comments, Musk later tweeted that he is "super, super serious" about starting a candy company.
Summary:
Indian javelin thrower Neeraj Chopra on Friday broke his own national record (NR) by clearing a distance of 87.43m at the Diamond League in Doha.
Summary:
This approach, called "load-and-go" risks setting off an explosion while people are aboard the rocket.
Summary:
In his book 'Whither Indian Judiciary', former Supreme Court judge Markandey Katju has said he "was almost sacked" following his 1992 order reinstating a teacher whose appointment was cancelled by an Uttar Pradesh school.
Summary:
Prime Minister Narendra Modi on Saturday praised artist Karan Acharya for his half-vermilion half-black image of Lord Hanuman, popular across the country.
Summary:
Notably, Trump has denied the allegations made by Daniels.
Summary:
New Zealand has removed prostitution from its list of employment skills for would-be immigrants.
Summary:
It warned that US' claims are a "dangerous attempt" to ruin peace efforts on the Korean Peninsula.
Summary:
"No war against Iran is imaginable...because of the lack of determination, solidarity, and operational power in our enemies," he added.
Summary:
However, the cockroach was fully removed only days later when she visited an ENT specialist because of continued pain in her ear.
Summary:
Talking about Berkshire Hathaway Chairman and CEO Warren Buffett, Vice Chairman Charlie Munger said, "Warren is very good at doing nothing." "He sits around reading most of the time and thinking, and every once in a while he talks on the phone," Munger added.
Summary:
Buffett said the value of cryptocurrencies depends on someone wanting to buy them for even more money.
Summary:
She added, "I am not really preparing for Sonam's wedding.
I just have to go and have fun." Sonam will be marrying businessman Anand Ahuja on May 8 in Mumbai.
Summary:
Indian shuttler Saina NehwaI has said that she is sure that her biopic will come out well given the kind of hard work being put in by actress Shraddha Kapoor, who is portraying her.
Summary:
An American brewery is planning to build a beer hotel in Portland as part of a $65 million redevelopment plan.
Summary:
Boult and Roy ran across from long-on and long-off respectively but left the ball for each other.
Summary:
CSK captain Mahendra Singh Dhoni reacted in 0.16 seconds to stump RCB's AB de Villiers in the IPL 2018 on Saturday.
Summary:
After the match-winning single against RCB on Saturday, a fan invaded the pitch to touch CSK skipper MS Dhoni's feet, which was the third such instance in 15 days.
Summary:
A video posted by Congress President Rahul Gandhi on Twitter claims that BJP's Karnataka CM candidate BS Yeddyurappa "practises untouchability in the 21st century".
Summary:
Reacting to RCB wicketkeeper Parthiv Patel missing a catch and run-out against CSK, a user tweeted, "16 Years Se Frontline Wicket-Keeper Hoke Bhi Agar Ek Ball Bhi Properly Nahi Collect Kar Sakte, Toh LORD PARTHIV PATEL Ho Tum".
Summary:
Yuvraj scored 14 runs, including a six, in as many balls before he was run-out against MI on Friday.
Summary:
London Olympic bronze medalist Saina has a 3-1 head-to-head record in international matches against Sindhu.
Summary:
Talking about Amazon in a recent interview, American investor Warren Buffett said, "I've watched Amazon from the start.
Summary:
BJP chief Amit Shah on Saturday tweeted, "Congress and Pakistan have amazing telepathy." Shah added that the Pakistan government remembered Tipu Sultan "whose Jayanti Congress marks with fanfare", and later Congress leader Mani Shankar Aiyar admired Pakistan founder Mohammad Ali Jinnah.
Summary:
Reacting to Elon Musk's idea of starting a candy company, a user tweeted, "Name it 'muskandy'".
Summary:
A Singapore Airlines flight from Singapore to Kolkata made an emergency landing at the Kolkata airport on the intervening night of Saturday and Sunday following a technical glitch.
Summary:
West Bengal BJP leader Mukul Roy's brother-in-law has been arrested on the basis of 6-year-old complaints for allegedly duping Railways job seekers.
Summary:
A woman who had gone to Hyderabad's government-run Osmania General Hospital for treatment after being assaulted by her husband was allegedly raped by a ward boy in a corridor.
Summary:
SP Rajya Sabha MP Jaya Bachchan recently declared assets worth â¹1,000 crore, making her India's richest politician.
Summary:
On being asked if he was bored with too much cricket with Sri Lanka, Team India captain Virat Kohli said that the team counts it as "off-season".
Summary:
Talking about his decision of not investing in technology giants Google and Amazon, American investor Warren Buffett on Saturday said that he made "wrong decisions" on the two companies.
Summary:
Researchers at the University of St Andrews have developed extremely thin membranes that shoot laser beams and can be placed right onto contact lenses.
Summary:
Talking about Apple's $100-billion stock buyback program, American investor Warren Buffett on Saturday said, "From our standpoint we would love to see Apple go down in price." "We very much approve of them repurchasing shares," he added.
Summary:
Madhya Pradesh BJP MLA Gopal Parmar has said instances of love jihad take place when people don't get married at the right time.
Summary:
The activists, led by North Korean defectors, had gathered in the city of Paju to release the leaflets into the North.
Summary:
The prosecution had demanded harsher sentence for the accused, who had been handed a three-year jail term by lower courts.
Summary:
Stating that the US seems to have forgotten about the dangers coming from both al-Qaeda and Islamic State, the Russian Foreign Ministry said the country considers Iran to be a greater threat than terrorists.
Summary:
There is a restaurant in United States' Boston where the meals are prepared by robotic woks.
Summary:
JetBlue will be delivering pizza from New York to Los Angeles between May 9 and May 11.
Summary:
Television producer Ekta Kapoor called filmmaker Karan Johar the father of high school film genre.
Summary:
Alia Bhatt said people claim they are patriots because they are living in the country and love their country but that is not enough.
Summary:
The Election Commission-appointed surveillance committees have seized items worth â¹120 crore in Karnataka ahead of the Assembly elections scheduled on May 12.
Summary:
Virat Kohli is reportedly set to miss the two-match T20I series against Ireland, which is scheduled to be held in the last week of June, due to his county stint.
Summary:
Google has rolled out a 'Make a GIF' button for its keyboard app Gboard on Android which allows users to create custom GIFs. The feature, which is available in beta, can be accessed by going into the GIF interface of the app and tapping on the "My GIFs" tab.
Summary:
United Airlines has said it is refunding passengers for a Denver-North Dakota flight as a "gesture of goodwill" after an air hostess got drunk.
Summary:
Billionaire Elon Musk on Sunday tweeted, "I'm starting a candy company & it's going to be amazing" and later added, "I am super super serious".
Summary:
Chinese robotics company UBTECH announced this week that it has raised $820 million in Series C round led by Tencent.
Summary:
Jawaharlal Nehru University's Assistant Professor Rajbeer Singh has been booked for allegedly assaulting and sexually harassing a female student in February.
Summary:
Tamil Nadu Chief Minister Palaniswami has announced a travel allowance of second class train fare for candidates from the state appearing for the NEET medical entrance exam outside Tamil Nadu.
Summary:
Andhra Pradesh CM Chandrababu Naidu has announced that he will personally bear the education expenses of the nine-year-old girl allegedly raped by a 60-year-old man in Guntur.
Summary:
Condemning the ban imposed by the country's judiciary on messaging app Telegram, Iranian President Hassan Rouhani said, "Failure to follow legal procedures and the use of force...
Summary:
Israel on Friday announced its withdrawal from the bid for a non-permanent seat at the UN Security Council (UNSC) for the 2019-2020 term.
Summary:
Pakistan PM Shahid Khaqan Abbasi has said that the upcoming general elections will be conducted by "aliens".
Summary:
Urging people to use freedom of expression, Philippine President Rodrigo Duterte said he is just a government worker and cannot be called a strongman.
Summary:
South Korea's Blue House is serving Pyongyang naengmyeon, North Korean leader Kim Jong-un's favourite cold noodles, in the building's canteen.
Summary:
Bombay High Court judge Shahrukh J Kathawalla heard pleas till 3:30 am early Saturday morning to clear backlog, hearing over 100 civil petitions that sought urgent interim reliefs.
Summary:
Warren Buffett's Berkshire Hathaway has reported a rare net loss of $1.1 billion in March quarter, marking its first loss since 2009.
Summary:
The man allegedly groped the reporter twice from behind whenÃÂ she was discussing a football match with the fans.
Summary:
The company is a new data firm that SCL Group set up last year.
Summary:
The ticket amount for trains which have been canceled from the beginning station to end station will be automatically refunded to the passengers' accounts, the Indian Railway Catering and Tourism Corporation has said.
Summary:
Pakistan on Friday released a video paying tribute to Tipu Sultan on the occasion of his 218th death anniversary.
Summary:
When the girl asked for the code words her father would have used, the man got scared and fled.
Summary:
The rules directed employers to provide detailed statements about work done by those hired through H-1B visas.
Summary:
Wells Fargo has agreed to pay $480 million to settle a lawsuit in which investors accused it of securities fraud related to its fake-account scandal that arose in 2016.
Summary:
Priyanka Chopra said 'The Simpsons' character Apu was the bane of her life during her high school days in USA.
The character Apu has been slammed for stereotypical depiction of Indian immigrants in USA.
Summary:
Summary:
Summary:
Ranveer Singh said his family did not have a lot of money when he was growing up while adding, "So my parents would save up for one big summer holiday abroad." He said he remembers going to Indonesia and Singapore but most often it was USA as they had relatives there.
Summary:
Earlier, PM Modi praised JD(S) supremo Deve Gowda and claimed that Congress had insulted him.
Summary:
RCB's Tim Southee pulled off a catch after jumping from over the boundary to dismiss CSK's Suresh Raina for 25(21) in the IPL 2018 on Saturday.
Summary:
Addressing an election rally in Karnataka, PM Narendra Modi said the Congress will be reduced to "PPP Congress" after the Assembly elections, adding that 'PPP' stands for Punjab, Puducherry and Parivar (family).
Summary:
Following RCB's loss to CSK on Saturday, RCB captain Virat Kohli said MS Dhoni's form in IPL 2018 is a great sign for Indian cricket.
Dhoni has slammed 27 sixes in IPL 2018, most by him in an IPL season.
Summary:
All-rounder Yusuf Pathan scored an unbeaten 27 off 12 balls after getting dropped on 0 to help SRH chase down a target of 164 against Delhi Daredevils on Saturday.
Summary:
Former Manchester United manager Sir Alex Ferguson underwent emergency surgery for a brain haemorrhage on Saturday.
Summary:
As many as eight more India Test regulars apart from captain Virat Kohli will reportedly miss the one-off Test against Afghanistan which starts June 14.
Summary:
Amazon CEO Jeff Bezos has revealed that the company's meetings begin with about 30 minutes of silence.
Summary:
The journalist, who was employed with the state's Information and Public Relations Department, was accompanying the Deputy CM to cover an official function.
Summary:
Delhi Police has traced a man accused of murdering an eight-year-old and his mother after finding that the accused had submitted his photograph in place of the boy's father in school admission form.
Summary:
A Mumbai policewoman broke the law and drove on the wrong side to take a 90-year-old man to his regular hospital.
Summary:
This comes after Netanyahu accused Iran of running a secret nuclear weapons programme in violation of the 2015 deal with world powers.
Summary:
He added that despite "unbelievably tough gun laws" in the UK, there was "blood all over the floors" from victims of knife attacks.
Summary:
Israel has accused the Palestinian militant group Hamas of organising the protests.
Summary:
BJP's CM candidate BS Yeddyurappa has asked party supporters in Karnataka's Belagavi to "tie up hands and legs" of voters who aren't planning to vote and "bring them" to polling booths to vote for BJP candidate.
Summary:
NASA on Saturday successfully launched a $993-million spacecraft called InSight which is designed to study quakes on Mars and explore the red planet's deep interior.
Summary:
The tomb, which has been painted saffron and white, was earlier listed for restoration but couldn't be accessed by authorities due to residents' resistance.
Summary:
An I&B official said that previously when awardees failed to turn up for the ceremony, the awards were sent to their residence.
Summary:
Chennai Super Kings all-rounder Ravindra Jadeja clean bowled Royal Challengers Bangalore captain Virat Kohli but did not celebrate the wicket in the IPL 2018 on Saturday.
Summary:
Indian cricket team captain Virat Kohli has revealed that he tried hard to cry after India's 2011 World Cup victory as he did not want to be the odd one out.
Summary:
A Manimaran, a driver in the Forest Department, has won a silver medal in Asian Powerlifting Championship in Udaipur, Rajasthan.
Summary:
The students' union of Delhi University's St Stephen's College has said phrases including "Mandir yahi banega" were found scribbled on the door of a chapel located in the college premises on Friday.
Summary:
Delhi High Court has said a mother's love for her child doesn't reduce if the child is born via surrogacy.
Summary:
Pisces Exim allegedly defaulted on its agreement and failed to refund amount paid to it by PEC.
Summary:
The US' National Security Agency (NSA) tripled the collection of Americans' phone records last year as compared to 2016, having collected 53 crore records of phone calls and text messages.
Summary:
Aviation think-tank CAPA has said failure to divest Air India could see the carrier shutting down unless the government puts taxpayers' money into the airline.
Summary:
Divya Dutta, who was not handed over her National Award by President Ram Nath Kovind, said, "It is 'the' National award and it (not getting it from the President) doesn't lessen what I have in my hand." Divya won her first National Award in the Best Supporting Actress category.
Summary:
Alia Bhatt has said that Anushka Sharma would make a good captain of a women celebrity cricket team.
She said this while talking about IPL and her opinion on an ideal women's celebrity cricket team.
Summary:
While talking about working with Rishi Kapoor, Amitabh Bachchan said, "We could play siblings even now, aged siblings!
Summary:
Talking about rumours of her dating Hollywood actor Tom Hiddleston, Priyanka Chopra said, "We were behind the curtains for 10 minutes where he was adjusting my dress since it had a long train." Priyanka was rumoured to be dating Tom when they appeared together at Emmys 2016 while co-presenting an award.
Summary:
Summary:
Revealing the reason behind not celebrating RCB captain Virat Kohli's wicket on Saturday, CSK all-rounder Ravindra Jadeja said he was not ready to celebrate as it was his first delivery of the match.
Summary:
Captain Mahendra Singh Dhoni took his tally of sixes in the IPL 2018 to 27, his most in an IPL season, as Chennai Super Kings defeated Royal Challengers Bangalore for the second time this season on Saturday.
Summary:
Summary:
Talking about fan experiences, RCB batsman AB de Villiers revealed he once woke up in a flight in India with a baby on his lap.
Summary:
Apple's iPhone X was the worldâÂÂs best-selling smartphone model, shipping around 16 million units during the quarter ended March 31, 2018, according to Strategy Analytics.
Summary:
Summary:
The Delhi government has directed its civil officers to submit an undertaking every month stating that vehicles have been strictly used for official work and not personal purposes, officials said.
Summary:
Bihar's Madhubani station and Tamil Nadu's Madurai station shared the second prize, third prize has gone jointly to three stations.
Summary:
Two earthquakes of magnitudes 5.4 and 6.9 hit the island on Friday, a day after the eruption of the volcano.
Summary:
Chinese President Xi Jinping has said that the theories of German philosopher Karl Marx remain "totally correct" for the communist nation.
Summary:
Malayalam filmmaker Jayaraj, who attended the 65th National Film Awards ceremony, has asked the winners who boycotted the ceremony to return the cash prize.
Summary:
Gayle has hit 604 boundaries in 105 Indian Premier League innings, including 290 sixes and 314 fours.
Summary:
Rohit has now hit 301 T20 sixes and is followed by Suresh Raina (290) and MS Dhoni (260) among Indians.
Summary:
US-based company Workhorse's SureFly hybrid-electric helicopter has achieved its first flight, hovering untethered five feet above the ground.
Summary:
No civil and military flights will operate from Chandigarh during the period, Chandigarh International Airport PRO Deepesh Joshi said.
Summary:
Earlier, village Panchayat had asked the rape accused to do 100 sit-ups and pay â¹50,000 to the victim's family.
Summary:
A photo of a girl drawing a Pakistan flag was printed on 5,000 notebooks, distributed last year, under 'Swachh Jamui, Swasth Jamui' campaign in Bihar to propagate Swachh Bharat Mission.
Summary:
The Indian Railways recorded the worst punctuality performance in three years with almost 30% of the trains running late in 2017-18, official data has revealed.
Summary:
Five slices of previous UK royal weddings' cakes are going up for auction next month in the US state of Las Vegas.
Summary:
The airline's Chairman has been slammed over the 'bad' behaviour of his daughters.
Summary:
Amid the ongoing 'trade war' between the two countries, US President Donald Trump has said that China has become "very spoiled" after its victory over the US in the 'trade war'.
Summary:
The population of children in Japan fell for the 37th consecutive year, government data has revealed.
Summary:
Ripple violated state and federal laws by offering unregistered securities to retail investors, the lawsuit said.
Summary:
Further, the share of retirees who are millionaires has more than doubled since 1989, the report added.
Summary:
The firm sought withdrawal of the circular, claiming that it is "arbitrary, unfair and unconstitutional".
Summary:
Karan Johar has said that there is tremendous potential in regional cinema.
calling it regional cinema, we should just call it Indian cinema and be proud of it." Johar added that he wants to showcase the talent and do much more in regional cinema.
Summary:
As per reports, Salman Khan's 'Race 3' has fetched â¹190 crore for the film's distribution before its Eid release, with Eros International offering the producers the amount.
Summary:
The video also shows Sonam's cousins, friends and other family members practising on the song 'Swag Se Swagat' from 'Tiger Zinda Hai'.
Summary:
Censor Board has ordered 17 cuts in the Hindi version of Kamal Haasan starrer 'Vishwaroopam 2', according to reports.
Summary:
Congress President Rahul Gandhi has said that if his party is voted to power in the 2019 general elections, they will waive off all farm loans within 10 days of forming the government.
Summary:
Defending five runs off the last over against Denmark, Uganda took remaining four wickets to win a rain-curtailed ICC World Cricket League Division Four match by 1 run (D/L method).
Summary:
The forward reads, "I can hang your WhatsApp for a while just touch below message" and the message below that reads, "don't-touch-here".
Summary:
Announcing a â¹4-lakh compensation each to the kin of 73 people killed due to dust storms in Uttar Pradesh, CM Yogi Adityanath said, "We can't bring back those who passed away." Expressing his condolences, he said the state is providing all possible help.
Summary:
A Muslim family in Uttar Pradesh got separate sets of wedding cards printed for their Hindu and Muslim guests, with invites for Hindus having pictures of Lord Ram and Sita.
Summary:
Meanwhile, Jaiswal said, "I don't know why children were seated 8 hours in advance, concerned teachers are answerable."
Summary:
The deal was aimed at ending a series of strikes by the airline's pilots, cabin crew and ground staff in recent weeks.
Summary:
The Rashtrapati Bhavan has called the I&B Ministry's handling of the National Film Awards "a breach of faith", adding the controversy "demeaned" the office of the President.
Summary:
Addressing an election rally in assembly poll-bound Karnataka, Uttar Pradesh Chief Minister Yogi Adityanath said that state CM Siddaramaiah let "Jihadi elements" grow in Karnataka.
Summary:
Jack Ma-led Chinese e-commerce giant Alibaba has posted a 47% rise in net profit at $10.2 billion in the financial year ended March 31.
Summary:
Apple's stock hit an all-time high on Friday after Warren Buffett's Berkshire Hathaway disclosed that it bought an additional 75 million shares of the company in the first quarter of 2018.
Summary:
Amid acquisition talks between Walmart and Flipkart, the swadeshi lobby led by Swadeshi Jagran Manch has opposed the deal with support from some trade lobby groups.
Summary:
NASA astronaut Joseph Acaba admitted to being afraid of heights in space during his first public appearance since his return from the space station on February 28.
Summary:
The man also boarded the auto with them, slapping and abusing the woman, who then handed him over to police.
Summary:
Slamming the government for the delay in justice for her daughter, Nirbhaya's mother has said, "I will not vote for anyone next year.
Summary:
China's ambassador to India Luo Zhaohui on Friday said that PM Narendra Modi and Chinese President Xi Jinping have the opportunity to meet at least three more times this year.
Summary:
A man in Uttar Pradesh's Lucknow built a drone in 6 hours to rescue a puppy after he saw it drowning in a drain.
Summary:
The court's verdict came after the victim and her mother agreed for termination of pregnancy.
Summary:
The passenger reservation system of the Northern Railway, the North Central Railway, the North Western Railway and the North Eastern Railway will remain temporarily suspended for around three hours on this weekend.
Summary:
This comes after North Korean leader Kim Jong-un had promised to unify the time zones of the two nations during his visit to South Korea.
Summary:
The US Department of Homeland Security on Friday ended the Temporary Protected Status (TPS) for about 57,000 Hondurans, giving them time until 5 January 2020 to leave the US or acquire legal residency by other means.
Summary:
Argentina's central bank raised the country's interest rates to 40% on Friday in a bid to defend the country's currency, the peso, which has lost a quarter of its value over the past year.
Summary:
"Mr Mark please...give a facility to select grooms and brides with the search option in the country, state, district, name, gender, education, age, profession and religion base," she wrote in a post.
Summary:
Actress Alia Bhatt has said Ranbir Kapoor is the Sonam Kapoor of men's fashion, adding she earlier believed Karan Johar was the one holding the fashionista image.
Summary:
Summary:
Summary:
The result lifted Brighton into 11th place at 40 points and assured them of finishing above the bottom three.
Summary:
In 1992, Sachin created history by becoming Yorkshire's first overseas player while Sourav Ganguly has represented three sides in county.
Zaheer Khan played for Surrey in 2004, and now Virat Kohli is set to represent them.
Summary:
Former Australian cricketer Justin Langer, who was named Australia's new coach after the ball-tampering scandal, was himself involved in a misconduct act in 2004.
Summary:
Autonomous robots are seen kicking and following the ball without any human intervention in the video.
Summary:
In an internal document, Apple confirmed that the affected devices may display a greyed-out speaker button while making calls or using FaceTime.
Summary:
Facebook has reportedly been conducting market research to determine whether an ad-free subscription option would convince people to sign up for the social media platform.
Summary:
E-commerce giant Amazon has launched its own brand of pet products called Wag, which is available only to Amazon Prime subscribers.
Summary:
While referring to his cutting off analysts' questions during a conference call, Tesla CEO Elon Musk has said, "It was foolish of me to ignore them." "Once they were on the call, I should have answered their questions live," he tweeted.
Summary:
Sanji Ram, main accused in the rape and murder of the eight-year-old Kathua girl, told the Supreme Court on Friday that he was "like a grandfather" to the victim.
Summary:
A US Navy veteran has been sentenced to life imprisonment for killing Indian engineer Srinivas Kuchibhotla in a hate crime at a Kansas City bar in February last year.
Summary:
US state California's economy has surpassed that of the UK to become the worldâÂÂs fifth largest, according to new federal data released on Friday.
Summary:
Although UEFA corrected the blunder quickly, some Twitter users alleged the competition is scripted.
A user wrote, "Football is scripted just like WWE.
Summary:
A 28-year-old man from Karnataka has been arrested for allegedly molesting a 32-year-old UK citizen standing in a queue at the Mumbai airport, police said.
Summary:
Internet services in Uttar Pradesh's Aligarh have been suspended till Saturday midnight amid protests over the display of Pakistan founding father Muhammad Ali Jinnah's portrait at Aligarh Muslim University (AMU).
Summary:
K Narasimha Reddy, who earned less than â¹40,000 per month, reportedly drew attention of ACB officers when he purchased his 18th plot.
Summary:
The Nagpur metro on Friday organised a pre-launch 'joy ride' to give the citizens an experience of travelling in the metro and a feel of the system.
Summary:
PM Modi sent him the garland and wished him success in a letter.
Summary:
PM Narendra Modi on Friday announced a compensation of â¹2 lakh for the kin of those who lost their lives to dust storms in various parts of the country.
Summary:
Earlier this week, Trump suggested the North-South Korea border and Singapore were being considered as top choices.
Summary:
Sweden has made a series of films on sex education primarily for female migrants.
Summary:
The landmark decision is reportedly aimed at advocating secularity amid efforts by Saudi Arabia to modernise the conservative kingdom.
Summary:
Guttfield said an Amazon employee went to the driver's home and found the puppy and brought it back.
Summary:
The GST Council on Friday decided to introduce a single monthly return for businesses in order to simplify the process and increase compliance.
Summary:
The data showed that aggregate deposits in the banking system grew a mere 6.7% in 2017-18, the lowest since fiscal 1963.
Summary:
Rishi Kapoor, while talking about the film industry in the present times, said, "This is the era of actors now, non-actors are not going to survive." "They may be there for one or two films but if you are not competent enough, you cannot survive," he added.
Summary:
American rapper Snoop Dogg took to Instagram to share a photoshopped image of a "white" and "new" Kanye West, taking an apparent jibe at him over his recent controversial comments on social media.
Summary:
Talking about his co-star Sara Ali Khan in 'Simmba', Ranveer Singh said, "I think we are going to be a great team." "What really struck me about her, is her personality.
Summary:
Directed by Deb Medhekar and produced by Sunil Doshi, the film is scheduled to release on May 25.
Summary:
Former Prime Minister and JD(S) chief HD Deve Gowda has said that he would not support BJP or Congress in case there is a hung assembly in Karnataka.
Summary:
With their third win, Mumbai Indians moved from the eighth spot to the fifth on the IPL 2018 points table.
Summary:
Former Liverpool captain Steven Gerrard was announced as the manager of Scottish football club Rangers on Friday.
Summary:
CSK skipper MS Dhoni criticised the team for misfields during their loss to KKR on Thursday, saying, "What is more disappointing (than the defeat) is guys are not aware on the field." Ravindra Jadeja had dropped two back-to-back catches of Sunil Narine on six runs, who went on to score 32(20).
Summary:
All India Muslim Mahasangh President Farhat Ali Khan has announced that he would give â¹1 lakh cash to those who publicly destroy posters of Mohammad Ali Jinnah and "people like him".
Summary:
Twenty-one milk samples including that of Amul and Mother Dairy have turned out to be sub-standard during tests conducted by the Delhi government, Health Minister Satyendar Jain said.
Summary:
The organisation, set up in 1910, announced last year that it would accept transgenders as well.
Summary:
The Met Department has admitted that it couldn't predict the intensity of the dust storm, which killed over 120 people in North India, as its radar wasn't working for a month, reports said.
Summary:
"Swedish meatballs are actually based on a recipe King Charles XII brought home from Turkey in the early 18th century," the country's official Twitter account wrote.
Summary:
Johar said this when he was asked if he was interested in acting in a Marathi film.
Summary:
A song titled 'Ashes', sung by Celine Dion for 'Deadpool 2', has been released.
Summary:
Slamming the Indian government about their attitude towards the entertainment industry, Richa Chadha tweeted, "We've only had a reprimanding-uncle type CBFC." She added that no government has taken entertainment industry seriously and it is a highly taxed industry which gets no support.
Summary:
The association said, "After casting their votes, parents can visit member schools...and confirm that they voted by showing the indelible ink mark."
Summary:
Virat Kohli will be paid "at par with any standard county player" during his month-long stint at Surrey in June.
Summary:
The Maharashtra government will increase the height of the Chhatrapati Shivaji Maharaj Memorial by two metres, making it the tallest statue in the world.
Summary:
The world's busiest domestic route remains between a South Korean island and capital Seoul where planes made nearly 65,000 trips in 2017.
Summary:
Angered by the directive, the accused barged into her home and set her ablaze.
Summary:
A woman traveling in an Uber cab in Mumbai has alleged that she was sexually harassed by the driver, who unzipped his pants and started masturbating in front of her.
The woman said, "He...started to corner me.
Summary:
Haryana Environment Minister Vipul Goel has said the World Health Organisation's report, which places Faridabad as the second most polluted city in the world, makes unjustifiable claims.
Summary:
The government on Friday issued thunderstorm warnings to West Bengal, Odisha, Bihar, and Uttar Pradesh, after 124 people were killed in dust storms.
Summary:
Uttar Pradesh BJP minister Anupma Jaiswal has said state ministers are happy to stay at Dalit homes "despite being bitten by mosquitoes all night" to ensure that government schemes reach every household.
Summary:
The White House has said that it's "good" when world leaders get along, referring to the recent informal summit between Prime Minister Narendra Modi and Chinese President Xi Jinping.
Summary:
The Marines chief further called the terrorists "criminals" who sold drugs and killed innocent people in the name of Islam.
Summary:
Delhi-based PC Jeweller has lost $2.57 billion in market capitalisation after founder Padam Chand Gupta gifted shares to one of his family members, besides reports of the company's affiliation with financial services firm Vakrangee.
Summary:
Sharing a video of actress Sonam Kapoor, Anupam Kher wrote, "Bride to be.
Summary:
Amitabh Bachchan has said that he has no legacy to leave behind while adding that the legacy of his father Harivansh Rai Bachchan, a noted Indian poet, is what he is interested in.
Summary:
Anil Kapoor will reportedly be performing on two of his favourite songs, 'My Name is Lakhan' from his film 'Ram Lakhan' and 'Gallan Goodiyan' from 'Dil Dhadakne Do' during his daughter Sonam Kapoor's sangeet ceremony.
Summary:
Uttar Pradesh CM Yogi Adityanath, who was scheduled to campaign in poll-bound Karnataka till Sunday, cut short his visit by a day and returned to Lucknow after at least 73 people were killed in dust storms.
Summary:
Reacting to England fast bowler James Anderson's new look with blonde hair, a user tweeted, "Did Hardik Pandya bless him?" Other tweets read, "English cricket's midlife crisis takes another step," "Jimmy with bleached hair?
Summary:
The official Twitter account of the tournament revealed that the President arrived at the venue without giving anyone a heads up.
Summary:
English county team Yorkshire, which included England Test captain Joe Root and Indian Test batsman Cheteshwar Pujara in its playing XI, got dismissed for 50 runs in 18.4 overs in first innings against Essex on Friday.
Summary:
A Delhi Police personnel spotted the man while patrolling the area on his motorcycle.
Summary:
The Taliban militant group has seized a district in Afghanistan's Badakhshan province, officials said.
Summary:
North and South Korea decided not to face each other in quarter-finals and instead fielded a joint women's team for the semi-finals against Japan at the 2018 World Table Tennis Championships.
Summary:
Four of the men convicted in the 2012 Nirbhaya rape case have appealed to the Supreme Court against their death sentence, terming it "cold-blooded killing in the name of justice".
Summary:
It has allowed exchanges to set trading hours in equity derivatives between 9:00 am and 11:55 pm, effective October 1, 2018.
Summary:
Summary:
The film, which also stars Renuka Shahane, is scheduled to release on May 25.
Summary:
This comes after Facebook users' data was exploited to influence US elections.
Summary:
In an apparent dig at BJP's Dalit outreach programme, RSS chief Mohan Bhagwat on Friday said, "Taking food at Dalits' homes, inviting the media or for publicity stunts, is not a good practice." "Leaders should interact with Dalit people routinely and regularly.
Summary:
It is reported SoftBank will sell all of its stake of over 20% in the homegrown e-commerce giant valued at around $20 billion.
Summary:
A 60-year-old rickshaw-puller, who allegedly raped a nine-year-old girl in Andhra Pradesh's Guntur, was found hanging from a tree on Friday.
Summary:
Currently, a 49% stake in GSTN is held by the government.
Summary:
The Bombay High Court has granted bail to former Maharashtra Deputy CM Chhagan Bhujbal, who was arrested in March 2016 in a â¹857-crore money laundering case.
Summary:
Commoners invited to the wedding of Britain's Prince Harry and actress Meghan Markle have been asked to bring own food "as it will not be possible to buy food and drink on site", invitation letters sent to them read.
Summary:
Over 1,100 economists, including Nobel laureates, have written a letter to US President Donald Trump warning him that his protectionist policies may repeat conditions that caused the Great Depression in the 1930s.
Summary:
Filmmaker Meghna Gulzar has said she's thankful to Alia Bhatt for agreeing to do her film 'Raazi' while adding, "Otherwise I couldn't have made the film." "From the time I learnt I've to helm the film, Alia's face popped up in my mind and that never changed," she added.
Summary:
Summary:
Akshay Kumar has said that the social work he does comes from "pure compassion".
He further said, "As a celebrity, I should be changing one thought.
Summary:
Janardhana has been charged in a â¹50,000-crore mining scam and was barred from Ballari as a bail condition in 2015.
Summary:
During the interview, Gill revealed that he eagerly wants to have a beard like Karthik.
Summary:
Shubman Gill, who scored a match-winning knock against CSK, has said he felt that he had to win the match for KKR at any cost after dropping MS Dhoni's catch.
Summary:
Summary:
Banned Australian cricketer Steve Smith on Friday took to Instagram to reveal that he had returned to Australia after spending some time away "to come to terms with everything".
Summary:
In a first, Israel-based researchers have demonstrated the feasibility of a robotic system that can play Tic-Tac-Toe using cups (instead of X's and O's) with rehabilitation patients to improve their task performance.
Summary:
Summary:
A man in Bihar's Nalanda was arrested on Thursday for allegedly raping his 16-year-old daughter repeatedly over the past six months.
Summary:
PNB's Non-Executive Chairman Sunil Mehta said there "were many learnings" from the $2.1-billion fraud by jewellers Nirav Modi and Mehul Choksi.
Summary:
Meanwhile, the police is yet to conduct a medical examination of the victim.
Summary:
Delhi Metro services on Violet line were on Friday affected between Kashmere Gate and Central Secretariat stations for around 90 minutes after a technical glitch occurred in the overhead electrification line.
Summary:
The US has stopped providing funds to the Syrian volunteer rescue group White Helmets, reports quoting the group's officials said.
Summary:
Users can avail the offers by adding Big Bazaar to their Google search.
Summary:
Ahmed Omar Saeed Sheikh, portrayed by Rajkummar Rao in 'Omerta', is a British terrorist of Pakistani descent who has been a member of militant outfits including Jaish-e-Mohammed and Al-Qaeda.
Summary:
The doctors at Danbury Hospital, Connecticut are probing the extracted tumour, which gained weight over two months and prompted the patient to seek medical attention.
Summary:
"India is doing extremely well on electrification...About 85% of the population has access to electricity," a World Bank official stated.
Summary:
BJP MLA BN Vijayakumar passed away after he suffered a cardiac arrest while campaigning in Karnataka's Jayanagar on Thursday for the upcoming assembly elections.
Our condolences to his family," BJP tweeted post Vijayakumar's demise.
Summary:
Commonwealth mixed team gold medalist Kidambi Srikanth climbed from fifth to the third spot, while HS Prannoy jumped to a career-best eighth spot.
Summary:
On being asked how he plans to spend his $131-billion fortune, Amazon CEO Jeff Bezos said, "Only way...to deploy this much financial resource is by converting my Amazon winnings into space travel." "Blue Origin, the space company, is the most important work that I'm doing," he added.
Summary:
Former Volkswagen CEO Martin Winterkorn was charged in a US federal court with conspiring to defraud regulators about the automaker's diesel emissions cheating.
Summary:
Chinese e-commerce giant Alibaba's Founder Jack Ma has said that machines can never win against human beings as "humans have hearts, while machines only have chips".
Summary:
The India Meteorological Department has issued a thunderstorm warning in various parts of the country from May 5 to May 7, 2018.
Summary:
An 87-year-old woman in Jammu and Kashmir's Badali village is building a toilet on her own to make her village open defecation free.
Summary:
Summary:
A day after confirming 27 people were charred to death in a bus accident in Motihari, Bihar Disaster Management Minister Dinesh Yadav has now said that there were no casualties in the incident.
Summary:
The White House on Thursday warned China of consequences over its growing militarisation in the South China Sea.
Summary:
The US has accused China of pointing military-grade blinding lasers at its pilots in Djibouti in nearly 10 such incidents in the past few weeks.
Summary:
A 25-year-old woman returned home in Noida days after her family performed the last rites of a body which they identified as hers.
Summary:
Adidas CEO Kasper Rorsted has said the company doesn't support American rapper Kanye West's remark on slavery being a "choice".
Earlier, West had said, "Yeezy will hit a billion dollars this year.
Summary:
Isabelle further revealed she cried every time she watched Aamir's film 'Fanaa'.
Summary:
With his four maximums against KKR on Thursday, CSK captain MS Dhoni took his tally of sixes in IPL 2018 to 24, the most by a batsman in this year's IPL.
Summary:
Afghan wicketkeeper-batsman Mohammad Shahzad revealed that he had dropped into former Indian captain MS Dhoni's room after matches against India and "chatted for hours".
Summary:
CSK captain MS Dhoni spent time with the ground staff of Maharashtra Cricket Association Stadium in Pune on Labour Day.
Summary:
Andhra Pradesh Chief Minister N Chandrababu Naidu on Friday said that Google and his government will facilitate all Gram Panchayats with internet access, installing 25,000 Wi-Fi hotspots by December 2018.
Summary:
Summary:
The European Union on Thursday launched 'Discover EU' programme, inviting thousands of 18-year-old Europeans to travel in the bloc for free this summer as part of its efforts to promote the EU.
Summary:
The woman's son told her that the landlord had taken the girl with him, following which she filed an FIR.
Summary:
One of New Zealand's most senior naval officers, Alfred Keating, has been accused of hiding a camera in the toilet of the country's embassy in Washington, court documents revealed on Friday.
Summary:
"You don't even look like yourself," commented a user.
"Why hire a black model when we can paint Gigi's...face to look like one," wrote another user.
Summary:
After over 50 winners boycotted the 65th National Film Awards ceremony on Thursday, the vacant seats at the ceremony were filled with dummies.
Summary:
The Kasauli hotelier accused of killing an officer has confessed to the crime, saying he killed her because she refused to take a bribe.
Summary:
The Nobel Foundation has decided to not award the Nobel Prize in Literature this year after it was embroiled in a scandal over sexual assault allegations.
Summary:
The Academy of Motion Picture Arts and Sciences has expelled comedian Bill Cosby and filmmaker Roman Polanski for violating the organisation's standards of conduct.
Summary:
The organisation committed $1 million to TheTeacherApp to help them reach 5,00,000 teachers in two years, besides a $2-million grant and technical assistance from YouTube to the Central Square Foundation.
Summary:
US-based retail giant Walmart has reportedly decided to buy 73% stake in Flipkart, spending about $14.6 billion, while Google-parent Alphabet is said to invest $3 billion.
Summary:
Special SC/ST court judge Madhu Sudan Sharma has been transferred days after he convicted self-styled godman Asaram Bapu on rape charges and sentenced him to life imprisonment until death.
Summary:
Delhi High Court on Thursday allowed Sikh candidates to carry 'kirpan' (sacred knife) and wear 'kara' (iron bracelet) while appearing for the National Eligibility Test (NET) 2018.
Summary:
The Centre is reportedly planning to assign green registration plates for electric vehicles, which will help in distinguishing them from other vehicles and giving them preferential treatment like special parking or discounted tolls.
Summary:
Pakistan on Thursday released Jetindaera Arjanwara, a 21-year-old Indian prisoner who has been diagnosed with cancer and Tuberculosis, on humanitarian grounds.
Summary:
A man, who was given bail in a case related to a 10-year-old girl's rape in 2017, has been arrested by Rajasthan Police for allegedly raping a 3-year-old girl in Ganganagar.
Summary:
The White House has said it would welcome the release of three Americans imprisoned in North Korea as a goodwill gesture ahead of US President Donald Trump and North Korean leader Kim Jong-un's summit.
Summary:
Under new rules, offshore online retailers such as Amazon will be required to apply and collect a GST of 15% on goods priced below 400 New Zealand dollars.
Summary:
Iran will not be bullied by the US into renegotiating the multilateral nuclear deal, Iran's Foreign Minister Javad Zarif has said.
Summary:
President Donald Trump has reportedly ordered the US Defence Department Pentagon to prepare options for reducing the number of US troops stationed in South Korea.
Summary:
Ardern also made a plea on Facebook, asking people with available seasonal housing to contact her team.
Summary:
Hollywood actress Emma Watson, while sharing an article on Deepika Singh Rajawat, the lawyer representing the family of the girl who was raped and murdered in Kathua, tweeted, "All power to Deepika Singh Rajawat." The article stated how Deepika Singh Rajawat is a "force to reckon with".
Summary:
Producer Boney Kapoor, while reacting to the row over President Ram Nath Kovind handing over the National Awards to only 11 winners, said, "I don't understand what the fuss is about." "I would have been equally happy if the Information and Broadcasting Minister had given me the award.
Summary:
"Rajkummar Rao nails the part as the dreaded terrorist Omar Sheikh," said The Times of India (TOI).
Summary:
The Kerala State Film Development Corporation will be opening 100 new movie theatres across major cities in the coming months and is planning on public-private partnerships for the project, reports said.
Summary:
Another fan had entered the field two weeks ago to touch Dhoni's feet as he was coming out to bat.
Summary:
Instagram has added an in-app payments feature as a test where users can make purchases after adding a credit or debit card with an additional pin.
Summary:
Summary:
Summary:
A man in Uttar Pradesh's Kannauj carried his wife to a hospital on a 'thela' (cart) after 108 emergency ambulance service allegedly refused to come to his village.
Summary:
Shankaracharya Swaroopanand Saraswati of Dwarka Peeth has accused the BJP and RSS of causing "maximum damage" to the ideals of Hinduism in recent times.
Summary:
Outgoing Arsenal manager Arsene Wenger's hopes of the only UEFA Europa League trophy in 22 years were dashed in a 1-0 defeat by Atletico Madrid in the semi-final's second leg on Thursday.
Summary:
However, it cautioned users to change passwords for all services where the Twitter password was used.
Summary:
Amitabh Bachchan and Rishi Kapoor starrer '102 Not Out', which released today, "knows...the emotions it wants to evoke," wrote Hindustan Times (HT).
It has been rated 3/5 (HT), 3.5/5 (TOI) and 4/5 (Koimoi).
Summary:
The Bengaluru Police has issued an order banning the sale, distribution and consumption of liquor in the city on May 10-12 and May 15 ahead of the Karnataka Assembly elections.
Summary:
Virender Sehwag has revealed that former captain Sourav Ganguly used to ask him and other young cricketers to pack his kit bag before going for post-match press conferences.
Sehwag jokingly added that he stopped packing Ganguly's kit bag after slamming his first international ton.
Summary:
Passengers of an IndiGo flight had to wait for hours for the departure as there was no pilot in the plane.
Summary:
Refusing the Centre's petition to stay its March verdict on the anti-atrocities SC/ST act, the Supreme Court on Thursday reportedly said, "We never asked anybody to commit a crime.
Summary:
Western disturbance-induced cyclonic circulation, high moisture brought in by eastern winds and unusually high temperatures caused the dust storm which killed over 100 people across North India, Met Department officials have said.
Summary:
Pension fund regulator PFRDA has said National Pension System (NPS) subscribers will now have the option to partially withdraw funds for setting up new business or pursuing higher education.
Summary:
A 33-year-old Latvian tourist, who was found hanging upside down in a Kerala forest in April, was drugged and sexually assaulted before being murdered, police said.
Summary:
Punjab Health Minister Brahm Mohindra has refuted rumours circulating on social media that government-administered vaccine for Measles and Rubella affects children's immunity and memory, and is being used on minorities.
Summary:
ISIS killed a captive Syrian Army soldier by tying a bomb to his head and throwing him off a building, according to reports.
Summary:
UN Secretary-General António Guterres has urged US President Donald Trump not to scrap the Iran nuclear deal unless there is a "good alternative".
Summary:
Bus drivers in Japan's Okayama City are on a strike by giving free rides to customers.
Summary:
A 35-year-old Indian man allegedly used a toy gun to scare "speeding bus drivers" in UAE, a court has heard.
Summary:
Sandwich chain Subway Restaurants on Wednesday announced that CEO Suzanne Greco is retiring after working with the company for about 45 years.
Summary:
PC Jeweller has clarified that CBI has not arrested the company's CEO Balram Garg, calling the media reports of his arrest as "factually incorrect".
Summary:
Reports further said that the shooting of Ekta's series will begin in May.
Summary:
Actor Arjun Kapoor on Thursday took to Instagram to share a childhood picture of himself with Ranbir Kapoor and Shraddha Kapoor's brother Siddhanth from a birthday party.
Summary:
Summary:
Shubman Gill, who was named Player of the 2018 U-19 Cricket World Cup, slammed his maiden IPL fifty to help KKR defeat CSK on Thursday.
Summary:
Team India captain Virat Kohli has revealed that a fan once gave him a letter which was written in blood in Delhi.
"I just gave it to security guy.
Summary:
Sachin also laid the foundation stone of the Cricket Museum and Centre of Excellence at the stadium.
Summary:
Flipkart has reportedly bought back shares from a set of existing investors for $350 million, to reclaim its status of a private company.
Summary:
The Delhi High Court has withdrawn the interim protection from arrest granted to Gitanjali Gems MD Mehul Choksi in connection with an FIR lodged in 2016 by a franchise owner.
Summary:
Reports said the incident occurred after BJP workers abused DMK workers, who attempted to show black flags to Sitharaman.
Summary:
Groups including the Tajiks have objected to the word 'Afghan' on the ID card which is used to describe the nationality.
Summary:
Idea Cellular on Saturday reported a 193.6% year-on-year rise in consolidated net loss at â¹962.2 crore for the March quarter, in its sixth consecutive quarterly loss.
Summary:
Over 50 winners boycotted the 65th National Film Awards ceremony on Thursday, upset with President Ram Nath Kovind presenting awards to only 11 awardees and attending the event for an hour.
Summary:
With this, Kohli will miss the one-off Test match against Afghanistan, which is scheduled to start on June 14.
Summary:
Late actress Sridevi was honoured with the National Award for Best Actress posthumously at the 65th National Film Awards ceremony held in New Delhi on Thursday.
Summary:
Summary:
His grip, his stance...he plays all his shots around the wicket (like Sachin Tendulkar)," he added.
Summary:
In June 2017, Andhra Pradesh CM Chandrababu Naidu had offered Srikanth a Group 1 officer post after he won the Indonesian and Australian Open titles.
Summary:
Nearly 2,500 educational institutions across Maharashtra have set up Electoral Literacy Clubs (ELCs) to educate and raise awareness among youngsters about the electoral system.
Summary:
Vijay Singh shot the officer on Tuesday when her team started demolishing illegal construction at his hotel as per Supreme Court orders.
Summary:
The missiles are the first to be deployed on the Spratly Islands.
Summary:
The Income Tax Department has detected unreported high-value transactions amounting to â¹1 lakh crore in fiscal 2017-18, according to reports.
Summary:
Analysts at the Reserve Bank of India (RBI) wrote in a new study that numerous revisions of GDP data by the Central Statistics Office are "confusing".
Summary:
India's airport infrastructure sector will see an investment of around â¹1 lakh crore over the next five years, the government said on Wednesday.
Summary:
Talking about the equation between Salman Khan and her sister Kareena Kapoor, Karisma Kapoor said, "For Salman, Kareena is like a little sister...
Karisma and Salman have worked together in films like 'Judwaa' and 'Biwi No 1'.
Summary:
Filmmaker Karan Johar on Thursday announced he will be co-producing a biopic on Kargil war hero Vikram Batra.
Summary:
Speaking about his late father Vinod Khanna being conferred with the Dadasaheb Phalke Award at the 65th National Film Awards ceremony, Akshaye Khanna said, "It's a bittersweet moment for us." "I wish my father was here...It's an emotional day for us," he added.
Summary:
Actress Jacqueline Fernandez, while speaking about the upcoming film 'Race 3', said, "We've filmed in amazing locations, in extreme conditions and some of the stunts that Salman has done are mind-blowing." "Even my action sets are larger-than-life and with (director) Remo D'souza's magic touch, it will be a must-see," she added.
Summary:
Indian all-rounder Irfan Pathan has termed SRH's bowling attack as the best in the IPL 2018, saying the way SRH bowlers have performed without senior pacer Bhuvneshwar Kumar is a "big thing".
Summary:
Afghan wicketkeeper-batsman Mohammad Shahzad, who weighs over 90 kg, has said that he doesn't need to follow Team India captain Virat Kohli's diet as he can hit longer sixes than him.
Summary:
He further said the "Mt Everest moment" of his playing career was when Australia beat India in India in 2004.
Summary:
Former Manchester United defender Rio Ferdinand has 'retired' from boxing without even fighting a single bout after being denied a professional boxing licence.
Summary:
Amazon's offer to buy a controlling stake in Flipkart isn't high enough to cover potential risks, as per reports.
Summary:
After observing Przybylski's star's magnetic field values for 43 years, European astronomers have estimated that the star, 370 light-years away from Earth, takes 188 years to complete just one rotation about its axis.
Summary:
The government-commissioned advertisement shows a disabled woman about to perform a puja in "sami's (God's) name" after she secured a job.
Summary:
An injured bear killed a man in Odisha on Wednesday after he tried to take a selfie with the animal.
Summary:
Only four out of the German air force's 128 Eurofighter jets are combat-ready due to a technical problem with the model's self-defense system, according to a report by German magazine Spiegel.
Summary:
Reports had said that SEBI is probing fall in IndiGo's stock before Ghosh's resignation was announced.
Summary:
The government has asked the Ministry of Home Affairs to avoid needless objections to Foreign Direct Investment proposals, according to reports.
Summary:
Netherlands-based researchers have created embryo-like structures in the lab from stem cells, without using eggs or sperm.
Summary:
The 'Rainbow Mountain' in Peru is a ridge of multicoloured sediments laid down millions of years ago.
Summary:
A woman in Russia has revealed that she adopted eight children with special needs after her son recovered from an injury.
Summary:
Speaking at a rally in poll-bound Karnataka, Congress President Rahul Gandhi said that he never resorts to personal attacks unlike Prime Minister Narendra Modi.
Questions PM Modi doesn't answer," Gandhi added.
Summary:
The Indian cricket team has refused to play a day-night Test during the Australian tour later this year over the quality of pink ball.
Summary:
Slamming Congress for demanding proof on surgical strikes conducted against Pakistan, PM Narendra Modi said, "Congress would rather prefer our soldiers go with cameras and not guns." He added that Congress leaders have a history of disrespecting defence forces.
Summary:
The Pakyong airport in Sikkim is set to become India's 100th operational airport when it is commissioned in June, Minister of State for Civil Aviation Jayant Sinha said on Wednesday.
Summary:
The Dalmia Bharat Group has adopted Gandikota Fort in Andhra Pradesh, along with the Red Fort in Delhi, for a period of five years under the government's 'Adopt A Heritage' scheme.
Summary:
The bus overturned after the driver tried to avoid an accident with a two-wheeler, the police added.
Summary:
Amid protests over the formation of the Cauvery Management Board, the Supreme Court on Thursday directed Karnataka to release 4 TMC of water to Tamil Nadu or face strict action.
Summary:
Geostationary satellites provide internet on flights through air-to-ground networks, wherein signals are sent to ground receivers and then to airplane antennas when the plane is flying over land.
Summary:
CBI has booked ex-Tehelka editor Upendrra Rai and Air One Aviation's Chief Security Officer Prasun Roy for giving false information for accessing "highly sensitive" areas including airports.
Summary:
A 60-year-old rickshaw-puller allegedly raped his nine-year-old neighbour in Andhra Pradesh's Guntur on Wednesday.
Summary:
A fire broke out at the Indian Space Research Organisation's (ISRO) Space Applications Centre in Ahmedabad's Ambawadi Vistar area on Thursday.
Summary:
The earlier record was held by Intel, which flew 1,218 drones in formation during the Winter Olympics in South Korea.
Summary:
It is among several statues that appeared in public spaces in Los Angeles, San Francisco, New York, Seattle and Cleveland in 2016.
Summary:
The Supreme Court has ordered Amrapali Group to repair escalators, lifts and fire-fighting equipments in all its residential buildings by May 7.
Summary:
A recreated version of the song 'Waqt Ne Kiya Kya Haseen Sitam', titled 'Waqt Ne Kiya', from the upcoming film '102 Not Out', has been released.
Summary:
Commentator Sanjay Manjrekar was trolled by Twitter users after he misspelled RCB wicketkeeper Quinton De Kock's name as Quinton 'De Cock'.
"First get your basic spellings right, then comment on others wicketkeeping skills," wrote a user.
Summary:
The BJP on Tuesday tweeted a news report that claimed a local municipality in Karnataka removed a hoarding with a cartoon on Congress President Rahul Gandhi in 2016.
Summary:
A cruise ship will travel to 59 countries during a 245-day journey.
Summary:
Helium, the second most common element in the universe, has been successfully found in the atmosphere of a planet beyond the solar system for the first time.
Summary:
Low-cost airline IndiGo received a hoax call about a bomb on a Delhi-Mumbai flight at the Delhi airport today, said officials.
Summary:
The Himachal Pradesh government has announced compensation of â¹5 lakh for the family of the official shot by a hotelier while leading a Supreme Court-ordered demolition drive.
Summary:
A Russian military jet on Thursday crashed off the coast of SyriaâÂÂs Latakia, killing two pilots on board.
Summary:
The Competition Commission of India has imposed a total penalty of â¹3.57 crore on six firms and some of their executives for "bid rigging" with respect to tenders floated by Pune Municipal Corporation during December 2014 to March 2015.
Summary:
When asked about privacy issues around Aadhaar, Microsoft Co-founder Bill Gates said, "Aadhaar in itself doesn't pose any privacy issue because it's just a bio ID verification scheme." He also said the Bill and Melinda Gates Foundation has funded the World Bank to take Aadhaar approach to other countries.
Summary:
Facebook-owned WhatsApp may start showing advertisements now that its CEO and only remaining Co-founder Jan Koum has left the organisation, an analyst has said.
Summary:
She had been found in an unconscious state after she was raped in a secluded area, her father added.
Summary:
The Union Cabinet on Wednesday approved doubling the investment limit to â¹15 lakh under the government's flagship senior citizen pension scheme Pradhan Mantri Vaya Vandana Yojana (PMVVY).
Summary:
She realised she had been raped after regaining consciousness and later filed a complaint.
Summary:
Two black men who were wrongfully arrested while waiting for a friend at a Starbucks outlet in Philadelphia, US, have settled with the city for $1 each.
Summary:
Pakistan's Punjab province has ordered energy-drink manufacturers including Red Bull to remove the word "energy" from their labels, saying it "misleads our illiterate population".
Summary:
IndiGo's Interim CEO Rahul Bhatia has said the airline is continuing to look at long-haul operations without Air India.
Summary:
The bank said it lost two magnetic tapes in May 2016 containing 15 years of data on customer names, account numbers and addresses.
Summary:
The stock has plunged 22% since touching a record on April 20, wiping out about â¹13,000 crore in market value.
Summary:
Actor Sanjay Dutt took to Instagram to share an old picture with his late mother Nargis Dutt on the occasion of her death anniversary today.
Summary:
"Some member of the CBFC got the essence of this scene but had to ask for it to be done away with because of the guidelines," said the film's director Hansal Mehta.
Summary:
Filmmaker Shyam Benegal, while responding to reports that President Ram Nath Kovind will hand over only 11 of the 140 National Awards, said, "If President can't give the award, the best for him is to not come." "It becomes a kind of caste system," Benegal added.
Summary:
Kolkata Knight Riders Chinaman bowler Kuldeep Yadav has said that bowling to RCB captain Virat Kohli is more difficult than KXIP opener Chris Gayle.
Summary:
Ex-England football team captain David Beckham took to social media to share a video of himself breaking down as his son Brooklyn surprised him on his birthday at a London restaurant on Wednesday.
Summary:
"They've made mistakes.
We've all made mistakes and we can all get better," he added.
Summary:
World number 59 tennis player Marco Cecchinato won the Hungarian Open after initially failing to qualify for it.
Summary:
Carnegie Mellon University researchers have developed a 4D printing method that produces flat sheets of objects which fold themselves to take shape upon heating.
Summary:
When asked about the Indian smartphone market, Apple CEO Tim Cook said, "I do not buy the view that the market is saturated." He also said there are huge opportunities in India but Apple has "an extremely low share".
Summary:
Phillips took videos of the woman, claiming the latter pushed her towards the window.
Summary:
Following the report of sexual assault cases against Uber drivers, US Senator Richard Blumenthal has asked the company to "immediately" stop silencing sexual harassment victims by enforcing arbitration agreements.
Summary:
Japan's SoftBank is in talks to buy Ola shares from investor Tiger Global even after Co-founder Bhavish Aggarwal blocked the proposed deal last year, according to reports.
Summary:
Previous studies have suggested plants communicate using fungal networks and also via clicking noises.
Summary:
Scientists have reconstructed the skull of extinct Ichthyornis dispar, which showed the bird species had dinosaur-like sharp teeth.
Summary:
UK women aged between 50 and 70 are invited for breast cancer screenings every three years.
Summary:
The Commercial Taxes Department of Puducherry has detected GST evasion amounting to â¹40.83 lakh, and imposed a fine of â¹6.8 lakh on the dealers.
Summary:
Around 22 people were killed and over 100 injured in Rajasthan and over 40 people were killed in Uttar Pradesh after dust storms hit various districts on Wednesday.
Summary:
World-renowned physicist Stephen Hawking's final theory on universe's origin has been published.
Summary:
"President Trump has worked tirelessly to apply maximum pressure on North Korea...and bring peace to the region," the letter read.
Summary:
Congress President Rahul Gandhi on Thursday posted Prime Minister Narendra Modi's 'report card' and gave him an 'F' in the 'subject' of agriculture in Karnataka.
Summary:
US President Donald Trump on Tuesday praised the crew of the Southwest flight last month that made a safe landing after its engine exploded.
Summary:
"Boring, bonehead questions are not cool", Musk said after an anlyst asked about Tesla's capital requirements.
When asked about Tesla 3 reservations, he added, "These questions are so dry.
Summary:
The two other people seen in the video were unauthorised hawkers, officials added.
Summary:
The Union Cabinet on Wednesday approved a plan to set up 20 All India Institutes of Medical Sciences (AIIMS) across the country and upgrade 73 medical colleges.
Summary:
Uttar Pradesh Chief Minister Yogi Adityanath on Thursday questioned how the achievements of Pakistan founder Muhammad Ali Jinnah could be celebrated in India since he divided the country.
Summary:
The Himachal Pradesh Police has announced a reward of â¹1 lakh for information on the hotelier who shot dead a woman official leading a Supreme Court-ordered demolition drive.
Summary:
Australian Prime Minister Malcolm Turnbull has said that his wife Lucy was "flattered and charmed" to be described by French President Emmanuel Macron as "delicious".
Summary:
Claiming she is not the right woman for Prince Harry, Thomas further wrote, "She'll make a joke of the royal family heritage."
Summary:
A Royal Caribbean cruise ship features a bar staffed by two robots that are capable of mixing two drinks per minute.
Summary:
In Japan, 114 of Sony's Aibo robot dogs have been honoured with a traditional funeral service at a Buddhist temple.
Summary:
Less than four months after retiring from Franklin Templeton Investments, 81-year-old Mark Mobius has started a new asset management firm for investing in emerging markets.
Summary:
Shares of Delhi-based PC Jeweller have eroded over 80% of their value since a record high in January.
Summary:
According to reports, 'Baahubali' actor Prabhas has shot an action sequence costing â¹90 crore in Dubai for the upcoming film 'Saaho'.
Summary:
Summary:
After being shown a second yellow card in quick succession for angrily kicking the ball away, Japanese league player Guilherme kicked his opponent, who crashed into the ground.
Summary:
Cambridge Analytica, the British firm involved in Facebook's data scandal, should not escape scrutiny through its decision to shut down, British MP Damian Collins said.
Cambridge Analytica has confirmed it would file for bankruptcy proceedings and cease all operations.
Summary:
Chennai-based fintech startup OpenTap has raised over â¹3 crore in funding from a clutch of high net-worth individuals.
Summary:
American automaker Tesla's CEO Elon Musk has said, "I think that if people are concerned about volatility, they should definitely not buy our stock." Musk added that he was not there to convince people to buy the company's stock.
Summary:
Researchers aim to use the survey technique to identify critical habitats for endangered species.
Summary:
Aaron Traywick, the founder of a biomedical startup who publicly injected himself with an untested gene therapy last October, has been found deceased in a Washington DC spa.
Summary:
NASA is preparing another mission of twin satellites to track Earth's water cycle, ice sheet and crust.
Summary:
After being disqualified from holding public office for life by the Pakistan Supreme Court, former Prime Minister Nawaz Sharif has said he was punished for serving the country.
Summary:
In 1888, Bertha Benz, business partner and wife of automobile inventor Karl Benz, undertook the first long-distance trip in the history of petrol-powered vehicles.
Summary:
The listing could value Xiaomi at $100 billion.
Summary:
Facebook said it fired the engineer "immediately".
Summary:
The US Defence Department has banned sale of Chinese-made Huawei and ZTE phones on the country's military bases over security concerns.
Summary:
Switzerland-based company ABB has unveiled what it claims is the world's fastest electric vehicle charger Terra HP, which can power 200 km range in 8 minutes.
Summary:
Cambridge Analytica along with its parent company SCL Elections will begin bankruptcy proceedings in the US.
Summary:
An Indian-origin woman flew on an Emirates flight from UK's Manchester to Delhi using her husband's passport.
Summary:
Billionaire Elon Musk-led electric carmaker Tesla has posted a record revenue at $3.4 billion in the first quarter of 2018, up from $2.6 billion in the same quarter last year.
Summary:
The nitrogen from urea protects cells and tissues, even as the frog's heart, brain and bloodstream stop.
Summary:
Summary:
Contradicting claims by Donald Trump, his new lawyer Rudy Giuliani said the US President repaid attorney Michael Cohen for a $130,000-payment to pornstar Stormy Daniels.
Summary:
On being asked what he plans to give to his sister Sonam Kapoor as a wedding gift, actor Harshvardhan Kapoor jokingly said, "No gifts...because I'm broke." "Look at the kind of films I'm working on, they really don't pay that well," he added.
Summary:
Talking about pregnancy and motherhood, Rani Mukerji said, "Whether a heroine looked beautiful or whether she roamed outdoors while pregnant, these are irrelevant discussions." "If someone prefers to go outdoors or stay indoors while pregnant...it's the individual's choice," she added.
Summary:
Delhi Daredevils have now won three matches, while Rajasthan Royals have lost five matches in IPL 2018.
Summary:
Langer replaces Darren Lehmann, who had stepped down after Australia's tour of South Africa amid the ball-tampering controversy.
Summary:
Mayweather retired after he reached the 50-0 mark by defeating Conor McGregor last year.
Summary:
The BCCI has reportedly denied that it recommended the name of India Under-19 coach Rahul Dravid for the Dronacharya Award.
Summary:
With combined 13 goals, the tie became the highest-scoring semi-final in Champions League era.
Summary:
Last year, Messenger was affected by another cryptocurrency mining malware Digmine, according to a report by Trend Micro.
Summary:
"The woman complained that he touched her inappropriately during the flight to Delhi.
The accused, Ram Kishan, was arrested once the flight landed in Delhi.
Summary:
A cracked window forced a Southwest Airlines Chicago-Newark flight to divert to US' Ohio on Wednesday.
Summary:
Following the incident where a school bus was pelted with stones in J&K, Congress leader Rajeev Shukla said that the BJP-PDP "experiment" had completely failed.
Summary:
Recently, banners with the changed name were reportedly used at the college's annual day celebrations.
Summary:
The Chief Ministers of Opposition-ruled Karnataka, Andhra Pradesh, Telangana and Kerala failed to attend a meeting organised by the Centre in Delhi on Wednesday for planning the celebrations for the birth anniversary of Mahatma Gandhi.
Summary:
A 55-year-old German man has alleged that an employee of a Ghaziabad hotel where he was staying molested him on Tuesday.
Summary:
This comes days after PM Narendra Modi visited China's Wuhan for informal talks with Chinese President Xi Jinping.
Summary:
At least 41 people were injured in violent clashes which broke out between Aligarh Muslim University (AMU) students and the police on Wednesday.
Summary:
The biennial tournament would replace the Confederations Cup, which is currently staged every four years in a year before the World Cup.
Summary:
PM Narendra Modi is the most popular world leader on Facebook with over 43.2 million likes on his personal page, almost twice the 23.1 million likes on US President Donald Trump's page, a Burson Cohn & Wolfe study revealed.
Summary:
A letter by the Central Provident Fund Commissioner to the IT Ministry has revealed hackers stole data from the Aadhaar-seeding portal of Employees' Provident Fund Organisation in March, risking data of 2.7 crore people.
Summary:
T Anbalagan, District Collector in Tamil Nadu's Karur, recently drove his driver back home on his last day of service.
Summary:
India has surpassed France to become one of the world's five largest military spenders, Swedish arms watchdog SIPRI said in a report on Wednesday.
Summary:
Male police recruits in Madhya Pradesh's Bhind were forced to strip to their undergarments in front of female candidates during their medical examination on Tuesday.
Summary:
The meet was seen as an improvement in Indo-China ties after the Doklam standoff last year.
Summary:
Lord Kilclooney had made the remarks while responding to a media report about the Indian-origin Prime Minister.
Summary:
Al-Zaidi had thrown shoes at Bush in protest against the US invasion of Iraq.
Summary:
China is censoring online search for British cartoon character 'Peppa Pig' amid the crackdown on media, reports said.
Summary:
Japanese police are looking for a man who allegedly offered a schoolboy â¹600 to sneeze for him.
Summary:
Twitter users slammed Chennai Super Kings after it uploaded a picture of Suresh Raina and Sachin Tendulkar with the caption, "Ramesh and Suresh." "Just think before what you post...seriously come on...
Summary:
Ex-PM and JD(S) supremo HD Deve Gowda has said he will boycott his son Kumaraswamy if he forms an alliance with BJP after Karnataka Assembly elections.
Summary:
Siddaramaiah, often caught sleeping at public events, explained that the medical condition "used to induce occasional day time sleepiness".
Summary:
The official Twitter account of Iceland Cricket trolled RCB captain Virat Kohli for not winning IPL by including his picture in a collage of IPL-winning captains.
Summary:
"Afghanistan is playing versus India and not Virat Kohli.
No player will be called back from UK to play versus Afghanistan," he added.
Summary:
Giles also threw a baseball bat in frustration while going towards the dugout.
Summary:
Ex-England football captain David Beckham once scored a 60-yard goal from his own half just near the halfway line while representing Manchester United against Wimbledon in 1996.
Summary:
Australia-India Test series will commence on December 6.
Summary:
The 25-year-old Malaysian has also been fined â¹17 lakh for his involvement in match-fixing between 2013 and 2016.
Summary:
Lucknow Police has arrested a man accused of marrying nine women, after one of his wives received a Facebook friend request from another woman he had married.
Summary:
A 43-year-old mason from Andhra Pradesh's Proddatur died on Tuesday while watching 'Avengers: Infinity War' film as part of Labour Day celebrations at a movie theatre.
Summary:
The government on Wednesday announced its decision to directly pay sugarcane farmers about â¹1,540 crore to help sugar mills clear cane dues.
Summary:
On the occasion of Labour Day, Delhi CM Arvind Kejriwal took a dig at bureaucrats, saying IAS officers, not labourers, should be paid on calorie basis.
Summary:
The plane crashed during a training flight near the Savannah Hilton Head International Airport.
Summary:
Oil Minister Dharmendra Pradhan on Tuesday said that India has asked Japan to help build the infrastructure needed to boost the usage of Liquefied Natural Gas (LNG) in India and other Asian countries.
Summary:
The airline, which began operations in June 2014, is a joint venture between Tata Sons and Malaysia-based AirAsia.
Summary:
Ex-Windies captain Brian Lara scored 501*(427) in a county match in 1994, becoming the first and the only player to score 500-plus runs in an innings in professional cricket.
Summary:
Apple is currently the world's most valuable company with a market capitalisation of $858 billion.
Summary:
Paytm Mall was the quickest Indian tech startup to cross $1-billion valuation, taking less than two years to achieve the unicorn status compared to parent company Paytm's six years, according to VCCircle.
Summary:
The court said this while hearing a case where a man challenged an order mandating him to pay his estranged wife's flight expenses.
Summary:
An 18-year-old NEET aspirant in Tamil Nadu hanged himself from a railway bridge allegedly to force his father to stop drinking alcohol.
"Stop drinking at least now Appa.
Summary:
A male doctor can be seen examining a woman constable recruit while two male constable recruits dressed only in their undergarments are also standing there.
Summary:
Rajan added he was instigated by journalist Jigna Vora due to her professional rivalry with Dey.
Summary:
After images of a Facebook comment by Kolkata Metro's page supporting the assault on a couple for hugging in the train surfaced online, the Metro clarified that the comment was "fake".
Summary:
Operators who obtain a licence can offer a new mobile number to subscribers that doesn't require a SIM card and makes calls through the Internet.
Summary:
The draft further says it aims to enhance the sector's contribution to India's GDP to 8% from about 6% last year.
Summary:
Beckham got the tattoo in 2000, however, it is incorrect as it spells Victoria with an added "h" as 'Vihctoria'.
Summary:
Ahead of nationwide elections being held in Iraq, a Baghdad man has put up posters campaigning for love in hopes of winning back his ex-fiancée.
Summary:
Further, the company's revenues rose about 20% to nearly â¹5,800 crore.
Summary:
Prabhu said China's growth is attributed to investment by their government but India's "growth story is driven by Indians".
Summary:
In 2016-17, banks reported 5,076 cases involving â¹23,933 crore.
Summary:
Amitabh Bachchan, in a tweet to Anushka Sharma, wrote that he wished her on the occasion of her 30th birthday on Tuesday via SMS but got no response from her.
Responding to your SMS as I tweet this."
Summary:
someone would run a channel which continuously talks about solutions in every field because that's what we require in our country," he added.
Summary:
Speaking about social media trolls, Disha Patani said, "I don't care what people have to say about me or their comments on my posts.
Summary:
The Supreme Court on Tuesday directed automobile companies to switch their manufacturing to electric vehicles.
Summary:
Summary:
Reacting to Tripura CM Biplab Deb's remark that civil engineers, and not mechanical engineers, should go for civil services, Twitter users started drawing similar analogies using #SayItLikeBiplab.
Summary:
She added that the rape-accused man and the madrasa owner had threatened to kill her family.
Summary:
Former Pakistan Foreign Minister Khawaja Asif has moved the Supreme Court challenging the Islamabad High Court's verdict to disqualify him over his non-disclosure of holding a UAE work permit.
Summary:
At least 12 people were killed in a suicide attack on Libya's election commission headquarters in Tripoli on Wednesday, government officials confirmed.
Summary:
Palestinian President Mahmoud Abbas has said that the "social behaviour" of Jews was responsible for the Holocaust.
Summary:
Software services giant HCL Technologies lost â¹7,000 crore in market value on Wednesday after the company posted a 9.8% year-on-year decline in net profit at â¹2,230 crore for the March quarter.
Summary:
The Centre is bound to accept Joseph's elevation if the Collegium sends the recommendation again, reports quoting legal experts said.
Summary:
Rajan had hired a contract killer for â¹5 lakh to murder Dey and confessed to getting him killed a month later.
Summary:
The official trailer of Anil Kapoor's son Harshvardhan Kapoor starrer 'Bhavesh Joshi Superhero' has been released.
Summary:
A video of BJP MLA Suresh Rana has surfaced online, wherein he could be seen eating food catered from outside during his visit to a Dalit's house in Uttar Pradesh.
All food, water and cutlery they had arranged from outside," the host said.
Summary:
Facebook Co-founder Eduardo Saverin's VC firm B Capital has led a $22 million funding round in Mumbai-based packaging solutions provider Bizongo.
Summary:
Scientists have discovered plasma (electrically charged gas) rain over Jupiter's moon Ganymede after studying data from NASA's Galileo spacecraft, which ended its mission in 2003.
Summary:
Japanese scientists have invented a way of producing alcoholic beverages from wood of cherry, cedar, and birch trees.
Four-kilogram cedar wood produced 3.8 litres of liquid, with a 15% alcohol content.
Summary:
The incident came to light when he took the victim for an abortion last month to a clinic, where the doctor suspected rape and informed the police.
Summary:
A Class 2 student has reportedly suffered severe injuries to his head in the incident.
Summary:
Radio Mirchi employee Tania Khanna died on Wednesday reportedly after she lost control of her car, which fell into an open drain in Uttar Pradesh's Noida.
Summary:
"Hugging is not something visually perverted, it's a sign of affection," a protestor said.
Summary:
French President Emmanuel Macron mistakenly called Australian Prime Minister Malcolm Turnbull's wife Lucy Turnbull "delicious" during a visit to the country.
Summary:
The plaintiff's daughter was among the 17 people killed in the mass shooting in February.
Summary:
Finnish climate group Melting Ice plans to raise around $500,000 to carve US President Donald Trump's face into an Arctic iceberg.
Summary:
Leonardo da Vinci passed away on May 2, 1519.
Summary:
Summary:
A postcard believed to have been sent by Jack the Ripper to the London police has been auctioned for ã22,000 (â¹20 lakh).
Summary:
Based on a grammar quiz taken by 6.7 lakh people, an MIT study suggests children remain adept at learning the grammar of a new language much longer than expected, up to the age of 17 or 18.
Summary:
RCB's Brendon McCullum scooped a free-hit delivery over MI wicketkeeper Ishan Kishan's head for a 85-metre six on the bowling of Hardik Pandya in the 10th over in IPL on Tuesday.
That's Baz McCullum from #RCB.
Summary:
Karnataka CM Siddaramaiah on Wednesday challenged PM Narendra Modi to speak about the achievements of the BS Yeddyurappa government in Karnataka for 15 minutes by looking at a paper.
Summary:
Female runners with high levels of testosterone will have to take medication for six months before they can compete in track events from 400m to the mile, according to IAAF's new rules.
Summary:
Social media giant Facebook which owns WhatsApp has confirmed that group video calling feature will be rolled out for the messaging service in the coming months.
Summary:
Facebook asked the question to users on their own posts as well.
Summary:
A woman has shared a Facebook post detailing how a stranger helped comfort her crying three-year-old daughter and held her four-month-old son during a flight in the US.
Summary:
HYV leader Aditya Pandit threatened it will forcibly remove the portrait after two days.
Summary:
Further, he allegedly assaulted her after she showed the video to the judge during the hearing of the case.
Summary:
Workers protested against Duterte's failure to fulfil his electoral promise of ending short-term employment contracts.
Summary:
As many as 14 Indian cities are among the 20 most polluted cities in the world in terms of PM2.5 levels, according to World Health Organisation's latest report on air quality.
Summary:
England displaced India to claim number one ODI ranking for the first time since January 2013, ahead of playing the 2019 World Cup at home.
Summary:
Tinder parent Match's shares dropped 22% on Tuesday marking the worst single-day drop in its history after Facebook announced a new feature called 'Dating', according to Bloomberg.
Summary:
Meanwhile, the standard pass for the festival costs $215.
Summary:
US-based e-commerce giant Amazon has made a formal offer to acquire 60% stake in its Indian counterpart Flipkart, proposing to merge the two companies, as per reports.
Summary:
Juvenile Justice Board has ruled that the main accused in the rape of a 12-year-old girl at a madrasa in Uttar Pradesh's Ghazipur will be tried as an adult.
Summary:
Tiger's associate was also killed in the encounter.
Summary:
A US federal judge has ordered Iran to pay more than $6 billion to kin of 9/11 terror attack victims.
Summary:
A 22-year-old man has confessed to breaking into a Taco Bell outlet in United States' California because he was drunk and hungry, said the police.
Summary:
A 22-year-old British University graduate has spent ã5,000 (â¹4.5 lakh) on billboard adverts in the US and London to ask songwriter Kanye West to give him a job.
Summary:
Though SBI is headquartered in Mumbai, its central accounts office continues to be in Kolkata.
Summary:
The court ruled that deal prioritised the CEO's interests over that of major shareholders.
Summary:
The regulator is probing the 6.1% drop in IndiGo's stock on April 27 as well as delay in the disclosure of Ghosh's exit as director.
Summary:
An Indian-American owned IT company in US' California was ordered to pay $173,044 in wages to 12 foreign employees for violating H-1B salary requirements.
Summary:
The lenders will provide a new loan of up to $135 million to keep the company in business.
Summary:
Comedian Kapil Sharma has sent a legal notice of â¹100 crore to SpotboyE editor Vickey Lalwani for allegedly publishing defamatory articles on Kapil.
Summary:
Speaking on the issue of body shaming, Sonakshi Sinha said, "I've been answering questions about my weight loss for so long that I've become indifferent to them." "[What matters is] not how you look but how you work and how many people you reach out to," she added.
Summary:
The first look poster of Rajkummar Rao and Nargis Fakhri starrer '5 Weddings' has been released.
Summary:
Prime Minister Narendra Modi on Wednesday said that the CM Siddaramaiah-led Karnataka government's apathy had stopped farmers in the state from getting the benefits of the Pradhan Mantri Fasal Bima Yojana.
Summary:
US-based autonomous delivery startup Starship Technologies has developed six-wheeled self-driving robots to deliver food to customers within a three-kilometre radius.
Summary:
Facebook has announced plans to build a feature enabling its users to clear their browsing history such as what websites they visited.
Summary:
BJP leader Uma Bharti on Tuesday said that her house gets blessed when she serves Dalits with her own hands.
Summary:
Marine experts are mulling a plan to tug icebergs from Antarctica to South Africa's drought-hit Cape Town to help solve the region's worst water shortage in a century.
Summary:
Senior Samajwadi Party (SP) leader Parvat Singh Yadav and a home guard accompanying him were shot dead on Tuesday by unidentified assailants in Uttar Pradesh's Azamgarh.
Summary:
The Supreme Court has rapped the Himachal Pradesh government for not giving adequate security to the female government official who was shot dead while leading a demolition drive in Kasauli.
Summary:
Osama bin Laden kept several cartoons including Tom & Jerry and Mr Bean on his hard drives.
Summary:
Homegrown automaker Mahindra & Mahindra on Tuesday said it will acquire 10% stake in Canadian technology firm Resson Aerospace for around â¹34.5 crore.
Summary:
A court in Mumbai has convicted gangster Chhota Rajan and nine others for the murder of journalist Jyotirmoy Dey in 2011.
Summary:
American rapper Kanye West has said the enslavement of African Americans over centuries may have been a "choice".
Summary:
'Tareefan', the first song from Sonam Kapoor, Kareena Kapoor, Swara Bhasker and Shikha Talsania starrer 'Veere Di Wedding' has been released.
Directed by Shashanka Ghosh, 'Veere Di Wedding' is scheduled to release on June 1.
Summary:
Apple's Chief Financial Officer Luca Maestri in a recent interview said that the $999 price for iPhone X model isn't too high.
Summary:
Responding to Facebook's new Dating feature, Tinder parent company Match Group's CEO Mandy Ginsberg has said that she's "surprised at the timing given the amount of personal and sensitive data" involved, hinting at Facebook's recent data scandal.
Summary:
The lawsuit claims Tesla's Semi truck was unveiled after Nikola's semi truck and is "substantially similar" to its vehicle.
Summary:
Siddharth Jain, Superintendent of Police in Bihar's Katihar, has been caught on camera firing at least 10 rounds in the air from his pistol during his farewell party.
Summary:
US President Donald Trump has said that South Korean President Moon Jae-in was "very generous" to suggest his name for the Nobel Peace Prize over his efforts to denuclearise the Korean Peninsula.
Summary:
South Korea on Wednesday said the US troops stationed in the country should stay even if any peace treaty is signed with North Korea.
Summary:
"Internal audit process has been augmented to give higher weightage to the off-site monitoring mechanism," the bank said.
Summary:
He also said, "To attribute engine issues to Aditya or customer issues to Aditya is very unfortunate.
Summary:
According to reports, actor Chunky Panday's nephew Ahaan Panday will be making his debut with an upcoming production by Yash Raj Films.
Summary:
Johnny Depp has been sued by his ex-bodyguards, who have alleged that Depp made them work in dangerous circumstances which exposed them to illegal substances, in addition to not paying them their wages.
Summary:
The officials said the tiger cub appeared calm and was possibly sedated.
Summary:
With the IPL running alongside English county season, Rajasthan Royals' Jos Buttler said there is nothing wrong in players wanting to specialise in limited-overs cricket as it is becoming increasingly tough to play all three formats.
Summary:
IIT Bombay researchers have designed a training system that can help master badminton shots using an armband to record movements and provide feedback.
Summary:
Adding that he thinks Twitter will succeed and move forward, Ballmer said that he got a "very nice price" for the stake.
Summary:
Facebook-owned Instagram has announced that it will be launching a video chat feature on the photo-sharing platform.
Summary:
Islamabad's new international airport was inaugurated on Tuesday after years of delays and controversies over kickbacks and substandard equipment.
Summary:
A Toy Story-themed plane made its first flight from Shanghai to Beijing last week.
Summary:
Flipkart, which is registered as a public company in Singapore, must drop its number of shareholders to below 50 to regain the status, reports added.
Summary:
Six people sitting on the top of a bus while travelling to a wedding in Bihar's Rohtas district were electrocuted on Tuesday after coming in contact with a live wire, according to reports.
Summary:
The militaries of India and China have reportedly agreed to set up a hotline between their headquarters after an informal summit between Indian PM Narendra Modi and Chinese President Xi Jinping.
Summary:
The Armed Forces Tribunal (AFT) has ruled that a retired Army Major, who lost a leg and an eye in a mine blast in 1966, be given war injury pension arrears of nearly 40 years.
Summary:
Following his confirmation as the Secretary of State by the US Senate, Mike Pompeo has said that his goal is to return some "swagger" to the State Department.
Pompeo will be sworn-in as the Secretary of State on Wednesday.
Summary:
After accusing Iran of violating the 2015 nuclear deal, Israeli Prime Minister Benjamin Netanyahu has said that he is not seeking war with the country.
Summary:
New Zealand's new tourism campaign, featuring PM Jacinda Ardern, aims to crack the mystery of why the country is often left off world maps.
The #getnzonthemap campaign also features comedian Rhys Darby, who jokes New Zealand looks "like a half-eaten lamb chop.
Summary:
The Indian Premier League (IPL) trophy has a message in Sanskrit inscribed in its middle which reads, "Yatra Pratibha Avsara Prapnotihi".
Summary:
Technology giant Apple has posted a revenue of $61.1 billion in the quarter ended March 31, 2018, an increase of 16% from the year-ago quarter.
Summary:
WhatsApp CEO Jan Koum, who recently announced his departure from the firm and parent company Facebook, has said he will not stand for re-election to Facebook's Board of Directors.
Summary:
BJP MLA from J&K's Chenani, Dina Nath Bhagat, on Tuesday called the BJP's coalition government with People's Democratic Party "anti-Dalit" and "anti-Jammu".
Summary:
The Indian Police Foundation, which is backed by the Central and state governments, has urged the citizens of the country to tweet pictures of police personnel seen breaking laws.
Summary:
The government on Wednesday stated that Aadhaar is not mandatory for getting a SIM and that a phone number can be issued using alternative identification cards such as voter ID or driving licence.
Summary:
During a ceremony at the White House on Tuesday, US President Donald Trump said, "We are seriously thinking of a sixth [military branch], and that would be the Space Force." "The US is getting very big in space, both militarily and for other reasons," he added.
Summary:
"If elected, Mr Trump...will be the healthiest individual ever elected to the presidency," the concluding remarks of the report read.
Summary:
A UK MP has been accused of racism for calling Irish PM Leo Varadkar a "typical Indian".
Summary:
A man named Harshal Sudhakar Bhalerao was arrested for impersonating Salman Khan's brother-in-law Aayush Sharma and cheating people by offering them roles in films.
Summary:
Filmmaker Meghna Gulzar has said that the female characters in her films are stronger than in most films.
Meghna further said, "You just have to become the character that you are talking about.
Summary:
It's an amazing feeling.
He further said, "This is the second time so it doesn't feel new, the first time it felt very new."n
Summary:
Summary:
Addressing a rally in poll-bound Karnataka, PM Narendra Modi said Congress President Rahul Gandhi's disrespect towards former PM and JD(S) supremo Deve Gowda shows his arrogance.
Summary:
Sri Lanka Cricket has reportedly issued an ultimatum to IPL's all-time highest wicket-taker Lasith Malinga to return home and play domestic cricket if he intended to be considered for the national side.
Summary:
Former Indian captain Sourav Ganguly has revealed he doesn't think Rahul Dravid was involved in former coach Greg Chappell's decision to drop him and appoint the latter as captain.
Summary:
Denying this, Vistara said, "the insect was not in or on the meal.
However, it added, "insects can sometimes still find a way in despite our best efforts of fumigating the aircraft".
Summary:
A hotel owner in Himachal Pradesh's Kasauli on Tuesday shot dead a female assistant town planner when her team started demolishing illegal construction on his property.
Summary:
Western Railway directed the contractor to pay â¹10,000 fine for "not maintaining hygiene".
Summary:
A family in Uttar Pradesh's Sambhal learnt about the death of a family member, who had gone to Delhi to earn a livelihood, through a video circulated on WhatsApp. They recognised the deceased in the video that allegedly showed him being hacked to death by five men.
Summary:
A special CBI court on Tuesday granted bail to former Haryana CM Bhupinder Singh Hooda in connection with alleged government irregularities during his tenure in the Manesar land deals.
Summary:
You will relocate to Kerala." Users also posted pictures of state BJP leaders allegedly consuming beef.
Summary:
Expressing concern over the rise in violence in the name of religion, Home Minister Rajnath Singh said that "ancient Indian thought of respect and acceptance of all faiths is the only way of ensuring peace".
Summary:
Canadian MPs have asked Pope Francis to visit the country and apologise to the indigenous students, who were abused by Roman Catholic priests, nuns and other officials at former residential schools.
Summary:
Around 60 riders were left hanging in the air for nearly two hours on Tuesday after a roller coaster got stuck at a Universal Studios theme park in Japan.
Summary:
More than 1 lakh men will be circumcised in Mozambique in a bid to help prevent the spread of sexually transmitted diseases, including HIV/AIDS.
Summary:
Facebook said potential matches will be recommended "based on dating preferences, things in common, and mutual friends".
Summary:
Actor Jackie Chan's estranged daughter Etta Ng, who came out as a lesbian, claimed that she is homeless and has been living with her girlfriend Andi Autumn on Hong Kong streets for a month.
Summary:
Congress spokesperson Brijesh Kalappa has blamed the "BJP's dirty tricks department" for a document circulating online which claims Karnataka CM Siddaramaiah visited Pakistan on April 13.
Summary:
Karnataka CM Siddaramaiah has said PM Narendra Modi's formula for winning Assembly elections is "2 Reddys+1 Yeddy", in reference to BJP fielding scam-accused Reddy brothers as Ballari candidates and BS Yeddyurappa as CM candidate.
Summary:
The Ministry of Home Affairs has said the Karnataka government's proposal seeking a separate flag for the state has been "put on hold" as Model Code of Conduct is now in force.
Summary:
The year's last Grand Slam, US Open, is yet to announce its prize pot.
Summary:
The Calcutta High Court has said the dates for West Bengal panchayat elections released by the State Election Commission are tentative and the final decision will be taken by a division bench of the court.
Summary:
After PM Narendra Modi said at an election rally in Karnataka that he does not get to wear "ache kapde", the Congress on Tuesday tweeted a video of him wearing expensive clothes.
Summary:
Slamming the government over high fuel prices, Former Finance Minister P Chidambaram has said "tax burden" on petrol and diesel has become an issue of "people versus the government".
Summary:
After the Centre said it had formed a committee to set a timeline for implementing policies for construction workers' welfare, the Supreme Court expressed shock, saying, "This is too much.
Summary:
If Delhi was granted statehood, all contractual labourers would be made permanent, Delhi Chief Minister Arvind Kejriwal said on the occasion of Labour Day on Tuesday.
Summary:
A video showing a stand-up paddleboarder get knocked down by a dolphin in Australia has surfaced online.
Summary:
The Income Tax department has unveiled a scheme under which informants of undisclosed foreign income and assets can earn a reward of up to â¹5 crore.
Summary:
Media firm NDTV has sold 7.38% stake in subsidiary Red Pixels Ventures to A R Chadha And Co, the landlord of its office premises in New Delhi.
Summary:
Amitabh Bachchan has said that everywhere Hollywood has gone, it has destroyed the local industry.
We are fighting against them." He also revealed that he was once told in 1993 in New York, "Better get your house in order because India is new frontier...
Summary:
Ranveer Singh shared a video of himself dressed as Charlie Chaplin while enacting the legendary comedian.
Summary:
As per reports, DJ Avicii died due to massive blood loss after cutting himself with glass from a broken wine bottle in an apparent suicide.
A statement by Avicii's family after his demise read, "He couldn't go on any longer.
Summary:
Talking about her equation with Katrina Kaif, Alia Bhatt said, "She's got my back and I've got hers." She added that she can count on Katrina when she is in trouble and vice versa.
Alia further said, "I've known her for a couple of years now.
Summary:
Summary:
Ex-Manchester United striker Dimitar Berbatov will be playing the role of a gangster in his debut film 'Revolution X', which will release in his native country Bulgaria on May 11.
Summary:
MI's Mitchell McClenaghan leaked 13 runs off the last ball of RCB's innings, including two sixes and a no-ball.
Summary:
Summary:
A Bengaluru cafe trolled RCB after modifying the fans' slogan 'Ee Sala Cup Namde' (This time, cup is ours) on their bill following the team's series of losses in IPL 2018.
Summary:
With this, the two-time defending champions became the first-ever club in history to reach three successive CL finals twice.
Summary:
Actor-turned-politician Pawan Kalyan has announced that his Janasena party will contest from all 175 seats in the Andhra Pradesh Assembly polls, which will be held in 2019.
Summary:
A video showing a group of people forcing a Dalit woman out of the Draupathi Amman temple in Puducherry has surfaced online.
Summary:
The University of Mumbai's management council has approved the addition of 22 new colleges across Maharashtra from the next academic year.
Summary:
Actress Mahie Gill has revealed that a director once told her that he wanted to see how she looks in a nightie.
Summary:
Judd was one of the first women in October 2017, who made an on-the-record allegation of sexual misconduct against Weinstein.
Summary:
Chris Messina, who introduced the '#hashtag', in a recent interview said, "I didn't create this idea for Twitter." He added that he created "this idea for the Internet" so that anybody who could write text on the Internet would be able to participate in global conversations.
Summary:
Security researcher Jackie Stokes has claimed that an unnamed Facebook employee stalked women online through "privileged access" of the company's resources.
In response, Facebook said it is already investigating the matter and added that the company could not comment on individual personnel matters.
Summary:
YSR Congress Party President YS Jagan Mohan Reddy has pledged to rename Andhra Pradesh's Krishna district after Telugu Desam Party founder NT Rama Rao if he wins the 2019 Assembly elections.
Summary:
A man moved the Delhi High Court against his wife as she reportedly abandoned and refused to breastfeed their four-month-old daughter suffering from Erb's Palsy, a paralysis of the arm.
Summary:
They alleged that men read namaz on vacant plots in order to illegally occupy them.
Summary:
Lakhs of endangered Olive Ridley turtles were found buried at Odisha's Gahirmatha beach after thundershowers made the sand compact and prevented the baby turtles from getting out of nesting pits.
Summary:
Stating that the US has spent "tremendous amount of money" on policing the world, President Donald Trump has said that the country is increasingly not interested in being the world policeman.
We want to rebuild our country," Trump added.
Summary:
Defending itself against allegations of running a secret nuclear weapons programme, Iran on Tuesday called Israel PM Benjamin Netanyahu an "infamous liar".
Summary:
The coalition said in a statement that the move signified "the end of major combat operations against (ISIS) in Iraq".
Summary:
At least 24 people were killed and several others were injured on Tuesday in twin suicide attacks in and around a mosque in Nigeria's Mubi, police said.
Summary:
India's largest engineering conglomerate Larsen & Toubro has agreed to sell its electrical and automation business to European multinational Schneider Electric for â¹14,000 crore.
Summary:
Rishi Kapoor said he has no interest in portraying a hero or heroine's father as he's "too expensive" for such roles.
Summary:
Talking about casting couch, Rakhi Sawant said, "Nobody rapes anyone in this film industry.
Summary:
Talking about the reason behind MS Dhoni's ability to remain calm under pressure, CSK all-rounder Shane Watson said, "We don't see MS too much in and around lunch and breakfast.
Summary:
As a punishment for missing their gym and physio sessions, IPL side Mumbai Indians made its players wear the 'emoji kit' while the team was travelling from Mumbai to Bengaluru.
Summary:
RCB's AB de Villiers has hit the biggest six (111 metres) of the tournament.
Summary:
The official Twitter account of SunRisers Hyderabad has shared a video of Afghan spinner Rashid Khan dancing to Bollywood song 'Kala Chashma'.
Summary:
The incident happened in the 89th over when Rossouw tried to drive Siddle on the off-side and a piece of his bat flew towards the middle of the pitch.
Summary:
According to the event's website the race should take about 10 minutes to finish.
Summary:
Several Indian-American IT professionals have conducted rallies in the US, demanding an end to green card backlog by removing per-country quota.
Summary:
A video showing a man in an Indian Railways' train coming out of a toilet with a tea can filled with water has surfaced online.
Summary:
The CBI has arrested four Deputy Commissioners of the Customs department in Mumbai for allegedly demanding â¹50 lakh from an importer to clear his consignment.
Summary:
Reports said the local residents had attempted to douse the fire themselves.
Summary:
A man survived after being run over by a World War II-era replica tank during a military-style event in Russia's St Petersburg.
Summary:
Violence against women in Canada is still a serious, pervasive and systemic problem, according to UN Special Rapporteur on violence against women, Dubravka Ã
 imonoviÃÂ.
Summary:
Actress Sonam Kapoor and Anand Ahuja are set to get married on May 8 in Mumbai, as per an official statement by their families.
Summary:
Following ICC's annual update in rankings, the Indian team has extended its lead at the top of the ICC Test team rankings, gaining four points to open a 13-point gap above South Africa.
Summary:
Cricket Australia CEO James Sutherland has said banned Australian cricketer David Warner can still make a comeback to the team.
Summary:
UK supermarket Sainsbury's CEO Mike Coupe was recorded on camera singing "We're in the money" after an announcement that Sainsbury's will acquire rival Walmart-owned Asda in a $10-billion deal.
Summary:
Summary:
The project aims at providing accessibility of quality education in the government schools of Banka by using Eckovation platform.
Summary:
UC Berkeley neuroscientists are using holographic projection to trick the brain into thinking it has felt, seen or sensed something.
Summary:
Some people eventually helped the couple escape the crowd, reports added.
Summary:
Venezuela has reportedly entered into a pact with Coinsecure to sell Petro in India.
Summary:
Expressing concern over Taj Mahal's changing colour, the Supreme Court on Tuesday asked the Centre why it had turned yellow earlier and was now turning brown and green.
Summary:
India observed Labour Day for the first time in Chennai in 1923, where communist leaders raised the red flag for the first time in the country.
Summary:
Around 20 tonnes of meat sourced from animal carcasses has been seized from an ice factory in Kolkata's Rajabazar.
Summary:
Amul MD RS Sodhi has come out in support of Tripura CM Biplab Deb who suggested youth should stop chasing government jobs and rear cows instead.
Summary:
The members of JNU students union had disrupted the screening claiming the film was being screened to promote a hate campaign.
Summary:
Summary:
Russian President Vladimir Putin and his French counterpart Emmanuel Macron have agreed in a phone conversation on the need to preserve the Iran nuclear deal.
Summary:
Under the new regulation, alcoholic products in Scotland will cost a minimum of 50 pence (nearly â¹46) per unit.
Summary:
The government on Tuesday extended the deadline to receive initial bids for its stake in state-run carrier Air India to May 31 from May 14.
Summary:
Salman allegedly said he looks like a 'bhangi' while describing his dancing skills.
Shilpa had also allegedly said, "I look like a bhangi."
Summary:
Summary:
England and Nottinghamshire fast bowler Stuart Broad collided with his teammate Luke Fletcher while running between the wickets against Worcestershire in County Championship on Monday.
Summary:
The police have also seized a car owned by Narayanaswamy in which the amount was hidden.
Summary:
A BJP Panchayat poll candidate from West Bengal's Nadia has alleged that TMC workers raped her pregnant sister-in-law and ransacked her house.
This comes amid allegations by opposition parties, claiming that TMC has been preventing their candidates from filing nominations for panchayat polls.
Summary:
Burglars broke into the official residence of Trinamool Congress' MP Satabdi Roy at Lutyens' Delhi and stole jewellery, foreign currency, and cash, police said on Tuesday.
Summary:
A complaint was filed against an unidentified construction worker on Monday for allegedly sexually assaulting a 10-year-old girl in a Kolkata orphanage in December last year.
Summary:
Noted marxist economist and former West Bengal Finance Minister Ashok Mitra passed away in a Kolkata hospital on Tuesday at the age of 90.
Summary:
Chattisgarh's Shrimant Jha, a para-athlete arm wrestler who has five world championship medals, is demanding a job from Chhattisgarh's state government in order to sustain his family and continue playing the sport.
Summary:
No one can touch my government." CM Deb compared the situation with a bottle gourd that gets rotten after people repeatedly dig their nails into them.
Summary:
The Robert Downey Jr and Chris Evans starrer superhero film 'Avengers: Infinity War' has entered the â¹100 crore club on the fourth day of its release by earning â¹114.82 crore, as per Bollywood trade analyst Taran Adarsh.
Summary:
Addressing an election rally in poll-bound Karnataka on Tuesday, Prime Minister Narendra Modi said that while the government talks about enhancing 'Ease of Doing Business', Congress believes in 'Ease of Doing Murder'.
Summary:
Former Indian cricketer Virender Sehwag has said that according to him former captain Sourav Ganguly will "100% become the Chief Minister of West Bengal one day, and the BCCI President before that".
Summary:
US-based man Jean-Noel Frydman has sued the French government for seizing the domain name 'France.com' that he registered in 1994.
Summary:
The startup also launched a virtual assistant, called Suki, to help doctors manage the paperwork of their patients.
Summary:
Two Indian-origin siblings with a severe nut allergy were allegedly told to "sit in the loo" by an Emirates crew member when cashews were being served onboard.
Summary:
BJP MLA Surendra Singh has said that rape-like incidents are happening with minor girls because they are walking freely and are using smartphones.
Summary:
Australia's oldest scientist, 104-year-old David Goodall, would be flying to Switzerland in May for assisted dying, as euthanasia is illegal in his country.
Goodall, who doesn't have a terminal illness expressed "regret" on having aged so much.
What is sad is if one is prevented," said Goodall.
Summary:
The world's largest active geyser has erupted three times in the past six weeks at US' Yellowstone National Park in an 'unusual pattern'.
Summary:
The National Human Rights Commission (NHRC) has issued a notice to the Madhya Pradesh government for stamping SC, ST on the bare chests of constable recruits in Dhar.
Summary:
A South African court has dropped a rape case of a two-year-old girl, claiming the victim was "too young to testify".
Summary:
UNICEF Australia has launched 'The HopePage', which allows users to make a donation by mining cryptocurrency Monero using the visitor's computer processing power.
Summary:
A viral video shows two pelicans disrupting a graduation ceremony at a university in California, US.
Summary:
The Prime Minister's Office (PMO) has sought a report from the Finance Ministry on recent bank frauds after â¹600-crore IDBI Bank fraud, a senior government official said.
Summary:
Elon Musk-led US automaker Tesla is burning through more than $6,500 (over â¹4.3 lakh) every minute, according to Bloomberg analysis.
Summary:
Australian rugby player Nick Phipps called himself a "bloody idiot" while apologising for urinating on a bar in Sydney's Woollahra Hotel while dressed in a cow suit.
Summary:
Hockey India has named women's hockey coach Harendra Singh as Indian men's team head coach while incumbent men's team coach Sjoerd Marijne returned as the women's team coach.
Summary:
Messi is currently the all-time La Liga top goalscorer.
Summary:
Singapore's Changi airport has been testing facial recognition technology that helps detect faces to find lost passengers.
Summary:
American startup Fitbit's shares surged nearly 10% on Monday after the company announced a healthcare collaboration with technology giant Google.
Summary:
Its designers said they wanted "visitors and inhabitants to experience both city and sea from a whole new perspective."
Summary:
The court documents and police reports from 20 states also revealed that at least 31 drivers have been convicted.
Summary:
PolicyBazaar might hit a valuation of $1 billion after the funding round, the reports further said.
Summary:
Researchers at the Indian Institute of Science (IISc), Bengaluru and AIIMS, New Delhi have uncovered a previously unknown gene mutation linked to glioblastoma, the deadliest and most common form of brain cancer.
Summary:
The accused was arrested on Sunday after the girl's body was recovered, and he confessed to the crime during interrogation.
Summary:
A Canadian human rights tribunal has ordered a restaurant to pay $10,000 in compensation to a black customer for making him pre-pay for his order.
The tribunal ruled that the restaurant discriminated against the black customer, who was celebrating his birthday with his friends.
Summary:
The Telecom Commission on Tuesday approved a proposal for allowing phone calls and Internet service in flights within Indian airspace.
Summary:
Indian shooter Shahzar Rizvi became the world number one shooter in the 10-metre air pistol category after having won a silver medal at the recently concluded shooting World Cup in South Korea.
Summary:
The Supreme Court on Tuesday directed all the High Courts in the country to ensure that cases filed under the POCSO Act, which involve child sexual assault, are fast-tracked and decided by special courts.
Summary:
The official Twitter account of film franchise 'Star Wars' congratulated Marvel Studios and their film 'Avengers: Infinity War' for becoming the highest opening weekend grosser of all time by earning $630 million worldwide.
Summary:
Singer Sona Mohapatra tagged Mumbai Police's Twitter handle while tweeting about receiving threatening e-mails by Madariya Sufi Foundation to remove her music video 'Tori Surat'.
Summary:
Bill Gates has revealed that Donald Trump once offered him the job of White House science adviser, which he rejected saying, "That's not a good use of my time." Trump made the offer when Gates suggested to hire a science adviser.
Summary:
Arora joined WhatsApp in 2011 and currently serves as the company's Vice President.
Summary:
Iran has imposed a "total ban" on messaging app Telegram, saying it has become a safe haven for international terrorist groups including Islamic State.
Summary:
The Rajasthan High Court has ordered cancellation of driving licences of people caught driving while talking on the phone.
Summary:
The Andhra Pradesh government has made Aadhaar card mandatory for people wanting to visit the state Secretariat, in an order issued on Monday.
Summary:
The states of Maharashtra and Gujarat were divided and given statehood under the Bombay Reorganisation Act on May 1, 1960.
Summary:
A video of a fire-engulfed skyscraper collapsing in Sao Paulo, Brazil has surfaced online.
The fire also engulfed another building, which authorities said had no risk of collapsing.
Summary:
Neither Ivanka Trump came nor the Government repaired our road."
Summary:
The government has said the GST collection in April stood at â¹1.03 trillion, crossing â¹1 trillion-mark for the first time.
Summary:
Kate Winslet, who starred alongside DiCaprio in 'Titanic', already has a beetle named after her.
Summary:
On the occasion of her 30th birthday on Tuesday, Anushka Sharma took to social media to announce that she is building a shelter for stranded animals outside Mumbai.
Summary:
The Alzheimer's Association, which organised the event, said the participants wore colour-coded outfits to represent different parts of the brain.
Summary:
Officials said the peacocks' feathers were almost completely plucked out, and they were bleeding from the back.
Summary:
A 37-year-old Italian climber has died after being blown off Nepal's 8,167-metre-high Mount Dhaulagiri by a strong gust of wind on Sunday.
Summary:
Reacting to Chennai Super Kings' fast bowler Lungi Ngidi dismissing Delhi Daredevils' Rishabh Pant on Monday, a user tweeted, "Lungi gets the Pant off.
Summary:
At an election rally in poll-bound Karnataka, Prime Minister Narendra Modi on Tuesday said that he is 'kaamdar' and Congress President Rahul Gandhi is 'naamdar'.
The Karnataka Assembly elections will be held on May 12.
Summary:
Foor took the card from the referee and showed it to him.
Summary:
India's first-choice goalkeeper Gurpreet Singh Sandhu took to Twitter to share a picture of himself with former Indian cricket team captain Rahul Dravid wearing his goalkeeping gloves.
Sandhu plays for Bengaluru FC, of which Dravid is the brand ambassador.
Summary:
The CM has reportedly directed the officials to complete the construction of his office by June-end.
Summary:
Stanford researchers have developed a water-based battery that could provide a cheap way to store wind or solar energy.
Summary:
The victim also claimed that the Hazratpur police station refused to lodge his complaint initially.
Summary:
IndiGo's outgoing President Aditya Ghosh has said it took a while to convince founders Rahul Bhatia and Rakesh Agarwal that he was "actually serious about branching out and doing something different".
Summary:
Addressing a rally in Karnataka, PM Narendra Modi said, "I challenge you (Rahul Gandhi) to speak for 15 minutes on the achievements of your government in Karnataka without reading from any piece of paper." "You can speak in Hindi, English or your mother tongue," he added.
Summary:
The symbol is used to tag social media groups or topics to tweets.
He allegedly got the idea from internet chat rooms that had a pound symbol (#) in front of them.
Summary:
SoftBank wants Flipkart to wait for Amazon offer before agreeing to sell a majority stake to Walmart, as per reports.
Summary:
Paytm COO Kiran Vasireddy has said, "No one should be allowed to commercially launch service unless their systems are clearly...only in India." He emphasised data localisation is critical for the security of India's payments systems.
Summary:
In a first, Brazilian scientists have used a jawbone of one of the Hiroshima victims to calculate how much radiation people may have been subjected to after the 1945 bombing.
Summary:
The controversy centres on who deserves credit for inventing the gene-editing technology CRISPR, which would also determine who can profit from it.
Summary:
A 23-year-old Indian man, who had mistakenly entered Pakistan over a year ago, has been handed over to the Indian authorities at the Wagah border.
Summary:
The central government levies â¹19.48 per litre of excise duty on petrol and â¹15.33 on diesel.
Summary:
Further, many of these schools had less than 10 students enrolled for the exams.
Summary:
The government plans to achieve universal household electrification by December 31.
Summary:
Farmers in Maharashtra's Aurangabad have decided to distribute free milk from May 3-9 in protest against the low base prices fixed by the government.
We had demanded a base price of â¹50/litre, but the government fixed procurement price at â¹27.
Summary:
Saudi Arabia has confirmed on the basis of DNA tests that the bomber who blew himself up outside the US Consulate in the city of Jeddah in 2016 was Indian national Fayaz Kagzi.
Summary:
Sawiris, who has large stakes in gold mining companies, said gold prices will rally to $1,800/ounce from just above $1,300 now.
Summary:
Actor-turned-politician Kamal Haasan on Monday launched his party Makkal Needhi Maiam's app called 'Maiam Whistle' with an aim to bring public issues to the government's notice.
Summary:
Indian cricket team captain Virat Kohli took to social media to wish his wife, actress Anushka Sharma, on the occasion of her 30th birthday on Tuesday.
Love you." Virat and Anushka got married last year on December 11 in Tuscany, Italy.
Summary:
Four skiers have died and five others are in a critical condition after they were forced to spend the night outdoors due to an unexpected snowstorm in the Swiss Alps.
Summary:
Dhoni has now scored 3,556 runs as captain in the IPL while Gambhir has hit 3,518 runs.
Summary:
Fernando de Carvalho Lopes, a former Brazilian national gymnastics team coach, has been fired by a gymnastics club on Monday after a Brazilian TV channel reported that he had sexually abused young gymnast boys.
Summary:
The company is introducing new display construction technology which separates the touch sensor from the display but is incompatible with 3D Touch, reports claimed.
Summary:
Alibaba alleged Alibabacoin hurt its business in the US, creating confusion over similar names.
Summary:
After AAP and SAD slammed Punjab government for removing chapters related to Sikh Gurus from Class 12 History syllabus, the government said the chapters have been moved to Class 11 curriculum.
Summary:
Most of those killed were outside their houses and working in the fields when the lightning struck, disaster management officials said.
Summary:
"They should display photo of great men like Mahendra Pratap Singh, who had donated land for this institution," Gautam said.
Summary:
The Supreme Court slammed the Haryana government for auctioning 1,380 acres of land for mining when only 350 acres of land was available.
Summary:
Suspected Lashkar-e-Taiba (LeT) militants on Monday shot dead three civilians in Jammu and Kashmir's Baramulla, police officials have said.
Summary:
Denying a report claiming that he called US President Donald Trump an "idiot", White House Chief of Staff John Kelly said it is a "pathetic" attempt to distract from the administration's "many successes".
Summary:
A charitable organisation in UK's Windsor town, is selling Prince Harry and Meghan Markle's commemorative royal wedding merchandise to fund toiletry kits, clean clothes, hot meals and mobile phones for the homeless.
Summary:
Vogue India has revealed that its cover photo starring Bollywood actor Aditi Rao Hyadri has been shot on OnePlus 6.
Summary:
The US once used a floating nuclear plant in Panama from 1968-1975.
Summary:
WhatsApp Co-founder and CEO Jan Koum's departure from Facebook could prevent him from collecting as much as $1 billion in stock awards, according to Bloomberg.
Summary:
An anti-corruption commission in China's Hefei province has revealed that as part of an investigation it was able to retrieve deleted WeChat messages from a suspect's phone.
Summary:
Former Finance Minister P Chidambaram on Monday said that the biggest issue of the 2019 Lok Sabha elections will be unemployment.
Summary:
US President Donald Trump has hailed late Indian-origin astronaut Kalpana Chawla as an American hero for devoting her life to the space programme and inspiring millions of girls to become astronauts.
Summary:
A Panchkula court on Monday acquitted six people accused in the violence which followed Dera Sacha Sauda chief Ram Rahim's conviction in a rape case in August last year.
Summary:
The Supreme Court has slammed the Centre for filing unnecessary cases, saying, "The couldn't-care-less...attitude of the Union government with regard to litigation has gone a little too far." Hoping "some sense" prevails with the government, the court said, "Under the garb of ease of doing business, judiciary is being asked to reform.
Summary:
He added that 4,462 persons were arrested in connection with the incidents.
Summary:
Bhogi Suraj Krishna, who secured the first rank in JEE (Main) examination 2018, is from Andhra Pradesh.
Summary:
The average level of household electrification in India's rural areas is over 82%, with state-specific rural household electrification levels varying between 47% and 100%, a Union Power Ministry release has revealed.
Summary:
As many as six candidates shared the top score of 350 in JEE (Main) examination this year, with CBSE applying tiebreakers to rank them.
Summary:
White House Chief of Staff John Kelly called President Donald Trump an "idiot" during a discussion on immigration, a report by NBC has claimed.
He's an idiot...We've got to save him from himself," Kelly reportedly said.
Summary:
This comes after Trump suggested the site for his meeting with Jong-un.
Summary:
Pope Francis' Chief Financial Adviser, Cardinal George Pell, will stand trial on charges of sexual abuse, an Australian court ruled on Tuesday.
Summary:
A 24-year-old fashion blogger has shared a video of herself creating a dress using trash bags.
Summary:
Cricket Australia has hired ethics experts to investigate the culture of the national men's team after the ball-tampering scandal in South Africa.
Summary:
After being felicitated by Prime Minister Narendra Modi for her performance at CWG 2018, gold-winner Saina Nehwal said it is the best time for sportspersons where everyone is performing well and getting PM's support.
Summary:
Women have been banned from attending football matches since 1979's Islamic revolution.
Summary:
The man was charged with accusing police on YouTube of taking 50 minutes to respond to distress calls after the shooting of a Palestinian lecturer in Kuala Lumpur.
Summary:
After Twitter confirmed that it sold data access to Aleksandr Kogan, who leaked Facebook users' data, British firm Cambridge Analytica has claimed it never received any data on Twitter from Kogan.
Summary:
Following this, Pepper's owner was forced to board the flight without her.
Summary:
A pop-up Museum of Pizza is set to come up in New York in October.
Further, each ticket-holder will be given a slice of pizza.
Summary:
He further said if religious institutions issue political statements, they become dysfunctional.
Summary:
British and American scientists have launched a five-year mission to assess the risk of the Thwaites glacier collapsing, already responsible for a 4% sea-level rise.
Summary:
Gold bars worth nearly â¹30 lakh were seized from a Jet Airways flight at the Mumbai airport on Monday.
Summary:
Speaking at a Vishva Hindu Parishad (VHP) event in Kerala, Sadhvi Saraswati on Friday said that sisters should be gifted swords as Rakhi gifts so they can behead 'love jihadis'.
Summary:
Centuary Mattresses, India's leading mattress brand has appointed Sania Mirza as its brand ambassador, who will be seen in the company's nationwide campaign on the Power of Better Sleep.
Summary:
WhatsApp Co-founder and CEO Jan Koum has announced he is leaving parent company Facebook.
Summary:
Anushka, who turned 30 on Tuesday, had once revealed she bagged her debut film based purely on talent.
Summary:
'The Simpsons' has become the longest-running scripted TV show ever in the US after airing its 636th episode.
Summary:
PM Narendra Modi on Monday interacted with Indian athletes who won medals at the recently concluded Commonwealth Games.
India had won 66 medals at the CWG 2018.
Summary:
Talking about his earlier commitment to invest $10 billion in India, SoftBank's CEO Masayoshi Son said, "We would definitely overachieve on our commitment much ahead of time and at a much bigger scale." He also said that SoftBank has already invested $7 billion in the last four years.
Summary:
After WhatsApp CEO Jan Koum announced his departure from parent company Facebook, Mark Zuckerberg said, "I'm grateful...for everything you've taught me, including about encryption and its ability to take power from centralized systems." Zuckerberg added that he will miss working closely with Koum.
Summary:
Sweden-based brand management company NordDDB has partnered with a German carmaker to make iPhone cases from metal salvaged from car wrecks caused by texting and driving.
Summary:
Adding that this mentality had stabbed the country in the chest, Gandhi called the incident an attack on the Constitution.
Summary:
Scientists studying the most recent near-reversals of the Earth's magnetic field have ruled out the possibility of such an event happening in the near future.
Summary:
During their informal summit in Wuhan, Chinese President Xi Jinping gifted Prime Minister Narendra Modi a replica of a 2,400-year-old musical chime, reports said.
Summary:
US President Donald Trump on Monday suggested that his planned meeting with North Korean leader Kim Jong-un could take place at the Peace House on the border between North and South Korea.
Summary:
Accusing Iran of violating the 2015 nuclear agreement with world powers, Israeli Prime Minister Benjamin Netanyahu on Monday said the Islamic republic lied 'big time' about developing nuclear weapons.
Summary:
Pornstar Stormy Daniels on Monday sued US President Donald Trump over a "defamatory" tweet.
Summary:
Summary:
Denying reports of secret marriage over picture showing her wearing a "mangalsutra"-like bracelet on wrist, Priyanka Chopra shared a close-up of the bracelet and tweeted, "Heights of speculation!
Summary:
Director Hansal Mehta said that there is deadly silence about the truth surrounding state-sponsored terrorism.
He further said that through his upcoming film 'Omerta' he wants to provoke people to think about state-sponsored terrorism.
Summary:
Abhishek Bachchan, who was on a two-year break from films, said he doesn't want to be remembered as a joke.
"If you don't want to be remembered, why are you an actor!
Summary:
Dhoni, who slammed 51*(22) in the match, became the highest run-scorer among captains in the IPL.
Summary:
The official Twitter account of IPL shared a video of Harbhajan Singh playing with his daughter Hinaya Heer at the Maharashtra Cricket Association Stadium, Pune, ahead of the CSK-DD match on Monday.
Summary:
"You are supporting CSK being HYDERABADI, this is not acceptable," a user wrote.
Summary:
The official Twitter handle of Chennai Super Kings on Monday shared a video of captain MS Dhoni's daughter Ziva cheering for the team.
Summary:
Sports Minister Rajyavardhan Singh Rathore has said he will sack ministry officials if athletes face problems in getting incentives and funds.
Summary:
Moupriya Mitra, a 16-year-old national level diver, allegedly committed suicide by hanging herself at her residence in Hooghly, West Bengal, on Monday.
Summary:
PM Narendra Modi is scheduled to address at least 15 rallies in five days across all regions in the assembly election-bound Karnataka.
Summary:
World's fourth richest person Warren Buffett has said that buying Bitcoin is not an investment but a "gamble".
"If you buy something like bitcoin or some cryptocurrency, you don't really have anything that has produced anything.
Summary:
Calling Kevin his "beloved son", Dwayne wrote, "Twinkle Twinkle little Hart, I just don't know where to start...Daddy will...
Summary:
Pakistan will launch a space programme next year to reduce dependency on foreign satellites for civil and military purposes and to keep an eye on India, according to reports.
Summary:
Tripura CM Biplab Deb has been summoned by Prime Minister Narendra Modi and BJP President Amit Shah after he made a series of controversial statements, reports quoting a party leader have said.
Summary:
Local media reports said the ruling TMC has won a majority of the uncontested seats.
Summary:
"The shadow cabinet...is a means to strengthen the government in a democratic way," the shadow cabinet's CM Asha Unnithan said.
Summary:
A video showing a traffic constable in Bengaluru removing his shoe and hurling it at two bike-borne men after noticing they were not wearing helmets has surfaced online.
Summary:
Petrol price remained at an over 4.5 year high of â¹74.63 while diesel is at an all-time high of â¹65.93 per litre in Delhi.
Summary:
PM Modi made 21 visits each to Gujarat and Uttar Pradesh in 2017, the year the two states went to elections.
Summary:
A six-year-old girl who was raped, strangulated, and abandoned in a school in Odisha earlier this month passed away on Sunday evening after remaining in a critical condition for eight days.
Summary:
Javid earlier served as Communities and Local Government Secretary.
Summary:
Praising Donald Trump for his efforts to end the standoff with North Korea over its nuclear weapons programme, South Korean President Moon Jae-in said the US President deserves a Nobel Peace Prize.
Summary:
Markets regulator SEBI has barred 28 entities from the capital markets for sending unauthenticated SMSes in bulk with misleading 'buy' recommendations.
Summary:
A 5-megawatt solar power plant in Maharashtra's Ahmednagar district is owned by two shell companies of Nirav Modi â Camelot Enterprises and Firestone Trading, according to a report.
Summary:
Cryptocurrency scammers have been using verified Twitter profiles to impersonate famous people like Tesla CEO Elon Musk by changing profile names.
Summary:
Billionaire Anand Mahindra has tweeted that his team has located the 'shoe doctor' Narseeram, who advertised his shop as a "hospital for injured shoes" in Haryana.
Summary:
The film will be screened on May 14 at the festival, which will be held from May 8 to 19.
Summary:
Actress Priyanka Chopra has said that sometimes her words are misconstrued and that leads to a controversy.
"Then, I have to defend it and that becomes another controversy.
Summary:
Responding to trolls who slammed her for fishing despite being associated with animal rights organisation PETA, actress Shilpa Shetty wrote, "I'm a non-vegetarian...
Summary:
Gautam Gambhir, who stepped down from Delhi Daredevils' captaincy last week and was dropped from the team's playing XI, took to Twitter to ask for fans' support for their match against Chennai Super Kings.
Summary:
The Indian cricket team will tour Australia for three T20Is, four Tests and three ODIs later this year.
Summary:
Following a reshuffle of the Jammu and Kashmir Cabinet on Monday, state Chief Minister Mehbooba Mufti said, "The new team has young and educated people and I hope they will work better." The old team had also done good work, she added.
Summary:
Jailed RJD chief Lalu Prasad Yadav on Monday said he was being referred from Delhi's AIIMS hospital to a medical college in Ranchi due to a "political conspiracy".
Summary:
Former Indian cricketer Kapil Dev-backed Samco Ventures has raised â¹49 crore in a Series B round of funding.
Summary:
A video showing a groom being shot dead during alleged celebratory firing in Uttar Pradesh's Lakhimpur Kheri district on Sunday has surfaced.
Summary:
Five people died and one other was injured on Monday after a tempo crashed into their broken-down van on the Mumbai-Pune Expressway near Panvel.
Summary:
The accused used to blame the victim for insisting that his sister file for divorce, police said.
Summary:
The broken statue was noticed by the family of the martyr.
Summary:
Qualifying students will be eligible to appear for JEE (Advanced) examination to get admission into IITs.
Summary:
I said there are a lot of similar cases and this particular one should not be exaggerated."
Summary:
Singer Miley Cyrus has shared a newspaper clipping of an article where she had apologised for a topless photo from 2008, while tweeting, "I'M NOT SORRY...
Summary:
KXIP opener Chris Gayle has revealed officials from RCB had told him prior to the auction that they will retain him but they never called him after that.
Summary:
India is ranked joint-sixth in the list of doping violations with 69 cases, same as that of Russia, according to World Anti-Doping Agency (WADA) report for samples collected in 2016.
Summary:
Known for sharing difficult words on Twitter, Congress MP Shashi Tharoor on Sunday used the word 'eunoia' to praise Congress President Rahul Gandhi's 'Jan Akrosh' rally in Delhi.
Summary:
At least 11 children were killed in a suicide car bomb blast in Afghanistan's Kandahar province on Monday, according to reports.
Summary:
India's second-largest lender by market capitalisation, Kotak Mahindra Bank, on Monday posted a 15.1% rise in fourth-quarter profit to â¹1,124 crore.
Summary:
There will be added focus on those who deposited â¹10 lakh or more in demonetised notes but did not file their returns, reports said.
Summary:
US technology giant Cisco's CEO Chuck Robbins has said India will be at the top of the list where investments will be prioritised for next decade.
Summary:
A promotional video of season 3 of reality show 'Dus Ka Dum' shows the host Salman Khan giving a female contestant a peck on the cheek.
Summary:
Tennis elbow is a painful condition of the elbow which is caused by overuse.
Summary:
Denying rumours of her death, veteran actress Mumtaz has said that she is not lonely and is staying with her children, who are taking good care of her.
Summary:
Arjun Rampal has said he told his daughters that acting is not as glamorous as it looks and it's a really difficult job.
Summary:
Sharing a new poster of Sanjay Dutt's biopic 'Sanju', filmmaker Rajkumar Hirani wrote, "Ranbir as Sanju!
'Sanju' also stars Dia Mirza as Sanjay's wife Maanayata.
Summary:
Actress Aditi Rao Hydari has said that she has no backing in the film industry.
Summary:
Several of the diners lifted the ceiling off people, and further claimed that the management did not inquire whether they were fine.
Summary:
Gasly, who was driving at 320 kmph, veered suddenly to avoid the slow-moving car of Hartley, which had sustained a puncture.
Summary:
Mumbai Indians' captain Rohit Sharma is the only Indian player to have scored a hundred and taken a hat-trick in the Indian Premier League.
Summary:
With the match tied at 1-1, Manchester United midfielder Marouane Fellaini scored the winner in the 91st minute (injury time) against Arsenal on Sunday with the back of his head.
Summary:
The passenger, who was detained for 15 days, later said he did not know it was the cabin door.
Summary:
Congress President Rahul Gandhi on Monday visited RJD chief Lalu Prasad Yadav at AIIMS Delhi, where Yadav is currently undergoing treatment for various kidney and heart related ailments.
Summary:
Kamal Shukla, a journalist based in Chhattisgarh's Bastar, has been booked for sedition after he allegedly posted a cartoon on Facebook which was against the government and the judiciary.
Summary:
Congress President Rahul Gandhi has become the most followed party leader on micro-blogging site Twitter with 6.78 million followers, surpassing senior leader Shashi Tharoor who has 6.7 million followers.
Summary:
Vowing to continue its presence in the region, the Iranian Foreign Ministry on Monday said the cooperation between Saudi Arabia and the US will further destabilise the Middle East.
Summary:
The lawsuit claimed that Warmbier, who was arrested during a tourist trip to North Korea, was "brutally tortured and murdered" by the regime.
Summary:
E-commerce websites selling consumer goods will be held liable for false claims under the new Consumer Protection Bill, according to officials.
Summary:
Police have arrested four accused on the basis of the video.
Summary:
A Bengaluru court on Saturday sentenced a 35-year-old man to death for raping and murdering a 6-year-old girl in the city last year.
Summary:
After PM Narendra Modi announced all villages now have access to electricity, Railways Minister Piyush Goyal posted 'before' and 'after' images to support the claim.
Summary:
Technology giant Apple's net profit in India increased by 44% at â¹373.4 crore for the year ended March 2017, according to filings.
Summary:
Several users have claimed Apple's digital assistant Siri swears when asked to define the word 'mother'.
Summary:
Asserting that Vedic sage Narada mentioned in epics Ramayana and Mahabharata had information on everything in the world, Gujarat Chief Minister Vijay Rupani on Sunday said Google is just like the sage.
Summary:
Anu Kumari, the second rank holder in the UPSC Civil Services Examination 2017, has been appointed as the new brand ambassador of the government's Beti Bachao Beti Padhao campaign in Haryana's Sonipat district.
Summary:
Three CRPF personnel were suspended after a 24-year-old woman claimed they confined her inside a CRPF camp in J&K's Bantalab and one of them raped her.
Summary:
Nine journalists and cameramen were among those killed in the blasts, the Ministry of Public Health confirmed.
Summary:
The first public anti-smoking campaign was started by the German dictator Adolf Hitler-led Nazi Party.
Summary:
Australian police have released CCTV footage of a man who broke into a building and stole chocolates and electronic goods, including an iPhone 8, while wearing a lion costume.
Summary:
GoAir has sued its former MD Wolfgang Prock-Schauer alleging that he stole confidential information within a week of joining rival IndiGo as Chief Operating Officer.
Summary:
Summary:
Actor Ryan Reynolds, who portrays the superhero 'Deadpool' in Marvel films, has shared a rejection letter dated April 14, 2012, that he received from the Avengers when he had requested to join the superhero team.
Summary:
Ex-Bigg Boss contestant Sofia Hayat announced her separation from her husband Vlad Stanescu and wrote, "The devil came to me disguised with the face of an angel...tried to rape me of all that I am." She added, "You said you were an interior designer who designed palaces...YOU LIED...you were in debt...
Summary:
A Dutch painting looted by the Nazis from a bank vault in 1945 is set to be auctioned.
Summary:
Wishing Rohit Sharma on his 31st birthday, KXIP's mentor-cum-director of cricket Virender Sehwag tweeted, "With @ImRo45 , talent Ki Tanki is always full.
Summary:
Brazilian surfer Rodrigo Koxa has broken the world record for the largest wave ever surfed, measuring 80 feet in Portugal's Nazaré.
Summary:
A man and his female accomplice were arrested at the Imphal airport for allegedly smuggling gold worth â¹45 lakh by concealing it in their rectums, an official said on Sunday.
Summary:
The first leg of the trip began from a Bhilai steel plant that was developed jointly by the countries.
Summary:
Kavinder Gupta on Monday took oath as the Deputy Chief Minister of Jammu and Kashmir after BJP's Nirmal Singh resigned on Sunday ahead of a Cabinet reshuffle.
Summary:
The Andhra Pradesh BJP unit on Sunday claimed that Prime Minister Narendra Modi had never promised the Special Category Status to the state.
Summary:
US-based Walmart which is in advanced talks to buy a significant stake in Flipkart is likely to get three to four seats on its 10-member board, according to reports.
Summary:
Kalaari Capital-backed online lending startup Rubique has raised a reported amount of around $15-20 million in funding led by Japan's Recruit Group and Russian venture capital firm Emery Capital.
Summary:
Gujarat Assembly Speaker Rajendra Trivedi on Saturday said that BR Ambedkar was a 'Brahmin' and that there is nothing wrong in calling a learned person a Brahmin.
Summary:
Slamming this year's White House Correspondents' Association dinner, US President Donald Trump on Monday called the event an embarrassment to everyone associated with it.
Summary:
Experienced ATM robbers in Russia are reportedly offering training courses for those interested and the masterminds behind the crimes receive a share from every successful robbery.
Summary:
'Avengers: Infinity War' has earned $630 million (over â¹4,100 crore) in its first weekend worldwide, making it the highest opening weekend grosser ever.
Summary:
Sushree cleared the exam in her first attempt and secured the 151st rank.
Summary:
At least 21 people including journalists have been killed and 27 others have been injured in twin suicide bombings in the Afghan capital of Kabul, according to health ministry officials.
Summary:
RCB captain Virat Kohli sprinted to his left from long on and put in a full-length dive to take a catch to dismiss KKR captain Dinesh Karthik in the 19th over on Sunday.
Summary:
Jeff Bezos-founded aerospace startup Blue Origin successfully launched its passenger spaceship New Shepard, completing its highest-ever test flight.
Summary:
Twitter sold public data access to Aleksandr Kogan, who leaked Facebook users' data to British firm Cambridge Analytica, the microblogging platform has confirmed.
Summary:
A TV channel journalist who was reporting the shortfall of audience at Congress' Jan Aakrosh Rally by showing empty seats at the venue on Sunday was allegedly heckled by some party supporters.
Summary:
After the successful test launch of the aerospace startup Blue Origin's passenger spacecraft on Sunday, Founder Jeff Bezos tweeted a picture of himself with the caption, "The lucky boots worked again." The startup's New Shepard spacecraft completed its highest-ever test flight, reaching 107 km.
Summary:
Talking about how the flight he was travelling in developed multiple technical snags, Congress President Rahul Gandhi said, "The plane nosedived 8,000 feet and I thought it's all over." He added he will now take a pilgrimage to Kailash Mansarovar after the Karnataka Assembly elections.
Summary:
George Washington, who was inaugurated as the 1st President of the US on April 30, 1789, was the only US leader to not live in the White House.
Summary:
UK Home Secretary Amber Rudd resigned from the post on Sunday, saying she "inadvertently misled" a government committee about deportation quotas for Caribbean migrants who arrived in the UK after World War II.
Summary:
The Etienne Terrus Museum in French commune Elne has discovered that nearly 60% of its new collection is fake.
The mayor said, "Knowing that people have visited the museum and seen a collection, most of which is fake, that's bad.
Summary:
As per reports, Boney Kapoor, who will be making a documentary on his late wife and actress Sridevi, has registered three titles 'Sri', Sridevi' and 'Sri Ma'am' with the movie registration department.
Summary:
Summary:
Summary:
Seles returned to professional tennis after two years.
Summary:
"If we field like that, we don't deserve to win.
We need to be hard on ourselves and be more brave...in the field," Kohli said.
Summary:
Manchester City on Sunday became the quickest team to reach 100 goals in a single Premier League season, achieving the feat during their 35th match of the 2017/18 season against West Ham United.
Summary:
Former Indian cricketer Rahul Dravid donned goalkeeping gloves for a friendly game of football, playing against Indian football team captain Sunil Chhetri's side on Saturday.
Summary:
The feature hides the comment for the user who taps it, then prompts the user whether the comment was "offensive" or "misleading".
Summary:
Russian Twitter accounts tried to influence last year's British election by tweeting in support of the opposition Labour party, according to a research by Swansea University and The Sunday Times.
Summary:
This comes months after Sasikala's nephew TTV Dhinakaran launched the Amma Makkal Munnettra Kazagam party.
Summary:
Filings also revealed the loss was impacted by a provision for "impairment of goodwill" of â¹1,797 crore.
Summary:
Condemning the Madhya Pradesh incident in which police constable candidates' castes were written on their bare chests during medical tests, Union Minister Ramdas Athawale said the incident was an insult to the SC/ST community.
Summary:
Three Indian fishermen lodged in a prison in Sri Lanka for over three months are being subjected to third-degree torture by the police, Tamil Nadu MLA Vasanthakumar H and several activists have alleged.
Summary:
Summary:
A sapling planted by US President Donald Trump and his French counterpart Emmanuel Macron on White House grounds during the latter's visit has gone missing.
Summary:
LG 5-Star DUALCOOL air conditioners with DUAL Inverter Technology ensures faster cooling and higher energy saving.
Summary:
Barcelona also extended their league record unbeaten streak to 34 matches.
Summary:
India and Pakistan will take part in a counter-terror military exercise alongside member nations of the Shanghai Cooperation Organisation in Russia's Ural mountains in September.
Summary:
German dictator Adolf Hitler married his longtime companion Eva Braun on April 29, 1945.
Summary:
Adolf Hitler was nominated for the Nobel Peace Prize in 1939, just three months before he led Germany to invade Poland and start World War II.
Summary:
Legless dancer Vinod Thakur was admitted to the ICU after collapsing on his way to Mumbai's Gateway of India during an attempt to set the world record of longest wheelchair pushing journey comprising 1,500 km.
Summary:
Your company is the problem." Adding that Facebook had tried to evade responsibility, he also said, "Facebook is a morality-free zone" that bullies journalists and threatens institutions.
Summary:
The Mulbagal constituency has the highest number of candidates (39) for one seat.
Summary:
Former JNU Students Union President Kanhaiya Kumar has been elected to the Communist Party of India's 125-member National Council on Sunday.
Summary:
Jammu and Kashmir Deputy CM and BJP leader Nirmal Singh has resigned from his post, a day ahead of the cabinet reshuffle.
Summary:
The candidates selected for the post of police constable in Madhya Pradesh's Dhar had their castes like SC and ST written on their bare chests during a medical examination.
Summary:
The Russia-made IL-38 aircraft was on a test flight during the incident in which no injuries were reported.
Summary:
One of his Instagram fake accounts has over a million followers, police added.
Summary:
Eight people, including seven children, are feared to have drowned while seven others have been rescued after a boat they were travelling in capsized in Bihar's Koshi river on Sunday.
Summary:
US President Donald Trump on Saturday said the European Union "was put there to take advantage of the United States." Claiming that he was straightening out "disastrous trade deals", he said, "I blame past Presidents and past leaders of our country".
Summary:
Desertification, land degradation and drought had cost India about 2.54% of Gross Domestic Product in 2014-15, according to a study commissioned by the Environment Ministry.
Summary:
Ranveer also shared a video where he is seen performing to the song 'I want to break free'.
Summary:
Actor Rishi Kapoor, while talking about what makes a good actor, said, "Observation is a big tool for any actor...I don't know why...actors think going to a gym...is the step to becoming an actor." He added, "I am a natural actor.
Summary:
Tereza Kacerova, the girlfriend of late Swedish DJ Avicii, has revealed that they had planned to have a baby together.
Summary:
American rapper Kanye West revealed that he will use the picture of his late mother Donda West's plastic surgeon as his new album cover.
Summary:
KKR handed RCB their fifth loss of the IPL 2018 despite RCB captain Virat Kohli slamming an unbeaten 68 off 44 balls.
Summary:
World number one Rafael Nadal on Sunday defeated 19-year-old Stefanos Tsitsipas 6-2, 6-1 to win Barcelona Open for a record-extending 11th time.
Summary:
Meanwhile, world number 10 HS Prannoy bagged his maiden Asia Championships men's singles bronze medal.
Summary:
Shaquem Griffin, who had put up 20 repetitions of 102-kg bench press using a prosthetic strapped to his left arm at NFL Combine, has become the first one-handed player to be drafted by an NFL team.
Summary:
Red Bull Formula One drivers Max Verstappen and Daniel Ricciardo collided with each other during the Azerbaijan Grand Prix on Sunday, thereby ending both their races.
Summary:
Tripura CM Biplab Deb on Sunday clarified he had not said that mechanical engineers should not opt for civil services.
Summary:
Two of the victims in the 2016 Una flogging incident and their families were among the 450 Dalits who converted to Buddhism in Gujarat on Sunday.
Summary:
Summary:
The asteroids range from as big as three to six school buses to the size of the Eiffel tower, NASA revealed.
Summary:
Pakistan's Interior Ministry has removed the chief prosecutor from the 26/11 Mumbai terror attack case reportedly for "not taking the government line" and following the high-profile case by the book.
Summary:
Responding to Lt Col Sandeep Ahlawat who slammed her for Akshay Kumar auctioning the naval officer uniform from 'Rustom', Twinkle Khanna tweeted, "Do we...think it's right to threaten a woman with bodily harm?" She clarified the auction was to raise funds for charity.
Summary:
Bollywood actress Sonam Kapoor's rumoured fiancé Anand Ahuja is the Managing Director of family-owned apparel company Shahi Exports.
Summary:
Malayalam films will be displaying a statutory warning while showing scenes that depict violence against women.
Summary:
A fan of Turkish football club Denizlispor, who has been banned from entering the team's stadium for a year, hired a crane to watch his team's match against Gaziantepspor.
Summary:
Accusing PM Narendra Modi's government of discrimination in allotment of funds, TDP spokesperson Kambhampati Rammohan Rao questioned why it sanctioned â¹44,000 crore for a Gujarat smart city project but only â¹2,500 crore for Andhra Pradesh's capital Amaravati.
Summary:
The Ghaziabad Development Authority (GDA) has lodged an FIR against two Hindi news channels for allegedly broadcasting "false news" about its officials.
Summary:
The protesters alleged the Army officials cordoned off the roads in the cantonment area to extend a golf course.
Summary:
The Central University of Gujarat has issued show cause notices to nine professors based on a complaint that they campaigned for the Congress and Patidar leader Hardik Patel in Assembly elections.
Summary:
Four men posing as police officers hijacked a Kerala-bound bus with 42 passengers onboard near Bengaluru on Friday.
Summary:
A bomb blast occurred on Sunday at an India-developed project in Nepal, days before PM Narendra Modi was scheduled to inaugurate it on May 11.
Summary:
Transport Minister Nitin Gadkari has said he is "unhappy with insurance companies" in India as they charge "hefty premiums but make no contribution to road safety".
Summary:
Talking about his daughter Sonam Kapoor's wedding and recent decorations at his residence, Anil Kapoor said, "You all will know very soon.
Summary:
Summary:
As per reports, the release date of Kangana Ranaut's 'Manikarnika: The Queen of Jhansi' will not clash with that of Akshay Kumar's 'Gold'.
Summary:
Sharing an old picture of him dancing on Michael Jackson's song 'Thriller', Hrithik Roshan wrote, "That's an inspired 8-year-old me doing nonsense but to mom...dad I was Jackson that night." Re-tweeting Hrithik's post, Tiger Shroff wrote, "Year 2000.
Pyaar Hai' released and an inspired 9-year-old me doing nonsense in his school talent show.
Summary:
Reacting to a question about Yuvraj Singh's exclusion from the Kings XI Punjab playing XI, KXIP captain Ravichandran Ashwin said, "What...What update?
Summary:
SRH on Sunday defeated RR by 11 runs to register their third successive win and go top of the IPL 2018 points table.
Summary:
Scholes' goal helped United knock out Barcelona with a 1-0 aggregate win.
Summary:
Talking about the ball-tampering scandal that took place during South Africa series, Australian cricketer Matthew Wade said, "[T]here was certainly a part of me that was feeling a touch lucky I wasn't there".
Summary:
Facebook has rolled out 'Sleep Mode' feature for Messenger Kids, a chat platform for children aged 6 to 12, to control the time spent on the app.
Summary:
Tripura Governor Tathagata Roy has written to Chief Minister Biplab Deb, seeking a government job for a BJP leader from West Bengal.
Summary:
Markets regulator SEBI has disposed of a case pertaining to alleged fraudulent trading by Indiabulls Securities, now known as Indiabulls Ventures.
Summary:
Russian senator Viktor Bondarev has said that about $430.7 billion was withdrawn from the country illegally from 2000 to 2017.
Summary:
The report, which does not include WhatsApp messages, can be downloaded to a user's phone after clicking on 'Download report' from the 'Request account info' tab.
Summary:
A CRPF sub-inspector has filed a criminal complaint at a Delhi court against the producers of 'Newton' for depicting CRPF in poor light.
Summary:
British novelist JK Rowling responded to a tweet which mentioned 12-year-old girl Kulsum from Jammu and Kashmir, who wanted to meet the novelist and had written an essay about her.
"Dear @jk_rowling.
Summary:
Apple is reportedly working on a headset that will support both augmented reality (AR) and virtual reality (VR) technologies.
Summary:
Talking about Congress' Jan Akrosh Rally on Sunday, BJP President Amit Shah said the rally was nothing but a 'Parivar Akrosh Rally'.
Summary:
Paytm has launched a payment mode called Tap Card in pilot mode in Chennai which allows users to pay offline within a second.
Summary:
NASA has revealed that one of the heat shields of Mars 2020 rover fractured after a week-long series of tests.
Summary:
Addressing a university's convocation ceremony in Madhya Pradesh on Saturday, President Ram Nath Kovind said universities should focus on education which creates job providers instead of job seekers.
Summary:
A 14-year-old girl in Madhya Pradesh's Jabalpur was allegedly gangraped multiple times by five youths over a period of two months.
Summary:
Talking about his planned meeting with North Korean leader Kim Jong-un, US President Donald Trump said, "We'll be doing the world a big favour.
I think we're going to do fine." Earlier, Trump had said he'll "walk out" if the talks are not "fruitful".
Summary:
Nearly 600 people were evacuated from a library in Australia after a rotting fruit sparked fears of a gas leak.
Summary:
Research by IIM Ahmedabad professor Satish Deodhar claims that history of Indian economic thoughts goes back to Vedas composed at least 1,000 years before Plato and Aristotle's writings.
Summary:
Summary:
Actors Bijay Anand, Geetanjali Tikekar, Ritu Vij and Abhinav Kapoor will also reportedly star in the remake.
Summary:
Rishi Kapoor, who earlier said his '15 second' cameo in Nandita Das' film 'Manto' was a 'mistake', clarified by saying, "Some mischief monger has tried to create a wedge between her and me...Absolutely untrue!
Summary:
Priyanka Chopra shared a video on Instagram where she can be seen doing Bihu dance with school girls in Assam.
Summary:
The Afghanistan cricket board reportedly wants BCCI to allow Indian players to feature in its new T20 league, scheduled for October 5-24 in Sharjah.
Summary:
In his radio address 'Mann Ki Baat', Prime Minister Narendra Modi said the 2018 edition of Commonwealth Games was special as the majority of Indian medalists were females.
Summary:
Australian journalist Dennis Freedman called Gautam Gambhir a verbal terrorist over the latter's remarks that merely boycotting cricketing ties with Pakistan won't help India.
Summary:
Pakistan were dismissed for 168 by the English county side Kent in 55.2 overs in a warm-up match.
Summary:
Saudi Arabia's sports authority has apologised after "indecent" footage of scantily clad women wrestlers appeared on big screen at a WWE event in Jeddah.
Summary:
Kishore Biyani-led Future Group is planning to launch an e-commerce app for grocery delivery in the coming weeks.
Summary:
Saudi King Salman and Crown Prince Mohammed bin Salman attended the launch ceremony of an entertainment resort on Saturday.
Summary:
Speaking at the Congress' Jan Aakrosh Rally, party President Rahul Gandhi said that the farmers of India cannot live without Congress.
Summary:
Summary:
Last year, Duterte called the North Korean leader a "son-of-a-wh**e maniac".
Summary:
PNB Chairman Sunil Mehta has said the lender has honoured Letters of Undertaking (LoUs) worth $1.9 billion out of $2.07 billion issued in favour of Nirav Modi and Mehul Choksi.
Summary:
After Manipur's Leisang village got electricity on Saturday, PM Narendra Modi on Sunday announced that every village in India now has access to electricity.
Summary:
Notably, Surrey's second-highest score of 438/5 also featured Ali top scoring with a 160-ball 268.
Summary:
Australia posthumously honoured Peter Norman, the sole white sprinter standing in solidarity at the podium during the silent 'Black Power' salute civil rights protest by African-American athletes at the 1968 Mexico Olympics.
Summary:
Carnegie Mellon University researchers have unveiled a prototype projector smartwatch called LumiWatch which turns a user's skin into a touchscreen.
Summary:
The number of major financial fraud cases referred to the Serious Fraud Investigation Office in 2017-18 (till March 1) has nearly doubled to 209.
Summary:
Patel was filmed leaning back beside an empty driver's seat with the car moving at 64 kmph.
Summary:
Commerce Minister Suresh Prabhu has said that sometimes "crazy ideas which are discarded" are the ones that become successful startups.
Ultimately success will come," Prabhu added.
Summary:
The Indian Railways has reported the highest revenue growth in three years after its revenue increased by 5.1% in 2017-18.
Summary:
During the 43rd edition of his 'Mann ki Baat' programme on Sunday, PM Narendra Modi announced that government ministries have come together to start a Swachh Bharat summer internship.
Summary:
An engineer from Kota has been fighting for a year to get â¹35 refund from IRCTC after the amount was deducted as service tax despite him cancelling the ticket before the GST implementation.
Summary:
"Why did our country bomb another country?" the kid asked, adding that she came up with the question all by herself.
Summary:
World's largest oil producer, Saudi Aramco, has appointed Lynn Laverty Elsenhans as its first-ever female director.
Summary:
The event, which aims to promote an active lifestyle among the elderly, saw over 1,000 athletes across seven days.
Summary:
Real Madrid's Gareth Bale scored with a seventh-minute strike as a Cristiano Ronaldo-less Real Madrid got past Leganés with a 2-1 win on Saturday.
Summary:
Google is launching a three-month mentoring program in India for startups focussing on artificial intelligence and machine learning.
Summary:
After the flight landed at Gatwick airport, the pilot apparently left the cockpit door open so passengers could see the windscreen.
Summary:
A Srinagar-bound Air India flight made an emergency landing today at the Indira Gandhi International Airport in Delhi, reportedly due to an engine snag.
Summary:
Tourism Fiji has been slammed for accidentally mixing up the phrases for the terms 'church' and 'toilet' in an advertisement featuring indigenous terms.
Summary:
While talking about the upcoming test of the 'hyperpod' prototype by his startup The Boring Company, Elon Musk tweeted that an exciting video is guaranteed.
Summary:
Bharti Enterprises Vice-Chairman Rajan Mittal has called for 100% Foreign Direct Investment in multi-brand retail.
Summary:
The husband claimed that the robbers shot the woman when she screamed after they pointed a gun at him.
Summary:
He claimed the BJP workers had entered the land forcefully and abused him when he questioned them.
Summary:
Speaking about farmer suicides, Madhya Pradesh Minister Balkrishna Patidar on Sunday said, "Who doesn't commit suicide?" Adding that it is a global problem and that even policemen and businessmen commit suicide, the minister said, "It's difficult to curb it.
Summary:
While talking about Bollywood song 'Tu Tu Hai Wahi' being played for his welcome in China, Prime Minister Narendra Modi on Saturday said that it feels great to hear Indian music on foreign soil.
Summary:
An Amritsar-bound passenger was arrested at the Delhi airport today for allegedly concealing gold worth â¹12 lakh in his belt.
Summary:
Duterte had imposed a temporary ban in February following the murder of a Filipino maid in Kuwait.
Summary:
Himanshu Sharma (49 kg category) and Nikhat Zareen (51 kg category) were the other two gold-winners for the Indian boxing contingent.
Summary:
Chamling became the Chief Minister in December 1994 and belongs to the Sikkim Democratic Front.
Summary:
North Korea will also give South Korean and US experts and the media access to the process, it added.
Summary:
North Korean leader Kim Jong-un has said he would move the country's clocks 30 minutes forward to unify with South Korea's time zone.
Summary:
The Australian town of Launceston in Tasmania has produced three World Cup final Man of the Match winnersâ David Boon, Ricky Ponting, and James Faulkner.
Summary:
Golfing legend Jack Nicklaus, who has won record 18 Majors, used a ã30 experimental stem cell therapy to cure his decades-long back pain, allowing him to return to golf.
Summary:
"We reduce the visual prominence of feed stories that are fact-checked false," a Facebook spokesperson said.
Summary:
The Congress' manifesto for the upcoming Karnataka Assembly elections promises to provide â¹1 lakh crore to make the city of Bengaluru eligible for consideration as the second capital city of India.
Summary:
Union Women and Child Development Minister Maneka Gandhi has urged the Jammu and Kashmir government to stop the use of mules and horses to ferry people on the Vaishno Devi route.
Summary:
It has also proposed making death sentence for raping minors gender-neutral.
Summary:
The doctor had asked the woman to undress and kept his phone secretly on the table to videotape her, the woman's husband said.
Summary:
CM V Narayanasamy had termed the order "unconstitutional", adding that Bedi was meddling with people's fundamental rights.
Summary:
The allocation represents the highest growth in Pakistan's defence budget in more than a decade.
Summary:
Nearly 4,000 people have fled Myanmar's Kachin State in the last three weeks as fresh clashes erupted between the Army and ethnic Kachin rebels, UN's Office for the Coordination of Humanitarian Affairs said.
Summary:
Trump is expected to meet North Korean leader Kim Jong-un in May or early June.
Summary:
Zimbabwe has become the second African nation to legalise the production of cannabis for medicinal or scientific purposes.
Summary:
Foreign Secretary Vijay Gokhale has said that Chinese President Xi Jinping revealed he had seen a number of Indian films, both Bollywood and regional.
Summary:
Patil further said Gambhir failed to make a proper comeback to the team due to his "ever-growing attitude problem".
Summary:
Ahead of India's tour of England, former Indian pacer Zaheer Khan said India will get acclimatised to the English conditions by playing ODIs and T20Is before Tests.
Summary:
Ex-chief selector Sandeep Patil has said Gautam Gambhir's decision to return to India from England tour in 2011 due to concussion cost him the chance to become a legend of Indian cricket.
Summary:
Ex-chief selector Sandeep Patil has said he nicknamed Gautam Gambhir as Amitabh Bachchan of Indian cricket due to his 'angry young man' attitude.
Summary:
Former Indian women's cricket team captain Diana Edulji has declined BCCI's CK Nayudu Lifetime Achievement Award as she is a member of the Supreme Court-appointed BCCI Committee of Administrators (CoA).
Summary:
Addressing the youth in Tripura on Saturday, Chief Minister Biplab Deb said the youth should choose self-employment instead of running after politicians for government jobs.
Summary:
Students also demanded replacement of an English professor alleging that he was inexperienced and didn't teach anything.
Summary:
Two members of the Nationalist Congress Party (NCP) on Sunday were shot dead by unidentified assailants in Maharashtra's Ahmednagar district.
Summary:
Madhya Pradesh will register the gurukuls in the state and treat them equivalent to mainstream schools, Chief Minister Shivraj Singh Chouhan said on Saturday.
Summary:
A couple caught having sex in a field in Salisbury, UK was chased naked by the police.
Summary:
Russia's Shikhany town plans to copyright the word 'Novichok', the type of nerve agent allegedly used to poison former spy Sergei Skripal in the UK.
Summary:
The on-field umpire told Ricky Ponting the match wasn't over and Australia would've to bowl the remaining overs on the reserve day.
Summary:
Addressing an event in Agartala on Friday, Tripura CM Biplab Deb said, "After pursuing mechanical engineering, one should not go for Civil Services.
Summary:
The post-mortem was performed by government-run Kushinagar District Hospital.
Summary:
World number one and 16-time Grand Slam champion Rafael Nadal on Saturday won his 44th consecutive set on clay and registered his 400th win on the surface.
Summary:
The camp had started on April 18 at the Himachal Pradesh Cricket Association Stadium and Sachin will reportedly visit his son on May 1.
Summary:
After the Dalmia Bharat Group adopted Delhi's Red Fort at the cost of â¹25 crore, the Congress tweeted a poll asking which "distinguished location" will be next "leased out" to private entities by BJP government.
Summary:
NASA has scrapped the only robotic vehicle under development to explore the lunar surface, despite US President Donald Trump directing the space agency to send humans to the Moon again.
Summary:
Authorities admitted that the hospital was infested with rats but dismissed the family's allegations.
Summary:
China will not be able to match the US in terms of being the "military superpower" even though its rise is "inevitable", Malaysian Prime Minister Najib Razak has said.
Summary:
This can be estimated from the company's net profit of â¹9,435 crore during the quarter, which saw an increase of 17.26% year-on-year.
Summary:
Mark Johnson, the former head of HSBC Bank's foreign exchange cash trading, has been sentenced to two years in prison for misusing confidential information provided by a client to generate "profits for HSBC and enrich himself".
Summary:
As per reports, Ranveer Singh and Deepika Padukone will be having a private international destination wedding by the end of this year.
Summary:
Summary:
Denying rumours of veteran actress Mumtaz's death, her daughter Tanya Madhvani shared an Instagram video where she said that her mother is in Rome and is doing well.
This comes amid the several rumours of the actress' death.
Summary:
Talking about the ongoing season of the IPL, Bollywood actor Amitabh Bachchan tweeted, "[It] has to be said...this season of the IPL is something else...a revelation...what games...what incredibly exciting results...almost every game a tense last over finish." Amitabh's tweet came after the RCB-CSK and SRH-KXIP matches.
Summary:
Summary:
Janhvi Kapoor will reportedly perform on late actress and her mother Sridevi's songs at her cousin and actress Sonam Kapoor's wedding sangeet.
Summary:
MI are now sixth on the IPL points table.
Summary:
MS Dhoni has become the first-ever player to captain in 150 Indian Premier League matches, achieving the feat after taking the field for Chennai Super Kings against Mumbai Indians on Saturday.
Summary:
The last time Mumbai Indians played a match without Pollard was against SunRisers Hyderabad on April 18, 2016, which they lost.
Summary:
Atletico Madrid's French forward Antoine Griezmann's 'Take the L' celebration, which he did during his side's Europa League match against Arsenal, is from the popular online multiplayer shooter game 'Fortnite'.
Summary:
The official Twitter account of the County Championship shared a video of Nottinghamshire wicketkeeper Tom Moores taking a reflex catch and compared him to Manchester United goalkeeper David de Gea.
and then there's *REACTIONS*...Tom Moores = cricket's David de Gea," the video was captioned.
Summary:
Thousands of people protested across Spain after a court cleared five men of gangraping an 18-year-old girl during the running of the bulls festival in 2016.
Summary:
At least four military officials were killed in Somalia on Saturday after a suicide bomber blew himself up in a military camp in Galkayo, officials said.
Summary:
The Houthis on Saturday claimed to have launched eight ballistic missiles at "economic and vital targets" in Saudi's Jizan city in an apparent retaliation to the strike.
Summary:
The average monthly GST collection stood at â¹89,885 crore during these eight months, it added.
Summary:
General Motors CEO Mary Barra earned a compensation of $21.96 million in 2017, a decline of 2.8% from a year earlier.
Summary:
The Dalmia Bharat Group has adopted Delhi's Red Fort at a reported amount of â¹25 crore for 5 years, becoming the first-ever corporate to adopt a monument under the government's "Adopt a Heritage" project.
Summary:
UK's Natural History Museum has disqualified a photo featuring an anteater, which was one of the winners in its 2017 Wildlife Photographer of the Year competition, citing "authenticity" issues.
Summary:
An anti-sexual harassment hotline will be set up for the upcoming Cannes film festival.
Summary:
After registering his first win as captain of the Delhi Daredevils, Shreyas Iyer revealed that it was former captain Gautam Gambhir's decision to sit out of the playing XI ahead of the fixture.
Summary:
The National School Games hockey final between Delhi and Punjab was halted mid-match and the hosts were handed the trophy as the event's chief guest, Punjab's Education minister, had to attend another event.
Summary:
Wrestler John Cena beat Triple H in their fight, while Braun Strowman won the 50-man match at the 'Greatest Royal Rumble' hosted in Saudi Arabia's Jeddah city on Friday.
Summary:
"Where physical human-robot interaction is expected, robots should be compliant and reactive to avoid human injury and hardware damage," noted researchers.
Summary:
He further said officially there are 20,000 startups across the country but the figure is "grossly understated".
Summary:
An MIT study has said the economic impact of building infrastructure and railroads by India's colonial rulers fostered commerce and raised agricultural income by 16%.
Summary:
Puducherry Lieutenant Governor Kiran Bedi has passed an order stating that free rice will not be distributed in villages which haven't received certification of being free from garbage and open defecation.
Summary:
Ramesh Venkata Pothuru allegedly collected over â¹3 crore in illegal filing fees for H-1B visas and green cards for nonimmigrant workers from India.
Summary:
The Times Group has filed a police complaint against unidentified persons for allegedly photoshopping a headline which appeared in the Times of India to "Modi, Xi will mate 6 times in 24 hours".
Summary:
A purported 15-minute phone call made by rape-convict Asaram Bapu from jail has surfaced, where the self-styled godman can be heard saying "good days will come".
Summary:
China has said it will not be "too hard" on India on the issue of the Belt and Road Initiative (BRI).
Summary:
Supporting an alcohol ban in Uttar Pradesh, state Backward Class Welfare Minister OP Rajbhar said people belonging to Rajbhar caste are blamed the most even though Rajputs and Yadavs consume the most amount of alcohol.
Summary:
Gary Dauberman, who has written the scripts for the previous two Annabelle movies, will make his directorial debut with the yet-untitled film.
Summary:
Summary:
Actor Vicky Kaushal has said it was his dream to work with a person like Karan Johar, adding, "It feels great when a filmmaker like him casts you in his films." "Films like Raazi...boosts your confidence...good filmmakers...willing to work with you," he added.
Summary:
Speaking about his family's reaction to him taking a break from films, Abhishek Bachchan said, "They were okay with it.
Summary:
Speaking about rumours of Priyanka Chopra starring in Kalpana's biopic, Harrison further said, "If you notice, Priyanka Chopra has not confirmed her participation in a movie on Kalpana."
Summary:
After Chennai Super Kings' win against Royal Challengers Bangalore, Suresh Raina posted a photo of his daughter Gracia and MS Dhoni's daughter Ziva sitting near each other and hooked on to tablets.
Summary:
CSK's Harbhajan Singh took to Twitter to share a video of himself singing 'Tenu suit suit karda', while on a long drive with teammates Suresh Raina and Ravindra Jadeja.
Summary:
Kings XI Punjab player Chris Gayle is on a break from IPL 2018 and is visiting Goa to take part in a poker tournament, which will also feature Minissha Lamba.
Summary:
Shooting, a sport in which India won 16 medals at the Commonwealth Games 2018, will not be a part of the CWG 2022, the Commonwealth Games Federation confirmed on Saturday.
Summary:
North Korean vessels have been suspected of smuggling prohibited goods in defiance of UN sanctions.
Summary:
German Chancellor Angela Merkel has said that the 2015 deal with Iran is not sufficient to curb its nuclear program, adding that the deal is only the first step in slowing down the country's nuclear activities.
Summary:
The telecom firm had posted a net loss of â¹327.7 crore in the corresponding quarter last fiscal.
Summary:
Haryana-based Anu Kumari, who has a 4-year-old son, has secured the second rank in the UPSC Civil Services Examination 2017 in as many attempts.
Summary:
With earnings of â¹40 crore, Hollywood superhero film 'Avengers: Infinity War' has become the highest Hollywood opening day grosser of all time in India.
Summary:
Japanese company Brave Robotics has unveiled a humanoid robot that can transform into a car which can accommodate two people.
Summary:
Last year, Skechers sued Flipkart for selling fake products.
Summary:
While NASA's 2020 Mars rover is equipped to collect samples, ESA's ExoMars rover would land on the Red Planet in 2021 for drilling.
Summary:
During his two-day visit to his Parliamentary constituency Lucknow, Union Home Minister Rajnath Singh on Saturday said politics was part of India before independence as "even Lord Rama and Krishna have done politics".
Summary:
Union Minister Maneka Gandhi responded to an online petition demanding a study on male child sexual abuse and formed a panel to brainstorm and come up with a solution for the issue.
Summary:
Following the meeting between North and South Korea's leaders, Iran on Saturday warned that the US is unqualified to play a role in the two countries' detente because it does not "respect its commitments".
Summary:
US President Donald Trump has said his country will not get played with while engaging in talks with North Korea regarding its denuclearisation.
Summary:
BSE Chairman S Ravi has been booked in the case against former Aircel promoter C Sivasankaran's companies for allegedly defrauding IDBI Bank of â¹600 crore.
Summary:
The Odisha government also cancelled the land allotted to Gitanjali Gems for setting up a jewellery manufacturing unit.
Summary:
Summary:
Kareena Kapoor, while speaking about 'Sanju', the upcoming biopic on actor Sanjay Dutt, said there is no one better than her cousin Ranbir Kapoor to portray Dutt in the film.
Summary:
The case against the duo has been registered over the portrayal of Hindu God of death, Yamraj, in an inebriated state.
Summary:
Richa Chadha has said there's an unspoken hierarchy on the sets of a mainstream film, while adding that she's not fond of it.
Richa further said working in mainstream films is "stressful".
Summary:
Mohammad Shami's wife Hasin Jahan has accused the cricketer of creating a fake birth certificate in order to get into the Under-22 team of Bengal.
Summary:
As a part of Saudi General Sports Authority's new 10-year partnership with World Wrestling Entertainment (WWE), Saudi Arabia hosted its first ever WWE event in which women and children were allowed as spectators.
Summary:
The Bill & Melinda Gates Foundation has launched a $12 million Grand Challenge to encourage people to create a vaccine that could protect against all strains of flu.
Summary:
Used Apple iPhone chargers were also being sold as new on the platform.
Summary:
Chief Election Commissioner OP Rawat has said simultaneous polls can be held in May 2019, but holding early Lok Sabha elections in December this year along with several state elections will not be possible.
Summary:
Bengaluru-based lending startup Capital Float has raised â¹48 crore in debt investment from Triodos Investment Management after raising $22 million (over â¹146.5 crore) from Amazon earlier this week.
Summary:
European Space Agency's ExoMars orbiter has captured a 40-km-long segment of a Martian crater showing "bright" ice on its edges.
Summary:
Insisting that Ram Janmabhoomi-Babri Masjid issue be dealt with as a property dispute, advocate Harish Salve told the Supreme Court on Friday that India has moved on from the demolition of the mosque.
Summary:
Prime Minister Narendra Modi and Chinese President Xi Jinping discussed the importance of peace at the border and building trust between the militaries of the two nations, Foreign Secretary Vijay Gokhale said on Saturday.
Summary:
A man's corpse was run over more than 300 times by London Underground trains after staff mistook the body for a dead fox.
Summary:
However, Geodesic failed to repay the money to Citibank after maturity of bonds.
Summary:
Schindler employed Jews in the 'Schindler's List' in his factories in Nazi-occupied Poland and Czechoslovakia preventing their deportation to concentration camps.
Summary:
Ferruccio Lamborghini, born on April 28, 1916, once complained of a weak clutch in his Ferrari car to founder Enzo Ferrari.
Summary:
One of the accused's mother was also arrested for allegedly destroying evidence.
Summary:
Summary:
American actress Meghan Markle will have to give the 'Life in the UK' test as part of the procedures to acquire a British citizenship after her wedding to UK's Prince Harry.
Summary:
Gilchrist, who hit 149(104), revealed that he had kept the squash ball to improve his grip.
Summary:
Analyst at Macquarie Group Benjamin Schachter has said that even without margin expansion in core retail, e-commerce giant Amazon will become the world's "first trillion dollar company." In March this year, Amazon overtook Google parent Alphabet for the first time to become the world's second most valuable company.
Summary:
Prime Minister Narendra Modi and Chinese President Xi Jinping on Saturday held informal talks during a lakeside walk and a houseboat ride during the second day of PM Modi's visit to China.
Summary:
As many as 13 people died on Saturday after a vehicle carrying 17 people collided with a parked truck in Uttar Pradesh's Lakhimpur Kheri.
Summary:
PM Narendra Modi has gifted Chinese President Xi Jinping specially made prints of paintings by Chinese artist Xu Beihong, who worked under Rabindranath Tagore in West Bengal.
Summary:
PM Modi was on a 2-day informal visit to China.
Summary:
A total of 273 cases of underage driving have been registered by Hyderabad Traffic Police in the two months.
Summary:
During his Presidential election campaign, Donald Trump had vowed to free Afridi.
Summary:
North Korea's Punggye-ri nuclear test site, which the country pledged to abolish, remains usable and its closure could easily be reversed, US intelligence officials have said.
Summary:
The birth of UK's Prince William and his wife Kate Middleton's third child Louis Arthur Charles is estimated to have costed around $17,500, less than the average fee for a normal delivery in the US.
Summary:
The company said that it found "no justification or reason" for the fall and clarified that it makes timely disclosures of all events and information that have an effect on the company's performance.
Summary:
Priyanka Chopra, on being asked what she misses about India, jokingly said, "I love being late [to sets]...I can't do that [in America]!
Summary:
Newcastle Jets' 19-year-old Australian midfielder Riley McGree scored with an 18-yard behind-the-back scorpion kick from the edge of the penalty area box.
Summary:
In a video posted on Twitter, former England captains Andrew Flintoff and Kevin Pietersen can be seen preparing for a cabaret dance performance in Paris.
Summary:
The offer states that the 49-year-old will be treated for free in Fortis hospitals in Mumbai and Chennai.
Summary:
His remark came after the Centre rejected a Supreme Court collegium's recommendation to elevate Uttarakhand Chief Justice KM Joseph to the apex court.
Summary:
Bengaluru-based food delivery startup Swiggy is planning to deliver groceries and medicines to its customers, according to reports.
Summary:
Founded in 2017, Happy Cow Dairy collects milk from dairy farmers and stores them in its own bulk milk collection centres and provides it to dairy corporations.
Summary:
A UK-based study has revealed that horses can remember people's facial expressions, enabling them to use this information to identify people who could pose a potential threat.
Summary:
The Defence Ministry on Friday cleared the proposal for procurement of military equipment worth â¹3,600 crore, including 13 long-range guns for the Navy and anti-tank guided missile NAG for the Army.
Summary:
The members of the brigade have put up two buckets outside apartments for wet and dry food wastes, respectively.
Summary:
The convicts include Jaswanti Devi, who ran the Apna Ghar shelter, her son-in-law and a driver.
Summary:
A temple priest has been arrested in Rajasthan's Ajmer for allegedly raping a 7-year-old girl in an empty room inside the temple.
Summary:
Tesla shareholder Jing Zhao has proposed its board Chairman Elon Musk should be replaced by an independent director.
Summary:
Australian researchers have discovered that a 43-year-old trapdoor spider, which recently died had outlived the previous world record holder, a 28-year old tarantula found in Mexico.
Summary:
Durishetty, who achieved rank 790 in 2013, joined Indian Revenue Service on his second attempt.
Summary:
US President Donald Trump on Friday issued a veiled threat to warn nations against opposing the joint 2026 FIFA World Cup bid by the US, Canada, and Mexico.
Summary:
North Korean leader Kim Jong-un felt a "swirl of emotion" while walking to the border with South Korea and wondered "why it took so long", he later told South Korean President Moon Jae-in.
Summary:
The gender pay gap in India is more than in China (12.1%).
Summary:
Summary:
Talking about his parents, late filmmaker Yash Johar and Hiroo, Karan Johar said they never made him feel that he sometimes behaved differently from others as a child.
Summary:
The film's shooting will reportedly begin after Ranbir finishes working on 'BrahmÃÂstra'.
Summary:
Sweden's music band, ABBA will make a comeback after 35 years with two new songs.
Summary:
Speaking about his journey as a filmmaker, Sanjay Leela Bhansali said, "No one gets so much love, hatred or even jealousy." He added, "The audience has a great connection with me...While some love my work, others hate it but they all react to it." "I want them to criticise the film, too.
Summary:
Indian author Chetan Bhagat has signed a deal with Amazon Publishing for his next six books.
Summary:
The children along with 200 llamas, were ritually sacrificed about 550 years ago after repeated flooding events, the National Geographic study found.
Summary:
India's Under-19 World Cup-winning pacer Shivam Mavi, who plays for Kolkata Knight Riders, registered IPL 2018's most expensive over after conceding 29 runs against Delhi Daredevils on Friday.
Summary:
On April 16, KKR had defeated DD by 71 runs to register biggest win (by runs) of IPL 2018.
Summary:
After a referee's mid-match apology for missing a handball in an Everton-Newcastle United match, a user tweeted, "Me when my mom keeps pestering me on why I did not clean my room".
Summary:
The 20-year-old, who also holds the junior world record in javelin throw, has also been recommended for the Arjuna Award.
Summary:
A singer performing at Congress' election rally in Karnataka was allegedly told to sing only the first line of National Song 'Vande Mataram' due to party President Rahul Gandhi's tight schedule.
Summary:
Existing investors including Infosys Co-founder Nandan Nilekani, and Helion Venture Partners also participated in the round.
Summary:
Summary:
The Jammu and Kashmir Services Selection Board (JKSSB) has issued an admit card for the post of Naib Tehsildar in the name of 'Kachur Khar' (brown donkey).
Summary:
Lalu's family failed to provide legal documents pertaining to the property.
Summary:
Andhra Pradesh recorded almost 37,000 lightning bolts during a 13-hour period on Tuesday, meteorological instrument maker Vaisala has revealed.
Summary:
Gedhun Choekyi Nyima was recognised by the Dalai Lama as the reincarnation of the 10th Panchen Lama.
Summary:
Mukesh Ambani-led Reliance Industries (RIL) on Friday posted a 17.26% year-on-year increase in its consolidated net profit to â¹9,435 crore for the March quarter.
Summary:
A 17-year-old boy had allegedly raped the victim and confined her for a day.
Summary:
Anudeep is a BITS Pilani graduate who is presently serving in the Indian Revenue Service.
Summary:
With this, Gambhir's 122-match streak of representing his teams in the IPL has come to an end.
Summary:
Aditya Ghosh on Friday resigned as President and Whole Time Director of IndiGo's parent InterGlobe Aviation.
Summary:
Deepika Padukone will reportedly portray the role of Draupadi in Aamir Khan's upcoming epic drama 'Mahabharata'.
Summary:
American comedian Amy Schumer has revealed she lost her virginity at the age of 17 through rape by her then boyfriend.
Summary:
Shaw became the joint-youngest batsman to score an IPL fifty at the age of 18 years and 169 days.
Summary:
The 33-year-old midfielder has been at Barcelona since 1996 and has won 31 trophies with the senior team so far.
Summary:
A whale shark, the world's largest living fish, has been tracked moving 20,142 km across the Pacific in the longest whale shark migration route ever recorded.
Summary:
After a flight ferrying Congress President Rahul Gandhi from Delhi to Karnataka developed multiple technical snags, PM Narendra Modi called him to enquire about his health, reports said.
Summary:
A 25-year-old BPO executive was allegedly gangraped by an Ola cab driver and his aide on Thursday night in Uttar Pradesh's Greater Noida.
Summary:
Indian Air Force is procuring 110 jets at an approximate cost of â¹97,000 crore, dubbed as the world's largest fighter jets deal.
Summary:
Liquor baron Vijay Mallya on Friday said he has the "democratic right" to cast his vote in the upcoming Karnataka Assembly elections but cannot leave the UK due to the terms of his bail.
Summary:
PM Narendra Modi on Friday invited Chinese President Xi Jinping to attend an informal summit in India next year.
Summary:
A Delhi-based woman was duped of â¹3.8 lakh after she gave a 'cancelled' cheque for a loan.
Summary:
When asked during an interview what present did he buy for his wife Melania, US President Donald Trump said he "got her a beautiful card and some beautiful flowers", adding that he is "very busy" to buy her a birthday gift.
Summary:
Wu-Tang Financial had replied to West saying, "I have one queen and it is @msexcel dont u dare slander her on this platform".
Summary:
Actress Deepika Padukone, while talking about her rumoured boyfriend Ranveer Singh, said, "I am very protective about Ranveer." "When the world gushes on him, I am honest with my feedback of him," the actress added.
Summary:
Actress Priyanka Chopra has said that she takes tremendous pride in being "a woman of colour" adding, "I want, as a woman of colour, to have my choice of opportunities." The actress added that colour is not the only thing that defines her.
Summary:
Actor Salman Khan shared a poster of his upcoming film 'Race 3' which co-stars Jacqueline Fernandez, and captioned it, "Racing hearts".
Summary:
The release date of Diljit Dosanjh and Taapsee Pannu starrer 'Soorma' has been postponed to July 13.
Summary:
DD's 18-year-old opener Prithvi Shaw smashed a six with an MS Dhoni-like helicopter shot on the bowling of veteran Australia and KKR fast bowler Mitchell Johnson on Friday.
Summary:
Batting in his first match as the captain of Delhi Daredevils, Shreyas Iyer smashed an unbeaten 93 off 40 balls, including 10 sixes, against Kolkata Knight Riders on Friday.
Summary:
Four-time Formula One world champion Lewis Hamilton has revealed Arsenal manager Arsene Wenger once invited him to train with the club.
Summary:
This comes after Tesla was criticised for revealing that Autopilot was on during a car crash which happened last month.
Summary:
A video of North Korean leader Kim Jong-un's bodyguards running alongside his limousine has surfaced online.
Summary:
Mukesh Ambani-led Reliance Industries (RIL) added â¹12,335 crore in market value on Friday, ahead of its quarterly results.
Summary:
Former Miss World Diana Hayden, while responding to Tripura CM Biplab Kumar Deb's remark that he doesn't understand her beauty, said, "I'm a proud brown-skinned Indian." "I'm hurt.
Summary:
At least seven children were killed and 12 others injured in a knife attack outside a school in China's Shaanxi province on Friday.
Summary:
KXIP fast bowler Ankit Rajpoot, who registered the best bowling figures (5/14) in the IPL among uncapped players on Thursday, was bought for â¹3 crore by the franchise.
Summary:
Eduwhere, in partnership with Lex Witness, is conducting a free All India mock test for CLAT (Common Law Admission Test) UG 2018 on April 30 and May 1 this year.
Summary:
The meeting was attended by their male counterparts from countries including Pakistan and China.
Summary:
Indrani Mukerjea, who is lodged in a Mumbai jail for allegedly murdering her daughter Sheena Bora, has sent a divorce notice to her third husband Peter Mukerjea.
Summary:
Hailing the decision to end the Korean War, US President Donald Trump on Friday said "good things are happening" and added "only time will tell", in an apparent reference to the outcome of the reconciliation.
Summary:
The US will expand its anti-ISIS operation with the help of regional states.
Summary:
Fitch added that India's government debt amounted to 69% of GDP in FY18, compared to median of 41% for economies rated BBB.
Summary:
Actor Arunoday Singh, while talking about his career in Bollywood, said, "The fame and all is nice, and I'd love to have all of that, but I don't consider myself any less successful right now." "I never thought I would get work as an actor...yet I'm paying every bill as an actor.
Summary:
Actor Rishi Kapoor, while talking about his son Ranbir, said, "One thing that I have passed on to him is my passion for work and films." He added Ranbir is a risk-taker and chooses to do one film at a time.
Summary:
While talking about her upcoming film 'Bharat', actress Priyanka Chopra called it the "quintessential Bollywood movie" which she hadn't done "in years".
Summary:
Actor Tom Holland has said filming for 'Avengers: Infinity War' was a "bizarre" experience.
Summary:
Iceland Cricket has announced that their Domestic Cup series between Reykjavik and Kópavogur will be renamed as the Volcanic Ashes.
Summary:
KXIP's Manoj Tiwary dropped SRH all-rounder Yusuf Pathan's catch near the boundary rope, with the ball bouncing over the rope for a six.
Summary:
South African batsman AB de Villiers said he felt "sorry" for Australian cricketers following the ball-tampering incident, especially captain Steve Smith.
Summary:
According to BCCI, allowing Kohli to play county over Afghanistan's debut Test will "set a bad precedent" and make the opponents think they're "not worthy".
Summary:
Former Delhi Daredevils captain Gautam Gambhir has said that nobody from Pakistan should be provided an opportunity to perform in India unless the relations between the two countries improve.
Summary:
In a first, University of Minnesota researchers have used a customised, low-cost 3D printer to print electronics on a human hand.
Summary:
The company added another $52.7 billion to its market capitalisation after shares surged another 6.6% in after hours trading.
Summary:
Social media major Facebook added around $42 billion in market capitalisation on Thursday after the company posted a 49% rise in revenue to $11.96 billion for the first quarter of 2018.
Summary:
While there was no evidence the brains regained consciousness, Sestan said individual brain cells were found to be healthy.
Summary:
US-based scientists including Indian researcher Praveen Arany have 3D printed dentures that periodically release medication to prevent fungal infections which cause inflammation, redness and swelling in users.
Summary:
The accused killed his son with a stone, following which the villagers thrashed him and handed him over to the police.
Summary:
Sexual assault against minors and child pornography were criminalised in Pakistan in 2016.
Summary:
Kim Jong-un on Friday became the first North Korean leader to cross the border into South Korea since the Korean War began 65 years ago.
Summary:
North and South Korea on Friday agreed to sign a peace treaty to end the 65-year-long Korean war.
Summary:
"The baby will be known as His Royal Highness Prince Louis of Cambridge," the palace said in a statement.
Summary:
Verma is credited with founding the Chhayavad movement in Hindi literature.
Summary:
Blaming the previous BJP-SAD government for not curbing the problem, Sodhi further said, "Drugs and sports are inversely proportional to each other.
Summary:
The National Company Law Appellate Tribunal (NCLAT) has stayed an order of the Competition Commission of India that imposed a penalty of â¹136 crore on Google for "search bias".
Summary:
Google is the most trusted Internet brand in India, followed by Facebook, according to TRA's Brand Trust Report 2018.
Summary:
Slamming Uttar Pradesh CM Yogi Adityanath over the recent school van and train collision incident, AAP leader Alka Lamba called him "nikamma nakara" (good for nothing) chief minister.
Summary:
Union Minister of State Hardeep Singh Puri dined at the home of a Dalit family and then spent the night at another Dalit's house in Punjab's Amritsar on Thursday.
Summary:
Colorado State University researchers have developed a plastic-like polymer, which can be "chemically recycled and reused, in principle, infinitely." The polymer can be recycled back to its original monomer units at high temperatures or via a catalyst at low temperatures.
Summary:
The woman, who was in her early forties, had reportedly asked the hotel to not send any staff to her room.
Summary:
Meanwhile, the apex court has asked the accused to respond to a petition seeking to transfer the case hearing to Chandigarh.
Summary:
Sanji Ram, one of the main accused in Kathua rape-murder case, has told the police that he learnt about the rape four days after the victim's abduction and planned her murder to save his son.
Summary:
The US will end the protected immigration status granted to nearly 9,000 Nepal earthquake victims.
Summary:
International credit rating agency Fitch on Friday kept India's sovereign rating unchanged for 12th year at the lowest investment grade 'BBB-'.
Summary:
Mauritius-based Firstland Holdings owned by Nishant Kanodia, son-in-law of Essar Group promoter Ravi Ruia, allegedly invested â¹325 crore in Deepak Kochhar's NuPower Renewables.
Summary:
Indian Express wrote the film doesn't have enough impact.
It was rated 2/5 (HT), 3/5 (TOI) and 2.5/5 (Indian Express).
Summary:
Commenting on casting couch in Bollywood, filmmaker Shyam Benegal said, "Things are not one-sided in...these [cases]." "When people are...talented there's no need for casting couch.
Summary:
Pulkit Samrat has said he would love to do a biopic on late actor Rajesh Khanna.
Summary:
Royal Challengers Bangalore's South African cricketer AB de Villiers took his wife Danielle and son Abraham out for a ride in an auto-rickshaw in Bengaluru ahead of the side's match against Kolkata Knight Riders on Sunday.
Summary:
UK Parliament Committee Chair Damian Collins has said Facebook's CTO Mike Schroepfer, "failed to answer many specific...questions about Facebook's business practices." Collins added Facebook's "desire to hold onto information" was "frustrating".
Summary:
This picture is the most compelling evidence that some supernovas originate in double-star systems, said researchers.
Summary:
A Rashtriya Swayamsevak Sangh (RSS) member on Friday wrote a letter to the Aligarh Muslim University, demanding to conduct Shakhas (camps) inside the university campus.
Summary:
The petition seeks a recall of the Supreme Court's verdict which removed the provision for immediate arrest in cases filed under the act.
Summary:
The elder brother's wife was also shot dead in the indiscriminate firing.
Summary:
Adding that the company has partnership with about 6,000 colleges, he said there are some embedded courses offered in these institutions and students who clear these are "Reliance ready".
Summary:
Senior lawyer Indu Malhotra was sworn in as a judge of the Supreme Court in the presence of Chief Justice of India Dipak Misra on Friday.
Summary:
American comedian Bill Cosby was found guilty of drugging and molesting former Temple University employee Andrea Constand in his Philadelphia mansion 14 years ago.
Summary:
SoftBank is convincing Flipkart's key shareholders to await an offer from Amazon before agreeing to sell a majority stake to Walmart, according to reports.
Summary:
IBM has introduced blockchain technology, used for authenticating cryptocurrency transactions, to track jewellery from mines to stores.
Summary:
Scammers have made Facebook and Instagram accounts under the name of Facebook CEO Mark Zuckerberg and COO Sheryl Sandberg, tricking individuals into sending large amounts of money in order to collect bogus lottery winnings.
Summary:
Amazon Founder and the world's richest person Jeff Bezos added $12 billion to his wealth on Thursday after the e-commerce giant's shares surged on posting its financial results.
Summary:
In its earnings report, Facebook has said that it anticipates it will discover and announce additional incidents of misuse of user data.
Summary:
Congress President Rahul Gandhi on Friday released the 'Nava Karnataka' manifesto for the upcoming Karnataka Assembly elections and called it "Mann ki Baat" of Kannadigas.
Summary:
The woman reportedly doused a cloth with kerosene, set it on fire, and threw the baby into the cloth.
Summary:
Resident doctors at the All India Institute of Medical Sciences (AIIMS) in Delhi went on an indefinite strike after one of their colleagues was slapped in front of attendees and staff by a senior doctor.
Summary:
Prime Minister Narendra Modi reached China at 12:30 am on the intervening night of Thursday and Friday to hold informal talks with Chinese President Xi Jinping.
Summary:
Madras High Court on Friday dismissed a plea filed by former PM Rajiv Gandhi's assassination convict S Nalini Sriharan, seeking premature release.
Summary:
After a school van-train collision at an unmanned level crossing left 13 students dead in Uttar Pradesh, Railway Board Chairman Ashwani Lohani said all such crossings will be eliminated by March 31, 2020.
Summary:
Following the conclusion of the morning meeting with North Korean leader Kim Jong-un, South Korean head Moon Jae-in said the discussion was a "gift to the world".
Summary:
Tia Freeman then broke the news to her family about the baby boy, who's now seven weeks old.
Summary:
Actor Sumeet Vyas, while revealing that he has faced casting couch, said, "At the very beginning of my career, I had been at the receiving end of an indecent proposal." "Of course, I turned the offer down, but I was genuinely depressed for a week after that.
Summary:
The matter pertains to the news channels airing a particular video of actress Sri Reddy abusing Kalyan.
Summary:
Talking about managing a career simultaneously in Bollywood and Hollywood, Priyanka Chopra said, "I've two active, relevant careers on two different continents." "I need to be able to balance both, strategically, because I don't want to have to choose," she added.
Summary:
Following the Cape Town ball-tampering incident, ICC's chief Dave Richardson said that the body aims to move towards stricter and heavier sanctions against ball-tampering.
Summary:
Real Madrid's Champions League semifinal opponents Bayern Munich have been charged with disciplinary action after several fans ran onto the Allianz Arena pitch and two tried to take photographs with Cristiano Ronaldo after Bayern's 1-2 loss on Wednesday.
Summary:
The development comes amid reports suggesting that the US-based retail giant Walmart may acquire a controlling stake in Flipkart for at least $12 billion.
Summary:
Founded in 2003, DocuSign had raised over $500 million so far, with the IPO taking its valuation from $3 billion to $4.4 billion.
Summary:
In 1935, Albert Einstein called the then recent theory of quantum entanglement as "spooky action at a distance".
Summary:
A study led by the US Geological Survey has warned that thousands of low-lying coral atoll islands would be rendered uninhabitable by the mid-21st century owing to frequent flooding events.
Summary:
German scientists have found a record 12,000 microplastic particles per litre of Arctic sea ice in ice core samples, two to three times higher than previous measurements.
Summary:
Delhi High Court has apologised to a senior citizen and his family for "unlawful" orders passed by a lower court that landed him in a mental health hospital for three weeks.
Summary:
The project was launched in 2017, but Blackberry applied for registration a month after the July 31 deadline.
Summary:
Summary:
Amelia's left leg was amputated from the thigh, and its lower part was surgically attached backwards.
Summary:
Summary:
Aishwarya Rai represents the Indian women...But I don't understand the beauty of Diana Hayden." "Indian women didn't use cosmetics in the old times.
Summary:
Robert Downey Jr and Chris Evans starrer superhero film 'Avengers: Infinity War', which released today, is "the God of all Marvel films," wrote Hindustan Times (HT).
Bollywood Hungama said, "'Avengers: Infinity War' is every bit an epic action film".
Summary:
The family of DJ Avicii, in a statement released a week after his demise, said, "He couldn't go on any longer.
Summary:
The All India Tennis Association has nominated doubles star Rohan Bopanna and Yuki Bhambri for the Arjuna award.
Summary:
E-commerce giant Amazon has posted a profit of $1.6 billion for the March quarter of 2018, more than double the same period a year earlier.
Summary:
Congress on Thursday filed a police complaint after the aircraft carrying party President Rahul Gandhi to Karnataka developed technical snags.
Summary:
Sharing a report on the US' plans to revoke work visas for spouses of H-1B visa holders, Congress President Rahul Gandhi tweeted, "There are some things a hug can buy.
Summary:
Flipkart Co-founder Binny Bansal may exit the Indian e-commerce giant after Walmart acquires a majority stake in the homegrown startup, according to reports.
Summary:
Following his arrest in 2013, rape-convict Asaram Bapu's daughter Bharti Shriji has been running his empire, worth an estimated â¹10,000 crore.
Summary:
Over 21,000 teachers across Tamil Nadu are staging protests over salary discrepancies caused by the 6th pay commission, due to which teachers appointed after June 2009 receive lower salaries compared to those appointed earlier.
Summary:
After 13 students of Divine Public School were killed in a school van and train collision in Uttar Pradesh, CM Yogi Adityanath has ordered suspension of four officials from the education and transport departments.
Summary:
While suggesting three or four dates for his meeting with North Korean leader Kim Jong-un, US President Donald Trump said that the meeting may not even take place.
Summary:
Reacting to KXIP's Manoj Tiwary's bowling action in the match against SRH, a user tweeted, "Manoj Tiwary is Lasith Malinga with loose motion." Other tweets read, "Manoj Tiwary is bowling like how Superman flies," and, "Umpire zara bach ke!!
Summary:
Former CSK opener Matthew Hayden took to Twitter to praise MS Dhoni for his match-winning knock against RCB, saying the former Indian captain is the real 'Universe Boss'.
Summary:
Talking about pacer Mohammad Shami, who was dropped for DD's previous two matches, the franchise's bowling coach James Hopes said the season is not yet over for him.
Summary:
Following Chennai Super Kings captain MS Dhoni's match-winning knock against the Royal Challengers Bangalore, Dhoni's teammate Ambati Rayudu said, "Dhoni bhai wanted to hit the first ball out of the park against RCB".
Summary:
Webstresser.org, believed to be the world's largest service for paid DDoS attacks, has been shut down as a result of an investigation by a dozen law enforcement agencies from around the world.
Summary:
The Election Commission has rejected Congress candidate G Manjunatha's nomination for the reserved Mulbagal seat in Karnataka Assembly elections after he falsely claimed in his affidavit that he was a Dalit.
Summary:
The BJP on Thursday likened Congress President Rahul Gandhi to last Mughal emperor Bahadur Shah Zafar, claiming that he will sink his party just like the 19th-century emperor sunk the Mughal dynasty.
Summary:
Although the party was launched in his presence, Yadav is not officially part of it since his claim to represent the JD(U) is sub-judice.
Summary:
Congress leader Digvijay Singh has said the party should be like a "younger brother" to regional parties in states like Bihar and West Bengal to forge a united front against the BJP in 2019 general elections.
Summary:
Founded in 2016, the startup offers short-term as well as long-term financial support to corporate employees for their financial needs.
Summary:
An Indian national is suspected of killing and burying his wife at his house in UAE's Sharjah, the police said.
Summary:
ISIS fighters fleeing Syria are planning to stir and consequently infiltrate a new wave of African migration to Europe, the head of UN World Food Programme David Beasley has said.
Summary:
This shopping extravaganza boasts of the biggest brands, hottest styles, global trends and a unique shopping experience.
Summary:
In 2003, Akhtar went on to bowl the fastest delivery in recorded history, clocking 161.3kmph.
Summary:
Former TV anchor Suhaib Ilyasi, who is serving a life term for murdering his first wife, was granted a 30-day anticipatory bail to take care of his ailing second wife.
Summary:
Indian Premier League's next season could be partly shifted to the United Arab Emirates due to the 2019 Lok Sabha elections.
Summary:
KXIP pacer Ankit Rajpoot has become the first Indian to take a five-wicket haul in the IPL history without having played an international match.
Summary:
The BCCI will soon hire a bowling coach for the Indian women's cricket team, which had finished as runners-up in the 2017 World Cup. The team does not have a bowling coach at present.
Summary:
The 2021 World T20 will be a 16-team event.
Summary:
A district court in Madhya Pradesh has summoned Facebook CEO Mark Zuckerberg after a start-up named 'The Trade Book' accused the social networking platform of harassment.
Summary:
After Game of Thrones replied to Elon Musk's "cyborg dragon" tweet saying, "Bend the knee to House Targaryen", the billionaire responded, "DonâÂÂt make me use my space lasers".
Summary:
The West Bengal Election Commission has announced that panchayat elections will be held in one phase on May 14 and counting will reportedly be on May 17.
Summary:
The Congress has alleged the Centre approved advocate Indu Malhotra's elevation as Supreme Court judge but stalled Uttarakhand HC Chief Justice KM Joseph's appointment as "political revenge".
Summary:
But in Pakistan, army has a state." Adding that Pakistan will keep Kashmir "boiling", he said Pakistan's Army would lose its privileges if peace was reinstated.
Summary:
In August 2013, the police in Jodhpur and Uttar Pradesh's Shahjahanpur had refused to file an FIR in the rape case against self-styled godman Asaram Bapu.
Summary:
The principal of Divine Public School was arrested after the school's van collided with a train at an unmanned crossing in Uttar Pradesh's Kushinagar, leaving 13 students dead.
Summary:
A nine-year-old student who was injured in the school van-train collision in Uttar Pradesh's Kushinagar revealed they kept shouting to warn the driver "bhaiya" about the incoming train but he was busy on his phone.
Summary:
It was published in response to a US report that called China a violator of human rights.
Summary:
However, it corrected the error, saying that Palestinian officials admitted providing payments to the kin of those killed.
Summary:
The Bombay High Court has stayed Income Tax Department's showcause notice issued to several Tata Trusts including Navajbai Ratan Tata Trust (NRTT).
Summary:
The bank had posted a profit of â¹1,225 crore in the same quarter last fiscal.
Summary:
Italian luxury brand Versace and realty firm Unity Group have partnered to develop Delhi's tallest building with a â¹500-crore investment.
Summary:
While the department seized cash from benami lockers of PWD contractors in Bengaluru, it raided two realtors in the Hyderabad, officials added.
Summary:
Earlier, the ED froze land, buildings along with a plant and machinery worth â¹48 crore.
Summary:
Oil Minister Dharmendra Pradhan has said the government is concerned about "pinch" to consumers due to rising price of petrol and diesel.
Summary:
Further, the match witnessed IPL 2018's first five-wicket haul.
Summary:
Earlier, Wilder had rejected a $12.5-million bid to fight Joshua, calling him "a joke".
Summary:
This is the second snake to be rescued from the Delhi Assembly this year.
Summary:
Police in California, US, have arrested a 72-year-old former policeman who is believed to be the 'Golden State' serial killer, responsible for 12 murders, 45 rapes and 120 burglaries in the 1970s and 80s.
Summary:
India will face their arch-rivals Pakistan for the seventh time in World Cup history on June 16 at Manchester.
Summary:
Dhoni achieved a top speed of 22 kmph in his sprint.
Summary:
The 30-year-old became only the seventh pacer and 12th bowler overall to reach the 100-wicket mark in the IPL.
Summary:
The International Cricket Council on Thursday confirmed that all of its 104 member countries will receive T20 International status.
Summary:
Indian fast bowler Mohammad Shami's wife Hasin Jahan has said that her case is similar to the Kathua rape case, wherein an eight-year-old was raped and murdered.
Summary:
Deposing against self-styled godman Asaram Bapu in a rape case, prosecution witness Rahul K Sachar said the 77-year-old had told him that raping a woman is not a sin for a 'Brahmgyani' like him.
Summary:
Uttar Pradesh CM Yogi Adityanath slammed protestors raising slogans at the accident site in Kushinagar where 13 students were killed on Thursday and said, "ye nautanki band kardo (stop the drama)." "The families are in major grief, do not create a ruckus," he added.
Summary:
After he was sentenced to life imprisonment until death for raping a 16-year-old girl, self-styled godman Asaram Bapu reportedly took off his cap, got down on his knees and cried.
Summary:
It also highlighted that 40% of respondents in India indicated "widespread bribery and corruption in business".
Summary:
The Centre on Thursday sent back the Supreme Court Collegium's recommendation to elevate Uttarakhand Chief Justice KM Joseph as an SC judge.
Summary:
After being acquitted in Gujarat's 2002 Naroda Patiya riots case, former BJP minister Maya Kodnani has revealed she received electric shock treatment at a civil hospital as she suffered from depression while serving her jail term.
Summary:
Saudi Crown Prince Mohammed bin Salman recently said the kingdom would consider changing the penalty from death to life in prison in certain cases.
Summary:
North Korea's Punggye-ri nuclear test site partially collapsed after the regime carried out multiple explosions, a study by Chinese geologists has claimed.
Summary:
Japan-based Coincheck, which suffered the largest ever cryptocurrency hack, made $490 million from April 2017 to January this year, when the theft occurred.
Summary:
The bank's Net Interest Income during the quarter rose by 31.4% year-on-year to â¹2,154.2 crore.
Summary:
Jeweller Nirav Modi has fled Hong Kong and moved to New York, according to a report citing government documents.
Summary:
Civil Aviation Secretary RN Choubey has said the government is "happy about the buzz" Air India's disinvestment process has created.
Summary:
The bank's shares surged over 8%, taking the total market capitalisation to â¹81,075 crore.
Summary:
The CBI has filed a case against former Aircel promoter C Sivasankaran's companies, Win Wind and Axcel Sunshine, for allegedly defrauding IDBI bank of â¹600 crore.
Summary:
Talking about his friends criticising his work, Varun Dhawan said, "Arjun Kapoor [criticises] me whenever he gets a chance, which is very often." "When you act with a lot of people, there are very few who'd like to criticise you but I've got a few [people who criticise me]," he added.
Summary:
Actress Shraddha Kapoor, on the occasion of her film 'Aashiqui 2' completing five years today, wrote on her Instagram story, "Some movies, stories and characters stay with you forever." "'Aashiqui 2' is one of them for me," she added.
Summary:
Thirteen-year-old Kyle Jackson has become one of the youngest gamers ever signed to a professional team, playing the survival game 'Fortnite'.
Summary:
Summary:
SunRisers Hyderabad pacer Basil Thampi has said that when he feels low, he messages banned Indian fast bowler Sreesanth, who also belongs to Kerala.
Summary:
Former India football captain Bhaichung Bhutia on Thursday launched his political party 'Hamro Sikkim Party'.
This is a party of the people of Sikkim.
Summary:
Reacting to a video of UK Prince William struggling to keep his eyes open during the annual Anzac Day service at Westminster Abbey, a Twitter user wrote, "1st week with a new baby...
Summary:
The Philippines had rescued Filipino domestic workers who claimed they were abused by their Kuwaiti employers.
Summary:
Dar argued Asif did not reveal information about his employment contract with a UAE-based company while contesting the elections.
Summary:
On April 26, 1986, one of the four reactors at Ukraine's Chernobyl nuclear power plant exploded causing the world's worst nuclear accident.
Summary:
On April 26, 1986, the world's worst nuclear accident occurred at the Chernobyl nuclear power station in Ukraine.
Summary:
Actor Salman Khan has been listed on the 39th spot among wildlife criminals on the website of Wildlife Crime Control Bureau, a government body that combats poaching and related offences.
Summary:
South Korean technology giant Samsung Electronics on Thursday reported a 52% increase in profit for the March quarter at $10.8 billion.
Summary:
While Twitter posted its first-ever profit of $91 million in Q4 2017, the company on Wednesday revealed a profit of $61 million for Q1 2018.
Summary:
Indigenous People's Front of Tripura (IPFT), ruling BJP's ally in the state, has threatened to launch a protest within three months if the Centre doesn't form an inter-ministerial committee to study its separate state demand.
Summary:
The Congress on Thursday appointed veteran party leader Kamal Nath as its Madhya Pradesh unit chief, while Lok Sabha chief whip Jyotiraditya Scindia will head the campaign committee for Assembly elections.
Summary:
The Supreme Court has refused a petition to stay Indu Malhotra's elevation as SC judge, calling the petition "unimaginable" and "never heard of".
Summary:
Gupta was at DRI office in connection with an alleged gold smuggling case.
Summary:
A 17-year-old boy has been detained by police for allegedly raping a 10-year-old girl in a madrasa in Uttar Pradesh's Ghaziabad and confining her to the institution, police officials said.
Summary:
Urging all Muslim nations to unite against the US and other "enemies", Iranian Supreme Leader Ayatollah Ali Khamenei has said that his country would never yield to US "bullying".
Summary:
The secretary of British Minister of State for Housing Dominic Raab was caught selling sex online by an undercover journalist who posed as a wealthy businessman.
Summary:
A 'cry closet' has been installed at the library of a university in Utah, United States.
Meanwhile, social media users tweeted, "Soon to be make out chamber" and "so my school installed a cry closet in the library...
Summary:
Thirty children in the village of Siddaramanahundi in Karnataka are named after Siddaramaiah, the Chief Minister of the state.
Summary:
India added around 34.6 lakh people to the formal workforce between September 2017 and February 2018, according to payroll data released by Employees' Provident Fund Organisation (EPFO) and National Pension System (NPS) for the first time.
Summary:
Filmmaker Aanand L Rai, while speaking about working with Shah Rukh Khan and Salman Khan in the upcoming film 'Zero', said, "Shah Rukh and Salman together were a house on fire." "More than directing them, it was just fun watching the two of them," he added.
Summary:
The bodies were found next to burial pots and included "a male, a female, children and a handicapped person," an official said.
Summary:
Nearly 180 dead and 9,888 live 'radiated tortoises', native only to Africa's Madagascar, were recovered from a house last week.
Summary:
The baby, who did not suffer any injuries, was taken to the hospital after his parents realised he was missing and returned to the spot.
Summary:
Barcelona forward Lionel Messi has won a European Union court challenge to register his surname as a trademark to sell sports goods, beating a Spanish cycling gear manufacturer called Massi.
Summary:
Technology giant Apple will launch a 6.5-inch iPhone model which might support a stylus named 'iPen', as per reports.
Summary:
Facebook's spokesperson also confirmed the company will replace gun emoji with a toy water gun.
Summary:
YouTube has announced it'll now allow parents of children who use its Kids app to specifically handpick every video and channel available to their child.
Summary:
Bengaluru-based cross-category classifieds platform Quikr has lost its unicorn status as its Swedish investor Kinnevik marked down its valuation by 12% to $884.94 million as of December 2017.
Summary:
Edalat is the founder of an organisation that opposes foreign interference and military intervention in Iran.
Summary:
US First Lady Melania Trump's wax statue was unveiled on Wednesday at New York's Madame Tussauds by ex-White House Press Secretary Sean Spicer.
While unveiling the statue, Spicer said people haven't fully appreciated Melania's intellect.
Summary:
The number 1729 is known as the Hardy-Ramanujan number after Cambridge Professor GH Hardy visited Indian mathematician Srinivasa Ramanujan at a hospital.
Summary:
Further, another job ad for women specified height, age, 'trim figure' and 'aesthetically pleasing' as requirements.
Summary:
Google has introduced new features to Gmail, as a part of which users will be able to search, write, respond, delete, or archive up to 90 days of messages without internet connectivity.
Summary:
Acknowledging that Facebook enforces its nudity policies better than hate speech policies, CEO Mark Zuckerberg said, "It's much easier to build an AI system to detect a nipple than it is to detect hate speech".
Summary:
The epicentre distance and height of the largest secondary tremor on the seismogram, when connected on the Richter scale, quantify the magnitude.
Summary:
The Apollo Hospitals informed the Madras High Court on Thursday that they don't have any biological samples of late Tamil Nadu CM J Jayalalithaa.
Summary:
Talking about the school van and train collision that killed 13 students in Uttar Pradesh, CM Yogi Adityanath said, "Prima facie appears to be mistake of van driver, he had earphones on".
Inquiry will be conducted to nab those responsible," Yogi added.
Summary:
The Bar Council of India's inquiry panel has rejected the allegations against Jammu Bar Association lawyers of threatening Kathua rape victim's lawyer Deepika Rajawat and preventing police from filing a charge-sheet in the court.
Summary:
The Supreme Court on Thursday said it will transfer the trial of the Kathua gangrape and murder case if it finds even the slightest possibility of lack of fair trial.
Summary:
Stating that "we are killing our planet" by polluting oceans and destroying biodiversity, French President Emmanuel Macron said, "I am sure one day the US will come back and join the Paris climate agreement." "Let us face this, there is no planet B," he added.
Summary:
French President Emmanuel Macron on Wednesday rejected the prospect of meeting spiritual leader the Dalai Lama, saying doing so without consulting China would trigger a "crisis" with the country.
Summary:
Further, in a follow-up investigation, the man supposed to receive the gold from the woman was also arrested.
Summary:
Talking about the disruption caused by Patanjali, India's largest FMCG company Hindustan Unilever's CEO Sanjiv Mehta said, "A good competitor is good for Hindustan Unilever." After the emergence of Patanjali, Mehta said HUL is making "huge investments" in data, analytics and artificial intelligence among others.
Summary:
The Income Tax Department has reportedly issued a fresh notice to Deepak Kochhar, ICICI Bank CEO Chanda Kochhar's husband, in â¹3,250-crore ICICI Bank-Videocon loan row.
Summary:
Over 16,000 hours of Internet shutdown cost the Indian economy $3.04 billion during 2012-2017, a report by ICRIER showed.
Summary:
Nasdaq CEO Adena Friedman has said the American stock exchange is open to launching a cryptocurrency exchange in the future.
Summary:
Actress Deepika Padukone, while speaking about the qualities she admires in rumoured boyfriend Ranveer Singh, said, "He is a man who is not afraid to cry and I love that about him." "He is very real, emotional and sensitive," she added.
Summary:
Actor-politician Shatrughan Sinha has said choreographer Saroj Khan shouldn't be condemned for her remark on the prevalence of casting couch in Bollywood.
Summary:
Television actress Hina Khan took to Instagram to share her look from the upcoming short film 'Smart Phone'.
Summary:
He doesn't do anything, yet he does a lot." Amitabh and Ranbir will be seen together onscreen for the first time in the upcoming film 'BrahmÃÂstra'.
Summary:
An American woman who was born with a rare congenital disorder wore a golden prosthetic arm on her wedding day.
Summary:
England all-rounder Moeen Ali, who was bought by RCB for â¹1.70 crore, has said, "If you asked me to play in the IPL for free, I would have done...especially for experience with players like Virat Kohli, AB de Villiers".
Summary:
Summary:
An American Airlines passenger claims she found a dead rat inside her luggage after the airline lost it for five days.
Summary:
Billionaire Elon Musk on Wednesday tweeted, "Oh btw I'm building a cyborg dragon".
Summary:
However, no weapons were found in the three years of excavations.
Summary:
Yellow posts have been installed at busy intersections in the city to spray water.
Summary:
OnePlus 6 x Marvel Avengers Limited Edition smartphone has been confirmed to launch on May 17 in a new teaser video.
Summary:
Google search for 'India first PM' showed late Prime Minister Jawaharlal Nehru's name and information but it was accompanied by PM Narendra Modi's picture.
Summary:
Pujari, said to be living abroad, reportedly wanted to revive his gang in Mumbai by targeting Bhatt.
Summary:
Notably, the game witnessed combined 33 sixes, the most for an IPL match.
Summary:
It also recommended former India captain and U-19 World Cup-winning coach Rahul Dravid for the Dronacharya Award.
Summary:
Google has started rolling out an update to Gmail on web, under which, users will be allowed to block recipients from forwarding, copying, downloading, or printing their emails.
Summary:
Amazon and Tesla have been named in 'The Dirty Dozen' list by the National Council for Occupational Safety and Health for putting their workers and communities at risk in the US.
Summary:
Further, the company's monthly active users were 2.20 billion, an increase of 13% year-over-year.
Summary:
This brings the total funding raised so far to $220 million, increasing SoftBank's stake to 11.99% and reducing Alibaba's stake to 50.8% in Paytm Mall.
Summary:
The record dive emerged after 20 non-breeding penguins were wrongly GPS-tagged in 2013 whereas researchers were aiming to study breeding birds.
Summary:
Moreover, out of the six central forensic laboratories under the Directorate of Forensic Science Services, only three labs have the facility to check DNA samples.
Summary:
The Supreme Court has clarified that it hasn't given any direction to make Aadhaar linkage with mobile numbers mandatory.
Summary:
The village also lacks electricity and all-weather road facilities.
Summary:
After self-styled godman Asaram's conviction in a rape case on Wednesday, Bhopal Municipal Corporation in Madhya Pradesh took down and demolished signboards of a bus stop named after him.
Summary:
According to the new plan, would-be immigrants can claim valuable points as skilled sex workers or escorts in visa applications.
Summary:
French President Emmanuel Macron has said that US President Donald Trump is leaning towards getting the US out of the Iran nuclear deal.
Summary:
Over 1 lakh duck eggs spilled onto a highway in China's Quzhou when the driver lost control of the truck and it overturned.
Summary:
A police officer in United States' Ohio apologised to a local firefighter with a "Sorry I tased you" cake after she accidentally used a stun gun on him.
Summary:
Surveen Chawla has revealed she was once replaced in a film by someone who had "better contacts".
Summary:
Slamming former US President Barack Obama for changing nothing in Chicago during his eight years in office, rapper Kanye West on Wednesday called President Donald Trump his "brother".
Trump responded to the rapper's tweet, saying, "Thank you Kanye, very cool!"
Summary:
A new song titled 'Dilbaro' from Alia Bhatt and Vicky Kaushal starrer 'Raazi' has been released.
Gulzar has penned the song's lyrics.
Summary:
Amitabh Bachchan has said Rishi Kapoor is an "accomplished artiste" and working with him is always a joy.
Summary:
The swim bladder of the Totoaba is used in Chinese traditional medicine and can be sold for up to $20,000 (â¹13 lakh) in the black market.
Summary:
Delhi-based Lifestyle and fashion content portal for women POPxo has raised â¹37 crore in funding led by Neoplux Technology Fund and Oppo.
Summary:
If we protect our trees, they will protect us," the Vice President said while speaking at the Indira Gandhi National Forest Academy.
Summary:
Slamming the Taliban for announcing its spring offensive, acting US State Secretary John Sullivan has said there was no need for a new fighting season.
Summary:
Taking a dig at US President Donald Trump and his French counterpart Emmanuel Macron's "interesting relationship", Comedian Jimmy Kimmel said, "Trump cannot keep his hands off this guy." He added, Trump really really likes Macron.
Summary:
At least 13 school children were killed after the vehicle they were travelling in collided with a train in Uttar Pradesh's Kushinagar.
Summary:
Senior advocate Indu Malhotra is set to become the first woman lawyer to be directly appointed as a Supreme Court judge after the Centre accepted the apex court's collegium recommendation.
Summary:
As many as 33 sixes were hit, breaking the previous record of 31 sixes smashed in the Delhi Daredevils-Gujarat Lions match last year.
Summary:
An independent survey of 3,200 tennis players has claimed that 14.5% of them have first-hand knowledge of match-fixing, alleging a "tsunami" of corruption at lower levels of the sport.
Summary:
Maharashtra Police on Wednesday said that Shiv Sena leader Shailesh Nimse, who was murdered last week, was killed by a contract killer hired by his wife.
Summary:
It has rejected the tax department's argument that discounts given out by Flipkart should be reclassified as capital expenditure.
Summary:
The catalogue comprises of the stars' distance from Earth, their colour, and motion through space.
Summary:
Using the Chile-based ALMA, an international team of astronomers has uncovered a dense concentration of 14 galaxies in process to become a massive galaxy cluster.
Summary:
Several supporters of self-styled godman Asaram Bapu began performing a 'havan' in Uttar Pradesh's Jalaun before the verdict in the rape case against him on Wednesday and continued performing the ritual after he was convicted.
Summary:
Houses built in Madhya Pradesh under the Pradhan Mantri Awas Yojana will have ceramic tiles with the photographs of PM Narendra Modi and CM Shivraj Singh Chouhan at its entrance and kitchen.
Summary:
After the US and France called for a new nuclear deal with Iran, Russia on Wednesday said there was no alternative to the existing deal.
Summary:
Chieh Huang, the CEO of American online wholesale retailer Boxed, said the company will give up to $20,000 (over â¹13 lakh) for its employees' weddings, as well as fund their children's college tuition.
Summary:
CCTV footage has captured the moment a three-wheeler crashed into a mobile store in the Chinese city of Taixing.
Summary:
Ten benches of the National Company Law Tribunal (NCLT) comprising 26 judges and technical staff are hearing more than 2,500 insolvency cases, official data showed.
Summary:
He said that Amazon will work with any set of regulations that are given and find a new way to "delight customers".
Summary:
Kanye himself tweeted an image of the posters but deleted the post later.
Summary:
A complaint has been filed against singer Kanika Kapoor by an event management firm while criminal cases of cheating and intimidation have been registered against her by the Aligarh police.
Summary:
Sonam Kapoor, on being asked if she will continue working after her marriage, said, "Shahid Kapoor got married, no one asked him if he will work after marriage or not." She added, "Nobody will ask a man these questions.
Summary:
The 206-run target was also the joint-highest successfully chased target by CSK in IPL.
Summary:
Chennai Super Kings captain Mahendra Singh Dhoni has become the first player to score 5,000 runs as captain in T20 cricket.
Summary:
The Haryana government has cancelled the felicitation function for the state's CWG 2018 medal winners scheduled for Thursday, after some athletes decided to boycott it over prize money deduction.
Summary:
Cristiano Ronaldo also set the record for most CL victories (96) by a player.
Summary:
The device was successful in detecting 12 infectious diseases, such as mumps, measles, and herpes, researchers claimed.
Summary:
Summary:
A man in Tamil Nadu has been sentenced to four consecutive life terms for raping and impregnating his 17-year-old daughter.
Summary:
Promotion of the 'Soroush' app is reportedly aimed at convincing Iranians to switch from the Telegram messaging app to the local one.
Summary:
UK's first Sikh MP Tanmanjeet Dhesi, along with two UK-based NGOs, has started a campaign for a direct flight between London and Amritsar, India.
"In 2016, approximately 1.89 lakh passengers travelled between Amritsar and the UK via other Indian and foreign airports.
Summary:
Cricket legend Sachin Tendulkar, who turned 45 on Tuesday, said during an interview with VVS Laxman at Wankhede Stadium that he feels like a "25-year-old with 20 years of experience".
It has been 20 years and time has simply flown by," he added.
Summary:
After stepping down as Delhi Daredevils' captain, Gautam Gambhir said he was probably "too desperate to turn things around".
Summary:
Ricky Ponting dropped himself from MI playing XI during IPL 2013 and was replaced by Rohit Sharma as captain.
Summary:
Iyer was named the IPL Emerging Player of the Season in 2015, for scoring 439 runs for DD, who had bought him that year for â¹2.6 crore.
Summary:
De Villiers cleared the roof with the six and went on to smash eight sixes in his 68-run knock.
Summary:
Under his captaincy, DD had lost five of their six matches up till now in this season.
Summary:
The ICC has issued an apology for retweeting an old video of PM Narendra Modi and jailed self-styled godman Asaram, with the caption, "Narayan, Narayan".
Summary:
After Karnataka CM Siddaramaiah dubbed PM Narendra Modi as "North Indian import", the state BJP tweeted that bringing "Italian toiletries for your Bengaluru bathroom" is an example of import.
Summary:
BJP leader BS Yeddyurappa's son BY Vijayendra will not contest the elections, as was projected earlier.
Summary:
After self-styled godman Asaram Bapu was awarded a life sentence for raping a 16-year-old girl, Madhya Pradesh CM Shivraj Chouhan said places named after him in the state will be renamed.
Summary:
The principal of the school where then 16-year-old girl raped by Asaram Bapu studied, has revealed he was threatened to change her birthdate in the school documents to make her age 18 years.
Summary:
India's ranking has dropped two spots to 138 among 180 countries in the World Press Freedom Index released by non-government organisation Reporters Without Borders this year.
Summary:
A parliamentary committee said the CBI should investigate the Bofors arms deal "without fear or favour" and called for a legislative review to protect the agency from "political obstructions" in the case.
Summary:
The Karnataka government has demoted 20,000 employees who were promoted through reservation for SC/ST category and promoted an equal number of employees from general and backward categories.
Summary:
Andhra Pradesh State Housing Corporation website displayed the Aadhaar number, bank details, caste and other information related to 1.3 lakh residents, researcher Srinivas Kodali tweeted.
Summary:
Japan has objected to a dessert which will be served at the inter-Korean peace summit and demanded that South Korea remove it from the menu.
Summary:
The Health Ministry is planning to bring in a new set of regulations for online sale of medicines.
Summary:
Expressing disappointment over the US government's proposal to revoke work permits for spouses of H-1B visa holders waiting for green cards, Commerce Minister Suresh Prabhu said he would take up the matter with the Trump administration.
Summary:
After Asaram Bapu was convicted of raping a minor, actor Farhan Akhtar took to Twitter to slam trolls sharing pictures of PM Narendra Modi with the self-styled godman.
Summary:
Liverpool forward Roberto Firmino celebrated his teammate Mohamed Salah's second goal against Roma in the Champions League semi-final first leg with a kung-fu kick on Tuesday.
Summary:
The Egyptian Parliament has approved a law allowing authorities to impose a fine of nearly â¹38,000 on those found to be harassing tourists.
Summary:
Rajashekaran reportedly told Haasan that he was quitting the party to focus on his career.
Summary:
Facebook had earlier said that 5.62 lakh Indians were "potentially affected" by the data breach.
Summary:
The son of former Bangladesh PM Khaleda Zia, Tarique Rahman, has sought temporary political asylum in the UK, his Bangladesh Nationalist Party (BNP) said.
Summary:
Although the man remained calm when the robber's gun was pointed towards him, he grabbed the gunman when he turned towards another customer.
Summary:
Reliance group Chairman Anil Ambani's eldest son Anmol Ambani has been appointed to the boards of Reliance Nippon Life Asset Management and Reliance Home Finance.
Summary:
Bitcoin was the ninth most-read article on the digital encyclopedia Wikipedia for last year, according to its annual 'Top 50 Report'.
Summary:
Before Asaram's conviction in a minor's rape case, his son Narayan Sai was jailed in 2013 for raping a Surat-based woman.
Summary:
National Award-winning actress Usha Jadhav, while revealing she has faced casting couch, said she was asked to "give something in return" to star in a film.
"I said something on the lines of, 'What?
Summary:
CB Fry, who was born on April 25, 1872, and represented England in both cricket and football, was also a former long jump world record holder.
Summary:
"(My brother) told me...'He is your teammate, he's supporting you and you're shouting at him'.
Summary:
Researchers at Carnegie Mellon University and Disney Research have transformed ordinary walls into "smart walls" using conductive paint costing about $20 per square metre.
Summary:
The condition, diabetic retinopathy, begins with an insufficient supply of oxygen to the retina, researchers noted.
Summary:
Jammu and Kashmir political activist Ghulam Nabi Patel died due to injuries sustained after being shot by terrorists in Pulwama district on Wednesday.
Summary:
The bomb killed the groom and his relative, and left the bride greviously injured.
Summary:
The accused and his parents later assaulted the victim and threatened her of dire consequences if she complained.
Summary:
Asaram Bapu's cook and doctor were killed after they testified against the self-styled godman in a rape case lodged against him and his son Narayan by two Gujarat-based sisters.
Summary:
Danish inventor Peter Madsen has been sentenced to life in prison without parole after he was found guilty of murdering Swedish journalist Kim Wall on his submarine.
Summary:
Bharti Airtel's India business reported a loss of â¹652 crore for the first time in 15 years while its Africa business reported highest-ever profit of â¹699 crore in the March quarter.
Summary:
Public sector lender Punjab National Bank (PNB) has invited applications to empanel detective agencies to locate its untraceable borrowers.
Summary:
India's largest telecom operator Bharti Airtel added â¹5,477 crore in market capitalisation on Wednesday, a day after the company's quarterly results beat market expectations.
Summary:
Retirement fund body EPFO on Wednesday said it will inform its subscribers if contributions are not deposited by their employers for a given month in due time.
Summary:
Actress Kareena Kapoor has said her husband Saif Ali Khan wanted her to set an example for mothers.
Summary:
Actor Anupam Kher, while talking about playing former Prime Minister Manmohan Singh in the upcoming film 'The Accidental Prime Minister', said, "It is the most difficult role that I have done." "I have studied the character of Manmohan Singh for four months," he added.
Summary:
Indian cricketers Dinesh Karthik and Hardik Pandya will represent World XI in a one-off T20I against Windies at Lord's Cricket Ground in London on May 31.
Summary:
The BCCI has nominated Indian men's cricket team opener Shikhar Dhawan and Indian women's team opener Smriti Mandhana for the Arjuna Award.
Summary:
Out of the flagged videos, YouTube removed 8.3 million videos from its platform.
Summary:
A South African airline will plaster the photographs of six winners of a contest on the side of their planes for a minimum of a week.
Summary:
The BJP has admitted that it has no leaders in Karnataka by waiting for "North Indian imports like PM Modi, UP CM Adityanath" to conduct rallies ahead of state elections, CM Siddaramaiah tweeted.
Summary:
The Allahabad High Court on Wednesday granted bail to Dr Kafeel Khan, seven months after he was arrested in connection with the death of over 60 children at a government-run medical college in Gorakhpur.
Summary:
The girl claimed the 16-year-old accused had taken her to a house to get dressed for the next play at the event when he raped her.
Summary:
Germany has refused to deport him to Tunisia over fears he could be tortured there.
Summary:
India's fourth most valuable IT firm Wipro has reported a 20.5% year-on-year fall in net profit to â¹1,800.8 crore for the March quarter, compared to â¹2,267 crore in the same period last fiscal.
Summary:
Police in the Chinese city of Tianjin seized 600 computers used to mine Bitcoin after the local power grid reported abnormal electricity usage, state media reported.
Summary:
Gautam Gambhir has stepped down as the captain of Delhi Daredevils after losing five out of six matches in IPL 2018 so far.
Summary:
The police in United States' Detroit got 13 trucks to park under a bridge after a man threatened to commit suicide by jumping off it.
Summary:
The International Cricket Council on Wednesday retweeted an old video showing PM Narendra Modi and jailed self-styled godman Asaram at a rally with the caption, "Narayan, Narayan".
Summary:
Following the conviction of self-styled godman Asaram in a rape case, Congress on Wednesday tweeted an old video showing PM Narendra Modi sharing the stage with Asaram.
Summary:
With answers narrowed down to four, five, six or seven, Grey eliminated the possibility of 'four' as the solution.
Summary:
After self-styled godman Asaram was found guilty of raping a 16-year-old girl, the victim's father said, "We had complete faith in the judiciary and are happy that we got justice." "I also hope the witnesses who were murdered or kidnapped get justice," he added.
Summary:
Asaram has 400 ashrams across the country and world.
Summary:
Armenian Prime Minister Serzh Sargsyan resigned from the post on Monday, just 7 seven days after he was sworn-in.
This follows protests against Sargsyan who decided to take on the post after serving for over a decade as Armenia's President.
Summary:
Trump further praised his administration for putting "maximum pressure" on North Korea, particularly through the imposition of sanctions.
Summary:
Iranian President Hassan Rouhani on Wednesday called US President Donald Trump a "tradesman" who is not qualified to comment on international pacts.
Summary:
In a move aimed at reflecting Bavaria's "cultural identity and Christian-western influence", the German state has ordered all state administrative buildings to display Christian crosses at the entrance.
Summary:
US President Donald Trump and his French counterpart Emmanuel Macron on Tuesday called for a new nuclear deal with Iran.
Summary:
A customer at a US restaurant has captured the moment four servings of a flaming cheese dish triggered the sprinklers and doused people with water.
Summary:
The government in Budget 2018 had announced fixing MSPs at 1.5 times the production cost for various crops.
Summary:
Vodafone has informed the Delhi High Court that it wasn't obligated to give interconnectivity to Reliance Jio as it was providing only test services when it initially started operations in September 2016.
Summary:
Only 2.7% of Jan Dhan deposits are held by private sector banks, according to official data.
Summary:
Actress Pooja Hegde, who made her Bollywood debut with the 2016 film 'Mohenjo Daro', will star in the upcoming film 'Housefull 4'.
Summary:
Cook added they were "curious" when Australia managed to get the ball reversing while the outfield was wet with rain while English pacers could not.
Summary:
This comes after the Haryana government stated it would deduct cash prize for athletes who represent institutions such as Army and have already been awarded by them.
Summary:
The firm now manages a total of $1.7 billion across six funds and is targeting another fundraising for an extra $395 million.
Summary:
Facebook data scandal-linked firm Cambridge Analytica has said that its activities in countries including India will be investigated and reported on.
Summary:
The Smithsonian Institution, which is said to be the world's largest museum, education, and research complex has employed SoftBank Robotics' humanoid robot 'Pepper'.
Summary:
Her son said, "They took a dirty blanket and tied her forcefully with it and she has bruise marks...
Delta said it has contacted the passenger.
Summary:
A cruise ship, having a two-level electric car race track and multi-storey water slides, has entered service and is currently on its maiden voyage across the Atlantic.
Summary:
Ferrari CEO Sergio Marchionne has said the Italian sports car manufacturer has been testing a gasoline-electric hybrid car that people "could run silently".
Summary:
While daggers were made from shin bones of large flightless birds called cassowaries, researchers found human daggers served as a symbol of prestige.
Summary:
US-based scientists have discovered a gene mutation that evolved 20,000 years ago that affected mammary duct growth, providing more fat and vitamin D to infants.
Summary:
A Jodhpur court on Wednesday sentenced self-styled godman Asaram to life imprisonment after he was convicted of raping a minor girl in his ashram in 2013.
Summary:
Describing the ordeal, she said, "He locked the room from inside...started molesting me.
Summary:
OnePlus has confirmed that it will launch OnePlus 6 in India at a launch event in Mumbai on May 17.
Summary:
The official trailer of Sonam Kapoor and Kareena Kapoor starrer 'Veere Di Wedding' has been released.
Directed by Shashanka Ghosh, 'Veere Di Wedding' is scheduled to release on June 1.
Summary:
Facebook, Amazon, Netflix, and Alphabet on Tuesday together lost over $85 billion in stock value as their shares fell by at least 3%.
Summary:
Two bikers of Border Security Force motorcycle trick riding team 'Janbaz' have entered the Limca Book of Records by riding ladder-fitted motorcycles continuously for 10 hours, 34 minutes and 27 seconds.
Summary:
According to the complaint, the main accused would ask easy questions during interviews and award maximum marks to candidates in exchange for bribes.
Summary:
The man suspected of killing 10 people in a van attack in Toronto, Canada, declared himself a soldier in the "incel" rebellion on Facebook, minutes before the attack.
Summary:
Animal control officers in United States' California were called to a home to remove a rattlesnake from the backyard.
Summary:
Top seven Indian IT companies saw a 43% drop in their H-1B visa approvals between 2015 and 2017, according to a report by US think-tank National Foundation for American Policy.
Summary:
Sequoia was in talks with Zhao to invest in Binance since August 2017, while in December he was offered funding at a higher valuation by IDG Capital.
Summary:
Former PayPal CEO Bill Harris has said that world's largest cryptocurrency Bitcoin is a "colossal pump-and-dump scheme, the likes of which the world has never seen".
Summary:
Bharti Airtel's subsidiary Bharti Infratel has agreed to merge with Indus Towers, which has Vodafone and Idea as shareholders, creating a $14.6-billion company.
Summary:
The new Fugitive Economic Offenders Ordinance provides for confiscation of properties of fugitive economic offenders without conviction.
Summary:
A picture of Abhishek Bachchan and Taapsee Pannu from the sets of the upcoming film 'Manmarziyaan' has surfaced online.
Summary:
A pair of gold earrings from the collection of Maharani Jind Kaur, the mother of the last Sikh ruler of Punjab, has fetched a record price of ã175,000 (â¹1.6 crore) in London.
Summary:
Facebook has announced that new third-party apps will not have permission to publish posts as the logged in user.
Summary:
A Russian airline is letting customers choose the gender of the passengers they wish to be seated next to.
So, the company allows customers to...
Summary:
The BJP has the highest number of MPs and MLAs, 27, who have declared cases related to hate speech against them, according to an Association for Democratic Reforms report.
Summary:
Mumbai-based companion robot-making startup Emotix has raised $2 million from IDG Ventures India and YourNest.
Summary:
The "promiscuity" has made 15% of the population as hybrids, which is very unusual, said Detwiler.
Summary:
The buses launched under the Bangladesh-Bhutan-India-Nepal Motor Vehicles Agreement signed in June 2015, started the journey from Dhaka with 49 delegates, including 12 Indian officials.
Summary:
A 16-year-old girl in Uttar Pradesh has lodged an FIR against her father, stepmother and aunt for allegedly selling her to a man for â¹3 lakh when she was 8 years old.
Summary:
The Uttar Pradesh Tourism department on Wednesday launched its first 24x7 helpline for tourists.
Summary:
Summary:
The Taliban further said the presence of US bases was key to prolonging the ongoing war.
Summary:
Press freedom around the world is under threat from the US, China and Russia, media freedom organisation Reporters Without Borders said on Wednesday.
Summary:
"These mosquitoes look horrendous, but do not feed on blood.
Summary:
Twenty-seven-year-old Inuka had been suffering from arthritis, dental issues, and ear infections with weakening limbs hindering its mobility.
Summary:
Facebook-owned WhatsApp has announced that in coming weeks, it will allow all its users around the world to download and see the data that it collects on them.
Summary:
The paper is connected to a sensor board which allows touch from a finger, a pen or a stylus to be digitised.
Summary:
Facebook has been hosting accounts which advertise stolen information like addresses, credit card numbers, and social security numbers for years, according to a report.
Summary:
Japan's SoftBank reportedly plans to shift stakes worth over $20 billion in ride-hailing companies including Uber, Ola, Grab and Didi Chuxing into its Vision Fund.
Summary:
Senior Supreme Court judges Ranjan Gogoi and Madan Lokur have written to Chief Justice of India Dipak Misra, asking him to call for a full court to discuss the apex court's "institutional issues" and "future".
Summary:
A Kathua court on Tuesday denied bail to the juvenile who is among eight people accused in the Kathua rape and murder case.
Summary:
Vice President and Rajya Sabha Chairman Venkaiah Naidu recently paid a surprise visit to the Upper House Secretariat and ordered introduction of biometric attendance system after finding some staff members missing.
Summary:
Senior police officer Ajay Pal Lamba, who was given the task to probe Asaram rape case in 2013, received over 2,000 threat letters and phone calls during the course of investigation.
Summary:
The 73-day Doklam standoff between India and China happened due to "lack of mutual trust" between both the countries, China's Foreign Ministry said on Tuesday.
Summary:
The child's father rushed her to the hospital after noticing that she was bleeding and in pain.
Summary:
The Enforcement Directorate has arrested suspected hawala operator Farooq Shaikh in connection with a â¹2,253 crore money laundering case involving 13 firms.
Summary:
Kamal Haasan on Tuesday announced that his party Makkal Needhi Maiam will be contesting the upcoming Tamil Nadu local body elections, the party's first elections.
Summary:
Television actress Amita Udgata, who was last seen in the show 'Kuch Rang Pyar Ke Aise Bhi' passed away on Tuesday night due to lung failure.
Summary:
Addressing the issue of nepotism in Bollywood, Rishi Kapoor said, "The Kapoor surname or 'Bobby', which I got because my work was appreciated in 'Mera Naam Joker', didn't make me an overnight star." "Perhaps I didn't sleep on the road...
Summary:
Actor Rajkummar Rao has said it is a big responsibility if people term him as a "game-changer".
"I am really thankful and excited because game-changer is a big term...
Summary:
Deepika Padukone, on being asked about a film or character which affected her, said, "'Cocktail' is a film that changed a lot of things for me." She added, "It came to me at a point...when I was coming into my own." "Playing [the character 'Veronica'] opened me up.
Summary:
A 53-year-old man suffered head injuries and is critical after clashes broke out between Roma and Liverpool fans ahead of their Champions League semi-final tie.
Summary:
Amsterdam-based Explicit and I amsterdam, along with London-based Gumdrop have developed a shoe sole which is made from recycled chewing gum.
Summary:
Internet company Yahoo has been fined $35 million for failing to disclose a data breach to its investors, the US Securities and Exchange Commission said on Tuesday.
Summary:
A passenger, who was believed to be drunk, was offloaded from a Jet Airways Mumbai-Kolkata flight on Tuesday after he allegedly started arguing with the crew during the pre-takeoff safety demonstration.
Summary:
Delhi-based startup LoveRollers offers sex furniture which it claims allows couples to perform over 100 sex positions and help them in conceiving a baby.
Summary:
A video of US President Donald Trump attempting to hold his wife Melania's hand has gone viral.
Summary:
Chechen leader Ramzan Kadyrov on Tuesday said that men living in Russia's predominantly Muslim region can take as many as four wives, even though polygamy is not legally recognised in the country.
Summary:
US President Donald Trump on Tuesday brushed off dandruff from his French counterpart Emmanuel Macron's jacket as the two leaders stood for a photo op.
Summary:
Jews in Germany have been urged to not wear skull caps following a string of anti-Semitic attacks in the country.
Summary:
A Jodhpur court on Wednesday convicted self-styled godman Asaram of raping a 16-year-old girl in his ashram, five years after the charges were levelled against him.
Summary:
On April 25, 2004, Zimbabwe were dismissed for the lowest-ever ODI total of 35 in 18 overs against Sri Lanka.
Summary:
Hundreds of Amazon employees on Tuesday protested against an award ceremony for the company's CEO Jeff Bezos in Berlin, where he arrived to collect the prize.
Summary:
Amazon has been beta testing the new service in California and Washington state and will launch the service across 37 US cities.
Summary:
WhatsApp also announced that users will soon be able to download all the data it collects on the platform.
Summary:
In a first, the Calcutta High Court has directed the State Election Commission to treat nine Independent candidates' nomination papers filed on WhatsApp as valid to contest the upcoming Panchayat elections in West Bengal.
Summary:
Summary:
To explain the absence of alien encounters, a German astrophysicist has suggested they may be trapped by the intense gravity of their hypothetical home planets, 10 times more massive than Earth.
Summary:
The verdict for a rape case against self-styled godman Asaram Bapu will be delivered in a court built inside Jodhpur Central Jail in 1985 to try Sikh militants after Operation Blue Star.
Summary:
The couple then attacked the victim's companion by punching him in the face before fleeing the train.
Summary:
A 24-year-old American woman has been sentenced to 18 months in prison after submitting a borrowed urine sample to pass a drug test that instead tested positive for drugs.
Summary:
Talking about being looked upon as a 'glamorous heroine', Katrina Kaif said, "I disagree hugely with that tag." "You don't need to be slotted into a category just because certain colleagues of yours have done particular kind of films while you haven't," she added.
Summary:
Photo-sharing app Snapchat has said it is testing a change that puts the users' friends' Stories in the Discover section along with content from brands and celebrities.
Summary:
A passenger has been arrested at the Mumbai airport for allegedly carrying undeclared foreign currency equivalent to more than â¹30 lakh.
Summary:
Unclaimed gold worth â¹2.6 crore was recovered from a Dubai-Mumbai Jet Airways aircraft after it landed at the Mumbai airport on Tuesday.
Summary:
Karnataka BJP chief BS Yeddyurappa would not last as Chief Minister even for three months if the BJP comes to power, actor Prakash Raj has said.
Summary:
West Bengal CM Mamata Banerjee said she had told Congress President Rahul Gandhi and Sonia Gandhi not to move an impeachment motion against Chief Justice Dipak Misra.
Summary:
After former Karnataka CM and BJP's CM candidate BS Yeddyurappa announced that his son BY Vijayendra will not contest the upcoming state elections, his supporters pelted stones at the party's Mysuru office.
Summary:
YouTuber Tom Scott has shared a video where he is seen sending a camera-fitted boxed garlic bread to an altitude of 35 km using a weather balloon.
Summary:
Summary:
A school in Madhya Pradesh's Damoh has been allegedly storing Mid Day Meal food and utensils in toilets and preparing the food outside them.
Summary:
The Home Ministry has asked Gujarat, Haryana, and Rajasthan governments to tighten security in sensitive areas ahead of the verdict in the rape case against self-styled godman Asaram Bapu.
Summary:
The Indian Air Force conducted 11,000 sorties along China and Pakistan borders by combat, transport, and rotary wing aircraft during Gaganshakti, a mega military exercise.
Summary:
He was handed over to the Indian authorities and returned to Amritsar on Tuesday.
Summary:
Calling for a social movement against rapes, PM Narendra Modi on Tuesday said families will have to make their sons responsible and enhance the honour and respect of their daughters.
Summary:
The migrants will have to keep renewing their residency permits every 60 days, the government further said.
Summary:
At least 10 people were killed and around 40 others were injured in a blaze at an oil well in Indonesia's Aceh province on Wednesday.
Summary:
Khurshid had later said he was "defending" the Congress.
Summary:
After Congress President Rahul Gandhi dared PM Narendra Modi to a Lok Sabha debate, BJP tweeted a video of Rahul making mistakes during Parliament speeches.
Summary:
The drugs were found after the DRI intercepted a cargo vehicle based on intelligence reports.
Summary:
Over 5,000 farmers in Gujarat's Bhavnagar have sought the "right to die" as the state government and the Gujarat Power Corporation Limited are trying to forcibly acquire their land, a farmers' body member said.
Summary:
US President Donald Trump has said that Iran will "pay a price like few countries have ever paid" if it threatens the US in any way.
Summary:
The Philippines apologised to Kuwait on Tuesday after its embassy rescued several Filipino domestic workers from their employers' homes.
Summary:
Union Transport Minister Nitin Gadkari has said the government is planning to raise â¹1.5 lakh crore by monetising 100 NHAI-owned National Highways.
Summary:
India's largest telecom operator Airtel on Tuesday posted a 78% fall in profit at â¹83 crore for the March quarter.
Summary:
The US is planning to revoke work permits for spouses of H-1B visa holders waiting for green cards.
Summary:
Actress Neelima Azim, while talking about her son Ishaan Khatter's debut film 'Beyond The Clouds', said, "He has arrived like no newcomer has." "Look at the kind of write-ups and accolades he has got.
Neelima further said, "He is brilliant in the film.
Summary:
In a recent episode of the show, which is currently in its third season, Supriya was seen paying a tribute to Sridevi.
Summary:
Mumbai Indians were dismissed for their joint-lowest IPL total of 87 as SunRisers Hyderabad registered a 31-run victory in the IPL 2018 on Tuesday.
Summary:
Wishing cricket legend Sachin Tendulkar on the occasion of his 45th birthday on Tuesday, Indian cricketer Rohit Sharma wrote, "Inspirational.
Many happy returns to the greatest." "Woh sirf ek Cricketer nahi, Duniya hai Meri!
Meanwhile, cricketer-turned-commentator Mohammad Kaif tweeted, "What a man, your glory will be unsurpassed."
Summary:
Reacting to questions regarding the number of 'ageing' players in Chennai Super Kings, coach Stephen Fleming said, "They [the players] are 35-36, not 55-56".
Summary:
Summary:
Sachin Tendulkar wanted to be a fast bowler as a youngster but was turned down by the then-MRF Pace Foundation director Dennis Lillee.
Summary:
The entire Wankhede Stadium crowd watching the IPL match between Mumbai Indians and SunRisers Hyderabad on Tuesday sang 'Happy Birthday' for Sachin Tendulkar on the occasion of his 45th birthday.
Summary:
England spinner Monty Panesar, who turns 36 today, is the only bowler to get ex-Pakistan captain Inzamam-ul-Haq out hit-wicket in Test cricket.
Summary:
Real Madrid forward Cristiano Ronaldo sent a signed Real Madrid jersey with his name and number to Manchester United's 20-year-old forward Marcus Rashford with the message "keep up the good work".
Summary:
Liverpool's Mohamed Salah scored twice and set up another two goals in his side's 5-2 thrashing of his former club Roma in their UCL semifinal first-leg on Wednesday.
Summary:
He served as CM from December 1994 till May 1996 when he was appointed PM to lead a 13-party coalition of United Front with outside support from Congress.
Summary:
Harvard and Cornell University researchers have documented the "dance routine" of Vogelkop superb bird-of-paradise, which helped confirm it as a new species.
Summary:
Police suspect that the woman, believed to be in her twenties, was killed at another location and her body was dumped at the spot where it was found.
Summary:
The Supreme Court on Tuesday stayed all construction activities taking place in over 1,700 unauthorised colonies in Delhi.
Summary:
A 60-year-old woman caretaker from Mumbai has been arrested for allegedly sexually assaulting a four-year-old female student in a school's washroom, the police said.
Summary:
French President Emmanuel Macron has said that the US and allies should not leave Syria as soon as the war ends and urged them to build a "new" Syria after the end of the conflict.
Summary:
Markets regulator SEBI has said over 1,800 entities failed to pay penalties imposed by it till last month.
Summary:
She meant to say it takes place in all industries, why is Bollywood being singled out," said Richa.
Summary:
After Chowdhury laughed during PM Modi's Parliament address earlier this year, he said he hadn't heard such laughter since the "Ramayan serial".
Summary:
Teotia could not continue serving in the Indian Navy due to impairments caused by the injuries.
Summary:
As many as six lakh Class 12 students across the country will appear for the CBSE retest for Economics on Wednesday.
Summary:
Asserting that the government "feels the pulse" of the nation, PM Narendra Modi on Tuesday said, "We have made changes in POCSO act.
Summary:
Five Assistant Sub-Inspectors (ASIs) of the Delhi Police have caught nearly 500 proclaimed offenders in 2017.
Summary:
Over 5,500 dead people were named in the voter list of Madhya Pradesh's Kolaras assembly constituency, a letter by the state's Chief Electoral Officer informed the Election Commission.
Summary:
The government has said that agriculture credit disbursal target of â¹10 lakh crore was achieved in 2017-18.
Summary:
While one bomber detonated his explosives near a police truck, the other two bombers tried to attack a paramilitary checkpoint.
Summary:
A video showing the confrontation between a police officer and the man suspected of ploughing a van into pedestrians in Toronto has surfaced online.
Summary:
The government has reportedly held preliminary meetings on proposed merger process of three state-owned general insurers namely Oriental Insurance Company, National Insurance Company, and United India Insurance Company.
Summary:
The Enforcement Directorate has frozen land, buildings, plant and machinery valued at â¹48 crore belonging to Chennai-based Kanishk Gold under the Prevention of Money Laundering Act. It was alleged that the jewellery chain cheated a 14-bank consortium to the tune of â¹824 crore.
Summary:
Summary:
Actress Bhumi Pednekar, who debuted in 2015 with 'Dum Laga Ke Haisha', has said that her career "technically started just eight months ago".
Summary:
"If doosra bowled by an off-spinner is seen as a weapon, then him bowling a leg-break...shouldn't be considered his weakness.
Summary:
Sunrisers Hyderabad's Australian pacer Billy Stanlake, who bowled this IPL's fastest delivery at 151.38 kmph, has been ruled out of the tournament due to an injury.
Summary:
Former Indian cricketer Sachin Tendulkar, who is celebrating his 45th birthday today, recalled the 'happy dents' left on his car's roof by celebrating fans following the World Cup 2011 triumph.
Summary:
Sachin, who hit 143 runs in his 'desert storm' knock in the match, said it was like being in a Hollywood movie.
Summary:
Former JNU Students Union President Kanhaiya Kumar has dismissed a claim circulating on social media that he failed his PhD exam for the 11th time.
Summary:
Kerala CM Pinarayi Vijayan on Tuesday said that action has been initiated against the police officials accused in the alleged custodial death of a 26-year-old man in Ernakulam.
Summary:
A 48-year-old farmer from Maharashtra's Indapur allegedly committed suicide by jumping into a well and named state ministers Vijay Shivtare and Girish Bapat in the suicide note recovered from his pocket.
Summary:
The Kerala Police has detained a woman named PK Soumya after suspicious deaths of her two daughters and parents.
Summary:
While 31 Naxals were killed during the encounter on Sunday, another six were killed on Monday.
Summary:
He further said Chechnya had imposed sanctions on Trump and Merkel.
Summary:
Nepalese troops serving the UN mission in South Sudan have been accused of raping two teenage girls in the country, a spokesperson for the world body said.
Summary:
The French National Assembly has passed an immigration reform bill that shortens the asylum application deadline from 120 to 90 days.
Summary:
The list includes Adhyatmik Vishwavidyalaya, United Nations University, and Raja Arabic University.
Summary:
A fire broke out on the sets of Akshay Kumar starrer 'Kesari' in Maharashtra's Wai district on Tuesday, reportedly gutting the entire set.
Summary:
Sachin Tendulkar, who turned 45 today, is the only player to have twice defended six or fewer runs in an ODI's final over.
Summary:
India will reportedly face Pakistan in the 2019 World Cup on June 16 and begin their campaign against South Africa on June 4.
Summary:
The Congress has said it completely disagrees with senior party leader Salman Khurshid's statement that it has Muslim blood on its hands, adding it is the only party that worked towards an egalitarian society.
Summary:
Following incidents of violence during the filing of nominations for the West Bengal Panchayat polls, state Congress chief Adhir Chowdhury demanded President's rule in the state.
Summary:
Doctors reported two similar cases in Australia, with one also having caught the bug from Southeast Asia.
Summary:
The head of UK's Diplomatic Service, Simon McDonald, has apologised for referring to the Golden Temple as the "Golden Mosque".
Summary:
After incidents of leaks, Railways is conducting the exam online at 300 centres.
Summary:
Gujarat CID-Crime branch on Monday arrested Amreli's Superintendent of Police (SP) Jagdish Patel for his alleged role in kidnapping Surat-based builder Shailesh Bhatt and extorting Bitcoins worth â¹12 crore from him.
Summary:
Congress leader Salman Khurshid on Monday said that the party has Muslims' blood on its hands.
Summary:
The UK has been powered without coal for three days in a row, setting a new record by passing the 72-hour mark on Tuesday morning.
Summary:
The government of Finland has decided not to extend a trial scheme under which a basic income was provided to its citizens since January 2017.
Summary:
A runner at the London Marathon wearing an inflatable T-rex costume proposed to his girlfriend at the Sunday's London marathon.
This year's London Marathon, which was the hottest in the history, witnessed several runners in costumes.
Summary:
The bank's Net Interest Income during the quarter marginally lowered to â¹453 crore.
Summary:
Talking about rape and murder cases of young girls, actor Naseeruddin Shah said, "Rape is not a new phenomenon, such horrors have always happened.
Summary:
Former England cricket team captain Kevin Pietersen took to Twitter to slam Sky Sports' commentators for cashing in on the Indian Premier League despite being against the tournament initially.
Summary:
Summary:
Pakistan's Commonwealth Games 2018 gold winner Muhammad Inam has said that he wants to train with Indian wrestler Sushil Kumar.
Summary:
"The worst thing's that instead of sending a message...that...colour or texture of their skin doesn't matter, we're promoting...objectification," she wrote.
Summary:
Sri Lankan umpire and former player Kumar Dharmasena, who is celebrating his 47th birthday today, is the only person in cricket to have played and officiated in a World Cup final.
Summary:
Top players and officials in the Italian football league Serie A wore red paints on their faces during their matches in order to raise awareness about the growing number of cases of violence against women.
Summary:
Claiming that NDA will defeat the Congress in the 2019 elections, union minister Ashwini Choubey on Tuesday said Congress will not be able to find anyone to carry it to a graveyard after the defeat.
Summary:
Narrow roads, increasing traffic violations, and speeding vehicles were cited as reasons, with a total of 3,975 accidents registered last year.
Summary:
The woman had come to the court after her husband filed a petition to reconcile as she had left him a few months after marriage.
Summary:
Around 300 Special Police Officers (SPOs) in Assam threatened to commit mass suicide on Monday demanding the government reinstate them into service.
Summary:
Airtel had assured the court that its advertisements would carry disclaimer after Jio alleged the ads were "misleading".
Summary:
US-based Johns Hopkins Hospital has successfully performed the world's first transplant of the entire penis, scrotum and partial abdominal wall.
Summary:
The telescope was named after American astronomer Edwin Hubble who confirmed the universe is "expanding" after Big Bang.
Summary:
A new trailer of Hollywood actor Tom Hardy starrer superhero film 'Venom' has been released.
Summary:
Researchers from the Massachusetts Institute of Technology have developed a device which allows users to control their sleep.
Summary:
Further, less than 1% of high-performance startup firms were founded by 20-year-olds.
Summary:
In an attempt to develop male contraceptives for humans, American researchers have tested a compound called EP055, which turns-off the sperm's ability to swim after 30 hours of infusion.
Summary:
The family of a patient admitted to a private hospital in Maharashtra's Nashik have alleged that the woman died due to breathlessness caused by the presence of a cockroach in the ventilator.
Summary:
ISIS leader Abu Bakr al-Baghdadi proclaimed the creation of a "caliphate" from the mosque in 2014.
Summary:
Mukesh Ambani-led Reliance Industries (RIL) added â¹22,000 crore in market value on Tuesday as Reliance Jio topped monthly subscriber addition in February.
Summary:
Essar Group has sold Equinox Business Parks, its commercial property in Mumbai's Bandra-Kurla Complex, to Brookfield Asset Management for â¹2,400 crore.
Summary:
Prime Minister's Economic Advisory Council Chairperson Bibek Debroy has said Artificial Intelligence (AI) won't lead to a situation where there will be "overall less jobs" in India.
Summary:
Actor Ranbir Kapoor, who is portraying Sanjay Dutt in the latter's biopic 'Sanju', has said that he would not mind if anyone wants to make a biopic on him, but it won't work or have a message to convey.
It might be an existential kind of picture," said Ranbir.
Summary:
According to reports, actress Kangana Ranaut will walk the red carpet at the Cannes Film Festival 2018, marking her first ever appearance at the event.
Summary:
Talking about being underpaid for his projects, actor Varun Dhawan said that he believes, going by the effort that he puts in a film, he is "worth a lot".
Summary:
Earlier, Kambli had expressed his frustration over commentators not talking about anything other than Samson's performances.
Summary:
Jack McLinden, a 14-year-old Everton FC fan suffering from reduced mobility, acted as a remote match-day mascot with the help of a telepresence robot during Everton's match against Newcastle United on Monday.
Summary:
Former Indian cricketer Virender Sehwag wished ICC umpire Kumar Dharmasena on his birthday with a tweet that seemed to mock the umpire over his DRS reviews.
Summary:
On the occasion of Sachin Tendulkar and Damien Fleming's birthdays, Cricket Australia shared a video of the former batsman getting clean bowled by the former Australian pacer.
Summary:
Ex-cricketer Vinod Kambli took to Twitter to share a video of himself singing 'Baar Baar Din Ye Aaye' for his childhood friend and cricket legend Sachin Tendulkar on the occasion of his 45th birthday.
Summary:
Gurugram-based consumer electronics company Micromax's Co-founder Rajesh Agarwal has said the company is "looking into electric vehicles, but it's still early days.
Summary:
A British couple spent nearly ã1000 (over â¹92,000) to convert a van into a mobile holiday home.
Summary:
The Ultra Long Range version of the Airbus' A350 XWB, which has a range of nearly 18,000 km and can fly for 20 hours non-stop, has successfully completed its first flight.
Summary:
Southwest Airlines on Sunday said it had cancelled about 40 flights a day as its engines underwent voluntary inspections.
Summary:
Two policemen arrested in connection with Kathua rape case have moved the Jammu and Kashmir High Court seeking a fresh CBI probe into the matter.
Summary:
A CCTV footage has revealed that a 56-year-old man standing on a platform was pushed before a local train by two people in Mumbai.
Summary:
Asserting that his Russian counterpart Vladimir Putin is a "strong man" who uses his opponents' weaknesses, French President Emmanuel Macron has said countries should never be "weak" while dealing with him.
Summary:
Over 1.84 crore bills were generated on the e-way portal till April 22.
Summary:
Soviet cosmonaut Vladimir Komarov, who died while re-entering Earth on April 24, 1967, was aware of 203 structural problems in Soyuz-1 capsule.
Soyuz-1 was inspected by cosmonaut Yuri Gagarin, serving as the mission's backup pilot.
Summary:
Marvel Comics creator Stan Lee has been accused of sexual harassment by a massage therapist.
Summary:
Executives from five major consumer brands have claimed that Alibaba stopped their online and offline traffic on its Tmall platform after they refused to enter into exclusive partnerships with the company.
Summary:
Japanese conglomerate SoftBank will sell a substantial part of its 20% stake in India's home-grown e-commerce startup Flipkart to US-based retail giant Walmart for $4 billion, according to reports.
Summary:
Speaking about the practice of casting couch, Congress leader and former Union Minister Renuka Chowdhury said, "It happens everywhere...Don't imagine that Parliament or other work places are immune to it." She added India should join the #MeToo campaign over the issue.
Summary:
Replying to a plea seeking an alternative to hanging as a method of execution, the Centre told the Supreme Court that hanging is safer and quicker than lethal injections or firing squads.
Summary:
While hearing a case over ownership of a monkey's selfie, a US court has ruled that monkeys lack standing to sue for copyright protection and an animal rights group cannot act as legal guardian in such matters.
Summary:
Two suspects have been arrested in connection with the murders, officials further said.
Summary:
Razali Bin Mohamad Habidin, who started working there over 20 years ago, is called "the bird whisperer" as staffers believe he has a way of communicating with birds.
Summary:
The world's 266 million migrant workers from middle and low-income countries sent home a record $466 billion last year, according to the World Bank.
Summary:
Real estate billionaire Surendra Hiranandani, Co-founder of the Hiranandani Group, has renounced his Indian citizenship to become a citizen of Cyprus.
Hiranandani added that his son Harsh continues to be a citizen of India.
Summary:
The Directorate General of Goods and Services Tax Intelligence has sought tax on these services for the last 5 years.
Summary:
US carrier United Airlines' CEO Oscar Munoz has chosen not to take a bonus for 2017 to send a message of "accountability", while the company's Chairman Robert Milton won't seek re-election.
Summary:
The Enforcement Directorate has attached assets worth â¹1,122 crore of Vadodara-based Diamond Power Infrastructure in connection with its money laundering probe in a bank fraud case.
Summary:
Actress Sri Reddy, while reacting to choreographer Saroj Khan's comments on casting couch in Bollywood, said, "I lost respect for you Saroj ma'am." "Being an elder you should give a good path to young actresses," she added.
Summary:
Filmmaker Shoojit Sircar took to Twitter to share a photo of actor Varun Dhawan on the occasion of his 31st birthday today.
"Happy Birthday Varun.
Summary:
Along with a photo of the duo, Sehwag wrote, "Woh sirf ek Cricketer nahi, Duniya hai Meri!
Summary:
Facebook said the document highlights the company's internal guidelines that are used to enforce its standards.
Summary:
Prime Minister's Economic Advisory Council Chairman Bibek Debroy has said, "India shouldn't be concerned with AI (artificial intelligence) and job losses." He also said with technological change "there will always be some jobs lost, but it doesn't mean overall job losses".
Summary:
After launching the Apple Watch Series 3 late last year, the company is set to launch the cellular variant of the Watch in India on May 11.
Summary:
Technology giant Google has rolled out a feature in India which will allow users to look for employment opportunities in Search.
Summary:
The acquisition would give Apple access to its competitors' user data, allowing it to target them, the EU said.
Summary:
Karnataka Chief Minister Siddaramaiah on Tuesday said that he is "least bothered" about who will contest against him in the upcoming state Assembly elections.
Summary:
Digital payments startup Paytm is in advanced talks to buy Chennai-based ticketing startup TicketNew for $30-$40 million, as per reports.
Summary:
The research found zero-calorie artificial sweeteners led to negative changes in fat and energy metabolism in rats.
Summary:
Police have booked unknown persons for allegedly sexually assaulting a model in Indore while she was riding her scooter on Monday.
Summary:
The official teaser of 'Sanju', the biopic on actor Sanjay Dutt, starring Ranbir Kapoor, has been released.
Summary:
"I was tired but I had to give a gift to wife on my birthday," said Sachin after the final.
Summary:
Facebook has said it removed most of the 19 lakh pieces of ISIS and al-Qaeda content and added a warning to a small portion that was shared for informational purposes in Q1 2018.
Summary:
An American Airlines passenger was tased by the police 10 times after he said, "Tase me, and you'll see what happens." The man had allegedly touched a woman without her consent and insulted her, following which a fight broke out.
Summary:
Analysing fossilised footprints of human ancestors in Tanzania, American researchers have discovered that human-like upright bipedalism evolved about 3.6 million years ago whereas modern humans emerged roughly 200,000-300,000 years ago.
Summary:
UK-based astronomers have identified a planet that absorbs 97-99% of incoming light.
Summary:
There have been multiple instances of ATMs dispensing such notes.
Summary:
Summary:
Acquitting five accused in the 2007 Mecca Masjid blast case earlier this month, the National Investigation Agency court observed, "Any person associated with RSS is not communal and not anti-social." The court also maintained that accused Swami Aseemanand's confessional statement was recorded in police custody and was not voluntary.
Summary:
No casualties or damages were reported on the Indian side in the firing and shelling by Pakistan.
Summary:
Ahead of the meeting between Prime Minister Narendra Modi and Chinese President Xi Jinping, Chinese state media on Monday said that hostility towards India within China is being replaced by hope for friendly ties.
Summary:
A black woman was left topless after she was forced to the ground by police officers during an arrest at a restaurant in Alabama, US.
Summary:
A blaze at a karaoke TV lounge in the Chinese city of Qingyuan killed 18 people and injured five others on Tuesday.
Summary:
A father in Vietnam helped his young son remove a loose tooth with a crossbow.
Summary:
A 34-year-old American woman has spent $40,000 (â¹26 lakh) on surgical procedures to look like a Barbie doll.
Summary:
Following consumer complaints, Telecom regulator TRAI has directed Aircel to refund the unspent balance of prepaid subscribers and security deposit of postpaid subscribers who ported out.
Summary:
Varun Dhawan has revealed his father, filmmaker David Dhawan, scolded him while he was shooting for his debut film 'Student of The Year' and said his acting was "horrible".
Summary:
Summary:
Uber is planning to restrict drivers from accessing riders' exact pickup and drop-off locations in the trip history in a pilot programme.
Summary:
Several London landmarks, including the Tower Bridge and the Golden Jubilee Bridges, were lit up in blue to mark the birth of Prince William and Kate Middleton's third baby.
Summary:
Uttar Pradesh Chief Minister Yogi Adityanath on Monday had dinner with a Dalit family at their house in Pratapgarh.
Summary:
Two journalists working with AIADMK's newspaper 'Namadhu Amma' have been sacked after an article praising PM Narendra Modi was published in it.
Summary:
However, in the four-stranded 'knot' of i-motif, C letters on the same strand of DNA bind to each other, said researchers.
Summary:
Talking about the Ayodhya dispute, Vishva Hindu Parishad President Vishnu Sadashiv Kokje said the issue should neither be politicised nor should "political mileage" be explored in Lord Ram's name.
The temple is an issue of faith.
Summary:
Instead of assigning holiday homework to students, a school in Coimbatore has asked parents to spend time with their children through activities such as having meals together, sharing stories, and visiting neighbours.
Summary:
Summary:
Summary:
Commenting on the prevalence of casting couch in Bollywood, choreographer Saroj Khan said, "It provides livelihood at least.
Summary:
Following WeWork BKC and WeWork Marol this new building in Vikhroli, opening May 2nd, will be WeWork's third location in Mumbai.
Summary:
Co-working giant, WeWork, is all set to open their newest workspace - WeWork Hebbal, located on Bellary Road.
Summary:
Sachin batted for 160 minutes, scoring match-winning 97 runs off 120 balls.
Summary:
For the first time, Google's parent company Alphabet has revealed its startup investments over the years, which are currently worth $11 billion, based on company estimates.
Summary:
YouTube has revealed that it removed 8.3 million videos in the last three months of 2017, as per its quarterly moderation report.
Summary:
Addressing a gathering during Congress' 'Save the Constitution' campaign, party President Rahul Gandhi said PM Narendra Modi won't be able to speak in front of him.
Summary:
BJP Spokesperson Sambit Patra took a jibe at Congress President Rahul Gandhi, saying, "You cannot write two lines without looking at the mobile phone.
Summary:
UK-based researchers have created graphene-reinforced concrete which drastically reduced the carbon footprint of conventional concrete production methods.
Summary:
Astronomers using the Gemini North telescope in Hawaii have confirmed the presence of hydrogen sulphide gas over planet Uranus that is responsible for giving rotten eggs their pungent smell.
Summary:
During a routine meeting with Supreme Court judges, Chief Justice of India Dipak Misra on Monday said, "I am doing my best".
Summary:
Madhya Pradesh Home Minister Bhupendra Singh on Tuesday said that pornography is the reason behind rising child rape and molestation cases.
Summary:
A 6-year-old girl, who was raped and abandoned by her neighbour in a school in Odisha last week, has slipped into coma.
Summary:
Prime Minister Narendra Modi will launch the Rashtriya Gramin Swaraj Abhiyan from Madhya Pradesh's Mandla today.
Summary:
Talking about India remaining backward on the Human Development Index, NITI Aayog CEO Amitabh Kant has said that states like Bihar, Uttar Pradesh, Chhattisgarh, Madhya Pradesh, and Rajasthan are holding India back.
Summary:
He reportedly told police he was an alcoholic, and had splurged most of the money on his girlfriend, who works at a bar.
Summary:
"Shahid is doing a sports-based film...He [will play] a boxer who emerges triumphant against all odds in his life," reports stated.
Summary:
A Twitter user has shared a picture of a note that an Uber driver in London shares with his passengers.
Summary:
Amazon is reportedly working on domestic household robots under the codename 'Vesta'.
Summary:
Ahead of Karnataka Assembly elections, CM Siddaramaiah on Monday dismissed reports of Congress planning a post-poll alliance with the Janata Dal (Secular) in the event of a hung assembly.
Summary:
After Vice President Venkaiah Naidu rejected the impeachment motion filed by Opposition parties against CJI Dipak Misra, Union Minister Ananth Kumar said, "Congress has no right to question Constitution and democracy." "They haven't understood the Constitution even after 70 years of Independence," he added.
Summary:
Pitstop, which also has an office in Delhi, provides maintenance services for cars and also offers emergency car care.
Summary:
Lalit hotels owner Keshav Suri has moved the Supreme Court against Section 377, which criminalises homosexuality.
Summary:
A 1998 Coimbatore blasts case convict has been arrested after he was heard allegedly planning to kill PM Narendra Modi in a recorded telephonic conversation.
Summary:
The girl was spotted on Monday by some locals, who rushed her to a nearby hospital.
Summary:
The accused had offered her a lift when she missed her school bus, following which she was confined in the car for 11 hours and dumped on a secluded road.
Summary:
As many as 3,000 homeless people were given ice cream on Monday to mark Pope Francis' name day, the feast of Saint George.
Summary:
At least 10 people were killed and 15 others were injured after a van ploughed into pedestrians in Toronto, Canada, on Monday.
Summary:
Sachin Tendulkar once fielded for Pakistan that was playing a festival match against India in Mumbai in 1987, two years before his international debut.
Summary:
Google has posted $30.9 billion in revenue for the first quarter of 2018, as compared to $24.6 billion in the same quarter last year.
Summary:
Ali Zafar has sent a legal notice to Pakistani singer-actress Meesha Shafi in response to the sexual harassment allegations against him.
Summary:
Former Pakistani hockey player Mansoor Ahmed has reached out to Indian government seeking a heart transplant.
Now I need a heart transplant...for that I need India's support," he said.
Summary:
BCCI's acting secretary Amitabh Choudhary on Monday confirmed that one of the two Tests against the Windies, to be hosted in India later this year, will be a day-night Test.
Summary:
Google CEO Sundar Pichai will receive a payout of about $380 million later this week as the company's 353,939 restricted shares which he owns will vest.
Summary:
The common thing among Prime Minister Narendra Modi, PNB scam-accused Nirav Modi and former IPL Chairman Lalit Modi is that they have looted the country, CPI(M) General Secretary Sitaram Yechury has alleged.
Summary:
The startup confirmed that Amazon's investment was an extension of its $45 million Series C round which brings the total equity raised over the past 12 months to $67 million.
Summary:
Uber rival Careem, a ride-hail startup based in Dubai, has revealed a system breach which compromised the data of 14 million users.
Summary:
"NASA represents the best of the United States of America," said Bridenstine while swearing-in.
Summary:
Speaking at 'Living History' convention in Agra, ex-Afghanistan President Hamid Karzai warned India against its growing relationship with the US by singing 'Babuji dheere chalna, bade dhokhe hain iss raah mein'.
Summary:
The Health Ministry had recently posted an image which showed a vegetarian diet as healthy against a non-vegetarian diet.
The image showed outlines of two women, one overweight and the other slim, depicting food items each consumes.
Summary:
Replying to an RTI query on when â¹15 lakh will be deposited in every citizen's bank account as promised by PM Narendra Modi, the PMO said the date cannot be considered "information" under RTI act.
Summary:
The Islamic State has beheaded three brothers, all working in the medical profession, in Afghanistan's eastern province of Nangarhar, officials said on Monday.
Summary:
Following the van attack that killed at least 10 people in Toronto, Canada, city police officials said that the actions "definitely looked deliberate".
Summary:
While reports said only police were armed in the area, it wasn't clear who fired the shot.
Summary:
Neil Nitin Mukesh took to Instagram to announce his wife Rukmini Sahay is pregnant with their first child.
Summary:
Actor Dwayne Johnson's girlfriend Lauren Hashian gave birth to a baby girl on Monday.
Summary:
Talking about what she looks forward to at her wedding, Sonam Kapoor said she would rather have a wedding at home than anywhere else.
Summary:
Seventeen-year-old spinner Mujeeb Ur Rahman defended 17 runs off the last over to help Kings XI Punjab defeat Delhi Daredevils in the Indian Premier League 2018 on Monday.
Summary:
Talking about the 2019 World Cup, South Africa and RCB's AB de Villiers said winning the World Cup is not his ultimate dream anymore.
Four-time semi-finalists South Africa have never reached World Cup final.
Summary:
Former Indian cricketer Sachin Tendulkar has said that he will share a bottle of champagne with Virat Kohli if the latter breaks his record of 49 ODI hundreds.
Summary:
Slamming the 'Save the Constitution' campaign launched by Congress President Rahul Gandhi, BJP President Amit Shah has said it is nothing but a "farce" that seeks to save the rule of dynasty over democracy.
Summary:
Jabbar Shah, the UP villager who sold his goats for â¹15,000 to build a toilet as he was refused help by the village pradhan and district officers, has been gifted a new flock of goats.
Summary:
Andhra Pradesh Finance Minister Y Ramakrishnudu on Sunday said that the state will invite the finance ministers of all states to discuss the "adverse" effects of the terms of reference of the 15th Finance Commission.
Summary:
The police are currently on the lookout for a blind beggar accused of repeatedly raping his 10-year-old daughter over a span of four months in Assam's Lakhimpur.
Summary:
Pointing out that rape and murder have the same maximum punishment now, the Delhi HC asked the Centre, "How many offenders would allow their victims to survive now?" This comes days after the Centre instituted death penalty for raping children under 12 years.
Summary:
The Home Ministry on Monday issued a gazetted notification removing the Armed Forces (Special Powers) Act (AFSPA), 1958 across the state of Meghalaya.
Summary:
Gaya MP Hari Manjhi's son was made to undergo a medical examination in which traces of alcohol were found in his blood.
Summary:
The BJP on Sunday used a popular meme from TV series 'Game of Thrones' to announce PM Narendra Modi's visit to Karnataka ahead of the Assembly elections.
Summary:
While the deceased is yet to be identified, the BJP and TMC have claimed he was their worker.
Summary:
More than â¹3.2 lakh crore worth tax arrears are stuck due to pending cases in courts, according to the Income Tax Department.
Summary:
The girl had gone to a field when the boy, who was working in a nearby field, took her to a secluded place and raped her.
Summary:
According to the UN, the war in Yemen has killed over 10,000 people and displaced more than 20 lakh.
Summary:
The couple has said they are not going to have any more babies after their 14th son.
Summary:
India's remittances picked up 9.9% in 2017 but were still short of $70.4 billion received in 2014.
Summary:
In the last 8 years, the department sent 73.7 crore emails compared to about 4.2 crore speed posts.
Summary:
ICICI Bank CEO Chanda Kochhar was cleared of any wrongdoing in the Videocon loan case by Chairman MK Sharma in an internal inquiry two years ago, reports said.
Summary:
Even now, people are chasing money." The song will feature actors like Madhuri Dixit and Anil Kapoor.
Summary:
Yo Yo Honey Singh, who recently made his comeback after two years with the song 'Dil Chori', has said he'll do stage shows soon.
I am creating...singles and film songs, on...daily basis," he added.
Summary:
Talking about his latest release 'October' which earned â¹5 crore on its first day, Varun Dhawan said that he had expected this figure.
There was just one trailer and two songs that became the selling points," said the actor.
Summary:
A new poster of Sonam Kapoor and Kareena Kapoor starrer 'Veere Di Wedding' has been released.
Directed by Shashanka Ghosh, 'Veere Di Wedding' is scheduled to release on June 1, 2018.
Summary:
"The internet's full of hate but it's nothing compared to the self-critic in your head for brutality," he further said.
Summary:
Priyanka Chopra is reportedly on Meghan Markle's guest list for her royal wedding to Prince Harry, who is sixth in line to the British throne.
Summary:
Delhi Daredevils' Prithvi Shaw, who led India to victory in the Under-19 World Cup earlier this year, is making his debut in the Indian Premier League against Kings XI Punjab today.
Summary:
Sachin added the match was scheduled in Mumbai so that she could watch him play.
Summary:
The Supreme Court has asked the chief secretaries of Delhi and Haryana to hold a meeting with the Water Resources Ministry and settle the ongoing dispute over sharing river Yamuna's water.
Summary:
Mukerjea further said the day she was hospitalised she spoke only to three lawyers at a court and did not "consume anything from outside."
Summary:
But GodâÂÂs Word will last for eternity", and, "Wow. What a way for GQ to show this irrelevance.
The bible is way more hip than GQ."
Summary:
Around 74% of the CEO positions in the Indian healthcare sector is held by promoters, proxy advisory firm IiAS said.
Summary:
Chand is the first senior officer of the GST department established last year to face corruption charges from the agency, officials said.
Summary:
UK's Prince William and his wife Kate Middleton were on Monday blessed with their third child, a baby boy.
Summary:
Indian tennis player Sania Mirza took to social media to announce her pregnancy with an illustration of a locker room having the surnames 'Mirza', 'Mirza-Malik' and 'Malik'.
Summary:
The scam was masterminded by GainBitcoin Founder Amit Bhardwaj, who was recently arrested in Bangkok.
Summary:
Rejecting the Opposition's impeachment motion against Chief Justice Dipak Misra, Vice President Venkaiah Naidu said the signatory MPs were unsure of their allegations and used phrases like "may have been" and "appears to be".
Summary:
A new trailer of Rajkummar Rao starrer 'OmertÃÂ ' has been released.
'OmertÃÂ ' is scheduled for release on May 4, 2018.
Summary:
Sharing a picture of himself with Sachin Tendulkar on Twitter, Indian shuttler Kidambi Srikanth revealed the cricket legend had told him in 2015 that he would become world number one.
Summary:
A state-owned Chinese bank has opened the country's first unmanned bank equipped with robots and machine holograms to talk to customers.
Summary:
Sibal called the rejection order "unprecedented, illegal, ill-advised and hasty".
Summary:
Mumbai-based beauty and wellness startup Nykaa has raised â¹75 crore in a funding round at a valuation of â¹3,000 crore.
Summary:
Hours after death penalty was instituted for raping children below 12 years, a 57-year-old lawyer allegedly sexually abused a nine-year-old girl onboard a Chennai-bound train.
Summary:
Tata Sons on Monday announced the appointment of former Indian Foreign Secretary S Jaishankar as the group's Global Corporate Affairs President.
Summary:
TCS ended the last fiscal with a revenue of $19.09 billion, which is less than half of the NYSE-listed Accenture's yearly revenue of $34.9 billion.
Summary:
Filmmaker Ali Abbas Zafar has said actress Priyanka Chopra was always his first choice for the upcoming film 'Bharat'.
Summary:
Reacting to media reports of his rumoured wedding with Kannada actress Tanishka Kapoor, Royal Challengers Bangalore leg-spinner Yuzvendra Chahal said that the reports were "baseless".
Summary:
Talking about the issue of sexual harassment, Aditi Rao Hydari said a proper grievance cell for sexual offences in Bollywood should be set up.
"Every working place in India has a complaint cell for sexual offences.
Summary:
There were seven cases against Rajpal and he has to pay a fine of â¹1.60 crore per case.
The court had convicted him for failing to repay a loan of â¹5 crore.
Summary:
The Supreme Court of India today dismissed the plea of social activist Swami Agnivesh seeking deletion of the Jauhar scene from the film 'Padmaavat'.
Summary:
Former Mumbai Indians all-rounder Abhishek Nayar revealed that a few years ago when a ground was being restructured, he made MI captain Rohit Sharma lift tyres and chop wood like the construction workers for fitness.
Summary:
Summary:
Matt Campbell, a British professional chef who had featured in MasterChef: The Professionals last year, died at the age of 29 after collapsing during the 42-km-long London Marathon on Sunday.
Summary:
University of Washington researchers have developed a device which consumes up to 10,000 times less power to stream videos.
Summary:
The runway race, which is the first of its kind to be held at an Indian airport, will start at 12:45 pm and end at 2:15 pm.
Summary:
A video that shows rats roaming around in the canteen kitchen situated near the Hyderabad airport's parking area has gone viral.
Summary:
A woman has been arrested after she allegedly threw coffee on flyers during a US-bound Delta flight, ran up and down the aisle of the aircraft and overturned a drink cart.
Summary:
The woman, who was apparently fined for not declaring agriculture items, said she would take the matter to court.
Summary:
After Rajya Sabha Chairman Venkaiah Naidu rejected the Opposition's notice to impeach CJI Dipak Misra on Monday, BJP MP Subramanian Swamy said that the Congress committed suicide by moving the notice.
Congress party has no reason to move such a notice.
Summary:
Vijayendra, who earlier said he wanted to contest against Siddaramaiah's son, had already started campaigning in the constituency.
Summary:
The last Indian company to cross the $100 billion milestone was Reliance Industries in 2007.
Summary:
Two of Ali Zafar's female bandmates have refuted allegations by Meesha Shafi that Ali sexually harassed her during a jam session, claiming they were also present there.
Summary:
An 18-year-old Afghan girl with five sisters and no brothers has disguised herself as a boy for over a decade as part of the 'bacha poshi' practice, which refers to a girl 'dressed as a boy'.
Summary:
Talking about the recent Unnao and Kathua rape cases, Congress President Rahul Gandhi said PM Narendra Modi's new slogan will be 'Beti Bachao, BJP ke logon se bachao'.
Summary:
Walmart is close to finalising a deal to buy 60-80% stake in homegrown e-commerce platform Flipkart for at least $12 billion, according to reports.
Summary:
A sweeper at Amritsar's Guru Nanak Dev Hospital has been caught allegedly prescribing neurology medicines and issuing medical certificates.
Summary:
After rejecting the Opposition's impeachment motion against Chief Justice of India Dipak Misra, Vice President Venkaiah Naidu said that CJI Misra could not be held guilty of misbehaviour based on the facts in the motion.
Summary:
A college student allegedly ran her speeding car over a cobbler sleeping on a footpath while she was in an inebriated state in Hyderabad.
Summary:
A bus crash in North Korea's North Hwanghae province killed 36 people including 32 Chinese nationals, the Chinese Foreign Ministry said on Monday.
Summary:
US President Donald Trump pulled out of the deal last year, making the US the only country opposed to it.
Summary:
A cinema in the small New Zealand town of Hawera has banned moviegoers from wearing onesies, pyjamas, and dressing gowns.
Summary:
Air India is facing a cash deficit of â¹200-250 crore every month which is affecting the procurement of spares, the Civil Aviation Ministry has said.
Summary:
While TCS is valued at â¹6.7 trillion, the combined value of next four firms is â¹6.14 trillion.
Summary:
The Supreme Court has stayed proceedings in six cases against Salman Khan filed in different courts across the country over an alleged casteist remark he made while promoting 'Tiger Zinda Hai'.
Summary:
Summary:
England and Wales Cricket Board's director of cricket Andrew Strauss explained the idea behind the 100-balls-a-side format, claiming that it is aimed at attracting "more casual audience" like moms and kids.
Summary:
Barbadian-born English cricketer Jofra Archer, who is yet to play international cricket, took three wickets on his IPL debut with ten deliveries clocked over 144 kmph and the fastest being 149.85 kmph.
Summary:
I have been playing international cricket since 2000, it has been almost 17-18 years".
Summary:
Aleksandr Kogan, who leaked Facebook users' data to British firm Cambridge Analytica, has said the users and their friends' data was "available to anybody who wanted it who was a developer".
Summary:
Lewis claimed that at least 50 fake ads bearing his name appeared on Facebook, causing reputational damage to him.
Summary:
International passengers buying goods at duty-free shops at Delhi airport will have to pay the Goods and Services Tax. Prior to GST roll out on July 1, 2017, the duty-free shops were exempt from the levy of central sales tax and value-added tax.
Summary:
Speaking at the launch of Congress' 'Save the Constitution' campaign, party President Rahul Gandhi said that Prime Minister Narendra Modi is only interested in how to become Prime Minister again.
Summary:
On being asked about the ongoing talks between Flipkart and Walmart, Amazon's India head Amit Agarwal said, "As long as there are investments, it's good for everyone." "I don't get too emotional about someone's adversities or someone's success because our time will also come," he added.
Summary:
The police have arrested a 58-year-old man for allegedly raping a 14-year-old girl over a period of around three months in Tripura's Khowai.
Summary:
External Affairs Minister Sushma Swaraj on Monday said it is "increasingly important" that Chinese people learn Hindi and Indians learn Chinese.
Summary:
A newly-married woman in Assam has alleged that she was raped by her husband and two of his friends within a few days of their marriage as she didn't meet his demands for dowry.
Summary:
Nicaragua's President Daniel Ortega has scrapped pension cuts following protests and riots that killed at least 25 people and injured over 100 others.
Summary:
Vice President and Rajya Sabha Chairman Venkaiah Naidu on Monday rejected the impeachment notice against Chief Justice of India Dipak Misra.
Summary:
IT firm Tata Consultancy Services (TCS) on Monday became the second Indian company to reach the $100-billion market capitalisation milestone, after the company reported better-than-expected quarterly results.
Summary:
Narrating the details of how she was harassed, a model from Indore on Monday tweeted, "Two guys tried to pull my skirt...and said, 'dikhao iske niche kya hai?'" The woman, who was riding her two-wheeler at the time, lost her balance and fell.
Summary:
He booked a flight and a hotel room at Bali's All Seasons hotel, told his family that he was going to school but instead travelled to the airport.
Summary:
Further, his innings helped RCB post the highest T20 total and most number of sixes.
Summary:
The 25-year-old, who was bought for ã36.9 million by the English club, has already scored 41 goals this season.
Summary:
The man, Linus Phillip, was killed by a police officer last month in Largo city, Florida.
Summary:
An upcoming 5,000-square-metre Waterfront Culture Center in Danish capital city Copenhagen will feature elevated glass pools that seemingly allow visitors to swim through brick pyramids.
Summary:
A doctor at a government hospital in Delhi mistakenly performed leg surgery on a patient admitted with a head injury.
Summary:
Shiv Sena leader Sachin Sawant died on Sunday after two motorcycle-borne men allegedly shot him in Mumbai.
Summary:
Ahead of her meeting with PM Narendra Modi last week, UK PM Theresa May was warned by an aide to not disturb a duck nesting in a window at her residence.
If you're lucky...the duck will go to the pond," the aide had said.
Summary:
A man from the US state of Florida has been sentenced to 330 years in jail for taking sex trips to the Philippines and posting videos of his sexual encounters online.
Summary:
A Twitter user called Pooja Bhatt a "known alcoholic" for taking a dig at Amitabh Bachchan's unwillingness to address the recent rape cases in India.
Summary:
Australia's David Warner, who is serving a ban for his involvement in the ball tampering scandal, landed in trouble after his brother-in-law Tim Falzon allegedly smashed the window of a photographer's car with a shovel.
Summary:
Indian hammer thrower Ashish Jakhar registered a new junior national record on Sunday by throwing the iron ball and chain weighing 6 kg to 75.04 metres.
Summary:
Gmail users have reported that their inboxes were receiving spam emails that were apparently sent from their own accounts.
Summary:
Orkut claims the feature tracks interactions using algorithms that assign a 'reputation' to every user.
Summary:
Last year also, the state education department had announced an app for school teachers to mark attendance by uploading their selfies.
Summary:
Wikipedia has added a 'page previews' feature which provides a pop-up window containing context for the hyperlink in the article.
Summary:
Kerala Police on Sunday said a preliminary inquiry into the death of a Latvian tourist does not suggest any foul play.
Summary:
Earlier, it was reported that Swiggy was in talks to raise $200 million from US-based investor Coatue Management.
Summary:
Students at IIT Madras have organised a 'Hug Day' to protest against an incident of moral policing where two students were reportedly photographed and shamed for hugging each other on campus.
Summary:
Minister of State Anantkumar Hegde has claimed that he received a call on Sunday threatening to behead him.
This comes after Hegde claimed that a recent accident between his escort car and a truck was an attempt on his life.
Summary:
Netaji Subhas Chandra BoseâÂÂs grandnephew Chandra Kumar Bose on Friday claimed that Hitler was a "nationalist" who had never betrayed his nation, but Jawaharlal Nehru had.
Summary:
Singh also claimed that the Congress party is controlled by the Christian missionaries and that former Congress President Sonia Gandhi works on their directions.
Summary:
Stating that there were no major injuries on the part of the police, he said death toll for Naxals may rise.
Summary:
Spiritual leader the Dalai Lama has said that Tibet can remain in China if it recognises and respects the region's autonomy and distinct culture.
Notably, China claims that Tibet is a part of its mainland.
Summary:
The name of English playwright William Shakespeare has been spelt in over 80 different ways, including 'Shappere' and 'Shaxberd', in the records of his lifetime.
Summary:
The Congress has released its second candidate list for Karnataka Assembly polls and nominated CM Siddaramaiah from Badami constituency.
Summary:
Summary:
Amazon's India head Amit Agarwal in a recent interview said that profitability for the company in India is years away, citing need to build long-term opportunities in logistics, payments, and infrastructure.
Summary:
Replying to a man who cancelled an Ola ride because the driver was Muslim, the cab-hailing startup called itself a "secular platform" like India.
Summary:
After opposition parties submitted an impeachment motion against Chief Justice Dipak Misra, the Congress has demanded that he recuse himself from administrative and judicial duties.
Summary:
A group of men were allowed to touch the five idols at a Panchubarahi temple in Odisha's Satabhaya village for a day after 400 years.
Summary:
Jessica Lal's sister Sabrina has said that she has forgiven Jessica's killer Manu Sharma and does not object to his release from the Tihar jail.
Summary:
Delhi Police is now trying to reunite the children with their families.
Summary:
Railway Board Chairman Ashwani Lohani recently asked the senior staff to address junior employees as 'aap' instead of 'tum' or 'tu', in an attempt to boost the self-esteem of the junior staff.
Summary:
Stating that the North Korean nuclear crisis was far from conclusion, US President Donald Trump on Sunday said that things may or may not work out with North Korea.
Summary:
Slamming the US stance on Iran nuclear deal, Iran Foreign Minister Mohammad Zarif has warned that countries should never negotiate with the US.
Summary:
Ahead of the first inter-Korean summit in a decade, South Korea on Monday announced that it has halted the propaganda broadcasts across the border with North Korea to create a peaceful atmosphere.
Summary:
The Delhi High Court has sought the response of the RBI on a plea challenging its circular which prohibits banks from providing any service to businesses dealing in cryptocurrencies.
Summary:
Talking about his journey and struggle in Bollywood, actor Sanjay Mishra said, "If I was overrated I would've been outdated, I wouldn't have survived." Sanjay, who is known for starring in films like 'Golmaal' and 'Masaan', added that he is glad he was underrated.
Summary:
Actor Manoj Bajpayee has said it's all rubbish when actors say even a small role can make an impact.
Summary:
TV actress Mouni Roy, who will be seen in the Ranbir Kapoor, Alia Bhatt starrer 'Brahmastra', said it was an honour to share the screen with them.
Summary:
Talking about becoming a father for the second time, actor Shahid Kapoor said, "I'm very happy.
Summary:
Krishnappa Gowtham slammed an unbeaten 33 off 11 balls to help Rajasthan Royals defeat defending champions Mumbai Indians in the last over in the IPL 2018 on Sunday.
Summary:
Chelsea defeated United in their previous final against each other in 2007, while United had won in 1994.
Summary:
Nazreen Khan Mukta, a Bangladeshi female cricketer who plays first-grade cricket in the Dhaka Premier League, has been arrested after being caught with 14,000 methamphetamine pills.
Summary:
Tweeting on the occasion of Earth Day on Sunday, former Indian cricketer Virender Sehwag wrote, "Earth ka khyaal rakhein nahi toh anarth ho jaayega." Meanwhile, former Indian captain Anil Kumble wrote, "Take ownership, take it as your own because this home belongs to each of us.
Summary:
Nadal also overtook Serbia's Novak Djokovic to clinch most Masters 1000 titles (31).
Summary:
The Vistadome coach features air conditioning, large glass windows, rotatable seats, automatic sliding doors, a glass roof, an observation lounge and a GPS-enabled information system.
Summary:
Summary:
According to the board's 150-page manual on sports for Classes 9 to 12, students will have to go to the playground but will be free to perform any listed physical activity.
Summary:
Authorities said that the video contained scenes that could corrupt public morals.
Summary:
A naked gunman shot dead four people and injured at least four others in Nashville, Tennessee on Sunday, according to police.
Naming a 29-year-old suspect, police said they are looking for the gunman.
Summary:
Yang-ho's younger daughter is under investigation for assault for allegedly throwing water in a colleague's face.
Summary:
They are waiting for approval from the Election Commission and have started a social media campaign.
Summary:
The agencies raised concerns over the use of cryptocurrencies for money laundering and terror financing.
Summary:
The bureaucrats had introduced incentives for training towards digital transactions and installed five Point-of-Sale (PoS) machines, the award citation read.
Summary:
The announcement was made during External Affairs Minister Sushma Swaraj's four-day visit to China.
Summary:
A British man has been sentenced to 16 years in jail for causing "dreadful and life-changing" injuries by hurling acid at an aspiring model and her cousin.
Summary:
Saudi Arabia's security forces started firing their guns after a commercial drone flying near the royal palace triggered a coup-scare on Saturday.
Summary:
Raymond Trapani, third founder of an Initial Coin Offering promoted by boxer Floyd Mayweather and rapper DJ Khaled, was charged with fraud for allegedly raising over $32 million by selling unregistered securities through a "CTR Token".
Summary:
He added that India is a good example of having bold reforms compared with other countries globally.
Summary:
The Federation of Indian Export Organisations (FIEO) has written to RBI and Finance Ministry seeking reintroduction of Letters of Undertakings (LoUs).
Summary:
President Ram Nath Kovind on Sunday promulgated the Fugitive Economic Offenders Ordinance 2018, which provides for confiscating assets of economic offenders fleeing India.
Summary:
A car parking space measuring 135 square feet in Hong Kong has been rented out for a record HK$10,000 (â¹84,400) a month, reports said.
Summary:
Nawazuddin further said, "I had not wished to become a star...I just wanted to be busy in Mumbai."
Summary:
Talking about sexual harassment, filmmaker Anurag Kashyap said, "Anywhere, a campaign like #MeToo will be successful only when the victim speaks up.
Summary:
Filmmaker Anurag Kashyap has said he has stopped talking about sexual harassment as nobody really cares about the movement but only about the headline.
Anurag further said, "When I was 19 years old, I spoke about sexual abuse because I went through it."
Summary:
Filmmaker Shoojit Sarkar has said that the understanding of emotions comes quite naturally to him.
Summary:
CSK overtook Kings XI Punjab to sit atop the points table with a better run-rate.
Summary:
Raina stood his ground while Rayudu fell short trying to reach the non-striker's end.
Summary:
Earlier, Kohli had overtaken Raina as IPL's highest run-scorer in the match against Mumbai Indians on April 17.
Summary:
CSK's Karn Sharma saved a shot by Kane Williamson from going over the third-man boundary for a six in the fourth over of SRH's chase on Sunday.
Summary:
WhatsApp has rolled out 'Dismiss as Admin' feature which allows an admin of a group chat to dismiss another admin.
Summary:
BJP leader S Ve Shekher has been booked by Chennai Cyber Crime department for sharing a Facebook post that claimed women have to sleep with powerful men to become journalists.
Summary:
Myntra Co-founder Mukesh Bansal's health startup cure.fit is reportedly in talks to raise $75 million to expand fitness and food verticals.
Summary:
The board, which is the third-largest in North America, covers 583 schools.
Summary:
Vice-Chancellor Jagadesh Kumar said that perhaps the "academic pressure" was forcing the students to dropout.
Summary:
The world is now 12% of GDP deeper in debt than the previous peak in 2009, the IMF added.
Summary:
A Class 10 boy created a fake Twitter handle of Uttar Pradesh Director General of Police (DGP) OP Singh to order a speedy probe into a cheating case involving his elder brother.
Summary:
An American man has survived after being bitten by a shark, a bear and a rattlesnake in less than four years.
Summary:
Speaking about opening up on Ali Zafar sexually harassing her, singer-actress Meesha Shafi said, "[It's] hard on my conscience to stay silent...because I'm seeing such brave...women speaking up." "I only felt hesitant as long as I hadn't told anyone," she added.
Summary:
The smartphone may also sport the same design as the original iPhone SE, along with Touch ID.
Summary:
Under the new law, Facebook is liable to pay fines of up to 4% of its global turnover for breaking data protection rules.
Summary:
Yechury had taken over as General Secretary from Prakash Karat in the 21st Party Congress in 2015.
Summary:
The BJP on Saturday uploaded the election affidavit submitted by Karnataka CM Siddaramaiah wherein he falsely claimed that he has no account on Facebook and Twitter.
Summary:
However, Tesla said it takes injuries seriously and will cooperate with the regulators.
Summary:
Twitter Co-founder Biz Stone has invested in a Delhi-based health startup Visit that uses artificial intelligence in its app.
Summary:
His first PIL was for termination of a 10-year-old rape survivor's pregnancy.
Summary:
Former BJP minister Maya Kodnani, who was recently acquitted by the Gujarat High Court in the 2002 Naroda Patiya riots case, said the years she spent defending herself in court were God's way of testing her.
Summary:
As many as 129 cases of rape were recorded in Uttar Pradesh's Braj area between January and March this year, according to police data.
Summary:
When the priest asks her which sami, she says, "Palaniswami", adding, "He is the sami that gave me a job."
Summary:
The mother of Nirbhaya, the 2012 Delhi gangrape victim, on Sunday said that while death penalty for rapists of children below 12 years was a good step, every rapist should be hanged.
Summary:
The Punjab Police on Friday took to Twitter to issue a warning against a fake women's helpline number circulating on WhatsApp. The message also carries a picture of Punjab DGP Suresh Arora.
Summary:
An American family has offered a $500 (â¹33,000) reward for a lost teddy bear.
Summary:
A man in Jammu and Kashmir was hit by a girl's two-wheeler when he was trying to stop her in an alleged molestation attempt on Friday.
Summary:
The Grammy-nominated track is the lead single from Avicii's debut studio album 'True'.
Summary:
Filmmaker Rajkumar Hirani, who has directed Ranbir Kapoor in the biopic on Sanjay Dutt, said that he would like to work with the actor again.
Notably, Ranbir will be playing Sanjay Dutt in the biopic.
Summary:
The Ritz hotel in Paris has sold nearly 10,000 pieces of furniture and decor for â¬7.3 million (nearly â¹60 crore), which is a world record in the industry, auction house Artcurial has said.
Summary:
"The clients will stay tied to a harness and the portaledge sinks a bit in the middle to stop you rolling off," the owner said.
Summary:
A woman from Zimbabwe has been caught carrying drugs worth â¹35 lakh at the Delhi airport while on her way to Ethiopian capital Addis Ababa.
Summary:
Gurugram-based automobile startup Droom has launched a new venture which enables its customers to buy and sell customised bikes, starting at â¹70,000.
Summary:
A 17-year-old boy in Delhi allegedly killed his two-month-old son by punching him multiple times as he thought the infant wasn't his child and was instead born out of his wife's suspected illicit affair.
Summary:
Sharma had been found guilty of shooting Jessica for refusing to serve him a drink past midnight in 1999.
Summary:
Britain's Queen Elizabeth II on Saturday attended a pop concert in London on the occasion of her 92nd birthday.
Summary:
At least 31 people have been killed and over 50 others have been wounded in a suicide bomb attack outside a voter registration centre in the Afghan capital Kabul.
Summary:
A dedicated registration page 'Notify Me' for OnePlus 6 went live on Amazon India on April 22 at 12:00 AM.
Summary:
India's BSF will lodge a complaint with Pakistan Rangers over the incident.
but no public person can interfere in the parade", BSF Inspector General said.
Summary:
A local court has sentenced a man in Bihar's Nawada to 10 years in prison for kidnapping and raping a minor girl in 2015.
Summary:
The minister's statement comes amid widespread outrage over the Unnao and Kathua rape incidents.
Summary:
Massachusetts Institute of Technology (MIT) professor Parag Pathak has been awarded the John Bates Clark Medal for 2018, granted annually to the best economist under the age of 40.
Summary:
A menu of the first meal served on the Titanic has been auctioned for ã100,000 (nearly â¹93 lakh).
Summary:
As a reaction to a massive oil spill in California in 1969, late US Senator and Earth Day founder Gaylord Nelson came up with an idea for a day to focus on the environment.
Summary:
Union Minister PP Chaudhary has said the government has intervened in the bankruptcy proceedings of Nirav Modi's firms in the US to protect PNB's interests.
Summary:
The total deposits in accounts opened under Pradhan Mantri Jan Dhan Yojana has crossed â¹80,000 crore mark, official data showed.
Summary:
Of the 51.4 crore bank accounts opened from 2014-17 globally, 55% are from India, Banking Secretary Rajeev Kumar said citing a World Bank report.
Summary:
Model-actor Milind Soman got married to his girlfriend Ankita Konwar on Sunday in Alibaug.
Summary:
Talking about performing stunts in 'Thugs Of Hindostan', Amitabh Bachchan said, "We try to live up to the professional demands required of us and proceed subsequently with adequate precaution." "They're audacious and they're a risk.
Summary:
In her tweet, Shilpa wrote the video was circulated to "destroy her life".
Summary:
A man has been arrested for breaking into singer Taylor Swift's New York City apartment.
Summary:
Meanwhile, Max was named an honorary police dog.
Summary:
RR's Ben Stokes took to Twitter to jokingly suggest underarm bowling to stop RCB's AB de Villiers, citing Australia's 1981 underarm bowling incident.
Summary:
Members of women's football club FK Yenisey have promised to pose for an erotic photoshoot if they manage to win the Russian Premier League title.
Summary:
American NFL star Colin Kaepernick, who kneeled during the US national anthem as a protest against racial inequality, was honoured by Amnesty International with their Ambassador of Conscience Award for 2018.
Summary:
Sevilla defender Sergio Escudero fouled Barcelona forward Lionel Messi by trying to pull his shorts down during the Copa del Ray final on Saturday.
Summary:
British-Pakistani former world champion boxer Amir Khan knocked out Canadian boxer Phil Lo Greco inside 39 seconds in what was his first fight in almost two years.
Summary:
Whistleblower Christopher Wylie, who exposed the Facebook data scandal, has said he would be testifying before the US Congress next week.
Summary:
"Alibaba aims to empower different industries through our cloud-based IoT solutions, in which chips play a significant role," a company spokesperson said.
Summary:
Sinha added that he has always maintained that BJP is his first and last party.
Summary:
Other items left behind by passengers included cellphones, sunglasses, keys and power banks.
Summary:
Earlier this year, Turkey launched Operation Olive Branch against the US-backed Kurdish militia in Syria which it considers to be terrorists.
Summary:
WikiLeaks Shop said the action was taken by Coinbase without "notice or explanation".
Summary:
Further, a 13-year-old was allegedly raped by a doctor in Muzaffarnagar, and a minor was sexually assaulted by three persons in Moradabad.
Summary:
Nabi Tajima, the world's oldest person and the last known to be born in the 19th century, has passed away aged 117 in Japan.
Summary:
Actor Verne Troyer, who starred in the Austin Powers movies as 'Mini-Me' and a Harry Potter movie as Griphook, died on Saturday aged 49.
Summary:
RCB captain Virat Kohli applauded Trent Boult's catch inches away from the boundary and said he doesn't feel bad getting out to a catch like that, while adding that it's good for the fans.
Summary:
The Opposition violated the rules of the Rajya Sabha handbook when it went public with the details of the impeachment notice against Chief Justice of India Dipak Misra on Friday, Parliament officials have said.
Summary:
Following former Union Minister Yashwant Sinha's decision to quit BJP on Saturday, party Spokesperson Anil Baluni said they gave Sinha a lot of respect and important positions, but he acted like a Congress leader.
Summary:
President Ram Nath Kovind on Sunday signed the ordinance allowing courts to award death penalty to those convicted of raping children 12 years of age or younger.
Summary:
The Airports Authority of India (AAI) has appointed its first woman firefighter, Taniya Sanyal, currently undergoing training in Delhi.
Summary:
Shahid Kapoor on Saturday was honoured with the Dadasaheb Phalke Excellence Award for his performance in Sanjay Leela Bhansali directorial 'Padmaavat'.
Summary:
Huma Qureshi has said that less or more screen time or playing the lead role is not the yardstick she goes by.
Summary:
Barcelona thrashed Sevilla 5-0 to lift their fourth straight and 30th overall Copa del Rey title on Saturday.
Summary:
Google is reportedly "pausing investments" in its mobile messaging app Allo to focus on Android Messages.
Summary:
Dismissing the reports of combining iPad, iPhone, and Mac apps for a unified platform, Apple CEO Tim Cook has said the merger will lead to "trade-offs and compromises".
Summary:
Online discussions platform Reddit now has 330 million monthly active users, same as Twitter, according to a report by social media management platform Hootsuite.
Summary:
President Ram Nath Kovind at a recent event said experts believe that the Sanskrit language is most appropriate for writing algorithms, machine learning, and artificial intelligence.
Summary:
Twitter has said it has banned ads from Russia's Kaspersky Lab, saying the cybersecurity company's business model conflicts with its advertising rules.
Summary:
"There are currently no tests planned for recharges or peer-to-peer payments on Messenger in India," a Facebook spokesperson said.
Summary:
Jet Airways on Saturday said four of the engines on its planes would be inspected to check fan blade issues following safety directives issued by American and European regulators.
Summary:
Replying to BJP General Secretary P Muralidhar Rao's tweet addressing him in Hindi, Karnataka Chief Minister Siddaramaiah on Saturday asked Rao to tweet either in English or Kannada.
Summary:
Delhi-based apartment listing startup Zocalo has raised â¹1.4 crore from investment firm Xander Group.
Summary:
The total number of Indians using digital wallets has fallen 80-90% as users are skeptical of full Know Your Customer (KYC) authentication, according to reports.
Summary:
Hyderabad-based startup Uravu has developed a technology which can utilise water vapour in the air to produce clean drinking water.
Summary:
Prasad fired in the direction of police officers during a chase in response to which he was shot down.
Summary:
In a letter addressed to Prime Minister Narendra Modi, Karnataka Chief Minister Siddaramaiah said that the state government is against the formation of Cauvery Management Board (CMB) as it is "not constitutional".
Summary:
Former CPI(M) leader R Byju was handed a death sentence on Saturday for the murder of Congress ward president KS Divakaran in 2009.
Summary:
Along with the death penalty for child rapists, the Cabinet on Saturday said that the National Crime Records Bureau (NCRB) will maintain a national database and profile of sexual offenders.
Summary:
The US Air National Guard has fired a non-commissioned officer after a video showing her performing an oath with a dinosaur puppet surfaced online.
Summary:
October actress Banita Sandhu said the hardest part for her in the film wasn't doing anything on screen for 10 to 12 hours a day.
Summary:
On April 22, 1998, Sachin Tendulkar scored 143 runs off 131 balls against Australia in Sharjah to ensure India's spot in the tri-series final.
Summary:
Three passengers were injured and the inner part of a window panel fell off when an Amritsar-Delhi Air India flight ran into severe turbulence for 10-15 minutes on Thursday.
Air India and Directorate General of Civil Aviation are probing it."
Summary:
Former tea seller P Anil Kumar has declared assets worth â¹339 crore to contest the upcoming Karnataka Assembly elections from Bengaluru's Bommanahalli constituency, making him the richest independent candidate.
Summary:
The Jammu and Kashmir government has stopped the salaries of over 600 employees in Kishtwar district for not constructing toilets at their residence.
Summary:
It also increased the minimum sentence for raping girls aged between 12 years and 16 years from 10 years of imprisonment to 20 years.
Summary:
China on Friday defended Pakistan after PM Narendra Modi described the country as a "terror export factory".
Summary:
As many as seven people were killed in an accident in Uttar Pradesh's Ghaziabad on Friday after a child accidentally disengaged the handbrakes of an SUV parked on a slope.
Summary:
Medical experts have confirmed that the eight-year-old victim in Kathua was sedated, sexually assaulted and murdered, Jammu and Kashmir Police said on Saturday.
Summary:
A 35-year-old teacher allegedly raped two Class 4 female students for four days inside a state-aided primary school's classroom after school hours in West Bengal's Uttar Dinajpur district, police said on Saturday.
Summary:
The ordinance is aimed at forcing offenders to return to India to face prosecution.
Summary:
US President Donald Trump lied about his wealth in the 1980s to feature on the Forbes 400 list of the wealthiest Americans, a reporter previously working for the magazine claimed.
Summary:
The release of the Arjun Kapoor, Parineeti Chopra starrer 'Namaste England' has been preponed to Dussehra this year.
Summary:
Summary:
Talking about Deepika Padukone's fashion sense, actor Ranbir Kapoor said that the kind of strength she has in her personality reflects in her fashion.
Summary:
Talking about the difficulty of getting censor certificates for comedy movies these days, actor Saurabh Shukla said that everybody is so touchy about everything and there is less space for humour and reality.
The whole world is getting touchy.
Summary:
Royal Challengers Bangalore batsman AB de Villiers slammed an unbeaten 90 off 39 balls to help his team defeat Delhi Daredevils in IPL 2018 on Saturday.
Summary:
After KKR lost the rain-curtailed match against KXIP in the IPL, KKR captain Dinesh Karthik called for replacing the DLS method with the alternative VJD method.
Summary:
Delhi Daredevils' fast bowler Trent Boult pulled off a one-handed diving catch near the boundary rope to dismiss Royal Challengers Bangalore captain Virat Kohli for 30 runs on Saturday.
Summary:
United will now face the winner of the other semifinal between Chelsea and Southampton.
Summary:
The Indian government has released a commemorative stamp to honour Indian women's cricket team fast bowler Jhulan Goswami for becoming the first woman cricketer to take 200 wickets in ODIs. The 35-year-old took to social media to share the picture of the stamp, which features her and the Victoria Memorial monument.
Summary:
A trial court will pronounce its verdict on April 25 in the case inside the Jodhpur jail where Asaram is lodged.
Summary:
Delhi Commission for Women (DCW) chief Swati Maliwal has announced she will end her ten-day hunger strike on Sunday as the Centre has approved the ordinance to provide death penalty for raping minors.
Summary:
At least 10 people, including a police officer were killed and 100 others were reportedly injured in three days of anti-government protests in Nicaragua, Vice President Rosario Murillo said.
Summary:
Students on Friday protested outside the White House against rising cases of gun violence in the US.
Summary:
Iraqi forces on Thursday launched air strikes against the Islamic State in Syria, targeting the militant group's strongholds near the city of Hajin.
Summary:
The strike reportedly hit a civilian vehicle in the Taiz province, killing 20 passengers onboard.
Summary:
A bike-borne man crashed his girlfriend's wedding in Uttar Pradesh's Bijnor on Wednesday and threw a garland around her neck while she sat on a stage with the groom.
Summary:
A Twitter user with the name Aditii on Friday complained to Amazon that she was unable to find what she needed on the company's site.
Summary:
"DadaSaheb Phalke Award...Most Trending Personality 2018...DOSANJHANWALA," he wrote while sharing a video.
Summary:
However, on finding out the username had been taken, he added another "I" to the word making it 'Avicii', which later became his stage name.
Summary:
Gayle, who scored his third consecutive 50-plus IPL score against KKR today, has slammed 229 runs in three matches so far.
Summary:
Ishant's previous highest score in professional cricket was 31*(106), scored against Sri Lanka in a Test match in 2010.
Summary:
In a letter to the passengers, the airline expressed "sincere apologies" over the accident.
Summary:
Congress leader Renuka Chowdhury on Saturday said that when a woman reports a rape at a police station, she is asked "kitne aadmi the".
Summary:
Speaking about the Centre's decision to introduce death penalty for raping children aged up to 12 years, the father of the eight-year-old Kathua rape victim said, "Whatever the government is doing is good." He added that he is hopeful about receiving justice.
Summary:
Delhi Commission for Women chief Swati Maliwal turned down CM Arvind Kejriwal's request to end her indefinite hunger strike as it entered the eighth day on Friday.
Summary:
The Indore Bar Association has decided to not represent the man accused of raping and murdering a six-month-old girl.
Summary:
Iraq has to pay a remaining amount of nearly $4.5 billion.
Summary:
Sony Pictures has sued California's Knee Deep Brewing for its 'Breaking Bud' beer.
Summary:
The is the largest ever penalty on a US bank under the administration of President Donald Trump.
Summary:
The accused, Deepak Jangra and Deepak Malhotra, deceived thousands of people through their online portal www.bitmineplus.org.
Summary:
The bank's net interest income during the quarter rose by 17.7% year-on-year to â¹10,657.7 crore.
Summary:
The movie will reportedly feature two more stars who will play another couple.
Summary:
Actor Jaaved Jaaferi has said it is "frustrating" when people tend to categorise actors in some way.
Jaaved further said, "You're not just one kind of an actor."
Summary:
Comedian Sunil Grover has confirmed that he will be featuring in actor Salman Khan starrer 'Bharat'.
Summary:
Pictures of model-actor Milind Soman and girlfriend Ankita Konwar's Haldi ceremony have surfaced online.
While Milind is seen wearing a white kurta and dhoti, Ankita wore a yellow lehenga paired with flower accessories for the ceremony.
Summary:
KXIP have accumulated eight points from five matches.
Summary:
Rajasthan Royals' former title-winning captain and current mentor Shane Warne took to Twitter to apologise for the side's performance against Chennai Super Kings on Friday.
Summary:
The bank will also approach the courts of other countries where Nirav Modi and his uncle Mehul Choksi have assets and businesses.
Summary:
A man was arrested in Bihar's West Champaran district on Friday for allegedly raping his 13-year-old daughter, who had committed suicide after the incident.
Summary:
A woman in Delhi beheaded her 8-month-old son and mutilated his body with a brick on Friday.
Summary:
A Kerala fast track court on Saturday awarded death penalty to R Baiju, a former CPI(M) local secretary, for murdering Congress worker KS Divakaran in 2009.
Summary:
As many as 16 nations, including the US, UK and France, have agreed to track and seize proceeds rising from corruption in Venezuela amid the economic crisis in the country, reports quoting officials said.
Summary:
The India Meteorological Department on Saturday issued a five-day weather warning, forecasting heat waves, thunderstorms, and dust storms across the country.
Summary:
An international-level sportswoman has accused a Karnataka-based doctor of raping her for two years after promising to marry her, police said.
Summary:
The UP Sainik School in Lucknow on Friday admitted 15 female cadets for the first time after 57 years.
Summary:
Talking about the ongoing sexual harassment allegations against Ali Zafar, Pakistani singer Momina Mustehsan said, "I want to ask Ali and all other men if you've ever, knowingly or unknowingly, violated a woman." "If you've, I request you to acknowledge your fault [and] apologise unconditionally," she added.
Summary:
A Mumbai court on Saturday cancelled the bailable warrant against actor Salman Khan in the 2002 hit and run case wherein a homeless person was killed.
Summary:
"Hopefully (Kohli) doesn't score too many runs (in county cricket)," Woakes jokingly added.
Summary:
Criticising PM Narendra Modi over the Centre's refusal to grant Special Category Status to Andhra Pradesh, TDP MLA Nandamuri Balakrishna said, "Traitor, namak haraam, come out and face people, they'll beat you up and make you run." "Even if you hide in a bunker Bharat Mata will bury you.
Summary:
The West Bengal Police on Friday seized 40 live bombs from an abandoned house in Howrah after acting on a tip-off.
Summary:
The RBI has revised its Know Your Customer (KYC) guidelines, making Aadhaar key to conducting customer due diligence by banks and finance companies.
Summary:
The stationmaster traced the owner, who gave the ragpicker â¹2,500 as a token of appreciation.
Summary:
At least one person was reportedly killed and 23 others were arrested in protests against alleged government corruption and poor public services.
Summary:
Earlier, fans had speculated that Ileana is pregnant after Andrew uploaded a photo of her with the caption, "Having some sweet time alone, kind of."
Summary:
The first look of Anil Kapoor and Madhuri Dixit from the upcoming film 'Total Dhamaal' has been released.
Summary:
Doctors in China have removed a 9-cm-long cigarette lighter lodged in a man's abdomen, who complained of prolonged stomach pain and blood in his stool.
Summary:
Talking about his unbeaten 104-run knock against SunRisers Hyderabad, Kings XI Punjab opener Chris Gayle said he wanted to let spinner Rashid Khan know that "Universe Boss" is here.
Summary:
"If you're batting with Dravid, it is the best place to be.
Summary:
Summary:
The trophy of the UEFA Europa League was recovered in Mexico shortly after it had gone missing from inside a vehicle after an event in the city of Leon.
Summary:
Speaking about former captain Sourav Ganguly, former batsman Virender Sehwag revealed that Ganguly told him to not ask questions and sit on the bench if he can't open in the 2002 England tour.
Summary:
US-based photo storage service SmugMug has acquired photo-sharing platform Flickr for an undisclosed sum.
Summary:
Commenting on Google's Chat service, which does not have end-to-end encryption, Amnesty International has said with the new service, "Google shows a staggering failure to respect the human rights of its customers." "Google should immediately scrap it," Amnesty added.
Summary:
Stating that government will introduce precautionary measures, Malini said the cases show India in a bad light.
Summary:
A London-based startup, Pigzbe, has launched a hardware wallet for children to store its cryptocurrency called 'Wollo', to teach them about money.
Summary:
Mumbai-based fantasy gaming startup Dream11 is in talks to raise $100 million from China's Tencent, according to reports.
Summary:
A minor fire broke out at BJP President Amit Shah's public meeting venue in Uttar Pradesh's Raebareli on Saturday.
[The fire is a] sign that something big is about to take place in Raebareli," Amit Shah said.
Summary:
The US has announced a reward of $1 million for information on a journalist who has been missing in Syria since 2012.
Summary:
Easterbrook took over as CEO of McDonald's in March of 2015 and has an over 25-year career with McDonald's.
Summary:
"Today I am taking 'sanyas' from any kind of party politics, today I am ending all ties with the BJP," he said.
Summary:
Currently, the maximum punishment for the crime is life imprisonment, while the minimum is a seven-year jail term.
Summary:
The Table Tennis Federation of India (TTFI) has recommended Manika Batra, the country's only quadruple medallist at the Commonwealth Games, for the prestigious Arjuna Award.
Summary:
The remaining 2% of their time was spent on Facebook Messenger, the report further added.
Summary:
Social media giant Facebook has spent a record $3.3 million in the first three months of 2018 on lobbying, according to disclosures filed with the US government.
Summary:
Technology giant Apple's shares have tumbled 7% since April 19, wiping off over $61 billion from the company's market capitalisation.
Summary:
While people in Indonesia spent 87% of their total time online on mobile phones in 2017, the figure for Mexicans stood at 80%.
Summary:
Amazon now has a global employee base of over 5.6 lakh.
Summary:
The annual Lyrid meteor shower is expected to peak over India in Saturday's night sky until sunrise.
Summary:
A NASA study has confirmed that the polygon-shaped cracks discovered by Mars Curiosity rover in 2017 were indeed mud-cracks that formed in a drying lake some 3.5 billion years ago.
Summary:
After Gujarat High Court acquitted 17 people in 2002 Naroda-Patiya riot case, a victim said, "Eight members of our family were killed before our eyes.
Summary:
Civil Aviation Minister Suresh Prabhu has said the ministry is interested in making sure that Air India remains in "Indian hands only".
Summary:
US acting Secretary of State John Sullivan branded China and Russia as "forces of instability", while releasing the State Department's global human rights report for 2017.
Summary:
Onodera further asserted that Japan will continue pressurising North Korea for the "ultimate abandonment of weapons of mass destruction".
Summary:
Markets regulator SEBI has imposed a penalty of â¹1.1 crore on wind turbine maker Suzlon Energy for violating insider trading norms.
Summary:
Sonakshi Sinha, who'll star opposite Aditya Roy Kapur in Karan Johar's upcoming production 'Kalank', said, "I am pairing up with him for the first time...So, I'm really looking forward to it." The period drama film, set in the 1940s, will also star Alia Bhatt, Varun Dhawan, Sanjay Dutt and Madhuri Dixit.
Summary:
Fourteen-year-old actress Millie Bobby Brown, known for starring in 'Stranger Things', has become the youngest person to feature on TIME's list of 100 Most Influential People.
Summary:
Swedish DJ Avicii's ex-girlfriend Emily Goldberg, while paying a tribute to him following his demise, wrote, "Wake me up when it's all over, because I don't want it to be real." "For the two years we were together, he was my closest confidante, and my best friend," she added.
Summary:
The BCCI has formed a four-member internal complaints committee for prevention of sexual harassment against women at the workplace.
Summary:
Former Indian cricketer Virender Sehwag has revealed he was the first to know about former Indian coach Greg Chappell's mail against then captain Sourav Ganguly to the BCCI.
Summary:
US-based auditing company PricewaterhouseCoopers (PwC) cleared Facebook's privacy practices in an assessment completed in 2017 of the period in which social media major's user data was leaked to Cambridge Analytica, filings have revealed.
Summary:
The Tripura government has decided to change the History syllabus in the state which taught students about communist leaders Vladimir Lenin and Joseph Stalin.
Summary:
After lying dormant since 1768, Japan's Mount Io has erupted for the first time, spewing smoke and ash 400 metres high into the air.
Summary:
The accused had lured the girl with a silver ring and later threatened her of dire consequences if she told about the incident to anyone.
Summary:
A sub-inspector has been suspended in Uttar Pradesh's Lucknow after she allegedly demanded pizza from a restaurant owner, who came to register a complaint.
Summary:
New Zealand's Prime Minister Jacinda Ardern wore a traditional MÃÂori cloak during the Commonwealth dinner at the Buckingham Palace.
Summary:
According to memos of former FBI Director James Comey, US President Donald Trump had told him that Russian President Vladimir Putin had boasted about Russia having "some of the most beautiful hookers in the world".
Summary:
A 6-month-old girl, who was sleeping next to her parents on a street, was allegedly taken away, raped and murdered by her uncle in Madhya Pradesh's Indore, police said.
Summary:
North Korean leader Kim Jong-un has said his country no longer needed any nuclear or intercontinental ballistic missile tests because it has completed its goal of developing nuclear weapons, the state media reported.
Summary:
Apple has globally offered to replace batteries of a limited number of 13-inch MacBook Pro devices over concerns that a component may fail to cause the built-in battery to expand.
Summary:
Microblogging site Twitter on Friday went down for about 30 minutes globally, with users being unable to send tweets.
Summary:
US-based retail giant Walmart's deal to acquire a controlling stake in India's Flipkart is likely to close by next week, as per reports.
Summary:
Based on continuing trend of size-biased extinctions of mammoths, sloths and saber-toothed tigers over the past 125,000 years, cows might be the largest mammals left on Earth in 200 years, American researchers have warned.
Summary:
"[The monk] ran the business successfully and the turnover (at present) reached over â¹100 crore," his uncle added.
Summary:
A Pune couple, Sumeedha and Yogesh Chithade, has sold their jewellery to raise â¹1.25 lakh to set up an oxygen-generation plant for jawans guarding Siachen glacier.
Summary:
Hearing a lawyer's PIL alleging that no FIR was registered in rape cases involving powerful people like the MLA in Unnao case, the Supreme Court asked, "Do you have any relative who has been raped?" Stating that there cannot be a public interest litigation in criminal matters, the court said, "Who are you in these rape cases?
Summary:
The US' Democratic Party has filed a lawsuit against President Donald Trump's campaign, the Russian government and WikiLeaks, alleging that they conspired to "disrupt" 2016 presidential election campaign.
Summary:
US President Donald Trump has welcomed the announcement by North Korean leader Kim Jong-un that his country will suspend nuclear and missile tests and abolish a nuclear test site.
Summary:
Gone too soon." "Devastating news, a beautiful soul...and extremely talented with so much more to do," tweeted DJ-singer Calvin Harris.
Summary:
Talking about the allegations that international filmmakers are obsessed with India's poverty, Iranian filmmaker Majid Majidi has said that before asking if his film 'Beyond The Clouds' is based on Indian poverty, one must watch it.
Summary:
Speaking about being featured in TIME's 100 Most Influential People List, Deepika Padukone said, "I've never really believed in self-acknowledgement...But I must admit...I do feel a small sense of achievement." "It's humbling to be acknowledged for the work you do," she added.
Summary:
The film was earlier scheduled to release April 27 but the 48-day long strike in the Tamil film industry forced the Tamil Nadu Film Producers Council to come up with a new release date.
Summary:
Actress Mouni Roy has denied rumours that she will be a part of Salman Khan starrer 'Dabangg 3'.
Summary:
Shiv Sena has said India's capital should be shifted to London or Tokyo as PM Narendra Modi speaks on critical issues only during foreign visits.
Summary:
Based on computer simulations, a team of France and US-based researchers have suggested that Saturn may have played a role in the creation of Jupiter's large moons.
Summary:
Astronauts aboard the International Space Station (ISS), which orbits Earth at an altitude of 400 km, on Friday made pizza after SpaceX delivered over 2,500 kg of food, scientific equipments, and other supplies earlier this month.
Summary:
Large mammals began disappearing faster than their smaller counterparts at least 125,000 years ago in Africa due to hunting and burning of forests by humans, a US-based study has found from fossil records.
Summary:
Turkey-born scientist Nerses Krikorian, who worked at the Los Alamos National Laboratory, which developed the atomic bomb, has passed away aged 97.
Summary:
State-run Punjab National Bank (PNB) has said that due to its "aggressive stance" towards wilful defaulters, 150 passports have been impounded over the past few months.
Summary:
Hearing a Sikh's plea challenging a local cycling association's rules requiring cyclists to wear helmets, the Supreme Court on Friday asked if only turbans could be used for covering heads in Sikhism.
Summary:
He was planning to commit suicide, police added.
Summary:
A French court has upheld a ruling denying citizenship to an Algerian Muslim woman after she refused to shake hands with an official.
Summary:
A Mexican court has barred sales of Frida Kahlo Barbie doll in the country, ruling that the late Mexican artist's family owned the sole rights to her image.
Summary:
The bomb was found during construction work earlier this week.
Summary:
Swedish DJ Avicii, born as Tim Bergling, has passed away at the age of 28 in Oman.
Summary:
Indian Premier League 2018 witnessed its second hundred in as many days after Chennai Super Kings opener Shane Watson slammed a 51-ball ton against Rajasthan Royals on Friday.
Summary:
The Queen had appealed at the Commonwealth Heads of Government Meeting to appoint him as the head.
Summary:
Summary:
Mira, who has said she wants to have a second baby, also shared the same picture on Instagram.
Summary:
Ace Indian shuttler Kidambi Srikanth, who had become world number one for the first time on April 12, has slipped to fifth in this week's rankings released by Badminton World Federation.
Summary:
The annual median compensation of e-commerce giant Amazon is nearly $28,446 (â¹19 lakh) as compared to social media giant Facebook's $240,430 (â¹1.6 crore).
Summary:
Finance Minister Arun Jaitley has termed the impeachment motion against Chief Justice Dipak Misra as a "revenge petition" by the Congress and other Opposition parties.
Summary:
Former PM Manmohan Singh has not signed the impeachment motion moved by Congress and six other Opposition parties against Chief Justice Dipak Misra.
Summary:
BJP youth leader Manish Chandela has tweeted that he had set fire to the "homes of Rohingya terrorists" settled in a Delhi camp last week, adding that he will repeat the act.
Summary:
The ratings were based on "meaningful social interactions" on the page.
Summary:
The woman had purchased the banana online from a UK-based supermarket Asda.
Summary:
The 36-year-old, who owns a 4.75% stake worth $1 billion, was the first math teacher to join the Beijing-based tutoring service.
Summary:
Talking about women empowerment, Ranbir Kapoor said the notion of masculinity needs to be changed.
Summary:
Actor Anupam Kher will be starring in UK television spy drama 'Mrs Wilson' which is inspired by the memoir of actress Ruth Wilson's grand-mother Alison Wilson.
Summary:
Cumberbatch further revealed he loved playing cricket and Graham Gooch was his hero when growing up.
Summary:
Reacting to the ongoing script-copy row, the makers of 'October' have issued a statement stating that they have not heard of the Marathi film 'Aarti' and that they have full faith in their work and team.
Summary:
A fan invaded the field and touched Chennai Super Kings captain MS Dhoni's feet while he was entering the field to bat against Rajasthan Royals on Friday.
Summary:
CSK fast bowler Shardul Thakur pulled off a one-handed diving catch to dismiss RR's Stuart Binny for 10 runs off his own bowling in the IPL on Friday.
Summary:
CSK on Friday registered a 64-run victory against Rajasthan Royals in Pune to go top of the Indian Premier League 2018 points table.
Summary:
Pension regulator PFRDA has made bank account details and mobile number compulsory for subscribers of the National Pension Scheme.
Summary:
The Maharashtra government will install 2,500 plastic bottle crushing machines across the state to ensure proper disposal of plastic bottles.
Summary:
Acting on a tip-off, the Puducherry Police has arrested two people for making fake ATM cards and withdrawing money using them, an official statement released on Thursday said.
Summary:
Congress MP Shashi Tharoor on Thursday shared the word 'Roorback' on Twitter, adding that he was forced to put up with a lot of roorbacks in the last few years.
Summary:
The 'Fearless Girl' statue in New York will be relocated to a spot in front of the New York Stock Exchange, officials said.
Summary:
North and South Korea on Friday opened a hotline between their leaders, ahead of an inter-Korean summit.
Summary:
This comes after the bank's board accepted Sharma's request to step down at the end of 2018.
Summary:
The Centre has told the Supreme Court it is planning to amend the Protection of Children from Sexual Offences Act to give death penalty to those raping children under 12 years.
Summary:
Journalist Maham Javaid has alleged Ali tried to kiss her cousin and pull her into a restroom.
Summary:
After Chris Gayle slammed a hundred in his second match for KXIP, his teammate KL Rahul jokingly tweeted, "Told y'all this man is Bad News for all of you...Universe Boss for a Reason!
Summary:
The motion is then discussed, after which the President is approached to impeach CJI if it's passed with a two-third special majority in both Houses.
Summary:
Former BJP minister Maya Kodnani, earlier convicted for inciting the 2002 riots in Gujarat's Naroda Patiya, was acquitted by the High Court on Friday.
Summary:
Apologising for sharing a Facebook post claiming that women have to sleep with powerful men to become journalists, Tamil Nadu BJP leader S Ve Shekher said he shared the post "by mistake" without reading it.
Summary:
Slamming the government for high fuel prices, Former Finance Minister P Chidambaram said, "Last four years...BJP government has lived off an oil bonanza.
Summary:
Ahmedabad crime branch officials arrested police inspector Anant Patel in â¹12-crore Bitcoin extortion case on Thursday.
Summary:
The Bombay High Court has remarked that "India seems to be nothing but a country of crimes and rapes".
Summary:
India has demanded legal action against those involved in the incident.
Summary:
Russia will not offer to host a meeting between US President Donald Trump and North Korean leader Kim Jong-un, Russian Foreign Minister Sergey Lavrov has said.
Summary:
Several couples and alleged sex workers were flogged publicly in Indonesia's Aceh province on Friday for allegedly indulging in public display of affection and offering sexual services respectively.
Summary:
India's largest IT firm Tata Consultancy Services' shares jumped 6.98% to an all-time high on Friday, adding over â¹42,000 crore to its market capitalisation.
Summary:
Filmmaker Hemal Trivedi, while accusing director Shoojit Sircar of copying 'October' from Marathi film 'Aarti- The Unknown Love Story' directed by Sarika Mene, said, "She is in depression and has become suicidal." "She has already spent about â¹2 lakh in trying to get justice," he added.
Summary:
Actress Dakota Johnson, who portrayed the role of 'Anastasia Steele' in the 'Fifty Shades' film franchise, said, "No lie, [it] f*cked me up so much that I had to go [for] therapy." The film franchise contained scenes which required Dakota to go nude.
Summary:
'Baahubali' actor Rana Daggubati has said he didn't set out to be a "regular hero", adding, "My mantra has always been, 'Give me something new and I'll do it with all my heart'." He added, "I get restless if I don't do something.
Summary:
Praising son Ranbir, actress Neetu Kapoor took to Instagram and shared a video of the actor walking the ramp for designer Manish Malhotra on Thursday.
Summary:
Former Indian Premier League chief Lalit Modi has said that players could earn $1-$2 million per IPL game if the $12-million salary cap is relaxed.
Summary:
KKR captain Dinesh Karthik took to Instagram to share a collage comparing Rajasthan Royals captain Ajinkya Rahane's stumping in IPL 2018 to that of Michael Vaughan's dismissal in an ODI in 2004.
Summary:
Thiago pushed Malvestiti and tried to hit him again before his teammates and police intervened.
Summary:
Indian captain Virat Kohli took to Twitter to thank former Indian cricketer Sachin Tendulkar after the latter penned his profile for the TIME's 100 Most Influential People list.
Summary:
Turkish side Besiktas' manager Senol Gunes suffered a cut on his head after Fenerbahce fans threw objects at him during the Turkish Cup semi-final between two of the country's biggest teams.
Summary:
Summary:
Technology giant Apple might launch a 6.1-inch LCD iPhone with dual-SIM support for around â¹42,000, as per reports.
Summary:
The court dismissed a case filed by publisher Axel Springer, which was seeking to ban Adblock Plus, an extension that allows users to block advertisements.
Summary:
This comes after UP minister OP Rajbhar said officials didn't follow CM Yogi's orders as he is "weak".
Summary:
The Romanian government has adopted a memorandum to shift its embassy in Israel from Tel Aviv to Jerusalem, the leader of the ruling Social Democrat Party Liviu Dragnea said.
Summary:
Diamond, the world's hardest natural material, turns flexible when grown as ultrafine needles, an international team involving Indian researchers Subra Suresh and Amit Banerjee has discovered.
Summary:
On April 20, 2010, an explosion aboard the BP-owned Deepwater Horizon oil drilling rig in the Gulf of Mexico killed 11 workers and triggered the largest offshore oil spill in American history.
Summary:
Users are deleting Amazon and giving it a one-star rating after actress Swara Bhasker posted a tweet for the company in an apparent promotion.
Summary:
Arsenal manager Arsene Wenger has announced that he will leave the club at the end of the current season, ending an almost 22-year reign at the club.
Summary:
A man in Gurugram travels a distance of 700 kms every weekend to ensure the functioning of a school which teaches the students of a village in Uttarakhand.
Summary:
A Class 8 science textbook published by the Tamil Nadu government claims that preventing sexual abuse is the girl's responsibility and suggests ways for girls to prevent it, including not wearing "provocative dresses".
Summary:
A tailor's 27-year-old son has bagged the highest placement package of â¹19 lakh per annum at the Indian Institute of Management (IIM) Nagpur.
Summary:
The German city of Trier, the hometown of Karl Marx, is selling souvenirs of '0-euro' notes bearing Marx's face to celebrate his 200th birth anniversary, which falls on May 5.
Summary:
Syria's Foreign Ministry has returned the Legion of Honor award given to President Bashar al-Assad, saying he would not wear the honour of a country that was "slave" to the US.
Summary:
US President Donald Trump had asked FBI to clarify to the public that he wasn't under any investigation over the alleged Russian collusion in 2016 presidential elections, according to ex-FBI chief James Comey's memos.
Summary:
The Russian state media has aired an interview of a Syrian child who claimed he was made to pose as an alleged chemical attack victim.
Summary:
India's anti-trust watchdog CCI has penalised Eveready, Indo National (owns Nippo) and Panasonic Energy India for colluding to fix prices of zinc-carbon dry cell batteries.
Summary:
A UK court has directed the seizure of a $492 million luxury yacht owned by a Russian billionaire to enforce one of the UK's largest divorce payouts.
Summary:
The trailer of Irrfan Khan starrer Hollywood film 'Puzzle' has been released.
It is based on the 2010 Argentinian film of the same name.
Summary:
Actress Shilpa Shetty has invested â¹1.6 crore in Gurugram-based baby care products startup Mamaearth.
Summary:
He will reportedly play Salman's friend in the film.
He has an interesting role in the film," reports stated.
Summary:
Irrfan Khan and Saba Qamar starrer 'Hindi Medium' has earned â¹205.21 crore within two weeks of its release in China.
Summary:
Actor Ranbir Kapoor has said his mother Neetu Singh always taught him that a man is as good as the respect he shows a woman.
Summary:
Kajol, while wishing her daughter Nysa on her birthday, tweeted, "If you want true women's empowerment...have a daughter." She added, "There's nothing that breaks through cultural biases and preconceived notions faster than your own child!" While sharing a picture of Nysa on Instagram, Kajol wrote, "From crayons and teddy bears to a young lady.
Summary:
SRH's Manish Pandey attempted a catch near the boundary but threw the ball beyond the ropes for a six against KXIP on Thursday.
Summary:
Mocking Royal Challengers Bangalore for not retaining Chris Gayle, who slammed IPL 2018's first ton on Thursday, a user tweeted, "2 Minutes Of Silence For #RCB Who Retained Sarfaraz Khan Instead Of Chris Gayle." "RCB chose Sarfaraz over Gayle.
"RCB released Gayle, Watson and KL.
Summary:
Nanyang Technological University (NTU) has released a video showing an autonomous robot assembling furniture giant Ikea's chair in 8 minutes 55 seconds.
Summary:
Gurugram-based startup True Balance has raised $23 million from a consortium of investors including Line Ventures Corporation.
Summary:
The team based their claims on finding similar holes in two human skulls in France from the same period.
Summary:
The Supreme Court on Friday directed the Centre to seize the Mumbai properties of underworld don Dawood Ibrahim.
Summary:
Opposition parties led by Congress MP Ghulam Nabi Azad have submitted an impeachment motion against Chief Justice of India Dipak Misra to Rajya Sabha Chairman Venkaiah Naidu.
Summary:
New teaser from OnePlus has confirmed that OnePlus 6 will be an Amazon exclusive device.
Summary:
The post defended Tamil Nadu Governor Banwarilal Purohit, who recently stoked controversy after patting a female journalist's cheek.
Summary:
Meanwhile, the court upheld the conviction of former Bajrang Dal leader Babu Bajrangi.
Summary:
The amount was more than bank's market capitalisation of $29.6 billion and landed in an account at Deutsche Börse AG's Eurex clearinghouse.
Summary:
On April 20, 1862, French biologists Louis Pasteur and Claude Bernard developed a process to prevent alcoholic beverages from souring.
Summary:
Actor Pawan Kalyan has slammed actress Sri Reddy for abusing his mother on television.
Pawan Kalyan further questioned Telugu media for broadcasting Sri Reddy's remarks on television repeatedly.
Summary:
Whistleblower Christopher Wylie, who exposed the Facebook data scandal, has been named in TIME magazine's 100 Most Influential People of 2018 list.
Summary:
Qualcomm announced the plan to reduce the costs by $1 billion in January.
Summary:
After Rajya Sabha MPs of seven opposition parties submitted an impeachment notice against Chief Justice of India Dipak Misra, Congress leader Kapil Sibal alleged that the CJI misused his post.
Summary:
Billionaire Bill Gates has backed US-based startup EarthNow, which is working on deploying imaging satellites that will deliver real-time, continuous video of Earth.
Summary:
In a first, American scientists have grown miniature human brains in mice skulls that survived for an average of 233 days.
Summary:
Researchers are collaborating with several firms to develop the product on a larger scale for tackling oil spills.
Summary:
Over 45,000 Madarsa Board students had skipped the exam on the first day in Uttar Pradesh.
Summary:
The Uttar Pradesh government has withdrawn the Y-category security cover of the Unnao rape-accused BJP MLA Kuldeep Singh Sengar, officials said on Friday.
Summary:
Responding to a question about PM Narendra Modi meeting his Pakistani counterpart Shahid Khaqan Abbasi, Ministry of External Affairs (MEA) said the two didn't meet at the Commonwealth Heads of Government Meeting (CHOGM) on Thursday.
Summary:
China's earthquake department has admitted to accidentally reporting two major earthquakes that had never happened and were instead drills unintentionally released to public.
Summary:
Laws cannot be passed by Nigeria's Senate in the absence of the mace which is a symbol of authority on the Senate floor.
Summary:
India's richest man Mukesh Ambani was ranked 24 in Fortune's 2018 list of The World's 50 Greatest Leaders on his birthday on Thursday.
Summary:
Hemal Trivedi, a filmmaker and editor, has alleged that Shoojit Sircar's film 'October' has been copied from a Marathi film titled 'Aarti - The Unknown Love Story'.
Trivedi further said the Marathi film's director Sarika Mene is now in depression and has become suicidal.
Summary:
The International Olympic Committee has decided to help India prepare the country's medal hopefuls for the 2020 Tokyo Olympic Games "to tap into its great potential".
Summary:
A day after BJP leader H Raja called Rajya Sabha MP Kanimozhi DMK chief M Karunanidhi's "illegitimate child", BJP National General Secretary said the leader's remark doesn't represent the party's views.
Summary:
Researchers have reported the discovery of a new ant species from the Southeast Asian island of Borneo that explodes to defend its colony.
Summary:
Police said the refugees, who had reportedly entered India via Bangladesh, were trying to go to Delhi in search of jobs.
Summary:
However, Trump asked to let go of the investigation into Flynn, according to one memo.
Summary:
The restaurant was later towed back to the shore.
Summary:
Walter Moody, an 83-year-old man, was executed on Thursday by the US state of Alabama, making him US' oldest inmate put to death since the Supreme Court reinstated the death penalty in 1976.
Summary:
Ahead of assembly elections in Karnataka, a couple from state's Haveri district has got their wedding invitations designed like a voter ID to urge people to vote.
Summary:
Russia's Ministry of Construction has ordered to allot space for cats in the basement of all apartment blocks.
Summary:
Ishaan Khatter starrer 'Beyond The Clouds', which released today, "is a story of hope...in the times of despair," wrote Bollywood Hungama.
It has been rated 2.5/5 (Bollywood Hungama, HT) and 3.5/5 (TOI).
Summary:
The new and final trailer of Ryan Reynolds starrer superhero film 'Deadpool 2' has been released.
Directed by David Leitch, 'Deadpool 2' is scheduled to release on May 18.
Summary:
Professional surfer Laird Hamilton rescued over a dozen people who were left stranded after the Hawaiian island of Kauai was swept with floodwaters.
Summary:
Apple has unveiled a new robot 'Daisy' which can disassemble iPhones to recover components that contain high-quality materials.
Summary:
Shivakumar, who is currently serving as the state's Energy Minister, had declared assets worth â¹251 crore ahead of 2013 Assembly Elections.
Summary:
Bakliwal then tried to reset the password on the accused's app but didn't receive an OTP.
Summary:
The team squeezed plasmons, which are electrons interacting strongly with light, into a gap between metal and graphene, a 2D form of carbon.
Summary:
Japanese researchers claim to have discovered rare-earth mineral deposits weighing 16 million tonnes near the Pacific island of Minami-Torishima.
Summary:
US President Donald Trump's nominee James Bridenstine was confirmed as NASA's 13th administrator after two days of voting, which saw a senator switching his decision to break the 49-49 tie.
Summary:
However, when the scientists replaced the reducing agent with water microdroplets, they were surprised to see the reaction still yielded gold nanoparticles.
Summary:
Dr Kafeel Khan, who is in jail in connection with the death of over 60 children at Gorakhpur's BRD Hospital last year said he was being falsely implicated and the incident is an administrative failure.
Summary:
After the Supreme Court dismissed petitions demanding an independent probe into Judge BH Loya's death, Congress spokesperson Randeep Surjewala said the verdict marked a sad day in Indian history.
Summary:
Delhi has become the first Indian city to approve a policy directing power distribution companies to provide â¹50 to residents for the second hour of an unscheduled power cut and â¹100 for every subsequent hour.
Summary:
More than 24,000 government officials applied for Maharashtra government's â¹34,000 crore crop loan waiver scheme.
Surprisingly, 24,221 of them were state government officials," an official said.
Summary:
The analysis by the NGO also revealed that such crimes have increased five-fold in the past decade.
Summary:
Actor Ranbir Kapoor and his ex-girlfriend, actress Deepika Padukone turned showstoppers for designer Manish Malhotra at the 2018 Mijwan Fashion Show.
Summary:
Summary:
Following India's performances in hockey at the recently concluded Commonwealth Games 2018, Indian hockey's high-performance director David John has requested for a sports psychologist to help the players.
Summary:
New ZealandâÂÂs PM Jacinda Ardern, who has featured on TIME magazine's annual list of 100 most influential people, has been described as "political prodigy" by FacebookâÂÂs COO Sheryl Sandberg.
Summary:
Wong has over 15 years of experience in digital media space and previously served Time as President of Digital and as its COO.
Summary:
A 17-year-old student in Madhya Pradesh went into depression after his entrance exam admit card showed his father's name as the candidate, the boy's father has claimed.
Summary:
The headless body of a six-year-old girl, who went missing on April 12, was found in a field in Uttar Pradesh's Pilibhit on Thursday, police said.
Summary:
Police said the accused had lured the girl away from her family, raped her and then murdered her by smashing her head with a stone.
Summary:
Meanwhile, some schools have collected books from the students of the previous session.
Summary:
The Indian Army on Thursday busted a terrorist hideout in Jammu and Kashmir's Doda district and recovered several arms and ammunition.
Summary:
World's richest person and Amazon CEO Jeff Bezos earned â¹54 lakh as salary from the e-commerce giant in 2017.
Summary:
The Kingdom of eSwatini, which was a British protectorate for more than 60 years, is Africa's last absolute monarchy.
Summary:
Like the SP and BSP leaders, CM Yogi is running the system under the influence of a group of few IAS officers, he alleged.
Summary:
BJP MLA Sanjay Patil has claimed that the upcoming Karnataka Assembly elections are about matters related to Hindus and Muslims and not civic issues such as roads and drinking water.
Summary:
SBI Chairman Rajnish Kumar has said the problem of cash crunch being faced by some states will be resolved by Friday.
Summary:
China has proposed to build an economic corridor with India and Nepal through the Himalayas in a bid to enhance connectivity.
Summary:
Describing the Kathua rape case as "revolting", IMF chief Christine Lagarde said, "I would hope that the Indian authorities, starting with Prime Minister Modi pay more attention." She added that she told PM Modi he didn't talk enough about women during his World Economic Forum speech in January.
Summary:
In her letter to the Chief Ministers of all states, Women and Child Development Minister Maneka Gandhi has suggested that police officials should be re-trained for handling sexual offence cases.
Summary:
Pakistan's largest TV network, Geo News, has been allowed back on air after it agreed to show the military in a positive light, officials working for the channel said.
Summary:
She has now filed a federal sexual harassment complaint against the firm.
Summary:
Apart from the Munjal-Burman team, Manipal Health, IHH Healthcare, and China's Fosun International have made offers to invest in Fortis.
Summary:
SBI Chairman Rajnish Kumar has said the time is not ripe for large-scale privatisation of state-owned banks given India's current socio-economic conditions.
Summary:
SEBI found that persons involved in alleged insider trading were 'friends' on Facebook and they 'liked' each other's photos.
Summary:
The defeat was also SRH's first at Mohali in five IPL matches.
Summary:
After being named Man of the Match for scoring 104*(63) against SRH, KXIP's Chris Gayle said Virender Sehwag saved the IPL by picking him at the auction.
Summary:
Summary:
The match has been arranged to raise money for reconstruction of Caribbean stadiums that were damaged by hurricanes last year.
Summary:
Chhattisgarh CM Raman Singh on Thursday said that Congress President Rahul Gandhi had visited "all temples" like students who fail to study and are afraid of exams.
Summary:
Condemning the Kathua rape case, National Conference President and former J&K CM Farooq Abdullah has said his party would introduce a law to award capital punishment in such cases if it comes back to power.
Summary:
The convicts had kidnapped the TMC workers from their villages and lynched them.
Summary:
A police constable from Navi Mumbai has been booked for allegedly molesting a woman constable on Thane court premises following an argument over giving water to an accused.
Summary:
Police arrested at least seven people in connection with the case and Section 144 was imposed in the area.
Summary:
A man in Delhi's Badarpur was allegedly stabbed to death by three of his neighbours after an argument broke out between them over parking his bike on Tuesday.
Summary:
After the Supreme Court restored Hadiya's marriage in the Kerala love jihad case, her father KM Ashokan said he was more pained by Hadiya's accusations against him than the SC verdict.
Summary:
Summary:
This is a part of the global deal, valued at about â¹27,728 crore, under which P&G will acquire German firm Merck's consumer health business.
Summary:
With this, the 38-year-old extended his record for the most centuries in the Indian Premier League to six.
Summary:
Pakistani actor-singer Ali Zafar has denied the sexual harassment allegations made against him by actress-singer Meesha Shafi.
Summary:
Actress Mallika Rajput has resigned from the BJP saying that as a woman, she does not feel safe in the party which protects its rape-accused members.
Summary:
Summary:
Gayle, who scored 104*(63) against SRH, has hit 21 T20 tons, three times more than the next best (7).
Summary:
The England and Wales Cricket Board has proposed a 100-ball format for cricket.
Summary:
Maintaining that India did not conduct surgical strikes against Pakistan in 2016, Pakistan said, "Constant repetition of a fallacious claim doesn't make it real.
Summary:
The British government on Wednesday announced a new India-UK trade partnership wherein India will invest over â¹9,000 crore in the country.
Summary:
The report added that the share of Indian adults with an account has more than doubled since 2011 to 80%.
Summary:
The Indian flag displayed among the 53 Commonwealth nations' flags in London's Parliament Square was pulled down from the flagpole amid protests by Kashmiri and Khalistani separatist groups on PM Narendra Modi's arrival in Britain.
Summary:
Prime Minister Narendra Modi on Thursday took to Twitter to share a 10-line poem titled 'Ramata Ram Akela' he wrote in Gujarati.
Summary:
Former Playboy model Karen McDougal has reached an agreement with a media firm to share her story about an alleged affair with US President Donald Trump.
Summary:
North Korea has committed to achieve a "complete denuclearisation" of the Korean Peninsula, South Korean President Moon Jae-in has said.
Summary:
US President Donald Trump and North Korean leader Kim Jong-un have featured on TIME magazine's annual list of 100 Most Influential People.
Summary:
A village in Pakistan's Rawalpindi has been named after Nobel Peace Prize winner Malala Yousafzai.
Summary:
The UK has proposed to ban the sale of plastic straws, drink stirrers and plastic-stemmed cotton buds in a bid to tackle marine pollution.
Summary:
India's domestic air passenger traffic witnessed its highest growth in 32 months in March, according to data released by aviation regulator DGCA.
Summary:
The Supreme Court has allowed the Sahara Group to sell a part of its Aamby Valley property by May 15 to raise money in order to refund investors.
Summary:
Australia's Commonwealth Bank has told a government inquiry panel that some of its financial advisers kept charging clients even after they died.
Summary:
The CBI on Wednesday questioned Sunil Bhuta, the CFO of Deepak Kochhar's NuPower Renewables, in connection with the Videocon loan case.
Summary:
The Corporate Affairs Ministry has also sought to invoke powers including removal of the management and recovery of undue gains.
Summary:
In the first 15 matches of the eight-team tournament, the toss-winning captains had all decided to bowl first.
Summary:
Talking about fan frenzy in India, captain Virat Kohli said that he still gets "uncomfortable" when attention comes his way.
Summary:
CSK arranged a special train called 'Whistle Podu Express' to take around 1,000 fans from Chennai to Pune for their home match against RR on Friday.
Summary:
Virat Kohli has said players shouldn't work on their skills for the financial security that IPL provides as then they wouldn't be honest to their sport.
"Shortcut's a quicker way to get things but people fade away very quickly," he further said.
Summary:
Around 15 visually impaired people protested outside the Kerala Secretariat on Wednesday, claiming that they faced problems in distinguishing the new currency notes introduced after demonetisation in 2016.
Summary:
The residents of Maharashtra's Kalyan have put up a hoarding resembling banners displayed for political leaders' birthdays with birthday wishes for a dog named 'Max Bhai'.
Summary:
In a Twitter post, Meesha wrote, "These incidences didn't happen when I was...just entering the industry.
Summary:
In his police complaint which has been leaked online, Kapil Sharma has accused his ex-girlfriend and ex-manager Preeti Simoes of spreading rumours about him and demanding â¹25 lakh to stop.
Summary:
Cuba's National Assembly has appointed First Vice President Miguel Mario DÃÂaz-Canel Bermúdez as the country's President, replacing Raúl Castro who retired on Thursday.
Summary:
Deepika Padukone has featured in TIME magazine's 100 Most Influential People list for 2018.
Summary:
Chile's Celino Villanueva Jaramillo, believed to be the world's oldest person, died aged 121 on Wednesday.
Summary:
In an accompanying tribute, cricket legend Sachin Tendulkar wrote, "Kohli's hunger for runs and consistency has become the hallmark of his game."
Summary:
Reports state that OnePlus is collaborating with Disney for a special "Avengers: Infinity War" edition of the forthcoming OnePlus 6.
Summary:
Bhavish Aggarwal, the Co-founder and CEO of ride-hailing startup Ola, has been named in TIME magazine's 100 Most Influential People of 2018 list.
Summary:
The couple said they earned â¹15 lakh per month when they earlier worked as software engineers.
Summary:
Former Yahoo CEO Marissa Mayer has set up a technology incubator called Lumi Labs at an old Google office.
Summary:
In an email to employees giving productivity recommendations, Tesla CEO Elon Musk said, "Walk out of a meeting or drop off a call as soon as it is obvious you aren't adding value." "It is not rude to leave, it is rude to make someone...waste their time," he added.
Summary:
An eight-year study into Austrian Hans Asperger, after whom the autism syndrome is named, has claimed the doctor collaborated with Nazis during WWII in killing children to maintain "racial hygiene".
Summary:
The Russian envoy to the UN, Vassily Nebenzia, has said that British authorities are engaged in the systematic destruction of evidence related to the poisoning of former spy Sergei Skripal and his daughter Yulia.
Summary:
She said she risked a life sentence to take selfies in exotic locations and receive 'likes' on Instagram.
Summary:
A Twitter video of a wedding photographer hanging upside down from a tree has gone viral online.
Summary:
Ram Gopal Varma has revealed he told actress Sri Reddy he could get a big settlement for her from any member of producer Suresh Babu's family, but she refused it.
Summary:
A new song titled 'Badumbaaa' from Amitabh Bachchan and Rishi Kapoor starrer '102 Not Out' has been released.
While both Amitabh and Rishi have sung the song, Amitabh has also rapped for it.
Summary:
Actor Kartik Aaryan will be conferred with the Dadasaheb Phalke Excellence Award for his performance in the film 'Sonu Ke Titu Ki Sweety'.
Summary:
Malavika further said, "I was cast because I fit the character."
Summary:
According to reports, actor Rajesh Kumar, known for playing the character 'Rosesh' in 'Sarabhai Vs Sarabhai', will be starring in the upcoming film 'Student Of The Year 2'.
Summary:
Summary:
Pacquiao has invested in Singapore-based Global Crypto Offering Exchange and his cryptocurrency "PAC Token" will be unveiled later this year.
Summary:
After the Supreme Court dismissed petitions seeking an independent probe into Judge BH Loya's death, Home Minister Rajnath Singh has said that an attempt to malign senior leaders of BJP has failed.
Summary:
Reacting to the Supreme Court dismissing pleas for a probe into Judge Loya's death, BJP spokesperson Sambit Patra said that Congress chief Rahul Gandhi should be ashamed for trying to "malign the judiciary".
Summary:
Davidson said the move will pose a concern for US' defence ties in the Indo-Pacific.
Summary:
A third-year PhD student of IIT-Kanpur allegedly committed suicide by hanging himself from a ceiling fan in his hostel room on Wednesday.
Summary:
The phrase was however adopted from philosopher Herbert Spencer who used it in his writings, after reading Darwin's previous works.
Summary:
The 18,425-kg station was intentionally crashed into the Pacific Ocean 175 days after its launch.
Summary:
The reports had claimed that Manu, who was initially sitting on a chair, moved to the floor after VVIPs arrived.
Summary:
Mumbai-based used cars selling startup Truebil has announced it is hiring interns who are over 60 years of age.
Summary:
New and existing investor participated in the funding round of BenevolentAI which has raised over $200 million since it was founded in 2013.
Summary:
A 35-year-old woman was allegedly gangraped by her father and his two friends in Uttar Pradesh's Sitapur district.
Summary:
Deepika Singh Rajawat, the lawyer representing the eight-year-old Kathua rape victim, on Wednesday clarified that she didn't collect money in the name of the victim at Jawaharlal Nehru University, as claimed by Bakarwal leader Waqar Bhatti.
Summary:
The airline also directed the senior pilot not to perform his duties as an instructor till further orders.
Summary:
The Union government on Wednesday launched the 'Study in India' programme to attract foreign students to India.
Summary:
Ahead of North Korea's summits with South Korea and the US, the state media referred to leader Kim Jong-un's wife Ri Sol Ju as the "respected First Lady".
Summary:
In the midst of a cash shortage in ATMs across India, shopkeepers performed an 'aarti' outside an ATM in Kanpur on Wednesday.
Summary:
The new rules stipulate that banks must implement a debt resolution plan within 180 days for bad loan accounts worth at least â¹2,000 crore.
Summary:
India's richest man and Reliance Industries Chairman Mukesh Ambani was actually not born in India.
Summary:
The wealth of India's richest person Mukesh Ambani can keep the country's government running for 20 days, according to Bloomberg.
Summary:
Antilia features three helipads, a ballroom, a 50-seater cinema, nine elevators and a six-storey garage that can house 168 cars.
Summary:
Ambani received the security in 2013 after he allegedly received threatening letters from a banned terrorist group.
Summary:
Telugu actress Madhavi Latha was arrested by the Hyderabad Police for protesting in front of the Telugu Film Chamber of Commerce.
Summary:
Ram Gopal Varma has said he was the one who instigated actress Sri Reddy to abuse actor Pawan Kalyan "to gain more attention".
Summary:
This is the second time that Ronaldo has scored in 12 consecutive club matches.
Summary:
While some people said he should have focused on helping a critically injured passenger, others said he provided important images.
Summary:
"The work that is happening in Delhi government schools is hitting people hard," she added.
Summary:
Bengaluru-based chai retailing startup Chai Point has raised $20 million in its Series C funding round led by Paragon Partners.
Summary:
Researchers at ETH Zurich have developed a skin implant which recognises the four most common types of cancer- prostate, lung, colon and breast cancer at a very early stage.
Summary:
A US-based study has shown how butterfly-shaped "winds" ejected by two co-orbiting black holes, in combination with gases ejected by stars, likely stopped a galaxy's star formation.
Summary:
Security has been beefed up and search operations are being carried out in Punjab's Pathankot district after terrorists movement was reported in the area.
Summary:
The accused had lured the girl into fields and she was later found lying unconscious outside the village.
Summary:
Senior judge Kolla Ranga Rao in TelanganaâÂÂs Mahbubnagar on Wednesday became the fourth judge in a month to be accused of corruption in the state.
Summary:
The Supreme Court on Thursday dismissed petitions seeking an independent probe into Judge BH Loya's death.
Summary:
Soon after the Supreme Court dismissed pleas seeking an independent probe into the death of Judge BH Loya on Thursday, the court's website was reportedly hacked by 'HighTech Brazil HackTeam'.
Summary:
India is now the world's sixth largest economy, displacing France, with a Gross Domestic Product (GDP) of $2.6 trillion in 2017, according to the International Monetary Fund (IMF).
Summary:
Named after fifth-century Indian astronomer and mathematician Aryabhata, India's first satellite was launched on April 19, 1975.
Summary:
A 96-year-old Mexican woman named Guadalupe Palacios has enrolled in high school, alongside classmates eight decades younger.
Summary:
The world's largest Lego replica of the Titanic, built by an Icelandic boy with autism, has gone on display at a US museum.
Summary:
The Union Aviation Ministry has recommended increasing the compensation for flight delays that cause flyers to miss connecting flights to â¹20,000.
Summary:
What happens instead is allegations," PM Modi added.
Summary:
BJP MLC Bukkal Nawab in Uttar Pradesh has been 'expelled' by Islamic seminary Darul Uloom Ashrafia for visiting a Hindu temple in Lucknow.
Summary:
Reacting to the Supreme Court dismissing pleas for an independent probe into Judge BH Loya's allegedly suspicious death, senior advocate Prashant Bhushan said it was a "black day" in the court's history.
Summary:
Saudi Arabia on Wednesday launched its first commercial movie theatre, ending an over 35-year ban on cinemas.
Summary:
Karan Johar has become the first filmmaker from India who will get his wax statue at Madame Tussauds Museum.
Summary:
Reports said that despite several suggestions of going back to Mumbai, Akshay decided to stay on location.
Summary:
This is Facebook's first downgrade since it was reported that millions of its users' data was exploited to influence the US elections.
Summary:
Facebook will also let users choose whether they want their data to be used to show them ads.
Summary:
Technology giant Google is reportedly testing a feature in Maps that gives users directions based on local landmarks.
Summary:
Mumbai-based online insurance startup Coverfox has raised $22 million in its Series C funding round led by International Finance Corporation, a sister organisation of the World Bank.
Summary:
Researchers found 30% of corals died due to bleaching along the 2,300-km World Heritage-listed reef off Australia's coast from March-November 2016.
Summary:
A group of Australian-led astronomers has revealed the "DNA" of over 340,000 Milky Way stars to search for "lost siblings" of the Sun, now scattered across the sky.
Summary:
NASA and Caltech scientists are improving the world's largest superconducting camera that can spot planets around stars near our Solar System.
Summary:
The victim had been arrested for abetment to suicide and rioting on April 7 and died at a hospital on April 9.
Summary:
A man was allegedly abducted, held in captivity for 24 hours and murdered by his employer on suspicion of stealing a gold chain in Fatehpur district of Uttar Pradesh.
Summary:
Summary:
The resignation of NIA special court judge Ravinder Reddy, who delivered the verdict in the Mecca Masjid blast case, has been reportedly rejected by the Hyderabad High Court.
Summary:
Following the accident, Hegde had claimed it was a "serious attempt" on his life and called a press conference on Wednesday to reportedly talk about it.
Summary:
A video showing a house explosion in the US state of Texas after a vehicle crashed into it and struck a gas line has surfaced online.
Summary:
The US Senate on Wednesday voted to allow members to bring their newborns onto the chamber floor.
Summary:
Facebook has started rolling out a feature in India that allows Android users to recharge their prepaid mobile numbers.
Summary:
The American Revolution was a political and military conflict between Great Britain's 13 North American colonies and the colonial government, which represented the British crown.
Summary:
A new trailer of 'Jurassic World: Fallen Kingdom', the sequel to the 2015 film 'Jurassic World', has been released.
Summary:
Microsoft is launching a product based on former rival technology Linux kernel for the first time, announcing a new operating system Azure Sphere.
Summary:
Facebook, Microsoft and 32 other global technology and security companies have signed a Cybersecurity Tech Accord, pledging to defend customers from malicious attacks by cybercriminal enterprises and nation-states.
Summary:
Summary:
Elon Musk-led SpaceX on Wednesday launched NASA's space telescope TESS (Transiting Exoplanet Survey Satellite) to search for other planets orbiting distant stars, aboard Falcon 9 rocket.
Summary:
India's second Moon mission, the Chandrayaan-2, whose launch has been postponed to October-November 2018, would cost a total of â¹800 crore, Indian Space Research Organisation Chairman K Sivan said on Wednesday.
Summary:
Speaking at the 'Bharat Ki Baat Sabke Saath' event in London, PM Narendra Modi said, "Rape is rape, be it now or earlier.
There cannot be a worse way to deal with this issue," PM Modi added.
Summary:
A 35-year-old man from Goa has been arrested for allegedly posting fake news on Facebook claiming Chief Minister Manohar Parrikar has died.
Summary:
The Centre has decided to set up the Defence Planning Committee (DPC), chaired by National Security Adviser Ajit Doval, to formulate military and security strategy.
Summary:
Summary:
The Centre has done away with the requirement of commercial licences to drive taxis, auto-rickshaws and e-rickshaws, allowing commercial drivers to use their personal licences.
Summary:
Claiming that nobody has ever been tougher on Russia than him, US President Donald Trump has said he may impose new sanctions on Russia if necessary.
Summary:
US President Donald Trump has said he will "walk out" if his planned talks with North Korean leader Kim Jong-un are not "fruitful".
Summary:
After US President Donald Trump called James Comey a "slime ball" over his upcoming book 'A Higher Loyalty: Truth, Lies and Leadership', the former FBI Director said, "I'm like a breakup Trump can't get over." Comey has made revelations regarding his interactions with Trump in the book.
Summary:
Jim Corbett National Park, which was established in 1936 in present-day Uttarakhand, was the first national park in India.
Summary:
A woman in United States' Indianapolis took her pet racoon to a fire station at night to seek treatment for the animal after it had "smoked too much weed," the fire department said.
Summary:
Several train carriages carrying tonnes of human waste from New York have been stranded in the southern US town of Parrish for over two months.
Summary:
Speaking about his character in the upcoming film 'Thugs of Hindostan', Aamir Khan said, "I'm playing a character who cannot be trusted at all...For money he can sell his mother out." "But the character is a very entertaining guy," he added.
Summary:
Speaking about her career in the US, Priyanka Chopra said, "The hardest part of starting work in America, after having an almost 15-year career elsewhere was to have to walk into a room and introduce myself." She added, "When you want something bad enough, you find a way of doing it.
Summary:
Actor Salman Khan will be singing a romantic song for the upcoming film 'Race 3'.
The lyrics of the song have reportedly been penned by Salman himself.
Summary:
Social media company Facebook is building a team to design its own semiconductors, according to reports.
Summary:
Earlier, reports said key Flipkart investors have agreed to sell their stakes.
Summary:
The fund will invest a total of $2 million in startups that it mentors and plans to conduct one cohort every year.
Summary:
Mumbai Railway Vikas Corporation has submitted a proposal to construct elevated decks at 19 railway stations on Central, Western and Harbour lines in a bid to decongest stations which receive heavy footfall.
Summary:
Puerto Rico has faced widespread power outages since Hurricane Maria destroyed several electric grids on the island last year.
Summary:
Future Group's fbb, is back with World Shorts Day this April 22 and has introduced the hashtag #DropThePants encouraging everyone to wear shorts and bring out their sexy self.
Summary:
"We were calling them...they were scared to come on phone," he added.
Summary:
Hollywood filmmaker Steven Spielberg has become the first director whose films have earned over $10 billion (â¹65,000 crore) worldwide.
Summary:
As many as 1,74,373 deaths have occurred on screen between season one and the end of season seven of the HBO fantasy series Game of Thrones.
Summary:
The Supreme Court on Wednesday asked BJP President Amit Shah's son Jay Shah and news portal The Wire to "sit together and try to sort" out the defamation case.
Summary:
Addressing a gathering at London's Central Hall Westminster on Wednesday, PM Narendra Modi said people in a democracy are equivalent to Gods as "a tea-seller can become their representative and shake hands at the Royal Palace".
Summary:
Further, SC/ST brides will get â¹40,000 if they marry within their own community, while OBC brides will get â¹30,000 for the same.
Summary:
An NGO, in association with the Karnataka government, has announced plans to appoint a 'Bicycle Mayor' in Bengaluru to promote cycling in the city.
Summary:
Iran has banned all government bodies from using foreign-based messaging apps to communicate with citizens, Iran's state media reported.
Summary:
Warning against the "wrong" and "untraditional" practices of indulging in oral sex, Ugandan President Yoweri Museveni has said that one's "mouth is for eating, not for sex." Museveni blamed "outsiders" for trying to convince Ugandans to perform oral sex on one another.
Summary:
A UN security team was attacked in Syria on Wednesday while visiting a suspected chemical attack site in Douma.
Summary:
The suspected mastermind behind the theft of 600 computers worth $2 million used to mine Bitcoin and other cryptocurrencies has escaped prison in Iceland and likely fled to Sweden, officials said.
Summary:
The Income Tax Department has issued directives to its officers, asking them to be courteous and polite when dealing with taxpayers.
Summary:
Under the 'ease of doing business' initiative, the Maharashtra government has approved to set up a 'single window system' to issue online permission required for shooting movies, commercials, documentaries on government land.
Summary:
Varun Dhawan, on being asked about the kind of roles he'll pick in future, said, "I don't just want to push the envelope, but tear it." "I'm not interested in doing unconventional roles that don't go all the way," he added.
Summary:
After RCB's Umesh Yadav was caught out on the bowling of MI's Jasprit Bumrah on Tuesday, the umpires consulted with third-umpire to check if the pacer had overstepped.
Summary:
Royals' last defeat in an IPL match at Jaipur had come at the hands of Mumbai Indians on May 20, 2012.
Summary:
Meanwhile, De Villiers said, "But players who play 360 shots aren't skilled to hit the ball in the V for six consistently (like Kohli)."
Summary:
The Lingayats constitute an estimated 17% of Karnataka's population.
Summary:
In an apparent reference to DMK chief Karunanidhi and his daughter Kanimozhi, BJP leader H Raja asked if journalists would question a leader who made his "illegitimate child" an MP like they questioned Tamil Nadu Governor Banwarilal Purohit.
Summary:
PM Modi earlier met Prince Charles at an exhibition called '5000 Years of Science and Innovation in India'.
Summary:
The State Bank of India Deputy Managing Director Neeraj Vyas on Wednesday said the availability of cash in ATMs had improved in the last 24 hours and efforts are on to improve it further.
Summary:
A fake video claiming to depict the funeral procession of the eight-year-old rape victim from Jammu and Kashmir's Kathua has been widely circulated on social media and received over 1 million views on YouTube.
Summary:
Police arrested two women who befriended the child's mother who was waiting for check-up and fled with the baby when the mother wasn't there.
Summary:
The draft proposes barring employees from criticising central or state government while interacting with media without the prior permission of the Vice Chancellor.
Summary:
India and the Nordic nations agreed to enhance cooperation on various issues, including global security and economic growth at the summit.
Summary:
US President Donald Trump on Wednesday slammed pornstar Stormy Daniels over the sketch of a man who she claimed threatened her to hide her alleged affair with Trump, calling it "a total con job".
Summary:
After lyricist Javed Akhtar slammed the NIA after the acquittal of all five accused in Mecca Masjid blast, BJP spokesperson GVL Narasimha Rao questioned Akhtar if he had coined the term "Hindu Terror" for Congress.
Summary:
Kapil further said, "I promise you I'll be entertaining you again."
Summary:
The system transmits a vibration pattern representing words in the message to the users' arm for the purpose.
Summary:
Technology giant Apple has filed a patent to turn the AirPods case into a wireless speaker to enable users to listen to music while charging.
Summary:
After Congress President Rahul Gandhi said PM Narendra Modi won't be able to speak in the Parliament for 15 minutes, the BJP said the 47-year-old cannot speak anywhere for 15 minutes without consulting a slip.
Summary:
AAP spokesperson Raghav Chadha has sent a â¹2.50-demand draft to Home Ministry as refund of the pay he received during his tenure as advisor to Delhi government.
Summary:
After all BJP ministers submitted their resignation from the Jammu and Kashmir Cabinet to state party chief Sat Sharma, he said the party's alliance with the PDP is "strong as ever".
Summary:
Talking about Tesla generating profits, CEO Elon Musk has said, "All capital or other expenditures above a million dollars...should be considered on hold until explicitly approved by me." Now that Tesla has reached economies of scale, it'll be more rigorous about expenditures, he added.
Summary:
He was arrested again a day after escaping the jail.
Summary:
Users can manually blacken the Aadhaar number and use the printout with the new QR code for establishing identity offline.
Summary:
Officials put bottles every two metre on the tree to inject it with chemicals to kill termites.
Summary:
New Zealand's PM Jacinda Ardern has said in an interview that she was "infuriated" on being compared to US President Donald Trump over immigration.
In September last year, a Wall Street Journal story had claimed Ardern is more like Trump on immigration.
Summary:
Confirming reports about the meeting between US' Central Intelligence Agency chief Mike Pompeo and North Korean leader Kim Jong-un, US President Donald Trump on Wednesday said the two formed a good relationship.
Summary:
This came in response to similar restrictions imposed on US diplomats in Pakistan.
Summary:
US President Donald Trump has said both North and South Korea have his "blessing" as the two countries plan to discuss a potential end to the Korean war.
Summary:
Iraq has sentenced more than 300 people to death over links to the Islamic State, according to reports.
Summary:
A London-Ahmedabad Air India flight was reportedly delayed by 2 hours last month when the pilot stopped the taxiing aircraft to throw down a phone forgotten by an technician.
Summary:
The cost of traffic congestion in Delhi, Kolkata, Mumbai, and Bengaluru is estimated to be $22 billion per year, according to a study commissioned by Uber.
Summary:
As per RBI data, out of the total currency in circulation, â¹18.43 trillion or 90% is in â¹2,000 and â¹500 notes, it added.
Summary:
SBI Research has pegged the cash shortage in the system at â¹70,000 crore, which is one-third of monthly withdrawals at ATMs. It said reports of cash shortage are "intriguing and defy logic", adding that currency in circulation has breached pre-demonetisation level of â¹17.84 trillion.
Summary:
Kings XI Punjab all-rounder Yuvraj Singh took to Instagram to share a video of Chris Gayle jokingly presenting himself as cake on the occasion of KL Rahul's 26th birthday on Wednesday.
Summary:
All-rounder Hardik Pandya took to social media to apologise to teammate Ishan Kishan, who was hit on the face by the former's throw during their Mumbai Indians' match against RCB on Tuesday.
Summary:
Former Pakistani captain Javed Miandad was the first-ever batsman to help his team win an ODI by hitting a six off the match's last ball.
Summary:
Summary:
While one of the accused has been arrested, police are conducting investigations to nab the other.
Summary:
Three people have been arrested over the rape of a minor girl in Delhi and uploading a video of the incident on WhatsApp. The incident occurred days ago when her neighbour invited her to his house and raped her while his two friends recorded it.
Summary:
A German theatre is being probed over its plans to offer free tickets to spectators who wear a swastika armband to a play named after Adolf Hitler's "Mein Kampf".
Summary:
The official teaser of Anil Kapoor's son Harshvardhan Kapoor starrer 'Bhavesh Joshi Superhero' has been released.
Summary:
Union Law Minister Ravi Shankar Prasad on Wednesday asked former PM Manmohan Singh to not compare his days to that of PM Narendra Modi's tenure.
Summary:
Reacting to reports of cash crunch in some states, Former Finance Minister P Chidambaram said that the "ghost of demonetisation has come back to haunt the government/RBI".
Summary:
Chief Minister Siddaramaiah and his son Yatheendra, Home Minister Ramalinga Reddy and his daughter Soumya, are among the duos.
Summary:
Vijay Mallya has told a London court that he gave away a Tipu Sultan sword in 2016 because his family told him it was bringing him "bad luck".
Summary:
A man was beaten and hung upside down by locals in Bihar's Darbhanga district on Tuesday after he allegedly stole a mobile phone.
Summary:
Vijay Mallya couldn't get a loan to buy a â¹4.6-crore Ferrari because of negative media coverage against him, a lawyer representing 13 Indian banks has told a UK court.
Summary:
One of the main convicts in the 1993 Mumbai bomb blasts, Tahir Merchant, died on Wednesday at a Pune hospital after complaining of chest pain.
Summary:
The Delhi High Court has told the aviation regulator DGCA that no pilot should fly for over 125 hours in 30 consecutive days.
Summary:
US President Donald Trump is seeking to replace US troops in Syria with an Arab force, reports quoting officials said.
Summary:
The CBI has registered a case against Delhi-based Surya Pharmaceuticals for allegedly cheating a consortium of five banks of â¹621 crore.
Summary:
Infosys CEO Salil Parekh has said the company has to sacrifice profit margins now by investing in skills and advanced technology.
Summary:
Starbucks' decision to close its 8,000 company-owned stores in the US for one afternoon next month could cost the company just $16.7 million, according to Bloomberg.
Summary:
Talking about his management style, Infosys CEO Salil Parekh said that he spends so much time talking to staff and customers because he doesn't like "second-hand" information.
Summary:
IMF kept its GDP growth forecast for India unchanged at 7.4% for 2018-19 and 7.8% for 2019-20.
Summary:
Fortis Healthcare on Tuesday said it has received an unsolicited non-binding offer from China's Fosun Health Holdings.
Summary:
"Such offences are punishable under various penal and prosecution provisions of the Income Tax Act," it added.
Summary:
Actor Salman Khan, while tweeting on Priyanka starring opposite him in her Bollywood comeback film 'Bharat', wrote, "'Bharat' welcomes you back home @priyankachopra.
Happy to be a part of 'Bharat'".
Summary:
Brendon McCullum smashed the only hundred by a KKR player in the first-ever IPL match against RCB at Chinnaswamy Stadium, Bengaluru on April 18, 2008.
Summary:
Kings XI Punjab's mentor-cum-director of cricket Virender Sehwag took to Twitter to share a picture of himself with a 93-year-old fan.
Summary:
A large group of octopuses and their eggs have been discovered off the Pacific coast of Costa Rica at depths of over 3 km, where they shouldn't be able to survive as per researchers.
Summary:
A pregnant woman from Pune has registered a complaint against her husband and two in-laws for assaulting her as they believed she was carrying a girl child, police said.
Summary:
TDP MLA Chinthamaneni Prabhakar allegedly slapped a man in Andhra Pradesh's Hanuman Junction after he intervened in an altercation between the MLA and a bus driver over a torn poster of CM Chandrababu Naidu.
Summary:
Summary:
Congress President Rahul Gandhi has said his constituency Amethi will be "as developed as Singapore and California" in 15 years.
Summary:
CCTV footage from a Muzaffarpur college has revealed that Vishal Jangotra, accused in the Kathua rape case, hadn't been writing his BSc exam during the incident as he claimed.
Summary:
After PM Narendra Modi posted pictures from his Sweden visit wherein a man was photographed twice shaking hands with him, VJ Jose Covaco tweeted, "Did this guy run ahead and put a cap on to disguise himself so he could shake Modiji's hand twice?" A user tweeted, "One is Ramesh...other is Suresh," while another wrote, "Wow!
Summary:
On learning about the Nazis attempting to make an atomic bomb, Albert Einstein wrote to then US President Franklin Roosevelt, urging him to conduct nuclear research.
Summary:
Tammie Jo Shults, the pilot who safely landed a Southwest Airlines flight after its engine exploded at 32,000 feet, had once worked with the US Navy as one of its first female fighter pilots.
Summary:
'Ae Watan', the first song from Alia Bhatt and Vicky Kaushal starrer 'Raazi' has been released.
Gulzar has penned the lyrics of the song.
Summary:
Dravid was named election icon for the Karnataka Assembly polls last month.
Summary:
Ishant picked up three wickets in the first innings and dismissed veteran English batsmen Ian Bell and Jonathan Trott in the second innings to register match figures of 5/69.
Summary:
BJP has asked all its ministers in Jammu and Kashmir to resign from the state cabinet to bring in fresh faces.
Summary:
Jammu and Kashmir CM Mehbooba Mufti has written to the Chief Justice of J&K High Court, requesting to set up a fast track court to conclude the Kathua rape case trial within 90 days.
Summary:
Tamil Nadu Governor Banwarilal Purohit on Wednesday apologised to the journalist who slammed him for patting her cheek after she asked him a question during a media interaction.
Summary:
A US restaurant is giving guests a chance to eat a tarantula burger as part of its 'exotic meat month'.
Summary:
An Australian couple ordered 300 McDonald's cheeseburgers at a cost exceeding $1,000 (â¹66,000) for 450 guests at their wedding after serving a six-course meal.
Summary:
A doctor removed a lighter from the stomach of a Chinese patient who believed he had swallowed it 20 years ago.
Summary:
Police officers have released surveillance footage of an alleged thief who used plastic meant for packaging bottled water to hide his face from a CCTV camera while robbing a US store.
Summary:
The CBI has arrested three promoters of Vadodara-based Diamond Power Infrastructure accused of allegedly defrauding 11 banks to the tune of â¹2,654 crore.
Summary:
Remo D'souza, who will direct the film, will reportedly be paid â¹12 crore.
Summary:
Summary:
Jacqueline Fernandez gifted a car to her makeup artist Shaan on the occasion of his birthday.
Summary:
India's chief national badminton coach Pullela Gopichand has revealed he did not watch the final between PV Sindhu and Saina Nehwal at the Commonwealth Games 2018.
"I will watch that final later for academic interest," he further said.
Summary:
RCB captain Virat Kohli, who was awarded the Orange Cap after his team's loss against MI on Tuesday, said, "I don't feel like wearing it right now because it really doesn't matter." "We just threw it away, and need to reflect on our dismissals," Kohli said about the loss.
Summary:
Bengaluru FC striker Sunil Chhetri scored with a curling kick in the 90th minute against Mohun Bagan in the second semi-final of the 2018 Indian Super Cup on Tuesday.
Summary:
Summary:
A woman was fined after she accidentally fell onto the baggage carousel at an airport in Russian capital city Moscow and ended up riding the conveyor belt all the way to the baggage room.
Summary:
Known as Muraka, the villa will comprise two floors, with one being submerged underwater.
Summary:
Using supercomputers, American scientists have modelled the behaviour of two magma chambers hidden below the surface of Yellowstone supervolcano, where the last major eruption happened 6.3 lakh years ago.
Summary:
Japanese firm Hitachi is set to carry out what it claimed to be the world's first experiment to test for cancer using urine samples.
Summary:
Wang added that Nepal's development should be a common understanding between China and India.
Summary:
The Rajasthan High Court has allowed a plea by the state police for pronouncement of trial court verdict in a rape case against self-styled godman Asaram on premises of Jodhpur Central Jail.
Summary:
Wife of 41st US President George HW Bush, Barbara had reportedly been battling chronic obstructive pulmonary disease and congestive heart problems in recent years.
Summary:
Facebook said when someone visits a website that uses its services, it receives information such as users' IP addresses and cookies.
Summary:
The court further warned that anyone who discloses rape victim's identity can be imprisoned for 6 months.
Summary:
People have launched a fund-raising campaign to buy Elon Musk a new couch after he complained that he slept on the floor as his old couch at Tesla office was too "narrow" and "terrible".
Summary:
Allison McIntyre, a senior engineer who manages NASA's astronaut training centre, has said in an interview "I think the first person on Mars should be a woman." "My centre director is a woman...
Summary:
University of Illinois researchers are developing artificial carbon fibre muscles that can lift up to 12,600 times their own weight, and support up to 60 MPa of mechanical stress.
Summary:
Rape-accused BJP MLA Kuldeep Singh Sengar's brother Atul Singh has been sent to 4-day police custody by a CBI court in connection with the death of Unnao rape victim's father.
Summary:
A journalist has slammed Tamil Nadu Governor Banwarilal Purohit for patting her cheek during a press conference instead of answering her questions.
Purohit was addressing the media to clear his name from 'sex for degrees' case.
Summary:
Speaking about Kathua rape case at Jammu and Kashmir's Shri Mata Vaishno Devi University, CM Mehbooba Mufti said, "How can someone do such a cruel thing to a small girl who is a manifestation of Mata Vaishno Devi." "There is something wrong with the society," she added.
Summary:
Referring to Shwetambri Sharma who is the only woman officer in the team probing the Kathua rape case, defence lawyer Ankur Sharma said, âÂÂWhat is Shwetambri, she is a girl, how intelligent can she be?â He added that she, being a new officer, was misguided in the case.
Summary:
A priest carried a Dalit man on his shoulders into the inner sanctum of a 400-year-old temple in Hyderabad and hugged him as part of the ancient 'Muni Vahana Seva' ritual.
Summary:
Addressing the Kathua rape case for the first time, President Ram Nath Kovind on Wednesday said, "After 70 years of Independence, such an incident occurring in any part of the country is shameful." "We have to think what kind of society are we developing.
Summary:
However, Rouhani said that Iran's military power was no threat to neighbouring countries.
Summary:
Criticizing India's education system for its emphasis on rote learning, Infosys Co-founder Narayana Murthy has said that about 80-85% of youngsters are not trained for any job.
Summary:
Tweeting a picture of a cobbler with a banner that read 'hospital for injured shoes', billionaire Anand Mahindra said, "This man should be teaching marketing at the Indian Institute of Management." 'Dr Narsiram' listed consultation timings, OPD and lunch hours on the banner.
Summary:
The UIDAI has reportedly told the Supreme Court that it has imposed a penalty of "crores of rupees" on Airtel and Axis Bank for breaching terms attached to Aadhaar authentication.
Summary:
Actor Abhishek Bachchan took to Twitter to slam a man who trolled him for living with his parents Amitabh Bachchan and Jaya Bachchan.
Just remember @juniorbachchan still lives with his parents," the troll tweeted.
Summary:
Meghna Gulzar, who has directed Alia Bhatt in the film 'Raazi', said, "She's tomboyish, almost to the point of being clumsy where she'd stumble frequently." "In the film, she was supposed to play this woman who's feminine and dressed in flowy fabrics," she added.
Summary:
Amazon has launched an Android web browser app called Internet which is designed to use minimal storage and data.
Summary:
Facebook data scandal-linked firm Cambridge Analytica was planning to raise $30 million by issuing its own cryptocurrency, reports have said.
Summary:
This comes a day before Nix was scheduled to appear for the hearing regarding the scandal wherein Facebook users' data was exploited to influence the US elections.
Summary:
The company will also generate a Snapcode for the filters and deep link it to open within Snapchat for 24 hours.
Summary:
Responding to a report which said nearly 60% of free Android apps used by children potentially violate a US law, Google has said, "If we determine that an app violates our policies, we will take action." Google added that it is taking the report "very seriously".
Summary:
Homegrown cab aggregator Ola is reportedly in talks with Bengaluru-based bike-sharing startup Vogo Automotive to lead a $5-7 million round of funding.
Summary:
A Maoist couple carrying a â¹5-lakh reward on their heads surrendered before Odisha Police on Tuesday.
Summary:
At least ten people were killed in West Bengal as twin storms lashed through Kolkata and suburbs on Tuesday night.
Summary:
For the second straight year, US President Donald Trump will hold a rally instead of attending the White House Correspondents' Association Dinner.
Summary:
An engine of a Southwest flight carrying 149 people exploded mid-air on Tuesday, killing one female passenger.
Summary:
The FBI started spying on renowned German-born scientist Albert Einstein when he moved to America in 1933, shortly before Adolf Hitler rose to power.
Summary:
The British Broadcasting Corporation (BBC) radio service in London announced that "there is no news" on April 18, 1930, following which piano music was played for the rest of the 15-minute news bulletin.
Summary:
The report pointed Apple remained the most profitable brand, capturing 86% of the total handset market profits in the period.
Summary:
After employees protested against Google's deal with US military, arguing that the company shouldn't be in "business of war", ex-Google CEO Eric Schmidt said, "The nature of AI is a long-term technology that will be useful for defensive and...
Summary:
Brittany Kaiser, a former employee of British firm Cambridge Analytica, has revealed that the number of users whose Facebook data was exploited "is much greater than 87 million." In the statement, she also said a "sex compass" quiz was used to obtain the data.
Summary:
Summary:
Diamonds found in a meteorite that exploded over Sudan in 2008 were formed deep inside a "lost planet" that once orbited the Sun, a Europe-based study has claimed.
Summary:
Addressing Indian diaspora at Stockholm University in Sweden, PM Narendra Modi said, "You might recall, one had to wait for days for LPG gas cylinder.
Summary:
Tripura CM Biplab Kumar Deb on Tuesday said, "Internet and satellite communication had existed in the days of Mahabharata." Justifying his statement, Deb added, "How could Sanjaya (the charioteer of King Dhritarashtra) give a detailed account and description to the blind king about the battle of Kurukshetra?
Summary:
Union Minister Anantkumar Hegde has said that he 'suspects a serious attempt on his life' after a truck had hit his escort vehicle on Tuesday.
Summary:
Defending Aadhaar in the Supreme Court, UIDAI on Tuesday said, "Institutions like Google do not want Aadhaar to succeed in India." UIDAI also stated that the algorithm used for Aadhaar was different from those used by Google or Cambridge Analytica.
Summary:
Summary:
Pornstar Stormy Daniels on Tuesday released a sketch of the man she says threatened her in 2011 to keep silent about her alleged affair with US President Donald Trump.
Summary:
Summary:
A 16th-century gold case carrying the heart of late Queen Anne of Brittany has been stolen from a museum in French city Nantes.
Summary:
This comes after two black men were wrongfully arrested while waiting in a Starbucks store in Philadelphia.
Summary:
Nineteen-year-old actor Riddhi Sen, while speaking about his National Award for Best Actor for the Bengali film 'Nagarkirtan', said, "Trust me, I will not take this award for granted." He added, "I was really surprised because in such a short time...
Summary:
Filmmaker Majid Majidi, who had approached Kangana Ranaut for his film 'Beyond The Clouds', said it's not true that she didn't accept the role offered to her.
Summary:
The first look poster of Harshvardhan Kapoor starrer 'Bhavesh Joshi Superhero' has been released.
'Bhavesh Joshi Superhero' has been scheduled to release on May 25.
Summary:
DD pacer Mohammad Shami has been summoned by Kolkata police on Wednesday following his team's IPL match against KKR at Eden Gardens on Monday.
Summary:
Russia has blocked IP addresses owned by Google and Amazon as they were being used by messaging service Telegram, Russia's state communications regulator said.
Summary:
The ship, which was bought for $100 million in 2007, has been renovated at a cost of more than $100 million.
Summary:
Summary:
Singapore-based Zimplistic, the developer of automatic roti-maker Rotimatic, has raised $30 million Series C funding round led by Credence Partners and EDBI.
Summary:
Around 22 wedding guests died and 23 were injured after the bus they were travelling in fell off a bridge in Madhya Pradesh's Sidhi on Tuesday.
Summary:
An Uber driver was arrested on Tuesday for allegedly harassing a woman passenger in New Delhi.
Summary:
Genius Picasso, a TV series chronicling the life and work of the Spanish painter Pablo Picasso premiers on National Geographic on April 25.
Summary:
After Albert Einstein's death on April 18, 1955, Princeton researcher Thomas Harvey removed his brain without prior permission during autopsy.
Summary:
Kohli, who slammed 92*(62), also became the first-ever batsman to score 5,000 runs for one team in T20 cricket.
Summary:
During the MI-RCB IPL match on Tuesday, two wickets in two balls occurred twice.
Summary:
National carrier Air India will now charge passengers for the advance reservation of middle seats in the front and the middle portions of the aircraft, it has said.
Summary:
Congress President Rahul Gandhi on Tuesday claimed that Prime Minister Narendra Modi has time to travel across the country but cannot spare 15 minutes to address the Lok Sabha.
Summary:
Andhra Pradesh CM Chandrababu Naidu will observe a day-long fast on his 68th birthday on April 20 to protest against the Centre's refusal to accord special status to the state.
Summary:
Citing a 2009 telegram sourced from WikiLeaks, BJP spokesperson Sambit Patra said Congress President Rahul Gandhi had told US ambassador Timothy Roemer that radicalised Hindu groups were a worse threat than terror outfit Lashkar-e-Taiba.
Summary:
The three-year fellowship will also provide seed capital, free mentoring, and accommodation to the students.
Summary:
The International Astronomical Union has named a crater on Pluto's largest moon Charon after a Mahabharat character, Revati, who is said to have been from a different "yuga" and linked to time travel.
Summary:
Retired IIT Kanpur professor HC Verma has dismissed a tweet that claimed he donates â¹1-crore royalty from his book 'Concepts of Physics' to PM Relief Fund and charity.
Summary:
Around 200 sanitation workers from Bengaluru's RR Nagar on Monday staged a protest against the Bruhat Bengaluru Mahanagara Palike (BBMP) over non-payment of their salaries for over three months.
Summary:
The Surat Police on Tuesday said it has identified the minor rape victim whose body was found with 86 injury marks, adding she was reported missing from Andhra Pradesh in October 2017.
Summary:
May further urged Commonwealth member states to reform the outdated laws, citing equality of human beings.
Summary:
CIA Director and US Secretary of State nominee Mike Pompeo made a secret visit to North Korea to meet leader Kim Jong-un earlier this month, according to reports.
Summary:
Tabu said she has worked with Mira Nair and Ang Lee, two of the biggest filmmakers in the West, so she is a bit spoilt when it comes to choosing Hollywood projects.
Summary:
Shilpa Shetty Kundra will be making her digital debut in a dating show called 'Hear Me. Love Me'.
"I'm thrilled to make my digital debut...
Summary:
The film, previously rumoured to be titled 'Shiddat', will also star Sonakshi Sinha and Aditya Roy Kapur.
Summary:
MI wicketkeeper Ishan Kishan on Tuesday suffered swelling near his right eye after getting hit by Hardik Pandya's throw.
Summary:
Kohli surpassed Gautam Gambhir to record most T20 fifties (54) among Indians.
Summary:
MI's Rohit Sharma and RCB's Virat Kohli slammed 94 and 92* runs respectively, marking the first instance that both captains scored in 90s in a T20 match.
Summary:
Hundreds of members of Christian and Dalit communities set fire to BJP flags in Andhra Pradesh's Chirala, accusing the party of supporting the distribution of hateful flyers against Jesus and the Bible.
Summary:
The Supreme Court on Tuesday ordered the demolition of illegal constructions at hotels and resorts in Himachal Pradesh's Kasauli, adding that the establishments were endangering people's lives for money.
Summary:
She further shared a similar incident which occurred years ago when the hotel served a non-vegetarian dish to her family instead of a vegetarian dish.
Summary:
"The method (is) acceptable in terms of animal welfare as well as practical," zoo officials said.
Summary:
The United Nations International Children's Fund (UNICEF) has helped set up an elementary school in Iraq's al-Zuhoor, nearly 14 years after the village's only school was destroyed by armed Islamist militants.
Summary:
Kohli and Raina are the only players who have scored 4,500-plus runs in IPL.
Summary:
No trace of semen was detected in the sample of the balloons thrown at two students of Delhi University's Lady Shri Ram College during Holi, a Central Forensic Science Laboratory report has revealed.
Summary:
"We're shocked and surprised that Mr Asgar, whom Mr Sharma has always considered a friend, would make such hurtful statements," said his team.
Summary:
Yadav achieved the feat by dismissing Mumbai Indians' Suryakumar Yadav and Ishan Kishan on Tuesday.
Summary:
However, the services on the social media platform, which went down on April 6 as well, were restored within an hour.
Summary:
Engineer Darshan Puttannaiah, who founded a US-based software company, has left his firm to contest the Karnataka elections from Melukote.
Summary:
The Delhi government has cancelled the appointment of nine advisors to its Cabinet based on a letter by the Home Ministry.
Summary:
The Indian Navy on Tuesday posted a tweet welcoming the Chinese Navy to the Indian Ocean region, along with photos of their vessels.
Summary:
While granting bail to accused Rameshwar Dass in Junaid Khan lynching case, the Punjab and Haryana High Court remarked that the fight began over seat sharing and casteist slurs.
Summary:
A 19-year-old man who posed as a junior resident doctor at AIIMS Delhi for five months was arrested after doctors noticed his participation in several social activities and protests.
Summary:
As many as 51 sitting lawmakers have cases of crimes against women filed against them, according to an Association for Democratic Reforms (ADR) report.
Summary:
In its annual report, the NGO criticised Pakistan's human rights record, claiming attacks against minorities were on a rise.
Summary:
South Korean actress Choi Eun-hee, who was kidnapped by North Korea on the orders of Kim Jong-un's father Kim Jong-il, has died aged 91.
Summary:
The Islamabad High Court on Tuesday sentenced a former additional district and sessions judge and his wife to one year in jail for torturing a 10-year-old domestic help.
Summary:
Electrosteel Steels has become the first of the twelve large bad loan accounts to be resolved under the Insolvency and Bankruptcy Code.
Summary:
Film director and producer Ram Gopal Varma has tweeted that with Telugu actress Sri Reddy's "Tsunamical impact", the Telugu film industry will be divided into "Before Sri Reddy and After Sri Reddy".
Summary:
Fans of actress Ileana D'Cruz have speculated that she might be pregnant with her first child after Andrew Kneebone, who she is said to have secretly married, shared an Instagram post of her.
Summary:
Actress Surveen Chawla has revealed that her husband is supportive of her work, adding, "I could kiss my co-actor or even go nude on screen, I can do whatever the script demands...my husband will not say anything." She added, "When I have this kind of comfort level with him...
Summary:
Fashion designer Manish Malhotra took to Instagram and shared a pic of Sridevi and Boney Kapoor from a tribute that he penned for Vogue India magazine.
Summary:
South Africa and Chennai Super Kings pacer Lungi Ngidi has revealed that he used to sell peanuts with his brothers on the side of the road.
Summary:
Shooter Anish Bhanwala, who is India's youngest Commonwealth Games medalist, said he will now prepare for his Class X board exams.
"CBSE has rescheduled my exams...I've to prepare for that.
Summary:
The CCTV footage from a Maharashtra court shows Sheena Bora-murder accused Indrani Mukerjea taking a bag from a man and return after a while on the day she had fallen ill, reports quoting officials said.
Summary:
Canada will remove families of diplomats from its embassy in Cuba amid concerns over a mystery illness.
Summary:
The nerve agent used to poison former Russian spy Sergei Skripal and his daughter was delivered in liquid form, the UK's Department for Environment has claimed.
Summary:
The CBI has questioned six officials of Bank of Baroda, including former Chairman and Managing Director MD Mallya, in connection with the Rotomac fraud.
Summary:
He further called Musharraf's actions "illegal" and "unlawful".
Summary:
Amitabh Bachchan revealed his official blog 'Bachchan Bol' has completed ten years since he started writing it on April 17, 2008.
Summary:
Actress Shabana Azmi has said that for the government's 'Beti Bachao, Beti Padhao Yojna' to be effective, 'our betis' should be alive.
Summary:
Hearing petitions challenging the constitutional validity of Aadhaar, the Supreme Court on Tuesday expressed concerns over the possible use of Aadhaar data to influence elections.
Summary:
"There is an attempt to create some sort of a psychology that there is a cash shortage," he said.
Summary:
A 22-year-old woman has alleged she was assaulted and gangraped by two men in a moving car on Yamuna Expressway after being offered a lift by one of the accused, who was her friend.
Summary:
A Hyderabad-based journalist has been booked for creating and posting a cartoon slamming Lord Ram's devotees over the Kathua rape case on her Facebook page.
Summary:
The RBI has clarified that there is no currency shortage in the country and that there is sufficient cash in the RBI vaults and currency chests.
Summary:
Amid reports of cash shortage in certain states, the government has decided to increase the printing of â¹500 notes by five times.
Summary:
Over 9,000 synthetic diamonds, estimated to be worth â¹1.06 crore when CBI seized them from fraud accused Mehul Choksi's firm, have been reportedly valued at just â¹10 lakh now.
Summary:
The department on Tuesday reportedly raided over 20 Hardcastle Restaurants locations and raids are still ongoing at the offices and residences of promoters.
Summary:
Pulkit Samrat revealed that he was offered Rajkummar Rao's role as the character 'Pritam Vidrohi' in the 2017 film 'Bareilly Ki Barfi'.
Summary:
Tape my butt!"
Summary:
Kom had won bronze in 2012 Olympics.
Summary:
Kolkata Knight Riders' spinner Sunil Narine has said it felt weird to play against Delhi Daredevils captain Gautam Gambhir, who was Kolkata Knight Riders' skipper from 2011 to 2017.
Summary:
The video also shows the bear being forced to clap while standing on its hind legs after handing the ball.
Summary:
However, the organisations still face an average of 30 security breaches per year, the study claimed.
Summary:
Guests can ski directly onto local ski trails, or into the bar and spa located in the hotel.
Summary:
Samantha Snipes, who was pregnant with her ex-boyfriend's baby, asked Temple Phipps to adopt her son soon after he was born.
Summary:
Senior BJP MP Subramanian Swamy on Tuesday asked the government to defer Air India's stake sale till the 2019 General Elections and also sought dropping of Union Minister Jayant Sinha from the government.
Summary:
District authorities have denied permission to Congress President Rahul Gandhi to inaugurate a road that he had laid the foundation stone for in his constituency of Amethi in Uttar Pradesh.
Summary:
Bengaluru-based healthcare startup PregBuddy has raised an undisclosed amount in a seed funding round led by Indian Angel Network.
Summary:
The Maharashtra Police on Tuesday conducted raids at residences and offices of several Dalit activists in Mumbai, Pune and Nagpur over Bhima-Koregaon clashes that erupted in Pune on January 1.
Summary:
Justifying his decisions, sarpanch Prem Singh said three girls who used to wear jeans and use phones eloped two years ago.
Summary:
US President Donald Trump had earlier called Comey a "leaker and liar" after reports revealed information from his book.
Summary:
Two days after carrying out missile strikes in Syria along with the US and the UK, France has announced â¬50 million in urgent humanitarian aid for the country.
Summary:
Reacting to reports of cash crunch in some states, author Chetan Bhagat tweeted, "There used to be dry days for alcohol.
Now there are dry days for cash." "Oh dear.
Summary:
A parliamentary panel has reportedly summoned RBI Governor Urjit Patel to appear before it on May 17 to answer queries on the recently-unearthed banking scams.
Summary:
Amazon has denied the allegations claiming its warehouse workers are forced to pee in bottles to avoid missing their targets by going to the toilet.
Summary:
An American philosophy professor gives her students extra credit for going on dates that don't include physical contact or alcohol, in an effort to teach them social skills.
Summary:
The service is expected to offer peer-to-peer and peer-to-merchant payments and will compete with WhatsApp UPI.
Summary:
Rebel Congress leader Shehzad Poonawalla has released Facebook data leak-accused firm Cambridge Analytica's proposal to the party to prepare for 2019 Lok Sabha elections.
Summary:
Classified advertising site Backpage.com's Co-founder James Larkin, who had been jailed for the last 10 days, has been released on a $1-million bond.
Summary:
Referring to tracking users who are not logged in or signed up on the platform, Facebook in a blog post pointed out companies like Amazon, Google, and Twitter do the same.
Summary:
Slamming PM Narendra Modi over demonetisation, Congress President Rahul Gandhi said, "We were forced to stand in queues as he snatched â¹500 and â¹1,000 rupee notes from our pockets and put (them) in Nirav Modi's pocket." This comes after a cash shortage was reported in ATMs across several states.
Summary:
The rest of the Earn.com team will also move over to Coinbase.
Summary:
A Russia-Germany research collaboration has used femtosecond (millionths of a billionth of a second) laser pulses to make an insulating material conduct electricity.
Summary:
The Indian Space Research Organisation (ISRO) and its French counterpart Centre National D'Etudes Spatiales (CNES) are set to collaborate on missions to Mars and Venus.
Summary:
A 24-year-old man was arrested by the Gujarat Police on Monday for allegedly raping his neighbour's 9-year-old daughter thrice in the last 15 days in Rajkot.
Summary:
Union Minister of State for Social Justice Ramdas Athawale has demanded that all statues of BR Ambedkar and other icons be put under CCTV surveillance to prevent vandalism.
Summary:
BJP governments in Madhya Pradesh and Rajasthan have issued orders to their police forces to implement the Supreme Court verdict on the SC/ST anti-atrocities act, reports said.
Summary:
Inspectors from the Organisation for the Prohibition of Chemical Weapons will be given access to an alleged chemical attack site in Syria's Douma on Wednesday, Russia said.
Summary:
The headless body of a doll prompted a major police operation in southern Germany on Monday after it was mistaken for a corpse, the police said.
Summary:
US carrier T-Mobile has agreed to pay $40 million as settlement for allegedly faking the ringtone on outgoing calls to rural areas with poor reception.
Summary:
Summary:
Ishaan Khatter, who will make his Bollywood debut soon, said that it would be unfair to pit him against his half-brother Shahid Kapoor as he is somebody with 15 years of experience.
Summary:
Actress Taapsee Pannu took to Twitter to troll a man who called her "average looking".
"Who made you heroine you look so average," the man commented on a photo posted by Taapsee.
Summary:
Actress Sushmita Sen has shared an old picture on Instagram with singer Ricky Martin, who she was rumoured to be dating.
Summary:
After slamming a 33-ball 63 on his KXIP debut, Windies' batsman Chris Gayle said, "(The confidence) will never leave, I'll take it to the grave." "The batting will always be there to be honest, it won't leave the Universe Boss until I call this game quits," he added.
Summary:
Google has developed a prototype of a microscope powered by augmented reality (AR) that can detect cancer in real-time.
Summary:
A couple was arrested at the Mumbai airport on Monday for allegedly trying to smuggle gold dust worth â¹35 lakh.
Summary:
Syrian anti-aircraft defences on Monday shot down missiles over two air bases, Syria's state media said.
Summary:
Last year, China announced plans to build or upgrade 64,000 toilets between 2018 and 2020.
Summary:
A French court has banned a couple from naming their baby boy 'Jihad', saying it would not be in the interest of the child.
Summary:
Tamil Nadu Police on Monday arrested a woman professor for allegedly asking female students to sexually please top university officials.
Summary:
India's benchmark indices Sensex and Nifty gained for the ninth straight session today, posting their longest winning streak in more than three years.
Summary:
Reality television personality Khloé Kardashian has named her newborn daughter True Thompson.
Summary:
Ex-Sri Lankan off-spinner Muttiah Muralitharan, the only player in Test cricket history to take 800 wickets, picked up his 800th wicket on the final ball of his Test career.
Summary:
Summary:
Hello Network, the new social network launched by the Orkut Founder Orkut Büyükkökten, is in talks to raise money from strategic investors in India.
Summary:
Few hours after being detected on April 14, an asteroid swept past the Earth at a speed of 106,497 kmph at about half the distance from the Moon, astronomers have revealed.
Summary:
On Saturday, his family identified him in a popular video of a Manipuri man singing Hindi songs, following which they contacted the police.
Summary:
Delhi Police on Tuesday filed a chargesheet against 4 Delhi University students for allegedly stalking and misbehaving with Union Information and Broadcasting Minister Smriti Irani last year.
Summary:
The New York Times also won Pulitzers in the national reporting and editorial cartooning category.
Summary:
A US federal judge on Monday rejected requests from President Donald Trump and his personal lawyer Michael Cohen to look at the documents seized from Cohen by the FBI, before prosecutors examine them.
Summary:
An explosion was reported on Monday night outside the Indian consulate office in the Nepali city of Biratnagar, damaging the wall of the premises.
Summary:
A diner at a restaurant in United States' Chicago left a $2,000 (â¹1.3 lakh) tip on a meal that cost $759 (â¹50,000) on Sunday.
Summary:
Helicopters and thermal imaging equipment are being deployed in New Zealand to search for lost dogs.
Summary:
Cryptocurrency YouTuber Ian Balina allegedly lost cryptocurrency worth about $2 million after suffering a hack during a livestream session on Sunday.
Summary:
Cryptocurrency billionaire and banking heir Matthew Mellon has died suddenly at the age of 53 in Mexico, where he was attending a drug rehabilitation facility.
Summary:
In the first 13 days of April, the currency supply increased by â¹45,000 crore, it added.
Summary:
Fink owns only 0.7% stake in BlackRock and the company's shares have surged more than 3,600% since its listing in 1999.
Summary:
TRAI has currently made tariff data available only for the Delhi circle, and has sought user feedback about the new site.
Summary:
Mallika Sherawat will be adapting an Emmy Award-winning show into an Indian television serial.
Summary:
Ramdev further said that India would have bagged one more gold medal at 2016 Rio Olympics if Sushil would have participated.
Summary:
Sushil, India's only double individual Olympic medalist, was dropped for the Rio Olympics, with wrestler Narsingh Yadav being chosen ahead of him.
Summary:
World number three shuttler PV Sindhu took to Twitter to share a letter she wrote after clinching silver at the CWG after losing to Saina Nehwal.
Summary:
In comparison, Uber hit $50 million in tips within three months as of August, 2017.
Summary:
Japanese astronomers have reported that two evolved stars similar in mass to the Sun, 24 Booties and Gamma Librae, are circled by one and two gas giants respectively.
Summary:
Traffic Police have issued maximum number of challans for speeding in Noida in the first three months of 2018, with 6,070 vehicles exceeding the prescribed speed limit, according to official data.
Summary:
A physically challenged woman was allegedly gangraped by an auto-rickshaw driver and his two accomplices in Andhra Pradesh's Vizianagaram district.
Summary:
Jodhpur District and Sessions Court on Tuesday granted permission to actor Salman Khan to travel outside India.
Summary:
"Have reviewed the currency situation...Over all there is more than adequate currency in circulation and also available with the Banks," Jaitley said.
Summary:
A new expressway connecting Gurugram and Mumbai is expected to reduce the travel time between Delhi and Mumbai to around 12 hours as against the present travel time of 24 hours.
Summary:
Following reports of ATMs facing cash shortage in several states, MoS Finance SP Shukla said the government has cash currency of â¹1.25 lakh crore and the issue will be resolved in three days.
Summary:
American rapper Azealia Banks has alleged in a series of Instagram stories, which she later deleted, that she was drugged and raped.
Summary:
The report claims Korea, China, Japan and the US will be key markets for 5G infrastructure development due to their plans for 5G in 2019.
Summary:
Summary:
The party has announced candidates for a total of 154 seats out of the 224 constituencies in the state.
Summary:
Tesla reportedly did not disclose some worker injuries at its Fremont factory including "sliced by machinery, crushed by forklifts, electrical explosions and sprayed with the molten metal." Reports claim the injuries were reported to supervisors or managers, but the complaints were dismissed.
Summary:
However, Flipkart's biggest stakeholder SoftBank is seeking a better price to sell the stake at around $15-17 billion, reports added.
Summary:
In a first, a Swiss-German research collaboration has managed to use lasers to keep an electron both free and bound to its nucleus.
Summary:
The Centre is working on a system to deduct the road toll amount directly from bank accounts so that drivers don't have to stop at toll plazas, Union Minister Nitin Gadkari has said.
Summary:
MyanmarâÂÂs newly-elected President Win Myint has granted amnesty to over 8,500 prisoners in a move to bring about humanitarian support amid the countryâÂÂs political reforms after decades of military rule.
Summary:
Summary:
Muhammed Anas, India's first CWG 400m finalist since Milkha Singh in 1958, has been told by the Athletics Federation of India to join the national camp rather than train with a personal coach.
Summary:
World number one Rafael Nadal teased world number two Roger Federer after he announced that he would skip the clay court season for second year in a row.
Summary:
Facebook is starting with a pilot in Karnataka, which will hold its Assembly elections on May 12.
Summary:
A US judge has ruled that Facebook must face a class action lawsuit for using facial recognition on photos without users' permission.
Summary:
BJP IT Cell head Amit Malviya has slammed Congress President Rahul Gandhi for giving PNB fraud-accused Mehul Choksi's lawyer HS Chandramouli a Karnataka Assembly election ticket.
Summary:
Online fashion store Myntra has acquired technology wearable startup Witworks for an undisclosed amount.
Summary:
A German-Austrian research team has created the largest entangled quantum register of individually controllable systems, consisting of 20 quantum bits.
Summary:
"Our findings are the first evidence that targeting this brain circuit may offer a potential new depression treatment," said a researcher.
Summary:
The incident took place last week when the victim wanted to watch an IPL match and the accused wanted to watch a serial.
Summary:
Veteran journalist and editor S Nihal Singh, who won the International Editor of the Year Award for his role in opposing the Emergency by former PM Indira Gandhi, passed away aged 88 on Monday.
Summary:
The girl was lured into an abandoned house by the accused, who was reportedly found lying drunk next to the victim's body.
Summary:
The Central Bureau of Investigation (CBI) has filed a chargesheet against RJD chief Lalu Prasad Yadav, his wife Rabri Devi, their son Tejashwi Yadav and 11 others in relation to the IRCTC scam case.
Summary:
Grocery shoppers in Australia's Woolworths supermarket were left stranded at the checkout on Monday after a system error forced customers to abandon their items and leave the stores.
Summary:
Kendrick Lamar on Monday became the first rapper to win a Pulitzer Prize for music.
Summary:
An Indian national and Global Executive Director of Change.org Foundation, Preethi Herman, is among 20 civic leaders selected for the fellowship from former US President Barack Obama's foundation.
Summary:
Bengaluru is the highest paying city in India with an average cost to company (CTC) of â¹10.8 lakh per annum, the Randstad Insights Report 2018 has revealed.
Summary:
A 13-year-old boy, along with an amateur archaeologist, has discovered treasure in Germany that is believed to have belonged to 10th-century Danish King Harald Bluetooth, after whom wireless Bluetooth technology was named.
Summary:
Users can access the feature in the 'Payments' option in 'Settings', currently in its testing phase.
Summary:
The French government on Monday said it is building its own encrypted messenger service, as it fears that foreign entities like WhatsApp could spy on private conversations.
Summary:
BJP leader Shashil Namoshi broke down in front of media after the party didn't give him ticket to contest for the upcoming Karnataka Assembly elections.
Summary:
Summary:
Founded in 2009, Sinovation has invested in companies like bike-sharing startup Mobike and education app VIPKID.
Summary:
Billionaire Elon Musk's tunnelling startup 'The Boring Company' has raised over $112.5 million in funding, with over 90% of the funding coming from Musk himself.
Summary:
Researchers are hoping to speed up the enzyme's process further by a few days, so the plastic could be recycled faster.
Summary:
Archaeologists have uncovered an Italian man's remains dating between 6-8th century AD, which suggests the possible use of a knife to replace an amputated hand.
Summary:
Indian Air Force fighter jets conducted 5,000 sorties in 72 hours along the Western border with Pakistan under its pan-India exercise 'Gaganshakti'.
Summary:
PM Modi's visit to the nation is the first by an Indian Prime Minister since former PM Rajiv Gandhi's 1988 visit.
Summary:
A 23-year-old man from Haryana has been arrested for working for two female Pakistani agents and passing on information about Indian Army camps to Pakistan's Inter-Services Intelligence.
Summary:
A 15-year-old gangrape victim's parents were booked after she complained to the police that they took â¹5-lakh bribe to compel her to change her statement in court.
Summary:
UK's National Cyber Security Centre and US' Federal Bureau of Investigation have released a joint statement warning of "malicious cyber activity" carried out by Russia.
Summary:
A US rescue team has recovered bodies of an Indian-American man, Sandeep Thottapilly, and his daughter from a car which was found from a river, the police have said.
Summary:
A judge in the US has ruled that two former neighbours must share the custody of a dog after they took their dispute to court.
Summary:
Notably, the facility houses nearly 1,100 baboons.
Summary:
Priyanka Chopra will make her Bollywood comeback after three years with the film 'Bharat', which will also star Salman Khan in the lead role.
Summary:
"Sunil plays a crucial and major part and I was surprised to know what a big star he is," said Vishal.
Summary:
Windies all-rounder Dwayne Bravo compared Team India and RCB captain Virat Kohli to footballer Cristiano Ronaldo.
Summary:
The UK is introducing measures to stop tourists from scamming Spanish hotels by wrongly claiming they have contracted food poisoning there.
Summary:
A mass extinction event 232 million years ago triggered the expansion of dinosaurs, scientists have said, based on discovery of several dinosaur footprints in Italy's Dolomites mountains dating back to that period.
Summary:
The court has allowed the woman's father to pursue the case.
Summary:
Over 18,000 people who suffer from Haemophilia are registered with the Haemophilia Federation of India.
Summary:
Each trip is an exploration of a different theme.
Summary:
Gangster Dilpreet Singh Dhahan, who earlier claimed he shot Punjabi singer Parmish Verma, has threatened that the "50 rounds of firing was a trailer" and he'll fire 500 rounds to kill him.
Summary:
Partial fingerprints drawn from a photograph shared on WhatsApp has helped convict 11 people in a case related to drug trafficking in Wales.
Summary:
The Delhi High Court on Monday asked Delhi CM Arvind Kejriwal why he cannot apologise for using the word "thulla" for policemen when he has recently issued a string of apologies to political leaders.
Summary:
US' CBS news channel mistakenly published an online obituary for former First Lady Barbara Bush, although she is still alive.
Summary:
A 14-year-old girl, who ran away from her home in Surat, was found outside Bollywood actor Varun Dhawan's house in Mumbai and sent home after she met the actor.
Summary:
Actress Upasana Singh, who played the character of Bua in Kapil Sharma's 'Comedy Nights With Kapil' and 'The Kapil Sharma Show', will be featuring in Sunil Grover's new TV show 'Dhan Dhana Dhan Live'.
Summary:
As per reports, Sanjay Dutt will be starring opposite Madhuri Dixit in Karan Johar's next production which will be directed by Abhishek Varman.
They were last seen opposite each other in 'Khalnayak' (1993).
Summary:
The film, which is based on the life of Guru Nanak Dev, was released all across India on April 13, except in Punjab.
Summary:
Actors Sushant Singh Rajput and Kriti Sanon will reportedly be seen together in the Hindi remake of the 1987 Hollywood film 'Dirty Dancing'.
Summary:
Arshi captioned the video, "Love you Sapna Choudhary...
Summary:
The defeat was DD's third of the season while KKR won after having lost two consecutive matches.
Summary:
Kolkata Knight Riders' Sunil Narine has become the first-ever overseas spinner to take 100 wickets in the IPL.
Summary:
American boxer Rod Salka, who wore shorts that referenced US President Donald Trump's plan to build a border wall between USA and Mexico, was beaten by Mexican boxer Francisco Vargas.
Summary:
Desiree Linden became the first American woman in 33 years to win the 42-km Boston Marathon.
Summary:
Air India on Monday said it suspended a senior commercial officer for getting into a "major altercation" with a passenger over a business class seat on a Delhi-Amritsar flight.
Summary:
Congress denied coining the term 'saffron terror', adding it believes terrorism cannot be associated with religion.
Summary:
The Congress did not give tickets to 14 sitting MLAs in the first list.
Summary:
Congress leader Randeep Surjewala termed the BJP-led NDA government a "surveillance sarkar" after the Information and Broadcasting Ministry's proposal to install chips in new television set-top boxes to ascertain viewership data.
Summary:
A 14-year-old girl was gangraped, tortured and killed in Bihar's East Champaran allegedly over a land dispute by members of the rival family.
Summary:
Elephants at Palamau Tiger Reserve in Jharkhand will be taught the phonetic patterns of Hindi as they are having trouble obeying commands in the language.
Summary:
IIT Kharagpur researchers have claimed the Indus Valley civilisation had been wiped out over 4,000 years ago due to a drought which lasted 900 years.
Summary:
Amid concerns over increasing cases of online crimes, the Kerala government is set to launch three cyber police stations in the districts of Ernakulam, Thrissur and Kozhikode, the state has announced.
Summary:
The Islamic State has released a new propaganda poster threatening to bomb a subway in US' New York City.
Summary:
No police officers or prison employees were injured, the state's Corrections Department said.
Summary:
IHH offered to buy Fortis at a price that values the hospital chain at about $1.3 billion beating Manipal's roughly $1.2 billion.
Summary:
"I'm interested in bitcoin as a sort of bubble.
Bitcoin is currently trading at around $8,000, down 60% from record of $20,000.
Summary:
Reacting to his post, 'Baahubali' makers tweeted, "Thanks for your love for our #Baahubali films and Indian Cinema...
Summary:
Talking about her experience with men in Telugu film industry, actress Sandhya Naidu claimed "They call me 'amma'...in the morning and ask (me) to...sleep with them at night." Mostly portraying roles of mothers and aunties, she has worked in the industry for ten years.
Summary:
Delhi Daredevils' fast bowler Trent Boult recorded the first maiden of IPL 2018 in the tournament's 13th match against Kolkata Knight Riders on Monday.
Summary:
On May 18, 2007, a cellphone-triggered pipe bomb exploded inside Hyderabad's 17th-century Mecca Masjid, killing nine and injuring 58 others.
Summary:
Special NIA court judge K Ravinder Reddy on Monday resigned due to "personal reasons", hours after acquitting all five accused in the Mecca Masjid case citing lack of evidence.
Summary:
The Jammu and Kashmir Police has said the Army jawan who went missing in early April from the state's Shopian area has joined terror outfit Hizbul Mujahideen.
Summary:
French President Emmanuel Macron has said that he convinced his US counterpart Donald Trump not to withdraw troops from Syria, saying it was necessary to keep them there for a "long term".
Summary:
Workers at Amazon warehouses have to pee in bottles to avoid missing their targets by going to the toilet, according to an author who went undercover at an Amazon warehouse in the UK.
Summary:
However, the Taliban rejected the offer to contest the elections, claiming that Afghanistan is an occupied country.
Summary:
The Supreme Court has stayed an appellate tribunal's order allowing the sale of Anil Ambani-led Reliance Communications' tower assets to Mukesh Ambani's Reliance Jio. The court agreed to hear minority shareholder HSBC Daisy Investments' plea challenging the sale of assets of Reliance Infratel.
Summary:
Varun Dhawan has said he has no time for competition while adding, "I'm busy with films back to back, so there's no time to think about what someone else is doing." He further said that when it comes to his contemporaries, it's all very healthy competition.
Summary:
Iranian filmmaker Majid Majidi has said that it is a pity that India does not have the kind of cinema made by renowned filmmakers like Satyajit Ray or Shyam Benegal anymore.
Summary:
Rajkummar Rao, who will be portraying terrorist Ahmed Omar Saeed Sheikh in Hansal Mehta's 'Omerta', revealed that Hansal wanted to make the film with Riz Ahmed, a British actor of Pakistani origin.
Summary:
Ajay Devgn has said that though his daughter Nysa keeps talking about what she wants to do in life but films do not interest her right now.
"She doesn't talk about films at all.
Summary:
IPL's official Twitter handle shared a video of Yuvraj Singh holding and shaking MS Dhoni's head while the latter was receiving back treatment during CSK-KXIP match on Sunday.
Summary:
Afghanistan wicketkeeper-batsman Mohammad Shahzad has been fined â¹2.5 lakh by the Afghanistan Cricket Board for playing in a local tournament in Pakistan's Peshawar without permission.
Summary:
Sharing the video on Twitter, Sachin's friend and former teammate Vinod Kambli wrote, "@sachin_rt.
Summary:
He further said that Tibetan is the only language that has preserved India's ancient knowledge.
Summary:
The girl was reportedly speaking on the phone which annoyed the father, who started beating her.
Summary:
The India Meteorological Department has forecasted that India will receive a normal monsoon for the third consecutive year, with 97% rainfall of the long-period average.
Summary:
A minor girl's mutilated body was found stuffed inside a bag in a canal in Haryana's Rohtak on Sunday.
Summary:
Adding that the Philippines was no longer an ICC member, Duterte said the court had no right to carry out any investigation.
Summary:
Claiming that the recent missile strikes in Syria by the US, the UK and France had damaged the peace process, Russian President Vladimir Putin has warned that further attacks on Syria will cause "chaos" in world affairs.
Summary:
Defending the missile strikes in Syria, US ambassador to the UN Nikki Haley has said the US must continue to act "smart" when chemical weapons are used or a similar attack could take place in the country.
Summary:
Markets regulator SEBI has reportedly accepted a settlement plea by Infosys in a case related to ex-CFO Rajiv Bansal's severance package.
Summary:
Indian Premier League side Rajasthan Royals have begun their 'Go Green' initiative, in which the side will help plant one million saplings across the state of Rajasthan.
Summary:
The father's counsel had alleged the atmosphere in Kathua is not "conducive to a free and fair trial".
Summary:
Talking about his film 'Omerta', Rajkummar Rao revealed that there is nudity in the film but he is not nervous about it.
It's like being an untameable animal." Rao will portray terrorist Ahmed Omar Saeed Sheikh in the film.
Summary:
Satish Kaushik, who made his debut as a director with the 1993 film 'Roop Ki Rani Choron Ka Raja', has apologised to producer Boney Kapoor for delivering a box office failure that left him broke.
Summary:
Chinese social media platform Sina Weibo on Monday reversed a ban on gay content following protests against the decision.
Summary:
Chinese electronics company Xiaomi is planning biggest-ever initial public offering (IPO) next month and is targeting a valuation of about $100 billion, according to reports.
Summary:
Tesla Co-founder Elon Musk in a recent interview admitted that the Autopilot will never be perfect.
"Nothing in the real world is perfect.
Summary:
Some ministers deleted the tweets after users pointed out the anniversary is on November 23.
Summary:
The National Investigation Agency (NIA) on Monday said it will examine the court's verdict in the 2007 Mecca Masjid blast case acquitting all the accused and decide the future course of action.
Summary:
The Supreme Court on Monday directed the J&K government to provide police protection to the family of the eight-year-old Kathua rape and murder victim and their counsel Deepika S Rajawat.
Summary:
The Lahore High Court on Monday ordered the country's media regulatory authority to temporarily ban the airing of "contemptuous" speeches about the judiciary by former Prime Minister Nawaz Sharif and his daughter Maryam Nawaz.
Summary:
Three people, including the manager of a private bank, have been arrested for allegedly faking a bank robbery and misappropriating â¹3.4 lakh in Odisha.
Summary:
NITI Aayog Vice Chairman Rajiv Kumar has said India won't take sides in the ongoing trade war between US and China.
Kumar also pitched for China to allow India's exports of sugar and soybean.
Summary:
Kotak Mahindra Bank has a market value of â¹2.23 trillion while SBI has a market value of over â¹2.22 trillion.
Summary:
Summary:
Filmmaker and choreographer Farah Khan will reportedly be choreographing Sonam Kapoor and Anand Ahuja's sangeet ceremony.
Summary:
Singer Zayn Malik, who broke up with his girlfriend Gigi Hadid, said that he had aspired to be in love with someone for the rest of his life.
Summary:
Following Chennai Super Kings captain MS Dhoni's 44-ball 79 against Kings XI Punjab, KXIP mentor Virender Sehwag said, "Excellent knock from Dhoni, kept everybody on the edge of their seats".
Summary:
Summary:
Chennai Super Kings captain Mahendra Singh Dhoni took to Instagram to share a video of his daughter Ziva wanting to hug him while he was batting against Kings XI Punjab in the IPL on Sunday.
Summary:
WWE stars John Cena and Nikki Bella have announced that they have broken up after being in a relationship for six years, three weeks before their scheduled wedding on May 5.
Summary:
The couple, Denver and Vanessa Miller, added a water system to the school bus, as well as a flat-screen TV, an oven, a stove, a fridge and a deep sink.
Summary:
Summary:
The Congress MP added, "I read it somewhere that around 20 leaders of the BJP are linked with rape cases."
Summary:
Three minors, two girls and one boy, were found hanging from a tree in a village in Rajasthan's Barmer on Friday.
Summary:
The Supreme Court on Monday stayed an order by the National Green Tribunal imposing a â¹15-lakh fine on the Vaishno Devi Shrine Board and the J&K government.
Summary:
The Mahindra Group Chairman's comments came in reaction to the rape of a 9-year-old girl in Surat, whose body was found with 86 injury marks.
Summary:
The case pertains to Karti's role in foreign investment approval granted to Aircel-Maxis deal when his father P Chidambaram was Finance Minister.
Summary:
China has launched a website for citizens to report names of people who attempt to bribe government or military officials as part of its crackdown on corruption.
Summary:
Harvinder Singh, an aide of gangster Dilpreet Singh Dhahan, has been arrested by the Haryana Police from Baddi, Himachal Pradesh in connection with the attack on Punjabi singer Parmish Verma.
Summary:
Ace Indian shuttler Saina Nehwal has said her Gold Coast Commonwealth Games singles gold was much tougher than her 2010 New Delhi Games gold.
Nehwal is the only Indian woman shuttler to win CWG singles gold.
Summary:
WhatsApp has released a feature in beta which allows users to download deleted media, such as images, videos, voice messages, and documents, from its servers again.
Summary:
Talking about the eligibility process in India, BJP leader and Madhya Pradesh minister Gopal Bhargava on Monday said that selection of less eligible candidates is harmful for the nation.
Summary:
Myntra Co-founder Mukesh Bansal's startup Cure.Fit which operates a health and fitness platform has raised â¹4.18 crore in a funding round.
Summary:
BJP MP from Unnao Sakshi Maharaj on Sunday inaugurated a nightclub called 'Let's Meet' in Uttar Pradesh's Lucknow, triggering controversy.
Summary:
A medical report of the Unnao rape survivor prepared shortly after she was rescued in 2017 stated that she was 19 years old.
Summary:
The eight have been accused of raping and murdering an eight-year-old girl to "punish" the Bakarwal community she belonged to.
Summary:
Authorities in the Ghanaian capital of Accra have asked mosques and churches to use mobile text or WhatsApp messages for the call to prayer and avoid the use of loudspeakers.
Summary:
Pakistan's first school for the transgender community was inaugurated on Sunday in Lahore.
Summary:
However, Comey said he does not wish for Trump to be impeached.
Summary:
The police said Odisha is the only Indian state that uses pigeons to communicate between police stations.
Summary:
India's inflation, measured by the Wholesale Price Index (WPI), eased to an eight-month low of 2.47% in March compared to 2.48% in February.
Summary:
Shares of state-run UCO Bank slumped to a nearly 12-year low on Monday after the CBI booked former Chairman and Managing Director Arun Kaul in a â¹621-crore loan fraud case.
Summary:
The merger of telecom operators Idea Cellular and Vodafone India could result in the loss of at least 5,000 jobs, according to a report.
Summary:
The Employees' Provident Fund Organisation has decided to accept provident fund withdrawal claims of over â¹10 lakh via physical forms, reversing its earlier decision.
Summary:
Ace Indian shuttler Saina Nehwal has revealed she couldn't sleep for two days while her father was not allowed inside the Gold Coast Commonwealth Games athletes' village.
Summary:
A medal-winning Indian wrestler at the Commonwealth Games 2018 was questioned by the police after he tried to pass on his accreditation card to a friend so that he could enter the Games Village for a 'fun tour'.
Summary:
CSK captain MS Dhoni, who slammed his highest IPL score against KXIP on Sunday despite a back injury, said he is "quite used to playing with injuries".
Summary:
Addressing the concerns over charging infrastructure for electric vehicles, the Ministry of Power has said that companies setting up the charging infrastructure do not need licence for electricity transmission, distribution or trading.
Summary:
The Aam Aadmi Party has launched 'poha chaupals' in Madhya Pradesh ahead of the state assembly elections in order to reach out to people and hold dialogues with them over snacks.
Issues directly affecting the people came up for discussion," AAP's state Convener Alok Agarwal said.
Summary:
US-based retailer Walmart will likely have to make a deal with Flipkart's investor eBay before investing around $12 billion to acquire 51% stake in the homegrown e-commerce platform, according to a report.
Summary:
The startup will use the funding to expand its production, retail presence, marketing, as well as streamline operations across the board.
Summary:
The 14 IndiGo and GoAir A320neo aircraft that were grounded by DGCA over faulty engines are back in operation.
Summary:
Summary:
The government has removed 44 districts where Naxal presence has been eliminated or it has been reduced to a negligible amount from a list of Naxalism-affected areas.
Summary:
A special National Investigation Agency (NIA) court in Hyderabad on Monday acquitted all the accused in the 2007 Mecca Masjid blast case over lack of evidence.
Summary:
Responding to the concerns about the collection of data on non-users, Facebook has said, "This kind of data collection is fundamental to how the internet works." Facebook also said users can limit the data collection by using browser settings or device settings to delete "cookies".
Summary:
Wilbur, who was born on April 16, 1867, won the toss but his first attempt was unsuccessful and left the plane slightly damaged.
Summary:
Thousands of rats burrowing underground for years seem to have caused a three-storey building in Agra to collapse, officials said.
Summary:
A 19-year-old man has been arrested after he allegedly pretended to be a doctor at AIIMS Delhi for five months.
Summary:
The athletes were made to enter the stadium before the live broadcast began.
Summary:
Scotland's marathon runner Callum Hawkins, who had been leading the men's marathon at the Commonwealth Games 2018, lost the race after collapsing and hitting his head on the road just 2 km before the finish line.
Summary:
Hyderabad's seven-year-old Samanyu Pothuraju, accompanied by his coach, unfurled the Indian tricolour at the Uhuru Peak of Mount Kilimanjaro, Africa's highest mountain, in Tanzania earlier this month.
Summary:
Summary:
Prime Minister Narendra Modi will hold a globally broadcast address at London's historic Central Hall Westminster on Wednesday, April 18 during his visit to the United Kingdom (UK).
Summary:
RSS chief Mohan Bhagwat on Sunday said that the Ram Mandir in Ayodhya was destroyed by those outside India and not the Muslim community in the country.
Summary:
The Indian Railways has decided to build a 500-km wall along the Delhi-Mumbai route in order to restrict human and cattle interference, officials have said.
Summary:
The fraudster asked her to share debit and credit card details along with OTPs, which were used to debit money from her account.
Summary:
Police officers said they found animal poop and bacteria in $700,000 (â¹4.6 crore) worth of counterfeit makeup seized during a raid in Los Angeles, United States.
Summary:
The incident occurred after two thieves committed a robbery at the travel agency, the police said.
Summary:
Veteran actor Dharmendra will be conferred with the prestigious Raj Kapoor Lifetime Achievement Award as announced by Maharashtra's Minister of Cultural Affairs Vinod Tawde.
Summary:
Organisers of the Commonwealth Games 2018 slammed fans and bystanders for taking pictures of Scotland's marathon runner Callum Hawkins who was leading the race before collapsing down just 2 km before the finish line.
Summary:
While picking up his Man of the Match trophy for his match-winning 63-run knock for Kings XI Punjab against Chennai Super Kings, Chris Gayle said, "Universe Boss is back".
Summary:
Eight-time Olympic gold medallist Usain Bolt, who was one of the Gold Coast Commonwealth Games' ambassadors, played DJ during the closing ceremony of the 11-day event on Sunday.
Summary:
This was PSG's fifth Ligue 1 title in six years and seventh overall.
Summary:
French side Paris Saint-Germain's world record signing Neymar shared an image of him playing online poker as his side was thrashing defending champions Monaco 7-1 to lift their fifth Ligue 1 title in six years.
Summary:
South Korean company Hyundai Heavy Industries has designed a 670-kg industrial robot to build ships.
Summary:
A video shows an Amazon delivery driver throwing a package over the customer's balcony in the US.
Summary:
Further, the clips were accompanied by detailed descriptions of who was in the scene and what was happening.
Summary:
Chennai-based digital logistics startup Pando has raised â¹13 crore in a seed round led by venture capital firm Nexus Venture Partners.
Summary:
Slamming the government over the Unnao and Kathua rape cases in a letter to PM Narendra Modi, a group of 49 retired bureaucrats said this was the "darkest hour" in post-Independence India.
Summary:
Sumit Malik, Rahul Aware, Bajrang, Sushil Kumar and Vinesh Phogat bagged gold medals while Mausam Khatri, Babita Kumari and Pooja Dhanda clinched silver medals.
Summary:
The Indian economy has recovered from demonetisation and Goods and Services Tax, according to a World Bank report.
Summary:
Around 400 people were present on the train for the journey.
Summary:
On April 16, 1943, Swiss chemist Albert Hofmann accidentally ingested LSD, a drug he had created with the intent of using as a blood stimulant.
Summary:
His outfit included a suit worth 63,000 Pakistani Rupees, gold shoes worth 17 lakh Pakistani Rupees and a gold tie worth 5 lakh Pakistani Rupees.
Summary:
Twinkle Khanna, along with her son Aarav, Kalki Koechlin and Aditi Rao Hydari were among those who attended peaceful protest in Mumbai demanding justice for the 8-year-old Kathua rape victim.
Summary:
She said, "He invited me to his house...(and) asked me whether I would offer commitment.
Summary:
The first-ever flight of a self-propelled, heavier-than-air aircraft was conducted by American aviators and brothers Orville Wright and Wilbur Wright in the United States in 1903.
Summary:
The BJP had released its first list of 72 candidates for the Assembly election on April 8.
Summary:
The Election Commission has seized â¹22 crore in illegal cash and liquor worth nearly â¹2 crore since the Model Code of Conduct was imposed in Karnataka on March 27, ahead of the Assembly elections.
Summary:
China's Tencent-backed fashion app Meilishuo is in talks with investment banks about a US initial public offering (IPO) that could value the startup at about $4 billion, according to reports.
Summary:
The victim had thrashed the suspect, who was reportedly drunk and was arguing with the policemen.
Summary:
Three Indian youths who were held captive by pirates for 73 days in Nigeria returned to their homes in Himachal Pradesh on Sunday.
Summary:
The boy was with his family during the incident, which was caught on CCTV footage.
Summary:
Deepika S Rajawat, the lawyer representing Kathua rape and murder victim's family said she doesn't know how long she will live, while adding she can be "raped", "killed" or "damaged".
Summary:
A Class 6 student in Pakistan's Punjab province died after he fell unconscious during a slap fight game in his school.
Summary:
'Bharat' is reportedly based on a Korean film titled 'An Ode To My Father'.
Summary:
Comedian Sunil Grover has said that he doesn't know comedy, while adding, "I believe comedy is something that's gifted to people.
Summary:
KXIP on Sunday handed CSK their first defeat of IPL 2018 despite CSK captain MS Dhoni slamming 79*(44), his highest-ever IPL score.
Summary:
With 80 gold medals at the 2018 Gold Coast Games, Australia topped the Commonwealth Games medal tally for the 13th time overall.
Summary:
Playing without their leading goalscorer Cristiano Ronaldo, Real Madrid managed a 2-1 win against Malaga in the La Liga on Sunday.
Summary:
After the Congress led a candlelight vigil over recent rape incidents, BJP leader Prakash Javadekar said it just marched while two Jammu BJP ministers resigned in connection with Kathua rape and murder case.
Summary:
Founder Elon Musk has claimed that SpaceX will try to recover rocket's upper stages out of orbital velocity using a "giant party balloon".
Summary:
Unnao rape case-accused BJP MLA Kuldeep Singh Sengar's "goons" are threatening villagers to keep quiet about the case, the rape victim's uncle has alleged.
Summary:
Army chief Bipin Rawat has said that radicalised youth of Jammu and Kashmir will soon realise that gun is not the solution to their problem, as neither the Army nor terrorists can fulfil their goals with it.
Summary:
Over four lakh employees of Odisha government are yet to receive their salaries for the month of March after a thunderstorm damaged the servers required to dispense salaries, state minister Shashi Bhusan Behera said.
Summary:
The Central Vigilance Commission (CVC) asked banks to give details of any fraud worth over â¹3 crore to devise a preventive mechanism.
Summary:
With this, City equalled Manchester United's 2000-2001 record for the earliest Premier League title victory.
Summary:
She thanked the music festival for the opportunity.
Summary:
Singer Mariah Carey, while opening up about her battle with bipolar disorder which she was diagnosed with in 2001, said she was hospitalised for a physical and mental health breakdown.
Summary:
A 22-year-old woman was molested by a man during Mumbai Indians' IPL match against Delhi Daredevils at the Wankhede Stadium on Saturday.
Summary:
Rajasthan Royals' Sanju Samson slammed 10 sixes against Royal Challengers Bangalore on Sunday to record the second-most sixes by an Indian in an IPL innings.
Summary:
Kohli, who scored 57 off 30 balls in the match, equalled Gautam Gambhir's record of most T20 fifties (53) by an Indian.
Summary:
Eight-time Olympic gold medallist Jamaica's Usain Bolt questioned his decision to retire from athletics after Jamaica failed to win a single sprint gold at the Commonwealth Games 2018.
Summary:
Finance Minister Arun Jaitley on Sunday took oath as Rajya Sabha MP at Vice President Venkaiah Naidu's chamber in the Parliament, after having missed the earlier oath ceremony due to kidney-related ailments.
Summary:
Adding that Pakistan remains committed to such a dialogue, Bajwa said the country's desire for peace should not be interpreted as a sign of weakness.
Summary:
A 34-year-old Bengaluru businessman approached the police after he was duped of â¹60 lakh by a woman he met on a dating website.
Summary:
The complaint registered through the app will reach relevant officials of the concerned divisions directly.
Summary:
The fiancée of Deepak Khajuria, the policeman accused in rape and murder of an eight-year-old girl in Kathua, said she will look him in the eye and ask him if he really committed the crime.
Summary:
A woman in Tamil Nadu has alleged her 77-year-old mother-in-law was denied her deceased husband's government pension by an officer who objected to her wearing a bindi in the photos submitted with the documents.
Summary:
Slamming Barack Obama for not taking action against the Syrian government over the chemical weapons attack in 2013, the US State Department said the former President never did enough to stop the regime.
Summary:
Ram Gopal Varma has said that actress Sri Reddy, who had staged a nude protest against casting couch in Telugu film industry, is as great as king Ashoka.
Summary:
Former cricketer Kapil Dev has revealed that he used to bunk school in order to watch Amitabh Bachchan's films in theatres.
Summary:
John reportedly felt the film's storyline is similar to that of Alia Bhatt's Raazi and when he watched the film's trailer he was convinced about it.
Summary:
Addressing the controversy around singer Papon kissing an 11-year-old female contestant of a reality show, Raveena Tandon said, "Let's not lynch Papon.
Summary:
The match saw RCB captain Virat Kohli smash his fastest fifty in the IPL off 26 balls and complete 26,000 runs in professional cricket.
Summary:
Raina has been ruled out of CSK's next match as well.
Summary:
Mercedes' Valtteri Bottas secured the second place with compatriot Ferrari driver Kimi Raikkonen ended the race at third place.
Summary:
During a protest over Unnao and Kathua rape cases, Congress Karnataka MLA Dinesh Gundu Rao on Saturday called Uttar Pradesh CM Yogi Adityanath a 'dhongi (fake)' who should be beaten with slippers.
Summary:
Uttar Pradesh Police has suspended SHO Suneet Kumar Singh based on a viral audio clip wherein he allegedly told a criminal to "manage" local BJP leaders like MLA Rajeev Singh Parichha to "save" himself from an encounter.
Summary:
Around 75% of the nearly 11 lakh students who skipped Uttar Pradesh board's Class 10 and 12 examinations were from neighbouring states, Deputy CM Dinesh Sharma has said.
Summary:
Calling it a standard practice for Indian diplomats to accompany visiting pilgrims, India accused Pakistan of "inexplicable diplomatic discourtesy".
Summary:
The council said it will cancel licenses of lawyers found guilty.
Summary:
The Institute of Chartered Accountants of India has sent notices to statutory auditors of PNB's fraud-hit Brady House branch in Mumbai.
Summary:
The incident came to light after the doctor who runs the clinic called in plumbers based on a complaint by the domestic help about the toilet being clogged.
Summary:
Bill Gates has emerged as the world's most admired man while actress Angelina Jolie has been named the world's most admired woman in UK-based research firm YouGov's survey.
Summary:
A Beijing-bound Air China flight was diverted to Zhengzhou today after a male passenger tried holding a flight attendant hostage by using a fountain pen as a weapon, China's civil aviation authority said.
Summary:
Viswanathan further said that Toyota globally has 34 hybrid models but in India, it has only one due to "punitive taxation".
Summary:
A taekwondo trainer has been arrested for masturbating in front of a woman at the doorstep of her residence in Delhi.
Summary:
State-run Russian TV channel Rossiya-24 has told citizens to be prepared for World War III.
Summary:
Russia's UN envoy Vassily Nebenzia has said the US, the UK and France could have stopped the conflict in Syria within 24 hours if they wanted.
Summary:
Haqqani further said that Pakistan should have relationships with multiple partners.
Summary:
Meanwhile, social media users said, "I cannot express how impressed I am with this" and "Seeing gorillas in zoos make me really sad."
Summary:
Starbucks CEO Kevin Johnson has expressed his "deepest apologies" to two black men over their wrongful arrest while waiting in a Philadelphia store.
Summary:
As per reports, Sanjay Dutt has replaced Arshad Warsi for the lead role in the upcoming film 'Chicago Junction'.
Summary:
Kangana Ranaut, who is yet to join social media, said, "Sometimes your agents tell you just open an account and don't post, or let us post...That's not okay with me.
Summary:
Reality TV star-entrepreneur Kylie Jenner shared a picture of herself with her baby daughter Stormi Webster in a $12,500 (over â¹8 lakh) stroller by luxury fashion label Fendi.
Summary:
Slamming the user, Swara tweeted, "You should be ashamed you exist...
Summary:
Pandey also took a diving catch near the boundary to dismiss Andre Russell.
Summary:
Google is reportedly drafting a set of ethical principles for the use of its technology after employees protested against the company's partnership with the US government.
Summary:
A goods train travelled for two kilometres without five of its wagons in Odisha on Saturday night.
Summary:
Earlier, several Air India employees held a lunch-hour protest meeting against the sale of the airline to private players.
Summary:
A teacher at a government school in Maharashtra's Karjat allegedly forced a wooden cane into a Class 2 student's throat after he failed to solve a Math problem.
Summary:
The tip of an Air India plane wing brushed against an IndiGo A320 aircraft's rudder on Saturday while being shifted from one bay to another at the Mumbai airport.
Summary:
Police have arrested a 31-year-old man for illegal possession of sambar deer horns worth â¹10 lakh near Mumbai.
Summary:
Gold worth over â¹43 lakh was seized from three passengers who arrived at the international airports in Kochi and Thiruvananthapuram on Saturday, officials said.
Summary:
Blaming Russia for allowing Syria to carry on with its chemical weapons program, US Vice President Mike Pence on Saturday said that Russia is on the wrong side of history.
Summary:
A map used by former US President John F Kennedy during the Cuban Missile Crisis of 1962 has been auctioned for $138,798 (over â¹90 lakh).
Summary:
The Income Tax Department has seized â¹440 crore of dividend income due to UK-based Cairn Energy to recover â¹10,247 crore retrospective tax demand.
Summary:
Infosys on Friday announced its decision to sell Panaya and Skava which were acquired during the tenure of former CEO Vishal Sikka.
Summary:
Abraham Lincoln, who had a height of 6 feet 4 inches, holds the record for being the tallest President in US history till date.
Summary:
India recorded their first-ever 300-plus ODI total in their 283rd match against Pakistan on April 15, 1996, almost 22 years after their first-ever ODI.
Summary:
Windies' legendary batsman Viv Richards hit a 56-ball ton against England on April 15, 1986, setting a record for the fastest Test ton that stood for 30 years.
Summary:
Researchers believe it can have many applications including speech enhancement and improved hearing aids.
Summary:
Apple is reportedly working on a gold colour variant of iPhone X model, as per the photos published by the US Federal Communications Commission (FCC).
Summary:
Around 105 homes in the village, which has a population of nearly 600, now have electricity, reports said.
Summary:
The company also displays the pictures of their on-campus dogs on the website's 404 error pages.
Summary:
A driving school in the Chinese city of Dezhou made students keep their phones on the yellow line demarcating the parking space before reversing into the parking spot.
Summary:
Sorrell built WPP into one of the UK's largest companies with over 2 lakh employees in 112 countries.
Summary:
The gap between imports and exports was at $47.7 billion in the year-ended March 2017.
Summary:
Loans worth â¹8,000 crore given to Mehul Choksi-promoted Gitanjali Gems have turned bad during the March quarter, according to reports.
Summary:
A Mumbai court has ordered the sealing of fashion designer duo Pradeep and Neha Hirani's apartment in Bandra for defaulting on a â¹24-crore loan given by IDBI Bank, as per a report.
Summary:
As per reports, Kartik Aaryan will sign a romantic film with Sanjay Leela Bhansali's production house as the two have been planning to collaborate on a film together.
Summary:
With the win, Manchester City are now just three points away from winning the Premier League title.
Summary:
Congolese-born Spanish NBA player Serge Ibaka answered questions in three languages (English, French, and Spanish) in succession during a post-match conference after his side Toronto Raptors' playoff win against Washington Wizards.
Summary:
German professional road bicycle racer John Degenkolb took to Twitter to share a picture of himself after the 257-km-long Paris-Roubaix race.
Summary:
According to a study by Pew Research Center, out of all tweeted links to popular websites, 66% were shared by accounts with characteristics common among automated "bots," rather than human users.
Summary:
A London hotel is introducing an experience wherein guests must escape their own "murder" in a reenactment of how 19th-century serial killer HH Holmes murdered his victims.
Summary:
New Delhi-based healthcare startup Affordplan has raised â¹55.8 crore in a Series B funding round from Lok Capital and Omidyar Network.
Summary:
Vice President Venkaiah Naidu, Lok Sabha Speaker Sumitra Mahajan, and Law Minister Ravi Shankar Prasad attended IAS couple Tina Dabi and Athar Aamir-ul-Shafi Khan's wedding reception.
Summary:
Members of Dalit community "cleansed" BR Ambedkar's statue in Gujarat's Vadodara with milk and water after union minister Maneka Gandhi and other BJP leaders placed garlands on the Dalit icon's statue on his birth anniversary.
Summary:
A 70-year-old woman in Uttar Pradesh's Shahjahanpur had to be carried to the hospital on a cot by her family members after an ambulance allegedly denied help citing lack of fuel.
Summary:
The Food Safety and Standards Authority of India has proposed that it should be mandatory to display red colour coding on the labels of packaged food products with high fat, sugar, or salt levels.
Summary:
Ganga resigned as minister after being seen at the rally.
Summary:
A 23-year-old Gurugram student was repeatedly gangraped for two years by her friend and two others after the accused used a video of the first rape, which they had committed after sedating her, to blackmail her.
Summary:
The Singrauli district in Madhya Pradesh has renamed 80 government schools which were named after dominant castes in that area.
Summary:
Lincoln, who successfully lead the country through civil war, was the first US President to be assassinated.
Summary:
With an overall tally of 66 medals including 26 golds at the 2018 Commonwealth Games, the Indian contingent has surpassed the medal tally from the last edition of the Games in Glasgow in 2014.
Summary:
Chirag Chandrashekhar Shetty and Satwik Rankireddy won India's first-ever silver medal in men's doubles badminton event in Commonwealth Games history.
Summary:
Mukesh Ambani-led Reliance Industries will invest over â¹1,173 crore over three years in exchange for 72.69% stake in Mumbai-based edtech startup Embibe, as per filings.
Summary:
Google has lost a 'right to be forgotten' case filed by a UK businessman, who demanded search results about a past crime he had committed to be deleted.
Summary:
The robot can walk around, move its torso and even shoot foam balls at 140 kmph from a gun attached to its arm.
Summary:
GovTech, the Singapore government agency in charge of the project, has given companies until May to register in providing technology for the network.
Summary:
Elon Musk-led SpaceX is set to launch NASA's space telescope called TESS (Transiting Exoplanet Survey Satellite) to search for other planets orbiting distant stars.
Summary:
Summary:
The incident may have been caused by the failure of the hand-brake, a Northern Railway spokesperson said.
Summary:
The incident occurred two weeks ago when three bike-borne youths kidnapped the victim who had gone to a neighbouring village to collect water.
Summary:
Following the missile strikes in Syria on Friday, US Defense Secretary James Mattis said that "it was time for all civilised nations to end the Syrian civil war" by supporting UN-backed diplomatic negotiations.
Summary:
The suspect can be charged with document forgery and can be jailed for up to six years, the police said.
Summary:
A nine-year-old Australian boy was upgraded to business class after Jetstar employees pooled in their A$50 (â¹2,500) gift vouchers to buy him and his father upgrades on their upcoming flight.
Summary:
Mukesh Ambani-led Reliance Jio Infocomm has raised about â¹3,250 crore through a loan from Japanese banks, the largest Samurai loan (low interest loans from Japanese investors) for an Asian company.
Summary:
Boxer MC Mary Kom, who claimed her maiden Commonwealth gold on Saturday, is set to be India's flag-bearer at the 2018 Commonwealth Games' closing ceremony.
Summary:
Admitting to having bitten his opponent in the men's 125 kg freestyle event at the 2018 CWG, Indian wrestler Sumit Malik, who eventually won the event, said his opponent "did not taste like tandoori chicken".
Summary:
Barcelona recovered from their Champions League quarterfinal stage exit by setting up a 39-match unbeaten record in the La Liga with their 2-1 win over Valencia on Saturday.
Summary:
Researchers from the University of Washington and the Allen Institute have trained an AI (artificial intelligence) system to respond like a dog.
Summary:
The update will also allow users to stop recipients from forwarding, copying or downloading emails.
Summary:
National carrier Air India on Saturday said that it has suspended three senior officials for "indiscipline".
Summary:
The CBI on Saturday arrested Unnao rape accused BJP MLA Kuldeep Singh Sengar's woman aide for allegedly luring the victim to him.
Summary:
Talking about the Unnao rape case, Karnataka Congress Working President Dinesh Gundu Rao on Saturday said that Uttar Pradesh CM Yogi Adityanath would have resigned by now if he had "any decency".
Summary:
The Kerala government has filed a review petition in the Supreme Court against the court's judgment changing several provisions under the SC/ST act.
Summary:
"I was in it for 32 years...I will continue to work for the welfare of Hindus," he said.
Summary:
The Sabarmati station of India's first bullet train, which will connect Ahmedabad and Mumbai, will be themed around Mahatma Gandhi's Dandi March and will cost around â¹250 crore, officials said.
Summary:
As many as 12 people were injured on Saturday after five coaches of the Katni-Chopan passenger train derailed in Madhya Pradesh's Katni district.
Summary:
The UN Security Council has rejected a Russian resolution to condemn "aggression" by the US, the UK and France against Syria.
Summary:
Nehwal is the only Indian female badminton player to win singles gold in Commonwealth Games history.
Summary:
The body of a nine-year-old girl has been found by the police in Surat with 86 injury marks.
Summary:
Commonwealth Games 2018 gold medal-winning weightlifter Punam Yadav was attacked in Varanasi's Rohaniya on Saturday.
Summary:
Notably, only three Indian shuttlers have won CWG men's singles titleâÂÂPrakash Padukone (1978), Syed Modi (1982) and Parupalli Kashyap (2014).
Summary:
An unidentified man who stood in front of a column of tanks during political protests in China was among TIME's 100 Persons of The 20th Century.
Summary:
The duo had claimed India's first-ever CWG medal in squash with a gold in 2014.
Summary:
KKR captain Dinesh Karthik slammed "poor refereeing" in his wife and squash player Dipika Pallikal's CWG mixed doubles gold medal match.
Summary:
Paytm Founder Vijay Shekhar Sharma has said that only customers should own their data, adding, "No one else should be allowed to own it, be it company or government." Currently there is neither a privacy law in India nor restrictions to corporates who are using the data, Sharma said.
Summary:
US ambassador to the UN Nikki Haley on Saturday said the country is "locked and loaded" in an event of a chemical attack by Syrian President Bashar al-Assad.
Summary:
The disinformation campaign by Russia increased after the missile strikes in Syria, with the activity of Russian trolls increasing by 2,000% in the last 24 hours, the US said on Saturday.
Summary:
The CBI has registered a case against Delhi-based SSK Trading, its directors and others for cheating six banks including PNB of â¹187.29 crore.
Summary:
Actress Kriti Sanon will be receiving the Dadasaheb Phalke Excellence Award for her performance in the 2017 film 'Bareilly Ki Barfi'.
Summary:
Tweeting Tamil New Year wishes on Saturday, actor-turned-politician Rajinikanth said life in Tamil Nadu has become a struggle as people are forced to protest for safeguarding their rights and protecting land, water, and air.
Summary:
People today trust their friends' reviews more." Ranjan, who directed the 'Pyaar Ka Punchnama' franchise, further said he doesn't give value to people who sit in theatres, watch a film, and tweet.
Summary:
Sunny Leone shared a picture of herself holding her daughter Nisha while tweeting, "I promise with every ounce of my heart, soul and body to protect you." She further wrote that children should feel safe against evil, hurtful people.
Summary:
Radhika Apte will portray Noor Inayat Khan, a spy known for her contribution to the British government during World War II, in a yet-to-be-titled film.
Summary:
Sidharth Malhotra has said that there were times when he had thought of quitting, while adding, "But I brushed those thoughts away...
What would I have done had I quit, and gone back?"
Summary:
KKR pacer Kamlesh Nagarkoti, who was a part of India's victorious Under-19 World Cup 2018 squad, has been ruled out of the IPL due to injury.
Summary:
Meanwhile, Manika Batra won her fourth medal at the current edition of the Commonwealth Games after claiming a bronze medal in the mixed doubles table tennis event on Sunday.
Summary:
SunRisers Hyderabad on Saturday registered their third successive win in the IPL 2018 after defeating Kolkata Knight Riders at the Eden Gardens for the first time in IPL.
Summary:
Neeraj Chopra, the first Indian to win Commonwealth Games javelin gold, was born on December 24, 1997 in Haryana's Panipat district.
Summary:
Former India captain MS Dhoni took to Instagram to share a video of himself hitting targets with a pistol at a shooting range.
Summary:
The Indian mixed doubles pair of Manika Batra and Sathiyan Gnanasekaran defeated compatriots Sharath Kamal Achanta and Mouma Das to win the table tennis mixed doubles bronze medal at the Commonwealth Games 2018 on Sunday.
Summary:
Vaiko said that Suresh had been disturbed after listening to his speech against PM Narendra Modi's arrival in Tamil Nadu.
Summary:
The police has arrested five people for allegedly duping e-retailer Amazon of nearly â¹16 lakh by claiming non-delivery on around 300 products.
Summary:
Describing the alleged chemical attack in Syria as "deplorable", India on Saturday called for an impartial and objective investigation into the attack by the Organisation for the Prohibition of Chemical Weapons.
Summary:
The Indian Railways has declared that it plans to add 4,500 more women to the strength of the Railway Protection Force (RPF) by next year.
Summary:
Chanel's creative director Karl Lagerfeld said models should not get into the profession if they don't want their pants to be pulled.
Summary:
Congratulating boxer MC Mary Kom, who became the first Indian woman to win a gold medal in boxing at the Commonwealth Games (CWG), Priyanka Chopra tweeted, "You are and always will be my champion!" Priyanka portrayed the boxer in the 2014 biopic Mary Kom directed by Omung Kumar.
Summary:
Chinese microblogging platform Sina Weibo has said it will remove homosexual and violent content from the platform in a move aimed at complying with the country's new cybersecurity law that calls for data surveillance.
Summary:
An in-house committee was constituted to probe the alleged leak after BJP IT cell head Amit Malviya tweeted poll dates before the EC, quoting a news channel.
Summary:
Protesting against the BJP for allegedly supporting the accused in Kathua rape case, CPI(M) members have distributed posters in Kerala's Vamanapuram asking BJP workers to not enter residents' houses seeking votes as little girls live there.
Summary:
Former BJP minister Chander Parkash Ganga on Saturday said the party did not pressurise him to resign from the Jammu and Kashmir Cabinet, adding that he resigned to save the party's image.
Summary:
A CBI court on Saturday sent BJP MLA Kuldeep Singh Sengar to a seven-day police custody for allegedly raping a 17-year-old girl in Uttar Pradesh's Unnao.
Summary:
The police has filed an FIR against a professor at JNU's School of Social Sciences for allegedly sexually harassing, molesting and threatening a female PhD student.
Summary:
When asked about UN Secretary-General António Guterres' reaction to the rape of an eight-year-old in Jammu and Kashmir's Kathua, his spokesperson Stéphane Dujarric termed the case as "horrific".
Summary:
The victim received a phishing mail claiming to give the link to file online ITRs, and that link led him to a fake website with a homepage identical to the I-T department's website, police said.
Summary:
Crimes against Scheduled Caste have increased under the PM Narendra Modi-led NDA government since 2014, National Crime Records Bureau data has revealed.
Summary:
VHP held elections for selecting its International President for the first time in 52 years after trustee members suggested two contenders for the post.
Summary:
The Myanmar military has been put on a UN blacklist of government and rebel groups suspected of carrying out acts of sexual violence in conflict against the Rohingyas.
Summary:
The US, UK and France carried out the strikes in response to the attack, to destroy Syria's chemical weapons' facilities.
Summary:
The US Treasury Department has added India to a "monitoring list" of countries with potentially questionable foreign exchange policies, along with China, Germany and three other nations.
Summary:
Hailing the "perfectly executed" missile strikes in Syria, US President Donald Trump on Saturday thanked the UK and France for the coordinated effort and tweeted, "Mission Accomplished".
Summary:
The CBI has registered a case against former UCO Bank CMD Arun Kaul, two private companies' managing directors and others over a â¹621-crore fraud.
Summary:
Actress Alia Bhatt asked a person named Sidharth Kadam to give feedback of the trailer of her upcoming film 'Raazi' claiming that she likes the name Sidharth.
Summary:
Riddhi Sen, the 19-year-old actor who won the 65th National Awards for Best Actor for the Bengali film 'Nagarkirtan', said, "I don't know if I'm really the youngest, but I must be the happiest." Riddhi added, "I made no effort to win it.
Summary:
Tiger Shroff has said that based on his films, people have already tagged him as an "action hero" or "dancing star".
Summary:
Summary:
As per reports, the Rajinikanth starrer 'Kaala' is set to get an Eid release, which is also the release date for the Salman Khan's 'Race 3'.
Summary:
With this, Delhi Daredevils registered their first win of the season while Mumbai Indians suffered their third successive defeat.
Summary:
He also launched the first health care centre under the Ayushman Bharat Scheme in the district.
Summary:
Slamming the US, UK and France over their missile strikes in Syria, Iranian Supreme Leader Ayatollah Ali Khamenei said that US President Donald Trump, his French counterpart Emmanuel Macron, and UK PM Theresa May were "criminals".
Summary:
The US embassy in Cambodia has fired 32 workers for allegedly sharing pornographic material in a group chat on Facebook Messenger, Reuters has claimed.
Summary:
India finished fourth in the men's hockey at the Commonwealth Games 2018 after losing 1-2 to England in the bronze medal play-off on Saturday.
Summary:
A gangster named Dilpreet Singh Dhahan has claimed in a Facebook post that he was the one who shot Punjabi singer Parmish Verma.
Summary:
Vikas Krishan defeated Cameroon's Dieudonne Ntsengue in men's 75kg final to win India's third boxing gold of the day at the CWG 2018 on Saturday.
Summary:
A 19-year-old girl was repeatedly raped and assaulted by her friend after he confined her to his residence in Delhi's Sultanpuri for 10 days.
Summary:
A Telangana sessions court judge has been arrested by the Anti-Corruption Bureau for allegedly taking a â¹7.5-lakh bribe to grant bail to an MTech student in a narcotics case.
Summary:
Kapil Sharma, while talking about the ongoing controversy surrounding him wherein he abused SpotboyE editor Vickey Lalwani, said, "We all have our way of expressing anger.
Summary:
Rishi Kapoor will make his singing debut with the song 'Badumbaaa' in the upcoming film '102 Not Out'.
Summary:
MiloÃ
¡ Forman, known for directing the Oscar-winning film 'One Flew Over the Cuckoo's Nest' passed away aged 86 after a short illness.
Summary:
An idol in Sri Muthumariamman Temple in Tamil Nadu's Coimbatore was decorated with new currency notes of â¹200, â¹500, and â¹2,000 worth â¹4 crore on the occasion of Tamil New Year on Saturday.
Summary:
On the occasion of Ambedkar Jayanti, PM Narendra Modi on Saturday launched the first phase of the government's ambitious Ayushman Bharat healthcare programme by inaugurating its first wellness centre in Chhattisgarh's Bijapur.
Summary:
Reports said police didn't allow the victim to leave the area and go to the hospital until Rao's convoy had passed.
Summary:
A month after Uttar Pradesh added 'Ramji' to BR Ambedkar's name, the Bihar government announced its decision to introduce 'Ramji' as the Dalit icon's middle name in government and court records.
Summary:
A two-judge Supreme Court bench has agreed to hear ex-Law Minister Shanti Bhushan's petition that Chief Justice's authority as "master of roster" is not an "absolute, singular power" and should be exercised in consultation with senior judges.
Summary:
US billionaire Venture Capitalist Tim Draper has claimed he has garnered enough votes to trigger a referendum on splitting US' California into three separate states.
Summary:
Italian exchange BitGrail lost about $195 million worth of cryptocurrency Nano in a hack in February.
Summary:
Delhi-based Bitcoin exchange Coinsecure, which lost Bitcoins worth approximately â¹20 crore, has announced reward of 10% or around â¹2 crore for anyone who helps them recover the lost Bitcoins.
Summary:
According to reports, Deepika Padukone and her rumoured boyfriend Ranveer Singh have been signed for an upcoming project which will be produced by Yash Raj Films.
Summary:
Farah Khan revealed that during the shoot of the song 'Jiya Jale' from 'Dil Se', she had jokingly told Shah Rukh Khan that he had to emerge from a waterfall wearing only a white dhoti.
Summary:
Rajiev Dhingra, the director of Kapil Sharma starrer 'Firangi', while speaking about Kapil's health condition, said, "I am extremely worried but I don't know what to do." "Kapil is on heavy medication for depression...
Summary:
Summary:
Reacting to actress Anushka Sharma cheering for her husband Virat Kohli during a match between his team Royal Challengers Bangalore and Kings XI Punjab, a user tweeted, "Anushka Baahubali." "When your mom says 'It's rajma chawal in dinner'," wrote another user.
Summary:
Producer Boney Kapoor, while speaking about his late wife Sridevi's National Award win, said, "Today, we, as a family, don't know whether we should celebrate or not." "We don't know if we should laugh with joy or cry while remembering her," he added.
Summary:
Meanwhile, Pakistan's Muhammad Inam, who beat Somveer in the event's early stages, won the gold medal in the final.
Summary:
Sharath Kamal and Sathiyan Gnanasekaran won India its second successive Commonwealth Games silver medal in the men's table tennis doubles event after losing to England's Paul Drinkhall and Liam Pitchford at Gold Coast on Saturday.
Summary:
The 28-year-old became the first Indian to win silver in the men's super heavyweight category at CWG.
Summary:
This was the fifth time Australia won the event at the Commonwealth Games.
Summary:
Earlier, they found the same hormone FGF21 acts via the brain's reward pathway in mice to suppress the desire for sugar and alcohol in favour of drinking water.
Summary:
Planets orbiting "short-period" binary stars, or stars that orbit each other closely, can be ejected off into space due to resulting gravitational effects, as per a University of Washington study.
Summary:
Manika Batra has become the first-ever Indian woman to bag gold in the women's table tennis singles' event in Commonwealth Games history.
Summary:
Indian wrestler Sumit Malik claimed gold in the men's freestyle 125kg after his opponent Nigeria's Sinivie Boltic was ruled out of the final bout due to injury at CWG 2018 on Saturday.
Summary:
Indian wrestler Vinesh Phogat claimed the top position in the women's freestyle 50kg Nordic System event at Gold Coast on Saturday to win her second successive gold at the Commonwealth Games.
Summary:
Punjabi singer Parmish Verma was shot at in Mohali on the intervening night of Friday and Saturday.
Summary:
Aryaman Verma, a 13-year-old boy from Ludhiana, Punjab has registered his name in the India Book of Records by becoming the youngest developer of a drone.
We're hopeful they'll accept it," Verma's mother said.
Summary:
Aleksandr Kogan, who gave Facebook users' data to Cambridge Analytica, reportedly collected direct messages sent to and from the users who installed his 'This Is Your Digital Life' app.
Summary:
Responding to an article saying Tesla is relying on too many robots to make the Model 3 car and needs more workers, the company's CEO Elon Musk tweeted, "Yes, excessive automation at Tesla was a mistake." "To be precise, my mistake.
Summary:
American researchers have developed a method for generating numbers "guaranteed to be random" using photons or particles of light based on quantum mechanics.
Summary:
A US-based study has found further evidence that loggerhead sea turtles use Earth's magnetic field to find their way back to the beach where they themselves hatched.
Summary:
Unnao rape case survivor has said accused BJP MLA Kuldeep Singh Sengar is a "devil" and should be hanged.
"My uncles used to say that "daddu" (Sengar) is very good.
Summary:
The US Defence Department, Pentagon, has said the strikes in Syria are designed to "degrade Syrian war machine's ability to create chemical weapons" with no attempts to expand that target.
Summary:
The war in Afghanistan has caused around 2,258 civilian casualties in the first three months of this year, according to the United Nations mission in the war-torn country.
Summary:
The US struck Syria "just at the moment when [the country] had chance for peace", Russian Foreign Ministry said on Saturday.
Summary:
Protesting over a government official's advice to avoid 'sexy' outfits to protect themselves from sexual harassment at a popular water festival, women in Thailand have started a social media campaign with hashtag #DontTellMeHowToDress.
Summary:
The agency is also probing 47 companies of Nirav allegedly involved in round tripping.
Summary:
It's happening and it's going to be awesome!" The investor, who led investments in Skype, Tesla, and Twitter, had purchased around 30,000 Bitcoins from the US Marshals Service in 2014.
Summary:
The Enforcement Directorate has attached properties worth â¹375.71 crore of Surat-based Nakoda in a bank fraud case.
Summary:
Jio said the ads were aimed at "luring viewers" to subscribe to Airtel over other operators.
Summary:
Actress Koena Mitra has slammed Sonam Kapoor for her tweet condemning the Kathua rape case, wherein an 8-year-old girl was raped and murdered.
Summary:
Rio Olympics bronze medalist Sakshi Malik won a bronze at the 2018 Commonwealth Games, beating New Zealand's Tayla Ford in the women's freestyle 62 kg event in Gold Coast on Saturday.
Summary:
Chennai Super Kings' South Africa pacer Lungi Ngidi will return to South Africa, leaving the Indian Premier League mid-way, following the death of his father on Friday.
Summary:
Indian sprinter Jinson Johnson broke a 23-year-old national record in his fifth place-winning performance in the men's 1,500m sprint at the CWG 2018 on Saturday.
Summary:
Shelar finished the 32.2-km swim in nine hours and 10 minutes.
"I now eye the upcoming competition in Bhagirathi River for 81 km," Shelar said.
Summary:
In response to the ban, Telegram CEO Pavel Durov, tweeted, "Privacy is not for sale."
Summary:
A 75-km-wide landscape on Mars has led to speculations of it being a crater formed by a meteorite impact or a supervolcano.
Summary:
The Delhi government is mulling a hike in auto-rickshaw fares for the first time since the 25% raise in 2013.
Summary:
PV Sindhu and Saina Nehwal won their respective semi-finals on Saturday to set up the first-ever all-Indian women's badminton singles' final at the Commonwealth Games.
Summary:
The 20-year-old junior world record holder hurled the javelin to a distance of 86.47m to bag India's 21st gold at the Commonwealth Games 2018 on Saturday.
Summary:
Solanki achieved the feat after defeating Northern Ireland's Brendan Irvine in the final at Gold Coast on Saturday.
Summary:
Delhi's Karkardooma Court has convicted actor Rajpal Yadav, his wife and a company in a recovery suit filed against them for failing to repay a loan of â¹5 crore.
Summary:
High-speed transportation system developer Hyperloop Transportation Technologies (HyerloopTT) has started the construction of what it claims is the world's first full-scale passenger and freight system in France.
Summary:
The figure includes $7.3 million for Zuckerberg's personal security at residences and during travel, and $1.5 million for costs related to usage of aircraft.
Summary:
In the memo, the company said that leakers not only lose their jobs at Apple but in some cases can also face "jail time and massive fines".
Summary:
US-based startup Zipline has developed a drone that can deliver urgent medicines, blood, and vaccines mid-flight.
Summary:
In a recently revealed Apple memo warning employees to not leak confidential details, the technology giant wrote, "the Apple employee who leaks has everything to lose." Leakers do not simply lose their jobs at Apple but "they can face extreme difficulty finding employment elsewhere," Apple emphasised.
Summary:
In a recently revealed memo warning employees to not leak confidential details, Apple said, "In 2017, Apple caught 29 leakers.
Summary:
Sidhu allegedly got into an altercation with 65-year-old Gurnam Singh and hit him, following which the man died.
Summary:
The family of the eight-year-old Kathua rape victim has claimed they were not allowed to bury her at their local graveyard and laid her to rest 10 km away in another part of the village.
Summary:
An Information and Broadcasting Ministry proposal has recommended putting chips in new TV set-up boxes to ensure enhanced tracking of viewership.
Summary:
A US media firm paid $30,000 (around â¹20 lakh) to a former doorman at Trump World Tower to remain silent over his claims that US President Donald Trump fathered a child with a former housekeeper.
Summary:
The US estimates that Syrian forces backed by President Bashar al-Assad used chemical weapons at least 50 times since the civil war began seven years ago, US ambassador to the UN Nikki Haley said on Friday.
Summary:
The ministry released statements reportedly made by medical practitioners in Douma's hospital, who revealed how the attack was "staged".
Summary:
Russian intelligence agencies were spying on the emails of former spy Sergei SkripalâÂÂs daughter Yulia for at least five years before the duo was poisoned last month, UK National Security Adviser Mark Sedwill has said.
Summary:
Speaking about the ongoing controversy surrounding Kapil Sharma, comedian Chandan Prabhakar said, "Kapil is an emotional person and [negative articles on him] affect him." Referring to SpotboyE editor Vickey Lalwani, Chandan added, "The journalist...
Summary:
Priyanka Chopra, while asking people not to body shame women, said, "The fitness standard for women has always been...36-24-36.
Priyanka further said, "Beauty is...the best version of how healthy you can be."
Summary:
Actress Shweta Tripathi, known for starring in the films 'Masaan' and 'Haraamkhor', got engaged to her boyfriend, actor and rapper Chaitanya Sharma, also known as SlowCheeta.
Summary:
Summary:
The Indian women's hockey team missed their chance of winning a bronze medal after losing to England 0-6 in the bronze medal match at the Commonwealth Games 2018 on Saturday.
Summary:
India has won two gold, two silver and three bronze medals in boxing at the CWG 2018 so far.
Summary:
Gurugram-based online lending startup Aye Finance has raised â¹30 crore in funding from Switzerland-based BlueOrchard Finance.
Summary:
The birds twist their tails sideways while flying by females, who chose their mates according to their speeds.
Summary:
The Delhi High Court has fined a Manali-based hotel owner â¹50,000 for uploading pictures of Fairmont Hotels on his Facebook page to suggest that they were of his own hotel.
Summary:
Extending wishes on the occasion of Ambedkar Jayanti, PM Narendra Modi on Saturday shared a video on the Dalit icon wherein he claimed that the "new India" his government is working on will be the India of "Ambedkar's dream".
Summary:
Five-time world champion and Olympic bronze medallist MC Mary Kom has become the first Indian woman boxer to win a gold medal at the Commonwealth Games.
Summary:
Shooter Sanjeev Rajput won the men's 50m Rifle 3 Positions with a Games record to take India's gold tally in shooting at the 2018 Commonwealth Games to seven.
Summary:
The US has launched air strikes in Syria along with the UK and France, in response to the chemical attack that killed dozens of people last week.
Summary:
Bhumi Pednekar has said that due to the presence of web streaming platforms which present quality web shows, the audience cannot be shown "any cheap â¹2 thing" that has no thought gone into it.
Summary:
Tamil Nadu Police has arrested folk singer Kovan from his residence in Tiruchy for performing a song which reportedly slammed PM Narendra Modi, Tamil Nadu CM EK Palaniswami and Deputy CM O Panneerselvam.
Summary:
After two BJP leaders who attended a rally supporting the rape-accused in the Kathua rape case resigned, BJP General Secretary Ram Madhav said PM Narendra Modi had recommended action against them to send a message to people.
Summary:
After resigning from the Jammu and Kashmir Cabinet, former BJP minister Lal Singh said he attended a rally supporting the Kathua rape-accused to voice residents' demands of CBI inquiry in the case.
Summary:
A helicopter carrying senior Congress leader Kamal Nath lost its way in Madhya Pradesh's Narsinghpur district on Friday morning.
Summary:
PM Narendra Modi on Friday took the metro during rush hour on his way to inaugurate Dr Ambedkar National Memorial on the eve of the Dalit icon's birth anniversary.
Summary:
Amid US President Donald Trump's threats to launch missile strikes in Syria over the suspected chemical attack, Russia has said it cannot depend on "someone's mood" to ensure global stability.
Summary:
UN Secretary-General António Guterres on Friday said the "Cold War is back with a vengeance" amid global tensions.
Summary:
Russia had earlier called the attack "fake news" and an attempt to justify potential strikes against Syria.
Summary:
US President Donald Trump has slammed ex-FBI chief James Comey in multiple tweets, calling him a "leaker and liar" after reports revealed information from his book.
Summary:
Amid tensions between the two nations over a suspected chemical attack in Syria, Russia on Friday said that the US' behaviour was "not worthy" of its status as a permanent member of the UN Security Council (UNSC).
Summary:
As per reports, Ferrell was later released from the hospital and did not suffer any significant injury.
Summary:
Addressing Akshay Kumar at a recent event, Kareena Kapoor Khan jokingly said that Taimur is a threat to him despite his fan following.
Summary:
The French police have reportedly arrested a man in connection with the armed robbery of American reality TV actress Kim Kardashian in Paris in 2016.
Summary:
'Newton' director Amit V Masurkar has said that Rajkummar Rao deserved to win the National Award for Best Actor this year.
Rao had won National Award for Best Actor for 2013 film 'Shahid'.
Summary:
Boxer Amit Panghal clinched silver in the men's 46-49kg event on Saturday to take India's medal tally in boxing at the CWG 2018 to five.
Summary:
AB de Villiers smashed 57(40) including four sixes as RCB defeated KXIP on Friday to clinch their first win of IPL 2018.
Summary:
The Super Cup quarterfinal match between Goa and Jamshedpur witnessed six players being sent off at the match's half-time mark.
Summary:
Formula E Championship is considered as the world's first fully-electric international single-seater street racing series.
Summary:
Australian all-rounder Glenn Maxwell has said the Australian team felt that banned cricketers Steve Smith, David Warner and Cameron Bancroft were treated like criminals following the ball-tampering fiasco in South Africa.
Summary:
MDMK chief Vaiko's nephew Saravana Suresh set himself ablaze in a public park in Tamil Nadu's Virudhunagar on Friday morning over the Centre's failure to set up the Cauvery Management Board.
Summary:
A 32-year-old woman from Delhi was on Wednesday stabbed around 12 times by her friend when she asked him to return the money she had lent him, police said.
Summary:
Police have booked the accused, who visited the victim's family in April, under the POCSO Act and Section 377.
Summary:
The Hyderabad Traffic Police hired actors to dress up as Yama Dharmaraja, the God of death, and his aide Chitragupta to create awareness about traffic rules.
Summary:
In his first public statement following the outrage on the Kathua and Unnao rape cases, PM Narendra Modi on Friday said, "As a country, as a society we all are ashamed of it." "I want to assure the country that no culprit will be spared, complete justice will be done.
Summary:
Hours after an order by the Allahabad High Court, Uttar Pradesh BJP MLA Kuldeep Singh Sengar was arrested by the CBI in the Unnao rape case.
Summary:
BJP ministers Choudhary Lal Singh and Chander Parkash Ganga, who reportedly participated in a rally against the arrest of the accused in the Kathua rape case, resigned from the Jammu and Kashmir Cabinet on Friday.
Summary:
Several Twitter users mocked the London Stock Exchange's new CEO David Schwimmer, comparing him to the actor with the same name who played Ross Geller in 'Friends'.
Summary:
Reacting to late actress Sridevi's win at the 65th National Film Awards, her family said she was "not just a Super Actor but a Super Wife and a Super Mom".
Summary:
Australian batsman Aaron Finch has become the first-ever player to represent seven teams in the IPL, after taking the field for Kings XI Punjab against Royal Challengers Bangalore on Friday.
Summary:
India is waiting", Rahul tweeted.
This comes after Rahul led a candlelight march at Delhi's India Gate demanding strict action in the rape incidents.
Summary:
The woman had called the driver as he was late when he asked her if she needed a "night parcel".
Summary:
In an email to an employee who filed a racial harassment lawsuit in 2017, Tesla said, "We are willing to pay...only if we are to resolve this matter before there is media attention." "If there is media attention first, there will be no deal," the recently revealed email read.
Summary:
One of the petitioners in the Ishrat Jahan encounter case, Gopinath Pillai, was killed in a car accident in Kerala on Friday.
Summary:
Jammu Bar Association chief BS Salathia has said the association wants action against the guilty in the Kathua rape case, adding that a "misinformation campaign" against the body attempted to communally divide the state.
Summary:
Police said that Maloo had on April 10 tried to commit suicide by consuming sleeping pills, and was admitted to Safdarjung Hospital.
Summary:
Former Chief Justice KG Balakrishnan has said the Supreme Court order mandating that arrests under the SC/ST Act be made only after the approval of an appointing authority or Senior Superintendent of Police was "basically wrong".
Summary:
Slamming ministers, MPs and other political figures over their silence on the rape of an eight-year-old girl in Kathua, author Chetan Bhagat tweeted, "What use is such power?
Summary:
Delhi Chief Minister Arvind Kejriwal's office spent around â¹1.03 crore on tea and snacks during three years of his tenure, an RTI response has revealed.
Summary:
The tickets for the proposed bullet train connecting Mumbai and Ahmedabad are expected to cost between â¹250 and â¹3,000, government officials said based on current projections.
Summary:
The US had earlier called China's military capability a greater threat than terrorism.
Summary:
China on Thursday conducted its largest naval parade in history, with more than 10,000 personnel along with 48 vessels and 76 aircraft taking part in the country's apparent show of force.
Summary:
Islamist militant group Boko Haram has abducted more than 1,000 children in Nigeria since 2013, the UNICEF has claimed.
Summary:
India's second largest IT firm Infosys on Friday reported a 28.2% quarter-on-quarter decline in net profit to â¹3,690 crore for the March quarter.
Summary:
He further said that property rights and democracy are the two major reasons why India is behind China.
Summary:
The All India Bank Employees Association has said, "It's high time that the government should come forward to nationalise ICICI Bank and Axis Bank." Commenting on the allegations against ICICI CEO Chanda Kochhar, the union said, "ICICI Bank was projected as a role model.
Summary:
Comparing actress Sri Reddy to Rani Lakshmibai of Jhansi, Ram Gopal Varma wrote, "Sri Lakshmi Bai used her own body as a weapon to fight Maledom in...film industry." The actress went topless to protest against casting couch in Telugu film industry.
Summary:
Veteran actress Rakhee will make a comeback in Bollywood after 15 years with the film 'Nirvaan', a Hindi version of the Bengali film 'Mukti', in which she had also starred.
Summary:
Sunil Grover has said that Kapil Sharma should take care of himself and his family, while adding, "Get back soon." This comes after Kapil reportedly slipped into depression following his Twitter rant over his tiff with SpotboyE editor Vickey Lalwani.
Summary:
Twelve-time European champions Real Madrid will face five-time champions Bayern Munich in the semi-finals of the Champions League 2017/18.
Summary:
Mirza called the user a "low life" and said she plays for India and will always be an Indian.
Summary:
He said, "I used to say, 'Don't give her an award because she died, it's unfair (to) the other girls'." Shekhar further said, "We used to...vote...it always came back to Sridevi.
Summary:
The energy is transferred from two tracks of rail in the road via a movable arm attached to the vehicle's bottom and automatically disconnects when the road ends.
Summary:
Summary:
Women and Child Development Minister Maneka Gandhi on Friday said the ministry will amend the Protection of Children from Sexual Offences (POCSO) Act to award death penalty for raping minors.
Summary:
Hearing a petition seeking action against lawyers for obstructing the filing of chargesheet in the Kathua rape case, the Supreme Court on Friday said, "no one should be allowed to obstruct justice" to the eight-year-old victim.
Summary:
Summary:
Father of the 8-year-old who was gang-raped and murdered in Jammu and Kashmir's Kathua has revealed that his wife doesn't know the extent of brutality their daughter had faced.
Summary:
The Allahabad High Court on Friday directed the CBI to arrest BJP MLA Kuldeep Singh Sengar, who is accused of raping a 17-year-old girl in Uttar Pradesh's Unnao.
Summary:
Trump had fired Comey over his handling of the Hillary Clinton email investigation.
Summary:
India's largest FMCG company Hindustan Unilever (HUL) has sued three former employees for allegedly stealing data related to manufacturing of its products and other confidential information.
Summary:
Actresses including Swara Bhasker and Kalki Koechlin, while supporting the campaign to get justice for 8-year-old Kathua rape and murder victim, shared pictures of themseves holding a placard with the message 'I am Hindustan.
Summary:
Reality TV star Kim Kardashian's sister Khloé Kardashian has given birth to a baby girl amid rumours of her partner basketball player Tristan Thompson cheating on her.
However, since the baby's birth, Khloé has reportedly forgiven him.
Summary:
Talking about her special appearances in dance numbers for films, Urmila Matondkar said, "I think I never went over the top because I am a strong-headed actor and I feel seductive as a woman." She feels that there is a thin line between being seductive and vulgar.
Summary:
Summary:
Rohit Shetty, while talking about his upcoming film 'Simmba' starring Ranveer Singh and Sara Ali Khan, said, "Sara will match Ranveer's craziness because her character in the film is such." "When I met Sara for the first time, I realised she's a hardcore commercial heroine.
Summary:
Pankaj Tripathi, who received Special Mention award for 'Newton' at the 65th National Film Awards, said, "I won't do the films that won't make sense.
Summary:
Mumbai Indians' Mayank Markande, who is the IPL 2018's current Purple Cap holder, was just 10 years old when the first edition of the tournament took place in 2008.
Summary:
Five Indian male boxers have been assured of at least a silver medal after they won their respective semi-final bouts at the CWG 2018 on Friday.
Summary:
India registered their best-ever finish in the women's table tennis doubles event at Commonwealth Games by clinching silver in Gold Coast on Friday.
Summary:
Four of five Indian shuttlers competing in the men's and women's singles' events at the CWG have advanced to the semi-finals.
Summary:
The FTC found Uber failed to disclose the 2016 data breach and is subject to additional requirements.
Summary:
"We will soon be able to commercially produce methane gas from natural gas hydrate deposits," said the researchers.
Summary:
Harvard scientists have achieved the world's most precisely controlled chemical reaction by combining sodium and cesium atoms to create a dipolar molecule.
Summary:
Every glass of wine or pint of beer over the daily recommended limit would cut 30 minutes from the expected lifespan of an average 40-year-old, an international study accounting drinkers from 19 countries has warned.
Summary:
A Mathematics school teacher in Bengaluru was arrested by the police on Thursday after he allegedly beat up a class ten student with a duster the previous day.
Summary:
Bangladesh PM Sheikh Hasina has urged the country's citizens to not consume the Hilsa fish on the Bengali New Year amid the falling population of the national fish.
Summary:
Tata Sons Chairman N Chandrasekaran on Friday said the conglomerate will take a decision on buying a stake in debt-ridden Air India by mid-May. The deadline for submitting initial bids for the carrier is May 14.
Summary:
Coinsecure has filed an FIR accusing its Chief Security Officer Amitabh Saxena of stealing the Bitcoins from the firm's wallet.
Summary:
Late actor Vinod Khanna was conferred with the Dadasaheb Phalke Award at the 65th National Awards announced on Friday.
Summary:
India will join Russia among the nations that will lose weightlifting spots at the Tokyo 2020 Olympics due to the number of doping violations registered against the nation's athletes.
Summary:
Boeing CEO Dennis Muilenburg has said the aerospace company doesn't plan to launch cars into space anytime soon, adding, "we might pick up the one out there and bring it back." His statement apparently takes a dig at the Tesla car which was launched into space aboard SpaceX's rocket in February.
Summary:
Responding to a report on Tesla heading to a "cash crunch", Tesla Co-founder Elon Musk has tweeted "will be profitable & cash flow+ in Q3 & Q4, so obv no need to raise money." Reports had claimed Tesla needs to raise $2.5-3 billion this year.
Summary:
Delhi's All India Institute of Medical Sciences (AIIMS) has topped the Union Health Ministry's list of top 10 Central government-run hospitals that maintain cleanliness within the hospital premises and has bagged an award of â¹2.5 crore.
Summary:
On March 30, two victims had registered complaints against the caretaker, following which the police launched an investigation and found out that many students were assaulted.
Summary:
An 18-year-old girl was allegedly abducted and repeatedly raped by a man for over 2 weeks in Gujarat's Tapi district.
Summary:
Summary:
Sirisena has replaced Wickremesinghe as head of several institutions amidst the crisis.
Summary:
"It is the academy's wish that I leave my post," she said.
Summary:
The fashion week's catwalk events are open only to women, in line with Saudi cultural norms.
Summary:
Originally contracted to serve until 2020, Mueller was stepping down "by mutual agreement, effective immediately," Volkswagen said.
Summary:
Macau gaming industry "father" Stanley Ho has announced his retirement as the Chairman of casino operator SJM Holdings on June 12.
Summary:
The Income Tax Department has issued second notice to ICICI Bank CEO Chanda Kochhar's husband Deepak Kochhar after it received a "part reply" from him in â¹3,250-crore ICICI Bank-Videocon loan case.
Summary:
The error occurred when an employee entered 'shares' instead of South Korean currency 'won' into a computer.
Summary:
Rashid revealed that the â¹1,00,000 prize money will be sent to the child.
Summary:
Mausam Khatri bagged silver after losing to South Africa's Martin Erasmus in the men's freestyle 97kg final on Friday to give India its 39th medal at the Commonwealth Games 2018.
Summary:
The US Open 2018 will use timed service clocks after deciding to include a 25-second service window and timed warm-ups across the tournament.
Summary:
Delhi-based healthcare startup LetsMD has raised $1 million in a pre-Series A funding led by SRI Capital.
Summary:
Gurugram-based home rental startup ZiffyHomes has acquired home rental platform Nivaasa, which is based in the same city, for an undisclosed amount.
Summary:
NASA has created a 4K resolution video tour of the Moon by compiling data from the Lunar Reconnaissance Orbiter, which was launched in 2009.
Summary:
The father of the 8-year-old, who was raped and murdered in January in Jammu and Kashmir's Kathua, said, "I miss my daughter every day." "Those responsible for killing my daughter should be hanged till death," he demanded.
Summary:
Summary:
A teacher from the Florida high school where 17 people were shot dead in February, has been arrested after leaving his loaded gun in a public toilet.
Summary:
Indian officials are set to raise an appeal with the Commonwealth Games Federation, after two Indian athletes Rakesh Babu and KT Irfan were sent home for violating the Game's 'no-needle policy'.
Summary:
Meanwhile, 'Baahubali 2' got the award for the Best Action Film.
Summary:
The late actress had portrayed the role of a mother avenging the rape of her daughter in the film.
Summary:
Wrestler Bajrang Punia won his first Commonwealth Games gold medal, defeating Wales' Kane Charig by technical superiority in the men's freestyle 65 kg final in Gold Coast on Friday.
Summary:
The Pakistan Supreme Court on Friday disqualified corruption-accused former Prime Minister Nawaz Sharif from holding public office for life.
Summary:
Nineteen-year-old Riddhi Sen was named the Best Actor for the Bengali film 'Nagarkirtan' at the 65th National Awards which were announced on Friday.
Summary:
The trailer of Priyanka Chopra's second Hollywood film 'A Kid Like Jake' has been released.
Summary:
Varun Dhawan starrer 'October', which released today, "is an offbeat and a sensitive film," wrote Bollywood Hungama.
It has been rated 2.5/5 (Bollywood Hungama), 4.5/5 (HT) and 4/5 (TOI).
Summary:
India had earlier won two golds and a silver in shooting, another gold in wrestling and a bronze in boxing.
Summary:
Nineteen-year-old Naman Tanwar won India its first boxing medal at the 2018 Commonwealth Games, winning a bronze in the men's 91 kg category on Friday.
Summary:
Khan's political party Pakistan Tehreek-e-Insaf (PTI) accused rival party leader Nawaz Sharif's supporters of circulating the picture.
Summary:
BJP MP Manohar Untwal, at an event on Thursday, referred to Congress MP Digvijaya Singh's wife Amrita Rai as an "item" he brought from Delhi.
Summary:
China is planning to send seeds of potato, a flowering plant, and silkworm eggs with its lunar probe later this year to conduct the first biological experiment on the Moon.
Summary:
They work as professional police officers," the officer added.
Summary:
A video has surfaced online which shows a Block Development Officer in Uttar Pradesh allegedly driving his car for nearly 4 km with a youth clinging on to the bonnet.
Summary:
The International chemical weapons watchdog has confirmed the UK's findings that source of the nerve agent used to poison ex-spy Sergei Skripal and his daughter originally came from Russia.
Summary:
PNB MD Sunil Mehta has said the Nirav Modi fraud "wasn't a system failure, it was a people failure".
Summary:
Fashion designer Manish Malhotra, in a tribute to late actress Sridevi, wrote, "I spoke to her the night she passed away.
Summary:
Mumbai Indians' 20-year-old spinner Mayank Markande, who took four wickets against Sunrisers Hyderabad on Thursday, revealed that he was flooded with over 300 messages after the IPL 2018 auction in which he was bought for â¹20 lakh.
Summary:
India's 15-year-old shooter Anish Bhanwala, the nation's youngest medalist at the Commonwealth Games following his men's 25m Rapid Fire Pistol Finals gold, hails from Haryana.
Summary:
The Causeway formed around 50-60 million years ago during intense volcanic activity after a magma lake cooled down.
Summary:
The girl had alleged that Bajwa asked her to show her midriff, selfies, and give foot massages.
Summary:
While it is known that erosion exposes new rocks and captures atmospheric carbon dioxide to form calcites, a study led by US researchers has found erosion can release CO2 faster than it is being absorbed.
Summary:
The US-based environmental group hopes it would force governments to take action against methane emissions, 80 times more potent than CO2 as a greenhouse gas.
Summary:
A group of seven women bikers who are part of the Ladies of Harley (LoH), an all-woman Harley Davidson chapter, embarked on their second official ride, travelling along the Golden Quadrilateral, covering 6,000 km.
Summary:
To ensure a hassle-free monsoon for passengers, MumbaiâÂÂs Central Railway (CR) is using drones to survey the mountain pass at the Western Ghats on the Mumbai-Pune and the Mumbai-Nashik route.
Summary:
Delhi Police on Friday arrested three suspected aides of underworld don Dawood Ibrahim on charges of conspiring to kill Uttar Pradesh Shia Waqf Board Chairman Wasim Rizvi.
Summary:
Fifteen-year-old shooter Anish Bhanwala became India's youngest gold medalist at the Commonwealth Games, winning the men's 25m Rapid Fire Pistol Finals with a record score at Gold Coast on Friday.
Summary:
This comes a day after an FIR was registered against the MLA and he was booked on charges including rape, kidnapping and criminal intimidation.
Summary:
An Ola cab driver drove for around 500 metres with a male passenger on the car's bonnet, recently at the Delhi airport.
Summary:
UK Queen Elizabeth II compared US President Donald Trump with a noisy chopper while she was filming for a documentary at the Buckingham Palace.
Summary:
The Movie Artists' Association (MAA), which denied membership to actress Sri Reddy over her topless protest against casting couch in the Telugu film industry, revoked its decision on Thursday.
Summary:
Citing a conversation he had with a journalist at Lucknow airport, BJP President Amit Shah said he was told that Karnataka CM Siddaramaiah's government is an "ATM of corruption" for the Congress.
Summary:
Madhya Pradesh BJP chief Nandkumar Singh Chauhan has claimed Pakistan-backed militants raped the 8-year-old victim in J&K's Kathua.
Summary:
Elon Musk-led SpaceX is raising $507 million in its Series I funding round which will value the company at around $26 billion, according to a filing seen by Reuters.
Summary:
Earlier, reports suggested Amazon offered $2 billion as breakup fee for Flipkart's deal with Walmart.
Summary:
Adding that the dolls are "disgusting" and pose a danger to the safety of real children, Longfield said, Amazon should explain why they were on sale in the first place.
Summary:
US scientists have determined how satellite DNA, previously considered "junk", plays a crucial role in holding the genome together.
Summary:
The Kathua case pertains to the rape of an 8-year-old Muslim girl, who was allegedly drugged before being gangraped repeatedly and then killed by a group of men to "punish" the Bakherwal community she belonged to.
Summary:
This was in violation of the British General Reginald Dyer's orders, prohibiting the gathering of over four persons.
Summary:
The Punjab Congress government's counsel on Thursday asked the Supreme Court to uphold a lower court's conviction of state minister Navjot Singh Sidhu in a 1988 road rage case, claiming he lied about his involvement in the case.
Summary:
The institute said its earlier approach to inform parents when students violated its ban on drinking and smoking had failed.
Summary:
Global chemical weapons experts reportedly have been trying to smuggle bodies out of the suspected chemical attack site in Syria's Douma to prove if a nerve agent was used in the attack.
Summary:
The court also ruled lawyers cannot ask questions hurting the dignity of the victims.
Summary:
US President Donald Trump on Thursday said that his planned meetings with North Korean leader Kim Jong-un will be "terrific".
Summary:
Filmmaker Anurag Kashyap has said he was "scared" when his family received threats for his tweets criticising the ban on Pakistani artistes from working in Bollywood in 2016.
Summary:
Indian race walker KT Irfan and triple jumper V Rakesh Babu were today sent home from the Commonwealth Games after the duo was found guilty of breaching the event's no-needle policy.
Summary:
Taking a dig at previous UPA government at Defence Expo on Thursday, PM Narendra Modi said, "There was a time when the critical issue of defence preparedness was hampered by policy paralysis." "We have seen the damage such laziness, incompetence or perhaps some hidden motives can cause to the nation.
Summary:
Mumbai-based beauty and wellness startup Nykaa is in talks to raise up to â¹75 crore in a funding round that may value the company at about â¹3,000 crore, as per reports.
Summary:
Two US researchers who were part of the first-ever gravitational-wave discovery in 2015, have said that over 100,000 such events occur every year, too faint to be unambiguously detected.
Summary:
Last month, gold plates worth â¹17 lakh were seized from Pune's Lohegaon airport.
Summary:
A passenger was held at Delhi's Indira Gandhi International Airport for allegedly carrying at least 10 live bullets in his baggage, officials said on Thursday.
Summary:
A chef in Toronto, Canada, butchered a deer leg in front of vegan protesters outside his restaurant after the protest began affecting his business.
The protest outside his restaurant began after one of his employees compared deer meat to leaf cabbage.
Summary:
Tejaswini Sawant won India its fifth shooting gold medal at the 2018 Commonwealth Games, winning the women's 50m Rifle 3 Positions Finals in Gold Coast on Friday.
Summary:
Earlier, BJP shared photographs of Congress leaders eating chole bhature before their protest fast.
Summary:
OnePlus has launched another teaser for the OnePlus 6 which at first looks like the OnePlus 5T but on closer examination is OnePlus 6 placed below OnePlus 5T.
Summary:
Himachal Pradesh school teacher, Rakesh Kumar, leaked the Class 10 Maths and Class 12 Economics papers on the request of his relative after she promised to help him become the school's principal, officials said.
Summary:
Apollo 13's mission commander Jim Lovell had previously orbited the Moon aboard Apollo 8, also without landing.
Summary:
Interacting with TDP leaders, Andhra Pradesh CM Chandrababu Naidu on Thursday reportedly compared the PM Narendra Modi-led NDA government to the 'British Raj'.
Summary:
Pointing out that the BJP filed similar pleas regarding nominations for West Bengal panchayat polls in Calcutta High Court and Supreme Court, the HC imposed a â¹5-lakh fine on the party for "misrepresentation".
Summary:
Officials have seized unaccounted cash worth around â¹10 crore and other items worth over â¹17 crore from Karnataka, ahead of the Assembly election scheduled for next month.
Summary:
The DMK on Thursday floated helium balloons with the words 'Modi Go Back' on Prime Minister Narendra Modi's arrival in Tamil Nadu for the inauguration of Defence Expo.
Summary:
Former French spy Herve Jaubert, who helped Dubai Princess Sheikha Latifa escape the country, has accused India of violating international conventions by helping Emirati officials take the 33-year-old royal back home.
Summary:
Only a blanket plastic ban can prevent choking of rivers and other water bodies, the Maharashtra government has told the Bombay High Court.
Summary:
The Allahabad High Court on Thursday asked the Uttar Pradesh government why rape-accused BJP MLA Kuldeep Singh Sengar was not arrested even after an FIR was lodged against him earlier in the day.
Summary:
However, SBI clarified that the code was only an added security feature.
Summary:
Mayoral elections in three BJP-led municipal corporations of Delhi will be held by April end, officials said.
Summary:
Authorities said he was shocked and had a blank face when he was caught.
Summary:
Hiranandani Group allegedly didn't deposit provident fund of employees between 2003-2006.
Summary:
Notably, Sharma is the former Secretary of Department of Personnel and Training (DoPT).
Summary:
Reacting to fans hurling shoes near the boundary during CSK's match against KKR in Chennai on Tuesday, CSK all-rounder Ravindra Jadeja tweeted, "Still we have a lots of love and care for our csk fans." Protestors hurled shoes at Jadeja, who was standing at long-on.
Summary:
SRH handed MI their second successive defeat in the IPL after registering a last-ball victory on Thursday.
Summary:
Slamming authorities over the Unnao and Kathua rape cases, Gautam Gambhir tweeted, "Come on 'Mr System'...show us if you've the balls to punish the perpetrators." In Unnao, an 18-year-old girl was allegedly raped by BJP MLA Kuldeep Singh and her father died in police custody.
Summary:
SunRisers Hyderabad spinner Rashid Khan bowled 18 dot deliveries against Mumbai Indians on Thursday to equal the record for most dot balls bowled by a spinner in an IPL match.
Summary:
Prakash made defamatory allegations against the panel members, Goel added.
Summary:
One child was killed and six other members of a family were hospitalised after consuming leftovers from a mid-day meal prepared at a school in Rajasthan's Guda Khera on Thursday.
Summary:
The BJP MLA from Kathua, Rajiv Jasrotia, has been reportedly hiding since two days after the chargesheet filed over the rape and murder of an eight-year-old girl in his constituency was widely reported.
Summary:
With the hike in fare, commuters will now have to pay â¹15 instead of â¹14 for the journey up to 6 km.
Summary:
Mukerjea was admitted to the hospital in a semi-conscious state after overdosing on medicines while lodged at Byculla Jail.
Summary:
Further, the food inflation for the month stood at 2.81%, compared to 3.26% in February.
Summary:
Earlier, UP's Babasaheb Bhimrao Ambedkar University installed iron grills around the Dalit icon's statue.
Summary:
China has implemented more death sentences than the rest of the world combined in 2017, according to human rights organisation Amnesty International.
Summary:
However, she said the government will make special arrangements for jobs for minorities and people with disabilities.
Summary:
Further, Jio is expected to bundle these laptops with data and content, reports added.
Summary:
All five MPs, who began the strike after resigning from the Lok Sabha, were hospitalised.
Summary:
Further, the Rajya Sabha lost 121 hours for which â¹1.10 crore is spent each hour.
Summary:
Several startups and investors had raised concerns over the 'angel tax' saying it could discourage investments.
Summary:
The current carries warm water towards the North Pole where it cools and flows back southwards.
Summary:
An internal working paper prepared by the Law Commission has recommended holding the Lok Sabha and state Assembly elections simultaneously in two phases in 2019 and 2024.
Summary:
Expressing shock over the rape and murder of an eight-year-old girl in J&K's Kathua, union minister VK Singh tweeted, "We have failed (her) as humans." The girl was kidnapped when she went to graze her horses and drugged before being gangraped and killed.
Summary:
J&K Police has asked that two Sikh policemen be appointed as prosecuting officers in the brutal rape and murder of an eight-year-old girl in Kathua, reports said.
Summary:
Further, Mehta has also been reappointed as MD and CEO for another five years after his current term ends in October.
Summary:
The 58-year-old retail magnate was training for a ski mountaineering race when he disappeared on Switzerland's Matterhorn peak, located on the border with Italy.
Summary:
RBI had reportedly questioned ICICI on the criteria adopted to give a â¹3,250-crore loan to Videocon.
Summary:
Victims of scam held a protest in front of the headquarters of the company behind both the ICOs, reports added.
Summary:
The Ministry of External Affairs (MEA) on Thursday said that India is still awaiting a response from Hong Kong after requesting any information about Nirav Modi or his arrest.
Summary:
The CBI has questioned officials from foreign branches of Indian banks over the $2.1-billion PNB fraud.
Summary:
Filmmaker Rohit Shetty has said he won't direct a small-budget film as he is scared to do so.
However, Rohit further said if there is a small budget film with a good story, he will produce it.
Summary:
Mahavir Phogat could not watch his daughter Babita Kumari's silver-winning wrestling bout at the CWG 2018 on Thursday as he couldn't get the tickets.
Summary:
New Zealand will grant no new offshore oil exploration permits, Prime Minister Jacinda Ardern has announced, saying her government "has a plan to transition towards a carbon-neutral future, one that looks 30 years in advance".
Summary:
The NGO chief and his team identified the racket while surfing various websites that provide call girls and approached the police.
Summary:
The Bihar government on Thursday revoked an earlier order which withdrew the 32 state Military Police jawans posted outside former CM Rabri Devi's residence after she claimed the government was conspiring to get her killed.
Summary:
A 20-year-old woman was on Tuesday allegedly set ablaze by her neighbour for resisting molestation in Uttar Pradesh's Sambal.
Summary:
She added she was inspired by PM Narendra Modi's protest fast.
Summary:
Bengaluru has recorded the highest demand for office space across the country in the first quarter of 2018, a real estate report stated.
Summary:
The girl then revealed that the 27-year-old had been touching her indecently during visits and had emailed her the videos.
Summary:
A sports TV show presenter fell into a swimming pool during a live interview on BBC.
Summary:
David Hingst, who worked for the firm during 2008-2009, claimed that his supervisor Greg Short bullied him by frequently farting on him.
Summary:
Actor Arjun Kapoor has slammed a website for publishing a report on his half-sister Janhvi Kapoor, which pointed out how the "sexy dress" she wore was making "everything visible".
The website deleted the report following Arjun's tweet.
Summary:
Mithali is the leading run-getter with 6,373 runs in 194 Women's ODIs.
Summary:
The breach reportedly came off the coast of Mauritania, resulting in connectivity drops for at least ten neighbouring countries.
Summary:
IT Minister Ravi Shankar Prasad has sought an apology from Congress President Rahul Gandhi for allegedly using Cambridge Analytica's data for manipulating Indian elections.
Summary:
A baby was born last December to a surrogate mother using embryos frozen by its parents, who died in a car crash in 2013, Chinese state media has reported.
Summary:
A UK-based woman who lost her jaw to cancer has seen 9 cm of bone grow back after a facial frame was surgically attached in January.
Summary:
The lawyer representing the eight-year-old Kathua rape and murder victim's family, Deepika Rajawat, has alleged the Jammu Bar Association President BS Slathia openly threatened her in court and asked her not to appear in the case.
Summary:
PM Narendra Modi on Thursday said that government has suggested to the Finance Commission incentives to states that have worked on population control.
Summary:
The Minority Affairs Ministry on Wednesday opposed the plea in the Delhi High Court to quash recently issued Haj guidelines that bar the disabled from going on the pilgrimage.
Summary:
This comes after the EPFO found that these entities didn't file their employees' PF returns in February 2018.
Summary:
Stating that implementation of GST is not an "unfixable problem", former RBI Governor Raghuram Rajan said he "wouldn't give up hope at this point".
Summary:
Oil Minister Dharmendra Pradhan has said that government has not issued a directive to oil marketers like Indian Oil and Hindustan Petroleum to absorb fuel price hike.
Summary:
Denying the allegations, Venkat tweeted, "I demand the government to conduct thorough police investigation into this and punish whoever is guilty."
Summary:
Nawazuddin Siddiqui starrer 'Manto' has been selected to compete in the 'Un Certain Regard' section at the 71st Cannes Film Festival, which will be held from May 8-19.
Summary:
Kolkata Knight Riders all-rounder Andre Russell took to Instagram to share a video of himself and India's 2018 Under-19 World Cup winners Shubman Gill and Kamlesh Nagarkoti dancing on 'Chammak Challo' with Shah Rukh Khan.
Summary:
The 34-year-old has now won three silver medals (2006, 2014 and 2018) and one bronze (2010) at the Games.
Summary:
Lara broke ex-Australian batsman Matthew Hayden's record of 380 and went past his personal best of 375.
Summary:
Los Angeles Clippers' 7-foot-3-inch tall Boban MarjanoviÃÂ teased New Orleans Pelicans' 6-foot-10-inch tall Anthony Davis by playing an impromptu game of keep away during an NBA match.
Summary:
World number one T20I bowler Rashid Khan has become the first cricketer to be named the Leading Twenty20 Cricketer in the World by Wisden.
Summary:
"Zuckerberg using a booster seat to testify...is the only meme you need today," a user tweeted.
Summary:
The image depicts a highest "brightness temperature" of about -13ðC and the lowest of about -83ðC.
Summary:
Hundreds of Delhi University students have submitted a memorandum to Dean, Students Welfare demanding termination of Department of Chemistry Professor Ramesh Chandra after a female student alleged sexual harassment.
Summary:
In the first case, three passengers carrying a gold bar each were arrested after their arrival from Sharjah, a statement by officials said.
Summary:
The government had imposed a nation-wide ban on the sale of cattle for slaughter in livestock markets in May 2017.
Summary:
Summary:
Apple Chairman Arthur Levinson is the only billionaire in the world's most valuable company, with a fortune of $1 billion, according to Bloomberg.
Summary:
Two-time Olympic medallist Sushil Kumar won the men's Freestyle 74 kg event final in just 80 seconds to bag India its 14th gold medal at the Commonwealth Games 2018 on Thursday.
Summary:
MS Dhoni has filed a case against real estate firm Amrapali Group, alleging that he hasn't been paid dues worth â¹150 crore for being the firm's brand ambassador, as per reports.
Summary:
Researchers at France's University of Nantes have unveiled what they claim to be the world's first 3D-printed public housing.
Summary:
A former Chicago aviation officer, who was fired for dragging a 69-year-old passenger off a United Airlines plane in April 2017, has sued the airline and the city department that fired him.
Summary:
Two days prior to becoming the first human in history to go into space on April 12, 1961, Soviet cosmonaut Yuri Gagarin had left a farewell letter for his wife, in case of an accident.
Summary:
The European Space Agency has created the most detailed map ever of the elusive oceanic magnetism generated by Earth's lithosphere.
Summary:
Former RBI Governor Raghuram Rajan has revealed that when the idea of demonetisation was first discussed, he told the government it wasn't a "well-planned, well thought-out and a useful exercise." "You'd have to find some new economic theory to explain how it helped," Rajan added.
Summary:
"Every 60 days we would find the entire computers compromised," he added.
Summary:
The Centre on Thursday told the Supreme Court that its judgement on SC/ST (Prevention of Atrocities) Act has "diluted" its provisions, "resulting in great damage to the country".
Summary:
Former Russian spy Sergei Skripal's daughter, Yulia, has said she does not want help from the Russian embassy in London, in a statement issued on her behalf by the British police.
Summary:
A school district in Pennsylvania (US) has armed its teachers with mini baseball bats to use as a last resort if confronted with an active shooter.
Summary:
PNB has suspended 21 officials so far and an investigation is underway to determine how the Nirav Modi fraud went unnoticed for years, MD Sunil Mehta has said.
Summary:
In July 2017, IDBI Bank had under-reported â¹6,816.6 crore of bad loans for FY16, which were subsequently identified by the RBI.
Summary:
When asked if Nirav was in Hong Kong, Mehta said, "They can search my house...This is the last place he can be."
Summary:
It rejected Monsanto's plea to stop Nuziveedu Seeds from selling GM cotton seeds in India.
Summary:
A Delhi court has ordered an FIR against Amazon India, ShopClues and eBay for allegedly selling an ashtray shaped like a nude woman.
Summary:
Shahid Kapoor's half-brother Ishaan Khatter is set to recreate the Prabhudeva starrer song 'Muqabla' in his upcoming debut film 'Beyond The Clouds'.
Summary:
Shrubsole is pictured on the 2018 edition holding the Women's World Cup 2017 trophy.
Summary:
Web browsers Google Chrome, Mozilla Firefox, and Microsoft Edge have agreed to support fingerprints, voice authentication, and facial recognition for signing into online accounts.
Summary:
Congress spokesperson Randeep Surjewala tweeted a purported itinerary of PM Narendra Modi's visit to Tamil Nadu on April 12, while he is observing a protest fast.
Summary:
Prime Minister Narendra Modi and BJP ministers on Thursday observed a day-long fast against the Parliament logjam during the Budget session.
Summary:
Gurugram Police has caught a 19-year-old proclaimed offender who had escaped thrice from a detention centre in Rajasthan.
Summary:
However, the college refused to change its decision and said the students had no medical grounds to justify low attendance.
Summary:
A sacked India Reserve Battalion police constable from Manipur has been arrested along with other gang members for allegedly stealing over 50 luxury vehicles in Delhi.
Summary:
"It looks like she died of a heart attack," police said.
Summary:
The protesters are using medical masks, plastic bottles, T-shirts and onions to make their own version of masks.
Summary:
Indian wrestler and Olympic medallist Sushil Kumar bagged his third straight Commonwealth Games gold medal after winning the men's Freestyle 74 kg event on Thursday.
Summary:
The BJP had sought an extension in deadline to file nomination papers after a party member was killed while trying to file his papers.
Summary:
In a video message, actor-turned-politician Kamal Haasan appealed to Prime Minister Narendra Modi to do justice to the people of Tamil Nadu and Karnataka regarding the Cauvery issue.
Summary:
Microblogging site Twitter's CEO Jack Dorsey declined all compensation for 2017, for the third consecutive year, the company has revealed.
Summary:
E-commerce platform Flipkart has challenged the income-tax department's demand to reclassify marketing expenses and discounts as capital expenditure, arguing that tax cannot be levied on "fictional income".
Summary:
Ex-Google employee Colin Huang's e-commerce site called Pinduoduo has raised over $1 billion at a valuation of about $15 billion, according to reports.
Summary:
Researchers examining fossilised remains of moths and butterflies dating back 180 million years have found evidence of metallic bronze to golden colour in the insect wings.
Summary:
The list of 100 reptiles placed the Madagascar Big-headed turtle on top while also featuring the Indian gharial.
Summary:
The current G1 storm would have little to no effect on Earth, US weather agency NOAA reported.
Summary:
PM Narendra Modi on Thursday arrived in Tamil Nadu's Chennai to attend the tenth edition of Defence Expo amid protestors waving black flags and black balloons outside the airport.
Summary:
The accused had been appointed Central Superintendent of the CBSE Examination Centre in Una, which gave him access to sealed question papers.
Summary:
After BJP MLA Surendra Singh defended rape-accused MLA Kuldeep Sengar, the victim said, "Still so many questions are being raised on me, even after my father's murder.
Summary:
After denying to hear a plea on case allocation in the Supreme Court, Justice Jasti Chelameswar said, "I don't want that my orders are reversed again in 24 hours." "Allegations are being raised against me that I'm doing this for some post," he added.
Summary:
Amid a furore over gangrape and murder of an 8-year-old girl in Jammu and Kashmir's Kathua, CM Mehbooba Mufti tweeted, "Proper procedures are being followed, investigations are on the fast track and justice will be delivered #JusticeForAsifa".
Summary:
In a letter to Chief Justice of India Dipak Misra over non-appointment of judges by the Centre, Justice Kurian Joseph wrote the "very life and existence" of the Supreme Court is under threat.
Summary:
Number of Jews around the world is less than before World War II, according to data released by Israel's Central Bureau of Statistics ahead of the Jewish nation's Holocaust Remembrance Day. There are around 14.5 million Jews in the world, compared to 16.6 million in 1939 when World War II began.
Summary:
The first metro line in China's Xinjiang will require people to show identification documents to buy tickets.
Summary:
Reacting to the rape and murder of an 8-year-old girl in Kathua, actress Sonam Kapoor tweeted, "Ashamed appalled and disgusted by fake nationals and fake Hindus.
Summary:
The wedding will reportedly be held in Alibaug and will be a simple ceremony.
The couple did not want to make their wedding a huge affair," said reports.
Summary:
Summary:
It has not been determined how much cash was robbed from the bank.
Summary:
Indian wrestler Kiran bagged a bronze medal in the women's Freestyle 76 kg event after finishing off Mauritius' Katouskia Pariadhaven 10-0 in the first round itself at the Commonwealth Games on Thursday.
Summary:
Researchers claim the device can send the data to the user's smartphone in 8 minutes.
Summary:
Facebook CEO Mark Zuckerberg has said, "The internet is growing in importance...
Summary:
Uber CEO Dara Khosrowshahi has announced that the company will launch its own car-renting service called Uber Rent in San Francisco later this month.
Summary:
Bangalore Metro Rail Corporation Limited (BMRCL) will extend train timings during six nights when IPL matches will be played at the city's Chinnaswamy stadium.
Summary:
A Mumbai court has given 10-year imprisonment to a cleric for raping a woman and another 3-year term for performing black magic on her in 2015.
Summary:
Rahul Aware bagged India's first wrestling gold medal at the Commonwealth Games 2018 after beating Canada's Steven Takahashi in the final of men's Freestyle 57 kg event on Thursday.
Summary:
Kidambi Srikanth has become the first Indian male badminton player to attain the world number one ranking since Prakash Padukone in the 1980s.
Summary:
This is the 28-year-old's third Commonwealth medal after winning a gold at 2014 Glasgow and a silver in 2010 Delhi.
Summary:
Reacting to the ongoing controversy surrounding him, Kapil Sharma said, "The people who want my career destroyed can spread whatever lies they want to...I know what I'm doing." "I'm not new to people [piggybacking] on my success," he added.
Summary:
India shooter Tejaswini Sawant won silver in the women's 50m Rifle Prone event at the Commonwealth Games 2018 on Thursday.
Summary:
Zuckerberg was concerned that Instagram risked missing out on an entire generation without 'Stories'.
Summary:
Earlier it was reported that Amazon has offered around $2 billion as breakup fee for Flipkart's deal with Walmart.
Summary:
Two dinosaur skeletons were purchased by the same buyer for over 1.4 million euros (â¹11.31 crore) apiece at an auction in Paris on Wednesday.
Summary:
Reportedly, minarets at the royal gate of the monument and one of the small white domes were also damaged in the rain that witnessed winds with a velocity of over 130 km per hour.
Summary:
Until now, only the Cabinet headed by Prime Minister had the powers to approve such allotments.
Summary:
Defending Unnao rape accused BJP MLA Kuldeep Singh Sengar, another party MLA Surendra Singh said that no one could rape a mother of three children.
Summary:
The Delhi High Court has warned civic officials to either control mosquito-borne diseases like dengue and chikungunya or face a fine or six-month imprisonment under the Indian Penal Code.
Summary:
Summary:
Pope Francis has admitted he had made "grave mistakes" in his handling of a sexual abuse scandal in Chile, in a letter published on Wednesday.
Summary:
The Delhi High Court has directed fraud-accused jeweller Nirav Modi's firm Firestar Diamond to ask him to return to the country, calling him a "fugitive".
Summary:
Ronnie Screwvala has taken over Sushant Singh Rajput and Sara Ali Khan starrer 'Kedarnath' from its previous producers Bhushan Kumar, Prernaa Arora and Ekta Kapoor.
Summary:
After filmmaker Karan Johar confirmed that Chunky Panday's daughter Ananya Panday will be one of the lead actresses in 'Student Of The Year 2', a user tweeted, "Nepotism zindabad." "Kangana Ranaut was right when she called you flag bearer of nepotism," wrote another user.
Summary:
Instagram is building its own data portability tool which will allow users to download a copy of everything they've shared on the platform including their photos, videos, and messages.
Summary:
After BJP-led Haryana government was slammed for a student form that asked if parents have 'unclean occupation', state Education Minister Ram Bilas Sharma blamed Congress for such forms.
Summary:
The Samajwadi Party (SP) has decided to support the Bahujan Samaj Party's (BSP) candidate in the upcoming Uttar Pradesh Legislative Council elections.
Summary:
Uber CEO Dara Khosrowshahi has said that the cab-hailing startup still believes in self-driving vehicles, adding, "Autonomous (vehicles) at maturity will be safer." Khosrowshahi emphasised that self-driving vehicles are key in the long term to eliminate individual car ownership.
Summary:
Tesla has been slammed by US Advocates for Highway and Auto Safety's President Cathy Chase after the company said that before Model X car crash, the car's driver took no action despite warnings.
That's not the only way (the accident could have occurred)", Chase said.
Summary:
Such black hole mergers can be detected by their accompanying gravitational waves.
Summary:
Of the 81 artifacts, 34 were found to be unregistered and 47 of them are suspected to have fake documentation.
Summary:
At least 12 people have died in Rajasthan after heavy rains along with strong winds hit several regions in the state on Wednesday.
Summary:
The complaint was reportedly filed by a police officer.
Summary:
An EC spokesperson said "unannounced inspections" had taken place at offices of unnamed firms in several EU countries.
Summary:
An FIR has been registered against BJP MLA Kuldeep Singh Sengar under the POCSO Act for allegedly raping an 18-year-old girl in Uttar Pradesh's Unnao.
Summary:
He pointed that to prevent people from scraping public information, Facebook needs to know when someone is repeatedly trying to access its services.
Summary:
The Indian Space Research Organisation on Thursday successfully launched the IRNSS-1I navigation satellite, which will replace the IRNSS-1A which was rendered ineffective after its atomic clocks failed.
Summary:
The man has been arrested and an investigation has been launched into the murder.
Summary:
Two-time defending champions Real Madrid pulled off a 97th-minute victory against last season's finalists Juventus after the latter managed to equalise a 0-3 first-leg deficit.
Summary:
During Facebook CEO Mark Zuckerberg's second hearing, US Representative David McKinley accused the company of being used to circumvent the law and allowing people "to buy highly addictive drugs without a prescription".
Summary:
Summary:
Speaking at the DefExpo in Chennai on Wednesday, Defence Minister Nirmala Sitharaman said that the armed forces cannot be forced to buy only 'Made in India' equipment.
Summary:
The Union Cabinet has approved a proposal to revise the pay and allowances of Lieutenant Governors of union territories, making them at par with that of a Secretary to the Government.
Summary:
Over 16,000 missing complaints have been recorded in Bengaluru between 2015 and 2017, reports said.
Summary:
'Computer Baba', who was recently appointed as a minister to the Madhya Pradesh Cabinet, performed a pooja on the roof of a government guest house on Wednesday.
Summary:
Customs officials in China's Zhejiang Province have refused entry to over 4 lakh kg of solid waste from the US and have sent the garbage back to the country.
Summary:
The world's largest producer of crude oil, Saudi Aramco, will buy 50% stake in the proposed $44-billion refinery project in Maharashtra.
Summary:
Kartik Aaryan, while speaking about his five-minute long monologue in 'Pyaar Ka Punchnama', said, "I was afraid this will make me have an [anti-hero] image among girls." "But I got lucky because I portrayed a character who became the voice of youngsters," he added.
Summary:
Katrina will also be talking about her Bollywood career in the autobiography.
Summary:
The victory was Royals' ninth consecutive at Jaipur and seventh straight against Daredevils in the IPL.
Summary:
Team India captain Virat Kohli has been named Wisden's leading male cricketer for the second year in a row.
Summary:
Online discussions platform Reddit's CEO Steve Huffman has revealed that open racism is not against the website's rules.
Summary:
Summary:
Mocking PM Narendra Modi's claim that over 8.5 lakh toilets were built in one week in Bihar, AIMIM chief Asaduddin Owaisi said he was "giving stiff competition to legendary magician PC Sorcar".
Summary:
Pointing out that the Calcutta High Court ordered a stay on the withdrawal order, the SC directed the BJP to approach the HC.
Summary:
Bengaluru-based logistics startup Mojro has raised over â¹4.2 crore in pre-Series A funding round led by Mumbai-based 1Crowd.
Summary:
Around 11 lakh ineligible voters in Madhya Pradesh will be removed from the voters' list, Chief Election Commissioner OP Rawat said.
Summary:
A 27-year-old woman died after she was embalmed while undergoing a surgery to remove ovarian cysts at a Russian hospital.
Summary:
Eight Argentinian police officers were fired after they claimed that over 500 kg of marijuana which was missing from a police warehouse had been eaten by mice.
Summary:
A forum of 10 Air India unions has alleged that potential bidders are using "arm-twisting tactics" to force the government to sell the national carrier for cheap.
Summary:
Shukla said they had initially decided to host matches in Chennai after police assured that adequate security would be provided.
Summary:
Appearing at a US Senate hearing, Facebook CEO Mark Zuckerberg revealed on Wednesday that his personal information was among the data of 87 million Facebook users that was improperly shared with political consultancy Cambridge Analytica.
Summary:
An eight-year-old Muslim girl was drugged before being gangraped repeatedly and then killed by a group of men in J&K's Kathua to "punish" the Bakherwal community she belonged to, police chargesheet revealed.
Summary:
The BCCI has moved Chennai Super Kings' remaining IPL home matches from Chennai to Pune after police said they cannot provide adequate security amid the ongoing Cauvery protests in Tamil Nadu.
Summary:
KXIP's batsman Manoj Tiwary slammed cricketer-turned-commentator Aakash Chopra after the latter shared statistics of KKR fast bowler Vinay Kumar, who has conceded 65 runs in 23 balls in the IPL 2018 so far.
Summary:
CBSE Chairperson Anita Karwal has claimed an organised crime group seemed to be working against the board.
Summary:
A CCTV footage showing a group of 7-8 students beating up another student at Delhi's Kirori Mal College has surfaced online.
Summary:
Addressing a conference at US' Columbia Business School, BJP MP Subramanian Swamy said fake news has become "a kind of cancer" and needs "some kind of surgery".
Summary:
A priest in Tamil Nadu, who received formal education till Class 8, has created a script for Kovmozhi, a language of the Kota tribe used only in the spoken form.
Summary:
A 32-year-old PMK party worker in Tamil Nadu was electrocuted after coming in contact with a live wire when he climbed on top of a train during rail roko protests demanding the formation of Cauvery Management Board.
Summary:
Amid the ongoing tension between Russia and the US over a suspected chemical attack in Syria, Russian President Vladimir Putin said the modern world is becoming "more chaotic".
Summary:
Myanmar has been accused of carrying out ethnic cleansing of Rohingyas in Rakhine state.
Summary:
Doctors in China recently used laser technology to remove a 3-foot-long phone charging cable stuck in a 60-year-old man's penis.
Summary:
A hospital in Australia pays poop donors up to $13,000 (over â¹8.4 lakh) a year for delivering poop five times a week.
Summary:
Five public sector banks (PSBs) account for nearly 55% of the total wilful defaulters of all the PSBs. India's largest lender SBI has the highest number of wilful defaulters at 1,664 and the amount involved is â¹28,257 crore during April-December 2017.
Summary:
The CBI has initiated a probe into a â¹5,280-crore loan given to Mehul Choksi-owned Gitanjali Group by a consortium of 31 banks.
Summary:
Dismissing reports suggesting that Irrfan Khan's health is deteriorating, his spokesperson said, "It is not right to spread rumours through mediums of social media without fact check or any official validation." He also urged people to continue their support and prayers.
Summary:
Chunky Panday, while talking about his daughter Ananya Panday's upcoming debut film 'Student Of The Year 2', said, "Right now she's known as my daughter but I'm sure by the end of this year I'll be known as her father." "I had tears in my eyes when I saw [her] posters.
Summary:
Aeronautics company Airbus has collaborated with cabin equipment manufacturer Zodiac Aerospace to design and construct lie-flat beds that would fit in the cargo holds of its passenger airplanes.
Summary:
Shri Saibaba Sansthan Trust Shirdi chief Suresh Haware has slammed Congress President Rahul Gandhi for writing "Shirdi's miracle" in his tweet accusing Railway Minister Piyush Goyal of corruption.
Summary:
The students had filed petition after the Narsee Monjee College barred them from exams for not maintaining required attendance of 75%.
Summary:
Hegde was arrested last month over a post falsely claiming that a Jain monk had been attacked by Muslim youth.
Summary:
A 12-year-old boy in Chhattisgarh died on Tuesday after a mobile phone he was playing video games on, exploded while charging.
Summary:
Owaisi was reacting to PM Modi's decision to sit on a day-long fast against Parliament disruptions.
Summary:
"While returning, we will collect and bring back offerings from Shirdi Sai Baba temple for the devotees," coordinator of the marathon said.
Summary:
The YSR Congress Party on Wednesday staged a 'rail roko' protest across Andhra Pradesh over its demand of special status for the state.
Summary:
An Army jawan has been booked by the police for rape and attempting to murder a woman in Pune's Ahmednagar district.
Summary:
After claiming that a top Telugu movie producer's son forced her to have sex in a studio, actress Sri Reddy revealed the man's identity as Rana Daggubati's brother and producer Suresh Babu's younger son Abhiram.
Summary:
The cause of the crash is not yet clear.
Summary:
Protestors hurled shoes at boundary during CSK's first IPL 2018 home match on Tuesday.
Summary:
Australian pacer Mitchell Starc's younger brother Brandon Starc has won the gold medal in the men's high jump event at the Commonwealth Games 2018 in Gold Coast on Wednesday.
Summary:
The Aam Aadmi Party (AAP) on Wednesday removed rebel party leader Kumar Vishwas from the partyâÂÂs Rajasthan in-charge post.
Summary:
A Dubai court has sentenced two Goans, 37-year-old Sydney Lemos and 25-year-old Ryan de Souza, to 517 years in jail each for cheating thousands in a $200 million Ponzi scheme.
Summary:
US President Donald Trump has told Russia to "get ready" for US missile strikes in Syria over the chemical attack that killed at least 70 people.
Summary:
The e-way bill has become mandatory for movement of goods valued over â¹50,000 from one state to another beginning April 1.
Summary:
Aadhaar-issuing authority UIDAI has told the Supreme Court that Aadhaar-linking would help prevent duplication of PAN cards.
Summary:
Comedian Sugandha Mishra who featured on 'The Kapil Sharma Show', while speaking on the ongoing row involving Kapil, said, "Probably the sudden stardom and success that he has got, made him lose control of himself." "This isn't the Kapil I knew.
Summary:
An FIR has been filed against 'Kyunki Saas Bhi Kabhi Bahu Thi' actor and former Bigg Boss contestant Akashdeep Saigal for beating up a rickshaw driver.
The driver had confronted Akashdeep for driving on the wrong side of the road.
Summary:
Rohit further said, "The germ or thought is there to create this whole cop universe."
Summary:
Actor Nawazuddin Siddiqui's manager denied reports that the actor has been approached to play the antagonist in an upcoming Telugu film starring Rajinikanth in the lead role.
Summary:
After being trolled by fans on social media for conceding 19 runs in the last over against CSK on Tuesday, KKR pacer Vinay Kumar took to Twitter to defend himself.
Summary:
All eight Indian male boxers participating at the CWG 2018 will win at least a bronze each as they have advanced to the semi-finals of their respective categories.
Summary:
Team India and RCB captain Virat Kohli gifted a bat to KKR's part-time bowler Nitish Rana, who clean bowled him with a yorker in the IPL on Sunday.
Summary:
As many as eight Cameroonian athletes taking part at the CWG 2018 in Gold Coast have been reported missing from the Games village.
Summary:
According to the notes Facebook CEO Mark Zuckerberg prepared for the testimony, he was ready to deny the proposal of breaking up Facebook by saying, "U.S. tech companies key asset for America; break up strengthens Chinese companies".
Summary:
Apple has been ordered by a US federal court to pay $502.6 million to security technology company VirnetX for infringing patents for secure communications.
Summary:
Saudi Arabia's Al-Ula, a historical region rich in archaeological remnants, will open to tourists as the kingdom prepares to issue tourist visas for the first time.
Summary:
In its editorial mouthpiece 'Saamana', Shiv Sena has alleged that the BJP has been inducting politicians with criminal backgrounds into the party since the 2014 general elections for political gains.
Summary:
Summary:
A debt-ridden farmer in MaharashtraâÂÂs Yavatmal committed suicide on Tuesday and blamed the PM Narendra Modi-led government in a six-page suicide note, reports said.
Summary:
Summary:
A Mumbai court on Monday sentenced a man to life imprisonment for killing his wife by setting her on fire in 2014.
Summary:
However, an Air India official said the baggage couldn't reach the plane on time because of the slow movement of baggage belt.
Summary:
A South Korean man killed a neighbour's dog before cooking it and inviting its owner to join him for a dog-meat dinner, police officials said.
Summary:
Boufarik Airport is the home base for the Air Transport fleet of the Algerian Air Force.
Summary:
The BJP is the richest national party with an income of â¹1,034 crore in FY 2016-17 when demonetisation was implemented, an Association for Democratic Reforms report said.
Summary:
Actress Sri Reddy, who went topless to protest against casting couch in the Telugu film industry, has said she'll not be deterred by the Movie Artistes Association's decision to deny her membership.
Summary:
However, Zuckerberg noted that Facebook does allow users to record videos, which have an audio component.
Summary:
Facebook added nearly $21 billion in market value to $477.2 billion on Tuesday during CEO Mark Zuckerberg's testimony before US Congress.
Summary:
Rape-accused BJP MLA Kuldeep Singh Sengar's wife on Wednesday said, "My husband is innocent.
Summary:
The Opposition claimed the commission is under pressure from TMC which they alleged had tried to prevent their candidates from filing nominations.
Summary:
Hitting out at BJP after an 18-year-old girl accused Uttar Pradesh BJP MLA Kuldeep Sengar of rape, Congress on Wednesday tweeted, "#BhajpaSeBetiBachao" (save daughters from BJP).
Summary:
Days after reports of Walmart completing due diligence on Flipkart, global rival Amazon has offered around $2 billion as breakup fee for Flipkart's deal with Walmart, according to reports.
Summary:
The Employees' Provident Fund Organisation (EPFO) has asked banks not to deny monthly pension to people over lack of Aadhaar or if their fingerprint or iris scanning is not successful.
Summary:
US President Donald Trump, his predecessor Barack Obama and British PM Theresa May have not been invited to the royal wedding of UK's Prince Harry and American actress Meghan Markle.
Summary:
This comes after a UN report in December warned about antibiotics driving the evolution of drug-resistant bacteria.
Summary:
The Depew Police Department in New York has jokingly announced on Facebook that they have arrested the winter season for loitering after the state experienced prolonged snowy weather.
Summary:
Manipal Hospitals has raised its offer to buy rival Fortis Healthcare's hospital business after shareholders expressed dissatisfaction.
Summary:
Located in Mumbai, the flat was purchased by Mehul Choksi in 2009 using the shell company 'Rohan Private Limited', an official said.
Summary:
All five Indian shuttlers competing in the men's and women's singles events at the Commonwealth Games have advanced to the round of 16.
Summary:
Four protestors were also detained during the match for hurling shoes at the boundary.
Summary:
India will host the Asia Cup 2018 in the United Arab Emirates after a unanimous decision was taken by the Asian Cricket Council to move the tournament from India on Tuesday.
Summary:
Mohammad Shami's wife Hasin Jahan filed a case against the pacer at Alipore court on Tuesday, seeking â¹10 lakh per month as maintenance from him.
Her lawyer has claimed sheÃÂ doesn't have money to pay for monthly expenses.
Summary:
Facebook CEO Mark Zuckerberg has apologised for his remark that the company successfully detected messages inciting Muslims in Myanmar to fight Buddhists.
In reply, Myanmar civil society groups said that they informed Facebook after identifying the messages.
Summary:
During the testimony, Zuckerberg was questioned on Facebook's data sharing policies.
Summary:
In 2007, Zuckerberg said, "We've made a lot of mistakes" after releasing a new feature while in 2011, he said, "We've made a bunch of mistakes" regarding privacy violations.
Summary:
After PM Narendra Modi on Tuesday claimed that 8.5 lakh toilets were constructed in Bihar in the past week, RJD leader Tejashwi Yadav called it a "big goof-up".
Summary:
The burning body of a woman was found by locals in the Pakur forest in Jharkhand on Tuesday, reports said.
Summary:
The Haryana government has issued a form to school students across the state asking for their Aadhaar, caste, and whether their parents have an "unclean" occupation.
Summary:
Protests erupted in PakistanâÂÂs Punjab province after an eight-year-old girl was raped and then burnt alive.
Summary:
A group of Air India employees on Tuesday held a lunch-hour meeting at the airline's office in Mumbai to protest against the carrier's privatisation.
Summary:
The US had fired 59 missiles at a Syrian airbase after a similar attack last year.
Summary:
The third Moon landing mission was aborted after an oxygen tank exploded onboard, two days after launch on April 11, 1970.
Summary:
During his testimony over data scandal at Facebook, CEO Mark Zuckerberg said, "There's a very common misconception that we sell data to advertisers.
Summary:
Whistleblower Edward Snowden tweeted, "And they call me a criminal" while responding to a tweet claiming Facebook CEO Mark Zuckerberg failed to clarify whether the company tracks browsing activity after users log off, during his testimony.
Summary:
Karnataka Chief Minister Siddaramaiah on Tuesday clarified that the list of Congress candidates under circulation for the upcoming state Assembly polls is fake.
Summary:
Earlier, five YSR Congress MPs resigned over special status to Andhra Pradesh.
Summary:
Australian activist Philip Nitschke, who created the world's first 3D-printed euthanasia machine, has invited public for a virtual reality experience of his device at the Amsterdam Funeral Fair.
Summary:
Summary:
This comes after four Supreme Court judges had alleged the CJI was allocating cases arbitrarily.
Summary:
In 1848 in Pune, he and his wife Savitribai Phule opened the first-ever school for girls.
Summary:
The White House on Tuesday insisted that US President Donald Trump has the power to fire Special Counsel Robert Mueller probing Russian meddling in 2016 presidential election.
Summary:
ICICI Bank CEO Chanda Kochhar and six family members held 2% in Credential Finance in 2001, along with Videocon group that held 17.74%, regulatory filings show.
Summary:
The pilot hasn't been terminated from services yet and was an employee of the airline, his counsel said.
Summary:
Filmmaker Shoojit Sircar has said he had no clue who Varun Dhawan was before they started working on the film 'October'.
Shoojit further said, "Our planets don't match at all.
Summary:
Alia Bhatt has said she would give an arm and a leg to work with directors Meghna Gulzar, Zoya Akhtar and Gauri Shinde again.
Summary:
Users can also keep track of how often they catch up with friends and leave notes in the app.
Summary:
Dubai is planning to begin trials for digital license plates in vehicles which will include GPS and transmitters, according to reports.
Summary:
Congress MLA Ram Dayal Uike at a Chhattisgarh's village said sticks and bullets will be used to throw BJP out of power in the state if required.
Summary:
"The security was revoked at 9 in the night.
Slamming the move, her son Tejashwi Yadav gave up his security as well.
Summary:
The startup further claims that the device is designed to reduce complications such as hearing loss and membrane perforation.
Summary:
Chinese e-commerce giant Alibaba's payments affiliate Ant Financial is in talks to raise at least $8 billion from Singapore-based investment company Temasek Holdings, as per reports.
Summary:
A Cambridge University study has identified key human cancer medications which could be trialled for treating transmissible cancer that is threatening Tasmanian devils with extinction.
Summary:
Majumder, who is currently pursuing a postdoctoral fellowship in Toronto, reached her residence in Bengaluru on April 4 after going out of touch in Toronto the previous day, her parents claimed.
Summary:
Bengaluru cyber crime police has arrested a 25-year-old man, who allegedly conned men through dating websites by pretending to be a girl.
Summary:
The Economic Offences Wing (EOW) of Mumbai Police on Monday filed a chargesheet against a builder for allegedly duping over 440 home buyers of around â¹51 crore by promising them houses at Mira Road.
Summary:
However, when her friend objected to the comment, the accused and his accomplice physically manhandled the duo.
Summary:
Congratulating IAS 2015 topper Tina Dabi and second rank holder Athar Aamir-ul-Shafi Khan on their wedding, Congress President Rahul Gandhi tweeted that they should become an inspiration to all Indians in this age of intolerance.
Summary:
During the data scandal testimony, Facebook CEO Mark Zuckerberg was asked by a senator if he'd be comfortable revealing some of his personal information like the hotel he stayed in or people he texted.
Summary:
The film, which is a sequel to the 2012 movie 'Student Of The Year', will mark Ananya and Tara's debut in Bollywood.
Summary:
During Mark Zuckerberg's testimony, US Senator John Neely Kennedy said to Facebook's CEO, "Your user agreement sucks." He also said that the purpose of that user agreement is to cover "Facebook's rear end" and not to inform users about their rights.
Summary:
Nitish Kumar-led Bihar government has withdrawn 32 Bihar Military Police jawans deputed at former Bihar CM Rabri Devi's residence.
Summary:
Appealing Uttar Pradesh CM Yogi Adityanath for justice, Unnao rape victim on Wednesday said, "The DM has confined me to a hotel room, they are not even serving me water." "I just want the culprit to be punished," she added.
Summary:
A gene associated with Alzheimer's has been neutralised in human brain cells for the first time, California-based researchers have claimed.
Summary:
Electrodes implanted in brain's somatosensory cortex were able to stimulate neurones that produced physical sensations.
Summary:
Civil Aviation Minister Suresh Prabhu has ordered an enquiry into the offloading of a passenger by IndiGo at Lucknow airport.
Summary:
A parliamentary panel has accused Tata Trusts of favouring Harvard Business School (HBS) over Indian universities.
Summary:
Alibaba Founder Jack Ma has said it's normal for the world's two biggest economies to have problems with trade, but tackling them with trade war is like treating flu with chemotherapy.
Summary:
China has filed a trade complaint against the US with the World Trade Organisation over tariffs imposed on imports of steel and aluminium products.
Summary:
Duckworth had her first daughter in 2014 while in the White House, making her one of only 10 lawmakers to give birth while serving in Congress.n
Summary:
US President Donald Trump on Tuesday praised China's President Xi Jinping's "kind words on tariffs and automobile barriers".
Summary:
A Facebook spokesperson said the cushion wasn't Zuckerberg's private seat and was provided by the Senate Judiciary Committee.
Summary:
The show will reportedly be back on air after Kapil's health improves.
Summary:
Another Indian shooter Mohammad Ashab finished fourth in the same event.
Summary:
The slogan over Zuckerberg's T-shirt read, "fix fakebook'.
Summary:
Passengers in Germany were left stranded due to hundreds of flight cancellations after airports in Frankfurt, Munich, Cologne and Bremen were hit by public sector strikes.
Summary:
Gurugram-based travel planning startup TravelTriangle has raised â¹78 crore in a Series C funding round led by Fundamentum.
Summary:
Further studies could help understand constituting dark matter, that makes up about 85% of the universe's total mass.
Summary:
The vibration affects the speed of the sound wave and also interacts with its neighbouring cavities to control both transmission and reflection.
Summary:
Transgenders were facing problems linking their PAN and Aadhaar since only Aadhaar had the third gender category, reports said.
Summary:
DelhiâÂÂs Indira Gandhi International Airport will launch the first phase of its expansion drive by appointing a design consultant for the expansion of Terminal 1 and Terminal 3 and construction of a new runway and taxiways.
Summary:
In a physical inspection of school buses conducted in Ghaziabad on Sunday, it was found that out of 712 buses checked, as many as 125 did not adhere to safety norms, officials said.
Summary:
Ten tribal students, including 3 girls, will attempt to scale world's highest peak Mount Everest under Maharashtra government's Mission Shaurya project.
Summary:
"In the speech in the Constituent Assembly, Ambedkar had said what we did during the British rule was fine for that time," he added.
Summary:
The duo has also started a social enterprise called 'greenBUG' and reached out to underprivileged women through an NGO.
Summary:
Indian shooter Shreyasi Singh won the women's double trap gold in a shoot-off after scoring 96 points to take India's gold medal tally at Commonwealth Games 2018 to 12 on Wednesday.
Summary:
During his testimony before the US Congress on Wednesday, Facebook CEO Mark Zuckerberg said, "Facebook systems do not see the content of messages being transmitted over WhatsApp." He further highlighted that conversations on the messaging platform, which is owned by Facebook, are fully encrypted.
Summary:
The hackers also left a message slamming the alleged civilian killings by military and police forces in J&K.
Summary:
An 11-year-old female student has been admitted to Dehradun's Col Brown Cambridge School, an all-boys academy, when her own school denied her class promotion due to attendance shortage after her participation in a singing reality show.
Summary:
"It happened last year...Somebody [from the studio] called one of my agents and said 'She's the wrong physicality'," said Priyanka.
Summary:
Five-time world champion boxer Mary Kom, who is making her Commonwealth Games debut at Gold Coast, has assured India of at least a silver medal after defeating Sri Lanka's Anusha Dilrukshi 5-0 in the 45-48kg category semi-final on Wednesday.
Summary:
Data of over five lakh Facebook users in India was also leaked.
Summary:
Facebook has said it would begin offering a minimum of $500 each as a reward to users who report misuse of private information from the social network.
Summary:
"Who in India will believe it belongs to Waqf Board," the court questioned.
Summary:
The Finance ministers of Kerala, Puducherry, and Andhra Pradesh and the Agriculture minister of Karnataka on Tuesday came together to slam the Centre over alleged bias regarding fund allocation to states.
Summary:
During his meeting with UN Secretary General António Guterres on Tuesday, Pakistan Prime Minister Shahid Khaqan Abbasi urged the world body to play its part in stopping "Indian atrocities" in Kashmir.
Summary:
Madhya Pradesh CM Shivraj Singh Chouhan has announced that the families of journalists who die in the line of duty will receive a compensation of â¹4 lakh.
Summary:
Asserting that the friendship between Pakistan and China is the bedrock of strategic stability in the region, Pakistan Prime Minister Shahid Khaqan Abbasi said that both the countries are "iron brothers".
Summary:
Global debt jumped to a record $237 trillion last year, more than $70 trillion higher from a decade earlier, according to the Institute of International Finance.
Summary:
Calling gold and Bitcoin as "collectibles", American billionaire Mark Cuban has said he hates both as neither are viable alternatives to currency.
Summary:
Former PNB Deputy Manager Gokulnath Shetty has reportedly blamed Rajesh Jindal, the General Manager of Brady House branch between August 2009 and May 2011, for directing the $2.1-billion fraud.
Summary:
Sunny Leone has shared a picture of herself and her husband Daniel Weber from their wedding ceremony on the occasion of their marriage anniversary and wrote, "We're on this crazy journey of life together!" She added, "Seven years ago we vowed in front of God to always love each other!
Summary:
Nawazuddin Siddiqui has said he won't be able to play a typical hero while adding, "I'll play it my way and try to make it realistic.'' "If you've chosen to be an actor, you should only be interested in your growth...Box-office outcome doesn't bother me," he added.
Summary:
She further said spending time with Misha is de-stressing while adding, "Being a grandmother is an out-of-the-world feeling." Talking about Shahid's wife Mira, Supriya said, "My daughter-in-law is like my daughter...
Summary:
Speaking about the ongoing row involving Kapil Sharma, Bharti Singh said, "He's my guru...It makes me cry seeing him in this state." "He made us laugh...Now when he needs our support to come out of depression, we're troubling him," she added.
Summary:
As per Mark Zuckerberg's notes for his testimony, he was prepared to criticise Apple.
Summary:
Summary:
Last year, Nokia announced its air-to-ground connectivity network with internet speeds faster than those of the existing in-flight internet company Gogo.
Summary:
Police operated based on a tip-off regarding a person visiting Delhi to supply drugs.
Summary:
It suggested the male devotees should wear dhoti whereas women should don saris or churidars with dupattas.
Summary:
Over a dozen people were injured in Bihar's Arrah on Tuesday in violent clashes which erupted during a Bharat Bandh protest against caste-based reservations in jobs and education.
Summary:
The Supreme Court has asked amicus curiae Pawan Shree Agrawal to issue a public notice inviting objections to the sale of Unitech's assets.
Summary:
The IPL match between CSK and KKR at the Chepauk Stadium in Chennai was interrupted briefly after Naam Tamilar Katchi workers hurled shoes at the boundary in protest against the Cauvery water-sharing issue.
Summary:
In its memorandum to Karnataka election panel's chief, the BJP has alleged that police have been functioning as the Congress' puppets ahead of the Assembly elections.
Summary:
Metals and mining giant Vedanta on Tuesday said its application for renewal of license to operate its Sterlite copper smelter plant in Tamil Nadu's Thoothukudi has been rejected by the state pollution board.
Summary:
The Central Information Commission (CIC) on Tuesday said there should be no delay in the disbursement of pension to senior citizens and retired employees in the name of Aadhaar linking.
Summary:
The bank's shares surged over 5.4% and it now has a valuation of about â¹1.41 trillion.
Summary:
A special CBI court on Monday allowed the agency to freeze a bank account of jeweller Nirav Modi in the UK.
Summary:
Actress Kareena Kapoor Khan has said that she wants her son Taimur Ali Khan to become a cricketer.
Summary:
Zoe Saldana, who played Gamora in Guardians of the Galaxy, has said she is disappointed with the negative attitude Hollywood 'elitists' have towards films like Marvel films.
Summary:
Actress Katrina Kaif took to Instagram to share a picture of herself from the sets of the upcoming film 'Zero'.
Summary:
As per reports, the shoot location of the Salman Khan starrer 'Race 3' will be shifted to India from the previous plans of foreign shoot locations.
Summary:
Russell also became the first batsman to slam more than six sixes against CSK in Chennai in IPL.
Summary:
CSK batsman Suresh Raina has overtaken MI captain Rohit Sharma to record most sixes by an Indian in the IPL, achieving the feat against KKR on Tuesday.
Summary:
Chennai Super Kings, who were playing on their home soil for the first time since 2015, chased down Kolkata Knight Riders' 202 in the last over on Tuesday to win their second successive match in the Indian Premier League 2018.
Summary:
Roma produced the joint-second biggest comeback in Champions League history by overhauling a three-goal quarter-final first-leg deficit to knock Barcelona out on away goals on Tuesday.
Summary:
American player Madison Brengle has filed a lawsuit against Women's Tennis Association and International Tennis Federation seeking damages for injuries caused by repeated drawing of blood for anti-doping tests.
Summary:
Liverpool scored two second-half goals to register a 2-1 comeback win against Manchester City on Tuesday to advance to the Champions League semi-finals with a 5-1 aggregate victory.
Summary:
This was Mitharval's second medal at the Gold Coast Games after winning a bronze in men's 10m Air Pistol event.
Summary:
Delhi CM Arvind Kejriwal has met 21 TDP MPs who were detained at a police station for trying to stage protests near PM Narendra Modi's residence over their special status demand for Andhra Pradesh.
Summary:
The Bharatiya Janata Party (BJP) came to power in 2014 to fight against corruption, party leader Subramanian Swamy said.
Summary:
Sikhs groups on Tuesday protested outside Congress' Delhi headquarters demanding it sack senior leaders Jagdish Tytler and Sajjan Kumar over their alleged involvement in 1984 anti-Sikh riots.
Summary:
BJP President Amit Shah and all party MPs will observe the day-long fast along with PM Modi.
Summary:
Karnataka's Hassan District Minister A Manju has written to the Election Commission seeking transfer of IAS and district electoral officer Rohini Sindhuri ahead of the Assembly polls in May. This comes days after Sindhuri locked his government office over reports that it was being used for election work.
Summary:
The Maharashtra government has announced plans to launch a digital automation system to conduct examinations, assess answer sheets online and help with admissions of students across its universities.
Summary:
The Jharkhand government has decided to release 221 prisoners who were awarded life sentence and have spent over 20 years in jail.
Summary:
The CBSE exams for Class 12 and 10 postponed in Punjab due to Bharat Bandh on April 2 will be held on April 27.
Summary:
The accused, who belongs to Uttar Pradesh, would travel to Delhi by bus and steal motorcycles parked in commercial areas using master keys, police added.
Summary:
After an image circulated online suggested that a missing Assam youth joined Hizbul Mujahideen in Jammu and Kashmir, his mother said the government should shoot him dead as he is "an enemy of the country".
Summary:
The report also states that this product will be launch around the same time as the OnePlus 6.
Summary:
Google Assistant, which is available in India in both Hindi and English, was launched in the country last year.
Summary:
There are around 68,000 people aged 100 or more in Japan, according to government data released last year.
Summary:
Upset over the arrest, Champaran residents protested non-violently outside the jail and other government buildings, leading to Mahatma's release.
Summary:
An informal trust controls around 21 bighas of land that has been donated to the dogs.
Summary:
A man hailing from Uttar Pradesh was arrested in Mumbai for allegedly stealing a state-owned MSRTC bus with passengers on board to drive to his village, police said.
Summary:
Summary:
A class action lawsuit has been launched against Facebook, Cambridge Analytica and two other companies by British and US lawyers over alleged misuse of the personal data of over 7 crore people.
Summary:
Mocking Uttar Pradesh CM Yogi Adityanath, Congress has posted a video on what his browser history could be.
Summary:
Summary:
Congress MP Shashi Tharoor on Tuesday used the word 'lalochezia' to slam trolls on the micro-blogging site.
Summary:
A 10-year-old boy raised an alarm after falling out of the window of his school bus when it fell into a deep gorge in Himachal Pradesh, killing 29 people.
Summary:
US President Donald Trump on Monday said that the "poor" US leadership of the past "allowed" China to take advantage of the country.
Summary:
US President Donald Trump's Homeland Security Adviser Tom Bossert has resigned, White House press Secretary Sarah Sanders said on Tuesday.
Summary:
They also created handwriting fonts of other singer-songwriters including David Bowie, John Lennon, and Leonard Cohen.
Summary:
IT industry body Nasscom on Tuesday said it appointed Wipro's Chief Strategy Officer and board member Rishad Premji as its Chairman for 2018-19.
Summary:
The world's second largest nickel producer Norilsk Nickel's CEO Vladimir Potanin lead the decline as his fortune fell by $2.25 billion.
Summary:
Actor Rajkummar Rao revealed that his loved ones wanted him to add an extra 'M' in his name, while adding, "But, it's not like just because of that suddenly things changed for me." The actor said that his name was actually Rajkumar Yadav.
Summary:
The film, which reportedly also stars Shraddha Kapoor, is based on groom-kidnapping practice which is said to be prevalent in North India.
Summary:
Indian shooter Heena Sidhu, who set a CWG record to win gold in women's 25m Pistol on Tuesday, has said that her score of 38 was "good enough" for any Olympic final.
Summary:
Manika Batra, who was a part of women's table tennis team which won gold at the CWG 2018, will be awarded â¹14 lakh by Delhi government.
Summary:
Former England captain Andrew Flintoff has said that it is "nonsense" that only three Australian cricketers knew about the ball-tampering plan.
Summary:
A 33-year-old woman has criticised American Airlines after a ceiling panel allegedly fell onto her son's head as the flight touched down in Texas, US.
Summary:
Slamming Karnataka minister UT Khader for consuming beef, RSS leader Kalladka Prabhakar has said that the temples visited by him must be cleaned using holy water.
Summary:
He was reportedly distressed over violence during Bharat Bandh protests.
Summary:
Goa CM Manohar Parrikar is likely to return from the US in May after receiving treatment for a pancreas-related ailment, state BJP General Secretary Sadanand Tanavade said.
Summary:
Rajendran and two others allegedly remitted the forex through Star Forex India.
Summary:
PM Narendra Modi and BJP President Amit Shah, along with all BJP MPs, will observe a day-long fast on April 12 in protest against disruptions during the recently-concluded Budget session of the Parliament.
Summary:
Luis Fonsi's 'Despacito', which was YouTube's most watched video, appears to have been deleted from YouTube in an apparent hack.
Summary:
Yahiya, only the second Indian after Milkha Singh to reach the men's 400m final at CWG, had clocked 45.32 seconds to set the previous record.
Summary:
Mumbai Police arrested a fashion designer for allegedly raping his daughters, aged 13 and 17, for two years.
Summary:
Rajasthan Royals pacer Ben Laughlin bowled seven legal deliveries in an over during the side's match against Sunrisers Hyderabad in 2018 IPL on Monday.
Summary:
Investigators uncovered plastic bags, net pieces, and a jerrycan in the whale's digestive system during the autopsy.
Summary:
Speaking on the 100th anniversary of the Champaran Satyagraha, PM Narendra Modi said Bihar had transformed Mahatma Gandhi into 'Bapu'.
Summary:
The Supreme Court has directed a Special Task Force appointed to deal with unauthorised constructions in Delhi to demolish any building that poses a safety risk, even if it was built legally.
Summary:
Amid the rising trade tensions between China and the US, Chinese President Xi Jinping on Tuesday promised to "significantly lower" tariffs on vehicle imports.
Summary:
The attempt was foiled as the monkeys fought the thieves.
Summary:
Canadian police are searching for a woman suspected of stealing a rock worth $17,500 (â¹11 lakh) from a museum exhibit.
Enjoy it," and "IâÂÂm having a hard time believing that ugly rock is worth 17,000$."
Summary:
Former PNB Deputy Manager Gokulnath Shetty has reportedly said that Nirav Modi and Mehul Choksi blackmailed him for issuing Letters of Undertaking (LoUs).
Summary:
ITC has agreed to remove all references to rival PepsiCo's Tropicana from an advertisement campaign with the hashtag "SayNoToConcentrate" for its juice brand B Natural.
Summary:
Summary:
As per reports, Sonam Kapoor will be marrying businessman Anand Ahuja in Mumbai on April 29.
Summary:
Summary:
Tamil groups have threatened that they could carry out protests inside the stadium.
Summary:
TVK leader Velmurugan has threatened his party would let loose snakes inside the Chepauk Stadium in Chennai if CSK's first home match against KKR goes through on Tuesday.
Summary:
Sachin had won silver at the 2017 Powerlifting World Cup in Dubai.
Summary:
Woods missed being only the second golfer to achieve the feat at the par-3 fourth hole at the Augusta Masters.
Summary:
Belgium defender Davina Philtjens conceded a penalty against Portugal by holding the ball with hands inches away from goal in injury time during a FIFA Women's World Cup qualifier.
Summary:
Nearly 300 flights were cancelled on Monday and several others rescheduled after the main runway at the Mumbai airport was closed for six hours for pre-monsoon maintenance work.
Summary:
Mumbai-based meal box startup Yumlane has raised $4 million in Series A funding round led by Singapore-based RB Investments.
Summary:
Researchers have developed a simple blood test to estimate the risk of developing active tuberculosis.
The international team hopes to commercially develop the test to avoid treating people at low risk.
Summary:
The researchers trained the rats with odour of tuberculosis-infected mucous, who then identified 57 additional cases of TB among 982 children.
Summary:
The autopsy reports revealed that there was cyanide content in the cows' internal organs.
"The poison (cyanide) takes just 15 to 20 minutes to work.
Summary:
The number of UK nationals seeking citizenship in another EU member state more than doubled in 2016, according to a European statistical agency.
Summary:
Daughter of former Russian spy Sergei Skripal, Yulia, has been discharged from a UK hospital more than a month after being poisoned with a nerve agent along with her father.
Summary:
Chinese luxury hotel 'Cordis' claims the air inside its premises passes through two levels of filtration and is continuously cleaned, while the double-glazed windows remain closed at all times.
Summary:
The retrial is on the accusations by Andrea Constand, a former basketball player, that Cosby had drugged and sexually assaulted her in 2004.
Summary:
Salman Khan's 'Hum Saath-Saath Hain' co-star Kunickaa Sadanand has filed a police complaint against the Bishnoi community, alleging that she received death threats for supporting Salman in the 1998 blackbuck poaching case.
Summary:
Muhammed Anas Yahiya has become the first Indian to qualify for the men's 400m final at the Commonwealth Games since Milkha Singh.
Summary:
Indian cricketer Mohammad Shami's wife Hasin Jahan has filed a domestic violence case against the pacer and four other family members in Alipore Court.
Summary:
The executive will directly report to its COO Matthew Idema and represent its product strategy in India.
Summary:
About 63,714 people in New Zealand may have been impacted by the Facebook data leak after only 10 users downloaded the personality quiz app which caused the data scandal, the social media giant has revealed.
Summary:
Andhra Pradesh Deputy Chief Minister KE Krishna Murthy on Monday said that Telugu speakers in Karnataka and Tamil Nadu should "vote for anybody but BJP" because PM Narendra Modi denied special status to Andhra Pradesh.
Summary:
An MIT study has suggested large concentrations of sulphites and bisulphites in shallow lakes may have set the stage for Earth's first biological molecules.
Summary:
NASA's Hubble space telescope recently captured a circle of light, called the "Einstein ring", which occurs when light coming from a background galaxy is distorted around a massive cluster making it seem that the galaxy is in multiple places at once.
Summary:
The Supreme Court on Monday asked the Centre and the Delhi government to not make the sealing of illegal structures in the national capital a political issue.
Summary:
Prime Minister Narendra Modi on Tuesday congratulated 'Swachhagrahis' for building 8.5 lakh toilets in Bihar in the last one week.
Summary:
The court's observation came after it was revealed that police found out about the girl's pregnancy in March but didn't inform anyone.
Summary:
At least two Indian Army jawans were martyred in ceasefire violation by Pakistan army in Jammu and Kashmir's Sunderbani sector along the Line of Control on Monday.
Summary:
US Ambassador Nikki Haley slammed Russia on Monday in a United Nations Security Council meeting on the alleged Syria chemical attack, saying its hands are "covered in the blood of Syrian children".
Summary:
Defending Cohen as a "good man", Trump said FBI agents "broke into" the lawyer's office.
Summary:
Notably, Pakistan is one of only three countries in the world that suffers from endemic polio.
Summary:
The skeletons of two dinosaurs will be auctioned in Paris this week.
Summary:
Choubey added Air India's operations wouldn't be split in bidding process.
Summary:
Notably, the announcement comes days after IndiGo said it did not want to buy Air India's domestic and international networks together.
Summary:
English cyclist Melissa Lowther was denied participation in the Commonwealth Games' women's individual time trial on Tuesday as the English contingent's officials forgot to tick a box on her entry form.
Summary:
The rivals were punished and asked to start the race three rows behind Miller for changing to slick tyres so late.
Summary:
Google was abusing its dominance in online web search and online search advertising markets, the watchdog had earlier said.
Summary:
A video shows passengers swatting mosquitoes on a Jet Airways flight at the Lucknow airport.
The video, taken on Sunday, shows passengers using newspapers and safety advisory pamphlets to avoid the mosquitoes.
Summary:
Lawyers in Madhya Pradesh's Bhopal on Monday shaved their heads in protest, demanding the implementation of the Advocates Protection Act. Advocates across the state started the week-long protest despite the High Court Registrar's statement urging them to call it off.
Summary:
This comes after the rape victim's father on Monday died after being allegedly beaten by the MLA's brother in judicial custody.
Summary:
Instant messaging service WhatsApp's privacy policy mentions that it shares information collected under its Payments Privacy Policy with third-party service providers including Facebook.
Summary:
Prime Minister Narendra Modi on Tuesday flagged off India's first all-electric high-speed locomotive in Bihar.
Summary:
British data firm Cambridge Analytica, accused of illegally obtaining the personal data of millions of Facebook users, has listed 10 'facts' denying multiple allegations.
Summary:
Summary:
A Bengaluru-based cardiologist was offloaded from an IndiGo flight at Lucknow airport after he complained about mosquitoes.
Summary:
Uttar Pradesh Police announced that a Special Investigation Team has been formed to probe incidents related to a rape case filed against BJP MLA Kuldeep Sengar from Unnao.
Summary:
A study led by British Antarctic Survey has revealed a 10% increase in snowfall over the last 200 years.
Summary:
Gujarat Police's Criminal Investigation Department has filed an FIR against nine policemen in the state for allegedly kidnapping and extorting 200 Bitcoins worth over â¹12 crore from a Surat-based builder.
Summary:
A saffron coloured statue of BR Ambedkar in Uttar Pradesh's Budaun was repainted blue by BSP leader Himendra Gautam.
Summary:
The principal of the madrasa said, "Sanskrit is now being taught to all students above Class 5.
Summary:
The Uttar Pradesh government has decided to withdraw a seven-year-old rape case against BJP leader and former Union Minister Swami Chinmayanand.
Summary:
The Federal Bureau of Investigation (FBI) on Monday raided US President Donald Trump's personal lawyer Michael Cohen's offices.
Summary:
China's President Xi Jinping has warned against a 'Cold War mentality' and vowed to open up parts of the country's economy amid rising tensions with the US.
Summary:
A competitive eater who participated in a chilli eating contest had to be taken to the hospital after he developed a pain in his neck that turned into a series of thunderclap headaches, it emerged recently.
Summary:
PNB's Managing Director Sunil Mehta has said the bank won't seek government's assistance to tackle the Nirav Modi fraud.
Summary:
Rajiev Dhingra, the director of Kapil Sharma starrer 'Firangi' has said that Kapil's ex-girlfriend Preeti Simoes is responsible for driving him into depression.
Summary:
Apart from Ranveer, Anushka Sharma will also be awarded the Dadasaheb Phalke Excellence Award for her contribution to films as a producer.
Summary:
'The Kapil Sharma Show' actress Upasana Singh, while speaking about the row between Kapil and editor Vickey Lalwani, said, "He drinks but that isn't an excuse for such behaviour." "Kapil has been mentally disturbed...In such a condition people make mistakes," she added.
Summary:
Former boxing world champion Floyd Mayweather's bodyguard was reportedly shot in the leg outside an Atlanta hotel where the boxing champ was staying.
Summary:
Earlier, Zuckerberg had said that he is still the best person to lead Facebook.
Summary:
Uber on Monday announced it has acquired US-based dockless bike-sharing startup Jump Bikes for a reported amount of $200 million.
Summary:
However, neutrino interactions are difficult to detect since they have no electric charge.
Summary:
The zone measures 400 km in length and spans 100 km at its widest part.
Summary:
The practice of stamping hand baggage has been stopped at 31 airports.
Summary:
Calling infiltration from borders a major source of terrorism, the Centre told the Supreme Court that the court cannot issue an order directing the government to ensure entry of foreigners in India.
Summary:
Last week, 12 junior colleges were sent notices for conducting extra classes.
Summary:
The incident comes months after a teacher at another school in the state was caught on camera thrashing students over alleged non-payment of fee.
Summary:
Indian shooter Heena Sidhu set Commonwealth Games record to win gold in women's 25m pistol shooting event on Tuesday.
This was Sidhu's second medal at CWG 2018, after winning silver in women's 10m air pistol.
Summary:
TVK leader Velmurugan warned Chennai Super Kings ahead of their IPL match, saying, "If there's even a small untoward incident...those protesting for Cauvery rights are in no way related." Earlier, Velmurugan threatened that if IPL is conducted in Tamil Nadu, people will protest inside the stadium.
Summary:
Ahead of his testimony over data scandal, Facebook CEO Mark Zuckerberg has said, "I started Facebook, I run it, and I'm responsible for what happens here." "We didn't take a broad enough view of our responsibility, and that was a big mistake.
Summary:
Zuckerberg will testify before the US Congress regarding the data scandal.
Summary:
US' Hartsfield-Jackson Atlanta International Airport was ranked the world's busiest airport, with nearly 104 million flyers in 2017, by Airports Council International.
Summary:
Human ancestors had gigantic brow ridges while modern humans evolved flatter foreheads, giving more mobility to eyebrows.
Summary:
Summary:
Supreme Court judge Justice J Chelameswar on Monday alleged that the appointment of judges to the apex court is done on the basis of impression rather than their performance.
Summary:
Summary:
The Bharat Bandh has been called by some groups to protest against the caste-based reservation system.
Summary:
A group of drunk men allegedly assaulted a woman in Assam's Goalpara for going out with a male friend after her marriage was fixed with someone else.
Summary:
The school authorities later informed CBSE, which failed to take any action.
Summary:
He had been arrested along with his daughter, who tried to kill herself to protest police inaction over the rape complaint.
Summary:
Markle had written about the charity in the TIME magazine after her visit to Mumbai last year.
Summary:
North Korean leader Kim Jong-un has made first official mention of talks with the US at a party meeting while discussing the prospect of the dialogue, North Korea's state media reported.
Summary:
According to reports, actor Nawazuddin Siddiqui has been approached to play the antagonist in Rajinikanth's upcoming Tamil film, written and directed by Karthik Subbaraj.
Summary:
Actress-turned-author Twinkle Khanna, while speaking about online trolls, said they are like "cockroaches".
Summary:
Summary:
India was assured of another boxing medal after boxer Amit Panghal beat Scotland's Aqeel Ahmed to enter the semifinal of the men's 46-49kg boxing event at the Commonwealth Games 2018 in Australia on Tuesday.
Summary:
After India won the badminton mixed team gold for the first time in Commonwealth Games history, Indian shuttler Saina Nehwal said that for her the team gold is more 'cherishable' than an individual gold.
Summary:
Speaking about autonomous weapons, India's disarmament Ambassador Amandeep Gill has said, "Robots aren't taking over the world.
Summary:
Mukesh Ambani is close to acquiring a majority stake in Mumbai-based edtech startup Embibe via his family office for â¹100 crore, according to reports.
Summary:
Mumbai-based blockchain startup Elemential has raised an undisclosed amount in a funding round led by Matrix Partners India.
Summary:
The discovery also solved a 150-year-old mystery, when ichthyosaur fossils were misinterpreted as dinosaur bones.
Summary:
The External Affairs Ministry has released a special advisory asking Indian migrants not to take up fishing jobs on trawlers or vessels leaving from Saudi Arabia, UAE and Bahrain and moving towards Iran.
Summary:
At least 18 people have died and 14 injured after a truck they were travelling in hit a barricade on Pune-Satara highway in Maharashtra on Tuesday.
Summary:
Ranveer Singh has revealed his father Jagjit Singh Bhavnani keeps complaining that he makes less money as per his popularity.
Summary:
The Saudi Film Council has announced that it will participate in the 71st annual Cannes Film Festival from May 8 to 19.
Summary:
The official trailer of Alia Bhatt and Vicky Kaushal starrer 'Raazi' has been released.
Summary:
With five golds, India was the most successful among 35 countries and territories which participated in weightlifting at the Commonwealth Games 2018.
Summary:
The firm currently has 25 operational renewable energy projects globally, totaling 626 megawatts of generation capacity, Apple said.
Summary:
Last month, JD(U) chief and Bihar CM Nitish Kumar said he hadn't given up the special status demand for "even one second".
Summary:
The district administration in Uttar Pradesh's Budaun village has installed a saffron-coloured statue of BR Ambedkar to replace one that was vandalised earlier.
Summary:
BJP MLA Kuldeep Sengar has said an 18-year-old woman's rape allegation against him was a "ploy by people of lower classes" to tarnish his image.
Summary:
Kuppala Rama Gopala Krishna in Andhra Pradesh has grown 18 varieties of mango on a single tree by joining tissues from different plants.
Summary:
A 58-year-old woman saved the lives of around 20 workers who were trapped inside a burning four-storey footwear factory in Delhi on Monday morning.
Summary:
The deal will provide confidence that Indian firms can fulfil requirements of the forces, the ministry said.
Summary:
Twelve people had died in violence during Bharat Bandh on April 2.
Summary:
Condemning the "heinous" suspected chemical attack in Syria's Douma, US President Donald Trump on Monday said he will make a decision on the US response within 24 to 48 hours.
Summary:
Axis Bank CEO and MD Shikha Sharma has sought approval from the bank's board to step down at the end of 2018.
Summary:
Bigg Boss 11 winner Shilpa Shinde slammed SpotboyE editor Vickey Lalwani, who was abused by Kapil Sharma, while writing, "Every artist knows Vickey...
Summary:
Shilpa Shetty has said she didn't have to struggle to land films but it started mid-way towards her career, adding, "People started typecasting me in just glamorous roles...we were just like glamour dolls." She further said, "I have seen it all...the highs and the lows.
Summary:
Actor R Madhavan has said that he and his wife Sarita Madhavan are proud of their 13-year-old son Vedaant, who won a medal for India at an international swimming competition held in Thailand.
Summary:
As per reports, Jacqueline Fernandez will not star in the upcoming film 'Housefull 4' as its director Sajid Khan said that he is personally and professionally incompatible with the actress.
Summary:
RCB fans hit out at England cricketer Ben Duckett on social media after misinterpreting his tweet, wherein he had called the team as a "joke".
Later, Duckett shared a screenshot of hate messages he received and explained he was praising RCB.
Summary:
India's Harmanpreet Singh scored both goals, one in the first quarter and then added another in the third quarter.
Summary:
SunRisers Hyderabad opener Shikhar Dhawan scored 77*(57) after getting dropped on 0 to help his team chase down Rajasthan Royals' 125 in the IPL on Monday.
Summary:
After KXIP's Lokesh Rahul slammed the fastest-ever IPL 50 off 14 balls on Sunday, Indian all-rounder Irfan Pathan took to Twitter and asked his brother SRH's Yusuf Pathan to try hitting a 13-ball fifty.
Summary:
His remarks come after Congress President Rahul Gandhi alleged BJP is against the ideology of tribals and Dalits, adding that it wants to divide the country.
Summary:
Over 24 leaders from Samajwadi Party and Bahujan Samaj Party in Uttar Pradesh have joined the BJP on Monday.
Summary:
The woman had started arguing when the police asked her friend to undergo a breathalyser test, reports said.
Summary:
Police in Assam's Lakhimpur said a 16-year-old girl who alleged she was gangraped had instead had consensual sex with her boyfriend.
Summary:
After the death of a rape survivor's father allegedly after being beaten in police custody, Uttar Pradesh CM Yogi Adityanath said the guilty will not be spared.
Summary:
The plate has been owned by Kahn since 2008 when he reportedly purchased it for ã440,000 (â¹4 crore).
Summary:
At least 20 students have been killed after a school bus fell into a 100-metre deep gorge in Himachal Pradesh's Kangra on Monday.
Summary:
Facebook makes a lot of advertising money off this," he said.
"Apple makes money off of good products, not off of you," he added and further emphasised that "with Facebook, you are the product."
Summary:
SRK, who was in Kolkata for his team Kolkata Knight Rider's IPL match against Royal Challengers Bangalore, further said, "He's not yet started playing cricket."
Summary:
Actress Sri Reddy has alleged that a top Telugu film producer's son forced her to have sex in the studio.
Big directors, producers and heroes use studios as brothels.
Summary:
Earlier, KRK had claimed he had been diagnosed with stage 3 stomach cancer.
Summary:
Four policemen have been arrested and six suspended for allegedly beating up the father of a rape victim in police custody.
Summary:
The district judge's name was then cleared for elevation to the High Court.
Summary:
The university had issued an admit card with Hindu deity Ganesha's picture last year.
Summary:
Hundreds of people wore tutus or loincloths, or covered themselves with body paint, to participate in the first-ever 'Underpants Run' in Philippines' capital city Manila.
Several local celebrities also participated in the race, wherein participants could choose to run three, five or 10 kilometres.
Summary:
Talking about the â¹13,600-crore PNB scam, BSE CEO Ashishkumar Chauhan compared the amount to the â¹10,000-crore interest India's "solid" banking sector makes in just three days.
These kinds of scams give banks "enough ammunition" to take more money by charging higher for loans and giving less for deposits, Chauhan further said.
Summary:
China on Monday said Hong Kong was free to accept India's request to arrest Nirav Modi based on local laws and judicial agreements.
Summary:
Amit Bhardwaj, who was arrested in Bangkok and brought back to Pune, is the alleged mastermind behind Bitcoin Ponzi schemes worth â¹2,000 crore.
Summary:
Wishing Swara Bhasker on her 30th birthday, Sonam Kapoor wrote, "Happy happy birthday my Veere.
Summary:
Actor Ranbir Kapoor has said that it is very important to have a solid friend circle especially in his profession.
Summary:
Ranveer Singh has said that Deepika Padukone is calm like a Buddhist monk.
Summary:
CSK's Kedar Jadhav has been ruled out of Indian Premier League 2018 due to a hamstring injury.
Summary:
She earned the 'Fittest woman' title after winning CrossFit Games in 2017.
Summary:
Laxman played his last ODI eight years later, wherein he was caught by Graeme Smith on a Shaun Pollock delivery for a golden duck.
Summary:
China-based firm VVFLY Electronics has developed a smart anti-snoring eye mask called Snore Circle, priced at nearly â¹9,700.
Summary:
The group states that Google collects information on children under 13 such as location and phone numbers.
Summary:
Meanwhile, Southwest Airlines, Qatar Airways and Korean Air also featured in the top ten.
Summary:
Summary:
Tytler, who was initially seen on the stage, later walked away and sat with the party workers.
Summary:
"When a car is sent to the US from China, there is a tariff...of 2 1/2%.
When a car is sent to China from the US, there is a tariff...of 25%," he tweeted.
Summary:
The Enforcement Directorate on Monday conducted multiple searches in connection with a money laundering case against Vadodara-based Diamond Power Infrastructure, which allegedly cheated banks of â¹2,654 crore.
Summary:
A report quoted a senior Aviation Ministry official as saying that SAC has shown interest in buying Air India.
Summary:
India's previous best performance in mixed team event at CWG was a silver-medal finish in the 2010 edition.
Summary:
India defeated Nigeria 3-0 to clinch gold in the men's table tennis team event at the Commonwealth Games for the first time since 2006.
Summary:
Playboy founder Hugh Hefner quit his job at 'Esquire' magazine after he was denied a $5-a-week raise.
Summary:
Hefner, who purchased the mansion in 1971 for a reported $1.1 million, was born on April 9, 1926.
Summary:
Instagram only had 13 employees when it was bought by Facebook for $1 billion in a combined cash and stock deal on April 9, 2012.
Summary:
Salman Khan, in his first public statement following his bail, wrote on social media, "Tears of gratitude.
Summary:
The event was organised after 78-year-old 'Lovely' Hamza realised there were several Hamzas in their neighbourhood.
Summary:
Slamming the Centre for not implementing its order regarding distribution of Cauvery water, the Supreme Court on Monday asked it to submit a draft scheme by May 3.
Summary:
The father of the woman who tried to kill herself outside Uttar Pradesh CM Yogi Adityanath's residence to protest over a rape complaint against a BJP MLA, allegedly died after being beaten up in police custody.
Summary:
China has imposed restrictions on exports to North Korea by banning some items that can be used in both civilian products and weapons of mass destruction.
Summary:
Stating that US President Donald Trump has been trying to break the 2015 nuclear deal for 15 months, Iran President Hassan Rouhani said the deal is so strong that it has not been shaken by such quakes.
Summary:
North Korean leader Kim Jong-un is willing to discuss denuclearisation of the Korean Peninsula with the US, according to reports quoting a US official.
Summary:
The newspaper traced back 43 generations of the British Queen's family to assert the claim.
Summary:
An ally of US during WWII, Churchill had already been granted honorary citizenship by eight US states.
Summary:
He later said she had been late for the first time in six years.
Summary:
The controlled demolition of a 53-metre-high silo in Denmark went wrong when it fell the wrong way, crashing into a building housing a music school and library.
Summary:
Swiss drugmaker Novartis has agreed to buy US gene-therapy company AveXis for $8.7 billion, an 88% premium to its Friday closing price.
Summary:
Actor Amitabh Bachchan, in a blog post on his wife Jaya Bachchan's 70th birthday, wrote, "Welcoming of the lady on her 70th." He further wrote, "She be wife and Mother...
Summary:
Abhishek Bachchan, while sharing an old picture of his mother Jaya Bachchan on her 70th birthday, wrote, "Happy Birthday Ma. You are the world to me, love you!" Abhishek has worked with Jaya in films like 'Laaga Chunari Mein Daag' and 'Drona' among others.
Summary:
Referring to Alia Bhatt in her upcoming film 'Raazi', the film's producer Karan Johar tweeted, "Strong, Emotional, Fiercely Independent.
Summary:
India were dismissed for 113, with Danielle Hazell and Sophie Ecclestone picking up four wickets each.
Summary:
BJP leader Harish Khurana tweeted a picture showing Congress leaders Ajay Maken, AS Lovely among others eating chole bhature at a Delhi restaurant before their protest fast at Rajghat against alleged Dalit atrocities.
Summary:
The police officer can be seen thrashing the rape accused as the man stood facing a wall.
Summary:
The Uttar Pradesh Police has filed an FIR against four people for allegedly writing a derogatory post against Dr BR Ambedkar on Facebook and for assaulting a Dalit youth.
Summary:
The son of Union Minister Ashwini Choubey, Arijit Shashwat, was granted bail on Monday after being held over links to communal clashes that took place in Bihar's Bhagalpur.
Summary:
The government is preparing a digital atlas for flood-prone areas to give warnings and real-time information about the rise in water levels, reports said.
Summary:
A meeting was reportedly held in January 2017 with chief vigilance officers of 10 banks, including PNB to discuss such irregularities.
Summary:
Ahead of the Karnataka Assembly elections, state Congress leader Sundara Devinagara quit the party on Saturday morning and rejoined it hours later in the evening.
Summary:
Addressing reports of him marrying rumoured girlfriend Deepika Padukone by the end of this year, Ranveer Singh said, "If there is any announcement in the future, you will be hearing me shouting from the rooftops." He further said, "Right now we are both extremely busy working.
Summary:
Summary:
A Sikh organisation has set the Guinness World Record for the "most turbans tied in 8 hours" by tying over 9,000 turbans to celebrate annual Turban Day at Times Square, New York.
Summary:
Retired undefeated boxer and world champion Floyd Mayweather has said if he ever fights again, it will be for the Ultimate Fighting Championship (UFC).
Summary:
The Telangana Tourism Department on Monday welcomed four women bikers who successfully completed a nearly 17,000-kilometre-long road trip covering six countries.
Summary:
Congress President Rahul Gandhi, along with his party, observed a day-long fast between 11 am and 4 pm on Monday for communal harmony in the country.
Summary:
Indian Administrative Service (IAS) 2015 topper Tina Dabi married the second rank holder Athar Aamir-ul-Shafi Khan in Jammu and Kashmir on Saturday.
Summary:
The rebels had destroyed the power infrastructure in the village in an attempt to disrupt developmental activities in the area.
It will be easier for children to study at night," a villager said.
Summary:
Dalit organisation Ambedkar Mahasabha has decided to felicitate Uttar Pradesh Chief Minister Yogi Adityanath with the 'Dalit Mitra' (Friends of Dalits) award.
Summary:
According to Raj, a weather-based crop insurance was launched in 2012 and ICICI Lombard was the middleman between beneficiaries and the government.
Summary:
A government school in Rajasthan's Alwar has been painted to look like a railway station, with classrooms as passenger compartments, principal's office as the engine and the verandah as the platform.
Summary:
A total of three infants have died and six others have fallen sick in Jharkhand's Palamu, allegedly after they were administered a vaccination.
Summary:
Isabella Pieri's father did not know how to make her hair, following which she asked Dean for help.
Summary:
Seemingly inspired by the viral 'If you don't love me at my' memes, the Mumbai Police has tweeted an image showing a traffic constable issuing a challan and another showing a constable controlling traffic in the rain.
Summary:
A DJ who headbutted former Australian Prime Minister Tony Abbott was sentenced to a maximum six-month jail term today.
Summary:
About half of â¹5,000 crore has reportedly come back to their India-based firms as foreign investment or through hawala route.
Summary:
Ferrari driver Kimi Raikkonen's car ran over his team mechanic's leg during a pit stop at the Bahrain Grand Prix on Monday.
Summary:
A Kalaimani, a 45-year-old athlete, has been forced to open and run a tea stall in Tamil Nadu's Coimbatore to make a living.
Summary:
Indian spinner Axar Patel has been signed up by English county cricket side Durham to play in the final six matches of the county cricket season.
Summary:
Canada-based Orijin Design Company has raised over â¹77 lakh to make an egg-shaped product called 'The Thinking Egg', priced at $10.
Summary:
SpaceX CEO Elon Musk has shared a picture of the main body tool of SpaceX's biggest rocket called BFR designed to take people to Mars.
Summary:
Delhi-based startup Chakr Innovation which turns pollution into processed ink has raised undisclosed amount from IDFC-Parampara Fund and Globevestor funds.
Summary:
Flight operations at the Mumbai airport are likely to be affected for two days as the airport operator on Monday announced the closure of the main runway for six hours today and tomorrow for pre-monsoon maintenance work.
Summary:
Notably, the board had expressed "full faith and confidence" in Kochhar and refuted reports of any wrongdoing.
Summary:
BIC acquired Cello Pens from Mumbai-based Rathod family and the sale agreement included a clause that prevented them from entering the stationery business for 36 months.
Summary:
It's alleged that Videocon Chairman Venugopal Dhoot pumped money into NuPower in exchange for loans from ICICI.
Summary:
nThe Mercedes-Benz GLS Grand Edition's impressive highlights and unparalleled power give it the authority to rule every terrain.
Summary:
In a first, the National Investigation Agency (NIA) has put a former Pakistani diplomat, Amir Zubair Siddique, on its wanted list.
Summary:
A fresh plea has been filed in the Supreme Court against the viral song featuring actress Priya Prakash Varrier, claiming that the act of winking is forbidden in Islam.
Summary:
India's 17-year-old shooter Mehuli Ghosh set a Commonwealth Games joint record to win silver in the women's 10m Air Rifle event on Monday.
Summary:
Belgium's 23-year-old cyclist Michael Goolaerts passed away in a hospital after suffering a cardiac arrest during the Paris-Roubaix race on Sunday.
Summary:
Expressing confidence in a united alliance of Congress, BSP and SP in Uttar Pradesh, Congress President Rahul Gandhi said PM Narendra Modi may even lose his parliamentary constituency of Varanasi in 2019 Lok Sabha elections.
Summary:
China's artificial intelligence (AI) startup SenseTime has become the world's most valuable AI startup after raising $600 million mainly from Alibaba.
Summary:
President Ram Nath Kovind was on Sunday conferred with the highest civilian honour given to a non-citizen by Equatorial Guinea.
Summary:
Denying reports that Sheena Bora murder accused Indrani Mukerjea was on life support, doctors at Mumbai's JJ Hospital confirmed that Mukerjea had a medicine overdose.
Summary:
Trump further claimed that if Barack Obama had acted against Assad, the Syrian President would have been history.
Summary:
A UK boarding school said that it will let boys wear skirts.
Summary:
Summary:
Reacting to Royal Challengers Bangalore's loss to Kolkata Knight Riders in their IPL 2018 opener, RCB captain Virat Kohli said, "I played too many dot balls and couldn't get any momentum going".
Summary:
Ferrari's Sebastian Vettel won his second Grand Prix in as many races, at the Bahrain Grand Prix, while Mercedes' Valtteri Bottas finished second by just 0.699 seconds.
Summary:
Cristiano Ronaldo scored for the 10th game in a row as Real Madrid played out a 1-1 draw against city rivals Atletico Madrid in the La Liga on Sunday.
Summary:
Users will also be able to turn off third-party access to their accounts.
Summary:
Technology giant Apple will unveil a red version of the iPhone 8 and iPhone 8 Plus models this week, according to reports.
Summary:
WhatsApp has released a feature in beta which allows Android users to lock voice recording button while sending long voice clips.
Summary:
In another incident, a Jet Airways Delhi-bound flight made an emergency landing in Lucknow as its landing gear was not functioning properly.
Summary:
Switzerland-based aviation advisory firm Swiss Aviation Consulting has shown interest in bidding for debt-ridden national airline Air India, a senior aviation ministry official has been quoted as saying.
Summary:
National Conference (NC) President Farooq Abdullah on Saturday said that the Line of Control (LoC) in J&K should be converted into the "Line of Peace and Goodwill".
Summary:
US-based startup Edovo which provides tablet-based education for prisoners has raised $9.8 million in Series A.
Summary:
A Kerala woman got a man arrested for circulating a fake WhatsApp forward claiming she was planning to elope with her male friend, following which her fiance called off the wedding.
Summary:
NCP MLA Sangram Jagtap was among the four arrested for the murder of a Shiv Sena leader and a worker in Maharashtra's Ahmednagar on Saturday after the announcement of civic bypolls results.
Summary:
During a speech at a tax policy discussion in West Virginia last week, US President Donald Trump threw away his prepared remarks and called them "boring".
Summary:
Last month, Israeli security forces killed 16 Palestinians protesting along the Israel-Gaza border.
Summary:
The two-year-old startup used to offer delivery service for milk, bread, eggs, groceries and other essentials.
Summary:
It facilitates people to explore incredible Indian holiday destinations with discounts, tour packages and also the best price challenge.
Summary:
Indian shooter Jitu Rai broke the Commonwealth Games record with a score of 235.1 in the men's 10m Air Pistol event to win his career's second Commonwealth Games gold on Monday.
Summary:
The film body Movie Artistes Association (MAA) denied membership to actress Sri Reddy, who went topless in Hyderabad to protest against casting couch in the Telugu film industry.
Summary:
The Irrfan Khan and Saba Qamar starrer 'Hindi Medium' earned over â¹100 crore in just three days of its release in China on April 4.
Summary:
KKR opener Sunil Narine slammed 50 off 17 balls against RCB in the evening match on Sunday, becoming the first player to score two 50s off 17 or fewer balls in IPL history.
Summary:
Weightlifter Pardeep Singh lifted a combined weight of 352 kg in the men's 105 kg category on Monday to bag India's third silver medal and 13th overall medal at the Commonwealth Games 2018.
Summary:
Only six of the 59 airports guarded by CISF are equipped to defuse and dispose of explosives, an audit by the agency has found.
Summary:
The Border Security Force is reportedly building 190 guest houses for jawans of constable and sub-constable rank to live with their families and spend more time with them.
Summary:
Indian Air Force stations and important installations in Punjab have been put on alert after intelligence agencies received inputs that the posts are being targetted by Pakistan-based terrorist organisations Jaish-e-Mohammed and Lashkar-e-Taiba.
Summary:
The Gujarat High Court has remarked "marital rape is not a husband's privilege" and called it an "injustice that must be criminalised".
Summary:
Slamming French President for meeting Syrian Kurdish militias last month, Turkish President Recep Tayyip ErdoÃÂan said that "France aids, abets and supports terror".
Turkey had launched an operation against the Kurdish YPG militia, which it considers a terrorist organisation.
Summary:
The ministry said that the incident was being reported as a chemical attack to justify potential strikes against Syria.
Summary:
China has been creating 55 billion tons of artificial rain every year since 2013.
Summary:
The richest 1% are on track to own two-thirds of the world's wealth by 2030, as per a study by UK's House of Commons Library.
Summary:
Rajkummar Rao has said he wants to go higher in his career while adding, "This is not my best.
Summary:
Summary:
KKR's part-time spinner Nitish Rana dismissed RCB's AB de Villiers and Virat Kohli off successive deliveries to take first two wickets of his IPL career today.
Summary:
KKR captain Dinesh Karthik slammed an unbeaten 35 off 29 deliveries to help his team chase down Virat Kohli-led RCB's 176 in the IPL on Sunday.
Summary:
After BSP supremo Mayawati said the BJP was "scared" following Dalit protests, BJP leader Thaawar Chand Gehlot said she is walking towards the path of violence which her mentor Kanshi Ram never believed in.
Summary:
Addressing a rally in Karnataka, Congress President Rahul Gandhi on Saturday said Prime Minister Narendra Modi was scared of facing questions on corruption and was not letting the Parliament function.
Replying to Gandhi, BJP leader CN Ashwath Narayan said TDP isn't in NDA.
Summary:
Adding that they'll choose Congress President Rahul Gandhi for the post, he said, "Dalits...are feeling angry under the NDA's regime.
Summary:
The BJP on Sunday released its first list with 72 candidates for the Karnataka Assembly elections, to be held on May 12.
Summary:
Two Dalit men, accused of blasphemy, were abused, thrashed, and paraded in Haryana's Fatehabad on Friday.
Summary:
Stating that nobody had ever thought government schools could have swimming pools, Kejriwal added his government had shown that these schools could be improved.
Summary:
The man who ploughed a minivan into a group of people outside a restaurant in the German city of Muenster appears to have had mental health problems, regional interior minister Herbert Reul has said.
Summary:
Notably, BP's 2010 Deepwater Horizon oil spill is the largest in history.
Summary:
The Delhi HC has prohibited a trust and four firms from manufacturing, advertising or selling any goods bearing the Patanjali mark following a plea by Ramdev's Patanjali Ayurved.
Summary:
The record for fastest T20 fifty is held jointly by Chris Gayle and Yuvraj Singh (12 balls).
Summary:
Ghaziabad Police tweeted that the force is on the spot and necessary action is being taken.
Summary:
Delhi Daredevils captain Gautam Gambhir slammed his 36th IPL fifty against Kings XI Punjab on Sunday to equal David Warner's record for the most number of fifties in the T20 league.
Summary:
Sarfaraz Khan was the previous youngest (17 years and 177 days) to feature in the IPL.
Summary:
RCB opener Brendon McCullum has become the second cricketer to reach 9,000 runs in T20s, achieving the feat against his former team KKR on Sunday.
Summary:
The spacecraft will orbit directly through the solar atmosphere, closer than any human-made object has ever gone.
Summary:
Kumar stole the Economics paper while collecting the Computer Science and Informatics Practices papers from a bank.
Summary:
Alleging the US was encouraging India's heavy-handed approach, Pakistan's ambassador to the US Aizaz Ahmad Chaudhry said that peace will prevail in south Asia if US assumes the role of a balanced power-player.
Summary:
Pakistan is working on a draft bill to permanently ban 26/11 Mumbai attack mastermind Hafiz Saeed-led Jamaat-ud-Dawah as well as other terror groups and individuals, according to reports.
Summary:
A 21-year-old drunk tourist in Zimbabwe had his arm ripped off after he jumped into a pool that had three crocodiles, an official said.
Summary:
A special CBI court on Sunday issued non-bailable warrants against jewellers Nirav Modi and Mehul Choksi in connection with cases related to the $2.1-billion PNB fraud.
Summary:
Dubai-based cryptocurrency firm Alibabacoin Foundation has denied allegations of trademark infringement by Chinese e-commerce giant Alibaba Group.
Summary:
"Sehmat ho gayi hai #Raazi," wrote the film's official Twitter handle while sharing the clip.
Summary:
Summary:
Summary:
As per reports, Sonam Kapoor and Anand Ahuja's wedding will take place in Montreux, Switzerland from May 9 to May 12.
Summary:
England men's team gathered in a post-game huddle as England women's basketball team player Jones watched on.
Summary:
Lokesh Rahul smashed the fastest-ever Indian Premier League fifty off 14 balls as Ravichandran Ashwin-led Kings XI Punjab defeated Delhi Daredevils on Sunday.
Summary:
Facebook COO Sheryl Sandberg has said the company is doing audits but also warned it could find more data breaches like the recent data leak.
Summary:
The #DeleteFacebook campaign, which emerged in mid-March after the revelation of Facebook's data controversy, still has over 300 participants, as compared to 1,700 two weeks ago, according to Bloomberg.
Summary:
Congress President Rahul Gandhi on Sunday took a ride in the Namma Metro in Bengaluru during his Karnataka Assembly elections campaign.
Summary:
The Akhil Bharatiya Hindu Mahasabha on Saturday wrote a letter in blood to PM Narendra Modi, demanding the withdrawal of the Centre's review petition against the Supreme Court's order which allegedly dilutes the SC/ST act.
Summary:
A 45-year-old man was tied to a tree and stoned to death for allegedly raping a seven-year-old girl in Telangana's Donkeshwar village.
Summary:
Qari Hekmat, a top Islamic State commander in Afghanistan was killed in an air strike carried out by Afghan forces on Thursday, the Afghan Defence Ministry said.
Summary:
Summary:
Former Brazilian President Lula da Silva on Saturday surrendered to police to begin a 12-year prison sentence for taking bribes, ending a two-day stand-off after missing a court deadline to hand himself in.
Summary:
Punjab National Bank's Managing Director Sunil Mehta has said the state-run lender will be able to come out of the "entire problem and pain" created by the Nirav Modi scam in the next six months.
Summary:
India has become only the second country to win gold in the women's table tennis event in the history of the Commonwealth Games.
Summary:
He was caught recently, when he tried to get his second son into the school and mentioned that he was a resident of a posh locality.
Summary:
A case of criminal intimidation has been filed against comedian Kapil Sharma by the entertainment news portal SpotboyE and its editor Vickey Lalwani after the comedian abused and threatened Lalwani.
Summary:
Stewart is the most capped Test wicketkeeper for England, playing 133 matches from 1990 to 2003.
Summary:
Shooter Manu Bhaker, who won 10m Air Pistol gold at the Commonwealth Games 2018 on Sunday, was born on February 18, 2002 in Goria village near Jhajjar, Haryana.
Summary:
Whistleblower Christopher Wylie who exposed Facebook's data-privacy scandal has said that some of the information improperly harvested from users might be stored in Russia.
Summary:
BSP supremo Mayawati on Sunday claimed the success of the Bharat Bandh protest against the alleged dilution of the SC/ST Act by the Supreme Court has left the BJP scared of Dalits.
"Authorities in the BJP-ruled states have started atrocities towards Dalits.
Summary:
Researchers studying data from NASA's Chandra X-ray Observatory have estimated that up to 10,000 black holes are present within 3 light-years of Sagittarius A*, a supermassive black hole at the centre of Milky Way galaxy.
Summary:
Adding that Nepal's friendship with India is most important, Oli said that Nepal is not a competitor to India.
Summary:
Archaeologists excavating a site in a UP village have found artifacts which reportedly bear a strong cultural resemblance to those found in places mentioned in the epic Mahabharata.
Summary:
A video showing a policeman dancing to Bollywood songs and throwing money at dancers in Uttar Pradesh recently went viral on social media.
Summary:
Discussing Kapil Sharma's abusive tweets and telephonic conversation with SpotboyE editor Vickey Lalwani, director Hansal Mehta tweeted, "Kapil's language with the journalist was despicable but also a sad reflection of his possible state of mind." Mehta added, "The journalist in question is no ethical saint either.
Summary:
Taking part in protests against the Centre over the delay in setting up of Cauvery Management Board, actor Rajinikanth said time is not ripe for IPL in Chennai.
Summary:
Katrina Kaif, Jacqueline Fernandez, Varun Dhawan and Bobby Deol were among the celebrities who were spotted visiting Salman Khan's house in Mumbai following the actor's return after spending two nights in Jodhpur Central Jail.
Summary:
A court in the Netherlands has awarded a one-year prison sentence to a Chinese man who was caught smuggling five rhino horns and four other horn objects worth around â¬500,000 (â¹4 crore) in his baggage.
Summary:
Windies' Kieron Pollard and Dwayne Bravo wore jerseys number 400 for their respective teams in the IPL opener on Saturday.
Summary:
The reports accused Facebook of failing to protect its users' data and not taking adequate measures.
Summary:
Although there were no reports of casualties, footage from the crash showed extensive damage to the historic seaside mansion.
Summary:
As many as 108 capsules were recovered from their stomachs, and they were charged with possession and smuggling of drugs.
Summary:
SpaceX and Tesla investor Steve Jurvetson is set to launch his own fund called Future Ventures, according to his Facebook post.
At Future Ventures, we will support those passionate founders," Jurvetson said.
Summary:
Two Tesla and SpaceX employees have launched a website called 'elonmask.co' which offers users to download full-sized masks of the startups' CEO Elon Musk.
Summary:
A woman tried to commit suicide outside Uttar Pradesh CM Yogi Adityanath's residence on Sunday, alleging that no action was taken despite complaining about being raped by a BJP MLA and his associates.
"I want all of them arrested.
Summary:
Summary:
He further said he wasn't sure if Nirav Modi was among the beneficiaries of the scheme.
Summary:
The RBI is looking to determine whether these CAs helped the entities cause deliberate defaults and later assisted them in restructuring the stressed assets.
Summary:
The government has changed its nominee on private sector lender ICICI Bank's board amid the ongoing Videocon loan row.
Summary:
The Syrian government has denied the allegations and called reports of a chemical attack a "fabrication".
Summary:
Guests at Aurora Station, the proposed world's first luxury space hotel, will witness 16 sunrises and 16 sunsets in 24 hours as the hotel will orbit the earth every 90 minutes.
Summary:
Saif Ali Khan faced arrest when he got into a fistfight with a businessman at a five-star hotel in 2012.
Summary:
Saudi Crown Prince Mohammed bin Salman recently met the CEOs of technology giants Google and Apple in the US to discuss digital development in Saudi Arabia.
Summary:
The Supreme Court on Saturday said wife is not a 'chattel' (a personal possession), or object, and a man cannot force her to live with him.
Summary:
All hospitals in the state will be required to follow the guidelines in order to obtain organs for transplant from the patient.
Summary:
A 57-year-old Chinese woman survived after a pair of scissors pierced through her skull while she was working on a farm.
Summary:
A seven-year-old boy found himself stuck in a three-foot-deep hole at a tourist attraction in England after he tried to recreate a picture taken when he was two years old.
Summary:
Billionaire investor George Soros has allowed his $26 billion family office to trade in cryptocurrencies, according to reports.
Summary:
Anushka Sharma will reportedly be honoured with the Dadasaheb Phalke Excellence Award for her contribution to films as a producer.
Summary:
Summary:
Chennai Super Kings batsman Dwayne Bravo got a reprieve in the 19th over as he jabbed down Jasprit Bumrah's slow yorker which rolled back onto the stumps but failed to dislodge the bails.
Summary:
Clarke said he had just made an offer to help Cricket Australia in "any way" including "mentoring the under 14s".
Summary:
The Brihanmumbai Municipal Corporation has informed the Bombay High Court that it won't provide any additional water to Mumbai's Wankhede Stadium for preparing cricket pitches for the next five years.
Summary:
Earlier, WhatsApp had admitted to sharing users' information with Facebook.
Summary:
The campaign has been planned to coincide with Mark Zuckerberg's appearance before the US Congress on April 11.
Summary:
Several countries, including India, were hacked to display an image of the US flag on screens, the Iranian IT ministry said on Saturday.
Summary:
Delhi Police and CRPF on Sunday detained Telugu Desam Party (TDP) MPs while they were on their way to protest near PM Modi's residence to demand special status for Andhra Pradesh.
Summary:
Online travel portal MakeMyTrip is reportedly planning to acquire an equity stake in hotel aggregator Oyo following the announcement of a partnership in February.
Summary:
Officials said that counselling is also insufficient as there is only one psychiatrist for 4,000-plus inmates as against a recommendation of one counsellor per 500 inmates.
Summary:
BJP MP Udit Raj has alleged that the Dalits who had taken part in the Bharat Bandh protests are being targeted and false cases are being filed against them.
Summary:
Meanwhile, the Air India aircraft was flown to Delhi without any passengers for repairs.
Summary:
The Ludhiana Assistant Police Commissioner has been accused of molesting and attacking a woman.
Summary:
Russian cyclist V Oleg, who was touring the country, was beaten up by a farmer and his neighbours in Telangana's Bhiknoor after being mistaken for a thief.
Summary:
At least one person was killed and six others were injured after a fire broke out at the Trump Tower in New York, US, on Saturday.
Summary:
Officials of Bank of India, Gaya, allegedly in connivance with four individuals deposited demonetised currency in the bank accounts of various persons without their knowledge.
Summary:
As per the guidelines, no cash van should move without armed guards.
Summary:
Weightlifter Punam Yadav bagged the gold medal in the women's 69 kg category on Sunday to take India's overall medal tally to seven at the Commonwealth Games 2018.
Summary:
India's 16-year-old shooter Manu Bhaker shot a total of 240.9 to set Commonwealth Games record and bag gold in the women's 10m Air Pistol at the Gold Coast Games on Sunday.
Summary:
CSK will next face KKR on April 10.
Summary:
The Ahmedabad-Puri Express with passengers on board travelled without an engine for 10 kilometres in Odisha on Saturday night.
Summary:
Some of the world's richest people are college dropouts, including Microsoft Co-founder Bill Gates who had dropped out of Harvard University and is now worth $90.3 billion.
Summary:
The Indian women's gymnastics trio of Aruna Budda Reddy, Pranati Nayak and Pranati Das were penalised 0.3 points each and India additionally received a penalty of 1.0 point in the team final at the 2018 Commonwealth Games.
Summary:
Shooter Ravi Kumar clinched a bronze medal on Sunday, taking India's medal tally at the 2018 Commonwealth Games to 10, which includes six golds and two silvers.
Summary:
A woman who forgot her passport at a hotel in Japanese city Kyoto and was supposed to catch a flight from Tokyo airport asked for help on Reddit.
Summary:
A man who allegedly committed several robberies was nabbed by US police after a woman said she had video surveillance of the suspect.
Summary:
India are currently on the fourth spot in the medal tally with 11 medals including eight in weightlifting and three in shooting.
Summary:
Mary Kom assured India of another medal on her debut at the Commonwealth Games after advancing to the semifinals of the women's 48 kg boxing event on Sunday.
Summary:
Lionel Messi scored a hat-trick as La Liga leaders Barcelona equalled the league record of 38 games unbeaten with 3-1 win over Leganes on Saturday.
Summary:
Manchester United scored three second-half goals to register a 3-2 comeback win on Saturday to deny Manchester City from winning Premier League title in record time.
Summary:
Talking about how encryption is important to protecting user data, Apple CEO Tim Cook in a recent interview said, "I would do business with no one that wasn't doing that." He also said that no one should be able to eavesdrop on users' messages and phone calls.
Summary:
he's gonna have a law on his hands," he said.
The Senator also said that he would support such a law.
Summary:
Andhra Pradesh CM Chandrababu Naidu has claimed that PM Narendra Modi had urged the TDP to join the NDA alliance during the 2014 elections.
Summary:
Patel is currently on a three-day visit to MP.
Summary:
They would reportedly help voters get poll-related information and report violations of the code of conduct.
Summary:
At a rally in Pakistan's Gujranwala, 26/11 Mumbai attack mastermind Hafiz Saeed's terror group Jamaat-ud-Daawa (JuD) said it has to work for the liberation of Kashmir and destruction of India.
Summary:
Justice Chelameswar, one of the Supreme Court judges who had spoken against CJI Dipak Misra, on Saturday said, "I do not know why the nation is obsessed with impeachment." He added that there have to be other mechanisms to deal with such problems.
Summary:
Speaking at the 60th anniversary of The Foreign Correspondentsâ Club of South Asia, Vice President Venkaiah Naidu said that the entire country cannot be described as intolerant based on some stray incidents of communal violence.
Summary:
West Bengal CM Mamata Banerjee has awarded â¹5 lakh compensation to the families of the two West Bengal-based workers who were abducted and killed by the ISIS in Iraq in 2014.
Summary:
It was hearing pleas against a lower court's decision acquitting people accused of beating a northeast student.
Summary:
While 3,328 buses booked for not having valid Pollution Under Control (PUC) certificates were registered in Uttar Pradesh, 643 buses were registered in Delhi.
Summary:
Indian Institutes of Technology (IITs) will be offering 779 additional seats exclusively for women this year, in a bid to improve the gender ratio in the B.Tech programme.
Summary:
The Madhya Pradesh Police has said that several organisations and individuals were provided funds to spread violence during the protests against the alleged dilution of the SC/ST act.
Summary:
In February, the Congress had filed a complaint with the EC alleging discrepancies in the list.
Summary:
A Meghalaya police constable was killed on Friday night after a Mercedes car driven by state Health Minister Alexander Hek's son Aibansharai Nongsiej rammed into a bike.
Summary:
Police officials said that the driver of the car had killed himself.
Summary:
'Family Time With Kapil Sharma' will not air any new episodes this weekend, as per a representative from the channel which owns the show.
Summary:
TV actor and producer Shekhar Suman has confirmed his Facebook account was hacked on Friday.
Summary:
Actor Salman Khan reached Mumbai after he was granted bail and gestured towards his fans gathered outside his house to go home and sleep.
Summary:
MS Dhoni, who is leading CSK in the IPL opener against MI today, is captaining a side for the first time since March last year.
Summary:
Fourteen more were injured, including three critically, in the accident involving a team playing at Canada's junior hockey level.
Summary:
In a letter to Rajya Sabha Chairman Venkaiah Naidu, Congress MP Jairam Ramesh has requested the government to organise a special parliamentary session in May or June.
Summary:
Former Telecom Minister A Raja has said the Tamil community will agitate and demand for "a separate state of Tamil Nadu" if the Centre does not form the Cauvery Management Board.
Summary:
SBI Chairman Rajnish Kumar has said this is not the right time for privatisation of public sector banks (PSBs), though some of them could be divested after being strengthened.
Summary:
After receiving a letter on the â¹2,654-crore fraud by Diamond Power Infrastructure, the PMO directed the Finance Ministry, CBI, and ED to ascertain facts.
Summary:
The Assam Assembly has passed three bills for increasing the monthly salary of the Chief Minister, Assembly Speaker, Deputy Speaker, ministers, and MLAs by 33-50%.
Summary:
Amid reports of China's land grabbing in Maldives, the US has said that China's influence in the island nation was a cause of concern for all nations, including India.
Summary:
Afghanistan has accepted Pakistan's offer to resume direct talks with the Taliban, Pakistan PM Shahid Abbasi said on Saturday.
Summary:
As many as 800 Venezuelans flee daily to neighbouring Brazil to escape the violence, hunger and lack of shelter in the country, the UN High Commissioner for Refugees said.
Summary:
ITC published advertisements saying: "Dear Tropicana and Real, come join us in making Indian juices concentrate-free".
Summary:
As per reports, a loss of â¹800 crore of business in film projects has been avoided following actor Salman Khan's bail in the 1998 blackbuck poaching case.
Summary:
The torso armour that actor Russell Crowe wore in the 2000 film 'Gladiator' has been sold 125,000 Australian dollars (over â¹62 lakh) at an auction in Sydney.
Summary:
The untitled project is said to be part of a three film deal that Karan has signed with YRF.
Summary:
The 34-year-old had revealed he would wear the jersey number 400 just for the opening game.
Summary:
Pakistan-born South African spinner Imran Tahir posted a tweet in Tamil ahead of the Indian Premier League 2018 opener on Saturday.
Summary:
World number one Rafael Nadal set a new Davis Cup record for the longest winning streak in the competition after winning his overall 23rd straight Davis Cup match while facing Germany's Philip Kohlschreiber.
Summary:
Earlier this week, Shahid Afridi tweeted about the "appalling and worrisome situation" in Kashmir, urging UN to take action.
Summary:
Mukerjea, who has been lodged in Byculla jail since 2015, was later shifted to the critical care unit and is still under observation, reports said.
Summary:
Union Minister for Home Kiren Rijiju on Saturday said the government's peace talks with northeast insurgent groups have reached their final stage.
Summary:
A Russia-bound aircraft with 345 passengers onboard made an emergency landing at Delhi's Indira Gandhi International Airport on Saturday after suffering an engine failure, an airport spokesperson said.
Summary:
Bayern have now won 28 German first division titles including 27 in the Bundesliga era.
Summary:
Sri Reddy said that her protest was over the film chamber's silence over incidents of casting couch.
Summary:
Ford sold his Quadricycle for $200 and used the money to build his second car.
Summary:
Singer Adnan Sami tweeted, "So happy for the bail of my dear brother Salman Khan.
Summary:
Salman Khan, who was granted bail on Saturday in the 1998 blackbuck poaching case, cannot leave the country without the Jodhpur Sessions Court's permission.
Summary:
Salman Khan has been released from Jodhpur Central Jail after spending two nights at the jail following his bail on Saturday.
Summary:
Kapil Sharma's ex-girlfriend Preeti Simoes said that she is certain his girlfriend Ginni Chatrath must have used his phone to post abusive tweets from his official account.
Summary:
Harbhajan Singh and Ambati Rayudu were bought by CSK in January after having played for only Mumbai Indians in the IPL.
Summary:
Delhi Daredevils, the only team among the eight to never reach the final, have the worst winning %age.
Summary:
India captain Virat Kohli has reiterated former skipper Sourav Ganguly's statement that the former will walk shirtless on London's Oxford Street if India win the 2019 World Cup.
There'll be a few candidates," Kohli said.
Summary:
Earlier, Dalit MP Chhote Lal Kharwar wrote to PM Modi, alleging mistreatment by CM Yogi Adityanath.
Summary:
The Bombay High Court has said that delay in reporting a rape case to the police does not mean that the victim is lying and added that victims fear being shamed by the society.
Summary:
In an attempt to curb constant honking in Mumbai, an NGO named 'Awaaz Foundation' has launched a campaign called 'HornVrat' in cooperation with the state's transport department and Mumbai Police.
Summary:
Japan has activated its first marine unit since World War II to counter invaders occupying the country's islands along the East China Sea. This comes after China, which also claims the group of islands, announced $175 billion for defence in its budget for 2018.
Summary:
Britain's sugar tax on soft drinks came into effect on Friday, a move aimed at reversing the trend of obesity among children.
Summary:
Pakistan's Geo News channel has claimed it has been taken off air in over 80% of the country on the orders of the military.
Summary:
Pakistan's PM Shahid Khaqan Abbasi, who underwent a security check at a US airport last month, said that the check did not reduce his respect as the Prime Minister but instead increased it.
Summary:
US Ambassador to the UN Nikki Haley has said that the US will never be friends with Russia.
Summary:
State-owned PNB has reported a 7.9% increase in its domestic business, crossing â¹10 trillion turnover for the first time ever in FY18.
Summary:
Summary:
Reacting to Salman Khan being granted bail on Saturday two days after being convicted, a user tweeted, "Salman has done cameos in Judwaa 2 and jail." "Salman's journey from Jail to Bail lasted longer than relationships these days," wrote another user.
Summary:
Shahid Kapoor has shared a video of himself on Instagram, where he is seen dancing to the song 'Dame Tu Cosita', while copying an animated green alien's steps that have gone viral on social media.
Summary:
Australian weightlifter Francois Etoundi did a backflip to celebrate after lifting 136kg in the snatch category of the men's 77kg event at the Commonwealth Games 2018 on Saturday.
Summary:
Indian batsman Cheteshwar Pujara has been nicknamed 'Steve' by his Yorkshire teammates as they find it difficult to pronounce his name.
It's a good nickname, but I prefer Cheteshwar," said the 30-year-old batsman.
Summary:
Amiss, born on April 7, 1943, scored the hundred off 130 balls in what was his debut match.
Summary:
SpaceX didn't show images of Earth captured by cameras on the Falcon 9 rocket which was launched recently as it didn't have a license.
Summary:
A Delhi man allegedly killed his friend and later chopped up his body into seven pieces as he suspected him of having an affair with his wife.
Summary:
The UK has opened a naval base in Bahrain, its first permanent military base in the Middle East in nearly 50 years.
Summary:
Actor Salman Khan will be released from Jodhpur Central Jail on Saturday after he was granted bail by a Jodhpur court in the 1998 blackbuck poaching case on a surety of â¹50,000.
Summary:
Weightlifter Ragala Venkat Rahul lifted 338kg in the men's 85kg event on Saturday to give India their second gold medal of the day at the Commonwealth Games 2018.
Summary:
Police on Saturday arrested a school teacher, a clerk, and a support staffer from Himachal Pradesh's Una district over the CBSE Class 12 Economics paper leak.
Summary:
A feature that allowed users to enter a person's phone number or email address into Facebook Search to help find them was abused, Facebook said.
Summary:
Summary:
Indian tennis player Leander Paes set the record for the most number of doubles wins in Davis Cup, also known as the 'World Cup of Tennis', registering his 43rd win in the doubles rubber of the Asia/Oceania Group I tie.
Summary:
Researchers have developed a device to transcribe words that a user verbalises internally but doesn't speak out aloud.
Summary:
Facebook has suspended Canadian firm AggregateIQ claiming it may be affiliated with Cambridge Analytica and improperly received its users' data.
Summary:
"We thought the data had been deleted and we should have checked," Sandberg said, adding that Cambridge Analytica had assured Facebook it was deleted.
Summary:
Facebook had earlier revealed that data on up to 5,62,455 users in India may have been shared with Cambridge Analytica.
Summary:
After Defence Ministry began the process for procuring around 110 fighter jets for the Indian Air Force at a cost of $15 billion, Congress President Rahul Gandhi tweeted, "Modi Scam Alert!" Rahul alleged that PM Narendra Modi "re-tendered" the Rafale deal to "favour friends".
Summary:
Scientists have harvested 3.6 kilograms of lab-grown salad greens, 18 cucumbers, and 70 radishes in Antarctica, without dirt, daylight, or pesticides, in two months, as per the team.
Summary:
During a joint press conference with Nepalese PM KP Oli on Saturday, PM Narendra Modi said, "We have agreed to work towards a new railway line to connect Kathmandu with India." "We aim at improving waterways and railways with Nepal.
Summary:
Goa on Friday issued an alert to all vessels and agencies operating off the state's coast after an intelligence input warned of a possible terrorist attack on the Indian western coast, state Ports Minister Jayesh Salgaonkar said.
Summary:
A Pakistani woman, Asma Nawab, facing a death sentence for killing her family in 1998, has been acquitted after 20 years in prison.
Summary:
US President Donald Trump on Friday slammed the World Trade Organisation (WTO) saying the international trade body was âÂÂunfairâ to the US.
Summary:
Three judges of the Nobel literature prize-awarding academy have resigned in protest over close ties between the institution and an artistic director accused of sexually assaulting several members and their wives and daughters.
Summary:
Denying the news of a look out circular against him, Videocon Group Chairman Venugopal Dhoot has said, "This is all your imagination." He said that his passport expired two months back and he hasn't gone out of the country for last five years.
Summary:
Kenzo allegedly used Levi's federally-protected tab on an array of garments, including those in a new clothing line featuring singer Britney Spears.
Summary:
The State Bank of Pakistan told banks and other financial services providers to refuse customers seeking crypto-currency transactions.
Summary:
The other three films of 2018 which earned over â¹100 crore are 'Padmaavat', 'Sonu Ke Titu Ki Sweety' and 'Baaghi 2'.
Summary:
Notably, Pitcairn narrowly failed to qualify for Manchester 2002.
Summary:
Summary:
In 2016, Smartivity had raised $1 million (around â¹6 crore) in pre-Series A funding.
Summary:
The park will have displays, demonstrations, slide shows, workshops, exhibition and street plays to explain the rules.
Summary:
The families also decorate temples with flowers free of cost on occasions like Ram Navami and Durga Puja.
Summary:
Mumbai-based e-commerce website Gadgets Guru's director Rajpal Singh has been arrested on charges of non-payment of service tax and GST.
Summary:
Families of Deputy Inspector General of the jail and the jailor met Salman with their children and also clicked selfies, reports added.
Summary:
Elon Musk has said, "If AI (artificial intelligence) has a goal and humanity just happens to be in the way, it will destroy humanity as a matter of course without even thinking about it." Musk added AI will never die and "you'd have an immortal dictator".
Summary:
Kapil Sharma has filed a complaint against his ex-manager and rumoured ex-girlfriend Preeti Simoes and her sister Neeti Simoes, accusing them of mental harassment.
Summary:
India's Smriti Mandhana struck a 109-ball 86 to help India chase England's 207 and win by a wicket and five balls to spare in the first ODI on Friday.
Summary:
Facebook has announced it'll label all political advertisements and the label will include information on who has paid for them.
Summary:
The competition is for privately-funded teams to land a robotic spacecraft on the Moon, travel 500 metres, and transmit data back to Earth.
Summary:
TRAI Chairman RS Sharma has said, "We will consider taking legal action" against Apple over the delay in taking steps to support the authority's Do-Not-Disturb app on App Store.
Summary:
Facebook has said it will introduce an 'unsend' feature for everyone which will let users delete sent messages from a receiver's inbox.
Summary:
BJP leader KS Naveen has lodged an FIR against Gujarat MLA Jignesh Mevani for allegedly inciting youth to disrupt PM Narendra Modi's rally in Karnataka.
Summary:
Indian authorities have issued a look out circular to all airports against ICICI Bank CEO Chanda Kochhar's husband Deepak Kochhar and Videocon Group Chairman Venugopal Dhoot.
Summary:
During his meeting with President Ram Nath Kovind, Nepalese PM KP Oli said, "Any treaty, any agreement, everything starts from friendship.
Summary:
Professor Panchanan Mohanty of the University of Hyderabad has discovered two new languages, namely 'Walmiki' and 'Malhar', spoken in Andhra Pradesh and Odisha.
Summary:
US President Donald Trump has signed a memorandum ordering the end of 'catch and release' policy in which illegal immigrants are released from detention while awaiting a court hearing on their status.
Summary:
Defending his proposed $100bn tariffs against Chinese goods, US President Donald Trump on Friday said in an interview, "WeâÂÂve already lost the trade war.
Summary:
Actor Chunky Panday, while talking about his daughter Ananya Panday, said, "She is a born actor." "She wouldn't have been born if she wasn't an actor," he jokingly added.
Summary:
Summary:
Chennai Super Kings' former player and current coach Stephen Fleming has said that the squad is nervous as they are set to return to the Indian Premier League after a two-year gap.
Summary:
India gave away a 2-0 lead to manage a 2-2 draw against Pakistan in their opening match of the men's hockey event at the Commonwealth Games 2018 in Australia on Saturday.
Summary:
Former New Zealand pacer and current Mumbai Indians' bowling coach Shane Bond has said that Indian pacer Jasprit Bumrah is the world's number one bowler in limited-overs cricket.
Summary:
Summary:
It can be incorporated directly into food packaging, to monitor contents and detect harmful pathogens like E coli and Salmonella.
Summary:
PM said MPs should work to implement schemes like Jan Dhan in those villages, Kumar added.
Summary:
Maharashtra government on Friday guaranteed the Tata Institute of Social Sciences (TISS) of fee exemption and financial support to Scheduled Tribe students.
Summary:
A traffic policeman in Haryana's Rohtak was slapped by a girl for allegedly harassing her while the two were riding in a shared auto.
Summary:
The Nepalese PM, who arrived on Friday with a 54-member delegation for a 3-day visit, also received a ceremonial welcome.
Summary:
A man in Uttar Pradesh was forced to carry his mother's oxygen cylinder on shoulders outside a hospital while waiting for an ambulance.
Summary:
Bihar government has reduced the fee for women candidates appearing for the examinations conducted by Bihar Public Service Commission and Bihar Staff Selection Commission by nearly 75%.
Summary:
Being the Unofficial Sponsor of Fansâ¢, Vodafone brings you the FANtastic Breaks Contest for all the fans whoâÂÂve stood by their teams through thick and thin.
Summary:
India won their third gold medal in as many days in weightlifting at the Commonwealth Games 2018 after Sathish Sivalingam came first in the men's 77kg category on Saturday.
Summary:
Kohli was picked as a catchment player by the Bengaluru-based club in 2008 and has always been retained since then.
Summary:
Named 'Aurora Station', the hotel will cost $9.5 million (over â¹61 crore) for a 12-day stay, inclusive of launching shuttle price.
Summary:
The civil war in Rwanda, during which an estimated eight lakh Rwandans were killed, erupted on April 7, 1994.
Summary:
Actresses Sonali Bendre and Tabu told Salman to shoot the blackbuck, alleged an eyewitness in the poaching case.
Summary:
Comedian Kapil Sharma posted a series of tweets abusing the media and his latest tweet read, "My Twitter wasn't hacked," which was later deleted.
Summary:
Vickey Lalwani, the editor of entertainment website SpotboyE, has shared an audio tape of a conversation that he has claimed took place between him and Kapil Sharma.
Summary:
Ex-Australian wicketkeeper-batsman Adam Gilchrist slammed the fastest hundred of the inaugural IPL season off 42 balls.
Summary:
An average of 0.5% starred questions were answered per session, with only 17 of the 580 starred questions being answered.
Summary:
The Defence Ministry has begun the process for procuring around 110 fighter jets for the Indian Air Force at an approximate cost of â¹97,000 crore, dubbed as the world's largest fighter aircraft deal.
Summary:
Carrying more than one liquor bottle to Uttar Pradesh from other states has been made a non-bailable offence attracting a five-year jail term.
Summary:
A sperm donation bank in China has asked potential donors to swear loyalty to the Communist Party.
Summary:
The US on Friday imposed sanctions against 24 Russian oligarchs and officials, including President Vladimir Putin's former son-in-law Kirill Shamalov.
Summary:
Former Russian spy Sergei Skripal, who was poisoned with a nerve agent in the UK, is no longer in critical condition and is responding well to the treatment, the hospital treating him in UK's Salisbury has said.
Summary:
Noting that the current international situation was full of uncertainties, Wang added that as strategic partners, China and Russia needed to strengthen their cooperation.
Summary:
Japanese crypto exchange Coincheck, which lost about $530 million after suffering the world's largest cryptocurrency hack ever, was acquired by online brokerage firm Monex Group for about $34 million.
Summary:
Actor Raj Kishore, who played the role of a prisoner in 'Sholay', passed away on Friday at the age of 85.
Summary:
Summary:
Actress Preity Zinta was the first celebrity to visit actor Salman Khan in the jail in Jodhpur after his conviction in the blackbuck poaching case.
Summary:
'Captain America' actor Chris Evans has said that Chadwick Boseman should win a Best Actor Oscar for his portrayal as the titular character in 'Black Panther'.
Talking about working with Chadwick in 'Avengers: Infinity War', Chris added, "It was great working with Chadwick.
Summary:
Actor Ishaan Khatter, while speaking about nepotism in the film industry, said his history is different from the general perception while adding, "I'm proud of my middle-class background." "My house is rich in culture, cinema, and the performing arts.
Summary:
Sehwag, who played an instrumental role in appointing Ravichandran Ashwin as Kings XI Punjab captain, added he is "great fan" of a "bowling captain".
Summary:
Nilesh Kandurkar, a 20-year-old Kolhapur wrestler, died on Friday after breaking his neck in a bout.
Summary:
Walmart has already offered a proposal to buy the stake for $10-12 billion, reports added.
Summary:
BJP workers attending a Mumbai rally on the party's foundation day on Friday staged a protest after noticing that posters of party's late leaders Pramod Mahajan and Gopinath Munde were not displayed at the venue.
Summary:
The Finance Ministry on Friday clarified that a 5% GST will be levied on food and drinks supplied by the Indian Railways or IRCTC in trains, platforms or stations.
Summary:
With 36.2 lakh registered vehicles, the number of vehicles in Pune has surpassed the estimated 35 lakh population of the city, the city's RTO chief has said.
Summary:
National Informatics Centre, which hosts several government websites including Defence and Home, on Friday said the Defence Ministry website was not hacked.
Summary:
Further, the website of Ministry of Labour and Employment was also unavailable shortly after the hacking incident.
Summary:
While describing his previous jail terms in a 2008 interview, Salman Khan had said, "I was chilling.
Salman had further said, "You get this one mug [to eat food from].
Summary:
Indian Premier League's most capped player, Suresh Raina, is the highest run-getter in the league, with 4,540 runs in 161 matches.
Summary:
Speaking about the Opposition's efforts to create a united front against BJP, party chief Amit Shah said, "Whenever there is a massive flood, all snakes, mongooses, cats...
Summary:
Only five ichthyosaur specimens from Britain have ever been found with embryos, and none with this many, as per researchers.
Summary:
The Delhi High Court has sought a response from former President Pranab Mukherjee over a petition, which claims that references to the Babri Masjid demolition in his book 'The Turbulent Years: 1980-1996', hurt Hindu sentiments.
Summary:
Finance Minister Arun Jaitley has been admitted to AIIMS Delhi and will undergo a kidney transplant surgery on Saturday, reports said.
Summary:
The CBI is questioning former RBI Deputy Governor Harun Rashid Khan in connection with $2.1-billion PNB fraud linked to jewellers Nirav Modi and Mehul Choksi.
Summary:
The US has approved a $1.3-billion artillery sale to Saudi Arabia, including 180 Paladin howitzer systems and artillery-firing vehicles.
Summary:
Amid the ongoing tensions between the US and China over the imposition of tariffs on each other's imports, the Chinese Commerce Ministry has said that it is ready to pay any cost in a possible trade war with the US.
Summary:
Afghanistan on Thursday accused Pakistan of carrying out cross-border air strikes that caused damage in its Kunar province.
Summary:
During the national anthem before a Major League Baseball match, a bald eagle landed on the right shoulder of Seattle Mariners' pitcher James Paxton.
Summary:
In the new Income Tax Return forms, the salaried taxpayers have to provide more details about their salary break-up and income from property.
Summary:
Kartik Aaryan, who recently walked the ramp with Kareena Kapoor Khan at Manish Malhotra's show in Singapore, said that hopefully in future, he will get to work with Kareena.
Summary:
Rapper-music producer Jay Z has revealed that he cried with relief when his mother Gloria Carter told him she is a lesbian.
"I was so happy for her that she was free," said Jay Z.
Summary:
As per reports, Tamannaah Bhatia will perform at the opening ceremony of the upcoming edition of the Indian Premier League (IPL).
Summary:
I'm philosophical, too, but I prefer to listen," said Ishaan.
He further said, "I felt great satisfaction...as it's my brother from whom I've learnt so much, and (doing good films) is like giving back."
Summary:
The second film in the franchise 'Johnny English Reborn' had released in 2011.
Summary:
Actor Russell Crowe is set to sell 227 items that he owns as part of an auction 'Russell Crowe: The Art of Divorce'.
Summary:
Speaking about his break from cricket, Indian captain Virat Kohli said that it felt weird not looking at his kit bag and cricket equipment during his three-week break.
Summary:
Female medics who rushed to perform first aid to a man who suffered brain hemorrhage in a sumo ring in Japan were told by the referee to "get out" of the ring.
Summary:
Several political parties in Tamil Nadu have urged people to boycott IPL matches in Chennai in protest against the Centre failing to meet deadline for creating the Cauvery Management Board.
Summary:
Russia has filed a lawsuit to block the Telegram messaging app in the country as the platform refused to give access to its users' encrypted messages.
Summary:
Home Minister Rajnath Singh on Friday said politicians in the country are facing a credibility crisis, adding that people believe that there is a vast difference between the "words and deeds" of politicians.
Summary:
The Delhi government has announced plans to grade around 5,600 government and private schools in an initiative to help parents choose the school for their kids based on reliable information.
Summary:
Acknowledging the issue with the website, the Defence Ministry tweeted that "appropriate action" has been initiated.
Summary:
The owner of the bag, a 65-year-old Indian woman travelling from Bombay, was questioned by the police, when she revealed that it meant "Bombay to Brisbane".
Summary:
The first trailer of the third season of American television series 'Quantico', starring actress Priyanka Chopra, has been released.
Summary:
Indian women's cricket team captain Mithali Raj has become the most capped player in women's ODI cricket after turning out for the 192nd time against England on Friday.
Summary:
India have not played a single day-night Test match yet.
Summary:
Facebook's share had sunk 16%, wiping over $80 billion from its market value since the data scandal was reported.
Summary:
Senior Congress leader Mallikarjun Kharge on Friday said that the motion for the impeachment of Chief Justice Dipak Misra is still being discussed by the Opposition and that his previous statement was misinterpreted.
Summary:
The workers later cut power supply to a police camp at the construction facility and stopped work on the project.
Summary:
Russia-UK ties have deteriorated over the issue.
Summary:
Summary:
The makers of the upcoming film 'October' released the making video of Banita Sandhu's character Shiuli.
Summary:
According to reports, actor Ranbir Kapoor will be having a cameo in Madhuri Dixit's upcoming Marathi debut film 'Bucket List'.
Summary:
Singer Alka Yagnik, who sung the original version of 'Ek Do Teen Char', has said the remake version starring Jacqueline Fernandez "wasn't required".
Summary:
MMA fighter Conor McGregor smashed his UFC rival's bus with a metal trolley before voluntarily walking into a police station.
Summary:
Weightlifter Sanjita Chanu, who won India's second gold medal at the Commonwealth Games 2018 on Friday, said that she is sad for not breaking the CWG record after failing to lift 112kg in her last attempt.
Summary:
Speaking about pacer Jasprit Bumrah, Mumbai Indians' coach Mahela Jayawardene said that the Indian pacer does not understand what pressure is and is happy to have him in the team.
Summary:
A Samsung spokesperson said that the company was aware that the prosecutors had secured labour-related documents.
Summary:
Microblogging site Twitter has revealed that it has suspended over 12 lakh accounts over terrorist content since August 2015.
Summary:
The Congress on Friday submitted a breach of privilege motion against Union Minister for Parliamentary Affairs Ananth Kumar for misleading the Lower House over the disruptions by naming leaders Sonia Gandhi and Rahul Gandhi.
Summary:
The letter suggested, "14 November can be attributed as "UNCLE DAY" or "CHACHA DIWAS".
Summary:
PM Narendra Modi has announced all BJP MPs will observe a fast on April 12 to protest against the frequent disruptions in the Parliament.
Summary:
TDP MPs on Friday staged a 'dharna' inside Lok Sabha Speaker Sumitra Mahajan's chambers when she wasn't present there to press for special category status to Andhra Pradesh.
Summary:
Scientists have suggested mimicking big volcanic eruptions that could mask the sun with a veil of ash, cooling the Earth.
Summary:
The police found the man hiding at his brother-in-law's house and he took them to the spot where he dumped the boy's body.
Summary:
Xia Boyu, a Chinese climber, will become the first double amputee to be given a permit to climb Mt Everest after Nepal's top court overruled a government ban on blind and double amputee climbers.
Summary:
Talking about the Indian government deeming cryptocurrencies as not legal tender, American billionaire investor Tim Draper said, "This is the stupidest thing".
Summary:
Mark Karpeles, former CEO of failed Japan-based Bitcoin exchange Mt. Gox, has said he lost 35 kg in four months in jail as "lunch was actually two breads with jam".
Summary:
Singh reportedly befriended the boy at the hotel's beach and forced the boy into a sexual act.
Summary:
Zuckerberg was the youngest self-made billionaire on Forbes Billionaires list when he debuted in 2008 at the age of 23.
Summary:
World's second richest person Bill Gates took five years to gain billionaire status after becoming millionaire.
Summary:
Summary:
The New Indian Express called it "a thriller with plot-holes galore" while Firstpost wrote that the film is "missing a semblance of logic".
Summary:
American comedian Kathy Griffin, who landed in a controversy for sharing a photo of herself holding a fake decapitated head resembling US President Donald Trump, said people had started disliking her.
Summary:
Weighing in on Bollywood actor Salman Khan's five-year jail sentence in the blackbuck poaching case, former Pakistani pacer Shoaib Akhtar sympathised with the actor and said that the punishment handed out to him is too harsh.
Summary:
While users can delete messages from their own inboxes and they remain visible in the recipient's thread, Facebook limited the retention period for Zuckerberg's messages.
Summary:
Social media major Facebook has confirmed that it scans users' messages, photos and the links they send on Messenger in order to regulate the content which violates its standards.
Summary:
To protest against the Centre's refusal to assign special category status to Andhra Pradesh, five Lok Sabha MPs of YSR Congress submitted their resignation to Speaker Sumitra Mahajan on Friday.
Summary:
Freecharge Founder Kunal Shah is looking to raise $30 million (around â¹200 crore) in funding for his new startup, as per reports.
Summary:
Researchers have found an iron-containing mineral, present in meteorites, retaining a record of a magnetic field from around 4.6 billion years ago.
Summary:
A woman was molested by a man onboard a local train in Mumbai on Thursday night.
Summary:
Yoga guru-turned-businessman Ramdev has said, "People work for their family.
Summary:
The Bihar government has allocated over â¹2 lakh for the repair and restoration of the Gudri mosque and the Jiaul-Ulum Madrassa that were damaged in the recent communal riots.
Summary:
India will continue negotiations with Russia to acquire a missile defence system at a cost of over â¹30,000 crore despite the sanctions imposed by the US on defence trade with Russia.
Summary:
Ambala' project in a bid to clean the city, after it ranked 308 out of 500 in the Swachh Survekshan 2017 survey.
Summary:
US President Donald Trump on Thursday proposed $100 billion in additional tariffs on China in light of the countryâÂÂs "unfair retaliationâ against earlier US tariffs.
Summary:
Billionaire Anil Ambani-led Reliance Communications (RCom) on Thursday said that Supreme Court lifted a Bombay High Court stay on sale of some of its assets.
Summary:
The RBI is delaying year-end bonuses to the heads of top private sector banks, which includes ICICI Bank CEO Chanda Kochhar, Axis Bank's Shikha Sharma and HDFC Bank's Aditya Puri, according to reports.
Summary:
Louis Vuitton maker LVMH's Chairman and CEO Bernard Arnault has overtaken Zara Founder Amancio Ortega to become the world's fourth richest person, according to Bloomberg.
Summary:
The film will also feature actor Anupam Kher as former Prime Minister Manmohan Singh.
Summary:
The Indian women's hockey team beat their Malaysian counterparts 4-1 in their second match at the Commonwealth Games 2018 in Australia on Friday.
Summary:
TDP MP Naramalli Sivaprasad on Friday dressed up as Sage Vishvamitra and went to the Parliament to press for the party's demand for special category status for Andhra Pradesh.
Summary:
This comes a month after the startup raised $1 million (over â¹6.5 crore) from franchise and retail services provider Franchise India Holding.
Summary:
The rally started after the CM honoured TDP Founder NT Rama Rao's statue with a garland.
Summary:
The police on Friday recovered the headless body of a youth who was allegedly abducted by militants earlier this week in Jammu and Kashmir.
The youth was abducted along with his father on Wednesday.
Summary:
Actor Salman Khan will be spending another night in Jodhpur Central Jail, as the court has reserved the order on his bail plea in the 1998 blackbuck poaching case till tomorrow.
Summary:
India's youngest weightlifter at the 2018 Commonwealth Games, 18-year-old Deepak Lather won India a bronze medal in the 69-kg men's category at Gold Coast on Friday.
Summary:
Former South Korean President Park Geun-hye was sentenced to 24 years in prison and slapped with a $17 million fine after being convicted of corruption in a trial broadcast live on Friday.
Summary:
After actor Salman Khan's conviction in Blackbuck Poaching case, Jodhpur DIG (Jail) Vikram Singh said that no special treatment is being given to him and he will be served dal-roti like others.
Summary:
The Times of India (TOI) wrote that the plot of the film is its hero.
It has been rated 4/5 (Bollywood Hungama, TOI) and 3/5 (HT).
Summary:
Former Pakistani cricketer and coach Waqar Younis has stated that the Pakistani cricket team is the number one ranked T20I side as the Pakistani players do not play in the Indian Premier League.
Summary:
The plane had crashed during a test flight, killing one of its pilots.
Summary:
Reports have revealed that Facebook asked several US hospitals to share anonymised data about their patients including their illnesses and prescription information for a proposed research project.
Summary:
The Congress-led Opposition won't move an impeachment motion against Chief Justice of India Dipak Misra, as per reports.
"That issue is closed now," Congress leader Mallikarjun Kharge reportedly said in an interview.
Summary:
The RBI has directed all payment system operators in India to store data within the country to ensure the security of users' information.
"Ensuring the safety and security of payment systems data...
Summary:
The External Affairs Ministry on Thursday informed the Rajya Sabha that a request has been submitted to Hong Kong authorities for provisional arrest of PNB scam-accused Nirav Modi.
Summary:
A letter sent to Punjab and Haryana High Court claims that Haryana CID Chief Anil Rao and DSP Ajit Singh took bribes to help mobilise Dera assets and weapons to a safe place.
Summary:
As many as 56 new airports will start functioning in the next few years to improve the connectivity in India, Union Minister Suresh Prabhu said on Thursday.
Summary:
Stating that consumers want him to launch Patanjali jeans, yoga guru Baba Ramdev has announced that the brand will launch its own garments line next year.
Summary:
The Human Resource Development Ministry has clarified that IIMs are free to choose if they want to grant a diploma or degree to their students.
Summary:
The man had entered the bank and threatened to blow it up if he wasn't given â¹5 lakh.
Summary:
Summary:
Women aged over 18 will be able to volunteer for national service under the law.
Summary:
Cohen had admitted to making payment to the pornstar from his own pocket.
Summary:
Summary:
The official teaser of John Abraham starrer 'Parmanu: The Story of Pokhran' has been released.
Summary:
Ex-Pakistan captain Shahid Afridi has claimed he would never join IPL even if he's invited to play, saying he was never interested in the league.
Summary:
Reacting to the criticism faced by the Australian cricket team over the recent ball-tampering scandal, former Australian captain Ricky Ponting said that the criticism of Australia's team culture "has probably been blown out of proportion".
Summary:
A Brazilian judge has ordered Facebook to pay $33.4 million for failing to cooperate with a corruption investigation.
Summary:
Uttar Pradesh Deputy CM Keshav Maurya has claimed Samajwadi Party, BSP and Congress were responsible for the violence during protests by Dalit oraganisations against the Supreme Court's ruling on the SC/ST Act. Maurya alleged anti-social elements joined the stir and turned the protest violent.
Summary:
The party alleged that TMC workers were assaulting BJP candidates to prevent them from filing their nominations.
Summary:
Founded in 2012, Instacart is an app-based startup that allows customers to order groceries and get them delivered.
Summary:
The coin toss in the Pakistan-Zimbabwe Test at Harare on January 31, 1995, was done twice as Pakistan captain Saleem Malik called 'bird' instead of heads or tails.
Summary:
Afridi, after the match, claimed that he was just trying to smell the ball.
Summary:
Summary:
Summary:
BJP has compared PM Narendra Modi to Batman after extradition of AgustaWestland scam accused Deepak Talwar and Rajeev Saxena from Dubai.
This time it's PM Narendra Modi," the party tweeted.
Summary:
Tesla CEO Elon Musk announced that CFO Deepak Ahuja would be retiring but would stay as a senior advisor for "probably years to come".
Summary:
Harender lied to Goel he was kidnapped, robbed and dumped on road by four men.
Summary:
Kochhar exercised shares worth â¹134 crore (as of Wednesday's closing) since April 2009.
Summary:
Actress Yami Gautam nearly tripped during her ramp walk at the Lakmé Fashion Week Summer/ Resort 2019.
Summary:
The Malaysian King is elected on a rotational basis from the sultans of the country's nine states for a five-year term.
Summary:
Actor and Bigg Boss contestant Karanvir Bohra took to Twitter to thank External Affairs Minister Sushma Swaraj for helping him get a temporary passport to gain entry into Russia, after he was detained in Moscow due to passport damage.
Summary:
US Immigration and Customs Enforcement has arrested eight persons, all of whom are either Indian nationals or Indian-Americans, on charges of fraudulently facilitating hundreds of immigrants to illegally remain in the US as students.
Summary:
Summary:
The polar vortex is a large area of low pressure and cold air surrounding both of the EarthâÂÂs poles.
Summary:
They also blocked a road by cutting trees and placing branches on the way, the official further said.
Summary:
India's unemployment rate rose to a 45-year high of 6.1% during 2017-2018, the Business Standard reported quoting an unreleased government survey.
Summary:
After being convicted in a theft case, a 22-year-old man hurled a pair of slippers at a magistrate in a court in Maharashtra's Thane in a fit of rage, a police official said Wednesday.
Summary:
A Hindu temple has been vandalised in Kentucky, US, in what authorities called a hate crime.
Summary:
The report added the camera will be used to enhance AR on the iPhone.nnn
Summary:
The feature has been in testing phase since the release of 'Chrome Canary 70' browser.
Summary:
Highlighting steps taken for women during a joint session of Parliament on Thursday, President Ram Nath Kovind said, "Our Muslim daughters were living under constant fear.
Summary:
Summary:
The Supreme Court has dismissed a petition against the appointment of former CBI Special Director Rakesh Asthana as Director General of Bureau of Civil Aviation Security when an FIR is still pending against him.
Everything cannot be rolled in under one sky into a petition."
Summary:
Goa CM Manohar Parrikar on Thursday skipped the morning proceedings of the ongoing budget session of the state Assembly.
While presenting the state budget in the House on Wednesday, Parrikar said, "I'm presenting the budget in josh.
Summary:
Producer Ekta Kapoor has confirmed she has become a mother to a baby boy via surrogacy.
The 43-year-old revealed that the baby has been named Ravie.
Summary:
Nadal and Xisca, who have been dating since 2005, reportedly got engaged during a trip to Rome in May last year.
Summary:
OnePlus India on Wednesday took to social media platforms to pose a question to Apple's voice-controlled personal assistant Siri after OnePlus emerged as the No.1 premium smartphone brand in India for Q4 2018 in research by Counterpoint.
Summary:
Two durian fruits have sold for over â¹70,000 each at a supermarket in Indonesia.
Summary:
Indian equity benchmark Sensex recorded its best single-day gains of 2019 a day ahead of Interim Budget, rising 1.87% or 665 points to 36,257 on Thursday.
Summary:
After the meeting, Rawat said, "I had come here to enquire about the health of Parrikar.
Summary:
A video showing Haryana CM Manohar Lal Khattar delivering a speech in Tamil during Pongal celebration in the state has gone viral on social media.
Summary:
The hackers wrote "Hindu Mahasabha Murdabad" on the site.
Summary:
Speaking about teaming up with Salman Khan to work in the third instalment of the 'Dabangg' film franchise, Sonakshi Sinha said, "It feels like I'm back home because that's where I started my career." "My life changed completely after that film, it's how I found my calling," she added.
Summary:
The FBI has arrested Apple employee Jizhong Chen for allegedly stealing secrets from its self-driving car unit and trying to sell it to a Chinese competitor.
Summary:
Referring to a report claiming an unreleased government survey found India's unemployment reached a 45-year high of 6.1% in 2017-2018, Congress President Rahul Gandhi tweeted, "NoMo Jobs...Time for NoMo2Go." Rahul added, "The Fuhrer (a term associated with dictator Adolf Hitler) promised us 2 Cr jobs a year.
Summary:
The report said Zomato and Delivery Hero account for 35-40% of UAE's market share and the deal would give Delivery Hero "significant market leadership" on completion.
Summary:
The Kerala government on Thursday allotted â¹100 crore for the Travancore Devaswom Board (TDB), which manages the Sabarimala temple, in the 2019-20 budget.
Summary:
Pakistan had barred Bibi from travelling abroad following a deal with the Islamists who had opposed her acquittal and demanded her execution.
Summary:
Saudi Arabia has announced an end to its crackdown on corruption, launched in 2017, that saw more than 200 princes, ministers and businessmen being detained.
Summary:
This comes after reports suggested J&J knew that asbestos was present in its product, leading to tests in several countries including India.
Summary:
Dewan Housing Finance (DHFL) shares on Thursday fell 16% after reports said the government has launched a probe into the company's alleged fund diversion.
Summary:
The polar vortex is a large area of low pressure and cold air surrounding both of the EarthâÂÂs poles.
Summary:
Criticising Kangana Ranaut for taking first credit for 'Manikarnika: The Queen of Jhansi', co-director Krish said, "Please realise your lies are making things worse." He posted screenshots of WhatsApp chats with technicians and other members stating that 85% of the film was shot by him.
Summary:
White House Press Secretary Sarah Sanders has said God "wanted Donald Trump to become (US) President", adding that "God calls all of us to fill different roles at different times".
Summary:
MIT researchers have developed a robot arm that can play the 'Jenga' game by combining the abilities of both sight and touch.
Summary:
Tesla CEO Elon Musk has said he wants to add a feature that enables Tesla cars to automatically call a tow truck as soon as they detect issues like a flat tire.
Summary:
Dubai-based businessman Rajiv Saxena, a key accused in the â¹3,600 crore AgustaWestland VVIP chopper scam, on Thursday has been remanded to four-day Enforcement Directorate (ED) custody.
Summary:
India's largest lender SBI's Managing Director (MD) Anshula Kant has said the first thing company founders tell when they come to the bank is, "Madam, please don't send us to NCLT".
Summary:
The Delhi Metro Rail Corporation has announced that the first coach in the moving direction of all trains, except in Red Line, will be reserved for women from January 1.
Summary:
After DMK chief MK Stalin proposed that Congress chief Rahul Gandhi be projected as 2019 PM candidate, Samajwadi Party chief Akhilesh Yadav said it is not necessarily the opinion of all alliance partners.
Summary:
Ex-Australia captain Ricky Ponting has said umpire Chris Gaffaney didn't need to involve in the banter between India captain Virat Kohli and Australia captain Tim Paine in the second Test at Perth.
Summary:
The eight IPL franchises spent â¹106.8 crore to buy 60 players in the 2019 IPL auction in Jaipur on Tuesday.
Summary:
Tamil Nadu spinner Varun Chakravarthy, who was bought for â¹8.4 crore by Kings XI Punjab in the IPL 2019 auction, said that he thought someone would buy him for just his base price of â¹20 lakh.
Summary:
After buying Yuvraj Singh for his base price of â¹1 crore at the IPL 2019 auction, Mumbai Indians owner Akash Ambani said, "To be honest...we had budgeted a lot more for Yuvraj and Malinga." He added, "At â¹1 crore, a player like Yuvraj is probably the (biggest) steal of 12...years.
Summary:
Bengal captain Manoj Tiwary, who went unsold at the IPL 2019 auction, took to Twitter to share a graphic of his statistics from IPL 2017 and picture of his trophies.
Summary:
CARS24 has enabled car owners to sell their cars in less than 2 hours with instant payment in their account.
Summary:
Indian cricketer Gautam Gambhir gave his Man of the Match award to Virat Kohli in an ODI against Sri Lanka in 2009, when Kohli scored his maiden ODI hundred.
Summary:
Ambrose ended with first-innings figures of 18-9-25-7.
Summary:
Suzuki Connect helps you connect to your car by providing a wealth of features and information that enhance your on-road experience.
Summary:
At the time, an over constituted of eight balls and Bradman hit 33, 40, and 27 runs respectively in three consecutive overs.
Summary:
A man from Mumbai has claimed that he was issued a challan for offering a lift to three people on his way to office recently.
Summary:
The paw prints of a pet dog helped a US family find their 2-year-old son who went missing for several hours earlier this week.
Summary:
The research firm carried out an algorithmic analysis of text from 28 quarters' worth of earnings calls dating back to 2011.
Summary:
The world's smallest computer created by the University of Michigan researchers has been designed as a temperature sensor that can measure changes in extremely small regions and even body cells.
Summary:
Summary:
The event, expected to last nearly four hours, will also feature a visible 'Blood Moon', where the Moon appears red because of sunlight scattering through Earth's atmosphere.
Summary:
The Delhi Police on Sunday arrested an Indian Army Major for the alleged murder of another Major's wife.
Summary:
Doctors at Delhi's Ganga Ram Hospital wrongly declared a 60-year-old man dead, who was later found alive by the family members while being taken for his last rites in an ambulance.
Summary:
A video of a Chinese woman losing control of a Ferrari 458 and crashing it minutes after renting the sports car has gone viral.
The video shows the Ferrari's bonnet damaged severely, and one of its front wheels dislodged.
Summary:
A Walmart customer's tweet admitting that his "favorite thing to do" in their stores was to steal has gone viral.
Summary:
"I have already benefited enough from this company so I am not taking compensation," Nilekani added.
Summary:
Wipro CEO Abidali Neemuchwala's compensation increased about 34% to â¹18.2 crore in the last fiscal while Rajesh Gopinath, the CEO of India's largest company TCS, earned â¹12 crore.
Summary:
Actor Ranbir Kapoor has said that he enjoys playing the "underdog" and not the "superhero or the tough guy".
or a Rockstar." He further said, "My character in Besharam was an alpha male and I don't have the confidence as an actor to play that."
Summary:
She added, "Initially I said no, now I am thinking.
Summary:
Midfielder Toni Kroos scored with a curling free-kick in the 95th minute to help Germany defeat Sweden 2-1 to stay alive in the 2018 FIFA World Cup. The defending champions needed a win to not be dependent on other teams to progress to the second round.
Summary:
Brazilian football team head coach Tite tumbled to the ground while celebrating midfielder Coutinho's 91st-minute goal against Costa Rica in the 2018 FIFA World Cup on Friday.
Summary:
A Moscow confectionery built a life-size chocolate sculpture of Argentina football team captain Lionel Messi to mark his 31st birthday.
Summary:
India will next face 14-time champions Australia on Wednesday.
Summary:
Facebook is working on a feature called 'Your Time on Facebook' which will track how much time users spend on an average on the app.
Summary:
The notice further said the toilet would be fixed as soon as the ban is lifted.
Summary:
Bengaluru-based real-estate startup NoBroker has recorded a 465.7% rise in revenue at â¹6.28 crore for the financial year 2017, compared to â¹1.11 crore in the previous fiscal, according to filings.
Summary:
District Collector Karamveer Sharma received PM Narendra Modi in Madhya Pradesh wearing a black suit while people attending the latter's rally were made to remove black clothing.
Summary:
IAS officers holding the posts of Secretary and Additional Secretary will be appraised on the basis of their attitude towards the economically weaker sections among other criteria, draft forms released by the Centre have revealed.
Summary:
The victim's brother had married a Dalit girl against her family's wishes.
Summary:
The bodies of four students enrolled at a private engineering college in Andhra Pradesh's Kanchikacharla were recovered from the Krishna river on Sunday.
Summary:
A threshold mark has to be obtained by a soldier in the psychology test in order to join, officials said.
Summary:
ICICI Bank has said that it has investigated 31 loan accounts involving â¹6,082 crore following a whistleblower complaint and found no irregularities.
Summary:
Independent candidate Mohammad Hussain Shaikh contesting the National Assembly and Punjab province elections in Pakistan has declared around â¹22,500 crore in assets, Pakistani media reported.
Summary:
Pakistani actor-singer Ali Zafar filed a defamation case claiming damages of over â¹55 crore against singer-actress Meesha Shafi, who accused him of sexual harassment on social media.
Zafar claimed Shafi caused "tremendous injury" to his "reputation...
Summary:
The body of Dinu Alex, a 30-year-old football fan, was retrieved from a river in Kerala, two days after he left his house over Argentina's defeat to Croatia in World Cup. He had left behind a suicide note, saying his favourite team had let him down.
Summary:
Punjab-born off-spinner Simranjit 'Simi' Singh is in Ireland's 14-member squad for two T20Is against India on June 27 and 29.
Summary:
A new study by Future of Humanity Institute's scholars at the Oxford University claims that humanity is the only advanced civilisation in the observable universe.
Summary:
A man in Gwalior has been arrested for allegedly luring a girl with an ice cream and then raping and killing her.
Summary:
According to the resolution, girls from Godikan will not be married off in houses without a toilet.
Summary:
Confirming the death of its leader Mullah Fazlullah in a US air strike, the Pakistani Taliban named Mufti Noor Wali Mehsud as the new chief on Saturday.
Summary:
Messi, who was suffering from growth hormone deficiency at the time, was signed by Barcelona's Technical Secretary Carles Rexach despite opposition from some officials.
Summary:
DMK workers in Tamil Nadu have been holding black flag protests against Governor Banwarilal Purohit for "holding review meetings in every district like a Chief Minister".
Summary:
"[T]he talk about a prime ministerial candidate should be secondary because there is danger facing the country.
Summary:
BJP leader Biswajit Pal was shot dead by unknown men around midnight on Saturday, 200 metres from his home in Tripura's Agartala.
Summary:
The Commission had issued a notice to JNU, stating the course would "create wrong notions about Muslims" and "deteriorate" the communal atmosphere.
Summary:
PM Narendra Modi on Sunday inaugurated an 11-km-long elevated section of Delhi Metro's Green Line that will link the capital to Bahadurgarh, which is also known as 'Gateway to Haryana'.
Summary:
A daily worker who recently built his thatched house with his savings in an Odisha village found it infested with over 100 baby cobras on Friday.
Summary:
An IndiGo flight headed towards Bengaluru made an emergency landing at the Netaji Subhas Chandra Bose International Airport in Kolkata on Sunday after the pilot discovered cracks in the windshield.
Summary:
A 12-year-old boy had to ferry his grandmother to a community health centre in a cart in UP's Basti district as no ambulance was available.
Summary:
A police team managed to convince her family to call off the wedding.
Summary:
"Water not reaching the fields might be one of the reasons behind the suicide," authorities said.
Summary:
Summary:
They claimed she killed the child, hid him in a container, and later buried him in the pit.
Summary:
During the 45th edition of his programme 'Mann ki Baat', PM Narendra Modi called GST a "celebration of honesty".
Summary:
Kerala CM Pinarayi Vijayan on Saturday announced the state's fourth international airport in Kannur will begin operations in September this year.
Summary:
"The mango is small and round shaped.
The speciality of this mango is the colour.
Summary:
Uttar Pradesh minister OP Rajbhar has repaired a 500-metre long road outside his residence ahead of his son's wedding reception after the authorities ignored his pleas.
Summary:
Italy's Deputy Prime Minister Luigi Di Maio on Saturday said "arrogant" France risked becoming its no.
"Italy indeed faces a migration emergency and it's partly because France keeps pushing back people at the border," he added.
Summary:
A video of an airborne car crashing into a gas station in the US state of Mississippi has surfaced online.
Summary:
Saudi Arabia became the last country in the world to allow women to drive after it lifted the ban on female motorists on Sunday.
Summary:
External Affairs Minister Sushma Swaraj's husband Swaraj Kaushal responded to a woman who tweeted to him saying, "as a single woman by choice - you and ma'am Sushma Swaraj are marriage goals".
Summary:
Talking about meeting Priyanka Chopra's rumoured boyfriend Nick Jonas, her mother Madhu Chopra said, "I've met him for the first time, it's too early to form an opinion." "We...went out for dinner...But it was a large group...So I didn't get the time to know him that well," she added.
Summary:
Chennai's R Praggnanandhaa has become the second youngest Grandmaster in chess history at the age of 12 years, 10 months, 13 days.
Summary:
Team India player KL Rahul has revealed he "third-wheeled" with Virat Kohli and Anushka Sharma on some of their dates while he was going through a low phase in 2014.
Summary:
The accused committed the murder because he wanted to shut down the school after being scolded for not doing his homework, police said.
Summary:
A group of 15 tribal women from Madhya Pradesh's Chhatarpur, popularly called 'Handpump wali chachis', have been repairing handpumps for free for the last 8-9 years.
Summary:
Nineteen of the 25 dirtiest cities in India are in West Bengal, according to a survey by the union housing and urban affairs ministry.
Summary:
Farmers in Maharashtra on Saturday staged a protest outside Central Bank of India's Datala branch after a bank manager was booked for asking sexual favours from a farmer's wife in exchange for a crop loan.
Summary:
A 40-year-old man from Noida has been arrested for sharing a morphed picture of Baba Ramdev on a WhatsApp group.
for taking action against the man who defamed Baba Ramdev through the objectionable photo".
Summary:
The family of a 60-year-old man in Uttar Pradesh has filed a complaint against a doctor alleging he removed his kidney without permission during a surgery for kidney stone removal.
Summary:
The US government has reunited 522 children separated from adults as part of the country's immigration policy.
Summary:
White House Press Secretary Sarah Sanders was "kicked" out of a restaurant in Virginia on Friday because she works for President Donald Trump.
Summary:
Warning Iran against pursuing its nuclear programme, US Secretary of State Mike Pompeo has said, "The wrath of the entire world will fall upon them." "We would end up down a path that I don't think is in the best interests of Iran," he added.
Summary:
Actress Dia Mirza, who will be portraying Sanjay Dutt's wife Maanayata Dutt in Ranbir Kapoor's 'Sanju', said, "It's so nice being Ranbir's wife." She added that given a chance, she wouldn't choose any other role in the film.
Summary:
Sanya made her Bollywood debut with Aamir Khan's 'Dangal'.
Also starring Sunil Grover in the lead role, 'Pataakha' will reportedly mark the Bollywood debut of TV actress Radhika Madan.
Summary:
Summary:
Referring to his political opponents, Andhra Pradesh Chief Minister Chandrababu Naidu on Saturday said the state will be torn apart if "monkey gangs" come to power in the assembly elections next year.
Summary:
In no religion can you kill animals," the board's Chairman SP Gupta said.
Summary:
Kerala Chief Minister Pinarayi Vijayan has said, "The main task is to defeat the BJP by rallying all secular and democratic forces.
Summary:
Haryana has made use of LED bulbs and tubelights mandatory in all government offices by August 15.
Summary:
A 36-year-old man who was attacked in East Midnapore, West Bengal a week ago on suspicions of being a child lifter succumbed to his injuries on Saturday.
Summary:
"On Saturday, about 50 workers returned to work to resume the construction," he added.
Summary:
Over 100 Naxals, who surrendered before the Odisha Police, have appeared for Indira Gandhi National Open University's (IGNOU) Bachelor Preparatory Programme exam.
Summary:
BJP President Amit Shah has asked Congress to apologise for the statements of its senior leaders Ghulam Nabi Azad and Saifuddin Soz and take action against them.
Summary:
Summary:
Murthy and other co-founders including Nandan Nilekani and S Gopalakrishnan had skipped the AGM for the first time in June 2017.
Summary:
Argentina captain Lionel Messi lasted just around 43 seconds on the field on his international debut, before getting a red card.
Summary:
'Game of Thrones' actors Kit Harington, who portrayed Jon Snow, and his girlfriend Rose Leslie, who used to play the character Ygritte in the show, got married today.
Summary:
Summary:
Shah Rukh wanted Irrfan to feel at home in London while battling his health crisis, reports added.
Summary:
Speaking about BJP pulling out of its alliance with PDP in Jammu and Kashmir, BJP President Amit Shah said that the Modi government made several efforts but partiality towards Jammu and Ladakh continued.
Summary:
Asserting that Jammu and Kashmir is an integral part of India, BJP President Amit Shah on Saturday said that his party will never allow Kashmir to get disintegrated from the country.
Summary:
The wife of an Indian Army Major was found dead with her throat slit and body run over by a car, presumed to belong to the murderer, on a street close to Delhi's cantonment area on Saturday.
Summary:
At least 72 people were penalised and â¹3.6 lakh fine collected in Nashik on the first day of the plastic ban that came into effect across Maharashtra today.
Summary:
It was flown to Mumbai and then taken to the hospital via a green corridor in an ambulance for a four-year-old girl's transplant surgery.
Summary:
Addressing a gathering in Madhya Pradesh's Indore on Saturday, Prime Minister Narendra Modi claimed in the last four years, the government constructed over 8 crore 30 thousand toilets in urban and rural areas combined.
Summary:
A video purportedly showing a mob beating a 65-year-old Muslim man and forcing him to confess to cow slaughter in UP's Hapur has surfaced.
Summary:
Zimbabwe President Emmerson Mnangagwa on Saturday survived an assassination attempt during an election campaign rally in the Bulawayo city.
Summary:
"It's an old belief that wedding of frogs makes Indra Dev happy," a local said.
Summary:
Denying dating rumours with Bigg Boss 10 winner Manveer Gurjar, TV actress and Bigg Boss 7 contestant Kamya Punjabi said, "Manveer is a dear friend." She added that if she falls in love with anyone she would be happy to let everyone know.
Summary:
Pritam won Best Background Score award for 'Jagga Jasoos'.
Summary:
Sonam Kapoor, while talking about working with Ranbir Kapoor after the gap of 11 years, said, "He always does lead roles, I also want to do only leading parts.
Summary:
Forward Javier Hernández became the first Mexican to reach 50 international goals as the North American team defeated South Korea 2-1 in a Group F fixture at the 2018 FIFA World Cup on Saturday.
Summary:
Defending champions Germany scored in the 95th minute to register a 2-1 comeback victory against Sweden to register their first win in the 2018 FIFA World Cup. The four-time champions needed a win or a draw against Sweden to stay alive in the tournament, after having lost their opening match to Mexico.
Summary:
Police found eight World Cup trophy replicas with 1.5kg of drugs inside each of them.
Summary:
The test, which was developed in 1991 for football, has been criticised.
Summary:
"While going back...Hayden was standing on the way and said, 'If you ever do this again...I'll punch you on your face'," Parthiv added.
Summary:
The party will field candidates from all constituencies under the leadership of Ghanshyam.
Summary:
In an apparent jibe at the Congress, PM Narendra Modi on Saturday said deliberate efforts were made to belittle "towering personalities" in order "to glorify one family".
Summary:
Various government departments like Public Works Department (PWD), Central Public Works Department (CPWD), and NBCC India carried out construction work in Delhi despite the ban imposed by Lieutenant Governor Anil Baijal.
Summary:
The women were carrying babies on behalf of Chinese clients, police added.
Summary:
"It hurts to see these children without their parents and it is our vocation to reunite them," the airline said.
Summary:
Ratan Tata's investment arm RNT Associates is under the Enforcement Directorate's lens over its offshore investment portfolio.
Summary:
Five NGO workers, who were abducted and raped while performing a street play in Jharkand, were forced by the accused to drink their urine, police has revealed.
Summary:
A discarded napkin at a restaurant has helped investigators crack the murder case of a 12-year-old girl in the US in 1986.
Summary:
After a passport officer was transferred for shaming an interfaith couple in Lucknow earlier this week, a Shiv Sena delegation said they'll honour him.
Slamming the government's decision to transfer him, the delegation added that the officer was doing his work diligently.
Summary:
Jammu and Kashmir Governor NN Vohra on Friday made biometric attendance compulsory in all state government offices with immediate effect.
Summary:
The peon had been selling answer sheets to the scrap dealer since 2014.
Summary:
Maharashtra has become the 18th state to enforce a complete ban on the sale, use and manufacture of plastic bags.
Summary:
The accused in the Jharkhand gangrape case have revealed in their statement that they wanted to teach the five NGO activists a lesson, said the police.
Summary:
The brand Infosys is ready and relevant and "everyone is united" to take the company higher, Non-Executive Chairman Nandan Nilekani said on Saturday.
Summary:
The Indian Banks' Association (IBA) CEO VG Kannan has said that slapping "a criminal case against bankers for sanctioning loans is silly".
Summary:
Actor Saqib Saleem, who recently starred in Salman Khan's 'Race 3', will be reportedly playing the role of the villain in Salman's 'Dabangg 3'.
Summary:
Further, the African nation is now 13 matches without a win at the FIFA World Cup.
Summary:
World's most expensive footballer, Neymar took to social media to take a dig at critics after scoring against Costa Rica in World Cup on Friday.
To talk, even parrots can talk...but to do...few people do," the 26-year-old Brazilian wrote.
Summary:
Ahead of Nigeria's match against Argentina at 2018 FIFA World Cup, the African nation's record World Cup goalscorer Ahmed Musa said whenever he plays against five-time Ballon d'Or winner Lionel Messi, he scores.
Summary:
The Indian men's hockey team scored their last three goals within a span of six minutes to thrash Pakistan 4-0 in the opening match of the Champions Trophy's final edition on Saturday.
Summary:
Vinod Rai, Chief of BCCI's Committee of Administrators, has said Rahul Dravid chose to coach the India 'A' and U-19 teams over IPL franchise Delhi Daredevils when the conflict of interest issue arose.
Summary:
Former Australian wicketkeeper-batsman Adam Gilchrist has said that England Women wicketkeeper Sarah Taylor is the "best wicketkeeper in the world at the moment" across men's and women's cricket.
Summary:
Shweta has claimed that an unidentified Instagram account posted pictures of her taken at various events to attract followers.
Summary:
Tesla's first race-ready car, capable of going from 0 to 100 kmph in 2.1 seconds, was taken to the tracks for the first time in Barcelona on Thursday, ahead of the Electric GT racing championship planned in November.
Summary:
BJP MP Pon Radhakrishnan has claimed that Tamil Nadu is becoming the "breeding ground" for activities by extremists, adding that Naxal training camps are being organised in the state's hilly areas.
Summary:
He added that the government will make efforts to develop lesser known areas in the state as tourism sites.
Summary:
Days after a sulphuric acid leak was reported at Vedanta's Sterlite copper plant in Tamil Nadu's Tuticorin, District Collector Sandeep Nanduri said 1,300 tonnes of the acid have been removed from the site.
Summary:
Southern Railways will impose a fine of â¹2,000 on passengers who take a selfie in front of trains at railway stations or while standing on the footboard.
Summary:
S Suhas, the District Collector of Kerala's Alappuzha, recently shared a mid-day meal with students of a government school where he had gone for a surprise visit.
Summary:
Members of the Akhil Bharatiya Vidyarthi Parishad (ABVP) allegedly vandalised several school buses parked outside a private school in Telangana's Rangareddy after it saw the school functioning despite ABVP's call for a state-wide bandh.
Summary:
Police on Saturday detained DMK Working President MK Stalin along with around 400 party workers during their protest against Tamil Nadu Governor Banwarilal Purohit over his alleged "interference in the state's affairs".
Summary:
The French priest who was caught on video slapping a crying toddler has been suspended from leading baptisms and weddings.
Summary:
Nepal will share close relations with both India and China but maintain an independent foreign policy, Nepalese PM KP Sharma Oli said.
Summary:
Days after Team India captain Virat Kohli shared a video of his wife Anushka Sharma scolding Arhhan Singh for littering, the man has sent a legal notice to the couple, demanding an apology from them.
Summary:
The manager, Rajesh Hivase, asked for the wife's number in order to process the loan and later called her demanding the favours.
Summary:
Talking about the Kerala High Court's verdict on 'Grihalakshmi' magazine cover which showed her breastfeeding a baby, model Gilu Joseph said, "We're thankful to the person who filed the case." "Because of that the High Court got an opportunity to appreciate us," she added.
Summary:
Cynthia Nixon, who starred in the show 'Sex and the City', has revealed her oldest child is a transgender.
Cynthia has two children with ex-partner Daniel Mozes and a daughter with wife Christine Marinoni.
Summary:
The â¹3,866 crore project includes a dam and a canal system which will provide drinking water to over 400 villages.
Summary:
The Uttar Pradesh Police on Friday arrested a former CEO of Yamuna Expressway Industrial Development Authority (YEIDA) for his alleged involvement in a â¹126-crore land scam.
Summary:
The godman has been accused of raping a female follower two years ago inside a Chhattarpur ashram run by him.n
Summary:
A restaurant in Vijayawada has been served a notice by food regulator FSSAI after a customer found a dead lizard in his biryani.
Summary:
Bajaj Finance on Friday overtook private sector lender Axis Bank in terms of market capitalisation after its shares surged 3.45%.
Summary:
McDonald's south and west India operator, Hardcastle Restaurants, said it has stopped use of plastic cutlery at its outlets and switched to wooden cutlery and paper straws.
Summary:
Actor Gulshan Grover, who is known for portraying negative roles, said, "The villain part has now got dignity in Hindi films." He added that the "writing part of the negative characters has become far better, more research has been done in depth".
Summary:
Summary:
Anurag further said, "It's good to talk about things people don't want you to speak about."
Summary:
Summary:
Neymar has now scored 56 goals for Brazil and is only behind Ronaldo (62) and Pelé (77).
Summary:
Team India all-rounder Hardik Pandya took to social media to share a picture of himself receiving a jersey of Premier League side Manchester United.
Summary:
The Congress has claimed that Goa CM Manohar Parrikar was "playing with his health" with a "suicidal tendency" by not resigning from the post over his health issues.
Summary:
After Law Minister Ravi Shankar Prasad said the number of terrorists killed in Jammu and Kashmir increased during the NDA regime, former CM Omar Abdullah said the increased killings indicate that government allowed militancy to re-emerge.
Summary:
After conducting the "most precise" test of gravity outside the Milky Way, another team of astronomers has confirmed that Albert Einstein's general theory of relativity is valid on galactic scales.
Summary:
A 76-year-old retired district judge allegedly committed suicide on Friday by shooting himself in the mouth using his licensed gun at his residence in Ghaziabad.
Summary:
A 28-year-old Odisha constable, who was suspended over his alleged involvement in his live-in partner's murder, has been arrested for allegedly robbing and murdering an elderly Mumbai couple with the assistance of their domestic help.
Summary:
âÂÂThe software-related glitch affected operations from 1 pm to 2.30 pm...during the period, check-in and other services were handled manually,â said the airline's spokesperson.
Summary:
The organisers of Sweden's largest music festival have ended the event permanently following reports of sexual assault and rape.
Summary:
US President Donald Trump has said that North Korea still poses an "extraordinary threat" and renewed the "national emergency order" with respect to the regime.
Summary:
The court ordered that the candidacies vacated by the disqualified men be filled by women.
Summary:
The US government's policy of separating migrant children from their families and detaining them "may amount to torture", the UN Human Rights Council said.
Summary:
The government on Saturday appointed Arijit Basu as Managing Director of India's largest lender State Bank of India.
Summary:
A 23-year-old woman from Maharashtra poisoned the food served at a relative's party, which killed five people and hospitalised 88.
Summary:
McCullum, who was playing for Gujarat Lions in that edition, said since he suffers from asthma, he had increased his usual medicine dose to cope with the pollution.
Summary:
John McAfee, Founder of anti-virus software company McAfee, has claimed that he was left unconscious for two days after he ate something his "enemies" had "spiked".
And for those who did this- You will soon understand the true meaning of wrath...
Summary:
The poster gives information about PM Modi's visit to Madhya Pradesh and the projects he will inaugurate.nn
Summary:
Founder of BJP IT Cell Prodyut Bora has said that the cell has become like 'Frankenstein's monster' now.
Summary:
A virus found in Florida's mosquitoes that can cause a rash and mild fever has been identified in humans for the first time, University of Florida researchers have reported.
Summary:
Bisaria, who was accompanied by his wife, wanted to pray at the gurudwara on the occasion of his birthday, reports said.
Summary:
Claiming the permission to cut trees "was granted incorrectly", the petition said the felling of trees in at least six locations started on Friday.
Summary:
The police also seized the company's register books, plot allotment documents, rubber stamps, silver coin gift packs, and cash worth â¹8.15 lakh.
Summary:
The 19-year-old ran across the border in Canada's British Columbia into the US state of Washington.
Summary:
IndiGo's charges for pre-booking excess baggage of 5kg and 10kg on its domestic routes will now be â¹1,900 and â¹3,800 respectively.
Summary:
About 9,000 stacked bourbon whiskey barrels plummeted to the ground on Friday when a large section of a decades-old storage warehouse collapsed at a distillery in Kentucky.
Summary:
Cricketer KL Rahul, while denying rumours that he is dating actress Nidhhi Agerwal, said, "We are just good friends and all the rumours are false." He added that they have known each other since their college days.
Summary:
While Rao is said to play a struggling Gujarati businessman in the film, Mouni's role is yet to be confirmed.
Summary:
Summary:
Parthiv had made his international debut in 2002 as a 17-year-old, two years before Dhoni.
Summary:
Summary:
Summary:
The biker reportedly also failed to produce the registration papers, following which his bike was seized by the policemen.
Summary:
Police revealed that they found syringes next to the bodies, adding they cannot confirm the cause of death until an autopsy.
Summary:
A crime reporter was killed at a battalion headquarters of Tripura State Rifles.
Summary:
Hyderabad Police registered 643 cases in two days during its special drive against vehicles carrying school kids.
Summary:
Jammu and Kashmir Police chief SP Vaid said they have devised a strategy to deal with gatherings at militants' funerals.
Summary:
The UN had banned barrel bombs as it poses a threat to civilians due to its lack of precision.
Summary:
A Catholic priest who worked as a diplomat at the Vatican's US embassy has admitted to the possession and distribution of child pornography while serving in the country.
Summary:
The agency alleged evasion of customs duty of â¹52 crore.
Summary:
Baba Ramdev-led Patanjali Ayurved has raised concerns about Adani Wilmar's eligibility to bid for acquiring bankrupt Ruchi Soya.
Summary:
The device is a precision temperature sensor, which can report temperatures with an error of 0.1úC.
Summary:
Summary:
A police constable in Chattisgarh wrote to the Superintendent of Police (SP) seeking permission to beat his wife.
Summary:
Kareena Kapoor, while talking about not being on social media, said, "Despite not being active or even present on social media, I am still all over it." "I don't need to put out anything more about my life.
Summary:
American singer Nick Jonas, in an Instagram story, shared a video of his rumoured girlfriend Priyanka Chopra during his visit to India.
Summary:
Tamil filmmaker P Bharathiraja has been booked by the Chennai Police for hurting religious sentiments, after he allegedly called Lord Ganesha an "imported God" while addressing a public gathering in January.
Summary:
Filmmaker Rajkumar Hirani has revealed Sanjay Dutt used to take his girlfriends to a graveyard, saying he brought them there 'to meet his mother' Nargis Dutt, who passed away in 1981.
Earlier, it was revealed Dutt had 308 girlfriends.
Summary:
India defeated Pakistan 36-20 in their first match of the inaugural six-nation Kabaddi Masters at the Al-Wasl Sports Complex in Dubai on Friday.
Summary:
Data scandal-hit Facebook has accidentally leaked sensitive business information, including new users and page views to app testers outside the company due to an "e-mail error".
Summary:
IIT Roorkee is developing drones for the Indian Railways that will help automate rail track monitoring, which is currently a labour-intensive process.
Summary:
Gujarat Police have arrested a Class X student who allegedly stabbed his junior to death in their school washroom on Friday in Vadodara.
Summary:
The boy was traced in Punjab, where he was living with a foster family.
Summary:
Tamil Nadu Governor Banwarilal Purohit walked off from a Swachh Bharat programme after realising that garbage was intentionally thrown at the location where he was supposed to clean.
Summary:
The Maharashtra government has banned the sale, use and manufacture of plastic bags, as well as disposable products made of plastic and thermocol.
Summary:
The son had reportedly lost the case of the disputed land where the other man was cultivating.
Summary:
The ban on a variety of plastic items announced by the Maharashtra government in March comes into effect from today.
Summary:
Fourteen Indians on death row for murder in UAE have been released and have returned home after an NGO paid blood money as compensation to the victims' relatives.
Summary:
A police constable in Uttar Pradesh reportedly sought a month's leave and stated "expand family" as the reason.
Summary:
Muslims read Quran while Hindus worship Lord Shiva at a residence, where a Brahmin man is the caretaker.
Summary:
Friedland tweeted, "I feel awful about the distress this lapse caused to people at company I love."
Summary:
Anil Kapoor took to Twitter to share a note on completing 35 years in Bollywood.
Summary:
Former Finance Minister P Chidambaram said calling Congress President Rahul Gandhi sympathetic to Maoists and jehadists was "laughable" and "absurd".
Summary:
Wicked Ride is premium arm of Metro Bikes, which offers keyless bikes with OTP access at metro stations across several cities.
Summary:
Tesla CEO Elon Musk has revealed the electric car-making startup built a "giant tent" in two weeks as they needed another assembly line to meet the 5,000 cars/week Model 3 production goal.
This tent is pretty sweet," said Musk.
Summary:
Ahmedabad-based agritech startup My Crop Technologies and Delhi-based data intelligence startup SocialCops have been selected among the world's 61 most promising Technology Pioneers in 2018 by the World Economic Forum.
Summary:
BJP leader Lal Singh Chaudhary, who had supported Kathua rape and murder accused, on Friday asked the journalists in J&K to 'mend their ways' to keep the "brotherhood" intact in the Valley.
Summary:
"Every 1-degree increase in the air-conditioner temperature setting results in saving of 6% of electricity consumed," Singh said.
Summary:
Nick and Priyanka, along with her mother, were spotted going out for dinner at a Mumbai restaurant.
Summary:
Lata's kin added that Karan could have used any other song for the scene.
Summary:
Alia Bhatt, on being asked if marriage affects the career of an actress, said, "Anushka (Sharma) and Sonam (Kapoor) are proving married actresses can remain stars and they're doing it fearlessly." "A good actor shouldn't be out of work because of their relationship status," she added.
Summary:
Supreme Court judge Jasti Chelameswar, who retired today, said he has no regrets about holding a press conference along with three other SC judges to voice concerns over Chief Justice of India Dipak Misra and the judiciary's administration in January.
Summary:
Samajwadi Party leader Shivpal Yadav has said his nephew Akhilesh would have been re-elected as Uttar Pradesh CM after the 2017 Assembly elections if he had listened to his elders.
Summary:
The daughter of a tea seller in Madhya Pradesh has been selected into Indian Air Force's flying branch after she cleared the interview on her sixth attempt.
Summary:
He revealed that he got the proposal two months ago and has accepted it after much persuasion.
With this in mind, I have accepted the proposal," Ramdev said.
Summary:
Retired SC judge Jasti Chelameswar has said that the closed door meeting of those who run the country with Supreme Court judges must be questioned.
Summary:
Pakistan-based terror outfit Lashkar-e-Taiba (LeT), responsible for the 26/11 Mumbai attack, has launched an online magazine 'Wyeth', wherein they have stated 2018 will be "tough for Indian Army and other occupational forces in Kashmir".
Summary:
The talks will focus on enhancing strategic, security and defence cooperation between the two nations.
Summary:
The girl was attending an engagement ceremony when an accused convinced her to accompany him to a neighbouring village, where the other nine joined him and raped her.
Summary:
BJP General Secretary of Chikmagalur in Karnataka, Mohammed Anwar, was allegedly stabbed to death by unknown bike-borne assailants on Friday.
Summary:
Whistleblower organisation WikiLeaks has published a database containing LinkedIn data of US Immigration and Customs Enforcement (ICE) employees.
Summary:
Varun Dhawan, who was seen introducing everyone at the International Indian Film Academy Awards (IIFA) 2018 Press Conference in Bangkok, introduced Kartik Aaryan and jokingly said, "We have...â¹100 crore hero." "One of the biggest stars of the Indian film fraternity...very popular on social networking sites and paparazzi's favourite," he added.
Summary:
Filmmaker Karan Johar, while talking at the press conference of the International Indian Film Academy (IIFA) Awards 2018 in Bangkok, said that if one can't reuse the talent, then one should refuse it.
Summary:
"Shame on...Vijay for promoting smoking in this first look of his next movie," read another tweet by the MP.
Summary:
Switzerland defeated Serbia 2-1 on Friday to become the first team to come from behind to win a group match at the 2018 FIFA World Cup. The match witnessed midfielder Granit Xhaka become the third Swiss player to score in multiple World Cups.
Summary:
Forward Ahmed Musa scored both the goals in the match and became the highest goalscorer for Nigeria in World Cup history.
Summary:
Kosovan-Albanian origin Switzerland players Granit Xhaka and Xherdan Shaqiri made gestures apparently symbolising Albanian flag's eagle in the 2-1 win against Serbia on Friday.
Summary:
After cricketing legend Sachin Tendulkar slammed the use of two new balls over record scores in the ongoing England-Australia ODI series, Indian captain Virat Kohli said, "I agree it's brutal for the bowlers".
Summary:
Nathania John K, an 11-year-old Indian girl, led the Brazilian and Costa Rican teams on to the field at the FIFA World Cup on Friday.
Summary:
Tracking chips will be installed in vehicles which embark on the 60-day Amarnath Yatra later this month, Jammu and Kashmir Inspector General of Police SD Singh Jamwal has said.
Summary:
The Hyderabad High Court has asked the Andhra Pradesh Director General of Police to file an affidavit regarding the police's practice of parading accused people before the media.
Summary:
More than 10 US Navy officials have pleaded guilty to corruption in the scandal.
Summary:
Organisation of the Petroleum Exporting Countries (OPEC) has agreed on a "nominal" increase in oil production of around 1 million barrels a day or 1% of global supply, Saudi Energy Minister Khalid Al-Falih has said.
Summary:
Credit rating agency Moody's has affirmed Pakistan's B3 rating but downgraded the outlook from stable to negative, ahead of the general elections in the country.
Summary:
Alisha Malik, the teenage girl whose video of hugging around 100 men on Eid outside a mall in UP's Moradabad went viral, said on Friday that she had no wrong intention.
The girl's unique 'Eid Milan' went for over an hour.
Summary:
Senegal-born singer Akon, who recently announced the launch of his cryptocurrency 'AKoin', has a fortune of $80 million, according to Celebrity Net Worth.
Summary:
Actor Anil Kapoor has revealed that he refused to attend the first International Indian Film Academy (IIFA) Awards in 2000 as he thought it was "totally rigged".
Summary:
Summary:
Sons of Ustad Amjad Ali Khan, sarod players Amaan Ali Bangash, who is 40, and his brother Ayaan, who is 38, refused to accept the Ustad Bismillah Khan 'Yuva' Puraskar conferred on them by Sangeet Natak Akademi.
Summary:
Intel CEO Brian Krzanich resigned on Thursday over his past consensual relationship with an employee.
Summary:
Reacting to Karnataka Food and Civil Supplies Minister Zameer Ahmed Khan seeking a Toyota Fortuner for official use instead of Innova, Karnataka CM HD Kumaraswamy said, "Every minister requires a vehicle...for some comfort." He added that he will take a decision on it after receiving the minister's request.
Summary:
Congress spokesperson Randeep Surjewala said that party leader Saifuddin Soz's statements on Kashmir's independence are a cheap tactic to sell his book.
Summary:
National Bank for Agriculture and Rural Development has said there's no irregularity in â¹746 crore deposit within five days after demonetisation in Ahmedabad District Cooperative Bank, where BJP President Amit Shah is director.
Summary:
Summary:
"After seeing the cops, Kuldeep went back to the same spot where...(Khushboo) was lying and stabbed himself," said an eye-witness.
Summary:
A Home Ministry official has filed a complaint alleging her debit card was cloned and transactions worth â¹67,000 were made using same card, according to reports.
Summary:
Clothing retailer Benetton was slammed for its advertising campaign that used photos of migrants being rescued in the Mediterranean.
Summary:
A Telugu actress' manager was asked if the actress was flexible while considering her for an event organised by Telugu Association in US, as per reports.
Summary:
Pakistani singer Momina Mustehsan, known for singing 'Afreen Afreen', said that she wanted to be known for something more than just her 'pretty' face.
Summary:
The man claimed he meant to put his hand on her shoulder but instead touched her breast by mistake.
Summary:
Three fans from Switzerland travelled nearly 2,000 km on a tractor for 12 days to see their country playing against Serbia for World Cup Group E match in Russia's Kaliningrad on Friday.
Summary:
"This is a smart sticker and once you put this on the bat, it becomes a smart bat," Kumble said.
Summary:
After Ambati Rayudu was dropped from squad for England ODIs for failing the Yo-Yo test, Team India head coach Ravi Shastri said the team management won't compromise on the practice.
"Yo-Yo fitness test...is here to stay.
Summary:
The Press Information Bureau's YouTube channel was unblocked on Thursday, minutes after the International Yoga Day event led by PM Narendra Modi ended.
Summary:
The Delhi government will introduce a 'happiness curriculum' for eight lakh students studying in Class nursery to Class 8 from the upcoming session.
Summary:
Former Pakistan President Pervez Musharraf has resigned as the Chairman of the All Pakistan Muslim League (APML), the party's new President Mohammad Amjad said.
Summary:
The Railway Protection Force has booked Nellikkunnu as the train was delayed by 19 minutes.
Summary:
Chelameswar had earlier led a press conference to question Chief Justice Dipak Misra and voice concerns about the administration of the SC.
Summary:
White people are dying faster than they are being born in 26 states in the US, according to a study by the Applied Population Lab at the University of Wisconsin-Madison.
Summary:
The Khadi and Village Industries Commission (KVIC) has sent legal notices to 222 firms in past 2.5 years for allegedly selling products with 'khadi mark' without registration.
Summary:
Lionel Messi-led Argentina will qualify for 2018 FIFA World Cup's next round if they beat Nigeria in their next match and Iceland draw or lose to both Nigeria and Croatia.
Summary:
India's richest person and Reliance Industries Chairman Mukesh Ambani's wealth has jumped by â¹9,300 crore in 2 days to hit â¹2.84 lakh crore, making him the world's 15th richest person, according to Bloomberg.
Summary:
A man, denied a reservation at a Moroccan restaurant, claimed he was the PM to get a confirmed table.
Summary:
The safety driver of a self-driving Uber car that hit a woman in Arizona earlier this year and led to her death, was watching a TV show on her phone at the time of crash, police said.
Summary:
In June, two tourists died in the state in separate incidents while posing for selfies.
Summary:
In a Facebook post titled, 'Who is threatening Human Rights', Finance Minister Arun Jaitleynslammed Congress President Rahul Gandhi for supporting the "tukde tukde" JNU agitation.
Summary:
Doctors have reported the case of a finding a live parasitic worm from inside the face of Russian woman with a two-week history of moving nodules.
Summary:
BJP MP Subramanian Swamy has said Raghuram Rajan is not an economist, having no academic background in the subject.
Summary:
Union Minister Arun Jaitley, in a Facebook blog titled 'Who Is Threatening Human Rights?', asked, "Should fidayeen (suicide attackers) be offered "Satyagraha" in response?" "A terrorist who refuses to surrender and refuses a ceasefire offer has to be dealt with as anybody taking law in his own hand.
Summary:
I became President and they didn't.
And I'm representing the greatest, smartest most loyal best people on Earth," the US President added.
Summary:
North and South Korea will hold reunions of families separated by the 1950-53 Korean War. The reunions, which will be held in the month of August, come amid improvements in inter-Korean relations following the summit between the two countries.
Summary:
The company reported a revenue of $9.62 billion and a profit of $1.8 billion for calendar year 2017.
Summary:
Actor Vivek Mushran, who made his debut in 1991 with Subhash Ghai's 'Saudagar', feels that people got stuck with his 'Ilu Ilu' image while referring to the song from his debut film.
Summary:
'Sonu Ke Titu Ki Sweety' actress Nushrat Bharucha has said that money isn't a concern or a priority for her.
Summary:
Ayushmann Khurrana has said that he is loving his space in Bollywood and is carving his own niche in the industry.
Summary:
A picture of Saif Ali Khan and Kareena Kapoor Khan with son Taimur Ali Khan in his class photo from his play school has emerged online.
Summary:
Only Pelé (77) and Ronaldo (62) have scored more goals for Brazil than Neymar.
Summary:
An anchor and his fellow analysts observed a minute's silence during a football TV show in Argentina after the South American nation's 0-3 defeat against Croatia at the 2018 FIFA World Cup on Thursday.
Summary:
A group of Colombian fans used a pair of fake binoculars to sneak vodka into the Mordovia Arena, where the South American nation faced Japan in a 2018 FIFA World Cup Group H match.
Summary:
Reacting to UP CM Yogi Adityanath wearing Liverpool t-shirt on International Yoga Day, a user tweeted, "Liverpool have got a new right winger.
Summary:
West Bengal CM Mamata Banerjee on Friday cancelled her nine-day trip to China hours before she was scheduled to leave, citing "non-confirmation of political meetings at the appropriate level as proposed by the Indian Ambassador".
Summary:
The security forces on Friday killed four militants during an encounter in Jammu and Kashmir's Anantnag district.
Summary:
Former Indian Prime Minister Lal Bahadur Shastri's son Anil Shastri has said that all documents pertaining to his father's death should be declassified, adding that this would "clear the air" about his death.
Summary:
Officials in Ahmedabad have awarded Indian citizenship to 320 people since 2016 after the Centre allowed seven states to grant citizenship to Hindu minorities who fled from Pakistan, Bangladesh and Afghanistan.
Summary:
A one-year-old infant was allegedly crushed to death by his father following a fight with his wife in Uttar Pradesh's Sambhal.
Summary:
When the husband asked them to leave them alone, one of the men hit him while others tried to kidnap the woman.
Summary:
"If we hadn't spotted the signal...(train) could've met with a severe accident," the driver said.
Summary:
Banned notes worth â¹3,118.51 crore were deposited in eleven Gujarat district cooperative banks linked to BJP within five days after demonetisation, the Congress has claimed citing an RTI reply.
Summary:
Amrish starred as the villain Mola Ram in Spielberg's directorial 'Indiana Jones and the Temple of Doom'.
Summary:
The ultrasound was reportedly taken in April, while the girlfriend's identity is unknown.
Summary:
Actress Janhvi Kapoor, on being asked about a compliment she received for 'Dhadak' which she will remember for life, said, "Arjun [Kapoor] Bhaiya told me that I've done an honest job in the film." "[He said] I am not trying to act like any other heroine...I am playing my character honestly...
Summary:
Opening up about suffering from depression amid his divorce with Amber Heard and other financial difficulties, Johnny Depp said, "I was as low as I believe I could've gotten.
Summary:
Brazilian football legend Ronaldo used his 2002 FIFA World Cup haircut to distract media from his injury troubles.
Summary:
Last year, he had shared an image of himself standing barefoot on a street alongside a bucket of paint.
Summary:
The police said they are carrying out search operations in a river near his home.
Summary:
Ahead of the UK-Ireland tour, Team India captain Virat Kohli said he is "110% fit" now and glad he did not play in county cricket when he wasn't fully fit.
Kohli was ruled out from participating in county cricket due to neck injury.
Summary:
The step has been taken to sustainably use the increasing amount of plastic waste collected by the state civic bodies.
Summary:
China had earlier proposed to build an economic corridor with India and Nepal through the Himalayas to enhance connectivity.
Summary:
Iran's Deputy Foreign Minister Abbas Araghchi has warned that the country may withdraw from the 2015 nuclear deal in the coming weeks if an agreement with the European signatories is not reached.
Summary:
US President Donald Trump has said that the jacket worn by his wife Melania that had "I Really Don't Care, Do U?" written on it referred to the 'Fake News Media'.
Summary:
Ex-Infosys CEO Vishal Sikka has denied charges made by US firm Teradata of being aware of stealing trade secrets when he was German technology firm SAP's CTO.
Summary:
Asian equities have lost over $1.6 trillion in market value in the last two weeks through June 21, with Chinese stocks losing the most at $746 billion, according to Bloomberg.
Summary:
The company had issued secured redeemable Non-Convertible Debentures (NCDs) aggregating to â¹90 crore to LIC in December 2008.
Summary:
It's a shame that [Krushna and his wife Kashmera] talk rubbish about us behind our back," she added.
Summary:
Anupam Kher, who will be playing former Prime Minister Manmohan Singh in upcoming biopic 'The Accidental Prime Minister', shared a picture of Ram Avatar Bhardawaj as ex-PM Atal Bihari Vajpayee.
Summary:
'Deadpool 2' actor Josh Brolin, while opening up about his 2004 arrest for domestic violence, said, "There's no explaining it." "The only person who can explain that would be [my ex-wife] Diane Lane, and she has chosen not to, so I'm okay with that," he added.
Summary:
Since Tite took over as Brazil's head coach in June 2016, 16 different players have led the team in 23 matches.
Summary:
After a user taps on a previously visited location, the map displays potential matches who had also been around the spot.
Summary:
Summary:
Twitter on Thursday announced that it has bought US-based online anti-harassment startup Smyte, however, it immediately shut it down giving existing customers no time to prepare for the closure.
Summary:
Shiv Sena leader Manisha Kayande has said that Congress leader Saifuddin Soz should consider migrating to Pakistan and become former President Pervez Musharraf's servant if he has so much affection for him.
Summary:
Several people made videos of a man who picked up his severed foot from railway tracks in Haryana after he was run over by a train.
Summary:
The Maharashtra government has announced that state health department employees will be suspended if they miss meetings called by ministers or undertake official foreign trips without the requisite permissions.
Summary:
Forest fires in Uttarakhand led to losses worth â¹86 lakh in 2018 as the state lost over 4,500 hectares of vegetation to fire incidents between February and June.
Summary:
Five women working with an NGO were abducted and gangraped by armed men when they were performing a street play in Jharkhand earlier this week, police said on Thursday.
Summary:
A 56-year-old line inspector from Andhra Pradesh, S Lakshmi Reddy was on Thursday arrested by Anti-Corruption Bureau for possessing disproportionate assets worth â¹100 crore.
Summary:
He was allegedly stabbed by a class 10 student of the school after a fight between the two, the police said after preliminary investigation.
Summary:
He captioned the video "India can't settle only for 'jugaad' (make-do) and has to shoot for 'jhakaas' (Mumbai slang for 'brilliant')".
Summary:
A video of a man begging onboard a flight has gone viral, where he is seen holding a plastic pouch and asking for money from other passengers.
Summary:
Actress Dia Mirza, who will be seen portraying Sanjay Dutt's wife Maanayata in his biopic 'Sanju', said Maanayata knew that Dutt had 350 relationships but didn't judge him.
Dia further said Maanayata has been a "rock" in Dutt's life.
Summary:
After raising $210 million at a $1.3-billion valuation, four-year-old food-delivery startup Swiggy became the latest Indian unicorn on Thursday, achieving the status in half the time as compared to rival Zomato.
Summary:
Tripp has been sued by Tesla for a reported $1 million for hacking into company's system and stealing confidential data.
Summary:
Billionaire Elon Musk-led SpaceX beat a rival to land a $130-million satellite launch contract with the US Air Force using its Falcon Heavy rocket.
Summary:
Summary:
Responding to the viral picture showing a mob dragging a lynching victim in UP police's presence, the case's investigating officer said the locals were helping them to lift the man from a pit and shift him to the car.
Summary:
Former Gujarat CM and current Madhya Pradesh Governor Anandiben Patel has said women in urban areas do not breastfeed their children as they fear it will spoil their figure.
Summary:
A video has surfaced which shows a 19-year-old law student losing control of her car and running over passersby and hitting other vehicles in Mumbai.
Summary:
The migrant girl pictured crying at the US-Mexico border was not separated from her mother, a man claiming to be her father said.
Summary:
Intel CEO Brian Krzanich on Thursday resigned with immediate effect after an investigation revealed that he had violated the company's "non-fraternization policy" by having "a past consensual relationship with an Intel employee".
Summary:
The Enforcement Directorate has moved a Mumbai court against Vijay Mallya seeking to confiscate his assets worth â¹12,500 crore and declare him a 'fugitive offender'.
Summary:
Ranbir Kapoor, while speaking about Ranveer Singh being 'Sanju' producer Vidhu Vinod Chopra's first choice for the film, said, "I don't know about his regrets and anything of that kind." "But I'm really happy that the film came into my life.
Summary:
Aishwarya Rai Bachchan, who is currently shooting for the upcoming film 'Fanne Khan', has asked the makers to edit the lyrics of a song as she felt uncomfortable to dance on it, as per reports.
Summary:
Hubert Wirth, a 70-year-old German football fan, arrived in Russia from his hometown of Pforzheim after a month-long trip on a tractor for the 2018 FIFA World Cup. Wirth, who was accompanied by his dog, travelled in his modified 1936 Lanz Bulldog tractor, which has a maximum speed of 30kmph.
Summary:
Surrey all-rounder Ryan Patel took six wickets for just five runs, including a spell of five dismissals in 11 balls, against Somerset in a County Championship match on Thursday.
Summary:
Cricketing legend Sachin Tendulkar has slammed the use of two new balls in a single innings after England posted record 481/6 against Australia in 50 overs, and chased down 310 runs within 45 overs in the next ODI.
Summary:
Former Bihar CM and fodder scam convict Lalu Prasad Yadav, who is currently out on bail, has sought for a bail extension of two more months on medical grounds.
Summary:
A Punjab-origin man who lost his legs and arms while working in UAE's Abu Dhabi has received a â¹37-lakh compensation from his company after the Indian embassy's intervention.
Summary:
India has said it plans to make the Chabahar port operational by 2019, even as the US reimposed sanctions on Iran after withdrawing itself from the nuclear deal.
Summary:
A 30-year-old man in Jalandhar on Wednesday committed suicide after his travel agent sent him to Russia by falsely promising that he would later be moved to the US.
Summary:
The incident went viral on social media leading to the arrest of two people.
Summary:
The Uttarakhand High Court has banned water sports in the state until the government frames a policy to regulate them.
Summary:
A 75-year-old tribal man Daitari Nayak in Odisha's Keonjhar district has carved a 3-km-long canal through mountains to help irrigate 100 acres of land.
Summary:
US First Lady Melania Trump faced backlash for wearing a jacket that had "I really don't care, do u?" written at its back, during her visit to the Texas-Mexico border to meet migrant children on Thursday.
Summary:
Animated superhero film 'Incredibles 2', which released today, "is vibrant to look at [and] the characters are just as warm as ever," wrote Hindustan Times (HT).
It has been rated 3.5/5 (HT, Firstpost) and 4/5 (TOI).
Summary:
A new promo of 'Sanju' shows Ranbir Kapoor recreating a scene from Sanjay Dutt starrer 2003 film 'Munna Bhai MBBS'.
Summary:
Sandra Bullock and Anne Hathaway starrer 'Ocean's 8', which released today, "fails to work...because of...lazy storytelling [and] lack of imagination," wrote Hindustan Times (HT).
It was rated 2/5 (HT), 3.5/5 (TOI) and 3/5 (Firstpost).
Summary:
The family of late fashion designer Kate Spade has confirmed that her father Earl Brosnahan Jr passed away on Wednesday, one night before her funeral on Thursday.
Summary:
Supreme Court-appointed Committee of Administrators has sought clarification from BCCIâÂÂActing Secretary Amitabh Chaudhary for his "unauthorised Bhutan trip", noting his travels over last 5.5 months had cost BCCI â¹52.76 lakh.
Summary:
'Osteria Francescana' in Italy has been declared as the best restaurant in the list.
Summary:
A 12-year-old boy died on the spot after he was allegedly shot in the head for plucking mangoes at an orchard in Bihar's Khagaria on Thursday.
Summary:
The Uttar Pradesh Police has apologised after a picture showing a mob dragging a lynching victim in the police's presence went viral.
Summary:
Thirty-one elderly couples and two others in Delhi have been duped by a tour operator who promised them a five-night trip to Dubai for â¹34,800 per person.
Summary:
He used to harass his parents but nobody expected him to kill them so mercilessly, locals said.
Summary:
Congress leader Saifuddin Soz in his upcoming book has agreed with Pakistan's former President Pervez Musharraf's assessment that if Kashmiris were given a chance to exercise free will, they would prefer to be independent.
Summary:
The Uttarakhand High Court has directed the state government to stop "obscene, nude and semi-nude posters" of films from being put on display in public places.
Summary:
Kerala CM Pinarayi Vijayan's office has claimed that PM Narendra Modi's office has turned down the CM's request for a meeting for the fourth time in a row.
Summary:
The girl revealed that her father, who is a farmer, has been sexually abusing her for many years.
Summary:
The Centre may reportedly deploy National Security Guard (NSG) commandos, also known as Black Cats, for anti-terror operations in Jammu and Kashmir, which has now been placed under Governor's rule.
Summary:
Actor Akshay Kumar, while speaking about female-driven films in the recent times, said, "It's time the industry as a whole started giving that respect to our actresses." "A film isn't complete without a hero.
Summary:
Mumbai Police used a dialogue from the upcoming movie 'Dhadak' to send across a traffic advisory on Twitter.
Summary:
Vrsaljko was responding to Argentina coach Jorge Sampaoli's comments which suggested Argentina dominated.
Vrsaljko slammed Sampaoli saying "I don't know what game he watched.
Summary:
Portugal captain Cristiano Ronaldo revealed his goatee is result of a joke with his teammate before the World Cup match against Spain where he said, "If I score tomorrow I would leave it for rest of the tournament".
Summary:
After Sri Lankan captain Dinesh Chandimal was suspended for one match over ball-tampering in the Windies Test, he, along with the coach and manager, have admitted to breaching "conduct that is contrary to the spirit of the game".
Summary:
Summary:
Nine European Union (EU) states will form a rapid response team within the framework of the PESCO agreement to counter cyber attacks.
Summary:
Saudi Arabia has arrested two women's rights activists and imposed a travel ban on several others ahead of lifting the ban on women's driving in the kingdom, the Human Rights Watch has said.
Summary:
Croatia on Thursday defeated Argentina 3-0 in a Group D fixture to advance to the next round of the 2018 FIFA World Cup. Croatia are through to the knockout phase of a World Cup for the first time since 1998.
Summary:
Krzanich resigned after the company learned that he had a past consensual relationship with an Intel employee.
Summary:
Karnataka Chief Minister HD Kumaraswamy is using a customised Range Rover SUV that is fitted with special shock absorbers and costs nearly â¹1.5 crore.
Summary:
However, gene-edited animals are banned from the food chain in Europe, scientists noted.
Summary:
A 73-year-old woman fell unconscious during the International Yoga Day event in Dehradun that was attended by PM Narendra Modi, following which she was rushed to a hospital where she died during the treatment.
Summary:
The residence of Shivpal Singh, the CBI judge who convicted former Bihar Chief Minister Lalu Prasad Yadav in the fodder scam, was robbed on Wednesday night.
Summary:
Summary:
The Mizoram government did not participate in the International Yoga Day event on Thursday.
The Yoga Day event has been dubbed 'anti-Christian' by Mizoram religious groups.
Summary:
Merkel and other leaders urged Trump to sign the G7 joint communique and criticised him for imposing import tariffs.
Summary:
The TIME magazine in its latest edition slammed US President Donald Trump over his administration's recently-reversed policy of separating families of illegal migrants.
Summary:
Transactions through the Unified Payments Interface (UPI) reached a new high with over 10 million transactions being conducted through the platform on Wednesday.
Summary:
The Indian Hotel Company, which runs the Taj hotel chain, has won the bid for a 33-year lease of The Connaught Hotel in Lutyens' Delhi.
Summary:
The trader placed $1.16 billion worth orders and suffered $1.16 million loss before realising the trades were live.
Summary:
Praising his son Ranbir Kapoor's girlfriend Alia Bhatt, Rishi Kapoor said, "I admire [her for taking] up challenging roles like in 'Highway' and 'Raazi'.
Summary:
With the win, France advanced to the second round of the World Cup and eliminated the South American side.
Summary:
Notably, England have now won eight of the nine ODIs they have played against Australia in 2018.
Summary:
The 26-year-old batsman revealed that the couple took "immense care" of him when he felt "miserable and depressed" after a "terrible performance".
Summary:
India will play as many as 102 international matches at home in the next cycle.
Summary:
A group of nine Google engineers refused to work on a security feature called "air gap" to help win military contracts, earlier this year.
Summary:
US-based startup Creator has unveiled a robot-run restaurant which makes burgers, priced at $6 each.
Summary:
A 20-year-old Odisha woman was allegedly held captive and raped by four men for 12 days before she managed to escape on Tuesday.
Summary:
The National Human Rights Commission (NHRC) on Wednesday issued notices to the Centre, the Haryana government, and the Rajasthan government over the deforestation in the Aravalli hills.
Summary:
Indian Naval Chief Admiral Sunil Lanba among other Navy personnel on Thursday performed Yoga to commemorate International Yoga Day. While some Navy personnel performed exercises on the deck of the decommissioned vessel "INS Viraat" in Mumbai, some conducted Yoga activities inside submarines.
Summary:
The Odisha government has issued a show cause notice to a school for allegedly flouting its order to extend summer vacations due to the heat wave.
Summary:
Three elephants were rescued from a 17-foot-deep well within six hours in Tamil Nadu on Wednesday.
Summary:
Days after BJP ended its alliance with PDP in the Jammu and Kashmir government, former Chief Minister Omar Abdullah said, "The PDP and BJP have been watching Bollywood movies for political strategy.
Summary:
The Income Tax department has reportedly launched a probe into the acquisition of ICICI Bank CEO Chanda Kochhar's family residence in Mumbai.
Summary:
He started worshipping Trump after an Indian software engineer was killed in a hate crime.
Summary:
Students at the Government High School in Tamil Nadu's Veliagaram created a barrier and refused to let their 28-year-old English teacher leave after they found out about his transfer.
Summary:
A man named Dedrick D Williams was arrested on Wednesday in connection to the death of 20-year-old rapper Jahseh Onfroy, also known as XXXTentacion.
Summary:
At the FIFA World Cup, Germany's Mario Gomez uses only the far-left urinal before a match, as a superstition.
Summary:
AAP MLA Amarjit Singh Sandoa was injured after he was allegedly attacked by sand mafia "goons" in Punjab's Ropar when he and his security personnel were visiting an illegal sand mining site on Thursday.
Summary:
Indian-American surgeon Atul Gawande was on Wednesday appointed the CEO of Amazon's Jeff Bezos, Berkshire Hathaway's Warren Buffett and JPMorgan Chase's new healthcare firm.
Summary:
Weeks after the city faced a severe water crisis, the Shimla Municipal Corporation on Wednesday proposed an annual hike of 10% in water charges in accordance with a government notification of 2015.
Summary:
Karnataka Food and Civil Supplies Minister BZ Zameer Ahmed Khan has sought a Toyota Fortuner for official use instead of the Innova he has been allotted, since the latter is "low level".
Summary:
A government hospital in Maharashtra handed over a dead body to the family of a 50-year-old patient, claiming their relative had passed away.
Summary:
A study on Chinese investments found that it was the lowest in seven years.
Summary:
Syrian child activist Bana Alabed who live-tweeted her experiences in war-torn Syria will be honoured for "defending freedom".
Summary:
Pakistan has not taken any "sustained" or "decisive" action to get Taliban to the negotiating table with the Afghan government, US Principal Deputy Assistant Secretary for South and Central Asia, Alice Wells has said.
Summary:
Summary:
The Vatican has used the abbreviation 'LGBT', which is used to denote the terms lesbian, gay, bisexual, and transgender, in its official document reportedly for the first time.
Summary:
Sikka is considered the architect of HANA, an analytics platform of SAP.
Summary:
Michael Poppe installed the flag on his bicycle and was initially concerned that people would find it "indecent".
Summary:
Benzema had discussed the tape with Valbuena when both were on national duty in October 2015.
Summary:
Argentine legend Diego Maradona scored 'Goal of the Century' four minutes after netting the 'Hand of God' goal against England in 1986 FIFA World Cup quarter-final.
Summary:
Social media major Facebook will redirect users searching for opioids or addiction treatment to a federal crisis helpline, the company has announced.
Summary:
Uber drivers have earned over $600 million in tips in one year in the US and Canada.
Summary:
Summary:
Summary:
An Australian court has sentenced a Kerala woman and her lover to over 20 years in prison for murdering her husband.
Summary:
Congress leader Ramesh Rajora has been booked by police for celebrating Congress President Rahul Gandhi's 48th birthday allegedly in government school premises in Madhya Pradesh without prior permission.
Summary:
Summary:
US National Security Advisor John Bolton has said that his country doesn't need any "advice by the UN or other international bodies" on how to govern itself.
Summary:
India's richest person Mukesh Ambani's daughter Isha Ambani has completed her MBA from the US' Stanford University and received her degree at its 127th Commencement ceremony.
Summary:
Chipmaking major Intel's 58-year-old CEO Brian Krzanich on Thursday resigned after the company was recently informed that he had a past consensual relationship with an Intel employee.
Summary:
Manushi, who is 21 years old, is a medical student.
Summary:
This is almost equal to about â¹385 crore Axis Bank had paid in July 2017 to acquire the startup.
Summary:
"Koko's capacity for language and empathy opened minds and hearts of millions," the foundation said.
Summary:
A woman in her thirties was arrested for shooting at an auto-rickshaw driver after a fight over not giving way in Gurugram on Wednesday.
Summary:
Police claimed the boy was 18 years old and was arrested as part of a bike-lifter gang.
Summary:
Sara Netanyahu, the wife of Israeli PM Benjamin Netanyahu, was charged with aggravated fraud and breach of trust on Thursday over alleged misuse of state funds.
Summary:
After the summit, US President Donald Trump declared North Korea was no longer a nuclear threat.
Summary:
Mossack Fonseca, the offshore law firm at the centre of the Panama Papers leak, had no records of the real owners of 75% of its clients, according to an internal investigation.
Summary:
Mallika, who will also produce the show, will be seen playing the lead role in the Indian version.
Summary:
Speaking about Swara Bhasker's masturbation scene in 'Veere Di Wedding' being trolled, Sonam Kapoor said, "We're not showcasing what [trolls] think is the abla naari...the one who needs to be rescued." "Anything that's uninhibited is a show of strength.
Summary:
Actress Sonam Kapoor has said if and when she has children with her husband Anand Ahuja, they'll have 'Sonam Ahuja' in their name.
While Sonam changed her name to Sonam Kapoor Ahuja, Anand changed his to Anand Sonam Ahuja after they got married.
Summary:
Interestingly, all three of Jedinak's goals in World Cup history have come through penalties.
Summary:
The fans confused the venue city of Rostov-on-Don with Rostov Veliky.
Summary:
After Cristiano Ronaldo scored his fourth goal at the ongoing FIFA World Cup, Portugal coach Fernando Santos said that the five-time Ballon d'Or winner is like "port wine" and gets better with age.
Summary:
Iranian midfielder Saeid Ezatolahi's 62nd-minute goal against Spain was disallowed by video assistant referee (VAR) after being deemed offside, becoming the first goal to be denied by VAR in World Cup history.
Summary:
Afghanistan leg-spinner Rashid Khan took to Twitter to share a video of the place where he started playing cricket.
Summary:
Former Team India chief selector Sandeep Patil has slammed BCCI's new fitness criteria, saying, "I find it very absurd that a player is dropped for failing the Yo-Yo test after being picked in the squad." "What I also find absurd and wrong is that the trainer will decide on these matters.
Summary:
Twitter has suspended the accounts of users who tweeted a link to a story containing the phone number of US President Donald Trump's advisor Stephen Miller.
Summary:
Danish software company Corti has developed an artificial intelligence (AI) system that can detect heart attacks during emergency calls with 93% accuracy rate.
Summary:
A 33-year-old Delhi woman died after falling into a 500-foot-deep valley while taking a selfie at Matheran, a popular hill station near Mumbai, said the police today.
Summary:
Uttar Pradesh BJP MLA Sanjay Kumar has accused power department officials of taking "selective action" and being "soft" on power theft by Muslims.
Summary:
Jammu and Kashmir BJP president Ravinder Raina on Thursday claimed he had been getting death threats from Pakistan for the last two days.
I am a soldier of Bharat Mata and the BJP." He added, "They are desperate and frustrated...
Summary:
A water pipe broke and cold water flowing into the confined space contributed to her death, the coroner reported.
Summary:
First Lady Melania Trump alerted the US Secret Service following Fonda's tweet.
Summary:
The police added the suspect may have links to ISIS and followed instructions shared by the militant group on how to make the bomb.
Summary:
American Airlines asked the US government not to use its planes to transport the migrant children separated from their families.
Summary:
A term insurance plan is one of the safest and cost-effective ways of getting insured.
Aegon life's iTerm plan covers you for 100 years and guarantees 25% payout of the death benefit on diagnosis of any terminal illness.
Summary:
Fifteen members of the same family were killed on their way to a funeral after their SUV was hit by a tractor allegedly carrying illegally mined sand in Madhya Pradesh's Morena.
Summary:
The new Panama Papers leak includes names of Hike CEO Kavin Bharti Mittal, actor Amitabh Bachchan, PVR Cinemas owner Ajay Bijli and Asian Paints promoter Ashwin Dani's son Jalaj Ashwin Dani.
Summary:
A passport officer in Uttar Pradesh's Lucknow was transferred and a probe was ordered after a Hindu-Muslim couple claimed that he humiliated them and asked the man to convert to Hinduism.
Summary:
Summary:
His wife agreed to sit on the machine when Kallakatta assured he has been working with the machine every day for years.
Summary:
Talking about being in love with Alia Bhatt, Ranbir Kapoor said, "When you fall in love, everything's great.
Summary:
Speaking about sexual harassment at workplaces, Huma Qureshi said, "To be honest, sexual harassment at workplace isn't being managed well." "We often have a tendency to...talk against a woman when she speaks out on sexual harassment as if she's the offender, not the man," she added.
Summary:
Peru players also set up a shrine with images of Jesus Christ inside their dressing room, before their game against Denmark.
Summary:
After BJP accused TMC of killing party workers in West Bengal, CM Mamata Banerjee said, "We are not a militant organisation like the BJP." "They are creating fights not only among Christians, Muslims but also among Hindus," the CM added.
Summary:
Italian researchers have found that mild cocaine concentrations in rivers worldwide hinder eels' ability to migrate and reproduce.
Summary:
The Lucknow passport officer, who has been transferred for allegedly humiliating an interfaith couple, has said he asked the woman to get the name 'Shadia Anas' endorsed as it was mentioned on her Nikahnama.
Summary:
Earlier, US hiked tariffs on certain steel and aluminium products which had tariff implication of $241 million on India.
Summary:
He succeeds Jean-Christophe Letellier who, after five years in the role, will take up a new position within L'Oréal Group.
Summary:
"Isco saving this bird's life was the highlight to my first half," a user tweeted.
Summary:
Denmark players paid for a private jet so defender Jonas Knudsen could fly home and see his newborn daughter after the team's win over Peru in 2018 FIFA World Cup on Saturday.
Summary:
Indian fast bowler Mohammad Shami took to Instagram to share a screenshot of himself video chatting with his daughter.
Summary:
On the occasion of fourth International Yoga Day, former Indian cricketer Virender Sehwag tweeted, "Yoga Se Hi Hoga!
Summary:
Tinder's parent company Match Group has acquired a 51% stake in the dating app Hinge, the company announced on Wednesday.
Summary:
IGTV will also allow creators to upload videos directly to the Instagram app, a product manager said.
Summary:
Group admins will reportedly be able to charge up to $29.99 (â¹2,000) per month during the testing phase.
Summary:
A man drove across Mumbai for eight hours with the dead body of his wife in his car after she committed suicide, the police said.
Summary:
At an International Yoga Day event in Mumbai on Thursday, Vice President M Venkaiah Naidu said, "Yoga has nothing to do with religion." He further said, "Yoga adopts a holistic approach towards health and well-being...
Summary:
As many as 800 differently abled people from across India attempted to set a Guinness World Record for 'Largest Silent Yoga Class' on the occasion of International Yoga Day on Thursday in Ahmedabad.
Summary:
A billboard urging liberals to leave has come up in the US state of Texas.
Summary:
A university in the UK's Exeter sent students a quote by Nazi General Erwin Rommel as part of a career advice email.
Summary:
Sistema had sold its Indian mobile telephony business, Sistema Shyam Teleservices, to RCom in return for a 10% stake in October 2017.
Summary:
June 21 marks the beginning of summer in Earth's Northern Hemisphere, referred to as the 'summer solstice', the year's longest day and shortest night.
Summary:
The worker violated the public service law by not concentrating on his work, the waterworks bureau said.
Summary:
The Kerala High Court, while dismissing a petition, refused to categorise the cover of Malayalam magazine 'Grihalakshmi' which showed a woman breastfeeding a baby as obscene.
Summary:
Nazrin Hassan, the CEO of Malaysia-based venture capital firm Cradle Fund, died after one of his two smartphones exploded and caught fire while charging in his bedroom.
Summary:
Chinese social media platform Weibo has blocked all mentions of British comedian John Oliver's name after he ran a 20-minute segment satirising President Xi Jinping on his show 'Last Week Tonight'.
Summary:
Actor Ranbir Kapoor has revealed Shah Rukh Khan used to tell him that he always thought the film 'Dilwale Dulhania Le Jayenge' is "silly".
The 1995 film, directed by Aditya Chopra, starred Shah Rukh and Kajol in lead roles.
Summary:
Fast-food giant Burger King has taken down an advertisement offering a lifetime supply of Whoppers to Russian women who get pregnant by FIFA World Cup players, following criticism.
Summary:
Bengaluru-based food delivery startup Swiggy has raised $210 million in Series G round of funding from Naspers, DST Global, Coatue Management and Meituan-Dianping.
Summary:
Indo-Tibetan Border Police (ITBP) personnel performed 'Surya Namaskar' in a cold desert of Ladakh at an altitude of 18,000 feet on the fourth International Yoga Day. In Arunachal Pradesh, ITBP jawans performed 'River Yoga' in Digaru river.
Summary:
A former head priest of the Lord Venkateswara temple in Tirumala has alleged that Andhra Pradesh CM Chandrababu Naidu had ordered excavation in the temple's kitchen last year to search for ancient treasure.
Summary:
Summary:
A passenger said they were sitting inside the flight for one-and-a-half hours without food or water.
Summary:
US Ambassador to the United Nations Nikki Haley on Wednesday blamed human rights groups for the country's withdrawal from the UN Human Rights Council.
Summary:
Calm down," the priest can be heard saying in French.
The toddler's father can then be seen pulling the child out of the priest's arms.
Summary:
Outgoing Chief Economic Advisor (CEA) Arvind Subramanian has said there is no "magic wand" to solve India's jobs crisis and the country needs to focus on growth, investment and exports.
Summary:
While Kangana earlier worked with Basu in 'Kites', 'Imli' could be Rao's first film with the director.
Summary:
Anupam Kher took to Twitter to reveal that actress Divya Seth Shah will be playing ex-Prime Minister Manmohan Singh's wife Gursharan Kaur in the biopic on Singh titled 'The Accidental Prime Minister'.
Summary:
A video showing a group of England fans giving Nazi salutes and singing Hitler songs in the World Cup host city of Volgograd, where nearly 2 million people died during World War II, has surfaced online.
Summary:
and even more happy to share that we'll have our third child," the 31-year-old tweeted as Uruguay reached the World Cup's knockout stage for the third straight time.
Summary:
Argentina football team captain Lionel Messi's mother, Celia Cuccittini, has said that her son has been deeply affected by criticism of his performances with the national team and he "suffers and cries at times".
Summary:
Notably, the border between Belarus and Russia can be crossed without checks.
Summary:
Iran's Milad Mohammadi has been trolled by football fans after he failed to throw in the ball after attempting a somersault during the dying seconds of the World Cup group match, which saw Spain win 1-0 on Wednesday.
Summary:
Microsoft on Wednesday announced that the company has signed an agreement to acquire the US-based artificial intelligence (AI) startup Bonsai for an undisclosed amount.
Summary:
Summary:
The Pune police also arrested an executive director, and former CMD of the bank.
Summary:
More than 1 lakh people together performed Yoga in Rajasthan's Kota on Thursday to create Guinness World Record on the occasion of International Yoga Day. CM Vasundhara Raje Scindia was present at the venue along with Yoga guru Ramdev, who conducted the yoga session.
Summary:
US President Donald Trump on Wednesday ended the policy of separating immigrant families at the US-Mexico border after public uproar over it.
Summary:
Further, phone jammers were installed where the exam papers were printed to prevent any leak.
Summary:
Ranbir Kapoor said he did over 100 takes for two shots in his debut film Saawariya's song 'Jab Se Tere Naina', which he called the 'towel song'.
Summary:
Speaking about the box-office performance of his 2017 film 'Jagga Jasoos', Ranbir Kapoor said, "The film's failure broke my heart and my bank [account].
Ranbir was a co-producer of 'Jagga Jasoos'.
Summary:
"Kangana shows her dedication towards #Yoga...and encourages everyone to adopt Yoga as a lifestyle and a way to spiritual awakening," the caption read.
Summary:
Hollywood actor George Clooney and his wife, Amal Clooney, have donated $100,000 (â¹68 lakh) to help migrant children who were separated from their families at the US-Mexico border.
Summary:
England Women surpassed the previous highest total of 216/1 scored by New Zealand Women against South Africa Women earlier in the day.
Summary:
After Union Minister Arun Jaitley announced that Chief Economic Advisor Arvind Subramanian will be stepping down, Congress President Rahul Gandhi said, "Captain DeMo is fast asleep.
Summary:
The Narcotics and Affairs of Border (NAB) on Wednesday arrested BJP leader Lutkhosei Zou and six others in Manipur over possession of drugs worth â¹27 crore.
Summary:
The dust storm that shut down NASA's contact with Mars' oldest active rover Opportunity has spread throughout the Red Planet, the US space agency said.
Summary:
A study by American and Chinese researchers has revealed that Tyrannosaurus rex couldn't stick out its tongue like lizards, claiming it is incorrectly shown at theme parks and museums.
Summary:
An interfaith couple, who applied for their passports in Lucknow, was allegedly humiliated and shamed by a passport officer before he had put their applications on hold.
Summary:
Using a forged ID, the accused mailed the museum authority to deposit the amount in his account as an advance for painting a gold-framed portrait of the King.
Summary:
Nixon believed India's military action would set a "bad precedent" and endanger the future of any small country.
Summary:
The US administration has dismissed a third-party role in resolving the Kashmir dispute between India and Pakistan.
Summary:
After killing the child, the accused hid her under dry grass pretending that she was missing and later threw her body in muddy water near his house.
Summary:
Addressing 50,000 Yoga enthusiasts in Uttarakhand on International Yoga Day, PM Narendra Modi said, "Dehradun se Dublin tak, Shanghai se Chicago tak, Jakarta se Johannesburg tak, Yoga hi Yoga hai." "Yoga is India's gift to the world.
Summary:
US President Donald Trump's daughter Ivanka Trump urged him to end family separations on the US-Mexico border, according to reports.
Summary:
A video of Ukrainian female border guards dancing semi-naked on Korean singer Psy's song 'Gentleman' has gone viral.
Summary:
US President Donald Trump on Wednesday said that North Korea has returned the remains of 200 US troops missing from the Korean War, although there was no official confirmation from military authorities.
Summary:
"Welcome to our village wee one," Ardern captioned the picture.
Summary:
In a video showing Warren Buffett visiting a candy store with 'best friend' Bill Gates, Buffett says, "I bought a [pinball] machine for $25 in 1946 and built a small empire out of it." Calling it the best business he was ever in, Buffett added, "I peaked very early in my business career.
Summary:
Senegal-born singer Akon has announced the launch of his cryptocurrency called AKoin, that will be available for sale in two weeks.
Summary:
SBI Managing Director B Sriram has been given additional charge as the CEO and MD of IDBI Bank for a "temporary" period of 3 months.
Summary:
Hiten Tejwani, known for starring in the television show 'Kyunki Saas Bhi Kabhi Bahu Thi', will star with Alia Bhatt, Sanjay Dutt and Aditya Roy Kapur in Karan Johar's production 'Kalank'.
Summary:
Music composer AR Rahman has been appointed as the Brand Ambassador of the Sikkim government, an official notification issued by Chief Secretary AK Srivastava stated.
Summary:
Filmmaker Rajkumar Hirani has said that he definitely wants to make a sequel to his 2009 directorial '3 Idiots'.
Summary:
Summary:
The film is a sequel to 2015 film 'Creed' and the eighth installment in the 'Rocky' film series.
Summary:
After BJP ended its alliance with PDP in Jammu and Kashmir, BJP General Secretary Ram Madhav said the BJP sacrificed its government for "larger national interest." He also added that the BJP is not "abandoning" Kashmir.
Summary:
Following this, Patra said, "You (Digvijay Singh) pointed a finger at millions of Hindus, denigrated them and called them terrorists."
Summary:
Founded in 2012, Calm had raised $1.5 million in seed funding prior to this round.
Summary:
Richard Branson-led Virgin Hyperloop One will invest â¹3,000 crore to build a 15-km-long Hyperloop demonstration track in Pune for the Mumbai-Pune Hyperloop project.
Summary:
Rajasthan has been ranked first by the NITI Aayog among all states after it registered a significant increase in groundwater level due to the water conversation structures built under Chief Minister's Jal Swavlamban Abhiyan.
Summary:
All major newspapers in Jammu and Kashmir left their editorial spaces blank on Tuesday in protest against the killing of 'Rising Kashmir' Editor Shujaat Bukhari in Srinagar.
Summary:
It also revealed smartphone ownership in the country increased from 12% in 2013 to 22% in 2017.
Summary:
A man allegedly poured petrol on his 22-year-old wife inside the premises of a Pune family court after she refused to withdraw a case of Triple Talaq against him.
Summary:
"China has been taking out $500 billion a year out of our country and rebuilding (itself)," the US President added.
Summary:
North Korea has removed anti-US souvenirs sold at gift shops after the improvement in relations between the two countries, according to reports.
Summary:
The US is the world's first country to withdraw from the UN Human Rights Council (UNHRC).
Summary:
British singer-songwriter Robbie Williams has revealed he flipped his middle finger to the camera at the 2018 FIFA World Cup opening ceremony to signal that there was one minute to go until kick-off.
I don't know what I'm going to do at any time," Williams added.
Summary:
Spain defeated Iran 1-0 on Wednesday to register their first win at the 2018 FIFA World Cup. With the victory, the 2010 champions are now level with Portugal with four points in Group B.
Summary:
Forward Luis Suárez scored in his 100th international appearance as Uruguay defeated Saudi Arabia in a Group A fixture at the 2018 FIFA World Cup on Wednesday.
Summary:
Reacting to Senegal coach Aliou Cissé's celebration during the team's victory against Poland at the 2018 FIFA World Cup, a user tweeted, "Cissé is me when there's free food at work." Other users wrote, "Me when I wake up early but realise I've 10 more minutes of sleep before the alarm rings," and "Cissé's like: 'Celebrate.
Summary:
His goal helped Portugal register their first victory in the tournament.
Summary:
Former Team India physio John Gloster has said the 16.1 benchmark for the Yo-Yo fitness test would've been "physically unattainable" for some cricketers, which doesn't mean they would be exempted from selection.
Summary:
Facebook is planning to include autoplay video ads in its Messenger app which will automatically start playing while users scroll through messages, the company has confirmed.
Summary:
Actor-turned-politician Kamal Haasan on Wednesday met Election Commission officials to formally register his party Makkal Needhi Maiam.
Summary:
Shiv Sena chief Uddhav Thackeray has said the next Maharashtra Chief Minister will be from Shiv Sena, adding, "I am determined and moving ahead with this resolve." He said Sena would not join the third front and also criticised the BJP.
Summary:
US-based venture capital (VC) firm Canaan Partners has assigned $20 million of its $800-million fund to two of its youngest employees, Adina Tecklu and Hootan Rashidifard to make startup investments.
Summary:
A 38-year-old Muslim cattle trader was lynched and a 65-year-old was seriously injured allegedly after a mob attacked them on the suspicion of cow slaughter in Uttar Pradesh's Hapur.
Summary:
BJP leader S Ve Shekher was granted bail two months after he shared a Facebook post claiming women journalists compromise themselves.
Summary:
A man in Madhya Pradesh's Ambah has been sentenced to life imprisonment for raping a 62-year-old woman in 2016.
Summary:
Expressing shock over Madhya Pradesh Governor Anandiben Patel's remark of PM Modi being unmarried, his estranged wife Jashodaben on Wednesday said, "He is married...He is Ram for me." She added that while filing papers for Lok Sabha elections in 2014, PM Modi himself declared his marital status and mentioned her name.
Summary:
The constable was posted at Kalyan police station in Mumbai.
Summary:
The poster of the John Abraham starrer 'Satyamev Jayate' has been unveiled.
Summary:
Japan's Princess Hisako has become the first member of the Imperial family to visit Russia since 1916.
Summary:
China's billionaire entrepreneur and e-commerce major Alibaba's Co-founder Jack Ma has said that Malaysia's current PM Mahathir Bin Mohamad inspired him to start Alibaba 20 years ago.
Summary:
Summary:
Based in Boston, the new venture is meant to help the companies get their healthcare costs down.
Summary:
Elon Musk-led electric carmaking company Tesla on Wednesday sued former employee Martin Tripp and alleged him of stealing gigabytes of confidential data.
Summary:
Modifying a 2010 order in a 17-year-old case, the Madras High Court said that cruelty against women in the name of 'ceremonies' can never be justified.
Summary:
The UNHCR revealed in its annual Global Trends report that the US received the largest number of asylum requests, while the highest number of claims were filed by Afghan nationals.
Summary:
Vedanta on Wednesday warned that an acid leak from it's Sterlite copper plant in Tamil Nadu's Tuticorin was severe and inaction could lead to serious environmental consequences.
Summary:
A 17-year-old differently-abled Dalit boy was allegedly thrashed and given electric shocks by upper caste men.
Summary:
Questioning Piyush Goyal's status as the 'Interim Finance Minister', BJP Rajya Sabha MP Subramanian Swamy asserted that there was no such provision.
Summary:
The law states that anyone "facilitating illegal immigration" in Hungary will be sentenced to one year in prison.
Summary:
Disney also plans to take on Fox's $13.8 billion net debt, which would increase the transaction value to $85.1 billion.
Summary:
Airtel said the fact that Gaganjot, the next available advisor, didn't check his colleague's religious identity was misunderstood as "heeding to a discriminatory request".
Summary:
Reacting to the mixed response the trailer of her debut film 'Dhadak' received, Janhvi Kapoor said, "I hope they (people who did not like the trailer) change their mind after watching the film." She also thanked those who have appreciated the trailer.
Summary:
Summary:
Summary:
Salman Khan said that even though the films he did in his early career did not earn a lot of money at the box office, producers still profited from them.
Summary:
Some bars and restaurants in the Russian capital of Moscow have claimed that they are running low on beer due to spike in demand amid the ongoing 2018 FIFA World Cup.
We just didn't think they'd only want beer," he added.
Summary:
Pictures of Poland football team captain Robert Lewandowski's wife Anna Lewandowska consoling her husband after Poland's 1-2 defeat to Senegal at the 2018 FIFA World Cup have gone viral.
Summary:
Dravid, who made his international debut on June 20, 1996, faced 31,258 balls in Tests, setting the record for most balls faced by a batsman.
Summary:
"(I)t's no ones business how & where I spend my time.
I'm entitled to have time off as long as I follow protocol," he wrote.
Summary:
In case of Australia, there was a leadership group involved which delegated youngster Cameron Bancroft to change the ball condition against South Africa.
Summary:
Microsoft employees have penned a letter to CEO Satya Nadella asking the company to end its $19.4-million contract with the US' immigration agency in light of the child separation policy.
Summary:
South Korean crypto exchange Bithumb has said that hackers stole about $31.5 million worth of cryptocurrencies.
Summary:
If it is not possible to restore the Constitutional machinery within the six-month period, the President's rule is implemented.
Summary:
Gupta has been accused of taking a 17-year-old girl to his home and raping her after spiking her food and drink.
Summary:
Summary:
Referring to US President Donald Trump's border separation policy, Google CEO Sundar Pichai has urged the "government to work together to find a better, more humane way".
Summary:
We are counting every bullet which killed our workers." Accusing TMC of trying to wipe out every sign of opposition, he added, "we will continue our democratic fight till we end the misrule of the TMC government."
Summary:
However, J&K has its own Constitution that provides for an intermediary statutory layer in the state.
Summary:
Porsche also said it will partner with Rimac on the development of future electric-car technologies.
Summary:
The unilateral ceasefire by Indian forces in Jammu and Kashmir during Ramadan had to be called off because terrorists continued their attacks, Army chief General Bipin Rawat said on Wednesday.
Summary:
The Centre is planning to scale up its operations against militants in Jammu and Kashmir under the rule of Governor NN Vohra, officials have said.
Summary:
The Gujarat government has prescribed seven years' imprisonment for teasing or illegally attracting the attention of Asiatic lions at the Gir National Park and Sanctuary.
Summary:
A four-member committee has concluded that rats are responsible for the collapse of a flyover's wall that took place last month in Punjab's Ludhiana.
Summary:
Chief Economic Adviser Arvind Subramanian, who resigned due to personal reasons, thanked Finance Minister Arun Jaitley calling him a "dream boss".
I will always be committed to serving the country in future," Subramanian added.
Summary:
Employees of Vijay Mallya's Kingfisher Airlines urged PM Narendra Modi and External Affairs Minister Sushma Swaraj to bring back the "fugitive" as he has "blood on his hands." In an open letter, they questioned why Mallya's dues to banks were given preference over unpaid salaries.
Summary:
The Pune Police on Wednesday arrested Bank of Maharashtra MD & CEO Ravindra Marathe along with executive director RK Gupta in the â¹3,000 crore DSK Group loan fraud case.
Summary:
Reports added that the film's shoot is likely to begin next year.
Summary:
Kareena Kapoor, Madhuri Dixit and Jacqueline Fernandez performed at the finale of Miss India 2018.
Summary:
Talking about the box-office success of his recent release 'Race 3', actor Bobby Deol said, "If (the film) was so bad, it wouldn't have worked commercially." Bobby added that he is very happy that people appreciated his work and said he wants to continue doing such films.
Summary:
Overall, Ronaldo is now the second highest international goal-scorer.
Summary:
Senegal's M'Baye Niang, who had been off the field for treatment, scored a goal within just seven seconds off Poland's back-pass after he was let in by assistant referees during a group stage match on Tuesday.
Summary:
England cricket team knocked 481 in 50 overs.
The test team can't make that in five days.
Summary:
After Australia suffered their worst ODI defeat against England, Australian captain Tim Paine said it was the "hardest day's cricket" he has ever had in his life.
Summary:
Facebook has announced new features that will allow creators to add polls as well as quizzes and challenges in Live videos.
Summary:
The AIIMS was announced in Union Budget 2015-16 but faced some delays due to location of the institute.
Summary:
Spenser Rapone wore a t-shirt with an image of socialist revolutionary Che Guevara to his graduation in 2016 and posted an image showing "Communism Will Win" written on his cap.
Summary:
South Korean President Moon Jae-in said in an interview that North Korean leader Kim Jong-un is a "very polite and outspoken person".
We had long, frank conversations with him," the South Korean President added.
Summary:
A news anchor broke down while reading a report on the detention of migrant children in the US and their forcible separation from parents.
Summary:
US-based bank Goldman Sachs has said it will invest $500 million in companies led or founded by women.
Summary:
Arvind Subramanian will step down as the Chief Economic Advisor, Union Finance Minister Arun Jaitley said in a Facebook post on Wednesday.
Summary:
A 27-year-old woman from Punjab has travelled over 1,200 km to meet 34-year-old Ujjain SP Sachin Atulkar because of his looks.
Summary:
Summary:
The title song of Janhvi Kapoor and Ishaan Khatter starrer 'Dhadak' has been released.
Summary:
Talking about US President Donald Trump's border separation policy, Apple CEO Tim Cook has said that separating children from parents is "inhumane and it needs to stop".
Summary:
Talking about the BJP's decision to pull out from the J&K coalition government, the RSS said the end of the BJP-PDP alliance was inevitable.
Summary:
AIADMK leader and Tamil Nadu Minister Dindigul Sreenivasan recently said that 18 disqualified party MLAs who supported TTV Dhinakaran went to "Mysuru and America" with the help of money "robbed by Amma (late J Jayalalithaa)".
Summary:
Jammu and Kashmir on Wednesday came under Governor's rule for the fourth time in a decade since Governor NN Vohra assumed the office on June 25, 2008.
Summary:
BJP leader and former Deputy CM of J&K Kavinder Gupta on Wednesday said the Centre may appoint a new Governor to replace NN Vohra in the state after the Amarnath yatra.
Summary:
Former Deputy Governor of Reserve Bank of India, R Gandhi, has joined digital payments major Paytm as an Advisor.
Summary:
The Delhi Police reportedly questioned self-styled godman Daati Maharaj, accused of rape by a woman follower, for seven hours and asked him around 200 questions.
Summary:
A Delhi-based assistant manager at Bank of America has been fired by the company after he sent abusive messages to a journalist on Facebook Messenger.
Summary:
Army Chief General Bipin Rawat on Wednesday said that the imposition of Governor's rule in Jammu and Kashmir won't affect the Army's operations.
Summary:
Uttar Pradesh Health Minister Sidharth Nath Singh has written to the Principal Secretary to CM Yogi Adityanath, seeking allotment of a bungalow either vacated by former CM Akhilesh Yadav or his father Mulayam Singh Yadav.
Summary:
After Prime Minister Narendra Modi said earning â¹200 by selling 'pakodas' is better than being unemployed, a Congress worker in Gujarat's Vadodara started a 'pakoda' stall as a challenge and now has 35 franchises.
Summary:
Notably, it is illegal in Queensland to take, store, transport and use in IVF a man's sperm, without written consent.
Summary:
Iceland footballer Rurik GÃÂslason, who had around 30,000 Instagram followers before his World Cup appearance, saw his following surpass his country's 330,000-strong population after being subbed in against Argentina on Saturday.
Summary:
Actress Priyanka Chopra, while talking about her upcoming book titled 'Unfinished', said, "The flavour of the book will be honest, funny, spirited, bold, and rebellious, just like me." The book will be a collection of personal essays, stories and her observations.
Summary:
Talking about Portugal and Real Madrid forward Cristiano Ronaldo, his former teammate Patrice Evra said, "I will give advice...when Cristiano invites you for lunch, just say no." The Frenchman revealed he once visited Ronaldo's place for lunch and it felt like "a training session".
Summary:
Indian cricketer KL Rahul, in a recent episode of What The Duck, said it is "very scary" to hang out with all-rounder Hardik Pandya.
Summary:
Union Minister Piyush Goyal on Wednesday said, "I received information that Congress President (Rahul Gandhi) took Rohith Vemula's family to stages and asked them to make statements." "It should be exposed what was the intention behind it and what was offered," he added.
Summary:
Italian grocery delivery startup Supermercato24 has raised $15 million in a Series B funding round led by FII Tech Growth.
Summary:
A plant known as giant hogweed, whose sap can cause third-degree burns and permanent blindness, has spread across several US states and was spotted in Virginia for the first time.
Summary:
A Delhi-bound Air India flight was on Wednesday forced to return to the Chennai airport after it suffered a bird hit.
Summary:
At least 52 Indian asylum seekers are reportedly being held at a federal prison centre in the US state of Oregon for illegally crossing into the country from Mexico.
Summary:
The railways authority in Mumbai has decided to run special 'muck' trains on a daily basis to collect the garbage lying along the tracks.
Summary:
A Mumbai court has asked the Tata Institute of Social Sciences' students, who have been protesting for the past four months, to carry out protests at least 100 metres away from the campus boundary.
Summary:
Team India Former Captain MS Dhoni's wife Sakshi Dhoni has reportedly applied for an arms license citing threat to her life.
Summary:
The robot was also used to insert a needle under the retina to dissolve blood in three patients, who experienced improved vision afterwards.
Summary:
Summary:
Osteria Francescana in Italy's Modena has topped the 'World's 50 Best Restaurants' list for the second time.
Summary:
Meanwhile, India aims to increase its public health expenditure to 2.5% of the GDP by 2025.
Summary:
Medicines, food, and other relief material was provided to the people who have taken shelter at railway platforms.
Summary:
Defence Minister Nirmala Sitharaman on Wednesday met family members of Army jawan Aurangzeb, who was abducted and killed by terrorists last week in Jammu and Kashmir's Pulwama district.
Summary:
Summary:
Newly appointed Madhya Pradesh Cabinet Minister Swami Akhileshwaranand has appealed to CM Shivraj Singh Chouhan to form a cow ministry in the state, claiming he's "getting full support from the public".
Summary:
Railway Minister Piyush Goyal on Tuesday said that the Indian Railways will become a net zero-carbon emitter by 2030 with the current action plans for 100% electrification and renewable strategies.
Summary:
Saudi Arabia will reportedly hold bidding among foreign engineering firms in order to dig a canal that will separate it from Qatar, turning the neighbouring state into an island.
Summary:
The US police have found over 500 guns inside the home of a convicted felon following a tipoff from a neighbour.
Summary:
A video of the incident showed protestors calling Nielsen a "villain" and chanting "shame".
Summary:
Summary:
It is the first major attack by the militant group since the Eid ceasefire.
Summary:
Over â¹2 lakh was withdrawn before the police were called to stop customers from withdrawing more cash.
Summary:
Janhvi Kapoor, while talking about how her sister Khushi Kapoor cried at the trailer launch of 'Dhadak', said, "In my entire life, I've probably seen her crying only two...three times." "Both of us were in shock...we just hugged each other, and she said, 'I don't know why I am crying'," added Janhvi.
Summary:
A Colombian reporter was sexually harassed while broadcasting live from the FIFA World Cup in Russia.
When we went live, this fan took advantage of the situation," she said.
Summary:
Japanese fans at the FIFA World Cup in Russia stayed behind after their team's 2-1 win over Colombia to clean up the mess they had created during the match, receiving praise on social media.
Summary:
Summary:
The Central African Republic (CAR) has denied that six-time Grand Slam champion Boris Becker is one of its official diplomats, adding that the former world number one's "fake" diplomatic passport won't give him diplomatic immunity from bankruptcy proceedings in the UK.
Summary:
Samajwadi Party chief Akhilesh Yadav on Tuesday said that they cannot "annoy" anyone in politics and are ready to make alliances with other parties to take on the BJP in the 2019 polls.
Summary:
During a couple's counselling session at a police station in Maharashtra on Tuesday, the families of the couple got into a fight and started attacking each other with swords and knives.
Summary:
The police said that more than 50 people were rescued from the hotel and shifted to the hospital.n
Summary:
The board also seized five trucks carrying 50 tonnes of plastic from Daman.
Summary:
The Delhi government is planning to restore lesser known monuments, including the Mughal era monument Kaushal Minar also known as Chhota Qutub Minar.
Summary:
Notably, the state government had ordered the plant's shutdown after 13 anti-Sterlite protestors died in police firing.
Summary:
Tamil Nadu's Anukreethy Vas was named Miss India at the 55th Femina Miss India 2018.
Miss World 2017 Manushi Chhillar, who won the title last year, crowned Anukreethy, who will go on to represent India at Miss World.
Summary:
BJP General Secretary Ram Madhav had cited rising violence and discrimination against people belonging to Jammu as reasons to end the alliance.
Summary:
Miss India 2018 Anukreethy Vas is a 19-year-old Chennai Loyola College student who represented Tamil Nadu at the pageant.
Summary:
Jammu and Kashmir Governor NN Vohra informed CM Mehbooba Mufti that the BJP had quit the alliance with Mufti-led PDP, minutes before the BJP held a press conference to make the announcement.
Summary:
Canada's upper house of parliament on Tuesday voted 52-29 in favour of a bill to legalise recreational marijuana, becoming the first G7 nation to legalise cannabis.
Summary:
The US on Tuesday withdrew from the UN Human Rights Council (UNHRC) citing anti-Israel bias.
Summary:
The fastest red card in FIFA World Cup history came in the tournament's 1986 edition when Uruguay's defender Jose Batista was sent off after just 56 seconds for a rough tackle on Scotland's Gordon Strachan during a group stage match.
Summary:
Actor Ranbir Kapoor has said that he is a privileged one, who has had it easy in life, while there are many who are way more talented than him.
Summary:
Maharashtra State Commission for Protection of Child Rights issued a notice to Congress President Rahul Gandhi for disclosing the identities of two Dalit children who were paraded naked for swimming in a well.
Summary:
After BJP pulled out of its alliance with PDP in Jammu and Kashmir on Tuesday, Uttar Pradesh CM Yogi Adityanath said BJP ended its alliance for the benefit of the country and the state.
Summary:
After submitting her resignation to Jammu and Kashmir Governor NN Vohra, former CM Mehbooba Mufti on Tuesday said that muscular policy will not work in the state and that reconciliation is the key.
Summary:
Jammu and Kashmir Governor NN Vohra has sent a report to President Ram Nath Kovind for the imposition of Governor's rule in Jammu and Kashmir following the BJP-PDP split.
Summary:
The Haryana government has decided to introduce a scheme under which school children will be given â¹50 for planting trees every six months for a period of three years.
Summary:
The Indian embassy in France celebrated the upcoming Yoga Day by organising an event at the Eiffel Tower in Paris on Sunday.
Summary:
As many as 20 houses were burned down as two petrol tankers overturned and caught fire in Chikmagalur's Kaduru in Karnataka on Tuesday.
The fire reportedly also caused one man to burn alive and left two others injured.
Summary:
Defending his administration's policy of separating children from parents entering the US illegally, President Donald Trump has said, "You have to take children away to prosecute parents." Nearly 2,000 children have been separated from their parents at the US-Mexico border between April 19 and May 31.
Summary:
After US President Donald Trump ordered the Defence Department to create the 'Space Force', Russia has warned the US against deploying weapons of mass destruction in space.
Summary:
India was the 11th largest HNWI market in the world in 2017, the report added.
Summary:
Actress Karishma Tanna is seen in a new still along with Ranbir Kapoor and Vicky Kaushal from 'Sanju', the upcoming biopic on actor Sanjay Dutt.
Summary:
Kashmera Shah, who became the mother to twin boys through surrogacy, said, "Not everybody who opts for surrogacy is doing that to save their figure.
Summary:
Hosts Russia on Tuesday defeated Egypt in a Group A fixture to register their second straight victory in the 2018 FIFA World Cup. Russia will advance to the Round of 16 providing Saudi Arabia fail to beat Uruguay in Wednesday's Group A fixture.
Summary:
Blatter is currently serving a six-year ban from football over financial misconduct during his 17-year rule.
Summary:
England on Tuesday registered the highest-ever ODI total (481/6) in men's cricket history and defeated Australia by 242 runs to take an unassailable 3-0 lead in the five-match series.
Summary:
Sri Lankan captain Dinesh Chandimal has been suspended for the third Test against Windies by the ICC after being found guilty of changing the condition of the ball during the second Test.
Summary:
Peer-to-peer file sharing platform BitTorrent has been acquired by the cryptocurrency startup Tron's Founder Justin Sun for a reported sum of $140 million in cash.
Summary:
Aspirants of Uttar Pradesh Police constables recruitment exam allegedly vandalised the AC coaches of Chauri Chaura Express train after it left Gorakhpur station on Tuesday.
Summary:
The UP government had assured action after Patanjali threatened to shift the food park.
Summary:
England recorded the highest-ever ODI total in men's cricket history by scoring 481/6 against Australia at the Trent Bridge stadium in Nottingham on Tuesday.
Summary:
The PDP has 28 seats, Congress has 12 while National Conference has 15 and independent candidates hold 7 seats in J&K assembly.
Summary:
Spanish engineer Sergi Santos, the creator of sex robot Samantha, has claimed the robot has been fitted with a "dummy mode" which will allow her to say no to 'unwanted' human touch.
Summary:
Parameswaran, a former McKinsey executive, joined Uber India in January last year as head of operations.
Summary:
This makes Bezos worth roughly $49 billion more than Bill Gates and about $60 billion more than Warren Buffett.
Summary:
The probe also gave a clean chit to District Collector Swatantra Singh and Superintendent of Police OP Tripathi who were suspended after the incident.
Summary:
Calling the Madhya Pradesh government's amendment to provide houses and salaries to former chief ministers 'unconstitutional', the MP High Court on Tuesday directed all former state chief ministers to vacate government residences within a month.
Summary:
India did not vote in favour of the Maldives for a non-permanent seat at the UN Security Council and also worked to ensure that it lost in the elections, reports said.
Summary:
The UK royal family will witness its first same-sex wedding, with Queen Elizabeth II's cousin Lord Ivar Mountbatten getting married to his partner James Coyle later this year.
Summary:
In May, McAfee revealed that he charged $500,000 (â¹3.4 crore) per tweet to promote ICOs.
Summary:
The CBI alleged that AirAsia bribed government officials to change rules to get overseas flying rights.
Summary:
The US, Japan, Germany and China accounted for 61.2% of the world's high net worth individuals.
Summary:
Filmmaker Vishal Bhardwaj has said that he wants Priyanka Chopra to star in his film, which will be an adaptation of William Shakespeare's play 'Twelfth Night'.
He further said, "When you are with her, you don't feel that Priyanka is a star.
Summary:
Talking about her mother Sridevi's sudden death, Janhvi Kapoor said her upcoming film 'Dhadak' saved her in many ways.
Summary:
Yogiraj Dabhadkar, a BJP corporator in Mumbai's Brihanmumbai Municipal Corporation (BMC), has proposed to name a flyover in Andheri after late actress Sridevi.
Summary:
Actor Benicio Del Toro, who starred as 'The Collector' in 'Avengers: Infinity War', said that he believes his character is still alive.
Earlier, while appearing on the talk show 'The Late Show with Stephen Colbert', the host asked, "You appear to die (in Avengers: Infinity War).
Summary:
Producer Ramesh Taurani has confirmed that actor Salman Khan will be a part of 'Race 4'.
Summary:
The match was Senegal's first in World Cup since 2002 and Poland's first since 2006.
Summary:
He added that his coach didn't allow him to bat at higher in his first domestic tournament and was asked to focus on bowling.
Summary:
World's top-ranked T20I bowler Rashid Khan, in the recent episode of Breakfast with Champions, revealed that he didn't like Shane Warne as he used to bowl slow.
Summary:
Five-time major championship-winning golfer USA's Phil Mickelson was handed a two-stroke penalty at the US Open after he jogged and hit a moving ball to change its direction towards the hole.
Summary:
Mocking PM Narendra Modi's foreign visits, Shiv Sena chief Uddhav Thackeray said, "Now, Modi will start tours to other planets." He added that the BJP "spread lies" and made "false promises" to people to win the 2014 general elections.
Summary:
Uber is testing a feature that allows users to wait longer in exchange for cheaper rides, a company spokesperson has said.
Summary:
Meghan Markle's father Thomas Markle has revealed in an interview that his son-in-law, UK's Prince Harry, asked him to give US President Donald Trump "a chance" and was "open to the experiment of Brexit".
Summary:
Crocodiles are considered sacred in the Bazoule village of Burkina Faso and are given a funeral similar to humans.
Summary:
This is Kim's third visit to China since March, when he made his first trip abroad since assuming power.
Summary:
Nearly 2,000 children of migrants crossing into the US illegally have been separated from their parents or guardians over a period of six weeks.
Summary:
Several Facebook users have been uploading the entire film on the social media networking site.
Summary:
The 'all-you-can-eat' offer let guests eat anything at the restaurant for an entire month by paying â¹1,300.
Summary:
Australian singer-actress Delta Goodrem, the ex-girlfriend of singer Nick Jonas, has said that she feels she can not compete with Priyanka Chopra, a "hottie from Hollywood whose best friends are royals", as per reports.
Summary:
'Black Panther' actor Chadwick Boseman gave away his Best Hero award at the MTV Movie and TV Awards to James Shaw Jr., who disarmed a gunman during the Waffle House mass shooting in Tennessee, USA.
Summary:
The two-pointed military hat was reportedly recovered from the battlefield after Napoleon's defeat at Waterloo in 1815.
Summary:
SurveyMonkey, a 19-year-old US-based survey company previously run by Facebook COO Sheryl Sandberg's late husband Dave Goldberg, has confidentially registered for an initial public offering.
Summary:
Summary:
Former Gujarat Chief Minister and Madhya Pradesh governor Anandiben Patel has claimed that Prime Minister Narendra Modi never got married, but he still understands the problems women face during childbirth.
Summary:
Summary:
Talking about the BJP's decision to pull out of the J&K government, Delhi CM Arvind Kejriwal tweeted, "After ruining it, BJP pulls out of Kashmir." "Didn't BJP tell us that demonetisation had broken the back of terrorism in Kashmir?
Summary:
The advocate of the accused also claimed the magistrate didn't order a medical examination of the accused despite being informed about the torture.
Summary:
Self-styled Godmen or 'Babas' who are involved in illegal activities should be hanged to death for violating the limits of their work, Baba Ramdev has said.
Summary:
A former employee of the US' intelligence agency CIA faces 135 years in prison after he was charged with stealing and leaking classified information and passing it to the WikiLeaks.
Summary:
The Election Commission of Pakistan has rejected the nomination papers filed by Pakistan Tehreek-e-Insaf (PTI) chief Imran Khan for the upcoming general elections.
Summary:
One out of every 110 people in the world today is displaced and the number of displaced people globally reached a record high of 68.5 million in 2017, according to the UN refugee agency.
Summary:
Kraft Heinz is considering a sale of children's drink brand Complan in India, which could fetch about $1 billion, according to reports.
Summary:
Most of her fortune comes from the ownership of The Oprah Winfrey Show, which ran for 25 years.
Summary:
UK's Financial Reporting Council has said that KPMG, one of the 'Big Four' accounting firms, has shown an "unacceptable deterioration" in auditing standards.
Summary:
Kangana Ranaut will be collaborating with Anurag Basu for his next film 'Imali'.
Anurag launched Kangana in Bollywood with the 2006 film 'Gangster'.
Summary:
Japan on Tuesday became the first-ever Asian nation to defeat a South American country in World Cup history.
Summary:
A plane carrying Saudi Arabia's 2018 FIFA World Cup squad caught fire during a flight from Moscow to Rostov-on-Don on Monday.
Summary:
Interestingly, the total is 14 runs more than the highest-ever ODI total of 444/3, achieved by England against Pakistan in 2016.
Summary:
Summary:
Brex does not require proof of cash flow or a security deposit to issue cards.
Summary:
Chinese smartphone maker Xiaomi has reportedly lowered its likely valuation to between $55-70 billion following its decision to delay its mainland share offering until its Hong Kong IPO.
Summary:
Union Defence Minister Nirmala Sitharaman's husband and Andhra Pradesh government's Communications Advisor Parakala Prabhakar on Tuesday resigned from his post, claiming the Opposition is "using his existence in the government to mock" the government.
Summary:
Delhi CM Arvind Kejriwal today called off the sit-in protest at Lieutenant Governor's house over the alleged IAS officers' strike after 9 days.
Summary:
The cut-out can be seen drinking in pubs and lying passed out.
Summary:
Ranbir Kapoor revealed that his father Rishi Kapoor once told Sanjay Dutt not to spoil him as he gifted Ranbir a Harley-Davidson bike on his birthday.
Summary:
IBM on Monday unveiled an artificial intelligence (AI) system called 'Project Debater' which can debate with humans in real time.
Summary:
Apple has been fined $6.6 million by a court in Australia for misleading consumers regarding their warranty rights over faulty iPhones and iPads.
Summary:
Speaking about BJP ending alliance with PDP in Jammu and Kashmir, former Jammu & Kashmir Chief Minister Omar Abdullah said his party National Conference isn't celebrating this break up.
Summary:
Before successfully contesting the Lok Sabha 2004 elections, Congress President Rahul Gandhi reportedly worked at a management consulting firm in London for three years and then served as a director at a Mumbai-based technology outsourcing firm.
Summary:
After the BJP pulled out of its alliance with the PDP in the Jammu and Kashmir coalition government, PDP spokesperson Rafi Ahmad Mir said, "This is a surprise for us." He added, "We did not have any indication about their decision." Mir further said, "We tried our best to run the government with the BJP.
Summary:
BJP General Secretary Ram Madhav on Tuesday said "security scenario" and a sense of discrimination against people belonging to Jammu and Ladakh are the reasons behind ending their alliance with PDP.
Summary:
After the BJP pulled out of the alliance with PDP in Jammu and Kashmir, Shiv Sena MP Sanjay Raut called the alliance "anti-national" and "unnatural".
Summary:
Congress leader Ghulam Nabi Azad today said there's no question of the party forming an alliance with PDP in Jammu and Kashmir after BJP pulled out of the ruling alliance.
Summary:
Railway Minister Piyush Goyal has said that free meals will be provided to passengers if trains get delayed by five-six hours because of maintenance works on tracks on a Sunday.
Summary:
You're not allowed to talk." "I'll give respect if you give respect.
If you play games like this, I'll be very serious.
Summary:
Rahul was 14-years-old when his grandmother was assassinated by her two security guards post Operation Bluestar at Amritsar's Golden Temple.
Summary:
As Infosys completed 25 years of its listing on stock exchanges last week, former CFO V Balakrishnan said "all this had been possible" because of Co-founder Narayana Murthy.
Summary:
The government has decided not to proceed with the Air India stake sale and will provide funds for its day-to-day operations, according to reports.
Summary:
Sandeep Bakhshi, the new Chief Operating Officer of ICICI Bank, was serving as chief of ICICI Prudential Life Insurance since August 2010.
Summary:
Believed to have been born in 1956 in Indonesia's Sumatra island, Puan was given to Perth zoo in 1968.
Summary:
A Mexican fan publicly proposed marriage to his girlfriend at one of the fan zones after Mexico defeated Germany 1-0 in their 2018 FIFA World Cup opener on Sunday.
Summary:
"We were broke.
Not just poor, but broke," he added.
Summary:
It is the second fastest red card shown in World Cup history.
Summary:
Video assistant referee (VAR) technology, which is being used in a FIFA World Cup for the first time, aids on-field referees using replays.
Summary:
Chairman of BCCI's Committee of Administrators, Vinod Rai, has confirmed that Uttarakhand will debut in Ranji cricket "this season" 18 years after achieving statehood.
Summary:
Summary:
Summary:
He further said projects on rainwater harvesting schemes worth nearly â¹4,751 crore and water scheme projects worth â¹700 crore are being finalised.
Summary:
Jammu & Kashmir's Chief Minister Mehbooba Mufti on Tuesday submitted her resignation to the Governor minutes after BJP announced to pull out of an alliance with PDP.
Summary:
BJP has pulled out of the alliance with PDP in J&K over repeated attacks on forces and civilians in the Valley.
Summary:
Pakistan, with 140-150 nuclear warheads, is ahead of India which has 130-140 warheads, according to a report by global think-tank SIPRI.
Summary:
A Gurugram resident who put his Harley-Davidson bike worth â¹10 lakh on sale online was duped on Monday when a man who took the bike for test ride fled away with it.
Summary:
Many men waited in a long queue for their turn to hug a girl outside a Moradabad mall on the occasion of Eid. She offered hugs as a celebratory gesture as long as the men maintained order, and the video soon went viral.
Summary:
Ten-year-old Rishi Tej from Bengaluru became the first Indian to carry the FIFA World Cup official ball to the pitch in the group stage match between Belgium and Panama on Monday.
Summary:
India's U19 bowling coach Sanath Kumar has said Sachin Tendulkar's son Arjun "will be like any other member of the team...all the boys are equal for me." "I would like to focus more on strategic part.
Summary:
Snapchat CEO Evan Spiegel on Monday said that he is not afraid of Facebook trying to copy the photo-sharing app's features, adding that "innovators win in the long run".
Summary:
A choreographer allegedly made a hoax bomb threat as he was running late for a Jaipur-Mumbai IndiGo flight on Tuesday.
Summary:
In the party's mouthpiece Saamana, Shiv Sena chief Uddhav Thackeray on Tuesday wrote, "The political accident of 2014 won't happen again in 2019." Adding that people are asking whether these are "pre-emergency days", Thackeray said, "The dust storm isn't happening just in Delhi but in the entire country.
Summary:
Summary:
The Haryana government's education department has issued a circular to bureaucrats reiterating that they have to stand up when they receive MPs and MLAs. The circular comes after the central government issued guidelines for bureaucrats on how to behave while dealing with parliamentarians and legislators.
Summary:
We have so far caught and released two snakes," Divisional Forest Officer Rajeev Dhiman said.
Summary:
Mumbai requires 4,200 million litres of water daily (MLD), of which the BMC supplies 3,800 MLD.
Summary:
A survey conducted by weapons watchdog, the Small Arms Survey, has revealed that 85% of the world's 1 billion firearms are owned by civilians.
Summary:
A video of French President Emmanuel Macron scolding a teenager who called him by a nickname has gone viral.
Summary:
Pompeo's statements come amid the ongoing row between China and the US over trade tariffs.
Summary:
Earlier, Alia had reportedly injured her right shoulder and arm on the sets of 'BrahmÃÂstra'.
Summary:
Actor John Abraham has said that there is a place for more action heroes in Bollywood but right now it is only him and Tiger Shroff.
He further said, "I think the biggest stars are action heroes...Action stars will always be evergreen."
Summary:
American football player Terrell Owens has completed a 40-yard (36.5 metres) sprint in 4.43 seconds aged 44.
Summary:
Australian pacer Josh Hazlewood, who wasn't directly involved in the ball-tampering scandal has revealed that "a focus only on results...
Summary:
Technology giant Google has removed the option to allow users to book Uber rides directly through the company's Maps app.
Summary:
On the occasion of Congress President Rahul Gandhi's birthday, rebel party leader Shehzad Poonawalla tweeted that he hoped Gandhi would pursue a profession his "heart" really intends to rather than the one he was "forced" into.
Summary:
A special cell has found that 1,468 out of the 3,151 Mumbai buildings it inspected are not fire-safe or sufficiently equipped to fight a blaze.
Summary:
Expressing concern over "dynastic approaches", BJP MP Varun Gandhi asked, "How do we open the door to more people in politics?...
Summary:
At least three children died and 250 people fell ill due to suspected food-poisoning at a house-warming party in Maharashtra's Raigad, the police said on Tuesday.
Summary:
A resident association official said they had hoped to collect more plastic but couldn't reach few areas because of the rain.
Summary:
A baby boy born in a Paris suburban train will get free rides in the French capital until he is 25, Paris' public transport company RATP said.
The baby was born on the RER A line, which is considered the busiest line in Europe.
Summary:
Summary:
California-based Charles Noyes, who dropped out of MIT after one year, is quitting his job at crypto hedge fund Pantera Capital to help launch a digital-currency fund.
Summary:
It will reportedly work towards adding social engagement features to Paytm's products and services.
Summary:
Musk said the employee claimed to do so as he didn't receive a promotion.
Summary:
In 2003, Mars was the closest ever in nearly 60,000 years, at 54.6 million km, which won't be repeated until 2287, added NASA.
Summary:
An estimated 10,000 answer sheets of the Bihar board exam for Class 10 have been reported missing a day before the results are expected to be declared.
Summary:
Madhya Pradesh Governor Anandiben Patel has directed all state universities to send pictures and videos of preparations for events to observe International Yoga Day. Patel also asked them to send a list of all students and teachers participating in the events.
Summary:
India's first café which will be run by HIV-positive teenagers is set to open in West Bengal's Kolkata next month.
Summary:
Hoteliers in Shimla have said the water crisis in the city is over and appealed to tourists to visit.
Summary:
The mastermind of the Thane cyber scam wherein â¹500 crore was looted from 6,500 Americans has been granted bail after 14 months.
Summary:
The Delhi High Court on Monday observed, âÂÂThere is no rule that all financially sound people are above the vice of greed.
Summary:
"Classifying it as mental illness can cause enormous stigma for people who are transgender," the UN health agency said.
Summary:
A 22-year-old Britisher stabbed himself to death believing the vest he wore was stab-proof.
Summary:
Amid the row over his immigration policy, US President Donald Trump on Monday said the country will not be a refugee holding facility, adding that the US has the "worst immigration laws in the entire world".
Summary:
Thailand on Monday carried out its first execution since 2009, putting to death a convicted murderer by lethal injection.
Summary:
More than 4,000 people have been killed in the Philippines' war against drugs since Duterte became President.
Summary:
An Ahmedabad family court rejected the plea of a man seeking to divorce his wife as she has a beard.
Summary:
'Bhabi Ji Ghar Par Hai' actress Shubhangi Atre, who got trolled for posting a picture in a bikini, said, "People expect me to be in...(my character) Angoori bhabhi costume all the time.
Summary:
Congress MP Digvijaya Singh on Monday claimed that all the Hindus arrested for terrorism have been part of the Rashtriya Swayamsevak Sangh (RSS) in some way or the other.
Summary:
The West Bengal government has extended the summer vacation in all government-aided and government-sponsored schools up to June 30 due to heat wave that had hit several parts of the state.
Summary:
Around 50 people were staying at the hotel when the fire started, however, most of them were evacuated to safety, police said.
Summary:
Six children died on Tuesday after the car they were travelling in lost its balance and fell into a pond in Bihar's Araria district, according to reports.
Summary:
A petition was filed by former JNU scholar-turned-politician Atul Kumar Singh.
Summary:
Shiv Sena MP Sanjay Raut said Shiv Sena President Uddhav Thackeray called up Kejriwal, adding, "The agitation started by Kejriwal is unique...
Summary:
The Supreme Court on Tuesday declined the urgent hearing of a plea to declare the sit-in protest at Lieutenant Governor's residence by Delhi CM Arvind Kejriwal and other AAP leaders as unconstitutional.
Summary:
A Maharashtra couple recently held an 'election' to choose the name of their newborn son, and invited family members and friends to act as 'voters'.
Summary:
Rapper Jahseh Onfroy, also known as XXXTentacion, passed away aged 20 after he was shot on Monday in Miami, USA.
Summary:
Arhhan Singh, the man whom Anushka Sharma scolded for throwing garbage, was known by the name Sunny Singh and appeared as a child artist in films with Shah Rukh Khan and Madhuri Dixit.
Summary:
A video of Sri Lankan captain Dinesh Chandimal allegedly tampering with the ball during the ongoing Windies Test has surfaced.
Summary:
Raja Vijayaraman, the first Indian ever to win the Apple Design Award 2018, has said, "It took me 3 minutes to get (that) it was happening for real." "I never thought I will be getting this sort of award," he added.
Summary:
An unsecured website of the Andhra Pradesh government has exposed the personal data of the people who purchased Viagra from a government-run store in the state.
Summary:
The World Health Organisation (WHO) has declared the addiction to video games or 'gaming disorder' as a mental health disorder.
Summary:
A Nepalese national was also arrested for possessing fake identity cards.
Summary:
Further, LSR has a cut-off of 97.75% for Economics Honours, and 97.50% for English Honours.
Summary:
Law Minister Ravi Shankar Prasad on Monday said that no one has the right to doubt the government's intention about the appointment of the next Chief Justice of India.
Summary:
Mice chewed cash amounting to â¹12.38 lakh inside an ATM in Assam's Tinsukia Laipuli.
Summary:
Notably, the US in 1967 signed a treaty which bans space warfare.
Summary:
However, Trump has warned that the drills can "start immediately" if talks with North Korea fail.
Summary:
Airtel on Monday allegedly assigned a representative named Gaganjot after a user requested for a "Hindu representative" saying she had 'no faith in the work ethic' of Shoaib, a Muslim representative handling her complaint.
Summary:
The CBI has confirmed that Nirav Modi managed to travel across several countries even after the information of his passport revocation was updated in the Interpol database on February 24.
Summary:
Bhojpuri actor-singer Dinesh Lal Yadav, also known as Nirahua, has been named in a police complaint filed by journalist Shashikant Singh, where he alleged he received death threats from the actor.
Summary:
The song titled 'Ishq Di Baajiyaan' has been sung by Diljit with additional vocals by Shankar Mahadevan.
'Ishq Di Baajiyaan' has been composed by Shankar Ehsaan Loy and penned by Gulzar.
Summary:
Summary:
Shweta Tiwari took to Instagram to announce that her daughter Palak will not be making her debut with Darsheel Safary in the upcoming film 'Quickie' as her grade 12 in school has started.
Summary:
Further, Tunisia's goal was the first by an African nation in this year's World Cup.
Summary:
"I need my players fit and ready to play," Croatia's coach Zlatko DaliÃÂ said.
Summary:
Forward Romelu Lukaku scored twice as Belgium defeated World Cup debutants Panama in their opening match of the 2018 edition on Monday.
Summary:
The device which is a collection of small circuit boards soldered together by gold contacts, reads signals passing from the brain to the hand.
Summary:
AIMIM chief Asaduddin Owaisi has said there has never been a Muslim vote bank and they have always been deceived by being told they have one.
Summary:
After BSP ruled out any alliance with the Congress for Madhya Pradesh assembly elections, the Congress said, "All we had said was that we are open to pre-poll alliances with like-minded parties...
Summary:
After Chinese envoy Luo Zhaohui said China could help maintain peace between India and Pakistan, the Indian government said matters related to India-Pakistan relations are purely bilateral and there is no scope for involvement of any third country.
Summary:
On the occasion of Congress chief Rahul Gandhi's birthday, Prime Minister Narendra Modi today tweeted, "Birthday greetings to Congress President Shri Rahul Gandhi.
Summary:
ICICI Bank's CEO Chanda Kochhar has decided to go on leave till the independent inquiry into impropriety allegations against her is complete.
Summary:
An Ola driver has been fired after he refused to drop a passenger to Delhi's Jamia Nagar calling it a 'Muslim' colony and dropped him midway on Sunday.
Summary:
The kid, who was at the community center to attend a wedding reception with his parents, broke the sculpture in an attempt to hug it.
Summary:
Ranbir Kapoor, who will portray Sanjay Dutt in his biopic 'Sanju', has said that it has never happened that a person played himself in his own biopic.
Summary:
Tata picked a 0.0024% stake (49,583 shares) in 2015 through his Singapore-based company RNT Associates International.
Summary:
In one particular instance, Google's algorithm was able to detect the mortality risk of a cancer patient at 19.9%, which was more accurate than the hospital's computers.
Summary:
Delhi IAS officers on Monday said they welcomed CM Arvind Kejriwal's appeal for talks to resolve the deadlock.
This comes after Kejriwal assured their security and urged them to stop the boycott of the Delhi government.
Summary:
While talking about investing in the Indian market, Uber's Chief Operating Officer Barney Harford has said the ride-hailing startup will continue to invest in India rather than focus on cutting losses.
Summary:
Parrikar, who recently underwent treatment for an advanced pancreatic ailment in the US, added, "Educated people throw plastic and dirt...
When educated people do this, there is a reason behind it.
Summary:
Air India's 23-storey building in Mumbai's Marine Drive generates an annual rent of â¹100 crore, equal to half of the monthly salary paid out to its 21,000 employees.
The building served as Air India's headquarters until 2013.
Summary:
Angel investor Mohandas Pai claimed that India has 10 crore people in the 21-35 age group with bad skills.
Summary:
The agency named Mallya, Kingfisher Airlines and United Breweries in its chargesheet.
Summary:
Paresh further called Ranbir "very talented" while adding, "I've worked with various actors, but working with Ranbir is something else."
Summary:
Summary:
Talking about when he used to teach dance and drama in a school during his college days, Rajkummar Rao said, "I was the youngest teacher in school so the kids treated me like their friend." He added that this made teaching easier and more fun.
Summary:
Summary:
Clifin Francis, a Lionel Messi fan from Kerala, cycled from Iran to Russia, covering over 4,000 kilometres, to watch the 2018 FIFA World Cup. Francis took a flight on February 23 from Kerala to Dubai before leaving for Iran in a ship.
Summary:
A picture of a wheelchair-bound Egyptian fan being lifted by Mexican and Colombian fans so that he could watch Egypt's World Cup match at a fan zone in Moscow, Russia has surfaced online.
Summary:
As many as 99.6% of TV viewers in Iceland watched the country's 2018 FIFA World Cup opener against Argentina.
Summary:
The match was Sweden's first in World Cup since the 2006 edition.
Summary:
South Korean technology giant Samsung Electronics spent 15.1 trillion won ($13.7 billion) to pay taxes around the world in 2017.
Summary:
"Delhi CM, sitting in Dharna at LG office.
BJP sitting in Dharna at CM residence.
Summary:
A 65-year-old man has been arrested for allegedly raping an eight-year-old girl in a public toilet in Maharashtra's Kalyan, the police said on Monday.
Summary:
Indrani and her ex-husband Sanjeev Khanna were accused of murdering their daughter Sheena, while Peter was arrested for allegedly being part of the conspiracy.
Summary:
A man in Delhi has been arrested after he kidnapped a four-year-old boy to force his mother into marriage.
Summary:
The rioters had challenged the Powi's election over alleged inconsistencies in the voting process.
Summary:
The government, which currently holds over 78% stake in Coal India, had sold 10% stake for â¹22,550 crore in 2015.
Summary:
It also provides a financial cushion for expensive illness, securing you family's financial future.
Summary:
While Jaitley's description on PMO's website read 'Minister without Portfolio', it read 'Finance Minister' on Finance Ministry's website.
Summary:
Earlier, North Korea and South Korea marched together under a unified Korea flag at the Winter Olympic Games in South Korea.
Summary:
Swedish vehicle manufacturer Volvo's subsidiary Volvo Penta has unveiled a self-docking system which would allow a yacht to park itself in the dock.
Summary:
Former South Korean dentist Seunggun Lee's mobile payments app Toss has raised $40 million in funding after eight failed apps since 2011.
Summary:
Delhi Deputy CM Manish Sisodia was hospitalised on Monday, after a six-day hunger strike at Lieutenant Governor Anil Baijal's official residence.
Summary:
Kolkata's 30-year-old transgender teacher Suchitra Dey has alleged sexual harassment by a school's principal, claiming he asked her if her breasts were real and if she could bear a child.
Summary:
Summary:
Days after the daughter of Kerala top cop Sudesh Kumar was accused of hitting a police driver, Chief Minister Pinarayi Vijayan said senior police officials will not be allowed to use policemen for their personal work.
Summary:
The IITs were forced to lower the cut-off this year after it looked like 1,000 seats remain vacant.
Summary:
A video shows the impact on parked cars after an earthquake of 6.1 magnitude struck Japan's Osaka city early Monday.
Summary:
Organisers of the session claimed it was the first time that the International Yoga Day was celebrated in any Parliament.
Summary:
Addressing the Indian diaspora in Greece, President Ram Nath Kovind said India is working towards becoming a $5 trillion economy and the world's third largest consumer market by 2025.
Summary:
Nirav Modi travelled on a train from UK's London to Belgium's Brussels on June 12 using an Indian passport, according to reports.
Summary:
Miss World 2017 Manushi Chhillar, who is a medical student from Haryana, feels that being a doctor and an actor is very similar.
Summary:
Vijay Deverakonda, who was named 'Best Actor' for his performance in the film 'Arjun Reddy' at Filmfare Awards (South) 2018, will be auctioning his first Filmfare Award to support Telangana's Chief Minister's Relief Fund.
Summary:
Ekta Kapoor's digital streaming platform ALTBalaji took a dig at Netflix in reference to their new film 'LUST Stories', the concept of which ALTBalaji implies is similar to their web series 'Gandi Baat'.
Summary:
Actor Tiger Shroff shared his father and actor Jackie Shroff's picture on social media while captioning it, "Hope I look like my hero when I'm 60+." Jackie, who is 61 years old, is seen shirtless in the picture.
Summary:
Miguel decided to buy the special tickets after the normal tickets were sold out.
Summary:
After losing 11 of their last 13 ODIs, Australia have slipped to their lowest ODI ranking in 34 years, dropping to sixth position on the ICC's latest rankings table.
Summary:
Reacting to Brazilian forward Neymar's new hairstyle, a user tweeted, "It seems like Neymar has a bowl of pasta on his head." Other tweets read, "31 minutes in and Neymar still hasnâÂÂt been booked for his haircut.
Summary:
The pants feature sensors around the hips, knees, and ankles to keep track of the body movements.
Summary:
The wedding procession of a Dalit man in Gujarat's Ahmedabad was held up for a few hours allegedly by 4-5 upper caste men objected to the groom riding a horse, the police said.
Summary:
Around three people were killed and five others were injured on Monday after an alleged shootout broke out between the members of Gogi gang and Tillu gang in Delhi.
Summary:
Hundreds of Afghan peace marchers on Monday urged the country's government and the Taliban militant group to end the 16-year war and restore peace.
So many people have been martyred in this ongoing conflict," a marcher said.
Summary:
Pakistani cricketer-turned-politician Imran Khan has said that the West's conception of feminism has degraded the role of mothers.
Summary:
A picture circulating online of a dog culling in Russia was actually shot in Pakistan during an attempt to reduce the number of stray animals in 2016.
Summary:
Eight-year-old Jiya Thakur has won season 4 of the reality show Dance India Dance L'il Masters.
Summary:
Actress Mehreen Pirzada said she was questioned for thirty minutes by US immigration officers after she revealed she was a Telugu actress when she was travelling to the US from Canada.
Summary:
Slamming Twitter users who trolled Anushka Sharma over a video showing her scolding a man for littering, Virat Kohli tweeted, "Everything for people nowadays is meme content.
Some people on Twitter had called the video a "publicity stunt".
Summary:
Rooney also pushed Ronaldo in frustration when the latter appealed to the referee.
Summary:
Ireland and Scotland on Sunday played out what was the first-ever game in T20I cricket that was left as a tie.
Summary:
Summary:
Google is investing $550 million in Chinese e-commerce firm JD.com, which competes with Jack Ma-led Alibaba in the Chinese market.
Summary:
German authorities have arrested Audi CEO Rupert Stadler on Monday for his alleged role in the Volkswagen Group's 2015 diesel emissions scandal.
Summary:
A video showing Congress MLA Alpesh Thakor throwing â¹10 notes from a stage at a folk music event on Saturday night in Gujarat's Patan district has gone viral.
Summary:
Calling on India and China to make a joint effort to maintain peace along the border, Chinese Ambassador to India Luo Zhaohui on Monday said, "We cannot stand another Doklam incident." "China and India are neighbours that cannot be moved away," he added.
Summary:
We need to join hands to tackle global challenges," he said.
Zhaohui further said the two countries need to increase mutual understanding.
Summary:
The accused had planned to send pictures of the question paper to "solvers" who would then give the answers through a "spy mic", police said.
Summary:
Duque, who will turn 42 just before taking office on August 8, will be Colombia's youngest ever President.
Summary:
ICICI Bank is reportedly planning to appoint Sandeep Bakhshi, CEO of ICICI Prudential Life, as the bank's interim CEO, replacing Chanda Kochhar.
Summary:
Former World Cup-winning footballer and former Argentina coach Diego Maradona said after Argentina's draw against Iceland that current Argentina coach Jorge Sampaoli "cannot come back home with a performance like that".
Summary:
Bangladesh defeated Australia against the odds of 500:1 in the favour of Australia, in the second ODI of the NatWest series in England on June 18, 2005.
Summary:
The Le Mans race is the world's oldest active sports car race in endurance racing.
Summary:
Summary:
Slamming Defence Minister Nirmala Sitharaman over the killing of abducted Army jawan Aurangzeb by terrorists, an editorial in Shiv Sena's newspaper 'Saamana' said she was "extremely weak, inactive and faceless".
Summary:
Twenty-eight-year-old Dinesh Kumar Ranganathan drowned while clicking selfies on a creek at Baga beach as a heavy wave pulled him into the sea.
Summary:
The officer was supposed to put the snake in a sack and release it later in the forest, as per protocol.
Summary:
A retired government employee in Telangana has built a temple in memory of his deceased wife.
Summary:
In his first public address after returning from the US, Goa CM Manohar Parrikar on Monday said that the fight which began 72 years ago and resulted in Goa's liberation in 1961 is not over yet.
Summary:
His security was withdrawn after he alleged bribery by police personnel.
Summary:
A minor leakage has been detected in the sulphuric acid storage plant at the Sterlite copper smelter in Tamil Nadu's Tuticorin, which was sealed after protests last month.
Summary:
Imprisoned former Bangladesh PM Khaleda Zia is critically ill and not able to walk on her own, a senior leader of her political party has said.
Summary:
At least 3 people were killed and over 200 others were injured after a 6.1-magnitude earthquake struck Japan's second-biggest metropolis Osaka on Monday, reports said.
Summary:
Salman Khan and Jacqueline Fernandez-starrer 'Race 3' crossed the â¹100 crore mark in just 3 days by earning â¹106.47 crore.
Summary:
Actor Salman Khan's name appears on Google when a search for 'Worst Bollywood Actor' is made.
"Has Google also watched Race 3?" a user commented on Twitter, while another wrote "Apparently you don't have to type "worst bollywood actor" anymore.
Summary:
Four students scored 100 percentile in AIIMS MBBS entrance exam 2018, results of which were declared by the Institute on Monday.
Summary:
Questioning who authorised Delhi CM Arvind Kejriwal to sit on dharna at Lieutenant Govenor Anil Baijal's residence, the Delhi High Court has said, "You cannot go inside someone's house and hold a strike there." The government advocate called the protest an "individual decision".
Summary:
The President of rural local body Dharpally Mandal, Immadi Gopi, in Telangana has been booked after a video showing him kick a woman in the chest surfaced online.
Summary:
He also promised jobs to some of them, a jail official said.
Advising them to quit tobacco and smoking, the yoga guru said, "You should give up the feelings of anger and revenge.
Summary:
Amid the row over separation of immigrant parents and children at the US-Mexico border, First Lady Melania Trump on Sunday said she "hates" seeing families being separated at the border.
Summary:
Revealing that he had proposed the idea to end the US-South Korea joint military exercises during his summit with North Korean leader Kim Jong-un, US President Donald Trump has said the war games can "start immediately" if talks fail.
Summary:
Former Pakistan President Asif Ali Zardari has said that the world is making fun of the country because of former Prime Minister Nawaz Sharif.
Summary:
After the Afghanistan government extended its ceasefire with the Taliban by 10 days, the militant group has said their three-day Eid ceasefire proved the unity of their movement and its "nationwide support".
Summary:
(I'm) not pregnant." The pregnancy rumours arose after she was spotted coming out of a diagnostic lab with reports in her hand.
Summary:
Portugal captain Cristiano Ronaldo's bust at the Cristiano Ronaldo Madeira International Airport in his hometown of Madeira was replaced on the day he scored the World Cup hat-trick against Spain.
Summary:
FIFA has fined Mexico's football association after Mexican fans were heard chanting homophobic slurs directed at German goalkeeper Manuel Neuer during the sides' World Cup match on Sunday.
Summary:
South Korean football team coach Shin Tae-yong has revealed that he made his players swap shirts after he "heard that there was a Swedish spy" present during their training sessions.
Summary:
The counter-attack goal began after a tackle on Sami Khedira propelled the ball forward towards Javier Hernández, who played a one-two pass with Carlos Vela.
Summary:
Former Pakistan fast bowler Wasim Akram posed for a photo alongside Dale Steyn and former Australian pacer Jeff Thomson, while meeting them at Lords'.
Summary:
South African batsman Theunis de Bruyn, who has been named as Indian captain Virat Kohli's replacement by English county side Surrey, is yet to make his ODI debut for South Africa.
Summary:
Talking about AAP's protests seeking directives against IAS officers' alleged strike, union minister and BJP leader Mukhtar Abbas Naqvi said, "Karne mein zero, dharne mein hero, karna kuch nahi dharna sab kuch." This mindset has destroyed the trust people of Delhi put in AAP, he added.
Summary:
Delhi Health Minister Satyendra Kumar Jain was admitted to the hospital on Sunday, the 7th day of the ongoing protest at Lieutenant Governor Anil Baijal's official residence.
Summary:
Police in Jalandhar have busted an international racket wherein men used kadhais (cooking woks) to smuggle drugs to Canada through courier companies.
Summary:
After 100 days and a total bill of over â¹1.2 crore, the woman's mother died of multiple infections.
Summary:
Police in Bihar have arrested a Chinese national employed with a smartphone company for possession of liquor.
Summary:
A woman in West Bengal's Hooghly district was accidentally shot by her daughter after she gave her a pistol mistaking it for a toy, police said.
Summary:
Summary:
Police started chasing them after a woman complained that her picture was being used on a dating app without permission.
Summary:
Mumbai University has fixed the maximum duration for completing PhD at six years, with the option to avail an extension of four years.
Summary:
A police constable and a minor boy were arrested on Sunday for allegedly raping a 17-year-old girl in North Goa's Ponda.
Summary:
An earthquake was detected in Mexico City due to mass celebrations when the national team opened the scoring against defending champions Germany in their first match of the 2018 FIFA World Cup on Sunday.
Summary:
The sale of expensive sarees in Bihar went up by 1,751% after the state government enforced a ban on liquor in April, 2016, a study by the Asian Development Research Institute (ADRI) has found.
Summary:
Talking about the Indian market, Google Cloud's Head of Solutions Architecture Oyvind Roti has said that the biggest challenge is finding people "with right skill sets that match our requirements".
Summary:
The researchers trained the system with data showing the target person with their eyes open.
Summary:
After the IAS Officers' Association said they felt unsafe under Delhi's AAP government, CM Arvind Kejriwal said, "I will ensure their safety and security with all powers and resources available at my command".
Summary:
Nitish had quit the alliance last year claiming he cannot work as part of the Congress-RJD-JD(U) government due to his principles.
Summary:
Summary:
Girnar has alleged that the online grocery startup is using the 'Royal' trademark to sell several products, including tea.
Summary:
The Delhi Police said AAP has not applied for permission to protest march to Prime Minister's residence, adding that those trying to hold a march will be detained.
Summary:
Over 4.48 lakh people are affected and more than 1.73 lakh displaced are taking shelter in 481 relief camps, disaster management officials said.
Summary:
Ananya and Tara are set to make their acting debut with the film, which will release on November 23.
Summary:
Describing his relationship with father Sunil Dutt, actor Sanjay Dutt has said that it wasn't always an easy one.
He further said that his father always stood by him.
Summary:
Singer Beyoncé has released a new album 'Everything Is Love' in collaboration with her rapper husband Jay-Z.
Summary:
Sharing actor Ranveer Singh's still from the film 'Simmba' on social media, director Rohit Shetty wrote, "He calls himself 'Rohit Shetty Ka Hero'...I call him 'The Dynamite'".
Summary:
Every day is dedicated to parents." In reference to his dialogue from the film 'Kabhi Khushi Kabhie Gham' where he said, 'Keh diya na bus keh diya', Big B ended his tweet saying, "Bus!!
Summary:
A taxi driver in Russia plowed into a crowd of pedestrians, of which two were visiting Mexican football fans, after losing control of his car and driving it on a pavement in Moscow's Red Square on Saturday.
Summary:
He has named the auditorium 'German Stadium' as he is a fan of Germany.
Summary:
Five-time champions Brazil failed to win their opening match of a FIFA World Cup for the first time since 1978 after being held to a draw by Switzerland on Sunday.
Summary:
Defending champions Germany started their 2018 FIFA World Cup campaign with a 0-1 loss to Mexico on Sunday.
Summary:
He said that he watched "a lot of Messi's penalties" as he knew such a situation could come up.
Summary:
Avintia Ducati MotoGP rider Tito Rabat's motorcycle caught fire when he was in the top 10 during the Catalan Grand Prix on Sunday.
Summary:
Stating that it will contest from 55-60 seats in the upcoming assembly elections in Madhya Pradesh, BSP said there has been no talk of an alliance with the Congress for the polls.
Summary:
Defending its decision not to join opposition parties in supporting Delhi CM Arvind Kejriwal in his standoff with Lieutenant Governor Anil Baijal, the Congress on Sunday said, "Kejriwal...
Summary:
A 13-year-old boy named Altaf Sayyed Sheikh allegedly died after falling into the sea while taking a selfie at Mumbai's Marine Drive on Eid. The police added that Altaf was asked not to go on the rocks due to the dangers of high tide during monsoons but he did not listen.
Summary:
Four people were arrested from Ahmedabad with demonetised currency notes with a face value totalling â¹99.99 lakh, the police said on Sunday.
Summary:
Senior Congress leader P Chidambaram has said his prediction of 1.5% cut in the GDP growth rate after demonetisation has come true.
Summary:
Naveed Farooq has been arrested and is being investigated by London police.
Summary:
Keep it up!" In his tweet, he also shared the video tweeted by Virat Kohli, where Anushka is seen scolding a man in a luxury car for throwing garbage on the road.
Summary:
Social media major Facebook has updated its advertisement policies to restrict showing ads for weapons accessories to users under the age of 18.
Summary:
Amid protests led by Delhi CM Arvind Kejriwal against a "strike" by IAS officers, the IAS association has said, "We are feeling frightened and victimised.
Summary:
Maharashtra CM Devendra Fadnavis visited one of Virgin Hyperloop One's test sites in the US, earlier this week.
Summary:
The Imperial College London researchers have discovered a new type of photosynthesis that uses near-infrared light instead of visible light used for photosynthesis.
Summary:
States have collected taxes worth â¹10,000 crore online since the rollout of Transport Mission Mode Project (MMP) under the Centre's e-Governance initiative, the Road Transport and Highways Ministry said.
Summary:
A four-month-old baby girl with a hole in her heart has been asked to come in 2023 for surgery by the AIIMS, Delhi.
Summary:
The Delhi-Pathankot Express will be the first train to be rolled out with the new colour scheme.
Summary:
Agencies investigating the PNB scam have reportedly found that Nirav Modi has at least 6 Indian passports, of which two have been active for quite some time.
Summary:
This comes after the ministry deregistered about 2.26 lakh companies last year for failing to comply with regulatory requirements.
Summary:
Fake Indian notes were the third most seized counterfeit foreign currency in Switzerland during 2016 after euro and dollar.
Summary:
Actress Sunny Leone, on the occasion of Father's Day, shared a picture and referred to her husband Daniel Weber as "the Man...the Father...the husband...the friend...the one that holds us together." Sunny and Weber's three children Nisha, Asher and Noah are also seen in the picture.
Summary:
Ranveer Singh shared a picture with his father Jagjit Singh Bhavnani on the occasion of Father's Day while captioning it, "Pappi to Pappa." Ranveer also referred to his father as the "main man".
Summary:
Amitabh Bachchan shared pictures from sets of 'Badla' on his blog post and wrote, "At last no prosthetics, just a simple me." Bachchan, who began shooting for the film in Glasgow, Scotland, added that he spent time negotiating with the selfie seekers.
Summary:
Forward Antoine Griezmann scored France's first goal in the 2018 FIFA World Cup by converting the first-ever penalty awarded by video assistant referee (VAR) in the tournament's history.
Summary:
Serbian captain Aleksandar Kolarov scored a long-range free kick from over 25 yards out to help his team defeat Costa Rica in a 2018 FIFA World Cup Group E match on Sunday.
Summary:
Former Indian captain Kapil Dev has urged the BCCI to allow Afghan cricketers to play in Duleep Trophy as it will help them "develop confidence" for Test cricket.
Summary:
Twenty-time Grand Slam champion Roger Federer, who will reach the world number one ranking on Monday, clinched his 98th career singles title by defeating Milos Raonic in the Stuttgart Open final.
Summary:
He asked Kejriwal to look beyond "political interests" and resume work.
Summary:
The Gujarat government on Saturday ordered the police cyber cell to conduct a probe into rumours of Chief Minister Vijay Rupani's "impending resignation" circulating on social media for the last couple of weeks.
Summary:
Elon Musk-led tunnelling startup The Boring Company has shared a video while conducting a test on its transit tunnels using a Tesla Model X.
Summary:
Proposing that all indirect tax revenue must be handed to the states, Tamil Nadu CM K Palaniswami has said flexibility to augment states' resources was "very limited" in the post-GST era.
Summary:
When the sadhvis protested, they were threatened with a gun and allegedly gangraped.
Summary:
Summary:
The accused had called the victim to his house to discuss ways to settle disputes between their families, the police said.
Summary:
A video of a US Border Patrol vehicle driving away after running over a Native American man near the US-Mexico border in Arizona has surfaced online.
Summary:
Raghuveer Kulkarni was introduced to the scheme by one of his friends, who assured him good returns.
Summary:
The 25-year-old underwent surgery as soon as he was born and was given a 50% chance of survival.
Summary:
Former Uber executive Travis VanderZanden's e-scooter startup Bird has officially become the fastest company to hit the $1-billion valuation mark in less than 9 months.
Summary:
Summary:
"He was attacked at the behest of Paswan over a land dispute," Khan added.
Summary:
On the sidelines of a NITI Aayog meeting on Sunday, chief ministers of four statesâ Karnataka, West Bengal, Kerala and Andhra Pradeshâ urged PM Narendra Modi to immediately resolve problems of Delhi government.
Summary:
American actress Mary McCormack has shared a video of a Tesla Model S car which caught fire while in traffic in California, US.
Summary:
Talking about the startup ecosystem in India, Google Cloud's Head of Solutions Architecture Oyvind Roti said he really likes coming to India "because we see startups bustling with energy".
Summary:
Villagers in Maharashtra's Palghar district have asked for ponds, ambulances, street lights and doctors before they give their nod to the bullet train project.
Summary:
A 41-year-old Alwar priest chopped off his genitals at a public meeting and threw them in the air after being compared to rape-accused babas like Asaram Bapu, Falhaari Baba, and Daati Maharaj.
Summary:
A 15-year-old girl was killed by her own family for allegedly refusing to read the holy book and offer prayers, Mumbai Police told the Bombay High Court.
Summary:
The HRD Ministry has written to all universities mandating them to hold convocation every year after few universities were found skipping the event.
Summary:
The notice to the state-owned company was for non-payment of service tax on forfeited policies since July 2012.
Summary:
Summary:
Actor Ranbir Kapoor, while responding to a fan on Twitter, wrote, "Meri dad se bahut phat-ti hai.
Summary:
Talking about father Abraham John, actor John Abraham has said his father is his hero and it's because he has never taken or given a bribe in his life.
Summary:
Israel's Defence Minister Avigdor Liberman has said the reason Argentina captain Lionel Messi missed a penalty in their FIFA World Cup match against Iceland was because Argentina decided to cancel their match against Israel.
Summary:
French midfielder Paul Pogba paid tribute to his late father after sharing a photo of his shin pad that had an image of his father on it.
Summary:
Indian tennis player Leander Paes, who is celebrating his 45th birthday today, is the child of Olympic bronze medal-winning former Indian hockey midfielder Vece Paes and former captain of the Indian women's basketball team Jennifer Paes.
Summary:
Australia progressed to the final because of a better run-rate in the Super Six stage.
Summary:
Indian all-rounder Stuart Binny registered the best ODI bowling figures by an Indian after taking six wickets and conceding four runs against Bangladesh on June 17, 2014.
Summary:
Paes played 200 singles matches in his career, winning 101 and losing 99.
Summary:
Almost one million users in India are testing the WhatsApp Payments service, an official for the Facebook-owned company has said.
Summary:
Around 38% of smartphones in the first quarter of 2018 were sold online, according to a report by Counterpoint Research.
Summary:
Gandhi's office brought this to the notice of local police after an advertisement of the show appeared on walls in the region.
Summary:
The Taliban militant group on Sunday refused to extend its three-day ceasefire with Afghan security forces.
Summary:
An Indonesian man was killed after his mother's coffin fell from a funeral tower and crushed him during a service on the island of Sulawesi, police officials said.
Summary:
Summary:
This comes after the umpires changed the ball after raising concerns about its condition and awarded Windies five penalty runs.
Summary:
Australia on Saturday witnessed losses in cricket, tennis, football, and rugby.
Summary:
The march is being organised after week-long sit-in protests by AAP leaders at Lieutenant Governor Anil Baijal's house.
Summary:
Summary:
He said this in response to Kejriwal's tweet stating he had not authorised Baijal to attend the meeting on his behalf.
Summary:
Delhi CM Arvind Kejriwal and three AAP ministers are on a sit-in protest at Lieutenant Governor Anil Baijal's office since June 11, urging him to ask IAS officers to end their 'strike'.
Summary:
For the first time in public, militants have threatened to target the families and homes of police and army men in Jammu and Kashmir.
Summary:
The Meghalaya government suspended mobile internet services in six districts over the "serious law and order situation", days after it was resumed.
Summary:
A 17-year-old boy in Uttar Pradesh's Modinagar was allegedly sodomised by five men who inserted an iron rod in his rectum and recorded the incident on a mobile phone.
Summary:
Cambodia's Prince Norodom Ranariddh was injured and his wife was killed after their SUV hit a taxi head on in the city of Sihanoukville on Sunday.
Summary:
US President Donald Trump said he would be calling North Korea when asked about his Father's Day plans.
Summary:
Ranbir portrays Sanjay Dutt while Paresh will be seen as Sanjay's father Sunil Dutt.
Summary:
Talking about wearing saris at Cannes Film Festival 2018, Nandita Das said, "People say, 'Again you're going to wear a sari, how boring!' I say, 'People are wearing gowns again and again.
Summary:
Actor Saif Ali Khan has said that his son Taimur Ali Khan has "quite a happening social life".
He further said that he doesn't have a problem with the photographers because they are just clicking Taimur's pictures.
Summary:
After Germany's division following World War II, East Germany and West Germany's national football teams faced each other only once, at the FIFA World Cup 1974 which was hosted in West Germany.
Summary:
Iranian women watching matches at the FIFA World Cup 2018 in Russia unfurled banners protesting the ban on women on entering stadiums to watch men's matches in their home nation.
Summary:
Stating that Delhi CM Arvind Kejriwal is a "born-naxalite", BJP Rajya Sabha MP Subramanian Swamy questioned why chief ministers of several states were extending support to his protest at Lieutenant Governor Anil Baijal's residence.
Summary:
The brother of Aurangzeb, an Army jawan who was abducted and killed by terrorists in J&K, has said, "If the government cannot avenge his death, then we will." Appealing to PM Narendra Modi to take swift action, he added that they want 100 deaths in return for his brother's death.
Summary:
A 48-year-old professor of a government polytechnic college in Madhya Pradesh's Harda district was arrested for allegedly raping a minor student, police said on Saturday.
Summary:
Seychelles President Danny Faure has said the agreement for India to develop a naval base at Assumption Island will "not move forward", adding they plan to build a facility with their own funds.
Summary:
Retired Lance Naik Yagya Pratap Singh, who was jailed for six months over his viral video exposing the army sahayak system, has been released from jail.
Summary:
One of her relatives, whose wife was also the doctor's victim, ordered the henchmen to murder him instead.
Summary:
This comes even as the ministry is in the midst of installing bio-toilets in trains by March 2019 at â¹250-crore cost.
Summary:
The Centre has decided not to extend the ceasefire between security forces and militants in J&K that was announced at the beginning of the holy month of Ramadan.
Summary:
Daati, who is reportedly absconding, earlier claimed there were 700 girls in the ashram, of which the police found only 100.
Summary:
Condemning abortions to terminate pregnancies likely to produce disabled or chronically ill children, Pope Francis on Saturday said the practice is similar to Nazi attempts to create a pure race by eliminating the weakest.
Summary:
Thailand's King Maha Vajiralongkorn, who assumed throne after the death of his father in 2016, has been granted full ownership of royal assets reportedly worth $30 billion (over â¹2 lakh crore).
Summary:
Brazilian football team's superfan, Clovis Acosta Fernandes, followed the team at seven different FIFA World Cup editions.
Summary:
Former Argentina captain and World Cup-winner Diego Maradona was seen smoking a cigar in the stands during Argentina's match, despite smoking and tobacco being banned at all the venues of the FIFA World Cup 2018.
Summary:
Speaking about four chief ministers being denied permission to meet CM Arvind Kejriwal, West Bengal CM Mamata Banerjee said, "We waited for 3-4 hours." Mamata, along with chief ministers of Andhra Pradesh, Kerala and Karnataka have extended their support to Kejriwal's sit-in protest.
Summary:
After Delhi Assembly passed the resolution for full statehood, Puducherry CM V Narayanasamy also demanded full statehood for his Union Territory.
Summary:
A doctor who was absconding after a case was registered against him for allegedly sedating and raping a patient in his clinic was detained near Vadodara.
Summary:
India has been excluded from the UK's new list of countries considered "low risk", whose applicants will undergo reduced checks while applying for student visas.
Summary:
Trump had announced the tariffs on Friday, accusing China of intellectual copyright theft.
Summary:
"It's something I have always wanted.
I still don't want to become pregnant yet," she added.
Summary:
The US State Department has issued a warning to traveling American fans that terrorists may target World Cup venues in Russia.
Summary:
Barcelona is the first club in history to have a player in every group of the World Cup, with at least one Barcelona player present in each of the eight FIFA World Cup 2018 groups.
Summary:
The South American team attempted 18 shots without scoring, with Danish goalkeeper Kasper Schmeichel making six saves.
Summary:
Egyptian goalkeeper Mohamed El-Shenawy refused to take the Man of the Match award at the FIFA World Cup 2018 as it is sponsored by an alcohol company and his religion forbids the consumption of alcohol.
Summary:
Iceland goalkeeper Hannes ÃÂór Halldórsson, who saved Argentina captain Lionel Messi's penalty at the 2018 FIFA World Cup on Saturday, is also a professional film director.
Summary:
Driven by Oghenekaro Etebo's own goal and a penalty by midfielder Luka Modric, Croatia opened their 2018 FIFA World Cup campaign with a 2-0 victory over Nigeria on Saturday.
Summary:
Swiss tennis star Roger Federer will reach the world number one ranking on Monday after he beat Australia's Nick Kyrgios to reach his career's 148th final at the Stuttgart Open on Saturday.
Summary:
Interestingly, Australia's highest ODI total against England is 342/9.
Summary:
Interacting with the media during Eid celebrations, former Uttar Pradesh Chief Minister and Samajwadi Party chief Akhilesh Yadav said he will never invite the media to his new residence.
Summary:
Amid the increase in number of suicide attempts at Maharashtra's administrative Headquarters Mantralaya, the state government has decided to get 420 CCTV cameras installed in the complex.
Summary:
A 20-year-old youth was killed in violence when clashes broke out between civilians and security forces after Eid prayers in Kashmir's Anantnag area on Saturday.
Summary:
The toll plaza at Muzaffarnagar-Saharanpur highway in Uttar Pradesh has been painted saffron.
Summary:
The 13.7-km Kalindi Kunj bypass was announced in 2000 with an aim to resolve heavy traffic on Mathura Road and Ashram Chowk but construction is yet to start on the project.
Summary:
The annual population growth in Mizoram is 1.6%, which is below the national mark of 2.37% as recorded in 2011 census.
Summary:
An 18-year-old girl has become the first in Jharkhand's Uchwawal village to clear the Class 10 exam conducted by the state board.
Summary:
A group of robbers ran away with an ATM machine, which was recently calibrated with over â¹10 lakh, in Delhi's Surakhpur.
Summary:
Stating that the world has seen more than enough conflict, US President Donald Trump has said, "The people of world deserve a future of security and peace." "If there's a chance to end the horrible threat of nuclear conflict, then we must pursue it at all costs," he said.
Summary:
Fashion designer Masaba Gupta posted a photograph of herself on Instagram while captioning it, "The whole...idea of beauty is a burden." "I have come to realise that beauty is a different kind of burden as you keep growing," she wrote.
Summary:
A woman who suffered severe injuries when two boys tossed a shopping cart onto her head at a US mall in 2011 has been awarded $45.2 million (â¹309 crore).
Summary:
Actress Gal Gadot has shared her first look from the upcoming film 'Wonder Woman 1984' which is a sequel to the 2017 film 'Wonder Woman'.
Summary:
Virat Kohli has shared a video showing his wife Anushka Sharma scolding a man for throwing garbage on the road.
"Saw these people throwing garbage on the road and pulled them up rightfully.
Summary:
When Ã
 imuniàremonstrated with Poll after the final whistle, the latter issued a third yellow and finally sent him off.
Summary:
Sri Lanka initially refused to take field against Windies on the second Test's third day on Saturday after umpires demandedÃÂ the ball to be changed presumably because of ball-tampering.
Summary:
Delhi Lieutenant Governor Anil Baijal has denied permission to West Bengal CM Mamata Banerjee, Andhra Pradesh CM N Chandrababu Naidu, Karnataka CM HD Kumaraswamy and Kerala CM Pinarayi Vijayan to meet Delhi CM Arvind Kejriwal.
Summary:
Do see what this referendum stands for."
Summary:
Noida-based online marketplace IndiaMART is reportedly planning to go public with an initial public offering of around â¹500-600 crore, and could file its draft prospectus as early as next month.
Summary:
Violence broke out in Madhya Pradesh's Shajapur after some people pelted stones during an event on Maharana Pratap Jayanti on Saturday.
Summary:
Their arrest comes amid repetitive cross-border ceasefire violations by Pakistan.
Summary:
This comes amid row between the two states over SC's order dividing water from Cauvery.
Summary:
"Please donâÂÂt take me out....donâÂÂt want to show my face," the victim can be heard saying in the videos.
Summary:
Taliban militants on Saturday celebrated Eid with Afghan security forces amid the ongoing ceasefire declared by both sides.
Summary:
At least 26 people were killed and several others were injured in a car bomb explosion in Afghanistan's Nangarhar city on Saturday, officials said.
Summary:
Time Warner has been renamed as WarnerMedia, less than a day after AT&T completed its $85.4 billion acquisition of the media conglomerate, according to an internal memo from AT&T executive John Stankey.
Summary:
Summary:
In the song's video, Shah Rukh is seen dancing with actress Malaika Arora and other dancers on top of a moving train.
Summary:
'Soorma' makers have shared a video which shows actor Diljit Dosanjh preparing for his role of in the film, where he plays former Indian hockey team captain Sandeep Singh.
Summary:
Akshay Kumar will be starring in next production of Yash Raj Films (YRF), which will be a period drama, as per reports.
Summary:
Vicky Kaushal has said that the existence of nepotism is not a problem, but the problem is when people defend it.
But...taking the advantage for granted is the problem," he further said.
Summary:
A British man has collected beers from all the 32 nations which are participating at the 2018 FIFA World Cup. Gus Hully, who spent ã500 (â¹45,460) on the collection, revealed that the Saudi, Libyan and UAE non-alcoholic beers took 14 days to reach him in London through a man in Libya.
Summary:
Australia's rugby team played Ireland in a match in Melbourne.
Summary:
Batsman Ambati Rayudu, who last played an ODI for India on June 15, 2016, has been dropped from the squad for England ODIs after he failed to clear the Yo-Yo fitness test at the National Cricket Academy in Bengaluru.
Summary:
The mother of AG Perarivalan, a convict in former PM Rajiv Gandhi's assassination, has demanded mercy killing for him.
Summary:
Responding to accusations of appeasing Muslims for political reasons, West Bengal Chief Minister Mamata Banerjee said, "My question to them is whether loving Hindus means you have to hate Muslims." She added that those who say she appeases Muslims are friends of neither Hindus nor Muslims.
Summary:
A Canadian court has ordered a woman to pay around â¹2 crore in damages to her former boyfriend for sending a fake college rejection letter in order to prevent him from leaving her.
Summary:
A missing 54-year-old Indonesian woman's body was found inside the belly of a nearly 23-foot-long python, police officials said.
Summary:
"Literal but nonsensical" translations cannot be used as consent, the judge ruled.
Summary:
The film is based on the life of former Indian hockey captain Sandeep Singh.
Summary:
BJP MP Nishikant Dubey has said that he will bear the legal expenses of the people who have been arrested for allegedly lynching two Muslims on the suspicion of cattle theft.
Summary:
An Uber cab driver has been arrested in Chandigarh for allegedly harassing a woman passenger by posing as a friend and sending her obscene messages.
Summary:
Founder of blood-testing startup Theranos, Elizabeth Holmes, and former President Ramesh Balwani, have been criminally charged for multimillion-dollar schemes to defraud investors, doctors, and patients.
Summary:
The Bombay High Court recently approved the service of a litigation notice on WhatsApp, with blue tick as a valid proof that its receiver had opened and read its content.
Summary:
Hyderabad-based Mallikarjun Reddy has been arrested for killing his sister's mentally challenged twins.
Summary:
US President Donald Trump reportedly told Japanese PM Shinzo Abe that he'd send 25 million Mexicans to Japan while discussing migration.
Summary:
Slamming the "fake news media" for showing only "bad photos", US President Donald Trump took to Twitter to share pictures of his interaction with world leaders at the G7 summit.
Summary:
India has proposed to introduce $240-million retaliatory tariffs on a list of 30 items imported from the US.
Summary:
Harvard University has been sued for discriminating against Asian-American applicants by rating them low on personality traits.
Summary:
US President Donald Trump called North Korean leader Kim Jong-un a "strong head" and said he wants his people "to sit up at attention" when he speaks just like the North Koreans do for their leader.
Summary:
Over 4 lakh Indians with "advanced degrees" may have to wait for 151 years to obtain legal permanent residence status in the US, also called green card, according to a US-based think-tank.
Summary:
Nirav Modi exported poor quality jewellery to Hong Kong and Dubai, Firestar Group COO Anup Panchal told the Enforcement Directorate.
He revealed that jewellery exported to Dubai and Hong Kong never returned as defective or sub-standard.
Summary:
The income was detected during the verification of cases of Non Pan Data, Foreign Account Tax Compliance Act (FATCA) and Common Reporting Standard (CRS) data.
Summary:
Sanjay Kapoor, while talking about his daughter Shanaya's Bollywood debut, said that she is working towards it.
Hopefully, soon enough." Sanjay said he advised Shanaya not to take praises or criticism seriously.
Summary:
Love and work are two separate things." "Today, I don't feel anything...
Ankita further said she has learnt to love herself after the break-up.
Summary:
Shah Rukh's production house Red Chillies Entertainment will reportedly be producing the film.
Summary:
Choreographer-director Remo D'Souza has said that dance is a comfort zone for him where he is the hero, but filmmaking is more challenging.
Summary:
Brazil captain Neymar has said that he is the best footballer in the world, while five-time Ballon d'Or-winners Lionel Messi and Cristiano Ronaldo are from "another planet".
Summary:
Argentina captain Lionel Messi failed to give his country a lead after missing a penalty in the 64th minute as Iceland managed a 1-1 draw in their first-ever FIFA World Cup match on Saturday.
Summary:
Australian cricketer David Warner, who is currently serving a 12-month ban from representing Australia and was barred from IPL 2018 over the ball-tampering scandal, has been signed by Caribbean Premier League side St Lucia Stars.
Summary:
India Under-19 and India A coach Rahul Dravid has been paid â¹40.5 lakh as professional fees for March, the BCCI revealed.
Summary:
The L-G had insisted that doctors check up on the protesting ministers.
Summary:
Biswal further said he's hopeful of PM Modi looking into the issues, despite not fulfilling his promises in four years.
Summary:
The MLA allegedly also said that appropriate action needs to be taken against them.
Summary:
The court had said that liquidation proceedings against its subsidiary Jaypee Infratech shall remain stayed on submission of this amount.
Summary:
The daughter had allegedly manhandled the driver following an altercation when he was late to pick her up from morning walk.
Summary:
Russian cosmonaut Valentina Tereshkova, who became the first woman to go into space on June 16, 1963, had to re-enact her landing sequence in order to be filmed.
Summary:
Taking a dig at Delhi Lieutenant Governor Anil Baijal, filmmaker Shirish Kunder tagged LG Electronics and tweeted, "@LGIndia...Do you have a service center in Delhi?
Summary:
Lyricist Shreshta, who wrote lyrics for Telugu film 'Arjun Reddy', alleged that the wife of a producer asked her to submit to her husband's sexual demands.
Summary:
A woman and her partner filed a police complaint accusing singer Jubin Nautiyal of physical assault and molestation during his party at a hotel in Dehradun.
Summary:
Samsung, the world's largest chipmaker, said it worked with the university to develop the technology and denied patent infringement.
Summary:
Apple has hired senior self-driving car engineer Jaime Waydo from Alphabet's Waymo unit that made the Google driverless car.
Summary:
The Border Security Force (BSF) and the Pakistan Rangers did not exchange sweets at the Attari-Wagah border on Saturday on the occasion of Eid ul-Fitr due to ongoing ceasefire violations by Pakistan in Jammu and Kashmir.
Summary:
"In June 2016, I was truly inspired to read the stories of IAF's first women fighter pilots...I decided that I had to go for it," Meghana said.
Summary:
Meanwhile, another ceasefire violation was reported from the state's Arnia sector.
Summary:
Calling the US President their hero, the National President of the organisation, Vishnu Gupta said that Trump is "a saviour of humanity".
Summary:
Sri Rama Sene has started a fundraising campaign for the family of Parashuram Waghmore, an accused in Gauri Lankesh's murder.
Summary:
Indian Railways has decided to issue credit card-like plastic health cards carrying a unique all-India number to its employees and pensioners.
Summary:
Waghmore further said he didn't know who Lankesh was and added that he should not have killed her.
Summary:
This came after a new government policy called for separating families entering the US illegally by placing children in protective custody.
Summary:
Three WWE wrestlers played tug of war against a 2.5-year-old lion cub in confinement at the San Antonio Zoo in USA.
Summary:
The firm imported 35,746kg of duty-free gold between 2005-2015, but exported only 34,041kg of gold jewellery.
Summary:
Former AirAsia India CEO Mittu Chandilya on Friday announced his resignation from Adani Group.
Summary:
Vaani Kapoor will skip performing at IIFA 2018 due to a hamstring injury, as per reports.
Summary:
Priyanka Chopra took to Instagram to share a picture with her mother Madhu Chopra on the occasion of the latter's birthday and wrote, "Happy Birthday beautiful lady...my strength my weakness all rolled into one." She added, "I wish you the best year ever..
Summary:
Argentine legend Diego Maradona scored the opening goal against England in the 1986 FIFA World Cup quarter-final using his hand in the 51st minute.
Summary:
Midfielder Paul Pogba scored in the 81st minute to help France defeat 36th-ranked Australia 2-1 in their first match of the 2018 FIFA World Cup on Saturday.
Summary:
After qualifying for FIFA World Cup for the first time, the Iceland football team performed its traditional Viking thunder clap celebration with the fans.
Summary:
Researchers found a 1.36 times increase in mammals' night activity, even among those already classed as nocturnal.
Summary:
The $950-million Large Hadron Collider at CERN, Geneva, is getting an upgrade that will let researchers collect up to 10 times more data by 2026.
Summary:
Bars and shops in Mumbai have been prohibited from selling liquor from June 23-25 due to Maharashtra Legislative Council elections on June 25.
Summary:
With earnings of â¹29.17 crore on the first day, Salman Khan starrer 'Race 3' has become the highest opening grosser of 2018.
Summary:
Materazzi later revealed he had abused Zidane saying, "I prefer the whore that is your sister," which provoked the Frenchman.
Summary:
After Elon Musk-led Tesla cut 9% of its workforce to become profitable, a former employee has revealed that her team received an email at 1 am, which asked them to clear four hours in their day's schedule for a video conference.
Summary:
After the US imposed a 25% tariff on Chinese imports, China on Friday announced tariffs on US imports "of the same scale and strength".
Summary:
Jaguar's battery-powered V20E boat clocked an average speed of 142 kmph across a 2-km course, surpassing the previous maritime electric record of 124 kmph, set ten years ago.
Summary:
A woman, declared dead by a government-run hospital in West Bengal's Kolkata, was found breathing when she was lying outside an electrical furnace at a crematorium.
Summary:
PM Narendra Modi on Saturday took to Twitter to wish the nation on Eid-ul-Fitr, saying, "Eid Mubarak!
Summary:
At least 21 major Indian cities, including Delhi and Bengaluru, are expected to run out of groundwater by 2020, affecting 100 million people, according to government think tank NITI Aayog report.
Summary:
The Bombay High Court recently approved the service of notice about a litigation in a PDF format through WhatsApp as valid, while hearing a case against a credit card defaulter.
Summary:
Over 67,000 people have taken shelter at government-run relief camps, the authorities added.
Summary:
A government panel has recommended the Central Board of Secondary Education that question papers of each examination centre should have a unique QR code or watermark to trace origin in case of paper leaks.
Summary:
An estimated 50,000 litres of diesel is consumed every hour by 1,500 diesel generators to provide power backup in residential and commercial areas in Gurugram, the Haryana pollution control board said.
Summary:
A 49-year-old man in Florida, US, was arrested after he contacted the police to have the quality of his drug tested.
Summary:
Actress Ankita Lokhande has said she doesn't need a man to reach somewhere in life, while adding, "I would rather have awards." "I'm still waiting for my prince charming.
Summary:
Amitabh Bachchan has written in his blog that his "most awkward moment" was during the shoot of the 1971 film 'Parwana', when he was asked to dance and lip sync at the same time.
Summary:
The US has returned a 525-year-old copy of a letter written by Christopher Columbus to the Vatican.
Summary:
Mystic Marcus, an eight-year-old micro pig, has predicted that Argentina, Nigeria, Uruguay and Belgium will be the 2018 FIFA World Cup semi-finalists by eating apples.
Summary:
Summary:
Jockey Aaron Kuru from New Zealand remounted his horse Des De Jeu to win a 3,200 metre open steeplechase race after having crashed at the first fence.
Summary:
Jawbone had earlier sued Fitbit in 2015 alleging it attempted to recruit nearly a third of its employees.
Summary:
FDA will discuss safety of the products and how to label them so consumers can know they're getting meat from a lab, not an animal.
Summary:
Over 3,000 Air India pilots and cabin crew members have claimed they were paid only 20% of their salary for the month of May. This comes as AI officials said they had paid staff salaries on June 12.
Summary:
Union Minister of State for Finance Shiv Pratap Shukla has said that the demonetisation policy turned kala dhan (black money) into jan dhan (public wealth).
Summary:
A day after its editor-in-chief Shujaat Bukhari was shot dead, newspaper Rising Kashmir paid him a tribute with his full size photograph on the front page.
Summary:
Air India has issued a circular stating that accommodation for cabin crew members will be provided in three or four-star hotels on a "twin sharing basis" and in a "gender-sensitive manner".
Summary:
Slamming US' Central Intelligence Agency for categorising it as a "religious militant organisation", the Vishva Hindu Parishad has said the agency created terrorist Osama bin Laden and has no moral right to lecture it.
Summary:
Portugal captain Cristiano Ronaldo scored FIFA World Cup 2018's first hat-trick as Portugal drew 3-3 against Spain in their first match of the tournament.
Summary:
This makes them the world's oldest rainforest frogs ever discovered by mankind.
Summary:
Whitson, who joined NASA as a researcher in 1986, has spent more time off Earth than any other American, totalling 665 days over three International Space Station missions.
Summary:
A new teaser of Akshay Kumar starrer 'Gold', a film on India's first Olympic medal as a free nation, has been released.
Summary:
Portugal captain Cristiano Ronaldo, aged 33 years and 130 days, has become the oldest-ever player to score a hat-trick in FIFA World Cup, achieving the feat against Spain on Friday.
Summary:
Portugal captain Cristiano Ronaldo, who scored a hat-trick against Spain in his side's opening round match of the World Cup 2018, had hit only three goals in the three previous World Cup editions.
Summary:
Snapdeal's Chief Strategy and Investment Officer Jason Kothari has resigned after 1.5 years at the e-commerce company and has been appointed President of Ahmedabad-headquartered Infibeam.
Summary:
A man has been arrested for allegedly abducting, raping and murdering a one-year-old baby on the outskirts of Pune in Maharashtra.
Summary:
Female police aspirants in Madhya Pradesh, who were arrested on Wednesday while protesting against the police recruitment process, have alleged they were made to undergo pregnancy tests without their consent.
Summary:
Organising a two-day sewai festival to celebrate Eid ul-Fitr, a restaurant in Lucknow has named two of the 50 sewai dishes after Prime Minister Narendra Modi and Uttar Pradesh Chief Minister Yogi Adityanath.
Summary:
The police have arrested the man who was seen picking up the gun of Rising Kashmir Editor Shujaat Bukhari's security guard after Bukhari was shot by four assailants.
Summary:
India's imports of Iranian oil will be hit from August-end after SBI informed refiners that it won't handle payments for crude from Iran from November, the finance chief of Indian Oil Corporation has said.
Summary:
'Stranger Things' actress Millie Bobby Brown has deactivated her Twitter account reportedly after users posted memes showing her as homophobic.
Defending Millie, a user tweeted, "Humanity really is the worst...
Summary:
Actor Jackie Chan's memoir 'Never Grow Up' will be released in November.
Summary:
Bombay High Court has dismissed the FIR against actor and ex-Bigg Boss contestant Armaan Kohli who was arrested by Mumbai Police for allegedly assaulting his live-in partner Neeru Randhawa.
Summary:
Rohan shared the incident on social media and wrote, "It was....annoying as they misbehaved with a lady." He also slammed them for 'purposely' delaying the check-in since the flight was overbooked.
Summary:
Actress Sri Reddy has revealed she was approached by Tollywood producer Kishan Modugumudi and his wife, who were arrested for running a sex racket in the US.
Summary:
The Russian government has barred Nigerian fans from bringing live chickens to the stadiums during their 2018 FIFA World Cup matches.
Summary:
Taking a dig at PM Narendra Modi's fitness video, Samajwadi Party leader Azam Khan said he was busy doing squats while our soldiers were getting killed.
Summary:
Karnataka CM HD Kumaraswamy on Friday said, "I know, no one can touch me for one year.
Summary:
Tesla and SpaceX CEO Elon Musk on Friday said he will use his pay to make life multi-planetary because he doesn't want people to be sad about the future.
Summary:
Earlier, the escalators were to be installed at stations with footfall above 25,000.
Summary:
Tamil Nadu is planning to ban electronic cigarettes, battery-operated inhalers that emit doses of vaporised nicotine, state Health Minister Vijaya Baskar told the assembly on Thursday.
Summary:
The Delhi Police has arrested one of the key suppliers of drugs to school and college students in Delhi-NCR and Uttar Pradesh.
Summary:
Chapters on CM Yogi Adityanath's gurus, including Baba Gorakhnath and Baba Gambhirnath, have been included in textbooks for Classes 1-8 in Uttar Pradesh government schools.
Summary:
A post on the clothing label's Instagram page read, "At Supernatural, Extraterrestrial & Co., we're prepared to welcome a future of male pregnancy."
Summary:
The Enforcement Directorate is probing whether Silicon Valley venture capital firm Sequoia Capital had any role in an alleged money laundering case involving former Finance Minister P Chidambaram's son Karti Chidambaram, according to reports.
Summary:
Real Madrid forward Cristiano Ronaldo has agreed to accept a two-year suspended sentence and pay a $21.8-million (around â¹150 crore) fine over tax evasion, according to Spanish media.
Summary:
Singer Kesha has accused music record producer Dr Luke of raping singer Katy Perry.
Summary:
Samajwadi Party chief Akhilesh Yadav on Thursday said his wife Dimple will not contest the upcoming general elections to prove that the Opposition's claim of nepotism in SP are false.
Summary:
A man accused of raping his 13-year-old daughter murdered his wife by slitting her throat with a knife outside a sessions court at Dibrugarh in Assam on Friday.
Summary:
A 93-year-old man on Friday approached the Supreme Court to challenge the life sentence awarded to him in a 1978 murder case.
Summary:
Praising an image that went viral on social media of Manipur IAS officer Deleep Singh standing in waist-deep water while carrying out flood rescue operation, a Twitter user wrote, "He is an inspiration to many." Actor Boman Irani wrote, "Always a pleasure to see such amazing people serving our Nation.
Summary:
One of the victims left the shop without paying for the cigarette and assaulted the shop owner when he confronted him.
Summary:
Indian-origin teenagers and adults are forced to 'self-deport' as their H-4 dependent visa expires at the age of 21.
Summary:
Bruce Lorenz was re-elected the Mayor of the US town of Ruso after he secured all the three votes cast in the elections, local media reported.
Summary:
US President Donald Trump reportedly told leaders at the G7 summit that "Crimea is Russian because everyone who lives there speaks Russian".
Summary:
McDonald's on Friday said it will ban use of plastic straws at its UK restaurants by 2019.
Summary:
Last month, the UK court ruling allowed the Indian banks to sell Mallya's assets to recover around â¹10,390 crore.
Summary:
Exports in May rose by 28.18% to $28.86 billion while imports were up 14.85% to $43.48 billion.
Summary:
A 12-floor office tower in London has been sold at a price of about â¹736 crore per floor.
Summary:
India's richest banker Uday Kotak has said errors of "commission", not "omission", destroy banks.
Summary:
The Enforcement Directorate on Thursday attached immovable assets of Chennai-based Kanishk Gold worth â¹138 crore under the Prevention of Money Laundering Act. The jewellery chain is under investigation for allegedly cheating a consortium of 14 banks to the tune of â¹824 crore.
Summary:
Priyanka further said, "I've finally found my feet in the 30s...as a fashionista."
Summary:
John Abraham has said that Akshay Kumar is his senior in the industry and that he has always wished the best for him.
Summary:
Actor Bobby Deol, who made his comeback with 'Race 3', has said that director Imtiaz Ali is a 'buddy' and he has no regrets or anguish over the films 'Jab We Met' and 'Highway'.
Earlier, Bobby had said that he was to be a part of both the films.
Summary:
Actor Anupam Kher took to Instagram to share an old photograph of himself and other celebrities including Rajinikanth at Jackie Shroff's wedding.
Summary:
Mahatma Gandhi had written the postcard, dated November 30, 1924, to Indian freedom movement leader Annie Besant.
Summary:
Morocco's 31-year-old forward Aziz Bouhaddouz scored an own goal in the 95th minute (injury time) to hand Iran a 1-0 victory in their first match of 2018 FIFA World Cup on Friday.
Summary:
India Women opener Smriti Mandhana is set to become the first Indian to play in the English T20 league after being signed by defending champions Western Storm.
Summary:
A spectator claimed that the left-handed batsman slammed 18 sixes in the innings.
Summary:
A wine named 'Minuto 116 ('116)' has been inspired by Spanish midfielder Andrés Iniesta's 116th minute goal against Netherlands which helped Spain win their first-ever FIFA World Cup in 2010.
Summary:
The administration had found the duplicate keys in an envelope inside the district record room on Wednesday.
Summary:
Juncker further said that Trump called the European Union "a danger to the US", adding he wasn't sure if the US President meant it as a compliment.
Summary:
Late Indian painter Tyeb Mehta's 1989 untitled work (Kali) fetched â¹26.4 crore at SaffronartâÂÂs 200th auction online on Thursday, setting a new record for the painter.
Summary:
India was the first side to be dismissed twice in a day when they lost all of their 20 wickets on the third day of the Manchester Test against England in 1952.
Summary:
A new BMW car worth almost â¹50 lakh was entirely burnt after its owner reportedly burnt large incense sticks near it to 'please God' in China.
Summary:
Salman Khan has said that his fans want to get entertained and learn something without being given too much 'gyaan'.
Summary:
Stefano Gabbana, Co-founder of Dolce & Gabbana, called singer Selena Gomez 'ugly' while commenting on an Instagram post.
Summary:
Further, India bowled just 399 deliveries in the match, which is the fewest number of balls bowled by India in a winning Test.
Summary:
American Mandy Horvath, who lost both her legs after being struck by a train in 2014, climbed atop the 4,302-metre-high Pikes Peak in Colorado.
Summary:
Google has released its first diversity report since the anti-diversity memo by ousted engineer James Damore, who questioned the company's policies over fewer women in tech roles.
Summary:
Summary:
Hawking had passed away on March 14, aged 76.
Summary:
Goa Chief Minister Manohar Parrikar on Friday resumed work after being treated for a pancreatic ailment for the last three months.
Summary:
The terrorists who shot dead Army jawan Aurangzeb in J&K on Thursday after abducting him, have released his last photo taken by them before killing him.
Summary:
The US is supporting Saudi Arabia in the civil war.
Summary:
Several social media users slammed the bear's handlers for making it play the instrument, citing animal abuse.
Summary:
The government has extended deadline for sale of pre-GST goods with stickers of revised rates till July 31.
Summary:
HDFC Bank MD and CEO Aditya Puri's average total earnings per day stood at around â¹2.64 lakh in FY18 as his total remuneration for the year was â¹9.65 crore.
Summary:
Public sector banks have written off bad loans worth â¹1.20 lakh crore, an amount that is nearly 140% of their total losses posted in fiscal 2017-18.
Summary:
Rajkummar Rao is set to star in Mikhil Musale's upcoming directorial 'Made In China'.
Summary:
Summary:
Saudi Arabia's football team will be penalised for their 0-5 defeat to Russia in the 2018 FIFA World Cup opener.
Summary:
Notably, the match was the African nation's first World Cup game in 28 years.
Summary:
Stand-in captain Ajinkya Rahane invited the Afghan players to join in as the Indian team posed with the trophy following their biggest win in Test cricket.
Summary:
Opener Shikhar Dhawan, India's first batsman to score a ton before first day's lunch, said he holds an advantage over SRH teammate Rashid Khan as he has faced him in the nets for the past two years.
Summary:
Australian football club Western Sydney Wanderers' new under-construction stadium will have stands at the steepest allowable angle of 34ð, thereby making it the world's steepest stadium.
Summary:
Indian all-rounder Hardik Pandya broke the off stump into two after hitting it in the follow through off his own bowling in the one-off Test against Afghanistan on Friday.
Summary:
Responding to people criticising his sit-in protest at Delhi L-G Anil Baijal's house, Chief Minister Arvind Kejriwal said, "Is it easy to sleep on sofas?" He added, "Am I here for myself or to get jobs for my children?
Summary:
The Delhi High Court has imposed a fine of â¹50,000 on AIIMS for not letting an aspirant appear for the entrance exam as the "QR code of his Aadhar Card did not get scanned".
Summary:
This was the first time in Test cricket history that India won a match in two days.
Summary:
The US had imposed tariffs on imports worth up to $60 billion from China in March.
Summary:
Global personal financial wealth grew by 12% to touch $201.9 trillion in 2017, with millionaires and billionaires controlling almost half of it, a report by Boston Consulting Group said on Thursday.
Summary:
"In fact, I learnt horse riding because of the traffic headache," he further said.
Summary:
Responding to a question about Alia Bhatt, actor Ranbir Kapoor has said that every human being does extraordinary things only when they are in love.
Summary:
Uruguayan forward Luis Suárez bit Italian defender Giorgio Chiellini on his shoulder during their group stage match in the 2014 FIFA World Cup. It was the third time in Suárez's career that he bit an opponent, with the first offence coming in 2010 and the second in 2013.
Summary:
Egypt's Essam El-Hadary, the oldest player at 2018 FIFA World Cup, is older than three coaches managing in the tournament.
Summary:
Indian spinner Ravichandran Ashwin became India's fourth highest wicket-taker in Test cricket after going past former Indian pacer Zaheer Khan by picking up his 312th wicket against Afghanistan on Friday.
Summary:
Two Stanford researchers have trained an AI engine to create its own memes by feeding their image-captioning neural network with over 400,000 memes.
Summary:
Notably, both Ola and Uber are backed by Japanese conglomerate SoftBank.
Summary:
The woman allegedly abused and hit the driver following a delay in bringing the vehicle after her morning walk.
Summary:
Two of Bukhari's personal security officers were also killed in the attack after being shot multiple times.
Summary:
North Korea has released a video showing US President Donald Trump salute North Korean General No Kwang Chol.
Summary:
Barbara Underwood accused Trump of illegally using the non-profit organisation for his own benefit during the 2016 presidential campaign, including paying off businesses' creditors.
Summary:
South Korea has said the US troops stationed in the country are not subject to negotiations between North Korea and the US as they are a matter of alliance between South Korea and the US.
Summary:
India's most valuable company Tata Consultancy Services (TCS) on Friday approved a share buyback plan for an aggregate amount not exceeding â¹16,000 crore.
Summary:
Filmmaker Anurag Kashyap has said censorship is a political tool in India, while adding that he fights it "till the end".
I won't back out," he added.
Summary:
Talking about her Bollywood journey, Daisy Shah said, "I was one of the assistant dancers in 'Race' 10 years ago...now I'm one of the lead actors of 'Race 3'".
Daisy further said she's "overwhelmed" to work with actors like Anil Kapoor and Salman Khan.
Summary:
Television channel Fox has apologised for broadcasting a clip showing singer Robbie Williams flipping his middle finger to the camera while performing live at 2018 FIFA World Cup opening ceremony on Thursday.
Summary:
Earlier, the Russian government had issued a directive asking visiting fans to hide their sexuality in public while in Russia.
Summary:
Sharma's wicket-taking deliveries were clocked at 139 and 141.8 kmph.
Summary:
Facebook-owned messaging service WhatsApp has started the mass rollout of WhatsApp Payments feature via UPI platform in India, according to reports.
Summary:
"ToneTag's sound wave technology will be integrated for payment on delivery for Amazon customers, which is expected to go live in three-four months.
Summary:
A well-known psychological study which showed human beings are naturally inclined to abuse power when given a position of command was based on fakery and lies, as per a report by American author Ben Blum.
Summary:
After the CIA classified Vishva Hindu Parishad (VHP) and Bajrang Dal as religious militant organisations, the VHP on Friday threatened to launch a global movement against CIA if the militant tag is not changed.
Summary:
The police arrested the accused who had kidnapped her when she was coming back from school, with an intention of sexually assaulting the victim.
Summary:
He had earlier allied with Myanmar monk Ashin Wirathu to prevent alleged forced conversions by Muslims.
Summary:
It has been rated 2/5 (Bollywood Hungama, Times Now) and 1.5/5 (NDTV).
Summary:
Summary:
With this, Afghanistan set an unwanted record of batting the fewest overs by a team in an innings of their debut Test.
Summary:
After Elon Musk-led tunnelling startup The Boring Company distributed the first batch of its 20,000 commercial flamethrowers, people started using it to cook meat and glaze doughnuts.
Summary:
Even after the launch of the 100th store, offline will comprise only about 5% of Myntra's business, added Narayanan.
Summary:
Two independent teams of astronomers have discovered three infant planets in orbit around a four-million-year-old newborn star about 330 light-years from Earth.
Summary:
An observatory in Spain is planning to beam late physicist Stephen Hawking's voice into space directly at the nearest known black hole from Earth, 3,500 light-years away.
Summary:
Summary:
A security guard stationed outside a company died due to fatigue and extreme heat in Faridabad after he was allegedly made to stay on duty for 36 hours.
Summary:
Union Minister Jayant Sinha has said that Air India will receive government aid for payment of pending employee salaries.
Summary:
Intelligence agencies in India have issued a warning that Pakistan-based militant outfits are planning to sabotage the 21-day Amarnath Yatra with a terror strike.
Summary:
Delhi University has advised its colleges to set realistic cut-offs, stating that not more than 20% seats are filled even after releasing the first three cut-off lists.
Summary:
Pakistani Taliban chief Maulana Fazlullah, also known as 'Mullah Radio', who was behind the attack on Nobel laureate Malala Yousafzai has reportedly been killed in a US drone strike in Afghanistan.
Summary:
Putin extended the invitation as Kim Yong-nam, the head of the Presidium of North Korea's Supreme People's Assembly, met the Russian President earlier this week.
Summary:
Hrithik Roshan, who will play mathematician Anand Kumar in an upcoming biopic on the latter titled 'Super 30', will host a party for 26 students of Kumar's Super 30 academy who cracked the JEE-Advanced 2018.
Summary:
Ranbir Kapoor, while speaking about his nephew Taimur Ali Khan, said, "To be honest, I stalk his pictures because I'm also obsessed." "When you see him, it just warms your heart...
Ranbir further said, "I've had the...
Summary:
Russian President Vladimir Putin shrugged and smugly shook Saudi Crown Prince Mohammed bin Salman's hand after Russia scored the 2018 FIFA World Cup's first goal against the Arab nation on Thursday.
Summary:
Indian cricketer Rohit Sharma and wife Ritika Sajdeh attended the opening ceremony of the FIFA World Cup 2018 in Moscow on Thursday.
Summary:
Afghan cricketers took the field in traditional pathani suits and wished each other 'Eid Mubarak' in the M Chinnaswamy Stadium before the start of Day 2 of the one-off Test against India.
Summary:
CSK's English pacer David Willey revealed his county side Yorkshire threatened to tear up his contract if he decided to play in IPL 2018 after being called up as an injury replacement.
Summary:
A German collector in Myanmar has discovered a tick in amber (resin) which was likely trapped in spider web and immobilised by the spider wrapping its silk around it.
Summary:
Maharana Pratap said we can't accept a 'vidharmi' and a foreigner as our ruler," Yogi added.
Summary:
Indian Railways is planning to deploy "undercover mystery men" to check for any flaws in the services offered by it, a senior official said.
Summary:
Australian university students, who dressed up as the Ku Klux Klan members and a black slave, for a 'politically incorrect' themed party, have been condemned by the university's vice-chancellor.
Summary:
FBI agent Peter Strzok, who investigated the alleged Russian interference in 2016 US presidential elections, texted his lover that the agency would stop then-candidate Donald Trump from becoming President.
Summary:
A 73-year-old Australian artist has buried himself alive in a steel container under a busy road for three days as part of a dark arts festival act.
Summary:
The VHP and Bajrang Dal have been classified as militant religious outfits under the section 'Political pressure groups and leaders' by the US' Central Intelligence Agency (CIA).
Summary:
OnePlus has revealed that it has a 5 million-strong global community.
Summary:
US President Donald Trump has been nominated for the Nobel Peace Prize by two Norwegian MPs for his efforts in reaching an agreement with North Korea to denuclearise the Korean peninsula.
Summary:
Bollywood artists including Salman Khan, Katrina Kaif and Akshay Kumar have been sued by an Indian-American company, which alleged they refused to perform at a US concert despite having taken money.
Summary:
Alia Bhatt's sister Shaheen Bhatt, while opening up about suffering from depression, said, "I've lived with depression since I was 12...since then I've been suicidal on more than one occasion." "I've been consumed by the terrifying thought of having...a single means of escape from a bleak...future," she added.
Summary:
The FIFA World Cup winners do not get the original FIFA World Cup trophy and are instead awarded a gold-plated replica.
Summary:
Summary:
UK-based car manufacturer Aston Martin has unveiled the limited edition Aston Martin Rapide AMR, priced at $240,000 (â¹1.6 crore).
Summary:
A book compiling Albert Einstein's diaries on his tour of Asia in the 1920s has claimed the scientist described the Chinese as "industrious and filthy" with "spiritless and obtuse" children.
Summary:
The NGO also gifted new clothes and shoes to 500 refugee children in Iraq's Mosul as Eid gifts.
Summary:
Further, municipal bodies have been asked to sprinkle water on major roads to settle the dust.
Summary:
Patanjali MD Acharya Balkrishna has said the company's 'Indianised swadeshi' jeans for women will be loose so they "comply with Indian cultural norms".
Summary:
Under Canada's Express Entry programme, 36,310 people holding Indian citizenship were offered permanent residency (PR) in Canada in 2017, which is an increase of over 200% from previous year's 11,037 invites.
Summary:
Chef Vikas Khanna has found the Muslim family that saved him during the 1992 Mumbai riots after he mentioned them in an interview last year.
Summary:
The Indian Railways will livestream video footage of its 'base kitchens' to check if cooks are serving poor quality food, Railway Minister Piyush Goyal has said.
Summary:
The plane's parking is reportedly costing the Mumbai airport nearly â¹15,000 per hour since December 2013.
Summary:
Tata Trusts on Thursday dismissed "inaccurate and mischievous reports" by media entities that its offices were raided by authorities in the AirAsia corruption probe.
Summary:
Ranbir Kapoor has said he'd like to work with Ranveer Singh as he's a "big fan" of the latter's work.
Summary:
Priyanka Chopra's rumoured boyfriend, American singer Nick Jonas' brother Kevin Jonas, while speaking on meeting her at their cousin's wedding, said, "She is super awesome." "But, that's Nick's thing and he can say what he wants to say," Kevin added.
Summary:
After winning a record eleventh French Open title in Paris on Sunday, Spain's 31-year-old world number one Rafael Nadal said, "At this age, I thought I'd be retired and be having a family".
Summary:
Pakistan's Sindh Wildlife (SWL) department is launching an investigation into presence of a lion in former Pakistan captain Shahid Afridi's house.
Summary:
Photo-sharing app Instagram has confirmed that it is no longer testing a feature that allowed users to see when another user took a screenshot of their Story.
Summary:
Google-owned video sharing platform YouTube is running advertisements for major companies before videos featuring fake medical news such as AIDS conspiracy theories, according to reports.
Summary:
Japanese conglomerate SoftBank will invest up to $100 billion in solar power generation project in India, as per reports.
Summary:
In a first, astronomers have directly imaged the formation and expansion of a jet of material ejected when the gravitational force of a supermassive black hole ripped apart a nearby star.
Summary:
The boy's father, who lives in another city, called up the boy's landlord.
Summary:
An animal trainer filmed putting red lipstick on a beluga whale in North China has been criticised for her actions by internet users who have called it animal abuse.
Summary:
Big Bazaar, the largest retailer in India celebrates one new product every month and wants India to try something new which they have probably thought of but not tried yet.
Summary:
The sighting of the Moon signifies the end of the Ramadan month.
Summary:
The bullet-ridden body of Indian Army jawan, Aurangzeb, who was abducted recently from Jammu and Kashmir's Pulwama, has been found in the district's Gusoo region.
Summary:
British singer-songwriter Robbie Williams showed the middle finger to a camera while performing live at 2018 FIFA World Cup opening ceremony at the Luzhniki Stadium in Moscow on Thursday.
Summary:
South Korean carrier SK Telink has reintroduced the 9-year-old iPhone 3GS after discovering an unsold cache of the smartphones at a warehouse.
Summary:
The 1.5 foot-long robot is fitted along the railway track and has sensors that can reportedly detect cracks as small as 2 cm.
Summary:
Akhilesh has said that the opposition has charged the SP with nepotism, due to which his wife Dimple Yadav will not contest the election this time.
Summary:
It will have vehicles called 'Skates' that will travel up to 240 kmph through a tunnel carrying up to 16 passengers.
Summary:
Shujaat Bukhari, who was shot dead by terrorists in Jammu and Kashmir's Srinagar while leaving his office today, was the editor of regional newspaper Rising Kashmir.
Summary:
The Ministry of External Affairs website will display the summons issued to NRI men who abandon their wives in India, an official has said.
Summary:
Goa Chief Minister Manohar Parrikar on Thursday returned to India after he spent two and a half months in the US, where he was receiving treatment for a pancreatic ailment.
Summary:
India is suffering from the worst water crisis in its history and millions of lives and livelihoods are under threat, a NITI Aayog report has stated.
Summary:
Justifying his call for Russia's reinstatement in the G7 group, US President Donald Trump said world leaders spend 25% of their time talking about the country.
Summary:
A Maldives court sentenced ex-President Maumoon Abdul Gayoom, Chief Justice Abdulla Saeed and Supreme Court judge Ali Hameed to 19 months in prison after they were found guilty of obstruction of justice.
Summary:
Former World Bank Economist Omar al-Razzaz was sworn in as Jordan's Prime Minister on Thursday after King Abdullah issued a decree approving the new government.
Summary:
North Korea had cancelled the talks in May in protest against the US-South Korea military drills.
Summary:
The accused hacked her iCloud, PayPal, social media accounts and continued to stalk her even after she changed cities, the police said.nnnn
Summary:
The Interpol has told Indian agencies that Nirav Modi travelled four times between March 15 and March 31 on a revoked Indian passport, according to reports.
Summary:
Russian lawmaker Mikhail Degtyaryov has encouraged the citizens to have sex with visiting foreign football fans during the FIFA World Cup. This comes a day after another Russian MP had said that Russian women should not have sex with visiting fans to avoid becoming single mothers with mixed-race children.
Summary:
This was Russia's first victory in the global tournament since their 2-0 win over Tunisia in the 2002 edition.
Summary:
Opposition Leader Vijender Gupta, BJP MLAs Jagdish Pradhan and Manjinder Singh Sirsa, and rebel AAP leader Kapil Mishra sat on dharna at Delhi CM Arvind Kejriwal's office on Wednesday afternoon.
Summary:
A former college principal from Telangana duped men of â¹1.8 lakh by posting pictures of actresses from the South Indian film industry labelled as escorts online.
Summary:
This is the eighth recorded case of a whale carcass washing ashore in Maharashtra since 2015.
Summary:
Three minor Dalit boys were stripped, beaten and paraded nude for allegedly swimming in a village well in Maharashtra's Vakadi on June 10.
Summary:
An eight-year-old girl from Gujarat told her parents about being molested after watching a kidnapping scene from the Bollywood film 'Baaghi 2'.
Summary:
Ivanka Trump wished her father US President Donald Trump on the occasion of his 72nd birthday on Thursday.
Wishing you your best year yet!!!" Ivanka serves as a Special Advisor to the US President.
Summary:
The UN General Assembly voted to condemn Israel for using "excessive, disproportionate and indiscriminate" force against Palestinians near the country's border with Gaza.
Summary:
Terrorists on Thursday shot dead Shujaat Bukhari, the editor of regional newspaper Rising Kashmir, in Jammu and Kashmir's Srinagar.
Summary:
Patidar agitation leader Hardik Patel on Thursday claimed that Gujarat CM Vijay Rupani has resigned.
The party (BJP) will chose either a Patidar or a Rajput as the new chief minister," he added.
Summary:
The IIT board has released an extended merit list of the Jee Advanced Examination following the directions of the HRD Ministry, increasing the number of qualifying candidates from 18,138 to 31,980.
Summary:
The 2014 FIFA World Cup's viewership (3.2 billion) was twice that of the 2015 Cricket World Cup (1.5 billion).
Summary:
The winners of the 2014 FIFA World Cup, Germany, were awarded a prize money of $35 million (over â¹236 crore), which is nearly 10 times than what the 2015 Cricket World Cup champions Australia (around â¹26 crore) received.
Summary:
Earlier in May, Musk bought about $9.85 million worth of the company's shares.
Summary:
US-based co-working startup WeWork is seeking to raise funding which could value the firm at $35 billion, according to an executive at SoftBank Group.
Summary:
German state prosecutors have fined carmaker Volkswagen around $1.2 billion for rigging diesel engine emissions worldwide.
Summary:
Summary:
US automaker General Motors on Wednesday named Chennai-born Dhivya Suryadevara as its first-ever female Chief Financial Officer.
Summary:
The child's mother claimed in a Facebook post that the captain refused to let her daughter sit on her lap and fly with an infant seat belt.
Summary:
NRI men who get married in India will have to register their marriages within a week and update their marital status on their passports, government officials have said.
Summary:
As a witness, Aiello couldn't show her face in public, be photographed, or hold campaign events.
Summary:
Donald Trump, who turned 72 on June 14, is the oldest person to become the US President.
Summary:
US broadcasting giant Comcast has made an unsolicited offer to buy most of media conglomerate 21st Century Fox for $65 billion.
Summary:
The organisers revealed that the Saudi girls' trip was canceled due to "logistical circumstances".
Summary:
New Australian cricket team coach Justin Langer has said that he "nearly died" when the ball tampering incident came to light.
Summary:
For the consumption of news, youngsters are turning towards messaging apps like Facebook-owned WhatsApp, owing to which the use of social networks such as Facebook is declining in the US, according to the Reuters Institute.
Summary:
Microsoft is reportedly working on technology to eliminate cashiers and checkout lines from stores, similar to Amazon's hi-tech grocery store called 'Amazon Go'.
Summary:
McAfee researchers have discovered that Microsoft's digital assistant Cortana can be used to hack computers running on Windows 10 operating system.
Summary:
However, the company hasn't revealed details on when and how they will integrate this technology into a web browser.
Summary:
Experiments at Berkeley Lab have helped confirm that samples believed to originate from interstellar comets collected from Earth's upper atmosphere contain dust leftover from the initial formation of the solar system.
Summary:
Summary:
An Afghan national who was set to fly to Dubai via Air India was arrested at the Cochin International Airport on Wednesday with US dollars and Saudi riyals equivalent to nearly â¹11 crores.
Summary:
A 40-year-old Delhi jeweller was killed after he begged robbers to leave some gold for his children's futures, his 13-year-old son has said.
Summary:
A man was tied to a tree while his wife and 15-year-old daughter were gangraped at gunpoint in BiharâÂÂs Gaya district on Wednesday night.
Summary:
The government has ordered a Serious Fraud Investigation Office (SFIO) probe against Aircel and two group firms over alleged financial irregularities.
Summary:
During the 2006 final, France's Zinedine Zidane headbutted Italian defender Marco Materazzi and was sent off.
Summary:
Facebook-owned messaging service WhatsApp faced global outage for several hours on Thursday.
However, WhatsApp is yet to make an official statement on the matter.
Summary:
The teaser of 'Loveratri', the debut film of Salman Khan's brother-in-law Aayush Sharma, has been released.
Directed by Abhiraj Minawala and produced by Salman Khan, 'Loveratri' is scheduled to release on October 5.
Summary:
Though they were arrested in April, the case came to light on Wednesday when local media reported that police had filed a charge sheet.
Summary:
After being named in the playing XI for the Afghanistan Test, wicketkeeper-batsman Dinesh Karthik has set the record for the most consecutive Tests missed between two appearances for India.
Summary:
Apple has said it'll change its iPhone settings to eliminate a vulnerability that has been used by law enforcement agencies to hack into its devices.
Summary:
A Qantas Airbus A380 plane, the world's largest passenger jet, suddenly lost altitude for approximately 10 seconds over 30,000 feet above the Pacific Ocean after flying through the wake turbulence of another plane.
Summary:
The Madras High Court on Thursday delivered a split verdict in the case against disqualification of 18 rebel AIADMK MLAs in Tamil Nadu, thus referring the case to a third judge to decide.
Summary:
Its stake will be worth more than $409 million after Mercari holds an Initial Public Offering (IPO) on June 19.
Summary:
"She is missing a piece of brain tissue about the size of an apple at the back of her brain.
Summary:
Terrorists on Thursday abducted an Indian Army jawan from Jammu and Kashmir's Pulwama.
This came hours after some terrorists opened fire at a joint checkpoint of the CRPF and the police near Pulwama's Gangoo.
Summary:
Mudasir Bhat and Aslam Mir broke their Ramadan fast in order to donate blood to the ailing woman.
Summary:
Apart from that, 12 incidents of landslides were reported from the state's Wayanad and Kannur and around 2,000 people from the three districts have been shifted to relief camps.
Summary:
McCormack wrote the 224-page book without using full stops, technically making the novel one sentence-long.
Summary:
Last month, Moody's cut India's growth forecast for the ongoing fiscal to 7.3% from 7.5% citing rising oil prices.
Summary:
British aircraft engine maker Rolls-Royce has announced it will cut 4,600 jobs over two years to save ã400 million (over â¹3,600 crore) annually by 2020.
Summary:
"Everything is different and I've to actually work towards achieving a balance.
I'm very single-minded in my approach and it's very important to balance," she added.
Summary:
Amitabh Bachchan will donate â¹2 crore to Army martyrs' families and to the cause of repayment of farmers loans.
Summary:
New Australian coach Justin Langer has said that the Steve Smith-led Australian team was behaving like "spoilt brats" in the years leading up to the Cape Town Test, where the ball-tampering scandal surfaced.
Summary:
Afghanistan reduced India to 347/6 from 280/2 on the first day of their first-ever Test on Thursday.
Summary:
Before his marriage to Michibata, the former British racing driver was engaged to singer-actor Louise Griffiths.
Summary:
Summary:
Vedanta has spent over $9 billion to build the refinery and is seeking to expand it.
Summary:
Puducherry LG Kiran Bedi has inaugurated a tourist kiosk or robocop called 'Singham' (meaning Lion).
Summary:
Delhi is among the top five Indian cities reporting high percentages of elderly abuse with 33% of the elderly population being treated poorly, a new survey released by HelpAge India said.
Summary:
Turnbull said the government accepted the majority of recommendations from a landmark five-year inquiry into child sexual abuse.
Summary:
The move is in line with Ambani's aim to generate half of the group's revenue from consumer businesses over the next 10 years.
Summary:
An investment of â¹10,000 made in Infosys in 1993 is now worth â¹2.55 crore, 25 years after the Bengaluru-based company's IPO at an issue price of â¹95 per share.
Summary:
The official teaser of Dharmendra, Sunny Deol and Bobby Deol starrer 'Yamla Pagla Deewana Phir Se' has been released.
Summary:
Dutt had earlier opened up about his drug addiction and admitted that he had tried every drug available.
Summary:
A dog named Pickles found the Jules Rimet trophy, the original prize of FIFA World Cup, seven days after it was stolen ahead of the tournament's 1966 edition.
Summary:
Aged 17 years and 78 days, Mujeeb is the youngest-ever cricketer to play in the inaugural Test of a country.
Summary:
In the letter to PM Narendra Modi, Delhi CM Arvind Kejriwal asked him with "folded hands" to end the 'strike' by IAS officers.
Summary:
Antarctica has enough ice to raise seas by 58 metres if it ever all melted, noted researchers.
Summary:
Calling for an international inquiry into alleged violations by Indian security forces in Kashmir, the UN has said the forces used excessive force in the region.
Summary:
Rejecting a UN report accusing Indian security forces of using excessive force in Kashmir, the Ministry of External Affairs called it "fallacious, tendentious and motivated".
Summary:
This comes after the success of 'Kashmir Super-40', a similar initiative for engineering in which 28 out of 40 students cracked the IIT-JEE Mains 2017.
Summary:
The ruling came after Musharraf failed to appear in court in a treason case linked to his disqualification by a High Court in 2013.
Summary:
Earlier this year, Trump tweeted, "The fake news media is the enemy of the American People!"
Summary:
Filmmaker Zoya Akhtar has said the influx of women in workplaces is changing the narrative in cinema.
Summary:
When asked to pick his top four teams at 2018 World Cup, Indian football team captain Sunil Chhetri said "Germany, Spain, Brazil and France look really strong.
Summary:
Indian opener Shikhar Dhawan has become the first Indian and overall sixth batsman to smash a hundred before lunch on the opening day of a Test.
Summary:
At Facebook, Danker was responsible for leading product management for Video, Facebook Watch, and Facebook Live.
Summary:
World's richest person and Amazon Founder Jeff Bezos has said he will announce two new philanthropy ideas before the end of this summer.
Summary:
At an Iftar party hosted by the RJD on Wednesday, BJP leader Shatrughan Sinha said, "Lalu Ji, Rabri Ji, Tejashwi, Tej, Misa, all are my family friends, I've come here on their invitation." "That (BJP) may be my party, these are my family," he added.
Summary:
Responding to it, Uber said it's committed to working with the government on safety.
Summary:
A preterm baby, who weighed 445 gram at the time of delivery, has survived after being in neonatal intensive care unit for three months in Mumbai.
"At 27 weeks, her weight was corresponding to that of a 24-week foetus.
Summary:
A businessman from Delhi's Karol Bagh has been arrested by the police for allegedly raping his 17-year-old domestic help on Tuesday.
Summary:
This comes after farmers dumped their produce after officials stopped them from setting up temporary stalls on a Kandivli plot in April.
Summary:
The Karnataka High Court on Thursday granted conditional bail to Congress MLA NA Haris' son Mohammed Nalapad, accused of assaulting a 24-year-old at a cafe in Bengaluru in February.
Summary:
The Centre has made it mandatory for ministries and government departments to seek the Finance Ministry's approval for organising seminars, conferences or workshops if the expenditure exceeds â¹40 lakh.
Summary:
The Indian Coast Guard on Thursday rescued all the 22 crew members of Merchant Vessel SSL Kolkata, which caught fire on Wednesday.
Summary:
A video of a raccoon scaling a 25-storey skyscraper in the US state of Minnesota has gone viral.
Summary:
An aircraft carrying around 40 tons of water accidentally dropped it on a police squad patrolling a local highway in Moscow, Russia.
Summary:
The official teaser of Shah Rukh Khan starrer 'Zero', in which the actor will be seen playing a dwarf, has been released.
Summary:
Bhagwan, currently posted in the Haryana Police, allegedly slapped the official after asking for vend related documents.
Summary:
The country adopted "Stars and Stripes" as its national flag on June 14, 1777.
Summary:
Saint Louis University in Missouri, US, is offering $3,500 (over â¹2.3 lakh) to people who would volunteer to be exposed to flu virus for a study on vaccines.
Summary:
After equalling Argentina's Lionel Messi in the number of international goals (64) and trailing behind only Portugal's Cristiano Ronaldo (81), Indian football team captain Sunil Chhetri said, "We are Indians.
Summary:
NASA's remotely piloted Ikhana aircraft successfully flew its first mission in the US airspace without a safety chase aircraft on Tuesday.
Summary:
MIT researchers have developed a system which uses artificial intelligence (AI) to teach wireless devices to sense people's postures and movement, even from the other side of a wall.
Summary:
Notably, Syama was a participant of a reality show in which George was a judge.
Summary:
Rutgers University researchers have created an automated blood drawing and testing device that gives rapid results and could allow doctors to spend more time treating patients.
Summary:
Vegetable prices grew by 2.51% in May, while primary articles that account for over one-fifth of the entire WPI, grew by 3.16%.
Summary:
The court found the Railways guilty of issuing a wrongly dated ticket and causing mental harassment to the victim.
Summary:
The Telangana government on Wednesday directed all urban local bodies and civic municipal bodies to ban usage of single-use plastic in the offices.
Summary:
Human Resource Development Minister Prakash Javadekar has announced PhD degree will be mandatory for direct recruitment to the post of assistant professors in central universities from 2021.
Summary:
The nanny, who was also in the van, had become unconscious after pushing out the students.
Summary:
The Philippines' Interior Ministry has announced plans to provide some 42,000 community leaders with free-of-charge handguns if they are willing to fight against drugs and crime in the country.
Summary:
"We believe that North Korean leader Kim Jong-un understands the urgency [of denuclearisation]," Pompeo added.
Summary:
Sanjeev Shrivastava, dubbed as 'dancing uncle' on social media after a video of him dancing to Govinda's 'Aap Ke Aa Jane Se' went viral, met Govinda on a reality show.
Summary:
Salman Khan, while speaking about his cameo in Shah Rukh Khan's upcoming film 'Zero', jokingly said, "I'm in 'Zero' because I'm a zero." Salman has also featured in the new teaser of the film.
Summary:
England cricket team supporters brought sandpaper 'six' and 'four' cards at the Oval to mock the Australian team for the ball-tampering scandal.
The security had confiscated over 5,000 sandpaper cards ahead of the ODI, which saw Australia lose by three wickets on Wednesday.
Cheat!
Cheat!" were also heard from the crowd but later subsided.
Summary:
2008 Malegaon blast case accused Lieutenant Colonel Shrikant Prasad Purohit has alleged he was tortured in the custody of the Maharashtra Anti-Terrorism Squad.
Summary:
The man, whose wife and son were not at home at the time of the blast, said that his wife used to quarrel with him frequently.
Summary:
Self-styled godman Daati Maharaj has said that the 25-year-old woman follower who has accused him of rape was his 'daughter' and he won't put any allegations on her.
Summary:
A girl in Kerala has filed a complaint against her mother and VHP and RSS workers for allegedly holding her captive for 1.5 years and even giving her electric shocks for dating a Muslim man.
Summary:
A committee appointed by the National Green Tribunal (NGT) has said that the Bellandur lake in Bengaluru has become the "largest septic tank of the city".
Summary:
South Korean President Moon Jae-in on Thursday said the world has escaped the threat of war, nuclear weapons and missiles after the Singapore summit between US President Donald Trump and North Korean leader Kim Jong-un.
Summary:
A leaked photo of Australian soldiers flying a Nazi swastika flag over their vehicle while on operations in Afghanistan in 2007 has been criticised by Australian PM Malcolm Turnbull as "completely and utterly unacceptable".
Summary:
Trump has in the past called Kim "a madman who doesn't mind starving or killing his people".
Summary:
A massive dust storm on Mars, which was first detected by Opportunity rover on May 30, has blocked out the Sun over one quarter of the Red Planet, shutting down all science operations except its master clock, said NASA.
Summary:
US prosecutors have launched a probe to determine whether actor Sylvester Stallone should be charged in connection with a sexual assault reported last year.
Summary:
The official teaser of horror film 'The Nun', the spin-off to 'The Conjuring' has been released.
The film focuses on the character 'Valak', introduced in 'The Conjuring 2'.
Summary:
Australia won the first-ever Test in 1877, becoming the only team to win their debut Test.
Summary:
Only Kerr and Clark have scored double centuries in women's ODIs.
Summary:
Summary:
When asked if he thought that standing up working is better than sitting down, Cook said, "If you can stand for a while and then sit, and so on...
Summary:
On being asked if he would consider running for the US President, Apple CEO Tim Cook in a recent interview said that he is not political.
Summary:
Consumers can either give their Virtual IDs or Aadhaar card number to get new SIMs or verify existing ones, as per a notice by the telecom department.
Summary:
Australian man Milorad Trkulja has been granted permission by the country's high court to sue Google, alleging the search engine showed his name and picture while searching for criminals.
Summary:
Slamming Congress leaders in Madhya Pradesh, BJP MLA Panna Lal Shakya said, "There are women who give birth to such leaders.
Summary:
Summary:
US' largest automaker General Motors (GM) on Wednesday named Indian Dhivya Suryadevara as its first female Chief Financial Officer (CFO).
Summary:
The incident came to light after she told her parents, who approached the police.
Summary:
After Macedonian PM Zoran Zaev signed an agreement with Greek PM Alexis Tsipras to rename the country as 'Republic of North Macedonia', Macedonian President Gjorge Ivanov has refused to sign the "damaging treaty".
Summary:
The Pakistan Election Commission has dismissed an application seeking registration of 26/11 Mumbai terror attack mastermind Hafiz Saeed's political party, the Milli Muslim League (MML).
Summary:
Actress Priyanka Chopra will be paid a remuneration of â¹12 crore for her upcoming film 'Bharat', as per reports.
Summary:
Russia are currently ranked 70th and they will face the second-lowest ranked team, Saudi Arabia (67th), in the opener of the 32-day tournament.
Summary:
Russian women should not have sex with visiting World Cup fans to avoid becoming single mothers with mixed-race children, Russian lawmaker Tamara Pletneva has said.
Summary:
New Australian coach Justin Langer's reign began with a defeat as Australia suffered a three-wicket loss against England in the first ODI on Wednesday.
Summary:
New Zealand Women's 17-year-old spinner Amelia Kerr on Wednesday became the first-ever cricketer in history to slam a double hundred and take a five-wicket haul in a single ODI.
Summary:
Belgium forward Eden Hazard was trolled by his national team members on Twitter after he pushed his own teammate to steal the ball from him during a friendly.
Summary:
Taking a dig at Congress President Rahul Gandhi, Union Minister Arun Jaitley said that in dynastic parties, political positions are heritable but wisdom is not.
Summary:
Rajput group Karni Sena has threatened to cut Rajasthan minister Kiran MaheshwariâÂÂs nose and ears for allegedly equating Rajputs with rats.
Summary:
A probe has been ordered into the incident, and primary investigation revealed the man had misbehaved with the officer, an official said.
Summary:
A brothel owner and reality TV star has secured the Republican Party nomination to contest an assembly seat in the US state of Nevada.
Summary:
Tata Consultancy Services (TCS) added â¹16,539 crore to its market value on Wednesday after the company said it will consider a share buyback proposal at its next board meeting.
Summary:
Madhya Pradesh Chief Minister Shivraj Singh Chouhan on Wednesday announced that the state will give â¹2 lakh to poor families whose heads die before the age of 60.
Summary:
The Telstar 18 footballs, which will be used in the upcoming FIFA World Cup in Russia, have been manufactured in a company in Pakistan's Sialkot.
Summary:
New Zealand Women became the first team across men's and women's cricket to register 400-plus totals in three consecutive ODIs, achieving the feat by scoring 440/3 against Ireland Women in the third ODI on Wednesday.
Summary:
Apple CEO Tim Cook in a recent interview said that he decided to come out as gay "for a greater purpose".
Summary:
Claiming that Congress leaders' statements show lack of ideology, Union Minister Arun Jaitley on Wednesday wrote a Facebook note titled, "Is Congress Becoming Ideologyless?
Is Anti-Modism its only ideology?" "P.
Summary:
Summary:
The Chennai Police on Monday night detained around 3,000 people, including over 1,300 criminals and over 1,100 history-sheeters, on various charges.
Summary:
Mumbai has witnessed 12 major fires which resulted in 22 deaths in the last six months, including the Kamala Mills fire which killed 14 in December last year.
Summary:
Speaking about his daughter, Ramalinga said, "She had a desire to help people." n
Summary:
The temple issued the notice owing to middlemen who were luring devotees in the name of "private pujas".
Summary:
Commenting on the viral G7 summit photo of world leaders, US President Donald Trump said that the conversation captured in the picture was "very friendly" although it didn't look that way.
Summary:
US President Donald Trump showed a video to Kim Jong-un in a bid to show the North Korean leader the benefits of denuclearisation.
Summary:
Georgia's Prime Minister Giorgi Kvirikashvili resigned on Wednesday citing differences with the ruling party's leader and former Prime Minister Bidzina Ivanishvili.
Summary:
The Saudi Arabia-led coalition launched its biggest attack of Yemen's civil war to regain control of the port city of Hodeidah.
Summary:
The landing of a flight at the Orlando International Airport, US, was delayed as an alligator strolled across the runway.
Summary:
The agency also alleged that Nirav's sister Purvi Mehta helped him in fund diversion.
Summary:
The per capita income in real terms during the fiscal grew 5.4% to â¹86,668.
Summary:
RCom said it is "fully insulated from the hyper-competition and financial stress" after it exited the consumer-facing wireless business in January.
Summary:
Speaking of Rajinikanth-starrer Kaala, Dalit activist and Gujarat MLA Jignesh Mevani tweeted, "Watched Kala yesterday and felt that I am also a Kala.
Summary:
As many as nine prisoners in an Argentine jail have gone on a hunger strike to urge authorities to repair the cable TV so they can watch the World Cup. The inmates wrote a letter to a judge, claiming the audiovisual cable is their "indispensable right".
Summary:
Spain have appointed former Real Madrid defender Fernando Hierro as their new manager, a day before the 2018 FIFA World Cup begins in Russia.
Summary:
Afghanistan wicketkeeper-batsman Mohammad Shahzad has said he can even sacrifice food and sleep to watch MS Dhoni bat.
Summary:
Referring to the damaged walls of the government bungalow vacated by Samajwadi Party chief Akhilesh Yadav, Uttar Pradesh minister Sidharth Singh asked, "What was hidden behind the wall that you had to break it down?" This comes after Yadav slammed BJP for accusing him of damaging the bungalow and called it a "conspiracy".
Summary:
Residents of Chhattisgarh's Timed village have to cross Indravati river using small boats during monsoon due to lack of connectivity.
Summary:
There has been a vast improvement in India's way of dealing with insurgency in Jammu and Kashmir as compared to the situation in the 1990s, the senior joint secretary of National Security Council said.
Summary:
Viktoria Popova was told she had violated the school's code of conduct.
Summary:
The government may reportedly consider reducing the debt that the buyer would take over.
Summary:
Kerr became the second woman to score an ODI double ton after Australia's Belinda Clark (229 in 1997).
Summary:
A tow truck then pulled the car back to the parking.
Summary:
Responding to her tweet, Jack Dorsey said, "Now I see why I was invited!"
Summary:
The official video of the 2018 FIFA World Cup song 'Live It Up', sung by American actor-rapper Will Smith, singer Nicky Jam and Albanian pop star Era Istrefi, also features Brazil legend Ronaldinho.
Summary:
During the 2006 FIFA World Cup final, France captain Zinedine Zidane headbutted Italy's Marco Materazzi in his farewell match.
Summary:
Netherlands' Robin van Persie, nicknamed 'Flying Dutchman' by Arsenal supporters, scored a diving header against Spain in the World Cup on June 13, 2014.
Summary:
"The awards didn't happen last year but I'm glad they didn't because she's here now," Kohli added.
Summary:
The 2026 FIFA World Cup will be held in the US, Mexico and Canada after their 'united' bid received 134 votes, 69 more than what Morocco's bid received.
Summary:
Former Union Minister Yashwant Sinha, who resigned from BJP recently, joined thousands of AAP leaders and workers as they marched towards Lieutenant Governor Anil Baijal's office on Wednesday.
Summary:
The SIT has recovered a diary, which has entries in Devanagari script and features the names of personalities known for their views against hardline Hindutva.
Summary:
Two Muslim men were allegedly lynched by a mob on Wednesday morning after locals accused them of stealing 13 buffaloes from a resident in Jharkhand's Godda.
Summary:
The Gujarat High Court asked the Centre to consider giving a job to the sister of an Indian man who has been lodged in a Pakistani jail since 1994 over suspicions of being a spy.
Summary:
The victim, who appeared to be homeless, was rescued by police but succumbed to injuries in the hospital.
Summary:
Inaugurated on May 27, the 135-km expressway was built at a cost of â¹11,000 crore.
Summary:
The Enforcement Directorate (ED) has alleged that former Finance Minister P Chidambaram's son Karti Chidambaram controlled a firm which received â¹26 lakh as alleged bribe in the Aircel-Maxis deal.
Summary:
The Pakistan Supreme Court has upheld a death sentence for a man who raped and murdered a seven-year-old girl in January.
Summary:
Impressed by a man who he dubbed as a "one-man-band", Mahindra Group Chairman Anand Mahindra took to Twitter to ask if anyone knew his whereabouts.
Summary:
A Bandra court rejected actor Armaan Kohli's bail application and sent him to judicial custody till June 26 for assaulting his live-in partner Neeru Randhawa.
Summary:
Taapsee Pannu, who will work with Amitabh Bachchan for the second time in Sujoy Ghosh directorial 'Badla', said, "When you're in safe hands of a brilliant filmmaker and an ace co-actor there's nothing to fear." Talking about the film, Taapsee added, "This is going to be a riveting thriller.
Summary:
A hairdresser in Serbia is offering 'portraits' of five-time Ballon d'Or winners Lionel Messi and Cristiano Ronaldo onto the back of heads of fans.
Summary:
Rakesh Mokhriya, a national level wrestling gold medallist, has been arrested on charges of murdering a man last year in Rohtak.
Summary:
Founded in 2006, Adyen processes payments for companies including Facebook, Netflix, and eBay.
Summary:
Until the user provides the number, the malware doesn't allow access to Google Play or other apps.
Summary:
Two Telangana Congress MLAs on Tuesday moved the Hyderabad High Court, filing a contempt petition against the Assembly Speaker and the Secretary for not restoring their membership to the assembly.
Summary:
In order to ensure that financial technology startups don't leave London after Brexit, the UK government will offer incentives including free networking dinners and trips to potential partners in the United States to the firms.
Summary:
Two men posing as policemen allegedly robbed a 68-year-old woman of her gold chain worth â¹60,000 in Mumbai.
Summary:
Navarro had slammed Trudeau over his criticism of the US' trade policies, referring to the tariffs imposed on aluminium and steel imports.
Summary:
A US Senator had asked Facebook if Taylor Swift's cover of a song named 'September' qualified as "hate speech", a document has revealed.
Summary:
Earlier this year, a Qing dynasty bowl was auctioned for â¹198 crore.
Summary:
Swedish caller ID service Truecaller has acquired Kerala-based payments startup Chillr, marking its first acquisition in India.
Summary:
Breakthrough Energy Ventures, a $1-billion fund led by investors including world's richest man Jeff Bezos and Microsoft Co-founder Bill Gates, has made its first investment in two energy storage startups.
Summary:
After being accused of damaging his government bungalow and removing air conditioners and taps, Samajwadi Party chief Akhilesh Yadav walked into a press conference on Wednesday holding taps.
Summary:
Congress President Rahul Gandhi's first ever press conference in Mumbai on Wednesday lasted only for 2 minutes and 45 seconds.
Summary:
A woman and her husband on Wednesday attempted to set themselves on fire near Uttar Pradesh Vidhan Sabha in Lucknow, citing police inaction over their rape complaint against a Samajwadi Party worker.
I request his immediate arrest," the woman's husband said.
Summary:
The US government has approved a deal to sell six AH-64E Apache attack helicopters to India for $930 million.
Summary:
They also allegedly misbehaved with the minister's security personnel.
Summary:
A missing man in his 90s has been reunited with his family after a video of him being fed by a cop in Solapur went viral.
Summary:
After former Prime Minister Atal Bihari Vajpayee was admitted to AIIMS, the hospital on Wednesday issued a statement saying he has shown significant improvement in last 48 hours.
Summary:
A day after concluding the summit with North Korean leader Kim Jong-un, US President Donald Trump said that there was no longer a nuclear threat from the reclusive regime.
Summary:
Greece has agreed to recognise Macedonia under the name 'Republic of North Macedonia', ending a 27-year deadlock between the two nations.
Summary:
Astronauts from the International Space Station gifted Pope Francis a spacesuit customised with a cape.
Summary:
Guess and Marciano also reached settlements with five individuals amounting to $500,000.
Summary:
Nirav Modi's US-based brother Nehal Modi allegedly destroyed all the cell phones of the dummy directors and arranged for their tickets.
Summary:
Deepika Padukone has tweeted that she is safe, after a Level III fire broke out on the 33rd floor of the building where she resides.
Deepika was reportedly not in the building and had gone for a shoot when the fire broke out.
Summary:
Model Neeru Randhawa, whose boyfriend Armaan Kohli was arrested for allegedly assaulting her, has said she'll take the case back if he apologises and "says to the law he won't harass her again".
Summary:
Actress Aditi Rao Hydari, while speaking about casting couch in Bollywood, said, "Work can't be bartered for favours; either you have talent or you don't." "If at all there is any kind of closeness between two people, then it should be consensual," she added.
Summary:
Brazilian football legend Ronaldo shaved most of his hair off, leaving a semi-circular tuft of hair at the front, for the 2002 FIFA World Cup. Nigeria's Taribo West painted his dreadlocks in the green and white colours of the country's flag in the 1998 edition.
Summary:
The 66-year-old underwent a successful operation to remove the tumour, which was found during a routine three-year colonoscopy last month.
Summary:
Researchers from the Max Planck Institute for Intelligent Systems, Germany, have developed a humanoid robot called "HuggieBot" that gives hugs to humans.
Summary:
The company also added that if it ever did build the technology, it would take privacy into account.
Summary:
After Nationalist Congress Party chief Sharad Pawar claimed people arrested for inciting the Bhima-Koregaon violence were innocent, the Shiv Sena accused him of destabilising social harmony and playing "dangerous" politics.
Summary:
Congress tried bullying former President Pranab Mukherjee into not attending the RSS event, Union Minister Piyush Goyal said on Tuesday.
Summary:
The militant group has been fighting US-led NATO forces to restore Islamic law since their ouster in 2001.
Summary:
Infosys appointed Banga to the position in July last year after the earlier head Sandeep Dadlani quit.
Summary:
While no casualties have been reported yet, 10 fire tenders, 5 jumbo tankers, 2 hydraulic platforms have been pressed into service.
Summary:
Dubai's JW Marriott Marquis has fired Michelin-starred Indian-origin chef Atul Kochhar over his tweet slamming Priyanka ChopraâÂÂs apology for a Quantico episode that portrayed Indians as terrorist.
Summary:
Spanish FA President Luis Rubiales revealed Lopetegui didn't inform them before making his decision.
Summary:
Tesla has never made an annual profit in almost 15 years since the company was launched, CEO Elon Musk said in an email to employees.
Summary:
A couple in Maharashtra requested their wedding guests that instead of gifting them bouquets, they should bring them books for competitive exams, which they used to set up a library for needy students.
Summary:
Andhra Pradesh Prohibition and Excise Department officials on Tuesday destroyed 7,814 kg of ganja, seized from 62 raids conducted in East and West Godavari districts.
Summary:
A 31-year-old woman's husband has sued Kolkata's Columbia Asia hospital after its staff allegedly infused the blood of a wrong group while performing surgery, causing her to take ventilator's support.
Summary:
The 1993 Mumbai blasts convict Abu Salem on Tuesday complained to Portuguese Embassy officials that Maharashtra's Taloja jail authorities do not give him chicken and he has been forced to become a vegetarian.
Summary:
Ghosh claimed to head the college's TMC unit, but the party denied the claims.
Summary:
The Madhya Pradesh government has elevated state cow protection board Chairperson Swami Akhileshwaranand to the rank of cabinet minister.
Summary:
The police have recovered the second page of spiritual leader Bhaiyyuji Maharaj's suicide note which states he has given the power of attorney to his trusted sevadar Vinayak.
Summary:
A nine-year-old British girl has gone into rehab after becoming addicted to survival video game Fortnite.
Summary:
A US federal judge has approved telecommunications and cable giant AT&T's $85.4 billion acquisition of media conglomerate Time Warner without imposing any conditions.
Summary:
Salim further said, "There's added security for Salman, who has, in any case, always had a good team of security personnel deployed for him."
Summary:
Speaking about actors receiving awards, Bobby Deol said, "I consider my father (Dharmendra) as one of the most iconic and talented actors of our country, who has been never given a best actor award." "[But] he received lot of love and appreciation from his fans," Bobby added.
Summary:
The project, which is said to be a film, will reportedly be directed by Salman's brother Sohail Khan.
Summary:
Technology giant Apple has changed its App Store rules to limit how developers and apps use information about iPhone owners' friends and contacts, according to Bloomberg.
Summary:
Congress candidate Sowmya Reddy has won Karnataka's Jayanagar Assembly constituency, defeating BJP candidate BN Prahlad by nearly 4,000 votes.
Summary:
The current Tier 1 (Graduate Entrepreneur) visa is only granted to graduates with 'credible business ideas'.
Summary:
Momo has raised â¹3-4 crore from Fabindia's Managing Director William Bissell, as per reports.
The funding round has raised the chain's value to around â¹300 crore.
Summary:
The deal values Grab at over $10 billion, according to reports.
Summary:
Assam Police on Tuesday arrested the prime accused in connection with the lynching of two men by a mob over rumours in Karbi Anglong over a week ago.
Summary:
A second-year college student named Susmita Malakar was caught trying to supply 200 grams of heroin to her boyfriend at a jail in Kolkata.
Summary:
Commuters can also use debit or credit cards to make payments at the point of sale machines that have been installed in food stalls.
Summary:
The air quality in Delhi deteriorated beyond the 'severe' level on Wednesday due to dust storms in western India which increased coarser particles in the air, according to Central Pollution Control Board data.
Summary:
Police have booked a data analytics firm in Bengaluru for abetment to suicide, a day after firm's 23-year-old trainee decision scientist allegedly jumped from the 12th floor of the office building.
Summary:
Construction workers working for a private firm constructed part of a road over a dead dog's body in Uttar Pradesh's Agra.
Summary:
It also collects information about operations and behaviours performed on the device, such as whether a window is foregrounded or backgrounded.
Summary:
PM Narendra Modi has shared a video of him doing a series of morning exercises, days after he accepted Indian captain Virat Kohli's fitness challenge.
Summary:
Summary:
Slamming Robert De Niro for saying "F**k Trump" during the live TV broadcast of Tony Awards 2018, US President Donald Trump called the Oscar-winning Hollywood actor a "low IQ individual".
Summary:
Indian chess player Soumya Swaminathan has asked to be withdrawn from the Asian Team Chess Championship being held in Iran over the compulsory headscarf rule in the country.
Summary:
However, a new bill was generated after the woman's complaint that amounted to â¹134 for consuming 63 units.
Summary:
Convicted gangster Abu Salem, who is lodged in a Mumbai jail, has complained to Portuguese embassy officials that he was bored of reading newspaper throughout the day and needed someone to chat with.
Summary:
Earlier, the Ministry of Social Justice and Empowerment had advised ministries and states to use 'Scheduled Caste' instead of 'Dalit'.
Summary:
The Kerala government has withdrawn the travel advisory issued after the outbreak of Nipah virus in the state.
Summary:
The money has been transferred to over 22,000 eligible students till now.
Summary:
"My heart is full on the first day of my 95th year," Bush said.
Summary:
Hailing the summit between leader Kim Jong-un and Donald Trump as the "meeting of the century", the North Korean state media has said that the US President agreed to lift sanctions imposed on the country.
Summary:
Penka the cow wandered away from her herd in Bulgaria and crossed into neighbouring Serbia last month.
Summary:
Huma Qureshi, who starred opposite Rajinikanth in 'Kaala', has said she was scared while shooting for a scene in which she had to yell at him.
Summary:
Filmmaker Zoya Akhtar has said her biggest challenge was when she had her first panic attack at 27.
Zoya further said, "I chose to get help immediately.
Summary:
Janhvi Kapoor and Kartik Aaryan will star opposite each other in Sanjay Leela Bhansali's next film, as per reports.
Summary:
The official poster of Akshay Kumar starrer 'Gold', a film on India's first Olympic medal as a free nation, was shared by the film's producer Farhan Akhtar on social media.
Summary:
WWE wrestler John Cena has replaced Hollywood actor Sylvester Stallone in Jackie Chan starrer 'Project X', as per reports.
Summary:
Nike has halted the supply of boots to Iranian footballers ahead of the FIFA World Cup in Russia due to the sanctions imposed by the US following its withdrawal from the nuclear deal.
Summary:
Indian men's cricket team captain Virat Kohli received the Polly Umrigar Award (Best International Cricketer) by the BCCI for his performances in the 2016-17 and 2017-18 seasons.
Summary:
Addressing the media in Mumbai, Congress President Rahul Gandhi on Wednesday said, "Mahagathbandhan (Grand Alliance) is a sentiment in people and not just politics." "Whole nation is united against RSS and BJP," he added.
Summary:
Elon Musk-led Tesla has let go of approximately 9% of its workforce in an effort to reduce costs and become profitable, the billionaire said in an email to employees.
Summary:
Police have detained members of Vishwa Hindu Dal on Tuesday for trying to perform 'shuddhi-karan' (cleansing) of a Lucknow temple's ghats following an Iftar party organised on Sunday.
Summary:
The posts have been identified to be included in the "pool of surrendered posts", which have either been vacant for long or rendered redundant due to technological advancement.
Summary:
The injured were rushed to a nearby hospital for immediate medical relief.
Summary:
Summary:
The US had cut diplomatic ties with Taiwan in 1979 to uphold the 'One China' policy.
Summary:
Discover an inspiring stay at a Hyatt hotel as you explore the historic temples, beautiful beaches, and breath-taking architecture located across India.
Summary:
As many as four BSF personnel were martyred and three were injured in a ceasefire violation by Pakistan in J&K's Samba on Wednesday.
Summary:
Congress President Rahul Gandhi on Tuesday tweeted, "Ekalavya cut off his right thumb because his Guru demanded it.
Summary:
After Congress President Rahul Gandhi went to meet former Prime Minister Atal Bihari Vajpayee at AIIMS, rebel Congress leader Shehzad Poonawalla said Rahul put politics over the ailing former PM.
Summary:
Presently, 11 state assemblies have the lowest-ever seat-share of the independent candidates, while 22 state assemblies have the lowest vote-share of the independent candidates ever recorded.
Summary:
"The Railway Minister shook my hand and said the painting was beautiful," Shyam said.
Summary:
The survey also found that 44% of Indians feared being beaten up by the police.
Summary:
At least 10 people died and several others were injured on Tuesday due to lightning strikes in several districts of West Bengal.
Summary:
There is nothing wrong in naming a hotel after a caste and the owner's right to do so is guaranteed under the Constitution, a Madras High Court bench held on Tuesday.
Summary:
Warning North Korea against trusting the US, Iran on Tuesday said that US President Donald Trump could cancel the deal before returning home.
Summary:
Following the summit between US and North Korea, former Pakistan PM Nawaz Sharif's brother Shehbaz Sharif has said India and Pakistan could take steps similar to those taken by the US and North Korea.
Summary:
Summary:
Daisy's dialogue had gone viral after the release of the trailer.
Summary:
Brazilian forward Neymar and teammates pelted eggs and flour at Philippe Coutinho, who celebrated his 26th birthday on Tuesday.
Summary:
Around 50 fans had attacked the team, injuring a player and destroying the club's changing room.
Summary:
Addressing Congress workers in Maharashtra, party chief Rahul Gandhi said that he visited former PM Atal Bihari Vajpayee, who has been admitted to AIIMS, as he was a "soldier of the Congress".
Summary:
After two policemen were killed and six personnel were injured in attacks by militants in Jammu and Kashmir, Bharatiya Janata Yuva Morcha Vice President Aijaz Hussain said that Masjids and Madrasas are not teaching real Islam.
Summary:
Summary:
The Central Railway has built a waterproof engine that will work even in 12 inches of water, as opposed to the current engine that cannot work in over four inches of water.
Summary:
As many as 60 families were left homeless after a fire broke out in Chennai's Ennore on Monday.
The fire was controlled within two hours after four fire tenders were rushed to the site.
Summary:
The Centre is in talks over linking driving licences with Aadhaar numbers, Union Law Minister Ravi Shankar Prasad said on Tuesday, adding that this will help in identifying a drunk driver in case he/she escapes.
Summary:
The All Assamese Students Association held a prayer meeting in New Delhi for the two youth who were lynched in Assam's Karbi Anglong last week.
Summary:
A total of six suspects have been arrested over the murder, which occurred outside Lankesh's Bengaluru residence in September 2017.
Summary:
The Haryana government has raised the upper age limit of entry into government service from 40 to 42 years, an official spokesperson said on Tuesday.
Summary:
A 60-year-old writer and publisher was dragged out of a shop and shot dead by unidentified assailants in Bangladesh's Munshiganj district on Monday.
Summary:
Yes Bank shareholders on Tuesday approved the reappointment of Rana Kapoor as the Managing Director and Chief Executive Officer (CEO) for another three-year term starting September 1.
Summary:
No RBI nominee should be on the boards of public sector banks to avoid "any conflict of interest", Governor Urjit Patel said while briefing a parliamentary panel on Tuesday.
Summary:
Current Spain manager Julen Lopetegui, who has represented both Barcelona and Real Madrid as a player, will join Real Madrid as head coach on a three-year deal after the World Cup. The 51-year-old former goalkeeper managed Spain at Under-19, Under-20 and Under-21 levels before moving to Porto and Spain.
Summary:
In its follow up answers for the questions asked during data scandal testimony, Facebook has said, it "automatically logs IP addresses where a user has logged into their Facebook account." The social media major further said it collects posts, photos, or other content a user has liked.
Summary:
Samsung has filed a motion with a US court challenging a verdict which asked the company to pay Apple $539 million for copying patented iPhone designs.
Summary:
In an apparent reference to PM Narendra Modi, Congress President Rahul Gandhi today said, "Nirav Modi and Mehul Choksi ran away with â¹35,000 crore...
But he (PM Modi) says nothing...
Summary:
Assam's lone Muslim BJP MLA Aminul Haque Laskar has allegedly received a letter threatening him with dire consequences unless he resigns from the party in 15 days.
Summary:
As many as 40 people have been arrested for spreading social media rumours on child-lifting gangs that had led to a mob lynching two people in Assam's Karbi Anglong.
Summary:
Around 1,000 people were evacuated from Mizoram's Lunglei and Aizawl districts on Tuesday after monsoon rains triggered a flood in the state.
Summary:
Tharoor later said, "It might still help people by recalling Einstein's early rejection for a doctorate, even if this letter itself is fake".
Summary:
US President Donald Trump on Tuesday suggested stopping the US-South Korea joint military exercises and announced the end of "provocative and inappropriate" war games on the Korean Peninsula.
Summary:
Hailing North Korean leader Kim Jong-un's commitment to denuclearise the Korean Peninsula, US President Donald Trump said, "Anyone can make war, but only the most courageous can make peace." Calling the summit "one of the greatest moments," Trump added, "We are prepared for the new history.
Summary:
Police said two children are believed to be that of the suspect and two are his girlfriend's.
Summary:
Varun will portray a tailor and an office peon in the film which reportedly centres around the 'Make in India' campaign.
Summary:
Karan Johar, while talking about the masturbation scene in 'Veere Di Wedding', has said that it's a great thing that people have started talking about masturbation.
Summary:
Addressing celebrity chef Anthony Bourdain's choice to commit suicide, actress-activist Rose McGowan wrote a letter saying, "Suicide is a horrible choice, but it is that person's choice." "Many of these people who lost their friend are wanting to lash out and blame.
Summary:
The gameplay demo of 'Spiderman' was unveiled by Sony PlayStation at the E3 2018.
Summary:
As many as nine elephants, painted with the flags of nations competing in the upcoming FIFA World Cup, played against school students in a 15-minute match.
Summary:
Russian artists have created stone mosaics of Argentina captain Lionel Messi and Egypt's Liverpool forward Mohamed Salah.
Summary:
Indian hockey team's chief coach Harendra Singh has drawn attention to the quality of food being provided to the Indian team's players at the SAI centre, with bones and insects being found in their food.
Summary:
WWE Universal Champion Brock Lesnar has officially become the longest reigning champion in modern era, surpassing CM Punk's record of 434 days.
Summary:
Sachin Tendulkar has revealed ex-Pakistan captain Inzamam-ul-Haq once introduced his son to him saying, "He's my son but he is your fan." "The kind of rivalry we have...Inzi was captaining Pakistan then...to say something like this to a player from the other team...it takes a lot," Sachin added.
Summary:
Addressing a press conference on Tuesday, AAP leader Sanjay Singh claimed Prime Minister Narendra Modi was using Delhi Lieutenant Governor Anil Baijal as a pawn to stop the government from working for the poor.
Summary:
Two weeks after he resigned from the Biju Janata Dal, Lok Sabha MP from Kendrapara, Baijayant Jay Panda on Tuesday tendered his resignation as a member of the Lok Sabha.
Summary:
BJP's youth wing has filed a complaint with the police against JNU student leader Shehla Rashid for her tweet saying that RSS and Union Minister Nitin Gadkari were planning to assassinate PM Narendra Modi.
Summary:
Also, Saavn recorded â¹41.15 crore expenses in FY17.
Summary:
Uber's Chief Brand Officer Bozoma Saint John, who previously worked as Apple's marketing head, is leaving the company after one year.
Uber said she will be joining the entertainment company Endeavor as Chief Marketing Officer.
Summary:
The Kerala government has announced plans to launch the Comprehensive Newborn Screening programme to detect birth defects in babies born in government health facilities within 48 hours of birth.
Summary:
Malaysian PM Mahathir Mohamad has announced that Malaysia will reopen its embassy in North Korea a year after closing it amid diplomatic tensions with the reclusive regime.
Summary:
Deepika Padukone shared a message on Instagram about depression by her organisation, The Live Love Laugh Foundation, citing recent suicides of celebrity chef Anthony Bourdain and designer Kate Spade.
Summary:
Actor and ex-Bigg Boss contestant Armaan Kohli has been arrested by Mumbai Police for allegedly assaulting his live-in partner Neeru Randhawa.
Summary:
Dhoni said, "Fleming was like, 'Go, get it boys', and it got over." "Everybody's role and responsibilities were very clear.
You know, there's no point," said Dhoni.
Summary:
Bhaiyyu Maharaj refused to support the government, he added.
Summary:
A video shows an Uber driver asking a lesbian couple to get out of the car for kissing in the US.
In the video, filmed by the couple, the driver is seen shouting, "It's illegal...
Summary:
The police on Tuesday recovered a suicide note from Madhya Pradesh's spiritual leader Bhaiyyuji Maharaj's residence, which reads, "I am leaving too much stressed out, fed up." The 50-year-old, who was recently offered a ministerial post in the state government, shot himself dead in Indore.
Summary:
Summary:
The US State Department website mistakenly showed Singapore as part of Malaysia.
Summary:
After concluding the historic summit with North Korean leader Kim Jong-un, US President Donald Trump said that the sanctions against North Korea will remain in place.
Summary:
After the government received zero bids for its 76% stake sale in Air India, it is now considering selling 100% of the company.
"There's no fixed objective that government should have 24%.
Summary:
May was the seventh straight month in which inflation was higher than RBI's medium-term target of 4%.
Summary:
French luxury shoemaker Christian Louboutin has won a European Union court battle over trademarking his signature red-soled shoes.
Summary:
The lender had invoked the deposits to recover loans to Religare founders Malvinder Singh and Shivinder Singh, who are facing allegations of financial irregularities.
Summary:
Actress Mouni Roy, who is set to make her Bollywood debut opposite Akshay Kumar in 'Gold', will star opposite John Abraham in his upcoming film 'Romeo, Akbar Walter', as per reports.
Summary:
Actress Kajol has said that she would love to do a Hollywood film.
Summary:
Summary:
She said she happily obliges when people approach her for selfies.
Summary:
Indian wicketkeeper-batsman Dinesh Karthik, who last played a Test match in 2010, has said that he was not good enough in presence of a special player like MS Dhoni.
Summary:
Indian football team captain Sunil Chhetri jokingly said he got the idea of the video, wherein he urged fans to support them, one morning when "he didn't receive breakfast on time".
"Had my PR team got a whiff of it, they wouldn't have allowed me to post," he further said.
Summary:
At least five major banks including ICICI Bank and Axis Bank are either reportedly testing or are in a pilot stage of sending banking communications through WhatsApp. These communications will include notifications on ATM cash withdrawal details and point of sales (PoS) transactions.
Summary:
That's roughly the double of Apple's valuation of 14.5 times the estimated 2019 adjusted earnings, according to Bloomberg.
Summary:
Twitter Co-founder Jack Dorsey-led payments company Square has agreed to pay $2.2 million to settle a class-action lawsuit involving its on-demand food delivery service, Caviar.
Summary:
Summary:
Railway employee Arshad Hussain has been arrested from West Bengal for allegedly sexually molesting a French national.
Summary:
Puducherry Lieutenant Governor Kiran Bedi has tweeted that she will host an iftar party at her official residence Raj Nivas on Tuesday, adding that only vegetarian food will be served owing to the house's policy.
Summary:
Union Women and Child Development Minister Maneka Gandhi has said that every rape is alarming and death penalty is an appropriate punishment.
Summary:
The ICICI Bank on Monday clarified that it has not received any communication from the US markets regulator in relation to the allegations against CEO Chanda Kochhar.
Summary:
A picture showing the man's father being purportedly buried in the car in Nigeria's Anambra state went viral on social media.
Summary:
'Yamla Pagla Deewana Phir Se' will also star Sunny Deol and Dharmendra.
Summary:
The two month-long boat-racing league will make 75% local participation mandatory, and limit the participation of oarsmen from other states and abroad to 25%.
Summary:
Facebook earlier claimed Analytica assured it that its users' data was deleted in 2015.
Summary:
Yan, 55, was an initial investor in 51job and became the company's CEO in 2000.
Summary:
Uber Lite app has a minimal design with a 300-millisecond response time and will function even with poor internet speeds.
Summary:
The Bengaluru Vision Group, set up in April 2016, had 23 members.
Summary:
Self-styled spiritual leader Bhaiyyuji Maharaj, whose real name was Uday Singh Deshmukh, was a former model and was offered a Madhya Pradesh ministerial post this year.
Summary:
A 30-year-old man was arrested in Telangana for allegedly stealing a police vehicle to meet his sick wife.
Summary:
US President Donald Trump on Tuesday joked that the photographers should make him and North Korean leader Kim Jong-un look "handsome and thin".
Summary:
In a press conference after meeting Kim Jong-un, US President Donald Trump said he will invite the North Korean leader to the White House at the appropriate time.
Summary:
The disinvestment of Indian Railway Catering and Tourism Corporation (IRCTC) has been deferred as the government wants a better valuation.
IRCTC, which offers railway ticketing and e-catering services, has over 3 crore registered users.
Summary:
The government said the survey effectively captures the employment size of only about 5% of the total workforce.
Summary:
Telugu actor and Bigg Boss Telugu host Nani has initiated legal action against Sri Reddy after she claimed he sexually exploited her and made sure she couldn't be part of Bigg Boss 2 Telugu.
Summary:
Gal Gadot, known for portraying the superhero character 'Wonder Woman', will star with Dwayne Johnson in the upcoming action-comedy film 'Red Notice'.
Summary:
The satellite rights of Salman Khan starrer 'Race 3' have been sold for an amount of â¹130 crore, as per reports.
Summary:
Actor Benedict Cumberbatch, who played lead role in 2016 superhero film 'Doctor Strange', has said that he would love to go back into that role.
Summary:
A complaint has been filed with the Central Board of Film Certification (CBFC) against 'Sanju' by an activist over a scene which shows the toilet overflowing in a jail's barrack.
Summary:
Former Afghanistan cricket team coach Lalchand Rajput has revealed he had asked IPL franchises to pick Rashid Khan in 2016 but they refused.
Summary:
Adding that Myntra has found "some right talent in the valley", Venugopal said that the Head of Data Labs and a senior researcher have already been hired.
Summary:
A Tesla employee organising a union was asked by a company supervisor to leave the factory after handing out pro-union pamphlets, the worker has claimed at the US National Labor Relations Board (NLRB) hearing.
Summary:
A shop owner in Jharkhand's Jamshedpur allegedly stabbed a customer for trying to pay for a â¹15-chocolate bar with a â¹500 note.
Summary:
An Udaipur woman was forced to deliver a baby on a road with the help of some women living nearby as the ambulance failed to reach on time, her husband alleged.
Summary:
The woman, who runs a parlour, was on her way home with her daughter when they were attacked by men on two motorcycles.
Summary:
India's first bullet train project between Ahmedabad-Mumbai may be delayed due to protests by fruit growers against government efforts to acquire their land.
Summary:
Summary:
A case of polio has been reported in Venezuela for the first time in nearly 30 years, the Pan American Health Organisation (PAHO) has claimed.
Summary:
The police also said the Enforcement Directorate was investigating the case separately.
Summary:
In the video, the woman can be seen typing documents and drafts for people on a typewriter with an impressive speed.
Summary:
Goa Chief Minister Manohar Parrikar, who is currently receiving treatment for a pancreatic ailment in the US, will return to the state this week, reports said.
Summary:
The IAS Association has said Delhi CM Arvind Kejriwal's allegations that the officers are on strike is "unwarranted and baseless" and added that the Budget would not have been passed otherwise.
Summary:
One of the leading Indian newspapers has been slammed for publishing an ad in its classifieds section, that claimed cosmic healing of homosexuality among men and women.
Summary:
Dissatisfied with the punishment, the victim's son lodged a police complaint against the accused, their neighbour, on Sunday.
Summary:
The bodyguards protecting North Korean leader Kim Jong-un are all handpicked from Korean People's Army on the basis of their looks, fitness and martial art skills.
Summary:
A US-based woman has pre-emptively sued NASA for legal ownership of a Moon dust sample, which she claims was given to her father by his close friend Neil Armstrong.
Summary:
Petrol consumption for the month climbed to 2.46 million tonnes while diesel sales soared to 7.55 million tonnes.
Summary:
Actress Kangana Ranaut, who will be a part of Ashwiny Iyer Tiwari's directorial, will be trained by Kabaddi champions for the film, as per reports.
Summary:
Television actress Sara Khan, whose sister Arya mistakenly posted a video showing Sara in a bathtub, has said the video was made in fun when both of them were in the tub, while adding, "Everything just went wrong." "She was [a bit] drunk and then we were just having fun.
Summary:
Cricketer Murali Vijay has revealed he wasn't selected for Tamil Nadu when he was 21 because of long hair.
Summary:
Former Delhi captain Gautam Gambhir took a dig at former Indian cricketers Bishan Singh Bedi and Chetan Chauhan after Delhi fast bowler Navdeep Saini received his maiden Test call-up.
Summary:
Sony released a new gameplay trailer to the action-adventure game, 'Last of Us Part II' at the E3 2018 on Monday.
Summary:
Vijay revealed he could not stop himself from drinking it despite being 16 years old as the weather in Delhi was "too cold".
Summary:
Highlighting that its parent company Facebook does not use its users' payment information for commercial purposes, WhatsApp admitted it shares limited data with the social media major.
Summary:
Paytm Founder Vijay Shekar Sharma on Monday took to Twitter to complain about his iPhone X, which he claimed did not restart despite multiple attempts.
Summary:
After a court framed charges against Congress President Rahul Gandhi in a defamation case filed by an RSS activist, Rahul said, "They have been putting different cases on me, but my fight is based on ideology." "I will fight against them and we will win," he added.
Summary:
US-based cannabis marketing platform Prøhbtd Media has raised $8 million in the single largest funding round for a media-related company in the cannabis industry.
Summary:
Germany's Transport Ministry on Monday said that 7.74 lakh Mercedes-Benz vehicles were found to contain unauthorized software defeat devices in Europe.
Summary:
Gurugram-based online local lifestyle startup What's Up Life has raised an undisclosed amount of funding from television host Rannvijay Singh Singha.
Summary:
A US-based study found a new centriole, a sperm structure which may contribute to research on infertility, miscarriages and birth defects.
Summary:
Villagers in Uttarakhand's Bageshwar set a forest on fire on Monday after a leopard killed a seven-year-old boy.
Summary:
The victim was training inside the pool at 8:30 pm on Sunday when the accused touched her inappropriately, according to police.
Summary:
The house of a woman in Bengaluru's RT Nagar was robbed allegedly after she posted the details of her trip to Tamil Nadu on her Facebook status.
Summary:
BJP worker S Sooraj has been arrested for allegedly posting a derogatory comment against CPI(M) MLA Veena George.
Summary:
The Taliban militant group killed Abdurrahman Panah, the Governor of Afghanistan's Kohistanat district, ignoring the eight-day ceasefire announced by the Afghan government from Tuesday.
Summary:
Madhya Pradesh spiritual leader Bhaiyyuji Maharaj was admitted to an Indore hospital after shooting himself on Tuesday.
Summary:
US President Donald Trump and North Korean leader Kim Jong-un have signed an agreement to completely denuclearise the east Asian nation in exchange for security guarantees from the US.
Summary:
With additional benefits against accidents and illnesses and life cover for 100 years, this plan guarantees your family's financial protection at the lowest charges.
Summary:
Indian football team had qualified for 1950 FIFA World Cup in Brazil but didn't participate because the All India Football Federation considered Olympics to be more prestigious.
Summary:
The Congress has denied reports that it did not invite senior party leader and former President Pranab Mukherjee to its Iftar party scheduled for Wednesday at Delhi's Taj Mahal Hotel.
Summary:
Coca-Cola was invented in 1886 by an American pharmacist John S Pemberton, who took a sample of his drink to Jacobs' Pharmacy that placed it on sale as a soda fountain drink.
Summary:
A 10-year-old who was born with part of her brain missing, her eyes sealed shut and severe disabilities has died.
Summary:
A case of criminal contempt was filed in Uttarakhand High Court on Tuesday against Justice Lokpal Singh over allegedly making derogatory remarks against other lawyers and a former judge.
Summary:
An 18-year-old girl in West Bengal committed suicide by hanging herself and streamed it live on Facebook allegedly after she had a fight with her boyfriend.
Summary:
Rajasthan education department has directed all schools in the state to hold 'satsangs' or sermons by saints on third Saturday of every month as part of co-curricular activities for students.
Summary:
Former US basketball player Dennis Rodman cried as he spoke about the summit between US President Donald Trump and North Korean leader Kim Jong-un.
Summary:
Pakistan's Supreme Court has ordered authorities to unblock the national identity card and passport of former President Pervez Musharraf to pave way for his return to the country.
Summary:
Rishi Kapoor, while tweeting about North Korean leader Kim Jong-un meeting US President Donald Trump in Singapore, wrote, "Salute to a 33-year-old Korean getting an American President (71 years) meeting.
Summary:
Vani Tripathi Tikoo, a member of the Central Board of Film Certification (CBFC), while slamming 'Veere Di Wedding', said, "Is this what feminism and female empowerment mean to some filmmakers?
Summary:
Priyanka Chopra accompanied her rumoured boyfriend, American singer Nick Jonas to his cousin's wedding in Atlantic City, New Jersey.
The actress reportedly also met Nick's family following the wedding.
Summary:
Spanish national team goalkeeper David de Gea has demanded a public apology from Spain's Prime Minister Pedro Sanchez for commenting on the 27-year-old's alleged involvement in a sexual assault case two years ago.
Summary:
American researchers have discovered that an asthma drug can remove toxic build-ups of a protein in mice brain and reverse dementia, which affects over 50 million people worldwide.
Summary:
NASA's Opportunity rover, which landed on Mars in 2004, has been weathering a dust storm since June 3.
Summary:
In the cartoon, Kim is seen saying, "I will destroy America," to which Trump responds, "No way, that is my job.
Summary:
Punjab State Power officials said policemen standing at the spot were "mute spectators" because of which the robbers escaped easily.
Summary:
BJP MLA H Raja on Monday said that the interference by officials in spiritual matters in temples was on the rise.
Summary:
Kunte said the remark was aimed at slandering RSS' reputation.
Summary:
Brihanmumbai Municipal Corporation can fine people up to â¹10,000 if they are seen carrying a plastic bag or taking one from a vendor from June 23.
Summary:
After the arrest of a businessman in an alleged gangrape case, a Delhi lounge owner also arrested in the case reportedly threatened to infect him with HIV to extort â¹3 crore from his brother.
Summary:
When he went to the State Lottery Department, Suhas Kadam was told that there were three claimants for the same.
Summary:
US President Donald Trump showed the interior of his limousine, nicknamed 'The Beast', to North Korean leader Kim Jong-un during the summit between the two leaders.
Summary:
US President Donald Trump's daughter Ivanka Trump posted a proverb ahead of the summit between her father and North Korean leader Kim Jong-un, wrongly claiming it to be a Chinese proverb.
Summary:
Summary:
Describing his meeting with North Korean leader Kim Jong-un, US President Donald Trump said, "It went better than anybody could have expected." Trump further said that "a lot of progress" has been made, adding that the two sides are expected to sign an agreement.
Summary:
Two Indian kids will be the official ball carriers at the upcoming FIFA World Cup 2018 in Russia.
Summary:
The US on Monday enforced 'Restoring Internet Freedom Order', replacing Obama-era 'net neutrality' rules, which had barred internet service providers from charging more for certain content to grant equal access to the internet.
Summary:
Kejriwal and his colleagues refused to leave demanding Baijal take action against IAS officers boycotting government meetings.
Summary:
Chinese electric car startup Byton has raised $500 million in a Series B funding round to develop smart, connected cars.
Summary:
The app will also display pre-booked meals for some trains.
Summary:
The United Kingdom has assured India full cooperation in the extradition process of fraud-accused Nirav Modi and liquor baron Vijay Mallya, Union Minister Kiren Rijiju said after meeting with British Minister for Countering Extremism Baroness Williams.
Summary:
Police have ordered the shutdown of 27 establishments in Bengaluru for allowing live music on their premises without a licence.
Summary:
Addressing people in Nashik, Bhima Koregaon riots accused Sambhaji Bhide said, "Mangoes are powerful and nutritious.
Summary:
PM Narendra Modi spent around an hour with Vajpayee at the hospital.
Summary:
Pooja Bhatt, on being asked about her half-sister Alia Bhatt's relationship with Ranbir Kapoor, said, "We should just let that young girl be and enjoy her life." "Because I think she is doing her job of entertaining India and the world really well," she added.
Summary:
Portugal captain Cristiano Ronaldo stepped out of the national team bus to meet a crying boy, who thought his chance to meet Ronaldo before he departed for World Cup was lost.
Summary:
After rebel AAP leader Kapil Mishra was allowed to file a petition over Delhi CM Arvind Kejriwal's attendance in the Assembly, party MP Sanjay Singh said he will file a PIL seeking details of PM Narendra Modi's attendance in the Parliament.
Summary:
Mumbai-based online fashion startup Fynd's Co-founder Harsh Shah has said that Google's investment has reaffirmed the fact that they "are going in the right direction".
Summary:
Astronomers have suggested nano-diamonds around new stars as a possible source of microwave radiation across the Milky Way. Astronomers estimate around 1-2% of the total carbon in these proto-planetary disks goes into forming nanodiamonds.
Summary:
19-year-old student nurse M Ajanya, who is the first victim to come out of the hospital after the outbreak of Nipah virus in Kerala, said that she loves her profession more now.
Summary:
Reacting to Congress President Rahul Gandhi's statement that the man who started the Coca-Cola company used to sell shikanji in the US, users on Twitter mocked him with #AccordingtoRahulGandhi.
Summary:
A Chennai consumer forum has directed a hospital to pay â¹15 lakh to a woman, whose son died almost 20 years ago due to negligence by the hospital.
Summary:
The ceremony was organised under CM Raman Singh's Samuhik Kanya Vivah scheme.
Summary:
Houses with more than two cars will have to park their extra vehicles at paid parking spots or make their own arrangement.
Summary:
Railway Minister Piyush Goyal on Monday said that passengers know that trains are getting delayed because of maintenance of tracks, which was "due for decades".
Summary:
A chapter on Sub-Inspector Rekha Mishra attached to Railway Protection Force in Mumbai has been added in a Maharashtra State Board's Class 10 textbook for rescuing hundreds of destitute, missing, kidnapped or runaway children.
Summary:
The treatment is being monitored by AIIMS Director Dr Randeep Guleria.
Summary:
A Tennessee woman has been arrested after a video showing her releasing her two granddaughters from dog kennels in the back of her car went viral.
Summary:
Meanwhile, Kim said it "wasn't easy to get here", adding that the two leaders overcame many obstacles.
Summary:
Summary:
North Korean leader Kim Jong-un, during his historic summit with US President Donald Trump, said, "Many people in the world will think of this as a form of fantasy from a science fiction movie." "I think the entire world is watching this moment," Kim was heard telling Trump.
Summary:
After running 10 lakh simulations of the tournament, US bank Goldman Sachs has predicted that Brazil will lift the 2018 FIFA World Cup. It used machine learning to run 2 lakh models, using data on individual players and team performance.
Summary:
In its follow up answers for the questions asked during data scandal testimony, Facebook has claimed it offered "identical support" to both Trump and Clinton campaigns.
Summary:
Samajwadi Party President Akhilesh Yadav has announced that they are willing to sacrifice some seats for Bahujan Samaj Party to defeat BJP in the 2019 general elections.
Summary:
Gujarat CM Vijay Rupani has alleged that the farmers' protest in the state was a "political stunt" by opposition parties ahead of the 2019 Lok Sabha elections.
Summary:
Lava from Hawaii's Kilauea volcano, which is erupting for over 40 days, vaporised the largest freshwater lake on Big Island on June 2, the US Geological Survey has revealed.
Summary:
After the UK government confirmed PNB fraud accused Nirav Modi's presence in the country, MoS for Home Affairs Kiren Rijiju said the UK should not be viewed as a safe haven for wanted criminals from other countries.
Summary:
A video of a Chinese man climbing five floors of a building to save a two-year-old hanging from from a window has gone viral.
Summary:
While watching the meeting between North Korean leader Kim Jong-un and US President Donald Trump, South Korean President Moon Jae-in said the summit is only the beginning of a "long process" of re-establishing peace on the Korean Peninsula.
Summary:
Taapsee Pannu, while talking about the length of her roles in films, said, "Even if I have five scenes in the film, I know the audience will remember me after coming out from the theatre." "That much confidence I need to have in myself as an actor.
Summary:
Actor Varun Dhawan has said whenever he is offered a biopic, he gets scared.
Varun further said if he has to do a biography on someone, it would be one on his father, filmmaker David Dhawan.
Summary:
Pooja Bhatt has slammed people threatening to ban Priyanka Chopra's films over a 'Quantico' episode which portrayed Indians as "terrorists" who were trying to frame Pakistan for trying to bomb Manhattan in New York.
Summary:
The first trailer for the new sequel to the Tomb Raider franchise, Shadow of The Tomb Raider, was released at the E3 Expo.
Summary:
Polish defender Michal Pazdan saved a television reporter from injury by a falling lamp with his reflex kick during an interview.
Summary:
Shib Shankar Patra, a 53-year-old tea stall owner in Kolkata, painted his entire building in Argentina's national team's colours after he was told by a travel agent that his savings are not enough to watch Argentina at World Cup.
Summary:
"(T)here's something about 'Ducks' & Gambhirs, they seem inseparable," he jokingly wrote.
Summary:
American fighter Ronda Rousey will become the first female MMA fighter to be inducted into the Ultimate Fighting Championship Hall of Fame, the UFC announced on Sunday.
Summary:
PM Narendra Modi, BJP President Amit Shah, and RSS chief Mohan Bhagwat will soon understand that India cannot be run by only three people, Congress President Rahul Gandhi said on Monday.
Summary:
Summary:
Madhya Pradesh MLA Vishwas Sarang on Monday inspected an under-construction railway overbridge with binoculars after Congress leader Digvijaya Singh posted an image of a damaged metro pillar from Pakistan and claimed it to be from Bhopal.
Summary:
Online classifieds company Info Edge has categorised â¹186 crore as written off in its startup investment portfolio for the financial year 2017-18.
Summary:
PM Narendra Modi on Monday evening visited former PM Atal Bihari Vajpayee, who has been admitted to the All India Institute of Medical Sciences (AIIMS) in Delhi with a urinary tract infection.
Summary:
While returning from their evening prayer on Sunday, two Muslim clerics were allegedly beaten up by 20 bike-borne men in Jharkhand's Ranchi for not chanting 'Jai Shri Ram'.
Summary:
Police then forcibly shifted her body to a hospital for an autopsy.
Summary:
This comes after militants accused in a 2016 attack, which killed seven jawans, claimed that they received orders through WhatsApp calls.
Summary:
Ahead of his meeting with US President Donald Trump in Singapore, North Korean leader Kim Jong-un brought his own portable toilet to "deny determined sewer-divers insights into the supreme leader's stools", according to reports.
Summary:
UK Home Office Minister Baroness Williams on Monday confirmed PNB fraud accused Nirav Modi's presence in the country.
Summary:
Kamal Haasan has made his Instagram debut on the day of the trailer launch of his upcoming film 'Vishwaroopam 2'.
Summary:
Football team captain Sunil Chhetri and ex-captain Bhaichung Bhutia are India's highest goalscorers and the only two players to play over 100 matches for India.
Summary:
Union Railway Minister Piyush Goyal has said there are no plans to privatise Railways, either now or ever.
Summary:
A doctor named Sajid Hasan has been arrested for allegedly raping a woman repeatedly for a year in Miranpur, the Uttar Pradesh police said today.
Summary:
In his confession, journalist Gauri Lankesh murder accused claimed Hindu Janajagruti Samiti leader Mohan Gowda had put him in touch with an extremist unit of Hindu outfit Sanatan Sanstha, which was planning the murder.
Summary:
As many as 17 people, including a nurse who treated patients infected with the virus, died during the outbreak.
Summary:
The protestors alleged that the gate blocked the way to a 400-year-old temple located 350 metres away from the Taj Mahal.
Summary:
At least 13 people have been killed and over 25 others have been injured in a suicide explosion at the entrance to Afghanistan's Rural Rehabilitation and Development Ministry in Kabul, government officials said.
Summary:
Establishing a permanent peace-keeping mechanism will be discussed during the summit between Supreme Leader Kim Jong-un and US President Donald Trump in Singapore, North Korean state media has said.
Summary:
The Mumbai Police is investigating a cyberfraud where a woman lost â¹40,700 after her ATM chip-card was cloned and money was withdrawn.
Summary:
Actress Deepika Padukone has demanded fees equivalent to her leading male co-star in films, which is three times more than what Bollywood's A-list actresses earn, as per reports.
Summary:
Summary:
Former Indian cricketer Virender Sehwag took to Twitter to share a picture of himself with cricket legend Sachin Tendulkar, writing, "When with God ji @sachin_rt ,best to be at His feet." In the picture, Sehwag can be seen sitting with a hammer in his hand, with Sachin standing alongside him.
Summary:
Delhi pacer Navdeep Saini, who received his maiden India Test team call-up on Monday, said he owes his achievement to Gautam Gambhir.
I donâÂÂt know whenever I speak about Gambhir, I get emotional," he added.
Summary:
Australian spin legend Shane Warne on Monday took to Instagram to share a picture of himself having beer with British singer-songwriter Ed Sheeran at Lord's Cricket Ground.
Summary:
Referring to the video he shared urging the fans to watch Indian football team's matches from the stadiums, captain Sunil Chhetri said, "I cannot believe what one video did for us." "ItâÂÂs been wonderful what has happened for Indian football in the last 20 days," he added.
Summary:
Only those "begging for votes" host iftar parties, Telangana BJP MLA T Raja Singh said on Monday.
Summary:
This comes amid reports claiming that Tej was upset on being sidelined in Lalu's absence.
Summary:
Samajwadi Party chief Akhilesh Yadav has asked Uttar Pradesh CM Yogi Adityanath to send him a list of items that were "missing" from his official bungalow after he vacated it.
Summary:
Congress leader Digvijaya Singh on Sunday apologised for tweeting a picture of a damaged metro pillar in Pakistan's Rawalpindi as that of a railway overbridge in Bhopal.
The same picture was circulated on social media earlier as that of Delhi Metro and Hyderabad Metro.
Summary:
Punjab minister Navjot Singh Sidhu has revealed he weighed 70 kg when he used to play cricket but now weighs 90 kg after joining politics.
Summary:
A lesbian couple in Uttar Pradesh's Mathura on Sunday sought the police's help for getting married, claiming that their families opposed their relationship.
Summary:
Two women in a relationship committed suicide after throwing a three-year-old child in the Sabarmati river, Ahmedabad police said.
Summary:
A man from Gujarat settled in the US was shot dead allegedly by a former employee of his gas station-cum-store in Atlanta, Georgia.
Summary:
The watchdog has upheld Airtel's complaint saying Jio's claims were misleading by "ambiguity".
Summary:
Spain scored four goals in three group matches and won their four knockout games including the final with a 1-0 scoreline.
Summary:
Actor Aamir Khan on Monday took to Twitter to digitally launch the Hindi trailer of Kamal Haasan's Tamil film 'Vishwaroopam 2'.
Summary:
Summary:
VoxWeb claims Facebook's feature is similar to its 'speaking-pic' feature which allows users to choose a photo from their phone and record an audio along with it.
Summary:
Xiaomi is expected to raise $10 billion at a valuation of $60-70 billion, according to reports.
Summary:
Accusing BJP and Lieutenant Governor Anil Baijal of using the CBI and Anti-Corruption Branch against AAP, Delhi CM Arvind Kejriwal today said, "The Prime Minister is like a father figure to the nation.
Summary:
This comes almost three years after Volkswagen admitted to falsifying US diesel emissions tests.
Summary:
Japanese e-commerce startup Mercari's Initial Public Offering (IPO) priced at $1.2 billion will make its 40-year-old Founder Shintaro Yamada a billionaire with about $1.04 billion fortune.
Summary:
SoftBank Vision Fund has led a $250-million funding in Cohesity at around $1-billion valuation, the US-based data storage startup announced today.
Summary:
The three ex-AMU students have gone into hiding.
Summary:
The plane has been parked for free since a government agency has seized it.
Summary:
Sub-inspector Bijender Singh Deshwal took a bullet to save a younger 25-year-old colleague who had become a father three months ago during a gunfight between Delhi Police and gangsters on Sunday, Deshwal's son revealed.
Summary:
Speaking after leaving the G7 summit in Canada, US President Donald Trump accused India of charging 100% tariff on some imports.
"I mean, we have India, where some of the tariffs are 100%.
And we charge nothing.
Summary:
The Chinese founder of world's largest electric vehicle battery maker CATL, Zeng Yuqun, has become a billionaire with a net worth of $3.4 billion, according to Bloomberg.
Summary:
Shah Rukh Khan shared a picture of his wife Gauri Khan and their daughter Suhana Khan on social media with the caption, "Life doesn't come with a manual, it comes with a mother." Shah Rukh wrote the line, which he came across while reading, seemed appropriate for the picture.
Summary:
"I'd rather accept this sad truth of my life rather than fall into the wrong relationship again," added Manisha.
Summary:
The film stars Shraddha Kapoor opposite Shahid while Yami Gautam will reportedly be seen playing a lawyer in the Shree Narayan Singh directorial.
Summary:
The game will officially feature UEFA Champions League for the first time.
Summary:
After Scotland became the first-ever Associate nation to defeat a top-ranked ODI side, Sachin Tendulkar called for more opportunities for "teams with massive potential" to play against "more experienced" teams.
Summary:
Pacer Mohammad Shami has been dropped from the Indian squad for the Afghanistan Test after failing to clear the Yo-Yo fitness Test at National Cricket Academy in Bengaluru.
Summary:
The play restarted after the air ambulance took off.
Summary:
Portugal football team goalkeeper Rui Patricio's wife Vera Ribeiro, who is a sex therapist, has said that players should practice masturbation before the matches to improve their performance at the upcoming World Cup. She said that players who masturbate will be more relaxed and less stressed than those who abstain.
Summary:
England on Sunday became the first team in cricket's history to be a number one ranked side losing an ODI to an associate nation after their six-run loss against Scotland.
Summary:
A BJP worker and his four family members were found murdered at their residence in Maharashtra's Nagpur on Sunday.
Summary:
Congress leader P Chidambaram has claimed that lack of clarity in the policy objective suggests that the government is "very confused" regarding what to do with Air India.
Summary:
During investigations, the police found the couple had fought before the man bought acid.
Summary:
Local officials said the warm temperature at the site and its rocky landscape had created conditions favourable for the eggs to hatch.
Summary:
After the Delhi Assembly accepted a resolution on full statehood to Delhi, CM Arvind Kejriwal said the AAP will campaign for BJP if Delhi gets statehood before the 2019 general elections.
Summary:
Imran Khan's ex-wife Reham Khan has claimed in a book that the Pakistani cricketer-turned-politician is homosexual and had relationships with Pakistani actor Hamza Ali Abbasi and member of his political party, Murad Saeed.
Summary:
The trailer of Diljit Dosanjh and Taapsee Pannu starrer 'Soorma' has been released.
Summary:
Rebel AAP leader Kapil Mishra on Monday moved the Delhi High Court against CM Arvind Kejriwal for his low attendance in the Delhi Assembly.
Summary:
In its mouthpiece Saamana, Shiv Sena on Monday said that the recent assassination threats to PM Narendra Modi and Maharashtra CM Devendra Fadnavis is "nothing less than a thrilling plot of a horror story".
Summary:
Google's parent company Alphabet's venture arm CapitalG has led a $21.5 million funding round in Gurugram-based startup Aye Finance.
Summary:
A March audit revealed that over 40% of staff were low-cost agency workers who didn't get holiday or sick pay.
Summary:
The woman IAS officer who has accused Haryana Additional Chief Secretary Sunil Gulati of sexual harassment has now said that she fears for her life.
Summary:
The man's talent was recognised and he was given money to start the Coca-Cola company, Gandhi added.
Summary:
The Delhi High Court upheld a man's life sentence for murdering his wife after his 5-year-old stepdaughter testified against him.
Summary:
A video of Kim Jong-un's bodyguards running alongside his limousine shortly after the North Korean leader arrived in Singapore has surfaced online.
Summary:
According to FIFA, the 2014 edition of the FIFA World Cup was watched by 3.2 billion people (approximately 44% of world's population) on their in-home televisions for at least a minute or more.
Summary:
D-Mart parent Avenue Supermarts on Monday joined the â¹1 trillion ($14.8 billion) market capitalisation club after the company's stock price hit a new record high.
Summary:
Actor Arjun Kapoor, in a social-media post addressed to his half-sister Janhvi Kapoor, wrote, "Sorry I'm not there in Mumbai but I'm by your side, don't worry." He wrote this ahead of the release of the trailer of Janhvi's debut movie 'Dhadak'.
Summary:
Janhvi Kapoor revealed that once while watching the Marathi film 'Sairat' with her late mother Sridevi, she told her how she wished to debut in such a film.
Summary:
Rafael Nadal, who won his record eleventh French Open title, might lose his world number one ranking to Roger Federer if the Swiss reaches the third round of the upcoming grass court tournament, Stuttgart Open.
Summary:
After leading Indian football team to Intercontinental Cup victory with a brace in the final, captain Sunil Chhetri took to Twitter to thank fans for backing the team.
Thank you, India!
Summary:
Rajasthan Royals' wicketkeeper-batsman Sanju Samson has been left out of India A squad to tour England after failing the mandatory Yo-Yo test, according to reports.
Summary:
South Korea-based cryptocurrency exchange Coinrail on Sunday announced that its platform has been hacked resulting in the loss of a reported amount of $40 million.
Summary:
Elon Musk-led SpaceX is reportedly planning to build a new facility in Florida, US to launch 64 rockets per year.
Summary:
Summary:
After the Centre listed openings for joint secretary-level posts for private sector employees, Congress said the government wanted to recruit people from RSS and "industrial houses".
Summary:
The Delhi Police has filed a case against self-styled godman Daati Maharaj for allegedly raping a female follower two years ago inside a temple run by him in Chhattarpur.
Summary:
Two others who had been pulled into the sea because of the strong undercurrents were able to swim back to the shore.
Summary:
Dr Kafeel Khan, accused in the death of over 60 children in Gorakhpur, said his brother was shot at by bike-borne assailants 500 metres away from Gorakhnath temple where Uttar Pradesh CM Yogi Adityanath was staying.
Summary:
A man in Uttar Pradesh's Firozabad allegedly beat up his wife with an iron rod after she refused to cook mutton for him.
Summary:
German Chancellor Angela Merkel has said US President Donald Trump's decision to not endorse the G7 statement is "a bit depressing".
Summary:
Fraud-accused jeweller Nirav Modi has fled to the UK, where he is seeking political asylum, according to reports.
Summary:
The trailer of 'Dhadak', the debut film of late actress Sridevi and producer Boney Kapoor's daughter Janhvi Kapoor, was released on Monday.
Summary:
The 2012 and 2013 toppers are employed with Tower Research Capital and Microsoft respectively.
Summary:
Karan Johar has revealed he defecated in open as he got a "bad loose motions attack" while shooting for the song 'Suraj Hua Maddham' in Egypt for 'Kabhi Khushi Kabhie Gham'.
Summary:
Oscar-winning actor Robert de Niro swore at US President Donald Trump twice saying, "F**k Trump" during the live TV broadcast of Tony Awards 2018 on Sunday.
It's f**k Trump."
Summary:
The Formula One chequered flag, which signifies the end of the race, if waved prematurely results in the final positions being determined by the rankings at the end of the previous lap.
Summary:
The man, who was talking to another man when the power bank exploded, threw the bag out of the bus.
Summary:
Refusing to endorse China's Belt and Road Initiative at the Shanghai Cooperation Organisation summit, Prime Minister Narendra Modi said that India would welcome only those connectivity projects which respect its sovereignty and regional integrity.
Summary:
Police have detained seven people, including minors, for allegedly sexually assaulting a Class 10 girl after sedating her with alcohol and drugs in Tamil Nadu's Tiruvallur.
Summary:
Indian Military Academy cadet Hitesh Kumar has been commissioned as Lieutenant and has joined the 2nd Battalion of Rajputana Rifles, the same battalion as his father who was martyred in 1999 Kargil War. Kumar said he dreamt for 19 years to join the Army and now wants to serve with pride.
Summary:
Their father said he is proud of both his sons for clearing the exam at such a tender age.
Summary:
A Fox News show host called the upcoming summit between US President Donald Trump and North Korean leader Kim Jong-un as a "meeting between two dictators" on air.
Summary:
US President Donald Trump and North Korean leader Kim Jong-un will begin their historic summit in Singapore on Tuesday with a one-on-one session, according to reports.
Summary:
US President Donald Trump has said his summit with North Korean leader Kim Jong-un would be about building a relationship and setting up a dialogue with a leader having an "unknown personality".
Summary:
Karti gave a written undertaking to appear before the concerned official on June 28.
Summary:
Talking about how he wouldn't accept being paid â¹11,000 for doing films now, Rajkummar Rao said, "In my defence, I'd argue, 'Abhi mehengai bahut badh gayi hai!'" Rajkummar had featured in 'LSD: Love Sex Aur Dhokha' eight years ago, for which he was paid â¹11,000.
Summary:
Denying the charges, Ayazuddin said a man had posted the picture and he shared it to confront him that one shouldn't share posts that hurt someone's religious sentiments.
Summary:
The Canadian Grand Prix was officially counted till the 68th lap after VIP guest and model Winnie Harlow waved the chequered flag too early in Montreal on Sunday.
Summary:
Samajwadi Party chief Akhilesh Yadav on Sunday said the party's alliance with BSP will continue.
Summary:
NCP chief Sharad Pawar has accused BJP of playing the "threat letter" card to gain sympathy.
Summary:
Under the Kerala Police Act, the accused should be suspended from service if found guilty.
Summary:
Bashreen and her family of eight sons have over 100 criminal cases lodged against them, reports said.
Summary:
Talking about the decision of the PDP-BJP government in J&K to withdraw FIRs against 10,000 youths for stone-pelting, BJP MP DP Vats on Sunday said they should instead be shot dead.
Summary:
Six students and a teacher on their way to Haridwar for a college trip died on Monday after being run over by a state-run bus on the Agra-Lucknow Expressway in Uttar Pradesh.
Summary:
Singapore Prime Minister Lee Hsien Loong on Sunday said that the country will spend around â¹100 crore to host the historic summit between US President Donald Trump and North Korean leader Kim Jong-un.
Summary:
RBI on April 6 mandated all payment companies to store user data only in India and ensure compliance within 6 months.
Summary:
But the greatest sense of insecurity comes from the feeling that your own home is not safe, that it can be broken into and robbed.
Summary:
Last year, Goel was arrested over allegations of fraud and an alleged non-payment of â¹16 lakh.
Summary:
Kalpataru launches yet another landmark Project in Thane West â Launch Code Expansia beside the Grand Central Park.
Summary:
The Northern Railways is planning to use WhatsApp groups, supervised by senior officials, to monitor the cleanliness of trains.
Summary:
The department also revealed that of the 214 establishments inspected, 94 were found violating norms.
Summary:
India will get its first national police museum in Lutyens Delhi, a senior official said on Sunday.
Summary:
The government has opened 10 joint secretary-level posts for private sector employees, who neither require to be an IAS officer nor UPSC qualified to be eligible for the job.
Summary:
Canadian PM Justin Trudeau called it "the single largest investment in education for women and girls in crisis and conflict situations".
Summary:
Slamming Canadian Prime Minister Justin Trudeau's comments on US tariffs during the G7 summit, US President Donald Trump's trade adviser Peter Navarro said, "Trudeau deserves a special place in hell." Navarro also accused Trudeau of backstabbing Trump.
Summary:
'Race 3' director Remo D'souza has said that there is no reference to actor Saif Ali Khan in the film.
All the other characters were done so there was no need." Notably, Saif had starred in both 'Race' and 'Race 2'.
Summary:
After scoring India's match-winning brace in the Intercontinental Cup final, captain Sunil Chhetri shared an Instagram post in which he presents his shin pads to his wife and sister after naming the equipment after them.
Summary:
The world number one defeated Mariano Puerta to win his maiden French Open title in 2005 as a 19-year-old.
Summary:
Following his 11th French Open title, world number one Rafael Nadal became the third player after Roger Federer and Novak Djokovic to earn $100 million in prize money.
Summary:
Reacting to his wife Hasin Jahan's allegations that he wants to marry his elder brother's sister-in-law after Eid, Indian cricketer Mohammad Shami said he is not mad that he will marry another girl.
Summary:
Scotland, who are placed 13th in ODI rankings, defeated top-ranked England by six runs in the one-off ODI on Sunday.
Summary:
Madhya Pradesh CM Shivraj Singh Chouhan has claimed that Congress leader Digvijaya Singh posted a picture of a damaged metro pillar from Pakistan's Rawalpindi as that from Bhopal.
Summary:
Traders' body Confederation of All India Traders (CAIT) has threatened to launch a nationwide agitation if the government clears $16-billion Flipkart-Walmart deal.
Summary:
Russian space agency Roscosmos is planning to evaporate space debris and junk floating around the Earth using high beam lasers with a three-metre laser 'cannon'.
Summary:
Bihar Health Minister Mangal Pandey on Sunday denied media reports of planning a ban on khaini, or chewing tobacco.
Summary:
The brother of Dr Kafeel Khan, accused in the death of over 60 children at a Gorakhpur hospital, was allegedly shot at by bike-borne assailants on Sunday.
Summary:
Assam Police has arrested 15 people for being allegedly involved in the lynching of two men in Assam's Karbi Anglong district on Friday.
Summary:
Police have arrested former BJP minister Lal Singh's brother Rajinder Singh for abusing Jammu and Kashmir CM Mehbooba Mufti during a rally aimed at demanding a CBI probe into the Kathua rape and murder case.
Summary:
Stating that PM Narendra Modi is the "biggest brand" in India, he asserted that PM Modi will be re-elected next year.
Summary:
A 17-year-old girl in Uttar Pradesh was shot dead on Friday, four days after she submitted a police complaint alleging sexual harassment by four people.
Summary:
A Czech woman drowned after being trapped inside Prague's underground drainage system while participating in a global GPS-based treasure hunt, police officials said.
Summary:
A newborn baby in Brazil's Canarana was buried for seven hours after her family apparently thought she was dead.
Summary:
Pope Francis on Sunday said he is praying that the upcoming summit between US President Donald Trump and North Korean leader Kim Jong-un succeeds in laying the groundwork for peace.
Summary:
Indian football team captain Sunil Chhetri scored both the goals in India's 2-0 Intercontinental Cup final win against Kenya on Sunday to equal Argentina captain Lionel Messi's tally of 64 international goals.
Summary:
With this, Nadal equalled former world number one female player Margaret Court's record of winning a single Grand Slam singles title 11 times.
Summary:
BJP chief Amit Shah today said the SC/ST Act and reservation system in jobs will be enforced till the BJP-led government is in power.
Summary:
RJD supremo Lalu Prasad Yadav's elder son Tej Pratap Yadav has dismissed reports of a rift with his younger brother Tejashwi Yadav over a struggle for power in the party.
Summary:
A 16-year-old girl named Kasibhatta Samhitha, who has become the youngest engineer in Telangana, said she cleared Class 10 with 8.8 GPA when she was 10 years old.
Summary:
The all-India topper of JEE Advanced 2018 exam, Haryana's Pranav Goyal on Sunday said that he wants to get into the startup business after studying computer science engineering from IIT Bombay.
Summary:
At least 13 people have been killed across Kerala amid heavy rainfall this monsoon, with most deaths caused due to drowning.
Summary:
Summary:
Filed by a BSNL divisional engineer from Tamil Nadu, the FIR said that the WhatsApp message pertained to customer complaints.
Summary:
The Andhra Pradesh Police has booked a 45-year-old woman for allegedly raping a 15-year-old boy in Vijayawada.
Summary:
An all-woman team of Indian Army officers, led by Colonel Omender K Pawar, have scaled Mount Bhagirathi II and set a world record for performing yoga at an altitude of 19,022 feet.
Summary:
New York-based organisation China Labor Watch has released a report claiming the workers at Amazon's China factory are required to work over 100 hours of monthly overtime, violating Chinese labour laws.
Summary:
Actress Shraddha Kapoor's upcoming films 'Batti Gul Meter Chalu' and 'Stree' will release on the same day as both the films are scheduled to release on August 31, as per reports.
Summary:
Actor Salman Khan has said that there is no 'Wanted' or 'No Entry' sequel happening.
He further named 'Bharat', 'Dabangg 3' and 'Sher Khan' as some of his upcoming films.
Summary:
Actor Rajkummar Rao, while talking about how some actors have a 'starry' attitude, said, "What is this starry thing?
Summary:
'The Mask of Zorro' actor Antonio Banderas said Salma Hayek didn't disclose she was sexually harassed by Hollywood producer Harvey Weinstein as she "was trying to protect her friends and herself".
Summary:
As per reports, Deepika Padukone has rejected the offer to star in 'xXx 4' as she is avoiding taking projects around November owing to her marriage to Ranveer Singh during that time.
Summary:
Prakash also reportedly met Sidharth after which the actor agreed to be part of the film.
Summary:
Bangladesh men's cricket team opener Tamim Iqbal took to Instagram to share a video of the team celebrating the women's team's Asia Cup final victory against India.
Summary:
Debabrata Pal, who was an all-rounder, had joined the academy last month.
Summary:
Dubbing it the 'L-G, Delhi Chodo' campaign, Kejriwal accused L-G Anil Baijal of creating hurdles for the party's development projects.
Summary:
Congress MLA Randeep Surjewala has said that while the party has a time-tested policy of working with ideologically compatible parties, it will not abandon its state leaders' interests during the 2019 Lok Sabha elections.
He added, "The Indian National Congress will never sacrifice the...
Summary:
Earlier in January, Musk sold $3.5 million worth of flamethrowers in less than 24 hours.
Summary:
Summary:
This comes after no incident of violence was reported in the past 24 hours.
Summary:
Nirupam further said, "Rahul ji ensures that the common man's opinions, grievances and inputs not only reach him but also are responded to."
Summary:
Slamming Congress President Rahul Gandhi for seeking an account of work done by the BJP-led Central government, BJP chief Amit Shah today said, "Rahul baba, why are you asking for our account of four years?
Summary:
The quarter-final match between Austria and Switzerland in 1954, which produced 12 goals, is the highest scoring match in FIFA World Cup history.
Summary:
A new song titled 'Kar Har Maidaan Fateh' from Ranbir Kapoor starrer 'Sanju' has been released.
Shekhar Astitwa has penned the song's lyrics.
Summary:
The scooters shout 'Unlock me to ride me or I'll call the police!' as a warning to users.
Summary:
Haryana's 17-year-old Pranav Goyal on Sunday topped the JEE Advanced 2018 exam by scoring 337 marks out of 360.
Summary:
A two-month-old baby in Kerala escaped without any injuries on Saturday when the makeshift cradle he was sleeping in, along with the roof of the house, was blown away due to strong winds.
Summary:
Mukherjee had addressed a gathering at the RSS headquarters earlier this week.
Summary:
Karnataka Board's Class 10 topper Mohammad Kaif Mulla who scored 625 marks out of 625 after rechecking, on Sunday said, "624 marks were insufficient for me because I expected more".
Summary:
A video showing Queen Elizabeth II's great-granddaughter Savannah Phillips covering her cousin Prince George's mouth with her hand to shut him up has gone viral online.
Summary:
All the 21 banks had together reported a net profit of â¹473.72 crore in 2016-17.
Summary:
Violence cost the Indian economy $806 billion last year in purchasing power parity terms, which amounts to around $595.4 (â¹40,200) per person, according to the Global Peace Index.nThe economic impact of violence to the global economy was $14.76 trillion in 2017.
Summary:
Former RBI Governor YV Reddy has said confidence in the working of state-run lenders is at a historically low level.
Summary:
The currency with the public has reached a record high of over â¹18.5 trillion, more than double from a low of â¹7.8 trillion post demonetisation, RBI data showed.
Summary:
Actress Kajol has said that her husband Ajay Devgn is better than her when it comes to pampering their children Nysa and Yug.
Summary:
Salman Khan has said that some people from the film industry will never be welcomed in his home.
He further said he doesn't have enemies in the industry but it's just that he doesn't like a few people.
Summary:
SunRisers Hyderabad head coach Tom Moody has said that Afghanistan's 19-year-old leg-spinner Rashid Khan will create "enough headaches" for the Indian batsmen in the upcoming Bengaluru Test.
Summary:
Further, they can leave from work by 1 pm when Brazil have matches in the afternoon.
Summary:
Afghanistan's 19-year-old spinner Rashid Khan termed 56-year-old commentator Harsha Bhogle as 'SIR' after having earlier referred to him as 'bro' in one of his tweets.
Summary:
Apple is reportedly replacing the physical buttons in Apple Watch with solid-state side buttons which are touch-sensitive.
Summary:
Summary:
Congress leader and former Delhi CM Sheila Dikshit has slammed the Delhi government, stating that a conflict with the Centre or Lieutenant Governor cannot be an excuse to not work.
Summary:
Slamming RSS for inviting ex-President Pranab Mukherjee to its event, Shiv Sena MP Sanjay Raut said the organisation could be preparing to put him forward as PM candidate in 2019 if BJP fails to get majority.
Summary:
V Dhivakaran, the estranged brother of deposed AIADMK leader VK Sasikala, launched a political party named 'Anna Dravidar Kazhagam' in Tamil Nadu today.
Summary:
Summary:
The family of a woman from Hyderabad has asked External Affairs Minister Sushma Swaraj for a probe after the woman died under allegedly suspicious circumstances in Saudi Arabia's Dammam.
Summary:
BJP MP Brij Bhushan Sharan on Saturday said that only Prime Minister Narendra Modi and Uttar Pradesh Chief Minister Yogi Adityanath are incorruptible.
Summary:
Delhi CM Arvind Kejriwal has accused the CBI and Anti-Corruption Branch of randomly picking files from the Delhi Jal Board, of which he is the minister-in-charge, to "somehow frame" him "in something".
Summary:
Congress leader Jyotiraditya Scindia has said Congress' "doors are open" for an alliance in Madhya Pradesh and that seat sharing won't be a "speed breaker" for like-minded parties to come together.
Summary:
The trip to Singapore represents the farthest Kim has traveled from North Korea since taking power after his father's death in 2011.
Summary:
Actress Jacqueline Fernandez suffered a permanent eye injury while playing squash during the shooting schedule of her upcoming film 'Race 3'.
Summary:
In the video, the tube through which the 'pod' moves, is shown to have windows placed at every 10 metres.
Summary:
The South African-born billionaire CEO of Tesla and SpaceX, Elon Musk on Sunday said that he arrived in North America when he was 17 years old, with $2,000 cash, a backpack and a suitcase full of books.
Summary:
The Indian Railways has installed a tablet-operated automatic food vending machine in the newly-launched double-decker Coimbatore-Bengaluru UDAY Express.
Summary:
As many as 26 out of 30 students from the 'Super 30' coaching institute run by mathematician Anand Kumar in Bihar's Patna have cleared 2018 JEE (Advanced).
Summary:
The post requested interested buyers to contact Indian Union Muslim League or Kerala Congress (Mani).
Summary:
The impact of violence in 2017 led to a loss of over â¹80 lakh crore to India's GDP, or â¹40,000 per person, according to a Institute of Economics and Peace report.
Summary:
A high school in California, US, cut its valedictorian's microphone after she began talking about the alleged mishandling of cases of sexual misconduct by members of the school community.
Summary:
A picture of German Chancellor Angela Merkel staring directly at US President Donald Trump during the G7 summit has gone viral.
Summary:
Commenting on US President Donald Trump's trade policies and his Iran nuclear deal withdrawal, German Foreign Minister Heiko Maas has said nothing Trump is doing will "make the world better, safer or more peaceful".
Summary:
Mukesh Ambani's family, being the promoter and single-largest shareholder of Reliance Industries, earned a cumulative â¹14,553 crore as dividend income in 10 years, according to BloombergQuint.
Summary:
Remembering her father Dr Ashok Chopra on his death anniversary, Priyanka Chopra shared a video on Instagram with the caption, "5 years today.
Summary:
A new poster of Janhvi Kapoor and Ishaan Khatter starrer 'Dhadak' has been unveiled.
'Dhadak' will be Janhvi's debut film while Ishaan's second as he earlier starred in Majid Majidi's 'Beyond The Clouds'.
Summary:
Indian fans have bought the third-highest number of tickets, behind USA and China, for the upcoming FIFA World Cup 2018 among the nations which are not participating in the tournament.
Summary:
Former Indian cricketer Virender Sehwag has revealed that Pakistan's then captain Inzamam-ul-Haq once changed a fielder's position from long on for one ball on his request so that he could hit a six.
Summary:
Six-time reigning champions India failed to defend the Women's Asia Cup after suffering a three-wicket defeat on the last ball against Bangladesh in the final at Kuala Lumpur on Sunday.
Summary:
Former Pakistan captain Shahid Afridi shared a couple of photos on his official social media accounts, one being of his daughter copying his wicket-taking celebration with a chained lion lying in the background.
Summary:
The Speaker said he had invited the Lieutenant Governor last year but he had not attended it.
Summary:
Electric carmaker Tesla's CEO Elon Musk has said that the next-generation Tesla Roadster will have an optional 'SpaceX package' that will include around '10 small rocket thrusters'.
Summary:
The state has written to the Centre to notify khaini as a food product in order to ban it.
Summary:
The expansion will increase the overall capacity of the airport to 85 million per annum as against the current 70 million per annum.
Summary:
To help enforce the liquor ban in the state, Bihar Police has requisitioned 20 specially-trained puppies from Telangana to sniff out alcohol.
Summary:
Maharashtra has been ranked the most vulnerable state in the draft National Disaster Risk Index, followed by West Bengal and Uttar Pradesh.
Summary:
Earlier, PM Modi met Chinese President Xi Jinping and signed an agreement allowing India to export non-Basmati rice to China.
Summary:
Ahead of the talks between US President Donald Trump and North Korean leader Kim Jong-un on June 12, lookalikes of the two world leaders held a summit of their own at a mall in Singapore.
Summary:
The Army on Sunday killed six terrorists while foiling an infiltration bid along the Line of Control (LoC) in Jammu and Kashmir's Kupwara district.
Summary:
Over 10.74 lakh aspirants had appeared for the JEE Main examination.
Summary:
Summary:
As many as 26 people were killed by dust storms and lightning strikes in Uttar Pradesh on Saturday.
Summary:
Actor Paresh Rawal will be seen portraying the role of National Security Advisor Ajit Doval in the upcoming film 'Uri'.
Summary:
He finally managed to watch Bradman bat at Nottingham's Trent Bridge stadium.
Summary:
Union Minister of State for Health Ashwini Choubey on Saturday said that the Nipah virus has been contained in Kerala and there is no need to "run from anywhere".
Summary:
A 45-year-old man died at a hospital in Delhi after he was treated by a fake doctor, who gave him wrong medication and injections, reports said.
Summary:
He further said that Kim is "going to surprise on the upside".
"And if I think it won't happen, I'm not going to waste my time.
Summary:
US President Donald Trump arrived several minutes after the start of the G7 meeting on women's empowerment.
Summary:
Trump also said that the US will not sign a previously agreed summit communique.
Summary:
Last year, a Saudi man was held by police as he was trying to set himself ablaze at the mosque.
Summary:
Denying reports that he intends to sell the company, Italy's biggest luxury goods group Prada's CEO Patrizio Bertelli has said, "We are not selling, we will never sell." Bertelli's family owns majority 80% stake in Prada.
Summary:
A picture of a Chinese woman cooking fish on a car bonnet amid rising temperatures has gone viral.
Summary:
She will reportedly be playing the role of a trapeze artiste in a 1960s circus in the film, which is an adaptation of 2014 South Korean movie 'Ode to My Father'.
Summary:
Former Australian vice-captain David Warner, who was handed a ban for being involved in the ball-tampering scandal in South Africa, is set to commentate during an Australia-England ODI this month.
Summary:
Rafael Nadal has said that if female supermodels earn more than their male counterparts then in the same way male tennis players should earn more than female players as they gather more audience.
Female models earn more than male models and nobody says anything.
Summary:
India's then stand-in captain Rohit Sharma revealed that during Nidahas Trophy final, he calmed Dinesh Karthik down, who was "red with anger" before his 8-ball 29 including match-winning last-ball six.
Summary:
Indian football captain Sunil Chhetri has said that comparisons with Lionel Messi and Cristiano Ronaldo, who are above him on the list of highest active goalscorers, are unfair.
There is no comparison at all," Chhetri said.
Summary:
Uttar Pradesh Chief Minister Yogi Adityanath granted â¹4.5 lakh to 19-year-old shooter Priya Singh to help her participate in the International Shooting Sports Federation (ISSF) Junior World Cup in Germany.
Summary:
Samajwadi Party leader Sunil Yadav has alleged that the damages inside the government bungalow recently vacated by former CM Akhilesh Yadav were ordered by CM Yogi Adityanath himself.
Summary:
RJD patriarch Lalu Prasad Yadav's elder son Tej Pratap tweeted that he wanted to make Arjun, purportedly a reference to his younger brother Tejashwi, takeover the reins of Hastinapur and himself leave for Dwarka.
Summary:
One of the most wanted criminals, Rajesh Bharti, who was killed in a shootout by the Delhi Police on Saturday, had murdered his father when he was 11 years old.
Summary:
A 26-year-old man in Rajasthan's Pipar City has been arrested after he confessed to slitting his four-year-old daughter's throat as sacrifice to please God during Ramadan.
Summary:
JNU student leader Shehla Rashid has tweeted that RSS and Union Minister Nitin Gadkari are plotting a "Rajiv Gandhi style" assassination of PM Narendra Modi.
Summary:
Locals said the name 'Laden' comes from the elephant's "unusually big size".
Summary:
Summary:
The couple disentangled themselves, adjusted their clothes and crossed the road to the other side after the police arrived at the scene.
Summary:
Actor Salman Khan was among the targets of Lawrence Bishnoi's gang and gangster Sampat Nehra had been assigned to kill him, as per Haryana Police.
Summary:
Prosecutor Christian de Rocquigny stated there was no element that made them suspect that someone came into Anthony's room.
Summary:
Newlywed Duchess of Sussex Meghan Markle wore a â¹3.08-lakh dress by Carolina Herrera for Queen Elizabeth II's 92nd official birthday on Saturday.
Summary:
The 29-year-old Jammu and Kashmir man, who was tied to an Army Major's jeep as a 'human shield' during a stone pelting incident, claimed he rejected a â¹50 lakh offer by the producers of Bigg Boss.
Summary:
The new release date will reportedly be announced later this year.
Summary:
Addressing BJP workers in Karnataka, party leader BS Yeddyurappa claimed that several "disgruntled" leaders from Congress and JD(S) are eager to join the BJP.
Summary:
A Trinamool Congress worker was allegedly hacked to death in West Bengal's Howrah district on Saturday.
Summary:
Jack Ma-led Alibaba's affiliate Ant Financial now has a valuation of $150 billion, which is more than double the valuation of Uber ($62 billion), according to reports.
Summary:
It consists of eight member statesâÂÂIndia, Kazakhstan, China, Kyrgyzstan, Pakistan, Russia, Tajikistan, and UzbekistanâÂÂand is seen as a counter to the NATO.
Summary:
As many as 27 incoming flights were diverted from Delhi's Indira Gandhi International Airport after a dust storm hit the national capital on Saturday.
Summary:
Police said the accused tried to rape the victim after watching a porn video on his uncle's mobile phone.
Summary:
Students have alleged discrepancies in evaluation in Bihar state board's Class 12 exams, claiming that they received 1 or 2 marks out of 100 marks in subjects such as Physics and Chemistry despite clearing JEE (Main) examinations.
Summary:
Chinese President Xi Jinping has accepted PM Narendra Modi's invitation for an informal summit in India next year, the Ministry of External Affairs said.
Summary:
US President Donald Trump on Saturday said that the upcoming Singapore summit will be a "one-time shot" for North Korean leader Kim Jong-un.
Summary:
Nepal's Army Chief General Rajendra Chhetri has said his country would never let its soil to be used against India.
Summary:
Slamming nations against their "brutal" approach in conducting trade with his country, President Donald Trump on Saturday said that the US is like a "piggy bank that everyone is robbing".
Summary:
Kareena Kapoor said she was told she would not get films after marriage, while adding that she changed the norm.
Summary:
Actress Kajol said a good script should be like a book that is unputdownable.
Summary:
In the video, Chhetri appears to be upset with the fan's action and asks the crowd to not do such things.
Summary:
Asghar Stanikzai, who will lead Afghanistan in their maiden Test against India next week, has said they have better spinners than India.
I'm sure he will conquer it," he further said.
Summary:
Kerala all-rounder Jalaj Saxena, who has won four BCCI awards in last four years, has said he is depressed as he has not even received an India A call.
Summary:
Ex-Indian cricketer Virender Sehwag has revealed when he first met Sachin Tendulkar, the latter just shook his hand and went ahead.
Summary:
Andrzej Bobowski, a 78-year-old Polish fan, is set to attend his 11th FIFA World Cup at the upcoming edition in Russia.
Summary:
Sachin Tendulkar recalled that following Virender Sehwag's advice to attack England's bowling, he stepped out to hit a shot and missed a turning ball to be stumped for the first time in Tests.
Summary:
A 20-year-old Ukrainian model, who was arrested from an Uttar Pradesh hotel in April for not possessing a valid visa and other documents, was released from a Gorakhpur jail on Friday.
Summary:
"Steps include the recognition of these non-performing assets, the resolution framework under the Insolvency and Bankruptcy Code," he added.
Summary:
Halep had also ended as runner-up at Australian Open in January.
Summary:
The iconic phrase, "Bond, James Bond" was enacted during a scene with Eunice.
Summary:
Sehwag added when Virat Kohli and Gautam Gambhir were batting, Sachin directly passed a message to Dhoni for the first time.
Summary:
Indian boxer NT Lalbiakkima defeated the 2016 Olympic champion Hasanboy Dusmatov in the 49-kg category quarter-final of the Kazakhstan President's Cup on Friday.
Summary:
KFC has said it is testing vegetarian 'fried chicken' in the UK with signature blend of herbs and spices.
Summary:
The qualification of JD(S) minister GT Devegowda, who has been given the higher education portfolio in Karnataka's newly-formed cabinet's expansion, is Class 8 pass.
Summary:
Former UP CM Akhilesh Yadav has been accused of destroying government property after ACs, imported bathroom fittings and other costly items went missing from the Lucknow bungalow he vacated recently.
Summary:
A Tesla shareholder has filed a lawsuit in the US against the company's CEO Elon Musk, seeking to overhaul his $2.6 billion compensation package, which was approved in March.
Summary:
These accounts reportedly provide a variety of remote sexual services in exchange for payments through digital wallet Paytm.
Summary:
Chaudhary's startup delivers snacks and tea through four centres in Jaipur.
Summary:
Responding to the Indian embassy in Oman's request to aid the return of a minor Hyderabad girl who was married to a 77-year-old Omani national, Omani authorities said the girl was happy with her husband.
Summary:
The Bombay High Court has asked the Information and Broadcasting Ministry to consider asking the media to not use the word 'Dalit' within the next six weeks.
Summary:
The student was charged a penalty for the cheque, which was reportedly dishonoured due to mismatched signatures.
Summary:
India Meteorological Department officials on Saturday warned of heavy rainfall in Mumbai and Konkan regions over the next two days.
Summary:
Finance Minister Arun Jaitley has said the amendments to the Insolvency and Bankruptcy Code (IBC) will help eliminate "fly by night" realtors and ensure timely completion of projects.
Summary:
A 22-year-old Sikh Coldstream Guards soldier has become the first person to wear a turban during the Trooping the Colour parade which was held to mark UK Queen Elizabeth II's official birthday.
Summary:
In a report presented to the Congress, the US has said that Tibetans should choose the reincarnation of spiritual leader the Dalai Lama as per their beliefs.
Summary:
The UN General Assembly on Friday elected South Africa, Indonesia, Dominican Republic, Germany and Belgium as non-permanent members of the Security Council.
Summary:
Rishi Kapoor, who was part of the film 'Jab Tak Hai Jaan', tweeted, "What film is this from?," while sharing a clip of a scene where he featured with Shah Rukh Khan.
Summary:
Sonam Kapoor's cousin Arjun Kapoor shared a photograph from their childhood and wished Sonam on her 33rd birthday while captioning it, "You always got my back and I always got yours." "You're married now but it feels like we are still kids in school together," he added.
Summary:
Salman Khan has said that ticket rates for Hindi films should be brought down to â¹200-250 for weekends and â¹120-150 for weekdays, the way it is for regional films.
Summary:
Celebrity chef Anthony Bourdain's girlfriend, Italian actress Asia Argento, in a statement issued after his alleged suicide, said, "He was my love, my rock, my protector." "His brilliant, fearless spirit touched and inspired so many, and his generosity knew no bounds," the statement further read.
Summary:
Actor Shakti Kapoor has said villains are disappearing from modern cinema.
Summary:
Team India pacer Umesh Yadav has said he has started practising single wicket bowling on RCB coach Ashish Nehra's advice.
"Nehra told me...the key to consistency is uncluttered mind.
Summary:
Summary:
Speaking about Congress President Rahul Gandhi, BJP chief Amit Shah said, "Arre babua, tell me brother, what you have done in 70 years?
Summary:
Guterres was speaking on the first anniversary of the India-UN Development Partnership Fund which was set up to help implement the goals.
Summary:
Rajesh Bharti, one of Delhi's 10 most wanted criminals, was killed in a shootout with police in south Delhi on Saturday morning, along with three members of his gang.
Summary:
The American Automobile Association has launched a contest to find the first couple to get married in one of its self-driving shuttles in Las Vegas.
Summary:
Sonam Kapoor Ahuja, who turned 33 today, revealed she wanted to get married only after meeting Anand Ahuja, who she married recently.
Summary:
Salman Khan has jokingly said that the film 'Tiger Zinda Hai' will get a sequel titled 'Zoya Zinda Hai'.
"The sequel to 'Tiger Zinda Hai' is absolutely happening.
Summary:
In his speech aimed at inspiring students who did not score well in Class 12 exams, Madhya Pradesh CM Shivraj Singh Chouhan said, "He (Amitabh Bachchan) did not have any good formal education degrees." Congress termed Chouhan's remark "an insult to Bhopal's jamai".
Summary:
As per reports, Saif's statement was recorded by the police a month ago.
Summary:
The patty, which had a height of 29 centimetres and diameter of 122 centimetres, was prepared in August 2017.
Summary:
Virender Sehwag has revealed that ahead of the World Cup 2003, coach John Wright's vote for the team's opening pair resulted in 14 out of 15 chits calling for a Sachin Tendulkar-Sehwag opening pair.
Summary:
She urged students to build workplaces where everyone is treated with respect.
Summary:
After announcing that it is discontinuing its Messenger service after 20 years, Yahoo is recommending its users to use its group messaging app called Squirrel.
Summary:
A Duke University-led study has claimed to find "widespread uranium contamination in groundwater from aquifers in 16 Indian states".
Summary:
A doctor was arrested for allegedly trying to smuggle 35 mobile phones, 4 kg marijuana and alcohol into KolkataâÂÂs Alipore Central Jail on Friday.
Summary:
There was not much air inside the garage and the vehicle ran out of diesel, shutting down the car's air-conditioning.
Summary:
Alleging that police assumed the transwoman was a sex worker, he added he was detained at a police station for two hours.
Summary:
The family members of 31-year-old IIT-Delhi graduate Anshum Gupta, who committed suicide after jumping off the institute's building on Friday, said they had no idea he went there to commit suicide.
Summary:
The victims, who were reportedly travelling to see a waterfall, died on the spot after their SUV was attacked.
A video of the incident shows one of the victims saying, "Don't kill me...please don't beat me.
Summary:
The Taliban militant group in Afghanistan has for the first time announced a three-day ceasefire during the Eid holiday.
Summary:
Chinese President Xi Jinping on Friday awarded his country's first Friendship Medal to his Russian counterpart Vladimir Putin and called him his best friend.
Summary:
Actress Jacqueline has said entertainment is a brutal business where things change every Friday.
Summary:
One G is Goodenough for me." The actress got married to Gene in February 2016.
Summary:
Osorio said that the players did nothing wrong and deserved "some time for themselves".
Summary:
Former cricketer Sachin Tendulkar recalled that he used to talk to his former opening partner Sourav Ganguly in Bengali to relax him to play his natural game while batting together.
Summary:
Former Indian cricketer Sachin Tendulkar said that he used to offer his opening partner Virender Sehwag bananas from across the dressing room to make him "shut his mouth".
Summary:
Using data from NASA's Kepler Space Telescope, Spain-based astronomers have announced the discovery of two new planetary systems, with one of them hosting three Earth-sized planets.
Summary:
The crater in Rajasthan's Ramgarh village, long debated to have evolved from "tectonic activity" or "magmatism", was caused by "meteorite impact", a team including scientists from Geological Survey of India (GSI) has claimed.
Summary:
A woman who was declared a widow after the death of her husband 20 years ago, recently moved an application that he was alive in the Revenue Public Court in Rajasthan's Nimbara village.
Summary:
The bank also alleged the company showed inflated income and assets since 1998.
Summary:
The US feared an India-Pakistan war would lead to an all-out confrontation with nations like Russia and China joining the war.
Summary:
He kept same names for his children from both wives to ease the property buying and selling procedure.
Summary:
The trailer of 'First Man', starring actor Ryan Gosling as astronaut Neil Armstrong, who became the first man to walk on the moon during the Apollo 11 mission, has been released.
Summary:
The newborn suffered serious burns and doctors had to amputate the leg to save his life.
Summary:
American tennis player Sloane Stephens, who is set to face world number one Simona Halep in the final of the French Open 2018, was ranked 957 around 11 months ago.
Summary:
Jack Ma-led Alibaba's affiliate Ant Financial's valuation now stands at $150 billion, more than investment bank Goldman Sachs' $88 billion, according to reports.
Summary:
After Facebook claimed it cut off developer access to user data in 2015, a report claiming the company struck data-sharing deals with select companies and shared details of users' friends has surfaced.
Summary:
A startup named Shift has sued Apple for $200,000 over copying its logo for the company's Shortcut app.
Summary:
A developer named Matt Moss has posted a video on Twitter which shows him controlling an iPhone with his eyes, using Apple's augmented reality framework called ARKit. It shows Moss looking at the button to click it and then blinking to press the button.
Summary:
A student in Bihar's Arwal has scored 38 out of 35 marks in Class 12 state board exam for theory in Maths and 37 out of 35 marks in objective questions.
Summary:
The owner of a paan chain in Hyderabad has been arrested for allegedly raping a woman after drugging her using a paan.
Summary:
The Punjab and Haryana High Court has said that forced and unnatural sex amount to cruelty and can be grounds for divorce on "the basis of evidence".
Summary:
A constable in Uttar Pradesh's Lucknow has shot himself to death at his government quarters reportedly because he was unable to cope with his 20-hour shift.
Summary:
Mumbai terror attack mastermind Hafiz Saeed will not be a candidate in Pakistan's upcoming general elections but his terror organisation Jamaat-ud-Dawah (JuD) will contest for over 200 seats.
Summary:
Swara Bhasker has said that the best way to deal with stereotypes is by taking risks.
Summary:
"Lesser known fact: I was Nolan's first choice for The Joker, had to decline for Dhadak," she jokingly wrote.
Summary:
He will stay in a consulting role until he steps down at the end of 2018.
Summary:
The spokesperson of former footballer David Beckham and his wife, fashion designer Victoria Beckham, while denying reports that they are getting divorced, called the rumours "a crock of sh*t".
Summary:
After 19-year-old Afghan spinner Rashid Khan called 56-year-old commentator Harsha Bhogle "bro" on Twitter, the latter tweeted, "Hey @rashidkhan_19, no problem with the "bro" bit.
Summary:
The Dutch city of Eindhoven is set to be the first in the world to have habitable houses made by a 3D printer.
Summary:
Summary:
The trio completed the station's six-member crew as three astronauts returned to Earth last Sunday after 168 days in space.
Summary:
JNU student leader Umar Khalid has filed a police complaint alleging he received death threats from a man claiming to be gangster Ravi Pujari.
Summary:
US President Donald Trump has said that he would invite North Korean leader Kim Jong-un to the White House if next week's summit between the two leaders in Singapore is successful.
Summary:
New York's Governor Andrew Cuomo has launched a suicide prevention programme in the wake of recent celebrity suicides of chef Anthony Bourdain and fashion designer Kate Spade.
Summary:
The US has unveiled the world's most powerful supercomputer called 'Summit', beating the previous record-holder China's Sunway TaihuLight.
Summary:
Summary:
Yahoo has announced it is discontinuing its Messenger service after 20 years, from July 17, after which users won't be able to login.
Summary:
Retired High Court judge CS Karnan on Friday launched the flag for his new political party 'Anti-Corruption Dynamic Party', which is the fourth to be launched in Tamil Nadu after late CM Jayalalithaa's demise.
Summary:
Karnataka CM HD Kumaraswamy has allotted himself 11 ministries including Finance, Energy, and Infrastructure Development.
Summary:
The world's largest iceberg has broken-up after drifting from Antarctica towards the equator, images from the space station have shown.
Summary:
China reportedly hacked the computers of a US Navy contractor and stole 614 gigabytes of highly sensitive data on undersea warfare, including plans for a supersonic anti-ship missile for use on submarines.
Summary:
Summary:
Human rights lawyer Amal Clooney, the wife of Hollywood actor-producer-director George Clooney, said, "I met George when I was 35 and starting to become quite resigned to the idea that I would be a spinster.
Summary:
Swara Bhasker took to social media to share a picture with Sonam Kapoor on the occasion of her 33rd birthday today.
Summary:
Ranveer Singh took to Instagram to share the first still from his upcoming film 'Simmba', directed by Rohit Shetty.
Summary:
HBO said in a statement that the prequel will take place "thousands of years before the events of 'Game of Thrones'".
Summary:
Talking about the fight sequence between Jacqueline Fernandez and Daisy Shah in 'Race 3', Salman Khan said, "It looks like two men fighting and it also has its humour and slight sensuousness." "The kicks they've given are lethal.
Summary:
India managed to restrict Pakistan to a total of 72/7, with Ekta Bisht picking 3/14 in her four overs.
Summary:
Golden State Warriors lifted their third NBA title in four years and their second title in a row after completing a 4-0 clean sweep over LeBron James-led Cleveland Cavaliers in the sides' Game 4 on Saturday.
Summary:
"Panja with great Khali #DalipSinghCWE #bigfella #Awesomeguy #bigman," the 37-year-old spinner wrote as his post's caption.
Summary:
Facebook-owned messaging service WhatsApp has now started labeling forwarded messages in Android beta.
Summary:
Uber has applied for a patent for an AI system that can predict if a user is drunk while booking a cab.
Summary:
A letter sent by the Railway Board to zonal General Managers has revealed that 15 incidents of fire involving locomotives, coaching stock and freight stock have been reported in the past five months.
Summary:
Two firefighters were injured after a portion of the building collapsed while they tried to douse the fire.
Summary:
A seven-year-old girl in Kolkata died while trying to imitate a suicide scene from a TV serial.
Summary:
BJP MLA Champalal Devda has been caught on the CCTV slapping a policeman and threatening to kill him inside a police station in Madhya Pradesh's Dewas district.
Summary:
Trivandrum archbishop Soosa Pakiam has urged all Christian schools to include Constitution literacy as part of their moral science curriculum.
Summary:
BJP veteran leader LK Advani said former President Pranab Mukherjee's decision to visit RSS headquarters and give a speech on nationalism was a significant event in India's contemporary history.
Summary:
The Supreme Court on Friday directed the Centre to set up a committee to study the management of culturally and architecturally important temples across the country.
Summary:
Another restaurant is serving 'Trump-Kim Chi Nasi Lemak', a dish with American and Korean elements.
Summary:
India's largest drugmaker Sun Pharmaceutical added â¹9,523 crore to market capitalisation on Friday after the US health regulator USFDA didn't recommend any action against the company's Halol plant in Gujarat.
Summary:
Mohammad Kaif Mulla, who scored 624 marks out of 625 in the Karnataka board exams for Class 10, has now become the state topper after he sent his paper for re-evaluation and got 100%.
Summary:
A video of celebrity chef Anthony Bourdain with Malayalam film actor Mammootty has surfaced online after the chef's death on Friday.
Summary:
Billionaire Bill Gates has invited students graduating from a US college in 2018 to download free e-book of late Hans Rosling's 'Factfulness'.
Summary:
India Under-19 and India A coach Rahul Dravid will not be travelling to Sri Lanka with the U-19 team which features Arjun Tendulkar, who broke into the team for the first time.
Summary:
After the Congress and the RJD claimed that the reports of alleged assassination plan of PM Narendra Modi are planted, Union Minister Kiren Rijiju said, "What can be more outrageous, unsavoury, and wicked?" "Congress Party has destroyed all the norms of civility and polity.
Summary:
India's first indigenous, long-range artillery gun 'Dhanush' has cleared its final test and is ready to be inducted into the Indian Army, a senior official said on Friday.
Summary:
The businessman who alleged that Uttar Pradesh CM Yogi Adityanath's Principal Secretary SP Goyal demanded a â¹25-lakh bribe for facilitating the setting up of a petrol pump has retracted his allegations.
Summary:
A nine-year-old boy was accidentally shot by a Railway Police Force jawan after his rifle fired when he dropped it at Kolkata's Dum Dum Metro station, according to reports.
Summary:
The owner of an Ayurvedic hospital in Madhya Pradesh's Bhind has reportedly claimed â¹16 crore from the Indian Army as expenses for treating the head injury of a jawan, who is also his son.
Summary:
Xi hailed China-Russia bilateral relations, claiming the two countries overcame all "fluctuations" in global politics.
Summary:
Johnson has been critical of UK PM Theresa May's handling of Brexit negotiations.
Summary:
A couple from Canada lost custody of their daughter after they insisted that their stuffed lion, claimed to represent 'Lord Jesus', is their lawyer.
Summary:
Walmart has sued its former chief tax officer Lisa Wadlin for violating her employment agreement by joining rival Amazon.
Summary:
Actress Yami Gautam's younger sister Surilie J Singh was recently asked to leave a restaurant in Serbia, as she was not wearing pants.
Summary:
Hollywood actor Michael B Jordan has said that he only wants to play roles which are written for white males and not the roles which are specifically written for black people.
Summary:
The release date of the upcoming Rishi Kapoor starrer 'Rajma Chawal' has been announced as August 31, 2018.
Summary:
Actor Anil Kapoor, who was recently a part of the season 3 of Salman Khan's reality game show 'Dus Ka Dum', apologised to his mother on the show for not remaining in touch with her always.
Summary:
Talking about Ranbir Kapoor portraying Sanjay Dutt in the upcoming biopic 'Sanju', Arshad Warsi said, "No matter what you do, you cannot be Sanju!
Summary:
Playing in her first ODI, Ireland Women's 17-year-old leg-spinner Cara Murray on Friday conceded 119 runs in 10 overs against New Zealand Women, the most by any bowler in an ODI (Men's/Women's).
Summary:
World number one Rafael Nadal on Friday defeated world number six Juan Martin del Potro to enter his 11th French Open final and 24th Grand Slam final.
Summary:
Former Indian cricketer Sachin Tendulkar recalled that to get 'shy' Virender Sehwag comfortable with him, he invited him for a dinner where Sehwag revealed that he thought eating chicken would make him fat.
Summary:
Further, Indian fast bowler Jasprit Bumrah is the only pacer in top 10, occupying the 10th position.
Summary:
After the police said some CPI (Maoists) members were planning a Rajiv Gandhi-like assassination of PM Narendra Modi, BJP MP Subramanian Swamy said, "Since Congress party is also involved...this shouldn't be taken lightly." "I'll be writing a letter to National Security Advisor about this...There's no doubt that PM Modi has been our star campaigner...
Summary:
Swimming and water sports across beaches in Goa have been closed till the end of September as the state witnessed monsoon rains from Friday and the seas are expected to be rough.
Summary:
The Pune Police has released the images of suspects who killed a youth during the Bhima-Koregaon violence which took place in January this year.
Summary:
Farmers across many states are on strike, demanding minimum support price, farm loan waiver, and implementation of Swaminathan Commission recommendations.
Summary:
A landfill site in Gujarat's Vadodara has been converted into a tree museum after the municipal corporation planted over 12,000 saplings of nearly 100 varieties in an area of 50,000 square metres.
Summary:
It is most likely 'uninhabitable' due to the proximity to its star, 600 light-years away from Earth, scientists found.
Summary:
Musharraf is facing charges of treason for subverting the Constitution after he imposed an emergency in Pakistan in 2007.
Summary:
A footage released by an animal welfare group International Animal Rescue shows an orangutan fighting a bulldozer in Indonesia which was uprooting trees it considered its home.
Summary:
Television network ABC has apologised over an episode in Priyanka Chopra starrer 'Quantico' which showed 'Indian terrorists' framing Pakistan for trying to blow up Manhattan in New York.
Summary:
Haryana CM Manohar Lal Khattar has deferred a government notification which directed sportspersons employed with the state to pay 33% of their income to the sports council.
Summary:
Aged 14, Sachin scored a record-breaking 664-run partnership with Vinod Kambli in school cricket.
Summary:
Indian pacer Ishant Sharma scored more runs than India teammate Cheteshwar Pujara in the County Championship 2018.
Summary:
Bangladesh captain Shakib Al Hasan became the quickest to reach 10,000 runs and pick 500 wickets in international cricket against Afghanistan on Thursday.
Summary:
Police said Flipkart paid the customers without proper verification.
Summary:
A video showing locals harassing a hungry lioness by baiting it with a chicken several times in Gujarat's Gir forest has surfaced online.
Summary:
Pakistan has banned Social Studies textbooks in private schools in Punjab province for showing Kashmir as a part of India in maps.
Summary:
A video has surfaced online wherein some men wearing PM Narendra Modi masks are seen showering money on a singer at a devotional programme in Gujarat.
Summary:
Maharashtra's medical education department has transferred Dr SD Nanandkar from the post of dean at Mumbai's JJ Hospital to Kolhapur for keeping his mobile switched off and remaining unavailable at most times.
Summary:
The Islamic State on Friday recaptured major parts of the Syrian town of Albu Kamal, the Syrian Observatory for Human Rights said.
Summary:
Karan Johar has said that he can't wait to share "cinema space" with Shah Rukh Khan again.
Summary:
YouTuber OrangeGuy with the help of two of his friends used a trolley to reach the 'spawn island' in popular online game Fortnite, an area touted to be 'unreachable' after the game's start.
Summary:
Reacting to Afghanistan's 19-year-old spinner Rashid Khan calling Indian commentator Harsha Bhogle "bro" while replying to a tweet, a user tweeted, "When your bro is almost 3 times older than you".
Other users reacted to it with tweets like, "Bro?
Summary:
The 19-year-old bowled 35 dot balls (5.5 overs) and did not concede a single six in the series.
Summary:
The Indian government has sent a notice to Facebook, demanding an explanation to reports that claimed the platform shared users' personal data with 60 companies including Apple and Samsung.
Summary:
Prions are infectious brain proteins that have folded incorrectly.
Summary:
A Shiromani Akali Dal delegation led by party chief Sukhbir Singh Badal and Union Minister Harsimrat Kaur Badal thanked PM Narendra Modi on Friday after the Centre decided to revoke GST on langar items.
Summary:
The Uttar Pradesh Police has arrested a local businessman who accused Principal Secretary to CM Yogi Adityanath, SP Goyal, of demanding a bribe of â¹25 lakh for facilitating the setting up of a petrol pump.
Summary:
The initiative, which is part of the DigiYatra scheme, will ensure quicker entry into airports by facilitating automated check-ins.
Summary:
A three-year-old boy in Mumbai's Chembur died after falling into an open drain while playing near his house with his friends on Wednesday.
Summary:
Mukesh Ambani's wife Nita Ambani along with son Anant Ambani presented the invitation card of Akash Ambani and diamond heiress Shloka Mehta's engagement at the Shree Siddhivinayak Ganapati temple in Mumbai.
Summary:
India's GDP growth is likely to cross 8% in the next two years, Commerce Minister Suresh Prabhu has said.
Summary:
The petrol prices in Delhi has come down by â¹1 in the past 10 days from its record high of â¹78.42 per litre on May 29, while diesel has seen a 72-paisa decline.
Summary:
New Zealand Women recorded the highest-ever ODI total across men's and women's cricket by scoring 490/4 in 50 overs against Ireland Women on Friday.
Summary:
US President Donald Trump on Friday called for Russia's reinstatement in the G8 and said that Russia should be attending the forum's upcoming meeting in Canada.
Summary:
Indian Olympic medalist wrestler Yogeshwar Dutt termed Haryana government's notification asking sportspersons employed by the state to pay 33% of their earnings as a 'Tughlaqi Farmaan'.
Summary:
Sachin Tendulkar's son Arjun, who broke into the India Under-19 team on Thursday, was picked in the Mumbai Under-14 squad after scoring 70 runs against Sachin Tendulkar XI in 2013.
Summary:
Team India wicketkeeper-batsman KL Rahul took to Twitter to share a leaked video of Virat Kohli reportedly getting his beard insured.
Summary:
Apple has been granted the patent for a wearable 'cuff' that would measure users' blood pressure.
Summary:
Talking about messaging app 'Kimbho' which the firm claims will give "competition" to WhatsApp, Patanjali MD Acharya Balkrishna has said he respects WhatsApp but "people need an alternative".
Summary:
Students of ACE College of Engineering & Management in Agra have developed a four-seater solar car to help reduce air pollution which is damaging the Taj Mahal.
Summary:
Summary:
A 31-year-old alumnus of IIT-Delhi on Friday visited the institute and allegedly committed suicide by jumping off the seventh floor of a building in the campus.
Summary:
The government has left no stone unturned in convincing UK that fugitive Vijay Mallya must be extradited to India, External Affairs Ministry spokesperson Raveesh Kumar has said.
Summary:
One out of every 100 people in the world is a refugee, the Global Peace Index (GPI) has claimed.
Summary:
The couple then contacted animal services, who identified the creature as a bearded dragon, native to Australia.
Summary:
Shrivastava, who shared pictures with Salman on Twitter, met him along with his wife and two sons.
Summary:
Director Rakesh Roshan has said he is sure that actress Priyanka Chopra will be in his upcoming film 'Krrish 4' but he is not sure about the length of her role in the franchise's fourth instalment.
Summary:
Actress Shilpa Shetty, who turned 43 on Friday took to Instagram to share her birthday celebration pictures with her family and captioned it, "All you need is family." The birthday pictures included a handmade birthday card from her six-year-old son Viaan Raj Kundra.
Summary:
The spokesperson of Kareena Kapoor Khan and Sonam Kapoor starrer 'Veere Di Wedding' said that a sequel of the film is being discussed as it has been performing well at the box-office.
Summary:
Former Swedish tennis player Robin Söderling, who had become the first man to defeat Rafael Nadal at French Open in 2009, jokingly said he is still waiting for Roger Federer to thank him.
Summary:
The crowd cheered after seeing Ronaldo Jr score from set-piece situations and from lay-up assists being provided by his father.
Summary:
After Odisha CM Naveen Patnaik ordered a judicial probe into the disappearance of keys to Jagannath Temple's treasury, Union Minister Dharmendra Pradhan said, "I want to ask CM Naveen Babu, does inquiry commission possess a magic wand?" He added that the commission was set up to "fool people".
Summary:
Summary:
After former President Pranab Mukherjee called RSS founder Keshav Baliram Hedgewar a "great son of Mother India", Kerala CM Pinarayi Vijayan said he was shocked to hear him praise someone "who established communal discord".
Summary:
The Comptroller and Auditor General of India will audit the procurement of 36 Rafale fighter jets from France only after the "deal is fully executed and the payments are completed", an official has said.
Summary:
Stephen Koch was detained for drug-related charges and his admission came during the course of the investigation.
Summary:
A video of US Vice President Mike Pence following President Donald Trump as he removed a bottle from the table has gone viral on social media.
Trump and Pence were attending a meeting to discuss preparedness for the upcoming hurricane season.
Summary:
Tariq began working in Azim Premji's family office PremjiInvest and has been on the board of Premji's two philanthropic arms.
Summary:
From boosting confidence to working with a team, work and play go together.
Summary:
The celebrity chef and TV personality was working on an upcoming episode of his CNN series "Anthony Bourdain: Parts Unknown" in France.
Summary:
Ambani kept his salary at â¹15 crore for the 10th straight year to "set a personal example for moderation in managerial compensation levels".
Summary:
Addressing public in Pakistan, terror group Jamaat-ud-Dawa chief Hafiz Saeed's aide Bashir Ahmad said, "(PM) Modi will be killed.
Summary:
The letters also mentioned the Gadchiroli encounter in which 39 Naxalites, including top leaders, were killed by police commandos and CRPF personnel in April.
Summary:
A school in the US city of Boston is using a nursery rhyme to teach kindergarten students how to survive school shootings.
Summary:
The TIME magazine has depicted US President Donald Trump in its latest edition as a king having "absolute powers".
Summary:
The Austrian government has announced it will shut down seven mosques run by hardline Turkish nationalists and foreign-based Muslim groups in a crackdown on political Islam and radicalisation.
Summary:
Twinkle Khanna took to social media to share a picture with her mother Dimple Kapadia on the occasion of her 61st birthday today.
Summary:
Swara Bhasker, while talking about the response received by her masturbation scene in 'Veere Di Wedding', said, "I was expecting the shock." Recalling the time she shot for the scene, Swara added, "I was nervous.
Summary:
Reese Witherspoon confirmed the third instalment of the 'Legally Blonde' franchise which will release in 2020, 17 years after the release of 'Legally Blonde 2: Red, White & Blonde'.
Summary:
A new song titled 'Party Chale On' from Salman Khan starrer 'Race 3' has been released.
Summary:
Earlier during Afghanistan's batting, Bangladeshi bowler Nazmul Islam performed the same celebration after dismissing Shahzad for 26.
Summary:
Bhuvneshwar added he felt like he was "possessed" and kept staring at Sachin even when he was batting.
Summary:
English cricketer Danielle Wyatt, who had once proposed to Virat Kohli on Twitter, congratulated Sachin Tendulkar's son Arjun who broke into India's Under-19 squad on Thursday.
Summary:
Facebook has said that it will send fewer notifications, about their friends joining messenger, to users who don't enjoy getting them.
Summary:
Claiming that Delhi CM Arvind Kejriwal has less than 10% attendance in the Assembly, rebel AAP leader Kapil Mishra has threatened him with legal action if he does not attend the House.
Summary:
After the retirement of senior Congress leader KJ Kurien from Rajya Sabha, the party alloted the vacant seat to former ally Kerala Congress (M).
Summary:
After Pune Police claimed that members of banned CPI(Maoists) had plotted a "Rajiv Gandhi-type incident" to kill PM Narendra Modi, Congress leader Sanjay Nirupam on Friday said, "It has been PM Modi's old tactic...
Summary:
The molten rock entirely covered Vacationland and only a few buildings remained in the ocean subdivision, the US Geological Survey said.
Summary:
Eight forest department personnel were arrested in Madhya Pradesh on Thursday for allegedly beating a villager to death and then burning his body to destroy evidence, a police official said.
Summary:
CRPF constable Harvinder Singh has been posthumously honoured with the PM's police medal for saving the lives of Vaishno Devi pilgrims in 2016.
Summary:
French President Emmanuel Macron has said the G7 may become G6 if US President Donald Trump "doesn't care about being isolated".
Summary:
Patanjali's MD Acharya Balkrishna has said the company never asked for incentives from Uttar Pradesh government to set up a mega food park.
Summary:
Amid reports of Shiromani Akali Dal (SAD) and BJP parting ways, SAD President Sukhbir Singh Badal on Thursday said, "SAD is a permanent ally of BJP." He added, "I would like to appeal to all our allies that this is the time to fight, the battle is in six months.
Summary:
Members of the banned CPI(Maoists) were plotting to kill PM Narendra Modi in "another Rajiv Gandhi-type incident" by "targeting his road shows", according to a letter seized by Pune Police during investigation into Bhima-Koregaon violence.
Summary:
A woman was found dead inside a five-star hotel's washroom in Delhi's Mayur Vihar on Thursday.
Summary:
The man reportedly called her and messaged her, requesting her to meet.
Summary:
The Haryana government has issued a notification directing sportspersons employed with the state to pay 33% of their income earned professionally and through commercial endorsements to the state sports council.
Summary:
Summary:
A GoAir flight bound to Port Blair had to return to Kolkata on Thursday after it suffered a bird hit that damaged the plane engine's six blades.
Summary:
After former President Pranab Mukherjee's daughter tweeted against his visit to an RSS event in Nagpur, UPA Chairperson Sonia Gandhi's Political Secretary Ahmed Patel replied, "I did not expect this from Pranab da!" Reports have claimed that Gandhi personally ordered Patel to post the tweet.
Summary:
Amazon has infused $1.5 million in Amazon Retail India, its food retail business in the country, according to filings.
Summary:
China has expressed hope that India and Pakistan will work together for regional peace in the Shanghai Cooperation Organisation (SCO) which provides a base for the two countries to strengthen cooperation.
Summary:
The police also suspect that the body had been lying in the room for 2-3 days.
Summary:
Naveen Kumar, an accused in journalist Gauri Lankesh murder case, reportedly confessed that another accused Praveen asked him to arrange bullets in August 2017 to kill Lankesh as she was anti-Hindu.
Summary:
Telangana Police have launched helpline numbers to lodge complaints against policemen demanding bribes after a survey ordered by DGP M Mahendar Reddy exposed 391 corrupt policemen.
Summary:
At least 5 deaths were reported within 24 hours at a government hospital in Uttar Pradesh's Kanpur, with the families of the deceased blaming faulty air conditioning system in the ICU for the deaths.
Summary:
Andhra Pradesh CM Chandrababu Naidu has declared the state open-defecation free after achieving the goal of constructing 2.77 lakh individual toilets.
"We've completed the task of constructing toilets but they have to be used by every individual.
Summary:
This comes ahead of the summit between US President Donald Trump and Jong-un to be held in Singapore next week.
Summary:
Speaking about his stardom in the 90's, Bobby Deol said, "I wish I knew I had reached the level up with two-three movies but I never realised that...I was...normal about it.
Summary:
Jacqueline Fernandez has revealed she came to India to work with Sanjay Leela Bhansali after watching his films 'Devdas' and 'Black'.
"When I first watched Devdas at the Cannes Film Festival, I returned home, called for a DVD and watched the film again.
Summary:
Television actress Aashka Garodia, who was a participant on 'Bigg Boss' season 6, said she was portrayed as a lesbian through "editing tricks" on the show.
Summary:
Barcelona defender Gerard Pique and his partner and singer Shakira's house in Barcelona has reportedly been robbed.
Summary:
Summary:
Speaking about Patanjali's messaging app 'Kimbho', Managing Director Acharya Balkrishna recently said, "We pledge not to launch the app until a team of expert hackers...plug all the security and privacy loopholes".
Summary:
Instagram now allows users to share another user's story as their own story if they are mentioned in that story.
Summary:
A Jaguar fighter jet of the Indian Air Force crashed in Gujarat's Jamnagar on Friday morning during a routine training session.
Summary:
Tajamul Islam, who won the World Kickboxing Championship in 2016, was being felicitated, along with other sportspersons from J&K at a sports conclave.
Former J&K CM Omar Abdullah later tweeted, "Sweet kid.
Summary:
Russian President Vladimir Putin has said he does not support the global #MeToo movement in which women have publicly denounced their sexual abusers.
Summary:
US President Donald Trump's lawyer Rudy Giuliani has said pornstar Stormy Daniels' claim that she had an affair with Trump in 2006 is not credible because she is a porn actress with "no reputation".
Summary:
The defendant being mentally ill does not exempt him from death penalty, the court added.
Summary:
Apologising for the error, Facebook said itâÂÂs asking users to review posts they made during that time.
Summary:
The Haryana Police has arrested Sampat Nehra, sharpshooter of a gang led by Lawrence Bishnoi who had threatened to kill actor Salman Khan during his appearance at a Jodhpur court in April.
Summary:
Android Co-founder Andy Rubin's startup Essential has unveiled its first attachment module, a magnetic 3.5-mm headphone jack dongle, since the launch of its phone almost a year ago.
Summary:
Further, ZTE will have to install a new board of directors within the next 30 days.
Summary:
BJP MLA Basangouda Patil Yatnal in Karnataka told the Corporators, "Don't work for the welfare of Muslims.
You must work for the welfare of Hindus only.
Summary:
The funding makes Ant Financial, which is said to be valued at $150 billion, the world's largest fintech firm, according to Bloomberg.
Summary:
Researchers have discovered that honey bees can be trained to choose an image with the lowest number of elements in order to receive a reward of sugar solution, claiming they understand the concept of zero, like humans, monkeys and birds.
Summary:
Referring to former President Pranab Mukherjee's speech at an RSS event in Nagpur, Congress spokesperson Randeep Surjewala on Thursday said, "Today Pranab Mukherjee has shown the mirror of truth to RSS at their headquarters." He added, "Shri Pranab Mukherjee has reminded the RSS of the history of India.
Summary:
She was later given male hormones which caused her to grow a beard and a moustache.
Summary:
A morphed image of former President Pranab Mukherjee has gone viral, wherein he could be seen doing an RSS-style salute after he attended the RSS event in Nagpur.
Summary:
In a letter to Uttar Pradesh CM Yogi Adityanath, Governor Ram Naik demanded appropriate action against his Principal Secretary SP Goel over allegations he sought â¹25 lakh to allot additional land to set up a petrol pump.
Summary:
Honeypreet was arrested for inciting the violence which erupted in Panchkula after Gurmeet Ram Rahim was convicted in two rape cases in August last year.
Summary:
Adding that he will not let the Centre's conspiracies to turn into reality, Naidu said, "I survived an extremist attack in 2003 only because of Lord Balaji's blessings.
Summary:
The decision came while hearing a review petition filed by Musharraf against a High Court ruling that disqualified him from contesting elections for life.
Summary:
US President Donald Trump on Thursday said the June 12 summit with North Korean leader Kim Jong-un "is going to be much more than a photo-op".
Summary:
Bayer announced this week that the Monsanto name will be retired after the takeover.
Summary:
Amitabh Bachchan, while correcting Alia Bhatt for mistakenly writing 'cues' as 'ques' in a tweet where she talked about her experience of working with him, wrote, "Err...its 'cues' not 'ques'." "You are just too cute," he added.
Summary:
Sudhir further said star-kids getting better launch films can't stop outsiders from creating their base.
Summary:
Afghanistan's 19-year-old spinner Rashid Khan defended 8 runs in the final over to hand his side a one-run win over Bangladesh, thereby completing a 3-0 whitewash over them in the series.
Summary:
Mumbai-based footwear company Metro Shoes has filed a trademark infringement case against Flipkart in Bombay High Court.
Summary:
Addressing a media briefing on Thursday, Ministry of External Affairs Spokesperson Raveesh Kumar said India has made a request to Malaysia for the extradition of Islamic preacher Zakir Naik.
Summary:
Summary:
Earlier, the forces had to inform all concerned agencies and then decide how to bring down the object.
Summary:
A girl allegedly committed suicide at her home in Tamil Nadu on Wednesday as she was reportedly upset over her inability to clear the NEET examination.
Summary:
A 30-year-old Kenyan woman was allegedly gangraped after she was offered lift by three men on Wednesday night in Haryana's Gurugram.
Summary:
This comes days after reports said Maldives will return two search-and-rescue helicopters it was gifted by India in 2016.
Summary:
It has also prohibited the bank from accepting new deposits for nearly five months.
Summary:
The Indian Railways has dropped its plan to penalise passengers for carrying excess baggage in trains within six days of its announcement.
Summary:
A fashion show in Saudi Arabia featured "ghost models" by hanging clothes from drones as women in the conservative kingdom are not allowed to model.
Summary:
Notably, 'Black Panther' was the first movie to be screened in Saudi Arabia in 35 years.
Summary:
Mahindra had expressed his willingness to acquire the car in May last year, when it was featured in the movie poster.
Summary:
Ex-South African cricketer AB de Villiers recorded his first and only ODI golden duck in his 221st match (212 innings) on June 7, 2017, over 12 years after his ODI debut.
Summary:
Alexander Nix, the former CEO of Facebook's data scandal-linked firm Cambridge Analytica, has accepted that the company had received Facebook users' data.
Summary:
US-based startup Starship Technologies, which develops self-driving delivery robots, has raised $25 million from investors including Airbnb Co-founder Nathan Blecharczyk and Skype's Jaan Tallinn.
Summary:
NASA's Curiosity rover, which landed on Mars in 2012, has found organic molecules containing carbon and hydrogen besides traces of oxygen and sulphur in three-billion-year-old rocks.
Summary:
Summary:
Bharipa Bahujan Mahasangh President and Dr BR Ambedkar's grandson Prakash Ambedkar on Thursday threatened to a senior journalist on camera.
Summary:
Addressing an RSS event on Thursday, chief Mohan Bhagwat said, "RSS is trying to bring everyone together in the country and not trying to establish itself as a Hindu outfit." "Every Indian worships the motherland in their own way.
Summary:
Power Minister RK Singh has said all electricity meters in India will become smart prepaid meters in the next three years.
Summary:
UEFA has handed a â¹27-lakh fine to Turkish football club Besiktas after a cat invaded the pitch forcing the play to be briefly stopped during their Champions League match against Bayern Munich in March.
Summary:
The stake was sold by Bharti Group, which continues to hold 3% in Future Retail.
Summary:
Ambani's cousins Nikhil and Hital Meswani, who are executive directors at Reliance, saw their compensation rise by about 20% to â¹19.99 crore each.
Summary:
Actress Raveena Tandon has responded to a Twitter user who asked her if she would marry him.
Summary:
Indian football team captain Sunil Chhetri scored in his fifth consecutive match in India's 1-2 defeat against New Zealand in the Intercontinental Cup at the Mumbai Football Arena on Thursday.
Summary:
After Arjun broke into the India Under-19 team, cricket legend Sachin Tendulkar said it is "an important milestone" in his son's cricketing life.
Summary:
Team India batsman KL Rahul on Thursday took to Twitter to share pictures of himself with newlywed couple Mayank Agarwal and Aashita Sood.
Rahul and Agarwal played together for Kings XI Punjab in IPL 2018.
Summary:
South African cricketer AB de Villiers, who retired from international cricket last month, surprised his 14-year-old fan Leo Sadler and played backyard cricket with him.
Summary:
Summary:
Fans flocked to take selfies with Kohli's statue, which led to the right ear of the statue being damaged.
Summary:
World number one women's tennis player Simona Halep on Thursday defeated world number three Garbiñe Muguruzàto enter her third French Open final.
Summary:
Users will also be able to see the artist of the song and tap to follow them on Facebook.
Summary:
BJP president Amit Shah met Shiv Sena chief Uddhav Thackeray for a two-hour meeting in Mumbai on Wednesday.
Summary:
If you have a suspicion dial 100." Nagamallu said the police are already conducting workshops, but their reach would be wider with an "enjoyable song".
Summary:
Mevani was present at the Elgaar Parishad event, which marked the 200th anniversary of the Bhima-Koregaon Battle wherein British forces defeated the Peshwa army, it added.
Summary:
Summary:
Shah Rukh Khan's paternal cousin Noor Jahan has announced plans to contest the upcoming general elections in Pakistan from Peshawar.
Summary:
Former cricketer Sachin Tendulkar's 18-year-old son Arjun Tendulkar has been named in the India Under-19 squad for the upcoming tour of Sri Lanka.
Summary:
World number one Rafael Nadal on Thursday defeated Diego Schwartzman in a rain-affected match to reach the French Open semi-finals for the 11th time.
Summary:
Some users also reported that they received a message saying 'something is wrong' and asked them to try again later.
Summary:
Leaf Wearables, a Delhi-based startup by students of IIT Delhi and Delhi Technological University, has won a $1-million Anu and Naveen Jain Women's Safety XPrize for creating a women's safety device.
Summary:
UK-based automobile manufacturer Bentley Motors has launched the Bentley Bentayga V8 SUV in India at a starting price of â¹3.78 crore (ex-showroom).
Summary:
US-based Uber rival Gett has raised $80 million in a funding round led by Volkswagen with participation from previous investors.
Summary:
In May, Musk tweeted that "short burn of the century" was coming soon for those betting against Tesla.
Summary:
NASA's New Horizons spacecraft, which flew by Pluto in 2015, was awoken from hibernation for its next rendezvous with a space rock at the edge of the Solar System.
Summary:
The Maternal Mortality Ratio (MMR) in India has declined 22% from 167 in 2011-13 to 130 in 2014-16, according to data released by the Registrar General of India.
Summary:
Health officials have urged people not to panic as the disease is curable.
Summary:
The police have seen the video and are trying to track the man.
Summary:
Some students even wrote same answers and made same mistakes in Sanskrit paper.
Summary:
The Middle East and North Africa remained the least peaceful regions.
Summary:
The world has become less peaceful today than at any time in the last decade, according to the Global Peace Index (GPI).
Summary:
Hundreds of employees including cleaners, factory workers and cafeteria chefs of Chinese lens maker Sunny Optical have turned millionaires as the company granted stock to early staff, regardless of their position.
Summary:
A new poster of Sridevi's daughter Janhvi Kapoor's debut film 'Dhadak' has been released.
Summary:
Jacqueline Fernandez, who was criticised for hugging a child without his consent on a show, has said her intention wasn't wrong.
Jacqueline further said, "I understand where people's concerns are coming from...[but] it's my right to believe...my intentions weren't wrong."
Summary:
Yusuf Pathan was also handed a doping ban in January.
Summary:
Microblogging site Twitter has announced that it is selling $1 billion of bonds in its second-ever debt offering.
Summary:
The oldest known footprints on Earth, left by ancestors of modern-day insects at least 541 million years ago, have been discovered in China.
Summary:
NASA's Juno spacecraft has solved the mystery behind lightning on Jupiter, which was first spotted by NASA's Voyager 1 in 1979 but deemed different than lighting on Earth.
Summary:
Summary:
Gujarat MLA Jignesh Mevani has sought Y-category security cover on Thursday after allegedly receiving his second telephonic death threat in two days.
Summary:
At least 10 people were injured after being stung by honey bees which attacked them during YSR Congress leader Jagan Mohan Reddy's 'padayatra' (foot march) in Andhra Pradesh's West Godavari on Thursday.
Summary:
The Iraqi Parliament has ordered a full manual recount of the country's recent parliamentary election where 1.1 crore votes were cast.
Summary:
An employee who was sacked from a Japanese multinational company in Gurugram, today opened fire at the company's HR Head.
Summary:
Former President Pranab Mukherjee on Thursday addressed an event at RSS headquarters in Nagpur as the Chief Guest despite facing criticism from several Congress leaders, including his daughter.
Summary:
Facebook on Wednesday introduced a new journalism project to produce news shows specifically for the platform and made a typo while pledging its commitment for the same.
Summary:
Google announced today that the company has successfully rolled out free public WiFi at 400 Indian railway stations in collaboration with RailTel. Dibrugarh railway station in Assam has become the 400th station to go live, Google said in a statement.
Summary:
Former President Pranab Mukherjee's daughter and Congress leader Sharmistha Mukherjee has denied reports of her joining the BJP, saying she would rather quit politics than join the BJP.
Summary:
On being asked about Tesla Model 3 production delays at the recent shareholder meeting, CEO Elon Musk said, "I think I do have like an issue with, uh, time." Musk explained that his brother used to lie to him about the school bus time so that he would arrive on time.
Summary:
The SBI has refused to refund a Karnataka woman of â¹25,000 after she gave her debit card to her husband to withdraw money from an ATM, saying 'PIN shared, case closed'.
Summary:
More than 100 labourers were severely injured on Thursday when the bus they were travelling in came in contact with a high-tension live wire in Rajasthan's Bhusawar.
Summary:
The Pune Police on Thursday confirmed that the five people arrested in connection with the Bhima-Koregaon violence have links with Naxals.
Summary:
A 15-year-old girl was allegedly poisoned to death after being gangraped by three men in a village in Haryana on Tuesday, the police said.
Summary:
Urging nations against taking "radical" actions that would lead to a global conflict, Russian President Vladimir Putin has said that World War III "could be an end of the modern civilisation".
Summary:
The insolvency law now recognises homebuyers as financial creditors which would give them a share in the money earned through sale of a bankrupt developer's assets.
Summary:
Indians account for over 75% of the highly-skilled professionals waiting to obtain legal permanent residence status in the US, popularly known as green card.
Summary:
Actor Tusshar Kapoor took to Instagram to share a childhood picture with his sister Ekta Kapoor on the occasion of her birthday today and wrote, "Happy birthday 'Bua' of Laksshya!" "Ultimate family person ever, though you vow never to throw a surprise party for the wrong candidates," he added.
Summary:
Penélope Cruz has revealed she turned down her first Hollywood film because the producers added a nude scene to the script without telling her.
Summary:
A new poster of Sanjay Dutt's biopic 'Sanju', featuring actress Dia Mirza as his wife Maanayata has been released.
Summary:
India will next face Pakistan on June 9.
Summary:
Steyn was sidelined with a heel injury in January this year.
Summary:
Australian cricket coach Justin Langer has said that he "sledges" his daughter while playing UNO with her.
Summary:
Facebook was also banned in Sri Lanka for a week in March for displaying negative criticism which fuelled the riots.
Summary:
President Ram Nath Kovind on Thursday gave West Bengal Governor Keshari Nath Tripathi the additional charge of Tripura Governor till Tripura Governor Tathagata Roy is on leave.
Summary:
We understand that some youths were misled into stone pelting.
Summary:
About 130 women have built a two-kilometre road in a Bihar village after the government failed to build it for 10 years.
Summary:
The UK, France, Germany, and EU sent a joint request to the US to exempt European companies from the sanctions imposed on Iran.
Summary:
State-run Air India has hiked excess baggage charges by â¹100 per kg to â¹500 for domestic flights, starting June 11.
Summary:
Videocon's total consolidated debt is around â¹44,000 crore, but the lenders have not taken its foreign arms to the bankruptcy court.
Summary:
Summary:
Delhi's Tis Hazari Court on Thursday sentenced gangster Abu Salem to 7 years in jail in a 2002 extortion case.
Summary:
Reham claimed Akram hired a black man to have sex with Huma while he watched.
Summary:
The New Indian Express called the film's action sequences "intense".
It was rated 2/5 (HT) and 3.5/5 (TOI, The New Indian Express).
Summary:
Luxury fashion designer Kate Spade's husband Andy Spade, in a statement issued after her alleged suicide on Tuesday, revealed she suffered from depression and anxiety for over five years.
Summary:
Two of the world's most accomplished rock climbers, Alex Honnold and Tommy Caldwell, broke their own speed-climbing record by scaling El Capitan's 3,000-foot granite wall in 1 hour, 58 minutes and 7 seconds.
Summary:
Indian men's cricket team captain Virat Kohli has been named BCCI's best international cricketer (men) for the 2016-17 and 2017-18 seasons and will receive the Polly Umrigar Award on June 12.
Summary:
The flying car's battery life is said to be 12 to 20 minutes.
Summary:
Homegrown cab aggregator Ola has posted a 70% rise in revenue at â¹1,286 crore for the year ended March 31, 2017, according to filings.
Summary:
After only 53% students managed to clear the Class 12 Board exams in Bihar, students staged a protest outside the Bihar School Examination Board (BSEB) office alleging discrepancy in the results.
Summary:
Following protests by pet owners in the city, Bruhat Bengaluru Mahanagara Palike's (BBMP) rule allowing only one dog per flat and maximum three per independent house has been put on hold.
Summary:
Minister of External Affairs Sushma Swaraj on Thursday unveiled a two-faced Mahatma Gandhi bust at South Africa's Pietermaritzburg railway station.
Summary:
The Chhatrapati Shivaji International Airport in Mumbai, which is the world's busiest single-runway airport, broke its own record by witnessing 1,003 flight operations in 24 hours on Tuesday.
Summary:
The Union Cabinet has approved a â¹637-crore plan which includes installing 3 lakh solar street lights throughout the country, especially northeastern states and Maoist-affected districts.
Summary:
A video of a woman dropping a newborn girl from a car on an empty street in Uttar Pradesh's Muzaffarnagar has gone viral.
Summary:
In a phone call with Canadian PM Justin Trudeau, US President Donald Trump falsely claimed that Canada burned down the White House during the 1812 war.
Summary:
US President Donald Trump on Wednesday hosted his first Iftar dinner at the White House, which was attended by ambassadors from several Muslim-majority nations.
Summary:
The head bit him on the hand while he was disposing of the remains of the four-foot snake.
Summary:
The department's video ended with the message that read, "Please, don't be that driver."
Summary:
Denying rumours that his daughter Karisma Kapoor will marry her rumoured boyfriend Sandeep Toshniwal, Randhir Kapoor said, "There's no truth to this." "She has clearly told me she doesn't want to start a family again," he added.
Summary:
Ahead of the England tour, Australia's new coach Justin Langer has said "in Australia sledging is actually a good word...a fun part of the game.
Summary:
The European Commission may reportedly fine Google up to $11 billion for abusing its dominance through the Android mobile operating system.
Summary:
The top court modified a Delhi High Court order which had allowed him to draw the salary.
Summary:
Speaking at a Sports Conclave in Srinagar on Thursday, Union Home Minister Rajnath Singh said the Narendra Modi-led government at the Centre will change the face and the fate of Jammu and Kashmir.
Summary:
The India Meteorological Department (IMD) has said that the maximum intensity of rainfall is expected over Mumbai during the coming weekend and possibility of extremely heavy rainfall in isolated areas cannot be ruled out.
Summary:
The videos show traffic moving smoothly with the help of the policeman's directions.
Summary:
Japan reportedly plans to send its senior officials to attend sexual harassment awareness sessions as a precondition for promotion.
Summary:
"Iran is aware of our resolve.
Summary:
While â¹6,131 crore was allotted for launching light-weight satellites in 30 PSLV flights, â¹4,338 crore was given for heavy-weight satellites on 10 GSLV missions.
Summary:
Summary:
Describing Imran as Mr U-turn, Reham said everyone including his opponents and his backers should be wary of him.
Summary:
Mishra further said sometimes he also takes emotional decisions if he has worked with a particular filmmaker before.
Summary:
Former Bigg Boss contestant and actor Raja Chaudhary's ex-girlfriend Shradha Sharma has filed a molestation complaint against her Chartered Accountant Rajesh Saluja.
Summary:
The Indian Express wrote that 'Kaala' is a film about revolution.
The film was rated 4/5 (HT) and 3.5/5 (TOI, The Indian Express).
Summary:
While Arbaaz had earlier admitted to links with Dawood Ibrahim's bookie Sonu Jalan, Sanghvi denied involvement in the betting racket.
Summary:
A man named Praveen Thevar has been arrested for live streaming Rajinikanth and Huma Qureshi starrer 'Kaala' on Facebook during the film's preview show in Singapore on Wednesday.
Following his arrest, the live stream was brought down.
Summary:
Summary:
Following a meeting between Shiv Sena chief Uddhav Thackeray and BJP President Amit Shah, Sena leader Sanjay Raut said there will be no change in the resolution to contest all upcoming elections alone.
Summary:
New Spanish Prime Minister Pedro Sánchez on Wednesday appointed Pedro Duque, a 55-year-old veteran of two space missions, as his science minister.
Summary:
Dr Abhijit Sonawane in Pune visits temples, mosques and streets daily to treat elderly and physically challenged homeless people, who beg to survive.
Summary:
IPS officer Sandeep Chaudhary from south Jammu is providing free coaching to 150 students for UPSC, J&K sub-inspector, banking, and Staff Selection Commission (SSC) exams.
Summary:
A pregnant tribal woman in Kerala's Palakkad was carried to the hospital on a makeshift stretcher made of logs and a bedsheet because of non-availability of an ambulance, reports said.
Summary:
Polythene wholesalers will be asked to finish their polythene stocks by the given date, he said.
Summary:
In a bid to check e-waste problem, Rajasthan government has launched a scheme wherein people can sell their old phones, computers, routers and any other electronic items to the government.
Summary:
Indian Railways has installed plastic bottle crushers at Vadodara railway station in Gujarat that will credit â¹5 in people's Paytm wallet upon disposing bottles.
Summary:
Most militants are between 15 and 25 years of age, went to government schools, join because of a "thrill seeker attitude", and have behaviour "as normal as a guy next door", according to a study by the J&K CID.
Summary:
The Chinese city of Xi'an has introduced a special lane on one of its roads for pedestrians who use their mobiles while walking.
Summary:
Alia Bhatt has said she does not want to be in a live-in relationship while adding that she may get married before she turns 30.
Summary:
Two-time French Open winner Maria Sharapova has crashed out of the tournament after suffering a quarter-final defeat from world number three Garbine Muguruza.
Summary:
NBA star LeBron James passed the ball to himself off the backboard for a slam dunk in the opening minutes of NBA Finals' Game 3 on Wednesday.
Summary:
With less than a year to the ICC Cricket World Cup, Mike Hesson has announced he will step down as New Zealand team coach in July.
Summary:
Founded in 2016, the startup has an all-women parcel delivery fleet which it builds by skilling underprivileged women in two-wheeler driving to deliver parcels.
Summary:
Mercedes-Benz parent company Daimler's truck unit has unveiled two electric trucks called Freightliner eCascadia and Freightliner eM2 for the US market.
Summary:
Following the incident, the police warned people against trying to take photographs of lightning.
Summary:
US President Donald Trump on Wednesday commuted the life sentence of a woman for a first-time drug offence after meeting reality TV star Kim Kardashian regarding prison reform.
Summary:
Rising 17 positions from last year to 162, IIT Bombay has displaced IIT Delhi (172) to become the top-ranked Indian institute in the QS World University Rankings, which featured IISc Bangalore at 170.
Summary:
All the tickets for the Indian football team's remaining Intercontinental Cup matches at the Mumbai Football Arena have already been sold out.
Summary:
A Cambridge Analytica Director had met WikiLeaks founder Julian Assange to discuss the 2016 US Presidential elections retrospectively, according to The Guardian.
Summary:
It compares the poses with postures the researchers have designated as 'violent' for the purpose.
Summary:
Chinese phone maker Huawei on Wednesday said it has never collected or stored Facebook user data after the social media giant acknowledged it shared such data with Huawei and other manufacturers.
Summary:
SoftBank is reportedly planning to infuse the money by 2020 with prospects of generating jobs for 2 lakh people.
Summary:
Women and Child Development Minister Maneka Gandhi has announced that all NRI marriages solemnised in India will have to be registered within 48 hours or the passport and visas would not be issued.
Summary:
The stone-pelting incidents in Jammu and Kashmir during the first 16 days of Ramadan have decreased from 195 in 2017 to 39 this year, indicating a decline of 80%, according to government data.
Summary:
Summary:
President Ram Nath Kovind, after taking charge last year, decided against holding religious celebrations in Rashtrapati Bhavan at public expense as it is a public building, the Press Secretary to President, Ashok Malik, announced.
Summary:
The Accountant General agreed to this after Governor Tandon wrote a letter expressing his willingness to continue with the old salary.
Summary:
A police officer carried an ageing pilgrim nearly two kilometres uphill on his back after the pilgrim had a heart attack and collapsed near the Bhairo Mandir in Uttarakhand on Wednesday.
Summary:
Donald Trump's lawyer Rudy Giuliani on Wednesday said that North Korean leader Kim Jong-un "begged" the US President to reschedule their summit.
Summary:
Earlier this year, a car space in the same apartment complex was rented out for a record HK$10,000 (over â¹85,000) a month.
Summary:
He has reportedly been using the technique to tame lions for several years.
Summary:
Doctors operated the man to remove the vegetable from his body.
Summary:
The government has made Permanent Account Number (PAN) mandatory for sending money abroad under the Liberalised Remittance Scheme (LRS).
Summary:
Kartik Aaryan has revealed he wrote his BTech exams while other students were taking selfies with him.
You can say aaj main padha likha sirf unhi ki wajah se hu," Kartik further said.
Summary:
Former Indian cricket team captain Sunil Gavaskar played 29 overs (174 balls) out of India's 60 overs to score just 36 runs against England on June 7, 1975, in the inaugural World Cup. Gavaskar, who opened the innings for India, hit just one four and remained unbeaten.
Summary:
A US-based couple has been sentenced to nearly six years in jail for defrauding online retailer Amazon of $1.2 million in consumer electronics.
Summary:
Nix took the money shortly after it was exposed that the company harvested millions of Facebook users' data.
Summary:
Highlighting that the government has tried to localise the startup culture, PM Narendra Modi said, "44% of the startups are found in tier II and tier III cities, today." Adding the startups are "growth engines", he urged people to keep innovating.
Summary:
This is about being clear on who is the decision maker; I'd encourage you to do the same," Khosrowshahi said in the memo.
Summary:
A man in Delhi allegedly killed his wife in a fit of rage as she used to frequently quarrel with him over trivial issues.
Summary:
Directorate of Revenue Intelligence officials have detained three people, including an Air India employee, involved in smuggling foreign currency and gold bars into India in separate incidents.
Summary:
A South Korean cafe has been serving lattes decorated with images of North Korean leader Kim Jong-un and President Moon Jae-in.
Summary:
National carrier Air India has reportedly delayed the payment of salaries to its employees for the third consecutive month.
Summary:
A study by financial services company UBS has revealed a person working in Mumbai has to work 114.7 days to afford the iPhone X, while a Delhi person has to work 100.5 days for the same.
Summary:
Both would've been eligible for it if they had stayed with Facebook until this November.
Summary:
Microsoft has launched the prototype of an underwater data centre off the coast of Scotland's Orkney Islands.
Summary:
Both would've been eligible for the stock if they had stayed at Facebook until this November.
Summary:
"India's economy is robust, resilient and has potential to deliver sustained growth," a World Bank official said.
Summary:
During men's Asia Cup in 2016, the winners of the award in group stage received $5,000 each.
Summary:
Further, all 32 teams in the group stage will receive a â¬15.65-million starting fee.
Summary:
American wearable device maker Fitbit's Chief Financial Officer (CFO) William Zerella has quit the company to join an autonomous vehicle tech startup, the company said on Wednesday.
Summary:
Summary:
On being asked about Tesla launching electric motorcycles during a shareholder meeting on Tuesday, CEO Elon Musk said the company was "not going to do motorcycles".
Summary:
Meal-ordering app Ritual, founded by former Google executives, has raised $70 million funding led by Georgian Partners.
Summary:
The Centre on Wednesday warned Kerala, Karnataka, Maharashtra, Goa and Gujarat that heavy rainfall this week may lead to flash floods.
Summary:
A contempt plea has been filed against the Central Board of Secondary Education (CBSE) in the Supreme Court, challenging the notification prescribing a fee of â¹1,200 for getting photocopies of evaluated answer sheets.
Summary:
Nearly 53% of the 11,92,053 candidates who appeared for the Bihar class 12 boards passed the examinations.
Summary:
After UP Chief Minister Yogi Adityanath spoke to Ramdev and Patanjali Ayurved MD Acharya Balkrishna, the company said its proposed mega food park will not be shifted out of the state.
Summary:
Shah Rukh Khan has responded to a troll who questioned his silence on several issues in India and asked if his views are confined only to makeup and fashion.
Summary:
Ponting has served as assistant coach for Australia's T20I side twice before and was DD's head coach this year.
Summary:
Kings XI Punjab and Team India wicketkeeper-batsman KL Rahul has said that he would "treat his woman like a princess and not do any hiding".
This comes after reports of Rahul being in a relationship with actress Nidhhi Agerwal surfaced online.
Summary:
"Working out like a boss...She has been going on and on...She can do more cardio than me," Kohli says in the video.
Summary:
A spectator watching a Major League Baseball match between San Diego Padres and Atlanta Braves caught a foul ball in a cup of beer.
Summary:
Users can access the live streams in the 'Badoo Live' tab and watch them being broadcasted during that moment.
Summary:
Talking about Prime Minister Narendra Modi's suggestion of 'one nation, one election', Samajwadi Party chief Akhilesh Yadav said, "The idea is very good and Samajwadi Party is prepared to contest simultaneous elections in 2019." He further said that the voter IDs must also be linked with the Aadhaar.
Summary:
SoftBank also invested $4.4 billion in WeWork and $2.5 billion in Bengaluru-based Flipkart.
Summary:
The Central Bureau of Investigation (CBI) has booked Om Prakash Shukla, the Principal of the National Defence Academy (NDA), over allegations of irregularities in appointment of the teaching faculty of the academy.
Summary:
The bodies were taken out after two families approached the police claiming that two of the five suspected militants killed on May 26 were their sons.
Summary:
The police said they went to Manning's home after receiving multiple calls from "concerned parties".
Summary:
Cognizant Technology Solutions on Wednesday told the Madras High Court that the â¹2,800-crore tax demand by the Income Tax department was not justified.
Summary:
Taxi drivers have a tiring lifestyle that requires them to stay awake and/or work long hours, which leads to some of them picking up the habit of chewing tobacco.
Summary:
The Twitter handle of Ministry of Railways clarified that the workers were Malaysians, following which Shabana apologised.
Summary:
Indian cricket team captain Virat Kohli's wax statue was unveiled at India's first and only Madame Tussauds wax museum in Delhi on Wednesday.
Kohli became the third Indian cricketer after Sachin Tendulkar and Kapil Dev to have a statue at the museum.
Summary:
A magazine published images of players at the party with the headline "The true farewell of the Tri!".
Summary:
China-based Unihertz has developed a 3.7-inch-long smartphone called Atom which the company claims is the 'world's smallest' 4G smartphone.
Summary:
After the Delhi and Goa Archbishops claimed the Indian Constitution was in danger, VHP accused churches in India of conspiring with the Vatican as "contract killers to destabilise elected governments" and prop up "puppet" ones.
Summary:
A 1963 Ferrari 250 GTO sold for $70 million (â¹469 crore) has become the most expensive car ever sold in a private sale.
Summary:
He further said as of now the fund has provided an assistance of â¹7,000 crore to startups.
Summary:
A 28-year-old Indian man was sentenced to nearly three years' imprisonment in Singapore on Wednesday for spiking his female flatmate's drink with a plan to rape her.
Summary:
Russian President Vladimir Putin has said his Chinese counterpart Xi Jinping is the only world leader with whom he celebrated his birthday.
Summary:
The US will begin using facial recognition technology as part of a pilot programme at its border with Mexico to scan images of people travelling inside vehicles.
Summary:
Malaysia's AirAsia Group has said the company and its CEO Tony Fernandes have not received summons to appear before CBI over a corruption probe.
Summary:
A video showing rats running inside bags filled with hamburger buns at a Burger King outlet in US' Wilmington has gone viral on social media.
Summary:
Seeking the cooperation of the people of Karnataka for the smooth release of his film 'Kaala', Tamil actor Rajinikanth said, "I haven't made any mistake.
Summary:
Afghanistan's 17-year-old spinner Mujeeb Ur Rahman has revealed that Kings XI Punjab captain Ravichandran Ashwin would sometimes tell him that he bowls better than him.
Summary:
"I got overage and Yuvraj continued to play Under-19 cricket...He's like Afridi," he joked.
Summary:
Addressing a rally in Madhya Pradesh's Mandsaur, Congress President Rahul Gandhi today said, "Make in India is a failure.
Summary:
The Large Hadron Collider, the world's most powerful particle accelerator has detected the Higgs boson again, which is often dubbed the "God particle".
Summary:
The police have booked a man working in the Gulf for allegedly threatening to kill Kerala Chief Minister Pinarayi Vijayan and attack his family in a video.
Summary:
Hours after militants attacked an Indian Army camp in Kashmir, Jammu and Kashmir CM Mehbooba Mufti said militants were "desperately" trying to sabotage the Ramadan ceasefire.
Summary:
The Delhi Medical Council has cancelled the licence of a lab in Defence Colony after it wrongly declared a man HIV-positive.
However...the lab declared me HIV-positive, following which the company denied me the job," the man said.
Summary:
Pakistani drug smugglers are using drones to smuggle drugs across the border in India, reports quoting BSF officials said.
Summary:
Summary:
The Archaeological Survey of India has unearthed chariots, swords, and caskets dating back to 2200 BC-1800 BC in Uttar Pradesh's Baghpat.
Summary:
A 27-year-old IAF flight lieutenant named Himanshu Gupta died at a government hospital in Bhopal on Tuesday, the police said.
Summary:
Switzerland may review Facebook, Twitter and other social media profiles of migrants before granting them asylum, according to reports.
Summary:
Kumari, who prepared for NEET in Delhi, secured 99.99 percentile in NEET 2018 with 691 marks out of 720.
Summary:
The horror comedy film is scheduled to release on August 31.
Summary:
Former Windies captain Brian Lara became the first cricketer in history to score 500-plus runs in a first-class innings on June 6, 1994.
Summary:
Forbes list of the world's highest-paid athletes has featured no woman this year while tennis star Serena Williams was the lone female athlete in top 100 last year.
Summary:
After Uttar Pradesh CM Yogi Adityanath received miniature statues of himself and PM Narendra Modi on his 46th birthday, the party is planning to place replicas of the statues in BJP offices across the state.
Summary:
Addressing farmers in Madhya Pradesh's Mandsaur, Congress President Rahul Gandhi said, "I will not tell you my 'mann ki baat' but I will listen to yours." Adding that Congress would waive farm loans within 10 days of forming the government, Gandhi said, "I will not say that I will give you â¹15 lakh.
Summary:
it's still Day 1, and I'm energized and humbled by the opportunities ahead," he wrote on Amazon India's website.
Notably, Amazon was launched in India on June 5, 2013.
Summary:
The researchers grew enamel-like ordered mineralised structures from nano-crystals based on a specific protein.
Summary:
A doctor in Kerala said he took the responsibility of handling the last rites of 12 patients who died of the Nipah virus.
Summary:
A video of Virginia State Police chasing an armoured vehicle allegedly stolen by a US National Guard soldier has surfaced online.
Summary:
Offering his "heartfelt apologies" for saying a woman could not do his job, Qatar Airways CEO Akbar Al Baker said it was "just a joke".
Summary:
US subscription management company Zuora gave a share of its stock to each of the guests who attended its annual conference on Tuesday.
Almost 2,000 guests attended the conference, many of whom are Zuora's customers and partners.
Summary:
Salman Khan has said action in films should look genuine and believable and not make people laugh.
If you don't look the part physically and end up doing unbelievable action, people laugh at you," he added.
Summary:
Actor Sanjay Dutt took to Instagram to share a picture from his childhood with his late father, actor Sunil Dutt on the occasion of his birth anniversary today.
Sunil Dutt had passed away in May 2005 after suffering a heart attack.
Summary:
India's women's cricket team on Wednesday lost to Bangladesh by seven wickets, suffering their first-ever defeat in the Asia Cup since the inception of the tournament in 2004.
Summary:
Pakistan cricket team coach Mickey Arthur took the entire team for dinner after losing a bet to 19-year-old all-rounder Shadab Khan.
Summary:
Apple Co-founder Steve Wozniak has said, "Only Bitcoin is pure digital gold", adding he buys into Twitter CEO Jack Dorsey's belief that it will become the single global currency.
Summary:
Stating that Pakistan and China fear PM Modi, he added that India would be stronger if he retains power.
Summary:
Addressing a rally in Madhya Pradesh's Mandsaur on Wednesday, Congress President Rahul Gandhi said, "Prime Minister Narendra Modi calls Mehul Choksi Mehul bhai and Nirav Modi, Nirav bhai." Asserting that the government's first duty should be to take care of farmers, Rahul said, "PM Modi and BJP aren't concerned about farmers.
Summary:
Physicists at US' National Institute of Standards and Technology constantly monitored 12 high-precision atomic clocks spread around the world from 1999 to 2014.
Summary:
As many as 11 motorcycles which were parked in unauthorised parking spaces or outside malls were stolen in separate incidents in Gurugram on Saturday and Sunday.
Summary:
Police detained a man in Odisha for allegedly impersonating as an IAS officer and marrying a woman in the state's Damodarpur village.
Summary:
"There was a time when start-ups meant only digital and tech innovation.
We are seeing start-up entrepreneurs in different fields," he added.
Summary:
A 28-year-old Indian-American has been sentenced to five years in jail for making false statements in his application to join the US army.
Summary:
The police said the attacks on the Guru Nanak Nishkam Sewak Jatha gurudwara and the Jamia Masjid Abu Huraira mosque may be connected.
Summary:
The man, who bought the car for 800 yuan (over â¹8,000), said he had transported it on his three-wheeler to save money.
Summary:
Israeli Prime Minister Benjamin Netanyahu on Tuesday said that "weight of economic forces" will kill Iran's nuclear deal with world powers.
Summary:
This is the first hike since January 2014, when the rate was raised to 8%.
Summary:
Ask Daddy!" Frances Beatrix is the only child of 55-year-old Spade, who was found hanging at her home.
Kate's husband was at home when she took her life.
Summary:
UFC star Conor McGregor, who fought Mayweather last year, was ranked fourth with $99 million.
Summary:
Tesla is producing 3,500 Model 3 cars a week on an average, CEO Elon Musk said during the company's annual shareholder meeting on Tuesday.
Summary:
Mumbai Police has arrested two college girls for allegedly stealing 38 mobile phones worth â¹3 lakh from the women's compartments of local trains in the past two months.
Summary:
The letter stated explosions would take place at Krishna Janmabhoomi, Varanasi's Kashi Vishwanath Temple, and two railway stations between June 6 and 10.
Summary:
"I just couldn't bear it...I felt like my child was crying and I had to feed the baby," the policewoman said.
Summary:
It added that aircraft arriving into Singapore Changi Airport will have to slow down and face some restrictions on runway use due to national security reasons.
Summary:
Ecuador's Foreign Minister Maria Fernanda Espinosa Garces was on Tuesday elected the next President of the UN General Assembly, making her the first Latin American woman to head the UN body.
Summary:
Responding to questions about his "half-naked" photos circulating on social media, Russian President Vladimir Putin said that he sees "no need to hide...and there is nothing wrong with that".
Summary:
Summary:
Diana further said, "The most sensible thing to do would be to strike a healthy balance between taking risks with unique content and playing it safe with formula content."
Summary:
Salman Khan has said Sanjay Dutt should have portrayed his older self in his biopic 'Sanju'.
However, Salman further said, "Rajkumar Hirani is a very sensible filmmaker, I am sure he has made a good film."
Summary:
Shah is also scheduled to meet with Shiv Sena chief Uddhav Thackeray, whose party has said it won't ally with BJP for the 2019 polls.
Summary:
Summary:
Argentina's upcoming World Cup warm-up with Israel to be held in Jerusalem has been cancelled, the Israeli embassy confirmed citing "threats and provocations" against Barcelona star Lionel Messi.
Summary:
Watson asked if it was his birth age or cricket age, after which Harbhajan asked him if he "spent a lot of time with Afridi".
Summary:
Apple's VP of Software Engineering, Craig Federighi, mocked Google's Android operating system during the company's WWDC keynote event.
Summary:
Taking a veiled dig at RJD leader and Lalu Yadav's son Tejashwi Yadav, Bihar CM Nitish Kumar said many young leaders owe their positions to their families.
Summary:
Minister of State for Micro, Small and Medium Enterprises Giriraj Singh on Wednesday said, "The ongoing protests by farmers in some parts of the country are a Congress conspiracy." Speaking at an event in Patna, he added that the protest was supported only by a few.
Summary:
Paytm Founder Vijay Shekhar Sharma and venture capitalist Shailesh Vickram Singh have launched a $150-million environment protection fund, called the 'Massive Fund'.
Commenting on the same, Sharma said, "Our efforts...
Summary:
The Mumbai Metropolitan Region Development Authority has proposed to connect the upcoming Metro stations in the city with nearby malls and offices through skywalks, like those in Japan and Dubai.
Summary:
The directive came at a meeting chaired by Higher Education Secretary R Subrahmanyam and attended by several colleges' representatives.
Summary:
The Haryana forest department will plant over two lakh saplings within the next few months in an attempt to increase the green cover in the state, Forest Minister Rao Narbir Singh said on Monday.
Summary:
A UPSC aspirant and a cab driver were arrested from Delhi's GB road for allegedly raping a 15-year-old girl and trying to sell her off at a brothel.
Summary:
The partially decomposed body of a four-year-old boy, who went missing 18 months ago, was found in a wooden box on his neighbour's rooftop in Ghaziabad.
Summary:
Japan seeks complete and irreversible dismantlement of North Korea's nuclear weapons and ballistic missiles of all ranges.
Summary:
Gujarat's former DIG DG Vanzara has told a special court that the CBI wanted to arrest then CM Narendra Modi and then state minister Amit Shah in the 2004 Ishrat Jahan fake shootout case.
Summary:
With earnings of â¹161 crore, Indian cricket team captain Virat Kohli was ranked 83rd by Forbes while boxing champion Floyd Mayweather topped the highest-paid athletes' list for the fourth time in seven years by pocketing â¹1,911 crore.
Summary:
The international trailer of Rajkummar Rao and Nargis Fakhri starrer '5 Weddings' has been released.
Summary:
Other winners included Amsterdam-based date-focused note-taking app Agenda.
Summary:
Facebook has admitted it shared its users' data with four Chinese smartphone makers including Huawei.
Summary:
Tesla shareholders on Tuesday voted against a proposal to remove Elon Musk as the company's Chairman.
Summary:
Ex-Tesla employee Sisun Lee incorporated a startup called '82 Labs', which makes a hangover recovery drink, while he worked for the electric automaker in 2017.
Summary:
The state government also approved a scheme to subsidise electricity for registered labourers of the unorganised sector and Below Poverty Line (BPL) families.
Summary:
The Ranchi division of Indian Railways has reportedly complained that new coaches of premium trains like Rajdhani Express and Sampark Kranti Express have gone missing.
Summary:
Bihar has approved its own scheme to provide financial assistance to farmers for their crop damage, replacing the Centre's Pradhan Mantri Fasal Bima Yojana.
Summary:
The US State Department on Tuesday said that the country is not paying for North Korean officials' stay in Singapore during next week's summit between President Donald Trump and North Korean leader Kim Jong-un.
Summary:
Pruitt is currently facing a dozen investigations for misspending and the management decisions by him and his top aides.
Summary:
Defending his kiss on the lips of a married Filipino woman in South Korea, Philippine President Rodrigo Duterte has said he will resign if enough women are offended and sign a petition calling for him to step down.
Summary:
Russian President Vladimir Putin on Wednesday said that US President Donald Trump's decision to set up a meeting with North Korean leader Kim Jong-un was "brave and mature".
Summary:
The Supreme Court on Wednesday refused to stay the release of Rajinikanth starrer 'Kaala'.
We don't want to interfere with its release," the court said.
Summary:
Summary:
The film is an adaptation of a short story by Robert Silverberg.
Summary:
A new poster of Sanjay Dutt's biopic, titled 'Sanju', featuring actress Manisha Koirala as his late mother Nargis Dutt has been released.
Summary:
Notably, Sutherland was younger than then Test captain Steve Waugh at his appointment aged 35.
Summary:
The net would be cut into 8,150 pieces and sold online for a minimum of â¬71 (nearly â¹5,600) a piece, echoing the 7-1 loss.
Summary:
Facebook's photo-sharing app Instagram may let users post videos that last up to an hour, as per reports.
Summary:
Long thought to be silent because of ice cover, East Antarctica is actually seismically active, a US-based study confirmed.
Summary:
The Bruhat Bengaluru Mahanagara Palike (BBMP) has ordered that only one approved dog can be kept in a flat and an independent house cannot have more than three.
Summary:
A CCTV footage of a restaurant in Mumbai has surfaced, wherein a man could be seen jumping off his seat and throwing his phone out of his shirt's front pocket after it exploded.
Summary:
Police have arrested five people, including prominent lawyer Surendra Gadling and a Delhi man Rana Jacob, in connection with the Bhima-Koregaon riots in Maharashtra in January.
Summary:
The woman revealed she had murdered her ex during an argument by hitting him with an axe.
Summary:
The co-leader of German political party Alternative for Germany, Alexander Gauland, had to walk to a police station from the shores of a lake wearing only his boxers after his clothes were stolen while he was swimming.
Summary:
The Lal Bahadur Shastri International Airport near Varanasi is set to become the first Indian airport to have a national highway underneath its runway.
Summary:
The 1964 film 'Yaadein', which was directed and produced by Sanjay Dutt's late father Sunil Dutt, was the world's first feature film to star only one actor.
Summary:
In a first, a woman with advanced breast cancer that had spread around her body has been successfully treated, American doctors have announced.
Summary:
US President Donald Trump reportedly told reality TV star Kim Kardashian that she and her husband, rapper Kanye West, helped him in boosting his approval among black voters.
Summary:
The spokesperson of Shilpa Shetty's husband Raj Kundra has issued a statement saying that Kundra has no involvement or connection with the Bitcoin scam and was summoned by the Enforcement Directorate merely as a witness.
Summary:
Reportedly, he also urged people to thrash government officials who ask for bribes.
Summary:
About 1.4 billion years ago, a day on Earth lasted 18 hours 41 minutes, partly because the Moon was closer, according to a US-based study.
Summary:
Several bundles of answer sheets of BSc (Botany) exam were gutted in a fire that broke out at Hyderabad's Osmania University's Valuation Centre on Tuesday.
Summary:
The university had earlier told students that it would seek police help by June 12 to ensure that the students vacate the hostel.
Summary:
Chinese Foreign Minister Wang Yi has said that China and India have far more consensus than differences.
Summary:
The historic meeting between US President Donald Trump and North Korean leader Kim Jong-un to be held on June 12 will take place in the Capella Hotel on Singapore's Sentosa Island.
Summary:
Israel on Monday trolled Iran with a GIF from the movie 'Mean Girls' after Iranian Supreme Leader Ayatollah Ali Khamenei called the country a "cancerous tumour" that needs to be "eradicated".
Summary:
Swedish YouTuber PewDiePie has uploaded a video which ended with a disclaimer saying, "Don't be like Ekta Kapoor and go on a Twitter rant when it is completely unrelated to you." He titled the video, "She is angry because I made fun of her".
Summary:
On the occasion of World Environment Day 2018 on Tuesday, actress Kangana Ranaut featured in a video in which she is seen covering her face with a plastic bag.
Summary:
Actor Shahid Kapoor will train as a boxer for his upcoming film with director Raja Krishna Menon.
Summary:
Sonam Kapoor has tweeted that her defence of actress Swara Bhasker has nothing to do with the latter's comments on Pakistan, wherein she said Pakistan is a 'failing state'.
Summary:
Actor Arjun Rampal, while reacting to rumours of him dating Serbian actress NataÃ
¡a StankoviÃÂ, wrote, "Some mornings start with freshly brewed coffee, others with freshly stirred link ups!" "Right now it's just my cuppa and me...
Summary:
Hrithik Roshan has said that Priyanka Chopra could just as easily dumb herself down as she could intimidate, depending on the person or situation.
Summary:
Actress Alia Bhatt has said she can talk to filmmaker Karan Johar about "anything under the sun".
Talking to him refreshes me to another level," said Alia.
Summary:
Twelve-time Grand Slam champion Novak Djokovic, who had won the French Open in 2016, crashed out of this year's edition after suffering a four-set defeat against world number 72 Marco Cecchinato in the quarter-final on Tuesday.
Summary:
Spinners Mohammad Nabi and Rashid Khan registered combined figures of 8-0-31-6 as Afghanistan defeated Bangladesh in the second T20I in Dehradun on Tuesday to take an unassailable 2-0 lead in the 3-match series.
Summary:
The hypothetical 'Planet Nine' may not be a planet and could be a group of large asteroids that disturb orbits of smaller comets in the solar system with their collective gravity, according to a US-based study.
Summary:
The Enforcement Directorate on Tuesday questioned former Finance Minister P Chidambaram in the Aircel-Maxis money laundering case.
Summary:
Vice President Venkaiah Naidu on Tuesday said that Raj Bhavans, the official residences of state governors, are not parallel power centres.
Summary:
The Delhi Police, which has accused Congress leader Shashi Tharoor of abetment to suicide in his wife Sunanda Pushkar's death case, said they investigated the case "professionally".
Summary:
Ron Rockwell Hansen had sought information on the US military operations planned against China.
Summary:
An Ethiopian pastor was killed after being attacked by a crocodile while he was baptising worshippers at a lake in the south of the country last week.
Summary:
Luxury fashion designer Kate Spade was found dead in her New York City apartment on Tuesday, with police confirming that she committed suicide.
Summary:
He further said, "Not a single (actress)...ever suggested any kind of impropriety at all," adding that everyone wants justice to be done.
Summary:
This comes after Arbaaz Khan confessed to placing bets on IPL matches with Jalan.
Summary:
Facebook-owned photo and video sharing app Instagram crashed worldwide for several hours on Android devices on Tuesday.
Later, Instagram fixed the issue and apologised for the crash saying, "We're sorry, and things are resolved!"
Summary:
Amazon's market value is $808 billion while the world's most valuable company Apple has a market capitalisation of $943 billion.
Summary:
Citing a report suggesting the government has decided to cut down its supplies from ordnance factories, Congress President Rahul Gandhi has accused the government of making soldiers buy their own clothes and shoes.
Summary:
Delhi Chief Minister Arvind Kejriwal today claimed that Prime Minister Narendra Modi was "very angry" with Lieutenant Governor Anil Baijal as he was not creating sufficient obstacles for the AAP government.
Summary:
Summary:
Goa Power Minister Pandurang Madkaikar underwent an operation at the Kokilaben Dhirubhai Ambani Hospital in Mumbai after suffering a brain stroke, Goa Health Minister Vishwajit Rane said today.
Summary:
India extracts more groundwater than China and the US combined, and accounts for a quarter of the groundwater extracted globally, a study by WaterAid has revealed.
Summary:
After investigating the communal riots that happened during Ram Navami in West Bengal in March, the National Human Rights Commission has blamed the state administration.
Summary:
Dutch Prime Minister Mark Rutte accidentally spilled coffee in the Parliament and cleaned up the mess himself.
Summary:
The Aadhaar issuing body has said that most payment companies do not have the necessary infrastructure to protect users' data.
Summary:
The Swedish fashion retailer claimed the Indian firm is representing the alphabets 'H' and 'M' in a similar font style and colour combination.
Summary:
Patanjali's Managing Director Acharya Balkrishna has said the company will shift its planned mega food park out of Uttar Pradesh due to state government's "disappointing attitude." The Greater Noida food park would have brought prosperity to the land of Lord Rama and Krishna, he added.
Summary:
He has now taken 56 wickets in T20Is, second-most after 32 T20I matches.
Summary:
Former Team India captain MS Dhoni visited the Deori temple in Ranchi to offer prayers after having led Chennai Super Kings to their third Indian Premier League title.
Summary:
After a fan shared a video of himself mimicking Kings XI Punjab and Windies opener Chris Gayle's dancing moves, the latter tweeted, "You killed it!
Summary:
"Harbhajan came as an angel and has pulled me out from the jaws of death," Harry said.
Summary:
Afghanistan's 23-year-old spinner Sharafuddin Ashraf has said their team has 11 MS Dhoni-like stories.
"Our seniors were up against steeper challenges than we are," he further said.
Summary:
Lok Janshakti Party MP Chirag Paswan on Tuesday claimed PM Narendra Modi will be the face of the NDA in the 2019 Lok Sabha polls in Bihar.
Summary:
BJP chief Amit Shah will meet Shiv Sena president Uddhav Thackeray on Wednesday, after Sena MP Sanjay Raut described the BJP as its biggest "political enemy." Recently, the two allies had contested the Palghar bypolls separately.
Summary:
One97 Communications, the parent company of digital payments startup Paytm, has infused â¹9 crore in its wealth management division Paytm Money, according to filings.
Summary:
The Congress on Tuesday filed a complaint against Maharashtra CM Devendra Fadnavis with the Election Commission, alleging that he violated the Model Code of Conduct in the recently-held Lok Sabha bypolls.
Summary:
The incident occurred less than a day after 38-year-old Army jawan Jogendra Singh allegedly committed suicide by hanging himself inside a store.
Summary:
Earlier, the family of a missing 68-year-old man found that he had been lodged in a Pakistani jail for 36 years.
Summary:
Israel's Intelligence Minister Yisrael Katz has called for a "military coalition" against Iran if it restarts the enrichment of uranium in defiance of the 2015 nuclear deal.
Summary:
Armaan Kohli's live-in girlfriend Neeru Randhawa, who has accused him of assault, says the actor is promising marriage and "begging" her to come back to him.
Summary:
"It's what comes out of their mouths that we care about," Gretchen Carlson, a former Miss America and the Organization's chief said.
Summary:
In 2016, Microsoft acquired business-oriented social networking service LinkedIn in an all-cash transaction valued at $26.2 billion, in one of the biggest tech deals in the world.
Summary:
The Indian Railways had decided to enforce an over 30-year-old rule to charge passengers for carrying excess baggage in trains.
Summary:
He also praised football team captain Sunil Chhetri for scoring a brace in his 100th international match.
Summary:
Arora will receive restricted stock of $40 million, vesting over seven years, on top of annual salary and bonus of $1 million each.
Summary:
Beijing Lingyun Intelligent Technology has designed a two-wheeled electric car prototype which does not have a steering wheel or an acceleration pedal.
Summary:
However, if users choose to remove the alternate face, they will have to reset the entire saved Face ID data.
Summary:
Responding to claims that Apple had access to Facebook's user data, CEO Tim Cook said the company did not request or receive any personal data from the social network.
Earlier, reports claimed Facebook gave user data access to 60 firms including Apple, Samsung and Amazon.
Summary:
After 120 Dalits from Haryana's Jind converted to Buddhism over alleged government apathy, state minister Anil Vij on Tuesday said, "Using conversion to make someone agree with you isn't right." "One must stand by his religion.
Summary:
Russian researchers have created a battery based on radioactive isotope nickel-63 that has a half-life of 100 years, which could help power deep space missions.
Summary:
Meanwhile, MyGov has spent â¹107 crore in 2016-17.
Summary:
Asserting that cannabis is indigenous to India in the form of 'bhang', Congress MP Shashi Tharoor has said India should legalise and regulate the production, supply, and use of cannabis.
Summary:
Ethiopia had disbanded its Navy in 1991 after its then-province Eritrea declared independence, leaving it landlocked.
Summary:
Actor Paresh Rawal, who will be portraying Prime Minister Narendra Modi in an upcoming biopic, has said that it will be a "hugely challenging" role for him.
Summary:
As per reports, American actress Jennifer Aniston will be her 'Friends' co-star Courteney Cox's Maid of Honour.
Courteney will reportedly get married to Snow Patrol singer Johnny McDaid in Ireland this year.
Summary:
Talking about his passion for acting, Sushant Singh Rajput said, "If one day people stop putting money in my movies, I will put in money...prod people to watch...films, that's how much I enjoy it." He added that time consumed in making films is time well used.
Summary:
Indian spinner Harbhajan Singh trolled Yuvraj Singh after the latter tweeted about a power outage in Mumbai.
Summary:
Team India fan Sudhir Gautam brought litchi for Indian spinner Harbhajan Singh and his family.
Summary:
Apple has introduced a 'Screen Time' feature for iOS 12 that will allow users to check how much time they spend on apps and websites.
Summary:
Acharya S Das, the chief priest of the Ram Janmabhoomi temple, on Tuesday said if BJP wanted to come to power again in the 2019 general elections, it should start constructing the Ram temple.
Summary:
Three minor sisters aged between 10 and 16 were hacked to death in Bihar, and the police suspect that they were raped.
Summary:
Stating India "honours" the ceasefire but will retaliate if Pakistan makes unprovoked attacks, Defence Minister Nirmala Sitharaman on Tuesday said, "Terror and talks cannot go hand in hand." She added, "When it is an unprovoked attack the Army was given the right to retaliate.
Summary:
An 18-year-old girl jumped to death from the top of a 10-storey shopping complex in Hyderabad today after failing to get her expected rank in the NEET exam, according to the police.
Summary:
The amount has been released despite Prasar Bharati, the parent company of DD and AIR, not having signed an agreement to get grants-in-aid from the government.
Summary:
A woman in the US state of Texas has confessed to shooting her husband dead because he was beating the family cat, police said.
Summary:
Avail 1 lakh free Ola Share rides from 5th-8th June.
Summary:
An Ola driver was arrested after he allegedly abducted a woman passenger, molested her, and took her pictures after forcing her to strip in Bengaluru.
Summary:
Flipkart founders Sachin Bansal and Binny Bansal-backed startup Ather Energy has launched its first two electric scooters in Bengaluru, priced at â¹1.09 lakh and â¹1.2 lakh.
Summary:
Karnataka's 28-year-old UPSC aspirant Varun Subhash Chandran committed suicide on Sunday after he was denied entry at the exam centre for being four minutes late.
Summary:
Summary:
Thirty-year-old Pranjal Patil has become the first visually-challenged woman IAS officer in India as she joined her posting as Assistant Collector in Kerala's Ernakulam district last week.
Summary:
Padma Shri-awardee sand artist Sudarsan Pattnaik has created a 50-foot-long sand turtle on Odisha's Puri beach with the message 'Beat Plastic Pollution' on the occasion of World Environment Day. Pattnaik used plastic bottles to create the turtle's shell.
Summary:
Pakistan Army spokesperson Major General Asif Ghafoor has said ex-ISI chief Asad Durrani will be punished as per the law for co-authoring a book with former RAW chief AS Dulat.
Summary:
Former US President Bill Clinton has said that he does not owe a private apology to Monica Lewinsky, the former White House intern he had an affair with.
Summary:
The UN has called on the US to "immediately halt" its policy of separating migrant children from their parents at the country's southern border.
Summary:
The alleged fraud was carried out by Flintstone Group, where its employees lured in people by promising them 10-20 times returns on investments in four to six months.
Summary:
Uday Chopra posted a tweet which read, "My mother is my mother, but only cause of my father.
Summary:
Summary:
Actor Sanjay Dutt will reportedly be a part of Sajid Khan's 'Housefull 4' which will also star Akshay Kumar, Riteish Deshmukh, Bobby Deol, Kriti Sanon and Pooja Hegde.
Summary:
Arjun Rampal, who recently announced his separation from Mehr Jesia, is reportedly dating Serbian actress NataÃ
¡a Stankoviàwho appeared in the song 'DJ Waley Babu'.
Summary:
While driving back from a championship tournament in California, US, a youth football team from Idaho lifted an overturned vehicle and rescued the couple trapped inside.
Summary:
Indian cricketer Rohit Sharma has revealed that he once felt like punching Ravindra Jadeja as the latter started making weird noises and calling cheetahs during a jungle safari in South Africa.
Summary:
Thane police have recovered alleged betting rates for an IPL 2018 match between SunRisers Hyderabad and Delhi Daredevils from Dawood Ibrahim-linked bookie Sonu Jalan.
Summary:
Users can integrate those commands with third-party apps through an "add to Siri" button.
Summary:
General Motors (GM) has agreed to settle a lawsuit filed by a motorcyclist hit by the company's self-driving car last year in the US.
Summary:
Samajwadi Party chief Akhilesh Yadav today said there was no decision on seat sharing between his party and the Mayawati-led BSP for the 2019 Lok Sabha elections, adding, "We will discuss at the appropriate time." "We 'samajwadis' have a big heart," he added.
Summary:
Asserting that the current political environment is similar to that which existed in 1977, Nationalist Congress Party chief Sharad Pawar said a united opposition would be able to defeat a single party.
Summary:
Over 100 trader unions have opposed the Walmart-Flipkart deal saying it would cause "irreversible damage" to small businesses and endanger jobs.
Summary:
Saudi Arabia has temporarily banned processed and frozen fruit and vegetable imports from Kerala from Sunday amid concerns over Nipah virus outbreak.
Summary:
He alleged that she left to meet her parents and when he tried to call her, her father said she had been killed.
Summary:
France has begun building its first 'Alzheimer's village' where up to 120 patients would live freely without medication alongside carers, volunteers, and scientists.
Summary:
Oil Minister Dharmendra Pradhan has ruled out a review of daily price revision mechanism of petrol and diesel, which was introduced in mid-June last year.
Summary:
The first official teaser of 'Bumblebee', the spin-off to the 'Transformers' film series, has been released.
Summary:
Apple announced the latest version of its macOS named 'Mojave' and unveiled iOS 12 for iPhones and iPads at the WWDC event.
Summary:
Summary:
British astronaut Tim Peake has shared "mental challenge" puzzles that he had to solve as a part of European Space Agency's selection process.
Summary:
Maharashtra's environment department will issue a notice to Jawaharlal Nehru Port Trust after an inquiry revealed it was dumping 20,000 kg of plastic every day into the sea, 12 km outside Mumbai.
Summary:
Ahead of the World Environment Day, the Haryana government has banned single-use water bottles in all government offices in the state and ordered the use of only multi-use water bottles.
Summary:
The first batch of licences was issued to 10 women.
Summary:
On being asked why Qatar Airways was led by a man, CEO Akbar Al Baker said, "Of course it has to be led by a man, because it is a very challenging position." He later defended the statement and said Qatar has over 33% female workforce.
Summary:
India's richest person Mukesh Ambani's family has released a video invite for the guests who will be attending Akash Ambani's formal engagement with Shloka Mehta on June 30 this year.
Summary:
Billionaire Anil Agarwal's Vedanta has acquired bankrupt Electrosteel Steels for â¹5,320 crore, marking its entry into the steel business.
Summary:
Speaking about the kind of roles he chooses, Sushant Singh Rajput said, "I take up roles I feel I'd fail in...then it becomes like a challenge for me to outdo myself." "My philosophy of success in life is to find different ways of failing," he added.
Summary:
Sonam further said that she is now used to defending herself.
Summary:
Rani Mukerji starrer 'Hichki' is set to be screened at the Belt and Road Film Week of Shanghai International Film Festival in China.
Summary:
Speaking about social media trolls, Jacqueline Fernandez said it has become tough being a celebrity today.
Summary:
England's Jos Buttler has revealed he writes 'F**k It' on top of his bats as it reminds him of what his "best mindset" is.
"It's just a good reminder when I'm in the middle...questioning myself...it brings me back to a good place," he said.
Summary:
After the invader demanded Chhetri for a selfie, Chhetri asked him to come later, requesting security to escort him out.
Summary:
Apple has unveiled a 'Restricted' mode for iOS 12 beta version that restricts accessories from connecting via USB after the iPhone has been locked for an hour.
Summary:
Chemotherapy has side effects like nausea, vomiting, hair loss and fatigue in the short-term.
Summary:
The case came to light in 2014 over alleged irregularities in the way a tender for ambulance services in Rajasthan was awarded.
Summary:
Several trees and electricity poles have been uprooted due to frequent thunderstorms in the city.
Summary:
A man from Telangana has sent PM Narendra Modi a cheque for 9 paise as protest, mocking the recent drop in fuel price in the state by the same amount.
Summary:
Gopal Phulsunge, who was also fined â¹3,000, was found guilty of confining the animals in a small space.
Summary:
On the occasion of UP CM Yogi Adityanath's 46th birthday on Tuesday, PM Narendra Modi tweeted, "Warm birthday wishes to Uttar Pradesh's hardworking Chief Minister." Local traders in Gorakhpur prepared a 46-kg laddoo on the eve of his birthday.
Summary:
The husband was arrested after the woman lodged a police complaint when she began getting calls from unknown men.
Summary:
Singapore on Tuesday unveiled a 'World Peace' medallion to commemorate the upcoming summit between US President Donald Trump and North Korean leader Kim Jong-un.
Summary:
Before the ceremony, the temple underwent renovation for over four years at a cost of nearly SGD 4 million (â¹20 crore).
Summary:
US coffee giant Starbucks on Monday announced that its Executive Chairman Howard Schultz will step down on June 26 amid speculation that he may run for President.
Summary:
Actress Shilpa Shetty's husband and businessman Raj Kundra has been summoned by the Enforcement Directorate for questioning in connection with a Bitcoin scam.
Summary:
Congress MP Shashi Tharoor has been summoned by a Delhi court on July 7 in connection with his wife Sunanda Pushkar's death in 2014.
Summary:
Researchers said that transport of organs using drones could cut down the transportation time by at least 50% compared to green corridors.
Summary:
The fish skin absorbed into her body and transformed into tissue that lines the vaginal tract.
Summary:
The users will be able to create Memoji within Messages by choosing from a set of characteristics to form a unique personality.
Summary:
Last year, Kurmi also carried 50 kg rice bag on his back and delivered it to flood relief camps.
Summary:
A Pakistani national has been arrested in Hyderabad for overstaying in the city with forged documents.
Summary:
United Nations Environment Programme (UNEP) Executive Director Erik Solheim, in India for World Environment Day, has said that Prime Minister Narendra Modi is a "global leader" in tackling climate change.
Summary:
In 2017, the state government had banned the manufacture and use of plastic bags below 51 microns.
Summary:
PM Narendra Modi will address an event marking the World Environment Day.
Summary:
A man had halted the movement of tanks ordered to kill student protesters during the 1989 pro-democracy protests in China's Tiananmen Square on June 5.
Summary:
India's richest person and Reliance Industries Chairman Mukesh Ambani's eldest son Akash is set to get formally engaged to diamond heiress Shloka Mehta on June 30.
Summary:
Following her apology to Sunny Leone on a reality show over comments made against her, Rakhi Sawant said, "I feel sorry for...the things I said against her." "Now she's a mother, I shouldn't say anything bad about her," Rakhi added.
Summary:
Social media users, while trolling Janhvi's outfit, had written that she 'forgot' to wear jeans.
Summary:
Supporting Swara Bhasker who was trolled for calling Pakistan a 'failing state', Sonam Kapoor said, "I think people just like to troll her because she has an opinion." Swara had made the remark on being asked about her film 'Veere Di Wedding' being banned in Pakistan.
Summary:
Summary:
Indian footballers along with fans in the Mumbai Football Arena performed the Viking Clap celebration after a 3-0 win against Kenya on Monday.
Summary:
Indian captain Sunil Chhetri, who posted a plea to Indian people to show up for matches, took to Twitter to thank the fans for the sold-out stands during India's 3-0 win over Kenya.
In his plea, Chhetri had urged people to "please come and watch us in the stadiums...
Summary:
A TMC worker was shot dead on Monday night by three unidentified assailants in West Bengal's Howrah, days after the death of two BJP workers.
Summary:
BJP President Amit Shah on Monday met yoga guru Ramdev to seek support for the 2019 Lok Sabha elections, as part of his 'Sampark for Samarthan' campaign.
Summary:
Researchers are developing a blood test called liquid biopsy, which can screen for 10 different cancer types before the symptoms appear in the patient.
Summary:
A woman in West Bengal gave birth to a healthy baby hours after a lab report said she was carrying a dead foetus, according to her family.
Summary:
The Centre had filed a plea against a Delhi High Court order quashing the reservation.
Summary:
India on Monday began importing Liquefied Natural Gas (LNG) from Russia as it received the first 3.4 trillion British thermal unit of cargo at Gujarat's Dahej terminal.
Summary:
The Brihanmumbai Municipal Corporation last week imposed a fine on 16 people for not picking up their pets' poop, during a three-day drive they implemented in areas including Mahalaxmi and Girgaum Chowpatty.
Summary:
A senior Rajasthan policeman has said in court that two CBI officers forced him to give false statement in the Sohrabuddin Sheikh encounter case, becoming the 60th prosecution witness to turn hostile.
Summary:
A Brazilian teen passed away on Monday after a shark bit off his penis while he was swimming at a beach in the city of Recife.
Summary:
American rapper Kanye West has revealed that he was diagnosed with a "mental condition" at the age of 39.
Summary:
After Indian football captain Sunil Chhetri's plea resulted in packed stands, coach Stephen Constantine said, "I don't feel we should be begging people to watch the national team." He claimed the manner in which the team has been playing should be enough to draw the crowds.
Summary:
The founders of GitHub, the coding platform acquired by Microsoft for $7.5 billion, will own about 10 times more shares than Microsoft CEO Satya Nadella, according to Bloomberg.
Summary:
Summary:
Singapore-based Quek Siu Rui once declined a $100-million offer for his startup Carousell, which is now said to be valued at $500 million.
Summary:
The renaming was earlier approved by the Railways Ministry after the state cleared it in 2017.
Summary:
Pilot Air Commodore Sanjay Chauhan has lost his life in the incident.
Summary:
Summary:
As many as 7.14 lakh candidates have cleared the 2018 National Eligibility cum Entrance Test (NEET), of which the highest number, 76,778, were from Uttar Pradesh.
Summary:
A video has surfaced online wherein locals of Kotli district in Pakistan-occupied Kashmir (PoK) can be seen accusing Pakistan security forces of illegal encroachment.
Locals, who were standing in a group, could be heard saying, "What is your right to do this?
Summary:
An 18-year-old woman, Safaa Boular, has become UK's youngest convicted female Islamic State terrorist after a court found her guilty of plotting a terror attack on the British Museum in London.
Summary:
The death toll from the most violent eruption of Guatemala's Fuego volcano in over four decades rose to 69 on Monday.
Summary:
State-owned Russian television channel Russia-1 photoshopped a smile onto North Korean leader Kim Jong-un's face in a recent broadcast of his meeting with Russian Foreign Minister Sergei Lavrov.
Summary:
Nawazuddin Siddiqui, while responding to reports that Taapsee Pannu rejected a thriller film over being cast with him, said he was never approached for the film.
Earlier, Taapsee had also denied rumours that she rejected a film because she was paired with Nawazuddin.
Summary:
The board owes three months' salary and match fees from Zimbabwe's tour of Sri Lanka last year.
Summary:
Japan is planning to launch a self-driving car service in Tokyo by 2020, according to a government strategic review announced on Monday.
Summary:
Some of its features include 'Dark Mode' that transforms the desktop to a darkened colour scheme, and 'Stacks', which organizes messy desktops by automatically stacking files into neat groups.
Summary:
Union Health Minister JP Nadda on Monday said that Nipah virus outbreak in Kerala was the result of "tampering with nature" but wasn't a man-made problem.
Summary:
A 35-year old mentally challenged man died in Hyderabad after four policemen allegedly tied his hands and dumped him on a highway for being a nuisance.
Summary:
After five days of violence in Shillong, the Meghalaya government has decided to form a special committee to find a "permanent solution" for the relocation of the sweeper colony where the clashes had broken out.
Summary:
A man was beaten to death in Haryana's Sonipat allegedly over sharing pictures he clicked with his family members on a WhatsApp group.
Summary:
A Delhi court has extended protection from arrest to senior Congress leader P Chidambaram till July 10 as the Enforcement Directorate sought more time to file a reply in the Aircel-Maxis case.
Summary:
The Indian Railway Catering and Tourism Corporation (IRCTC) has decided to cut down the quantity of the meals and focus on improving the quality, reports said.
Summary:
As many as 55 accidents involving stationary vehicles on the expressway were reported in January and February this year.
Summary:
The probe into the nerve agent attack on former Russian spy Sergei Skripal and his daughter Yulia cost the UK's Wiltshire police alone more than ã7 million (â¹62 crore).
Summary:
Singapore police's Gurkha Contingent will guard the historic meeting between US President Donald Trump and North Korean leader Kim Jong-un to be held on June 12 in the country, with khukris and assault rifles.
Summary:
Summary:
Travel company, Thomas Cook India, has launched flight inclusive America holiday package for 10 nights starting at â¹2,62,450/- .
Summary:
Apple on Monday unveiled its latest software iOS 12 for iPhones and iPads at WWDC 2018.
Summary:
The limited edition Silk White variant of OnePlus 6 is now available on Amazon.in and OnePlus.in.
Summary:
A US-based study has found that the average day length on Earth is growing by 1/75,000 second per year, as the Moon is slowly drifting apart.
Summary:
Actor and ex-Bigg Boss contestant Armaan Kohli has been booked for allegedly assaulting his live-in partner Neeru Randhawa following an argument over monetary issues.
Summary:
The Centre has announced a comprehensive package of more than â¹8,000 crore to provide relief to sugarcane farmers and to clear their dues, which have crossed over â¹22,000 crore.
Summary:
The Kerala government will cover the medical expenses of the patients infected with Nipah virus in Kozhikode and Malappuram, CM Pinarayi Vijayan has said.
Summary:
Summary:
Meanwhile, a radical group has threatened to organise a shutdown in the city on June 6.
Summary:
US President Donald Trump on Monday tweeted, "I have the absolute right to PARDON myself, but why would I do that when I have done nothing wrong?" This comes while he is being investigated for Russian links to his presidential election campaign.
Summary:
The school said its gender-neutral uniform policy allows only trousers or skirts as legwear.
Summary:
Slamming Priyanka Chopra's American TV show 'Quantico', a Twitter user wrote, "This is real anti national." The tweet referred to the latest episode where 'Indian nationalists' were reportedly shown framing Pakistan for trying to blow up Manhattan in New York.
Summary:
A scene in the upcoming film 'Sanju', where actress Madhuri Dixit has been referred to, was removed on the actress' insistence, as per reports.
Summary:
Taapsee Pannu has said that she has heard stories of sexual harassment in Bollywood but she herself has not faced any sexual harassment, otherwise she would've probably helped voicing it.
Summary:
Summary:
Afghanistan's 19-year-old leg-spinner Rashid Khan, who is currently in Dehradun for the T20I series against Bangladesh, said he has "not gone home in a year" and that he misses his "family a lot".
Summary:
Indian football team captain Sunil Chhetri scored with a chip from outside the goalkeeping area in the 92nd minute in India's 3-0 win over Kenya in Mumbai on Monday.
Summary:
Coach Pullela Gopichand is training PV Sindhu and Saina Nehwal at different centres of his academy since the two players are reportedly not comfortable with each other following their gold medal match in the Commonwealth Games 2018.
Summary:
FIFA has handed a â¹14-lakh fine to England's Football Association after an England player drank a non-sponsored drink during a match.
Summary:
BJP has written to Mizoram Chief Secretary Arvind Ray seeking action against Manorama News for allegedly slandering newly-appointed Governor Kummanam Rajasekharan on the day of his swearing-in ceremony.
Summary:
A 70% complete skeleton of an unidentified dinosaur was sold for â¬2 million (â¹15.7 crore) at the Eiffel Tower in Paris on Monday.
Summary:
Last year, 17-year-old S Anitha had committed suicide after failing to clear NEET, leading to widespread protests in Tamil Nadu.
Summary:
Summary:
Between January and May this year, as many as 15,450 motorists were prosecuted for drunk driving and over 7,000 vehicles impounded or seized.
Summary:
The man had suffered the attack an hour after the departure, following which the crew rushed to his aid and the flight was taken back to Mumbai for proper medical treatment.
Summary:
Chhetri, who is the third best active international goal-scorer after Cristiano Ronaldo and Lionel Messi, has now scored 61 international goals.
Summary:
Bihar's 18-year-old Kalpana Kumari, who attended coaching classes in Delhi, got 691 out of 720 marks or 99.99 percentile to top CBSE's NEET 2018.
She appeared for Class 12 board examination conducted by Bihar board this year.
Summary:
An off-duty FBI agent dropped his gun while performing a backflip on the dance floor at a bar in US' Denver and accidentally shot a man.
Summary:
The matches, which featured former MMA and underground bare-knuckle fighters, saw several bloodied faces and an 18-second knockout.
Summary:
Congress President Rahul Gandhi on Monday claimed that the interviews given by PM Narendra Modi on public platforms were pre-scripted.
Summary:
Maharashtra Police on Monday stopped Congress MLAs Virendra Jagtap and Yashmomati Thaku from setting fire to themselves.
Summary:
Police were forced to use tear gas against protestors after they toppled police vehicles and assaulted a cop on Sunday.
Summary:
The Tamil Nadu government on Monday announced its decision to release 67 life-term prisoners, who have served at least 10 years in jail.
Summary:
The 40-year-old owner of an eatery near Kolkata was shot dead on Sunday after asking a customer named Mohammad Firoz to pay earlier dues of â¹190.
Summary:
Hashmi said that the comments made by the minister were an insult to the farmers.
Summary:
As many as 13 people died in separate incidents, ten of which were cases of drowning, during the first monsoon weekend in Maharashtra.
Summary:
The Kerala Health Department has said the highly dangerous phase of Nipah virus outbreak is over.
Summary:
At least 14 people have been killed in a suicide bomb explosion targeting a gathering of the Afghan Ulema Council, shortly after the country's top religious body issued a fatwa declaring suicide attacks "haram".
Summary:
COAI in a press statement in September 2016 said that Jio entered the sector as a "back door operator".
Summary:
Kareena Kapoor Khan's wedding dress in 'Veere Di Wedding', which was designed by designer duo Abu Jani and Sandeep Khosla, was made 25 years ago.
Summary:
Summary:
Talking about finalising the right film for Bobby Deol, Salman Khan said, "I am personally looking into the story...locking the director for the film.
Summary:
Reports claim that players have an understanding between them about the fake injury.
Summary:
Reacting to five-time Ballon d'Or-winner Lionel Messi's magazine photo shoot with goats, a user tweeted, "Goats with the GOAT (Greatest of All Time)." "Why's Messi holding Ronaldo?" another user wrote.
Summary:
World number one Rafael Nadal on Monday defeated Germany's Maximilian Marterer in straight sets to register his 900th career win and enter the French Open quarter-finals for the 12th time.
Summary:
Kings XI Punjab and Karnataka batsman Mayank Agarwal has tied the knot with his long-time girlfriend Aashita Sood.
Summary:
Former New Zealand cricket captain Brendon McCullum returned to play rugby after a gap of 18 years.
Summary:
A 25-year-old rape survivor was hospitalised today after two motorcycle-borne assailants threw an acid-like substance on her while she was on her way to a Chandigarh court.
Summary:
The police later tracked down the IP address and arrested shop owner Jyotish Nath.
Summary:
A 65-year-old man was shot dead by two youths for opposing their attempts to sexually harass his daughter, the Uttar Pradesh Police said on Monday.
Summary:
US-led coalition air strikes on the Islamic State militant group killed 12 members of the same family last week, the Syrian Observatory for Human Rights has said.
Summary:
All the tickets for India's football match against Kenya today in Mumbai have been sold out, two days after Indian skipper Sunil Chhetri posted a video urging people to show up for matches in stadiums.
Summary:
Microsoft's Corporate VP Nat Friedman will become GitHubâÂÂs new CEO after the acquisition closes later this year.
Summary:
A 28-year-old UPSC aspirant allegedly committed suicide in Delhi's Rajendra Nagar on Sunday after he was denied entry into the examination hall for arriving late.
Summary:
Google Translate converts 'I am a flat-earther' to 'Je suis un fou' in French which translates to 'I am a crazy person' in English.
Summary:
Kareena Kapoor Khan and Sonam Kapoor starrer 'Veere Di Wedding' has replaced Alia Bhatt starrer 'Raazi' to become this year's fifth highest opening weekend grosser with a collection of â¹36.52 crore.
Summary:
Twenty three-time Grand Slam champion Serena Williams has pulled out of the French Open with pectoral injury, an hour before she was set to play five-time Grand Slam champion Maria Sharapova in the Round of 16 on Monday.
Summary:
Himachal Pradesh CM Jairam Thakur on Monday flagged off a helicopter taxi service that will reduce the travel time between Shimla and Chandigarh to 20 minutes, against the nearly 3.5 hours by road.
Summary:
As many as 2,646 people committed suicide in 2015 due to "failure in examination," according to data released by the National Crime Records Bureau.
Summary:
After undergoing a kidney transplant, Union Minister Arun Jaitley on Monday tweeted, "Delighted to be back at Home." Expressing gratitude towards doctors and medical staff for looking after him for over three weeks, he thanked his friends and colleagues for wishing for his recovery.
Summary:
Test result from the National Institute of Virology in Pune has confirmed that the 27-year-old jawan from Kerala, who recently passed away in Kolkata, did not die due to Nipah virus infection.
Summary:
The incident occurred when police stopped the truck which was being used to smuggle over 20 cows.
Summary:
In violation of norms, the Women and Child Development Ministry revealed a sexual harassment victim's name in its press note after she met Union Minister Maneka Gandhi.
Summary:
Dumri MLA Jagarnath Mahto said he will raise the matter in the Assembly.
Summary:
The contractor revealed that the building was moved by computer-controlled hydraulic machines along a guide rail.
Summary:
The government has appointed IDBI Bank's Managing Director and CEO Mahesh Kumar Jain as a Deputy Governor at the RBI.
Summary:
Actor Salman Khan has said that he is working harder because the newcomers are quite good at what they do.
Summary:
Kajol has said that both her children Nysa and Yug have been amazing teachers to her.
Summary:
Former Pakistani captain Waqar Younis on Monday took to Twitter to apologise for cutting cake on ex-captain Wasim Akram's birthday during Ramadan on Sunday.
Summary:
Mumbai-based YouTuber Nikunj Lotia has booked an entire stand at the Mumbai Football Arena for Indian football team's match against Kenya on Monday.
Summary:
Indian captain Virat Kohli has revealed that the longest he has run is for 20 minutes at 14 kmph, while the heaviest weight he has ever lifted is 145 kg deadlift.
Summary:
Summary:
After meeting actor-turned-politician Kamal Haasan over the Cauvery Water Management Board, Karnataka CM Kumaraswamy said, "Both Karnataka and Tamil Nadu farmers are important." Meanwhile, Haasan said several lawyers advised him that the dispute between the two states should be settled outside court.
Summary:
An investigation is ongoing, and the police suspect the perpetrator could be one of the labourers living inside the farmhouse.
Summary:
He received the offer on a job portal and was asked to pay the money as fees for his application.
Summary:
Odisha CM Naveen Patnaik on Monday ordered a judicial probe into the disappearance of the keys of the inner chambers of the Jagannath Temple's treasury.
Summary:
She claimed the accused and his family sedated her before the rape following which they used a video of the incident to blackmail her.
Summary:
Syrian President Bashar al-Assad plans to visit North Korean leader Kim Jong-un, North Korean state media said on Sunday.
Summary:
Bihar's Kalpana Kumari has topped the medical entrance exam NEET 2018 with a percentile of 99.99.
Summary:
A boulder-sized asteroid designated '2018 LA' was spotted hours before impact on Saturday by NASA-funded Catalina Sky Survey in Arizona.
Summary:
Shweta and Rohit have been in a relationship for around four years and she proposed to him in Goa, as per reports.
Summary:
Actress-filmmaker Angelina Jolie made her onscreen debut when she was 7 in a brief role in the 1982 film 'Lookin' to Get Out', where she played the onscreen daughter of her real-life father Jon Voight.
Summary:
Elon Musk-led space exploration startup SpaceX on Monday launched its pre-flown Falcon 9 rocket, carrying the SES-12 satellite to a Geostationary Transfer Orbit (GTO).
Summary:
Summary:
A Kolkata-based businessman died and a girl was injured after a â¹3-crore Ferrari they were driving crashed into a wall reportedly while trying to avoid a slowing truck on a flyover in Howrah.
Summary:
The CBSE on Monday declared the results of the medical entrance exam National Eligibility Entrance Test (NEET) 2018.
Summary:
Over 1,400 people have been put under quarantine in their own homes amid the Nipah virus outbreak in Kerala, an official said.
Summary:
Indian Union Muslim League MLA Parakkal Abdulla attended the Kerala Assembly on Monday wearing a mask and gloves to highlight the impact of the Nipah virus.
Summary:
Warning that the good times for illegal migrants are over, Italian Interior Minister Matteo Salvini on Sunday said that they should pack their bags.
Summary:
Slamming tariffs imposed by the US on metal imports from the country, Canadian Prime Minister Justin Trudeau has said that it is "insulting" that the US considers Canada a national security threat.
Summary:
Nobel Prize-winning nuclear disarmament group ICAN has offered to pay for the cost of the summit between US President Donald Trump and North Korean leader Kim Jong-un.
Summary:
Highlighting the widening skill gap in the IT industry, Tech Mahindra CEO CP Gurnani has said 94% of engineering graduates were not fit for hiring.
Summary:
Reliance Jio has started hiring a team of professionals under Akash Ambani to work on Artificial Intelligence (AI), according to reports.
Summary:
Afghanistan pacer Shapoor Zadran's delivery to Bangladesh's Rubel Hossain broke the leg stump into two during the first T20I between the two sides on Sunday.
Summary:
Rohit was seen holding his head in disappointment after the throw.
Summary:
German table tennis player Timo Boll switched hands during a rally and still managed to win the point during the 2018 ITTF World Tour China Open.
Summary:
Former Australian captain Steve Smith has revealed that he "spent four days in tears" after the ball-tampering scandal in the Cape Town Test, that led to him being banned for a year.
Smith will feature in Global T20 Canada later this month.
Summary:
The victory was India's second successive in the tournament, after having defeated Malaysia by 142 runs in their opening match.
Summary:
Two delivery drivers are taking legal action against Amazon's three delivery firms, claiming they were dismissed for complaining about working practices.
Summary:
Union Minister Vijay Goel on Sunday said that BJP's doors are open for suspended AAP leader Kapil Mishra.
Summary:
Claiming BJP makes empty promises, Samajwadi Party chief Akhilesh Yadav said, "With empty stomach, people have now understood that the BJP does not mean business." Akhilesh slammed BJP for accusing the party of practising minority appeasement while adding, "Modi has just visited Indonesia and Malaysia during the month of Ramzan.
Summary:
In a letter to PM Narendra Modi, Punjab CM Captain Amarinder Singh has sought â¹2,145 crore for infrastructure projects and special programmes to commemorate Guru Nanak's 550th birth anniversary in 2019.
Summary:
Delhi's Social Welfare Department is planning to introduce a vocational skill development programme for people staying at government beggar homes.
Summary:
Fox had asked the US to reconsider its decision, calling it unlawful.
Summary:
Afghanistan's 19-year-old spinner Rashid Khan became the world's fastest cricketer to reach 50 wickets in T20I cricket after reaching the milestone with a wicket on his first ball of the match against Bangladesh on Sunday.
Summary:
It was Tingle and Kanai's first mission, while Shkaplerov has logged 532 days on three flights.
Summary:
Union Culture and Environment Minister Mahesh Sharma has announced that a scientific study called colour stereography will be done on the Taj Mahal to determine its exact colour.
Summary:
Police have arrested seven people in Kerala's Kozhikode for forwarding fake news about the spread of Nipah virus through WhatsApp. A Junior Health Inspector also lodged a complaint about rumours that his staff had contracted the virus.
Summary:
Amid efforts to save the 2015 nuclear deal after US exit, Iranian Foreign Minister Mohammad Javad Zarif on Sunday said that the world should stand up to US' bullying behaviour.
Summary:
US President Donald Trump's lawyer Rudy Giuliani on Sunday said that the President probably has the power to pardon himself in the Russia probe.
Summary:
A 40-year-old woman from Navi Mumbai lost nearly â¹7 lakh after sharing her one-time password (OTP) 28 times with a fraudster.
Summary:
The Tourism Ministry has suggested five places namely Ajanta-Ellora, Hampi, Bodh Gaya, Mahabalipuram and Khajuraho.
Summary:
The government is reportedly planning to merge at least four state-run banks including IDBI Bank, Bank of Baroda, Central Bank of India, and Oriental Bank of Commerce.
Summary:
He called private investment, private consumption, exports, and government expenditure as the four engines of an economy with three of them being "punctured" in India's case.
Summary:
They will unveil the first song during a live performance on June 11 in Mumbai.
The yet-to-be-revealed track is a recreation of one of their original songs.
Summary:
Indian spinner Yuzvendra Chahal has revealed that he shares a "great bond" with former Australian all-rounder Andrew Symonds who he considers is "misunderstood".
Summary:
Afghanistan's spin trio of Rashid Khan, Mujeeb Ur Rahman and Mohammad Nabi registered combined figures of 6/54 in 11 overs to help their side beat Bangladesh for the first time in a T20I match on Sunday.
Summary:
The shooter, who fired four or five shots near a parking structure near the finish line of the race, was later taken into custody.
Summary:
The firms were also given access to users' friends' data without consent, the report claimed.
Summary:
Slamming the Opposition, BJP leader and union minister Giriraj Singh on Sunday tweeted that Maoists, casteist, communists and supporters of 9/11 attacks mastermind Osama bin Laden had united against the NDA.
Summary:
Bengaluru logistics tracking startup Locus, founded by former Amazon engineers Nishith Rastogi and Geet Garg, has raised $4 million in funding.
Summary:
Online grocer BigBasket is planning to expand its portfolio by selling beauty products and meat via private labels.
"We will not just have a private label (for beauty), but also normal labels, imported stuff, etc...
Summary:
The Punjab government has sent a four-member team to Shillong amid reports of unrest between the native Khasi and Dalit Sikh communities.
Summary:
A committee formed by the Human Resource Development Ministry may recommend that the duration for CBSE Class 10 and 12 exams be reduced from seven to four weeks in an attempt to prevent paper leaks, reports said.
Summary:
The SP alerted police officials, who arrived and arrested one of the accused.
Summary:
The family of Ankit Saxena, the 23-year-old photographer who was allegedly killed by his Muslim girlfriend's family in February, on Sunday organised an iftar party in Delhi's Raghubir Nagar.
Summary:
Summary:
Duterte told women in the audience that he would give a book titled 'Altar of Secrets: Sex, Politics, and Money in the Philippine Catholic Church' in exchange for a kiss.
Summary:
German President Frank-Walter Steinmeier on Sunday apologised to the LGBT community over the "suffering and injustice" caused under Nazi rule and in the decades after.
Summary:
Further, additional interest charged in case of default of loan payment will attract GST.
Summary:
The Income Tax Department on Sunday said the records relating to the ongoing investigation of Nirav Modi and Mehul Choksi were transferred before a fire broke out in the Income Tax Office in Mumbai.
Summary:
American tennis star and former world number one Serena Williams, who is playing her first Grand Slam after giving birth, has beaten her rival Maria Sharapova 18 times in a row.
Summary:
Ahead of his 100th international match, Indian football captain Sunil Chhetri recalled his debut match where he scored a goal and "all in euphoria...
Summary:
SoftBank Vision Fund's CEO Rajeev Misra, who has been elevated to Executive Vice President of SoftBank's board, is likely to be considered as SoftBank CEO Masayoshi Son's successor.
Summary:
A 38-year-old man who was out on bail has been arrested for allegedly breaking into a woman's house in Delhi, raping her for six hours, and trying to strangulate her.
Summary:
The hospital staff demanded action against a patient's family for assaulting nurses after their relative was declared dead.
Summary:
The brother of an IPS officer is allegedly among 80 youths who have joined militant groups like ISIS-Kashmir and Ansar Ghazwat-ul-Hind in Jammu and Kashmir this year, according to reports.
Summary:
The government will provide funds to schools for procuring sports equipment and library books, he further said.
Summary:
A student at Kolkata's St Paul's Cathedral Mission College was allegedly stripped naked and filmed by his seniors after he questioned them about the funds used for a college fest.
Summary:
Jammu and Kashmir Police has retrieved a 14-year-old application submitted by the father of the accused in the Kathua rape case to contest that he is not a juvenile.
Summary:
Summary:
The Central Information Commission has asked the Prime Minister's Office and External Affairs Ministry to detail steps taken to bring back antiquities like the Kohinoor diamond and Maharaja Ranjit Singh's golden throne.
Summary:
Five youths were sentenced to life imprisonment on Saturday for raping a 16-year-old girl within 30 days of the incident in Odisha's Sambalpur district.
Summary:
At least 25 people were killed and around 300 others were injured on Sunday in the most violent eruption of Guatemala's Fuego volcano in over four decades.
Summary:
As many as 73,000 companies which have been deregistered by the government deposited â¹24,000 crore in bank accounts after demonetisation, as per government data.
Summary:
Gangster Dilpreet Dhahan has been booked for allegedly making an extortion call to Punjabi actor and singer Gippy Grewal.
Summary:
#DushmanKaDushmanDost." An Indian user had commented on a post by a Pakistani Instagram account.
He had written, "To every Pakistani on this post, this is coming from an Indian.
Summary:
A video shows actor Ranveer Singh dancing on the song 'Laila O Laila' at stylist Nitasha Gaurav's wedding party.
Summary:
Summary:
Before this match, England had last won a Test against Windies in September last year.
Summary:
Cricket legend Sachin Tendulkar has shared a video of himself urging the fans to "fill in the stadiums and support Indian teams wherever and whenever they are playing".
Summary:
The accident took place when the driver had been returning after dropping Mayor Kusum Sadrate at her residence.
Summary:
Two 1,000-year-old bronze idols of Emperor Raja Raja Chola and queen Lokmadevi, which went missing from Tamil Nadu's Brihadisvara Temple fifty years ago, have been recovered from a private museum in Gujarat's Ahmedabad.
Summary:
Around 32 pilgrims from Hyderabad are stranded in Iraq after the travel agency which organised their trip shut down following a police investigation against it.
Summary:
This comes after members of an upper caste objected to a 22-year-old Dalit youth adding 'Sinh' to his name, leading to clashes and cross-complaints between the communities.
Summary:
After police said a BJP worker found hanging in West Bengal's Purlia had committed suicide, the party alleged police are trying to shield the murderers associated with Trinamool Congress.
Summary:
A school teacher in the US state of Idaho has been charged with animal cruelty after he fed a sick puppy to a turtle while demonstrating the circle of life to his students.
Summary:
Claiming that Rajinikanth's upcoming film 'Kaala' is based on his father who was nicknamed 'Kaala Seth', Mumbai-based journalist Jawahar Nadar has sought â¹100 crore in a defamation case against Rajinikanth and director Pa Ranjith.
Summary:
After watching the viral video of Sanjeev Shrivastava, a professor dancing to his song 'Aap Ke Aa Jane Se' at a wedding, Govinda said, "It's so nice to see somebody copying you." Govinda added that he even showed the video to his wife Sunita.
Summary:
He said the BJP will contest the elections under the leadership of PM Narendra Modi.
Summary:
PM Trudeau and his family had faced criticism over "choreographed cuteness" for wearing Indian outfits during the trip.
Summary:
Goel said he wants to run for Governor "to show people that the everyday person can make a difference".
Summary:
Nearly half of the Afghan children are missing out on school due to on-going conflict, poverty, and discrimination against girls, according to a report by UNICEF.
Summary:
Another fan commented, "He looks thin." The photo also received comments such as "weak" and "skinny" to describe the actor's appearance.n
Summary:
Actor Vicky Kaushal has said that even during his struggle period, he knew acting was what he wanted to do.
Vicky further said, "Whatever be the struggles, I was enjoying it...
Summary:
The show has reportedly planned to play a role in getting the society to accept homosexuality.
Summary:
Talking about his video urging countrymen to watch Indian football team's matches from stadiums, captain Sunil Chhetri said "there's no hidden agenda or propaganda" behind the video.
"Please get involved...this is an important time...in Indian football," he had said in the video.
Summary:
During the second England-Pakistan Test, cameras showed the top of the handle of batsman Jos Buttler's bat which had "F**k It" written on it.
Summary:
Kagiso Rabada, who bagged six awards at Cricket South Africa's annual awards ceremony, mistakenly posed with 'Women's Cricketer of the Year' trophy.
Summary:
Summary:
India will face Kenya on June 4 and New Zealand on June 7.
Summary:
UFC fighter Jimmie Rivera's 20-match winning streak ended 33 seconds into the first round by opponent Marlon Moraes' high kick.
Summary:
Former Pakistani fast bowler Wasim Akram holds the record for smashing the highest score while batting at number eight in a Test match.
Summary:
After post-mortem reports claimed that a BJP worker who was found hanging from an electricity pole in West Bengal had committed suicide, his father said that Trinamool Congress workers were responsible for his death.
Summary:
Former Central Information Commissioner (CIC) Shailesh Gandhi has said that any Information Officer who wilfully provides wrong information to an RTI application can be penalised and disciplinary action could be taken against him.
Summary:
The accused jawan, who hailed from Visakhapatnam and was posted in Kolkata, is currently absconding.
Summary:
Sale details and returns were allegedly fabricated to cover up the illegal sales.
Summary:
An Indian man named Dickson Kattithara Abraham has won 10 million dirham (over â¹18 crore) in a lottery in Abu Dhabi.
Summary:
Earlier, the state prohibited teachers from using their phones during school hours.
Summary:
A senior scientist at the National Institute of Nutrition in Hyderabad was arrested on Saturday for allegedly sexually harassing a Dalit student.
Summary:
Two Border Security Force (BFS) personnel were martyred in sniper fire by Pakistani forces late on Saturday, according to the BSF.
Summary:
Days after a 20-year-old woman was allegedly gangraped at a Goan beach, BJP leader Sulakshana Sawant said the government cannot provide security to every individual.
Summary:
He added that it will be a "bumpy road" to the nuclear negotiations with North Korea on June 12.
Summary:
NATO Secretary General Jens Stoltenberg has said that the alliance would not come to Israel's defence in case of an attack by Iran.
Stoltenberg's statement comes amid heightened tensions between Israel and Iran.
Summary:
Actor Akshay Kumar has said that endorsing a harmful product or service is incorrect.
Summary:
Researchers from CNRS in France have designed a flying robot 'Quad-Morphing' which can change its shape during flight.
Summary:
Further, party leader Kamal Nath said Election Commission has been given evidence of 60 lakh fake voters.
Summary:
Another BJP worker was earlier found hanging from a tree, with a note on his shirt claiming that he was killed because of his political affiliation.
Summary:
A drone footage of the mouth of Hawaii's Kilauea volcano has revealed a crater measuring around 120 acres or roughly about the size of 90 American football fields.
Summary:
The West Bengal Governor will be paid the highest allowance at â¹1.81 crore, while the Tamil Nadu Governor will get â¹1.66 crore and the Bihar Governor will be paid â¹1.62 crore, according to new government guidelines.
Summary:
The incident reportedly prompted a security scare as air traffic controllers could not establish contact with the aircraft after it entered Mauritian airspace.
Summary:
She said, "Shelling is still going on on our borders.
Summary:
However, defence officials said 500 people were placed in Army shelters after clashes erupted between Punjabi and Khasi communities.
Summary:
The Army has rescued 500 people from disturbed areas in Meghalaya's Shillong after incidents of violence and arson were reported amid communal clashes in the capital.
Summary:
China also plans to build environment friendly toilets and waste collection sites at Mount Everest.
Summary:
Actress Tamannaah Bhatia has said that a film is not just about the art form but also how it fares at the box office.
Summary:
Kareena and Akshay will reportedly be playing the older couple trying to have a child.
Summary:
World number one tennis player Rafael Nadal portrayed Colombian singer Shakira's love interest in the official video of her 2009 song 'Gypsy'.
"Shakira, as always, was spectacular.
Summary:
Summary:
Summary:
South Africa's Dale Steyn has revealed AB de Villiers "almost fell flat on his face" while going out to bat before scoring the fastest ODI ton at the Wanderers in 2015.
Summary:
Cricketer Suresh Raina on Sunday took to Twitter to urge fans to support Sunil Chhetri and Indian football team for their "amazing efforts and progress".
Summary:
Union Minister for Minority Affairs Mukhtar Abbas Naqvi on Sunday said minorities are safer in India than in any other democratic country.
Summary:
Summary:
Railway Minister Piyush Goyal has warned heads of zonal railways that delays in train services will defer their appraisal proportionately, a senior official has said.
Summary:
Summary:
The UN Human Rights Commission experts have condemned the police firing that took place in Tamil Nadu's Tuticorin during the anti-Sterlite protests in which at least 13 people were killed.
Summary:
Union IT Minister Ravi Shankar Prasad has said, "Artificial Intelligence should be used for governance...for improvement." Dismissing concerns that technology may displace jobs, he added, "If a person is not up to date in new technology, then he may have a problem.
Summary:
Delhi Environment Minister Imran Hussain has called for requesting agencies like the forest department and municipal corporations for arranging water for birds and animals during the summer months.
Summary:
The Maldives government has issued a notice seeking $20.5 million towards income tax and penalties from GMR Male International Airport, a GMR Group company.
Summary:
State-owned ONGC has incurred a â¹4,000-crore loss on natural gas output in FY18 as the government mandated price for the fuel was less than the cost of production.
Summary:
Tamil actress Sangeetha Balan, who is known for her role TV serials including 'Vani Rani', has been arrested for allegedly running a prostitution racket in a private resort in Chennai.
Summary:
'Main Badhiya Tu Bhi Badhiya', the first song from Ranbir Kapoor and Sonam Kapoor starrer 'Sanju' has been released.
Summary:
Boxing legend Muhammad Ali, who passed away on June 3, 2016, once dodged 21 punches in 10 seconds as a 35-year-old fighting against then 19-year-old Michael Dokes.
Summary:
The muscle-robot which was tested resembled a human finger and successfully picked up and moved a ring.
Summary:
Italian luxury vehicle manufacturer Maserati has announced plans to launch the Alfieri electric sports car which can go from 0-100 kmph in under 2 seconds.
Summary:
A Delhi court has held that a father's maintenance payments towards his child cannot be limited to two meals a day and should be determined by what the child would have enjoyed if they lived together.
Summary:
The government transport office in Uttar Pradesh's Mathura has issued driving licences to two people who had passed away in separate road accidents in 2017.
Summary:
Indian Medical Association President Ravi Wankhedkar on Saturday said Nipah virus is no longer a threat in Kerala, adding that 300 doctors from across the nation have arrived in the state.
Summary:
India successfully test-fired the indigenously developed and nuclear-capable Long Range Ballistic Missile Agni 5 on Sunday.
Summary:
A witness claimed the valet must have "panicked" and accelerated the Porsche under the car.
Summary:
International passengers buying goods at airport duty-free shops will not be subjected to GST, according to officials.
Summary:
World number one Test bowler Kagiso Rabada bagged six trophies of the eight he was eligible for at the annual Cricket South Africa awards on Saturday, becoming the first cricketer to achieve the feat twice.
Summary:
Spain's world number one tennis player Rafael Nadal, who turned 32 today, has an asteroid named after him.
Summary:
Muhammad Ali's youngest daughter Laila Ali retired as an unbeaten boxer after having held the WBC, WIBA, IWBF, IBA super-middleweight titles alongside the IWBF light-heavyweight title.
Summary:
The Nigerian football team's over 30 lakh World Cup replica shirts were sold out within 15 minutes after being made available for pre-order online on Friday.
Summary:
Dhawan said when he was in Australia, he took Shane Watson's catch and since he likes to watch kabaddi he adopted the celebration.
Summary:
Alibaba has introduced a self-driving robot called 'G Plus' that uses LiDAR technology to navigate at a speed of about 16 kmph.
Summary:
A passenger onboard a Dubai-Mumbai Air India flight prompted a scare after he dropped a burning cigarette stub in the bathroom's dustbin which caught fire.
Summary:
Summary:
Summary:
Textiles Minister Smriti Irani on Saturday said that the coming together of several parties against the BJP is a backhanded compliment to PM Narendra Modi as it shows they can't win on their own.
Summary:
German automotive giant Daimler is reportedly facing a $4.4-billion fine from the country's transport ministry over a diesel emissions scandal.
Summary:
Tripura Chief Minister Biplab Deb on Sunday said that if the youth took up Union Sports Minister Rajyavardhan Rathore's fitness challenge then the state would develop a 56-inch chest.
Summary:
The unemployed youth were allegedly duped by an agency which promised them employment and sought â¹65,000 to â¹80,000 from each of them.
Summary:
Tata Sons also rejected claims the gift agreement was brokered between HBS Dean Nitin Nohria and Ratan Tata.
Summary:
Importers are required to obtain a licence from government for importing gold and silver from South Korea.
Summary:
The country's largest fuel retailer Indian Oil Corporation has increased the prices of aviation turbine fuel for the 11th straight month, adding to the costs of airlines.
Summary:
After Indian football captain Sunil Chhetri posted a video urging Indians to support Indian football, Indian cricket captain Virat Kohli posted a video, asking Indians to take notice of his 'good friend' and make an effort.
Summary:
Not a single Malaysian player scored in double-digits.
Summary:
When the girl didn't reach home, locals went to the accused's house and found her body in the container.
Summary:
Civil Aviation Minister Suresh Prabhu has asked French aircraft manufacturer Airbus to build planes in India under the 'Make in India' initiative.
Summary:
The CBI on Friday questioned alleged lobbyist Rajender Dubey in connection with alleged malpractices by AirAsia India in securing international flying permit.
Summary:
After Air India's sale bid closed without a single offer, the Finance Ministry is reportedly planning to include the carrier's prime real estate to make it more lucrative for the buyer.
Summary:
Losses by public sector banks in FY18 have almost entirely wiped out government's capital injections of $13 billion, ratings agency Fitch has said.
Summary:
An average employee in Mumbai works 3,315 hours a year, the most among 77 major cities of the world, according to a study by Swiss investment bank UBS.
Summary:
Actress Shilpa Shetty has said that she wants to do a funny film that is entertaining and if possible show it to her son Viaan Raj Kundra.
Summary:
In an open letter on remix versions of songs, Lata Mangeshkar wrote that she feels hurt when the original tune is distorted and new and cheap words are added.
Summary:
Pakistani international batsman Fawad Alam broke a window pane after he was given 'timed out' while playing for the Clitheroe Cricket Club in England's Lancashire League.
Summary:
Bangladesh players including captain Shakib Al Hasan sung and performed to a Bengali song named 'Oporadhi' in the dressing room.
Summary:
They claim that Norman was trained on image captions from a subreddit dedicated to documenting death.
Summary:
Interestingly, Cloudtail is a joint venture between Amazon and Infosys Co-founder Narayana Murthy's Catamaran Ventures.
Summary:
Senior Congress leader Jairam Ramesh has written a letter to former President Pranab Mukherjee asking him to not attend an RSS event on June 7 in Nagpur.
Summary:
The Karnataka government recently issued a circular banning teachers at private and government schools from using mobiles and allowing the students to report if the ban is not adhered to.
Summary:
Chief Election Commissioner (CEC) OP Rawat onâÂÂSaturday said that the identities of those using the commission's mobile app to expose electoral malpractices will not be disclosed.
Summary:
The All India Jat Aarakshan Sangharsh Samiti has threatened to disrupt Haryana CM Manohar Lal Khattar's events and rallies if the government did not act to vacate the court stay on their reservation.
Summary:
Officials have managed to vacate 286 families from the 'extremely dangerous' buildings and sent notices to the remaining 117 families to vacate.
Summary:
The Hindu Janajagruti Samiti on Saturday claimed that the man arrested recently for allegedly murdering journalist Gauri Lankesh has not been part of the organisation since 2008.
Summary:
Congress Councillor Gurdeep Singh was shot dead by unidentified assailants at a wrestling arena in a stadium in Amritsar's Gol Bagh on Saturday.
Summary:
BJP leader Jagannath Singh Raghuvanshi on Saturday allegedly threatened a government employee for asking him to clear his â¹4-lakh electricity bill in Madhya Pradesh's Isagarh.
Summary:
The Navy sent its ship INS Sunayna as part of 'Operation Nistar' to evacuate the Indians.
Summary:
French Finance Minister Bruno Le Maire has warned that the US has a few days to take urgent measures if it wants to avoid a trade war with the European Union.
Summary:
Following his meeting with senior North Korean official Kim Yong-chol, US President Donald Trump said he had received a letter sent by North Korean leader Kim Jong-un and that it was "very nice and very interesting".
Summary:
Summary:
The policies being pursued by US President Donald Trump are likely to worsen the problem of child poverty in the country, the UN Special Rapporteur on extreme poverty and human rights has said.
Summary:
Officials in Thailand said that a whale has died in the southern part of the nation after swallowing more than 80 plastic bags weighing around 8 kgs.
Summary:
"To all of you...who donâÂÂt have any hope in Indian football...Come to the stadium...scream at us...abuse us...who knows one day we might change you," he said.
Summary:
Former Brazilian footballer Roberto Carlos scored a 35-metre banana free kick, called the 'goal which defied Physics', with no direct line to the goal against France on June 3, 1997.
Summary:
Besides an orchid at National Orchid Garden in Singapore which was named 'Dendrobium Narendra Modi' on Saturday, PM Modi has two more flowers named after him.
Summary:
A couple from Kerala's Kochi abandoned their two-day-old baby outside a church, fearing being shamed by the society for having a fourth child, police said.
Summary:
'From Kargil To The Coup', written by Nasim Zehra, has claimed that former Pakistan PM Nawaz Sharif was unaware of the Army's operation to infiltrate key positions in the Kargil sector which began in January 1999.
Summary:
The Himachal Pradesh Department of Education on Saturday decided to close all government schools in Shimla from June 4 to June 8 due to the water crisis in the region.
Summary:
"There will be 1,000 products at prices below â¹200 when we open our store," he added.
Summary:
Tweeting about the box office success of her latest film 'Veere Di Wedding', Sonam Kapoor wrote, "Clearly the future is female!" "Third highest opener this year for a film without a hero and an adult rating," she added while talking about the film's first day collection.
Summary:
Kangana Ranaut has said that Indian women should know how to drape a sari.
Earlier, designer Sabyasachi Mukherjee had said, "If...you don't know how to wear sari, I'd say shame on you.
Summary:
Summary:
Later, he gifted the racquet to a young fan.
Summary:
Stokes, who's not playing due to a hamstring injury, briefly halted play due to being in Cook's line of vision during England's first innings.
Summary:
Rohit Sharma will become the first Indian cricketer to throw the ceremonial 'First Pitch' in a Major League Baseball match.
Summary:
Apple is reportedly planning to introduce an augmented reality (AR) tool which would allow iPhone users to share AR while limiting the personal data sent to its servers.
Summary:
US restaurant chain Buffalo Wild Wings has apologised for "awful" posts that appeared on its Twitter account after it was hacked.
Summary:
After a Netherlands-based body's report claimed granite quarries in India witness slavery and child labour, a National Commission for Protection of Child Rights study has found the claims to be untrue.
Summary:
Upon investigation, the police traced the sweeper who revealed he had created Badnore's fake profile to earn fame and money.
Summary:
Over 750 people were kept in these centres against their will, it added.
Summary:
A 92-year-old man in Rajasthan's Bhilwara was on Saturday sentenced to 10 years in prison for raping a mentally-challenged minor girl in 2009.
Summary:
After several farmer outfits began a 10-day strike across India, Union Agriculture Minister Radha Mohan Singh said, "Media mein aane ke liye anokha kaam karna hi padta hai" (People do unique things to get media coverage).
Summary:
The incident took place when the woman was walking on the Mall Road with her daughter-in-law and grandchildren, and the driver was driving the water tanker rashly.
Summary:
US President Donald Trump on Friday said that he "did not like" the recent meeting between North Korean leader Kim Jong-un and Russian Foreign Minister Sergei Lavrov.
Summary:
The CBI has booked 13 serving and retired officials of ONGC in connection with a â¹80 crore scam.
Summary:
Avinash Patra was arrested at his office while accepting the bribe from a contractor.
Summary:
Whirlpool India has said its board has approved a proposal to enter into a strategic joint venture with Elica and acquire 49% stake in Elica PB India.
Summary:
After a video of him dancing to a Govinda song went viral on social media, engineering professor Sanjeev Shrivastava was on Saturday appointed as the brand ambassador of Madhya Pradesh's Vidisha Municipal Corporation.
Summary:
Actor Arbaaz Khan on Saturday confessed he had been placing bets for six years.
Summary:
A cat named Achilles will predict the winners of 2018 FIFA World Cup matches by choosing between two mice, who will be kept in bowls marked with team flags.
Summary:
Tencent claimed that Toutiao intentionally tweaked a state media report's headline to highlight the company's name in a negative story while the essay also criticised other companies.
Summary:
Earlier, Mulayam had asked for two years to vacate his government bungalow.
Summary:
In a letter to Union Ministers Suresh Prabhu and Maneka Gandhi, an air hostess, who claimed an Air India executive sexually harassed her for 6 years, has named him as Captain Darryl Pais.
Summary:
The abductors administered Rajiv Kumar with sedatives after promising to drop him to Haridwar for â¹250.
Summary:
The Western Railway's Rajkot division is planning to launch a 15-day awareness drive to educate passengers about carrying excess luggage in the trains and the penalty charged on it.
Summary:
BSP Supremo Mayawati on Saturday vacated her 10-bedroom government bungalow, which has been converted into a memorial for her mentor Kanshi Ram. Five of six ex-Uttar Pradesh CMs have vacated their government accommodations a day ahead of the Supreme Court deadline.
Summary:
The authorities at Golden Temple claimed they paid â¹2 crore as GST for purchasing items for langar between July 2017 to January 2018.
Summary:
Myanmar has said it is willing to take back all 7 lakh Rohingya refugees if they volunteer to return.
Summary:
Hollywood director Brian De Palma has said he is writing a horror film based on rape-accused producer Harvey Weinstein.
Summary:
Kriti Sanon will feature in a song in the film 'Kalank', starring Varun Dhawan and Alia Bhatt.
'Kalank' will also star Madhuri Dixit and Sanjay Dutt among others.
Summary:
Malayalam actor Mohanlal took to Facebook to pay condolence to his fan Rasil Bhaskar who passed away due to Nipah virus infection.
Summary:
Denying rumours of catfights on the sets of the Hollywood film 'Ocean's 8', actress Anne Hathaway said, "We're friends.
Talking about herself and the other seven lead actresses, Anne said, "Media...wanted us to fight."
Summary:
Texas' 14-year-old Indian-American Karthik Nemmani won the 91st Scripps National Spelling Bee on Thursday by successfully spelling out the word 'koinonia'.
Summary:
"My partner cut the vegetables & fish with the same precision with which he does in rook endings," Anand said about Ding.
Summary:
Afghanistan cricket team coach Phil Simmons has said that leg-spinner Rashid Khan is 19 years old but he has "got the mind of a 30-year-old".
Summary:
Aesha revealed once Dhawan cooked fish for their daughters when she was not at home and when she returned, the whole house "stunk like fish".
Summary:
The Indian passport secured the 76th rank in the index with its holders getting visa-free access to 59 countries.
Summary:
BJP spokesperson Rajnish Agrawal has claimed that Madhya Pradesh Congress chief Kamal Nath invited Congress President Rahul Gandhi to the death anniversary of late OBC leader Subhash Yadav to gather votes from the OBC community.
Summary:
Andhra Pradesh CM Chandrababu Naidu termed the formation day of Telangana as a "black day", stating that Congress and BJP "unscientifically bifurcated" Andhra Pradesh to create Telangana on June 2, 2014.
Summary:
Shimla is facing acute water shortage for over 10 days, prompting residents to request tourists to not visit the city.
Summary:
Union Minister Nitin Gadkari has said India should move to "alternative" fuels to find long-term solution of soaring prices of petrol and diesel.
Summary:
The incident took place days after the man's wife told him to stop abusing her during a family gathering, the police said.
Summary:
Saudi Arabia's King Salman bin Abdulaziz issued a royal order establishing a Ministry of Culture, separating it from the Information Ministry.
Summary:
Puerto Rico's Institute of Statistics has sued the Health Department and Demographic Registry to obtain data on the death toll in Hurricane Maria.
Summary:
Actor-producer Arbaaz Khan, who was called in for questioning by Thane Police in connection with a betting racket involving Dawood Ibrahim-linked bookie Sonu Jalan, admitted that he has been placing bets for last six years.
Summary:
Jalan had allegedly fixed the match by luring the pitch curator, along with partners Prem Taneja and Junior Kolkata.
Summary:
Boney Kapoor shared a video of his late wife Sridevi while tweeting, "Today would have been our 22nd wedding anniversary.
Summary:
Actor Benedict Cumberbatch, known for portraying Sherlock Holmes in the TV series 'Sherlock', jumped out of a taxi to fight off a gang of robbers and save a cyclist in London.
Summary:
IPL Chairman Rajeev Shukla has said that neither the BCCI nor the IPL has got "anything to do" with the Arbaaz Khan betting case.
Summary:
President Ram Nath Kovind gave his approval for setting up India's first-ever national sports university, in Manipur's capital Imphal.
Summary:
The Criminal Investigation Department will investigate the death of two BJP workers who were found hanging in West Bengal's Balrampur, police said.
Summary:
After the Nipah virus outbreak in Kerala claimed at least 18 lives, the state government announced that schools and colleges in Kozhikode will remain shut till June 12.
Summary:
State-run oil marketing companies lowered prices of petrol and diesel for the fourth consecutive day on Saturday.
Summary:
In its appeal against special CBI judge OP Saini's verdict acquitting former Telecom Minister A Raja and others in the 2G Spectrum case, the CBI has said the verdict was directionless and diffident.
Summary:
The US on Friday vetoed a Kuwait-drafted UN Security Council resolution that called for an international protection mission for Palestinian civilians.
Summary:
Shareholder activist Arvind Gupta has alleged ICICI CEO Chanda Kochhar's husband Deepak's firm received round-tripped funds of â¹453 crore from Essar Group, after Essar promoter Ravi Ruia got undue favours from ICICI.
Summary:
In a purported audio-clip of AirAsia CEO Tony Fernandes, he has been heard telling former CEO of AirAsia India Mittu Chandilya he was ready to get international flying licence for its Indian arm through "dirty way".
Summary:
Sharing a portrait of his father and late actor Raj Kapoor on his death anniversary, Rishi Kapoor tweeted, "Remembering you." Raj Kapoor passed away due to complications related to asthma at the age of 63.
Summary:
Summary:
Actress Kajol, while speaking about pay parity in Bollywood, said, "The pay should be according to genre, how the box office is and box office success." "Pay equality is coming up to par.
Summary:
Real Madrid captain Sergio Ramos has reportedly changed his phone number after he allegedly injured Liverpool forward Mohamed Salah in the Champions League final last week.
Summary:
The Yemen-based branch of terrorist outfit al-Qaeda sent a warning to the Crown Prince of Saudi Arabia Mohammad bin Salman for hosting the WWE Greatest Royal Rumble in April.
Summary:
Members of the England national football team played kabaddi as part of their practice session while preparing for the upcoming FIFA World Cup 2018.
Summary:
The American state of Vermont is paying people $10,000 (approximately â¹6.7 lakh) to relocate to the state and work remotely while residing in the state.
Summary:
After two BJP workers were found hanging in West Bengal's Balrampur district this week, BJP leader Shahnawaz Hussain termed the ruling Trinamool Congress (TMC) party as the "Taliban Congress party".
Summary:
Walmart COO Judith McKenna has said the company has "no objections" to bringing investors for Flipkart if it makes sense for them and the company.
Summary:
US Food and Drug Administration has approved the first prosthetic iris that can be implanted to treat patients with missing or damaged iris (coloured part of the eye).
Summary:
A lawyer from Sitamarhi, Bihar, has filed a complaint against UP Deputy CM Dinesh Sharma for comparing Sita's birth from an earthen pot to that of test tube babies.
Summary:
The restoration would allow delivering posts through direct flights between Cuba and the US.
Summary:
Spain's Catalonia region sworn in a new government on Saturday, ending a seven-month direct rule by the central government.
Summary:
The price was short of the record $3.46-million paid for the lunch in 2012 and 2016.
Summary:
This comes after actor-producer Arbaaz Khan confessed to betting in IPL, days after the arrest of Dawood Ibrahim-linked bookie Sonu Jalan.
Summary:
Mumbai-based bookie Sonu Jalan, who placed bets for actor-producer Arbaaz Khan for IPL matches, allegedly has links with underworld don Dawood Ibrahim.
Summary:
Addressing students in Singapore, PM Narendra Modi said he has not taken a vacation for even 15 minutes since 2001.
Summary:
Harley, who was first introduced in March on trial, will be returning to the airport in July.
Summary:
Summary:
Summary:
While talking about the immediate synergies between Walmart and Flipkart, Indian e-commerce firm's Co-founder Binny Bansal said, "We'll be looking at Indian sellers selling on different Walmart properties across the globe." Bansal added the US retail giant wants Flipkart to expand, as e-commerce makes only 2.5% of the whole retail market.
Summary:
On the other hand, farmers in Punjab and Maharashtra were seen spilling milk and dumping vegetables on roads.
Summary:
A waiter in a Chennai restaurant on Friday found a bag containing â¹25 lakh, which was left by a customer, and immediately gave the bag to his manager.
Summary:
Thailand's space agency is planning to send durian, regarded as the world's smelliest fruit, into space.
Summary:
Summary:
Reports added that a younger couple will also star in the film.
Summary:
Chalo in this special case your Dharamji too." The caption is a take on the dialogue 'Our business is our business, none of your business' delivered by Daisy Shah in 'Race 3'.
Summary:
The Indian selection committee has named Dinesh Karthik as Saha's replacement for the Test.
Summary:
Pakistani cricketer Shahid Afridi mocked 19-year-old Afghan spinner Rashid Khan for dropping a catch in the former Pakistani captain's last international match when both players were representing the World XI against Windies on Thursday.
Summary:
Tyroo is part of Smile Group which has worked with Airbnb, LinkedIn, and Facebook, among others.
Summary:
Talking about growing political opposition to the Walmart-Flipkart deal, Walmart India head Krish Iyer said, "We believe that we've met all the legal requirements fully so we do not expect any hurdles." Iyer emphasised that the deal only requires approval by the Competition Commission of India.
Summary:
Stanford University scientists have developed an artificial sensory nerve system that could lend a sense of touch in prosthetic limbs and give future robots reflex capability.
Summary:
A plea has been filed in the Delhi High Court seeking directions to the Centre to declare the disputed Ram Janmabhoomi-Babri Masjid site in Ayodhya as "national heritage".
Summary:
As many as 15 people were killed and nine were injured in the thunderstorm that had hit several parts of Uttar Pradesh on Friday.
Summary:
Around 1,000 constables will be deployed only for patrolling purposes at night in Gurugram, Haryana CM Manohar Lal Khattar has said.
Summary:
The J&K Police has booked a CRPF personnel for rash driving after he ran over three stone-pelting youth, of which one succumbed to injuries on Saturday.
Summary:
Former J&K CM Omar Abdullah on Friday took to Twitter to slam the government as a 21-year-old youth died after being hit by a CRPF vehicle.
Summary:
Mukerjea was earlier admitted in April when she fell unconscious in her prison cell after a drug overdose.
Summary:
A dust storm with a wind speed of 40 km/hr had hit the capital on Friday night and significantly brought down the temperature.
Summary:
Bangladesh has expressed its concerns over reports that China is planning to construct dams on the Brahmaputra river.
Summary:
Boyle and his wife were kidnapped by the Taliban in 2012.
Summary:
Arbaaz reportedly lost nearly â¹3 crore, with Jalan threatening the former that his name will be exposed if he doesn't pay.
Summary:
BJP leader Kailash Vijayvargiya has decided to write to I&B Minister Rajyavardhan Rathore, requesting him to stop the usage of the term 'Bollywood' for the Hindi film industry.
Summary:
'Baaghi 2' remains the highest opener of 2018, followed by 'Padmaavat'.
Summary:
Question-and-answer platform Quora was launched in Hindi on Thursday while the company's India head Gautam Shewakramani said other Indian languages would be available within a few months.
Summary:
GitHub, which raised $250 million in funding led by Sequoia Capital in 2015, was reportedly valued at $2 billion following the round.
Summary:
Earlier, over 3,100 Google employees signed a petition urging the company's CEO Sundar Pichai to abandon the project.
Summary:
The body of another BJP worker was found hanging by an electric pole in West Bengal's Purulia on Saturday.
Summary:
Police have arrested a taxi driver for allegedly raping a Japanese national in Himachal Pradesh's Kullu on Friday.
Summary:
PM Narendra Modi, along with Singapore's former premier Goh Chok Tong, unveiled a plaque dedicated to Mahatma Gandhi at Clifford Pier in the city-state, where his ashes were immersed.
Summary:
Lieutenant General Ranbir Singh who announced the surgical strikes against Pakistan, has been appointed as the new Northern Army Commander.
Summary:
The 29-year-old freelance writer, who created a dowry calculator website, has refused to take down the online portal despite Women and Child Development Minister Maneka Gandhi's opposition to the site.
Summary:
A 21-year-old youth in Kashmir on Saturday succumbed to injuries sustained when he and two others were hit by a CRPF vehicle on Friday.
Summary:
An orchid has been named as 'Dendrobium Narendra Modi' as a special gesture for PM Modi during his visit to Singapore on Saturday.
Summary:
A Russian pilot, who was missing presumed dead after his plane was shot down three decades ago during the Soviet intervention in Afghanistan, has been found alive, military veterans have said.
Summary:
US Defence Secretary James Mattis on Saturday said the US will compete vigorously with China over its actions in the South China Sea if needed.
Summary:
The US imposed a 25% and 10% tariff on steel and aluminium imports respectively against the EU, Mexico and Canada.
Summary:
Taapsee added, "With the respect I have for a talent like Nawaz, I...wish we work together in future."
Summary:
Shahid Kapoor has said he isn't afraid of losing out on fame and popularity.
Shahid further said, "I'm afraid of losing out on opportunities to work with the best filmmakers...or get the best opportunities."
Summary:
Apple has reportedly been working on an initiative called 'Digital Health', as a part of which it will introduce tools to let users monitor the time they spend on their devices.
Summary:
The Ministry of Electronics and Information Technology has asked the National Payment Corporation of India (NPCI) for details about WhatsApp's payments service, including where it stores transaction data.
Summary:
Green tea could help prevent deaths from heart attacks caused by fat and cholesterol build-up, according to a UK-based study.
Summary:
A blue whale, the largest animal on Earth, was sighted in the Red Sea for the first time although no one was able to capture its photos, Egypt's environment ministry has said.
Summary:
The merger of two fuel-exhausted neutron stars that generated gravitational waves detected last August likely gave birth to the lowest mass black hole ever found, a US-based study suggests.
Summary:
The power demand in Delhi broke its previous record of 6,526 megawatt by rising up to 6,651 megawatt on Friday.
Summary:
Union Minister for Women and Child Development Maneka Gandhi on Friday said there was no forensic analysis in 13,000 out of 16,000 rape cases every year due to lack of capacity in Indian laboratories.
Summary:
Ahead of the 34th anniversary of Operation Blue Star, Akal Takht jathedar Giani Gurbachan Singh on Friday appealed to Sikh bodies to observe the day peacefully and to avoid sloganeering inside Amritsar's Golden Temple.
Summary:
The protesting farmers have been demanding a loan waiver, minimum support price for their produce and implementation of the Swaminathan Commission recommendations.
Summary:
Earlier, Trump had cancelled the summit, citing North Korea's "anger and hostility".
Summary:
Indian football captain Sunil Chhetri jumped to the joint-third spot on the list of active international goal-scorers, behind Cristiano Ronaldo and Lionel Messi, after hitting his first international hat-trick in eight years on Friday.
Summary:
Indian spinner Yuzvendra Chahal has revealed that during India's Zimbabwe tour MS Dhoni, who handed him his ODI cap, came to him and asked to call him anything but 'Mahi Sir'.
Summary:
US-based cybersecurity company Palo Alto Networks has appointed Nikesh Arora as its new Chief Executive Officer and Chairman of the Board of Directors.
Summary:
Facebook has announced that it will remove the 'Trending' section from its platform next week, which was introduced in 2014 to help people discover news topics popular on Facebook.
Summary:
The therapy involves extracting stem cells from a patient's bone marrow and editing them with CRISPR, before injecting them back.
Summary:
Around 2,000 hamlets of Adivasi community across Telangana have put up banners declaring self-rule in Adivasi villages to protest against the government's indifference in addressing the conflict between Banjara Lambada community and Adivasis.
Summary:
China has announced that a delegation of troops from the People's Liberation Army will be visiting India this year for the first time since the 73-day standoff at Doklam.
Summary:
The Income Tax Department has announced three reward schemes under which people can get rewards amounting up to â¹5 crore if they provide information on tax evasion.
Summary:
Over 100 farmer groups across India have started a ten-day strike demanding complete loan waiver along with the implementation of recommendations of the Swaminathan commission report, which were tabled between 2004 and 2006.
Summary:
Delivering the keynote address at Shangri-La Dialogue in Singapore, Prime Minister Narendra Modi said India does not see the Indo-Pacific region as a club of limited members, adding that it should be "free, open and inclusive".
Summary:
Pakistan's Supreme Court on Friday overturned an Islamabad High Court verdict that disqualified former Pakistan Foreign Minister Khawaja Asif over his non-disclosure of holding a UAE work permit.
Summary:
Researchers estimated the losses by analysing the earning potential of the current labour force in 141 countries.
Summary:
Actor-producer Sanjay Dutt started shooting for his upcoming production 'Prasthaanam' on June 1, which marks the birth anniversary of his mother and late actress Nargis Dutt.
Summary:
Actress Bipasha Basu has said that among the recent films that have released, she would have loved to be a part of 'Avengers: Infinity War' while adding, "I would love to play a superhero." Talking about her future projects, she added, "Unfortunately, a lot of things did not work out for me...
Summary:
Television actor Raja Chaudhary has been booked for allegedly getting into a brawl with a group of people under the influence of alcohol in Kanpur on Friday.
Raja is known for appearing on 'Bigg Boss 2'.
Summary:
Amitabh Bachchan took to social media to share a picture with Ranbir Kapoor, Alia Bhatt and director Ayan Mukerji and mistakenly referred to Ranbir as Ranveer Singh in the caption.
"We prep for 'BrahmÃÂstra'...
Ranveer, Alia, Ayan...
Summary:
The handwritten menu of the first Indian restaurant opened in the UK has been auctioned for nearly â¹7.6 lakh.
Summary:
Summary:
Apple has approved an updated version of the Telegram iOS app, after the messaging company's CEO complained on Thursday that the iPhone maker was blocking updates worldwide since April due to a ban in Russia.
Summary:
Asserting that he's not interested in becoming a Prime Minister, Andhra Pradesh CM Chandrababu Naidu said, "I know how to do, what to do and when to do." "What I want is good governance...I will work as a soldier," Naidu added.
Summary:
"To stop Modi juggernaut across the country, many Opposition parties are coming together.
Summary:
The IRCTC has tied up with a startup and a self-help group, which is known for supplying good quality mangoes, to deliver Alphonso mangoes to the passengers' seats.
Summary:
A night curfew was imposed in Meghalaya's Shillong from 10 pm-5 am after a clash broke out between police and a mob.
Summary:
Lord Venkateswara's hill shrine in Andhra Pradesh's Tirupati received over â¹86 crore as offerings, excluding the worth of gold and other items dropped in the collection box, temple officials said.
Summary:
As many as 123 out of 222 MLAs in Karnataka won from their seats with a vote share less than 50%, a report released by the Association for Democratic Reforms (ADR) has revealed.
Summary:
Addressing an event in Singapore, PM Modi said no other relation of India had as many layers as its ties with China.
Summary:
Jalan had reportedly threatened Arbaaz that if he doesn't pay him, his name will be exposed.
Summary:
Former England captain Alastair Cook has set the world record for featuring in the most consecutive Test matches, after taking the field in his 154th straight Test against Pakistan on Friday.
Summary:
"Dance is a god-gifted talent in me," added Shrivastava.
Summary:
The world's largest known freshwater pearl was auctioned for over â¹2.5 crore on Thursday in the Netherlands.
Summary:
The Kerala Public Service Commission has postponed all OMR and online examinations scheduled till June 16 over Nipah virus outbreak in the state.
Summary:
CBI on Friday summoned former Finance Minister P Chidambaram for questioning in the INX Media case on June 6.
Summary:
All such people have to be closely watched," she said.
She further asked all such people to contact a special cell.
Summary:
The US imposed a 25% and 10% tariff on steel and aluminium imports respectively against the EU, Mexico and Canada.
Summary:
Idea Cellular has called an Extraordinary General Meeting on June 26 to decide on changing its name to "Vodafone Idea" post merger with Vodafone India.
Summary:
The regulator has also barred the firm's two former officials for 1 year.
Summary:
Hema Malini unveiled the poster of her daughter and actress Esha Deol's upcoming short film 'Cakewalk' and wrote, "Sharing the first look of my darling daughter." The film has been directed by Ram Kamal Mukherjee, who had also written Hema Malini's biography.
Summary:
Singer Zayn Malik will perform in India for the first time in August by holding concerts in Delhi, Mumbai, Kolkata and Hyderabad.
Summary:
Ali Fazal wished R Madhavan on his 48th birthday by sharing a picture of the two of them from the sets of the 2009 film '3 Idiots'.
Summary:
Kareena Kapoor Khan has said that she does not want five bodyguards around her son Taimur Ali Khan.
Summary:
Summary:
Talking about her relationship with boyfriend Rajkummar Rao, actress Patralekhaa said, "I didn't like him at all at first.
Summary:
"This was a big year for me," Rahul said about his performance in IPL.
Summary:
Michael Fitzpatrick, the Everton fan who had hit French club Lyon's goalkeeper Anthony Lopes twice in the face while carrying a toddler during a Europa League match in October last year, has been jailed for eight weeks.
Summary:
Sudhir took to Twitter to share pictures from the visit, writing, "Special day with captain cool Dhoni, super lunch with super family at farmhouse.
Summary:
Neevan, who is currently training under former Indian cricketer Vinod Kambli, posted a picture with the bat alongside Kohli.
Summary:
Andhra Pradesh has declared separate state symbols after it was bifurcated to create Telangana in 2014.
It declared Blackbuck as state animal, adding that it was symbolic of the state's ability to "take charge in uncertain situations and rise victorious".
Summary:
"Those people told us that if we offer namaz again, we will be killed," one of the victims said.
Summary:
The man had reportedly written in his will that he wished to be buried in his own car as opposed to the traditional coffin.
Summary:
Fernandes was accused of lobbying government officials to get international licence for AirAsia India.
Summary:
Ousted Tata Sons Chairman Cyrus Mistry has slammed AirAsia India director R Venkataramanan for using his name in the AirAsia corruption probe.
Summary:
Samsonite said Tainwala's resignation was in "best interests of the firm".
Summary:
India is the world's largest producer of milk, contributing about 19% of the world's total milk production with over 150 million tonnes of milk production every year.
Summary:
Pictures of Bollywood actor and producer Arbaaz Khan sitting with alleged bookies including Sonu Jalan have surfaced on the internet.
Summary:
Race 3's new song 'Allah Duhai Hai', the theme track of the 'Race' franchise, has been released.
Summary:
Talking about his sixth retirement from cricket, former Pakistan captain Shahid Afridi said, "No more comebacks." Afridi played his supposed final international match leading World XI against the Windies at Lord's in a one-off T20I on Thursday.
Summary:
The Congress and JD(S) will form a pre-poll alliance to contest the 2019 Lok Sabha elections, Congress MP KC Venugopal said on Friday.
Summary:
It also asked the government to file a response on the circumstances which led to the police firing.
Summary:
After the government got zero bids for Air India, Mahindra Group Chairman Anand Mahindra tweeted that the national carrier's stake sale was now a matter of "national pride".
Summary:
The Income Tax Department has announced a reward of up to â¹1 crore for people reporting specific information about Benami transactions and properties.
Summary:
A hospital in Kerala's Balussery has asked its staff, including nurses and four doctors, to go on leave from Friday after two people being treated in the hospital for Nipah virus died.
Summary:
The government had seized over 200 properties belonging to Saeed's Jamaat-ud-Dawah and Falah-i-Insaniat Foundation amid a crackdown on his organisations and charities.
Summary:
For the first time in the over 100-year history of Tata Trusts, the CBI raided the trust's office after its Managing Trustee R Venkataramanan was booked by CBI in AirAsia corruption probe, according to reports.
Summary:
Varun Dhawan injured himself while shooting action sequences for 'Kalank', as per reports.
Despite the injury, the actor will reportedly not take a break from the shoot.
Summary:
Sharing a picture with Amitabh Bachchan while preparing for 'BrahmÃÂstra', Alia Bhatt wrote, "Prep with the legend." The picture also features Ranbir Kapoor, whom Alia is dating currently, and the film's director Ayan Mukerji.
Summary:
Paresh added that while preparing for 'Sanju' in 2017, he received a call from his wife asking him what to do with the letter.
Summary:
Akshay Kumar's 'Toilet: Ek Prem Katha' will release in China as 'Toilet Hero' on June 8.
Summary:
Hollywood actress Nicole Kidman, while opening up about her first miscarriage in the 1990s at the age of 23 when she was married to actor Tom Cruise, said, "It's a huge, aching yearning." "The loss of a miscarriage is not talked about enough," she added.
Summary:
Former Indian cricketer Virender Sehwag took to Twitter to troll Nigerian footballer Emmanuel Emenike over his marriage to Iheoma Nnadi Amanda, who was crowned Most Beautiful Girl in Nigeria in 2014.
Summary:
While the most popular online platform among US teens is YouTube, used by 85% of the youth, followed by Instagram and Snapchat, Facebook is used by 51%.
Summary:
Uttar Pradesh BJP minister Laxmi Narayan Chaudhary on Friday said that BJP lost the bypolls in two constituencies as the party's supporters had left the state with their children for summer vacation.
Summary:
"Flipkart is engaging in buying of goods which are ultimately sold on their platform," CAIT said.
Summary:
According to UC Santa Cruz astronomers, a star close to a supermassive black hole in its galaxy's centre "would be torn apart by the black hole's gravity in a violent cataclysm called a tidal disruption event".
Summary:
During his visit to Singapore, PM Narendra Modi on Friday felicitated former Singaporean diplomat Tommy Koh with a Padma Shri award, India's fourth highest civilian award.
Summary:
Greer further said some rape cases should be considered as "non-consensual...sex" rather than a "spectacularly violent crime".
Summary:
CK Birla Group firm Orient Cement has terminated its â¹1,946-crore deal to acquire Jaypee Associates' two firms, Bhilai Jaypee Cement and Nigrie Cement Grinding Unit.
Summary:
The government on Friday said the GST collection in May fell to â¹94,016 crore, down from a record â¹1.03 trillion collected in April.
Summary:
The ICC has inducted the nations of Nepal, Scotland, Netherlands and UAE in the ODI team rankings.
Summary:
This comes after the police arrested 42-year-old bookie Sonu Jalan, who had evolved an online betting system for IPL 2018.
Summary:
Sharing the video, a user tweeted, "Best wedding performance selected by UNESCO," while another comment read, "We all may laugh and this is great entertainment, but look at the brilliant moves...
Summary:
The cover photo was also shot by a drone, a first in the publication's 95-year history.
Summary:
A video has surfaced, wherein BJP MLA Arjun Lal Garg in Rajasthan purportedly advised the Dewasi community to stop peddling drugs and smuggle gold instead as it's a bailable offence.
Prices of both are same but it was safer to do gold business than drug", Garg purportedly said.
Summary:
"There are 175 known moons orbiting the eight planets in our solar system.
Summary:
The Kerala High Court on Friday allowed a 19-year-old Muslim girl and an 18-year-old Muslim boy to live together, stating it cannot shut eyes to the reality of live-in relationships.
Summary:
The magazine issue, which hailed the new Saudi reforms, was criticised for ignoring the restrictions imposed on women.
Summary:
Pakistan's 2008-2013 government, led by Pakistan Peoples Party, was the first to complete the full five-year tenure.
Summary:
The Opposition Spanish Socialist Workers' Party leader Pedro Sanchez will replace Rajoy as the newÃÂ PM.
Summary:
ICICI Bank has denied reports that the bank asked its CEO Chanda Kochhar to "go on leave" until an internal probe against her in Videocon loan row is completed.
Summary:
Sanjay, in six looks from his 20s to 50s, will narrate his story to Ranbir in the song, reports added.
Summary:
Ranbir Kapoor told his ex-girlfriend Deepika Padukone that he's dating Alia Bhatt before confirming his relationship in an interview, as per reports.
Summary:
A Kuwaiti preacher has claimed that Liverpool forward and Premier League's top-scorer Mohamed Salah's injury in the Champions League final is "God's punishment" for breaking his nRamadan fast.
Summary:
Russian cosmonauts Oleg Artemyev and Anton Shkaplerov played football with the official 2018 FIFA World Cup ball on board the International Space Station.
Summary:
Summary:
"Party workers should not feel disappointed.
Summary:
As the Earth orbits amid the solar wind in a supersonic speed, it creates a bow-shock wave, which accelerates electrons to a high speed.
Summary:
The Punjab and Haryana High Court on Thursday set aside former Congress Haryana government's decision to regularise 20,000 contractual employees, stating the decision was made to appease voters ahead of state elections.
Summary:
Referring to popular belief that Sita was born in an earthen pot, Uttar Pradesh Deputy CM Dinesh Sharma said it shows that a concept similar to test tube babies existed during Ramayana.
Summary:
The Madras High Court has sought a response from the Tamil Nadu government on what led to the police firing during anti-Sterlite protests in Tuticorin, in which 13 were killed and nearly 100 injured.
Summary:
However, the father called the police, following which the man ordered his aides to kill the boy.
Summary:
Around 312 colleges affiliated with the Madhya Pradesh Medical Science University have allowed students to use 'Hinglish', a mixture of Hindi and English, for answering questions in oral and written examinations.
Summary:
The Haryana government has proposed to supply water to Delhi till the advent of monsoon if the Delhi government withdraws the cases it filed at the National Green Tribunal and Delhi High Court related to their water dispute.
Summary:
The manager had objected to the sub-inspector parking his vehicle in the wrong area and ordered deflating his vehicle's tyres.
Summary:
The family of a man who was shot dead by a police officer in the US has been awarded 4 US cents (nearly â¹2.7) in damages.
Summary:
Syrian President Bashar al-Assad has said that the US is "losing its cards" in Syria, namely the al-Nusra militant group and the Syrian Democratic Forces.
Summary:
The Enforcement Directorate has attached assets worth â¹4,701 crore of Gujarat-based firm Sterling Biotech over a â¹5,000-crore fraud.
Summary:
Comedian Bharti Singh has revealed her mother wanted to abort her due to financial conditions.
Bharti further said, "I remember, once, just before my performance, she was admitted to the ICU and I wasn't keen to perform.
Summary:
A Twitter user has claimed that Rishi Kapoor sent him an abusive message for criticising the trailer of his son Ranbir Kapoor's film 'Sanju'.
Summary:
The teaser of the upcoming film 'Laila Majnu', presented by Imtiaz Ali and produced by Ekta Kapoor, has been released.
The film is said to be a "modern retelling" of the love story of Laila-Majnu.
Summary:
Kolkata-based Pannalal (85) and Chaitali Chatterjee (76), who have watched every FIFA World Cup since 1982 from the stadium, will travel to Russia for their 10th World Cup.
Summary:
Calling Patanjali's newly launched messaging app 'Kimbho' a "security disaster", French security expert who goes by the alias Elliot Alderson has claimed that he could access the messages of all its users.
Summary:
Summary:
Congress' Maharashtra leader Radhakrishna Vikhe-Patil has demanded a ban on Flipkart as it was allegedly found to be the source of purchase for arms seized in Aurangabad.
Summary:
Hawaii's Kilauea volcano, which has been erupting for the past several weeks, is creating its own weather, the US Geological Survey has said.
Summary:
PM Narendra Modi launched BHIM, RuPay and SBI mobile payment applications in Singapore at a business event focussed on digital platforms.
Summary:
At least seven people were killed and 26 injured after a Himachal Road Transport Corporation (HRTC) bus rolled down a hill near Theog in Shimla.
Summary:
A special National Investigation Agency court in Patna on Friday sentenced to life imprisonment all five people convicted for carrying out the 2013 bomb blasts in Bodhgaya.
Summary:
The Election Commission on Thursday dispatched two teams to Uttar Pradesh's Kairana and Maharashtra's Bhandara-Gondia to study the reasons behind the "abnormally high" cases of failures and defects in VVPAT machines during bypolls.
Summary:
During their 10-day strike that began on Friday, farmers from various parts of the country were seen spilling milk and dumping vegetables and fruits on roads.
Summary:
Pakistan on Thursday directed the Interior Ministry to block the national identity card and passport of former President Pervez Musharraf, according to reports.
Summary:
North Korean leader Kim Jong-un complained of "US hegemonism" to Russia's visiting Foreign Minister Sergey Lavrov on Thursday.
Summary:
The former Pakistan captain Shahid Afridi-led World XI side lost to the Windies by 72 runs in the ICC Hurricane Relief T20 Challenge on Thursday.
Summary:
India's CWG 2014 and Asian Championships 2013 and 2015 gold medal-winner in discus throw, Vikas Gowda, has announced his retirement from the sport two months prior to the Asian Games 2018.
Summary:
Tabassum Hasan on Thursday won the Kairana bypolls to become the first Muslim from Uttar Pradesh to enter the Lok Sabha since 2014.
Summary:
Commenting on the incident, Tesla said it has "always been clear that Autopilot doesn't make the car impervious to all accidents."
Summary:
Gurugram-based online lending startup CoinTribe has raised $10 million in a Series B funding round led by Sabre Partners.
Summary:
Researchers said it could only be explained by dark matter having charge equal to one millionth that of an electron.
Summary:
US researchers have discovered a 130-million-year-old fossilised skull belonging to a reptile-like mammal that weighed around 1 kg.
Summary:
A 22-year-old rape accused and his two friends were arrested in Delhi for allegedly abducting and killing the rape survivor's uncle to take revenge.
Summary:
A 24-year-old Australian woman tourist was allegedly robbed at the Marina Beach on Wednesday.
After the woman approached the police, they helped in arranging a temporary visa and lodging a complaint with the Australian embassy.
Summary:
The government has hiked the rates for liquefied petroleum gas (LPG) for the first time this year, amid criticism for not curbing rising fuel prices for at least 16 consecutive days.
Summary:
US President Donald Trump pardoned conservative Indian-American writer Dinesh D'Souza on Thursday, who was convicted in 2014 of violating campaign finance laws and sentenced to five years of probation after admitting the crime.
Summary:
You can register yourself and shop from the largest collection of linen shirts starting at â¹999 from your nearest fbb/Big Bazaar store or on www.fbbonline.in.
Summary:
Actor Ranbir Kapoor has revealed that he has been a nicotine addict since the age of 15.
Summary:
Sonam Kapoor and Kareena Kapoor starrer 'Veere Di Wedding', which released today, "has a bold theme that defies stereotypes," wrote Bollywood Hungama.
It was rated 3.5/5 (Bollywood Hungama, TOI) and 2.5/5 (Koimoi).
Summary:
Commentator Nasser Hussain stood at the slip position, among others, to witness and talk about the cricketing action, while also chatting up with players at various points.
Summary:
Afridi, who was playing his last international match, was given a guard of honour by his World XI teammates.
Summary:
At Facebook's annual meeting, shareholder James McRitchie asked the company's CEO Mark Zuckerberg to "emulate George Washington, not Vladimir Putin." At the meeting where shareholders proposed to limit Zuckerberg's control, McRitchie called Facebook's current structure, a "corporate dictatorship".
Summary:
SoftBank Vision Fund will invest $2.25 billion in Cruise, the self-driving unit of General Motors, the automaker has announced.
Summary:
Nobel Prize laureate Malala Yousafzai has responded to a fake news article which claimed the Tesla car which was launched in space fell back down to Earth and crushed her.
Summary:
Six broccoli seeds were sent to the International Space Station as part of the cargo resupply mission launched this week.
Summary:
Andhra Pradesh government has announced a monthly allowance of â¹1,000 each to unemployed graduate youths in the state with an upper age limit of 35.
Summary:
Gujarat Anti-Terrorism Squad on Thursday arrested Ahmed Mohammed Lambu, a close aide of gangster Dawood Ibrahim, for his involvement in the 1993 Mumbai bomb blasts that killed 257 people and injured over 700 people.
Summary:
Summary:
The officials reportedly suspect that the terrorists are planning an attack on June 2, the 17th day of Ramadan.
Summary:
Farmers under the banner of Rashtriya Kisan Mahasangh went on a 10-day nationwide strike on Friday, demanding minimum income guarantee scheme and loan waiver among other things.
Summary:
India will go ahead with acquiring the S-400 anti-aircraft missile system from Russia despite the US warning against the procurement, reports said.
Summary:
Around 47.5 lakh houses has been approved under the scheme till now.
Summary:
14-year-old Indian-American boy, Karthik Nemmani, has won the 91st Scripps National Spelling Bee contest held annually in the US, becoming the 14th consecutive Indian-American champion in 11 consecutive years.
Summary:
Canadian PM Justin Trudeau on Thursday announced that the country would impose "retaliatory" tariffs on US imports following the US' imposition of steel and aluminium tariffs on imports from Canada.
Summary:
Responding to social media users trolling her outfits and saying she should dress 'like a mother', Kareena Kapoor said, "Just because I have had a baby doesn't mean I can't wear a short dress." "I don't know what's motherly dressing," she added.
Summary:
Apple has been preventing Telegram's secure messaging app from updating globally since Russia banned the service and ordered Apple to remove it from its online store, Telegram CEO Pavel Durov has claimed.
Summary:
Nokia has sold its digital health business along with 200 employees to France's Withings after the Finnish giant acquired it in 2016 for about $200 million.
Summary:
Summary:
NCP MP Supriya Sule has slammed the Maharashtra government for providing comic books featuring Chacha Chaudhary alongside PM Narendra Modi as supplementary reading material for school students.
Summary:
Shah is planning to start an incubator in sectors like consumer finance, healthcare, and education.
Summary:
The deal, reportedly worth over $1 billion, would boost Waymo's 600-minivan fleet by over 100 times.
Summary:
Google has been criticised for undercutting conservative voices and viewpoints.n
Summary:
Customers just need to Add "Big Bazaar" to their search to get these exclusive one-day offers.
Summary:
The newly-wed UK Royal, Prince Harry and Meghan Markle, are returning wedding gifts that are reportedly worth nearly â¹63 crore.
Summary:
Harshvardhan Kapoor starrer 'Bhavesh Joshi Superhero', which released today, "has an indigenous tone," wrote Hindustan Times (HT).
It was rated 3/5 (HT), 3.5/5 (TOI) and 2/5 (NDTV).
Summary:
Former Vishva Hindu Parishad chief Pravin Togadia's associate Govind Parashar on Thursday announced a reward of â¹2 lakh for anyone who thrashes actor Salman Khan publicly.
Summary:
Summary:
The umpires' per-day match fees will be increased from â¹20,000 to â¹40,000 for all matches except T20s, while a domestic cricketer is paid â¹35,000.
Summary:
Researchers at University of Southern California have developed an algorithm that analyses Twitter posts to predict when will protests turn violent.
Summary:
Uganda's Parliament passed a bill for "social media tax" imposing a daily fee of about 200 shillings (â¹3.57) for using platforms like WhatsApp, Facebook, and Twitter.
Summary:
Commenting on the development, Kamal said, "After working in the US for over a decade, I wanted to design an application for my country."
Summary:
After Bihar CM Nitish Kumar-led JD(U) was defeated in the Jokihat bypolls on Thursday, RJD leader Tejashwi Yadav said his party has shut the doors on Nitish and won't ally with him anymore.
Summary:
They also demanded a memorial for the 13 victims of police firing.
Summary:
Gujarat Board's Class 12 Sanskrit textbook 'Introduction to Sanskrit Language' claims that in Hindu mythology epic Ramayana, Sita was abducted by Ram instead of Ravana.
Summary:
Shimla Police on Thursday detained two people and booked 60 others as residents protested against the ongoing water crisis in the city.
Summary:
The Opposition in the African nation of Botswana has opposed using Electronic Voting Machines (EVMs) supplied by India for the general elections in the country in 2019.
Summary:
The neighbour then raped her in front of her husband, who threatened her against disclosing the incident.
Summary:
Private sector lender HDFC Bank added â¹23,577 crore to its market capitalisation on Thursday.
Summary:
The government had originally set a fiscal deficit target of 3.2% of GDP but revised it to 3.5% at the time of Budget 2018.
Summary:
Taking a light-hearted dig at Ranveer Singh's sense of style, Bachchan wrote, "This is the ultimate limit of excess...
ready to compete with Ranveer Singh." Replying to this, Ranveer commented, "Hahahaaa it's a no-contest!
Summary:
Ex-wicketkeeper Adam Gilchrist has revealed Australian coach Justin Langer wants his players to be "good enough blokes" that he would consider allowing them to marry his daughters.
If you aren't a good bloke, that's what people remember," Langer had earlier said.
Summary:
RCB leg-spinner Yuzvendra Chahal, in a recent interview, revealed ex-Australian cricketer Andrew Symonds' wife once cooked his favourite dish butter chicken for him in Australia.
Summary:
England cricketer Keaton Jennings, who has been pursuing a degree in accountancy for eight years, missed an exam on Wednesday after being called up to the national team for a Test against Pakistan.
Summary:
The World Football Cup matches are taking place at non-league grounds across the UK's capital.
Summary:
Nepal's 17-year-old spinner Sandeep Lamichhane on Thursday became the first-ever cricketer to make his international debut for a combined team (World XI/Asia XI/Africa XI).
Summary:
Sri Lanka's World Cup-winning captain Arjuna Ranatunga has alleged corruption in Sri Lankan cricket "goes right up to the top".
I'm so disappointed with ICC's anti-corruption unit," Ranatunga added.
Summary:
Slamming PM Narendra Modi, Delhi CM Arvind Kejriwal on Thursday tweeted that people were "missing an educated PM like Dr Manmohan Singh", alongside a report on the falling value of rupee.
Summary:
The assailant attacked the jawan on his back and tried to snatch the rifle, but fled when the jawan resisted.
Summary:
He was leading a seven-member team in dousing the fire when he slipped on a slope and fell into a gorge, dying on the spot.
Summary:
If confirmed, the 24-year-old might lose her Commonwealth Games gold medal.
Summary:
The government has not received any bids for Air India as the deadline for submitting initial bids for the national carrier ended on Thursday.
Summary:
After actor Amitabh Bachchan's promise to build a college in the Daulatpur village in Uttar Pradesh's Barabanki remained unfulfilled even after 10 years, locals resorted to crowdfunding and built a college themselves.
Summary:
Ahead of Afghanistan's debut Test, against India starting June 14, BCCI has announced that all international teams touring India for bilateral series will play at least one practice match against Afghanistan.
Summary:
Real Kashmir FC became the first football club from Jammu & Kashmir to qualify for the top division of India's I-League after claiming the 2nd Division title.
Summary:
Spinner Harbhajan Singh tweeted a picture of himself and MS Dhoni with the IPL trophy, calling Mumbai's Wankhede Stadium a "lucky" venue for both of them.
Summary:
Patanjali spokesperson SK Tijarawala said that this wasn't an official launch of the app and technical work is still in progress.
Summary:
The VID aims to give users the option of not sharing their Aadhaar number with service providers and give them a 16-digit temporarily generated VID instead.
Summary:
This comes after the father-son duo moved the apex court seeking appropriate time to vacate the residential accommodation.
Summary:
The US on Thursday imposed tariffs on steel and aluminium imports from Canada, Mexico and the European Union (EU).
Summary:
It ruled both the countries violated the rights of two al-Qaeda terror suspects who were tortured in detention.
Summary:
Patients seeking access to the experimental drugs will no longer need the permission of the Food and Drug Administration.
Summary:
Billionaire Anil Ambani-led Reliance Communications on Wednesday posted a net loss of â¹19,728 crore compared to a loss of â¹1,130 crore during the same period previous year.
Summary:
Thirty-eight listed Indian banks accounted for gross bad loans totalling over â¹10.17 lakh crore for the quarter ended March.
Summary:
Markets regulator SEBI has imposed a fine of â¹10 lakh on real-estate firm DLF for making "wrong disclosures" on utilisation of funds raised through Initial Public Offering.
Summary:
Mehta sought preferential treatment for his company in various city projects.
Summary:
Rana Daggubati has said the 'Baahubali' film franchise broke most barriers of what regional cinema can do nationally.
Summary:
Vijay Mallya has quit as Force India's Director butÃÂ will remain a shareholder and Team Principal of the Formula 1 side.
Summary:
After BJP won only one out of four Lok Sabha seats in bypolls held across different states, Home Minister Rajnath Singh said, "To take a giant leap, you'll have to take two steps back.
Summary:
The Sikh policeman who saved a Muslim boy from a mob in Uttarakhand's Ramnagar has denied reports claiming that he has been receiving death threats.
There is no question of me receiving death threats," he said.
Summary:
Addressing a gathering in Indonesia on Wednesday, Prime Minister Narendra Modi said, "Many of you may never have been to India.
Summary:
A 22-year-old man has been arrested for allegedly stabbing a man 14 times and robbing him in Delhi to get money for buying beer, the police said on Wednesday.
Summary:
Residents also said that they have to walk long distances to get drinking water.
Summary:
Lavrov met Kim Jong-un during his visit to Pyongyang where the two leaders discussed inter-Korean relations and de-escalation of tensions on the Korean Peninsula.
Summary:
The agreement calls for developing an educational programme in Myanmar to teach about the "Holocaust and its negative consequences".
Summary:
Reacting to a meeting between US President Donald Trump and reality television personality Kim Kardashian, a Twitter user wrote, "Trump is meeting with Kim Kardashian...because he couldn't pull off a meeting with Kim Jong-un." While one user tweeted, "Trump tried to invite Kim Jong-un but clicked on wrong Kim", another wrote, "When Reality Stars run our country..
Summary:
The investigation is the latest involving the family-controlled conglomerate.
Summary:
The officer insisted Mayawati has another 10-bedroom bungalow that she has to vacate, but refused to do so.
Summary:
India's Gross Domestic Product (GDP) growth surged to 7.7% in the fourth quarter of 2017-18, the highest since demonetisation.
Summary:
Zinedine Zidane has stepped down as Real Madrid manager, five days after leading them to a record third straight Champions League title victory.
Summary:
"When you see me on news, you'll all know who I am...You're all going to die," Nikolas Cruz can be heard saying.
Summary:
The Finance portfolio in the newly elected Karnataka government will go to the JD(S), while the Home Department will go to the Congress, reports said.
Summary:
The feature redirects users in the 'Edit Photo' section while sending the image to the server in the background.
Summary:
A search operation has been launched to nab the Naxals and rescue the remaining labourers.
Summary:
The Archaeological Survey of India has removed 22 lakh kg of dirt from the Red Fort's terrace, preventing the structure's collapse, ASI's Joint Director General Janhwij Sharma said.
Summary:
Maharashtra Agriculture Minister Pandurang Pundalik Fundkar died aged 67 on Thursday after suffering a cardiac arrest while he was in Mumbai's KJ Somaiya Hospital.
"[Pandurang] made an invaluable contribution towards building the BJP in Maharashtra.
Summary:
The highest number of such spots have been identified in the hilly parts of Bhandup, followed by Ghatkopar.
Summary:
The scandal had surfaced after a pornographic CD involving a 15-year-old was handed over to the police.
Summary:
Malaysia has set up a trust fund for the public to donate money to help the government repay the country's debt.
Summary:
The Trump campaign had said that he was worth $8.7 billion when he announced the presidential run in 2015.
Summary:
Kuwait has proposed setting up an international protection mission for Palestinians.
Summary:
A Papua New Guinea prison freed 35 inmates to search for food amid shortages that occurred because the government delayed funds required for monthly rations.
All except one of the 35 inmates returned to the prison after gathering food, officials added.
Summary:
The Danish parliament on Thursday voted in favour of a ban on full-face veils in public, including Islamic veils such as the niqab or burqa.
Summary:
Police officer!" It reportedly was aimed at telling citizens they should seek the help of authorities when confronted by an attacker.
Summary:
Benchmark index BSE Sensex surged 416 points to close at 35,322.38 on Thursday ahead announcement of India's Gross Domestic Product (GDP) data for the March quarter.
Summary:
'Munna Michael' actress Nidhhi Agerwal, while denying rumours of dating cricketer KL Rahul, said they have known each other for long.
Summary:
The release date of Arjun Kapoor and Parineeti Chopra starrer 'Sandeep Aur Pinky Faraar' has been postponed from August 3, 2018 to March 1, 2019.
Summary:
Late actress Pratyusha Banerjee's ex-boyfriend Rahul Raj Singh is set to marry his girlfriend Saloni Sharma.
Summary:
Arshi further said she respects Afridi a lot.
Summary:
Artist and roboticist Alexander Reben has posted a video showing him commanding Google Assistant to fire a gun.
Summary:
Sharks are equipped with an electro-sensing organ that allows them to detect the slightest disturbances from nearby prey amid background noises, according to a US-based study.
Summary:
Scientists have identified the oldest known lizard, a reptile that lived about 240 million years ago when Earth had a single continent geographically and dinosaurs had just emerged.
Summary:
Speaking at an event in Uttar Pradesh's Mathura to mark 'Hindi Journalism Day', state Deputy CM Dinesh Sharma said that journalism started during the Mahabharata.
Summary:
Pizza Hut has reportedly reduced sale of pork pepperoni pizzas to a few states only.
Summary:
Ranbir Kapoor, while confirming that he's dating actress Alia Bhatt, said, "It's new for us, so let it cook a bit." "It's really new right now, and I don't want to over speak.
Summary:
Hollywood producer Harvey Weinstein was indicted on Wednesday on charges of rape and a criminal sexual act.
Summary:
ICC Chief Dave Richardson has admitted "criminal groups are trying to get into cricket" and Test cricket remains at "high risk of being targeted for corruption".
Summary:
The Chandigarh International Airport will reopen on June 1 after a 20-day closure for expansion and repair work.
Summary:
Comparing sharpness in vision for 600 animal species, researchers have revealed that human eyesight is roughly seven times sharper than cats and dogs, 40-60 times than rats and goldfish, and hundreds of times than insects.
Summary:
The headless skeleton of a man has been uncovered in Pompeii, Italy, who according to archaeologists likely escaped the first blast of Mount Vesuvius only to be crushed by a 300-kg rock flung by the volcanic eruption in 79 AD.
Summary:
District Collector of Maharashtra's Raigad, Dr Vijay Suryawanshi, has offered free stay in Karjat to doctors if they volunteer and conduct camps in the town on weekends.
Summary:
After the Supreme Court transferred the Kathua rape and murder case from J&K to Punjab's Pathankot court, high security has been deployed at the court complex ahead of the trial on Thursday.
Summary:
Gandhi said the site was not only shameful but also illegal as it promoted dowry.
Summary:
Former Finance Minister P Chidambaram has been granted interim protection from arrest in the INX Media case till July 3 and till June 5 in the Aircel-Maxis case.
Summary:
Syrian President Bashar al-Assad has revealed during an interview that a direct clash between the US and Russia in Syria was narrowly avoided "by the wisdom of the Russian leadership".
Summary:
Commenting on US President Donald Trump calling him an "animal", Syrian President Bashar al-Assad said, "What you say is what you are.
Summary:
The company is accused of copying PUBG's user interface and in-game items.
Summary:
Mehta's bonus increased nearly 150% to â¹5.58 crore in FY17.
Summary:
Indian Oil posted a record profit of â¹21,346 crore in 2017-18, followed by ONGC, whose profit stood at â¹19,945 crore.
Summary:
Reacting to the trailer of Sanjay Dutt's biopic 'Sanju', Sanjay Dutt's sister Priya Dutt said, "You can't have anybody aping bhaiyya 100 per cent.
Summary:
The winning candidate Munirathna was earlier accused of being involved in the voter ID scam.
Summary:
After settling a trade secrets lawsuit with Waymo, Uber CEO Dara Khosrowshahi has said the cab-hailing startup is "having discussions" with the Google spinoff to work together on self-driving.
Summary:
Union IT Minister Ravi Shankar Prasad said the government is "open and flexible" on negotiating terms with Apple to manufacture iPhones in India.
Summary:
Sangma had won from Ampati for the sixth consecutive time but decided to vacate the seat to make way for his daughter.
Summary:
China's SenseTime, which is the world's highest-valued artificial intelligence (AI) startup at $4.5 billion, has raised $620 million as part of its Series C+ funding round.
Summary:
Uber CEO Dara Khosrowshahi has said that the cab-hailing startup wants to be the "Amazon for transportation." Just like how Amazon sells third-party goods, Uber is going to offer third-party transportation services, Khosrowshahi added.
Summary:
The high revenue and net profit was attributed to high-transaction volumes which stood at â¹21,550 crore for 2017-18.
Summary:
A Southwest Airlines employee asked a woman to prove that her biracial son was hers despite showing the one-year-old's passport.
Summary:
The CBI case against AirAsia and its officials would not have any impact on Air India's disinvestment process, Civil Aviation Secretary RN Choubey has said.
Summary:
The sale goes live on June 1 and offers up to 70% discount across categories like electronics, fashion, jewellery, and luxury.
Summary:
Patanjali's messaging app 'Kimbho' has disappeared from Google Play Store a day after it was launched by yoga guru Ramdev.
Summary:
Ashmeet opted for Commerce in Class 11 and aims to become a government officer.
Summary:
Prices at Castle Craig Hospital start from approximately â¹1,22,000 per week for an extended treatment programme, while an "executive programme" starts at approximately â¹8,30,000 per week.
Summary:
Describing space station toilets, most experienced woman astronaut Peggy Whitson has revealed that astronauts poop into a plate-sized hole, and use the vacuum to suck it into a bag.
Summary:
Berkshire Hathaway Chairman Warren Buffett proposed investing a reported sum of $3 billion in Uber earlier this year but the talks failed following disagreements.
Summary:
The first body scared me, but then we got used to it." Meanwhile, another student claimed, "It wasn't a big deal.
I was not scared at all."
Summary:
Andhra Pradesh Women Commission Chairperson Nannapaneni Rajakumari on Wednesday urged the state government to set up a similar commission for men.
Summary:
After the Nipah virus claimed two more lives in Kerala's Kozhikode on Wednesday, the death toll rose to 16.
Summary:
To avoid violence against doctors in government-run hospitals, BMC said only those holding the post of lecturers or higher ranks should break news about a patient's death to relatives.
Summary:
Russia's Foreign Minister Sergei Lavrov has said that ultimatums in the style of 'Star Wars' cannot solve global issues such as the denuclearisation of the Korean Peninsula or the Iran nuclear deal.
Summary:
US-based nuclear proliferation watchdog Institute for Science and International Security has said that Pakistan's application to the Nuclear Suppliers Group should not be granted because of its ongoing illicit nuclear procurements abroad.
Summary:
AirAsia India has said that allegations regarding indirect foreign control in violation of norms were investigated by aviation regulator DGCA and a clean chit was given in February 2017.
Summary:
Reports added that Salman decided to launch Zaheer in Bollywood after watching him perform at his sister Arpita Khan's wedding.
Summary:
Sonam Kapoor, Kareena Kapoor, Swara Bhasker, and Shikha Talsania starrer 'Veere Di Wedding' has been banned by Pakistan's Central Board of Film Censors (CBFC), reportedly due to "vulgar dialogues and obscene scenes".
Summary:
Anil Kapoor, while replying to Rajkummar Rao's tweet on his film 'CityLights' completing four years, wrote, "Would love to see both of you onscreen again." Rajkummar and Patralekhaa reportedly started dating after meeting on the sets of the film.
Summary:
Rahul Chaudhari went to Telugu Titans for â¹1.29 crore, becoming the second costliest athlete.
Summary:
It has also trained an AI called "face editor" which adds, removes, or modifies the facial features of a person in an image.
Summary:
Talking about the data scandal at Facebook, COO Sheryl Sandberg has said, "To this day, we still don't actually know what data Cambridge Analytica had." Analytica was accused of illegally obtaining data of 87 million Facebook users and using it to influence the US elections.
Summary:
The National Commission for Women has partnered with Facebook to launch a digital literacy programme to train 60,000 women in universities across India on safe use of the internet.
Summary:
Google has released a version of its browser called 'Chrome 67' which allows users to sign-in on websites without requiring a password.
Summary:
Noida-based digital payments startup Pine Labs has raised $125 million from Singapore-based investment firm Temasek and American payments giant PayPal. The funding comes around two months after Pine Labs raised $82 million in a funding round led by Actis Capital.
Summary:
Alibaba-owned food delivery startup Ele.me has received approval by authorities in China to operate in the country's initial delivery routes for drones.
Summary:
The team hypothesised that the eggs within insect bodies could pass through birds undigested and hatch.
Summary:
The village residents get drinking water once a week that has led to an increase in the number of such robberies.
Summary:
"We had already raised the issue of poor education system in our school with the state government, but nothing happened," the village head said.
Summary:
The government has directed public sector undertakings to recognise diplomas and degrees acquired through open and distance learning from UGC-recognised universities for employment purposes.
Summary:
Renowned travel and tourism company SOTC has launched a unique holiday package that will take travellers on train adventures to different locations across the world - 'The Great Rail Journeys'.
Summary:
An 18-year-old BJP worker was found hanging from a tree in West Bengal's Purulia on Wednesday.
"This is for doing BJP politics from age 18.
Summary:
Former North Korean spy chief Kim Yong-chol on Wednesday arrived in New York, becoming the most senior North Korean official to visit the US since 2000.
Summary:
At a meeting regarding farm loan waivers, Karnataka CM HD Kumaraswamy said, "Even though I don't have the blessings of the people, 'punyatma' (good soul) Rahul Gandhi placing trust in me has given me power." He told farmers, "Taking him into confidence, I will have to come to a decision...
Summary:
Further, the BJP reported a total income of â¹1,034.27 crore in the year, which was 4.6 times the income of Congress.
Summary:
Summary:
Asserting that saving farmers is his government's priority, Karnataka Chief Minister HD Kumaraswamy promised to waive farm loans within 15 days and insisted that there was "no going back" on it.
Summary:
Summary:
The Director of IIM Rohtak, Professor Dheeraj Sharma, has been booked for sexually harassing a former assistant professor at the institute.
Summary:
Amid water scarcity in Shimla, the Himachal Pradesh High Court has ordered the disconnection of the 527 water connections of 224 hotels that have not paid their water bills.
Summary:
The Command, which has about 3.75 lakh personnel, is responsible for all US military activity in the greater Pacific region.
Summary:
Nepal Prime Minister KP Sharma Oli on Wednesday warned his new ministers that they will be sacked if they fail to learn how to operate a laptop within six months.
Summary:
Sanjay Gupta developed a software and allegedly colluded with NSE officials to get market feeds from the exchange's server faster than others.
Summary:
Reliance's move comes after US President Donald Trump ordered reimposition of sanctions on Iran.
Summary:
Disha Patani has said she can do a glamorous role in a film, but she wants to come across as an actor first.
Summary:
Actor John Abraham has denied rumours of a fallout between him and Akshay Kumar.
Summary:
Summary:
The "most loved post" was CSK's Whistle Podu anthem, Facebook added.
Summary:
Former Delhi Daredevils' captain Gautam Gambhir has said that CSK opener Shane Watson's knock of 117* in the IPL final proved that "age does not kill any passion".
Summary:
The spectators are not allowed to take coins inside Mumbai's Wankhede Stadium during IPL and international matches due to players' security concerns.
Summary:
Summary:
Talking about the data scandal, Facebook's Chief Technology Officer Mike Schroepfer said the company has developed a "sharper and more pessimistic view" of what can happen on the platform.
Summary:
Talking about the protests against the Tamil Nadu Sterlite plant, actor-turned-politician Rajinikanth said, "The attack on the collector's office and setting on fire (Sterlite) quarters wasn't done by common people.
Summary:
Columbia University scientists, who found different regions in mice brain respond to sweet and bitter tastes, have now altered the responses to curb sugar craving in mice.
Summary:
A 27-year-old Air India pilot was found dead in the washroom of a gym at a hotel in Saudi Arabian capital Riyadh on Wednesday morning.
Summary:
He also asked his staff to install at least six big water coolers in the hospital.
Summary:
The BCCI has invited Afghanistan's President Ashraf Ghani for the historic one-off Test between India and Afghanistan.
Summary:
Summary:
When the buyer contacted Singhal, he was threatened and told to not call the number again.
Summary:
Actor-turned-politician Rajinikanth has announced an ex-gratia of â¹2 lakh each to the families of the 13 people killed in police firing during protests against the Sterlite plant in Tamil Nadu's Tuticorin.
Summary:
Richard Branson-led commercial spaceflight Virgin Galactic's SpaceShipTwo VSS Unity achieved a speed of nearly twice that of sound at 2,346.12 kmph during its second test flight on Tuesday.
Summary:
Summary:
The accused had dragged her into a car when she was trying to a hire an auto at 11 pm.
Summary:
Eleven tourists from Pune have been arrested for allegedly assaulting and molesting two minor siblings, a 17-year-old boy and his 16-year-old sister, in Goa on Tuesday.
Summary:
An upgraded version of the indigenous Pinaka rocket was successfully test-fired from Proof & Experimental Establishment in Odisha's Chandipur on Wednesday.
Summary:
Observing that children are neither weightlifters nor schoolbag loaded containers, the Madras High Court asked the Centre to direct state governments to not give homework and heavy schoolbooks for Class 1 and 2 students.
Summary:
The strike is likely to affect â¹10,000-crore worth transactions daily.
Summary:
The Special Investigation Team probing the murder of journalist-activist Gauri Lankesh filed its first chargesheet on Wednesday.
Summary:
Adding that the government expects bids to come in at the last hour, Choubey said the deadline for submissions of interest won't be extended.
Summary:
A Pakistani man who failed to marry his lover, walked up to the Indian border hoping to get shot by the Border Security Force (BSF).
Summary:
Ukraine said that it staged the murder of Babchenko, a critic of Russian President Vladimir Putin, in order to foil a real plot to kill him.
Summary:
Technology giant Microsoft on Tuesday surpassed Google parent Alphabet in market capitalisation for the first time in three years, becoming the world's third most valuable company.
Summary:
The Managing Trustee of Tata Trusts, R Venkataramanan, has said that he has been "wrongly named as an accused" by the CBI in AirAsia corruption probe.
Summary:
However, the rating agency retained the GDP growth forecast for 2019 at 7.5%.
Summary:
Ex-DD captain Gautam Gambhir has said that CSK "does well because the team is allowed to do well".
Summary:
"Pic shared by @Furqan013...there's actor Irrfan Khan enjoying the match at Lord's," she captioned the picture.
Summary:
Former Indian wicketkeeper-batsman Farokh Engineer, the oldest Indian to make ODI debut, jokingly said that Rashid Khan should be the Prime Minister of Afghanistan.
The 80-year-old further said that Rashid is a "great ambassador" for his country.
Summary:
Prime Minister Narendra Modi on Wednesday announced a 30-day free visa for Indonesian citizens and invited the Indian diaspora to experience the "New India".
Summary:
Sports Minister Rajyavardhan Rathore has said the 2019 general elections will be a fight of "black versus white" as "BJP is against black money and corruption." Claiming the word 'sarkari' was earlier synonymous for lack of output, he said work ethic has changed in the past four years.
Summary:
The patient had died due to multiple organ failure, following which her relatives started arguing with doctors and attacked one of them.
Summary:
A former Panchayat member on Tuesday night shot himself on his temple with his revolver and live-streamed his suicide on Facebook in Punjab's Phagwara, the police said.
Summary:
The family of a 17-year-old UP girl who died of burn injuries has alleged that she was set on fire by a jilted lover after he put sindoor on her forehead.
Summary:
After Delhi CM Arvind Kejriwal claimed the capital was facing an "alarming level" of coal shortage, Railway Minister Piyush Goyal said Kejriwal was trying to hide his own "failures" with "baseless" claims.
Summary:
US Secretary of Defence James Mattis has said that the country will keep confronting China over its territorial claims in the South China Sea.
Summary:
Bambi Bucket is a specialised bucket carried by a chopper via a suspension cable for delivering water during aerial firefighting.
Summary:
Janhvi Kapoor has revealed she used to comment on actor Rajkummar Rao's photos so that he noticed her.
Summary:
Papua New Guinea has said it will ban Facebook for a month in order to root out fake users and to block fake news.
Summary:
Singapore Airlines has confirmed it would launch the world's longest non-stop commercial flight in October, covering about 16,700 km between Singapore and Newark in 18 hours 45 minutes.
Summary:
Summary:
Uber's major rival in South Africa and Europe, Taxify, has raised $175 million at a valuation of $1 billion from investors led by German automotive giant Daimler.
Summary:
Punjab and Haryana High Court has allowed a woman from Haryana to divorce her husband on the grounds of maltreatment and cruelty after he called her 'kali kaluti'.
Summary:
Out of 3,737 peacekeepers killed in various operations since 1948, India lost 163 military, police and civilian personnel, according to the UN.
Summary:
Three students committed suicide in Delhi after the CBSE class 10 board results were declared on Tuesday.
Summary:
A Jammu and Kashmir court has issued an arrest warrant against BJP leader Rajinder Singh for using derogatory language against CM Mehbooba Mufti during a rally.
Summary:
Congress MP Jyotiraditya Scindia has slammed a website which calculates dowry based on the skin colour, caste, and educational institutions attended by grooms.
Scindia asked PM Narendra Modi to take "immediate action" against it.
Summary:
Saudi Arabia's Cabinet on Tuesday approved a measure criminalising sexual harassment.
Summary:
The move would indicate North Korea's openness to Western investment, reports said.
Summary:
ESA's feats include encounter with Halley's Comet in 1986 to parachuting a probe on Saturn's largest moon Titan in 2005.
Summary:
ICICI Bank on Wednesday said it will conduct an enquiry into a whistleblower complaint about alleged impropriety by CEO Chanda Kochhar.
Summary:
IndusInd and UCO banks have asked exporters to complete their transactions with Iran by August 6 over the threat of new US sanctions, according to Reuters.
Summary:
The National Company Law Appellate Tribunal has asked Tata Steel if it will clear statutory dues like income tax and GST of Bhushan Steel.
Summary:
These new upgrades will be added to landlines in Rajasthan.
Summary:
The National Company Law Appellate Tribunal has put Anil Ambani-led Reliance Communications' insolvency proceedings on hold and allowed banks to complete sale of the company's tower assets to Reliance Jio. This comes after RCom and Ericsson agreed to settle a dispute over unpaid dues.
Summary:
Ranbir Kapoor, who has done a nude scene for Sanjay Dutt's biopic 'Sanju', said he is not shy to go nude onscreen.
Summary:
Speaking about her experience of working with Rajinikanth in the film 'Kaala', actress Huma Qureshi said, "He is such a simple human being!
Summary:
CSK off-spinner Harbhajan Singh, in his talk show, revealed that Ambati Rayudu doesn't have a mobile phone.
Summary:
Gilchrist added he refuses to believe that Australian cricketers are involved in spot-fixing.
Summary:
After Major Leetul Gogoi was detained with a woman in Srinagar, terror group Hizbul Mujahideen commander Riyaz Naikoo asked Kashmiri women not to talk to soldiers and strangers online.
Summary:
The Uttar Pradesh cabinet has decided to minimise the use of paper and bring all government offices under the e-Office system by August 15.
Summary:
Summary:
The Enforcement Directorate (ED) has attached a â¹52.80 crore wind farm owned by Nirav Modi's family in Rajasthan's Jaisalmer in connection with its money laundering investigation into $2.1-billion PNB fraud.
Summary:
Indian weightlifter Sanjita Chanu won her second consecutive Commonwealth Games gold medal after lifting a total of 192 kg in the women's 53 kg category at the Gold Coast Games on Friday.
Summary:
One side of the medal had the face of Greek God Zeus, while the other side had the Acropolis.
Summary:
Salman Khan was handed a five-year jail-term on Thursday in the 1998 blackbuck poaching case.
However, he was acquitted in both the cases in 2016.
Summary:
A Jodhpur court judge, explaining the five-year jail-term handed to Salman Khan in the 1998 blackbuck poaching case, said that since Salman was an actor, people looked up to him.
Summary:
Actor Saif Ali Khan's father and ex-India cricket captain Mansoor Ali Khan Pataudi was accused of killing a blackbuck with his daughter Soha's rifle on World Environment Day in 2005.
Summary:
The court also remarked that Salman is a "famous film actor and deed done by him can be followed by public".
Summary:
The CBI has detained Rajiv Kochhar, the brother-in-law of ICICI Bank CEO Chanda Kochhar, at the Mumbai airport in connection with the Videocon loan case.
Summary:
Alerts for all other transactions are chargeable under RBI rules.
Summary:
IndiGo's President Aditya Ghosh has said the airline "does not have the capability to acquire and successfully turn around all of Air India's operations".
Summary:
Former chief scientist of Hyderabad's Centre for DNA Fingerprinting and Diagnostics GV Rao said the animal killed in the Salman Khan poaching case was identified as a blackbuck with the help of DNA sampling.
Summary:
After Pakistan Foreign Minister Khawaja Asif said that Salman Khan was jailed because he is Muslim, a Twitter user wrote, "And Saif Ali Khan let off because he's Hindu?" Other users tweeted, "Why your country banned his movies (Ek The Tiger) and Tiger Zinda hai?
Summary:
Producer Ekta Kapoor has said she doesn't understand why settling down is linked to getting married, while adding, "How much more do I need to settle down?" "For years, my [parents] saved the best of alcohol for my marriage," she added.
Summary:
An IPS officer has filed a PIL in Madras High Court seeking a stay on IPL 2018 until steps are taken to prevent match-fixing and betting.
Summary:
Warner revealed this by commenting during the team's Instagram live session on Thursday.
Summary:
Wales' Anna Hursey, considered to be the youngest participant at the Commonwealth Games, teamed up with Charlotte Carey to beat India's Madhurika Patkar and Mouma Das in her Commonwealth Games 2018 opener.
Summary:
Refusing to end his protest demanding special status for Andhra Pradesh even after the Rajya Sabha was adjourned, TDP MP Muttamsetti Srinivasa Rao was taken to a hospital over complaints of high blood pressure.
Summary:
A recent Supreme Court ruling barred immediate arrest and allowed anticipatory bail in cases under the act, which Dalits claimed "diluted" the act.
Summary:
The Noida authority has increased the water tariff by up to 25%, effective from April 1, 2018.
Summary:
Officials are also reportedly being questioned over alleged benefits to Choksi's Gitanjali group due to 80:20 gold import scheme.
Summary:
The department's role will include planning bicycle tracks, parking and getting funding from the central government.
Summary:
A video showing a man from the crowd at Congress President Rahul Gandhi's roadshow in Karnataka throw a garland at him has gone viral.
Summary:
Lalu's wife Rabri Devi had earlier said they wanted a "homely, accomplished daughter-in-law" for their elder son.
Summary:
Most cases pertain to the accused receiving or providing funds to people for visiting areas under ISIS influence.
Summary:
Starting next academic year, science textbooks for pre-university level across Karnataka will be available in Kannada, officials have said.
Summary:
The baby, who hails from Gujarat, was diagnosed with critical end-stage liver disease.
Summary:
India is the ninth most affected country in the world and ranks second in Asia-Pacific Japan region in cryptojacking activities, according to a report by cybersecurity firm Symantec.
Summary:
Shares of Mandhana Retail Ventures, which is the licensee of Salman Khan's Being Human, fell as much as 15% from day's high after the actor was convicted in the 1998 blackbuck poaching case.
Summary:
Rape-accused self-styled godman Asaram Bapu is also lodged in the same jail.
Summary:
After a Jodhpur court sentenced Salman Khan to five years in prison, Pakistan Foreign Minister Khawaja Asif said the Bollywood actor was jailed because he is Muslim.
Summary:
Salman Khan's fans chanted "Tiger Zinda Hai" while waiting to catch a glimpse of the actor outside a Jodhpur court after he was given a prison sentence in the 1998 blackbuck poaching case on Thursday.
Salman has been sentenced to five years in prison and imposed a fine of â¹10,000.
Summary:
He said that PNB has bad loans worth â¹57,000 crore which "can become a goldmine for the bank" and bring back PNB's profitability.
Summary:
Ace Indian shuttler Saina Nehwal defeated Sri Lanka's MD Beruwelage 21-8, 21-4 and Pakistan's Mahoor Shahzad 21-7, 21-11 in her solo matches.
Summary:
After acquiring broadcast rights of Indian cricket team's home series for the next five years for â¹6,138.1 crore, Star India now owns â¹22,485 crore worth of media rights for cricket in India.
Summary:
To this, the BJP tweeted pictures showing Siddaramaiah holding lemons allegedly while he took oath as CM and when he first sat on CM's chair.
Summary:
Rajesh Jain, attributed as the author of 'Mann Ki Baat: A Social Revolution on Radio' has denied he wrote the book which was released last year in the presence of ex-President Pranab Mukherjee.
Summary:
The RBI on Thursday said it is looking at the possibility of introducing a central bank-backed digital currency.
Summary:
If pension is less than â¹40,000, then the deduction allowed will be limited to actual pension received, it added.
Summary:
Finance Minister Arun Jaitley has revealed that he is receiving treatment for kidney-related problems and "certain infections", adding that he is working from a controlled environment at his residence due to his health.
Summary:
Philippine President Rodrigo Duterte has accused the US' Central Intelligence Agency of plotting to kill him.
Summary:
Summary:
Arjun Rampal, while speaking on Salman Khan's conviction in the 1998 blackbuck poaching case, tweeted, "I just feel helpless...
Summary:
Chanu thought of giving up the sport after failing to manage a lift in the clean and jerk category at 2016 Rio Olympics.
Summary:
World number one Test bowler Kagiso Rabada has been ruled out of the Indian Premier League 2018 due to a lower back injury.
Summary:
The four were arrested on the basis of Facebook campaign 'Referendum 2020', being funded by Khalistan groups with the help of ISI, reports said.
Summary:
Ex-India captain Sourav Ganguly, at an event, revealed that VVS Laxman had tried to stop him from taking his shirt off after India's NatWest series victory at Lord's in 2002.
Summary:
An 18-year-old in the US was shot at during a live video on Instagram, after which he succumbed to his injuries, the police have said.
Summary:
The DMK on Thursday led a Tamil Nadu bandh to protest the Centre's delay in setting up a Cauvery Management Board.
Summary:
The National Family Health Survey, conducted in 2015-16, has revealed that the number of women consuming alcohol in Kerala has increased from 0.7% to 1.6% in the previous decade.
Summary:
Police have arrested a couple for allegedly having sex in a car in Gurugram on Wednesday after a complaint was filed by a neighbour.
Summary:
The woman alleged that a police station had earlier refused to take action against the accused.
Summary:
Amidst incidents of vandalism of statues of political leaders, the administration at Lucknow's Babasaheb Bhimrao Ambedkar University has put iron grills around BR Ambedkar's statue.
Summary:
The Noida authority has started developing the city's biggest park and will cut around 3,500 eucalypti and around 20 babul trees to make way for the park's development.
Summary:
Last year, she moved the Bombay High Court seeking a month-long leave for the surgery.
Summary:
Russia's proposal for a joint investigation into the poisoning of former spy Sergei Skripal and his daughter has been voted down at the Organisation for the Prohibition of Chemical Weapons.
Summary:
In an earlier interview to NDTV, actor Salman Khan, who has been convicted in the 1998 blackbuck poaching case, had claimed he had fed biscuits to the animal as it was "petrified".
Summary:
The RBI has said that any entity regulated by it like banks shall be barred from providing services to any individual or business dealing in Bitcoin and other cryptocurrencies.
Summary:
"What people should hold us accountable for is learning from the mistakes", he added.
Summary:
Bishnoi Tigers Vanya Evam Paryavaran Sanstha has said it wants an immediate appeal to be filed against the acquittal of actors including Saif Ali Khan, Tabu, Sonali Bendre and Neelam Kothari in the blackbuck poaching case.
Summary:
Gururaja is also an employee of Indian Air Force and had won gold at 2016 Commonwealth Championships.
Summary:
Astronomers using NASAâÂÂs Hubble Space Telescope have for the first time precisely measured the distance to one of the oldest objects in the universe, a globular star cluster called NGC 6397, born shortly after the Big Bang.
Summary:
Police has conducted a raid every two minutes on an average in the two years since the Bihar government imposed a liquor ban.
Summary:
This comes after Saeed alleged in a petition that the government was interfering in his party's welfare projects.
Summary:
The Supreme Court has observed that Aadhaar cannot prevent bank frauds as it is the bank officials who are "hand in glove with the fraudsters".
Summary:
The total market capitalisation of all BSE-listed companies soared by more than â¹2.6 lakh crore to â¹146.74 lakh crore on Thursday after the RBI kept the repo rate unchanged at 6%.
Summary:
Actor Amitabh Bachchan on Wednesday tweeted complaining about Vodafone services as he was unable to send messages saying, "VODAFONE...all messages failing ..
Earlier in January, Bachchan had tweeted complaining about Vodafone's network, when rival Reliance Jio stepped in and offered him a SIM.
Summary:
Talking about her marriage plans, Deepika Padukone said, "Today I can see myself as a working wife or mother." "I'd drive everybody around me mad if I didn't work," she added.
Summary:
The Rajasthan police has registered a case against four employees of a cooperative bank in an alleged fraud of over â¹8 crore.
Summary:
Microsoft has upgraded its AI-powered social chatbot in China with a feature that can interrupt users' conservations for a natural experience.
Summary:
Delhi-based startup BeatO that helps users manage diabetes has raised $1.3 million in funding led by Leo Capital and Blume Ventures.
Summary:
About 50 dinosaur footprints estimated to be around 170 million years old were discovered on the north-west coast of Scotland.
Summary:
Neuroscientists have developed a new method that could help better understand astrocytes, brain cells that play a key role in neurological disorders like Alzheimer's and ALS.
Summary:
The new syllabus is on par with the other central boards' syllabi, state Education Minister Vinod Tawde said.
Summary:
The Brihanmumbai Municipal Corporation (BMC) has spent 82% of its capital budget on the city's development work during 2017-18, the highest in last 10 years.
Summary:
Members of the Bhartiya Dalit Panthers Party have written a letter in blood to PM Narendra Modi and President Ram Nath Kovind over the Supreme Court order allegedly diluting the SC/ST Act. The letter demanded that the act be restored to its original state through a parliamentary ordinance.
Summary:
People will have to pay â¹2 extra on purchasing these bottles, which would be refunded after the return.
Summary:
A circular issued by the Ministry of Social Justice and Empowerment has directed all states and union territories to avoid using the words 'Dalit' and 'Harijan' in official communications.
Summary:
A resident doctor has been arrested for allegedly raping a medical intern on the premises of Delhi's Hindu Rao Hospital on Tuesday, police said.
Summary:
Dalit BJP MP Chhotelal has written to Prime Minister Narendra Modi against Uttar Pradesh Chief Minister Yogi Adityanath, claiming Adityanath had scolded and thrown him out.
Summary:
The accused also threatened people with 'political influence' after they demanded their money back.
Summary:
One of the detained executives was South Korea's fifth largest cryptocurrency firm CoinNest's CEO Kim Ik-hwan.
Summary:
Hyderabad-based ed-tech startup IndigoLearn has raised â¹97 lakh in a seed round from angel investors based in India, the US, and Europe.
Summary:
Future Group's fbb, one of India's largest fashion retail brands, is bringing India's first Watch Now Buy Now fashion event in the summer of 2018.
It will allow users to shop online while watching the fashion show.
Summary:
Star India has retained BCCI's media rights to broadcast India's bilateral home series from 2018-2023 with a record consolidated bid of â¹6,138 crore, a 59% increase from the last cycle.
Summary:
'Rise', by Ultra Shorts, starring Vikrant Massey and KF Ultra, has been shortlisted for the Los Angeles Web Fest and will be screened at Sony Studios, Hollywood, this April!
Summary:
Salman Khan, who has been sentenced to five years in prison in the 1998 blackbuck poaching case, will now be taken to the Jodhpur Central Jail, where rape accused self-styled godman Asaram Bapu has also been lodged.
Summary:
In 2011, the CBI registered a case against Bora Satya Rao for amassing assets disproportionate to his known sources of income amounting to â¹30.36 lakh.
Summary:
Ex-Australia vice-captain David Warner on Thursday announced he will not appeal the one-year ban imposed on him by Cricket Australia for his role in the ball-tampering scandal.
Summary:
Chanu lifted 81kg in her first snatch attempt to create a CWG record before bettering it by lifting 84kg and 86kg in subsequent attempts.
Summary:
Saikhom Mirabai Chanu, who won India's first gold medal at the Commonwealth Games 2018 on Thursday, was born on August 8, 1994 in Imphal and started weightlifting in 2007.
Summary:
BJP leader Subramanian Swamy has refused to give up his salary as part of the move by NDA MPs over the Parliament not functioning.
Summary:
26/11 Mumbai terror attack mastermind Hafiz Saeed's political party, Milli Muslim League, has vowed to contest the upcoming Pakistan elections despite being designated as a foreign terrorist organisation by the US.
Summary:
Residents in Wales said they found 'snow rollers' on their cars after a weekend of freezing temperatures and blizzard-like conditions.
Summary:
The CBI has registered a case against Vadodara-based Diamond Power Infrastructure, its founder and directors for defrauding 11 banks to the tune of â¹2,654 crore.
Summary:
The Cabinet has approved a proposal to "rightsize" antitrust watchdog Competition Commission of India (CCI) by lowering the number of members by half.
Summary:
Recalling the experience of riding a bike on Delhi highway at 4 am during the winter for 'October', Varun Dhawan said he was scared while shooting the scene.
Summary:
Actor Samir Soni, husband of actress Neelam who is a co-accused in the 1998 blackbuck poaching case, while speaking about Salman Khan's conviction, said, "I think he is paying the price for being a star." "I am happy for Neelam but I am disappointed for Salman.
Summary:
In 2007, Salman launched the Being Human Foundation, a non-profit charitable trust.
He later introduced the Being Human clothing line, the proceeds of which go to the foundation.
Summary:
'Baaghi 2' is the third film to cross the â¹100 crore mark in 2018 so far, with the other two films being 'Padmaavat' and 'Sonu Ke Titu Ki Sweety'.
Summary:
A zoo in Australia has shared a video that shows pieces of plastic lying next to a baby turtle.
Summary:
Dating app Tinder faced outage on Wednesday due to an issue with Facebook user login permissions after the social media giant announced it would limit third-party access to user data.
Summary:
In the second instance, a foreign passenger named Dzinhileuski Leanid had entered the airport to see off his Moscow-bound mother.
Summary:
Notably, it's illegal to possess or sell tiger skin under the Indian Wildlife Protection Act (1972).
Summary:
This is the first time BBP welcomed a giraffe after talks lasting five years.
Summary:
Since the enforcement of the code of conduct in poll-bound Karnataka, the Election Commission has seized â¹1.63 crore in cash, 3,433 litres of liquor, and 46,235 arms from across the state.
Summary:
An 11-year-old Punjab boy named Kamaljeet Singh has trained himself to write with his feet as he cannot move his hands due to a congenital problem.
His school's principal said, "He writes beautifully...
Summary:
The West Bengal Police has detained a man and his son after they recovered the body of his wife from a refrigerator inside their house in Behala.
Summary:
Finance Minister Arun Jaitley has cancelled his visit to London next week for annual economic talks due to poor health, government officials said.
Summary:
Australian Federal Agriculture Minister David Littleproud has launched an investigation into the deaths of around 2,400 sheep that died on a ship from Australia to the Middle East last year, mostly due to heat stress.
Summary:
A Jodhpur court has sentenced Salman Khan to five years in prison and imposed a fine of â¹10,000 in the 1998 blackbuck poaching case.
Summary:
The RBI has kept the repo rate, the rate at which banks borrow from RBI, unchanged at 6% during its first bi-monthly monetary policy review of 2018-19.
Summary:
The Belgian authorities have frozen two bank accounts of jeweller Nirav Modi based on the request of Enforcement Directorate, according to reports.
Summary:
Shikhar Dhawan on Thursday posted a tweet bashing Shahid Afridi for his statement calling India an "oppressive regime" that was shooting innocents in Kashmir.
Summary:
It also lets users choose which trackers to run for data privacy.
Summary:
China-based bike-sharing startup Mobike which was founded in 2015, has been acquired by Meituan-Dianping, China's largest provider of on-demand online services, for a reported amount of $2.7 billion.
Summary:
Singapore-based fashion startup Zilingo has raised $54 million in its Series C round of funding led by Belgium-based company Sofina.
Summary:
Researchers have evidence that an extinct monitor lizard species had four eyes, a first among known jawed vertebrates.
Summary:
Lawyers Tanvir Ahmed Mir and Dhruv Gupta, who won the acquittal for the Talwars in the Aarushi murder case, will be defending Dera Sacha Sauda chief Ram Rahim in the mass castration case.
Summary:
Bombay High Court has directed the Brihanmumbai Municipal Corporation to issue a birth certificate to an unwed woman's daughter without mentioning her biological father's name.
Summary:
Terrorists on Thursday abducted a father-son duo in Jammu and Kashmir's Bandipora.
Summary:
E-visa costs around ã53 while traditional visa costs nearly ã120.
Summary:
A new museum dedicated to dachshunds has opened in Passau, Germany.
Summary:
A Canadian hotel has lifted a ban on a man 17 years after about 40 seagulls trashed his room when he left pepperoni on a windowsill and went outside.
Summary:
GainBitcoin was allegedly a Ponzi scheme devised by Bhardwaj which guaranteed 10% monthly returns.
Summary:
A new song titled 'Manwaa' from Varun Dhawan starrer 'October' has been released.
Directed by Shoojit Sircar and also starring actress Banita Sandhu, 'October' is scheduled to release on April 13.
Summary:
A luxury hotel in Singapore has introduced five suites for children, with themes including safari, castle, underwater, treetop and space.
Summary:
The BBC has admitted that a scene from the 2011 documentary series Human Planet was faked.
Summary:
An 'escape room' game, wherein guests must try escaping from a cable car situated over 9,800 feet in the air, has been launched at a French resort.
Summary:
A BJP worker in Uttar Pradesh's Hardoi slapped a radiologist at a hospital for allegedly demanding â¹15,000 from a patient and threatening to give a false report.
Summary:
Union Minister Prakash Javadekar on Wednesday said, "In Democracy, parties are free to take their own call but the BJP isn't in habit of ditching friends.
Summary:
Chinese conglomerate Tencent is looking to invest $5-15 million in early-stage Indian startups, according to reports.
Summary:
Researchers have developed an artificial enzyme that could be used to fight infection and keep high-risk public spaces like hospitals free of bacteria, like the dysentery-causing E coli.
Summary:
The Supreme Court slammed the Centre on Wednesday and said it was changing the Master Plan of Delhi-2021 at âÂÂthe drop of a hatâ to protect those who have committed illegalities by making unauthorised constructions.
Summary:
The Puducherry government has moved the Supreme Court seeking direction to the Centre to implement the Cauvery water verdict immediately.
Summary:
A 3-year-old girl in Uttar Pradesh's Rampur was allegedly raped by her 18-year-old neighbour, who also locked her inside a box.
Summary:
Brazil's Supreme Court on Thursday ruled that former President Luiz Inácio Lula da Silva must start serving a 12-year prison sentence for taking bribes, denying his plea to remain free while he appeals his conviction.
Summary:
Actor Salman Khan was convicted by a Jodhpur court on Thursday in the 1998 blackbuck poaching case.
Summary:
Indian weightlifter and current world champion Mirabai Chanu opened the country's gold medal tally at the 2018 Commonwealth Games after lifting a total of 196 kg in the women's 48 kg category on Thursday.
Summary:
Technology giant Apple is reportedly working on touchless gesture control and curved screens for the upcoming iPhone models.
Summary:
Facebook will also reduce the SMS data and call history collected from Android phones.
Summary:
Over 3,100 Google employees have signed a petition urging the company's CEO Sundar Pichai to stop building artificial intelligence technology for the US military.
Summary:
Cambridge Analytica has refuted a report by Facebook that accused the firm of attaining data of 87 million users.
Summary:
Speaking about the backlash faced by Facebook because of the recent data scandal, the company's CEO Mark Zuckerberg has said, "I don't think there's been any meaningful impact that we've observed".
It still speaks to people feeling like this was a massive breach of trust," he added.
Summary:
When asked if he is still the best person to lead Facebook, the company's CEO Mark Zuckerberg answered, "yes".
life is about learning from mistakes and what you need to do to move forward," Zuckerberg added.
Summary:
The Israel Airports Authority has refused to display advertisements informing women that it is illegal for flight attendants to make them move seats at the request of ultra-Orthodox Jewish men.
Summary:
DMK-led opposition parties have called for a state-wide bandh in Tamil Nadu on Thursday over the Centre's failure to set up the Cauvery Management Board (CMB).
Summary:
A DRDO study has claimed that 97% BSF personnel are satisfied with the quality and quantity of food that is provided to them when they are deployed on borders.
Summary:
A 6-year-old boy suffering from terminal cancer was appointed as the Rachakonda Police Commissioner in Telangana for one day.
Summary:
The woman was told that it was part of an exercise to eliminate the impact of evil forces.
Summary:
The Delhi High Court has directed civic officials to inspect Haksar Haveli where India's first PM Jawaharlal Nehru got married to Kamala Nehru in 1916 and ordered the police to ensure its safety.
Summary:
The Bombay High Court has acquitted a man in a rape case as there was a "deep love affair" between the accused and the complainant.
Summary:
An AIIMS Delhi doctor allegedly performed a 'wrong' surgery on a woman and tried to tamper with documents in order to cover up the mistake.
Summary:
A 23-year-old woman in Maharashtra tried to fight a tiger with a stick in an attempt to save her goat last week.
Summary:
Austria on Wednesday announced plans to ban girls from wearing headscarves in kindergarten and primary schools to prevent discrimination and development of parallel societies.
Summary:
Built in the 1990s, it houses one of the largest congregations in the UK, Historic England, a public body which released the list, said.
Summary:
Anupam Kher's pictures from the sets of the upcoming film 'The Accidental Prime Minister' have been shared online.
Summary:
A month after suing Facebook for patent infringement, BlackBerry has filed a complaint against Snap for using its patented technology in the Snapchat app.
Summary:
Dating app Tinder has started testing its first video-based feature called Tinder Loops which can be added to users' profiles alongside their photos.
Summary:
Homegrown e-commerce giant Flipkart has forged a strategic partnership with online travel company MakeMyTrip to offer travel services on its platform.
Summary:
Maharashtra government has made it mandatory for all two-wheelers manufactured in the state from April 1, 2018, to have advanced anti-lock braking system.
Summary:
The Union Cabinet on Wednesday approved the Protection of Human Rights (Amendments) Bill, 2018 for better protection and promotion of human rights in India.
Summary:
A Malaysian university was slammed after a contest to "convert" gay students and bring them "Back to Nature" was organised by the Muslim Students Association.
Summary:
UK's 96-year-old Prince Philip underwent a successful hip replacement operation and is in good spirits, Buckingham Palace said.
Summary:
Future Group, the country's biggest retailer, is changing its discount pricing strategy to 'Har Din Low Prices', in order for all retailers to drop grocery prices.
Summary:
Indian weightlifter P Gururaja bagged the country's first medal at the 2018 Commonwealth Games after lifting a total of 249 kg (111 kg snatch, 138 kg clean and jerk) to win silver in men's 56 kg on Thursday.
Summary:
Steve and Mark became the first twins to appear together in a Test on April 5, 1991.
Summary:
Earlier, it was estimated through investigation by newspapers that 50 million users' data was exploited to influence the US elections.
Summary:
The drone, which cost $20,000 to make, took off from a launchpad and crashed into the wall within seconds.
Summary:
NDA MPs will not take their salary and allowances for 23 days as the Parliament didn't function, union minister Ananth Kumar said.
Summary:
The government is planning to build 14,460 bunkers along the Line of Control (LoC) in Jammu and Kashmir to shield civilians from shelling from Pakistani forces.
Summary:
Over 240 fishermen are still missing due to Cyclone Ockhi, which hit the country over five months ago, a parliamentary panel has said.
Summary:
Last year, the Reserve Bank of India (RBI) verbally agreed to allow every Nepali national to exchange up to â¹4,500 worth of demonetised notes.
Summary:
A petition has been filed against the Madhya Pradesh government's decision to accord Minister of State (MoS) rank to Computer Baba, Baba Hariharanand, and three other religious leaders.
Summary:
Indu Kumar Bhushan has become the first IPS officer in Rajasthan to be compulsorily retired with the central government's approval, in "public interest".
Summary:
Road Transport and Highways Minister Nitin Gadkari has announced that highway construction hit its all-time high of 9,829 kilometres in 2017-18, adding that an average of around 27 kilometres of roads were built every day.
Summary:
After upper caste residents opposed a Dalit groom's plans to lead his baraat in Kasganj's Thakur-dominated area, the Uttar Pradesh administration drew a roadmap for him and directed him to avoid streets, citing narrow roads.
Summary:
A childcare worker in Japan's Aichi Prefecture was reprimanded by her employer for becoming pregnant before it was her "turn".
Summary:
"The king of romance, the Badshah of Bollywood makes an entry to the Tussauds Delhi," read a tweet posted by the museum's handle.
Responding to one of the tweets, the actor wrote, "Always a pleasure to be in Delhi.
Summary:
A new poster of John Abraham's upcoming film 'Parmanu: The Story of Pokhran' has been released.
A thrilling journey of patriotism and pride launches on 4th May 2018," wrote John while sharing the poster.
Summary:
Jenna Fischer, known for featuring on television series 'The Office', arrived on 'Jimmy Kimmel Live' in a towel and a pair of jeans after the zipper of her dress broke just before the interview.
Summary:
nRoma captain Daniele De Rossi and defender Kostas Manolas scored own goals either side of half-time as Barcelona registered a 4-1 win in the Champions League quarter-final first leg on Wednesday.
Summary:
Summary:
Cricket legend Sachin Tendulkar on Wednesday slammed former Pakistan captain Shahid Afridi for his tweet urging the United Nations to intervene in "India Occupied Kashmir" to stop the "bloodshed".
Summary:
Technology giant Facebook has announced that the company will reduce the amount of data it retains including SMS data and call history on Android phones.
Earlier, Facebook had clarified that the function "has always been opt-in only."
Summary:
I'm not looking to throw anyone else under the bus for mistakes that we've made." Also, when asked if he was the best person to run Facebook, he said, "Yes...
Summary:
A 31-year-old passenger was arrested at the Bengaluru airport on Wednesday for allegedly trying to smuggle about 5 kg of ganja inside transparent 'namkeen' (salted snack) packets, CISF said.
Summary:
The accused's father, in a complaint, said that his daughter and her teacher hit his wife using an iron rod after which she died due to head injuries.
Summary:
Summary:
The hospital kept his body in the toilet as no doctor was available to conduct the post-mortem immediately.
Summary:
The driver of the truck lost control when a stone hit him on the head and he lost consciousness.
Summary:
Reacting to former Pakistan captain Shahid Afridi's tweet asking the United Nations to take action against India over Kashmir, Team India captain Virat Kohli said that his priority stays with his nation.
Summary:
The Rajya Sabha was adjourned for a record 11 times on Wednesday, with the first adjournment occurring 20 minutes after the House met and the subsequent adjournments being ordered within a span of three hours.
Summary:
Slamming PM Narendra Modi over rising fuel prices, Congress President Rahul Gandhi tweeted a meme video which showed PM Modi suggesting that fuel prices have reduced, followed by edited footage of actor Salman Khan laughing.
Summary:
Dr BR Ambedkar is said to have introduced a blue flag for the Independent Labour Party.
Summary:
The amount of time spent by the Parliament over deliberating the Budget 2018 was lowest since 2000, according to data collated by the non-profit PRS Legislative Research.
Summary:
Over 37,000 railway bridges in India are 100 years old, Minister of State for Railways Rajen Gohain informed the Lok Sabha on Wednesday.
Summary:
Anil Ambani-led Reliance Group has sent a â¹1,000 crore defamation notice to Mumbai Congress president Sanjay Nirupam for making "false and baseless" allegations against the company.
Summary:
As per government data, 62% smokers thought of quitting because of pictorial warnings.
Summary:
Under Aadhaar Act, the UIDAI can ask for any biological attributes of an individual.
Summary:
Stating that he seeks revenge from UN human rights chief Zeid Ra'ad Al Hussein for criticising his anti-drug crackdown, Philippine President Rodrigo Duterte said, "I kill people?
Yes, I really kill people." Calling Zeid "son of a wh**e", Duterte added, "Look, you have a big head but it's empty.
Summary:
The average data rate, which was â¹205 per GB in June 2016, plunged by about 90% to â¹19 per GB in December last year, Union Telecom Minister Manoj Sinha informed the Parliament on Wednesday.
Summary:
Juventus' shares fell to an eight-month low after Cristiano Ronaldo's brace, including a bicycle kick goal, helped Real Madrid win the Champions League quarter-final first leg 3-0 on Tuesday.
Summary:
Summary:
We should not be giving importance to certain people." Meanwhile, Indian all-rounder Suresh Raina wrote, "I hope @SAfridiOfficial bhai asks Pakistan Army to stop terrorism and proxy war in our Kashmir."
Summary:
The Mumbai Police on Friday used the reference of the recent Australian cricket team's ball-tampering scandal, which was exposed by cameras, in one of its tweets urging people to follow the rules.
Follow the Rules.
Summary:
Tereapii Tapoki, a 33-year-old discus thrower and shot putter from Cook Islands who will be participating in the Commonwealth Games, has revealed she used to throw coconuts to practice due to lack of equipment.
Summary:
Ex-Indian cricketer Mohammad Kaif took to Instagram to share a picture of himself driving a car with the caption, "When you ask the driver to sit besides and you start driving.
Summary:
Insisting that UFC champion Conor McGregor would be a natural fit for WWE, wrestler John Cena said the MMA fighter would probably beat him up in a fight.
Summary:
Summary:
Karnataka High Court has said that another "Bhopal gas tragedy" may occur and "thousands of people will die" if proper steps are not taken to control the gas emitting from the quarry pits where waste is being dumped in Bengaluru.
Summary:
The accused stabbed the man claiming the dog was part of his family.
Summary:
The Maharashtra government has told the Bombay High Court that all police stations will be directed to protect the identity of people who lodge complaints about noise pollution.
Summary:
A 22-year-old thief was caught trying to rob an ATM machine in Delhi's Vishwas Nagar after he got his hand stuck inside the machine while trying to cut it open using a gas cutter.
Summary:
A Russian girl who did a 'slit-your-throat' gesture at the Governor of Moscow Oblast while protesting against pollution from a landfill dump has been offered a trip to Netherlands to see how waste recycling is done.
Summary:
The bank failed in detecting wrongdoing and instances of money laundering at its Delhi-based branch, where a â¹6,000-crore forex remittance scam was reported in 2015.
Summary:
The new guidelines demand that a newspaper must have minimum daily circulation of 15,000 copies to gain access to the Assembly.
Summary:
Several shop owners alleged that they were not issued licences despite having applied well in advance.
Summary:
After China announced an additional 25% tariff on US imports worth $50 billion, US President Donald Trump tweeted, "We are not in a trade war with China." Trump added that the war was lost many years ago by his "foolish and incompetent" predecessors.
Summary:
Warner hasn't yet taken a decision on whether he will challenge his ban.
Summary:
A day after ex-Pakistani captain Shahid Afridi expressed anguish over the "appalling" situation in "Indian-occupied Kashmir", a report has said his cousin was allegedly a terrorist killed by Indian forces in Kashmir's Anantnag in 2003.
Summary:
India had finished fifth at 2014 Commonwealth Games with 15 gold medals.
Summary:
On being asked if terrorism in Kashmir is sponsored by Pakistan, ex-Pakistan captain Shahid Afridi said Pakistan was not in Kashmir to "set up samosa and pakoda stalls".
Summary:
After exiting the ruling NDA alliance, TDP chief and Andhra Pradesh CM Chandrababu Naidu met several Opposition leaders during his two-day visit to Delhi to muster support for the state's special status demand.
Summary:
Billionaire Elon Musk has shared a picture of a real bottle of 'Teslaquila', days after his April Fools' joke about Tesla going bankrupt and him being passed out against a car surrounded by Teslaquila bottles.
Summary:
The court added that if multiplexes ban people from carrying outside food, they should also ban food vendors on their premises.
Summary:
Head of General Security for Dubai, Dhahi Khalfan, has said that while Indians are disciplined, Pakistanis pose a serious threat to the Gulf communities because "they bring drugs to our countries".
Summary:
He said, "GST in New Zealand is the best...as there is only one slab.
Summary:
US President Donald Trump once encashed a 13-cent cheque sent to him as part of a prank by satirical magazine Spy in 1990.
Summary:
Around â¹1.2 trillion was wiped out from the market capitalisation of BSE-listed companies after Sensex closed 351.56 points down at 33,019 on Wednesday.
Summary:
The company's board is also reportedly looking into allegations of improper personal behaviour by Sorrell.
Summary:
A video has emerged which shows Saif Ali Khan telling his driver, "Bhaisahab, sheesha upar karo aur reverse karlo warna padegi ek." The actor, who's in Jodhpur for the 1998 blackbuck poaching case verdict, was filmed saying this while trying to evade journalists.
Summary:
A filmmaker named Charlie Kessler has sued the creators of web series 'Stranger Things' for allegedly stealing the show's idea and concept.
Summary:
An art gallery has been opened at a former nuclear bunker in Yorkshire, England.
Summary:
BJP President Amit Shah has blamed the Opposition for the 10 deaths reported in the violence during Bharat Bandh, which was called earlier this week to protest a Supreme Court ruling on the SC/ST act.
Summary:
Opposition parties alleged that TMC workers assaulted their candidates in several districts for filing nominations.
Summary:
A 65-year-old woman in Mumbai killed her 75-year-old husband by hitting him with a paver block while he was asleep as the woman suspected him of having extra-marital affairs.
Summary:
He also injured two of his brothers when they tried to intervene and rescue their mother from his attacks.
Summary:
"There is no reason to protest since the government fulfilled our demand for a committee on river conservation," they said.
Summary:
FDA inspectors have been given mobile tablets, using which they will conduct inspections online in real time.
Summary:
In a suicide note recovered from his pocket, the man blamed them for humiliating him over his inability to pay â¹90,000 electricity bill.
Summary:
A 51-year-old constable was mowed down by a speeding truck in Maharashtra's Solapur on Monday, police said.
Summary:
Pro-Brexit leader Nigel Farage on Thursday shared an image of himself with a 'Brexit cake' for his birthday.
Summary:
Around â¹4 lakh crore worth of bad loans accumulated by banks had returned due to the system set in place by the Insolvency and Bankruptcy Code, Corporate Affairs Secretary Injeti Srinivas has said.
Summary:
A Delhi court has discharged AAP MLA Kailash Gahlot in a 2015 case wherein he was accused of influencing voters with free food before assembly elections.
Summary:
China on Wednesday announced an additional 25% tariff on US imports worth $50 billion in response to proposed US tariffs on over 1,300 Chinese goods.
Summary:
Australian boxer Taylah Robertson has been assured of at least a bronze medal in the women's 51kg division after receiving a bye into the semi-finals at the Commonwealth Games, which begin on April 5.
Summary:
Father of the woman shooter who opened fire at YouTube's headquarters has said he had informed the police the same morning that his daughter might be headed for the campus, since she "hated" the company.
Summary:
Interestingly, in the 1930s, Italian engineer Angelo Invernizzi had designed an L-shaped house that could rotate around a central tower.
Summary:
Currently, a candidate can contest from up to 2 seats in the Lok Sabha and assembly elections.
Summary:
The course is aimed at addressing the dearth of trained 'purohits' in India and abroad, university officials said.
Summary:
The Indian Air Force is planning to invite bids from aircraft manufacturing firms from nations including the US and France to purchase over 100 fighter aircraft worth over â¹1.25 lakh crore.
Summary:
A 21-year-old woman from Assam has been arrested by Bangladeshi police for entering the country illegally after she eloped to marry her Bangladeshi boyfriend, officials said today.
Summary:
A turtle with two heads has been found at a farm in the Chinese city of Meizhou.
Summary:
The Direct Tax collection has grown by 18% to cross â¹10.02 trillion in the financial year 2017-18, Finance Minister Arun Jaitley has said.
Summary:
Arjun Rampal took to Twitter to clarify that Amit Gill, the man arrested for allegedly molesting an air hostess is no longer married to his sister Komal.
Mr Gill and [my sister] separated 7 years ago," he tweeted.
Summary:
Anupam Kher has received a nomination in the Best Supporting Actor category at the 2018 BAFTA TV Awards.
Summary:
Divya further said, "At the end of the day, if you aren't in a very vulnerable situation, you do have choices."
Summary:
Actress Yami Gautam is set to play an intelligence officer in 'Uri', a film based on the Indian Army's surgical strikes in Pakistan-occupied Kashmir following the Uri terror attack.
Summary:
A collection of letters written by American writer Ernest Hemingway to his friend Guy Hickok, discussing drinking and money, is expected to be auctioned for at least $25,000 (â¹16 lakh).
Summary:
A video has captured the moment a group of firefighters rescued a Chinese woman who was trapped in her car in the middle of a flooded river.
Summary:
Talking about receiving standing ovation from Juventus fans for his bicycle kick goal on Tuesday, Cristiano Ronaldo revealed he had never received standing ovation from rival fans before.
"I didn't expect to score that goal," he added.
Summary:
After a woman shooter opened fire at YouTube's headquarters injuring four people, CEOs of technology giants called for a control on guns in the US.
Summary:
He added that no government gave the Dalit icon the kind of respect his government had.
Summary:
The Brihanmumbai Municipal Corporation (BMC) has collected a record revenue of nearly â¹5,150 crore from property taxes during the financial year 2017-18.
Summary:
Two owners of a photo studio in Kerala's Kozhikode district were arrested after a woman filed a complaint alleging they morphed her images and used them for pornographic purposes.
Summary:
Fifty beds and a photon beam accelerator worth â¹12.28 crore were lying idle at a unit of Delhi State Cancer Institute due to a delay of four years in sanctioning staff, according to the CAG report.
Summary:
The man has been identified as one Rahul and his entry into the Assembly building has been traced, Patel said.
Summary:
The train will run on all days except Fridays, and the travel time between Delhi and Jhansi will be less than five hours.
Summary:
Homosexuality was decriminalised in the country in 1986 but people convicted before then have the offence listed on their official records.
Summary:
A mayor in France has apologised over her April Fools' Day joke where she announced that Swedish furniture major IKEA would be creating 4,000 jobs in her city.
Summary:
The list names a total of 257 terrorists and 82 terror groups.
Summary:
Cameron Bancroft, who carried out the tampering, has also accepted his nine-month ban.
Summary:
England's population has been listed as 2,051,363, while the actual population is around 66.5 million.
Summary:
Technology giant Microsoft originally commissioned English musician Brian Eno in 1994 to create the startup sound for Windows 95 operating system.
The six-second startup music came to be known as 'The Microsoft Sound'.
Summary:
At the time, Microsoft's market capitalisation was $146.68 billion whereas Apple was valued at $2.17 billion.
Summary:
The company claims it will be regulation-oriented and cheaper than the version put forth by Elon Musk.
Summary:
This comes after CBSE announced a re-examination of the Class 12 Economics paper following a leak.
Summary:
John Varughese, who hails from Kerala, will be sharing the money with four friends who pooled in Dh500 (â¹9,000) to buy the ticket.
Summary:
This is the largest hydropower project undertaken by Indian government in Nepal.
Summary:
Summary:
Average rainfall in India is defined between 96% and 104% of a 50-year average of 89 cm for the four-month season.
Summary:
The shark glided between a police dinghy and a recreational fishing boat, which the police officers had chosen for a random breath test.
Summary:
Kochhar was to be the guest of honour at the session, where she was to be felicitated by President Ram Nath Kovind.
Summary:
The New York Stock Exchange (NYSE) on Tuesday hung the flag of Switzerland outside its building to celebrate the listing of music streaming service Spotify, which is based in Sweden.
Summary:
Spotify is valued at $26.5 billion after its first trading session.
Summary:
This was the biggest drop among the 456 energy companies with market values exceeding $1 billion, according to Bloomberg.
Summary:
"I'll be alive for 1-2 years more," he added.
Summary:
Actors-turned-politicians Kamal Haasan and Rajinikanth have joined the protests against the expansion of the Sterlite copper plant in Tamil Nadu's Thoothukudi.
Summary:
Prernaa Arora, the co-producer of John Abraham's 'Parmanu: The Story of Pokhran', while talking about the fall-out between them, said he has been "rude and discourteous to her on many occasions".
Summary:
Kangana Ranaut, while speaking about not doing item numbers, said, "They are obscene, they are at times unfair, most of them are sexist." "What is there to be done in them?
Summary:
Umpires will use a new signal for strategic time-out during IPL matches since the existing 'T' signal clashes with the signal for DRS, which will be used for the first time in the tournament.
Summary:
The startup includes Sequoia, Kae Capital, Anupam Mittal and Sandeep Tandon as its investors.
Summary:
Homegrown ride-hailing startup Ola has acquired Mumbai-based transportation app Ridlr for an undisclosed amount.
Summary:
Police have filed a complaint against a Bengaluru-based doctor for allegedly forcing his wife to watch porn and enact the acts later.
Summary:
An expert committee recently observed that over 1 lakh trees will have to be cut for the construction of a 258-km stretch of 701-km Mumbai-Nagpur Expressway in Maharashtra.
Summary:
The UK on Tuesday said it will introduce a ban on ivory sales, exempting colonial-era museum objects, musical instruments containing small amount of ivory and some antiques.
Summary:
Her website had posts about Persian culture and veganism, with rants against YouTube.
Summary:
This comes amid other reports suggesting Walmart is in advanced talks to buy 55% stake in Flipkart.
Summary:
The company built the anechoic chamber for audio and device testing, and reported -20.35 dBA average background noise.
Summary:
Microsoft's former CEO Steve Ballmer in an interview in 2016 revealed he once offered Mark Zuckerberg $24 billion to buy Facebook.
While Zuckerberg refused the offer, Ballmer said, "I respect that.
Summary:
An FIR has been filed against John Abraham by KriArj Entertainment, the co-producers of his film 'Parmanu: The Story of Pokhran' for allegedly cheating them by terminating their contract.
Summary:
Nadkarni gave just five runs in the innings, finishing with figures of 32-27-5-0 and the all-time best economy rate of 0.15 (minimum 60 balls).
Summary:
Apple has hired John Giannandrea to run the technology giant's machine learning and AI strategy.
Summary:
Technology giant Google on Tuesday said it has started installing a 9,656-kilometre-long undersea cable between Japan and Australia to expand its cloud business.
Summary:
Summary:
The list had recognised 1.9 crore people out of the 3.29 crore applicants as Indian citizens.
Summary:
A woman in Uttar Pradesh's Mathura carried her husband on her back to the Chief Medical Officer's office for obtaining a disability certificate for him.
We went to many different offices but still have not got the certificate," the woman said.
Summary:
During a counselling session at Kerala's Kasaragod, a professor claimed that women who wear jeans or dress like men give birth to transgender children.
Summary:
North Korea has issued a rare apology to a group of South Korean journalists for blocking them from covering a pop concert attended by North Korean leader Kim Jong-un.
Summary:
Around 49% of American voters approve of US President Donald TrumpâÂÂs job performance, more than former President Barack ObamaâÂÂs 46% at this stage of his presidency, according to polling company Rasmussen's latest survey.
Summary:
Summary:
Public sector banks wrote off â¹2.41 trillion worth of loans between April 2014 and September 2017, the government has said.
Summary:
The Madras High Court has asked Cognizant Technology Solutions to deposit â¹420 crore or 15% of the â¹2,800 crore demanded by the Income Tax Department, and ordered unfreezing of one bank account to facilitate the payment.
Summary:
Facebook has introduced a tool which allows users to remove apps logged in from the platform, following the data controversy.
Summary:
Fifty-six IndiGo staffers went on strike at Varanasi airport today due to an alleged delay in their salaries.
Meanwhile, the airport director said, "We are facing problems at Varanasi airport in dealing with IndiGo passengers...
Summary:
The company's revenue stood at â¹13.2 crore while the losses were reported to be â¹268.3 crore for the same period.
Summary:
Founded in 2014, Namaste Credit connects borrowers and lenders through a secure and efficient loan bidding platform.
Summary:
Bengaluru-based venture capital firm Kalaari Capital's Managing Director (MD) Rajesh Raju has said, "Startup shutdowns this year will be fewer than last two years." Claiming that there is enough capital, Raju added, "Much saner entrepreneurs and saner business plans are being funded now.
Summary:
This comes despite reports suggesting production bottlenecks of Model 3 cars.
Summary:
The Supreme Court on Wednesday dismissed all petitions filed by students and parents over the recent CBSE paper leak.
Summary:
New establishments in Mumbai will have to comply with fire safety norms within 10 days of applying for no objection certificates, Mumbai Fire Brigade said.
Summary:
Meanwhile, police officials have said that the encounter is still underway.
Summary:
Gill reportedly called the air hostess, also his investment client, to his house where he spiked her drink and took her photos.
Summary:
Martin Luther King Jr, who is renowned for his oratory skills, received a C in public speaking at seminary school.
Summary:
YouTube Product manager Vadim Lavrusik's Twitter account was hacked to spread fake news about shooting at the company's headquarters.
Summary:
It is part of a ã1.4 million (around â¹13 crore) rest area featuring an amphitheatre, viewing terrace, and benches.
Summary:
BJP-led Madhya Pradesh government on Tuesday granted Minister of State (MoS) status to five Hindu religious and spiritual figures, including Computer Baba, Bhaiyyu Maharaj, Narmadanand ji, Hariharanand ji and Pandit Yogendra Mahant.
Summary:
The Supreme Court on Tuesday stated that Article 370, granting special status to Jammu and Kashmir, is not a temporary provision.
Summary:
Ghaziabad Police has booked 5,000 people and arrested 32 for creating a ruckus while protesting against the alleged dilution of the SC/ST act.
Summary:
After the AIADMK launched a day-long hunger strike demanding the setting up of Cauvery Management Board, some photographs have surfaced online showing party workers eating during the protest.
Summary:
The trial run of the first container train to run between India and Bangladesh was flagged off on Tuesday.
Summary:
Responding to an RTI application, the Central Information Commission (CIC) refused to disclose files related to Operation Bluestar, an Indian military operation to drive out Sikh extremists from the Golden Temple.
Summary:
A painting that was accidentally discovered in the closet of an art gallery in the US is being estimated to be worth between $4 million (â¹26 crore) to $11 million (â¹71 crore).
Summary:
Swara Bhasker has responded to criticism over a 'fake' statement attributed to her by a parody account, in an apparent dig at her 'vagina letter' on 'Padmaavat'.
Summary:
At the launch of TV serial 'Khichdi 3', Supriya Pathak, who portrayed the character Hansa in the original show, said playing Hansa again was easy for her as the character was already within her.
Summary:
Actress Bhumi Pednekar's look as a dacoit from the upcoming film 'Sonchiriya' has been revealed.
Summary:
Cristiano Ronaldo became the first footballer in Champions League history to score in 10 successive matches as Real Madrid defeated Juventus 3-0 in the quarter-final first leg on Tuesday.
Summary:
Facebook has suspended 70 accounts, 138 Pages, and 65 Instagram accounts controlled by Russia-based Internet Research Agency, according to the company's blog post.
Summary:
Facebook-owned Instagram has limited the access to user data for third-party developers as part of its plans to change its API.
Summary:
The latest poll, sent to an unspecified number of people, appears under the heading, "We'd like to do better," when users log in.
Summary:
The CISF had received information that a woman on a Delhi-Goa flight would be carrying drugs.
Summary:
Jammu and Kashmir Minister of Public Works Naeem Akhtar has dismissed reports of stone-pelting on tourists as "fake news".
Summary:
The simultaneous handling of money and food, use of saliva during counting, and storage under unhygienic conditions pose a risk to human health, the Food Safety and Standards Authority of India (FSSAI) has said.
Summary:
The court also ordered that the duo shall serve the jail term.
Summary:
The Maldives has asked the Indian government to take back one of the two helicopters that India had gifted to the nation.
Summary:
The move is aimed at enabling authorities to track the location and speed of vehicles with a single click.
Summary:
A man in Uttar Pradesh has alleged that he was pushed away by CM Yogi Adityanath at Janta Darbar when he approached the CM with a complaint against MLA Aman Mani Tripathi.
Summary:
According to police, the woman was pushed by her husband while walking along the railway track but she refused to file any complaint against her husband after being rescued.
Summary:
Germany's military is rolling out a line of maternity uniforms for pregnant soldiers following successful field tests conducted on 80 volunteers.
Summary:
An active shooter opened fire at YouTube's headquarters in San Bruno, California, on Tuesday, injuring four people who have been taken to a hospital.
Summary:
Microsoft CEO Satya Nadella had attended the Hyderabad Public School in Begumpet, Hyderabad, which also produced Adobe CEO Shantanu Narayen and Mastercard CEO Ajaypal Singh Banga.
Summary:
US President Donald Trump has announced a plan to deploy military along the US' border with Mexico until the border wall is built.
Summary:
American civil rights leader Martin Luther King Jr won the Grammy Award posthumously in 1971 in the Best Spoken Word Album category for his speech 'Why I Oppose the War in Vietnam'.
Summary:
Real Madrid's Cristiano Ronaldo received a standing ovation from opposition fans after he scored with a bicycle kick in the Champions League quarter-final first leg against Juventus on Tuesday.
Summary:
Lok Sabha proceedings were disrupted on Tuesday for the 19th consecutive day as MPs created a ruckus over several issues.
Summary:
A 40-year-old man, who owned a restaurant in Gurugram, on Tuesday jumped off the seventh floor of the building where the restaurant was located.
Summary:
Further, the SC was told the biometrics' failure rate at the national level was 6% for fingerprints and 8.54% for iris.
Summary:
Sub-Inspector Mahendra Chaudhary, who was injured in violence during Bharat Bandh called by Dalit groups, succumbed to his injuries in Rajasthan's Jodhpur on Tuesday.
Summary:
Police recorded the incident as an accidental death.
Summary:
The chief of Britain's Porton Down military research centre Gary Aitkenhead has said that experts have been unable to prove that Novichok, the type of nerve agent used to poison former spy Sergei Skripal, came from Russia.
Summary:
The disinvestment-bound airline has a staff strength of over 21,000, including around 11,200 on permanent rolls.
Summary:
Payments banks can accept a restricted deposit, which is currently limited to â¹1 lakh per customer.
Summary:
Reacting to a video shared by Urvashi Dholakia as her character 'Komolika' from TV serial 'Kasautii Zindagii Kay', producer Ekta Kapoor said, "How the hell will I get another Komolika." This comes amidst reports of reboot of the TV serial 'Kasautii Zindagii Kay'.
Summary:
TV actress Nia Sharma is set to make her debut in Bollywood with a Vikram Bhatt film.
Summary:
Joe and Anthony Russo, directors of 'Avengers: Infinity War', penned a letter requesting fans not to give spoilers for the film.
Summary:
Veteran actress Rekha will reportedly make a cameo in a medley for 'Yamla Pagla Deewana Phir Se', where she will be seen rapping.
Summary:
Actor Ranveer Singh, while talking about his fashion choices in an interview, said that he would never cross-dress as that is a bit too extreme.
Summary:
Ileana D'Cruz, while speaking about selecting films to act in, said, "I won't be part of a film just because it's great!" "I want to have a role for myself," she added.
Summary:
Pakistan defeated Windies by 8 wickets in the third T20I on Tuesday to complete a 3-0 series whitewash.
Summary:
After PM Narendra Modi directed the Information and Broadcasting Ministry to withdraw its press release on fake news, Congress leader Radhakrishna Vikhe Patil hailed the decision as a "big victory" for democracy and the media.
Summary:
Addressing the Lok Sabha, MoS for Home Hansraj Ahir said the Tourism Ministry has asked states and union territories to identify accident-prone selfie zones and take measures to ensure the safety of tourists.
Summary:
The wedding was organised before the scheduled date over the woman's deteriorating condition.
Summary:
A video showing Chauhan, alleged to be a BJP worker, firing during the protest had surfaced online.
Summary:
No toilets were constructed in Delhi under Swachh Bharat Mission since its inception in October 2014, according to a CAG report tabled in Delhi Assembly.
Summary:
He further reiterated his call for a border wall with Mexico to stop illegal migration.
Summary:
Anna, who was undergoing a procedure known as "deep brain stimulation", could barely hold a cup of water steady before the process started.
Summary:
Rohit slammed 404 runs for the Hyderabad-based side in 2010 and was bought by Mumbai Indians in 2011 for â¹13 crore ($2 million).
Summary:
Reports now claim that OnePlus has similar collaboration plans with Marvel Studios for an Avengers-themed OnePlus 6.
Summary:
The government has asked PNB, CBI and Enforcement Directorate to share details of the $2.1-billion scam with the Institute of Chartered Accountants of India.
Summary:
The Indian Olympic Association has now granted Saina Nehwal's father access to the athletes' village at the 2018 Commonwealth Games, a day after the shuttler posted tweets complaining about his name missing from the list of team officials.
Summary:
Reacting to former Pakistan captain Shahid Afridi's tweet saying the United Nations was not doing anything to stop bloodshed in Kashmir, Indian batsman Gautam Gambhir tweeted that Afridi is "celebrating a dismissal off a no-ball".
Summary:
Earlier, Sehwag was slammed for mentioning names of only Muslim men accused in the same case in a tweet.
Summary:
Wagner got out after getting caught at silly point.
Summary:
Aadhaar-issuing body UIDAI has said it doesn't have details about bank accounts, mutual funds, health records, or financial and property details of Aadhaar holders, and "will never have" such data.
Summary:
Born on April 3, 1914, in Amritsar, Army Field Marshal Sam Manekshaw was awarded Padma Vibhushan, the second-highest civilian award, a year after he led the force to victory in the 1971 war against Pakistan.
Summary:
Kerala Education Minister C Ravindranath's recent announcement that 1.24 lakh students across the state refused to fill the caste and religion columns during their school admission was based on incomplete information.
Summary:
DU's Hindu College was ranked fourth while Presidency College in Chennai was ranked fifth.
Summary:
IIT-Mandi is the only institute to have more faculty members than its sanctioned strength.
Summary:
Police said traders associations and upper castes in the area were agitated and tried to enter localities dominated by SC/ST.
Summary:
Saudi Arabia's Crown Prince Mohammed bin Salman said during an interview that Israelis have the right to have their own land.
Summary:
The Income Tax Department has sent a notice to NuPower Renewables, founded by ICICI Bank CEO Chanda Kochhar's husband Deepak Kochhar, seeking details of assets, income and tax paid.
Summary:
The Directorate General of Safeguards has reportedly slapped a profiteering notice on Jubilant FoodWorks, which operates pizza chain Domino's in India, for allegedly not passing on GST rate cut benefit to consumers at Domino's outlets.
Summary:
Summary:
Summary:
Talking about how fame affected his personal life, Ayushmann Khurrana said, "Had all my films been successful, my wife would have left me." He added, "After the first film...I had no time for family.
Summary:
Reacting to a news piece on the increase of population of rhinos at the Kaziranga National Park in India, former England captain Kevin Pietersen tweeted in Hindi that he is happy with the news.
Summary:
"It's definitely the most docile Test (against Australia) since I played Test cricket...I'm sure it's not going to last very long," he added.
Summary:
The Scheduled Castes and the Scheduled Tribes (Prevention of Atrocities) Act 1989 was implemented to protect the marginalised communities against a number of acts deemed criminal offence.
Summary:
A 10-year-old boy died after drowning in a pond in Navi Mumbai's Kamothe on Monday, police said.
Summary:
On the direction of Rajya Sabha Chairman Venkaiah Naidu, a circular has asked parliamentarians to replace the phrase 'Yours faithfully' with 'Yours sincerely' in all notice and request forms.
Summary:
The Man Booker Prize has been slammed for changing the nationality of a Taiwanese nominee to 'Taiwan, China'.
Summary:
World Bank India head Junaid Kamal Ahmad has said, "I think we can do a Silicon Valley in India in the next five years." He said India has the potential to innovate like Silicon Valley but it needs to do more for expanding the innovation ecosystem.
Summary:
Meanwhile, Indian Institute of Technology (IIT), Madras has been rated the best engineering institute in India, followed by IIT Bombay and Delhi.
Summary:
The film has teamed up with Vevue, a peer-to-peer video app running on the QTUM blockchain, where cryptocurrencies will be accepted for payments.
Summary:
Motorola engineer Martin Cooper, who invented the handheld cellular mobile phone, made the first-ever mobile phone call to brag about his achievement and troll his competitor AT&T's Joel Engel on April 3, 1973.
Summary:
Welcoming the US' decision to designate Hafiz Saeed's Milli Muslim League as a foreign terrorist organisation, the Ministry of External Affairs has said the move highlights Pakistan's failure to curb terrorism.
Summary:
India will host a trilateral meet with the US and Japan in Delhi later this month, the US State Department has confirmed.
Summary:
The Goa Assembly has issued new guidelines for accreditation, making it mandatory for newspapers to have a minimum daily circulation of 15,000 copies to gain access to the Assembly.
Summary:
Israeli Prime Minister Benjamin Netanyahu on Tuesday cancelled an agreement with the UN to settle African migrants in western countries.
Summary:
US President Donald Trump has proposed holding a White House summit with his Russian counterpart Vladimir Putin.
Summary:
Two prisoners escaped a maximum security jail in Colombian capital Bogotá after getting a guard drunk and convincing him to let them go out to purchase more alcohol, authorities have said.
Summary:
He added that no political system can accept BMW cars or cigarettes being taxed at 18% rate.
Summary:
The RBI had the regulatory responsibility but any lack of integrity would be looked at by the Central Vigilance Commission (CVC), he added.
Summary:
Akshay Kumar in collaboration with Shiv Sena leader Aditya Thackeray built bio-toilets reportedly worth â¹10 lakh at Mumbai's Juhu beach for the public to resolve the problem of open defecation.
Summary:
A couple in Singapore have launched a legal challenge after authorities annulled their marriage because the husband underwent a sex change, a lawyer said on Monday.
Summary:
Widening the scope of the probe in the $2.1-billion PNB fraud, the CBI is questioning senior officers of other Indian banks.
Summary:
Over 10,000 fans of IPL franchise Chennai Super Kings watched the team's intra-squad practice match at the Chepauk Stadium on Sunday.
Senior batsman Suresh Raina slammed seven sixes and went on to score 57* off 24 balls in the match.
Summary:
Delhi Daredevils' batsman Shreyas Iyer said that coach Ricky Ponting's speech on their first day of training gave the team members 'goosebumps'.
Summary:
Ex-India captain MS Dhoni took to Instagram to share a picture of himself receiving Padma Bhushan award from President Ram Nath Kovind on Monday, saying receiving it in Army uniform increased the excitement ten folds.
Summary:
Reacting to the comparisons with Indian captain Virat Kohli, Pakistani batsman Babar Azam said, "I try to compete with him...
Earlier, pacer Mohammad Amir had also praised Kohli by terming the Indian captain 'the best batsman in the world'.
Summary:
Former Pakistan captain Shahid Afridi expressed anguish over the situation in Kashmir, saying "innocents are being shot down by oppressive regime".
Summary:
Pakistan spinner Shadab Khan has been fined 20% of match fee for making an inappropriate comment and pointing his finger at Windies' Chadwick Walton after getting him out in the second T20I on Monday.
Summary:
Earlier, an organisation alleged that names of 18 lakh Muslim voters were missing from the list.
Summary:
Bengaluru-based employee transportation startup MoveInSync has raised $8 million in Series B funding round led by Nexus Venture Partners.
Summary:
A solider was martyred and four others were injured on Tuesday during a ceasefire violation and shelling by Pakistan along the LoC in Jammu and Kashmir's Poonch district.
Summary:
The police arrested him on Friday based on a CCTV footage and during the investigation, he revealed that he had committed another theft in 2017.
Summary:
No such incidents have been reported so far this year, he added.
Summary:
Goldman Sachs has approached the National Company Law Tribunal (NCLT) to recover around $5.6 million (â¹36 crore) from Venugopal Dhoot's Videocon Industries.
Summary:
The Indian contingent has been handed a warning by the Commonwealth Games for breaching the Games' 'no needle' policy.
Summary:
Delhi University stood at 7th position in the rankings.
Summary:
A rare Qing dynasty bowl, which was made 300 years ago for Chinese Emperor Kangxi, has been auctioned for $30.4 million (â¹198 crore).
Summary:
Shyam Wadhwa, Vice President (Finance) of Firestar Group and a "close" associate of jeweller Nirav Modi, has admitted that he assisted Nirav in forming shell companies to launder money, according to India Today.
Summary:
Technology giant Facebook was found retaining the deleted videos along with other user data in its archives, according to several users.
Summary:
NASA's Hubble space telescope has captured images of Icarus, the farthest individual star ever observed.
Summary:
Finance Minister Arun Jaitley, who was elected to the Rajya Sabha for his fourth consecutive term as a BJP candidate from Uttar Pradesh, has been reappointed as the Leader of the House.
Summary:
Lance Naik Desh Deepak, of 15 Jat Regiment, completed 55 knuckle push-ups in one minute with one leg raised and 18-kg weight on his back, to set a new Guinness record.
Summary:
Amid 'we want justice' slogans being raised in the Parliament on Tuesday, Home Minister Rajnath Singh said, "Our government has done nothing to dilute SC/ST Act." This comes after political parties and Dalit groups blamed the Centre after the Supreme Court changed some provisions of the act.
Summary:
An attempt to murder case has been registered against two policemen in Madhya PradeshâÂÂs Bhind for firing into a crowd of 500 protesters, leading to the death of one person.
Summary:
Pakistan Army chief General Qamar Javed Bajwa on Monday approved death penalty for murderers of qawwali singer Amjad Sabri who was shot dead in Karachi's Liaquatabad area in June 2016.
Summary:
Daniels filed the suit claiming that a non-disclosure agreement she signed regarding the affair with Trump is invalid because he never signed it.
Summary:
The Islamic State militant group has claimed responsibility for the killing of a Christian family in Pakistan's Balochistan province.
Summary:
Smith said she was working at the supermarket when Spiering walked up to her and gave her his phone number.
Summary:
The Gujarat Cooperative Milk Marketing Federation (GCMMF), which markets the Amulnbrand of milk and dairy products, has posted a provisional turnover of â¹29,220 crore in 2017-18.
Summary:
Chinese e-commerce giant Alibaba Group has sued a Dubai-based firm behind the 'Alibabacoin' cryptocurrency for trademark infringement.
Summary:
According to reports, comedians Ali Asgar and Sugandha Mishra will feature in Sunil Grover's new web show.
Earlier, reports suggested that Bigg Boss 11 contestant Shilpa Shinde will also feature on the show.
Summary:
Dwayne Johnson, while revealing that he suffered from depression, said, "I reached a point where I didn't want to do a thing...I was crying constantly." Talking about the time his mother tried to commit suicide when he was 15, Dwayne added, "We both healed.
Summary:
Sonakshi had earlier said that she has been brought up in a way that she treats success and failure in the same way.
Summary:
A circus truck carrying elephants overturned on a highway in Spain, following which the injured elephants were lifted off the road using cranes.
Summary:
Ratan Tata-backed Mumbai-based cannabis research startup Bombay Hemp Company has raised â¹3 crore from Hong Kong-based textile company Ginni International Limited and Mukhtar Tejani of Gits Food.
Summary:
Previously, two sailors associated with the company went missing under allegedly mysterious circumstances.
Summary:
The stations will be set up at district engineering colleges and the MPCB is estimating the cost of the project to be â¹25 crore.
Summary:
A Hindu temple was ransacked and portraits of Gods and Goddesses were found stained with mud by unidentified people in West Bengal's Howrah on Monday.
Summary:
The garland, which was made out of around 3,000 apples, had to be lifted with the help of a crane.
Summary:
CNG prices were hiked by 90 paise per kg and piped cooking gas prices raised by â¹1.15 per scm in Delhi effective from Sunday, following the government's hike in domestic natural gas price.
Summary:
Under UK laws, no licence is needed to drive on private land.
Summary:
The RBI has dropped Axis Bank from the list of banks it has cleared to import gold and silver in the current fiscal that began April 1.
Summary:
The Supreme Court on Tuesday refused to stay its order on SC/ST (Prevention of Atrocities) Act while hearing the review petition filed by the Centre.
Summary:
The official teaser of OnePlus' next flagship smartphone OnePlus 6 is out.
Summary:
The US State Department on Monday designated 26/11 Mumbai terror attack mastermind Hafiz Saeed's political party, Milli Muslim League (MML), as a foreign terrorist organisation.
Summary:
Saudi Arabia has banned its citizens from illegally accessing their spouses' phones.
Summary:
An American couple, 83-year-old Harold Holland and 78-year-old Lillian Barnes, are set to marry each other 50 years after they got divorced.
Summary:
"Verma promised her to omit the scene but didn't do so," the officer added.
Summary:
World's richest person and Amazon CEO Jeff Bezos lost $6 billion in a day after US president Donald Trump tweeted that Postal Service is 'losing a fortune' due to Amazon.
Summary:
Summary:
Responding to Apple CEO Tim Cook's criticism over ad targeting, Facebook CEO Mark Zuckerberg has said the company is not just serving rich people and needs to be something that people can afford.
Summary:
Punjab Congress MPs climbed the Parliament building on Tuesday to demand financial aid for the families of 39 Indians killed by ISIS in Iraq.
Summary:
Meanwhile, Punjab has announced a compensation of â¹5 lakh each for the families of 27 people from the state who were killed by ISIS.
Summary:
It alleged that Centra Tech's Sohrab "Sam" Sharma and Robert Farkas raised over $32 million by selling unregistered securities through a "CTR Token".
Summary:
ICICI Bank CEO Chanda Kochhar's brother-in-law Rajiv Kochhar has said that he or his financial services firm Avista Advisory Group doesn't have any business arrangements with ICICI Bank.
Summary:
Tata Group Chairman Emeritus Ratan Tata has said he was hurt when Tata Motors lost market share in the last 4-5 years and the country looked at it as a "failing company".
Summary:
Cybersecurity expert John McAfee has revealed that he charges $105,000 (over â¹68 lakh) for each tweet promoting a cryptocurrency or token sale.
Summary:
Actor Ayushmann Khurrana, while talking about his choice of films, said, "I think I own the quirky film genre." "Agar koi actor aisey film karna chahata hai, he should be told, 'Ayushmann ke type ki film kar rahe ho'," he jokingly added.
Summary:
Actress Aishwarya Rai Bachchan and American rapper Pharrell Williams have featured on the April cover of fashion magazine 'Vogue India'.
Summary:
New Zealand clinched their first home Test series win over England since 1983-84 after claiming the two-match series 1-0 following the drawn second Test in Christchurch.
Summary:
A day after ace shuttler Saina Nehwal lashed out at Commonwealth Games 2018 organisers over her father being denied entry into the Games village, the Indian Olympic Association said he is an "accredited Extra Official".
Summary:
South Africa defeated Australia by 492 runs in the fourth Test on Tuesday to register their biggest-ever Test victory by runs and win the four-match Test series 3-1.
Summary:
E-commerce giant Amazon India has laid off around 60 employees from its recruitment team and may ask more employees to leave across teams.
Summary:
SoftBank has signed a $930-million deal with China's energy conglomerate Golden Concord (GCL) to produce and sell solar equipment in India.
Summary:
In response, Grindr said the data sharing is "standard" in the industry and pointed out the company considers its app a "public forum".
Summary:
Mumbai-based online fitness platform Fitternity has raised about â¹13 crore in a seed round of funding from existing investors Saha Fund and Exfinity Venture Partners.
Summary:
The incident took place when the accused got into an argument with the servers who refused to serve them the chicken.
Summary:
Several people have recently been robbed of their vehicles and valuables after they took lifts from unknown people in Gurugram, police have said.
Summary:
A cargo helicopter of the Indian Air Force carrying construction material crashed on Tuesday after it collided with an iron girder near the Kedarnath temple in Uttarakhand.
Summary:
Prime Minister Narendra Modi has ordered that the I&B Ministry press release regarding fake news be withdrawn and to let the matter be addressed in the Press Council of India only.
Summary:
The CBSE on Tuesday announced that no re-examination will be held for the Class 10 Mathematics paper.
Summary:
On $2.1-billion fraud, PNB said it has "zero tolerance to unethical practices within the system".
Summary:
The rocket carried SpaceX's Dragon capsule which will stay attached to the ISS for about a month.
Summary:
Paytm-owned online marketplace Paytm Mall has raised $445 million in a financing round led by Japan's SoftBank along with participation from Chinese e-commerce giant Alibaba.
Summary:
The Gujarat High Court on Monday said that marital rape should be made illegal to teach societies that dehumanised treatment of women will not be tolerated.
Summary:
While the father's names of over 11.07 crore members are missing, there are 7.8 crore members whose joining date record isn't available.
Summary:
The Supreme Court on Tuesday agreed for an open court hearing on the CentreâÂÂs review petition over the alleged dilution of the SC/ST (Prevention of Atrocities) Act. The court had removed the provision for immediate arrest for FIRs filed under the act.
Summary:
Comedian Sidharth Sagar, who was reported to be missing for four months, has said his parents were giving him medicines for an ailment he didn't have.
Summary:
The new release date of John Abraham's 'Parmanu: The Story of Pokhran' has been announced as May 4 by his production house.
Summary:
Actress Tabu, while talking about her equation with Ajay Devgn, said, "When I'm working with him, it doesn't feel like work." "We have known each other since the time we weren't even part of the industry," she added.
Summary:
Jesse Hernandez had been playing near an access portal to the sewer system when the incident occurred.
Summary:
A 6.16-carat blue diamond, which was mined from the Golconda mines in India over 300 years ago, is expected to fetch up to $5.2 million (â¹34 crore) at an auction in Switzerland next month.
Summary:
Badminton's new service rule, in which the whole of the shuttle should be below 1.15 metres from the surface of the court at the time of service, will not be enforced at the 2018 Commonwealth Games.
Summary:
England's James Anderson went past former Windies pacer Courtney Walsh to set the record for the most number of legal deliveries in Test cricket for a fast bowler.
Summary:
Google's chief of search and artificial intelligence units John Giannandrea is stepping down after two years on the job, the company has confirmed.
Summary:
Union Minister Smriti Irani on Monday said the Press Council of India and the News Broadcasters Association, which are not controlled by the government, will ascertain whether a news is fake or not.
Summary:
AIADMK sat on a statewide hunger strike in Tamil Nadu on Tuesday to protest against the Centre's failure to set up a Cauvery Management Board (CMB) despite the Supreme Court's order.
Summary:
Tesla CEO Elon Musk has taken over direct control of Model 3 electric sedan's production after the company failed to meet the delivery goals.
Summary:
US-based startup 82 Labs has developed a 'Morning Recovery drink' which the company claims cures hangovers within hours.
Summary:
Following an apology by Delhi CM Arvind Kejriwal and other AAP leaders, the Delhi High Court has disposed off the defamation suit filed by Finance Minister Arun Jaitley.
Summary:
The government has also been providing pension of â¹20,000 monthly to these families, minister Navjot Singh Sidhu announced.
Summary:
Reacting to statues of famous personalities installed at a wax museum in Punjab's Ludhiana, a Twitter user tweeted, "Itne paise me itnaa hi milega".
And decided to straighten his hair," a user commented on APJ Abdul Kalam's statue.
Summary:
After the government issued guidelines against journalists broadcasting fake news, some journalists have called the move "undemocratic" and said it might "throttle the media".
Summary:
She has lodged a complaint against the constable with the Commissioner of police, according to the reports.
Summary:
RSS ideologue and DU professor Rakesh Sinha was mistaken as a protestor by the police and detained during the Bharat Bandh protests against the alleged dilution of the SC/ST Act.
Summary:
As many as 15 CCTVs at the exam centre where the Class 12 CBSE Economics paper was allegedly leaked were not working, reports said.
Summary:
These tyres are designed to be highly fuel efficient and durable giving up to 1 Lakh KM.
Summary:
The entire New Zealand team was once given the 'Man of the Match' award after the adjudicator declined to pick out any individual in an ODI against Windies on April 3, 1996.
Summary:
On Monday, diesel prices hit an all-time high of â¹64.69 per litre in Delhi, while petrol prices reached a four-year high of â¹73.83 per litre.
Summary:
The Central Board of Secondary Education (CBSE) has issued a notice saying a letter circulating on social media about the date for the Class 10 Maths re-examination is fake and should be ignored.
Summary:
An American teenager has received full scholarships to all the 20 US colleges he applied to, including Harvard and Stanford.
Summary:
After the news spread and media outlets covered the story, a girl got in touch with him and DNA evidence proved she was his daughter.
Summary:
This comes a day after Pakistan posted 203/5, equalling their previous highest T20I score.
Summary:
Indian boxers at the Commonwealth Games have been cleared of any doping charges after syringes were found outside the Indian contingent's accommodation in the Games village.
Summary:
Amazon's stock fell around 6% on Monday, wiping out nearly $45 billion from its market capitalisation, after US President Donald Trump slammed the online retailer over its deliveries' pricing through the US Postal Service.
Summary:
Madhya Pradesh's Special Task Force has detained two agents and 48 aspirants for their alleged involvement in the leak of the Food Corporation of India (FCI) exam paper for the post of watchman.
Summary:
The man's son carried him on his shoulders to the hospital, which was 1 km away.
Summary:
The Information and Broadcasting Ministry has announced that journalists guilty of writing or broadcasting fake news may lose their accreditation temporarily or permanently, depending on the number of violations.
Summary:
Families of two people killed in Iraq refused to accept the bodies on Monday and demanded financial assistance from the Bihar government.
Summary:
Actor Ishaan Khatter, when asked about being compared with his half-brother Shahid Kapoor, said, "We're a team and we're not competing." Ishaan added, "He's my big brother, I cannot compare myself to him.
Summary:
Hollywood actor Channing Tatum and his wife Jenna Dewan have announced their separation after nine years of marriage.
Summary:
Filmmaker Vishal Bhardwaj has said he loves Pakistan while adding, "It's very sad that we (India and Pakistan) are always at loggerheads." He further said, "We all are alike.
Summary:
Summary:
Taylor Swift made a surprise appearance at the Bluebird Cafe in Nashville where she started her musical career.
Summary:
Needing 19 runs in the last over, Carlos Brathwaite smashed Ben Stokes' first four deliveries for successive sixes as Windies defeated England in the World T20 final on April 3, 2016.
Summary:
Wishing luck to his wife and squash player Dipika Pallikal for the upcoming Commonwealth Games, Indian wicketkeeper Dinesh Karthik tweeted, "To be able to support my wife to achieve her goals is everything to me".
Summary:
The association's President said, "The proposed penalties are disproportionate relative to precedent", and urged the board to allow the players to return to domestic cricket earlier.
Summary:
Uttar Pradesh Police has detained BSP leader Yogesh Verma, alleging he is the "main conspirator" of the violent protests that broke out in Meerut.
Summary:
MLA Gopal Parmar of the ruling BJP in Madhya Pradesh's Agar was caught on camera forcing shop owners to close their shops during the Bharat Bandh on Monday.
Summary:
Moulana Imdadul Rashidi, father of the 16-year-old boy killed in violent clashes during Ram Navmi celebrations in West Bengal's Asansol, said he won't name anyone as a suspect since he was not a witness to the incident.
Summary:
In a first, the Western Railway has introduced the concept of 'Pay as you please' for the free urinals in its suburban railway stations in Mumbai.
Summary:
A school headmaster immolated himself inside a classroom in Uttar Pradesh's Bundelkhand on the day of his retirement on Saturday.
Summary:
Replying to whether families of the 39 Indians killed in Iraq will be given jobs or compensation, union minister VK Singh said it is not like distributing biscuits, adding that it is about people's lives.
Summary:
In 1979, NASA's 85-tonne Skylab space station scattered pieces over several miles of Western Australia after an uncontrolled re-entry.
Summary:
The Finance Ministry on Monday announced that a record 6.84 crore Income Tax Returns were filed in the financial year 2017-18, showing a growth of 26% from previous fiscal.
Summary:
In an attempt to tackle paper leaks, the CBSE on Monday introduced encrypted question papers which are printed at the exam centre just before the commencement of the exam.
Summary:
Indian Railways transported a freight load of over 1,160 million tonnes in 2017-18, which is the highest-ever load transported by the railways, ministry officials have revealed.
Summary:
The death toll has risen to nine in the violence during Bharat Bandh, called by Dalit groups to protest a Supreme Court ruling on SC/ST act.
Summary:
Union Home Minister Rajnath Singh on Monday urged state governments to maintain law and order as the Bharat Bandh called by Dalits to protest the Supreme Court ruling on SC/ST act turned violent.
Summary:
The collection from corporate tax went up 17.1% while that from personal income tax rose 18.9%.
Summary:
Denying responsibility for the escalation of a diplomatic row over the poisoning of former spy Sergei Skripal in Salisbury, UK, Russian Foreign Minister Sergei Lavrov said that the UK and US were playing children's games.
Summary:
South Africa's anti-apartheid activist Winnie Madikizela-Mandela passed away on Monday after a prolonged illness at the age of 81, her family said in a statement.
Summary:
UK Minister of State for International Development, Alistair Burt, has admitted that UK taxpayer money being spent on helping Palestinians is also funding schools teaching a curriculum that promotes martyrdom and jihad against Israel.
Summary:
The price of non-subsidised LPG has been reduced by â¹35.50 per cylinder, and that of the subsidised cylinder by â¹1.74 in Delhi.
Summary:
Talking about her acting career, Hollywood actress Cameron Diaz said, "I'm semi-retired, too, and I am actually retired," while adding that she is literally doing nothing.
Summary:
As per reports, Hrithik Roshan will perform at the opening ceremony of the upcoming edition of the Indian Premier League (IPL).
Summary:
Banita Sandhu has revealed that she had hired a Hindi tutor for her debut Bollywood film 'October'.
Summary:
The makers of the upcoming film 'October' released the making video of Varun Dhawan's character Dan. The video introduces Varun as Danish Walia (Dan), who has been described as a normal hotel employee battling with his daily tasks.
Summary:
As per reports, Varun Dhawan will star opposite Alia Bhatt in the third instalment of the 'Aashiqui' franchise 'Aashiqui 3'.
Summary:
Ace Indian shuttler Saina Nehwal took to Twitter to slam Commonwealth Games organisers after her father's name was cut from team official category when they arrived in Australia.
Summary:
Kuldeep will represent Kolkata Knight Riders in the 2018 IPL.
Summary:
Kucka was fouled by Galatasaray midfielder Sofiane Feghouli before taking a quick free-kick which goalkeeper Fernando Muslera failed to parry as he was caught in front.
Summary:
He added the Congress did nothing for the Dalit community and only abused their leader BR Ambedkar.
Summary:
The court directed the government to ensure that traders' protests against the ongoing sealing drive are stopped.
Summary:
Earlier in the Budget 2018-19, the government had raised import duty on mobile phones to 20% from 15%.
Summary:
Several people in US cities of Washington DC and Minnesota took to the streets to demand the closure of Sterlite copper plant in Tamil Nadu's Tuticorin and protest against its proposed expansion.
Summary:
Claiming that women are hardly given prestigious posts, Roopa added people often doubt whether a female officer can handle a sensitive or important place.
Summary:
At least 15 people were killed and 83 others were injured in Nigeria in an attack carried out by the Islamist militant group Boko Haram, officials said on Monday.
Summary:
Israel has reached a deal with the UN to settle African migrants in western countries, scrapping its earlier plans to deport them to Africa, a statement from the Prime Minister's Office said.
Summary:
Union Minister CR Chaudhary has said the government has requested the US to exempt India from steel and aluminium tariffs.
Summary:
Former India captain MS Dhoni received Padma Bhushan, India's third highest civilian honour, at Rashtrapati Bhavan on Monday, seven years after leading India to victory in the World Cup final.
Summary:
The earlier record was set by 1,069 robots in China in 2017.
Summary:
Sunil Grover took to Twitter to wish Kapil Sharma on his birthday, while tweeting, "Happy Birthday Kapil Sharma.
Summary:
Villagers and activists of the ruling TRS poured milk on Telangana Assembly Speaker Madhusudana Chary to honour him as he came to inaugurate a new gram panchayat office in his home constituency of Bhupalapally.
Summary:
Several Dalit organisations have called for a Bharat Bandh to protest a Supreme Court ruling barring automatic arrest and registration of cases under the SC/ST (Prevention of Atrocities) Act. The court had claimed the ruling was aimed at preventing misuse of the act.
Summary:
Four people have been killed in Madhya Pradesh as Dalit protests against the Supreme Court ruling on SC/ST act turned violent on Monday.
Summary:
Turkish President Recep Tayyip ErdoÃÂan called Israeli Prime Minister Benjamin Netanyahu a "terrorist" after Israel Defence Forces (IDF) killed 15 Palestinians during a protest on the Gaza border.
Summary:
The new law sets out fines of up to 500,000 ringgit (over â¹84 lakh) and a maximum six years in jail.
Summary:
The campaign aims to advise women on how to tackle the gender pay gap at work, including holding employers accountable for the inequality in pay.
Summary:
Bahrain currently pumps around 45,000 barrels of oil a day from its Bahrain Field.
Summary:
There is a museum inside the TU-142M aircraft of the Indian Navy in Visakhapatnam.
Summary:
Mushrooms are being used as ingredients in coffee, milkshakes and tea.
Summary:
The CBI has registered a fraud case over loans worth â¹19-crore that were sanctioned by UCO Bank to 18 fake borrowers.
Summary:
Indian companies raised over â¹84,300 crore through Initial Public Offerings (IPOs) in 2017-18, according to a study by PRIME Database.
Summary:
It is one of the 18 milk unions that form the federation which markets milk products under the "Amul" brand.
Summary:
John Abraham's production house John Abraham Entertainment has announced that they are terminating their contract with KriArj Entertainment for the film 'Parmanu: The Story of Pokhran' over delay in its release.
Summary:
Earlier, there were reports of Priyanka Chopra starring opposite Salman in the film.
Summary:
Sunny Leone has revealed that many people had the misconception that she was criticised when she decided to come to India while adding, "I started getting hate mails and criticism when I was around 21 years old." She added, "It has nothing to do with the country, but society in general...
Summary:
Chris Gayle, who will represent Kings XI Punjab in the 11th season of the Indian Premier League, broke into Bhangra on Punjabi music and posted the video on Instagram.
Summary:
A cruise ship takes passengers on a journey aimed at giving them a glimpse of the cherry blossoms in Japan.
Summary:
BJP worker Anil Singh, who is one of the main accused in the Aurangabad communal clash in Bihar, surrendered on Monday after he escaped from police custody on Thursday.
Summary:
Two DMK workers in Tamil Nadu's Coimbatore attempted self-immolation in protest against the Centre, demanding the setting up of the Cauvery Management Board.
Summary:
Seven Indians were among the 15 killed on Monday in a bus collision in Kuwait, officials said.
Summary:
The couple was crossing the tracks when a train began approaching them at a fast pace, the RPF said.
Summary:
The prices for number plates procured by them ranges from â¹800 to â¹40,000, he added.
Summary:
Finance Ministry said that nearly 11 lakh taxpayers and 19,800 transporters have registered on the e-way bill portal till date.
Summary:
Maxis was not obligated to fund Aircel but did so as a "goodwill" gesture, reports added.
Summary:
A special IAF aircraft carrying the mortal remains of the 38 Indians killed in Iraq landed in Punjab's Amritsar on Monday.
Summary:
The Tiger Shroff and Disha Patani starrer 'Baaghi 2' earned â¹73.10 crore to become the second highest opening weekend grosser of 2018 in India.
Summary:
India replaced Vietnam to become the second largest producer of mobile phones.
Summary:
A picture of a Hyderabad traffic policeman feeding an 80-year-old homeless woman with his hands has been shared online.
Summary:
After the US imposed tariffs on Chinese imports worth up to $60 billion, the Chinese Finance Ministry on Monday announced tariffs of up to 25% on $3 billion in food imports from the US.
Summary:
During an interview, New Zealand Prime Minister Jacinda Ardern said that the country would transition away from monarchy and likely become a republic in her lifetime.
Summary:
US President Donald Trump has suggested there would be no deal to legalise the status of 8 lakh immigrants illegally brought to the US as children.
Summary:
North Korean leader Kim Jong-un on Sunday became the country's first head of state to attend a concert by South Korean performers in North's capital Pyongyang.
Summary:
As per reports, actor Salman Khan will be recreating his old song 'Oh Oh Jane Jaana' for the debut Bollywood film of Katrina Kaif's sister Isabelle Kaif.
Summary:
Jahantap Ahmadi, the 25-year-old Afghan woman whose photograph showing her appear for a university entrance exam while caring for her baby went viral, has enrolled at a private university in Kabul.
Summary:
The bat MS Dhoni used to hit the 2011 World Cup final-winning six holds the record for being the most expensive cricket bat in history.
Summary:
Sachin Tendulkar hadn't let Virender Sehwag watch the 2011 World Cup final live, and neither watched it himself, despite being in the dressing room when India were chasing Sri Lanka's 275-run target.
Summary:
South African opener Dean Elgar sprinted back around 10 yards from mid-off and produced a diving catch to dismiss Australian captain Tim Paine in the fourth Test on Sunday.
Summary:
Summary:
Amid ongoing protests by Dalit organisations against the alleged dilution of SC/ST protection act by the Supreme Court, Congress President Rahul Gandhi said that keeping Dalits at the bottom is in the DNA of BJP and RSS.
Summary:
The latest deal will value the startup at $9.5 billion, Alibaba said in a statement.
Summary:
NASA's supersonic parachute that will help missions to land on Mars, was successfully launched during a test designed to mimic the conditions of entering the Martian atmosphere.
Summary:
Staging a protest in Tripura's South Joynagar, Vishva Hindu Parishad (VHP) on Sunday demanded a ban on cow slaughter in the state and threatened to launch an agitation otherwise.
Summary:
Last month, the court had removed the provision for immediate arrest in cases filed under the act.
Summary:
Muslim seminary Darul Uloom Deoband has declared that it will not solemnise Muslim marriages where music, dance, and a DJ are part of the wedding as it is against Islam.
Summary:
Jaitley had filed the defamation case in 2015, claiming the AAP leaders had made "false and defamatory" statements and harmed his reputation.
Summary:
The woman filed a police complaint after coming across her pictures on Whatsapp.
Summary:
The girl then ran away from home and filed a police complaint.
Summary:
She was taken to a community health centre but no doctor was available to help her with the procedure.
Summary:
Talking about the hike in fuel prices, Union Petroleum and Natural Gas Minister Dharmendra Pradhan said that the government shouldn't be criticised for the rise in prices.
Summary:
YSR Congress Party chief Jagan Mohan Reddy on Monday said that the Special Category Status (SCS) for Andhra Pradesh was synonymous with job opportunities for the youth.
Summary:
Aviation Minister Suresh Prabhu has said there will be "zero tolerance" on air safety issues and that "safety should not be compromised on any account." He said the IndiGo and GoAir planes with faulty Pratt & Whitney engines will remain grounded until the issues are addressed.
Summary:
One person has died in Madhya Pradesh's Morena during the 'Bharat Bandh' protests being held by Dalit organisations against the alleged dilution of the SC/ST (Prevention of Atrocities) Act. A curfew has also been imposed in the area.
Summary:
The startup claims Vera has taken over 2,000 interviews so far and has 300 clients including PepsiCo, L'Oréal, and Ikea.
Summary:
In an April Fools' Day prank, author Chetan Bhagat tweeted, "CouldnâÂÂt take it anymore.
Summary:
Actress Disha Patani said she came to Mumbai with â¹500 while adding, "After a point, I didn't have any money." She revealed she left her studies, went to Mumbai and never asked her family for money.
Summary:
India's then-skipper MS Dhoni ended India's 28-year-long wait for the World Cup trophy with a six off Sri Lankan pacer Nuwan Kulasekara over long-on at the Wankhede Stadium in Mumbai on April 2, 2011.
Summary:
Spain's 16-time Grand Slam champion Rafael Nadal displaced Swiss rival Roger Federer at the top of the ATP men's singles rankings.
Summary:
Snapchat's parent company Snap has said its recent layoff of about 220 employees will save it $34 million per year in salaries and taxes.
Summary:
Meanwhile, visitors booking the tickets online can select their 3-hour slot on the website.
Summary:
Puducherry Police received a call about a bomb in CM V Narayanasamy's residence, but the call later turned out to be a hoax, police sources have said.
Summary:
Badgaiyan wanted the group to diversify into other parts of the economy apart from tech startups.
Summary:
The crash of Tesla Model X on Autopilot resulted in the driver's death.
Summary:
US-based cab aggregator Uber's CEO Dara Khosrowshahi has said India is already among the top three markets for Uber and accounts for 10% of its trips globally.
Summary:
Earlier, reports suggested Swiggy was in talks to raise between $50-100 million from Coatue Management.
Summary:
Defunct satellites and spacecraft usually burn up while entering the Earth's atmosphere, however, large satellites or space stations do not completely burn up before reaching the Earth's surface.
Summary:
The UP Police on Sunday trolled criminals with a tweet on the occasion of April Fools' Day. The force tweeted a picture featuring a number of iconic Bollywood stars, who have portrayed prominent villainous roles, where their characters have openly mocked and often outfoxed the police forces.
Summary:
The Supreme Court will hear pleas relating to the re-examination of the CBSE Class 10 Mathematics paper on April 4.
Summary:
The Centre has filed a review petition in the Supreme Court on its recent ruling on the SC/ST anti-atrocities act, Law Minister Ravi Shankar Prasad said.
Summary:
ICICI Bank lost as much as â¹12,000 crore in market value on Monday after the CBI initiated a preliminary enquiry into the bank's loan to Videocon.
Summary:
Bandhan Bank has become India's eighth most valuable bank with a market capitalisation of around â¹57,500 crore.
Summary:
Ichiro Suzuki, a 44-year-old baseball player for the MLB side Seattle Mariners, scaled the height of a wall with his jump to rob the opposition of a home run.
Summary:
Canadian teacher and hockey player Serah Small shared a photo of herself breastfeeding her 8-week-old baby in the locker room during a match as she had forgotten her breast pump.
Talking about her teammates, Small said, "They just continued getting ready.
Summary:
Google spinoff Waymo's CEO John Krafcik has said, "To the core of my body, I swear on my father's grave, it's (harvesting data) not a priority." He also said that achieving zero fatalities on roads has to be the big goal for the company.
Summary:
Google is reportedly planning to launch a mid-range Pixel smartphone specifically for price-sensitive markets like India and could launch it around July.
Summary:
The award was received by Mangaluru International Airport Director VV Rao. n
Summary:
India ranked 37th in the global startup ecosystem in 2017, according to a report released by global startup ecosystem map Startupblink.
Summary:
In the financial year 2017-2018, the Indian Railways recorded less than 100 accidents for the first time in 35 years, reports said.
Summary:
BJP MP Savitri Bai Phoole on Sunday slammed the Central government over reports that it is trying to end reservations.
Summary:
Tendulkar, whose term as Rajya Sabha MP will end later in April, earned nearly â¹90 lakh in the past six years.
Summary:
China's "out-of-control" space laboratory Tiangong-1 re-entered the Earth's atmosphere early on Monday, 'mostly' burning up as it headed towards the central region of the South Pacific.
Summary:
News anchor Radhika Reddy, employed with a channel in Hyderabad, committed suicide on Sunday by jumping off the fifth floor of a building, reports said.
Summary:
Class 12 and 10 CBSE Board examinations in Punjab that were scheduled for Monday have been postponed due to the call for Bharat Bandh.
Summary:
Referee Jeff Crowe said he had not heard Sangakkara's call, after which the toss was redone and won by Sri Lanka.
Summary:
The win featured Pakistan equalling their own highest T20I total and going 1-0 up in the three-match T20I series.
Summary:
Tesla Co-Founder Elon Musk in an April Fools' Day tweet announced that the carmaker had gone bankrupt.
Tesla has gone completely and totally bankrupt," he wrote.
Summary:
Expressing a personal opinion, IT Minister Ravi Shankar Prasad said that the voter ID should not be linked with Aadhaar.
Summary:
Mumbai has become the first Indian city to appoint eight women police station incharges, the force announced on its Twitter handle on Friday.
Summary:
The woman said she had eloped with her second husband, with whom she had relations before marriage.
Summary:
As per reports, Amitabh Bachchan and Taapsee Pannu will be starring in Sujoy Ghosh's upcoming film.
Summary:
Filmmaker Karan Johar tweeted that he wanted to post about him acting in his next directorial film as an April Fools' Day joke.
Summary:
As per reports, actor Ranveer Singh is likely to skip performing at Indian Premier League (IPL) 2018 opening ceremony due to a shoulder injury.
Summary:
While addressing a Sunday congregation in Sydney, Anglican Archbishop Glenn Davies asked for forgiveness for Steve Smith, David Warner and Cameron Bancroft, the players who were involved in the ball-tampering incident.
Summary:
Priced at $0.99, the app offers 30 filters, including a Wild Card option which can repeatedly be tapped to generate randomised effects.
Summary:
A Facebook spokesperson said the tool will require the advertisers to pledge, "I certify that I have permission to use this data".
Summary:
Sweden on Sunday introduced a new aviation tax requiring all passenger flights in the country to have an added charge ranging from 60 kronor (â¹470) to 400 kronor (â¹3,100), depending on the destination.
Summary:
The filter places a Facebook UI around the photo with Cyrillic script-like text, and includes likes from "your mum" and "a bot".
Summary:
Following the encounters, locals resorted to stone pelting, killing four civilians.
Summary:
The price of the new fuel would reportedly be 50 paise/litre more than the present rate.
Summary:
Mumbai International Airport Limited organised a 10-day workshop to provide training to Central Industrial Security Force (CISF) staff to help them deal with passengers who either misbehave or cause nuisance.
Summary:
Social activist Teesta Setalvad has been booked for allegedly fraudulently securing central government funds worth â¹1.4 crore between 2010 and 2013 for her NGO Sabrang.
Summary:
A couple residing in Maharashtra's Latur district has named their one-month-old baby girl 'Swachhata' after being impressed with the cleanliness drive undertaken in their ward, Congress corporator Vikrant Gojamgunde said.
Summary:
When her father got home, he found her body in the bathroom.
Summary:
Police officers in Mumbai donated blood on Sunday.
Summary:
Billionaire Anil Agarwal-controlled Vedanta has won the bid to acquire insolvent Electrosteel Steels through India's new bankruptcy process.
Summary:
State-owned telecom operator BSNL has approached the Department of Telecommunications (DoT) for recovery of its outstanding dues from Aircel, which recently filed for bankruptcy.
Summary:
nAccording to one theory, when the new year date was changed from March to January in the 1500s, those who continued to celebrate it in March-end and the beginning of April were called fools and had pranks played on them.
Summary:
The 9:41 AM time displayed on iPhone and iPad advertisements is the time when the original iPhone was announced by Steve Jobs in 2007.
Summary:
Britain's Anthony Joshua beat New Zealand's Joseph Parker on points to add the WBO heavyweight world championship title to his tally of WBA, IBO, and IBF world heavyweight championship titles which he currently holds.
Summary:
Monger drove a specially adapted car, which had a single pedal for braking with his prosthetic legs.
Summary:
Accusing Amazon of ripping off the US Postal Service, President Donald Trump has said, "Amazon must pay real costs (and taxes) now!" Trump also said the Post Office was losing "billions" in its contract with Amazon.
Summary:
The Church bells rang 76 times, representing the number of years Hawking lived.
Summary:
The University of Madras has hiked the fine on colleges for mass copying by ten times, from â¹5,000 to â¹50,000.
Summary:
Petrol price hit a 4.5-year high of â¹73.73 per litre in Delhi onâÂÂSunday while diesel rates touched an all-time high of â¹64.58.
Summary:
A video which has surfaced online shows Kareena Kapoor Khan jokingly telling Punit Malhotra, director of 'Student Of The Year 2', that Taimur will star in Student Of The Year 5.
Summary:
Hollywood actor Leonardo DiCaprio, who is 43-years-old, is dating 20-year-old model Camila Morrone, as per reports.
Summary:
Summary:
Pakistan Cricket Board's Chairman Najam Sethi on Saturday complained of the negative press about the depleted West Indies squad coming to Karachi for a T20I series starting today.
Summary:
Paine was appointed captain after Steve Smith stepped down over the ball-tampering scandal.
Summary:
Zlatan followed his 77th-minute goal with a header in the injury-time, which helped LA Galaxy beat LA FC 4-3.
Summary:
Ex-Australia captain and Cricket Australia member Mark Taylor has said the board will consider banning sledging in the wake of the ball-tampering fiasco in South Africa.
"Talking is one thing...Abusing, sledging, bullying...whatever you want to call it is another thing.
Summary:
Reacting to banned Australian batsman David Warner breaking down in a press conference over the ball-tampering scandal, his former SunRisers Hyderabad teammate Mustafizur Rahman tweeted that it is tough to acceptÃÂ Warner's current condition.
Summary:
General Motors (GM) owned startup Cruise Automation's self-driving vehicle was ticketed by a cop in the US, for coming too close to a pedestrian.
Summary:
A Denver-bound Delta flight was forced to make an emergency landing in New York after a bird struck the aircraft and one of its engines shut down due to the impact.
Summary:
However, clothing will be optional at the beach and nudism will not be a requirement.
Summary:
Slamming Jammu and Kashmir CM Mehbooba Mufti for saying India should initiate talks with Pakistan, BJP MP Subramanian Swamy on Sunday said she can be "mehbooba (lover)" for Pakistan but not for India.
Summary:
The police on Sunday detained DMK leader MK Stalin during a protest against the Centre for the constitution of Cauvery Management Board.
Summary:
The Tibetan government-in-exile is a product of the 'Make in India' campaign, Tibetan PM Lobsang Sangay said at a 'Thank you India' event commemorating the Dalai Lama's 60-year exile.
Summary:
Two Army jawans were martyred on Sunday in an encounter in Jammu and Kashmir's Shopian district, state police chief SP Vaid said.
Summary:
Captain MK Kachru, the pilot of the Indian Airlines flight which was hijacked and taken to Pakistan in 1971, passed away on Saturday at the age of 93.
Summary:
The Supreme Court has sought replies from DGP (Prisons) of 10 states, including Andhra Pradesh, Maharashtra, Tamil Nadu, and Delhi, on the alleged violation of the human rights of convicts facing death penalty.
Summary:
A bridge collapsed on the Gangotri highway in Uttarakhand on Sunday due to overloading, for the second time in around three months.
Summary:
Businesses and transporters shipping goods worth more than â¹50,000 from one state to another will have to carry GST e-way bill starting today, April 1.
Summary:
The feature will sync chat history to the new chat on the recipients' phone and also allow users to notify specific contacts about the change.
Summary:
Apple Co-founder Steve Wozniak is known to have hand-built all of the 200 units of Apple I computers.
Summary:
The company's Founder and CEO Pavel Durov plans to use the proceeds to develop the Telegram Open Network (TON) blockchain, which includes the cryptocurrency Gram.
Summary:
China's "out-of-control" space laboratory Tiangong-1 may fall to Earth on Monday, European Space Agency has revealed.
Summary:
Indian Railways passengers will now be allowed to rate the cleanliness of trains and stations, based on which the payment of contractors will be decided.
Summary:
Hollywood actresses including Angelina Jolie have accused Weinstein of sexual harassment and rape.
Summary:
A video shows a bird flying up and down the cabin of a recent Bangkok-Doha Qatar Airways flight.
Summary:
It was alleged that Dhoot gave â¹64 crore to a company founded by Chanda Kochhar's husband Deepak Kochhar six months after Videocon got the loan.
Summary:
World's largest cryptocurrency Bitcoin has lost $115 billion in market capitalisation in the first quarter of this year.
Summary:
When asked during an interview who the current President of India is, actor Tiger Shroff mistakenly named the former President Pranab Mukherjee.
Summary:
Actor Vivek Oberoi compared a building, which was being constructed, to Reliance Industries Chairman Mukesh Ambani's residence Antilia and wrote, "Does this building look familiar?
Summary:
Reports added Priyanka liked Bharat's script and was keen to team up with Salman, though she is yet to sign the film.
Summary:
Warner also fought with Quinton de Kock over "vile" comments about Candice.
Summary:
Nawaz also revealed when Pakistani bowlers started executing reverse-swing naturally, everyone called it "cheating".
Summary:
The organising committee of the Commonwealth Games carried out dope tests on Indian boxers after officials found a syringe outside their rooms on Saturday.
Summary:
Former world number one Serbia's Novak Djokovic split with his coach former world number one Andre Agassi, who had replaced another former world number one, Boris Becker.
Summary:
A villa with its own wine cellar and 100-car garage has gone on sale for $12.9 million (â¹84 crore) in California, US.
Summary:
After AIADMK MP Navaneethakrishnan threatened to commit suicide over the delay in forming the Cauvery water board, a supporter of TTV Dhinakaran offered him a noose and a bottle of poison on Saturday.
Summary:
The workers said this is to remind CM Amarinder Singh that he has fooled the public.
Summary:
Jadhav had earlier assaulted another man around two months after his release.
Summary:
Delhi CM Arvind Kejriwal on Friday tweeted that Lieutenant Governor Anil Baijal is "practically obstructing every scheme and every project" of the Delhi government.
Summary:
The Gujarat Police has said that the Dalit man who was killed on Thursday in Bhavnagar district for allegedly owning and riding a horse used to harass girls.
Summary:
A woman allegedly killed her lover after he demanded to have sex with her 14-year-old daughter in Bengaluru on Thursday.
Summary:
A massive search operation had been launched to rescue the baby.
Summary:
A special court in Rajasthan on Saturday sentenced a man to life in jail for raping his employer's wife in 2013.
Summary:
The Bar Council of India said MPs and MLAs who are found starting or participating in an impeachment motion against a High Court or Supreme Court judge won't be allowed to practice as advocates in that court.
Summary:
France has pledged support to the Kurdish-dominated Syrian Democratic Forces and committed to send troops to the country.
Summary:
In the end, a scientist explains the ALCOSENSE⢠technology behind the band.
Summary:
The satellite's first and second orbit raising operations were successful on Friday and Saturday respectively, after which it went blank, as per reports.
Summary:
Steve Jobs in 2005 revealed in a speech that getting fired from Apple was the best thing that could have ever happened to him.
Summary:
A Canadian teenager who purchased her first lottery ticket to celebrate her 18th birthday will now receive a sum of CA$1,000 (â¹50,000) every week for the rest of her life.
Summary:
IOC is investing â¹16,628 crore in upgrading its refineries to produce Euro-VI emission norm compliant petrol and diesel.
Summary:
Slamming the Centre over its decision to privatise Air India, BJP leader and Rajya Sabha MP Subramanian Swamy said it was "potentially another scam in the making".
He further said he would file a private criminal law complaint if he finds any "culpability".
Summary:
Actress Sonakshi Sinha has said that being a woman in today's world is a superpower.
Summary:
Actress Katrina Kaif and her sister Isabelle Kaif have featured on the cover of the magazine Brides Today for its April issue.
Summary:
The investigators reportedly found that Smith had expressed his dislike about the plan but didn't attempt to stop it.
Summary:
After Rajasthan Royals' captain Steve Smith stepped down following the ball-tampering incident, the side's new captain Ajinkya Rahane said, "I respect him as a batsman and player".
Summary:
Italian club AC Milan's staff bus was damaged after being struck by an iron bar by assailants before the team's match against Juventus in Turin in the Serie A on Saturday.
Summary:
The company's product manager Tessa Lyons also said fact-checking has begun in France with assistance from a news organisation and will soon be expanded to more countries.
Summary:
A veterinary student has opened a hotel for cats in the Iraqi city of Basra.
Summary:
After Congress President Rahul Gandhi said his party was based on compassion and mutual brotherhood, Union Minister Harsimrat Kaur Badal asked where Congress' brotherhood was during the 1984 riots.
Summary:
Uber is shutting down its on-demand delivery service UberRUSH on June 30, the US-based cab aggregator said in an email to its users.
Summary:
Founded in 2016, the startup last raised â¹6.5 crore in a seed funding round in 2016, from Sharma, Blume, and Accel.
Summary:
ISRO's GSAT-6A communication satellite has suffered a setback just 48 hours after it was launched on Thursday, reports said.
Summary:
The CBSE on Saturday clarified that the question paper of Class XII Hindi (Elective) and a Political Science paper being circulated on WhatsApp and YouTube were fake.
Summary:
Speaking at a press conference at Karnataka's Mysuru, BJP President Amit Shah on Saturday said that Congress and corruption are related like fish and water.
Summary:
However, the Chief Medical Officer of the hospital said the patients were tied because the beds didn't have side rails.
Summary:
Madhya Pradesh Chief Minister Shivraj Singh Chouhan on Sunday announced â¹2 lakh ex-gratia for the kin of those killed in the building collapse in Indore.
Summary:
Maharashtra CM Devendra Fadnavis on Saturday said that once a project is sanctioned, PM Narendra Modi does not let the concerned ministers and officers sleep till it is completed.
Summary:
A total of eight militants have been killed in two separate encounters in Jammu and Kashmir, police officials said.
Summary:
Russia earlier expelled 23 UK diplomats in a tit-for-tat move over its expulsion of diplomats.
Summary:
Following the US' decision to include 12 Russian UN mission employees in the list of diplomats expelled over a former spy's poisoning, Russia's envoy to the UN Office in Geneva, Gennady Gatilov called the move "illegal".
Summary:
Former FBI Deputy Director Andrew McCabe is seeking donation via GoFundMe to pay his legal fee.
Summary:
Online fashion retailer Myntra has come up with 'India's largest clothing upgrade' programme -- the 'Fashion Upgrade' from April 1-6.
Summary:
Further, a 10% tax will be imposed on income generated from dividends distributed by equity mutual funds.
Summary:
As many as 10 people were killed and three were critically injured after a four-storey building collapsed in Madhya Pradesh's Indore on Saturday.
Summary:
This comes after the Syrian Army and the Russian forces carried out month-long air strikes to liberate the region.
Summary:
An ice-cream sundae measuring nearly 1,387 metres has broken the Guinness record for the longest ice-cream dessert in the world.
Summary:
Summary:
Ex-England players David Gower and John Morris, who turn 61 and 54 respectively today, once flew WWII planes over the stadium after getting out in a warm-up match in 1991 in Australia.
Summary:
Responding to allegations of air hostesses being strip-searched by airline's own security, SpiceJet has said these searches are "a global industry practice".
Summary:
The Railways has said it has achieved its target of installing LED lights across railway stations.
Summary:
The announcement comes after Bach held a meeting with North Korean leader Kim Jong-un.
Summary:
An American teenager has traded his Snapchat handle '@CarnivalCruise' for an all-expenses-paid trip onboard Carnival Cruise Line's newest ship.
Summary:
A Philippine man was nailed to a cross for the 32nd year in a Good Friday re-enactment of Jesus Christ's crucifixion.
Summary:
Indian opener Shikhar Dhawan took to Instagram to share a video of himself playing cricket with his wife and children at a beach in Australia.
Loving these moments with my family," the 32-year-old captioned the video.
Summary:
Matt Renshaw, Joe Burns and Peter Handscomb, who replaced banned Australian cricketers David Warner, Steve Smith and Cameron Bancroft scored combined 12 runs in 41 balls in the first innings of the ongoing fourth Test against South Africa.
Summary:
Lionel Messi came on as a substitute to score an 89th-minute curler to help extend Barcelona's unbeaten league run to 37 games with a 2-2 draw against Sevilla.
Summary:
Marsh missed a Keshav Maharaj delivery in the 31st over before de Kock attempted to collect the ball when he got stung.
Summary:
Manchester City beat Everton 3-1 to maintain their 16-point gap from second-placed Manchester United, who they face next week.
Summary:
The BCCI will monitor workload of top 50 Indian cricketers starting with the seven-week Indian Premier League in order to avoid burnout.
Summary:
The platform claims to function on 100% human curation and deletes the old posts after users share a new one.
Summary:
The URL shortener was launched in 2009 for users to share links and measure traffic online.
Summary:
BJP leader Babul Supriyo has said West Bengal CM Mamata Banerjee's plans to create a united front against the BJP will not succeed as all candidates will be striving to secure the Prime Minister's position.
Summary:
The Election Commission (EC) has deployed 1,156 flying squads and 1,255 static surveillance teams in Karnataka ahead of Assembly elections to ensure enforcement of the Model Code of Conduct.
Summary:
Slamming Congress President Rahul Gandhi, BJP IT cell chief Amit Malviya claimed that Gandhi's Twitter profile is on "steroids".
Summary:
They also threw a passenger out of the train after he slapped one of the robbers to resist their attempts.
Summary:
Union Minister Ashwini Choubey's son Arjit Shashwat on Saturday surrendered himself after being booked in connection with communal clashes in Bihar's Bhagalpur.
I am going to surrender before the police but it is not under any kind of pressure," he said.
Summary:
The accused, who were nabbed onboard a train in Andhra Pradesh, intended to exchange the fake notes for real currency in poll-bound Karnataka.
Summary:
The Andhra Pradesh Police has arrested two former Hyderabad University students for conspiring to kill Vice Chancellor Appa Rao Podile.
Summary:
Electronic items that will become expensive include mobile phones, television sets, and smart watches.
Summary:
American actor Will Smith has released a video titled 'A Date With Sophia the Robot' where he is seen interacting with humanoid robot Sophia.
Summary:
Ex-Australian captain Steve Smith's father Peter Smith was filmed dumping his son's cricket kit into the family garage after he was handed a one-year ban over the ball-tampering scandal.
Summary:
A first-of-its-kind drug, designated as 'breakthrough therapy' by the FDA, was effective in 93% of paediatric patients tested.
Summary:
NHAI has 372 toll plazas in the entire country and the revision of toll rates takes place before start of every financial year.
Summary:
The CBSE has clarified that a fake question paper is being circulated on social media, including WhatsApp and YouTube for the Class 12 Hindi exam, which is scheduled for April 2.
Summary:
Pinky Lalwani is the rumoured fiancée of liquor baron Vijay Mallya.
Summary:
Benchmark index NSE Nifty has lost around â¹3.6 trillion in market value this year and the index's market capitalisation currently is around â¹72.25 trillion.
Summary:
However, Dhoot transferred the company's proprietorship to a Deepak-owned trust for â¹9 lakh after he got â¹3,250 crore loan from ICICI Bank.
Summary:
Karan Johar took to Twitter to share that his daughter Roohi has called him 'papa' for the first time, while adding, "It's time for my mini meltdown!" Karan had earlier said that the day he carried Roohi and Yash home was "like a blockbuster movie".
Summary:
Actress Sonakshi Sinha will be making a cameo appearance in a song for the upcoming film 'Yamla Pagla Deewana Phir Se'.
Summary:
Punjab's Cultural Affairs Minister Navjot Singh Sidhu has announced that the state would constitute a Punjab 'Sabhyachaar' (culture) Commission to check 'obscenity and vulgarity' and the 'glorification of drugs and violence' in Punjabi songs.
Summary:
While talking about Tiger Shroff, Akshay Kumar has said that Bollywood could proudly announce their very own Tony Jaa in the industry.
Summary:
Actress Soha Ali Khan has said that people who are very sensitive should not become a part of the Bollywood industry.
Summary:
A US man's tweets describing how his co-worker's lunch got stolen went viral on social media, with celebrities following the thread.
Summary:
Virat Kohli took to Twitter to praise South African batsman Aiden Markram for his 152-run knock in the first innings of the fourth Australia Test on Friday.
Summary:
The BCCI has appointed ex-Director General of Police (Rajasthan), Ajit Singh, as the head of its Anti-Corruption unit ahead of the Indian Premier League 2018.
Summary:
In an apparent reference to banned Australian cricketers crying in press conferences, former Sri Lankan cricketer Russel Arnold tweeted, "Why is everyone crying?" David Warner, Cameron Bancroft and Steve Smith had broken down in their respective press conferences while apologising over the ball-tampering scandal.
Summary:
Chatwatch uses artificial intelligence to analyse chat patterns and can also let users track sleeping patterns of other people.
Summary:
The Sahara Desert has expanded by 10% in the past century due to human-induced climate change and natural climate cycles, according to a study by the University of Maryland.
Summary:
Karnataka Police on Saturday seized a truck carrying pressure cookers with pictures of state Women's Congress Cell President Lakshmi Hebbalkar and handed over the vehicle and the cookers to the Election Commission.
Summary:
Researchers are developing atomically thin "drumheads", able to receive and transmit signals across a radio frequency range far greater than the human ear.
Summary:
'Tyre killers' have been installed in Pune's Amanora Park Town to deter people from driving on the wrong side.
Summary:
Addressing an event organised by the Tibetan government-in-exile, BJP National General Secretary Ram Madhav said, "We don't want to use the word refugee.
Summary:
Belgium's Parliament has cut the allowance of Prince Laurent for attending a Chinese diplomatic event in naval uniform without the government's permission.
Summary:
Panama has included the names of Venezuela President Nicolás Maduro and 50 other Venezuelan officials on a watchlist for terror financing and money laundering.
Summary:
Kerala-based Kalyan Jewellers has said the Dubai Police has initiated criminal proceedings against five people of Indian origin for circulating alleged fake news about the brand.
Summary:
SpiceJet air hostesses protested at Chennai Airport on Saturday after they were allegedly strip-searched by the airline's own security, claiming they were even asked to remove sanitary pads from their bags.
Summary:
Three people were arrested and nine minors were detained on Saturday over the CBSE Class 10 Maths and Class 12 Economics papers leak.
Summary:
A veteran Bollywood actress, who accused a businessman of rape, has said he raped her the day she gave a police statement against him, supporting two women's allegations that he duped them.
Summary:
The tower was then the tallest man-made structure, at 984 feet.
Summary:
South African batsman Hashim Amla is the fastest batsman to score 2,000, 3,000, 4,000, 5,000, 6,000 and 7,000 runs in ODI cricket history.
Summary:
"The reduction in force is to align resources around our top strategic priorities," Snap said in its filings.
Summary:
Hong Kong airline Cathay Pacific has ended its 71-year-old skirts-only policy for female staff after they complained of feeling uneasy wearing short skirts.
Summary:
Uber CEO Dara Khosrowshahi was denied an Indian visa when he was the Chief of American travel company Expedia, The New Yorker has recently revealed.
Summary:
Using the cryptocurrency, customers will be able to transact with reduced prices, Oyo said in a statement.
Summary:
Uber CEO Dara Khosrowshahi's wife Sydney Shapiro has said when she first met him, she thought "he's the C.E.O. of Expedia, he's going to be this arrogant, egocentric, just...douche." The duo met on a blind date ten years ago where Khosrowshahi arrived in a rented Volvo.
Summary:
For the first time, researchers have successfully 3D-printed optical-quality glasses, as good as commercially available glass products.
Summary:
Tamil Nadu government has filed a contempt plea against the NDA-led Centre in Supreme Court for not setting up a Cauvery Water Management Board (CMB) before the given deadline.
Summary:
The US State Department has proposed asking visa applicants to provide their social media details, previous email addresses and phone numbers.
Summary:
Ford CEO Jim Hackett has received a compensation of $16.7 million in his first year in the role.
Summary:
Sonam Kapoor has said filmmaker Rajkumar Hirani is one of the biggest reasons she said yes to the biopic on Sanjay Dutt.
Talking about her character, Sonam further said, "I have a small but important part in the movie...I'm not playing an actress.
Summary:
Shah Rukh took to Twitter to share a picture with Hollywood filmmaker Christopher Nolan, who arrived in India on Friday for a three-day film event.
Nolan is being hosted by filmmaker Shivendra Singh Dungarpur for all the three days.
Summary:
Actress Urmila Matondkar, while speaking about some of the songs she has featured in, said, "If you see my songs, they're sexy songs.
an essential part of being a woman." "Why shy away from it?
Summary:
While talking about Ajay Devgn, actress Ileana D' Cruz has said, "He's a massive family man.
So, it's nice working with him." Ileana worked with Ajay in 'Raid' and 'Baadshaho'.
Summary:
Nigerian actor Samuel Abiola Robinson, who played one of the lead actors in Malayalam film 'Sudani From Nigeria', has accused the film's producers of racial discrimination.
Summary:
Talking about ex-Australian captain Steve Smith getting banned over the ball-tampering scandal, veteran Indian all-rounder Yuvraj Singh said it was "sad to see him like this".
Summary:
The former Australian vice-captain was the franchise's highest run-scorer in each of the last four IPL seasons.
Summary:
Bengaluru-based food delivery startup Swiggy is in talks to raise between $50 million-$100 million from US-based Coatue Management, as per reports.
Summary:
The incident occurred minutes before CM Chandrababu Naidu's arrival, which was delayed by around 90 minutes due to the hailstorm.
Summary:
A 24-year-old man accused of raping an eight-year-old girl was allegedly lynched by a mob in Ghaziabad on Friday.
Summary:
The Enforcement Directorate (ED) has attached assets worth â¹4.53 crore belonging to Bachcha Rai and his family in connection with the Bihar topper scam, which came to light in 2016.
Summary:
Clashes erupted between two communities in Bihar's Nawada on Friday after a statue of Lord Hanuman was found vandalised.
Summary:
French First Lady Brigitte Macron's aides have filed a legal complaint over identity fraud after tricksters used her name to seek VIP treatments like best tables at luxury hotels.
Summary:
Mehndi's defence counsel had moved an appeal against the sentence, awarded to him by a Patiala Court.
Summary:
The CBI has registered a preliminary enquiry (PE) against ICICI Bank CEO Chanda Kochhar's husband Deepak Kochhar and Videocon group Chairman Venugopal Dhoot.
Summary:
Tiger Shroff and Disha Patani starrer 'Baaghi 2' beat the film 'Padmaavat' to become the highest opening day grosser of 2018.
Summary:
Virgin Group Founder and billionaire Richard Branson on Friday announced he has purchased the Hard Rock Hotel and Casino in Las Vegas.
Summary:
Researchers have developed an artificial intelligence technology that can predict a person's lifespan by analysing data from wearables that track a user's activity.
Summary:
The smugglers used drones to fly two 200-metre cables between Hong Kong and the mainland to transport refurbished iPhones.
Summary:
The coach departed from Old Delhi Railway station for its maiden tour to Katra in Jammu and Kashmir.
Summary:
The airlines demanded an investigation by DGCA into the matter.
Summary:
Congress has expelled MV Guttedar, its MLA from Karnataka's Afzalpur, for 6 years after he decided to join BJP ahead of the state assembly elections.
Summary:
The Karnataka unit of BJP on Friday filed a complaint with the Election Commission (EC) against Karnataka Chief Minister Siddaramaiah for allegedly bribing two women with â¹2,000 each and violating the model code of conduct.
Summary:
Revenue from operations stood at â¹30.9 crore, up from â¹4.02 crore in the previous fiscal.
Summary:
The visual forensic reconstruction shows a face covered in tumours, including a large one on the forehead.
Summary:
The population of one-horned rhinoceroses in Assam's Kaziranga National Park has increased by 12 in the last three years, reaching a total of 2,413 rhinos, a census has revealed.
Summary:
Responding to the uproar over CBSE's decision to conduct retest after leakage of question papers, Union HRD Minister Prakash Javadekar said out of 16 lakh Class 10 students, over 14 lakh will not give retest.
Summary:
The All India Parents Association has decided to move the Delhi High Court to seek a court-monitored probe into the CBSE Class 10 and Class 12 question paper leak.
Summary:
Talking about the recent leak of CBSE Class 10 Maths and Class 12 Economics question papers, former CBSE Chairman Ashok Ganguly said that discontinuing the multiple question paper sets system proved to be costly.
Summary:
Israel's military has killed at least 16 Palestinians and injured more than 1,400 in the ongoing protest along the Gaza-Israel border, according to health officials.
Summary:
US President Donald Trump issued a declaration on Friday designating April 2018 as 'National Sexual Assault Awareness and Prevention Month'.
Summary:
Kangana Ranaut will be sharing the stage with former US First Lady Michelle Obama and American television host Oprah Winfrey at the 'Gandhi Going Global' Summit.
Kangana will represent India at the summit, to be held in USA in August.
Summary:
Technology giant Apple has filed a patent for a virtual reality (VR) system that can help ease motion sickness.
Summary:
He also appointed former Union Minister Jitendra Singh as the AICC in-charge of Odisha, replacing BK Hariprasad.
Summary:
West Bengal Congress President Adhir Chowdhury on Friday said an anti-BJP front will only succeed under the leadership of Rahul Gandhi.
Summary:
Targeting Congress President Rahul Gandhi for his recent temple visits ahead of Karnataka Assembly elections, Union Minister Babul Supriyo said, "Congress today has become the biggest follower, bhakt of the BJP." "Congress for long kept criticising us and the RSS for respecting Lord Ram and sentiments of the Hindus.
Summary:
Summary:
Food discovery startup Zomato's revenue doubled to â¹399 crore in the year ended March 31, 2017, according to business information provider Tofler.
Summary:
Saudi Arabian government won't retain passports of the Indian airlines' crew members on arrival anymore and will issue a barcode instead, Air India spokesperson confirmed on Friday.
Summary:
The police said one of the accused was facing some disciplinary actions and was upset that the colleague was a witness in the case.
Summary:
Addressing a press conference for the first time since the ball-tampering fiasco, former Australia vice-captain David Warner broke down and admitted he might never play for Australia again.
Summary:
Addressing a press conference over the ball-tampering scandal, banned Australian cricketer David Warner refused to answer whether his Australian teammates apart from the three sanctioned players were involved despite being asked multiple times.
Summary:
Somi Saxena, a friend of comedian Sidharth Sagar who was reported to be missing for four months, has said he told her his mother and her 'boyfriend' used to beat him.
Summary:
Comedian Sidharth Sagar, who was reported to be missing for four months, revealed he was admitted to a mental asylum for the past months.
Summary:
Indian all-rounder Irfan Pathan has been appointed as the coach-cum-mentor of Jammu and Kashmir senior state side for the 2018-2019 domestic season.
Summary:
After dodging several questions in his first press conference after the ball-tampering incident, ex-Australia vice-captain David Warner tweeted he would answer them "at the proper time".
Summary:
SpaceX did not attempt to recover the Falcon 9 rocket's first stage after launch.
Summary:
Instead investigate n identify those few that benefitted from leaked papers n cancel their results only!" This comes amid the ongoing protests against the CBSE's decision to hold re-test for Class 10 Math and Class 12 Economics exams post question paper leak.
Summary:
After the CBSE Class 12 Economics and Class 10 Math papers were leaked, Maharashtra Navnirman Sena chief Raj Thackeray appealed to parents across the country to not let their children sit for the re-examination.
Summary:
Referring to PM Narendra Modi's book on dealing with exam stress, Congress President Rahul Gandhi said its sequel would teach students how to minimise stress after their lives are "destroyed" due to leaked papers.
Summary:
Tesla has said the driver of the Model X car, which crashed in the US last week, received warnings but his hands weren't detected on the wheel for six seconds prior to the collision.
Summary:
The incident took place when the infant's relatives took him for treatment where the woman was posing as a doctor.
Summary:
India and Pakistan have agreed to resolve the issue about the treatment of each other's diplomats under the 1992 'Code of Conduct for the treatment of Diplomatic/Consular personnel', the Ministry of External Affairs said.
Summary:
After the Supreme Court was informed that several Indian jails face over 150% overcrowding, it said prisoners "can't be kept like animals".
Summary:
The 21-year-old Delhi University student, who was found dead in a drain in Dwarka, was murdered by a 25-year-old man he met on a dating app 10 days before the crime, police said.
Summary:
Around 15,000-20,000 pilgrims are stranded at the Katra base camp, officials further revealed.
Summary:
A 16-year-old Class 10 student in Delhi was the whistle-blower who emailed the CBSE copies of the leaked paper.
He...told me that he would inform CBSE and get the exam cancelled," the boy's father said.
Summary:
During her first visit to Pakistan since she was shot by Taliban, Nobel Peace laureate Malala Yousafzai said she plans to return to Pakistan permanently after completing her studies.
Summary:
Their families have reportedly shortlisted four dates between the months of September and December for their wedding.
Summary:
Summary:
Amitabh Bachchan took to Twitter to share his look from the upcoming Telugu film 'Sye Raa Narasimha Reddy', in which he will be seen in a cameo appearance.
Narasimha Reddy...
Summary:
Summary:
Eduwhere is conducting a free All India mock test for JEE Main 2018 on April 2 and 3 this year.
Summary:
A 21-year-old Dalit man was killed in Gujarat's Bhavnagar district on Thursday for allegedly owning and riding a horse.
Summary:
An unidentified whistleblower had sent an email with the leaked Maths paper to CBSE Chairperson Anita Karwal on the night before the exam.
Summary:
Chouhan said the decision has been taken to ensure that all employees receive their due promotions.
Summary:
The state funeral accorded to veteran Bollywood actress Sridevi was under the instructions of Maharashtra Chief Minister Devendra Fadnavis, as revealed in response to an RTI query on Friday.
Summary:
Banned Australian cricketers David Warner and Steve Smith were reportedly sent home from South Africa on separate flights as "things deteriorated" between the two over the ball-tampering scandal.
Summary:
The RBI has said all banks that conduct government banking will remain open till 8 pm on March 31 for greater convenience of taxpayers.
Summary:
PM Narendra Modi on Friday announced a $10-billion aid for the development of Africa.
Summary:
HRD Ministry Secretary Anil Swarup has revealed that while the CBSE received an email regarding Class 10 Maths paper leak nine hours before the exam, the board didn't have enough time to cancel it.
Summary:
After thousands of bags were misplaced at Delhi airport on Thursday, the airport said the baggage system failed due to an "increased number of dangerous items", including power banks being recovered from check-in baggage.
Summary:
Nearly 4.2 lakh tonnes of steel was used to construct the 55-kilometre-long Hong Kong-Zhuhai-Macau Bridge.
Summary:
The firms had violated a Californian law that requires warning customers about cancer-causing chemicals in their products.
Summary:
Airtel was accused of using the Aadhaar-eKYC based process to open payments bank accounts of subscribers without their consent.
Summary:
Choreographer-director Prabhudeva, while praising actor Rajinikanth, said, "Who doesn't want to work with him?" He added, "Everybody loves sir...
Summary:
Prabhudheva, who is choreographing Amitabh Bachchan and Aamir Khan in songs for the upcoming film 'Thugs of Hindostan', has said that both the actors are a source of inspiration to him.
Summary:
Disha Patani has said she wants to be associated with films having "good stories" while adding, "I can't do something I don't like.
Summary:
On veteran comedian Jagdeep's birthday on Sunday, his son Jaaved Jaaferi shared a video, tweeting, "As my respected father...is not on social media he sends a message to thank all the loving fans (for wishing) him." In the video, the 79-year-old comedian said, "Aao hanste hanste aur jaao hanste hanste...
Summary:
Summary:
CSK captain MS Dhoni broke down while talking about the franchise's return to the IPL during an event.
CSK were banned for two seasons in July 2015 over corruption.
Summary:
Summary:
Australia's Test captain Tim Paine has said his players will "look after each other" amid the ball-tampering scandal.
Summary:
Taking a dig at Australia's ball-tampering scandal, England fans asked New Zealand batsman Ross Taylor to sign a sandpaper during the second New Zealand-England Test on Friday.
Summary:
After UP CM Yogi Adityanath inaugurated the 10.3-km Hindon elevated road in Ghaziabad, ex-CM Akhilesh Yadav retweeted his own tweet from 2016 where he had announced that the Samajwadi Party-led government was building the road.
Summary:
The company's expenses almost doubled up to â¹473 crore in the fiscal year 2017 from â¹248 crore in 2016.
Summary:
An Indian journalist has been charged with people smuggling for allegedly helping eight people enter Australia by posing as fake journalists.
Summary:
A 56-year-old PG owner in Gujarat's Ahmedabad has been taken in police custody for allegedly placing spy cameras in the building's washrooms targeting all 25 female tenants.
Summary:
Saudi Arabia may go to war with Iran in 10-15 years if international action to contain Iran fails, Saudi Arabia's Crown Prince Mohammed bin Salman has said.
Summary:
No civilian casualties were reported in the strike.
Summary:
Thousands of Palestinians on Friday gathered near Gaza's border with Israel, launching a six-week protest against the displacement of Palestinians during the creation of Israel in 1948.
Summary:
Earlier, a taxpayer could file belated return before the completion of one year from the end of the relevant AY.
Summary:
Class 10 Mathematics exam may or may not be reconducted, with a decision being taken in 15 days.
Summary:
PNB has objected to the expedited sale of assets in US by firms linked to jeweller Nirav Modi, who is at the centre of a $2.1-billion fraud at the bank.
Summary:
Bairstow was batting on 58 when Colin's delivery smashed the chinstrap and sent the helmet spiralling towards the stumps.
Summary:
Sachin Tendulkar was dropped four times during his 85-run knock against Pakistan in the World Cup semi-final on March 30, 2011.
Summary:
During a 1990 World Cup qualifier match against Brazil, Chile's goalkeeper used a razor blade to fake head injury, claiming it was caused by a firework.
Summary:
The lawsuit claims Apple didn't notify users about the slowdown to promote the sale of iPhones.
Summary:
This comes after US President Donald Trump slammed Amazon for paying "no taxes" to state and local governments.
Summary:
Microsoft's Executive Vice President and head of Windows team Terry Myerson is leaving the technology giant as part of a management reshuffle.
Summary:
Section 144 was imposed near Human Resource Development Minister Prakash Javadekar's residence in Delhi's Kushak Road area on Friday amid protests against the leak of CBSE papers.
Summary:
A video showing Karnataka CM Siddaramaiah purportedly distributing cash to two of his supporters after his convoy stopped in Mysuru on Thursday has surfaced online.
Summary:
The Delhi Police Crime Branch has identified over 10 WhatsApp groups, with 50-60 members each, for their alleged role in the CBSE Class 10 Math and Class 12 Economics papers leak.
Summary:
Reports about the death of former Prime Minister Atal Bihari Vajpayee have emerged on various social media platforms, with people paying their tributes to the leader.
Summary:
Minister of State for External Affairs General VK Singh will visit Iraq on April 1 to bring back the mortal remains of the 39 Indians who were abducted in 2014 and subsequently killed by the ISIS.
Summary:
Students protesting against re-test for Class 10 and Class 12 CBSE exams have claimed that the leaked question papers were being sold outside a school for â¹8000-â¹16,000.
Summary:
Kapoor was entitled to compensation of $33.34 million but he had volunteered to give half of it back because the company's recent performance had not been exceptional.
Summary:
Actor Pulkit Samrat's ex-wife Shweta Rohira, while speaking about him said, "The Pulkit Samrat I knew had died long ago." "The one now is a complete stranger for me, so I can't really comment on him," she added.
Summary:
Steven Spielberg, while referring to his film 'Ready Player One', has said he never makes movies for the sake of technology but uses it to tell a 'better story'.
Summary:
A fan of TV actor Gurmeet Choudhary has threatened to commit suicide.
Summary:
Actor Ben Affleck took to Twitter to respond to an article by The New Yorker, which fat-shamed him after pictures of the actor on a beach with a tattoo on his back surfaced online.
The article, titled 'The Great Sadness of Ben Affleck', also wrote Affleck is "depressed".
Summary:
Tiger Shroff, while talking about his upcoming film 'Student Of The Year 2', said, "I'm not playing a one-man killing machine type.
Summary:
Summary:
Australian woman cricketer Alyssa Healy has slammed commentator Sanjay Manjrekar over his tweet questioning the spirit of the Australian women's cricket team.
Summary:
"I said that Yeddyurappa government is corrupt...and the entire Congress party started to rejoice I might have made a mistake.
Summary:
The Belgaum border dispute is a conflict between Maharashtra and Karnataka, with Maharashtra claiming the city on linguistic grounds.
Summary:
A shoe was hurled on stage during Maharashtra CM Devendra Fadnavis' speech after he ended social activist Anna Hazare's hunger strike on Thursday.
Summary:
Egyptian President Abdel Fattah al-Sisi was re-elected for a second term on Thursday, the Egyptian state media reported.
Summary:
The Enforcement Directorate (ED) has approached the Interpol to locate fraud-accused jeweller Nirav Modi and his family who had left India in the first week of January, reports said.
Summary:
More than 60 people, including students, have been questioned by the police in connection with the leak.
Summary:
Tiger Shroff and Disha Patani starrer 'Baaghi 2', which released today, "boasts of an extraordinary action and spectacular performance from Tiger," wrote Bollywood Hungama.
It has been rated 3/5 (Bollywood Hungama) and 2/5 (NDTV, Zee News).
Summary:
The CBI has registered cases against the directors of two Punjab-based private companies for allegedly cheating Bank of India to the tune of over â¹89 crore.
Summary:
Summary:
Rather than wait for reports from the users, Facebook will search Pages of foreign origin that spread false content and remove them from the platform.
Summary:
Facebook VP Andrew Bosworth, who phrased the recently released memo which was written in 2016 has said, "I don't agree with the post today and I didn't agree with it even when I wrote it." It was meant to initiate debate around hard topics, Bosworth added.
Summary:
Asserting that it is not right to politicise the issue, Uttar Pradesh Governor Ram Naik on Friday said that Dr BR Ambedkar's name should be corrected across the country.
Summary:
Elon Musk-led electric carmaker Tesla has recalled about 1,23,000 Model S cars built before April 2016 over "excessive corrosion" in the power steering bolts.
Summary:
The government on Wednesday said it'll sell 76% stake in Air India and 100% stake in subsidiary Air India Express.
Summary:
Gurugram-based Medanta hospital has reimbursed the nearly â¹16-lakh bill of a deceased 7-year-old dengue patient's family, who had filed an FIR against the hospital for 'gross overcharging'.
Summary:
When the doctor heard about the woman covering the 7-km distance on foot, he left from the health centre in an ambulance.
Summary:
Internet services apart from broadband and leased lines have been suspended indefinitely in Rajasthan's Bundi ahead of Hanuman Jayanti to prevent communal clashes.
Summary:
The department said that Sidhu has tax dues amounting to â¹52 lakh.
Summary:
Uttar Pradesh CM Yogi Adityanath has decided to bar jailed MLAs from attending the state assembly sessions and legislative events.
Summary:
Nikolas Cruz, who killed 17 people last month in the Florida school shooting, has been getting fan mails offering friendship, encouragement and sexually provocative photos in jail.
Summary:
In terms of quantum, PNB reported the highest amount involved in frauds at â¹2,810 crore.
Summary:
Barclays misled investors about quality of mortgage loans backing those deals and committed violations of mail fraud and bank fraud.
Summary:
Actress Rani Mukerji, while speaking about marrying filmmaker Aditya Chopra, said, "It was important for me to get married to someone I love and respect." She added, "These were two of my criteria and Adi has been someone I have always respected.
Summary:
Comedian Sidharth Sagar, who was reported to be missing for four months, has posted a video on Instagram in which he said he was mentally harassed by his family members.
Summary:
Speaking about starring in his girlfriend Richa Chadha's directorial debut 'Lojikal', Ali Fazal said, "I am blessed that Richa thinks I am good.
Summary:
Apple has rolled out iOS 11.3 update for iPhones and iPads with new battery features and Animoji for the iPhone X.
Summary:
Asserting that taxi drivers are unnecessarily blamed, Union Tourism Minister KJ Alphons on Thursday said that guys in swanky cars are the ones who are most unruly on roads.
Summary:
Summary:
The United Nation's outgoing Political Affairs chief, Jeffrey Feltman, in a parting message expressed concern that the world body was losing support from a growing number of countries.
Summary:
The US Citizenship and Immigration Services (USCIS) has indicated that it would intensify scrutiny of such applications.
Summary:
In a recently released memo, which was written in 2016, Facebook VP Andrew Bosworth said, "Maybe someone dies in a terrorist attack coordinated on our tools.
Summary:
The US Federal Communications Commission (FCC) has authorised Elon Musk-led space exploration startup SpaceX to deploy its proposed system to provide internet services using satellites.
Summary:
The number of mobile Internet users in India is likely to reach 478 million by June 2018, according to a report by Internet and Mobile Association of India and Kantar-IMRB.
Summary:
US President Donald Trump has accused e-commerce giant Amazon of paying "little or no taxes to state & local governments," adding it's also "putting many thousands of retailers out of business!" Amazon uses "our Postal System as their Delivery Boy (causing tremendous loss to the U.S.)," he added.
Summary:
The failure occurred as the airport witnessed an increased footfall due to the upcoming long weekend, an airport spokesperson said.
Summary:
Summary:
After BJP leader Smriti Irani alleged that Congress leader Kapil Sibal acquired property worth â¹89 crore after purchasing a company for â¹1 lakh, Sibal said that he bought the company from his "own earnings".
Summary:
The Uttarakhand BJP has given a clean chit to MLA Rajkumar Thukral after a video showing Thukral thrashing some women went viral last week.
Summary:
Congress has stated that Maharashtra CM's Office has spent â¹1.3 lakh daily on 26,650 cups of tea, citing an RTI reply that revealed â¹3.3 crore was spent in 2017-18.
Summary:
Researchers at US-based Berkeley Lab have developed a way to print 3D structures composed entirely of liquids.
Summary:
State Special Operations Cell and Military Intelligence in Punjab arrested a man who was allegedly hired by Pakistani intelligence agency ISI to spy on the Indian Army.
Summary:
Bengaluru's Central Crime Branch arrested Postcard News Founder Mahesh Vikram Hegde on Thursday after the website's social media handle falsely claimed that a Jain monk had suffered injuries after being attacked by Muslim youth.
Summary:
Policemen deployed at the inner sanctum at Kashi Vishwanath Temple in Uttar Pradesh's Varanasi will now have to wear yellow kurtas and white dhotis on duty instead of their official khaki uniform.
Summary:
The White House on Thursday said Russia's decision to expel 60 US diplomats and close the US consulate in St Petersburg marks "further deterioration" in the two countries' relations.
Summary:
Let the other people take care of it now." Trump had earlier said the US was present in Syria only "to get rid of ISIS and go home".
Summary:
Filmmaker Siddharth P Malhotra, who directed Rani Mukerji starrer 'Hichki', has revealed that it was initially supposed to be a male-centric film.
Adding that filmmaker Maneesh Sharma suggested him to change the protagonist to female, Siddharth further said, "For five years, I was looking for heroes in my mind.
Summary:
According to reports, Vidya Balan will be seen portraying a gangster in her upcoming film.
The film will be directed by Jyoti Kapur Das, who has also penned the script.
Summary:
She will star opposite actor Sooraj Pancholi in the dance film.
Summary:
Earlier, FTC announced that it's probing how data of 50 million Facebook users was exploited.
Summary:
Photo-sharing app Instagram has restored the Giphy feature which it pulled from the platform earlier this month after users spotted a racial slur in a GIF.
Summary:
Union Minister Babul Supriyo was caught on camera threatening to "rip off the skin" of locals who staged protests against Ram Navami violence in his Asansol constituency in West Bengal.
Summary:
Mumbai-based online fashion startup Fynd has raised an undisclosed amount of funding in its Series C round led by technology major Google.
Summary:
Although the family arranged â¹10 lakh to give to the kidnappers, they were unable to locate them.
Summary:
BJP MP from Assam's Tezpur RP Sharma has said people convicted of rape should be shot dead in public, adding that the minimum jail sentence for molesting a woman should be raised to ten years.
Summary:
The case pertains to a clash that had broken out between two communities during Ram Navami celebrations and turned violent.
Summary:
More than 100 monkeys have died in the last 1 week in Uttar Pradesh's Amroha district due to suspected poisoning.
Summary:
The US State Department granted visa to an Iranian man hoping to donate bone marrow to his US citizen brother with blood cancer, the familyâÂÂs lawyer said on Thursday.
Summary:
1 motorcycle brand is also India's fastest growing brand for 2017 with 1.5 lac+ KTM owners and 400+ exclusive showrooms in the country.
Launched in India in 2012, KTM has also won over 30 prestigious awards including the Indian Motorcycle Of The Year 2018.
Summary:
Summary:
The Railways has received over 25 million job applications, which is more than Australia's entire population.
Summary:
Russia on Thursday announced that it is expelling 150 US and EU diplomats in a tit-for-tat response after a similar number of Russian diplomats were expelled over the poisoning of an ex-spy in the UK.
Summary:
A group of terrorists barged into the residence of Special Police Officer Mushtaq Ahmed Sheikh in Jammu and Kashmir's Anantnag district on Thursday and shot him.
Summary:
Actress Urvashi Rautela's fake Aadhaar card was used to book a room at a five-star hotel in Mumbai, where she was attending an event.
Summary:
After banned Australian cricketers David Warner, Cameron Bancroft and Steve Smith gave their statements over the ball-tampering scandal, cricket legend Sachin Tendulkar urged people to "give them some space".
Summary:
Golfer Tiger Woods apologised to his family on television after his extramarital affairs were exposed in 2010.
Summary:
Virender Sehwag became the first player in Test cricket to reach triple century with a six when he hit Pakistan spinner Saqlain Mushtaq for the maximum in the Multan Test on March 29, 2004.
Summary:
After documents tweeted by Cambridge Analytica's whistleblower Christopher Wylie named JD(U) as the Facebook scandal-linked firm's client, party leader KC Tyagi denied using its services.
Summary:
After union minister Sushma Swaraj retweeted a Congress poll favouring her, the party created another poll on her and wrote, "M'am, feel free to retweet." The first poll asked if 39 Indians' death in Iraq was Swaraj's biggest failure, wherein 76% respondents said no.
Summary:
An international team of astronomers has detected a metallic exoplanet with a density similar to Mercury 339 light-years away from Earth.
Summary:
It also declared that more than 9,000 jobs would be created in the Railway Protection Special Force (RPSF) and Railway Protection Force (RPF).
Summary:
In its complaint on question paper leaks to the Delhi Police, the CBSE revealed that it received an envelope with handwritten answers on the day the Class 12 Economics exam was conducted.
Summary:
Supriyo was barred by the police from entering Asansol which witnessed violence during Ram Navmi.
Summary:
Police said that Afak Ahmad identified himself as Vinod Kumar Kambale, resident of Mumbai, and possessed fake Aadhaar and other identities by this name.
Summary:
Pakistani PM Shahid Khaqan Abbasi underwent a routine security check at the John F Kennedy airport in New York during a recent visit to the US as he was on private visit, US Embassy in India has said.
Summary:
Moreover, the top 500 companies by market value will be required to have separate CEOs, Managing Directors and chairpersons from April 1, 2020.
Summary:
Delhi-based Ms Stock Guru India and its partner Lokeshwar Dev have maximum I-T default at â¹86.27 crore.
Summary:
Videocon borrowed â¹40,000 crore from a consortium of banks, where ICICI's exposure was â¹3,250 crore based on Credit Committee approval.
Summary:
Karnataka Bank has informed RBI about a fraud amounting to â¹86.47 crore related to extension of fund-based working capital facilities to fraud-accused jeweller Mehul Choksi's Gitanjali Gems.
Summary:
Former Australian woman cricketer Melissa Quinn faked cancer and used AU$45,000 (â¹22 lakh) that she raised for her treatment to travel overseas.
Summary:
Italian football club Lazio paid â¹15 crore ($2.4 million) of the final instalment for defender Stefan de Vrij's transfer to hackers posing as officials from the footballer's previous club Feyenoord.
Summary:
Former cricketer and MP Sachin Tendulkar has sanctioned â¹40 lakh from his Members of Parliament Local Area Development Scheme fund for construction of a school building in Drugmulla area in Jammu and Kashmir.
Summary:
Delhi Daredevils captain Gautam Gambhir has said that one-year ban on Australian cricketer Steve Smith over the ball-tampering scandal is "harsh".
Summary:
The accused were arrested from Delhi's Gandhi Nagar area.
Summary:
Yamuna river water will be supplied to Churu, Sikar, and Jhunjhunu districts in Rajasthan from Tajewala headworks in Haryana, state Water Resources Minister Rampratap said.
Summary:
Darren Lehmann, who had earlier said that he would not resign as head coach amid the ball-tampering scandal, announced his resignation from the position today.
Summary:
The Income Tax Department has probed 50 'secret' bank accounts linked to $2.1-billion PNB fraud-accused jewellers Nirav Modi and Mehul Choksi located in London, Hong Kong, UAE and other countries outside India, according to reports.
Summary:
While apologising for the ball-tampering incident in a press conference, Steve Smith advised youngsters to think about their parents before making questionable decisions.
Summary:
This comes after media reports claimed that US President Donald Trump is "obsessed with Amazon".
Summary:
A camera has been found to be in working condition over two years after it was dropped into the waters off Ishigaki, Japan.
Summary:
Opposing the Centre's move to sell 76% stake in state-run Air India, West Bengal CM Mamata Banerjee tweeted, "This government must not be allowed to sell our country." Terming the debt-ridden national carrier as "the jewel of our nation", Mamata demanded that the government withdraw its order.
Summary:
Citing investigative journalists' reports, BJP leader Smriti Irani on Thursday alleged Congress leader Kapil Sibal and his wife acquired â¹89-crore worth prime property in Delhi after buying the property owner, Grande Castello, for â¹1 lakh.
Summary:
A 30-year-old Delhi woman stabbed a Flipkart delivery person over 20 times for delay in the delivery of a â¹11,000 mobile phone she had purchased.
Summary:
Twenty-five people have been questioned regarding the leak of CBSE question papers but no arrest has been made so far, Delhi Police said on Thursday.
Summary:
While MP had set up the first poultry farm for rearing the variety in 1978, Chhattisgarh's annual production of Kadaknath chicken exceeds MP's production.
Summary:
After the CBSE announced it will reconduct Class 12 Economics and Class 10 Math exams, students protesting at Delhi's Jantar Mantar have demanded a retest for all subjects, claiming that all papers were leaked.
Summary:
Student political parties in Telangana's Khammam hired a priest and performed last rites of several ATMs to protest cash crunch in the state.
Summary:
Social activist Anna Hazare has ended his hunger strike on the seventh day after meeting Maharashtra CM Devendra Fadnavis and Minister of State for Agriculture Gajendra Singh Shekhawat.
Summary:
UK High Commissioner to India Dominic Asquith has said that extradition of economic offenders to India from London is a judicial matter and the courts will address it.
Summary:
Hafiz Saeed-led terrorist organisation Jamaat-ud-Dawah has said it would love to launch jihad against India.
Summary:
The donation was made through DonorsChoose.org, a non-profit organisation that allows individuals to donate directly to public school classroom projects.
Summary:
The Enforcement Directorate has attached assets worth â¹2,300 crore, including 11 resorts and 9 hotels, in connection with Rose Valley scam wherein thousands of people were allegedly cheated in West Bengal and Odisha.
Summary:
Speaking about Tiger Shroff starring in 'Student Of The Year 2', Varun Dhawan jokingly said, "Now that Tiger is doing [it], people will think I've graduated!" "For almost five years in my career, I was only in college and people literally thought, 'Yeh to student hi hai'," he added.
Summary:
Actor Samir Soni is set to play the role of a principal in the upcoming film 'Student Of The Year 2'.
Rishi Kapoor had earlier portrayed the character of a principal in the first film.
Summary:
Actor Pedro Pascal, known for playing the character 'Oberyn Martell' on HBO series 'Game of Thrones', has been cast in the sequel of Gal Gadot starrer superhero film 'Wonder Woman'.
Summary:
The first look poster of Govinda and 'Fukrey' actor Varun Sharma starrer film 'Fryday' has been released.
Summary:
Five-time Ballon d'Or winner Lionel Messi, who was watching Argentina's friendly against Spain from the stands due to injury, walked out after his team conceded the sixth goal.
Summary:
Reacting to the ball-tampering scandal which led to Australian cricketers David Warner and Steve Smith getting banned, Rohit Sharma said they were "great players" and this episode should not define them.
Summary:
Reacting to banned Australian cricketer Steve Smith breaking down while apologising during a press conference, former Australian captain Michael Clarke tweeted, "DEVASTATING!" "Tough to watch Cameron & Steve go through the 2 statements they just made.
Summary:
A drunk passenger was punched in the face by a fellow flyer after he reportedly threatened to "blow up the plane" while travelling from Russian city Yekaterinburg to Turkish city Antalya.
Summary:
Speaking about the violence triggered during Ram Navmi celebrations in Bihar, jailed RJD supremo Lalu Prasad Yadav said, "After locking me up, BJP has set the whole state ablaze.
Summary:
Former Australia captain Steve Smith broke down in a press conference after his return to Australia from South Africa.
Summary:
ISRO on Thursday successfully launched communications satellite GSAT-6A from Sriharikota.
Summary:
Rubbing the ball with a sandpaper helps to rough up the other side of the ball to facilitate reverse swing.
Summary:
Spin legend Shane Warne and former England captain Kevin Pietersen objected to Steve Smith's treatment by police officials at the Johannesburg airport, saying that the former Australian captain is not a criminal.
Summary:
The app then saves the images and its precise location to Artopia's service which can be viewed through the AR lens by other users.
Summary:
US-based startup Scotty Labs is working on a technology that can enable people to remotely control self-driving cars.
Summary:
The European Space Agency has shared a view of the Pyramids of Giza as captured by satellite Proba-1 earlier this year.
Summary:
Scientists have reported the first ever case of "super-gonorrhoea", which is resistant to available antibiotics.
Summary:
Telangana Social Welfare Residential Educational Institutions Society's Regional Coordinator has issued a memo to teaching staff of 28 social welfare schools, instructing them to communicate only in English on school premises.
Summary:
RJD leader Lalu Prasad Yadav, who is travelling to Delhi for treatment at AIIMS, took a train after the Bihar government allegedly denied him permission to take a flight.
Summary:
Congress MP Shashi Tharoor on Thursday mistakenly used a photograph of Gautam Buddha while tweeting wishes for Mahavir Jayanti.
Summary:
An 18-year-old National Bravery award recipient, Nazia Khan, has been designated as a 'Special Police Officer' of Agra Police in Uttar Pradesh.
Summary:
Congress spokesperson Randeep Surjewala on Thursday said that a fair and impartial investigation into the CBSE paper leak is impossible without removing Human Resource Development Minister Prakash Javadekar and CBSE chief Anita Karwal.
Summary:
Delhi-based Vidya Coaching Centre head Vicky has been detained by authorities over the CBSE question paper leak of the Class 10 Mathematics paper and Class 12 Economics paper.
Summary:
Summary:
A Chinese woman crawled under a police car and allegedly pretended to be sick to stop the police from detaining her husband.
Summary:
Interestingly, the shooting of the film directed by Shoojit Sircar was completed in only 38 days.
Summary:
Diljit Dosanjh has said his upcoming film 'Soorma' was tough to pull off as he was put through intense training.
Summary:
Actress Ileana D'Cruz has said she doesn't want her personal life to be part of the gossip section in a newspaper.
Summary:
Filmmaker Karan Johar took to Instagram to share a 30-year-old picture with actor Akshaye Anand and wrote, "My first appearance in front of a camera!" Johar added that he and Akshaye were shooting for a television series called 'Indradhanush'.
Summary:
A 63-year-old US-based man who thought he had a "beer belly" was diagnosed with a 13-kg abdominal tumour.
Summary:
Police officers in US' Indiana have shared a surveillance video of an inmate managing to escape from their custody by ducking under a closing garage door while in handcuffs.
Summary:
A 13-year-old student was suspended from his school in US' North Carolina for two days after he reportedly drew a picture of a stick figure holding a gun and another holding knives.
Summary:
Dating app Bumble has filed a lawsuit against Tinder parent Match Group for illegally obtaining trade secrets.
Summary:
Earlier, the IT Ministry issued a notice to Facebook, asking whether personal data of users was exploited to influence Indian elections.
Summary:
Summary:
The Union Home Ministry on Wednesday sought a report from the West Bengal government and offered to deploy central paramilitary forces in areas hit by Ram Navami communal violence in the state.
Summary:
Further, CBSE Chairperson reportedly received a copy of leaked Class X Mathematics paper, a day before it was scheduled.
Summary:
This is the highest penalty imposed by the RBI on a bank for a single incident.
Summary:
It said it was complying with local regulations "like all businesses operating in China".
Summary:
Congress President Rahul Gandhi on Thursday tweeted that there is a leak in everything, such as Aadhaar, election dates, and CBSE and SSC exam papers.
Summary:
Uber has settled with the family of the woman who was killed by a self-driving car being tested by the company in the US.
Summary:
The Uttar Pradesh government has decided to add 'Ramji' as Dr BR Ambedkar's middle name in all documents and records.
Summary:
The United Nations has appointed American diplomat Rosemary DiCarlo as the world body's new Political Affairs chief, the first woman to hold the position.
Summary:
Police dogs in Spanish capital city Madrid are being provided with heated beds and classical music therapy sessions called the 'Mozart effect' in an attempt to reduce stress levels.
Summary:
Actor Hrithik Roshan and his ex-wife Sussanne Khan celebrated their elder son Hrehaan's 12th birthday on Wednesday along with their family members.
Summary:
Arjun Kapoor, while commenting on Akshay Kumar and Suniel Shetty's picture, wrote, "Raju aur shyam!!!
Summary:
The episode, which airs on Thursday, is titled 'The Gates Excitation'.
Summary:
Banned Australian cricketer Cameron Bancroft, who executed the ball-tampering plan against South Africa, has said that giving up his spot in the team for free breaks his heart.
Summary:
New Zealand skipper Kane Williamson has been named the captain of IPL franchise SunRisers Hyderabad, replacing Australian cricketer David Warner.
Summary:
However, for Apple, Cook claims he looks for "win/win" situation, rather than creating a bunch of losers.
Summary:
Aerospace company Boeing was reportedly hit by the WannaCry ransomware which affected some manufacturing equipment used to build 787 Dreamliner and 777 wide-body jets.
Summary:
The feature is already available on its iOS app in India.
Summary:
It also includes a driver assist system called EyeSight which offers automatic pre-collision braking, lane-departure, and sway warning.
Summary:
German automaker BMW and Mercedes-Benz's parent company Daimler have agreed to merge their mobility services business unit.
Summary:
Japanese automaker Nissan and French carmaker Renault are in talks to merge and create a new company, according to reports.
Summary:
Korean automaker Genesis has unveiled an electric car concept Essentia with a long transparent hood, and a low swoopy roofline.
Summary:
Researchers have identified two post-ice age climate events in a UK-based archaeological site which saw average temperatures drop by over 3úC within a decade, without impacting human activity.
Summary:
Patagonia hosted dinosaurs like the meat-eating Giganotosaurus and four-legged plant-eaters Patagotitan, Argentinosaurus and Dreadnoughtus.
Summary:
TESS is seen as a successor to the Kepler Space Telescope which has discovered over 2,500 exoplanets and is currently running out of fuel.
Summary:
AIADMK MP Navaneethakrishnan on Wednesday said that all AIADMK MPs would commit suicide if the Cauvery Management Board is not formed.
Summary:
The Centre approved amendments to the National Medical Commission Bill, which will now be tabled in the Parliament.
Summary:
The Law Ministry on Thursday approved the filing of a review petition in the Supreme Court against the recent dilution of the SC/ST anti-atrocities act, reports said.
Summary:
A Sikh man in Canada was dragged and his turban was removed and stolen by men who shouted racial slurs at him while he was waiting for a bus, police have said.
Summary:
Prisoners in overcrowded Venezuelan jails often openly use machine guns, grenades and drugs, leaving guards powerless.
Summary:
The deal is reportedly being negotiated by Japan's SoftBank, which is the biggest investor in both the companies.
Summary:
Astronomers have reported observing the first-ever galaxy having no signs of dark matter, theorised to comprise 85% of the universe's mass.
Summary:
Australian cricketer David Warner has issued a public apology for his involvement in ball tampering against South Africa, saying, "It's a stain on the game we all love".
Summary:
Earlier, Cook had said the ability to know about people's lives shouldn't exist.
Summary:
A still from BBC documentary 'Secrets of Silicon Valley' has emerged online, showing a Congress poster in the London office of Alexander Nix, the now-suspended CEO of data scandal-hit firm Cambridge Analytica.
Summary:
He also highlighted that India is core to Uber's success.
Summary:
Uber CEO Dara Khosrowshahi has said, "I think it would be a mistake to show profits in India next year.
Summary:
Pakistan's military on Wednesday claimed that it has dismantled al-Qaeda.
Summary:
Adding that this would prevent the accused from dragging the trial further, the court said, "The order granting a stay must show application of mind.
Summary:
An Air India call centre received a bomb threat call for a Delhi-Kolkata flight on Wednesday, which turned out to be a hoax.
Summary:
Trump and Jong-un are expected to meet each other for the first time by May this year.
Summary:
Hyderabad traffic cops are being given two packets of buttermilk each amid the rise in temperature.
Summary:
A 44-year-old woman in Ludhiana is preparing to appear for the Class 10 Board examinations with her son.
Summary:
"Mahira Khan [is] spreading vulgarity," a user commented.
Mahira was earlier slammed by social media users after pictures of her smoking with Ranbir Kapoor had emerged online.
Summary:
Actor Kartik Aaryan has said he has always had a crush on actress Kareena Kapoor.
Summary:
The coffin, acquired 150 years ago, was then classified as empty by the museum's founder.
Summary:
Facebook has announced that the company will cut off its access to third-party data for data brokers who help advertisers target people on the social network.
Summary:
Security flaws have been discovered in gay dating app Grindr which exposed the location data of users, despite disabling the feature, and other information including unread messages, email addresses, and deleted photos.
Summary:
Uber reportedly reduced the number of sensors, used to detect objects on the road, on its self-driving cars when it shifted from Ford Fusion sedans to the Volvo SUVs. The new vehicles feature one roof-mounted LIDAR sensor compared with seven units on the older Ford Fusion models.
Summary:
Talking about ad targeting, Apple CEO Tim Cook has said he finds it "creepy" when "all of a sudden something is chasing me around the web".
Summary:
An IndiGo flight from Tirupati suffered a tyre burst on landing at the Hyderabad airport on Wednesday.
Summary:
The tail bumper received minor damage, but all the passengers were reported to be safe.
Meanwhile, the airline said, "A skid on tail bumper is acceptable under ATR operational envelope.
Summary:
Banerjee also met with BJP leaders Yashwant Sinha and Shatrughan Sinha.
Summary:
Summary:
Canadian researchers have found 29 human footprints likely belonging to two adults and a child from 13,000 years ago off the country's Pacific coast.
Summary:
The Cabinet Committee on Economic Affairs approved an integrated scheme on school education by including the Sarva Shiksha Abhiyan, Rashtriya Madhyamik Shiksha Abhiyan, and Teacher Education from April 1, 2018 to March 31, 2020.
Summary:
Apollo's Aspire tyres for luxury vehicles, designed in the Netherlands and tested on Europe's best tracks, offer exceptional high-speed braking and comfort for luxury cars like BMW, Mercedes, Audi and others.
Summary:
Reacting to the ball-tampering controversy, Australia's head coach Darren Lehmann said he is not going to resign but he needs to change.
"We need to change how we play.
Summary:
Nobel Peace laureate Malala Yousafzai returned to Pakistan on Thursday, in her first visit to her native country since Taliban had shot her in the head for advocating education for girls in 2012.
Summary:
About 30 banks had provided Buyers' Credit in favour of overseas suppliers to Nirav Modi firms based on allegedly unauthorised LoUs.
Summary:
Australian women's cricket team captain Meg Lanning on Wednesday became the first-ever Australian cricketer (male or female) to score 2,000 runs in T20I cricket.
Summary:
A total of 28 cases of custodial deaths have been reported in Gujarat's Ahmedabad district in the past two years, Minister of State for Home Pradipsinh Jadeja told the state Assembly on Wednesday.
Summary:
A video showing an SUV being tossed in the air after a pipeline burst in Mumbai's Borivali has surfaced online.
Summary:
Interestingly, of the 26 attempts made to authenticate Bhushan's Aadhaar, 19.2% had resulted in failure.
Summary:
Earlier, the fiscal deficit target for 2017-18 was raised to 3.5% of GDP from 3.2%.
Summary:
Tiger Shroff, while speaking about creating his own identity in Bollywood, said, "I'm my own man, not just Jackie Shroff's son." "Because of the pressure, I'm trying to climb ladders much faster...I'm blessed to be in the position that I'm today," he added.
Summary:
An exhibition baseball match between Los Angeles Dodgers and Los Angeles Angels at the Dodger Stadium in the US was called off after sewage spilled onto the field.
Summary:
Australian cricketer David Warner has been dropped as the brand ambassador of South Korean electronics company LG in the aftermath of the ball-tampering scandal.
Summary:
Sachin was also accused of ball-tampering in 2001 but was later cleared of the charges.
Summary:
During a Rajya Sabha session, Vice President Venkaiah Naidu on Wednesday advised retiring Congress MP Renuka Chowdhury to lose weight and work towards increasing her party's weight.
Summary:
Delhi Chief Minister Arvind Kejriwal on Tuesday accused the BJP of "dirty politics" and said the ruling party was trying to stall the AAP government using the Lieutenant Governor and bureaucracy.
Summary:
China had already met its 2020 carbon dioxide emissions reduction target in 2017, Chinese media reported citing the country's climate change representative Xie Zhenhua.
Summary:
Four terrorists who had entered India after illegally crossing the Line of Control have been killed in a joint security operation in Jammu and Kashmir's Sunderbani, police officials said.
Summary:
A court has awarded a two-year jail term to a Rohingya man hailing from Myanmar for acquiring a fake Aadhaar card and residing in Hyderabad.
Summary:
An online portal linked to BJP spokesperson Tajinder Bagga is selling T-shirts on the incident wherein a Kashmiri civilian was tied to an Army jeep and used as a human shield against stone-pelters.
Summary:
Replying to a query from a ruling CPI(M) MLA in Kerala Assembly, Education Minister C Raveendranath revealed that over 1.24 lakh students from Class 1-12 chose not to fill the religion and caste columns in their school admission forms.
Summary:
The mother of Najeeb Ahmed, the JNU student who went missing in October 2016, has filed a â¹2.2-crore defamation case against some media houses for linking him to the ISIS.
Summary:
The Haryana government has ordered the closure of all slaughterhouses across urban areas in the state on the occasion of Mahavir Jayanti on Thursday.
Summary:
An eight-year-old girl from Uttar Pradesh's Hapur accidentally hung herself while enacting a scene from a crime television show at a friend's house, police said.
Summary:
Minister of State for Defence Subhash Bhamre has revealed there are 192 vacant posts for pilots in the Army and 82 in the Navy.
Summary:
The Ecuadorian government has suspended internet access to WikiLeaks founder Julian Assange in its embassy in London.
Summary:
Five Asian-American passengers have filed a racial discrimination complaint against Russian airline Aeroflot after it forced them to fly to Delhi instead of New York due to their skin colour.
Summary:
The Madras HC has revoked a 2014 Income Tax Department order declaring Kalanithi Maran as the principal officer of SpiceJet and making him liable for alleged tax dues of the company when he owned it.
Summary:
The government on Wednesday extended the deadline for linking Aadhaar with all government welfare schemes to June 30, 2018.
Summary:
OnePlus' upcoming flagship of 2018- the OnePlus 6 is confirmed to have a display notch, company co-founder Carl Pei revealed.
Summary:
Indian investors saw a wealth addition of â¹20.70 trillion during fiscal 2017-18, as the market capitalisation of all listed companies reached â¹142.24 trillion.
Summary:
A Jodhpur court will deliver the verdict in Bollywood actor Salman Khan's 1998 blackbuck poaching case on April 5.
Summary:
Clearing Darren Lehmann of any involvement in the ball-tampering scandal, Cricket Australia CEO James Sutherland said he used walkie-talkie to send 'What the f*** is going on?' message to the team.
Summary:
Malinga almost dismissed Charl Langeveldt with a yorker off the subsequent ball.
Summary:
Late Apple Co-founder Steve Jobs discussed privacy issues in regard to technology companies at an event in 2010, which was also attended by Facebook CEO Mark Zuckerberg.
Summary:
India's Information Technology Ministry has issued a notice to Facebook, asking whether personal data of users was exploited by Cambridge Analytica or other firms to influence Indian elections.
Summary:
Bidding farewell to retiring Rajya Sabha MPs, PM Narendra Modi said it's unfortunate they won't be part of the Parliament when historic bills are passed.
Summary:
The Delhi Assembly on Tuesday passed a resolution to make stalking a non-bailable offence.
Summary:
Liquor baron Vijay Mallya is reportedly getting married for the third time to his current girlfriend and former air hostess Pinky Lalwani, with whom he lives in London.
Summary:
The police seized around 15 pistols, two revolvers and 10 magazines from the dealer when he came to deliver a stock of arms to his contacts.
Summary:
Replying to a question on recent deaths of journalists in India, UN Secretary-General António Guterres said the organisation was concerned about harassment and violence against journalists.
Summary:
Human Resource Development Minister Prakash Javadekar has revealed that some parts of CBSE Class 10 Mathematics and Class 12 Economics papers were leaked on WhatsApp. Stating that strict action will be taken against the guilty, Javadekar added that security will be tightened when papers are being distributed.
Summary:
Although Tianducheng first opened in 2007, it is sparsely populated and has often been called a "ghost town".n
Summary:
Upon serving a demand notice, Air India remitted â¹29.39 lakh without any communication.
Summary:
Actor Varun Dhawan has said being successful is a double-edged sword while adding, "There's no time for family or loved ones and that's worse than anything in the world." "I'm there for the public in a way, and I'm working for them and giving them what they expect," he added.
Summary:
Summary:
Taking a dig at Australia's ball-tampering scandal, a bookstore in Brisbane took to Facebook to share a picture of Steve Smith's autobiography displayed in the 'True Crime' section.
Summary:
Kohli will join sports personalities like Kapil Dev, Sachin Tendulkar, Cristiano Ronaldo and Lionel Messi, who have been featured in the museum.
Summary:
Taking a dig at Australia's Steve Smith, Air New Zealand shared a video on Twitter urging the batsman to visit Christchurch and host a "master class in (legal) swing bowling".
Summary:
Former Australian spinner Shane Warne has said the punishment meted out to David Warner and Steve Smith in the form of a one-year ban for ball-tampering "does not fit the crime".
Summary:
A Wildlife Conservation Society scientist has captured a video of a female elephant puffing out smoke from her mouth after seemingly ingesting charcoal in Karnataka's Nagarhole National Park.
Summary:
The Delhi archaeology department has selected 19 heritage structures across the city for restoration work starting April as part of a project to preserve historically important structures in the national capital.
Summary:
A video of a cat being rescued from a 30-foot-high power line pole in the US state of Arizona has surfaced online.
Summary:
France on Wednesday held a state funeral for Arnaud Beltrame, the police officer who swapped himself for a hostage during an attack by an ISIS supporter at a supermarket last week.
Summary:
The Official Liquidator attached to the Karnataka High Court has reportedly informed the Bombay HC that it was selling Vijay Mallya's luxury Airbus A319.
Summary:
The government has set the minimum net worth criteria for companies or consortiums bidding for Air India at â¹5,000 crore.
Summary:
Cricket Australia (CA) has revealed that David Warner was the mastermind of the ball-tampering plan in the third Test against South Africa.
Summary:
Bancroft has been handed a nine-month ban and will not be considered for captaincy for 12 months after serving the ban.
Summary:
Only 12 units of the SUV will be built.
Summary:
A 25-year-old Indian man won $1 million (â¹6.5 crore) in a lottery in Dubai on Tuesday.
Summary:
The Income Tax Department has found a 'secret' bank account linked to fraud-accused Nirav Modi at Barclays Bank in London, according to India Today.
Summary:
The Enforcement Directorate on Wednesday arrested Shyam Sunder Wadhwa, the Vice President (Finance) of Firestar Group and a "close" associate of jeweller Nirav Modi, in connection with its probe in the $2.1-billion PNB fraud.
Summary:
According to whistleblower Christopher Wylie, British firm Cambridge Analytica, which is involved in Facebook's data controversy, has a database of over 7 lakh Indian villages.
Summary:
This comes after Saudi Arabia started allowing Israel-bound Air India flights to cross its airspace.
Summary:
The CCTV footage shows traffic policemen trying to stop him by standing in front of his car.
Summary:
The salaries and allowances of ministers will now increase from â¹55,000 to â¹90,000, while the salaries of MLAs will increase from â¹39,500 to â¹70,000.
Summary:
Jammu and Kashmir CM Mehbooba Mufti has accused television channels including Times Now, Republic, NewsX, and India Today of scaring away tourists by projecting the state in a negative light.
Summary:
North Korean leader Kim Jong-un travelled in a green and yellow train to China this week, on his first foreign trip since assuming power in 2011.
Summary:
Following Kim Jong-un's meeting with Chinese President Xi Jinping, US President Donald Trump on Wednesday said that there is now a good chance the North Korean leader will give up his country's nuclear weapons.
Summary:
The chef and co-owner of a Canadian restaurant started cutting and eating meat in front of vegan protesters, the latter have claimed.
Summary:
The company was allegedly banking with the SBI since 2009, after SBI took over the loan originally provided by Axis Bank.
Summary:
Sixty five individuals in India have made it to Forbes' 30 Under 30 Asia list, which includes 300 young disruptors, innovators and entrepreneurs across Asia who are under the age of 30.
Summary:
Private sector lender Bandhan Bank has become India's eighth most valued bank with a market capitalisation of over â¹56,000 crore, overtaking Bank of Baroda and PNB.
Summary:
A new song titled 'Tab Bhi Tu', sung by Rahat Fateh Ali Khan, from Varun Dhawan starrer 'October' has been released.
Summary:
Summary:
Choreographer-director Prabhudeva, while praising actor Salman Khan, said, "He is a lot like Rajinikanth sir." "They both have an innate style, one that is unique and appealing.
Prabhudeva further said, "He is hard-working and comforting.
Summary:
Ethiopian Premier League side Welwalo Adigrat's goalkeeper threw the ball into his own net, conceding an own goal during a match against Fasil Kenema.
Summary:
China on Wednesday announced that it will resume sharing hydrological data of the Brahmaputra river with India in the humanitarian spirit and the two countries' shared will to develop bilateral ties.
Summary:
Goa Health Minister Vishwajit Rane on Tuesday slammed relatives of patients for offering roosters to a local deity at Goa Medical College.
According to the ritual, roosters are offered to please the deity after the death of a patient.
Summary:
Former Maharashtra CM Prithviraj Chavan on Tuesday alleged that data collected through Maharashtra government's 'Mahamitra' app, including photos and phone records of users, was being transferred to a private trust.
Summary:
Major markets in Delhi remained shut on Wednesday as traders' unions called for a strike to protest the sealing drive carried out by municipal corporations.
Summary:
A 25-year-old daily wage labourer in Chennai allegedly killed his mother on Monday for drinking his liquor, which he had kept hidden.
Summary:
The CBSE on Wednesday announced it will reconduct the board exams for Class 12 Economics and Class 10 Mathematics papers.
Summary:
Cricket Australia has said banned cricketer David Warner will never be considered for any leadership position for his role in the ball-tampering scandal.
Summary:
While Ajinkya Rahane will lead Rajasthan Royals, SunRisers Hyderabad are yet to name a replacement captain.
Summary:
Steve Smith and David Warner have been banned from playing for Australia for one year each for their involvement in the ball-tampering scandal.
Summary:
The court also approved a plan to use proceeds to repay $20 million in dues to HSBC Bank and Israel Discount Bank in the US.
Summary:
A US court has ruled that Google violated copyright law when it used computer software company Oracle's Java APIs to create the Android mobile operating system.
Summary:
Whistleblower Christopher Wylie, who exposed the Facebook data scandal, has claimed that the number of users affected by the leak is "substantially higher" than 50 million.
Summary:
Gaggan, an Indian restaurant in Bangkok, has topped the list of Asia's 50 Best Restaurants for the fourth consecutive year.
Summary:
Staying Delhi High Court's order, the Supreme Court on Wednesday said that AIADMK faction led by TTV Dhinakaran cannot use 'pressure cooker' as the party symbol till next hearing.
Summary:
Ex-Google employee Kathy Hannun's geothermal energy startup Dandelion has raised $4.5 million led by New Enterprise Associates.
Summary:
A judge of the Supreme Court of India can be removed from his office through an order of the President.
Summary:
North Korean leader Kim Jong-un invited China's President Xi Jinping to visit his country during an unofficial trip to Beijing this week.
Summary:
Stating that Russia must confess to the nerve agent attack on former spy Sergei Skripal in order to mend relations with the US and NATO, the US State Department said, "Russia has lots of tentacles." The Department added that Russia should cease its "recklessly aggressive behaviour".
Summary:
Designed by mental health professionals and artists, packets sold by the machine cost A$2 (â¹100) and have names like 'Purpose' and 'Belonging'.
Summary:
Actress Sunny Leone, while talking about her life after she became a parent to three children, said, "This is like the biggest hit story of our (herself and husband Daniel Weber) lives." "We've been wanting to have kids for long, and now we are one big happy family.
Summary:
Kim Kardashian, while responding to being trolled for allegedly photoshopping a picture, tweeted, "What photoshop fail?" In a blog post, Kim wrote, "I reposted a picture on Instagram that a fan had already posted.
Summary:
Facebook is facing a lawsuit from civil rights groups alleging the company's ad practices enable discriminatory housing practices.
Summary:
A language-teaching humanoid robot named Elias is being tested at a primary school in Finland.
Summary:
The update, effective from May 1, gives Microsoft the right to review users' content without consent.
Summary:
A German and an Israeli passenger plane collided with each other on Wednesday at the Ben Gurion Airport, leaving both aircraft stuck together at the tail.
Summary:
A Hyderabad-bound Spanish man has been arrested after getting caught at the Delhi airport with a live bullet in his bag, a CISF official said on Tuesday.
Summary:
AIADMK MP Anwar Raja's son Naser Ali has been booked for criminal intimidation and cheating a Chennai-based woman of â¹50 lakh.
Summary:
US-based health insurance startup Oscar Health co-founded by Ivanka Trump's brother-in-law Joshua Kushner has raised $165 million.
Summary:
The company also faces liquidity pressures due to its large negative free cash flow, Moody's said.
Summary:
The films could be used in medical bandages and wearable electronics.
Summary:
It starts with an ageing red giant star losing mass via stellar wind, which balloons into a huge gaseous shell around the star.
Summary:
Judge Loya died in 2014 while hearing the high profile case of the alleged encounter of Sohrabuddin Sheikh.
Summary:
The move is unprecedented as usually no head of state is subject to a security check either on a private or official visit.
Summary:
The bank said that some of the loans issued during fiscals 2009-13 for fish-farming businesses were obtained using fake documents and overvalued collateral security.
Summary:
A new trailer of superhero film 'Avengers: Infinity War' has been released.
Summary:
The official trailer of Amitabh Bachchan and Rishi Kapoor starrer '102 Not Out' has been released.
Summary:
Apple has launched its cheapest iPad which will come at a starting price of â¹28,000 for 32 GB variant.
Summary:
Mozilla said websites that allowed a user to login through Facebook will not work properly within the extension.
Summary:
The light-emitting material in the device is a monolayer semiconductor, just three atoms thick.
Summary:
"The recent news about Facebook's alleged mismanagement of users' data has solidified our decision to suspend our activity on the platform", it added.
Summary:
Apple's App Store went down for "many users" on Tuesday, preventing them from making purchases and signing in to services.
Summary:
The flight attendant said the incident occurred when the plane landed and passengers were preparing to deboard.
Summary:
Jet Airways has delayed the salaries of over 1,000 employees for the month of March.
Summary:
A US-based man has sued BMW claiming that his X5 model's automatic door severed his right thumb.
Summary:
Son said he expects the solar project to have the capacity to produce up to 200 gigawatts by 2030.
Summary:
Bathing in the Ganga at Sangam, where it joins Yamuna river at Allahabad, could expose people to levels of faecal coliform bacteria that are 5-13 times the permissible limit, as per Central Pollution Control Board 2017 data.
Summary:
PM Narendra Modi on Wednesday bid farewell to nearly 40 retiring Rajya Sabha members, hailing their contributions to the House.
Summary:
Assistant Commandant Captain Penny Chaudhary, co-pilot of the Coast Guard Chetak helicopter which crashed in Maharashtra on March 10, passed away on Tuesday.
Summary:
China on Tuesday briefed US President Donald Trump on the visit of North Korean leader Kim Jong-un to Beijing this week, the White House has said.
Summary:
Myanmar's Parliament has elected Win Myint as the country's new President.
Summary:
A man named Gurpreet Singh said he lost his wallet in the Delhi Metro earlier this month, but received it 11 days later with all the contents intact when a stranger mailed it to him.
Summary:
The Income Tax Department has frozen some bank accounts of Cognizant Technology Solutions India over alleged tax evasion amounting to â¹2,500 crore in 2016-17, according to a report.
Summary:
If I hang out with another guy, people will say I left Tiger for him." "Tiger is my only friend in Mumbai.
Summary:
Cambridge Analytica, the firm accused of the Facebook data leak, has said that whistleblower Christopher Wylie, who exposed the scandal, "has misrepresented himself and the company".
Summary:
Google has started blocking access to its apps on uncertified Android devices whose firmware was built after March 16.
Summary:
Andhra Pradesh Chief Minister Chandrababu Naidu on Wednesday said that he is willing to bear any insult for the sake of people and the state.
This comes after BJP chief Amit Shah said that TDP quit the NDA alliance for political reasons.
Summary:
TDP on Tuesday slammed YSR Congress MP Vijay Sai Reddy, alleging that he had hurt the sentiments of Telugu people by touching the feet of PM Narendra Modi.
Summary:
The Health Ministry on Tuesday extended the duration of existing rules for health warnings on tobacco products, which require 85% of the display area to be covered in warnings, till August 31.
Summary:
Chitradurga Mutt seer Shivamurthy Murugha Sharanaru has written to BJP President Amit Shah, supporting the minority religion status accorded to Lingayats by the Karnataka government.
Summary:
It added that Bailey will continue to be the President of the Academy.
Summary:
Unibic offers sugarfree cookies in a variety of flavours, a perfect indulgence for your taste buds with none of the guilt of sugar.
Summary:
Signatures of at least 50 MPs are required to move the motion.
Summary:
American researchers have proposed a previously unrecognised, fluid-filled space inside and between tissues as a new organ called 'interstitium'.
Summary:
The incident occurred after a log operator got confused between the Panipat-New Delhi (64464) and Sonepat-Old Delhi (64004) trains as they reached Sadar Bazar Railway Station in Delhi at the same time.
Summary:
Amid Australia's ball-tampering controversy, David Warner has stepped down as the captain of Sunrisers Hyderabad for the upcoming IPL edition.
Summary:
As many as three batsmen in Test cricket have scored more runs in an over than the lowest-ever Test total of 26.
Summary:
New Zealand registered the lowest-ever total in Test cricket history after getting bowled out for 26 in the second innings of the Auckland Test against England on March 28, 1955.
Summary:
Lyft Co-founder John Zimmer has said, "I did see the video (of Uber self-driving car crash).
prevented that." This comes after Uber's self-driving car killed a woman crossing a street in the US.
Summary:
A Shanghai-New York flight dumped 30 tons of fuel so it could make an emergency landing after a 60-year-old woman fell ill.
Summary:
Taking a dig at BJP President Amit Shah, Congress President Rahul Gandhi tweeted, "Gifted to us by BJP President, our campaign in Karnataka is off to a fabulous start." This comes after Shah mistakenly called Karnataka's previous BJP government the "most corrupt".
Summary:
Fortis Healthcare Limited has decided to sell its hospital business to TPG Capital-backed Manipal Health Enterprises Private Limited to create India's largest healthcare service provider by revenue.
Summary:
The UP STF and Delhi Police have arrested four people who were helping over 100 students cheat in the SSC exams in exchange for lakhs of rupees.
Summary:
Road, Transport and Highways Minister Nitin Gadkari on Tuesday said that the government has decided to increase the shelf life of commercial vehicles to 20 years from 15 years.
Summary:
The Supreme Court on Tuesday summoned top officials of West Bengal and Uttarakhand for naming rape survivors, including minors, in affidavits pertaining to disbursement of compensation to them under the Nirbhaya funds scheme.
Summary:
Actress Alia Bhatt has said she has made a pact with Katrina Kaif and Deepika Padukone to work in films together.
"Katrina is one of my closest friends, so we keep talking about doing a film.
Summary:
Speaking about how the audience today has many options to choose from, R Madhavan said, "If the content is good, people will watch it, and I'll survive as an actor." "Audiences...are no longer dependent on just Bollywood," he added.
Summary:
Lucky Oye!' This will be Arjun and Parineeti's second film together after 'Ishaqzaade'.
Summary:
Summary:
Uber has agreed to pay $10 million to settle a class-action lawsuit that accused the ride-hailing startup of discriminating against female and minority employees.
Summary:
Technology giant Google has acquired US-based Tenor, a GIF platform for Android, iOS, and desktop, the company announced on Tuesday.
Summary:
A pair of Mumbai bikers travelled through five continents and 35 countries within a span of 270 days.
Summary:
The software turned off the emission controls when the vehicles were not in a testing environment, the lawsuit claimed.
Summary:
The drop was attributed to an investigation in the US which is looking into a Tesla Model X crash that killed the car's driver.
Summary:
After 12 hearings spanning seven months, the Supreme Court on Wednesday dismissed a plea seeking to reopen the Mahatma Gandhi assassination case probe.
Summary:
Mumbai Police on Monday arrested a man and his son for allegedly duping Lakshmi Vilas Bank of â¹48 crore by fraudulently obtaining cash credit and letter of credit facilities.
Summary:
Union Minister Kiren Rijiju on Tuesday said, "We are part of united India since thousands of years when Lord Krishna from Dwarika of Gujarat wedded princess Rukmini of Arunachal Pradesh." "No force in the world can separate Arunachal Pradesh from India," Rijiju added.
Summary:
Bajaj Allianz travel insurance offers global expertise matched with local knowledge, and covers expenses of hospitalization, loss of baggage, trip cancellation, trip curtailment and other incidental expenses.
Summary:
Following his admission in the ball tampering incident, Steve Smith has been stripped of Australia's Test captaincy, and will be replaced by wicketkeeper-batsman Tim Paine.
Summary:
North Korean leader Kim Jong-un met China's President Xi Jinping on a trip to Beijing this week, his first known visit abroad since assuming power in 2011.
Summary:
Aegon Life's iTerm Insurance plan provides cover for a glorious 100 years of your lifetime.
Summary:
On March 28, 1949, British astronomer Fred Hoyle made the first use of the term 'Big Bang' in a cosmological context.
Summary:
Former Indian captain Rahul Dravid has been named as the election icon to motivate young voters to come and vote in the upcoming Karnataka Assembly elections, Chief Electoral Officer Sanjiv Kumar has revealed.
Summary:
Facebook CEO Mark Zuckerberg will testify before the US Congress on the Cambridge Analytica data leak and the company's data practices, according to reports.
Summary:
The Gujarat government has made it compulsory for all schools in the state to teach Gujarati to students of Classes 1-8 from the next academic session.
Summary:
Last month, a man was paraded in Daporijo for allegedly raping an eight-year-old girl.
Summary:
The Election Commission has formed an internal committee to probe how the Karnataka Assembly election dates were tweeted by BJP IT cell head Amit Malviya minutes before the official announcement.
Summary:
Khap panchayats have opposed the Supreme Court ruling which prohibits them from interfering in interfaith marriages.
Summary:
North Korean leader Kim Jong-un who met China's President Xi Jinping on a trip to Beijing this week, has described the visit as his "solemn duty".
Summary:
The remaining funds will be released if Greece "makes progress in reducing its stock of arrears," ESM added.
Summary:
A man has been acquitted of stealing an aubergine by Italy's top court, ending a legal battle that cost taxpayers around â¬8,000 (â¹6.5 lakh).
Summary:
Salman Khan has said that Katrina Kaif is incredible on stage, on screen and as a person.
Summary:
(but) it's important to break that myth." This comes after Salman Khan had said, "I see a lot of people getting depressed...but I can't afford that luxury of being depressed."
Summary:
Kangana Ranaut, while talking about the need for women to stand together, said, "When I was fighting for equal pay, many women from my industry started fake articles that they are getting this, that." "They started hiking their salaries through their PRs," she added.
Summary:
The Indian men's football team's 13-match unbeaten run stretching back to June 2016 came to an end after losing 1-2 against Kyrgyz Republic in the 2019 AFC Asian Cup Qualifiers on Tuesday.
Summary:
Inspired by Gandhi's words, 71-year-old Shantaram Naik had resigned as Goa Congress chief.
Summary:
The accused, who had dropped the victim home before, took her to an isolated area and raped her.
Summary:
Assam Women's University students' indefinite strike for a permanent Vice-Chancellor entered its 23rd day on Tuesday.
Summary:
An IPS officer, Arindam Dutta Chowdhury, lost his right hand after a bomb was hurled at him during clashes between police and groups carrying out armed Ram Navami processions in West Bengal despite a government ban.
Summary:
After 50,000 people protested demanding that Shiv Pratishthan Hindustan chief Sambhaji Bhide be arrested for inciting violence during Bhima-Koregaon clashes, Maharashtra CM Devendra Fadnavis told the state Assembly there is no evidence against him.
Summary:
The Uttar Pradesh Assembly on Tuesday passed the Uttar Pradesh Control of Organised Crime Act (UPCOCA) 2017 bill, which aims to tackle organised crime with strict punishment.
Summary:
Namma Bengaluru Foundation has claimed IPS officer Roopa had lobbied hard for the award she claims to have denied, adding she made the statements after realising she wasn't winning.
Summary:
Thousands of Muslim women on Tuesday participated in a rally in Rajasthan's Fatehpur against the instant Triple Talaq bill, which seeks to criminalise the practice with a three-year jail term.
Summary:
Sri Lankan Navy on Tuesday dumped and destroyed several bulletproof vehicles, including a ship used by former presidents during the country's three-decade-long civil war, in the sea area off the western coast.
Summary:
Testifying in front of a UK panel, Cambridge Analytica whistleblower Christopher Wylie on Tuesday said the Facebook data scandal-linked firm has worked with the Congress in India.
Summary:
Former PNB manager Charanjeet Arora and three executives of a firm have been convicted and sentenced to five years rigorous imprisonment in a loan fraud case after a nearly 24-year trial.
Summary:
Sachin Tendulkar came out to open the innings for the first time in international cricket on March 27, 1994, against New Zealand in Auckland.
Summary:
Ex-England captain Michael Vaughan has said he was "pretty sure" Australia tampered with the ball during the recent Ashes series.
Summary:
David Warner has reportedly left the Australian team's WhatsApp group amid the ball-tampering controversy.
Summary:
Whistleblower Christopher Wylie, who exposed the Facebook data scandal, has claimed his predecessor at Cambridge Analytica may have been poisoned in Kenya after a deal went wrong.
Summary:
World's richest person and Amazon CEO Jeff Bezos added $30 billion to his wealth in less than three months despite the massive sell-offs in global markets.
Summary:
The Congress has circulated a draft proposal seeking to impeach Chief Justice Dipak Misra among various political parties, reports said.
Summary:
Karnataka BJP's official Twitter handle has tweeted, "Oye Rahul, You prove your silliness by wanting to base your campaign on a slip of tongue!" This comes after Gandhi tweeted a video of BJP chief Amit Shah erroneously saying that the previous BJP government in the state was the "most corrupt".
Summary:
Amidst the Facebook data scandal, Chief Election Commissioner OP Rawat on Tuesday said the social networking platform will remain their social media partner during the Karnataka Assembly elections.
Summary:
The countries had expelled Russian diplomats, alleging they were intelligence officers.
Summary:
The company's bankruptcy filing comes just a day after lakhs of people gathered for 'March For Our Lives' protests across the country for stricter gun control laws.
Summary:
India's food regulator FSSAI has asked top 200 food companies to constitute exclusive teams to manage food recalls in case such a situation arises.
Summary:
Talking about rumours of the making of 'Don 3', Farhan Akhtar tweeted, "Request those who conjure up news about #Don3 without any fact checking to please refrain.
Summary:
Actor Boman Irani has said that some people may find his films senseless, while adding, "But I'm okay with it as long as people have a good laugh and they get their money's worth." He added, "I think whether you are doing a play, movie...you're eventually playing a character.
Summary:
Actress Esha Gupta took to Instagram to deny rumours that she is dating fashion designer Nikhil Thampi.
"Okay guys he is one of my closest best friends.
Esha added, "Also, find me a man...
Summary:
A Bangladeshi man faked his death on social media by using fruit juice as imitation blood after losing a â¹1-lakh bet on the Bangladesh-India T20I tri-series final.
Summary:
Asif was traveling to Sharjah to participate in a tournament but was flagged down at immigration by Dubai airport authorities before being sent back to Pakistan.
Summary:
Punjab CM Captain Amarinder Singh on Tuesday said student unions across state colleges and universities will be allowed to hold direct elections from the 2018-19 academic session, 34 years after it was banned due to state militancy.
Summary:
US President Donald Trump's naked statue will be auctioned later this year in New Jersey.
Summary:
Aircel had also shut services in six circles while services in other regions have been affected amid a cash crunch.
Summary:
The Revenue Department has reportedly launched an investigation into alleged collusion between 4 state-owned banks and ATM service providers to evade Value Added Tax (VAT) payments and wrongful claims of tax credit.
Summary:
Motorola on Monday announced that the company's 20-year veteran Sergio Buniac will take over as the new President and the Chairman.
Summary:
Last week, GSK had withdrawn from the auction of Pfizer's consumer healthcare business, backing out of a deal worth a potential $20 billion.
Summary:
The GST collections fell for the second consecutive month in February to â¹85,174 crore.
Summary:
Responding to an RTI query, PNB has refused to provide information about records pertaining to the process of issuing loans to Nirav Modi, citing an ongoing probe into an alleged $2.1-billion fraud.
Summary:
The government on Tuesday extended the deadline for linking Aadhaar with Permanent Account Number (PAN) to June 30.
Summary:
Television actor Karan Tacker has said he once shot for 36 hours straight for one of his shows after a lot of episodes which were shot previously were scrapped.
Summary:
A special CBI court has allowed Enforcement Directorate to interrogate employees of Nirav Modi's firms who are in judicial custody over the alleged $2.1-billion PNB fraud.
Summary:
Challenging West Bengal BJP chief Dilip Ghosh to a boxing match, state minister Rabindra Nath Ghosh said he will break Ghosh's nose, eyes, and face.
Summary:
Masayoshi Son-led Japanese conglomerate SoftBank Group has set up a committee to investigate a smear campaign against former President Nikesh Arora.
Summary:
Water Resources Minister Nitin Gadkari has said three dams will be constructed in Uttarakhand to stop water from rivers allotted to India from flowing back to Pakistan.
Summary:
The Enforcement Directorate will begin attaching the properties of liquor baron Vijay Mallya.
Summary:
The Spanish police have arrested the suspected leader of a cyber gang which stole over $1.2 billion from banks.
Summary:
France will make school education compulsory from the age of three instead of six, President Emmanuel Macron announced on Tuesday.
Summary:
Firefighters who were called to the scene helped rescue the man by drilling through the concrete walls.
Summary:
An official later stated, "The city is moving forward to save the Snell Park ficus tree."
Summary:
Tower service provider GTL Infrastructure has reportedly moved the National Company Law Tribunal (NCLT) to recover dues of â¹12,500 crore from Aircel.
Summary:
Bollywood celebrities including Shah Rukh Khan, Aishwarya Rai Bachchan and Katrina Kaif were present at the post-engagement party of Reliance Industries Chairman Mukesh Ambani's eldest son Akash Ambani and diamond heiress Shloka Mehta.
Summary:
Tiger Shroff, while speaking about Disha Patani's role in 'Baaghi 2', said, "She's the central character in the film, I just help her." "'Baaghi 2' isn't really her debut film.
Tiger further said that he is really proud of Disha.
Summary:
Actor-producer Raghu Ram, known for judging 'MTV Roadies', took to Instagram to confirm that he's dating Natalie Di Lucio, a Canadian singer, following his divorce with Sugandha Garg.
Summary:
As per reports, Anushka Sharma's 'Pari' is set to get a Tamil remake.
Summary:
"I had come to see Shami...but he refused...He threatened me and said 'I will see you in court now'," she added.
Summary:
Ex-world number one Ronnie O'Sullivan pulled off a 'one in a million' snooker shot at the 2018 Players Championship final on Sunday.
Summary:
Former England pacer Bob Willis has said that Indian cricket team captain Virat Kohli should be made to "suffer in England" and should not be allowed to play county cricket.
Summary:
The government has reportedly rejected Google's proposal to launch Street View in India.
Summary:
The company has partnered with non-profit organisation 'Destination: Home' for the purpose.
Summary:
A 5-year-old girl was allegedly abducted by an unidentified woman in Maharashtra's Palghar district and was later found dead in a toilet at Navsari railway station in Gujarat, police said on Tuesday.
Summary:
Mumbaikars gathered outside the US Consulate in the wake of last month's shooting at a school in Florida, US, which claimed 17 lives.
Summary:
A Mumbai traffic constable has been suspended by the traffic department after a video of him taking bribe surfaced online.
Summary:
The Home Ministry on Tuesday informed the Lok Sabha that the government is not considering any proposal to scrap Article 370 of the Constitution, which gives special status to Jammu and Kashmir.
Summary:
A video of an avalanche destroying a car park near a ski resort in Russia has surfaced online.
Summary:
Carter added he would advise Trump to fire Bolton.
Summary:
Amid the controversy over his tweet announcing Karnataka Assembly election dates before the Election Commission, BJP IT cell head Amit Malviya wrote to the EC clarifying that he got the information from a TV channel.
Summary:
Pharmaceutical giant Pfizer originally synthesised the chemical sildenafil to treat hypertension and heart conditions.
Summary:
The list features 300 entries, 30 in ten categories, picked from more than 2,000 nominations.
Summary:
A Canadian businessman has sold his collection of solid gold castings of Nelson Mandela's hands for $10 million in Bitcoin.
Summary:
Australian cricket team members have reportedly demanded that former vice-captain David Warner be evicted from the team hotel after he was apparently seen partying amid the ball-tampering scandal.
Summary:
Around 50,000 protestors gathered in Mumbai's Azad Maidan on Monday seeking the arrest of Shiv Pratishthan Hindustan chief Sambhaji Bhide, accused of inciting violence during Bhima-Koregaon clashes.
Summary:
The number of Indian citizens referred as potential victims of trafficking and modern slavery in the UK increased from 100 in 2016 to 140 in 2017, Britain's National Crime Agency has said.
Summary:
Prohibitory orders under Section 144 have been issued in Bihar's Aurangabad after communal clashes broke out during Ram Navami celebrations on Sunday and continued on Monday.
Summary:
UK MPs on Tuesday wore turbans as part of the Turban Awareness Day that was held to show support for the Sikh community.
Summary:
A couple flying from Australia to Germany found a venomous huntsman spider when they opened their luggage during the flight, a customs officer said.
Summary:
Income Tax offices and Aaykar Seva Kendras will stay open during holidays from March 29-31 to assist taxpayers in filing returns, the Finance Ministry has announced.
Summary:
Swara Bhasker, on being asked what makes her different from other Bollywood actresses, said, "I'm willing to voice my disappointment when I find something off." "I believe in acknowledging the good as well as not-so-good realities of our industry," she added.
Summary:
The ICC handed a 20-year ban to Rajan Nayer, a Zimbabwe cricket official, for offering Zimbabwe team's captain Graeme Cremer $30,000 to fix a match last year.
Summary:
Trevor Chappell, infamous for bowling underarm to help Australia beat New Zealand in 1981, has said he is relieved to lose the title of man behind Australian cricket's "darkest day", after the ball tampering incident involving Steve Smith.
Summary:
Summary:
The family removed the seats and added a kitchen, living area and bedrooms to the bus.
Summary:
Calling Ola and Uber's business model "fundamentally flawed", Zoomcar Co-founder and CEO Greg Moran has said, "If you just do a ride-sharing business...
Summary:
The World Heritage-listed site is suffering from coral bleaching due to warming sea temperatures.
Summary:
The Delhi State Consumer Disputes Redressal Commission has directed Hindustan Coca-Cola to pay a compensation amount of â¹24,606 to a city doctor.
Summary:
The crude bombs were meant for the killing of wild animals, the accused told the police.
Summary:
Incidents of cigarettes and other tobacco products' smuggling in India increased by 136% in two years, a FICCI CASCADE report has revealed.
Summary:
Police officials allegedly stripped a transgender at a police station in Kerala's Alappuzha, fearing that she would commit suicide after being lodged in a cell.
Summary:
MP failed to prove that Basmati is cultivated in the state, it added.
Summary:
"CleverTap employees don't have access to any of the data stored with it by a publisher," Co-founder Anand Jain said.
Summary:
Six members of the transgender community have launched a helpline in Mumbai with an aim to provide an information and support platform to the community.
Summary:
He also blamed Kemerovo's mayor for lack of safety checks in the building.
Summary:
He urged industry associations to contribute to development at the district level.
Summary:
Karnataka Chief Minister Siddaramaiah has become the first CM in the state to complete the full five-year term in 40 years.
Summary:
Soviet cosmonaut Yuri Gagarin, who became the first man to go into space in 1961, died aboard an MiG fighter plane on March 27, 1968, while training for a second space mission.
Summary:
German physicist Wilhelm Conrad Röntgen accidentally discovered a new form of radiation in 1895 while testing if cathode rays could pass through glass and dubbed them 'X-rays' because of their "unknown" nature.
Summary:
Summary:
The ICC overturned the ban, saying Tendulkar's offence was cleaning the ball without permission rather than ball tampering.
Summary:
Facebook CEO Mark Zuckerberg has refused to appear before a UK parliamentary committee to testify over the data scandal surrounding the social media major.
Summary:
Yeddyurappa, who was sitting next to Shah, is BJP's CM candidate for upcoming polls.
Summary:
After BJP IT cell head Amit Malviya tweeted the Karnataka Assembly poll dates before the Election Commission's official announcement, Congress spokesperson Randeep Surjewala called BJP 'Super Election Commission'.
Summary:
Indian-origin astronaut Sunita Williams is working with billionaire Elon Musk's space exploration startup SpaceX, according to reports.
Summary:
Mumbai-based startup Gegadyne is developing an energy system which it claims will last up to 50 times longer than lithium-ion batteries.
Summary:
Sushma Swaraj has retweeted a Congress poll that asked people if they consider the death of 39 Indians in Iraq as her biggest failure as Foreign Minister.
Summary:
A veterinarian in Australia performed a surgery on a python that entered a family's house and ate one of the slippers.
Summary:
Banita Sandhu, who will be making her Bollywood debut with Shoojit Sircar's 'October', said the filmmaker wanted "raw emotions" in the film and hence did not conduct any workshops for the actors.
Summary:
Australia's Prime Minister Malcolm Turnbull has called for an end to sledging in cricket, terming it "right out of control".
it should have no place (in cricket)", Turnbull said.
Summary:
Former England captain Kevin Pietersen has shared a parody video called 'We cheat at cricket', based on the ball-tampering incident that occurred during the third Test between Australia and South Africa.
Summary:
Former captain Steve Waugh has said that Australian cricketers involved in the ball-tampering controversy have failed the culture of Australian cricket team.
Summary:
TDP MP CM Ramesh has accused the rival YSR Congress of being "hand in glove with the BJP" after the party refused to attend an all-party meeting called by Andhra Pradesh CM Chandrababu Naidu.
Summary:
Bengaluru-based on-demand private driver provider DriveU has raised $3 million in a pre-Series A funding round led by former Google executive Amit Singhal.
Summary:
PM Narendra Modi recently took to micro-blogging site Twitter and shared a 3D animated video of him performing Trikonasana (the triangle posture).
Summary:
The Kerala government on Monday sanctioned â¹20 crore for the rehabilitation of nearly 80,000 beedi workers in the state.
Summary:
The Delhi High Court has said that the Centre cannot hold and retain the original documents of doctors trained at Army-run colleges for refusing to serve as Short Service Commission officers.
Summary:
The Supreme Court on Tuesday directed temples in Mathura and Vrindavan to donate all flowers offered to them to widows and destitute women in shelter homes.
Summary:
After an HDFC bank's branch in Mumbai faced flak on social media for installing iron spikes to stop beggars from sleeping at its doorsteps, the bank ordered the removal of the spikes.
Summary:
A 30-year-old man was arrested in Mumbai for allegedly molesting a female French tourist, a police officer said on Monday.
Summary:
Madhya Pradesh Chief Minister Shivraj Singh Chouhan on Tuesday ordered a CBI probe into the death of the journalist who was investigating a possible police-sand mafia nexus.
Summary:
The forest department and the Wildlife SOS Manekdoh Leopard Rescue Center (MLRC) have reunited 50 lost leopard cubs with their mothers in Pune's Junnar since 2009.
Summary:
Last year, Clinton released her memoir titled 'What Happened', which attempts to explain why she lost the 2016 presidential election.
Summary:
BJP IT cell head Amit Malviya on Tuesday posted the dates for the Karnataka Assembly elections on Twitter before the Election Commission's official announcement.
However, Malviya wrongly wrote the counting day as 18 May instead of 15 May.
Summary:
The Election Commission on Tuesday announced that voting for Karnataka Assembly elections will take place on May 12 while the counting of the votes will be held on May 15.
Summary:
After the US closed the Russian consulate in Seattle, the Russian Embassy in the US tweeted, "What US Consulate General would you close in @Russia, if it was up to you to decide".
Summary:
The books feature stickers indicating prices and there is a payment box where customers are trusted to leave the money.
Its owner says, "Nobody would steal a book and even if someone does it...
Summary:
Facebook CEO Mark Zuckerberg, Google CEO Sundar Pichai and Twitter CEO Jack Dorsey have been ordered by the US Senate Judiciary Committee to testify on data privacy.
Summary:
New Zealand's national carrier has revealed that a drone recently came within the range of 5 metres of one of its flights while it was landing in New Zealand, risking the safety of 278 people aboard.
Summary:
China's "out-of-control" space laboratory Tiangong-1 would crash into Earth between March 30 and April 2, according to the European Space Agency.
Summary:
The Indian Railways on Monday revealed that it has received over 2 crore applications for nearly 1 lakh vacancies.
Summary:
Rajesh and his friend were loading equipment back into the studio when unidentified assailants attacked them with sharp weapons, reports said.
Summary:
Gujarat's Surat has become the first Indian district to have 100% solar-powered Primary Health Centres (PHCs).
Summary:
A tableau was taken out in Rajasthan's Jodhpur on Ram Navami to honour the man who killed a Muslim labourer by setting him on fire in the name of 'love jihad' last year.
Summary:
The UK has banned a Canadian activist from entering the country for lifetime after she distributed "racist" flyers with messages like "Allah is a gay God" and "Allah is trans" in Luton earlier this year.
Summary:
The Bangladesh government claims that the genocide killed 30 lakh people.
Summary:
According to reports, Sonu Sood will be playing the villain in Ranveer Singh starrer 'Simmba'.
'Simmba' is scheduled to release on December 28.n
Summary:
Sylvester Stallone, while sharing a poster of Salman Khan starrer 'Race 3', wrote, "Okay, everybody let's try this again." "Good luck to the very talented Salman Khan on his upcoming new film Race 3!
Summary:
Adding that casting couch doesn't happen only in the film industry, Banerjee further said, "In hospitals, female nurses are harassed by male doctors.
Summary:
Australian cricket team coach Darren Lehmann is reportedly set to resign from his position following the ball-tampering incident that took place against South Africa in the third Test.
Summary:
Indian pacer Varun Aaron has been signed by English county side Leicestershire for the upcoming season.
Summary:
Former Indian opener Virender Sehwag said, "[India's] youngsters have a very good senior player like MS Dhoni who can teach and guide them on how to prepare themselves for the 2019 World Cup".
Summary:
Facebook on Monday said it's now prioritising local news in the News Feed globally to help users discover what is happening in their local area.
Summary:
The Garage is a platform for Microsoft employees to help them work together across technology to explore ideas and build prototypes, the company said.
Summary:
Air India CMD Pradeep Singh Kharola has issued an order asking pilots and crew members to refrain from unofficially upgrading the seats of their friends and relatives from economy to higher classes.
Summary:
There is a 30-foot-high dog-shaped guesthouse in Idaho, United States.
Summary:
Refuting Congress President Rahul Gandhi's claims that the NaMo app is illegally giving user data to third parties, BJP Spokesperson Sambit Patra said Rahul is "technologically illiterate".
Summary:
Cricketer Sachin Tendulkar-backed celebrity fashion startup Universal Sportsbiz has raised â¹30 crore in a funding round from Alteria Capital.
Summary:
The case was identified as 'coffin birth', following build-up of gas pressure within the decomposing body.
Summary:
Prenuptial agreement is a pre-marital contract specifying details of property division and guardianship rights in case of divorce.
Summary:
Summary:
CPI(M) on Monday served a notice for no-confidence motion against the NDA government in the Parliament.
Summary:
Biju Janata Dal's youth wing leader Jasobanta Parida was shot dead in Odisha's Dhenkanal by unidentified persons on Monday, police said.
Summary:
The father claims the infant underwent a botched platelet transfusion following a surgery to correct a birth defect.
Summary:
Police said the accused used to take the boy to his residence, where he assaulted him on several occasions and also threatened him with dire consequences if he informed anyone.
Summary:
China's Foreign Ministry on Monday said that the disputed area of Doklam belongs to it and India should "learn some lessons" from the last year's India-China military standoff which lasted for 73 days in Doklam.
Summary:
Police on Monday filed a case against West Bengal BJP chief Dilip Ghosh for wielding a bow and arrow at a Ram Navami rally in Kharagpur.
Summary:
Earlier, Russia and the UK expelled each other's 23 diplomats.
Summary:
A French waiter who was fired from a Canadian restaurant for being "aggressive, rude and disrespectful" has said that he was just being French.
Summary:
An Uber driver in the US drove the car down a staircase this week, after which the car got stuck and a tow truck had to be summoned to rescue it.
Summary:
A bride in Rajasthan rode a horse to mark the pre-wedding ritual of 'Bandori', which is usually observed by grooms.
Summary:
Actor Farhan Akhtar took to Twitter to announce that he has deleted his personal Facebook account.
Summary:
Steven Spielberg, who directed the 2011 film 'The Adventures of Tintin', has revealed that the sequel to the film is in the making, while saying, "Tintin is not dead." Spielberg added, "As it takes two years of animation work on the film...
Summary:
Upshaw, who played for The Grand Rapids Drive, collapsed with 40 seconds remaining in his side's home game against the Long Island Nets on Saturday.
Summary:
Reacting to Australia's ball-tampering controversy, Ravichandran Ashwin said, "If technology hadn't gone this far, we would not be talking about this so much." The 31-year-old added that what the Australian cricketers did "can happen in the heat of the moment".
Summary:
Reacting to a video of six-year-old Eli Mikal Khan from Pakistan imitating his bowling style, spin legend Shane Warne tweeted, "Absolutely fantastic, blown away on how good the ball comes out of your hand." He further advised the boy to "get the bowling arm a littler higher".
Summary:
Former Indian captain Sourav Ganguly slammed the Australian cricket team's "win at all costs" attitude and said stood-down Australian captain Steve Smith's plan to tamper the ball was "absolute stupidity".
Summary:
Microblogging site Twitter has banned advertisements promoting cryptocurrency and Initial Coin Offerings from the platform.
Summary:
Social media major Facebook is testing a feature which will automatically delete a Friend Request after 14 days if the user has seen but not accepted it.
Summary:
However, party supremo Mayawati said that BSP will continue to give tactical support to defeat BJP the way it did it in Gorakhpur and Phulpur.
Summary:
The US state of Arizona has suspended Uber's ability to test and operate its self-driving vehicles on public roads after one of its autonomous car killed a woman in the state.
Summary:
A UNESCO report has warned that worsening land degradation caused by human activities is undermining the well-being of 3.2 billion people, driving species' extinctions, and intensifying climate change.
Summary:
'Oumuamua, the first known interstellar object to visit the Solar System, very likely came from a binary star system, a Canada-based study has found.
Summary:
The Kerala Police has arrested the 36-year-old ambulance driver who left a patient upside down on a stretcher for several minutes, causing the injured man to die.
Summary:
The accused has claimed that he was trying to save a woman's life and had not looked at the side glass.
Summary:
US President Donald Trump's lawyer Michael Cohen has sent a 'cease and desist' letter to pornstar Stormy Daniels over her claims of being threatened by a man to remain silent about her alleged affair with Trump.
Summary:
Police in Pakistan have arrested 12 people for allegedly ordering a man to rape a girl in revenge for the rape of his sister.
Summary:
The market capitalisation of Facebook fell more than $100 billion over the last 10 days after the data scandal involving Cambridge Analytica was exposed.
Summary:
In 2008, Australian cricketers accused Harbhajan Singh of racially abusing Andrew Symonds, following which India threatened to boycott the tour.
Summary:
The film has been scheduled for a summer release this year.
Summary:
Television actor Karan Paranjape, known for his role as the male nurse Jignesh or Jiggy in the serial 'Dill Mill Gayye', has passed away.
Summary:
The fielding side rubs the ball to make it shiny on one side and leaves it rough on the other side to generate reverse-swing.
Summary:
A video showing a female Opposition councillor thrash a male colleague from the ruling Left Democratic Front (LDF) during a budget presentation at a municipal corporation in Kerala has surfaced online.
Summary:
CBSE officials have denied reports that the Class 12 Economics paper was leaked hours before the exam on Monday, urging students and parents not to panic.
Summary:
Months after PM Narendra Modi first came up with the idea, the central government will install 'Justice Clocks' at all 24 high courts soon with an aim to create public awareness in judicial matters, reports said.
Summary:
Vowing to retaliate against the expulsions of its diplomats by the US and several EU nations, the Russian Foreign Ministry on Monday called the move a "provocative gesture".
Summary:
North Korea has said that it was high time the US ended its "futile moves" of imposing sanctions against the country.
Summary:
Earlier this month, the UK expelled 23 Russian diplomats in the largest such expulsion in 30 years.
Summary:
Israel's 'Iron Dome' missile defence system was mistakenly activated on Sunday, firing around 10 anti-aircraft missiles after confusing machine gun fire with incoming projectiles.
Summary:
In his first known overseas trip since taking power in 2011, North Korean leader Kim Jong-un is currently on an unannounced visit to China, a report by Bloomberg has claimed.
Summary:
He further said India has been successful in adhering to inflation target.
Summary:
The growth in CEO salaries in India's top 500 companies has outpaced performance in the past five years, as per an analysis by proxy advisory firm IiAS.
Summary:
Kim Kardashian was trolled for allegedly photoshopping a picture, where a car in the background was squashed, as a user commented, "Thought that was a spaceship in the back." A comment read, "Just me or did anyone else see the squashed car in the back.
Summary:
As per reports, Pooja Hegde will star in the upcoming film 'Housefull 4'.
Pooja made her Bollywood debut opposite Hrithik Roshan in the 2016 film 'Mohenjo Daro'.
Summary:
The Hindi version of the superhero film Deadpool 2's trailer, which released on Monday, has references to Swachh Bharat Abhiyan and Bollywood films.
Summary:
I [hang out] with my guy friends also, which no one cares about," he added.
Summary:
Salman Khan's bodyguard Shera has revealed that he treats Salman's female fans with love and respect, adding, "That is the only way to take (care) of the ladies." He further said, "I always tell people that they will never see me standing...next to bhai.
Summary:
Talking about his character in the upcoming film 'Student Of The Year 2', Tiger Shroff has said, "I'm trying something else with ('SOTY 2')...I'm getting bullied and beaten up." Tiger called this a complete contrast from his other upcoming action film 'Baaghi 2'.
Summary:
Adding that she wants to meet Shami following his accident, Jahan said, "My fight's against what he has done to me.
Summary:
The company has invested â¹3,000 crore till 2017, Xiaomi's India MD Manu Jain said.
Summary:
Around 40 female students of Madhya Pradesh's Dr Hari Singh Gour University protested on Sunday, alleging they were strip-searched by their hostel warden after a used sanitary pad was found on hostel premises.
Summary:
Companies included in the list need special licences to do business in the US.
Summary:
Both the sides can negotiate a "completely unique" free trade agreement that would be favourable to African countries, he added.
Summary:
US President Donald Trump on Monday ordered the expulsion of 60 Russian diplomats claiming they were intelligence officers using diplomatic status as cover.
Summary:
Addressing a gathering in Karnataka, BJP President Amit Shah said CM Siddaramaiah is the only socialist leader who wears a â¹40-lakh watch.
In 2016, Siddaramaiah was slammed by opposition leaders for using a â¹70-lakh watch.
Summary:
After a French security expert alleged the 'NaMo' app was sharing user data with a third party without consent, Congress President Rahul Gandhi said PM Narendra Modi is "the Big Boss who likes to spy on Indians".
Summary:
In a dig at Prime Minister Narendra Modi, Congress President Rahul Gandhi on Sunday said that the country's only exports under PM Modi's government were Nirav Modi, Lalit Modi, and Vijay Mallya.
Summary:
Amid data-sharing allegations against the NaMo app, I&B Minister Smriti Irani on Monday said that even 'Chhota Bheem' knows that commonly-asked app permissions don't amount to snooping in an apparent reference to Congress President Rahul Gandhi.
Summary:
As the nine-day 'mahayagya' event to curb pollution by burning 50,000 kg of mango wood concluded on Monday, an estimated 20,150 kg carbon dioxide, 1,875 kg carbon monoxide and 100 kg particulate matter were released into the air.
Summary:
The Indian government plans to borrow â¹2.88 lakh crore between April-September in the upcoming fiscal, Economic Affairs Secretary SC Garg has said.
Summary:
Incoming US National Security Advisor John Bolton on Sunday said that North Korea is offering to negotiate with the country in order to buy time to develop its nuclear weapons.
Summary:
Clashes between Buddhists and Muslims had led to the imposition of emergency in Sri Lanka.
Summary:
A virtual court case was held in the UK for the first time with the claimant filing an appeal against fines imposed by the Customs Department.
Summary:
Billionaire Niranjan Hiranandani's family plans to invest around â¹3,500 crore to build Liquefied Natural Gas (LNG) terminals in West Bengal and Maharashtra.
Summary:
Rebounding from Friday's losses, India's benchmark index BSE Sensex surged 469.87 points to close at 33,066 on Monday while the Nifty 50 closed higher by 132.6 points at 10,130.
Summary:
The telecom industry is expected to create over 1 crore employment opportunities in the next five years, CEO of Telecom Sector Skill Council SP Kochhar has said.
Summary:
'Stranger Things' actress Millie Bobby Brown was spotted wearing a denim shirt, which had the names of the 17 victims of the mass shooting at Marjory Stoneman Douglas High School in Parkland, Florida embroidered on the back.
Summary:
Sharing a picture with his late mother Mona Shourie Kapoor on social media, Arjun Kapoor wrote, "I never...
Summary:
Summary:
Actress Kareena Kapoor Khan and 'Sonu Ke Titu Ki Sweety' actor Kartik Aaryan walked the ramp for designer Manish Malhotra's fashion show in Singapore.
Summary:
Actress Gal Gadot, while referring to actor Ryan Reynolds crossing his arms in an 'X' in the trailer of 'Deadpool 2', wrote on social media, "Dude stole my look." Gadot was referring to how her character strikes a similar pose in the film 'Wonder Woman'.
Summary:
Henriques added Smith did so to "deflect attention" from Cameron Bancroft, who tried to change the ball condition.
Summary:
A man has been arrested at the Delhi airport for allegedly trying to smuggle 125 gold coins worth nearly â¹29 lakh into the country, according to an official statement issued on Monday.
Summary:
After a man was killed and several policemen injured in clashes during Ram Navmi rallies in West Bengal, CM Mamata Banerjee said she had allowed peaceful processions and not killing in Lord Ram's name.
Summary:
Several labourers have alleged that AAP promised them free food and â¹350 to attend AAP chief Arvind Kejriwal's rally in Haryana's Hisar on Sunday.
Summary:
An estimated 15,000 protestors took to the streets in Tamil Nadu's Tuticorin on Saturday demanding the closure of the Sterlite Copper Smelter Plant.
Summary:
The director, who himself drove the car, said the school attendant who usually takes the boy to his classroom forgot that day.
Summary:
The Mumbai Police Twitter handle on Sunday tweeted an image of a puppy wearing a seatbelt, with the caption, "Seatbelt, a friend for keeps." Further, the text in the image read, "SEATBELTS: Best friend of a man's best friend too," with the hashtag 'FriendsForLife'.
Summary:
Talking about his future plans, Former US President Barack Obama has said that he would like to create "a million young Barack Obamas" to carry the baton of "human progress".
Summary:
The operations of Manipal, which is backed by TPG, would be combined with Fortis' business, reports added.
Summary:
Congress has reportedly deleted its official mobile phone application 'With INC' from Google Play Store after reports alleging routing of app data to Singapore servers surfaced on Monday.
Summary:
Summary:
Reportedly, Smith could be handed a lifetime ban by Cricket Australia.
Summary:
While India ranked 109th in mobile internet download speed, average download speeds rose to 9.01 Mbps in February from 8.80 Mbps last year.
Summary:
They also feature glass roofs, giving guests a chance to see the Northern Lights from inside the hotel rooms.
Summary:
Meteorologists said the phenomenon, which is believed to be the result of a mixture of sand, dust and pollen particles travelling from northern Africa, occurs once every five years.
Summary:
The business class coach will feature leg rests and staff rooms with refrigerators and hand towel warmers.
Summary:
BJP President Amit Shah has said that the party started preparing for the 2019 Lok Sabha elections the day after the Narendra Modi-led government took oath in May 2014.
Summary:
Vaithilingam informed the three BJP MLAs that he is "carefully scrutinising" the High Court order.
Summary:
Indian and Chinese companies on Saturday signed commercial deals linked to agriculture worth nearly $2.36 billion.
Summary:
'Baahubali' actor Rana Daggubati has lent his voice to the character Thanos for the Telugu version of the upcoming Marvel Studios film 'Avengers: Infinity War'.
Summary:
As per reports, Ranveer Singh will be paid â¹5 crore for a 15-minute performance at the 11th Edition of the Indian Premier League (IPL).
Summary:
Cameron Bancroft was caught rubbing the ball with a yellow tape before coach Darren Lehmann talked to the 12th man, who allegedly told Bancroft to hide it.
Summary:
Ex-South African pacer and commentator Fanie de Villiers instructed the cameramen to watch out for ball tampering after Australian bowlers got the ball to reverse swing even before the 30th over during the third South Africa Test.
Summary:
Pakistani legend Wasim Akram took to Twitter to share pictures of himself training six-year-old Hasan Akhtar, whose video of bowling repeatedly at a single stump rested on a wall had surfaced online.
Summary:
Ahmed, who was born on March 26, 1925, remained the only cricketer to be stumped on 99 for 37 years.
Summary:
WhatsApp has started testing payments through QR codes for selected users in its latest beta update.
Summary:
The remains of a monastery founded in 1385 by late King of England Richard II will open to the public for the first time in almost 80 years in 2020.
Summary:
nAll the flyers and crew members exited the plane via inflatable slides, and no one was hurt.
Summary:
The Ministry further revealed around 2.38 lakh companies shut shop in 2017.
Summary:
The court had put the stay on grounds that Ramaswamy's marriage to his first wife is still legally valid.
Summary:
Journalist Sandeep Sharma, who had been reporting on the sand mafia, died on Monday after he was hit by a dumper in Madhya Pradesh's Bhind.
Summary:
Two journalists died on Sunday allegedly after being run over by a speeding car belonging to a former village head in Bihar's Bhojpur.
Summary:
IPS officer D Roopa who exposed VIP treatment to jailed AIADMK leader Sasikala has refused to accept Namma Bengaluru Award in 'Government Official of the Year' category.
Summary:
Krishna called CM Naidu a "broker" over special status issue.
Summary:
In a tweet on Sunday, US President Donald Trump hinted that the military could be tasked with building a wall along the border with Mexico.
Summary:
Governor Andrey Vorobyov was trying to address the issues of the local residents who were protesting against a landfill dump in the town's vicinity.
Summary:
Earlier, the policy claimed personal data would remain confidential and information wouldn't be shared with third parties without consent.
Summary:
Although the Chipko Movement has its origins in the 18th century Rajasthan, it found momentum in the 1970s as a way to protect forests.
Summary:
Notably, the US firm is a subsidiary of a company that was barred from selling its assets by Indian tribunal.
Summary:
A video of Australian opener Cameron Bancroft, who was fined for ball-tampering against South Africa, allegedly putting sugar in his pocket before going to the field during January's Sydney Ashes Test has surfaced.
Summary:
Bruno Boban, a 25-year-old footballer who played for third-tier Croatian club Marsonia, collapsed on-field and passed away after being struck by the ball on his chest.
Summary:
India's 15-year-old shooter Anish Bhanwala won a gold medal at the ISSF Junior World Cup in the 25m rapid fire pistol event, which was India's third gold at the event.
Summary:
Last year, EU fined Google a record $2.97 billion for favouring its shopping service in search results.
Summary:
Elon Musk-led The Boring Company has revealed plans to build a route to travel 56 km between the US cities Washington DC and Baltimore in 15 minutes.
Summary:
The Supreme Court has agreed to hear petitions challenging the constitutional validity of polygamy and Nikah Halala among Muslims.
Summary:
The Goa Chief Minister's Office has issued a statement saying the messages of repentance circulating online were not written by ailing CM Manohar Parrikar.
Summary:
This year, 12.5 lakh tulip bulbs of 48 varieties were sown in the garden by the floriculture department, state Floriculture Minister Javaid Mustafa Mir said, adding that 20% bloom was recorded on Sunday.
Summary:
Banks remain closed only on second and fourth Saturdays of the month.
Summary:
Houthi rebels have been fighting the Saudi-backed Yemeni government in the country's civil war.
Summary:
The death toll from a fire at a shopping centre in Siberia's Kemerovo has risen to 64, with an estimated 16 people still missing, the Ministry of Emergency Situations said.
Summary:
A US man was sentenced to 60 years in prison for putting up his four-year-old daughter for prostitution online.
Summary:
A man in Uttar Pradesh was allegedly pronounced dead by mistake by the Revenue Department on Saturday.
Summary:
The cumulative outflows in the first 10 months of this financial year were $8.17 billion, the data further showed.
Summary:
The poster of the Salman Khan, Jacqueline Fernandez, Bobby Deol and Anil Kapoor starrer 'Race 3' has been unveiled.
Summary:
NBA star LeBron James jumped over two opponents for a single-handed slam dunk for his side Cleveland Cavaliers while facing Brooklyn Nets in their NBA match-up.
Summary:
Australian cricket board could hand Steve Smith and David Warner life bans following the ball-tampering scandal, as per reports.
Summary:
Reacting to the recent ball-tampering controversy, former Indian pacer Ashish Nehra said that Australian cricketers Steve Smith and Cameron Bancroft should get credit for admitting to their mistake.
Summary:
Responding to the reports that Facebook logged users' call and text history without permission, the company has clarified that the function "has always been opt-in only." When the feature is enabled, it allows Facebook to see when a call or text was sent or received, the company said.
Summary:
Hundreds of flyers reached the wrong terminal after IndiGo and SpiceJet partially shifted their operations to Delhi airport's Terminal 2 on Sunday.
Summary:
He also hit out at Congress and BJP for the state-run schools' condition, saying, "I completed my studies here.
Summary:
Google spinoff Waymo's CEO John Krafcik has said the company's technology would have safely handled the accident by an Uber self-driving car which killed a pedestrian.
Summary:
Anna Hazare, who has been on an indefinite hunger strike in Delhi, has reportedly lost 3.5 kg as of Sunday after three days of fasting.
Summary:
A road accident victim died after an ambulance driver allegedly left him almost upside down outside a hospital for several minutes in Kerala's Palakkad.
Summary:
Other than basic Facebook data, the file includes user's phone's call logs, messages, and contacts.
Summary:
Pornstar Stormy Daniels has said she was threatened to keep silent about her alleged affair with Donald Trump in 2006.
Summary:
Over 500 new words were introduced into the English language in 1918, when the First World War ended.
Summary:
The scientists believe the movement is caused by an underlying platform of weak, pliable sediments, and can lead to "devastating consequences" like landslides.
Summary:
Users can buy or try a car through the Alibaba's Tmall app and have the option of taking it on a three-day test ride.
Summary:
After Congress President Rahul Gandhi claimed PM Narendra Modi's official app was sharing data without users' consent, the BJP has now alleged that Congress' app shares data with foreign firms.
Summary:
The launch probably caused a 1-metre error in GPS navigation programmes, researchers said.
Summary:
In exchange, Uber will get a 27.5% stake in Grab and the company's CEO Dara Khosrowshahi will join Grab's board.
Summary:
The brother and family of BSP MLA Anil Singh, who cross-voted in favour of the BJP in the Rajya Sabha polls, were allegedly thrashed by car-borne miscreants at gunpoint in Uttar Pradesh's Unnao.
Summary:
A consumer court has directed a Delhi hospital to give a â¹30-lakh compensation to a couple who complained against it in 2007.
Summary:
We will make sure that the vehicle owner clears all his challans soon," Inspector DV Ranga Reddy said.
Summary:
As a part of the process, a â¹432-crore project aiming to lay down 16 sq km of underground lines was started in December 2015.
Summary:
A truck driver in Madhya Pradesh drove a burning petrol tanker away from a petrol pump on Sunday in an attempt to save lives.
Summary:
The couple went missing together when their families did not agree to their marriage, following which the families registered a complaint with the police.
Summary:
Pet owners attended the screening with their dogs, who were given blankets and special snacks.
Summary:
Actress Katrina Kaif has said that she never has a back-up plan as she believes that having a "plan B is like accepting failure".
Summary:
Lupita Nyong'o, who played the role of warrior Nakia in the superhero film 'Black Panther', has said that she would love to get spin off for her character.
Summary:
Swiss world number one Roger Federer, for the second year in a row, has decided to skip the clay court season including the French Open.
Summary:
Australia's stand-in captain Tim Paine apologised for the 'horrible 24 hours' that Australia suffered after they lost all 10 wickets during the evening session to go down 1-2 in the Test series.
Summary:
Summary:
It allows users to book tickets for public transportation services and provides real-time traffic information.
Summary:
US-based tunnelling startup The Boring Company's CEO Elon Musk has announced that the company will sell "lifesize lego-like interlocking bricks made from tunneling rock." Musk also highlighted that the bricks could be used to create sculptures and buildings.
Summary:
A Chinese military helicopter on Monday crossed the Line of Actual Control (LAC) and violated Indian airspace in UttarakhandâÂÂs Bara Hoti, reports said.
Summary:
BJP MLA from Madhya Pradesh Pannalal Shakya on Sunday said that people should not have boyfriends or girlfriends in order to curb molestation.
Summary:
The Google Doodle on Monday celebrated the 45th anniversary of the Chipko movement, showing four women protecting a tree by forming a human chain around it.
Summary:
The farmers have claimed that they are not being paid the remunerative prices for their crops and adequate compensation for their land.
Summary:
A parliamentary panel has said that doctors trained at Armed Forces Medical College (AFMC) should pay a â¹2-crore exit bond for leaving the military after post-graduation and â¹1 crore for leaving after under-graduation.
Summary:
Although Android changed this later, Facebook continued to access the logs using older permissions.
Summary:
A GB Pant Government Engineering College professor was hospitalised after being on indefinite hunger strike for 17 days over an admissions ban.
Summary:
At least 37 people have died in a fire which broke out on Sunday at a mall in Siberia's Kemerovo, according to reports.
Summary:
Ex-Indian captain Rahul Dravid was fined for rubbing a cough lozenge on the ball during an ODI against Zimbabwe in 2004.
Summary:
Billionaire Elon Musk's estranged father Errol has admitted that he has a 10-month-old son with his stepdaughter Jana Bezuidenhout, who is 42 years younger.
Summary:
Of the 1,302 projects worth â¹150 crore and above, 287 reported time escalation.
Summary:
Stating that universities should be places where people can debate ideas, former RBI Governor Raghuram Rajan has said one cannot shout down the other side and call them anti-national.
Summary:
One of the accused used to be the victim's friend and had called her on the pretext of sorting out some issues, police said.
Summary:
A local Pakistani news channel claims to have hired the country's first-ever transgender news anchor.
Summary:
Pakistan PM Shahid Khaqan Abbasi has said that there is no possibility of any judicial coup or martial law in the country.
Summary:
Actress Raashi Khanna, known for her work in the Telugu film industry, has addressed rumours of her dating cricketer Jasprit Bumrah and said, "I know that Bumrah is an Indian cricketer, that's it." She further said, "There is nothing beyond that.
Summary:
Pakistani actress Mahira Khan said Bollywood was never really her aim as her focus was always working in Pakistan.
Summary:
They included over 350 previously unseen photos of the band.
Summary:
R Madhavan, who was reportedly supposed to star as the villain in the Ranveer Singh starrer 'Simmba', has said that he wouldn't be able to be a part of the film because of his shoulder injury.
Summary:
During an NHL match, Carolina Hurricanes conceded a goal after goalkeeper Cam Ward planted his right leg into the goal without knowing the puck was inside his skate.
Summary:
Liverpool Legends and Bayern Munich Legends played out a 5-5 draw in a charity match at Anfield on Saturday.
Summary:
The match was marred by the ball-tampering incident which resulted in Australia's Steve Smith getting banned for one Test.
Summary:
"Wow @ICC wow...No ban for Bancroft...whereas 6 of us were banned for excessive appealing in South Africa 2001 without any evidence and Remember Sydney 2008?
Summary:
Wishing speedy recovery to Indian pacer Mohammad Shami after he got injured in a road accident on Sunday, Rohit Sharma tweeted, "This lad has gone through a lot in recent times.
Summary:
Indian tennis player Rohan Bopanna took to Instagram to share a picture of a roadside eatery named 'Roger Federer Bhatura's & Sweets' with the caption, "The secret food for a long successful career...#rogerfederer #truefan #agenobar." Notably, Federer became the oldest number one men's singles player last month.
Summary:
As the Delhi High Court granted him bail after 23 days in jail in the INX Media case, former Finance Minister P Chidambaram's son Karti on Saturday tweeted, "Vanakam, Hello, Hola, Howdy folks.
Summary:
Describing an instance wherein he got to know that "many" people buy coffee worth â¹180, the Congress leader asked users if he was "outdated".
Summary:
All medical establishments like hospitals and nursing homes will have to phase out gloves and chlorinated plastic bags, excluding blood bags, by March 27 next year, as per the amended bio-medical waste management rules.
Summary:
The journalist had said, "I was clicking photographs of a student being dragged when police targeted me."
Summary:
Addressing an Artificial Intelligence (AI) conference, Railway Minister Piyush Goyal said that AI is about "creating trains with brains".
Summary:
A Pakistan court has acquitted 20 people who were accused of being part of a lynch mob that burnt alive a Christian couple in 2014.
Summary:
Russia's Pavel Grudinin, who contested the country's recently-concluded Presidential election, shaved his moustache after losing a bet over the share of votes he would secure in the polls.
Summary:
Australia's Steve Smith has been banned for one Test match and fined 100% of his match fee after he admitted to ball-tampering in the ongoing third Test against South Africa.
Summary:
Assembly Secretary Bamdeb Majumder said they will attempt to play the anthem on a daily basis in the Assembly.
Summary:
Pakistan has deployed more troops along the Line of Control in J&K amid continuing tensions and cross-border firing, reports quoting Indian Army officials said.
Summary:
Union minister KJ Alphons on Sunday said Indians have no problem giving their biometrics and getting naked before a white man but call it an intrusion of privacy when their own government asks for data for Aadhaar.
Summary:
A Kerala court has sentenced a 30-year-old woman to 7-year imprisonment in the first conviction in an ISIS recruitment case.
Summary:
Former Catalan President Carles Puigdemont was detained by German police on Sunday as he attempted to enter the country through Denmark.
Summary:
Egypt has launched a hotline on WhatsApp for citizens to report fake news.
Summary:
Sweden will offer a compensation of over â¹17 lakh each to transgenders who underwent forced sterilisation before changing their sex.
Summary:
Notably, the government had announced a hike in import duty on fully-built TV panels to 15% in the Union Budget 2018.
Summary:
The investment will primarily go into strengthening the mobile network and upgrading broadband infrastructure, among others.
Summary:
Former NITI Aayog Vice Chairman Arvind Panagariya has said political parties serious about forming a government in 2019 should include bank privatisation proposal in their manifestos.
Summary:
Summary:
Filmmaker Shoojit Sircar has said he is ready to sell his home and pay producers to release his directorial 'Shoebite', while adding he would do it for lead actor Amitabh Bachchan, his crew and technicians.
Summary:
Their upcoming project is said to be a cricket comedy digital show, which will be produced by Preeti and Neeti Simoes' production house Lil Frodo Productions.
Summary:
Bhushan Kumar has announced that Akshay Kumar is no longer the lead actor in 'Mogul', a biopic on Bhushan's father and founder of T-Series Gulshan Kumar, while adding, "He (new lead actor) could be bigger than Akshay." Bhushan added, "My father's biopic is very close to me.
Summary:
Punjab National Bank plans to take part in the bankruptcy proceedings of jeweller Nirav Modi's US company Firestar Diamond Inc, according to reports.
Summary:
Notably, cricketer Smith admitted to ball-tampering in the third South Africa Test and was removed as captain for the ongoing Test.
Summary:
She was escorted off the plane in Greece, along with three fellow passengers, before the flight continued towards its destination.
Summary:
A family court in Tamil Nadu has stayed Rajya Sabha MP and expelled AIADMK leader Sasikala Pushpa's wedding to Dr B Ramaswamy on grounds that his marriage to his first wife is still valid.
Summary:
The hospital's Chief Medical Officer, BS Sodhi, has denied the allegations.
Summary:
Afterwards, the girl fell into depression and spoke about the abuse during a counselling session.
Summary:
Seven Naxals were arrested on Sunday in a joint operation carried out by the district police, District Reserve Group, Special Task Force, CRPF and its anti-Naxal unit CoBRA.
Summary:
France on Saturday honoured the police officer who swapped himself with a hostage during an attack on a supermarket but later succumbed to his injuries.
Summary:
A half-finished TV tower in the Russian city of Yekaterinburg, reportedly the world's tallest abandoned structure, was demolished on Saturday.
Summary:
The government has set a disinvestment target of â¹80,000 crore in 2018-19 while it has initiated strategic disinvestment of 24 state-owned firms.
Summary:
Niket Shah used Spark Trading Group to allegedly defraud over 15 investors including friends and co-workers into contributing money to his funds.
Summary:
The Commerce Ministry's investigation arm has ended its investigation into the dumping of solar cells in India by companies in China, Taiwan, and Malaysia.
Summary:
Talking about his film 'Shoebite' which hasn't been released, Amitabh Bachchan tweeted, "PLEASE UTV & Disney, or whoever else has it...JUST RELEASE THIS FILM...lot of hard labour been put in...don't KILL creativity!" Its release was reportedly stalled over legal dispute between production houses.
Summary:
Afghan spinner Rashid Khan has become the fastest-ever bowler to reach 100 wickets in ODI cricket, achieving the feat in his 44th ODI in the ICC World Cup Qualifier final against Windies on Sunday.
Summary:
Facebook CEO Mark Zuckerberg has apologised with full-page advertisements in British newspapers over the company's recent data scandal involving millions of users' personal information.
Summary:
The 5-foot-10-inch tall robot will communicate with people in English and will be able to rotate its head by 28 degrees.
Summary:
Congress President Rahul Gandhi on Sunday took a dig at PM Narendra Modi, claiming that his official app illegally gave the app users' data to American companies.
When you sign up for my official App, I give all your data to my friends in American companies," he tweeted.
Summary:
Former RBI Governor Raghuram Rajan has said that startups need Indian capital or else they will go and "incorporate in Singapore because they need risk financing which is not available in this country." Adding that he was not advocating restrictions on foreign funding, he said, "We have to make sure that more of our companies...
Summary:
The Sardar Vallabhbhai Patel International Airport in Ahmedabad has received the award for 'Most Improved Airport' in the Asia-Pacific region by the Airports Council International (ACI).
Summary:
The Telangana Assembly on Saturday passed a bill making the teaching of Telugu language in schools compulsory.
Summary:
Out of the 229 sitting Rajya Sabha MPs, 88% (201) MPs are crorepatis, an Association for Democratic Reforms (ADR) report has revealed.
Summary:
An online British retailer is selling ã39.99 (around â¹3,600) vegan custom lollipops that are meant to resemble customers' faces.
Summary:
An Indian-origin woman named Ranjeeta Dutt McGroarty recently bought the world's most expensive shot of cognac for ã10,014 (over â¹9 lakh) at a bar in London.
Summary:
US' Saguaro National Park is putting microchips in some of its Saguaros, a variety of cactus capable of growing over 40 feet tall and living for more than 200 years.
Summary:
He further said that India needs to generate better jobs as the job numbers are not very good.
Summary:
Indiabulls Real Estate has executed an agreement with private equity giant Blackstone Group to sell 50% stake in its prime commercial properties in Mumbai for â¹4,750 crore.
Summary:
Bishal Sharma, a 12-year-old from Assam, has won the dance reality show 'Super Dancer Chapter 2'.
Summary:
Actor Michael Caine has said that though he loved filmmaker Woody Allen once and thought he was a great guy but he is stunned after the child abuse allegations against him.
Summary:
Anil Kapoor's look from the upcoming film 'Race 3' has been unveiled.
Summary:
Ferrari's German driver Sebastian Vettel won the F1 season's opening Grand Prix and overall his third Australian Grand Prix title in Melbourne on Sunday.
Summary:
Indian women's cricket team posted 198/4, which briefly was the second highest score in women's T20I cricket as England later chased it down by scoring 199/3, the new second highest total.
Summary:
World number two female tennis player Caroline Wozniacki has said she and her family members were abused by spectators during her second-round loss at the Miami Open on Friday.
Summary:
Chennai-based startup Roanuz Software has developed an artificial intelligence-powered chatbot which it claims can answer any query related to cricket.
Summary:
Swedish startup Flyte has developed a wireless light bulb which can hover 15-17 mm in the air through magnetic levitation.
Summary:
The world's largest cruise ship, which is 1,188 feet long and weighs 228,000 tonnes, has been delivered to cruise line Royal Caribbean ahead of its maiden voyage.
Summary:
The US carmaker planned to shut down the plant by May and almost 2,500 workers have applied for voluntary redundancy package.
Summary:
The Mumbai Police has arrested a 35-year-old junior professor for allegedly demanding a kiss from a 17-year-old female student in exchange for good marks in a college test.
Summary:
A civic official said that the plastic tank burst because of overflowing water and high pressure.
Summary:
The Prime Minister's Office recently called up a district officer in Uttar Pradesh to appreciate the efforts of a Kanpur doctor who has been providing free treatment to patients for the past month.
Summary:
Smith, who had earlier stated that he would not step down, will be replaced by Tim Paine for the Test.
Summary:
Indian cricketer Mohammed Shami was injured in a road accident after his car collided with a truck while traveling from Dehradun to Delhi.
Summary:
Mike Hughes, a 61-year-old man who claims to be a self-taught rocket scientist, launched himself about 570 metres into the air on his homemade rocket on Saturday.
Summary:
Trailing by over 100 runs while grabbing only one wicket against South Africa, Australia's "leadership group" including captain Steve Smith decided to tamper with the ball to facilitate reverse swing.
Summary:
Following Steve Smith's admission of involvement in the ball tampering incident in the third South Africa Test, the Australian government has called for an immediate sacking of Steve Smith as the captain.
Summary:
An iOS bug lets Apple's voice assistant Siri read aloud notifications even when the iPhone is locked and notifications are set to hidden.
Summary:
It also revealed that the company is likely to track users even after they delete their accounts.
Summary:
It was also revealed that Facebook tracks nearly 30% of global website traffic.
Summary:
The first regularly scheduled non-stop flight between Australia and the United Kingdom has landed in London after a journey of over 17 hours.
Summary:
A day after deleting SpaceX and Tesla Facebook pages, the startups' CEO Elon Musk said, "It's not a political statement and I didn't do this because someone dared me to do it." "Just don't like Facebook.
Summary:
The lights in the CM's residence were dimmed between 8:30 pm and 9:30 pm to observe the Hour.
Summary:
A 17-year-old American teenager accidentally put her car into drive instead of reverse during her driving test, following which the vehicle crashed into the examination centre.
Summary:
Music composer-singer Amit Trivedi has said that for musicians, royalties on their music work like pension.
"It's like a sense of security that every musician must have.
Summary:
After Steve Smith admitted to ball tampering during the third Test against South Africa, former Australian captain Michael Clarke said he would think about returning as the captain if asked by the "right people".
Summary:
Speaking of being chosen to tamper the ball against South Africa, Australian opener Cameron Bancroft said, "I was in the wrong place at the wrong time", but denied that he was pressured into doing it.
Summary:
Advani, who registered his 11th title at the Asian level, was the defending champion at the event.
Summary:
Smriti Mandhana broke her own record of scoring the fastest fifty by an Indian in women's T20I cricket after registering a 25-ball fifty against England on Sunday.
Summary:
Apple is reportedly expected to begin trial production of its new series of iPhone models in the second quarter of 2018.
Summary:
A Portuguese airline has apologised for delaying over 100 passengers by three days after a flight in Germany was cancelled at the last minute because of a drunken co-pilot.
Summary:
Founded in 2016, the startup has recycled over four tons of cigarette waste so far.
Summary:
Bengaluru-based startup Slang Labs, which offers a multilingual voice-based assistant platform for apps, has raised over â¹8 crore in a funding round from Endiya Partners.
Summary:
Indian Space Research Organisation (ISRO) has said the launch of India's second lunar mission 'Chandrayaan-2' has been postponed to October.
Summary:
Only one woman was fined for drink driving in Delhi in the last five years, traffic police data has revealed.
Summary:
Prime Minister Narendra Modi on Sunday said that when most discussions were centred around the World War II, Dr BR Ambedkar talked of unity and the spirit of team India.
Summary:
The South Delhi Municipal Corporation on Friday approved a proposal to impose a â¹500-fine on people for not cleaning their dogs' excreta from public places, including roads and parks.
Summary:
Police have arrested a man for allegedly raping his two minor daughters over the last six months in Gurugram.
Summary:
Talking about cross-border terrorism and infiltration, BJP President Amit Shah on Saturday said the only solution to the issue is to answer every Pakistani bullet with a bomb.
Summary:
Australian captain Steve Smith and opener Cameron Bancroft have admitted to ball-tampering during the third Test against South Africa on Saturday.
Bancroft has been charged with altering the condition of the ball after he was caught on camera rubbing the ball with a yellow tape.
Summary:
India's richest person and Reliance Industries Chairman Mukesh Ambani's eldest son Akash got engaged to diamond heiress Shloka Mehta on Saturday in Goa. Shloka is the youngest daughter of Russell Mehta, the Managing Director of diamond jewellery company Rosy Blue India.
Summary:
Baked at a German restaurant, the pizza featured 288.6 grams of cheese in total but only 2.6 grams of each variety.
Summary:
Australian opener Cameron Bancroft was summoned by on-field umpires during the third South Africa Test after he hid a small, yellow object in his pocket after shining the ball.
Summary:
BSP chief Mayawati has suspended MLA Anil Singh for cross-voting for the BJP in the recently-concluded Rajya Sabha elections.
Summary:
Accusing PM Narendra Modi of lying to the masses, Congress President Rahul Gandhi said, "Wherever Modi Ji goes, he keeps lying.
He keeps a book with him and turns pages to pick those lies.
Summary:
The Intelligence Bureau has transferred around 500 officers to different states as part of a routine exercise, officials said.
Summary:
The Commander of US forces in Afghanistan, General John Nicholson, has said that Russia is supplying arms to the Taliban militant group by smuggling them across the Afghanistan-Tajikistan border.
Summary:
The nerve agent used to allegedly poison former Russian spy Sergei Skripal has been used previously to murder a Russian banker in the 1990s, a former Soviet scientist who developed the nerve agent has claimed.
Summary:
Summary:
Talking about parenting, Juhi Chawla said, "Stop the overparenting please, let the kids be.
Summary:
Director Rohit Shetty is said to have approached actor Abhishek Bachchan for the role first.
Summary:
The head of the Cannes Film Festival Thierry Frémaux has said that he is banning selfies on the red carpet of the festival.
Summary:
Kapil Sharma has refuted rumours of Tiger Shroff being part of the second episode of Kapil Sharma's new show 'Family Time With Kapil Sharma'.
Summary:
The government has said that the Enforcement Directorate is analysing 120 shell companies in connection with $2.1-billion PNB fraud allegedly committed by jewellers Nirav Modi and Mehul Choksi.
Summary:
Summary:
Reacting to Australia admitting to ball-tampering in the third South Africa Test, ex-Australia captain Michael Clarke tweeted, "WHAT THE........HAVE I JUST WOKEN UP TO.
Summary:
Summary:
Indian batsman Dinesh Karthik's wife Dipika Pallikal did not witness her husband's last-ball match and T20I series winning six against Bangladesh in the Nidahas Trophy final.
Summary:
Talking about the recent data controversy at Facebook, Apple CEO Tim Cook has said, "The ability of anyone to know...
Summary:
A Jet Airways flight attendant is being praised online for saving the life of a passenger who suffered a cardiac arrest on a recent Bengaluru-Delhi flight.
Jet Airways said the flight attendant took the details and medical history of the patient and gave him medication and oxygen.
Summary:
Two Jet Airways pilots have been asked to resign after they failed the pre-flight breath analyser test twice.
Summary:
Thousands of people in the US and across the world took part in the March for Our Lives rallies on Saturday to demand an end to gun violence by implementing stricter gun controls.
Summary:
The Syrian Army and Russia have agreed to a ceasefire deal with the rebels in Syria's eastern Ghouta after the coalition began an offensive to liberate the region from rebels last month.
Summary:
Tata Power on Friday appointed Praveer Sinha as the firm's new CEO and MD with effect from May 1.
Summary:
Japan's Financial Services Agency has issued a warning to one of world's largest cryptocurrency exchanges, Binance, for operating without registration in the country.
Summary:
The government has set the minimum net worth criteria for those bidding for Air India at â¹5,000 crore, according to reports.
Summary:
Summary:
A 12-year-old Class 5 girl was allegedly gangraped and set on fire by three youths in Assam's Nagaon district on Friday when she was alone at home.
Summary:
Oracle Founder Larry Ellison's fortune plunged by $7 billion, while world's third richest person Warren Buffet lost $6.1 billion.
Summary:
Assange added that he never made a Facebook account over privacy concerns.
Summary:
The UIDAI on Saturday denied media reports which claimed that anyone can access personal details of all Aadhaar holders due to an unsecured interface operated by a state-owned utility company for verifying customers' identities.
Summary:
The accused managed to flee the spot despite police deployment outside the school.
Summary:
China has sold an advanced missile-tracking system to Pakistan that would help the country to develop multi-warheads, according to reports.
Summary:
A school district in Pennsylvania, US has armed its students and teachers with rocks to defend themselves in case of a school shooting.
Summary:
Hong Kong will pay 2.8 million citizens a cash handout of up to HK$4,000 (over â¹33,000) amid reports of a â¹1-lakh crore surplus in its annual budget.
Summary:
The firm's shares have crashed nearly 85% since PNB accused Choksi and Nirav Modi of defrauding the bank of over â¹13,900 crore.
Summary:
Singer Arijit Singh has said that performing live is like inviting people over for a house party where he can sing his heart out while people around are joining it.
Summary:
According to reports, Vidya Balan will make her Telugu debut in Nandamuri Balakrishna's biopic on his father, late actor and former Andhra Pradesh CM Nandamuri Taraka Rama Rao (NTR).
Summary:
Deepika Padukone, while talking about how she felt opening up about depression, said, "I suddenly felt that I wasn't hiding anything from anybody whether it was my parents, my sister, people at work and my counsellors." She added that how speaking about depression made it easier.
Summary:
Summary:
Speaking about his co-star from 1995 film 'Veergati' Pooja Dadwal, who's suffering from tuberculosis, Salman Khan said, "We're trying to help as much as we can." He added, "I think Helen Aunty was already onto it and took care of it.
Summary:
Slamming journalist Francois Gautier, lyricist Javed Akhtar tweeted, "Are they paying you well to spread negativity against the most ambitious film project of India Mahabharata planned by Mr Mukesh Ambani and Aamir Khan?" Javed further asked Gautier to reveal his deal with some top PR agencies in India.
Summary:
A Florida-based boy clapped 1,080 times in 60 seconds to set the world record for the most claps in a minute, Guinness World Records has confirmed.
Summary:
State Bank of India has filed a complaint with CBI over a â¹250 crore loan fraud by Chennai-based jewellery chain Nathella Sampath Jewellery.
Summary:
Sprint legend Usain Bolt scored with a header while training with top German football club Borussia Dortmund on Friday.
Summary:
Google further said that by 2020, YouTube will have 500 million users in India.
Summary:
Self-proclaimed godwoman Radhe Maa on Saturday visited the Golden Temple in Amritsar and donated crockery worth â¹20 lakh there.
Summary:
"I was clicking photographs of a student being dragged when police targeted me," the photojournalist alleged.
Summary:
A seven-year-old cancer patient was allowed to serve as an inspector for a day at a Mumbai police station in an initiative by Make-A-Wish India.
Summary:
North Korea and South Korea will hold high-level talks on March 29 to discuss the dates and agenda for the summit between the two countries' leaders Kim Jong-un and Moon Jae-in in April.
Summary:
Rajya Sabha Chairman Venkaiah Naidu has urged the government to consult the Opposition to end the three-week logjam in the House.
Summary:
"I would like to tell BJP and company that their malpractices will not succeed in breaking the ties between SP and BSP," she said.
Summary:
Aam Aadmi Party and Shiromani Akali Dal on Saturday walked out of the Punjab Assembly while state Finance Minister Manpreet Singh Badal was presenting the â¹1,29,698-crore budget for 2018-19.
Summary:
As per the message, if the term 'BFF' turned green, the account was safe, but if it remained black, the account was hacked.
Summary:
Indian Test team's wicketkeeper Wriddhiman Saha smashed 102* runs off 20 balls in a 20-over club match on Saturday.
Summary:
Announcing that he lost the match to Flake, Booker tweeted, "I'm buying pizza for his office...I neglected to tell him though...I'm sending a vegan pizza."
Summary:
The Enforcement Directorate has so far seized and attached assets worth â¹7,664 crore in connection with the $2.1-billion PNB fraud by jewellers Nirav Modi and Mehul Choksi.
Summary:
Indian captain Virat Kohli, who averages 13.4 in five Tests he has played in England, will make his county cricket debut ahead of the team's tour to England in July.
Summary:
India's Rio Olympics silver medalist shuttler PV Sindhu is set to be the Indian contingent's flag-bearer at the opening ceremony of the 2018 Commonwealth Games in Australia.
Summary:
After former Bihar CM Lalu Prasad Yadav was convicted in the fourth fodder scam case on Saturday, his son Tejashwi claimed that his father's life was under threat.
Summary:
The lawyer representing pornstar Stormy Daniels, who claimed she had a sexual affair with US President Donald Trump in 2006, has tweed a picture of a CD.
Summary:
On March 30, the computers will be shut down by 8 pm and then by 7:30 pm on the second and fourth Friday in April.
Summary:
Ghana's Parliament on Friday voted to grant unimpeded access to the US to deploy troops and military equipment in the country under the Ghana-US Military Cooperation agreement.
Summary:
The new season of the series will feature the same cast of Anang Desai, Supriya Pathak, Vandana Pathak, Rajeev Mehta and JD Majethia.
It will also feature cameos by Renuka Shahane, Ratna Pathak Shah and Deepshikha Nagpal.
Summary:
Disha Patani, while responding to reports that she has replaced Shruti Haasan in the film 'Sanghamitra', said, "I'm no one to replace her." "She's much bigger and much experienced than me...I'm not anyone to replace anyone," she added.
Summary:
Summary:
Actor Pankaj Tripathi has said that he had signed the film 'Kaala' just to meet and talk to Rajinikanth.
Talking about his first shoot with Rajinikanth, he said, "For 10-15 minutes I was just looking at him."
Summary:
As per reports, Aamir Khan is in talks with 'Baahubali' maker SS Rajamouli to direct his upcoming project on Hindu epic Mahabharata.
Summary:
Indian batsman Shikhar Dhawan has said that his performance on the tour of South Africa helped him earn an A+ contract by the BCCI.
Summary:
Mohammad Shami's wife Hasin Jahan has said she is "amused" by the fact that the BCCI did not consider the cricketer's "character and public image" before clearing him of corruption charges.
Summary:
Barcelona defender Gerard Pique has revealed he started a WhatsApp group named 'CONGRATULATIONS', comprising Spanish national team players who play for Barcelona and Real Madrid, wherein they talk "s**t to each other".
Summary:
Cricketer Yuvraj Singh, who was bought by Kings XI Punjab, apologised to KL Rahul for getting a haircut ahead of IPL 2018.
Summary:
Reacting to Australian coach Darren Lehmann calling the behaviour of the crowd in the Cape Town Test "disgraceful", ex-South African captain Graeme Smith said he has never seen an Australian team "whinge and whine like this".
Summary:
Facebook user Lauren Price has filed a lawsuit claiming she was targeted with political advertisements during 2016 Presidential election.
Summary:
Stating that the BJP-led NDA has an absolute majority in the Lok Sabha, BJP President Amit Shah challenged the Opposition to introduce a no-confidence motion against the government.
Summary:
Accusing Shah of spreading lies, Naidu said the Centre was responsible for the unscientific bifurcation of Andhra Pradesh and Telangana.
Summary:
After a student requested Congress President Rahul Gandhi to get a selfie clicked with her, the leader got off the stage and posed for the selfie with her.
Summary:
Spanning around 80 submersible dives up to a depth of 1,000 feet, American researchers have observed 4,500 fish representing 71 species in the Carribean island of Curaçao.
Summary:
Spain and UK-based astronomers have found that the gravitational effects of a star that came within 0.6 light-years to our solar system 70,000 years ago continue to exist.
Summary:
Bihar Health Minister Mangal Pandey on Friday informed the state assembly that there is one doctor for every 17,685 people in Bihar, as against national average of 1 doctor for every 11,097 people.
Summary:
The lawyer of the businessman accused of raping a veteran Bollywood actress, has denied the charges against the man, claiming the two are married.
Summary:
Vadodara City Police recently shared a traffic advisory poster on Twitter inspired by Malayalam actor Priya Prakash Varrier's wink.
Summary:
The ED has till now attached properties worth â¹7,664 crore linked to Nirav Modi and Mehul Choksi.
Summary:
This comes after CBI registered a case on the basis of a complaint from Union Bank, which had given a loan of â¹313 crore.
Summary:
The CBI has booked a former General Manager of IDBI Bank, Battu Rama Rao, and 30 others for allegedly cheating the bank of â¹445 crore.
Summary:
US-based Tufts University researchers have developed tooth-mounted sensors which can wirelessly communicate and transmit information on glucose, salt and alcohol intake.
Summary:
Technology giant Apple is working on a foldable iPhone that might also double up as a tablet for launch in 2020, according to an analyst at Bank of America Merrill Lynch.
Summary:
The list of questions include whether the company has engaged in any assignment to utilise data of Indians from the breach.
Summary:
British airline easyJet has suspended two pilots after a video showing them using Snapchat in the cockpit during a flight emerged.
Summary:
Apart from that, BJP won nine seats from Uttar Pradesh, while remaining one seat went to Samajwadi Party.
In West Bengal, TMC won four seats and Congress won one.
Summary:
The worldwide event encourages individuals to turn off non-essential lights for one hour as a symbol of their commitment to the planet.
Summary:
For instance, the heading of a passage has been changed from 'Anti-Muslim riots in Gujarat' to 'Gujarat riots'.
Summary:
A student in Madhya Pradesh has been expelled for a year after she called her college staff 'anti-national' in a Facebook post allegedly after they denied her permission to hold a programme on Bhagat Singh.
Summary:
Amid the Versova beach cleanup drive, olive ridley turtles have hatched for the first time in two decades in Mumbai.
Summary:
The US on Friday officially filed a complaint at the World Trade Organization (WTO) against China, accusing it of discriminating American companies over technology licensing practices.
Summary:
The council treats "Israel worse than North Korea, Iran, and Syria", Haley further alleged.
Summary:
Biden had last week said he would "beat the hell" out of Trump "if they were in high school" over Trump's comments about women.
Summary:
Actress Deepika Padukone has said the controversy around her film 'Padmaavat' made her stronger.
Deepika further said, "Irresponsible behaviour of someone else cannot drive me into depression."
Summary:
A new poster of Amitabh Bachchan and Rishi Kapoor starrer '102 Not Out' has been released.
Summary:
Disha Patani has said it was easier to romance Tiger Shroff onscreen in 'Baaghi 2', as compared to romancing Sushant Singh Rajput in 'MS Dhoni: The Untold Story'.
I had to romance him and I didn't even know him.
Summary:
The Athletics Federation of India (AFI) has threatened to withdraw its team from the Commonwealth Games 2018 if the entries of three athletes are not accepted by the event's organisers.
Summary:
After the BSP did not win any seat in the Rajya Sabha elections on Friday, Uttar Pradesh Deputy CM Keshav Prasad Maurya advised BSP chief Mayawati to seriously introspect the reason behind her defeat.
Summary:
Ankur Jain, the CEO of Delhi-based craft beer brand Bira 91 has said that the company is planning an initial public offering (IPO) in next three to five years.
Summary:
Homegrown e-commerce giant Flipkart has infused â¹518 crore in its payments arm PhonePe, according to filings.
Summary:
Dating river beds in central Germany, scientists have discovered a boulder that was transported from Scandinavia by glaciers 4,50,000 years ago.
Summary:
An Indian Army paratrooper from Para Brigade died during a skydiving exercise in Uttar Pradesh's Agra after his parachute failed to open.
Summary:
Blogging platform Tumblr has revealed details of 84 accounts linked to Russian trolls who used the platform to influence the 2016 US presidential elections.
Summary:
The White House has released an order formally banning transgender members from serving in the US military "except under certain limited circumstances".
Summary:
India's 16-year-old shooter Manu Bhaker won a gold on her last shot in the women's 10-metre air pistol event at the Junior World Cup in Sydney on Saturday.
Summary:
Windies, who missed automatic qualification, booked their place in the 10-team 2019 World Cup through the qualifying tournament along with Afghanistan.
Summary:
Technology giant Apple has proposed 13 new emoji including 'ear with hearing aid' to better represent individuals with disabilities.
The list of proposed emoji also include 'person in mechanised wheelchair'.
Summary:
The concept also features two electrically driven rotors to ensure safe vertical take-off.
Summary:
Summary:
Tesla has claimed its Lithium-ion battery in Australia has delivered 30-40% of its services without being paid as it provides power too fast to be registered.
Summary:
Danish and German researchers have proposed that all planets originated at the same time and grew at the same rate but stopped growing at different times, leading to the different composition of rocky planets.
Summary:
X-ray tomography of a dinosaur found in 1997 in China has revealed the giant herbivore was infected by a predator's bite around 200 million years ago.
Summary:
PM Narendra Modi and President Ram Nath Kovind on Saturday received German President Frank-Walter Steinmeier at the Rashtrapati Bhavan.
Summary:
A human skeleton with an Aadhaar card was found near a river in West Bengal's Siliguri on Friday.
Summary:
Two policemen in Tamil Nadu's Chennai attempted to immolate themselves outside Director General of Police's office reportedly over caste-based discrimination they faced in their unit.
Summary:
French President Emmanuel Macron hailed Beltrame as a "hero" who "saved lives".
Summary:
With a current market capitalisation of $508 billion, Tencent is world's largest social media company.
Summary:
Irrfan Khan's spokesperson has denied rumours of the actor seeking Ayurvedic treatment for his illness.
Summary:
Summary:
Following the end of regulation time, the Portugal captain rose to score with two headers, handing Portugal a 2-1 win.
Summary:
Australia's cricket board has registered a complaint with their South African counterparts over the verbal abuse directed at Australian players by the crowd in the ongoing third test at Cape Town.
Summary:
In a letter addressed to Zuckerberg, the lawmakers said, "The hearing will examine the harvesting and sale of personal information" from the users.
Summary:
The money will be sent through Google's payments app Google Pay and the users who haven't signed up for the service will be prompted to do so.
Summary:
During BJP's Parliamentary meeting on Friday, PM Narendra Modi told the BJP MPs to be more active on social media and have at least 3 lakh followers on the microblogging website Twitter.
Summary:
Musk's statement came after he promised to delete Facebook pages of the two companies following a Twitter user's challenge.
Summary:
Gurugram-based online marketplace ShopClues has laid off 45-50 employees across multiple functions, the startup confirmed.
Summary:
The American Heart Association (AHA) has said that astronauts need to consume 2,700âÂÂ3,700 calories a day in space, against a normal 2,000-calorie diet.
Summary:
Senior customs officer SK Swaminathan, accused of giving â¹50,000 bribe to his colleague to expedite his promotion file, has said the CBI is "ruining his life and career".
Summary:
"Delete SpaceX page on Facebook if you're the man?" the user tweeted.
Summary:
While BJP candidate Anil Agarwal defeated BSP candidate BR Ambedkar to win the ninth seat, SP candidate Jaya Bachchan won the tenth seat.
Summary:
Reliance Industries has signed a deal to buy out music streaming service Saavn and integrate it with JioMusic to create a music streaming platform valued at over $1 billion.
Summary:
Following his marriage with Anushka Sharma, Kohli leased out a sea-view apartment for a monthly rental of â¹15 lakh on Worli's Dr Annie Besant Road.
Summary:
The British firm has been accused of exploiting the personal data of over 50 million Facebook users to influence the US elections.
Summary:
Union Finance Minister Arun Jaitley has been elected to the Rajya Sabha for the fourth consecutive term.
Summary:
NASA's nuclear-powered Mars Curiosity rover has completed 2,000 Martian days on the Red Planet.
Called "sol", a Martian day lasts 40 minutes longer than a day on Earth.
Summary:
Kamala Pujari's family said the government had rejected her request for a pucca house under Indira Awaas Yojana in 2016.
Summary:
India is a brother but China is like a long-lost cousin found, Maldives Ambassador to China Mohamed Faisal has said.
Summary:
Kerala Police has filed an FIR against a professor who slammed female students in his college, saying that they display their breasts like "slices of watermelon".
Summary:
The PIL also claims that the state government is not issuing death certificates of the deceased to hide the actual death toll.
Summary:
The Peruvian Congress on Friday accepted the resignation of President Pedro Pablo Kuczynski who quit amid allegations of corruption against him.
Summary:
The attack targeted 320 universities in 22 countries, 144 of which were in the US.
Summary:
At least 12 people were killed and 40 others were injured on Friday after a car bomb exploded in Afghanistan's Helmand province, officials said.
Summary:
Casino billionaire and Wynn Resorts Founder Steve Wynn has disposed his entire 11.8% stake in the firm for $2.1 billion.
Summary:
Summary:
According to reports, actress Sonam Kapoor and her rumoured boyfriend, Delhi-based businessman Anand Ahuja, will get married over a two-day ceremony on May 11 and 12 in Geneva, Switzerland.
Summary:
Filmmaker Hansal Mehta has said Rajkummar Rao's success is driven by content and the difficult choices he makes as an actor.
Summary:
Rani Mukerji has said that if she realises that her audience doesn't want to see her anymore, she would pack her bags and just take care of her daughter Adira.
Summary:
Talking about how Irrfan Khan is dealing with his health issues, filmmaker Abhinay Deo said, "What he's doing is absolutely inspirational and amazing." Deo added, "He not only opened up in detail about what he's going through at this point of time, but also (talked about) how he's dealing with his illness.
Summary:
Summary:
In a first, a live female anglerfish with its parasitic mate permanently attached to the belly has been observed in the North Atlantic Ocean.
Summary:
Kerala Chief Minister Pinarayi Vijayan on Thursday launched the mKeralam app which will offer government services through a unified interface.
Summary:
As many as 150 huts in a slum were gutted in a major fire that broke out in Hyderabad's Madhapur on Thursday morning.
Summary:
A 13-year-old girl got pregnant allegedly after being raped repeatedly by the husband of her maternal aunt, with whom she was living for seven months.
Summary:
The city will also install a statue of Karl Marx given by China on May 5 this year.
Summary:
Both members, belonging to the Zugdidi City Assembly, were treated for minor injuries.
Summary:
While 529 BSF jawans have committed suicide, 491 jawans have been killed in action since 2001.
Summary:
Police in the French town of Trebes have shot dead the suspected gunman who took several people hostage in a supermarket on Friday, reports said.
Summary:
The man had filed an appeal after his licence was confiscated for speeding but passed away a few days later after a lower court ruled in his favour.
Summary:
The amount involved in 31 bank fraud cases registered by the investigating agency in 2017 stood at â¹11,777 crore.
Summary:
South Africa's Dean Elgar equaled former West Indies player Desmond Haynes' record of carrying the bat in a Test innings on three occasions, after achieving the feat in South Africa's third Test against Australia.
Summary:
MS Dhoni ran out Mustafizur Rahman off the last ball to help India win by one run.
Summary:
Former RBI Governor Raghuram Rajan has said, driverless cars "will have to engage in the crowded streets of Darya Ganj to be able to show that in fact they work." Adding that "no doubt driverless cars will come," Rajan said, they will have to reassure people they are safe.
Summary:
After the Delhi High Court quashed the Election Commission's order to disqualify 20 AAP MLAs for holding offices of profit, AAP leader Nagendar Sharma tweeted that all three Election Commissioners should immediately resign.
Summary:
The Karnataka government on Friday declared minority status to the Lingayat community in the state.
Summary:
Australia has abolished the subclass 457 visa category used by skilled overseas workers, especially Indians, to promote employment of locals.
Summary:
The CBI has booked Deccan Chronicle Holdings (DCHL) and its Chairman T Venkattram Reddy for allegedly causing loss of â¹30.54 crore to United India Insurance Company (UIIC).
Summary:
Incumbent Russian President Vladimir Putin was formally declared the winner in the recently-concluded presidential elections on Friday, securing nearly 77% of the votes.
Summary:
According to reports, one litre of milk in the country costs 80,000 Venezuelan bolÃÂvars.
Summary:
Former RBI Governor Raghuram Rajan has said, "We (Indians) don't have jobs to lose.
Summary:
The CBI has booked former Multi Commodity Exchange (MCX) MD Jignesh Shah, four former chairmen of Forward Market Commission and others over alleged irregularities in launching IPO of MCX in 2012.
Summary:
Summary:
Summary:
Summary:
The trailer of Tabu, Manoj Bajpayee and Annu Kapoor starrer upcoming film 'Missing' has been released.
Summary:
'October' actress Banita Sandhu has addressed her co-star Varun Dhawan as the Justin Bieber of India in an interview while she later called herself Bieber's rumoured girlfriend Selena Gomez.
Reacting to her statement, Varun tweeted, "Did you just call me the Justin Bieber of India...
Summary:
Pakistani beauty brand Olivia Intense has copied the advertisement of Godrej group's hair colour product BBLUNT's Indian commercial featuring Kareena Kapoor.
Summary:
Former Sweden captain Zlatan Ibrahimovic has announced his move to Major League Soccer club LA Galaxy from Premier League club Manchester United through a full page advert in LA Times.
Summary:
Summary:
Doctors in a Mumbai hospital have successfully removed 2,350 stones from a 50-year-old woman's gallbladder during a 30-minute surgery.
Summary:
Police have arrested a woman for allegedly killing her 16-year-old daughter over suspicion of having sexual relations with her father in Navi Mumbai.
Summary:
Police have arrested the husband.
Summary:
He told police he planned the murder for a week.
Summary:
The gunman is now alone with one police officer in the supermarket, city officials said.
Summary:
Speaking about his aunt Daisy Irani opening up on being raped at age six, Farhan Akhtar said, "Heartbroken...but proud [she] spoke up." "It's tragic to see parents push their kids to breaking point in order to achieve success...through them," he added.
Farhan further said, "This should serve as wake-up call for the film and TV industry.
Summary:
A veteran Bollywood actress, who accused a businessman of raping her, has claimed he also extorted over â¹15 crore from her, said Mumbai Police.
Summary:
Union Bank had given it a loan of â¹313 crore, which was declared non-performing in June 2012.
Summary:
Ghosh has claimed that the girl had been blackmailing him.
Summary:
Indian cricketer Mohammad Shami's wife Hasin Jahan met West Bengal Chief Minister Mamata Banerjee on Friday and submitted a three-page appeal detailing her complaints against the pacer.
Summary:
Citing chaos in the House, Lok Sabha Speaker Sumitra Mahajan refused to admit the motion moved by TDP over special status to Andhra Pradesh several times.
Summary:
Thirteen MLAs from two other parties also reportedly voted for BJP.
Summary:
China's media regulator has banned parodies on television as part of a crackdown on content that violates core socialist values under President Xi Jinping, the Chinese state media reported.
Summary:
China has warned that it could impose an import tariff on 128 US goods, worth almost $3 billion after the US imposed tariffs on imports worth up to $60 billion from China.
Summary:
UK online fashion retailer ASOS printed 17,000 packaging bags with a spelling error.
Summary:
Summary:
The fortunes of the world's 500 richest people declined by $71 billion on Thursday as the stock markets plunged after US President Donald Trump imposed tariffs on the import of Chinese goods.
Summary:
'Baaghi 2' director Ahmed Khan, while speaking about the recreated version of 'Ek Do Teen Char', said, "From the moment we zeroed down on the song...we were ready for criticism." "We must not forget it's an experiment...All feedback of such work cannot be positive." he added.
Summary:
Actor Shahid Kapoor has said his wife Mira Rajput would have dated Sidharth Malhotra if she was not married.
Summary:
Science-fiction film 'Pacific Rim Uprising' "doesn't feature anything new in overall scheme of story," wrote Bollywood Hungama.
Summary:
The fan followed Warner as he proceeded up the stairs.
Summary:
Indian shuttlers PV Sindhu and Saina Nehwal's parents have denied claims that they will be using government funds to travel to Australia's Gold Coast as part of India's Commonwealth Games 2018 contingent.
Summary:
Ex-cricketer Vinod Kambli touched his childhood friend and cricket legend Sachin Tendulkar's feet during the post-match presentation after the final of the Mumbai T20 League.
Summary:
Ex-Pakistani pacer Shoaib Akhtar took to Twitter to troll a man who tried to joke about his death.
Summary:
Amid ongoing data controversy at Facebook, World Wide Web inventor Tim Berners-Lee has said, "I can imagine Mark Zuckerberg is devastated that his creation has been abused and misused." "I would say to him: You can fix it," he added.
Summary:
Maharashtra BJP leader Eknath Khadse has demanded a probe into a rat-killing contract, questioning how the contractor managed to kill 3,19,400 rats in state government headquarters in 7 days in 2016.
Summary:
An Air India flight attendant was allegedly slapped by the cabin supervisor last week for serving a non-veg platter to a vegetarian passenger.
Summary:
Tourists visiting Taj Mahal will be allowed to stay on the monument premises only for three hours from the time of ticket issuance, an Archaeological Survey of India official said.
Summary:
The Centre on Wednesday cleared a plan to set up an Indian Air Force (IAF) base close to Gujarat's Deesa near India's border with Pakistan.
Summary:
A man in Kerala on Thursday allegedly stabbed his 21-year-old daughter to death a day before her marriage to a Dalit man.
Summary:
A lawyer in Chennai allegedly shot at a restaurant staffer with his licensed revolver for serving him the wrong dish.
Summary:
Earlier, BCCI had confirmed to Kolkata Police about Shami's two-day stay in Dubai last month.
Summary:
The Delhi High Court on Friday quashed the Election Commission's recommendation to disqualify 20 AAP MLAs for holding offices of profit by serving as Parliamentary Secretaries.
Summary:
Rani Mukerji starrer 'Hichki', which released today, is a "simple, meaningful and an inspiring film," wrote Bollywood Hungama.
Summary:
Fraud-hit PNB witnessed losses amounting to about â¹14,500 crore due to frauds so far in FY18.
Summary:
Australia's Damien Martyn scored an unbeaten 88 and put up 234 runs for the third wicket alongside Ricky Ponting while playing with a broken finger in the final of the 2003 World Cup against India on March 23.
Summary:
An international study of the oldest-ever salt deposit has given fresh evidence for the transformation of Earth's atmosphere into an oxygenated environment capable of supporting life.
Summary:
WTTC President Gloria Guevara said, "The biggest single area of improvement for travel and tourism in India is infrastructure."
Summary:
Delhi High Court on Friday granted bail to former Finance Minister P Chidambaram's son Karti Chidambaram on the surety of â¹10 lakh in connection with the INX Media money laundering case.
Summary:
Social activist Anna Hazare on Friday sat on an indefinite hunger strike in Delhi demanding the appointment of Lokpal at the Centre and Lokayuktas in states.
Summary:
Noida Police has recovered a notebook of the Class 9 girl who committed suicide on Tuesday, with "I am dumb.
The girl had also scribbled "I hate myself" in the notebook.
Summary:
It added that China is "strongly disappointed" over Trump's decision.
Summary:
A Kenyan court has ruled that forced anal exams used to determine whether two men had sex is illegal.
Summary:
There were real feelings...He would call me baby or beautiful," Karen said she broke up with Donald in 2007 as she felt "guilty".
Summary:
Nifty tumbled below 10,000 mark for the first time in 2018 to trade at 9,954.
Summary:
The first look poster of Amitabh Bachchan and Rishi Kapoor starrer '102 Not Out' has been released.
Summary:
"It's only Japanese companies that now manufacture condoms as thin as 0.01-0.02 mm," a manufacturer said.
Summary:
Former England captain Kevin Pietersen, who retired from professional cricket recently, mocked England getting all out for 58 runs in the first Test against New Zealand by tweeting, "Jeez, #BringBackKP." Nine England batsmen were dismissed for single-digit scores, with five getting out on ducks.
Summary:
Walmart has filed for a patent that describes drones which can be summoned by customers via mobiles to assist them while shopping.
Summary:
China's capital city Beijing has given approval to the country's internet major Baidu to test self-driving cars on the streets.
Summary:
The model updates its output risk data every 30 minutes.
Summary:
Hoping to find better ways to control cockroaches, Chinese researchers studied the American cockroach which has over 20,000 genes, as many as humans.
Summary:
A US-based study has found that feeding mice with eight weeks of fatty food increased their weight by 33% while reducing their taste buds by 25% compared to those fed normal food.
Summary:
Severe climate disasters cost countries about $320 billion in 2017, making it the costliest year on record for climate-related events, the United Nations' weather agency stated.
Summary:
The girl's mother found her dead when she went to check on her at 1 am.
Summary:
A woman has claimed that Dubai's ruler Sheikh Mohammed bin Rashid got her car pulled out of the sand after it got stuck in a desert in Dubai.
Summary:
US President Donald Trump has said he would like to testify in FBI's investigation into alleged meddling in the 2016 US presidential election by Russia if the agency asks him to do so.
Summary:
Charles Lazarus, the Founder and Chairman Emeritus of US toy store chain Toys"R"Us, died on Thursday at the age of 94.
Summary:
Veteran actress Zeenat Aman has filed a rape case against a businessman at Juhu Police Station.
Summary:
Veteran actress Daisy Irani, who started her career as a child actor, revealed she was raped at the age of six by her "guardian" who had accompanied her to a shoot.
Summary:
Earlier, it was found that 50 million Facebook users' data was exploited to influence the US elections.
Summary:
The number of members that a state can elect to the Upper House is allocated in proportion to the population of the state.
Summary:
Elections to fill up 26 vacant seats in the Rajya Sabha are being held today, while 33 members have been elected unopposed.
Summary:
Lyricist Javed Akhtar, while slamming journalist Francois Gautier for questioning Aamir Khan's casting in 'Mahabharata', called him a "scoundrel" on Twitter.
Summary:
England's 31-year-old Stuart Broad became the youngest pacer to reach 400 wickets in Test cricket after dismissing New Zealand's Tom Latham in the first Test on Thursday.
Summary:
While talking about the data scandal at Facebook, COO Sheryl Sandberg has said, "I would say certainly this past week, we spoke too slowly...
Summary:
Amazon has filed a patent for a drone which is capable of recognising human audio and visible gestures.
Summary:
As many as 55 candidates of the analysed 63 out of 64 candidates contesting the Rajya Sabha elections are crorepatis, the Association for Democratic Reforms report has revealed in a report.
Summary:
The Great Pacific Garbage Patch (GPGP) is now bigger than France, Germany and Spain combined and is growing rapidly, the Ocean Cleanup project has found.
Summary:
A 6-inch deformed skeleton found in 2003 in Chile, which led to speculations of its extraterrestrial origins, has been confirmed to belong to a baby girl.
Summary:
Two teachers have filed a complaint against the Headmaster of a school in West Bengal's Jalpaiguri, alleging that he leaked question papers of various subjects to help a Class 10 student.
Summary:
The ministry also revealed that approximately 9,000 personnel opt for voluntary retirement every year.
Summary:
US President Donald Trump has temporarily exempted the European Union along with Argentina, Australia, Brazil, and South Korea from the imposition of a 25% tariff on steel imports and a 10% tariff on aluminium imports to the US.
Summary:
Police in the US city of Sacramento shot dead an African-American man after mistaking a cellphone in his hand for a gun, camera footage released on Wednesday has revealed.
Summary:
US President Donald Trump on Thursday replaced HR McMaster with John Bolton as the National Security Adviser after McMaster resigned from the position in the latest high-profile departure from the White House.
Summary:
Saudi Arabia has other international partners to work with if the US does not sign a potential deal on nuclear power technology over nuclear proliferation concerns, the Kingdom's Energy Minister Khalid al-Falih has said.
Summary:
The government has informed that fraud-hit PNB issued as many as 41,178 Letters of Undertaking (LoUs) since 2011.
Summary:
Kangana Ranaut planted 31 trees at her Manali home to celebrate her 31st birthday today.
Talking about her birthday plans, Kangana said, "My family has planned an elaborate lunch, though I don't like to eat much."
Summary:
Actor Salman Khan has said that earlier, he used to take his work very casually.
Salman further said, "So guys, all of you should take your work seriously."
Summary:
Real Madrid's Welsh forward Gareth Bale scored a hat-trick against China to go past Ian Rush as the highest goalscorer for Wales.
Summary:
Researchers at Massachusetts Institute of Technology have tested a device that is capable of extracting drinkable water from desert air with relative humidity as low as 10%.
Summary:
Mozilla said that it will "consider returning" when Facebook takes stronger action on how it shares customer data.
Summary:
The amount will help the startup strengthen its product portfolio, accelerate marketing and expand its distribution reach.
Summary:
As many as 135 whales have died after being washed ashore in Western Australia while rescue operations are underway to save the remaining 15.
Summary:
Summary:
Challenger Deep, the deepest known point on the Earth, is located in Pacific Ocean's Mariana Trench 36,070 feet below sea level while Earth's tallest peak Mount Everest has an altitude of 29,029 feet above sea level.
Summary:
Trump had blamed China for the hollowing out of the American manufacturing sector and the loss of US jobs.
Summary:
This comes after Cambridge Analytica was accused of exploiting data of over 50 million Facebook users to influence 2016 US elections.
Summary:
This comes amid user complaints about seeing old posts after Instagram scrapped chronology-based feed in 2016.
Summary:
Responding to '#DeleteFacebook' campaign, Facebook CEO Mark Zuckerberg has said, "I don't think we've seen a meaningful number of people act on that".
Summary:
BJP minister Vijay Goel on Thursday visited Congress' Ghulam Nabi Azad and AIADMK's V Maitreyan at their residences to request them to call off protests in the Parliament.
Summary:
Union minister Ravi Shankar Prasad suggested that Gandhi's tweet terming GST as 'Gabbar Singh Tax' was composed by the firm.
Summary:
The Delhi High Court has sought Congress leader Sajjan Kumar's reply after it received a CD and a letter claiming to be a confession of his involvement in 1984 anti-Sikh riots.
Summary:
UIDAI CEO Ajay Bhushan Pandey has told the Supreme Court that it will take a supercomputer 13 billion years, the age of the universe, to breach Aadhaar data.
Summary:
As Ola and Uber drivers in Mumbai called off their strike, the drivers' union in Delhi-NCR has announced it will go on a 24-hour strike on Friday to protest against the cab-hailing startups.
Summary:
The Congress has demanded that the Centre file a review petition against the Supreme Court verdict barring arbitrary arrests of public servants under the SC/ST (Prevention of Atrocities) Act. The Congress described the judgement, which mandates a preliminary probe before the arrest of public officers, as "unfortunate".
Summary:
Farmers in Tamil Nadu have been issued cheques of â¹7 and â¹10 as compensations for the crops they had lost on their insured lands.
Summary:
Punjab Assembly Speaker Rana KP Singh has ordered a probe into the live-streaming of the Assembly's proceedings on social media by an Opposition member on Wednesday.
Summary:
Kushner reportedly provided the heir to the Saudi throne details about Saudi princes who were disloyal to him.
Summary:
Earlier, the committee acknowledged that the Russians did interfere in the elections but not to favour Trump.
Summary:
The Kensington Palace has shared a picture of the invitation card to the wedding of UK Prince Harry and American actress Meghan Markle.
Summary:
Choreographer Saroj Khan, while speaking about the recreated version of 'Ek Do Teen Chaar', said, "There was no question of legal action." "There's no question of which version is better as the new song is a tribute to the original 'Ek Do Teen' team," she added.
Summary:
India's 18-year-old shooter Elavenil Valarivan set a qualification world record before claiming a gold medal in the 10-metre air rifle women junior event at the ISSF Junior Shooting World Cup in Australia.
Summary:
English Premier League side Manchester United terminated Swedish star Zlatan Ibrahimovic's contract mid-season as the player is reportedly set to sign for American MLS side LA Galaxy.
Summary:
Following revelations that a British firm mined Facebook user data to help elect Donald Trump as US President, Israel's Justice Ministry opened a probe into whether the social media giant violated the country's privacy laws.
Summary:
The nominations sparked a row last year as CM V Narayanasamy had not been consulted by Bedi.
Summary:
The team launched a laser into a hollow-core fibre containing a microparticle, which produced lasers by itself when excited by a second laser.
Summary:
UK-based researchers have claimed to invent the world's first brain scanner that can be worn while moving.
Summary:
A 42-year-old man was shot in the stomach after he tried to catch two motorcycle-borne men who snatched his wife's gold chain in Delhi, police said.
Summary:
The Enforcement Directorate has conducted raids at premises owned by its ex-Deputy Director of Chandigarh zone, Gurnam Singh, over allegations that he took â¹6-crore bribe while investigating a â¹600-crore Ponzi scheme.
Summary:
Prosecutors alleged that she planned an attack on Parliament using grenades and automatic weapons acquired from pro-Russian separatists.
Summary:
Pandya added that he will make necessary submissions in the court to prove the tweet was not his.
Summary:
Indian cricketer Mohammad Shami, who was cleared by the BCCI of corruption charges levelled by his wife Hasin Jahan on Thursday, has said that he will make his bowling do all the talking now.
Summary:
British data firm Cambridge Analytica, accused of illegally obtaining the personal data of 50 million Facebook users, identified target voter groups and designed advertisements for them to influence their voting decisions.
Summary:
The case was filed based on a complaint from Union Bank of India which had given a loan of â¹313 crore.
Summary:
New Zealand captain Kane Williamson reacted in 0.634 seconds to pull off a one-handed diving catch to dismiss England's Stuart Broad for a six-ball duck in the first Test on Thursday.
Summary:
The Congress on Thursday announced plans to move a privilege motion against External Affairs Minister Sushma Swaraj for allegedly misleading the Parliament about the death of 39 Indians who were abducted in Iraq in 2014.
Summary:
After the Parliament witnessed repeated disruptions for the 14th consecutive day, TDP MP YS Chowdary alleged the BJP-led Centre is "planting" people to jump into the Well instead of allowing discussion on the no-confidence motion against it.
Summary:
Rajya Sabha Chairman Venkaiah Naidu said he adjourned the House as he did not want people to "see the ugly scenes".
Summary:
The IRCTC has introduced the use of Point of Sale (PoS) machines in trains to check overcharging by vendors.
Summary:
KC Tyagi denied any relations between JD(U) and the firm.
Summary:
Replying to the Opposition's allegations that the ruling TDP diverted â¹25 crore to each constituency for the next Assembly elections, Andhra Pradesh CM Chandrababu Naidu on Thursday demanded the government immediately ban â¹2,000 and â¹500 notes.
Summary:
Delhi Deputy Chief Minister Manish Sisodia on Thursday presented the state budget allocating â¹175 crore for installation of 1.2 lakh CCTV cameras in government schools.
Summary:
Mexican firm Amar Hidroponia, which grows only habanero peppers, is selling digital tokens in order to raise capital from smaller investors.
Summary:
Direct-to-home (DTH) service provider Dish TV India has announced the completion of its merger with Videocon d2h.
Summary:
Vodafone Group and Aditya Birla Group on Thursday appointed Balesh Sharma, the current COO of Vodafone India, as the CEO of the merged Idea Cellular and Vodafone India.
Summary:
Colombian drug lord Pablo Escobar's brother, Roberto, has launched an initial coin offering for his own cryptocurrency called 'Diet Bitcoin'.
Summary:
The vulnerability was discovered by a Dutch fintech firm which was rewarded by Coinbase with a $10,000 bounty.
Summary:
Toyota said it would continue testing semi-autonomous cars on closed circuits.
Summary:
Naqvi slammed Gandhi for opposing investigations into data theft from "innocent Indians".
Summary:
The MP had earlier dressed up as a woman and a 'tantrik'.
Summary:
After 600 students from NIFT Kannur staged a protest against incidents of harassment by locals, Kerala police officials have advised female students to not go outside the campus alone at night.
Summary:
The wife alleged that she was assaulted by the accused after she tried to stop him from thrashing the students.
Summary:
A Russian model jumped off the 6th floor of a Dubai hotel to escape rape after she refused to have sex with a US businessman.
Summary:
Talking about Russia hosting the 2018 FIFA World Cup, UK MP Ian Austin has claimed that Russian President Vladimir Putin will use it in the same way Adolf Hitler used the 1936 Olympics to glorify Nazi ideology.
Summary:
Last month, twin car bomb explosions in Mogadishu killed at least 45 people and injured 36 others.
Summary:
This represents a 28% increase from the $1.2 billion spent on IoT security last year, the report said.
Summary:
India's third-largest private sector lender Axis Bank has called a media report referring to the resignation of its top personnel as "speculative assertions".
Summary:
It also offers optional cover for accidental death & disability and critical illnesses like heart attack and cancer.
So, get yourself covered today #RahoKhushaalPoore99Saal
Summary:
E-commerce giant Amazon was ranked 4th on the list.
Summary:
The Crime Investigation Department (CID) has arrested a director of Himachal Pradesh-based Indian Technomac Company, Vinay Kumar Sharma, in a nearly â¹6,000 crore fraud case.
Summary:
Sourav Ganguly has revealed Rahul Dravid and VVS Laxman attended a party at his home after the 2001 Kolkata Test despite being put on drip earlier as they were dehydrated.
Summary:
South Africa needed 22 runs off 13 balls to win the World Cup semi-final against England on March 22, 1992 when rain stopped play.
Summary:
Summary:
After the Centre said Facebook Founder Mark Zuckerberg could be summoned over the data breach scandal, RJD leader Tejashwi Yadav alleged the BJP was challenging Zuckerberg as its popularity on the social networking site was falling.
Summary:
Summary:
A fake message claiming that Delhi is going to be hit by an earthquake of magnitude 9.2 on Richter scale is being widely circulated on WhatsApp. Attaching a link to a fake NASA website, the message claims that the space agency has predicted the earthquake to occur around April 15.
Summary:
The missile can be launched from land, ships, submarines and fighter jets.
Summary:
The Opposition parties have reportedly called the amended rules an attempt to stifle democracy.
Summary:
A competition, named Open Book Challenge, is planning to invest â¹65 lakh each in seven teams that can build a new social network that would be a 'better Facebook'.
Summary:
'Baaghi 2' director Ahmed Khan has said that Tiger Shroff and Disha Patani remind him of the chemistry between Ranbir Kapoor and Deepika Padukone.
While Ranbir and Deepika were a couple earlier, Tiger and Disha are said to be in a relationship.
Summary:
Actress Priyanka Chopra took to social media to share an old picture with her parents late Ashok Chopra and Madhu Chopra and wrote, "Mommy daddy and baby me..
Summary:
Kriti Sanon took to Twitter to confirm that she'll star in the upcoming film 'Housefull 4'.
This will be Kriti's second film with Sajid Nadiadwala's production house.
Summary:
Former Indian captain Sourav Ganguly has said that Test specialist Cheteshwar Pujara is as important for the team as captain Virat Kohli.
Summary:
Kolkata Knight Riders captain Dinesh Karthik has revealed that his dream to play for Chennai Super Kings is getting "smaller by the day".
Summary:
Eight-time Olympic champion Usain Bolt has said he's a "massive fan" of Cristiano Ronaldo but his talent is more similar to that of Lionel Messi.
Bolt further said he would love to play for Manchester United.
Summary:
Technology giant Google is developing a blockchain-like ledger system in order to differentiate its cloud business from rivals, according to reports.
Summary:
Noida-based cybersecurity firm Kratikal has launched a cybersecurity threat simulator tool ThreatCop. The simulator works on all six vectors through which attacks can take place including phishing, cyber scams, and removable media.
Summary:
University of Michigan biophysicists have imaged the moment a photon excites colour pigments and sparks the first energy conversion steps of photosynthesis.
Summary:
A group of people protesting the suicide of a 15-year-old school girl in Delhi's Mayur Vihar blocked the Delhi-Noida road on Thursday resulting in a 9-km-long traffic jam.
Summary:
He said this was the first 'Green budget' of the government for effective containment of pollution.
Summary:
A Board of Inquiry (BoI) is being constituted to ascertain the cause of the crash, the Navy added.
Summary:
Summary:
Former US President Barack Obama on Thursday shared parenting tips with New Zealand's PM Jacinda Ardern, who is expecting her first child in June.
Summary:
The BCCI has given a clean chit to Indian fast bowler Mohammad Shami after probing match-fixing allegations against the cricketer.
Summary:
Jahan has accused Shami of adultery, saying he has never provided for her financially.
Summary:
Summary:
Veteran Indian spinner Harbhajan Singh has revealed that then India captain Sourav Ganguly wore a towel instead of a shirt for all of Day 4 when Rahul Dravid and VVS Laxman were batting in the 2001 Kolkata Test.
Summary:
Saleem Rashid, a 15-year-old British teenager, hacked into US-based company Ledger's USB cryptocurrency wallet.
Summary:
YouTube's global head of music Lyor Cohen has said the video-sharing platform plans to 'frustrate' users by increasing the number of advertisements that are streamed between music videos.
Summary:
Congress President Rahul Gandhi has accused the Centre of using the Facebook data scandal involving British firm Cambridge Analytica to divert people's attention from the death of 39 Indians abducted by ISIS in Iraq.
Summary:
The government first announced a free WiFi scheme in 2016 but the project failed to take off.
Summary:
A video showing a pub owner in Delhi's Shalimar Bagh accidentally shoot himself to death while sitting at the pub with his friends has surfaced online.
Summary:
The Parliament on Thursday passed the Payment of Gratuity (Amendment) Bill which will enable the government to double the ceiling of tax-free gratuity to â¹20 lakh.
Summary:
Apollo Chairman Prathap C Reddy on Thursday revealed that all CCTV cameras at the Chennai Apollo hospital were turned off for 75 days during former CM Jayalalithaa's hospitalisation.
Summary:
The Delhi University Teachers' Association launched a 5-day strike from March 19 to protest against the government's move providing full autonomy to 62 higher educational institutions.
Summary:
An Australian man, who inserted a chip into his hand to avoid using plastic cards for public transportation, has been fined for not having a valid ticket.
Summary:
Urmila Matondkar starrer song titled 'Bewafa Beauty', from the upcoming film 'Blackmail', has been released.
Directed by Abhinay Deo, 'Blackmail' is scheduled to release on April 6.
Summary:
Because things were not happening that way (in a progressive manner), and I was dying inside." "So I stopped working in TV series," Ronit further said.
Summary:
Video footage has captured the moment a refrigerator exploded at an internet cafe in the Chinese city of Pingdingshan.
Summary:
After Windies qualified for the 2019 World Cup after beating Scotland in the World Cup Qualifier tournament on Wednesday, all-rounder Chris Gayle said, "It's been a long journey, but finally we have done it.
Summary:
Ganguly was Team India's captain during John Wright's tenure from 2000-2005.
Summary:
A concert hall is set to open inside a cave in Tennessee, United States.
Summary:
A hotel that is being built in an abandoned open-pit mine with only two of its floors above the ground has neared completion in China.
Summary:
However, carVertical said it had a contractual relationship with BMW and both parties understand the word 'partnership' differently.
Summary:
Wounds treated with fibronectin dressing showed 84% tissue restoration within 20 days, compared to 55.6% in standard dressing.
Summary:
Railways had added a provision last year wherein senior citizens could forgo half or full subsidy.
Summary:
The Russian Foreign Ministry on Wednesday said that it is "scary" that UK Foreign Secretary Boris Johnson represents a country that's a nuclear power.
Summary:
Police in US' North Carolina arrested a 20-year-old identified as the mother of a baby who was seen smoking marijuana in a video shared on Facebook.
Summary:
Jaipur-based vehicle buying startup CarDekho has raised $2.5 million from existing investor Sequoia Capital in an extended Series B round of funding, according to filings.
Summary:
Scrapping the â¹10,000/month cap on funding for education of martyrs' children, the government cleared the way to fully fund the education of children of armed forces personnel missing, killed or disabled on duty.
Summary:
Zuckerberg also highlighted how Facebook used AI tools to identify Russian bots in previous elections.
Summary:
The emergency was imposed after Maldives' Supreme Court ordered the release of nine jailed opposition MPs including the country's first democratically-elected President Mohamed Nasheed.
Summary:
Stand-up comedian Atul Khatri took to Twitter to point out that some news outlets were using his name instead of sexual harassment accused JNU professor Atul Johri.
Summary:
The Central Bureau of Investigation has filed an FIR against Chennai-based Kanishk Gold for allegedly cheating a 14-bank consortium led by SBI of â¹824.15 crore.
Summary:
A Rajasthan court on Wednesday directed the police to register an FIR against cricketer Hardik Pandya for a tweet on BR Ambedkar that was reportedly posted by a parody account in December.
Summary:
England, who were 23/8 at one stage, managed to score 32 runs more than the lowest-ever Test total of 26, recorded by New Zealand against England in 1955.
Summary:
Former Indian captain Sourav Ganguly has revealed that it was a chit from his father that prompted him to declare the second innings for 657/7 in the 2001 Kolkata Test versus Australia, which India won after following-on.
Summary:
Facebook CEO Mark Zuckerberg has said, "I actually am not sure we shouldn't be regulated".
Summary:
Zuckerberg added that Facebook will build a tool for users to check if their data was a part of the data scandal.
Summary:
YSR Congress and other opposition parties have called for a statewide bandh in Andhra Pradesh to protest against the Centre for refusing special category status to the state.
Summary:
Peter Dunsby, Professor of Cosmology at the University of Cape Town, reported the detection of a "very bright optical transient" as a new discovery, which was, in fact, the planet Mars.
Summary:
Addressing a public meeting in Uttar Pradesh's Firozabad, CM Yogi Adityanath on Wednesday told citizens that action would be taken against corrupt officials after videos of them are uploaded on the anti-corruption portal.
Summary:
China on Wednesday accused the US of damaging the fair and just nature of the international trade environment by repeatedly abusing the rules of the World Trade Organization (WTO).
Summary:
The Kid-Mai Death Cafe also features a coffin, which diners can lie down in to avail a small discount.
Summary:
The US Federal Reserve officials, meeting for the first time under Chairman Jerome Powell, raised the interest rate by 25 bps to a range of 1.5% to 1.75%.
Summary:
Actor Sahil Khan, while speaking about Jackie Shroff's wife Ayesha being summoned in the Call Data Records (CDR) scam, said, "Karma is a b***h, what goes around comes around." "I have moved on, I have forgiven her for whatever happened," he added.
Summary:
On being asked if he will testify before the US Congress, Facebook CEO Mark Zuckerberg has said, "I'm happy to if it's the right thing to do." Zuckerberg added the goal is to give Congress all the information it needs.
Summary:
Former Facebook Platform Operations Manager Sandy Parakilas has revealed that data harvesting of users by outside software developers was once routine at Facebook.
Summary:
In the first instance, a passenger who was allegedly carrying 40 gold sheets inside ten emergency light batteries was intercepted.
Summary:
The Supreme Court has dismissed Stayzilla's stay appeal on insolvency proceedings ordered by the National Company Law Tribunal.
Summary:
UK-based researchers have developed the first continuous room-temperature maser.
Summary:
Researchers at the University of Manchester have discovered that naturally occurring gaps between 2D materials' layers can be used as the smallest possible sieve to separate atoms.
Summary:
The elaborate frills and horns of dinosaurs might have evolved to attract sexual partners and not as a mechanism to recognise each other as earlier believed, a UK-based study has found.
Summary:
It is alleged that a huge amount of unaccounted money was invested in LIC policies in Singh and his family members' names.
Summary:
Walmart India on Wednesday appointed Sameer Aggarwal, a former executive at American fast food chain KFC, as Executive Vice-President and Chief Strategy & Administrative Officer.
Summary:
In a separate incident, the airline had sent a Kansas, US-bound dog to Japan.
Summary:
An 18-year-old girl has accused 24-year-old Arjuna awardee table tennis player Soumyajit Ghosh of raping her on the pretext of marriage.
Summary:
An app would now require Facebook's approval to request information other than name, profile photo, and email.
Further, Facebook will display used apps on News Feed and allow revoking permissions from there itself.
Summary:
Uttar Pradesh Congress chief Raj Babbar has denied rumours of him resigning from the post, saying, "I don't know from where this rumour is doing the rounds." "In any case, all of us in Congress are party workers, posts and positions are symbolic," Babbar added.
Summary:
Tesla CEO Elon Musk could earn around $55 billion in performance bonus if the electric carmaker's market value, which is currently at $53 billion, rises to $650 billion over the next 10 years.
Summary:
MIT researches have unveiled "SoFi", a soft robotic fish made of silicone that can navigate independently using its tail and control its buoyancy.
Summary:
Wing Commander Manjeet Singh had found and reported the website, which claimed that recruitment for IAF was on and had downloadable application forms.
Summary:
PM Narendra Modi on Thursday took to Twitter to share the letters he received from students for his book on fighting examination stress 'Exam Warriors'.
Summary:
Out of these 131 cases, 13 are of murder and 11 are of attempt to murder.
Summary:
Iraq's forensic department head Dr Zaid Ali Abbas has said 39 Indians, who were abducted by ISIS in Mosul, were "definitely" shot dead over a year ago.
Summary:
Kosovo's opposition party Vetëvendosje (Self-Determination) on Wednesday released tear gas in the Parliament four times in an attempt to stop a vote on a 2015 border agreement with neighbouring Montenegro.
Summary:
Actress Daisy Shah's look from the upcoming film 'Race 3' has been unveiled.
Summary:
"The very best wishes to very talented film hero Salman Khan for his next film Race 3!" he wrote in the caption.
Summary:
Actor Ajay Devgn has said he feels misunderstood as people think he is arrogant or intimidating because he doesn't talk much and keeps to himself.
Summary:
Actress Taapsee Pannu took to Twitter to share a screenshot of an email, wherein a fan proposed marriage to her.
The fan stated in the proposal that he is a "virgin, non-alcoholic [and] vegetarian guy."
Summary:
Michael Coates, the Chief Information Security Officer at Twitter, has quit the microblogging site to co-found a security startup.
"Twitter has been an amazing ride...
Summary:
The employees are making efforts not to create any food waste in the kitchen this month.
Summary:
A hotel in the Turkish region of Cappadocia is made out of hundreds of caves, which were used as homes and shelters between the ninth century and the mid-20th century.
Summary:
The Singapore Changi Airport has been named the world's best airport for the sixth consecutive year by consultancy firm Skytrax.
Summary:
Talking about TDP quitting the NDA alliance, BJP President Amit Shah said that there was no problem with the party's other alliances.
Summary:
Canada-based virtual games startup CryptoKitties has raised $12 million in a funding round led by Andreessen Horowitz and Union Square Ventures.
Summary:
Oceanic plastic litter could triple between 2015 and 2025, a Foresight report by the UK government has feared.
Summary:
Delhi gangster Neeraj Bawana and his aides have reportedly gone on a hunger strike in the Tihar jail to demand a television set in his prison cell.
Summary:
The CBI has given a clean chit to Tej Pratap Yadav, son of RJD chief Lalu Yadav, in the murder case of journalist Rajdeo Ranjan.
Summary:
The Telugu Desam Party (TDP) has decided to hold a statewide peaceful protest in Andhra Pradesh to support party MPs' agitation in the Parliament for special category status.
Summary:
Summary:
Philippine President Rodrigo Duterte has slammed Canada over its decision to halt the delivery of 16 helicopters to the Philippines, saying, "My God, you Canadians, how stupid can you get?" "Our citizens are joining ISIS...We have every right to kill our citizens," Duterte added.
Summary:
British city Leicester will host a National Samosa Week from April 9 to 13 to draw attention to the culture and food heritage of South Asia.
Summary:
The Bombay High Court on Wednesday ordered the police to release actor Nawazuddin Siddiqui's advocate Rizwan Siddiqui five days after he was arrested in the Call Data Records (CDR) case.
Summary:
I personally believe that it will be Bitcoin." The transition would happen in a period of over ten years but it "could go faster," Dorsey added.
Summary:
The US police has released a video of Uber self-driving car crash which killed a woman in Arizona last week.
Summary:
Facebook COO Sheryl Sandberg, while addressing the ongoing Cambridge Analytica controversy has said, "I deeply regret that we didn't do enough to deal with it." She added that users deserve to have their information protected and the company will make sure they feel safe on Facebook.
Summary:
"MASTER devoted this optical discovery to Stephen Hawking, the Lord of Black Holes," researchers wrote in Astronomer's Telegram journal.
Summary:
A truck driver has been arrested in Haryana for allegedly raping a 16-year-old girl and smashing her head repeatedly with a brick to murder her.
Summary:
However, the L-GâÂÂs office said that Baijal did not reject the proposal but merely advised to refer it to the Centre.
Summary:
The Kerala government on Wednesday declared jackfruit as the official fruit of the state.
Summary:
The Centre on Wednesday told the Supreme Court that convicted persons cannot be stopped from forming or holding posts in political parties.
Summary:
At least 17 people were photographed by Reuters apparently casting vote at more than one polling station during the 2018 Russian presidential election held last week.
Summary:
US President Donald Trump defied a warning from his national security team to not congratulate Russian President Vladimir Putin over his re-election, according to a report.
Summary:
The Gujarat Government has rejected an auto-rickshaw driver's plea to change his name to RV155677820.
Summary:
Ranveer Singh has said he's attracted to those performers who have a "chameleon-like quality" and "have the ability to transform into the character".
Summary:
Urmila Matondkar will be making her comeback in Bollywood with the song 'Bewafa Beauty', which will feature in the film 'Blackmail'.
Summary:
Jannat Zubair Rahmani, who was asked to kiss her co-star for the television show 'Tu Aashiqui', has said, "I'm just 16.
Summary:
Jahan Taab, aged 25, left her desk and sat on the floor to continue writing her exam when her two-month-old baby started to cry.
Summary:
Facebook CEO Mark Zuckerberg has said, "I feel fundamentally uncomfortable sitting here in California in an office making content policy decisions for people around the world." Zuckerberg pointed that he wants to find a way to get Facebook's policies set in a way that reflects community values.
Summary:
Qatar Airways on Wednesday denied that it was involved in any talks regarding the acquisition of Air India.
Summary:
The building blocks of life could have emerged on Earth from small amounts of cyanide and copper irradiated with UV light, a Harvard University study has found.
Summary:
Researchers have discovered 1,15,000-year-old bone tools in China, which suggest prehistoric humans there were already familiar with mechanical properties of bones and knew how to use them to make tools out of carved stone.
Summary:
The accused's brother had reportedly passed lewd comments on the wife when she was grocery shopping.
Summary:
Reversing the previous UPA government's stand, the BJP-led Centre has opposed National Commission for Minority Educational Institutions' order declaring Delhi's Jamia Millia Islamia a religious minority institution.
Summary:
Shiv Sena has given â¹1 lakh as financial assistance to a Maharashtrian farmer, who destroyed his own crop in a fit of rage after he earned just â¹442 for his produce.
Summary:
The Pune Municipal Corporation has issued a notice to construction company Panchshil Group over alleged illegal razing of 500 trees at a former natural bird sanctuary in Yerawada.
Summary:
A parcel bomb which exploded at a courier office in Maharashtra's Ahmednagar and injured two people was addressed to the owner of an NGO which works to benefit residents of Jammu and Kashmir, and Punjab.
Summary:
The Sri Lankan Opposition on Wednesday submitted a no-confidence motion against PM Ranil Wickremesinghe, accusing him of financial mismanagement and failing to tackle the communal violence which happened in the country earlier this month.
Summary:
Unibic's melt-in-the-mouth Oatmeal Digestive Cookies, containing 8% oats, 3% wheat bran and 6.5% fibre, are free of trans fats and cholesterol.
Summary:
Summary:
Peshawar Zalmi's wicketkeeper-batsman Kamran Akmal smashed the fastest-ever fifty in Pakistan Super League history off 17 balls against Karachi Kings on Wednesday.
Summary:
The study concluded that the pornographic content can make the blockchain illegal to possess for all Bitcoin users.
Summary:
Pai said that India has about 30,000 startups employing about 4 lakh people.
Summary:
Addressing the Punjab Assembly, CM Captain Amarinder Singh on Wednesday said the state has waived off its 50% share in the GST levied on purchases made by several community kitchens.
Summary:
The woman who was operated under a torchlight at a hospital in Bihar after being injured in a road accident has passed away.
Summary:
A video showing a burka-clad woman beating up a man, who is accused of raping her daughter, while he is in police custody in Madhya Pradesh's Indore has surfaced online.
Summary:
Finance Minister Arun Jaitley had hailed the programme as the 'world's largest health protection scheme' in his Union Budget speech.
Summary:
However, Uber drivers have been asked to continue their strike until talks with Uber officials on Thursday.
Summary:
Citing RTI applications, Majaw had recently alleged that several cement firms owned by non-locals were mining in Meghalaya's Jaintia Hills area without permission.
Summary:
Goa CM Manohar Parrikar is responding well to treatment in the US and his condition will be reviewed in two weeks, his personal secretary Rupesh Kamat has said.
Summary:
The militants had kidnapped 110 girls, the biggest mass abduction since Boko Haram took over 270 girls from a school in the town of Chibok.
Summary:
The report ranked 25 companies that are most preferred by professionals in India.
Summary:
Social media giant Facebook has lost over $54 billion in market value over the past two days, which is more than the $52 billion market capitalisation of Tesla.
Summary:
Actor Tiger Shroff, who will be next seen in 'Baaghi 2', has said he did not recommend co-star Disha Patani for the film.
Summary:
Indian all-rounder Vijay Shankar, who was slammed on social media for his 19-ball 17 in the tri-series final, has revealed he locked himself in the hotel room after the match.
Summary:
Windies have featured in all 11 World Cups till now.
Summary:
The Indian Space Research Organisation (ISRO) is experimenting with potential structures for human habitation on the Moon, Minister of State Jitendra Singh told the Lok Sabha.
Summary:
Andhra Pradesh CM Chandrababu Naidu on Tuesday reached the Venkateswara Temple in Tirumala with his family on the occasion of his grandson's third birthday and donated â¹26 lakh to the temple's trust.
Summary:
The security forces have killed four unidentified militants in the encounter which started on Tuesday after an attack on an Army patrol.
Summary:
Replying to a tweet on declining ridership in Delhi Metro, CM Arvind Kejriwal asked the Centre not to make the hike in metro fares an "ego issue".
Summary:
The last time government raised the retirement age of central government employees was in 1998 when it was raised from 58 to 60 years.
Summary:
The man who is suspected to have carried out five explosions across the US city of Austin this month killed himself on Wednesday as a SWAT team approached him, police have said.
Summary:
Last month, Israel started issuing deportation orders to 20,000 male African migrants, giving them a 60-day deadline to leave the country.
Summary:
Reacting to a photograph of US President Donald Trump's daughter Ivanka posing as a scientist, a Twitter user wrote, "A new batch of deadly "Nerve Agent" for Putin (Russian President)." Other users tweeted, "What is she studying?
Summary:
Poor children in the UK are now fatter than their rich counterparts for the first time ever, a study has found.
Summary:
Speaking about the controversy around his biography 'An Ordinary Life: A Memoir', actor Nawazuddin Siddiqui said, "If and when I write something after 10-12 years, I'll write only lies." "I wrote the truth.
Summary:
"We talk twice daily no matter where we are.
If we don't get to talk...it feels odd," he added.
Summary:
Two helicopters, including one belonging to the Pakistani Army, were used at Lahore's Gaddafi Stadium to dry the outfield before the PSL eliminator between Karachi Kings and Peshawar Zalmi today.
Summary:
Tencent is world's largest social media company with a market capitalisation of $559 billion, while its closest rival Facebook has a value of $488 billion.
Summary:
The European Commission has revealed plans for a 3% tax on revenues of technology giants like Google, Amazon, and Facebook.
Summary:
Rebel Congress leader Shehzad Poonawalla has said his party's claims of having no relations with Cambridge Analytica, the firm linked with the Facebook data scandal, are "absolutely false".
Summary:
Tamil Nadu CM and AIADMK chief EK Palaniswami has said there is no alliance or support to the BJP.
Summary:
Space startup SpaceX's CEO Elon Musk has said, "Creating a rocket company has to be one of the dumbest and hardest ways to 'make money'." He said this in response to a Twitter user who accused him of wanting to make money while pretending to save humanity.
Summary:
The Health Ministry has hiked the seats reserved for disabled students in postgraduate medical courses from 3% to 5%.
Summary:
Attorney General KK Venugopal has told the Supreme Court that Aadhaar data collected by the UIDAI is secure as it is stored in a building having 10-foot thick walls.
Summary:
The victim's wife had alleged the convicts were members of Bajrang Dal.
Summary:
Stating that it won't tolerate the "blatant defacement", the court said students will be jailed if found guilty ahead of the next election.
Summary:
Talking about the death of a two-year-old child allegedly due to starvation, Madhya Pradesh Food Minister OP Dhurve on Wednesday said he does not believe a person can die of starvation in this age.
Summary:
Rajya Sabha Chairman Venkaiah Naidu on Wednesday adjourned the House for the day within four minutes as the MPs walked into the Well protesting over several issues and refused to take their seats.
Summary:
The Russian Defence Ministry on Wednesday said that over 40 tonnes of chemical weapons abandoned by militants have been found in Syria.
Summary:
A memo from the intelligence agency also revealed that the NSA collected password information and internet activity of several other Bitcoin users.
Summary:
Singapore's Parliament on Wednesday passed a law to block all electronic communications at the scene of a terror attack.
Summary:
After over 10 years of secrecy, Israel has for the first time confirmed that its fighter jets destroyed a suspected nuclear reactor being built in Syria in 2007.
Summary:
Infosys Co-founder Narayana Murthy has said, "The urban intellectuals didn't buy the idea of demonetisation but a vast majority of rural Indians seemed to have welcomed it." Murthy said he himself couldn't understand the logic behind demonetisation move since he is not an expert on the subject.
Summary:
Customers of erstwhile associate banks and Bharatiya Mahila Bank have been asked to apply for new cheque books to avoid inconvenience.
Summary:
A 50-over domestic match between Mohammedan and Kalabagan in Bangladesh's Savar was delayed due to teams and match officials getting stuck in traffic on way to the stadium on Tuesday.
Summary:
The captains will do a video shoot in Mumbai and leave for their respective cities on April 6 as four franchises have their matches next day.
Summary:
Thai Airways has said that it cannot allow passengers with waistlines exceeding 56 inches and parents travelling with toddlers to fly business class on its new Boeing 787-9 Dreamliners.
Summary:
The accused, who hailed from Tamil Nadu's Vellore, used to murder women by hitting them with bricks and boulders.
Summary:
A mob protesting against the alleged suicide of a man in police custody attacked the Kaler Police Station in Bihar and vandalised vehicles.
Summary:
Chinese Premier Li Keqiang has said that trade between Russia and China will reach $100 billion.
Summary:
German conglomerate Bayer has won the European Union (EU) approval for its $66 billion takeover of US peer Monsanto, after promising to sell off substantial parts of its business.
Summary:
Facebook has been hit by its largest-ever data leak after British data firm Cambridge Analytica harvested over 50 million users' personal data and exploited it to influence the US elections.
Summary:
State Bank of India has filed a complaint with CBI alleging that Chennai-based jewellery chain Kanishk Gold defrauded 14 banks of â¹824 crore.
Summary:
IT Minister Ravi Shankar Prasad has said, "If Facebook is found to be involved in data breach of Indians, we will take very strict action against them including the summoning of Mark Zuckerberg." "Today, 20 crore Indians are on Facebook...we have the stringent IT Act," Prasad added.
Summary:
Orbitz said personal information that was likely accessed may have included name, date of birth, phone number, email address, billing address, and gender.
Summary:
Denying Union Law Minister Ravi Shankar Prasad's allegations, Congress spokesperson Randeep Surjewala on Wednesday said the party has never hired Facebook data scandal-linked company Cambridge Analytica.
Summary:
Law Minister Ravi Shankar Prasad on Wednesday alleged that Congress had shared the data of Indians with Facebook data scandal-linked firm Cambridge Analytica.
Summary:
After Lok Sabha Speaker Sumitra Mahajan refused to admit a no-confidence motion against the BJP-led NDA, the TDP claimed that the Centre's attempt to avoid the motion was "political suicide".
Summary:
Union Home Ministry informed a parliamentary panel that Sikh youth are being trained at Inter-Services Intelligence facilities in Pakistan to carry out terror activities in India.
Summary:
Extending his wishes on Navroz that marks the Persian New Year, President Ram Nath Kovind on Wednesday tweeted, "Navroz Mubarak to everybody, especially to our small, much-loved and overachieving Parsi community." PM Narendra Modi wished the community saying, "May the coming year further the spirit of happiness and harmony.
Summary:
While talking about the US weapons purchase deals agreed by Saudi Arabia, US President Donald Trump told Saudi Crown Prince Mohammed bin Salman that amounts like $3 billion and $533 million are like peanuts for his Kingdom.
Summary:
An elderly Italian man claims to have collected around 15,000 'Do Not Disturb' signs from hotels in more than 200 countries and territories.
Summary:
A pornographic video appeared briefly on a billboard on one of the major roadways in Philippines' Makati City on Tuesday.
Summary:
A man in United States' Kansas said that he won $1 million (â¹6.5 crore) in a lottery after petrol pump workers tracked him down to return a lost Mega Millions scratch-off ticket.
Summary:
'Theher Ja', a new song from Varun Dhawan and Banita Sandhu starrer upcoming film 'October', has been released.
Summary:
Rani Mukerji has penned a letter on the occasion of her 40th birthday today in which she wrote, "As a woman, I must admit, it hasn't been an easy journey." "I had to prove myself every day," she added.
Summary:
Kangana Ranaut's sister Rangoli Chandel has slammed Thane police for naming Kangana in the Call Detail Record (CDR) scam, wherein they stated that she had shared Hrithik Roshan's mobile number with the accused in the case, Rizwan Siddiqui.
Summary:
Actress Meghan Markle is set to get her own wax statue at Madame Tussauds London.
Summary:
Actor Macaulay Culkin, known for featuring in the 'Home Alone' films as a child actor, has revealed that he lost his virginity at the age of 15.
The 37-year-old actor further said, "In a nutshell, [I was] like, 'Am I doing it right?'"
Summary:
World number two Indian shuttler Kidambi Srikanth, who received his Padma Shri award on Tuesday, has said that he was "surprised" when he was informed that he had been shortlisted for the award.
"I had applied thinking that I was eligible for this award.
Summary:
Aleksandr Kogan, who leaked Facebook user data to Cambridge Analytica, has said, "IâÂÂm being basically used as a scapegoat by both Facebook and Cambridge Analytica." Facebook had said that although Kogan gained access to the information in a legitimate way, he violated rules by passing it to a third-party.
Summary:
Further, the revenue growth for Flipkart slowed down in the year through March 2017, the filings revealed.
Summary:
A kilogram of CO2 emission wipes out 15kgs of glaciers as per the study.
Summary:
US-based researchers have found evidence that suggests the seven exoplanets in the new-found star system Trappist-1 "may have too much water to support life".
Summary:
Delhi airport operator DIAL told the Delhi High Court on Tuesday that there are 365 obstacles around the airport that may pose a threat to aircraft safety.
Summary:
Mumbai Railway Police registered 202 cases involving 'fatka' robbers in 2017, Maharashtra CM Devendra Fadnavis told the state Assembly on Tuesday.
Summary:
A farmer in Maharashtra destroyed the cauliflower crop on his land "in a fit of rage" after earning a meagre amount for his produce.
Summary:
A Scottish man who uploaded a YouTube video of his girlfriend's dog performing Nazi salute has been convicted of hate crime.
Summary:
Twitter Co-founder and CEO Jack Dorsey posted the first ever tweet on Twitter on March 21, 2006, when the service was still called Twttr.
The post read, "just setting up my twttr".
Summary:
Radhika Apte has revealed she had to engage in phone sex during her audition for the film 'Dev D'.
Summary:
Juggernaut Books, while apologising over the book on Sanjay Dutt, wrote, "We're sorry to hear that [he] was upset by our book on him." "The author, Yasser Usman, an award-winning journalist and reputed writer on Bollywood actors...has chosen his sources...with care," they added.
Summary:
Ex-Facebook employee Sandy Parakilas, who was responsible for monitoring data breaches, has said, "Once the data left Facebook servers there was not any control." "We had no idea what developers were doing with the data," he added.
Summary:
Ex-Facebook employee Sandy Parakilas, who monitored data breaches, has said he found the company's data practices "utterly shocking and horrifying", adding it had no control over data given to outside developers.
Summary:
Indian airline IndiGo and Qatar's flag carrier Qatar Airways are in talks to make a joint bid for national carrier Air India, according to reports.
Summary:
Jammu and Kashmir government has reportedly decided to reward terrorists who surrender before security forces with â¹6 lakh as part of rehabilitation for militants.
Summary:
However, the state BJP President Dilip Ghosh said that people at Ram Navami processions would carry arms as per tradition.
Summary:
The Supreme Court has asked real-estate firm Jaypee Associates to deposit â¹200 crore in two installments to refund the homebuyers.
Summary:
The Union Health Ministry has said that doctors, hospital authorities, and chemists could face a jail term of six months to two years for not notifying tuberculosis cases.
Summary:
A 53-year-old woman and her 32-year-old daughter were arrested on Monday for allegedly duping around 130 people of â¹5 crore in Mumbai.
Summary:
North Korea has said that the sign of change in its relationship with the US is not due to sanctions which are "just as meaningless as a dog barking at the moon".
Summary:
Founded with an initial investment of $200,000 in 1985 by Peterson and Stephen Schwarzman, Blackstone now manages more than $430 billion in assets.
Summary:
Former RBI Governor Raghuram Rajan has said 7.5% GDP growth won't be enough to create good jobs for 1.2 crore people joining India's workforce every year.
Summary:
The government has extended the facility of fixed-term employment to all sectors in a bid to improve the ease of doing business.
Summary:
Union Minister Jayant Sinha on Tuesday said that Air India had sought a loan of $180 million (over â¹1,170 crore) for procurement of two aircraft for VVIPs, but did not take it.
Summary:
According to reports, actor Aamir Khan's upcoming production 'Mahabharata' will have a budget of â¹1,000 crore.
Summary:
Actor Kunal Kemmu was fined on Wednesday by the traffic police after a picture of him riding a bike without wearing a helmet surfaced on social media.
Summary:
Guptill's three toes were amputated after he met with a forklift accident aged 13.
Summary:
"I decided to cut my hair...and (everybody) forgot about (my leg injury).
"I'm not proud about the hair itself because it was pretty strange," he further said.
Summary:
England-based businessman Mohammed Bhai, who was accused of giving money to Mohammad Shami through Pakistani model Alishba by the cricketer's wife, has claimed that he has never met any woman called Alishba in his life.
Summary:
Operations have been launched to help the people who have been affected.
Summary:
A 31-year-old British tourist has been awarded a one-year suspended sentence in Cambodia for using pornographic pictures to promote a party.
Summary:
Chennai-based subscription billing startup Chargebee has raised $18 million in Series C round of funding led by New York-based Insight Venture Partners.
Summary:
The police said one security personnel has been injured in the encounter.
Summary:
A Class 9 student of DelhiâÂÂs Mayur Vihar school allegedly committed suicide by hanging herself at her residence in Noida on Tuesday.
Summary:
Nilekani said that state-owned banks were losing market share at an estimated rate of 4% a year.
Summary:
The lawsuit alleged that Facebook violated its own data privacy policies by allowing third parties access to the data.
Summary:
Facebook admitted to sending a "digital forensics team" into Cambridge Analytica's office this week to "secure evidence".
Summary:
The sale is being touted as one of the most expensive real estate transactions for a single building in New York's history.
Summary:
Following the reports revealing a large scale data scandal, Facebook has said, "Mark, Sheryl and their teams are working around the clock to get all the facts and take the appropriate action." Adding they understand the issue's seriousness, Facebook said, "the entire company is outraged we were deceived.
Summary:
He also suggested they could offer candidates bribes, record it and then "post it on the Internet".
Summary:
Loss-making national carrier Air India is set to promote 100 of its pilots with a pay hike of up to â¹12 lakh per person, according to a report.
Summary:
AIADMK in its party mouthpiece 'Nammadu Amma' has stated that the party isn't interested in bringing down the NDA government at the Centre.
Summary:
In the lawsuit, the woman has alleged Uber drivers cancelled rides because she requires the use of a service dog.
Summary:
The ashes of world-renowned scientist Stephen Hawking will be interred near the graves of Sir Isaac Newton and Charles Darwin at London's Westminster Abbey later this year.
Summary:
In an affidavit submitted to a probe panel, jailed AIADMK leader Sasikala claimed that late Tamil Nadu CM Jayalalithaa in 2016 had refused her suggestion to go to the hospital before collapsing.
Summary:
The US on Wednesday offered its "deepest condolences" on the death of 39 Indians, kidnapped and killed by ISIS in Iraq.
Summary:
Apart from the 100 vehicles for CRPF, 41 have been approved for ITBP, Sashastra Seema Bal and CISF.
Summary:
At least 26 people were killed and 18 others were injured on Wednesday after a suicide bomber blew himself up near a Shi'ite shrine in Afghanistan's capital Kabul, officials have said.
Summary:
Saudi has pledged $200 billion in investments in the US.
Summary:
An Austrian man has been fined â¬160 (nearly â¹13,000) after he described two police officers as "smurfs standing with lasers" in a warning about speed checks posted on Facebook.
Summary:
Deepika Padukone has said she has requested Sanjay Leela Bhansali to let her keep the outfit she wore while shooting for the Jauhar scene in 'Padmaavat' to commemorate the scene.
Summary:
Actor Bobby Deol's look from the upcoming film 'Race 3' has been unveiled.
Summary:
Indian all-rounder Vijay Shankar, who played four consecutive dot deliveries in 18th over of the tri-series final, has said he should have finished the match.
"It was an off-day...I'm finding it difficult to forget it," he further said.
Summary:
Google has launched an augmented reality (AR) app called Just a Line that lets users draw white lines in the air.
Summary:
Google is also working to train its system at recognising contentious breaking news and accurate results.
Summary:
A petrol bomb was hurled at BJP District President CR Nandakumar's car in Tamil Nadu's Coimbatore on Wednesday morning.
Summary:
An FIR has been lodged against a builder in Gujarat's Junagarh after videos of celebratory firing and money shower at his wedding ceremony surfaced online.
Summary:
The Delhi High Court on Wednesday issued a notice to all accused in the 2G spectrum scam, including A Raja and M Kanimozhi, on the appeal filed by the ED and the CBI.
Summary:
Sub-Divisional Magistrate Santosh Tiwari said the family didn't have food for two days.
Summary:
Htin Kyaw, who became Myanmar's first democratically elected President in 2016, has resigned from the position with immediate effect to take rest from his current duties and responsibilities, his office announced on Wednesday.
Summary:
A man who suffered a cardiac arrest earlier this month after his head got trapped in a seat at the Vue Cinema in Birmingham has passed away.
Summary:
WhatsApp Co-founder Brian Acton, who sold the messaging service to Facebook in 2014, has joined the #DeleteFacebook campaign, following Facebook's data controversy.
Summary:
Last month, Murthy was arrested for allegedly stalking and sexually harassing a Delhi woman.
Summary:
The 2017 film 'Star Wars: The Last Jedi' holds the third place among the most-tweeted films of all time.
Summary:
Facebook CEO Mark Zuckerberg has been asked by a British parliamentary committee to explain in person the recent data controversy involving the company.
Summary:
Computer software company Oracle's Founder Larry Ellison's net worth has dropped $4.5 billion after the shares of the company tumbled 9.4%.
Summary:
A campaign by the name, '#DeleteFacebook' is trending on social media following reports revealing that personal data of 50 million Facebook users was exploited to influence the US elections.
Question everything," a user tweeted.
Bout ready to #DeleteFacebook," another user wrote.
Summary:
Austria's capital city Vienna has been rated the world's most liveable city for the ninth consecutive year by Mercer in its annual Quality of Living survey.
Summary:
Delhi, at the 162nd place, was rated the least liveable among the seven Indian cities on the list.
Summary:
Uber Co-founder Travis Kalanick has announced his new venture fund '10100' is investing $150 million in US-based City Storage Systems, a distressed real estate company.
Summary:
Late cosmologist Stephen Hawking predicted that the universe will fade into blackness as stars run out of energy, in his final paper currently under review for publication.
Summary:
Union Minister for Social Justice Thaawarchand Gehlot has said that there are at least 4,13,670 beggars and vagrants in India, with Lakshadweep having just two.
Summary:
The Uttar Pradesh Police on Monday busted a cheating racket which led to 600 non-performing students clearing the MBBS examination and becoming doctors in the state.
Summary:
The Telangana government has decided to make Telugu a mandatory subject till Class 10 in all public and private schools.
Summary:
The Vice President thought it would not be appropriate to go ahead with the dinner with the House not functioning for over two weeks, reports said.
Summary:
JNU professor Atul Johri, who was arrested and granted bail on Tuesday amid allegations of sexual harassment by several students, has said that he is a victim of politics.
Summary:
The 32-year-old was named the Saudi Crown Prince last year after his elder cousin Mohammed bin Nayef was ousted from the position.
Summary:
Ex-Playboy model Karen McDougal, who claimed that she had an affair with US President Donald Trump in 2006, has sued American Media Inc to be released from a 2016 legal agreement that mandated her silence over the alleged relationship.
Summary:
An Austrian man will receive â¬317,368 (over â¹2.5 crore) as compensation for being ignored for promotion because of his gender.
Summary:
Adding that he hopes that the "long history" of friendly relations between North Korea and Russia will continue, Jong-un said Putin's victory is an expression of Russians' trust in him.
Summary:
American Airlines on Tuesday tweeted, "You never have to pay for a seat.
Summary:
Actor Abhishek Bachchan's look from his comeback film 'Manmarziyaan' has been unveiled.
The film will mark Abhishek's return to films after a gap of two years.
Summary:
The patients underwent a two-hour-long operation where a stem cell-based patch was inserted under the retina in the affected eye.
Summary:
At least 15 theft cases of nearly 4,000 metres of cable have been reported from multiple sections of the line.
Summary:
Police officials had rushed to the spot when the statue was found with its head cut off on Tuesday.
Summary:
Two autorickshaw drivers have been arrested for allegedly stealing autorickshaws and other vehicles and renting them out to other drivers after changing their number plates in Thane, police said.
Summary:
The move is aimed at avoiding grammatical and other errors in the question papers.
Summary:
Bajaj Allianz Home Insurance Policy provides coverage for losses or damages caused to properties or contents by an unfortunate event - natural and accidental.
Summary:
This comes after the stock of the e-commerce giant rose 2.7% and that of Google-parent Alphabet fell 0.4%, bringing its value to $762 billion.
Summary:
One of the students accusing JNU professor Atul Johri of sexual harassment has said that he once told her, "You have nice b***s", according to her statement to the police.
Summary:
Sanjay Dutt has revealed he had not authorised Yaseer Usman and Juggernaut Publications to write or publish his biography.
Summary:
Summary:
Ace shuttler Kidambi Srikanth and former tennis player Somdev Devvarman received the country's fourth-highest civilian award, Padma Shri, from President Ram Nath Kovind on Tuesday.
Summary:
Forty nine-year-old Elaine Herzberg was killed after being hit by an Uber car moving in autonomous mode.
Summary:
French security expert Robert Baptiste who hacked Aadhaar app in one minute is a network and telecommunications engineer by profession and develops Android applications.
Summary:
As many as 14,287 new leprosy cases have been detected in Maharashtra, state Public Health Minister Deepak Sawant said.
Summary:
Further, two people have been arrested in connection with the protest, which left 11 Railway police officials injured.
Summary:
The Modi-led government has faced criticism for allegedly failing to take action against Delhi's air pollution.
Summary:
"I watched it on TV...Without letting us know, you informed the world that they are dead," said the sister of a man who was killed.
Summary:
External Affairs Minister Sushma Swaraj has said the lone survivor who claimed to have seen 39 Indians being massacred by ISIS in Iraq was lying.
Summary:
US President Donald Trump on Tuesday said that he will soon meet his Russian counterpart Vladimir Putin to discuss the arms race which is getting "out of control".
Summary:
This comes after 17 people were killed in a mass shooting at a Florida school last month.
Summary:
The passports of travellers flying into Dubai were stamped with 'smiley visas' by airport officials on Tuesday to mark the International Day of Happiness.
Summary:
Investment bank Goldman Sachs has downgraded its forecast for the Indian economy on Tuesday in the wake of the alleged $2-billion PNB fraud.
Summary:
Mira Rajput has said her husband, actor Shahid Kapoor, is a "control freak" in bed while adding, "He is always telling me what to do".
Summary:
Talking about â¹100 crore and â¹300 crore clubs in Bollywood, Ajay Devgn said, "There's no such thing as a club, that's all rubbish!
Summary:
"It just feels good, that suddenly after so many years there's lot of attention," he further said.
Summary:
Dinesh Karthik, who slammed 29*(8) to help India win the recently concluded tri-series final, has said that he owes everything to Mumbai all-rounder Abhishek Nayar.
Summary:
Slamming Karnataka government for agreeing to send to Centre the recommendation to grant religious minority status to Lingayats, former Supreme Court judge Santosh Hegde said the government has no business recognising communities as religions.
Summary:
After a professor of a teacher training college in Kerala reportedly said female students don't wear hijabs properly and deliberately expose their breasts like slices of watermelons, several women posted their photos with watermelons online.
Summary:
A 16-year-old rape victim was moved to a shelter home after her parents reportedly refused to keep her with them as her pregnancy could not be terminated.
Summary:
Class 12 students appearing in the Uttar Pradesh Board examinations attached currency notes of â¹50, â¹100 and â¹500 in their answer scripts as bribe, examiners in Firozabad have revealed.
Summary:
A Scottish town named Patna celebrated Bihar Diwas last week.
Summary:
Police in Pakistan's Dera Ghazi Khan area have arrested a man accused of mutilating his wife's genitalia after she refused to give him her gold earrings.
Summary:
Investigation in the Call Details Record (CDR) scam revealed Kangana Ranaut had shared Hrithik Roshan's mobile number in 2016 with the accused in the case Rizwan Siddiqui, as per Thane's DCP Abhishek Trimukhe.
Summary:
The Kerala Cricket Association is planning to host an India-Windies ODI at Kochi's Jawaharlal Nehru International Stadium, which is the home stadium of Kerala Blasters football club.
Summary:
This comes a month after Samsung unveiled an SSD offering around 30 TB of storage.
Summary:
In a letter to Lok Sabha Speaker Sumitra Mahajan, BJP parliamentarian Manoj Tiwari has proposed a salary cut for the MPs who fail to engage in "constructive work".
Summary:
JNU professor Atul Johri who was arrested on Tuesday over sexual harassment allegations by several female students was granted bail later in the day by a Delhi court.
Summary:
The estimated per capita income of the national capital is almost three times the national average, according to the Economic Survey of Delhi 2017-18.
Summary:
Iraqi authorities identified a mass grave using ground radars and found bodies of 38 Indian workers who were abducted and killed by the ISIS militants after the terror group seized Mosul in 2014.
Summary:
The agency alleged evasion of customs duty of up to â¹52 crore.
Summary:
Summary:
The University Grants Commission has granted full autonomy to 62 higher educational institutions, including 5 central and 21 state universities, which maintained "high standards".
Summary:
The act, which provides special powers to security forces, was introduced in the state in 1990.
Summary:
Insurance regulator IRDAI has said it is not mandatory to link Aadhaar with existing insurance policies until a judgment is pronounced by Supreme Court on its constitutional validity.
Summary:
Summary:
Summary:
Television actor Karan Tacker has said he was approached by a casting director, who had once asked Ranveer Singh for sexual favours.
Summary:
Amitabh Bachchan, while discussing how his late father Harivansh Rai Bachchan's work is his inheritance, tweeted, "My right of copyright of the right to be my Father's heir...!!" In a new blog post, Bachchan wrote about concept of inheritance.
Summary:
Talking about women empowerment, Katrina Kaif said, "We need to think what we are doing for women around us.
Summary:
As per reports, Sunil Grover rejected Kapil Sharma's new show, 'Family Time With Kapil Sharma' as he wanted his name to be added to the title of the show.
Summary:
Indian fast bowler Mohammad Shami's uncle Khurshid Ahmed has said that the cricketer's wife Hasin Jahan shopped for lakhs every month and only wished for money.
Summary:
Talking about people comparing him and MS Dhoni following his last-ball six to win the tri-series final against Bangladesh on Sunday, Dinesh Karthik said he is "studying in a university where the former Indian captain is the topper".
Summary:
Ronaldo's former teammate Xabi Alonso is also facing three cases of alleged fraud.
Summary:
Delhi High Court has asked Directorate General of Civil Aviation (DGCA) to list the actions taken by it in connection with the recent grounding of several faulty GoAir and IndiGo A320 Neo aircraft.
Summary:
The duo did not leave any suicide note behind, the police said.
Summary:
Sidelined AIADMK leader VK Sasikala has received a 15-day parole to attend her husband M Natarajan's funeral after he passed away due to multiple organ failure on Tuesday.
Summary:
India's richest banker Uday Kotak has said the country has a unique mixture of "digital with Aadhaar".
Summary:
Insurance regulator IRDAI has directed insurers not to reject any existing health insurance claims on grounds of 'genetic disorder' and not include genetic disorders among exemptions in new contracts.
Summary:
Sunil Grover has said he wasn't mentally prepared to return to 'The Kapil Sharma Show' after his fight with Kapil onboard a flight last year.
Summary:
Facebook is reportedly under investigation by the US privacy regulator over the use of personal data of 50 million users by an analytics firm to help elect President Donald Trump.
Summary:
IBM has unveiled a prototype of what it claims is the world's smallest computer, measuring one square millimetre in size and costing less than â¹7 to manufacture.
Summary:
Days after reports claimed that a BJP leader's father was beheaded over naming an intersection 'Narendra Modi Chowk' in Bihar's Darbhanga, CM Nitish Kumar said the man was murdered over a land dispute.
Summary:
The only Indian worker who escaped from an ISIS camp in Iraq has said, "I had been saying for the last three years that all 39 Indians had been killed." Militants opened fire at all abducted workers after making them kneel near railway tracks, Harjit Masih said.
Summary:
In a telephone call with Prime Minister Narendra Modi on Tuesday, Chinese President Xi Jinping said that the country is ready to enhance communication with India on long-term, strategic bilateral issues to promote political mutual trust.
Summary:
PM Narendra Modi on Tuesday said External Affairs Minister Sushma Swaraj and minister of state VK Singh had "left no stone unturned" in trying to trace and safely bring back the Indians who went missing in Iraq's Mosul.
Summary:
After confirming the death of 38 Indians kidnapped by ISIS in Iraq, External Affairs Minister Sushma Swaraj said, "'Khoye huye ho to maare huye samjhe jaaoge' ye sarkar aisi nahi hai.
Summary:
More than 14 crore people across south Asia, sub-Saharan Africa, and Latin America could be forced to migrate by 2050 due to climate change, the World Bank has said.
Summary:
The woman claimed she lost around 6.5 Bitcoins worth â¹6.5 lakh to hackers and â¹35 lakh to fraudsters who claimed to help her earn back the money.
Summary:
Summary:
'Sex and the City' star and a vocal critic of US President Donald Trump, Cynthia Nixon, on Monday took to Twitter to announce that she is launching a bid for New York Governor.
Summary:
Actor Shahid Kapoor, on being asked if he has ever been cheated on, replied, "I'm sure about one [ex-girlfriend].
Summary:
As per reports, Priyanka Chopra will star opposite Salman Khan in the upcoming film 'Bharat'.
Summary:
Italian football club Fiorentina has announced its training ground will be renamed after captain Davide Astori, who died of a cardiac arrest aged 31 earlier this month.
Summary:
Windies' all-rounder Marlon Samuels damaged the 30-yard circle disk with his bat after getting out during Windies' World Cup Qualifier match against Zimbabwe on Monday.
Summary:
Former cricketer Sachin Tendulkar has written a letter to Transport Minister Nitin Gadkari, asking him to consider action against helmet manufacturers who use low grade material and sell helmets with fake ISI marks.
Summary:
Windies' Marlon Samuels broke a window with a six at the Harare Sports Club during his 86-run knock against Zimbabwe in a World Cup Qualifier match on Monday.
Summary:
A hotel in Canada has themed rooms featuring an igloo-shaped bed, a pick-up truck converted into a bed, traffic lights, 'stop' sign-patterned carpeting as well as bamboo furniture.
Summary:
The agitating apprentices were demanding permanent jobs in the Railways.
Summary:
Gangster Chhota Rajan's brother has been booked for raping a woman multiple times at his farmhouse in Maharashtra's Panvel.
Summary:
The accused took money from the complainant promising to launch him in a Bollywood movie.
Summary:
In a Facebook post, a woman has alleged JNU students protesting police inaction in a sexual harassment case blocked traffic in Delhi and didn't make way for a child who was "bleeding profusely".
Summary:
The police have said that the accused used to lure the boy with â¹100 and take him to a public toilet to assault him.
Summary:
A 13-year-old boy was apprehended in Odisha's Bhubaneswar for allegedly making a hoax bomb call to Delhi's Indira Gandhi International Airport on Diwali last year.
Summary:
A Kuwait-born British citizen has been sentenced to more than six months in jail for live-streaming himself having sex with a girl on Valentine's Day to "show off to his friends".
Summary:
India is notably the world's second-largest producer of sugar after Brazil.
Summary:
The Delhi Police on Tuesday arrested JNU professor, Atul Johri, over allegations of sexual harassment by several students.
Summary:
American TV and film studio The Weinstein Company, whose former Chairman Harvey Weinstein has been accused of sexual harassment, on Monday announced it filed for bankruptcy.
Summary:
The caterers informed match referee Chris Broad that Shakib forcefully pushed the door causing damage.
Summary:
Goa Congress chief Shantaram Naik on Tuesday submitted his resignation to make way for a younger leader, claiming he was "inspired" by party President Rahul Gandhi.
Summary:
According to Sensei's President, Dan Gruneberg, the farms will use roughly 10% the amount of water used in traditional farming.
Summary:
Greece on Monday established the Hellenic Space Organisation, the country's first space agency in an effort reportedly aimed at rebuilding the economy.
Summary:
Sasikala was last granted parole in October last year when her husband was hospitalised for a dual organ transplant.
Summary:
The CBI has approached the Delhi High Court over the acquittal of former Telecom Minister A Raja and others in the 2G scam case.
Summary:
A landowner in Thane has been imposed with a fine of â¹60,24,275 for allegedly destroying a mangrove patch and dumping debris in the area.
Summary:
The mortal remains of 38 of the 39 Indians killed in Iraq may be brought back in 8-10 days, union minister VK Singh said.
Summary:
An Indian Air Force (IAF) Hawk advanced trainer jet crashed in Odisha's Mayurbhanj district on Tuesday.
Summary:
Didcot Mayor Jackie Billington said the roundabout signs would make drivers smile as they drove past.
Summary:
"The issues raised remain unaddressed, making my fear of safety rise to extreme levels," he added.
Summary:
He said only seven countries have implemented GST system in its true form and only two, including India, have implemented a federal GST.
Summary:
Sony India has appointed Sunil Nayyar as its first Indian Managing Director.
Summary:
Ajay Devgn has revealed before the release of his first film 'Phool Aur Kaante' in 1991, people in the film industry said he is a very "ordinary looking guy" and not "hero material".
It was supposed to be a hiccup but I never let it bother me.
Summary:
Actress Shriya Saran got married to her Russian boyfriend Andrei Koscheev in an intimate ceremony on Monday in Udaipur, Rajasthan.
Summary:
Videos including that of Kandahar attack and media footage following the 9/11 attack were acquired by the film's team.
Summary:
The CBI has arrested two former SBI managers, a former Canara Bank manager and four others for allegedly defrauding a SBI branch in Kolkata of â¹15 crore.
Summary:
Google has launched a Play Instant feature which allows users to tap and try a game without downloading it first on Play Store.
Summary:
Followers of Lingayat and Veerashaiva sects clashed on Monday in Karnataka's Kalaburagi, hours after the state government decided to move to Centre an expert panel's recommendation to grant separate religion status to Lingayats.
Summary:
Hotel aggregator Oyo said on Monday that it has acquired Chennai-headquartered service apartment company Novascotia Boutique Homes for an undisclosed amount.
Summary:
However, all 162 city-run schools and 88 of the 105 government-aided schools have applied for fire safety certificates, he added.
Summary:
The Punjab Cabinet has cleared a proposal mandating Chief Minister and other state ministers to pay the income tax on their salaries themselves.
Summary:
YSR Congress Party (YSRCP) chief Jagan Mohan Reddy on Tuesday tweeted that the Special Category Status (SCS) is Andhra Pradesh's lifeline.
Summary:
She had boarded the auto-rickshaw with her parents but was unable to reach the hospital in time.
Summary:
Whistleblower Christopher Wylie revealed that the firm received the data from Global Science Research which harvested 50 million Facebook profiles.
Summary:
'Sonu Ke Titu Ki Sweety' has become the second film of 2018 to enter the â¹100 crore club in India after 'Padmaavat'.
Summary:
AAP's Punjab MLA Kanwar Sandhu has demanded External Affairs Minister Sushma Swaraj's resignation for allegedly spreading lies about the 39 Indians missing in Iraq's Mosul.
Summary:
Summary:
The instructors will teach people who are above 15 years of age, Director of Kerala literacy mission PS Sreekala said.
Summary:
Summary:
Though demonetisation failed to meet any of its objectives, the government had won the "perception battle", Sinha said.
Summary:
Meanwhile, Congress leader Ghulam Nabi Azad demanded the government provide the families of the victims with financial assistance and jobs.
Summary:
China has territorial disputes with around 10 countries, including India and Bhutan.n
Summary:
Saudi Arabia on Sunday auctioned the real estates and vehicles owned by the Kingdom's indebted businessman Maan al-Sanea and his company to repay the debts worth over â¹31,000 crore towards the company's creditors.
Summary:
The police said "the driver was unaware what the problem was" despite travelling with only three tyres.
Summary:
A London woman named Andria Zafirakou has been named the world's best teacher and received $1 million (â¹6.5 crore) in prize money at a Dubai award ceremony.
Summary:
The wreckage of a US warship that was sunk by the Japanese in 1942 during World War II has been found around 4,000 metres deep in the Pacific Ocean.
Summary:
Reacting to Indian wicketkeeper-batsman Dinesh Karthik's match-winning knock of 29*(8) in the T20I tri-series final, batsman Lokesh Rahul tweeted, "Brilliant finish to what has been a memorable season with the Indian team...Dinesh Karthik...you F***$n Beauty!" "Oof!
Six over covers.
Summary:
Orville Rogers, a 100-year-old former World War II bomber pilot, set a world record in men's 60-metre 100-plus age group with a timing of 19.13 seconds.
Summary:
The Athletics Federation of India (AFI), who have already reached Gold Coast for the upcoming Commonwealth Games, have no idea about the whereabouts of discus thrower Seema Punia.
Summary:
Indian Test opener Murali Vijay was slammed by Twitter users for not mentioning Dinesh Karthik's name in his congratulatory tweet following India's tri-series victory.
Notably, Murali Vijay is married to Dinesh Karthik's ex-wife Nikita.
Summary:
Team India stand-in captain Rohit Sharma gifted two VIP tickets for the T20I tri-series final to a Sri Lankan net bowler who got injured after being hit by a Rishabh Pant drive.
Summary:
Rajasthan-based rural health-tech startup Karma Healthcare has raised â¹3 crore in a funding round from equity crowdfunding platform 1Crowd.
Summary:
Scientists have detected radio signals from a tidal disruption flare, which is stellar material erupted from a black hole as it "feeds" on a star.
Summary:
The flats are said to be unsold because they are unaffordable due to heavy taxes.
Summary:
JNU Dean of Students Umesh Ashok Kadam on Tuesday filed an FIR against 17 students, including JNU Students Union President Geeta Kumari, alleging that they assaulted him.
Summary:
A panel suggested hiking the salaries of lower court judges by 30% as an interim relief, a statement issued on Monday read.
Summary:
The Delhi government on Monday launched a mobile app called "Delhi's Date with Democracy" with an aim to allow applicants from all parts of the city to showcase their talent.
Summary:
A nine-year-old boy in the US state of Mississippi shot his sister dead by grabbing a handgun kept next to the bed after the two engaged in an argument over a video game controller, police have said.
Summary:
Former French President Nicolas Sarkozy has been taken into police custody over allegations that he received funding for his 2007 election campaign from the regime of late Libyan dictator Muammar Gaddafi, officials said.
Summary:
The 39 Indians who were kidnapped by ISIS in 2014 in Iraq have died, External Affairs Minister Sushma Swaraj said on Tuesday.
Summary:
Irrfan Khan, while sharing a poem on his illness, wrote, "Just keep going.
Summary:
Actress Jacqueline Fernandez's look from the upcoming film 'Race 3' has been unveiled.
Summary:
The world's last male northern white rhino, 45-year-old Sudan, was euthanised in Kenya on Monday after his condition worsened and he was unable to stand.
Summary:
Indian captain Virat Kohli's Instagram account, which has over 19.8 million followers so far, was named the 'Most Engaged Account' as part of the 2017 Instagram Awards in India.
Summary:
Facebook suffered its biggest drop in over three years after losing nearly $40 billion in market value in a day following reports of Cambridge Analytica's data scandal.
Summary:
Alexander Nix, CEO of Cambridge Analytica which exploited user data to manipulate the US elections, was captured in a footage bragging about how it could use bribes and sex workers against politicians.
Summary:
A 24,583-metre-long cave that was discovered in 2016 in Meghalaya has been found to be the world's longest sandstone cave by the Meghalaya Adventurers' Association.
Summary:
US-based metal 3D printing startup Desktop Metal has raised $65 million in a funding round led by Ford Motor company.
Summary:
Slamming former Karnataka DGP HT Sangliana for his comments on her and her daughter, Nirbhaya's mother said he had disrespected the fight her daughter put up in those "monstrous moments".
Summary:
CRPF Commandant Chetan Kumar Cheeta has reported back to duty almost a year after he sustained nine bullet injuries in an encounter with terrorists in Jammu and Kashmir.
Summary:
Chief Election Commissioner Om Prakash Rawat on Monday said that the EC will look into the demand for use of ballot papers in elections instead of Electronic Voting Machines (EVMs).
Summary:
A four-month-old infant girl in Rajasthan's Bhilwara was hospitalised after she was allegedly branded with an iron rod to cure her severe cough and cold, police said on Monday.
Summary:
Hindi poet Kedarnath Singh on Monday passed away at the age of 83 in New Delhi after a prolonged illness.
Summary:
She has reportedly injured her right shoulder and arm and has been advised bed rest.
Her right arm is bandaged and held up in a sling," reports stated.
Summary:
Former world number one tennis player Ana Ivanovic and World Cup-winning German footballer Bastian Schweinsteiger took to Twitter to announce the birth of their first child, a baby boy.
"Welcome to the world our little boy.
Summary:
India's 16-year-old shooter Manu Bhaker, who won two gold medals at the ISSF World Cup recently, said that she will pursue her dream of becoming a doctor even if she becomes one of the country's best shooters.
Summary:
South Africa's Kagiso Rabada is cleared to play in the Cape Town Test after his two-match ban for making physical contact with Australian captain Steve Smith after dismissing him was overturned by the ICC.
Summary:
Talking about the recent data scandal involving the company, Facebook's VP of Consumer Hardware Andrew Bosworth has said, "While this was not a data breach...
Summary:
Amazon CEO and the world's richest man Jeff Bezos has shared a picture of himself walking a robot dog, made by American company Boston Dynamics, at a recent conference.
Summary:
A nurse on the flight confirmed he had no pulse and was not breathing, following which passengers and crew members used the onboard defibrillator to revive him.
Summary:
Ahead of the Karnataka Assembly election, Congress President Rahul Gandhi will visit temple, church and dargah in the state on Tuesday.
Summary:
DMK Acting President MK Stalin has demanded that the Tamil Nadu government stop the Vishva Hindu Parishad's Ram Rajya Rath Yatra from entering the state.
Summary:
Taking a dig at Uttar Pradesh CM Yogi Adityanath's event 'Ek Saal Nayi Misal', BSP chief Mayawati on Monday told the BJP to introspect their failures instead of celebrating one year in office.
Summary:
The Union Home Ministry has given its approval to rename Robertsganj railway station in Uttar Pradesh as Sonbhadra, a ministry official has confirmed.
Summary:
Employee unions of All India Radio and Doordarshan have written to Information and Broadcasting Ministry asking to pay salaries directly, instead of routing them through parent agency Prasar Bharati.
Summary:
An anti-immigrant organisation has installed advertisements against H-1B visas at railway stations and on trains around California's San Francisco Bay Area which houses the Silicon Valley, the hub of the world's top IT companies.
Summary:
Facebook CEO Mark Zuckerberg's net worth dropped by $6.06 billion in one day following reports that Cambridge Analytica exploited over 50 million users' personal data to support Donald Trump's election campaign.
Summary:
Sunil Grover, while responding to Kapil Sharma accusing him of lying and spreading rumours, said, "He's a good comedian, I'm not as good as him".
Summary:
She further urged the media to help her get Shami and his family arrested "immediately".
Summary:
A dog named Pickles found the Jules Rimet trophy, the original prize of FIFA World Cup, seven days after it was stolen ahead of the tournament's 1966 edition.
Summary:
"They (Shami and Alishba) had a plan to meet at the hotel and is it only over in breakfast?
Summary:
A 40-seater US restaurant named The Lost Kitchen is only accepting reservations sent by people who submit a written request via mail.
Summary:
YSR Congress and TDP members on Monday skipped a lunch hosted by Lok Sabha Speaker Sumitra Mahajan after their no-confidence motions were not taken up for discussion in the House.
Summary:
After the meeting, Rao said the proposed Third Front will be led collectively and will be a "federal front".
Summary:
He died due to multiple organ failure at around 1:35 am at Chennai's Gleneagles Global hospital.
Summary:
The bank assessed 67 nations on various parameters such as their vulnerability to the physical impact of climate change, ability to respond to climate change, among others.
Summary:
A CPI (M) leader convicted of the murder of a rival Left leader in Kerala has been receiving 15-day parole every month since 2015, an RTI filed by the deceased's wife has revealed.
Summary:
Referring to one of Mahatma Gandhi's writings in the Colonial-era weekly publication 'Harijan', RSS chief Mohan Bhagwat said Gandhi ji was a 'kattar' (hardcore) Hindu.
Summary:
Punjab Police on Monday arrested Ranjit Singh alias Rana, a member of the pro-Khalistan group Bhindranwale Tigers Force (BTF).
Summary:
An Australian mechanical engineer has claimed to have located the wreckage of missing Malaysian Airlines flight MH370 near US' uninhabited Round Island with the help of NASA and Google Maps.
Summary:
Indian real estate firm IREO, which has partnered with The Trump Organization to build an office tower in India, has been accused of defrauding its foreign investors of at least â¹958 crore.
Summary:
Saif Ali Khan's daughter Sara Ali Khan has been confirmed as the lead actress in Rohit Shetty's upcoming directorial 'Simmba'.
Summary:
The film, which will release in 3D, will also star actor Prabhudheva.
Summary:
European football governing body UEFA has charged French club Lyon with racist behaviour and crowd disturbance after around 150 hooded Lyon fans injured eight police officers in clashes ahead of their Europa League match.
Summary:
This comes after Shami's wife had alleged that Shami had taken money from a Pakistani girl named Alishba in Dubai.
Summary:
IndiGo on Monday said that it detected five technical snags from five of its planes within 24 hours.
Summary:
Naik said he was inspired by Congress President Rahul Gandhi's speech at the partyâÂÂs 84th Plenary Session.
That inspired me," he said.
Summary:
Summary:
The Surat Police on Monday arrested three people for attempting to derail the Pune Ahmedabad Ahimsa Express in December 2017.
Summary:
Sharma was protesting the presence of disqualified AAP MLA and Transport Minister Kailash Gahlot in the Assembly.
Summary:
Sasikala has reportedly applied for a 15-day parole, but the number of days granted will depend on the jail authorities.
Summary:
US President Donald Trump on Monday issued an executive order banning all US transactions involving Venezuela's cryptocurrency 'Petro'.
Summary:
Palestinian President Mahmoud Abbas on Monday called the US Ambassador to Israel David Friedman a "son of a dog" for defending Israelis over building of settlements in occupied West Bank.
Summary:
While it covers your medical treatment, it also takes care of your fitness with the Wellness Program and you can also avail alternative treatment like Ayush.
The OPD cover takes care of out-of-pocket expenses like doctor's consultation and medical bills.
Summary:
Cab-hailing startup Uber has stopped all self-driving car tests after a car in autonomous mode killed a woman who was crossing a street in the US state of Arizona.
Summary:
Dell's Founder Michael Dell has revealed that he used the company's first financial statement to convince his parents of his decision to drop out of college.
Summary:
Around 15 students were caught on Monday with the 'History and Political Science' question paper on WhatsApp an hour before the board exam started at a school in Maharashtra's Kalyan.
Summary:
Insisting that his wealth was a private matter, Saudi Arabia's Crown Prince Mohammed bin Salman said, "I'm a rich person and not a poor person.
Summary:
The kettle contained about 300 ml of liquor and its opening was sealed with natural fibres, a researcher said.
Summary:
Mumbai police have arrested three directors of Parekh Aluminex for allegedly defrauding banks of â¹4,000 crore.
Summary:
GE Aviation's GE9X, world's largest jet engine, has completed its first test flight in the US.
Summary:
Mani was the only woman in the 23-member expedition team that went to Indian research station, Bharati, in 2016.
Summary:
Prime Minister Narendra Modi on Monday congratulated Russian President Vladimir Putin on his election win following which he secured his fourth presidential term.
Summary:
Earlier, several female students had alleged that the professor made sexual remarks and openly demanded sex from them.
Summary:
Although the couple did not look directly into the CCTV, police managed to identify the two and "persuaded" them to return the cash.
Summary:
The agreement also gives EU citizens arriving in the UK during the transition the same rights and guarantees as those who arrive before Brexit.
Summary:
The US' national debt is estimated to be more than the national debt of 28 European Union nations.
Summary:
The remuneration of Larsen & Toubro Chairman AM Naik was 1,102 times the median remuneration of the employees.
Summary:
With 22.4 million followers, actress Deepika Padukone won the 'Most Followed Account' award at the first ever Instagram Awards held in the country.
Summary:
Actress Chitrangda Singh has said taking breaks took a toll on her career.
Summary:
Questioning why late actress Sridevi was honoured with a state funeral, Maharashtra Navnirman Sena (MNS) chief Raj Thackeray, said, "What did she do for the country that her body was wrapped in the tricolour?" He added, "Nirav Modi was the talk of the town, then the issue of Sridevi came in...
Summary:
Comedian Bharti Singh has said that she will join Kapil Sharma's new show 'Family Time With Kapil Sharma' if required.
Summary:
The agency has alleged that the directors knew Dubey and used the connection to get loans, which turned non-performing.
Summary:
Further, 18-year-old Washington Sundar who was named player of the tournament in the recently concluded tri-series, vaulted 151 places to claim a career-best 31st position.
Summary:
Eighteen-time women's singles Grand Slam champion Martina Navratilova has slammed BBC for paying seven-time men's singles Grand Slam champion John McEnroe 10 times more than her for Wimbledon coverage.
Summary:
India became the first-ever team to put up a 400-plus total in a Cricket World Cup match on March 19, 2007, nearly 32 years after the first-ever World Cup match was played.
Summary:
TDP MP Naramalli Siva Prasad on Monday wore a sari to Lok Sabha, accusing the Centre of cheating the women of Andhra Pradesh through policies like demonetisation and GST.
Summary:
Gurugram-based raw meat retailing startup Zappfresh has raised â¹20 crore led by consumer goods firm Dabur India's vice-chairman Amit Burman.
Summary:
The youth blackmailed her for sexual favours and when she refused, they posted the pictures online.
Summary:
At least 23,000 millionaires have left India since 2014, with 7,000 in 2017 alone, according to a Morgan Stanley report.
Summary:
The Enforcement Directorate on Monday moved the Delhi High Court challenging the acquittal of former Telecom Minister A Raja, DMK leader Kanimozhi and the other accused in the 2G scam.
Summary:
Under former President Boris Yeltsin's rule, Putin was appointed the Director of the Federal Security Service.
Summary:
Rohit Menda shared screenshots of the booking on Twitter asking Ola to check its systems.
Summary:
Priyanka Chopra, while talking about gender equality, said, "Don't question me...I can be a CEO and a mother." She said this while explaining to a reporter how women can handle multiple roles just like men.
Summary:
Pakistani model Alishba, who was accused of giving money to Mohammad Shami in Dubai on insistence of UK-based businessman Mohammed Bhai by the cricketer's wife, has denied offering money to the cricketer.
I personally don't know Mohammed Bhai...
Summary:
Data firm Cambridge Analytica, accused of exploiting Facebook users' personal data to support Donald Trump's 2016 election campaign, is reportedly in talks with Congress and the BJP for upcoming Lok Sabha election campaigns.
Summary:
Indian startups like Belfrics and Drivezy raised $2.2 million and $5 million respectively through ICOs in other countries.
Summary:
They are accused of misappropriation of National Herald owner Associated Journal's assets while transferring their shares to Young Indian.
Summary:
The Karnataka government has accepted the suggestion of an expert panel and sought separate religion status for the Lingayat community.
Summary:
The Punjab Cabinet on Monday decided to amend the Cigarettes and Other Tobacco Products Act to impose a permanent ban on hookah bars instead of issuing temporary orders every two months.
Summary:
Saudi Arabia has seen an expansion in women's rights including a decision to allow women to drive cars.
Summary:
Binani had approached UltraTech for arranging funds to pay-off the debts in exchange for selling Binani Cement.
Summary:
Benchmark index BSE Sensex on Monday fell 252.88 points to end at 32,923, marking a close below 33,000 for the first time in more than 14 weeks.
Summary:
The theme song for the Varun Dhawan and Banita Sandhu starrer 'October' has been released.
Summary:
The remains of Spanish surrealist Salvador DalÃÂ were reburied in Spain on Friday, his estate's foundation said.
Summary:
Former Bermudan cricketer Dwayne Leverock, who weighed 127 kg during the 2007 World Cup, dived to pull off a one-handed catch at slips to dismiss India's Robin Uthappa on March 19, 2007, in the tournament.
Summary:
After leading India to a win in the T20I tri-series final with 8-ball 29*, Dinesh Karthik said, "I've been practising these shots â having a strong base and then hitting from there".
Summary:
Spanish players attacked Romanian referee Vlad Iordachescu after losing to Belgium in a Rugby World Cup Qualifier match on Sunday.
He gave 10 penalties against us...result comes from that," Spanish rugby federation's president tweeted.
Summary:
Following his match-winning eight-ball 29* and last-ball six against Bangladesh, Dinesh Karthik said he has learned how to finish chases from former captain MS Dhoni.
Summary:
Jack Ma-led Chinese e-commerce giant Alibaba has said it will invest $2 billion in Southeast Asian e-commerce firm Lazada Group.
Summary:
Portugal is leasing abandoned forts, monasteries and other historic sites to private groups to turn into hotels to boost tourism.
Summary:
Tripura is facing a fiscal deficit of over â¹11,355 crore and the former CPI (M) government did not make receipts and expenditure estimates for implementing projects and schemes, Deputy CM Jishnu Debbarma alleged.
Summary:
It noted that the fund allocation for central universities is inadequate as compared to their infrastructure, faculty, and number of students.
Summary:
In the video, the accused can be seen beating her grandmother with slippers and a towel while the old lady was crying, reports said.
Summary:
The government is not considering any proposal to rank Kendriya Vidyalayas (KVs) across the country, union minister Upendra Kushwaha said on Monday.
Summary:
A Home Ministry panel, which was created to draft a policy for securing Indian highways, has suggested linking the registration number of vehicles with the Aadhaar number of the owners.
Summary:
Gadkari had filed a defamation case after Kejriwal named him in AAP's 'India's most corrupt' list.
Summary:
Actress Madhuri Dixit has replaced late actress Sridevi in the upcoming film 'Shiddat', which is being co-produced by Karan Johar.
Summary:
The song 'Ek Do Teen Char' which featured Madhuri Dixit from the 1988 film 'Tezaab', has been recreated as 'Ek Do Teen Song' for the film 'Baaghi 2'.
Summary:
Delhi CM Arvind Kejriwal plans to settle 33 defamation cases by apologising, claiming that they were draining Aam Aadmi Party's resources, reports said.
Summary:
A doctor in Bihar's Saharsa on Sunday performed a surgery on a woman under a torchlight after the lights over the operating table went out.
Summary:
It also admitted a plea by CBI, which moved the court after Allahabad High Court overturned their conviction.
Summary:
The Indian Army has released a video warning WhatsApp users that Chinese hackers are targeting the messaging app to extract personal data.
Summary:
Amid a shortage of banknotes in the country, Venezuelan city of Elorza has begun issuing its own currency.
Summary:
Trump declared the opioid crisis a nationwide public health emergency last year.
Summary:
A Christian woman has alleged that a Western Union (WU) branch in Gurugram denied her money transferred by a Hindu friend abroad.
Summary:
Kingston Financial Group Founder Pollyanna Chu has lost her title as Hong Kong's richest woman after she lost more than half of her wealth.
Summary:
Amitabh Bachchan apologised to Dinesh Karthik for an error in his tweet congratulating the wicketkeeper and Team India for winning the T20I tri-series on Sunday.
Summary:
She added that she would have loved to do some more roles like that.
Summary:
University of Michigan basketball team's Moritz Wagner stopped his celebrations with his teammates midway to console University of Houston's Corey Davis Jr after winning an NCAA match through last second buzzer beater.
Summary:
Team India stand-in captain Rohit Sharma has revealed that Dinesh Karthik was upset when he was told to bat at number seven in the T20I tri-series final against Bangladesh on Sunday.
Summary:
Brazil's 1994 World Cup-winning star Romario has launched his bid to become governor of the state of Rio de Janeiro.
Notably, Rio de Janeiro is on the verge of bankruptcy.
Summary:
Indian commentator and former cricketer Sunil Gavaskar broke into the 'Naagin dance' celebration during the India-Bangladesh T20I final of the Nidahas Trophy on Sunday.
Summary:
Sharma had helped Nilam financially during Sri Lanka's India tour.
Summary:
Stand-in captain Rohit Sharma also waved the Sri Lankan flag to acknowledge the support given by local crowd to Team India.
Summary:
Earlier, Musk called his father a "terrible human being", and said, "Almost every crime...every evil thing you could possibly think of, he has done".
Summary:
The police have lodged a case against Union Minister of State Ashwini Choubey's son Arjit Shashwat in relation to communal clashes which took place during a procession in Bihar.
Summary:
Nationalist Congress Party (NCP) chief Sharad Pawar, who survived cancer, has said he wished he was warned against consuming tobacco and supari 40 years ago.
Summary:
A criminal investigation into the incident has been launched and the police are searching for two suspected attackers.
Summary:
Russia President Vladimir Putin secured a fourth term with over 76% of the vote in the election.
Summary:
German economy minister Peter Altmaier has said the US won't succeed if it tries to divide the European Union (EU) with import tariffs.
Summary:
This comes after Russia said that the nerve agent could have been developed in the UK.
Summary:
Railway Minister Piyush Goyal has scrapped a committee's suggestion to introduce airline-like dynamic fares in Railways, officials said.
Summary:
A Ranchi court on Monday pronounced RJD chief Lalu Prasad Yadav guilty in the fourth fodder scam case.
Summary:
Summary:
The first look of actor Salman Khan from the upcoming film 'Race 3' has been unveiled.
Sharing his look, Salman tweeted, "Is hafte milata hoon #Race3 ki family se...
Summary:
Medical staff use a remote control to steer the mini cars and carry the children to the operation theatre.
Summary:
Snapchat's CEO Evan Spiegel's net worth has dropped nearly $150 million in two days after singer Rihanna slammed the platform for running an advertisement mocking domestic violence victims.
Summary:
Earlier, Wylie admitted to creating the tool which harvested millions of Facebook profiles and targeted them with political ads.
Summary:
Separatist leader Syed Ali Shah Geelani on Monday resigned as the chief of Tehreek-e-Hurriyat Jammu and Kashmir due to health reasons and "other political burdens".
Summary:
Kerala MP Jose ManiâÂÂs wife Nisha Jose in her new book 'The Other Side of This Life' has alleged that a prominent politician's son harassed her during a train journey.
Summary:
A 13-year-old girl from Lucknow appeared for the English exam of the International Benchmark Tests (IBT) and scored 100 percentile, topping the paper.
Summary:
Officials in Haryana have caught students cheating in their Board exams, with one student hiding a mobile phone in a hollow cardboard and another keeping a bluetooth device in his turban.
Summary:
"We thought our wedding ceremony would be the right occasion...as there would be a lot of guests and it would help create awareness for organ donation," the bride said.
Summary:
Nearly 350 Brahmins on Sunday began burning 500 quintals of mango tree wood to curb pollution as part of nine-day 'mahayagya' event organised by the Shri Ayutchandi Mahayagya Samiti in Meerut.
Summary:
Nobel-winning economist Paul Krugman has said that India needs to move more into manufacturing to create jobs for unskilled people.
Summary:
Talking about working with actress Deepika Padukone, actor Rajkummar Rao said, "We spoke about each other's work and also discussed that we must do something together, and hopefully, the opportunity will come soon." He called Deepika one of the finest actresses in India currently.
Summary:
An installation of six lakh clay figures will open to the public this month in Belgium to commemorate the carnage during World War I.
Summary:
World number one Roger Federer suffered the first loss of 2018 which also snapped his unbeaten streak at 17 wins, after going down against Argentina's Juan Martin del Potro in the third-set tie-breaker in the final of Indian Wells Masters.
Summary:
India's stand-in captain Rohit Sharma revealed that he missed Dinesh Karthik's tournament-winning last-ball six as he was padding-up for the super over, which would have taken place if the scores were tied.
Summary:
This comes after Google announced plans to ban advertisements promoting cryptocurrencies and related content from June this year.
Summary:
Google-owned video-sharing platform YouTube's Kids app has been found suggesting conspiracy theory videos while searching for certain keywords.
Summary:
Data firm Cambridge Analytica's CEO Alexander Nix has been accused by the UK lawmakers of making false statements in a testimony.
Summary:
PM Narendra Modi laid the foundation stone for the Navi Mumbai International Airport on Sunday.
Summary:
CPI(M) General Secretary Sitaram Yechury has said that although the aim is to remove the BJP from power, there can't be any "pan-Indian, broad, pre-poll front" against it.
Summary:
Accel Partners-backed Mumbai-based ready-to-cook food startup Fingerlix has raised â¹8.5 crore from venture debt firm Alteria Capital.
Summary:
A children's book titled 'Great Leaders' published by BJain publishing group has listed German dictator Adolf Hitler among the 11 world leaders "who will inspire you".
Summary:
The girl's body was found near the neighbours' house in their native village.
Summary:
Parents must be encouraged as good attendance reflects efforts put in by them towards schooling their children, officials added.
Summary:
A local resident, who used to feed the puppies daily, had alerted the NGO about their disappearance.
Summary:
The drivers' main demand is that the startups ensure â¹1.5-lakh salary per month that was promised earlier.
Summary:
Vladimir Putin has been elected as the President of Russia for his fourth term with over 76% of the votes, and will now lead the country for another six years.
Summary:
Only 229 of over 1 lakh cases registered under Protection of Children from Sexual Offences (POCSO) Act were resolved in 2016, according to the National Crime Records Bureau data.
Summary:
The US announced the war on Iraq on March 19, 2003, after then-President George W Bush initiated Operation Iraqi Freedom.
Summary:
Dinesh Karthik has become the first Indian to win a T20I with a six off the match's last ball.
Summary:
With the victory against Bangladesh in the T20I tri-series final, the India team has now registered the second most victories in the shortest format.
Summary:
Mark Zuckerberg and Jeff Bezos-backed early-stage VC firm Village Global has raised $100 million for its seed fund.
Summary:
Apple is reportedly developing its own MicroLED device displays for the first time at a secret manufacturing facility in the US for testing purposes.
Summary:
A 39-year-old Maharashtra man was able to eat solid food for the first time in 38 years after a surgery allowed him to open his mouth wide enough to talk and eat properly.
Summary:
Adding that weapon procurement is not an overnight process, he said, "ItâÂÂs not that you go to a grocery store, pay the amount and get the weapons.
Summary:
While 94,172 instances of crime against children were recorded in 2015, a total of 1,06,958 such instances were reported in 2016.
Summary:
A private institute in Noida has set up a gender-neutral toilet after its only transgender student told the management about the problem of choosing between male and female washrooms.
Summary:
The Government Medical College in J&K has removed a doctor from his post after he corrected the state Health Minister's Facebook post.
Summary:
A Hindu New Year calendar issued by the Aligarh Hindu Mahasabha states that the Taj Mahal, holy Muslim site of Mecca, and several mosques and Mughal-era monuments are temples.
Summary:
As per reports, Sanjana Sanghi has been cast in the Hindi remake of Hollywood film 'The Fault In Our Stars'.
Summary:
Cricket legends Sachin Tendulkar and Rahul Dravid got out stumped only once in their Test careers spanning 200 and 164 matches respectively.
Summary:
Summary:
The match featured a 286-run innings from 40-year-old Wasim Jaffer.
Summary:
The match featured Australian wicketkeeper Alyssa Healy scoring her maiden international century.
Summary:
Madrid secured a 6-3 win over Girona.
Summary:
MNS chief Raj Thackeray on Sunday said that opposition parties have to come together to ensure a "Modi-mukt Bharat".
Summary:
The Central Industrial Security Force (CISF) has inducted a dog squad comprising of eight female Labradors for security operations on the Delhi Metro.
Summary:
A 43-year-old physically disabled man has reportedly been borrowing money from his friends and others to pay maintenance to his able-bodied wife in Delhi.
Summary:
His comments come amid criticism against the state government for frequent transfers of civil servants.
Summary:
Reacting to Congress President Rahul Gandhi's speech at Congress Plenary Session, UP Shia Waqf Board Chairman Waseem Rizvi on Sunday urged Rahul to help PM Modi-led Centre in building Ram Mandir in Ayodhya.
Summary:
A man rammed his car into a nightclub in UK's Gravesend town after he was thrown out of the venue, injuring at least 13 people.
Summary:
India's Neeraj Rathi and Karamjit Kaur finished fourth and eighth in the men's and women's events respectively at the Asian 20km Race Walking Championship.
Summary:
Travel company SOTC's Super Holiday Sale offers all-inclusive holiday packages starting from â¹26,000 with Airfare to destinations around the world.
The Super Holiday Sale will end on March 23.
Summary:
India defeated Bangladesh by four wickets in the final of the T20I tri-series in Colombo on Sunday to register their fourth consecutive T20I series victory.
Summary:
All the components of the car were printed except for the chassis, seats, and glass.
Summary:
Reacting to the several allegations levelled against him by his wife Hasin Jahan, cricketer Mohammad Shami has stated that he is innocent and his only crime is that he married Hasin Jahan.
Summary:
The Supreme Court has asked novelist Rupnarayan Sonkar to make a reasonable offer to film director Rakesh Roshan for settling a case related to alleged copyright violation in the 2013 film 'Krrish 3'.
Summary:
Indian cricketer Mohammad Shami's wife Hasin Jahan has said that she wants to meet West Bengal Chief Minister Mamata Banerjee and share her pain.
Summary:
Indian opener Rohit Sharma has become the third Indian batsman to score 7,000 runs in T20 cricket, achieving the feat during his 56-run knock in the T20I series final against Bangladesh on Sunday.
Summary:
A clock installed at Amsterdam's Schiphol airport features an illusion of a man erasing and redrawing the clock's hands every minute from inside a box.
Summary:
Meanwhile, Defence Minister Nirmala Sitharaman said the Congress is questioning EVMs as it's against technology and transparency.
Summary:
Interestingly, when Sidhu was part of the BJP, he had called then PM Manmohan a "Pappu PM".
Summary:
Following an argument with his mother during the day, the man killed her with a sharp object and surrendered to the police.
Summary:
Chimpula Shailaja said the government authorities had failed to release the funds for development works despite court orders.
Summary:
"RBI does not recycle such processed notes," the central bank said in reply to an RTI query.
Summary:
Chinese President Xi Jinping on Saturday became the country's first leader to take oath on the Constitution after he was unanimously re-elected to serve indefinitely.
Summary:
A driver in the UK's Milton Keynes town presented a fake licence featuring the cartoon character Homer Simpson after he was stopped by the police.
Summary:
Summary:
As per reports, actress Kriti Sanon will star in 'Housefull 4' opposite Akshay Kumar.
Summary:
Actress Rose McGowan, while talking about Hollywood producer Harvey Weinstein who she accused of raping her, said, "I'm sure he would prefer it if I were dead." She added that people she finds worse than him are his lawyers.
Summary:
Actress Angelina Jolie has said she loves "seeing herself age" while adding, "I look in the mirror...I see that I look like my mother...
that warms me." The 42-year-old actress further said, "Don't love having a random dark spot from a pregnancy, sure.
Summary:
Hotel booking websites have reported a rise in searches for the fictional country 'Wakanda' from the movie 'Black Panther'.
Summary:
Dr Matt Gibbs, a history expert at the university, found the original recipe written by a 4th-century Egyptian alchemist and translated it from ancient Greek before working with the brewery to modernise the brewing process.
Summary:
Rai also revealed that Kohli and Dhoni had suggested awarding elite category central contracts to top performers of the team.
Summary:
A Newark-Missouri United Airlines flight was diverted to Ohio after the crew realised that a dog was 'mistakenly' placed on the wrong plane, the airline said in a statement.
Summary:
A stewardess reportedly found the man with his pants down and the woman sitting on the toilet.
Summary:
Amid Andhra Pradesh leaders' demands for special status for the state, Union Minister Piyush Goyal said CM Chandrababu Naidu had failed to develop the state despite the funds being given by the Centre.
Summary:
Her family has blamed the BJP minister and his family for harassing and pressurising her to get married to someone else.
Summary:
Telecom regulator TRAI plans to issue a consultation paper by month-end that will seek to speed up the process of mobile network porting.
Summary:
Only three days before the first-ever spacewalk, scheduled on March 18, 1965, a dummy mission with an empty spacesuit had exploded shortly after launch.
Summary:
Take care of your health." This comes after Kapil accused Sunil of lying and spreading rumours.
Summary:
Technology giant Microsoft has offered about â¹1.6 crore as bug bounty to identify new categories of bugs in chips.
Summary:
Referring to the Hindu epic Mahabharata, Congress President Rahul Gandhi on Sunday compared the BJP and RSS to the Kauravas, stating they are arrogant and "designed to fight for power".
Summary:
Defence Minister Nirmala Sitharaman on Sunday described Congress President Rahul Gandhi's speech at the Congress Plenary Session as "a rhetoric of a loser devoid of substance".
Summary:
This comes after Congress MP Ripun Bora moved a resolution in Parliament seeking replacement of 'Sindh' with 'Northeast India' in the anthem.
Summary:
Slamming Trump's tariffs on steel and aluminium, Krugman said they could lead to a trade war.
Summary:
The elections are being held on the day marking the fourth anniversary of Russia's annexation of Crimea.
Summary:
Rangarajan's statement comes after Governor Urjit Patel said the RBI has limited legal authority over state-run banks.
Summary:
The GST returns data showed that 34% of the businesses paid â¹34,400 crore less tax during the period while filing initial returns.
Summary:
Radhika Apte said there were rumors of her dating Tusshar Kapoor when she did not even have his phone number.
Summary:
Actor Amitabh Bachchan shared a picture on social media with his daughter Shweta Nanda on Sunday from when she was child while captioning it, "Shweta...
Summary:
Kangana Ranaut, while talking about being a big fan of PM Narendra Modi, said, "Whenever we have a PM who is a chaiwala...it is not his victory but it is the victory of our democracy." Kangana added that she is his fan because of his success story.
Summary:
Former Pakistan cricket coach Bob Woolmer was found dead in his hotel room in Jamaica on March 18, 2007, just a day after Pakistan was knocked out of the World Cup by Ireland.
Summary:
The study took seven years of research to achieve the accuracy.
Summary:
Summary:
The US government's road safety agency has launched an investigation into faulty airbags in certain Hyundai and Kia vehicles that have caused four deaths.
Summary:
The Rajasthan Police is reportedly planning to use Aadhaar data to verify the identity of criminals, complainants, suspects, and missing persons in the state.
Summary:
A video showing a thief using a transparent plastic bag to cover his face during a robbery at a mobile store in Tamil Nadu's Kanyakumari has surfaced online.
Summary:
A 20-year-old newly-wed woman committed suicide by jumping from the 14th floor of a building in Mumbai's Tardeo on Friday, police said.
Summary:
The man had threatened his wife against telling anyone, but she confided in the girl's teacher after being called to school one day.
Summary:
The Centre has told the Supreme Court that Rohingya refugees cannot be equated with Sri Lankan Tamil refugees, who fled the war in the country during the 1980s.
Summary:
Former PM Jawaharlal Nehru did not trust the Chinese and called them "arrogant, untrustworthy, devious and hegemonistic," according to a book citing former diplomat G Parthasarathi's notes.
Summary:
However, Ukraine has barred Russian citizens on its territory from voting in the election in row over the annexation of Crimea.
Summary:
Arguing that teachers should not be armed with guns in the US as most of them are women, a Republican lawmaker claimed that women are scared of guns and don't want to learn how to shoot.
Summary:
Malaysian Prime Minister Najib Razak has said that militant groups like the Islamic State may try to recruit Rohingya Muslims who have been facing persecution in Myanmar.
Summary:
A city in the US state of New York has imposed an 18-month Bitcoin mining ban in an attempt to stop miners from using the city's low-cost electricity.
Summary:
Earlier in the day, an attack from IP addresses from 15 countries targeted the commission's website soon after the voting began.
Summary:
Shashi, who debuted as a lead actor in the 1961 film 'Dharmputra', was honoured with the Padma Bhushan in 2011 and received the Dadasaheb Phalke Award in 2015.
Summary:
Comedian Kapil Sharma has accused Sunil Grover of spreading rumours and lying about not getting a call for the former's new show 'Family Time With Kapil Sharma'.
Summary:
Former Indian cricketer Rahul Dravid, who among other celebrities was duped of crores of rupees under a Ponzi scheme being run by a Bengaluru-based investment firm, has filed a police complaint against the firm.
Summary:
Team India captain Virat Kohli has the same highest ODI score of 183 as that of former captains Sourav Ganguly and Mahendra Singh Dhoni.
Summary:
Speaking at Congress' 84th Plenary Session, former Prime Minister Manmohan Singh said that the Narendra Modi-led government has "mismanaged Jammu and Kashmir like never before".
Summary:
Former Finance Minister P Chidambaram has said that RBI officials should take help from hundi collectors in Tirupati as they count money faster than the RBI.
Summary:
The Finance Ministry rejected the highest number of RTI applications during 2016-17 among all central government departments and union ministries, a report by Central Information Commission has revealed.
Summary:
An Army Major from Corps of Engineers has alleged that the Army exam for pursuing higher education from IITs is rigged and there is "manipulation" in the selection procedure.
Summary:
In a press conference on Saturday, the municipal chairperson in Telangana's Sircilla said that it was the duty of contractors to give bribes to councillors since the councillors spend a lot of money during elections.
Summary:
An FIR has been filed against a rape complainant in Haryana's Rohtak for turning hostile during court proceedings, leading to the accused's acquittal.
Summary:
Three doctors of All India Institute of Medical Sciences (AIIMS) were killed while four others were injured after their SUV hit a mini-truck on Yamuna Expressway near Delhi on Sunday.
Summary:
This is the first time since 2002 that Pakistan has called back its envoy from India in this regard.
Summary:
Actor Ranveer Singh has said that he is blessed to have actress Deepika Padukone in his life.
Summary:
Talking about bagging his debut film 'Band Baaja Baaraat', Ranveer Singh said, "Ranbir Kapoor said no to 'Band Baaja Baaraat'.
Summary:
The note detailed how the sender's grandfather received the statue in the 1930s but never returned it.
Summary:
Indian opener Shikhar Dhawan smashed the fastest debut hundred in Test history off 85 balls against Australia in the Mohali Test that ended on March 18, 2013.
Summary:
Following the on-field and off-field controversy during the Sri Lanka-Bangladesh Nidahas Trophy T20I, former Sri Lankan captain Sanath Jayasuriya termed the visiting Bangladeshi team's behaviour as '3rd class' in a tweet, before deleting it.
Summary:
American whistleblower Edward Snowden has said that the surveillance companies which collect personal data for money are being rebranded as social media, and called it "the most successful deception".
Summary:
Speaking at the Congress' 84th Plenary Session, party leader Anand Sharma on Sunday said that the BJP-led government has disrupted the continuity of India's foreign policy.
Summary:
Punjab Congress leader Navjot Singh Sidhu on Sunday asked Congress President Rahul Gandhi to gather all party workers as he would be hoisting the flag at Red Fort next year.
Summary:
BJP MP Vinay Katiyar has said the Hindu community must be ready for "martyrdom" for Ram Janmabhoomi which demands "another sacrifice".
Summary:
Only 5% of the Tihar jail welfare fund earmarked to give some compensation to victims of crimes committed by the convicted prisoners has been distributed since 2010.
Summary:
An 18-year-old girl allegedly committed suicide by hanging herself on Thursday after her mother didn't allow her to attend her friend's birthday party in Bengaluru's Kempegowda Nagar.
Summary:
Investigators also discovered that the woman had married her son 10 years ago.
Summary:
Fired ex-FBI Deputy Director Andrew McCabe kept memos about his conversations with US President Donald Trump, reports said.
Summary:
Accusing ousted Pakistan Prime Minister Nawaz Sharif of looting the country's wealth and stashing it abroad, Pakistan cricketer-turned-politician Imran Khan said that he was ready to take on "Sharif Mafia".
Summary:
Five civilians were killed and two were injured on Sunday due to heavy shelling by Pakistan in Jammu and Kashmir's Poonch district, police officials said.
Summary:
The emergency was imposed to control communal violence after Buddhists and Muslims clashed in the country's central district of Kandy.
Summary:
As much as â¹11,302 crore belonging to over 3 crore account holders is lying unclaimed with 64 banks, RBI data has revealed.
Summary:
On March 18, 1965, Soviet cosmonaut Alexey Leonov performed the first spacewalk in history.
Summary:
Summary:
Indian-origin British billionaire Sanjeev Gupta has revealed plans to build the world's biggest lithium-ion battery in South Australia.
Summary:
Late Apple Co-founder Steve Jobs' job application dating back to 1973 before Apple was founded, has been sold for $174,000.
The application was sold to an anonymous buyer from England, US-based auction house RR Auction said.
Summary:
Data analytics firm Cambridge Analytica exploited personal data from more than 50 million Facebook users to support President Donald Trump's 2016 election campaign, according to reports.
Summary:
In total, Google found statistically significant pay differences for 228 employees across six job groups and increased the compensation for those employees.
Summary:
Summary:
Stating that Congress was happy without any reason, BJP chief Amit Shah on Saturday said that Congress lost a total of 11 states but celebrates its victory in 11 seats.
Summary:
"There is a difference between secular and irreligious.
Government must be secular, not irreligious...Today's secularists have turned secularism to mean abusing India's traditions," he added.
Summary:
Nobel laureate and American economist Paul Krugman on Saturday said that India has achieved as much economic progress in the last 30 years as the UK achieved in 150 years.
Summary:
Summary:
While social media is helpful, "we cannot ignore the capacity of fake news to demean.
Summary:
Expressing concern over the legal system in India, President Ram Nath Kovind on Saturday said that it has a reputation for being expensive and prone to delays.
Summary:
The state produced over 70,000 kilograms of biomedical waste such as used syringes, bandages, and amputated body parts daily in 2016.
Summary:
Gurib-Fakim's lawyer said that she submitted her resignation in the "national interest".
Summary:
A technician at China's Xiamen airport reportedly got a 10% pay cut after a video featuring him went viral, with users praising his 'handsome' looks and comparing him to a South Korean actor.
Summary:
Egyptian forward Mohamed Salah hit four goals in Liverpool's 5-0 win over Watford in the Premier League on Saturday.
Summary:
The Bangladesh Cricket Board issued an apology on behalf of its national cricket team following the final-over altercation that took place between the Bangladeshi players and the Sri Lankan team in the Nidahas Trophy 6th T20I on Friday.
Summary:
World number three PV Sindhu crashed out of All England Open, the oldest badminton tournament, after losing in the semi-final, thereby ending India's challenge at the tournament.
Summary:
The app, which allows users to streamline takeout by letting co-workers carry each others' orders, lists the users' names, profile photos along with their office floors.
Summary:
US-based ride hailing startup Uber is in talks to sell some of its self-driving systems to carmaker Toyota for use in its vehicles, according to reports.
Summary:
A 23-year-old man in Delhi died last week after he accidentally shot himself while taking selfies with a pistol, police said.
Summary:
PM Narendra Modi on Friday said that his government believes in the 'Act East and Act Fast for India's East' policy.
Summary:
Hussin used to keep snakes at his home to observe and learn their behaviour.
Summary:
If the USB key is plugged in, it prompts an alert and the employee is escorted out of the building.
Summary:
Actor Amitabh Bachchan has termed the Copyright Act which allows exclusive rights of an author's work to their heirs only for 60 years as "rubbish".
Summary:
Nawazuddin Siddiqui has no direct role in the Call Data Records case, police said.
Summary:
"Personally, I feel politics is a wonderful field...(which) is often misunderstood...But what I don't like is the fashion sense of politicians," she added.
Summary:
The 2,000th ODI between Zimbabwe and Pakistan on April 10, 2003, came 32 years after the first-ever ODI, which was played on January 5, 1971 between England and Australia.
Summary:
Chennaiyin, who had won the tournament for the first time in 2015, have equalled Kolkata-based ATK's record of two ISL titles.
Summary:
This comes after reports claimed that only one out of 118 gender discrimination complaints filed by women employees between 2010 and 2016 were supported by Microsoft's investigations.
Summary:
The party has accused the Centre of not fulfilling its promise to accord special status to Andhra Pradesh after it was split to create Telangana in 2014.
Summary:
Pakistan will not attend a World Trade Organisation (WTO) meeting to be held in Delhi next week amid the ongoing diplomatic tension between the two nations, officials said.
Summary:
This is an attempt by the government to promote the production and sale of jackfruit, state Agriculture Minister VS Sunilkumar said.
Summary:
The UIDAI has advised people not to "get carried away" with news of Aadhaar data leak.
Summary:
The Chinese Parliament on Saturday appointed the country's former anti-corruption chief Wang Qishan as the Vice President.
Summary:
Summary:
Ranveer Singh has said that his school friends don't find his over-the-top style made up as they've seen him since the beginning.
Summary:
Referring to the controversy over Sanjay Leela Bhansali's 'Padmaavat', CBFC chief Prasoon Joshi said, "No one's voice should be called a fringe voice because it is demeaning." He further said, "I was disappointed with headlines like 400 cuts!
Summary:
Summary:
Congress President Rahul Gandhi on Saturday tweeted that his 'Office of RG' Twitter handle has been renamed 'Rahul Gandhi'.
Summary:
Summary:
The Lok Insaaf Party (LIP) broke its alliance with the Aam Aadmi Party in Punjab on Friday after Delhi CM and AAP chief Arvind Kejriwal apologised to former Punjab minister Bikram Singh Majithia.
Summary:
A fire broke out on the second floor of a four-storey Army office building in Mumbai's Colaba on Saturday.
Summary:
A 40-year-old man working in a factory died after his colleague reportedly directed an air jet from a high pressure pipe into his anus in Delhi, police said on Friday.
Summary:
At least 12 people were killed and 46 others were injured on Saturday after a bus fell off a bridge in Bihar's Sitamarhi district.
Summary:
A group of 200 farmers launched a protest at Nirav Modi's 125-acre land in Ahmednagar in Maharashtra saying that the fraud-accused jeweller acquired their land at less than normal rates.
Summary:
Bombay HC had banned the construction after noticing that most of the waste generated was being dumped illegally.
Summary:
UK Foreign Secretary Boris Johnson had said that it was "overwhelmingly likely" that Putin had ordered to carry out a nerve agent attack in the UK.
Summary:
The department recently paid $180,000 to three Muslim women over forceful hijab removal.
Summary:
The GST collection will cross â¹90,000 crore per month from April onwards, Central Board of Excise and Customs (CBEC) Chairperson Vanaja Sarna has said.
Summary:
Indian pacer Mohammad Shami's wife Hasin Jahan has said she never accused him of match-fixing.
I don't understand cricket...It's Shami who is bringing the match-fixing angle," she added.
Summary:
Reliance Industries (RIL) Chairman Mukesh Ambani has said that the company was started by his late father Dhirubhai Ambani with only â¹1,000 and one employee in 1966.
Summary:
A 16-year-old boy from West Bengal's Burdwan died in an ambulance which had an air-conditioner mechanic posing as a doctor.
Summary:
The government said the extent of losses in these cases totalled â¹71.48 crore.
Summary:
Bangladesh captain Shakib Al Hasan denied reports that he had tried to call back batsmen over umpiring decisions in the last over of the Sri Lanka T20I on Friday.
It depends on how you see it," Shakib said.
Summary:
Former England captain Kevin Pietersen confirmed retiring from his cricket career with a tweet that read, "BOOTS UP!
Pietersen last represented Quetta Gladiators in the ongoing Pakistan Super League.
Summary:
Stating that most democracies in the world use paper ballots, the Congress alleged that EVMs can be tampered to manipulate the outcome of elections.
Summary:
Addressing the Congress Plenary Session on Saturday, former party President Sonia Gandhi said Congress is not a political term but a movement.
Summary:
DMK Working President MK Stalin on Friday said he welcomes the idea of southern states uniting to form 'Dravida Nadu'.
Summary:
Police said they wanted to stop the protestors from reaching the LoC, claiming that Indian troops would have fired at them.
Summary:
More than 6.25 lakh children in India smoke every day and as many as 17,887 people die every week in the country due to tobacco consumption, a Global Tobacco Atlas study has revealed.
Summary:
A Chandigarh court on Saturday awarded life imprisonment to pro-Khalistan militant Jagtar Singh Tara for assassinating former Punjab CM Beant Singh in 1995.
Summary:
Summary:
Summary:
Aishwarya Rai has said she was being pursued by filmmakers even before she won beauty pageants.
Summary:
Abhishek Bachchan took to Instagram to share a picture of him with his elder sister Shweta Bachchan Nanda on her 44th birthday.
Alia Bhatt also wished Shweta in her Instagram story writing, "Happy birthday to my biggest style inspiration and icon."
Summary:
Ranveer further said, "[The film set] is my place of worship.
You don't go to my place of worship and do this."
Summary:
The Indian football association's bid to host the FIFA Under-20 World Cup in 2019 ended after the FIFA Council members voted in favour of Poland for hosting the tournament.
Summary:
In the video, Rohit can be seen along with fans Mohammad Nilam and Gayan Senanayake, who attend Sri Lanka's cricket matches all around the world.
Summary:
Addressing the Congress Plenary Session, party leader Sonia Gandhi said that the PM Narendra Modi-led government was drunk on power.
Summary:
Paytm Money SVP Pravin Jadhav said One97 Communications is the sole promoter of the consumer brand.
Summary:
The Gold Savings Plan will let users save gold as per their requirement by entering the duration and amount of gold they want to save.
Summary:
A pathological laboratory in Uttarakhand has been ordered to pay â¹10 lakh along with interest to a woman for wrongfully diagnosing her of breast cancer.
Summary:
The message was sent by an engineer working on the bridge on a department employee's landline two days before the incident.
Summary:
China, which considers Taiwan as part of its territory, said that the move violated the 'One China' policy it had signed with the US.
Summary:
As per official records, white people own 72% farmlands in South Africa.
Summary:
At least seven people were killed on Saturday after a plane, carrying six people, crashed into a house of an 80-year-old woman near the Philippines' capital Manila shortly after takeoff, according to reports.
Summary:
The Sri Lankan Cricket association had reportedly already issued car passes printed with 'India vs Sri Lanka T-20 Final', assuming that Sri Lanka would face India in the T20I tri-series final on March 18.
Summary:
Launched on March 17, 1958, US satellite Vanguard I remains the oldest man-made object in space.
Summary:
Television presenter Helen Skelton has said she was groped live on air by an interviewee while she was pregnant during a sporting event in 2014.
Summary:
Sanjay Leela Bhansali's 'Padmaavat' is the highest opener of 2018 with first-day earnings of â¹19 crore.
Summary:
Hasin Jahan has termed her husband Mohammad Shami's morals 'loose' and called him a 'liar' after having accused him of adultery and domestic violence.
Summary:
Sri Lanka Cricket (SLC) paid tribute to former BCCI president Jagmohan Dalmiya with a book titled, 'A Tribute to Jagu'.
Summary:
Praising the Indian Army, Home Minister Rajnath Singh said, "We not only secure India within but can also cross the border to protect the country".
Summary:
Sessions said McCabe was fired as he misled the investigation into alleged US election meddling by Russia.
Summary:
She said the recently discovered fraud is a result of lack of integration between the core banking software and messaging platform SWIFT.
Summary:
As many as 41 branches out of the 159 foreign branches of state-owned banks reported loss in fiscal 2016-17.
Summary:
Actor Hrithik Roshan took to Instagram to share a video of his 63-year-old mother Pinkie Roshan lifting weights at the gym.
Summary:
Filmmaker Karan Johar, on being asked which Bollywood couple may break up if in a long-distance relationship, said, "I think Ranveer and Deepika." "They seem like they always need each other," he added.
Summary:
KKR wicketkeeper-batsman Robin Uthappa took to Instagram to share a picture of his physical transformation ahead of the upcoming IPL season, which starts on April 7.
#batmanadventures," Uthappa captioned the picture.
Uthappa was retained by KKR through Right to Match option for â¹6.4 crore at the auction.
Summary:
Bangladesh captain Shakib Al Hasan has been fined 25% of his match fee by the ICC for gesturing at his batsmen to walk off the field in a protest against umpiring decisions during the Sri Lanka T20I on Friday.
Summary:
Karachi Kings' Shahid Afridi clean bowled Islamabad United's Misbah-ul-Haq in a Pakistan Super League match on Friday to take his 299th T20 wicket but did not celebrate out of respect for the former Pakistan captain.
Summary:
Microsoft's Chief People Officer Kathleen Hogan said the firm received 83 harassment complaints in 2017 out of a US-based workforce of over 65,000 employees.
Summary:
Uber has sought a patent for a flashlight system in self-driving vehicles, that includes a virtual driver projection on the windshield to alert pedestrians.
Summary:
Reports said that the Prince will use the trip to promote investment opportunities in Saudi Arabia.
Summary:
Asserting that the BJP united the Bahujan Samaj Party and the Samajwadi Party, SP chief Akhilesh Yadav on Saturday said he will visit mandir, masjid and "all religious places" to maintain an alliance with BSP.
Summary:
Summary:
An international team of researchers have sequenced DNA from fossils from Morocco dating to approximately 15,000 years ago, making it the oldest nuclear DNA from Africa ever successfully analysed.
Summary:
The earliest Homo sapiens likely traded using colour pigments and developed more sophisticated tools than their ancestral Early Stone Age species, as per scientists from the Human Origins Program.
Summary:
A Parliamentary committee has slammed the Union Health and Ayush ministries for the delay in framing a legislation to regulate the misleading advertisements for the sale of Ayush medicines.
Summary:
RJD chief Lalu Prasad Yadav was taken to Ranchi's Rajendra Institute of Medical Sciences from the Birsa Munda Central jail after he complained of health issues on Saturday.
Summary:
The UP government has promoted Gorakhpur District Magistrate Rajeev Rautela to the post of Devipatan Divisional Commissioner.
Summary:
The archbishop, who has also been accused of financial mismanagement, was directed by the Vatican to not return to the island.
Summary:
The UK police have confirmed that Russian exile Nikolai Glushkov, who was a vocal critic of Russian President Vladimir Putin, was murdered after an autopsy revealed he died by compression to the neck.
Summary:
The Academy has reportedly opened an investigation after receiving three harassment claims against him.
Summary:
After UK expelled 23 Russian diplomats over poisoning of former double agent Sergei Skripal in Salisbury, Russia on Saturday responded by expelling 23 British diplomats.
Summary:
Born on March 17, 1962, in Karnal, Kalpana Chawla was the first Indian-origin woman to go into space.
Sunita Williams, born in the US, became the second Indian-origin woman to travel into space in 2006.
Summary:
A website named ABCNews-us published a report on Thursday claiming that model-actress Pamela Anderson passed away as she had developed Hepatitis C and pneumonia.
Summary:
Football's world governing body FIFA on Friday announced that it was lifting the three-decade-long ban on Iraq to allow the country to host international matches.
Summary:
Dating app Tinder's parent company Match has sued its rival app Bumble, accusing it of infringing its patent and misusing the intellectual property.
Summary:
After PM Narendra Modi's speech and presentation at News18 Rising India Summit, Congress President Rahul Gandhi tweeted, "You're right about Rising India.
Summary:
Palanisamy had said the party will move the motion if the Centre doesn't take a favourable stance on the Cauvery water dispute.
Summary:
Tamil Nadu's ruling party AIADMK has moved the Madras High Court seeking a ban on TTV Dhinakaran's party, Amma Makkal Munnetra Kazhagam, flag claiming that it's too similar to theirs.
Summary:
Humans are said to separate from Neanderthals 7 lakh years ago while still carrying 1-4% of their DNA due to interbreeding post-separation.
Summary:
It asked the Indian authorities to explain the case against the bank officials involved saying that it relates to "conspiracy" against Mallya.
Summary:
Prashant Gupta, whose father is a farmer in Uttar Pradesh, has secured the All India Rank 1 in Chemistry with 71.67% in the Graduate Aptitude Test in Engineering 2018 examinations.
Summary:
Bali on Saturday shut down the internet service on mobiles and television and radio broadcasts across the territory for 24 hours to mark its annual 'Day of Silence', New Year according to the Balinese calendar.
Summary:
The men were also banned from leaving the country and using high-speed trains.
Summary:
US President Donald Trump's lawyer has claimed that pornstar Stormy Daniels is liable to pay $20 million (over â¹130 crore) in damages for violating the non-disclosure agreement which allegedly prevented her from discussing an affair with Trump.
Summary:
World's third richest person and Berkshire Hathaway Chairman Warren Buffett's annual compensation in 2017 was just 1.87 times the median pay of about two-thirds of Berkshire employees.
Summary:
Actress and former Bigg Boss contestant Karishma Tanna has been accused of fraud by an event management company.
Summary:
According to some accused who were arrested earlier, the advocate had obtained the CDR of the actor's wife from private detectives.
Summary:
Filmmaker Hansal Mehta, while talking about late actress Sridevi, said, "I will always regret that I didn't approach her and could not make a movie with her." "There will never be another Sridevi," he added.
Hansal further said, "I was about to approach her for a film.
Summary:
Rekha, in a letter penned to Aishwarya Rai, wrote, "You've come a long way, baby.
Summary:
Bangladesh defeated Sri Lanka on Friday and their whole team celebrated it by doing 'Nagin dance'.
Summary:
Union Minister Nitin Gadkari on Friday said, "We have given many packages to Andhra Pradesh.
Summary:
Summary:
Taxi drivers in Istanbul, Turkey have sued cab-hailing startup Uber, accusing the American company of endangering their livelihoods.
Summary:
The Central Railway has registered record earnings of over â¹143 crore in 29.12 lakh cases of ticketless travellers and unbooked luggage from April 2017 to February 2018.
Summary:
The Indian Police Service officers in Haryana and the Haryana Police Service officers have been violating the Centre's instructions regarding the red beacon atop official vehicles, Additional Chief Secretary (Transport), RR Jowel, has written in a letter to DGP.
Summary:
Rex Tillerson, who was recently fired from the post of US State Secretary by President Donald Trump, was reportedly sitting on the toilet when he got to know about his dismissal.
Summary:
Singer Rihanna's single Instagram story against Snapchat for an offensive advertisement featuring her and her ex-boyfriend Chris Brown has wiped out $1 billion from Snapchat's parent firm Snap's market value.
Summary:
Bangladesh's cricketers reportedly damaged their dressing room at Colombo's Premadasa Stadium after defeating Sri Lanka in a heated T20I tri-series match on Friday.
Summary:
Constantin Reliu's wife had registered him as dead after she did not hear from him for years.
Summary:
A teacher in Ghana who drew MS Word on a blackboard to teach students has been gifted computers by NIIT Ghana, an Indian firm.
Summary:
Mayo pointed that he discovered the bug and filed a report on it last year.
Summary:
Russia also plans to use Blockchain technology in its upcoming presidential elections.
Summary:
Microsoft has said it'll work with Richard Appiah Akoto, who became a social media sensation after posting pictures of himself sketching MS Word on a blackboard, to provide device and software support.
Summary:
Summary:
After Samajwadi Party candidates won in Uttar Pradesh bypolls with BSP's support, a poster of the respective party chiefs Akhilesh Yadav and Mayawati was seen outside Samajwadi Party office.
Summary:
Billionaire Elon Musk-led space exploration startup SpaceX has raised $500 million in a funding round led by Fidelity Investments, according to reports.
Summary:
NASA is already operating a mission to visit Bennu and obtain samples.
Summary:
A Chandigarh court on Friday convicted Jagat Singh Tara of assassinating former Punjab CM Beant Singh in a bomb explosion outside the Punjab and Haryana Secretariat in 1995.
Summary:
A special Pakistani court on Friday ordered to suspend former President Pervez Musharraf's passport and his national identity card in a treason case against him, according to reports.
Summary:
Daniels had earlier claimed Trump bought her silence with $130,000.
Summary:
Former South African President Jacob Zuma will be prosecuted on 16 charges of corruption over a $2.5-billion arms deal in the 1990s, Chief Prosecutor Shaun Abrahams announced on Friday.
Summary:
China's Parliament on Saturday unanimously re-elected Xi Jinping as the country's President after removal of presidential term limits last week.
Summary:
Comedian Sunil Grover tweeted that he was waiting for a call to join Kapil Sharma's new show 'Family Time With Kapil Sharma'.
Summary:
Summary:
Karachi Kings' Afridi achieved the feat by smashing three consecutive sixes off Peshawar Zalmi pacer Sameen Gul and the fourth consecutive six off Liam Dawson on Thursday.
Summary:
Facebook explained that in 2015, an app developer passed data to SCL and Cambridge Analytica, violating policies.
Summary:
Centre is committed to providing a special package to Andhra Pradesh and is waiting for the state to revert on the mechanism of receiving funds, Finance Minister Arun Jaitley has said.
Summary:
Congress President Rahul Gandhi on Friday alleged that PM Narendra Modi-led BJP government used the CBI "to target key opposition politicians to intimidate and harass them".
Summary:
Vice President and Rajya Sabha Chairman Venkaiah Naidu on Friday held backstage talks with the leaders of several parties including TDP, AIADMK, and DMK, in an attempt to end the deadlock in the Upper House.
Summary:
Norway-based education quiz app Kahoot has raised $17 million in a funding round led by Microsoft's venture capital arm, Datum Invest AS, Northzone, and Creandum.
Summary:
In a first, researchers have documented volcanic thunder, considered nearly impossible due to intermixing of volcanic eruption sounds and accompanying thunder.
Summary:
A fatwa has been issued against a Muslim man in Uttar Pradesh for pledging to donate organs after his death.
Summary:
Cyber-attackers tried to blow up a petrochemical plant in Saudi Arabia last year, but failed as a bug in their code accidentally shut down the system, reports said.
Summary:
Making India the most forgetful country in the Asia-Pacifc region, Indians left behind prawns, LCD TV, gold bracelet, and kid's tricycle in Uber cabs.
Summary:
The new trailer of the upcoming superhero film 'Avengers: Infinity War' has been released.
Summary:
The incident happened when Bangladesh needed 12 runs off four balls to reach the T20I tri-series final.
Summary:
The motion is passed when a simple majority of MPs support it.
Summary:
Congress, AIADMK, AAP, CPI(M), and AIMIM have decided to support a no-confidence motion against the BJP-led NDA government in Lok Sabha.
Summary:
Akali Dal leader Naresh Gujral has asserted that the party will continue its alliance with the BJP in Punjab, adding that the alliance was "very important" for Hindu-Sikh brotherhood in the state.
Summary:
US-based retail giant Walmart is in advanced talks to invest $7 billion in Flipkart to become the largest investor in the e-commerce major, according to reports.
Summary:
Uber and Ola drivers will go on strike across cities including Mumbai, Gurugram, and the nation's capital Delhi, on March 19.
Summary:
Union Science and Technology Minister Harsh Vardhan has claimed that late theoretical physicist Stephen Hawking said that theories proposed in the Vedas might be superior to Einstein's theory of relativity.
Summary:
A Private Members' Resolution moved by Congress MP Ripun Bora in the Rajya Sabha seeks the replacement of the word 'Sindh' with 'Northeast India' in the National Anthem.
Summary:
The Government Railway Police (GRP) has transformed a spare room at the Varanasi Railway Station into a school for poor children, where classes are held for two hours every day.
Summary:
Taking a dig at the recent departures of the staff members in his administration, US President Donald Trump joked, "Who's next".
Summary:
Thousands of British troops will be vaccinated against anthrax in response to the poisoning of former Russian spy Sergei Skripal, Defence Secretary Gavin Williamson has said.
Summary:
Philippine President Rodrigo Duterte on Friday formally informed the UN of the country's decision to withdraw from the International Criminal Court (ICC).
Summary:
China will ban citizens having low scores on the 'social credit system' from public transport including flights and trains.
Summary:
The memo claimed that Nike was conducting a review of the company's human-resource systems and practices for elevating internal complaints.
Summary:
Indian-origin former partner in consulting firm McKinsey & Company, Navdeep Arora, has been sentenced to two years in prison by a US court for defrauding companies of consulting fee.
Summary:
However, the disparity in average pay is narrower than at HSBC Holdings, where women were paid an average 59% less than male employees.
Summary:
Notably, All England Open is the world's oldest badminton tournament and only two Indians have won it.
Summary:
Google said one of every three new Android Wear watch owners also used an iPhone in 2017 and it wants to represent everyone who wears its watches.
Summary:
In 2016, Spotify hired Delhi University graduate Akshat Harbola as Head of Market Operations for India.
Summary:
French cosmetics firm L'Oréal on Friday said that it was buying Canadian beauty technology company ModiFace for an undisclosed amount.
Summary:
The Supreme Court has reserved its verdict on petitions seeking an independent probe into the allegedly mysterious death of CBI special judge Justice BH Loya, who was hearing the Sohrabuddin Sheikh encounter case.
Summary:
This comes after a student allegedly went missing after she accused the professor of harassing her.
Summary:
The police have arrested the accused, who the girl claims has been threatening her for the past six months.
Summary:
All seven US service members onboard a helicopter died in a crash in Iraq on Thursday, the US military said.
Summary:
Those sanctioned also include people indicted by the US over election meddling.
Summary:
American singer Jennifer Lopez has revealed a director once told her to remove her shirt and show her breasts.
Jennifer further said, "When I did speak up, I was terrified.
Summary:
Bollywood actor Irrfan Khan on Friday revealed that he has Neuroendocrine Tumour, which can cause abnormal growth in tissues made of hormone-producing nerve cells.
Summary:
The 70-year-old was attacked after he tried to pacify over 40 people raising slogans against PM Modi.
Summary:
Indian cricketer Mohammad Shami has said all his hopes of reuniting with wife Hasin Jahan are over despite him trying to do everything to save their marriage.
"If say I had even only 1% chance to save it, I tried.
Summary:
The Mumbai banker's $20-billion private wealth management unit became India's biggest by assets and helped him become a billionaire.
Summary:
Around â¹1.86 trillion was wiped out from market capitalisation of all listed companies after benchmark index BSE Sensex closed 509.54 points down at 33,176 on Friday.
Summary:
After getting bail minutes after being jailed in a 2003 human trafficking case, Daler Mehndi revealed that he was asked to remove his pants and sing songs during the police inquiry.
Summary:
Vice President Venkaiah Naidu has said the $2.1-billion PNB scam brought "bad name" to the system and is "an eye opener" for everyone.
Summary:
Afghan spinner Mujeeb Zadran, the first male cricketer born in the 21st century to play international cricket, bowled out veteran Windies' batsman Chris Gayle during a World Cup Qualifier match on Thursday.
Summary:
At least 124 members of Lok Sabha have decided to support the no-confidence motion against the BJP-led NDA in the Parliament.
Summary:
The Central University of Orissa was shut indefinitely on Thursday, a day after hundreds of students staged a sit-in protest outside the administrative block.
Summary:
Haryana Police has arrested a Delhi-based doctor and his two associates for running a sex determination racket from inside a car.
Summary:
The government on Friday clarified that there was no proposal to discontinue â¹2,000 currency note, which was introduced post demonetisation in November 2016.
Summary:
British Foreign Secretary Boris Johnson has said it was "overwhelmingly likely" that Russian President Vladimir Putin ordered to carry out a nerve agent attack in the country.
Summary:
The 31 economic offenders who fled the country after committing fraud, collectively owe â¹40,000 crore to banks and institutions in India.
Summary:
Hong Kong's richest man Li Ka-shing on Friday announced his retirement as the Chairman of conglomerate CK Hutchison Holdings and property giant CK Asset Holdings.
Summary:
Replying to this, Simi said, "[Your grandmother] does have good taste."
Summary:
Summary:
Actor Ajay Devgn has said that it would need a good script to cast him and his actress wife Kajol in a film.
Summary:
Summary:
Reacting to 16-year-old actress Jannat Zubair Rahmani being asked to kiss for the show 'Tu Aashiqui', her father said, "I won't give my daughter permission to enact adult or kissing scenes at this age.
Summary:
Sri Lanka's Sports Minister Dayasiri Jayasekara has invited Team India captain Virat Kohli and Anushka Sharma to holiday in the country.
Adding that Kohli has not visited Sri Lanka after marriage, Jayasekara said, "I want him to spend a few days with wife Anushka Sharma.
Summary:
Astle took 153 balls to score his double century against England, surpassing Australia's Adam Gilchrist who reached the milestone in 212 balls against South Africa on February 23, 2002.
Summary:
Further, Liverpool will face Manchester City for the first time in Champions League history.
Summary:
South African pacer Vernon Philander has said his Twitter account was hacked after a tweet accusing Australian captain Steve Smith of staging the incident that resulted in Kagiso Rabada's ban was posted from his account.
Summary:
Summary:
After facing criticism for saying that Nirbhaya's mother had a "good physique", former MP and former Karnataka DGP HT Sangliana said the remark was a compliment rather than an insult.
Summary:
Actor Irrfan Khan took to Twitter to reveal that he has been diagnosed with Neuroendocrine Tumour, which most commonly occurs in the intestine but can also be found in other parts of the body.
Summary:
A Google search for 'Mera Aadhaar Meri Pehchan filetype:pdf' reveals Aadhaar details of several people, including their names, photographs and date of birth.
Summary:
Reliance Industries Chairman Mukesh Ambani has said the idea of Jio was first seeded by his daughter Isha Ambani in 2011.
Summary:
Singer Daler Mehndi has been granted bail minutes after being jailed for 2 years by a Patiala court in a 2003 human trafficking case.
Summary:
Snapchat maker Snap's shares fell 4.7% after singer Rihanna urged people to delete the app.
Summary:
Indian cricketing legend Sachin Tendulkar took 34 innings to finally score his 100th international century against Bangladesh on March 16, 2012.
Summary:
Facebook has apologised for suggesting child abuse videos for a few hours when users typed the term 'videos' on the platform.
Summary:
Stating that the House was not in order, Lok Sabha Speaker Sumitra Mahajan on Friday refused to consider the no-confidence motion moved against the BJP-led NDA government by TDP and YSR Congress.
Summary:
The MPs of Telugu Desam Party (TDP) on Friday protested against the BJP-led Centre outside in the Parliament, raising slogans like, "We want justice, NDA talaq, talaq, talaq".
Summary:
At least 40 students of Kasturba Gandhi School in Uttar Pradesh's Etah have been hospitalised due to food poisoning after consuming the mid-day meal.
Summary:
The Centre will not remove the Ram Setu and will instead explore alternatives to build the shipping canal project in the nation's interest, the government said in an affidavit filed in the Supreme Court.
Summary:
Reportedly, many doctors of the institute have committed suicide in the past few years.
Summary:
Mugabe has been one of the world's longest-serving leaders, having led Zimbabwe for 37 years.
Summary:
Tibet can exist with China like the European Union, Tibetan spiritual leader Dalai Lama has said.
With that kind of concept, I'm very much willing to remain within China," the leader added.
Summary:
However, Muslims living in Germany do belong to the country, he added.
Summary:
Tata Sons' Chief Ethics Officer Mukund Rajan has resigned from his post citing personal reasons.
Summary:
Earlier, speaking about her character, Ankita had said, "Not many have heard about Jhalkari Bai but she was one of the greatest heroes of our proud history."
Summary:
Actress Jacqueline Fernandez's look from the recreated version of Madhuri Dixit starrer 'Ek Do Teen' has been unveiled.
Summary:
The Indian football team climbed back into the top-100 FIFA international team rankings after jumping three places to reach the 99th spot in the latest rankings on Thursday.
Summary:
France's Ligue 1 has decided to reverse the yellow card that was shown to Nice's Italian footballer Mario Balotelli after he had allegedly complained about racism from fans during a match against Dijon in February.
Summary:
Mahajan adjourned the House despite the required support to the motion by 50 MPs, he added.
Summary:
Paris-based startup HoliStick Medical is developing a specialised catheter device that can repair holes in the heart and tissue defects in other organs.
Summary:
Restricting global warming to 1.5úC above pre-industrial levels, instead of the 2úC as agreed in the Paris climate deal, could avoid the displacement of 50 lakh people by year 2150, a Princeton University-led literature review has found.
Summary:
Kepler has been in Earth's orbit for nine years, exceeding its original 3.5-year mission.
Summary:
MIT researchers have developed a micro-fluidic platform that connects engineered tissues of up to 10 organs for evaluating drugs, detecting possible side effects before they are tested in humans.
Summary:
The remaining cadres of militant organisation Garo National Liberation Army (GNLA) on Thursday surrendered to the Meghalaya government, state Home Minister James Sangma said.
Summary:
In the stunt, the woman fired a gun from a 30-cm distance and her boyfriend was supposed to protect himself from the bullet with the help of a book.
Summary:
Singer Daler Mehndi was jailed for two years by a Patiala court on Friday in a 2003 human trafficking case.
Summary:
Aam Aadmi Party's Punjab unit President Bhagwant Mann on Friday announced his resignation from the post.
Summary:
However, the effect hasn't been directly observed so far while Nobel Prizes are awarded only for experimentally verified research.
Summary:
Of the â¹42,226 crore lost due to cheating and forgery, 89% was lost by state-owned banks.
Summary:
UK Queen Elizabeth II has given her official consent to the wedding of her grandson Prince Harry and American actress Meghan Markle.
Summary:
Indian para-athlete Deepa Malik won a gold medal in the F-53/54 category javelin event at the World Para Athletics Grand Prix in Dubai and also became the Asian rank one in the F-53 category on Thursday.
Summary:
Nepal gained One-Day International status on Thursday after beating Papua New Guinea in the ICC World Cup Qualifier tournament.
Summary:
The Cruise AV is the company's first production-ready vehicle, which has no steering wheel, pedals, or manual controls.
Summary:
As many as seven union ministers, including Human Resource Development Minister Prakash Javadekar and Petroleum Minister Dharmendra Pradhan, have been elected to Rajya Sabha unopposed.
Summary:
After BJP's loss in recent bypolls, Shiv Sena said, "[BJP] say that by-poll doesn't define the mood of the nation, but from the time the BJP came to power...they've lost 9 out of 10 bypolls".
Summary:
With the round, SoftBank's shareholding in the startup has risen to as much as 35-40%.
Summary:
After stating astronaut Scott Kelly's DNA permanently altered by 7% during one year in space, NASA has clarified the change "is very minimal" and "within the range for humans under stress." The gene changes were related to immune system, DNA repair, and bone formation.
Summary:
Other than the children, there were 63 women and 61 men who were paid â¹200 per week.
A labourer said, "I was paid â¹20 for carrying 1,000 bricks per day.
Summary:
The panel also asked the Defence Ministry to give priority to the issue of shortage of officers.
Summary:
Bihar Police has arrested two people for allegedly chanting pro-Pakistan and 'Bharat tere tukde honge' slogans right after RJD candidate Sarfaraz Alam won in Araria bypoll on Wednesday.
Summary:
The number of Indians going abroad as blue-collar workers reduced by around 50% between 2015 and 2017, according to the recently released government data on workers going to 18 major countries.
Summary:
Earlier this month, North Korea offered to denuclearise itself for security against US military threats.
Summary:
Air India has made â¹543 crore so far from the monetisation of its assets in locations like Mumbai and Chennai, the government has said.
Summary:
Actor Salman Khan will be penning the lyrics for a song in the upcoming film 'Race 3'.
The song will be picturised on Salman and choreographed by Remo D'Souza.
Summary:
Actor Anupam Kher called actress Priyanka Chopra "the best" while adding, "As a fellow Indian, I am so proud of you and your achievements...
Summary:
Katrina further said she later worked on her dancing skills while adding, "I trained with Kathak guru, Veeru Krishnan, from 7 am to 1 pm almost every day."
Summary:
A group of 10 wild Asian elephants entered a village in the Chinese province of Yunnan this week and caused financial losses to villagers by eating crops.
Summary:
Danry Vasquez, a Venezuelan baseball player, was fired by club Lancaster Barnstormers after a video emerged of him beating up his girlfriend.
Summary:
Founded in 2017, the US-based startup is a virtual expert for AI-driven automation of support delivery and incident resolution for complex systems problems.
Summary:
Russian President Vladimir Putin has claimed that the country would be launching an unmanned mission to Mars in 2019.
Summary:
A NASA-funded cube satellite will study the inner radiation belt of Earth's magnetosphere by gathering information on the energetic particles that can disrupt satellites and threaten spacewalking astronauts.
Summary:
The accused took the infant to his room when she was sitting outside her home while her mother was busy with household work.
Summary:
Backed by superior investment performance, the value packed, new age ULIP - Bajaj Allianz Life Goal Assure is one of the most attractive investment options available today.
Summary:
Andhra Pradesh Chief Minister Chandrababu Naidu-led Telugu Desam Party (TDP) has quit the BJP-led NDA over the Centre's refusal to grant special category status to the state.
Summary:
Singer Rihanna has slammed photo-sharing app Snapchat over an advertisement of a game which asked users if they would rather slap Rihanna or punch Chris Brown.
Summary:
Apologising for the advertisement which asked if users would slap Rihanna or punch Chris Brown, Snapchat has said, "we made the terrible mistake of allowing it through our review process." Snapchat admitted that the advertisement was "disgusting" and should have never appeared on the platform.
Summary:
Koimoi wrote the film has "an entertaining story [and] edge of the seat...narration." It has been rated 4/5 (Bollywood Hungama) and 3.5/5 (TOI, Koimoi).
Summary:
Indian pacer Mohammad Shami's wife Hasin Jahan has sent documents related to her allegations of corruption and match-fixing against Shami to BCCI's Committee of Administrators (CoA) chairman Vinod Rai for investigation.
Summary:
Twitter has discredited the report claiming that 60% followers of PM Narendra Modi are fake and said that the "Twitter Audit" tool is not the company's product.
PM Modi is currently the second-most followed world leader on Twitter.
Summary:
Google has rolled out a feature that will show "wheelchair accessible" routes in transit navigation to users.
Summary:
The YSR Congress Party, the main Opposition in Andhra, has given notice of a no-confidence motion in the Lok Sabha.
Summary:
Union Ministers Arun Jaitley and Nitin Gadkari are also among those who have filed cases against him.
Summary:
After the discovery of ancient lava tubes on the Moon by NASA, scientists believe they could be used as caves by humans.
Summary:
In a first, the Navi Mumbai Municipal Corporation has installed pedestrian push buttons at certain junctions, allowing pedestrians to change the traffic signal.
Summary:
Work at Calcutta High Court has been halted for over four weeks after lawyers' associations announced a strike demanding the appointment of judges to fill vacancies.
Summary:
An Andhra Pradesh court has convicted an Australia-origin man for sexually abusing a visually-impaired child, 17 years after the case was filed.
Summary:
Princess Hassa is accused of ordering her bodyguard to beat up a worker at her Paris apartment for taking pictures of a room allegedly for selling them.
Summary:
Earlier, the UK expelled 23 Russian diplomats identifying them as undeclared intelligence officers.
Summary:
The man, who was kidnapped by the Taliban along with a local police officer on Wednesday, fled in a pickup truck belonging to the militants.
Summary:
Vanessa Trump, the wife of US President Donald Trump's eldest son Donald Trump Jr, has reportedly filed for divorce.
Summary:
The bridge was installed on Saturday in six hours and was supposed to open next year.
Summary:
Actress Juhi Chawla has said that she is hoping to act in a Marathi film.
Summary:
Speaking about maintaining a long-distance relationship with husband Benedict Taylor, Radhika Apte said, "It's exhausting and expensive." She added, "I remember sometimes people meet on an aircraft and ask, 'Why are you flying economy?'" "Imagine making three trips [to London] in two months, that too last-minute ones, because suddenly I got a week off.
Summary:
The saffron cloth was later removed from the statues and the police ordered an investigation.
Summary:
Severe winter weather is two to four times more likely in eastern US when the Arctic is abnormally warm than abnormally cold, US researchers have found.
Summary:
While Khan managed to escape the attack, his personal security officer sustained injuries.
Summary:
After Pakistan called back its High Commissioner to India Sohail Mahmood "for consultations" over alleged harassment by Indian agencies, India's External Affairs Ministry said he has been called back for a "routine consultation".
Summary:
Three members of 'Raja Dadaa' gang were arrested in Delhi for allegedly committing over 15 thefts from wedding parties.
Summary:
A tantrik in Maharashtra's Pune has been arrested for allegedly performing black magic on a woman in a hospital's Intensive Care Unit.
Summary:
An interfaith couple, who faced opposition over their relationship, named their children 'Casteless', 'Casteless Junior' and 'Shine Casteless'.
Summary:
Retracting his statements after Majithia filed a defamation case, Kejriwal added that he regretted the damage caused to Majithia's esteem.
Summary:
A no-confidence motion needs the support of minimum 50 MPs to be put to vote.
Summary:
There is a shortage of nearly 1,500 Indian Administrative Service (IAS) officers in the country, MoS for Personnel Jitendra Singh told the Rajya Sabha during the ongoing Parliament session.
Summary:
At an event to felicitate women achievers with 'Nirbhaya Awards', former MP and retired IPS HT Sangliana has said, "I see Nirbhaya's mother, she has such a good physique.
Summary:
During his 2001 India visit, physicist Stephen Hawking had wanted to visit Agra's Taj Mahal but could not after the Archaeological Survey of India (ASI) dismissed requests for modifications to make it disabled-friendly.
Summary:
Sri Lanka on Thursday lifted its ban on Facebook after the social media giant agreed to step up efforts to curb hate speech amid the ongoing emergency in the country.
Summary:
A new study has revealed that 93% of the bottled water from world's leading brands, including from India, contained tiny pieces of plastic.
Summary:
He further said the industry has received enough time to comply with post-GST changes.
Summary:
BMC earlier sent the notice to the parent company Yash Raj Films.
Summary:
Speaking about how he got married to Kajol, Ajay Devgn jokingly said, "I came out of my bedroom, got married on my terrace, went back to my bedroom!" "I didn't want to make a big issue out of my marriage," he added.
Summary:
Aishwarya Rai Bachchan has featured on the cover of Femina magazine for its March issue.
The magazine's current issue is on 'India's Most Beautiful Women 2018'.
Summary:
Summary:
Terry Madden, an assistant director in several 'James Bond' films who was left with career-ending injuries after an accident on the set of 'Spectre', has sued for over â¹22 crore (ã2.5 million) in damages.
Summary:
The cat was later included in the 'Man of the Match' options by Bayern Munich on social media, and it received over 80% votes.
Summary:
India won their first-ever men's Hockey World Cup on March 15, 1975, after finishing third and second in the first two World Cups respectively.
Summary:
Microsoft researchers claim to have created the first machine translation system that can translate Chinese sentences to English with human accuracy.
Summary:
After the RJD won the Lok Sabha bypolls for Araria in Bihar, BJP's Union Minister Giriraj Singh on Thursday said the constituency will become a "hub of terror".
Summary:
Volkswagen India President and MD Andreas Lauermann has said India is not "really prepared" for a leap towards full Electric Vehicles (EVs) at the moment.
Summary:
Summary:
No Entry." Locals claimed that the restaurant was established to serve employees of a South Korean automobile manufacturer.
Summary:
The Maharashtra Police has arrested the main accused in connection with the murder of former Shiv Sena corporator Ashok Sawant.
Summary:
Two patients admitted for dialysis suffered injuries after a part of the ceiling collapsed in Mumbai's King Edward Memorial Hospital on Thursday.
Summary:
An 18-year-old girl was dragged till the footboard of a Mumbai local train compartment by a thief after she refused to let go of the phone he snatched from her.
Summary:
The Delhi government launched an anti-encroachment drive on Wednesday and cleared illegal structures built on 197 acres of public land in south Delhi's Asola village, officials said.
Summary:
Corbat's annual compensation was $17.8 million (â¹115.7 crore) while the median annual compensation of all the employees was $48,249 (â¹31.4 lakh).
Summary:
Imports for the month of February stood at $37.8 billion, up 10.4% whereas exports stood at $25.8 billion rising 4.5%.
Summary:
The incident took place at Agra's Dr Bhimrao Ambedkar University and reports said the man carrying the gun wasn't a student or a staff member.
Summary:
Stephen Hawking in his best-selling book 'A Brief History of Time' described black holes as incredibly dense objects, with gravity so strong even light cannot escape from it.
Summary:
Reacting to singer Katy Perry kissing a 19-year-old boy on 'American Idol' sets, on which she is a judge, a user tweeted, "That was...uncalled for." A tweet read, "Anyone else (felt) like Katy...pressured that poor kid into letting her kiss him." "If a male judge kissed a girl like that, imagine the rioting.
Summary:
PNB's Brady House branch in Mumbai allegedly issued fake LoUs to Nirav Modi and Mehul Choksi's firms.
Summary:
A question in the Class X English exam conducted by the West Bengal board required students to write a profile on Virat Kohli.
Summary:
US blood-testing startup Theranos' CEO Elizabeth Holmes has agreed to pay $500,000 to settle charges that she raised over $700 million fraudulently.
Summary:
Gujarat's Amreli District Administration has ordered a female sarpanch to undergo a DNA test after she was suspended from the post for reportedly having a third child in violation of the two-child norm.
Summary:
Misra said the observations were in general and not particular to the hearing of the defamation case filed by BJP President Amit Shah's son against The Wire.
Summary:
The statement urged Russia to provide "full and complete disclosure" of the nerve agent used.
Summary:
Saudi Arabia's Crown Prince Mohammed bin Salman has said that the kingdom will develop a nuclear bomb "as soon as possible" if Iran does.
Summary:
The statement further said that the country will take action against Russia in the coming days.
Summary:
Indonesian province of Aceh is considering to introduce beheading as a punishment for murder, the head of the province's sharia law and human rights office has said.
Summary:
Summary:
The actor, Vikram Karthik alleged the men stole his wallet, phone, and car.
Summary:
Talking about his habit of smoking, Aamir Khan said, "I have tried to quit, but I hope to kick the butt altogether...I tell everyone not to smoke." He added when his film is about to release, he gets nervous and starts smoking again.
Summary:
Wasim Jaffer has become the first Indian over 40 years of age to slam a 250-plus score in a first-class innings.
Summary:
Australia's Charles Bannerman's record for the highest percentage of runs by a batsman in a completed Test innings set in the first-ever Test that started on March 15, 1877 is still unbroken.
Summary:
A 68-year-old Indian woman was arrested at the Delhi airport for allegedly trying to smuggle gold worth over â¹21 lakh into the country, according to an official statement issued today.
Summary:
French startup Qarnot has launched a device that heats a room while mining cryptocurrency Ethereum by default.
Summary:
The incident comes days after Mookerjee's statue was razed by seven people in West Bengal's Kolkata.
Summary:
"India has done a lot on innovation and in every ministerial Commonwealth meeting, we see strong commitment from India," she added.
Summary:
At least 100 mobile theft cases are registered across Mumbai's 16 Government Railway Police divisions daily, officials have said.
Summary:
The Child Welfare Committee has accused the Civil Hospital in Gurugram of leaving a 13-year-old rape victim unattended for over 12 hours.
Summary:
The US government recently announced that it will give school teachers gun training to act in case of mass shooting attacks.
Summary:
China has been detaining Uighur women in 're-education' camps in the Xinjiang province over alleged extremism.
Summary:
Russian President Vladimir Putin has revealed that he once considered driving a taxi to provide for his family.
What else could I have done?...I had nowhere to get a job, I had two small children," Putin said.
Summary:
At least 172 gold bars weighing around 3,400 kg spilled on a Russian runway on Thursday after the gate of a cargo plane carrying the metal opened upon take-off, according to reports.
Summary:
The Haryana Assembly on Thursday approved a bill awarding death penalty to those convicted of raping children under the age of 12 years.
Summary:
US e-commerce giant Amazon added nearly $99 billion in market capitalisation in the last one month, which is more than the total market value of India's most valued firm Reliance Industries (RIL).
Summary:
World Consumer Rights Day was inspired by former US President John F Kennedy, who formally addressed the issue of consumer rights in a message to the US Congress on March 15, 1962.
Summary:
"I wanted to save it for my first relationship.
I wanted it to be special," he added.
Summary:
It has become director Sanjay Leela Bhansali and the lead cast's first film to earn over â¹300 crore in India.
Summary:
Three members of Tamil Rockers were arrested by the police on Thursday for pirating new South Indian films and uploading them on piracy websites.
Summary:
Seoul National University researchers have developed an origami-inspired robotic arm which can withstand over 400 times of its own weight.
Summary:
Summary:
Gurugram-based interior design startup Studiokon Ventures (SKV) claims to have crossed â¹120 crore turnover without raising any funding.
Summary:
The Information and Public Relations Department said the ads were aimed at promoting government schemes.
Summary:
Pakistan has called back its High Commissioner to India, Sohail Mahmood, "for consultations" over alleged "harassment, intimidation and outright violence" of its diplomats in India by Indian agencies.
Summary:
Trump said he told Trudeau that the US runs a trade deficit with Canada without knowing if it was the case.
Summary:
FMCG major Hindustan Unilever (HUL) on Wednesday said it has offered the government another â¹36 crore of GST benefits for January.
Summary:
Actor Manoj Bajpayee took to Twitter to reveal that his Twitter account was hacked.
Earlier, Twitter accounts of celebrities like Anupam Kher and Abhishek Bachchan were also hacked.
Summary:
According to reports, Navjot Singh Sidhu will be part of Kapil Sharma's new TV game show 'Family Time with Kapil Sharma'.
Summary:
Sinha said RBI's approach to a problem at a foreign bank, private bank or state-owned bank shouldn't be different.
Summary:
Yasir reacted by throwing the ball angrily at Sohail.
Summary:
Two passengers have been arrested at the Guwahati airport for allegedly hiding five gold bars each in their rectums.
Summary:
An Emirates crew member was seriously injured after she fell from the emergency exit of a parked aircraft at an airport in Uganda.
Summary:
Speaking about the Samajwadi Party's win in the bypolls for two Lok Sabha seats in Uttar Pradesh, party chief Akhilesh Yadav called it a victory for the poor, labourers, minorities, youth, and women.
Summary:
After his party won the Uttar Pradesh bypolls, Samajwadi Party chief Akhilesh Yadav on Wednesday visited rival Bahujan Samaj Party (BSP) chief Mayawati's residence to thank her for extending support.
Summary:
Snapdeal's early investor, venture capital firm Kalaari Capital is in talks to sell 35-40% of its stake in the online marketplace, according to a report.
Summary:
Anti-trust watchdog Competition Commission of India (CCI) has ordered an investigation against Honda Motorcycle and Scooter India (HMSI) for various anti-competitive provisions in its agreement with dealers.
Summary:
In a first, amateur photographers spotting purple lights in the night sky while photographing the aurora borealis have helped NASA scientists study the mysterious phenomenon called 'Steve'.
Summary:
The Sri Lankan Department of Immigration and Emigration said the suspects were engaged in astrology, the sale of textiles, and carpentry.
Summary:
Rating agency Fitch has projected India's economic growth to rise to 7.3% next fiscal and further to 7.5% in 2019-20.
Summary:
In the video, she takes you on a journey in her home, showcasing her favourite spots, some unique features and many borrowed ideas.
Summary:
Denying reports of a Class 12 Accountancy paper leak through WhatsApp, the CBSE has said all seals were found intact at all exam centres.
Summary:
Indian pacer Mohammad Shami has said he was not aware of his wife Hasin Jahan's first marriage when they got married in 2014.
Summary:
Google on Thursday announced the integration of Hindi language in its Assistant for devices running Android 6.0 Marshmallow and above.
Summary:
Barcelona forward Lionel Messi scored the fastest goal of his career, which was also his 601st professional goal, in 2 minutes and 8 seconds against Chelsea in the Champions League on Wednesday.
Summary:
Indian cricketer Mohammad Shami has said that he is ready to be hanged till death if he is found guilty of match-fixing by the BCCI.
Summary:
US-based retail giant Walmart has patented a drone carrying pollen dispensers to pollinate crops like real bees, according to filings.
Summary:
US-based biometrics software company Daon has developed a system which allows users to send money by giving voice commands to Amazon's digital assistant Alexa.
Summary:
British theoretical physicist and cosmologist Stephen Hawking, who passed away aged 76 on Wednesday, has left behind a fortune reportedly worth $20 million (â¹130 crore).
Summary:
Remembering Cambridge Professor Stephen Hawking, American archaeologist Sarah Parcak recalled an incident of avoiding a collision with him on campus.
Summary:
Two trackmen, who were inspecting a railway track in Delhi, averted a train derailment by stopping an upcoming train by waving a red towel.
Summary:
Pune is the best city in the country in terms of local governance and Bengaluru is the worst, according to the Annual Survey of India's City-System.
Summary:
A civil war started in Syria on March 15, 2011 after peaceful anti-government protests turned violent following the killing and imprisonment of hundreds of protesters by President Bashar al-Assad's regime.
Summary:
A couple in United States' Baltimore has spent $19,000 (over â¹12 lakh) on a life-saving kidney transplant for their 18-year-old cat Stanley.
Summary:
A West Bengal farmer invited around 700 villagers for lunch to seek their blessings for his son, who is the first person in their family to appear for Class 10 examinations.
Summary:
The World Bank has said India's highest GST rate of 28% is the second highest among a sample of 115 countries which have a similar indirect tax system.
Summary:
Actress Alia Bhatt has shared a video from her first birthday.
Summary:
Kendall Jenner, while talking about rumours on the internet regarding her sexual orientation, said, "I donâÂÂt think I have a bisexual or gay bone in my body, but I donâÂÂt know!
I move differently." Kendall further said she would never hide something like that.
Summary:
Filmmaker Mahesh Bhatt took to Twitter to wish his daughter Alia Bhatt on the occasion of her 25th birthday today and wrote, "Such a big miracle in such a little girl!" "Your growth as an actor has been phenomenal and it's just the beginning," wrote Anil Kapoor.
Summary:
World's most expensive footballer Neymar was slammed by social media users after he shared a photo of himself in a wheelchair along with a quote by late scientist Stephen Hawking as a tribute to him.
Summary:
Amazon Japan on Thursday said it had been raided by the Japan Fair Trade Commission on suspicion of anti-trust violation.
Summary:
A hotel in Bahamas' Nassau has opened a winery where guests can book appointments and blend their own wine.
Summary:
Summary:
Responding to ousted AIADMK leader TTV Dhinakaran's new party launch, the party MLA D Jayakumar said, "It was a 'Shani' over our party which has now gone." "It was basically a mosquito, when it came and when it flew back no one knew," he added.
Summary:
Jupiter's Great Red Spot, once big enough to swallow three Earths, has been shrinking for about 150 years but growing taller while doing so, NASA has discovered.
Summary:
Contrary to previous beliefs that Neanderthals were uncaring, a UK-based study has found they were as knowledgeable and compassionate in healthcare as modern humans.
Summary:
Home Minister Rajnath Singh on Wednesday said that radicalisation of the populace, particularly the youth, is one of the most challenging problems being faced by the world.
Summary:
The Class 12 Accountancy exam paper of the Central Board of Secondary Education was leaked via WhatsApp on Thursday.
Summary:
Late physicist Stephen Hawking issued several warnings including on self-improving artificial intelligence that "may replace humans altogether".
Summary:
Actor Shah Rukh Khan has said he decided to focus the pain of losing his parents on acting.
Shah Rukh further said, "The empty house without my parents used to come to bite me and my sister."
Summary:
Shetty, an accused in PNB fraud, allegedly used same modus operandi to issue two fraudulent guarantees to Chandri Paper.
Summary:
Students at the University of Tokyo have developed a hover backpack called Lunavity which helps users jump 2-3 times higher than normal.
Summary:
Summary:
TTV Dhinakaran, ousted AIADMK leader and an Independent MLA, on Thursday launched his own political party 'Amma Makkal Munnetra Kazhagam', named after late Chief Minister Jayalalithaa.
Summary:
Researchers at the Parkes Observatory in Australia have reported recording the brightest fast radio burst (FRB) ever on March 9 this year.
Summary:
Ei-ichi Negishi, a 2010 Nobel-winning Japanese chemist was discovered strolling in Illinois countryside while his wife was found dead in a landfill nearby, nine hours after they were reported missing from their home 320 km away.
Summary:
Daniels recently sued Trump, claiming that his lawyer tried to silence her using an invalid non-disclosure agreement over her alleged affair with Trump.
Summary:
A European Parliament delegation has revealed that it has been conducting 'secret talks' with North Korea and has met its officials 14 times over the last three years to convince it to end its nuclear programme.
Summary:
The incident occurred when a woman said she accidentally threw three rings and a bracelet in the trash, which was carried off by garbage collectors.
Summary:
Panama-based Mossack Fonseca, the law firm involved in world's biggest data leak Panama Papers, has said it is shutting down, citing negative press and "unwarranted action" by authorities.
Summary:
"I feel personal life is called 'personal' for a reason.
I just hope people don't think that this is all I'm doing in life," she added.
Summary:
The ICO said WhatsApp had failed to provide fair processing information to users regarding sharing of personal data.
Summary:
American pizza chain Little Caesars has patented an automated pizza assembly system that includes a sauce spreading station, a cheese spreading station, and a pepperoni spreading station.
Summary:
The test is part of an initiative to instill AI systems with an understanding of the world, researchers said.
Summary:
A female pilot on Wednesday sued Alaska Airlines, claiming its response was inadequate after she alleged that she was drugged and raped by a flight captain during a stopover last year.
Summary:
A 21-year-old American tourist was caught urinating next to a 16th-century statue of Hercules and Cacus in the Italian city of Florence around 1:30 am on Tuesday.
Summary:
Summary:
RSS south Bengal General Secretary Jishnu Basu on Wednesday said, "It is a moral victory for the RSS that the ruling party (TMC) is also saying that they want to celebrate Ram Navami." "Last year...activists of various Hindutva organisations were arrested for observing Ram Navami in the state.
Summary:
Elon Musk-led electric carmaker Tesla is manufacturing high ratio of flawed vehicle parts which require rework and repairs, its employees have reportedly claimed.
Summary:
Summary:
Delhi Police arrested a UPSC aspirant for allegedly kidnapping a 5-year-old boy for ransom to recover money he had lost to a fake job racket.
Summary:
This comes amid protests by the TDP against the government over granting of special status to the state.
Summary:
Bengaluru-based pregnancy-parenting social networking app Healofy has raised $1 million from investment firm Omidyar Network.
Summary:
Bangalore, Chennai and New Delhi named among world's 10 cheapest cities.
Summary:
Bengaluru has been named as the 5th cheapest city in the world in Economist Intelligence Unit's 2018 Cost of Living Index.
Summary:
The official Air India Twitter account was briefly hacked by suspected Turkish hackers today.
Summary:
A professor said you won't find two same-sized galaxies, with different densities, rotate with different speeds.
Summary:
In 1975, Stephen Hawking published a "shocking" theory, stating that black holes are not quite black and glow slightly with "Hawking radiation", consisting of particles like photons and neutrinos.
Summary:
Summary:
The IAF has reportedly agreed to buy 123 'present-day' Tejas jets for over â¹75,000 crore.
Summary:
The Delhi Police has booked a BSF constable after a woman alleged that he was staring and winking at her while they were traveling on a DTC bus in Delhi.
Summary:
The Centre has increased the maximum speed limit in urban areas for passenger vehicles to 70 kmph and 60 kmph for cargo carriers.
Summary:
The accused made a dummy candidate sit for her exam while he raped her with the help of two women.
Summary:
After a Kolkata school allegedly forced 10 school students to confess to being lesbians, West Bengal Education Minister Partha Chatterjee said that lesbianism won't be allowed in schools.
Summary:
Once the rule is implemented, establishments will have to comply within a month or pay fines ranging between â¹1,000 and â¹5,000 for a first violation.
Summary:
Oklahoma reportedly had one of the US' busiest death chambers.nnn
Summary:
A French court has fined baker Cédric Vaivre â¬3,000 (nearly â¹2.5 lakh) for breaking labour laws by keeping his bakery open for all seven days of a week last summer.
Summary:
Filmmaker Hansal Mehta, while speaking about his film 'OmertÃÂ ', said, "I want to leave viewers with a sense of awe, disgust, hate [and] surprise." "This was the ideal film to hurtle us out of our comfort zone," he added.
Summary:
Alia Bhatt took to Instagram to share new stills from the 25th day of the shoot of 'Raazi' on the occasion of her 25th birthday today.
Summary:
Lionel Messi's two goals and one assist helped Barcelona defeat Chelsea 3-0 (4-1 on aggregate) and enter the Champions League quarterfinals.
Summary:
Romanian biometric startup TypingDNA has launched a Chrome extension which verifies user identity based on typing patterns.
Summary:
Wikipedia has said that YouTube didn't tell the online encyclopedia about linking its pages alongside videos of conspiracy theories.
Summary:
Amazon had received 53 reports of overheating in the country, including one report of chemical burns due to contact with battery acid.
Summary:
Slamming the Congress party for neglecting Telangana, Chief Minister K Chandrashekar Rao on Wednesday said the state's "main villain" was Congress.
Summary:
Bengaluru-based queue-less food ordering startup SmartQ has raised $1 million from a group of Dubai-based investors.
Summary:
Bengaluru-based fintech startup Avail Finance has raised $17.2 million in a Series A funding round led by Matrix Partners.
Summary:
According to US' atmospheric weather agency NOAA, a "minor geomagnetic storm" is expected to occur on March 14-15 local time.
Summary:
A 19-year-old Dalit youth in Andhra Pradesh was allegedly beaten to death by the father and uncle of an 'upper caste' girl whom he was having an affair with.
Summary:
In 1920, Jai Singh Prabhakar, the Maharaja of Alwar, bought 7 new Rolls-Royce cars and employed them for garbage collection after he was refused a test drive in England.
Summary:
India have sealed their place in the final of the T20I tri-series after defeating Bangladesh by 17 runs in their fourth match of the tournament in Colombo on Wednesday.
Summary:
James Bond actor Pierce Brosnan said he was cheated by pan masala brand Pan Bahar as he was not informed about the product's "hazardous" nature in his advertisement contract, as per Delhi Additional Director (Health) SK Arora.
Summary:
'The Crown' producers have revealed that actress Claire Foy, who played Queen Elizabeth II in the historical series, was paid less than her male co-star Matt Smith, who played her husband Prince Philip.
Summary:
Actor Ajay Devgn, while talking about his college days, revealed, "I have been behind bars, twice inside a lock-up; even sneaked out my father's gun.
Summary:
Summary:
Navi Mumbai has the fastest 4G speed at an average of 8.72 Mbps, while Allahabad has the lowest at 3.5 Mbps, an OpenSignal analysis of 20 Indian cities between December-February revealed.
Summary:
A 10-year-old German shepherd owned by an American family was meant to be flown to US' Kansas City but was put on a Japan-bound flight.
Summary:
Dudhat said they were suspended to reduce Congress voters in the upcoming Rajya Sabha elections.
Summary:
Rajya Sabha MP Mahendra Prasad, also called King Mahendra, has declared movable assets worth over â¹4,000 crore and immovable assets worth around â¹29 crore in his election affidavit.
Summary:
The 21.56-km circular metro corridor, connecting Delhi University's north and south campuses, is part of the 59-km 'ring corridor' which will reportedly become India's longest metro line.
Summary:
Joining the #ENOUGH National School Walkout led by survivors of the Florida high school shooting, tens of thousands of students across the US walked out of classrooms on Wednesday to demand tighter gun safety laws.
Summary:
Notably, Incoming State Secretary Mike Pompeo had called Iran a "thuggish police state" and compared its ambitions to those of ISIS.n
Summary:
Earlier, Broadcom had said that it "strongly disagrees that its proposed acquisition of Qualcomm raises any national security concerns".
Summary:
In the wake of the PNB fraud, RBI Governor Urjit Patel has said no banking regulator can catch or prevent all frauds.
Summary:
Rishi Kapoor has said that eventually, only actors will survive and stars will fade out.
Rishi further said, "There are a lot of so-called actors also...
Summary:
Sri Lanka Cricket has adopted the same advanced GPS-based software used by Spanish football club Barcelona in order to improve performance and manage injuries of players.
Summary:
In 2017, CM Kumar-led JD(U) had broken alliance with the RJD to form a new government with BJP.
Summary:
The arrest was based on a complaint filed by the Special Protection Group, which guards PM Modi.
Summary:
In a first, Delhi's power distribution companies will procure 350 MW of power from wind farms to meet the city's energy demands, officials said.
Summary:
The Supreme Court on Wednesday rejected a plea of one of the convicts, AG Perarivalan, in the Rajiv Gandhi assassination case seeking to recall a 1999 court verdict upholding his conviction.
Summary:
Pacheco denied allegations he assaulted the man, who uploaded a video of himself confronting the minister.
Summary:
Two labourers were charred to death after a fire broke out in a paper manufacturing unit in Pune on Wednesday, officials said.
Summary:
A 34-year-old Bengaluru man lay on a street with one leg crushed and other leg fractured for 20 minutes after being hit by a speeding truck on Tuesday.
Summary:
The Bangladeshi-origin man was allegedly recruiting Rohingya Muslims in Delhi for terror activities.
Summary:
A 19-year-old student has been arrested in Haryana's Sonipat for allegedly killing his professor after he complained to his and his female friend's family about them talking in class.
Summary:
The man said he was asked to drop the sheets at CBSE Preet Vihar headquarters, the lawyer further claimed.
Summary:
Summary:
Born in Oxford in 1942, Stephen Hawking was nicknamed 'Einstein' in school despite low grades.
Hawking gained popularity for his theory on black holes and for his book 'A Brief History of Time'.
Summary:
Actress Radhika Apte has revealed that she once slapped a famous South Indian actor as he was tickling her feet.
I was stunned as we had never met before and I instinctively slapped him," said Radhika.
Summary:
Eddie Redmayne, who portrayed Stephen Hawking in the 2014 film 'The Theory of Everything', paid tribute to the theoretical physicist on Wednesday.
Summary:
Summary:
May further said that the UK will freeze Russian state assets.
Summary:
Rohit overtook veteran all-rounder Yuvraj Singh, who has slammed 74 sixes in 58 T20I matches.
Summary:
Meanwhile, BJP candidate Rinky Rani Pandey won from the state Assembly's Bhabua constituency.
Summary:
Samajwadi Party chief Akhilesh Yadav on Wednesday said the party's victory in the bypolls for UP's Gorakhpur and Phulpur seats, previously held by CM Yogi Adityanath and Deputy CM KP Maurya, shows people's "anger".
Summary:
While SP candidate Pravin Kumar Nishad won the Gorakhpur seat with a margin of 21,881 votes, SP candidate Nagendra Pratap Singh Patel won from the Phulpur constituency.
Summary:
Summary:
Uttar Pradesh witnessed the maximum incidents of communal violence across India in 2017 as 195 of the total 822 cases were reported from the state, MoS for Home Hansraj Gangaram Ahir has said.
Summary:
The government on Wednesday said that 31 business people facing a CBI investigation are fugitives abroad.
Summary:
The Maharashtra government has said the Enforcement Directorate (ED) would probe the alleged scam of duping investors of â¹2,000 crore with Ponzi marketing schemes through the GainBitcoin website.
Summary:
RBI Governor Urjit Patel has said the central bank also feels "anger, hurt and pain" on banking frauds and irregularities.
Summary:
American pop band 'OneRepublic' is set to perform in India with its concert scheduled for April 21 in Mumbai.
Besides getting a chance to perform for our Indian fans, we're excited about exploring...beautiful country," said band's co-founder Ryan Tedder.
Summary:
Speaking about the farmers' march in Maharashtra, actor Aamir Khan on Wednesday said, "It is necessary for people living in the city to help the farmers and solve their issues." Aamir added that his NGO 'Paani Foundation' has achieved great success in the past three years.
Summary:
Indian cricket team captain Virat Kohli, who has been rested for the ongoing T20I tri-series in Sri Lanka, has said that he can be a total vegetable at home.
Summary:
Indian badminton player Saina Nehwal crashed out of the All England Open on Wednesday after losing 14-21, 18-21 to world number one Tai Tzu Ying in the first round.
Summary:
Gorakhpur District Magistrate Rajeev Rautela on Wednesday ordered the personnel at the counting centre not to give updates to the media during the Lok Sabha bypolls.
Summary:
Congress leader Mallikarjun Kharge has said UP CM Yogi Adityanath used to consider himself God's incarnation.
Summary:
Dinosaur-bird Archaeopteryx was capable of flying despite skeletal differences from modern birds, but in frenetic breaks, according to a study in the journal Nature.
Summary:
A supervolcano eruption 74,000 years ago in Indonesia likely decimated Stone Age populations around the world, but South African hunter-gatherers at these sites continued to thrive, as per a study in Nature.
Summary:
As many as 26,500 students committed suicide between 2014 and 2016, Union Minister of State for Home Affairs Hansraj Gangaram Ahir told the Rajya Sabha on Wednesday.
Summary:
A sessions court on Tuesday sentenced a cab driver to 10 years in jail for kidnapping and raping then 13-year-old boy several years ago in Mumbai.
Summary:
The Supreme Court has rejected all third-party pleas seeking to intervene in the Ayodhya land dispute, adding that only original parties will be allowed to advance arguments in the case.
Summary:
Tax department had warned that persons who abet and induce benami transactions may face rigorous imprisonment of up to 7 years.
Summary:
RJD candidate Kumar Krishna Mohan on Wednesday won the bypolls to Bihar Assembly's constituency of Jehanabad, while RJD candidate Sarfaraz Alam won the Lok Sabha constituency of Araria.
Summary:
Samajwadi Party candidate Pravin Kumar Nishad has won the Lok Sabha bypolls for Gorakhpur, defeating BJP's Upendra Dutt Shukla by nearly 22,000 votes.
Summary:
Stephen Hawking was one of the most famous sufferers of amyotrophic lateral sclerosis (ALS), a fatal disease that attacks motor nerve cells in the brain and spinal cord, hampering their communication with muscles and gradually leading to paralysis.
Summary:
UK Prime Minister Theresa May on Wednesday expelled 23 Russian diplomats after the country refused to explain how a Russian-developed nerve agent was used on former double agent Sergei Skripal and his daughter in Britain.
Summary:
Finland has been named the happiest country, according to the UN Sustainable Development Solutions Network's 2018 World Happiness Report.
Summary:
Renowned physicist Stephen Hawking had devised formulae for a bookmaker on England's chances of success at the 2014 FIFA World Cup. Hawking analysed data from every FIFA World Cup since 1966 and claimed that England should play in red and use a 4-3-3 formation.
Summary:
Technology giant Apple's Taiwanese contract manufacturer Wistron has won approval from the Karnataka government to build a new assembly facility in Bengaluru.
Summary:
People can book a spot on Nectome's waitlist with a $10,000 deposit.
Summary:
Talking about Samajwadi Party candidates winning the Uttar Pradesh bypolls, CM Yogi Adityanath said the BJP had lost to the alliance between SP and Bahujan Samaj Party (BSP) due to its overconfidence.
Summary:
Speaking about RJD's win in two Bihar bypoll seats on Wednesday, Lalu Prasad Yadav's son Tejashwi Yadav tweeted, "You've not captured 'Lalu' but an ideology.
Summary:
After the death of Israel's first President in 1952, Albert Einstein was offered the Presidency of the Jewish state.
Summary:
In October 2015, Jaipur's Suresh Kumar Sharma memorised and recited 70,030 post-decimal digits of the mathematical constant Pi in 17 hours 14 minutes, breaking a Guinness World Record set by another Indian, Rajveer Meena in March 2015.
Summary:
Gurib-Fakim allegedly used a credit card provided by an NGO for personal shopping during foreign trips.
Summary:
Responding to US President Donald Trump's announcement that the country might develop a "Space Force" in the near future, Russia's deputy prime minister for defence and space industry said, "The US is opening Pandora's box." He further warned Trump against taking the arms race into space.
Summary:
American pornstar Stormy Daniels' lawyer has said it's time for US President Donald Trump to "buckle up" on his client's offer.
Summary:
Earlier, Citibank India also banned the use of its cards for buying cryptocurrencies.
Summary:
He further said, "I had wished he should wish me first...it turned out to be true!"
Summary:
The makers of 'Mental Hai Kya', while denying rumours that the film was first offered to Kareena Kapoor in 2013, said, "Kangana Ranaut was always the first and only choice for the film." "It's a completely different script, which was written only last year.
Summary:
Actress Deepika Padukone has said fame is a byproduct of her profession so she cannot ignore it and the attention she gets from it.
Summary:
Singer Aditya Narayan has apologised over an accident involving his car, which rammed into an autorickshaw and left two persons injured, and added that he will bear the medical expenses of the injured victims.
Aditya was arrested by the police following the accident.
Summary:
Vipul's bail application states that he was illegally arrested by the CBI and not produced before a magistrate within 24 hours.
Summary:
Hawking was called the "adventurous type" by members and sometimes damaged boats by steering through very narrow gaps.
Summary:
The Reputation Quotient took into consideration factors such as workplace environment, financial performance, vision, and leadership.
Summary:
After the plane landed in Perth, he attempted to bite a police officer trying to detain him.
Summary:
The court was hearing a petition which claimed that the defection by four ministers to TDP after winning the elections from YSRCP tickets was against the Constitution.
Summary:
World-renowned physicist Stephen Hawking gradually got paralysed after being diagnosed with ALS syndrome at the age of 21.
Summary:
The Brihanmumbai Electric Supply and Transport (BEST) Undertaking is set to introduce a mobile application which will allow commuters to determine the expected arrival time of buses while they wait at the stops.
Summary:
In the recording, Jahan rules out a possibility of any compromise and asks Shami to accept his wrongdoings.
Summary:
RJD candidate Kumar Krishna Mohan has won from the Jehanabad constituency during the Bihar Assembly bypolls by a margin of 35,371 votes.
Summary:
China is the largest country in the world to have a single time zone.
Summary:
Pi (ÃÂ) is a mathematical constant defined as the ratio of a circle's circumference to its diameter.
Summary:
Further, AirAsia, Vistara and IndiGo reported 1,367, 1,225 and 340 snags respectively.
Summary:
A restaurant in Kerala named Janakeeya Bhakshanasala serves three meals a day, completely free of charge.
Summary:
BJP and Congress MLAs on Wednesday began thrashing each other inside the Gujarat Assembly during the ongoing Budget session.
Summary:
After the Bahujan Samaj Party and Samajwadi Party secured leads over the BJP in the Uttar Pradesh bypolls, West Bengal CM Mamata Banerjee tweeted, "The beginning of the end has started".
Summary:
Late scientist Stephen Hawking, during his 2001 India visit, told former President KR Narayanan "Indians are so good at mathematics and physics." Hawking celebrated his 59th birthday and delivered a talk titled "The Universe in a Nutshell" in Mumbai.
Summary:
Inflation measured by the Wholesale Price Index (WPI) eased to a seven-month low of 2.48% in February compared to 2.84% in January, government data showed on Wednesday.
Summary:
Germany's Parliament on Wednesday re-elected Angela Merkel as the country's Chancellor for the fourth time in a row, putting an end to nearly six months of absence of government in the country.
Summary:
A Vietnamese restaurant has encased in glass a table where former US President Barack Obama ate a $6 meal during his visit to the country in 2016.
Summary:
A woman, who claimed to be the daughter of Dubai's ruler Sheikh Mohammed Al Maktoum, has gone missing off Goa coast, according to reports.
Summary:
BSNL, Air India and MTNL were the least profitable public sector units in 2016-17, according to a government survey.
Summary:
China's securities regulator on Wednesday said it fined Xiamen Beibadao Group record 5.5 billion yuan (about â¹5,650 crore) for manipulating share prices.
Summary:
Actress Sana Khan, while speaking about casting couch, said, "There are so many cheap men...
Summary:
A firefighter saved the life of a suicidal woman in the Chinese city of Nanjing by kicking her back into her eighth-floor flat.
Summary:
"I don't even have an inch of me missing out on anything because my body really needed this," he further said.
Summary:
The Railways took the decision as the LCD screens were found damaged, with their wires broken and headphones stolen, the official added.
Summary:
A passenger was arrested at the Delhi airport for allegedly trying to smuggle gold worth â¹75 lakh, according to an official statement issued on Tuesday.
Summary:
TDP MPs distributed ladoos from Tirupati Balaji in the Parliament while demanding for Special Category Status for Andhra Pradesh.
Summary:
After allegations that students in a West Bengal girls' school were forced to write they are lesbians, the school's headmistress said, "Students did something naughty for which guardian meeting was held." "The students have written everything on their own.
Summary:
The Lok Sabha on Wednesday passed the Finance Bill and Appropriation Bill with a voice vote amid protests by the Opposition.
Summary:
The violence had been triggered when Ekbote and others, reportedly carrying saffron flags, had allegedly pelted stones at Dalits gathered to mark an event.
Summary:
A New Zealand diplomat to the US, Caroline Beresford, recently tweeted that the US Democrats, the opposition party to US President Donald Trump's administration, need to "get their sh*t together or we will all die".
Summary:
The acquisition will make Yes Bank the biggest shareholder in Fortis.
Summary:
The Butler PickPal uses Machine Vision algorithms to identify the items to be picked from the shelves.
Summary:
Buyers on Amazon India will also be entitled to a no-cost EMI offer on purchasing any OnePlus 5T variant.
Summary:
UK-based doctors have reported the discovery of a 9-cm-long air-filled cavity in the right lobe of a man's brain.
Summary:
After learning in the late 1930s that the Nazis were working towards developing an atomic bomb, Albert Einstein wrote a letter to the then-US President Franklin Roosevelt, urging him to begin atomic research.
Summary:
The official trailer of Rajkummar Rao starrer 'OmertÃÂ ' has been released.
'OmertÃÂ ' is scheduled to release on April 20.
Summary:
French security expert who goes by the alias Elliot Alderson, has posted a video showing how to bypass Aadhaar Android appâÂÂs password protection in one minute.
âÂÂIâÂÂm not against #Aadhaar...
Summary:
Google on Tuesday announced that it has launched Google Station in Mexico to provide high-speed public WiFi at high-traffic venues including airports, shopping malls and public transit stations.
Summary:
Google will ban advertisements promoting cryptocurrencies and related content including initial coin offerings, from June this year.
Summary:
Volkswagen has been ordered by a German court to reinstate employee Samir B.
Samir was fired in 2016 after threatening his co-workers while the carmaker said it had taken the threats 'seriously'.
Summary:
Bengaluru-based Byju's has become India's first edtech startup to hit $1 billion valuation following a share allotment to investors last year.
Summary:
"We have lost a colossal mind," said World Wide Web creator Tim Berners-Lee.
Summary:
In a reference to Stephen Hawking's zero-gravity experience, NASA has paid a tribute to the late theoretical physicist by tweeting, "May you keep flying like superman in microgravity".
Summary:
PM Narendra Modi on Wednesday took to Twitter to condole the death of renowned physicist Stephen Hawking and wrote, "His grit and tenacity inspired people all over the world.
His demise is anguishing." "Professor Hawking's pioneering work made our world a better place.
Summary:
Jawaharlal Nehru University administration has accused agitating students of manhandling and verbally abusing Dean of Students Umesh Ashok Kadam.
Summary:
In the video, the policeman can be seen standing outside the window of a school and passing papers to the students.
Summary:
Arunachal Pradesh Assembly has passed Arunachal Pradesh Land Settlement and Records Amendment Bill, 2018, which will allow the state's tribal people to have ownership rights over their land for the first time.
Summary:
A Chinese reporter's eye-roll, which apparently portrayed her disapproval of a fellow reporter's question to a government official, has gone viral.
Summary:
Television actress Drashti Dhami has filed a complaint against the makers of the show 'Madhubala - Ek Ishq Ek Junoon', in which she played the lead role, over non-payment of dues.
Summary:
Shah Rukh Khan's statue will be unveiled at the Madame Tussauds wax museum in Delhi reportedly on March 23.
Summary:
The trailer of Eddie Redmayne starrer 'Fantastic Beasts: The Crimes of Grindelwald' has been released.
'Fantastic Beasts: The Crimes of Grindelwald' will release on November 16.
Summary:
The Supreme Court-appointed Committee of Administrators has asked BCCI's Anti-Corruption Unit (ACU) to investigate the allegations made by Mohammad Shami's wife Hasin Jahan that the cricketer took money from a Pakistani girl in Dubai.
Summary:
Indian cricket team captain Virat Kohli has said that 20-time Grand Slam champion Roger Federer is his "ultimate favorite".
Summary:
Finnish startup Oura has developed a smart ring called 'Oura' which tracks a user's activity and sleep cycle.
Summary:
France will sue Apple and Google over abusive trade practices, the country's Finance Minister Bruno Le Maire has said.
Summary:
Users can also import existing recordings into the Otter app and get transcriptions for them.
Summary:
The court further directed their third son to maintain cordial relations with them and pay them â¹5,000 as maintenance.
Summary:
China appears to be 'winning' its war on air pollution and has on average cut concentrations of fine particulate matter (PM) 2.5 by 32% over the last four years, the University of Chicago has said in its study.
Summary:
Bengaluru-based self-arranged matrimonial startup Wedeterna has raised undisclosed amount of funding from Singapore-based entrepreneur Avish Joseph.
Summary:
Online travel portal Yatra has launched a new campaign featuring its brand ambassador, Bollywood superstar, Ranbir Kapoor.
Summary:
Physicist Albert Einstein had offered the Nobel Prize money to his wife Mileva Maric as part of a divorce settlement in 1919, before even winning the prize.
Summary:
A married couple discovered they unknowingly crossed paths 11 years before they met when they were captured in the same photograph in Qingdao, China.
Summary:
Actor Aamir Khan joined photo and video sharing platform Instagram on the occasion of his 53rd birthday today.
Summary:
Actor Narendra Jha, known for appearing in films like 'Raees' and 'Haider', passed away after suffering a cardiac arrest on Wednesday morning.
Summary:
A 35-year-old blind woman from Ireland has achieved her second Guinness World Record title by running over 130 kilometres on a treadmill.
Summary:
A chatbot called 'DoNotPay' created by Stanford University student Joshua Browder, has started offering a new service which helps users pay lowest prices for flight bookings.
Summary:
Bengaluru, Hyderabad, Visakhapatnam and Delhi also scored above the country's average speed of 20.72 Mbps.
Summary:
About 130 million ads were removed for abusing services including trying to get around Google's ad review.
Summary:
Summary:
Customers who do not have a credit or debit card will be able to convert cash into a payment method in an easy way through Amazon's debit card, the company said.
Summary:
The company, which focuses on the ancillary cannabis industry, has invested in eight US-based companies so far, Managing Partner Karan Wadhera said.
Summary:
Hawking and Einstein both lived until the age of 76 years.
Summary:
PM Modi is currently the second-most followed world leader on Twitter.
Summary:
Indian Army Chief General Bipin Rawat on Wednesday said that India's decision not to intervene in the on-going political crisis in Maldives must have been a well though-out decision.
Maldives President Abdulla Yameen has declared an emergency in the country.
Summary:
Condoling the death of renowned physicist Stephen Hawking, President Ram Nath Kovind on Wednesday tweeted, "His brilliant mind made our world and our universe a less mysterious place." President Kovind added that Hawking's courage and resilience will remain an inspiration for generations.
Summary:
Expressing concern over the ongoing Syrian Civil War, United Nations' Secretary-General António Guterres has said that the Arab country is "bleeding inside and out".
Summary:
CISF personnel on Monday night dropped a 25-year-old woman in their official vehicle after she was not allowed to board a Delhi Metro train for allegedly being drunk.
Summary:
Actress Bhagyashree will make a comeback in films with the Telugu version of the 2014 Hindi movie '2 States'.
Summary:
Technology giant Google will reportedly prioritise articles in the search results from those publications which are subscribed by users.
Summary:
Roads will not show up on the map until several users upload workouts in that area, Strava said.
Summary:
YouTube will introduce 'information cues' feature, that will add a Wikipedia page alongside videos that discuss conspiracy theories, the video sharing platform's CEO Susan Wojcicki has said.
Summary:
Video-sharing platform YouTube has rolled out a 'dark theme' for its mobile app on iOS.
Summary:
A total of 39 claims, including 18 deaths and 21 injuries, were filed and compensation was granted in 17 death and 19 injury cases.
Summary:
A Class 12 girl in Tamil Nadu's Krishnagiri committed suicide by hanging herself on Tuesday after her classmates tore up her board examination hall ticket in school.
Summary:
BJP chief of Tamil Nadu Tamilisai Soundararajan has claimed that actor-turned-politician Kamal Haasan's new party Makkal Needhi Maiam (MNM) enrolled her as a member.
Summary:
The Telangana government on Tuesday signed a Memorandum of Understanding (MoU) with a Tamil Nadu-based firm for setting up a â¹100-crore apparel superhub in the state.
Summary:
Google Maps has launched its 'plus codes' feature in India, which allows users to generate unique virtual addresses comprising 10-digit codes for locations, which do not have a corresponding address on the application.
Summary:
Renowned British theoretical physicist and cosmologist Stephen Hawking has passed away at the age of 76, his family confirmed on Wednesday.
Summary:
English astronomer Arthur Eddington used 1919's total solar eclipse to prove Einstein's theory that gravity can bend spacetime causing light to take a different path, which challenges Newton's theory of space being a fixed background on which gravity acts.
Summary:
Hawking later went on to develop theories on black holes, the infiniteness of the universe and challenge Einstein's views on time travel.
Summary:
Summary:
The film, which is based on the third Battle of Panipat, will star Sanjay Dutt, Arjun Kapoor and Kriti Sanon in the lead roles.
Summary:
A dog died on a United Airlines New York-bound flight on Monday after an air hostess forced its owner to keep it in the overhead bin during a 3.5-hour flight.
Summary:
Congress Spokesperson Randeep Surjewala on Tuesday said, "The dinner hosted by Sonia Gandhi for opposition parties should not be seen from the prism of politics.
Summary:
Indian Army chief General Bipin Rawat has said that if Pakistan wants ceasefire, it must come on Indian terms, which means Pakistan has to stop supporting and infiltrating terrorists in India.
Summary:
Unique Identification Authority of India (UIDAI) has clarified that Aadhaar is still necessary for opening new bank accounts or applying for Tatkal passports.
Summary:
Trump also revealed that he fired Tillerson on Tuesday because he disagreed with him on issues such as North Korea.
Summary:
Several pairs were donated by families that lost their children to gun violence.
Summary:
China recently amended its Constitution allowing Jinping to remain President indefinitely.
Summary:
Meanwhile, other passengers supposed to board the LuleÃÂ¥ flight were left behind at Sundsvall airport.
Summary:
The SBI has closed over 41 lakh savings accounts between April 2017 and January 2018 for not maintaining the minimum balance, an RTI response has revealed.
Summary:
TV show 'Wonder Woman' actress Lynda Carter revealed that on the sets of the show she had discovered a cameraman had drilled a hole into her dressing room.
Summary:
"Gigi and I had an incredibly meaningful...relationship and I have a huge amount of respect for [her]," wrote Zayn.
Summary:
The Church of Scientology has launched its own 24-hour television network which would be available on various streaming services across the US.
Summary:
Johnson, who is part of the KKR squad for IPL 2018, posted photos of his scalp before and after receiving the stitches on Instagram.
Summary:
Manchester United crashed out of the Champions League in the pre-quarterfinals after losing 1-2 to Sevilla at Old Trafford on Wednesday.
Summary:
Indian badminton players training at the Hyderabad-based Pullela Gopichand Badminton Academy will receive "premium eggs" from Japanese food processing major ISE Foods.
Summary:
Meanwhile, Congress MLAs are also planning to move High Court against the suspension.
Summary:
Vice Chief of the Army Staff Lieutenant General Sarath Chand on Tuesday said that "insufficient" funds had been allocated for modernisation in the Budget 2018.
Summary:
Chhattisgarh Chief Minister Raman Singh has said that the Naxal attack in which nine CRPF personnel were martyred on Tuesday, was carried out in retaliation to an earlier encounter.
Summary:
Delhi transport department has announced plans to buy body cameras which will live stream the activities of the enforcement officers on field.
Summary:
The Mumbai and Bangalore airports owe the CISF â¹48.70 crore and â¹22.86 lakh respectively.
Summary:
As many as 10,000 Artificial Intelligence-powered CCTV cameras will be installed at over 4,500 junctions and main roads across Bengaluru to ensure safety of women, officials said.
Summary:
Upasana later withdrew her complaint after the driver confessed to his crime.
Summary:
Addressing the issue of casting couch, Ileana D'Cruz said, "If you speak out about casting couch, it will end your career." She revealed she had once denied giving advice to a junior artiste, who was being propositioned by a producer, as she believed it's one's own decision on what's to be done.
Summary:
Bombay High Court has refused to grant interim relief to Ranveer Singh and Arjun Kapoor on an FIR filed against them in 2015 for allegedly using obscene language during an event by comedy group AIB.
Summary:
'Blackmail' filmmakers revealed when they met Irrfan Khan recently, he asked them to ensure that the film gets a "great release".
Summary:
Former TV anchor and producer Suhaib Ilyasi, known for hosting 'India's Most Wanted', has moved the Delhi High Court against a trial court's order sentencing him to life term for his wife's murder.
Summary:
Bengaluru Police revealed that the firm has cheated over 800 investors with a reported accumulated sum of â¹300 crore.
Summary:
Iran's Foreign Minister Mohammad Javad Zarif also invited Pakistan to participate in the Chabahar Port Project.
Summary:
Over 35,000 farmers marched around 180 km to press for their demands.
Summary:
Defence Minister Nirmala Sitharaman will reportedly visit China in April.
Summary:
He added that the world is now looking at India to balance China's rise in the Indo-Pacific region.
Summary:
Wilful defaulters owe over â¹1.1 lakh crore to public sector banks, MoS for Finance Shiv Pratap Shukla said.
Summary:
Talking about the Naxal attack in Sukma which killed nine CRPF personnel, Chhattisgarh CM Raman Singh has said it won't lower the morale of security forces.
Summary:
Haspel ran a CIA interrogation facility in Thailand during former US President George W Bush's term.
Summary:
Summary:
As per reports, producer Ekta Kapoor had earlier approached Kareena Kapoor Khan to star in 'Mental Hai Kya', initially titled 'Badtameez Dil', over bold scenes and nudity.
Summary:
Arpita Khan Sharma, Salman Khan's sister and wife of 'Loveratri' actor Aayush Sharma, confirmed that Salman's song 'O Oh Jaane Jaana' would not be recreated in the film.
Summary:
During this period, 53 non-fraudulent LoUs were also issued to Nirav's firms, he added.
Summary:
Kings XI Punjab's mentor-cum-director of cricket Virender Sehwag has said that if veteran cricketers Yuvraj Singh and Chris Gayle help the team win two-three matches, the team would get the return on investment.
Summary:
Leaders of various opposition parties on Tuesday attended a dinner hosted by former Congress President Sonia Gandhi at her 10 Janpath residence in Delhi.
Summary:
India has reduced the royalties paid by Indian seed producers to US company Monsanto for its genetically modified cotton seeds for the second time in three years.
Summary:
A passenger got locked inside a trial room of a store at the Delhi airport recently just before boarding an international flight, officials said.
Summary:
The Delhi government is working on a proposal to levy a tax on vehicles entering congested roads in the national capital, Lieutenant-Governor Anil Baijal has said.
Summary:
The US steel and aluminium tariffs are expected to cause losses of over â¹840 crore to India, a steel ministry report said.
Summary:
However, the gas supply to PNG customers will remain unaffected.
Summary:
However, the parents alleged the school authorities forcibly obtained written admission to being lesbians from the girls.
Summary:
Maharashtra CM Devendra Fadnavis has told the state Assembly that the government will withdraw all minor cases registered during the violence which erupted after the 200th anniversary celebrations of the Bhima Koregaon battle.
Summary:
He was sentenced to four years in prison.
Summary:
The RBI has discontinued the issuance of Letters of Undertaking (LoUs) and Letters of Comfort (LoCs) for import trade credits.
Summary:
The bank had previously pegged its exposure to the Gitanjali companies at â¹6,138 crore.
Summary:
A day after a magisterial court acquitted him and all accused in the 2009 Mangalore pub attack, Sri Ram Sene chief Pramod Muthalik said he has apologised a thousand times.
Summary:
The 2009 Mangalore pub attack, in which all accused were acquitted on Monday, related to an alleged attack by around 40 Sri Ram Sene activists on a group of men and women at a pub.
Summary:
At least 13 people were killed and 11 were injured after a bus fell into a 150-foot gorge in Uttarakhand's Almora district on Tuesday.
Summary:
The death toll in Tamil Nadu's forest fire has risen to 11 after a 29-year-old woman succumbed to burn injuries on Tuesday.
Summary:
Russia has denied allegations of its involvement in the attack.
Summary:
Saudi woman were earlier required to petition courts to win custody of children after divorce.
Summary:
Bidhya Devi Bhandari was on Tuesday elected Federal Nepal's first President after securing nearly two-thirds vote from lawmakers.
Summary:
Meanwhile, Russia has asked Britain to provide a sample of the agent.
Summary:
Following US President Donald Trump's decision to sack US Secretary of State Rex Tillerson, a State Department official said that Tillerson is unaware of the reason for his ouster.
Summary:
German automaker Volkswagen CEO Matthias Mueller's compensation surged by 40% to $12.47 million in 2017.
Summary:
I don't want to talk about anything (related to) politics (now)," added Rajinikanth.
The actor had announced his intention to join politics in December.
Summary:
Talking about Amitabh Bachchan falling ill while shooting 'Thugs of Hindostan', wife Jaya Bachchan said, "Amitji's health is fine...He has pain in his back and neck...
Summary:
Shahid Kapoor will reportedly be playing the lead role in the remake of Manoj Kumar's 1964 film 'Woh Kaun Thi'.
He was reportedly one of the first choices to essay Manoj Kumar's role for the film.
Summary:
Summary:
Bobby Deol will star in Akshay Kumar and Riteish Deshmukh's 'Housefull 4'.
Summary:
Rovman Powell broke the press-box window with a six that helped him reach his century during Windies' ICC World Cup Qualifier match against Ireland.
Summary:
Cleveland Cavaliers' LeBron James pulled off a no-look assist during an NBA match against Los Angeles Lakers on Monday.
Summary:
Delhi CM Arvind Kejriwal's advisor VK Jain resigned from his post citing personal reasons and family commitments on Tuesday, as per reports.
Summary:
The student was riding a motorbike along with his two friends when the men, who were also on motorbikes, stopped him and assaulted him.
Summary:
The Telangana government has directed the state's schools to function for half-days from March 15 till the end of the academic session on April 12.
Summary:
A video of Hillary Clinton slipping twice on stairs during her visit to the Jahaz Mahal in Madhya Pradesh's Mandu has surfaced online.
Summary:
No staffer of any of these institutions was involved in the process, the police said.
Summary:
A day after Russian President Vladimir Putin revealed that Angela Merkel sends him a few bottles of Radeberger beer from time to time, the German Chancellor said that Putin once sent her "some very good smoked fish".
Summary:
Union Minister CR Chaudhary has revealed that Foreign Direct Investment (FDI) of $209 billion has been received during April 2014 to December 2017 period.
Summary:
The government had also disqualified over 3 lakh directors, including directors of these deregistered companies.
Summary:
Tillerson had earlier reportedly called Trump a "moron", prompting Trump to challenge him in an IQ test.
Summary:
However, Broadcom said it was reviewing the order and that it "strongly disagrees" that its proposed acquisition raises any national security concerns.
Summary:
US President Donald Trump on Tuesday appointed Gina Haspel as the intelligence agency CIA's first female Director after appointing outgoing Director Mike Pompeo as the Secretary of State.
Summary:
The US House Intelligence Committee led by the Republican Party has said it found no evidence of collusion between President Donald Trump's campaign and Russia during the 2016 presidential elections.
Summary:
AB de Villiers has revealed he was struggling to breathe when he was in 90s during his unbeaten 126-run knock against Australia in the second Test.
The hundred was De Villiers first in Tests in over three years.
Summary:
PM and ex-Gujarat CM Narendra Modi was interrogated by police in the Ishrat Jahan encounter case but this was not placed in the records, claimed former IPS officer DG Vanzara, who is an accused in the case.
Summary:
Rajasthan CM Vasundhara Raje on Tuesday tweeted that wearing uniforms will be made voluntary rather than compulsory for students studying in state-run colleges.
Summary:
The Supreme Court has annulled ex-CM Bhupinder Hooda-led Haryana government's decision to drop land acquisition proceedings for an industrial town in 2007, calling it "fraud on power".
Summary:
Palestinian Prime Minister Rami Hamdallah on Tuesday survived an assassination attempt after a roadside bomb targeted his motorcade in Gaza.
Summary:
Two women have been arrested for allegedly stealing bras worth more than $11,000 (â¹7 lakh) from a Victoria's Secret store in California, United States.
Summary:
The company allegedly took central sales tax exemption by showing forged documents and also did not pay the sales tax from 2009 to 2014.
Summary:
The value of the stolen tokens was around $200 million at the time of refund.
Summary:
Police said that Aditya, who paid â¹10,000 as fine, had taken the injured driver and passenger to a hospital after the accident.
Summary:
Interior designer Gauri Khan has dedicated the award she received for 'Excellence in Design' at the 'Hello Hall of Fame Awards' to her husband Shah Rukh Khan.
Summary:
Pietersen said he was happy not to be playing Test cricket anymore.
Summary:
Kagiso Rabada has reclaimed the top spot among bowlers in Test rankings, a day after being banned for two Tests for breaching ICC Code of Conduct.
Summary:
England woman cricketer Danielle Wyatt, who had proposed Virat Kohli on Twitter in 2014, has said she will use the bat gifted to her by the Indian captain for England's upcoming tour of India.
Summary:
Calling Facebook a "beast", UN special appointee on human rights in Myanmar, Yanghee Lee, blamed the social media platform for spreading hate speech against the Rohingya Muslims in Myanmar.
Summary:
The user base for digital transactions is currently about 90 million, but could triple to 300 million by 2020.
Summary:
A cruise ship that will sail to 32 countries in 7 continents will be launched in 2020.
Summary:
Summary:
The carmaker further aims to purchase batteries worth about $61 billion for its electric-car push, which includes three new models in 2018.
Summary:
The boy was playing with a glass, which fell into the bucket, and he drowned while trying to retrieve it, police said.
Summary:
Former Rajya Sabha MP Akhtar Rizvi filed a case of cheating in Mumbai's Bandra Police Station earlier this month, saying his and his daughter's income tax e-filing accounts had been hacked.
Summary:
A 37-year-old man from Maharashtra was arrested for cheating around 15 women of their cash and valuables by posing as a woman on social networking site Facebook, police said.
Summary:
A college professor in Haryana's Sonipat was allegedly shot dead by an unidentified student on Tuesday, police said.
Summary:
Claiming that relations between Turkey and the US are at "breaking point", Turkish Foreign Minister Mevlut Cavusoglu on Tuesday said, "US doesn't keep its word [and] constantly lies." Turkey had earlier opposed the US' support to the Kurdish militia in Syria as it considers them to be terrorists.
Summary:
The court held that the government cannot insist on mandatory Aadhaar linkage.
Summary:
Declaring assets worth â¹1,000 crore, Rajya Sabha MP Jaya Bachchan has disclosed that she and her husband Amitabh Bachchan own 12 vehicles worth over â¹13 crore.
Summary:
A radio chat between the control tower and the pilot ahead of the US-Bangla Airlines plane crash at a Nepal airport has revealed that there was confusion between the two over landing instructions.
Summary:
Amitabh Bachchan owns a pen worth â¹9 lakh, as per an affidavit filed by Rajya Sabha MP Jaya Bachchan while declaring â¹1,000 crore worth of assets for the couple.
Summary:
The 910-carat diamond, which is approximately the size of two golf balls, was found in Lesotho in southern Africa earlier this year.
Summary:
Sanjay Mewada, the main accused, was arrested by Gurugram police from Bhopal.
Summary:
I see my life in terms of music...
I get most joy in life out of music," Einstein once said.
Summary:
After the Supreme Court legalised passive euthanasia and creation of living wills, the Indian Council of Medical Research (ICMR)âÂÂhas defined terms relating to it to avoid misinterpretation.
Summary:
The TRS also alleged that some Congress members were drunk.
Summary:
The 1993 Mumbai blasts mastermind Dawood Ibrahim and his family is being guarded by Pakistani rangers in Karachi at a safe house, the underworld don's aide Farooq Takla has reportedly told CBI.
Summary:
Residents of Mumbai donated shoes and chappals to the nearly 35,000 farmers who marched from Nashik to Mumbai to get their demands fulfilled.
Summary:
Speaking at the End TB summit, PM Narendra Modi said the government has set the aim to eradicate tuberculosis from India by 2025, 5 years ahead of the target set for the world.
Summary:
The Maharashtra government has decided to make milk adulteration a non-bailable offence, with a punishment of up to three years in jail.
Summary:
Jannat's mother was reportedly against the kiss and claimed she ensured a 'no-kissing' clause in the serial's contract while signing it.
Summary:
Haasan was responding to a question asking why Rajinikanth was not speaking up on the Cauvery water-sharing issue with Karnataka.
Summary:
Sonam Kapoor on Tuesday shared the first look poster of her upcoming film 'Zoya Factor', which is an adaptation of author Anuja Chauhan's novel 'The Zoya Factor'.
Summary:
The bank said the proposal lacked "bonafides, genuineness and even credibility".
Summary:
England woman cricketer Danielle Wyatt, who asked Virat Kohli to marry her on Twitter in 2014, has revealed that the Indian captain told her not to do things like that on Twitter.
Kohli gifted Wyatt a bat when they met during India's England tour in 2014.
Summary:
"She's been irked by...the fact that we've been asking her questions on what would be the next step forward," a reporter said.
Summary:
US-based developer has made an app called Clever Buoy which can detect when sharks are swimming near beaches and sends a warning to users.
Summary:
A day after aviation regulator DGCA grounded 11 A320neo aircraft fitted with a certain series of Pratt & Whitney engines, IndiGo and GoAir cancelled as many as 65 domestic flights.
Summary:
A swimming pool has opened in Death Valley, which is the hottest and driest spot in North America.
Summary:
After Goa CM Manohar Parrikar went to the US to seek treatment, Shiv Sena has demanded President's rule in the state.
Summary:
Shanghai government has said its talks with Tesla for building a local manufacturing plant remain on track, despite Elon Musk's criticism of China's trade rules.
Summary:
The government has said it will take action against people who relaxed gold import norms for private trading houses during UPA rule, resulting in a "windfall gain" of â¹4,500 crore to 13 entities in six months.
Summary:
The AAP-led Delhi government has accused Chief Secretary Anshu Prakash of refusing to accept "important files" related to the preparation of annual budget speech at his residence.
Summary:
Pakistan's Punjab province has banned dance performances at all government and private schools, according to reports.
Summary:
SBI has slashed charges for non-maintenance of Average Monthly Balance (AMB) for customers in Metro and Urban centres from a maximum of â¹50 per month to â¹15 per month.
Summary:
Reports said that about 100 Naxals had carried out an ambush to attack the CRPF personnel.
Summary:
Out of 118 gender discrimination complaints, only one was deemed 'founded' by the company.
Summary:
India's tallest National Flag was unfurled in Karnataka's Belgaum on Monday in the presence of several schoolchildren and political leaders.
Summary:
Researchers at Swiss university ETH Zurich have developed a four-legged robot 'ANYmal' which can dance on any song in real time.
Summary:
Iceland-based hardware technology company has developed a ring that allows users to control sound, shape effects and send commands in real-time with the motion of their hand.
Summary:
The driver reportedly took an isolated route and passed sexual remarks and when the woman tried to escape, he locked the doors using central locking system.
Summary:
Responding to a tweet by Donald Trump on US-China trade, Elon Musk said, "I am against import duties in general, but the current rules make things very difficult.
Summary:
The Supreme Court on Tuesday held that foreign law firms cannot set up offices in India or practice full-time in Indian courts.
Summary:
The police in Indonesia have said that they have uncovered a secret fake news operation allegedly designed to destabilise the country's government.
Summary:
There is a restaurant in New York where every menu item features avocados.
Summary:
A German flag, instead of a Belgian flag, was accidentally affixed to a tree during an event to welcome the Belgian king and queen in Canada.
Summary:
Tata Sons on Monday sold a 1.48% stake worth $1.25 billion (â¹8,123 crore) in its IT services firm Tata Consultancy Services (TCS).
Summary:
She added, "Janhvi is absolutely lovely and she's a very good dancer.
Summary:
Addressing the Indian team before the Pakistan tour in 2004, India's then Prime Minister Atal Bihari Vajpayee said, "Khel hi nahi, dil bhi jeetiye." It was India's first full-tour of Pakistan in 15 years.
Summary:
Russia has named a deaf cat named Achilles as its official 'animal psychic' for the 2018 FIFA World Cup. The snow-white cat, who had forecasted results for last year's Confederations Cup, will make the predictions by choosing one of the two mice to eat.
Summary:
Australian spinner Nathan Lyon's ex-wife Mel Waring has alleged that the Australian cricket team helped keep the spinner's affair with Perth-based real estate agent Emma McCarthy a secret.
Summary:
Summary:
The deadline for the competition is 2021, with two milestones of $1 million each and one grand prize of $8 million.
Summary:
The Louvre briefly evacuated one its busiest rooms on Monday after environmental activists staged a protest against oil giant Total's patronage of the Paris museum.
Summary:
Bengaluru-based fraud analytics startup TrustCheckr has raised about â¹65 lakh in an angel round of funding from undisclosed investors.
Summary:
Scientists at the Geological Survey of India studying a rare meteorite that had hit Rajasthan in June 2017 have said that the space rock could unravel mysteries about the origin of life.
Summary:
Summary:
The cards reportedly belonged to residents of Lohara village near the city.
Summary:
A 55-year-old woman thrashed two men for allegedly misbehaving with her while she was waiting for a bus at a depot in Karnataka's Hubli.
Summary:
A 30-year-old daily wage employee in Delhi was on Sunday beaten up with heavy utensils by the owner and two employees of an eatery after he allegedly complained about the food quality.
Summary:
Delhi traders are observing a 'trade bandh' on Tuesday to protest against the ongoing sealing drive.
Summary:
Summary:
Hrithik Roshan took to Twitter to slam PR companies for frivolously using his name without his consent to promote new clients.
Summary:
Called Cora, the air taxi is an all-electric vehicle with 12 independent lift fans and has the capacity to accommodate two people.
Summary:
BJP leader Naresh Agrawal has apologised for his remarks against actor-politician Jaya Bachchan, saying, "I express my regret, if it did hurt anyone.
Summary:
An international team led by Japanese astronomers have confirmed 15 new exoplanets orbiting red dwarf systems among which a star K2-155 around 200 light-years away from Earth has three transiting super-Earths.
Summary:
After the Uttar Pradesh Police carried out encounters, history-sheeters in the state have started selling fruits, repairing bicycles, and plying auto rickshaws.
Summary:
The number of student visas issued by the US to Indians declined by 27.5% in 2017, the largest drop among international students in the country.
Summary:
Pacheco and his friends can be seen abusing and hitting the man in the video.
Summary:
At least 910 children were killed last year in the ongoing Syrian Civil War, making the year 2017 the deadliest for the Syrian Children, the UNICEF has said.
Summary:
A 12-year-old boy found a message in a bottle on a beach in Bermuda, four years after it was thrown into the ocean by French sailors.
Summary:
A 67-year-old man was stopped from carrying two wine bottles in his hand luggage during security check at a German airport, following which he drank the entire wine.
Summary:
A Mumbai man allegedly spent $1.41 million (â¹9.1 crore) on UK websites using three SBI travel cards with $200 (â¹13,000) limit.
Summary:
Actor Amitabh Bachchan has fallen ill during the shoot of his upcoming film 'Thugs of Hindostan' in Rajasthan's Jodhpur.
Summary:
Shah Rukh Khan's wife Gauri Khan has confirmed that their daughter Suhana will be shooting for a magazine.
Summary:
Serena Williams lost to sister Venus Williams at the Indian Wells Masters in straight sets, in what was their first matchup since Serena's return to competitive WTA tennis after giving birth.
Summary:
"MoviePass does not track and has never tracked or collected data on the location of our members at any point when the app is not active," he said.
Summary:
A Southwest Airlines flight was forced to make an emergency landing in US' New Mexico on Sunday night, following which passengers jumped from an aircraft wing onto the tarmac.
Summary:
Congress President Rahul Gandhi and former PM Manmohan Singh on Sunday discussed issues that affect liberal democracies, including fake news, with visiting French President Emmanuel Macron.
Summary:
This comes after Samajwadi Party's Naresh Agrawal and his son Nitin Agrawal joined BJP.
Summary:
In a recent interaction, US Senator Chuck Schumer said, "Would the world be a better place or a worse place if there were no Amazon right now?
Summary:
Founded in 2011, HealthAssure partners with hospitals and insurance companies to offer healthcare schemes for corporate employees.
Summary:
Founded in 2015, MCaffeine retails caffeine-infused products including shampoo, face wash, shower gels, creams, and body lotion.
Summary:
Chinese bike-sharing firm Ofo has raised $866 million in a funding round led by China's e-commerce giant Alibaba.
Summary:
A fusion plant using the magnets will produce as much power in 10-second pulses as used by a small city, said scientists.
Summary:
A 59-year-old woman and her daughter have sought President Ram Nath Kovind's permission for passive euthanasia as both of them suffer from muscular dystrophy.
Summary:
Congress MLA NA Haris, whose son was denied bail after being arrested for thrashing a youth, reportedly leaked the victim's confidential medical reports to dismiss the allegations.
Summary:
Summary:
India defeated hosts Sri Lanka by six wickets in their rain-curtailed third match of the T20I tri-series on Monday to go top of the points table.
Summary:
Lokesh Rahul has become the first Indian and overall tenth batsman to be dismissed hit-wicket in T20I cricket.
Summary:
A class 10 dropout from Karnataka, who was employed with a courier agency, cheated e-commerce major Amazon of â¹1.3 crore in five months.
Summary:
Currently, for VVIPs, planes are borrowed from the Air India fleet, making it necessary to re-configure them accordingly.
Summary:
It features a figure eight weave to give the upper flexibility, durability & lightness.
Apart from the upper tech, the shoe cushioning uses pressure mapping technology for flexibility & stability.
Summary:
Uranus, which is the seventh planet from the Sun, was discovered on March 13, 1781, by British astronomer William Herschel.
Summary:
In 2012, Jaya had declared assets worth â¹493 crore when she had filed her nomination for the Rajya Sabha.
Summary:
Chinmayi, known for her work in South Indian films and for Bollywood songs like 'Zehnaseeb', addressed the issue of harassment faced by both women and men in several tweets.
Summary:
American construction technology startup Icon has developed a method for building a single-storey house out of cement within 24 hours, with 3D printing.
Summary:
Tyson argued, during lunar eclipses, flat Earth would cast a striped shadow instead of round.
Summary:
Responding to a question in the Rajya Sabha, the government on Monday revealed that the cost of each basic version of the Rafale aircraft is â¹670 crore.
Summary:
India was the largest weapons importer in the world over the last five years, accounting for 12% of the total global imports, according to a report by the Stockholm International Peace Research Institute.
Summary:
American pornstar Stormy Daniels has offered to return an amount of $130,000 (over â¹84 lakh) allegedly paid to her by President Donald Trump's lawyer in return for her silence over her alleged affair with Trump.
Summary:
Aviation regulator Directorate General of Civil Aviation (DGCA) on Monday grounded 11 Airbus A320neo aircraft belonging to IndiGo and GoAir over faulty engines.
Summary:
Mohammad Shami's wife Hasin Jahan has stated that she tried reasoning with her husband for a long time before deciding to lodge a complaint of domestic violence and infidelity.
Summary:
The International Cricket Council (ICC) has stated it will not recognise any matches involving team India conducted by the United States of America Cricket Association (USACA).
Summary:
Stokes' trial will start on August 6 and is expected to last between five to seven days.
Summary:
The app's developer, Qbix, added extra code to mine Monero in exchange for additional features to the users.
Summary:
The Directorate General of Civil Aviation has grounded A320neo planes fitted specifically with PW1100 engines beyond ESN 450, following instances of engine failure mid-air.
Summary:
Andhra Pradesh CM Chandrababu Naidu on Monday accused the Centre of diverting the tax revenues collected from the southern states for the development of the northern states.
Summary:
Noida-based digital payments startup Pine Labs has raised $82 million in a funding round led by Actis Capital.
Summary:
Hadiya, whose marriage to a Muslim man was recently restored after it was nullified by the Kerala High Court, has demanded compensation from the state government for losing two "precious" years of her life.
Summary:
BJP MP Poonam Mahajan on Monday claimed that the farmers who were protesting in Maharashtra were being misguided by Maoists.
Summary:
Sunanda's body had teeth marks, scuffle bruises and injection wounds, the report added.
Summary:
Bodies of several babies preserved in bottles, some with umbilical cords still attached, have been found by termite exterminators working on a house renovation in the Japanese capital of Tokyo, according to reports.
Summary:
The issue was reportedly flagged at the latest GST Council meeting on Saturday.
Summary:
India's largest telecom operator Bharti Airtel on Monday received board approval to raise up to â¹16,500 crore for refinancing debt and for paying spectrum liabilities.
Summary:
Aditya has been taken for a medical examination.
Summary:
Ruling since 38 years, Equatorial Guinea's President Teodoro Obiang Nguema is currently the world's longest-serving leader.
Summary:
The BJP may fund â¹100 crore for a film depicting the rise and fall of its ideological parent, Rashtriya Swayamsevak Sangh, reports said.
Summary:
As many as 30 banks, including foreign lenders, reportedly paid out funds to Nirav Modi and Mehul Choksi's firms based on fraudulent guarantees issued by PNB.
Summary:
Indian fast bowler Mohammad Shami's father-in-law Mohamed Hassan has said that he does not know how things turned out ugly as the cricketer used to be a good person.
He further said his daughter Hasin Jahan wanted to resolve the matter inside closed doors but Shami was not interested.
Summary:
Kolkata Police have also asked if Shami went to Dubai officially with the entire team.
Summary:
Netflix CEO Reed Hastings, in a recent interview, said, "We hope someone would do a Reliance Jio in every other country." "Jio has been a transformational network in India and has brought down data cost massively," he added.
Summary:
Jammu and Kashmir CM Mehbooba Mufti has sacked Finance Minister and PDP leader Haseeb Drabu days after he said the state should not be seen as a conflict state or "political issue".
Summary:
While Madhu Koda was aged 35 years when he was sworn in as the Jharkhand CM in 2006, 48-year-old Biplab Kumar Deb has assumed office as Tripura CM.
Summary:
Senior Samajwadi Party (SP) leader and Rajya Sabha MP Naresh Agrawal officially joined the Bharatiya Janata Party (BJP) on Monday.
This comes after the SP decided to nominate actor-turned-politician Jaya Bachchan as its candidate for the upcoming Rajya Sabha elections.
Summary:
Further, the food inflation for the month stood at 3.26% compared to a 4.7% rise in January.
Summary:
Slamming the Maharashtra government over its failure to implement the loan waivers it promised in June 2017, a 58-year-old farmer said they won't commit suicide but will demand what they deserve.
Summary:
Demanding action against Reddy, the TRS alleged that some of the Congress MLAs were drunk.
Summary:
The case revolved around 40 Sri Ram Sena activists allegedly beating up a group of men and women at a pub in Mangalore, claiming the women were violating traditional Indian values.
Summary:
Myanmar is building military bases on the land previously inhabited by the Rohingyas, human rights group Amnesty International has claimed.
Summary:
Actress Deepika Padukone took to Instagram to share a picture of her first pair of shoes.
Summary:
I couldn't remove my shirt, couldn't act cute, nothing, so I had to be me." He further said that he needed this film in his career.
Summary:
The match was suspended after a disputed goal which led to AEK's players walking off the pitch in protest.
Summary:
The incident occurred in the 52nd over of Australia's first innings, when Rabada made contact with Smith with his shoulder after getting him out.
Summary:
Shahid had smashed Shaheen for a six off the previous ball.
Summary:
The 5.8 Undersea Restaurant in the Maldives is set to be converted into a yoga studio where yoga classes will be conducted, the Hurawalhi Island Resort has announced.
Summary:
External Affairs Minister and senior BJP leader Sushma Swaraj on Monday said Rajya Sabha MP Naresh Agrawal's remarks on actress-turned-politician Jaya Bachchan are "improper and unacceptable".
Summary:
The National Investigation Agency has issued summons to former Nagaland CM TR Zeliang in connection with a probe over alleged tax collection, extortion and funding of insurgent groups in the state.
Summary:
IPS Officers' (Karnataka) Association President Rajvir Pratap Sharma has written a letter to Chief Secretary Ratna Prabha over the state's police officers being demoralised.
Summary:
A Delhi court granted bail to Kashmiri photojournalist Kamran Yousuf six months after he was arrested for allegedly encouraging stone-pelting and mobilising support against security forces.
Summary:
An 11,000-volt current was supplied to over 100 houses in Kuan Patti area in Uttar Pradesh's Meerut, resulting in the death of a 20-year-old who was plugging his mobile phone charger.
Summary:
Five people were killed on Sunday after a helicopter crashed into New York's East River, with the pilot being the sole survivor, officials said.
Summary:
"We have accepted most of their demands and have given them a written letter," said Fadnavis.
Summary:
At least 49 people have been killed after a US-Bangla Airlines plane crashed at the Tribhuvan International Airport in Nepal's Kathmandu on Monday, an army spokesperson has said.
Summary:
The film, which revolves around Rao as British terrorist of Pakistani descent Ahmed Omar Saeed Sheikh, will release on April 20.
Summary:
Actor Amitabh Bachchan has apologised for an error in his tweet, where he had congratulated the Indian women's cricket team for their win in T20 and ODI games against Australia.
that should read South Africa NOT Australia," tweeted Bachchan.
Summary:
Sircar further said, "I think Irrfan has already issued a press statement and asked not to speculate (about his health)."
Summary:
Following his 11 wickets against Australia in the second Test, Kagiso Rabada now has a Test bowling strike-rate of 38.9, the best by any bowler with 100-plus wickets in 122 years.
Summary:
In an open letter on World Wide Web's 29th birthday, creator Tim Berners-Lee highlighted the threats faced by the Web ranging from political advertising to loss of personal data.
Summary:
The Railways has withdrawn the sale of i-Tickets through its IRCTC website reportedly from March 1.
Summary:
This comes after Zeid said that Duterte needs a "psychiatric evaluation".
Summary:
The Chinese Parliament has incorporated President Xi Jinping's thought on 'Socialism with Chinese Characteristics for a New Era' into the country's Constitution.
Summary:
LeT co-founder Maulana Amir Hamza has split from the terror group and formed a new outfit named Jaish-e-Manqafa.
Summary:
Farid Hilali, a Moroccan citizen who was wrongfully jailed for five years over the 9/11 attacks, has sought â¬1.8 million (over â¹14 crore) in compensation.
Summary:
French fashion designer Hubert Taffin de Givenchy, the founder of the luxury fashion label Givenchy, has passed away at the age of 91.
Summary:
In a promotional film for the upcoming Russian Presidential elections, President Vladimir Putin revealed that German Chancellor Angela Merkel sends him a few bottles of Radeberger beer from time to time.
Summary:
Apart from the owner, the restaurant has no permanent employees.
Summary:
An 18-year-old US waitress who was saving up for college has received a scholarship after a photograph of her helping an elderly customer with his food went viral.
Summary:
One of the largest cryptocurrency exchanges, Binance, is offering $250,000 (over â¹1.6 crore) worth cryptocurrency for information that would lead to the arrest of hackers who targeted it last week.
Summary:
A prayer meeting was held for late actress Sridevi by her family in Chennai on Sunday evening.
Summary:
Actor Sathyaraj, who is known for portraying the character 'Kattappa' in the 'Baahubali' film franchise, is set to get a wax statue at Madame Tussauds wax museum.
Summary:
Liverpool legend Jamie Carragher spat on a fan and his 14-year-old daughter's face from the window of his car after his former team's 1-2 loss to rivals Manchester United in the Premier League on Saturday.
Summary:
South Africa defeated Australia by six wickets in the second Test in Port Elizabeth to level the four-match series 1-1 on Monday.
Summary:
Former Pakistan captain Shahid Afridi apologised for giving a send-off after taking the wicket of PSL side Multan Sultans' Saif Badar by pointing his finger towards the dressing room.
Summary:
World Wide Web creator Tim Berners-Lee has said, "The fact that power is concentrated among so few companies has made it possible to weaponise the Web at scale." He added, in recent years, conspiracy theories have trended on social media platforms.
Summary:
The feature checks if the message to be deleted was sent in the last 24 hours, otherwise, the request is denied.
Summary:
The Delhi High Court on Monday granted bail to AAP MLA Amanatullah Khan in connection with the alleged assault on Chief Secretary Anshu Prakash at CM Arvind Kejriwal's residence.
Summary:
The Supreme Court on Monday directed the CBI and Enforcement Directorate to finish their investigations into the 2G scam and cases related to it, including the Aircel-Maxis deal, within six months.
Summary:
Several people are feared to be dead after a US-Bangla Airlines plane crashed during landing at the Tribhuvan International Airport in Kathmandu, Nepal, on Monday.
Summary:
Benchmark index BSE Sensex on Monday surged 610.8 points to close at 33,917, posting its biggest one-day gain in nearly 17 months.
Summary:
Directed by Shoojit Sircar, the film is scheduled to release on April 13.
Summary:
The Luv Ranjan directorial 'Sonu Ke Titu Ki Sweety' has beaten the Akshay Kumar starrer 'Pad Man' to become the second highest grossing film of 2018 in India.
Summary:
Congress President Rahul Gandhi on Monday alleged that Finance Minister Arun Jaitley was silent on the over â¹12,600-crore Punjab National Bank (PNB) fraud to save his daughter, who is a lawyer.
Summary:
Eighteen-year-old Pooja Vastrakar became the first woman in ODI history to score a fifty while batting at number nine or lower, after registering a 56-ball 51 against Australia on Monday.
Summary:
The margin of victory was same in the first-ever Test in 1877 and the match played to celebrate Test cricket's centenary in 1977.
Summary:
The malware can access data including keyboard strokes, network traffic, passwords, and screenshots, researchers added.
Summary:
The state Forest Department has also been directed to take all necessary precautions to prevent forest fires.
Summary:
PM Narendra Modi and French President Emmanuel Macron on Monday pledged to begin work on "the largest nuclear power plant in the world" in India by this year.
Summary:
Over 35,000 farmers covered 180 km on foot from Nashik to Mumbai in Maharashtra to press for their demands.
Summary:
Indian liver transplant surgeon Dr Subhash Gupta will be travelling to Pakistan's Karachi this month to perform surgeries and train doctors, reports said.
Summary:
Russian President Vladimir Putin has revealed that he ordered to shoot down a passenger plane that was reported to be carrying a bomb and targeting the 2014 Winter Olympics.
Summary:
Wilson had proposed marriage during a debate on legalising same-sex marriage in the country.
Summary:
Garg was allegedly paid about â¹1.52 crore by Sterling Biotech directors for facilitating bank credit.
Summary:
Summary:
Indian tennis player, Yuki Bhambri, who is ranked 110th in the world currently, ousted France's world number 12 and ninth-seeded Lucas Pouille in straight sets at the Indian Wells Masters on Monday.
Summary:
Former Indian captain and current Cricket Association of Bengal head Sourav Ganguly said the BCCI should increase the pay of Indian domestic cricketers a "bit more".
Summary:
A flight was forced to return to an airport in Australia after the crew reported a "strange smell" coming from the back of the aircraft.
Summary:
The police wrote on Twitter, "Please remember it is a criminal offence to smoke on an aircraft and you are likely to face arrest and a hefty fine".
Summary:
All India Online Vendors' Association (AIOVA) has decided to stop raising concerns about payments, pricing and other issues, alleging that the government favours marketplaces like Amazon and Flipkart.
Summary:
The people also distributed water and snacks such as biscuits and dates to the agitating farmers.
Summary:
A garment university will be established in Bengaluru's Bommanahalli and the Union Textile Ministry has approved a proposal for the same, Union Minister for Fertilizers and Parliamentary Affairs Ananth Kumar said on Sunday.
Summary:
A Lucknow-bound IndiGo flight was forced to return to Ahmedabad and make an emergency landing today morning due to a mid-air engine failure, an official said.
Summary:
Karti has been accused of taking money to get a foreign investment clearance for INX Media during his father's tenure.
Summary:
Reacting to a shoe being hurled at her father, former Pakistan Prime Minister Nawaz Sharif's daughter Maryam Nawaz on Monday said that the incident would make him even "more popular".
Summary:
He said both these sectors are "in a shambles" due to the "malicious twist" given to policies of the previous government.
Summary:
The most exciting part of The Grand Indian Holiday sale by Thomas Cook is the 'Best Price Challenge' offer on their top selling products.
Summary:
SpaceX Founder Elon Musk said the company will be able to do short flights to Mars next year.
Summary:
AI (artificial intelligence) is far more dangerous than nukes." He said, "There needs to be a public body...
Summary:
The government owes over â¹325 crore to Air India for VVIP chartered flights to foreign countries, as of January 31, 2018, according to an RTI response.
Summary:
BJP leader Subramanian Swamy on Monday said that Congress President Rahul Gandhi forgiving his father Rajiv Gandhi's killers raised suspicion into the former Prime Minister's assassination.
Summary:
He said that in 2008, SpaceX's Falcon 1 rocket failed for the third time while Tesla almost went bankrupt two days before Christmas.
Summary:
While talking about his various ventures, tunnelling startup The Boring Company's Founder Elon Musk said the company "kind of started more as a joke".
Summary:
Sports car manufacturer Ferrari has officially launched its fastest and most powerful car 812 Superfast in India at a price of â¹5.2 crore.
Summary:
Nine of the 37 people who were stuck during a trek after a forest fire broke out on the Kurangani Hills in Tamil Nadu have died.
Summary:
The Hyderabad High Court has held that a weapon's seizure from a person cannot link them to a murder unless a link between the two is established.
Summary:
Meanwhile, Pakistan accused Indian authorities of harassing its Deputy High Commissioner's children on their way to school.
Summary:
Mina Basaran, the daughter of Turkish billionaire Huseyin Basaran, was onboard the private jet that crashed into a mountainous region of Iran on Sunday.
Summary:
A man from Uttar Pradesh performed the last rites of his pet parrot as per Hindu rituals after it died earlier this month.
Summary:
A 26-year-old groom's car was stolen in Delhi minutes before he was to proceed with the baraat for his wedding.
Summary:
Filmmaker Karan Johar tweeted about how he dressed up before landing but was disappointed that he did not find any paparazzi at the airport.
He had jokingly tweeted, "Wore a new jacket!
New bagpack positioned for capture...
Summary:
Indian Road Safety Campaign and Delhi Traffic Police under the aegis of Ministry of Road Transport and Highways are organising the first-ever Safe Road Half Marathon'18 from the iconic JLN Stadium, Delhi on March 18.
Summary:
The All India Tennis Association has paired Rohan Bopanna with Leander Paes for the upcoming Davis Cup tie against China, despite Bopanna expressing his wish to "sit out" of the tie.
Summary:
Australia's Mick Lewis never played international cricket again after leaking record 113 runs in the ODI against South Africa on March 12, 2006.
Summary:
Former world number one and five-time Indian Wells champion Novak Djokovic lost to world number 109 Japan's Taro Daniel in his first match at the Indian Wells Masters.
Summary:
The announcement stated that the Windies will tour Pakistan for a three-match T20I series in April.
Summary:
Microblogging platform Twitter has suspended a number of accounts for mass-retweeting, copying and stealing tweets from other users.
Summary:
When asked about his rocket business plan at a recent event, SpaceX CEO Elon Musk said, "I don't really have a business plan." He also said that most of his business time is dedicated to his space startup SpaceX and electric car manufacturing startup Tesla.
Summary:
Maharashtra Navnirman Sena (MNS) President Raj Thackeray told protesting farmers in the state that nothing would happen from the BJP-led government.
Summary:
Talking about the company's offline strategy, online furniture retailer Pepperfry's Co-founder and CEO Ambareesh Murty has said, "Every e-commerce player is now copying us." Adding that they opened their first offline store four years ago, Murty said the stores contribute around 20% of their business.
Summary:
The women safety app 'Himmat' has failed to serve its purpose as it has only 30,821 registered users out of Delhi's population of 1.9 crore, a parliamentary panel said.
Summary:
Two college students died and three were injured when their car crashed into a road divider in Delhi's Mukherjee Nagar on Sunday, police said.
Summary:
The All India Muslim Women Personal Law Board (AIMWPLB), which has supported the ban on instant Triple Talaq, has demanded changes in the Triple Talaq bill criminalising the practice.
Summary:
Berger also offers a trained customer executive to handhold you through the entire experience.
Summary:
A 400-plus target has been successfully chased only once in 3,994 ODIs and 47 years of ODI cricket.
Summary:
This comes a month after Florida school shooting which killed 17 people.
Summary:
Mahatma Gandhi and his followers left his Sabarmati Ashram on March 12, 1930, to protest against the British salt monopoly, and this came to be known as the Dandi March.
Summary:
Gandhi produced salt from the seawater in the coastal village of Dandi after completing the Dandi March, a civil disobedience movement against the British.
Summary:
South Africa's Herschelle Gibbs was hungover when he smashed 175 runs off 111 balls to help his team record the highest successful chase in ODI history against Australia on March 12, 2006.
Summary:
Saudi Arabia had detained more than 300 suspects, including princes and businessmen, under the crackdown last year.
Summary:
The letters urge the public to carry out violent acts against Muslims which would then be graded on a points-based system.
Summary:
CIA Director Mike Pompeo on Sunday said that US President Donald Trump's planned meeting with North Korean leader Kim Jong-un is not just for "theatre".
Summary:
Russia had annexed the Crimean Peninsula from Ukraine in 2014 following which pro-Russian separatists took control over the Donetsk and Luhansk regions.
Summary:
A Turkish TV channel has depicted South Korean President Moon Jae-in and US President Donald Trump's daughter Ivanka as a "killer couple" after they met during the PyeongChang Winter Olympics.
Summary:
A consortium of Jet Airways, Air France-KLM and Delta Air Lines is reportedly interested in participating in the Air India disinvestment.
Summary:
Rani Mukerji, while talking about pay parity for actors and actresses, said, "Nowadays, a lot of people who don't know how to act are also talking of pay parity." She added that it is important for actors to become good at what they do and the money will follow.
Summary:
Television actress Juhi Parmar, while talking about the serial 'Kumkum' where she played the titular character, said, "I will be one of the happiest people if Kumkum comes back (on TV)." She added, "Till date my fans call me Kumkum.
Summary:
Actress Shabana Azmi, while slamming the red carpet culture at the Oscars, tweeted, "Nicked tucked bosom out, b**t strutted.
Summary:
Rakhi Sawant has claimed that former adult movie star Sunny Leone gave her phone number to people from the adult entertainment industry.
Rakhi said, "I am getting calls from people there.
Summary:
Wicketkeeper-batsman Mushfiqur Rahim celebrated Bangladesh's biggest win in T20Is by doing 'Nagin dance' on the field after hitting the winning runs against Sri Lanka on Saturday.
Summary:
Suresh Raina, who made his comeback to Team India after a year last month, sang Bollywood song 'Ye Shaam Mastani' at the team hotel in Colombo.
Summary:
Congress leader M Veerappa Moily has said that a Third Front against the Congress and BJP will be like a "stillborn child", adding that there cannot be an alternative without Congress.
Summary:
When both families of the boy and girl got into a scuffle, Thukral reportedly lost his cool and attacked the women.
Summary:
A group of Kashmiri students has claimed they were promised cricket kits and money to attend an event where Sri Sri Ravi Shankar was speaking in J&K.
Summary:
The Power Ministry has directed all central government departments and PSUs in the National Capital Region to switch to e-vehicles for local use.
Summary:
As many as 15 people have been rescued from the forest fire which broke out in Tamil Nadu's Kurangani Hills on Sunday.
Summary:
The number of people employed in the Khadi sector fell from 11.6 lakh to 4.6 lakh in the last two financial years, the government informed the parliament.
Summary:
The woman's father said she was in a relationship with the teacher for three months and wanted to run away with her.
Summary:
Officials said they will continue the drive till 2018-end.
Summary:
During a rally in Pennsylvania on Saturday, US President Donald Trump called NBC News anchor Chuck Todd a "sleeping son of a b**ch".
Summary:
At least 11 people have been feared to be killed after a Turkish private plane crashed in the Iranian city of Shahr-e Kord, according to reports.
Summary:
Kareena Kapoor Khan, while talking about issues like equal pay, said, "I appreciate actors like Kangana Ranaut, who bring problems to the forefront by talking about it in their interviews." She said this at an interactive session, where her sister Karisma was also present.
Summary:
Prada had earlier said Khilji's character reminded her of Khan, who had harassed her during an election she contested.
Summary:
Chelsea legend Didier Drogba appealed to the warring factions in Ivory Coast to end the civil war, just after the country qualified for 2006 FIFA World Cup. Drogba, who turns 40 today, made the appeal on national television from the team's dressing room.
Summary:
Following a request from CM EK Palaniswami, Defence Minister Nirmala Sitharaman instructed the Indian Air Force to assist in the rescue operations.
Summary:
The CBI transferred 20 officers working on the Vyapam scam investigation in Bhopal in one day, even as it has withdrawn 70% of its staff over the past six months.
Summary:
The father had challenged the CBI's conclusion that his son had committed suicide seven years ago.
Summary:
US President Donald Trump on Saturday said that his meeting with North Korean leader Kim Jong-un later this year could either fail or result in the "greatest deal".
Summary:
A UAE-based man cut short his honeymoon in Europe and flew back to Dubai to seek divorce from his wife, claiming she did not allow him to have sex with her.
Summary:
Actor-turned-politician Kamal Haasan has said he "somehow supports" Congress President Rahul Gandhi over his remark that he would have thrown the file proposing demonetisation into a dustbin if he was the Prime Minister.
Summary:
Responding to his message, Sofia wrote, "I wipe my a** with â¹20 lakh...
even â¹20 crore will not buy me." In a screenshot of the message Sofia shared on Instagram, she added, "Will it buy your mother?
Summary:
Actress Neetu Singh has shared a throwback picture of her husband Rishi Kapoor and late actress Sridevi from the 1989 film 'Chandni'.
Sridevi and Rishi are seen dancing in the snow in the picture.
Summary:
A new poster for 'October' featuring its lead stars Varun Dhawan and Banita Sandhu has been unveiled.
Summary:
Summary:
Actress Anushka Sharma has shared a picture on Instagram, where she is seen kissing her husband Virat Kohli on the cheek.
Summary:
Mumbai went on to win the match by 354 runs.
Summary:
Actors Kamal Haasan and Rajinikanth also recently announced their entry into Tamil Nadu politics.
Summary:
YSR Congress Party chief Jagan Mohan Reddy said the TDP must leave the NDA alliance if it's sincere about getting special category status for Andhra Pradesh.
Summary:
The Telugu Desam Party will release a 50-page booklet highlighting the promises made by the Centre under the Andhra Pradesh Reorganisation Act and their implementation status.
Summary:
The West Bengal government has decided to launch a project worth â¹700 crore to bring 50 lakh rural women under the Self Help Group (SHG) model.
Summary:
Union Minister Harsimrat Kaur Badal has written to PM Narendra Modi urging him to discuss with French President Emmanuel Macron the law which mandates Sikhs to remove turbans for official identifications in France.
Summary:
The undertrial had uploaded pictures earlier also, but the authorities were alerted only after his selfie with other inmates circulated online.
Summary:
Talking about the cancellation of an event in Delhi to commemorate his 60-year exile, the Dalai Lama has said "it does not matter" and what is important is what is in the heart.
Summary:
A video of a bikini-clad rider being thrown off a horse at a nightclub in US' Miami has surfaced online.
Summary:
At least 16 people were killed and several others were reported to have been injured on Saturday after lightning struck a church in Rwanda's Nyaruguru district.
Summary:
The quake triggered a tsunami, with both the disasters claiming more than 16,000 lives and leaving 2,000 others missing.
Summary:
The average board of the 500 largest US companies currently has a female representation of only 22%, up from 14% in 2008, according to a Bank of America Merrill Lynch report.
Summary:
A man in England built a full-size two-storey house, which included a working toilet, a bed and a shower, entirely out of Lego.
Summary:
Nawazuddin Siddiqui's wife Aaliya Siddiqui, in a Facebook post to support him over allegations against him in the Call Detail Record (CDR) scam, wrote, "He became a soft target because he is a celebrity." Nawazuddin was accused of illegally obtaining call detail record of his wife.
Summary:
The RBI has asked for details of the LoUs and whether banks kept enough cash on margin before issuing them.
Summary:
A Parliamentary panel has asked the government to define "shell company", and to differentiate between those non-compliant with filing norms and those guilty of fraud.
Summary:
Mohammad Shami's wife Hasin Jahan has said she would consider saving their marriage if the cricketer "comes back".
Summary:
Summary:
Bolivia has been demanding access to the Pacific Ocean, which it lost to Chile during a war in the 19th Century.
Summary:
A man hurled a shoe at former Pakistan Prime Minister Nawaz Sharif during an event at a madrassa in Lahore.
Summary:
The vehicle was seized by the police for 30 days, while the man is expected to be charged with speeding and using a phone while driving.
Summary:
He said that although the bees were "not inclined to sting," he was stung a few times.
Summary:
Norwegian airline replied with a poem of its own after a passenger from England penned a poem complaining about the â¬120 (â¹9,600) fee charged for changing personal details on a plane ticket.
Summary:
A video shared by Bengaluru Police shows the city's Commissioner of Police T Suneel Kumar saluting a schoolboy who had saluted him.
Summary:
However, IMF said India would further benefit from enhancing health and education and improving efficiency in the banking system.
Summary:
Actor Ajay Devgn has said that he and his wife Kajol are at a stage in their respective careers where they cannot play stereotypical characters.
Summary:
Actress Karisma Kapoor shared a picture with former US State Secretary Hillary Clinton and Kareena Kapoor Khan on Instagram.
Summary:
As per reports, Malayalam actress Priya Prakash Varrier will be paired opposite actor Ranveer Singh in the upcoming Bollywood film 'Simmba'.
Summary:
Sri Lankan cricketer Ramith Rambukwella was arrested on Friday after he allegedly beat up two university students with a firearm and for driving under alcohol influence.
Summary:
The play was interrupted and the band stormed out before the fans started chanting, "We want the band".
Summary:
French league side LOSC Lille's fans invaded the pitch and attacked players from the club after the team's draw against Montpellier on Saturday.
Summary:
A company named Wanle Cases has developed an iPhone case which also works as a gaming console.
Summary:
A group of four Chinese tourists have been videotaped climbing a Buddha carving and sitting on its head at the Xiangyan Temple in the Chinese province of Henan.
Summary:
A Ryanair Tenerife-bound flight was forced to return to England after a 45-year-old passenger, who was believed to be drunk, allegedly abused a group of female flyers and threatened to stab them.
Summary:
Mourad claimed he avoided paying the ticket after providing evidence that the Tesla was capable of self-driving.
Summary:
The Assembly had reportedly ordered 60 Renault Dusters, worth â¹12 lakh each.
Summary:
Bengaluru on Sunday observed the second edition of Less Traffic Day, a campaign launched in February 2018 to reduce air pollution and traffic congestion in the city.
Summary:
Police have booked a fire officer after he allegedly refused to send fire engines to a chemicals factory which caught fire in Maharashtra's Palghar earlier this week.
Summary:
A manager of State Bank of India (SBI) in Uttar Pradesh's Muzaffarnagar has been booked for allegedly accepting and sending fake â¹500 and â¹1,000 notes to the RBI last year.
Summary:
The Communist Party had added Jinping's name and political ideology to its constitution last year.
Summary:
A Chandigarh court on Saturday sentenced a man to two years in jail for saying 'hey sexy' to a 17-year-old girl when she was returning from college.
Summary:
A 10-year-old Chandigarh boy gave a "thank you" card to the Supreme Court when it granted divorce to his parents after their seven-year-long legal battle.
Summary:
India's 22-year-old shooter Akhil Sheoran won the country's fourth gold medal at the ISSF Shooting World Cup in Guadalajara, Mexico, on Saturday.
Summary:
Ex-Google engineer Sara Spangelo-led space startup Swarm Technologies has been accused of launching unauthorised satellites earlier in January by the Federal Communications Commission (FCC).
Summary:
On activation, the feature will show Mario driving a kart as the pointer while the user is navigating.
Summary:
Bolt App Lock's primary function was to lock any app using a PIN code, pattern, or fingerprint.
Summary:
Technology giant Apple has filed a patent for a wedge-shaped charging connector with increased water resistance by creating a tight vacuum seal.
Summary:
This comes after Paytm was criticised by users and an anonymous French security researcher, who said that there is no reason for the company to do so.
Summary:
Addressing a gathering in Malaysia, Congress President Rahul Gandhi said that he had told his father Rajiv Gandhi that he would die.
Summary:
US President Donald Trump on Saturday unveiled 'Keep America Great' as his campaign slogan for the 2020 presidential election.
Summary:
A 40-year-old man climbed a tower in Delhi and threatened to jump off it after having a fight with his wife, said the police.
Summary:
A 70-year-old woman in China vandalised the stall of a fortune teller who wrongly predicted her death, according to reports.
The fortune teller had told the woman in March last year that she would not live to see 2018.
Summary:
The panel said it is "extremely concerned" about the fraud which shows that a "small group of individuals can manipulate such a gigantic bank".
Summary:
Indian pacer Mohammad Shami has demanded thorough investigations into the allegations of match-fixing, adultery, and domestic violence.
Shami added that following the investigations he would like his wife to be answerable if she is proven wrong.
Summary:
Responding to the allegations levelled against him by his wife, cricketer Mohammad Shami said he wants things to patch up so that they could be a 'happy family' again.
Summary:
Real Madrid captain Sergio Ramos took a five-minute toilet break and came back to continue playing during the final 20 minutes of Real Madrid's 2-1 win over Eibar on Saturday.
He had to go the toilet".
Summary:
The projector can show what the world would look like to a mosquito or a butterfly by showing the projections of their surroundings.
Summary:
Uttar Pradesh Chief Minister Yogi Adityanath on Sunday said the Congress is decimated wherever party President Rahul Gandhi goes because he "works with a negative mindset".
Summary:
Bird had also raised $15 million from investors including Tusk Ventures and Goldcrest Capital last month.
Summary:
Massive protests have erupted across Pakistan-occupied Kashmir (PoK) for the abolition of the Azad Jammu and Kashmir Council headed by Pakistan PM.
Summary:
The headmaster hit the student because he didn't follow the queue when milk was being served.
Summary:
Over a thousand Muslim women held a rally in Maharashtra's Pune on Saturday to protest against the instant Triple Talaq bill which seeks to criminalise the practice with a 3-year jail term.
Summary:
Around 35,000 farmers on Saturday completed a 180-km march from Nashik in Maharashtra to Mumbai to block access to the state legislature building from Monday until their demands are met.
Summary:
Prime Minister Narendra Modi on Sunday said that the Vedas consider the Sun "the soul of the world" and stressed the need to look at this ancient idea to combat climate change.
Summary:
"I never changed the constitution, I didn't do it to suit myself," Putin added.
Summary:
Commerce Minister Suresh Prabhu has termed the US' decision to impose tariffs on imported steel and aluminium as an "unfortunate development".
President Donald Trump had signed two proclamations levying 25% tariff on steel and 10% tariff on aluminium imports from all countries except Canada and Mexico.
Summary:
The film also had the fifth-highest weekend opening in North America by minting $202 million (over â¹1300 crore).
Summary:
Notably, Sachin Tendulkar, who made his international debut aged 16, is the youngest Test and ODI debutant for India.
Summary:
Addressing a gathering in Malaysia, Congress President Rahul Gandhi said he and his sister Priyanka have "completely" forgiven their father Rajiv Gandhi's killers.
Rahul further said, "In politics, when you mess with the wrong forces, and...stand for something, you will die.
Summary:
PM Narendra Modi's rakhi sister Sharbati Devi on Saturday passed away in Jharkhand's Dhanbad at the age of 103.
Summary:
Summary:
Mumbai Indians owner Nita Ambani has revealed her son Anant lost 118 kg after getting trolled for his weight.
Summary:
Union Minister Nitin Gadkari on Saturday said that he does not aspire to become the Prime Minister and is "content" with what he has achieved.
Summary:
At least 22 people were reported to have been killed on Friday in twin terror attacks in Afghanistan, officials said.
Summary:
The letter was handed over to authorities investigating the Trump campaign's alleged collusion with the Russians.
Summary:
A devotee dropped an iPhone 6s in the donation box at the Lord Subrahmanyeswara Swamy Temple in Mopidevi, Andhra Pradesh.
Summary:
So where he leaves it, I begin." She also revealed that Mukesh would do homework with their children.
Summary:
Kareena Kapoor Khan has said her husband Saif Ali Khan was ready to change the name of their son Taimur to Faiz, following criticism over the name.
If it's a boy, I want my son to be a fighter.
Summary:
While talking about providing a normal upbringing to daughter Aaradhya, Aishwarya Rai Bachchan said, "I have been a very normal mother with her.
Summary:
Summary:
Actress Jennifer Lawrence said that she is single while adding, "I'm making it clear...I have not had sex in a very long time." She also said, "I always talk like I want d**k...
Summary:
Sonakshi Sinha will reportedly make a cameo appearance in the Salman Khan starrer 'Race 3'.
Directed by Remo D'souza, the film marks Salman and Remo's first project together as actor and director.
Summary:
Bangladesh registered T20I cricket's fourth highest successful run chase and the highest by an Asian side after chasing down Sri Lanka's 214 in their five-wicket win on Saturday.
Summary:
Cristiano Ronaldo scored a brace to help his side Real Madrid go past Eibar with a 2-1 win in the La Liga on Saturday.
Summary:
Manchester United's 20-year-old attacker Marcus Rashford scored two goals to hand his side a 2-1 win over rivals Liverpool in the English Premier League on Saturday.
Summary:
The Election Commission linked 32 crore Aadhaar numbers to voter ID cards in just 3 months in 2015, Chief Election Commissioner OP Rawat has revealed.
Summary:
Qantas Airways has banned its employees from using "gender-inappropriate" terms like "guys", "husband", "wife", "mum" and "dad" in an effort to avoid offending the LGBTI community.
Summary:
Following the argument, the Brazil-US flight had to be cancelled minutes before passengers were due to board the aircraft.
Summary:
Doctors at Maharani Laxmi Bai Medical College in Uttar Pradesh's Jhansi allegedly used a road accident victim's amputated leg as a pillow for propping him up.
Summary:
A 40-year-old woman was gangraped by six youths in Rajasthan's Baran district who filmed the crime and uploaded the video on social media, police said.
Summary:
RSS body Akhil Bharatiya Pratinidhi Sabha (ABPS) on Saturday said that the government needs to make sure that primary education "should only be" in the mother tongue or any other Indian language.
Summary:
Police on Saturday arrested a man who killed his 13-year-old daughter for roaming with a boy in Delhi's Karawal Nagar.
Summary:
Four men climbed the walls of the Iranian embassy in London and took down the flag in an apparent protest against the Iranian government.
Summary:
Kohli recently became Uber's first brand ambassador in India.
Summary:
A 78-seater SpiceJet plane became the first-ever commercial flight to land on Sikkim's soil on Saturday.
Summary:
Summary:
While slamming I&B minister Smriti Irani for her remark that filmmakers manufacture controversies, Censor Board member Ashoke Pandit asked her whether she was targeting films like 'Udta Punjab', 'Ae Dil Hai Mushkil' and 'Padmaavat'.
Summary:
Earlier, Aggarwal had said he wouldn't advise Nirav to return for investigations because the "atmosphere was not conducive".
Summary:
Congress leader Sonia Gandhi has said that the party may be headed by someone from outside the Gandhi-Nehru family in the future.
Summary:
Congress President Rahul Gandhi on Saturday said that he would have thrown the file proposing demonetisation in the dustbin if he was the Prime Minister.
Summary:
Companies from India and France signed contracts worth over â¹1 lakh crore on the first day of French President Emmanuel Macron's visit.
Summary:
RJD leader and Lalu Yadav's son Tej Pratap has said that his party will build the Ram Temple in Ayodhya.
Summary:
Addressing an event on Saturday, Patidar leader Hardik Patel said that he had voted for PM Narendra Modi during the elections in 2014 but now opposes him with "dadagiri".
Summary:
An Indian Coast Guard helicopter made an emergency landing after detecting technical difficulties in Maharashtra's Raigad district on Saturday.
Summary:
Slum dwellers in Agra claimed to have been persuaded to convert to Christianity by missionaries in exchange for facilities including housing, education for their children and a better lifestyle.
Summary:
The Governor of China's central bank, People's Bank of China, has said the country currently doesn't recognise Bitcoin and other digital currencies as a tool for retail payments.
Summary:
Goldman said it was concerned that people may be confused into believing that Bitman Sachs is licensed, authorised or in some way affiliated with it.
Summary:
The GST Council has approved the roll-out of the e-way bill for inter-state movement of goods worth over â¹50,000 across the country from April 1.
Summary:
The reboot will be directed by Rajan Waghdhare, who also directed the original serial.
Summary:
Ajay Devgn will be the first guest on Kapil Sharma's new TV game show 'Family Time With Kapil Sharma'.
Summary:
Actress Taapsee Pannu has shared a picture in an Instagram story with filmmaker Anurag Kashyap from the sets of her upcoming film 'Manmarziyaan'.
"And he (Anurag) gets my blessings to kick start the day," wrote Taapsee while sharing the picture.
Summary:
Hollywood actress Susan Sarandon has revealed that her Twilight (1998) co-star Paul Newman had once given her a part of his salary.
Susan added, "Newman said, 'Well I'll give you part of mine'...
Summary:
Raveena Tandon, while reacting to being compared with Malayalam actress Priya Prakash Varrier, tweeted, "Every generation has their own Goli Maar," while referring to winking in her old song 'Akhiyon Se Goli Maare'.
Summary:
Actress Sonam Kapoor has said that US President Donald Trump is an imbecile.
Summary:
Five-time Ballon d'Or winner Barcelona forward Lionel Messi and his wife Antonella Roccuzzo became parents for the third time after the birth of their third son, Ciro, on Saturday.
Messi uploaded a picture of Ciro holding his hand on Instagram with the caption, "Welcome Ciro!
Summary:
Some South African supporters donned masks of rugby player Sonny Bill during the ongoing South Africa-Australia Test to mock David Warner's wife Candice.
Summary:
Luxury car brand Jaguar Land Rover (JLR), a subsidiary of Tata Motors, is expecting a drop in growth this year due to hike in customs duty on components and high GST rates on the premium segment.
Summary:
Former JNU Students' Union President Kanhaiya Kumar has said that he is pursuing PhD at the age of 30 while PM Narendra Modi finished his MA at 35.
Summary:
Three female hostages and a suspected gunman were on Friday found dead inside the veterans' home in US' California, police said.
Summary:
Russian President Vladimir Putin has said that he "couldn't care less about" his citizens interfering in the 2016 US presidential elections.
Summary:
The government has also asked banks to collect passport details of all existing borrowers with loans over â¹50 crore in the next 45 days.
Summary:
Commerce and Industry Minister Suresh Prabhu has been given an additional charge of Civil Aviation Ministry, a Rashtrapati Bhavan spokesperson said.
Summary:
Nawazuddin Siddiqui has slammed media for asking him "disgusting" questions and putting "random allegations" on him at his daughter's school, where he went for a science exhibition.
Summary:
Bengali TV actress Moumita Saha on Saturday was found dead aged 23 after her body was found hanging from the ceiling in her flat in Kolkata.
Summary:
Fraud-accused jeweller Nirav Modi has denied that he is a 'fugitive' and the reason behind the government rushing the Fugitive Economic Offenders Bill.
Summary:
Ho, part of the senior national side, is the youngest of four siblings in a family of farmers.
Summary:
Mohammad Shami's wife Hasin Jahan has claimed that the cricketer allegedly forced her to have physical relations with his brother Hasib.
"(Shami) forced me into a room with his brother, who started touching me inappropriately.
Summary:
Sharapova, who registered her third consecutive loss for the first time since 2003, had been working with Groeneveld for over four years.
Summary:
Photo-sharing apps Snapchat and Instagram have temporarily removed the Giphy feature from their platforms after users spotted a racial slur in a GIF.
Summary:
Actress-turned-politician Jaya Prada on Saturday said that Alauddin Khilji's character in the film 'Padmaavat' reminded her of how Samajwadi Party leader Azam Khan had "harassed" her during one of the elections she was contesting.
Summary:
Addressing a public meeting in Uttar Pradesh, CM Yogi Adityanath on Friday said, "People have decided that they want good governance and development.
Summary:
After the 26/11 attacks, the government had mandated the paramilitary force to provide security to the private sector as well.
Summary:
Summary:
The countries installed border surveillance devices to make the 8.3-km long area crime free.
Summary:
Canada's government has honoured a black woman, who refused to leave the whites-only section of a movie theatre in 1946, by making her the first woman to feature on the country's currency.
Summary:
Sabyasachi Mukherjee has said nobody can be more stylish than actress Rekha.
Summary:
Kristen Wiig will be starring as Wonder Woman's rival 'Cheetah' in the film's sequel, confirmed director Patty Jenkins.
Summary:
Manchester City's Spanish coach Pep Guardiola has been fined over â¹18 lakh by the English Football Association for wearing a yellow ribbon that is considered a 'political message' by the association.
Summary:
Technology giant Google has rolled out an update that lets musicians update posts directly on Search.
Summary:
Delhi CM Arvind Kejriwal has written to PM Narendra Modi and Congress President Rahul Gandhi asking to implement a law in connection with the ongoing sealing drive in the National Capital.
Summary:
PayPal Co-founder and early Facebook investor Peter Thiel's data mining startup Palantir Technologies has won a $876 million contract to provide software to the army of the United States.
Summary:
Her father and his unit had driven away Chinese forces to occupy the post in 1986.
Summary:
A Madrasa teacher in France has been sentenced to jail for shaving his 12-year-old student's hair.
Summary:
On being asked if he tried to recruit US First Lady Melania Trump as a Russian agent during their meeting at the G20 summit, Russian President Vladimir Putin said he didn't try to do so.
Summary:
The Oxford University has apologised after a picture of one of its female cleaners surfaced online, showing her removing a chalk graffiti reading "Happy International Women's Day" on a flight of stairs.
International Women's Day is hugely important to Oxford.
Summary:
US President Donald Trump on Friday said that the country was working on devising a security agreement to exempt its ally Australia from the tariffs imposed on steel and aluminium imports.
Summary:
Union Minister Jayant Sinha has said the government is "absolutely on track" to complete Air India stake sale process by the end of this calendar year.
Summary:
While speaking on husband Irrfan Khan's health, Sutapa Sikdar said, "My best friend and my partner is a 'warrior' [and] he is fighting every obstacle with tremendous grace and beauty...
Summary:
Summary:
Mauritius' President Ameenah Gurib-Fakim will resign from her post next week amid allegations that she used a credit card provided by an NGO for personal shopping, the government has announced.
Summary:
Salman Khan and Harshaali Malhotra starrer 'Bajrangi Bhaijaan', which released in China on March 2, has become the fourth film to earn over â¹100 crore after 'Dangal', 'PK' and 'Secret Superstar' at the Chinese box office.
Summary:
Google has rolled out a feature in Maps that will show Mario driving a kart as a pointer when a user is navigating.
Summary:
The Boring Company is digging tunnels where cars will be transported via sleds to avoid traffic.
Summary:
The scheme was previously available only for soldiers deployed along LoC and International Border with Pakistan.
Summary:
Summary:
Criticising a Pakistani court's decision to allow the registration of 26/11 Mumbai terror attack mastermind Hafiz Saeed's political party, India said that the decision seems like an attempt by Pakistan to mainstream him and his activities.
Summary:
Summary:
The Supreme Court judges quoted writers like William Shakespeare, philosophers like Plato and a Bollywood song while passing the judgement in favour of passive euthanasia.
Summary:
The Supreme Court on Friday dismissed a plea seeking its direction to the Centre to ensure strict population control measures by making two-child policy mandatory across the country.
Summary:
The governor of the US State of Florida, Rick Scott, on Friday signed a bill into law that increases the minimum legal age for gun purchases from 18 to 21 and also allows arming teachers who have military background.
Summary:
The proposed meeting between US President Donald Trump and North Korean leader Kim Jong-un will take place only if North Korea will take concrete actions to match the promises it has made, the White House said on Friday.
Summary:
Shkreli once raised the price of an HIV drug by 5,400%.
Summary:
Responding to death threats she received for her dialogue on Draupadi in the film 'Hate Story IV', actress Urvashi Rautela said, "I was shocked and speechless...felt vulnerable." The dialogue was "Draupadi ke toh paanch Pandav the...yahan toh sirf do hain".
Summary:
American comedian Jimmy Kimmel has said that the proposed meeting between US President Donald Trump and North Korean leader Kim Jong-un will bring together the two worst haircuts in the world.
Summary:
A cat in the US state of Pennsylvania saved the lives of its owners by waking them up after a fire broke out in their home, police have said.
Summary:
The CBI has charged five directors of a West Bengal-based company and eight SBI officials for causing a loss of â¹4.12 crore to the bank.
Summary:
England, who had defeated Australia 4-1 in the ODI series, will now take part in a two-match Test series against New Zealand.
Summary:
Former India captain Bishan Singh Bedi and former wicketkeeper Syed Kirmani have urged the BCCI to take the Cricket Association for the Blind in India (CABI) under its fold.
Summary:
Former BCCI chief N Srinivasan claims that former Indian selector Dilip Vengsarkar's comments about being sacked for his decision to pick Virat Kohli instead of S Badrinath in 2008 are lies.
Summary:
In a livestream chat, Twitter's Chief Executive Officer Jack Dorsey has said the company's intention is to "open verification for everyone." He added the verification has to be opened in a way where people can verify more facts about themselves.
Summary:
Google spinoff Waymo is set to launch a pilot in Atlanta, United States, where the company's self-driving trucks will carry freight for Google's data centres.
Summary:
A patent filed by Apple, revealed on Friday describes a keyboard that can prevent the entering of any contaminant or debris into it.
Summary:
Bengaluru-based corporate travel management startup Tripeur has raised around â¹3.9 crore ($600,000) in Pre-Series A funding led by Japan-based Incubate Fund.
Summary:
The victim claimed that the accused attacked him with a blade when he refused to polish 14-year-old's shoes.
Summary:
While the BJP ruled seven states in 2014, Congress' power is now reduced to three states.
Summary:
More than 1,000 people have been killed and 4,800 others wounded in government air strikes in Syria's eastern Ghouta in just two weeks, the medical aid group Doctors Without Borders (MSF) has said.
Summary:
The revolt was triggered by fears that the Dalai Lama may be kidnapped, arrested or killed by the Chinese forces.
Summary:
Summary:
The Enforcement Directorate (ED) seized assets worth over â¹7,100 crore in the first two months of 2018 in connection with bank scam cases, Union Minister Shiv Pratap Shukla said on Friday.
Summary:
Shaheen was Pakistan's highest wicket-taker in the Under-19 World Cup 2018.
Summary:
Mohammad Shami's wife Hasin Jahan has claimed Facebook blocked her account and deleted all her posts without her permission.
Jahan had uploaded Shami's alleged WhatsApp and Messenger conversations with his alleged girlfriends on the account.
Summary:
Congress leader Sonia Gandhi on Friday said she chose not to become the Prime Minister after UPA won the 2004 Lok Sabha elections as she knew that Manmohan Singh would be a better PM than her.
Summary:
Gujarat CM Vijay Rupani on Thursday said that female babies born on the occasion of International Women's Day on March 8 will be addressed as 'nanhi pari' (little angels) by the state government.
Summary:
Macron is on a 4-day diplomatic visit to India and is heading a delegation of businessmen and ministry officials.
Summary:
Delhi CM Arvind Kejriwal on Friday threatened to go on a hunger strike if the sealing drive issue in the National Capital was not resolved till March 31.
Summary:
A survey conducted by communication app Truecaller has revealed that 1 in 3 Indian women receive inappropriate and sexual calls or texts at least once a week.
Summary:
The White House on Thursday released a compilation of video games which aimed to highlight the violence in the games.
Summary:
Authorities in Russia have found a bag containing 54 severed human hands near the Siberian city of Khabarovsk.
Summary:
Doctors in Canada's Quebec province have been protesting against a hike in salaries and have signed a petition asking to cancel the raises.
Summary:
The RBI has imposed a penalty of â¹5 crore on Airtel Payments Bank for breaching Know Your Customer (KYC) norms.
Summary:
Oscar-winning actor Colin Firth's wife Livia Giuggioli has admitted to having an affair with journalist Marco Brancaccia, a childhood friend who she had accused of stalking.
Summary:
Actress Richa Chadha, while commenting on the Supreme Court's order allowing passive euthanasia with guidelines, said, "My only hope is that this new law isn't misused by relatives and acquaintances." She also said, "I feel...
Summary:
Actress Kangana Ranaut has gone topless in the new poster for the upcoming film 'Mental Hai Kya'.
Producer Ekta Kapoor, while sharing Kangana's poster and another poster featuring the film's male lead Rajkummar Rao, tweeted, "Beware!
Summary:
Nawazuddin Siddiqui, his wife and a lawyer were summoned by the Thane police after three persons arrested in the Call Detail Record scam alleged that an advocate had obtained the CDRs of SiddiquiâÂÂs wife from private detectives.
Summary:
Summary:
Daredevils are now awaiting BCCI's legal opinion about whether they should allow the Bengal pacer to join their camp.
Summary:
NASA's Hubble Space Telescope has captured two spiral galaxies, about 350 million light-years away, in an early stage of merging.
Summary:
The incident occurred after the boy pointed a loaded pistol at his cousin and accidentally pressed the trigger.
Summary:
The Islamabad High Court on Friday ruled that declaration of faith was compulsory for all citizens seeking public office.
Summary:
Russian state television has warned the country's "traitors" against living in Britain, arguing that they are not safe there following a series of "strange" incidents.
Summary:
Clothing brand Reid & Taylor and its parent company S Kumars Nationwide have headed for bankruptcy after they defaulted on loans worth more than â¹5,000 crore, according to reports.
Summary:
Last year, Madhya Pradesh enacted a law to award death sentence to those guilty of raping girls aged 12 years or below.
Summary:
The Netherlands became the first country in the world to legalise passive euthanasia and assisted suicide in 2002.
Summary:
Firstpost called the film adaptation of the video game "grating and tedious" while Times of India wrote, "Although the clunky screenplay results in uneven pacing issues...
Summary:
"Seeing that 'Hindi Medium' has performed well in...every major international territory is a testament to its potential in China and Taiwan as well," said Vibha Chopra, Head of Zee Studios International (Film Marketing, Distribution and Acquisition).
Summary:
On being asked why he launched his own political party instead of joining an existing outfit, Kamal Haasan on Friday said, "I'm hungry...and what's available is rotten fruit." Haasan, who launched his party last month, said he aims to challenge the status quo in Tamil Nadu.
Summary:
Union Bank of India CEO Rajkiran Rai said the bank has a direct credit exposure of about â¹120 crore to companies controlled by jeweller Nirav Modi and another â¹175 crore to Mehul Choksi-owned Gitanjali Group.
Summary:
Serena Williams, who became mother to a baby girl in September 2017, won her solo tennis comeback match by defeating Zarina Diyas 7-5, 6-3 at Indian Wells Masters on Thursday.
The match was Serena's first professional singles match since the Australian Open 2017 final.
Summary:
After registering a police complaint against her husband and Indian cricketer Mohammad Shami, Hasin Jahan has released a recording of her alleged phone call with him.
Summary:
The chairman of BCCI's Committee of Administrators, Vinod Rai, has revealed the suggestion to incorporate a Grade A+ (â¹7-crore) category under BCCI's new pay structure came from MS Dhoni and Virat Kohli.
Summary:
BCCI acting secretary Amitabh Choudhary has said that he wouldn't sign Indian cricketers' central contracts because Committee of Administrators allegedly did not consult BCCI office-bearers before awarding contracts.
Summary:
Delhi-born Team India captain Virat Kohli's name and picture have appeared on a voter slip in the Gorakhpur Lok Sabha constituency, ahead of the March 11 bypolls.
Summary:
Indian wicketkeeper Parthiv Patel sledged former Australian captain Steve Waugh in a match during his first tour of Australia in 2003-04.
Patel asked Waugh, who was playing his last Test series, to hit one of his popular slog-sweeps before quitting.
Summary:
An elderly Mumbai couple, who had sought the President's permission for 'active euthanasia' in January, on Friday said they weren't "fully satisfied" with the Supreme Court ruling which permitted passive euthanasia with guidelines.
Summary:
A woman from Jammu has donated her alimony money of â¹45 lakh towards the Centre's 'Swachh Bharat Mission'.
Summary:
A Delhi court on Friday extended the CBI custody of Congress leader P Chidambaram's son Karti by three days in the INX Media money laundering case.
Summary:
Locals present at the site nabbed the 26-year-old accused and thrashed him before handing him over to police.
Summary:
Tripura's new Chief Minister Biplab Kumar Deb earlier worked as a professional gym trainer in Delhi when he shifted to the capital 15 years ago for higher studies.
Summary:
Sri Lankan President Maithripala Sirisena has replaced Prime Minister Ranil Wickremesinghe as the Law and Order Minister amid a state of emergency in the country.
Summary:
The Queensland police mentioned that the pest spray had labels warning against contact with a flame.
Summary:
Payments platform PayPal's CEO Dan Schulman has said that cryptocurrencies are an experiment right now and it is "very unclear which direction it will go".
Summary:
Pakistani-origin American actor Kumail Nanjiani, while talking about being mistaken for other brown actors, tweeted, "A day may come when I am not mistaken for another brown actor.
Summary:
Sanjay Leela Bhansali has said he remembers how when he made the 2010 film 'Guzaarish', there was plenty of hue and cry as it was about euthanasia.
Summary:
It was rated 2.5/5 (Koimoi, Firstpost) and 2/5 (Mid-Day).
Summary:
John Abraham has replaced Sushant Singh Rajput for the lead role in the upcoming thriller 'Romeo Akbar Walter'.
Summary:
The actor, who had been accused of assaulting at least eight people, was found hanging in a storage area of the building where he lived in Seoul.
Summary:
The Uttar Pradesh Secretariat will go paperless from April as all 93 departments in the Secretariat will be connected with an e-office system.
Summary:
Mahindra Group Chairman Anand Mahindra has said that large domestic economies like India "can stand tall in a trade war".
Summary:
Passive euthanasia is the withdrawal of medical treatment with an intention to hasten the death of terminally-ill patients, like switching off life-support machines or disconnecting feeding tube.
Summary:
It added that it currently needs around 2 lakh IT professionals from India.
Summary:
The newspaper wrote that there was a remarkable similarity in the "soft vulnerability of their faces", "laughter" and the "incandescent glow".
Summary:
The first look poster of actor Varun Dhawan starrer 'October' has been released.
Summary:
Barbie travelled to space again in 1985 and 1994 to mark the Moon landing anniversary.
Summary:
Kohli will also be involved in a series of marketing and customer experience initiatives, Uber India said in a statement.
Summary:
On being asked whether Congress President Rahul Gandhi listens to her or not, party leader Sonia Gandhi said, "I advise my children, but they don't listen".
Summary:
The government of Telangana on Thursday launched Women Entrepreneurship Hub (WE-Hub), India's first state-led incubator for women entrepreneurs.
Summary:
BJP MP Subramanian Swamy has demanded probe against a Finance Ministry official claiming that the official received gold worth â¹1 crore from fraud-accused Nirav Modi and Mehul Choksi.
Summary:
India-China bilateral trade reached a record high of $84.44 billion last year despite tensions between the two nations over several issues, including the military standoff in the disputed Doklam region.
Summary:
Sonia Gandhi has said she did not want her husband and former PM Rajiv Gandhi to join politics as she feared he would be killed after her mother-in-law Indira Gandhi's assassination in 1984.
Summary:
Vijay Mallya's United Breweries Holdings (UBHL) has told the Karnataka High Court that current valuation of its assets is worth â¹12,400 crore and that can clear all dues of the company.
Summary:
Summary:
Taapsee Pannu and Saqib Saleem starrer 'Dil Juunglee' "is presented as a typical rom-com fare," wrote Bollywood Hungama.
Summary:
Kher tweeted, "Thank you Grace and Robert De Niro for making my birthday the biggest highlight of my entire life."
Summary:
Deepika Padukone is the only Indian actress to feature in International Women's Impact Report 2018 by US magazine Variety.
Summary:
The 24th edition of the annual technical and entrepreneurial festival of IIT Kanpur, Techkriti'18 will start on March 15, 2018.
Summary:
Reacting to stand-in captain Rohit Sharma getting out cheaply against Bangladesh, a user tweeted, "Rohit Sharma is like an employee who doesn't perform after pay hike." Another tweet read, "Rohit got out earlier to give newbies chance to establish.
Summary:
Queensland's wicketkeeper Jimmy Peirson threw one of his gloves and chased the ball before Renshaw wore the glove and collected his throw.
Summary:
Cricket Australia has warned the Australian cricket team over the players' behaviour after vice-captain David Warner was fined 75% of his match fees following a recent verbal altercation with South Africa's Quinton de Kock.
Summary:
South African broadcaster SuperSport turned the CCTV footage of the verbal spat between Australian vice-captain David Warner and South Africa's Quinton de Kock into an advertisement for a rugby match.
Summary:
While the icon design of the app has not changed, the beta users can change the shape of icons.
Summary:
The discovery points towards aqueous pockets around the region called transition zone in the mantle, said researchers.
Summary:
A report by the Comptroller and Auditor General (CAG) on Wednesday revealed that there were several irregularities in gender budgeting, including non-implementation of schemes aimed at women empowerment, in Rajasthan.
Summary:
After TDP Parliamentarian Ashok Gajapathi Raju resigned as the Civil Aviation Minister over special status to Andhra Pradesh, President Ram Nath Kovind tweeted that the ministry will now be handled by PM Narendra Modi.
Summary:
A 28-year-old woman in Uttar Pradesh's Bareilly committed suicide at her house on Wednesday after the police failed to take action against the four men who allegedly gangraped her in September last year.
Summary:
Condemning the Philippine government for wrongfully listing a UN investigator as a terrorist, UN Human Rights chief Zeid Ra'ad Al Hussein said that Philippine President Rodrigo Duterte "needs to submit himself to some sort of psychiatric examination".
Summary:
She tweeted, "I've NEVER done an interview on my personal life with them or with anyone else.
Summary:
The FIR was registered against Shami and his four other family members, including his elder brother who has been accused of rape.
Summary:
He will be leading an alliance of BJP and Indigenous People's Front Of Tripura (IPFT).
Summary:
Twitter has appointed IIT Bombay alumnus Parag Agrawal as its Chief Technology Officer.
Agrawal holds PhD in Computer Science from Stanford University and has researched with collaborators at Microsoft Research, and Yahoo!
Summary:
The Delhi High Court has granted Karti Chidambaram interim relief from arrest from the Enforcement Directorate in connection with INX Media money laundering case.
Summary:
Janhvi Kapoor's pictures from film sets have surfaced online as she resumes shooting for 'Dhadak' post her mother Sridevi's death on February 24.
Summary:
While speaking on being trolled for wearing a bikini at a Goa beach, Radhika Apte said, "It's ridiculous!
Summary:
An MIT study has revealed that false stories reach 1,500 people six times faster than true stories on Twitter.
Summary:
In a move towards environment-friendly energy storage, Australia-based researchers have created the world's first rechargeable proton battery, which uses carbon and water instead of lithium.
Summary:
Congress leader Sonia Gandhi on Friday said, "I am confident that the BJP's acche din will actually turn into the Shining India (sic), which is what brought us victory." 'India Shining' was NDA's campaign slogan when UPA came to power in 2004.
Summary:
NASA is inviting people around the world to submit their names online to be placed on a microchip aboard its Parker Solar Probe mission, scheduled to launch in July this year.
Summary:
A signed photo of Mahatma Gandhi, walking alongside Madan Mohan Malaviya, has been auctioned for over â¹27 lakh ($41,806) in the United States.
Summary:
Summary:
North Korean leader Kim Jong-un reportedly laughed over his image in international media while he recently met a South Korean delegation in Pyongyang.
Summary:
Videocon Chairman Venugopal Dhoot reportedly denied claims that he has left India to avoid scrutiny from bankers for over â¹20,000-crore debt owed by his firms.
Summary:
"The film has enough steamy scenes to give target audience its money's worth," wrote Bollywood Hungama while Indian Express wrote, "It has murder...
revenge showing up as fillers." The film was rated 2/5 (Koimoi), 3.5/5 (Bollywood Hungama) and 1/5 (Indian Express).
Summary:
PNB has reportedly requested the RBI to provide it four quarters for making provisions against the $2-billion fraud by jewellers Nirav Modi and Mehul Choksi.
Summary:
South Korea has approved a government fund of â¹79 lakh to financially support North Korea's participation in the 2018 Winter Paralympics which will be held in Pyeongchang.
Summary:
Tesla's Chief Accounting Officer Eric Branderiz has left the company for personal reasons, the electric car maker said in a regulatory filing on Thursday.
Summary:
US President Donald Trump has said that watching SpaceX Falcon Heavy rocket's boosters landing "was more amazing than watching the rocket go up." Adding that the boosters landed "so beautifully", Trump said that nobody had ever seen a booster recovery before.
Summary:
Hyundai has recalled around 1,55,000 Sonata cars in the US over an issue which may prevent a car's airbags from inflating in case of a crash.
Summary:
European researchers Bart De Strooper, Michel Goedert, Christian Haass, and John Hardy have been jointly awarded the Brain Prize "for their groundbreaking research on the genetic and molecular basis of Alzheimer's disease".
Summary:
University of Hyderabad researchers have discovered a new antibiotic-producing bacteria species, isolated from an aquatic plant Hydrilla in their campus lake.
Summary:
NASA's Juno spacecraft has revealed a giant cyclone over Jupiter's North Pole with eight smaller cyclones circling it.
Summary:
Researchers improved upon previous studies which placed triboelectric nanogenerators (TENG) over solar cells to generate energy from the motion of raindrops.
Summary:
Asserting that the world's first nuclear bomb was developed by the US, Putin said that his country developed nuclear weapons only to protect itself.
Summary:
Casino operator Wynn Resorts has agreed to pay $2.4 billion to Tokyo-based Universal Entertainment over forced redemption of their stake in Wynn Resorts.
Summary:
Sufi singer Ustad Pyarelal Wadali, who was one of the singers of the Wadali Brothers group, died in Amritsar at the age of 75 due to cardiac arrest on Friday.
Summary:
The Supreme Court today passed an order allowing passive euthanasia with guidelines.
Summary:
US President Donald Trump on Thursday signed an executive order to impose a 25% tariff on steel imports and a 10% tariff on aluminium imports to the US, excluding Canada and Mexico from the taxation.
Summary:
Summary:
Summary:
Twenty-one-year-old athlete Ayyasamy Dharun ran a 400-metre hurdles race in 49.45 seconds to break an 11-year-old national record on Thursday.
Summary:
BJP has deployed lookalikes of PM Narendra Modi and party President Amit Shah to campaign ahead of Gorakhpur and Phulpur bypolls in Uttar Pradesh.
The bypolls are scheduled for March 11.
Summary:
This comes amid several incidents of statue vandalism in different parts of the country.
Summary:
After the CPI(M) lost the recent Tripura Assembly elections, outgoing Chief Minister Manik Sarkar and his wife vacated the official CM residence and shifted to CPI(M) party office guest house on Thursday.
Summary:
In a first, an European Space Agency-led team has built and fired an electric thruster that ingests atmospheric air to be used as propellant, allowing for satellites to fly in very low orbits for several years.
Summary:
In a first, a diamond mined from a depth of less than 1 km in South Africa was found containing calcium silicate perovskite, which is usually formed deep in the mantle about 700 km below the Earth's surface.
Summary:
In light of the recent road accident in Bihar that killed five people, Deputy CM Sushil Modi on Thursday said, "Such accidents are increasing as the roads of Bihar have become much better...
Summary:
Former Khalistani terrorist Jaspal Atwal on Friday apologised for 'embarrassing' Canada, India, his community and family.
Summary:
Diu has become the first Indian Union Territory to run completely on solar power, resulting in a reduction in loss of power which the UT earlier faced when it consumed electricity supplied by Gujarat.
Summary:
At least three people were killed and 15 injured after a series of blasts followed by a fire ripped through a pharmaceutical factory in Maharashtra's Palghar on Thursday.
Summary:
Trump added that he is "hearing more and more people say that the violence in video games is shaping young people's thoughts".
Summary:
Actress Kangana Ranaut has said 'mental' and 'psycho' are the terms that have been used to shame her.
Summary:
Summary:
Five-time Grand Slam champion Maria Sharapova has established a mentorship program for female entrepreneurs.
Summary:
"We are doing this after a thoughtful and respectful review of each team member," Snap said in an email to employees.
Summary:
Facebook Co-founder Chris Hughes has said the social media giant "played at times a negative role in the political discourse." He added that the algorithms are not neutral.
Summary:
Amazon said that it is dropping the phrase 'Alexa, laugh.' and changing it to 'Alexa, can you laugh?' as it "is less likely to have false positives".
Summary:
Amid various incidents of statue vandalism across the country, BJP General Secretary Ram Madhav has said that razing of Lenin's statue was not vandalism and that it was being misreported by the CPI(M).
Summary:
BJP MP Gopal Shetty has proposed a private member bill in the Lok Sabha demanding that the age bar for girls' marriage be extended to 21 from 18, if the marriage doesn't have parents' consent.
Summary:
A 9-year-old girl was raped in the kids' zone of a mall in Madhya Pradesh's Indore allegedly by an employee at the kids' zone.
"I noticed the girl being led away.
Summary:
Alleging that fire department under BMC is defunct, Nirupam said they have not learnt any lesson after the Kamala Mills fire incident.
Summary:
The station will have 35 trained personnel and equipment for forensics and call detail analysis to investigate the crimes, police said.
Summary:
Berger also offers a trained customer executive to handhold you through the entire experience.
Summary:
India defeated Bangladesh by six wickets in the T20I tri-series on Thursday to register their sixth consecutive T20I victory and maintain their 100% win record in T20Is against them.
Summary:
North Korean leader Kim Jong-un has invited US President Donald Trump for a meeting.
Summary:
After his wife Hasin Jahan lodged a police complaint against him over domestic abuse and adultery, Indian cricketer Mohammad Shami said he is confident that his wife has lost her mental balance.
Summary:
The CBI has said it is "not believing" the excuses being given by PNB fraud-accused jewellers Nirav Modi and his uncle Mehul Choksi.
Summary:
Indian batsman Suresh Raina has become the third Indian cricketer to hit 50 sixes in T20I cricket, achieving the feat against Bangladesh in the T20I tri-series on Thursday.
Summary:
After Andhra Pradesh CM Chandrababu Naidu announced the resignation of two TDP union ministers, West Bengal CM Mamata Banerjee asked if the BJP could hear voices of dissent from its allies.
Summary:
Flipkart-owned PhonePe has alleged that Paytm's claim that they are the largest on UPI is both "unidimensional and misleading." PhonePe explained that while an average PhonePe customer does about 5 transactions per month, the comparable figure for Paytm is 525, which isn't representative of normal user behaviour.
Summary:
He added that France wouldn't object if India disclosed critical details of the defence deal to its Opposition.
Summary:
Kumar said that the sanitary napkins will help women improve their personal hygiene without harming the nature.
Summary:
Addressing a gathering in Rajasthan on International Women's Day, PM Narendra Modi said no one will be able to trouble the girl child if a mother-in-law protects them.
Summary:
On the International Women's Day on Thursday, Madhya Pradesh CM Shivraj Singh Chouhan announced the 'Mukhyamantri Mahila Kosh' scheme aimed at providing pension to unmarried women aged over 50 years.
Summary:
The Supreme Court on Thursday remarked that people were not able to get medical treatment due to its huge cost.
Summary:
Calling for a social revolution for girls, PM Modi said, "Equality between men and women make any society go forward and prosper."
Summary:
The European Union Agency for Law Enforcement Cooperation (Europol) on Thursday appointed Catherine De Bolle as its first woman Executive Director.
Summary:
Police also seized several bank accounts of the firm and the accused.
Summary:
The Direct tax collection has increased by 19.5% to â¹7.44 lakh crore in the April-February period of the current fiscal.
Summary:
Japan's financial regulator has ordered two of the exchanges to halt operations for a month.
Summary:
Addressing a gathering in Singapore, Congress President Rahul Gandhi said the UPA was handed over a "burning Kashmir" in 2004.
Summary:
Meghalaya Chief Minister Conrad Sangma has assigned the Finance, Personnel, Cabinet Affairs, and Planning portfolios among others to himself.
Summary:
As many as 35 people from Maharashtra have sent letters to officials threatening to commit suicide outside the Mantralaya building during the ongoing budget session.
Summary:
The police said a team of its officers was rushed to the wedding venue after it received information about the clash.
Summary:
Dr BR Ambedkar's statue was defaced with red paint in Tamil Nadu's Tiruvottiyur on Thursday, two days after Dravidian leader Periyar's statue was vandalised in Vellore.
Summary:
A Delhi court on Thursday extended the judicial custody of AAP MLAs Amanatullah Khan and Prakash Jarwal by 14 days.
Summary:
The Delhi Metro Rail Corporation (DMRC) has said it was forced to withdraw from Kerala's Metro project in Thiruvananthapuram and Kozhikode after the state government failed to sign the project agreement that was submitted 15 months ago.
Summary:
Addressing the Madhya Pradesh Assembly, state Home Minister Bhupendra Singh said a committee is being constituted to frame a licence policy to ensure ambulances are not used for transporting drugs.
Summary:
While some people involved in the accident died on the spot, some were declared dead by the hospital.
Summary:
Mohammad Shami's wife Hasin Jahan has revealed he accepted money from a Pakistani girl, Alisbah, in Dubai on the insistence of an England-based businessman, hinting that the cricketer fixed matches.
Summary:
The CBI has moved the Supreme Court to challenge the Allahabad High Court verdict acquitting Nupur and Rajesh Talwar for the alleged murder of their daughter Aarushi and domestic help Hemraj.
Summary:
Indian fast bowler Mohammad Shami's central contract has been put on hold by the BCCI over his wife Hasin Jahan's allegations of domestic violence and adultery against him.
Summary:
In his reply to the CBI, PNB fraud-accused Mehul Choksi said he was being threatened by individuals with whom he had "a business relationship".
Summary:
The Enforcement Directorate (ED) has reportedly alleged that Nirav Modi's firms used most of the funds raised from PNB to buy immovable properties abroad.
Summary:
Rubbishing allegations of extra-marital affairs and domestic abuse made against him by his wife Hasin Jahan, Indian cricketer Mohammad Shami said WhatsApp messages she showed to media were not his.
Summary:
Finance Minister Arun Jaitley said Andhra Pradesh cannot be provided special status.
Summary:
Even the Himalayas cannot stop India and China from friendly exchanges if there is political trust between the two countries, China's Foreign Minister Wang Yi has said.
Summary:
The South Delhi Police launched an all-women patrolling squad to ensure safety of women at public places on the eve of International Women's Day. Named 'Knightingales', the squad has 16 members aged 20-35 years in the ranks of constables and inspectors.
Summary:
The Madras HC has said traffic movement shouldn't be halted for over ten minutes for state dignitaries such as the CM and the Governor.
Summary:
The reporter for Cameroon daily Le Jour was accused of espionage by the former minister's guards.
Summary:
The Islamabad High Court on Thursday allowed the Election Commission to register Milli Muslim League (MML), the political party formed by 26/11 Mumbai terror attacks mastermind Hafiz Saeed.
Summary:
Defying the 10-day nation-wide state of emergency, Buddhist mobs attacked Muslim neighbourhoods in Sri Lanka's Pallekele, destroying stores, restaurants and setting homes on fire.
Summary:
A Pakistan special court on Thursday ordered the government to arrest former President Pervez Musharraf and seize his properties in a case of treason.
Summary:
To highlight the gender pay gap, French newspaper Libération charged men 25% more on International Women's Day. The newspaper copy with a pictogram of a woman was priced at â¬2, while that with a pictogram of a man was priced at â¬2.50.
Summary:
Amitabh Bachchan, in a blog post written on the occasion of International Women's Day, said during his time there were only two women on film sets, the actress and her mother.
Summary:
Jacqueline Fernandez has said she decided that she wants to be a performer at the age of six.
Summary:
Mohammad Shami's wife Hasin Jahan has said that the cricketer wants to get married to a Bollywood actress just like Virat Kohli.
Summary:
Fashion designer Masaba Gupta paid a surprise visit to her father, cricket legend Viv Richards, on his 66th birthday in Dubai on Wednesday.
Summary:
During his visit to Singapore, Congress President Rahul Gandhi on Thursday said he was brought up to love even those people who dislike him, adding that this is what makes him different from PM Narendra Modi.
Summary:
The Opposition also alleged the government had transferred 20,000 employees during the period.
Summary:
RJD spokesperson Manoj Jha has said Bihar CM Nitish Kumar should muster at least 1% courage shown by Andhra Pradesh CM Chandrababu Naidu and demand special category status for Bihar.
Summary:
After Uttar Pradesh CM Yogi Adityanath said he is a Hindu and does not celebrate Eid, Samajwadi Party chief Akhilesh Yadav asked, "If you are Hindu, then say who we are?" CM Adityanath should either accept us as Hindus or count us among the Dalits and backwards, Yadav added.
Summary:
A Tamil Nadu traffic inspector has been arrested after he kicked a bike, resulting in the fall and death of a pregnant woman riding pillion.
Summary:
Britain's Prince Charles on Wednesday appointed Indian-origin steel tycoon Sanjeev Gupta as an official ambassador for the Industrial Cadets programme.
Summary:
Suu Kyi was awarded the Elie Wiesel Award by the museum six years ago.
Summary:
The National Company Law Tribunal has stayed the sale of assets of Anil Ambani-led Reliance Communications' subsidiary Reliance Infratel till March 13.
Summary:
Vengsarkar said then BCCI treasurer and Chennai Super Kings owner N Srinivasan asked him how he left CSK's Badrinath out.
Summary:
TDP Parliamentarians Ashok Gajapathi Raju and YS Chowdary resigned from the Union Cabinet after meeting PM Narendra Modi on Thursday over Andhra Pradesh's demand for special status.
Summary:
Karnataka CM Siddaramaiah on Thursday accepted a nine-member committee's design for the proposed official state flag.
Summary:
Vengsarkar added even coach Gary Kirsten was reluctant as he and Dhoni hadn't seen Kohli play before.
Summary:
Indian fast bowler Mohammad Shami, who has been accused of extra-marital affairs and assault by his wife Hasin Jahan, has said he tried contacting her but she didn't answer his calls.
Summary:
The issue reportedly resulted from the company failing to update an expired certificate that checks whether the software has come from the Oculus Store.
Summary:
The watch supports languages including English, French, and Chinese with 85% translation accuracy.
Summary:
Its exterior and interior have been designed as a US school bus.
Summary:
TDP leader YS Chowdary has said he is resigning as Union Minister of State for Science and Technology but will continue to be part of NDA.
Summary:
The National Disaster Response Force is training Central Railway staff to provide immediate medical aid to passengers.
Summary:
The Rajasthan college education directorate has issued a circular stating that women college students will have to wear either salwar kameez or sarees as a uniform and men will have to wear shirt and trousers.
Summary:
We're implementing many schemes for their health," Naidu said.
Summary:
At least 20 members of Tehreek-e-Taliban Pakistan, including the son of the group's chief Mullah Fazlullah, have been killed in a US drone strike in Afghanistan's Kunar, the militant group confirmed.
Summary:
Iran has sentenced a woman to two years in jail for publicly removing her veil in protest against the country's compulsory headscarf law.
Summary:
A female priest named Nandini Bhowmik solemnised a Bengali wedding in Kolkata without performing the ritual of 'Kanyadaan'.
Summary:
A suspected drug dealer who was believed to have swallowed drugs has been released from prison after he did not poop for 47 days in police custody in England.
Summary:
The State Bar in US' Utah sent all lawyers in the state an email that included a picture of a topless woman.
Summary:
India's financial capital Mumbai has the 16th most expensive real estate in the world, according to a report by property consultant Knight Frank.
Summary:
Producer Boney Kapoor conducted prayers for his late wife, Sridevi at the VIP Ghat in Haridwar, Uttarakhand.
Summary:
AR Rahman will be composing music for the Hindi remake of the 2014 Hollywood film 'The Fault In Our Stars'.
Summary:
Watt repeatedly replied "Watt", but Hulme thought he said "What?" and showed him a red card instead.
Summary:
Former Indian captain Kapil Dev has said if current captain Virat Kohli wants to be the best player in the world, he should play a season or two of English county cricket.
Summary:
Minister of State for Electronics and Information Technology, Alphons KJ on Wednesday informed the Parliament that 22,207 Indian websites were hacked between April 2017 and January 2018.
Summary:
TDP MP CM Ramesh arrived at the Parliament on Thursday wearing a t-shirt having six demands for Andhra Pradesh printed on it.
Summary:
The Kerala government has directed Thiruvananthapuram District Collector and police chief to stop human-blood offering at a temple that has issued a notice asking devotees for the "donation".
The temple authorities had asked devotees to donate blood to the temple for a ritual.
Summary:
The Karnataka government has released 90 prisoners convicted of murder on account of their good conduct.
Summary:
Bengaluru-based drone startup Aarav Unmanned Systems (AUS) has raised an undisclosed amount in a Pre-Series A funding round from GrowX Ventures, 500 Startups, and BellWether Advisors.
Summary:
Earlier, Joshi had accused her of not returning the money she had borrowed from him two years ago.
Summary:
The CBI has filed a fresh FIR against jeweller Nirav Modi for causing a loss of â¹321.88 crore to PNB.
Summary:
The Supreme Court on Thursday reinstated the marriage of Hadiya with Shafin Jahan, which was earlier annulled by the Kerala High Court on grounds of love jihad.
Summary:
Gitanjali Gems' owner Mehul Choksi, an accused in the $2-billion PNB scam, has told CBI he cannot travel to India since he underwent a cardiac procedure in February.
Summary:
Law Minister Ravi Shankar Prasad alleged that ex-Finance Minister P Chidambaram opened "all doors" for fraud-accused Mehul Choksi-owned Gitanjali Gems to import around 2,000 kg of gold without any verification.
Summary:
PNB fraud-accused Gitanjali Gems owner Mehul Choksi has said he wasn't told how he is "a security threat to India" and why his passport has been suspended.
Summary:
A CBI court on Wednesday turned down an interim bail plea of Rotomac Pens' owner Vikram Kothari in connection with alleged â¹3,700 crore loan fraud case.
Summary:
After two BJP ministers decided to quit Andhra Pradesh Assembly, CM Chandrababu Naidu requested them to "continue work for the welfare of the state".
This comes after TDP ministers decided to resign from the Union Cabinet over demand for special status to Andhra Pradesh.
Summary:
Speaking at an International Women's Day event, Madhya Pradesh CM Shivraj Singh Chouhan on Thursday said that any person who misbehaves with women will be hanged in public.
Summary:
UK's Portsmouth College has offered to teach its students 'Hinglish', a mix of Hindi and English languages, becoming the country's first educational institution to do so.
Summary:
Over 27,000 kg of beer was spilt after a truck overturned on a highway in United States' Florida on Wednesday, said authorities.
Summary:
Filmmaker Shoojit Sircar has revealed he asked Varun Dhawan not to sleep at night prior to the shooting of some scenes in 'October'.
Summary:
Manoj Bajpayee, while slamming media houses for reporting that Irrfan Khan is suffering from brain cancer, wrote, "It's quite insensitive to...
He further requested media houses to respect Irrfan's privacy.
Summary:
Producer Ekta Kapoor, while praising actors Kangana Ranaut and Rajkummar Rao, said they have always taken the "the road less travelled".
Summary:
Priyanka Chopra's mother, who co-owns their production house Purple Pebble Pictures, has revealed that Priyanka's colleagues in Bollywood ridiculed her when she had decided to produce the Bhojpuri film 'Bam Bam Bol Raha Hai Kashi'.
Summary:
A farmer said he discovered the carcasses of six of his cows lying in a row after a recent storm in Queensland, Australia.
Summary:
Australian vice-captain David Warner and South African wicketkeeper Quinton de Kock have been fined 75% and 25% of their match fees respectively by the ICC over their verbal altercation during the first Test.
Summary:
Manchester City advanced to the Champions League quarter-finals despite losing the last 16 second leg 1-2 to FC Basel on Wednesday, their first defeat in 37 home matches.
Summary:
Australian vice-captain David Warner has revealed that South African wicketkeeper Quinton de Kock made a "vile and disgusting" comment about his wife, which triggered their altercation near the team dressing rooms.
Summary:
Indian Premier League team Delhi Daredevils took to social media to share a photoshopped picture of their new captain Gautam Gambhir as superhero character 'Batman'.
Further, they called themselves 'Gautam City', a reference to Batman's home, Gotham city.
Summary:
nMalware attacks saw an 18.4% increase from last year to 9.32 billion in 2017, according to a report by US security company SonicWall.
Summary:
Facebook COO Sheryl Sandberg has said, "There's a real fear of and feeling of economic insecurity, that technology has taken some people with it...
Summary:
Summary:
A sanitary napkin vending machine will also be installed in the women's waiting room at the station.
Summary:
YSR Congress chief YS Jaganmohan Reddy on Thursday said the party will support whoever promises the Special Category Status (SCS) to Andhra Pradesh.
Summary:
A woman in Hyderabad was thrashed by her husband after she switched off the WiFi connection to apparently force him to go to sleep on Wednesday night, the police have said.
Summary:
Asserting that India and China have developed a strategic vision for future relations, Chinese minister Wang Yi said, "Chinese dragon and Indian elephant must not fight each other but dance with each other." "If China and India are united, one plus one will become eleven instead of two," he added.
Summary:
Nationalist Democratic Progressive Party (NDPP)'s Neiphiu Rio on Thursday was sworn-in as Nagaland Chief Minister for his fourth term.
Summary:
Underworld don Dawood Ibrahim's aide and 1993 Mumbai serial blasts accused Farooq Takla was deported to India on Thursday after being arrested in Dubai.
Summary:
Billionaire Elon Musk has trolled Amazon's digital assistant Alexa which users said made laughing noises unprompted or in response to unrelated commands.
Summary:
Summary:
The startup, valued at $6 billion, plans to ship its first product this year.
Summary:
An asteroid the size of a stadium zoomed past Earth on Wednesday at a distance of 1.4 million kilometres, about 3.8 times the average distance between the Earth and Moon.
Summary:
The 20-year-old victim said the man started blackmailing her after accessing the videos by breaking into her phone.
Summary:
Condemning the recent attack on Karnataka Lokayukta Vishwanath Shetty as a "serious lapse of security", former Supreme Court judge Santosh Hegde said the institution wrote 20 letters to the government to provide more security.
Summary:
A government school in Jharkhand's Khunti has been teaching children the Hindi alphabet by saying "Cha se Chacha Nehru choron ka Pradhan Mantri tha (Nehru was the prime minister of thieves)".
Summary:
US President Donald Trump won a case in arbitration against pornstar Stormy Daniels who claimed that she had a sexual affair with him in 2006, the White House has said.
Summary:
Women in Spain abandoned their office work and household chores on Thursday to participate in the country's first nationwide 'feminist strike'.
Summary:
According to reports, Salman Khan and Rekha will share screen space after a gap of 30 years in the film 'Yamla Pagla Deewana: Phir Se'.
Summary:
Raveena Tandon has slammed a media house for publishing a report on an FIR being filed against her for allegedly shooting an advertisement inside a temple.
Summary:
According to reports, Boney Kapoor will be producing a documentary on his wife, late actress Sridevi.
Summary:
The user can put external pressure on an artery in the finger by pressing a sensor on the device to let it measure the blood pressure.
Summary:
Facebook COO Sheryl Sandberg has said, "An equal world will be one where women run half our countries and companies and men run half our homes.
Summary:
A passenger was arrested after being removed from an American Airlines flight for allegedly punching a flight attendant in the face and claiming the plane was hijacked.
Summary:
A building featuring a 75-feet-high glass-bottomed pool has opened in Hawaii, United States.
Summary:
About 2,500 flights were cancelled after the second winter storm in less than a week, which has been dubbed Winter Storm Quinn, struck northeastern United States on Wednesday.
Summary:
Following TDP's decision to pull out two of its ministers from the Union Cabinet, Andhra Pradesh Congress leader Pallam Raju said it was "too little, too late".
Summary:
After BJP-ally TDP announced that two of its ministers will quit the Union Cabinet, the party's other ally Shiv Sena MP Sanjay Raut said, "Allies no longer have good relations with BJP." "Former NDA leaders had kept the alliance together.
Summary:
BJP leader and Rajasthan Women's Commission chief Suman Sharma on Wednesday said, "How can one, who can't even handle his jeans, protect sisters?" "There was a time when every girl used to desire a man, who has a broad chest and thick chest hair.
Summary:
With the overarching theme of job creation, the fund will also invest in emerging innovation in China and India.
Summary:
New Delhi-based movie theatre on wheels Picture Time has raised â¹25 crore in a pre-Series A funding.
Summary:
For the first time, the Deccan Queen Express will be operated by an all-woman crew on International Women's Day today.
Summary:
Talking about the alleged attack on Delhi Chief Secretary Anshu Prakash by AAP MLAs, Delhi CM Arvind Kejriwal on Wednesday said he may be stubborn but he is not violent.
Summary:
A 44-year-old Australian nurse reportedly saved his life from a sudden heart attack by performing an electrocardiogram (EKG) on himself while he was the sole medical professional on duty at a clinic.
Summary:
A robot has solved a Rubik's Cube in 0.38 seconds, breaking the current world record time of 0.637 seconds.
Summary:
Amid a string of incidents involving vandalism of statues, a statue of Mahatma Gandhi was damaged in KeralaâÂÂs Kannur on Thursday.
Summary:
Asian Paints has released the second video on #HomesNotShowrooms campaign that showcases how a home should make every member of a family feel comfortable, including the pets.
Summary:
The UN began celebrating International Women's Day on 8 March in 1975.
Summary:
As per BCCI's new contract structure, Indian women cricketers in the top bracket (Grade A) will earn â¹50 lakh each annually, which is half the amount lowest paid male cricketers (Grade C) will get.
Summary:
Users of Amazon's smart speaker Echo have reported that the digital assistant Alexa-enabled speaker is making laughing noises at random.
Summary:
Air India has been granted permission to fly over Saudi Arabia on its new routes to and from Israel, the airline has said.
Summary:
Vistara said that it would also offer priority boarding for all women travellers.
Summary:
Summary:
Announcing the exit of his party leaders from the Union Cabinet, Andhra Pradesh Chief Minister N Chandrababu Naidu on Wednesday said he had tried to inform PM Narendra Modi but he was unavailable.
Summary:
BJP ministers in Andhra Pradesh have announced their resignation from the state cabinet after CM N Chandrababu Naidu asked two TDP ministers to resign from the Union Cabinet.
Summary:
Summary:
Andhra Pradesh CM Chandrababu Naidu announced the exit of TDP ministers from the Union Cabinet over rejection of a special category status.
Summary:
US-based ride-hailing startup Uber is reportedly seeking $1.25 billion leveraged loan directly from investors, less than a month after revealing $4.5 billion loss last year.
Summary:
India and Pakistan on Wednesday agreed on a proposal to release each other's mentally challenged, women and elderly prisoners above the age of 70.
Summary:
Doshi's most noted works include a low-cost housing project in Indore which accommodates 80,000 people.
Summary:
Expressing his disappointment with the US political system, Russian President Vladimir Putin on Wednesday said, "[It] has demonstrated its inefficiency and has been eating itself up".
Summary:
Electric clocks across Europe are lagging nearly six minutes behind since mid-January due to a political dispute between Serbia and Kosovo over their power grid connected to Europe's synchronised power network.
Summary:
'Raid' will be Ileana's second film with Ajay after 'Baadshaho'.
Summary:
Actor R Madhavan has said that in Hollywood, screenplay writers and dialogue writers are treated like superstars, which is not the case with Bollywood.
Madhavan further said he hopes writers are rewarded equally for their work.
Summary:
Filmmaker Imtiaz Ali has said the best way to enter a new business market for films would be to have "Shah Rukh Khan and Aamir Khan as a combination of exuberance and content".
Summary:
Bisexual British boxer Nicola Adams has got a Barbie doll modelled after her.
Summary:
Announcing that he has asked TDP ministers to resign from the Union Cabinet, Andhra Pradesh Chief Minister N Chandrababu Naidu on Wednesday said that the BJP has done injustice to the state.
Summary:
Canada-based smart thermostat company ecobee has raised $61 million in a funding round led by Energy Impact Partners with participation from Amazon's Alexa Fund.
Summary:
Mumbai-based online furniture retailer Pepperfry has raised â¹250 crore in funding from US-based financial services firm State Street Global Advisors.
Summary:
Four married couples in Uttar Pradesh allegedly got remarried in a mass wedding organised by the state to avail benefits worth â¹35,000 under a government scheme.
Summary:
Animal rights activists have demanded the closure of the Bandung Zoo in Indonesia after a video of a Bornean orangutan smoking a visitor's cigarette surfaced online.
Summary:
To commemorate women's day, CEAT has combined functionality and innovation to introduce the brand new CEAT Safety Grip to make riding safe for women.
Summary:
Slamming the Centre for not providing special status to Andhra Pradesh as promised, CM Chandrababu Naidu on Wednesday directed TDP party's union ministers Ashok Gajapathi Raju and YS Chowdary to resign.
Summary:
Alice Walton, the 68-year-old heiress of Walmart, is the world's richest woman with a $46 billion fortune, according to 2018 Forbes World's Billionaires rankings.
Summary:
Farah captioned the video, "Sad to see racial harassment in this day and age.
Summary:
Further, Rohit Sharma, Bhuvneshwar Kumar and Jasprit Bumrah, who were in Grade B (â¹1 crore) last year, will earn â¹7 crore each.
Summary:
Indian pacer Mohammad Shami and all-rounder Yuvraj Singh have been left out of BCCI's annual contracts list.
Summary:
Speaking about the special status demanded by Andhra Pradesh, Finance Minister Arun Jaitley on Wednesday said sentiments cannot decide the quantum of funds released to the state.
Summary:
Minister of State for Home Affairs Hansraj Ahir has told the Rajya Sabha the government had sanctioned a â¹2,000-crore compensation package in 2016 for refugees from Pakistan-occupied Kashmir in J&K.
Summary:
Former DGP (Prisons) HN Sathyanarayana Rao has claimed he provided "VVIP treatment" to jailed AIADMK leader Sasikala based on Karnataka CM Siddaramaiah's order.
Summary:
In its second advisory against vandalism of statues, the Ministry of Home Affairs has asked states to ensure prompt action against those guilty of damaging statues of leaders.
Summary:
Over 30,000 Muslim women on Tuesday participated in a rally held in West Bengal's Kolkata against the bill which seeks to criminalise instant Triple Talaq with a 3-year jail term.
Summary:
The Supreme Court on Tuesday criticised BJP leaders who made derogatory remarks against Delhi Chief Minister Arvind Kejriwal during a protest rally against the sealing drive.
Summary:
The Delhi Cabinet has approved a proposal to facilitate doorstep delivery of ration in sealed packets to Public Distribution System (PDS) beneficiaries, Deputy Chief Minister Manish Sisodia said.
Summary:
Summary:
Earlier, Iran said that it won't negotiate over its missile programme until the US gives up its nuclear weapons.
Summary:
The RBI has levied a â¹40 lakh penalty on SBI for violating rules of detection and impounding of counterfeit notes.
Summary:
The Competition Commission of India on Wednesday imposed a fine of over â¹54 crore on Jet Airways, IndiGo, and SpiceJet over alleged cartelisation.
Summary:
Former Sri Lankan cricketers on Tuesday took to Twitter to condemn the recent acts of violence against the minority Muslim community in the country.
"We are One Country and One people...No place for racism and violence.
Summary:
Meanwhile, women cricketers are divided into Grade A (â¹50 lakh), Grade B (â¹30 lakh) and Grade C (â¹10 lakh).
Summary:
The Railway Ministry is planning to introduce a semi-high speed train on the Delhi-Jaipur route which would operate at the speed of 200 kmph and cover the distance within 90 minutes.
Summary:
The victim's parents had filed a complaint after he went out with his friends last month and didn't return.
Summary:
Acknowledging that the government formed a committee to study Indian civilisation, Culture Minister Mahesh Sharma slammed reports that the committee was part of the Centre's plan to "rewrite" Indian history.
Summary:
PM Narendra Modi has directed the BSF to withdraw its decision to cut a week's salary to a jawan for disrespecting the Prime Minister by calling an event "Modi Programme".
Summary:
Rawat had said the All India United Democratic Front was growing faster than the BJP due to support from Muslims.
Summary:
Congress MLA Thiruvanchoor Radhakrishnan on Wednesday carried a teargas shell to the Kerala Assembly.
Summary:
US President Donald Trump's top economic adviser Gary Cohn on Tuesday resigned amid reports of differences over stiff tariffs on steel and aluminium imports.
Summary:
International Monetary Fund chief Christine Lagarde on Wednesday said that no one emerges victorious from a trade war.
Summary:
MS Dhoni has been downgraded to the second tier in BCCI's new contract system, following which pacers Bhuvneshwar Kumar and Jasprit Bumrah will be paid a higher retainership fee than the former captain.
Summary:
The hike is expected to benefit 48.41 lakh central government employees and 61.17 lakh pensioners.
Summary:
Called the 'C_Two', the car has a top speed of 412 kmph and features butterfly doors.
Summary:
Brothers Jai Hari and Yadu Hari Dalmia, Managing Directors of cement company Dalmia Bharat, are the richest Indian newcomers on Forbes 2018 Billionaires List with a fortune of $2.4 billion.
Summary:
Bangladesh's ODI captain Mashrafe Mortaza scalped four wickets in four balls during his side Abahani Limited's Dhaka Premier Division Cricket League match against Agrani Bank on Tuesday.
Summary:
After having served as Rajya Sabha MP from Gujarat for 18 years, Finance Minister and BJP leader Arun Jaitley will contest the upcoming elections to the Upper House from Uttar Pradesh.
Summary:
Minister of State for Railways Rajen Gohain on Wednesday told the Parliament that the Indian Railways has suffered losses worth around â¹4,300 crore by operating Mumbai locals between 2014 and 2017.
Summary:
Condemning the recent instances of vandalism of leaders' statues in various states, Vice President Venkaiah Naidu on Wednesday termed the incidents as "mad" and "shameful".
Summary:
The Delhi government has directed all schools in the national capital not to deploy any male guards or sanitation workers in the primary wings.
Summary:
The ruling came based on a petition challenging a CBSE circular mandating Aadhaar for students taking NEET this year.
Summary:
The court reserved its verdict on a 2010 petition filed by an NGO seeking a ban on khap panchayats over their interference in inter-caste marriages.
Summary:
Earlier, Trump had said North Korea's offer could be a false hope but the US was ready to act in either direction.
Summary:
North Korea used a banned chemical weapon to assassinate Kim Jong-nam, the half-brother of its leader Kim Jong-un last year, the US State Department said.
Summary:
'The Wolf of Wall Street' producer Red Granite Pictures has agreed to pay $60 million to settle US government claims that it financed the film with money misappropriated from Malaysian state fund 1MDB.
Summary:
Nirav's wealth fell 94% to less than $100 million in 2018, compared to $1.7 billion in Forbes 2017 billionaires' list.
Summary:
Actor-turned-politician Jaya Bachchan will be the Samajwadi PartyâÂÂs candidate for the upcoming Rajya Sabha elections, according to reports.
Summary:
Huma Qureshi has said she had to audition for every film until the 2014 movie 'Dedh Ishqiya'.
Summary:
Gilu Joseph, who was slut-shamed for breastfeeding a baby on the cover of Malayalam magazine 'Grihalakshmi', said, "If I wanted publicity I'd have posed for some other magazine like Playboy." "Why would I go for such a noble cause [of destigmatizing breastfeeding in public]?" she added.
Summary:
Cricket legend Sachin Tendulkar called former Windies' batsman Viv Richards his "batting hero" while wishing him on the occasion of his 66th birthday on Twitter on Wednesday.
Summary:
The body urged Sania to dissociate herself from the advertorial, which misrepresented a study on the use of antibiotics in the poultry industry.
Summary:
A probe has been initiated against three teachers of a government school in Kerala for allegedly hiding liquor bottles in the bag of a student during a school excursion.
Summary:
Punjab CM Captain Amarinder Singh has ordered a probe after he spotted illegal mining activity on the banks of Sutlej river while he was flying in a chopper to an event.
Summary:
Maharashtra Food and Drugs Administration Minister Girish Bapat has told the state Legislative Council that sale of gutka will be made a non-bailable offence and will attract a three-year jail term.
Summary:
Police on Wednesday detained Delhi Commission for Women chief Swati Maliwal as she was marching to the Prime Minister's Office with around 40 other volunteers.
Summary:
The CBI has arrested income tax official Sanjay Jain and advocate Pramod Sharma for accepting a bribe of â¹1.50 lakh from a complainant in Uttar Pradesh's Farrukhabad.
Summary:
The video shows a bright flash, followed by a brief moment of daylight.
Summary:
This comes after Kohli and former coach Anil Kumble appealed for a pay hike for players to match international standards.
Summary:
Indian pacer Mohammad Shami's wife Hasin Jahan has accused him of torture and multiple extra-marital affairs.
Summary:
The Lahore High Court on Wednesday ruled that neither the Pakistani nor the Punjab government can arrest or put 26/11 Mumbai terror attack mastermind Hafiz Saeed under house arrest.
Summary:
Actor Jeetendra has been booked by the Shimla Police after his cousin lodged a complaint in February, accusing him of sexual abuse.
Summary:
The court has issued a notice to ED after Nirav Modi's Firestar Diamond filed a plea against the seizure of its properties.
Summary:
Renault claims the car has a limited speed of 50 kmph and features its four-wheel steering technology.
Summary:
Mumbai-based startup Truebil allows its customers to buy used cars by paying with Bitcoin.
Summary:
The Bombay High Court has held that a person cannot be denied the right to inherit property left behind by parents because of religious conversion.
Summary:
After Iqbal Kaskar told a court in Maharashtra that he spoke to his brother Dawood Ibrahim before being arrested in an extortion case, the judge asked him for the gangster's phone number.
Summary:
Periyar's statue in Tamil Nadu was damaged hours after Raja's post.
Summary:
Summary:
A Delhi court on Tuesday extended the CBI custody of Karti Chidambaram by three more days in the INX Media money laundering case.
Summary:
After imposing a 10-day nation-wide emergency, the Sri Lankan government on Wednesday blocked social media sites including Facebook to stop the spread of violence.
Summary:
A robot named 'Flippy' has started working at a US restaurant, alongside other human employees.
Summary:
L'Oréal heiress Françoise Bettencourt Meyers is the richest newcomer in the Forbes 2018 Billionaires List with a fortune of $42.2 billion.
Summary:
The film will focus on Shakeela's journey from entering the film industry at the age of 16 and her life after that.
Summary:
John Abraham will be starring opposite debutante actress Aisha Sharma, who is the sister of actress Neha Sharma, in his upcoming film.
Summary:
An official from Hemraj Advertising has clarified that Raveena Tandon wasn't shooting for an advertisement in the 'no camera zone' inside the premises of Sri Lingaraja Temple, Odisha.
Summary:
Russian President Vladimir Putin played football with FIFA President Gianni Infantino on Tuesday to mark 100 days to the FIFA World Cup. The footage of the duo was released by FIFA in a tweet which featured legends like Diego Maradona and Ronaldo juggling the ball.
Summary:
The world's first Monopoly-themed hotel will open in Malaysia's Kuala Lumpur next year.
Malaysia's Tourism Minister said, "Millennials are looking for a memorable experience," and added, "The Monopoly Mansion...
Summary:
A middle-aged woman allegedly assaulted and tore the clothes of a female passenger on a recent Pakistan International Airlines (PIA) flight in Karachi when boarding was underway.
Summary:
The Tibetan government-in-exile has cancelled an event in Delhi which was to be attended by the Dalai Lama to commemorate his 60-year exile in India.
Summary:
UK-based scientists have studied a 127-million-year-old bird fossil to understand how avians evolved in the age of dinosaurs.
Summary:
Chhattisgarh BJP MLA Raju Singh Kshatriya's son and his four supporters were arrested after a Sub-Inspector accused them of damaging his car parked outside his residence.
Summary:
The parents of an eight-year-old girl, who was declared brain dead, donated the organs of their daughter to four end-stage organ failure patients in Mumbai.
Summary:
A temple in Kerala's Thiruvananthapuram has issued a public notice asking devotees to donate blood to the temple for a ritual as part of an annual festival.
Summary:
A bride canceled her wedding and rushed to a police station in Odisha's Rourkela in her bridal attire to register an FIR against the groom for allegedly misbehaving with her family after getting drunk.
Summary:
However, Dutt has issued a letter to the concerned bank saying Tripathi's money and property should go to her family members.
Summary:
Actor Rajinikanth has joined social media platforms Facebook and Instagram.
Summary:
Indian pacer Mohammad Shami has said all the extra-marital affair and domestic violence allegations, made against him from an unverified Facebook account bearing the name of his wife Hasin Jahan, are a conspiracy against him.
Summary:
Cricket legend Sunil Gavaskar became the first-ever batsman to reach 10,000 runs in Test cricket on March 7, 1987, almost 110 years after the first-ever Test.
Summary:
Shetty, whose condition is being closely monitored, was rushed to the hospital and is said to be out of danger.
Summary:
Jindal Group Chairperson Savitri Jindal is the richest Indian woman on the Forbes 2018 Billionaires List with a fortune of $8.8 billion.
Summary:
A video showing a bulldozer razing Communist icon Lenin's statue in the state's Belonia area recently surfaced online.
Summary:
The community ended the protests after the authorities assured that a new statue will be installed.
Summary:
"This is 4th drone which has been shot down by Pakistan Army troops in last one year," the Pakistani Army further claimed.
Summary:
A BSF jawan was penalised with a seven-day pay cut for not putting 'honourable' or 'Shri' while referring to PM Narendra Modi.
Summary:
After North Korean leader Kim Jong-un said that he plans to "vigorously advance" relations with South Korea, President Moon Jae-in said that it was too early to be optimistic on the North Korean regime.
Summary:
The councillor of Australian town Katherine has got a graffiti reading, "Jesus loves nachos" trademarked.
Summary:
Michelle Obama on Tuesday met the two-year-old girl who was photographed seemingly admiring the former US First Lady's portrait.
Summary:
Reliance Industries Chairman Mukesh Ambani has been ranked India's richest person on Forbes 2018 Billionaires List after he added $16.9 billion to his wealth over the last year.
Summary:
Filmmaker Vishal Bhardwaj has slammed Filmfare magazine for publishing an article claiming that he has cast actresses Fatima Sana Shaikh and Sanya Malhotra together in his upcoming film.
Filmfare deleted the article following Bhardwaj's tweet.
Summary:
Gambhir, who had earlier represented Daredevils from 2008 to 2010, returned to the franchise after being bought for â¹2.8 crore at the IPL 2018 auction.
Summary:
New Zealand chased down England's 335 in the fourth ODI on Wednesday despite losing their openers for ducks to level the five-match series 2-2.
Summary:
American startup Grayshift claims that it can unlock iPhones running iOS 10 and 11 for $15,000 via its GrayKey tool, according to reports.
Summary:
Google also plans to roll out Lens for iOS users 'soon' but did not confirm the date.
Summary:
A tug hit an aircraft that was stationed at the parking bay of the Mumbai airport today.
Summary:
Former Congress President Sonia Gandhi has invited all opposition parties' leaders for a dinner in Delhi on March 13.
Summary:
Astronomers have used NASA's Hubble Space Telescope to uncover a dust structure about 150 billion miles wide enveloping a young star.
Summary:
Earth would witness a rare planetary alignment where Saturn, Mars, and Jupiter would appear lined up next to a crescent Moon in the sky this week.
Summary:
The Uttar Pradesh Police has issued notices to six Aligarh Muslim University students amid protests against President Ram Nath KovindâÂÂs visit to the institute.
Summary:
The woman had posted a photograph in which her husband had left a coloured handprint on her chest.
Summary:
He entered the bank's "strong room", managed to crack the password and removed â¹18.37 lakh from the machine, a police official said.
Summary:
Himanshu Bharadwaj was injured in a motorcycle accident and declared brain-dead, and later declared dead and shifted to the mortuary.
Summary:
This comes after people razed two statues of Russian communist revolutionary Vladimir Lenin in Tripura post CPI(M)'s defeat in the state assembly polls.
Summary:
Ex-US Navy veteran Adam Purinton who shot dead Indian engineer Srinivas Kuchibhotla at a bar in Kansas last year has pleaded guilty to his crime and now faces life in prison with no chance of parole for 50 years.
Summary:
The 1993 Mumbai blasts mastermind Dawood Ibrahim is willing to return to India and face all charges against him if the government keeps him in Mumbai's Arthur Road jail, criminal lawyer Shyam Keswani has claimed.
Summary:
Scientists believe, with 49 qubits, a quantum computer with low-enough error can outperform any classical supercomputer in the world.
Summary:
Uber has started delivering goods using its fleet of self-driving trucks on its shipping-on-demand app 'Uber Freight', the ride-hailing startup said on Tuesday.
Summary:
Mercedes' parent company Daimler has introduced car lights that warn the driver about dangers and project warning symbols on the road.
Summary:
Audi, along with design firm Italdesign and aeronautics firm Airbus, has unveiled a car concept 'Pop.Up Next', a hybrid of a self-driving car and passenger drone.
Summary:
Further, 92-year-old Chairman Emeritus of pharmaceutical company Alkem Laboratories, Samprada Singh, is the oldest billionaire in India with a net worth of $1.2 billion.
Summary:
A Chinese woman has claimed that her two-year-old son locked her iPhone for nearly 48 years by repeatedly entering the wrong password.
Summary:
An Australian farmer claims he cracked open a large egg, only to find a smaller egg inside.
Summary:
The Merriam-Webster dictionary has added 850 new terms, including 'embiggen', a made-up word from a 22-year-old 'The Simpsons' episode that has been defined as 'to make bigger or more expansive'.
Summary:
Vijay Mallya's luxury superyacht worth $93 million (over â¹600 crore) has been impounded in Malta by a trade union over non-payment of more than $1 million (â¹6.5 crore) in wages to the crew.
Summary:
The government has asked state-owned banks to collect passport details of all borrowers with loans worth over â¹50 crore within 45 days, according to reports.
Summary:
Actress Sonam Kapoor took to Instagram to share a picture from her cousin Janhvi Kapoor's 21st birthday celebrations.
Summary:
Comedian Jimmy Kimmel, while taking a dig at US President Donald Trump, tweeted, "Lowest rated President in HISTORY." This was a reply to Trump's jibe at the low ratings of the 90th Academy Awards, hosted by Kimmel.
Summary:
Twitter's CEO Jack Dorsey has invested in American health tracking wearable startup Whoop's Series C funding round.
Summary:
German automaker Porsche's head of development Michael Steiner has said the company is studying flying passenger vehicles but expects the technology to be ready within a decade.
Summary:
Technology giant Google has partnered with the US government to help in developing artificial intelligence (AI) for analysing drone footage.
Summary:
Unidentified bike-borne men threw petrol bombs at a BJP office in Tamil Nadu's Coimbatore on Wednesday, hours after late social activist EV Ramasamy's, popularly known as Periyar, statue was vandalised in Vellore.
Summary:
US-based ride-hailing startup Uber has burned through about $10.7 billion since it was founded nine years ago, according to Bloomberg.
Summary:
Greeley, who is a University of California graduate is joining homestay startup Airbnb as its President of Homes.
Summary:
Lingerie startup Inner Sense has raised â¹2.5 crore in pre-Series A round from incubator Venture Catalysts.
Summary:
In a first, scientists have claimed to directly detect how magnetic field-driven plasma waves contribute to the Sun's high temperatures, first predicted by Nobel-winning physicist Hannes Alfvén in 1942.
Summary:
BJP President Amit Shah on Wednesday said that any person associated with the BJP found to be involved with destroying any statue will face severe action from the party.
Summary:
BJP functionary R Muthuraman, arrested for damaging a statue of Dravidian leader Periyar in Vellore, has been expelled by Tamil Nadu BJP President Tamilisai Soundararajan.
Summary:
In its mouthpiece Saamana, the Shiv Sena on Wednesday said Art of Living founder Sri Sri Ravi Shankar should not interfere in the Ayodhya issue.
Summary:
A woman in China was arrested and detained for five days after she refused to put her handbag on a conveyor belt at a subway, calling the scanner dirty.
Summary:
American pornstar Stormy Daniels has sued President Donald Trump, claiming that his lawyer tried to 'shut her up' and 'protect Trump' using an invalid non-disclosure agreement over her alleged sexual affair with Trump.
Summary:
With a net worth of $112 billion, Amazon Founder Jeff Bezos has topped the Forbes billionaires list for the first time, dethroning Bill Gates who topped the list 18 times in the past 24 years.
Summary:
Scottish-born inventor Alexander Graham Bell, who received the patent for his invention, the telephone, on March 7, 1876, refused to keep the device in his office.
Summary:
Summoning Watson from the next room, Bell said, "Mr Watson, come here...", making these the first words spoken on the telephone.
Summary:
The authorities of Sri Lingaraja Temple, Odisha have lodged an FIR against actress Raveena Tandon for allegedly shooting an advertisement in the 'no camera zone' inside the temple premises.
Summary:
Richards, who was born on March 7, 1952, won the first two editions of the Cricket World Cup with West Indies and was part of Antigua's squad in the 1974 FIFA World Cup Qualifiers.
Summary:
BlackBerry has filed a lawsuit against Facebook, alleging the company and its subsidiaries, WhatsApp and Instagram, infringe on its messaging service, BlackBerry Messenger.
Summary:
With 63.5 million passengers flying through the Delhi airport in 2017, it has become Asia's seventh busiest airport.
Summary:
Another statue of Russian communist revolutionary Vladimir Lenin was destroyed in Tripura amid clashes between BJP and CPI(M) supporters.
Summary:
A 1928-dated handwritten letter from Nobel-winning physicist Albert Einstein, to a mathematician concerning the formalisation of the "Third Stage of the Theory of Relativity", has been sold for $103,700 (over â¹67 lakh).
Summary:
A total of 142 projects at a cost of â¹318.71 crore are already being implemented under the IMPRINT-I Programme.
Summary:
US President Donald Trump has slipped 222 places in the Forbes billionaires list after losing $400 million (over â¹2,500 crore) from last year.
Summary:
Nigerian-origin Tony Iwobi has been elected as Italy's first black senator.
Summary:
North Korea pledged to freeze its nuclear-missile activities if the US agrees to talk.
Summary:
A drunk US man who accidentally took a 482-km Uber ride from West Virginia University to his home in New Jersey, costing him over â¹1 lakh, is seeking donation via GoFundMe to pay the bill.
Summary:
Over 2 lakh hairdressers in Pakistan's Khyber Pakhtunkhwa province have decided to stop giving French and English beards and haircuts, Khyber Pakhtunkhwa Sulemani Hair Dressers Association president Sharif Kahlo said.
Summary:
New Zealand-based advertising agency Make Collective is offering its employees NZ$10 (â¹470) a day to cycle to work, in a bid to energise staff.
Summary:
Ajay, who has worked with Shetty in ten films so far, will reportedly appear as the character 'Singham' in the cameo.
Summary:
Rani Mukerji has said if she was offered the film 'Black' now, she won't be able to do it.
Rani further said, "I don't think I even rehearsed for the film's scenes.
Summary:
Actor Akshay Kumar, while talking about his wife Twinkle Khanna, said, "She thinks in English, I think in Hindi." He added, "We're complete opposites.
I'm a diplomat." Revealing what they fight most about, he said, "I like to pamper my family when we travel on holidays, but...she prefers to keep things simple."
Summary:
Real Madrid sealed a 5-2 aggregate win over PSG on Tuesday to enter the Champions League quarter-finals for the eighth straight season.
Summary:
While addressing the Vidhan Sabha on Tuesday, Uttar Pradesh CM Yogi Adityanath said, "I am a Hindu and have no reason to celebrate Eid." "But my government would continue to work for a peaceful celebration of Eid," the CM added.
Summary:
Talking about the razing of Communist icon Lenin's statue in Tripura, MoS for Home Affairs Hansraj Ahir said there is no place for foreign leaders' statues.
Summary:
Minister of State for Home Kiren Rijiju has told the Parliament that over 27,000 personnel left the Central Armed Police Forces in the last three years due to personal and domestic reasons.
Summary:
The Home Affairs Ministry on Wednesday said Prime Minister Narendra Modi has expressed strong disapproval of incidents of the toppling of statues reported from certain parts of the country.
Summary:
A 9-year-old boy was allegedly sexually assaulted by his 22-year-old Arabic teacher in a madrassa in Hyderabad.
Summary:
After being discharged from Lilavati Hospital in Mumbai, Goa CM Manohar Parrikar left for the United States on Wednesday for medical treatment.
Summary:
Further, this was India's first defeat under Rohit Sharma's captaincy in five T20I matches.
Summary:
Commenting on the lowest-ever viewership for Oscars 2018, US President Donald Trump on Tuesday joked, "We don't have Stars anymore - except your President." The 90th Academy Awards drew an average 26.5 million viewers as compared to 33 million viewers in 2017.
Summary:
The CBI has called Vipul Chitalia, the Vice-President (Banking Operations) of Mehul Choksi-owned Gitanjali Gems, as the mastermind of the $2-billion PNB fraud during remand proceedings.
Summary:
It has challenged provisions of the Prevention of Money Laundering Act (PMLA) that allowed ED to conduct search and seizure.
Summary:
Shikhar Dhawan became the first Indian to get out in nineties in T20I cricket after getting dismissed for 90(49) against Sri Lanka on Tuesday.
Summary:
While most players have received payment from their state units, none of them have received compensation drawn from 10.6% of BCCI's total gross revenue.
Summary:
Extending support to Andhra Pradesh leaders demanding special category status for their state, Congress President Rahul Gandhi on Tuesday said his party will fulfil their demand if voted to power in 2019 general elections.
Summary:
Haryana CM Manohar Lal Khattar on Tuesday bought pakodas from Congress MLAs who were selling them on the road to protest unemployment.
Summary:
Attorney General KK Venugopal has told the Supreme Court that the Centre is open to extending the deadline for linking Aadhaar to various services including mobile phones and bank accounts beyond March 31.
Summary:
Hearing a case where three civilians died after the Army opened fire, the Supreme Court told the Jammu and Kashmir government that Major Aditya Kumar cannot be treated as an "ordinary criminal".
Summary:
Saudi Arabia has banned dancing and "swaying" at Egyptian pop star Tamer Hosni's concert to be held later this month, according to reports.
Summary:
Washington on Monday became the first US state to set up its own net-neutrality requirements.
Summary:
Dismissing reports that there is chaos in the White House, US President Donald Trump said that more staff will leave as he seeks "perfection".
Summary:
The Co-founder and CEO of Blackstone Group, Stephen Schwarzman, received $786 million last year, making him the highest earner in the private equity industry.
Summary:
Loans worth â¹81,683 crore were written-off by public sector banks in 2016-17, Finance Minister Arun Jaitley has said.
Summary:
The sequel will reportedly retain all the characters and the story is expected to take a 10-year leap.
Summary:
Actor Saif Ali Khan has said that his daughter Sara Ali Khan does not want to be in candyfloss movies as she does not believe in them.
He further said, "Everyone wants to be a star.
Summary:
Taapsee Pannu, while talking about being rejected over "stupid things", said, "I was told, 'You are not...glamorous enough'...'You are not so and so's daughter'." She added she wouldn't let her sister Shagun go through this.
Summary:
Summary:
Wishing Janhvi on her birthday, her cousin Sonam Kapoor had shared her picture and captioned it, "To one of the strongest girls I know, who became a woman today.
Summary:
Responding to footage of the David Warner-Quinton de Kock scuffle, AB de Villiers said the South Africa-Australia series would be "one to remember".
Summary:
Reacting to India losing against Sri Lanka in the T20I tri-series, a user tweeted, "Agli flight se MS Dhoni ko bhejo." Other tweets read, "Rohit Sharma: Practice matches mai score nahi karta mai," and, "Meanwhile Rajasthan Royals looking for refund from Jaydev Unadkat." "Indians: Chahal is best leggie.
Summary:
After a statue of Russian communist revolutionary Lenin was taken down in Tripura, BJP MP Subramanian Swamy termed him a "foreign terrorist" and questioned why his statue should be displayed in India.
Summary:
Delhi Assembly Speaker Ram Niwas Goel on Tuesday said that the Secretariat has stopped salaries and allowances to 20 AAP MLAs, who were disqualified for allegedly holding offices of profit by serving as Parliamentary Secretaries.
Summary:
Referring to Karnataka CM Siddaramaiah as "Sultan", BJP MP Nalin Kumar Kateel on Monday called him a terrorist and accused him of supporting the alleged killing of 24 Hindu activists in the state.
Summary:
Telangana CM and Telangana Rashtra Samithi President KC Rao has offered to lead a Third Front against the BJP and Congress.
Summary:
All 39 people, including 6 crew members onboard a Russian military transport plane were killed after it crashed in Syria on Tuesday, the Russian Defence Ministry said.
Summary:
North Korea on Tuesday said that it has no reason to possess nuclear weapons if military threats against the country are resolved and it receives a credible security guarantee.
Summary:
World number one Roger Federer played a point on his knees while teaming up with Bill Gates in a charity match on Monday.
Summary:
Pandurang had allowed reporters to inspect the pitch in person, which is a major rule violation.
Summary:
Ura scored 64.3% of his team runs, the fourth highest percentage of runs in a completed ODI innings.
Summary:
Rohit Sharma's four-ball duck against Sri Lanka in the T20I tri-series opener on Tuesday was his 12th international duck since March 6, 2013, the joint-most ducks by an Indian in the last five years.
Summary:
Nagaland CM and Naga People's Front leader TR Zeliang on Tuesday resigned from his post after the BJP stood by its pre-poll alliance with Nationalist Democratic Progressive Party (NDPP).
Summary:
While NDPP secured 17 seats in the Assembly, 12 BJP MLAs submitted a letter supporting Rio as the CM candidate to Acharya.
Summary:
Swamy also added that an investigation should be conducted against Adani as he may have â¹72,000 crore in non-performing assets.
Summary:
A Delhi court on Tuesday extended the CBI custody of P Chidambaram's son Karti Chidambaram by three more days in the INX Media money laundering case.
Summary:
PETA has sought that the Supreme Court ban on jallikattu be continued, alleging that it has evidence on animal torture during the tournaments in Tamil Nadu.
Summary:
India will help reconstruct 50,000 houses for earthquake victims in Nepal's Gorkha and Nuwakot districts under its $100-million grant to the country, the Indian Embassy has said.
Summary:
Iranian Foreign Minister Mohammad Javad Zarif has said that the US has turned the Middle East into a "gunpowder depot" by selling arms in the region.
Summary:
Following the verdict, the hotel staff removed US President Donald Trump's name from the property.
Summary:
This comes after North Korean leader Kim Jong-un said that he hoped to "vigorously advance" relations with South Korea.
Summary:
There is a wellness club for napping in New York.
Summary:
Akshay Kumar has said he is 50-years-old and probably has another five years to do action films.
How much can my body take?" Talking about his choice of films, Akshay said, "The only thing that attracts audiences is change.
Summary:
'Sasural Simar Ka' actress Dipika Kakar, while confirming that she has converted to Islam, said, "Why and when I have done it, I don't think it needs to be talked about." "My family was with me in this decision and my intentions were not to hurt anyone," she added.
Summary:
New posters of Kangana Ranaut and Rajkummar Rao starrer 'Mental Hai Kya' have been released.
Summary:
Katrina and Abhay had earlier starred together in Zoya Akhtar's 2011 film 'Zindagi Na Milegi Dobara'.
Summary:
Actress Emma Watson was spotted with a temporary tattoo on her arm that read 'Times Up' instead of 'Time's Up' at the Vanity Fair Oscars party.
Emma later jokingly tweeted, "Fake tattoo proofreading position available.
Summary:
Nisar Ahmed, a 15-year-old Indian sprinter who underwent a three-week training stint in Jamaica, said he took eight-time Olympic gold medalist Usain Bolt's autograph on his running shoes.
Summary:
A woman onboard a flight in the US was restrained by fellow passengers as she attempted to open the cabin door of the aircraft mid-air.
Summary:
As many as 16 vehicles are stolen every day in Bengaluru and the police were able to detect only 27% of such cases in 2017, the city police data has revealed.
Summary:
This comes after YEIDA sent notices to 8 builders for diverting â¹840 crore meant for completing housing projects.
Summary:
A Madrasa in Bangladesh said on Tuesday that it had confiscated hundreds of mobile phones from students and torched them in a bonfire because they were distracting the students from their learning.
Summary:
Praising President Donald Trump's decision to move the US embassy from Tel Aviv to Jerusalem, Israeli Prime Minister Benjamin Netanyahu has said that Trump will be remembered through the ages.
Summary:
Around â¹2 trillion was wiped out from the market capitalisation of all listed companies after benchmark index BSE Sensex closed 429.58 points down at 33,317 on Tuesday.
Summary:
Slamming PM Narendra Modi over his silence on the $2-billion PNB scam, Congress President Rahul Gandhi on Tuesday tweeted, "Ek Nirav Modi hai, dusra Modi Nirav (quiet) hai." Rahul also led a protest over the scam near Mahatma Gandhi's statue in the Parliament complex.
Summary:
Rambhia's lawyer, however, said that Rambhia had reported the transactions to tax authorities.
Summary:
This was the second time that Gayle hit 10+ sixes in an ODI innings.
Summary:
Deb, a former RSS volunteer, is BJP's state unit chief and carried out door-to-door campaigns for the assembly elections.
Summary:
A team of Danish and Swedish researchers have studied 1.6-billion-year-old fossils formed by microbes which created oxygen bubbles as small as the width of a human hair.
Summary:
This follows a visit by a North Korean delegation to the Winter Olympics in PyeongChang, South Korea.
Summary:
Nearly 4 lakh people are trapped inside the region and were running out of essential supplies, the UN had said.
Summary:
The UN has revealed that the UK is the world's largest producer and exporter of medical cannabis.
Summary:
Meanwhile, OpenTable has apologised to the eateries affected by the "rogue" employee's actions.
Summary:
Japanese steelmaker Kobe Steel's CEO Hiroya Kawasaki on Tuesday announced his resignation after the firm submitted false strength and quality data for products shipped to hundreds of clients.
Summary:
Hong Kong-based OKEx and Tokyo-based Binance are handling the largest volume of trading daily, making about $1.7 billion.
Summary:
US cryptocurrency exchange Coinbase has been sued for alleged insider trading of Bitcoin Cash by its employees.
Summary:
Actor Ayushmann Khurrana has jokingly said that the longest Bhumi Pednekar has gone without sex is an hour.
Summary:
Actor-politician Shatrughan Sinha has said if he had to portray a distinguished Indian in a film, it would be PM Narendra Modi.
Shatrughan added, "He is indeed our most dynamic action hero.
Summary:
Comedian Tiffany Haddish has jokingly said that when actor Brad Pitt met her at the elevator during the Oscars, he told her that in one year if both of them are single they are going to 'do it'.
Summary:
Reacting to the verbal altercation between David Warner and Quinton de Kock during the first Test, former Australian spinner Shane Warne advised the duo to have beer together and patch things up.
Summary:
Veteran Indian spinner Harbhajan Singh took to Twitter to share a picture of Mohammad Kaif kissing him on his cheek.
Reacting to it, Kaif tweeted, "Pyaare Bhajji, aur ke liye wait karna padega.
Summary:
The T20I tri-series between India, Sri Lanka and Bangladesh in Colombo will go on as per schedule despite nation-wide emergency, Sri Lanka Cricket has said.
Summary:
The government said it blocked Tumblr after the company failed to reply to its February letter demanding the removal of pornographic content from the platform within 48 hours.
Summary:
Congress spokesperson Randeep Surjewala on Tuesday said the new slogan of the PM Narendra Modi-led government is "Bhagodon ka vikas aur looteron ka saath" (Development of fugitives and support to robbers).
Summary:
Hours after Communist icon Lenin's statue was razed in Tripura, Tamil Nadu BJP leaders have warned that the statue of Dravidian leader Periyar will be next.
Summary:
A 1926 letter written by Mahatma Gandhi, wherein he discusses the nature of existence of Jesus Christ, has been sold for $50,000 (â¹32 lakh) to an undisclosed buyer.
Summary:
A 45-year-old man in West Bengal allegedly raped a 3-year-old girl in a bus, while her 5-year-old brother tried to stop the act.
Summary:
Doctors said the hand was severed with poor chances of recovery.
Summary:
An Indian arbitration court has restrained Anil Ambani-led Reliance Communications (RCom) and two of its companies from transferring or selling any assets without its permission.
Summary:
Jaipur-based Finova Capital, a non-banking financial company, has raised $6 million from Sequoia India.
Summary:
Italian sculptor Michelangelo used a block of marble that other artists had considered unworkable to create his masterpiece 'David'.
Summary:
Soviet cosmonaut Valentina Tereshkova became the first woman to travel into space in June 1963.
Summary:
At the time, German ships were conducting an experiment wherein bottles were thrown into the sea to track ocean currents.nn
Summary:
The 50th anniversary of English rock band The Beatles' visit to Maharishi Mahesh Yogi ashram was celebrated in Uttarakhand's Rishikesh.
Summary:
The CBI on Tuesday detained Vipul Chitalia, Vice-President (Banking Operations) of Mehul Choksi-owned Gitanjali Group, at Mumbai Airport for questioning over the $2-billion PNB fraud case.
Summary:
The event required athletes to throw a sandbag over the bar in a 30-second time frame.
Summary:
Five men allegedly stole $5 million (â¹32.5 crore) in cash, which had been due to travel to Switzerland aboard a Lufthansa cargo plane, at a freight airport in Brazil on Sunday.
Summary:
The US government's defence agency DARPA is hoping to tap into survival techniques of tardigrades, Earth's most resilient creatures, to save soldiers injured on the battlefield.
Summary:
The Supreme Court on Tuesday stayed proposed changes to Delhi Master Plan for 2021, aimed at granting protection to traders from the sealing drive in the National Capital.
Summary:
Ryoko Azuma was on Tuesday appointed as the Commander of the First Escort Division of the Japan Maritime Self-Defense Force, becoming the first woman to command a warship squadron.
Summary:
US Ambassador Nikki Haley has accused the UN of "bullying" Israel, saying that her country won't tolerate a situation where the world body of 198 countries spends half of its time in attacking the Jewish nation.
Summary:
A still from Varun Dhawan and Anushka Sharma starrer 'Sui Dhaaga' has been shared online.
Anushka Sharma rode pillion as Varun Dhawan cycled for close to 10 hours in the sweltering heat at Chanderi," read the caption.
Summary:
Spanish female racing driver Carmen Jorda has suggested women could be better suited to Formula E than Formula One as the all-electric cars are less physically challenging.
Summary:
Reacting to David Warner giving a send-off to AB de Villiers during the first Australia-South Africa Test, ex-South Africa captain Graeme Smith said Warner can be "a bit of a fool at times".
Summary:
Dating app Bumble has announced that the platform will ban images of guns and other weapons like knives from its user profiles.
Summary:
A passenger plane carrying 96 people was forced to make an emergency landing in Kyrgyzstan as one of its engines exploded shortly after takeoff.
Summary:
After Russian communist revolutionary Lenin's statue was brought down in Tripura, BJP spokesperson Subrata Chakraborty said citizens have wanted to erect statues of national heroes like Swami Vivekananda instead of Lenin for a long time.
Summary:
The accused made the threat in the excitement of learning about BJP's victory in the Tripura elections, police officials said.
Summary:
Chatbot developing startup Anaek has raised an undisclosed amount in seed funding from Matrix Partners India, the startup's Co-founder Kanav Abrol said.
Summary:
Homegrown cab aggregator Ola is in talks with Singapore's venture fund Temasek and other investors to raise up to $1 billion in funding, according to reports.
Summary:
Stars 25-30 times more massive than the Sun explode to form neutron stars while less massive stars turn into red giants.
Summary:
The court was hearing a case involving an IFS officer.
Summary:
The BEST, which provides the cheapest power tariff in Mumbai for high-end users, has reduced the tariff by 17% in the last two years.
Summary:
Chhattisgarh has reportedly been celebrating Valentine's Day as Parents' Day since 2012.
Summary:
The New Delhi Municipal Council (NDMC) will procure 80 electric vehicles by mid-March.
Summary:
Meanwhile, Sri Sri said his comment has been misinterpreted.
Summary:
After the Delhi government allegedly delayed approving the phase four of Delhi Metro, the Centre has decided to implement it on its own, Union Minister Hardeep Singh Puri said on Monday.
Summary:
The move is aimed at preventing the spread of violence to other parts of the country, a government spokesperson said.
Summary:
The Indian military has a total of 42,07,250 personnel, while China has 37,12,500 personnel and the US has 23,63,675, the index stated.
Summary:
Apurva Asrani, co-writer of Kangana Ranaut's 'Simran' revealed he has been diagnosed with Bell's Palsy, a condition which causes loss of facial muscle movement.
Summary:
ICICI Bank had led a 31-lender consortium which gave loans worth â¹5,280 crore to the company.
Summary:
The CBI has alleged that violation of norms in issuing Letters of Undertakings benefiting Nirav Modi and Mehul Choksi's firms had been going on since 2010.
Summary:
In a survey, Facebook asked users if men should be allowed to ask 14-year-old girls for sexual pictures on the platform.
Summary:
India has the highest percentage of women commercial pilots in the world, with 12% of the 10,000 commercial pilots being women.
Summary:
Odisha Police has arrested 12 people in connection with theft of 50,000-litre diesel from an Indian Oil pipeline near Bhubaneswar.
Summary:
In a letter published online, Shambhala International said that it is against all forms of abuse and discrimination.
Summary:
It was a great friendly community.
But that didn't mean every day was great," the 46-year-old added.
Summary:
"This little one braved the Sunday crowds and came through the gates...just for a wave...!
Amitabh makes an appearance at his house's gate every Sunday to wave to fans waiting outside, as part of his 'Sunday darshan'.
Summary:
Reacting to this, a user commented, "Superman never dies."
Summary:
India's largest lender SBI has clarified that its Hong Kong branch didn't have any exposure to the companies of $2-billion PNB fraud accused jewellers Nirav Modi and Mehul Choksi.
Summary:
BuzzFeed Studios Head Matthew Henick has joined social media major Facebook to lead its global video content strategy and planning, Henick announced in a post.
Summary:
IBM has settled a lawsuit with its former employee Lindsay-Rae McIntyre, who was sued by the American technology giant one day after she was hired by Microsoft as Chief Diversity Officer.
Summary:
Google has sold its restaurant review service Zagat, which it had bought for a reported amount of $151 million, to the US-based restaurant discovery platform The Infatuation for an undisclosed amount.
Summary:
Technology giant Apple is working on noise-cancelling, over-ear headphones that it plans to launch at the end of 2018, according to reports.
Summary:
"The seized charas was sourced from Himachal Pradesh and was brought to Mumbai via Delhi via air.
The contraband seized was meant for distribution in Mumbai.
Summary:
While celebrating his 59th birthday, Madhya Pradesh Chief Minister Shivraj Singh Chouhan on Monday promised to bear the education cost of differently-abled children.
Summary:
BJP MP Shobha Karandlaje has alleged that the Karnataka government is framing the Hindu youth arrested over the murder of journalist Gauri Lankesh with an eye on the upcoming polls.
Summary:
China-based investment firm Primavera Capital Group and Singapore's Temasek Holdings are also expected to participate in this funding round.
Summary:
Earlier, Flipkart's Singapore entity invested about â¹4,472 crore in its wholesale arm 'Flipkart India Private Limited'.
Summary:
Congratulating SpaceX on the completion of 50 Falcon 9 launches, CEO Elon Musk tweeted, "Can't believe it's been fifty Falcon 9 launches already.
Summary:
A Sweden and Finland-based study has found diabetes should be categorised as five different diseases.
Summary:
The Supreme Court has refused to grant Karti Chidambaram interim protection from arrest by the Enforcement Directorate (ED) in the INX Media case.
Summary:
The CM is expected to tour the state and his bus will be manufactured keeping in mind the threats.
Summary:
A video has surfaced online which shows a Saudi woman beating a group of men with a stick after they allegedly harassed her, saying she was not dressed modestly as her head was uncovered.
Summary:
The helicopter will seat up to six people apart from the pilot and the service will cost â¹3,500 plus GST.
Summary:
IPS officer G Sampath, who reportedly exposed the 2013 IPL betting scam, was reinstated to service four years after being suspended for allegedly taking nearly â¹60 lakh-bribe from bookies.
Summary:
India's 16-year-old shooter Manu Bhaker won her second gold medal in as many days at the ISSF shooting World Cup on Monday.
Summary:
The CPM on Tuesday tweeted photos of violence in Tripura, accusing the BJP-IPFT leadership of "coordinating" attacks on the Left in the state.
Summary:
The statue was reportedly built during the 21st year of CPI(M)'s rule in Tripura five years ago.
Summary:
Elon Musk-led SpaceX on Tuesday successfully launched its Falcon 9 rocket for the 50th time, carrying Hispasat satellite, the largest geostationary satellite the company has ever flown.
Summary:
Glass Lewis says Musk would own 28.3% of the company if the CEO earned the full grant.
Summary:
The study is centred around developing a vaccine for schistosomiasis (snail fever), where a flatworm enters the body through the skin and can cause kidney failure, bladder cancer and infertility.
Summary:
While ruling out any more adjournments in a case filed in 2009, a Bombay High Court judge said, "No more tareek pe tareek.
Enough is enough." The court also imposed a â¹4.5-lakh fine on a charitable trust for failing to file an affidavit since 2016.
Summary:
A 42-year-old constable from Chhattisgarh's Bastar on Monday started a 6,000-km bicycle ride from Delhi's India Gate to spread the message of peace.
Summary:
Comparing the war in Iraq to throwing a "big fat brick into hornet's nest", US President Donald Trump reportedly called former President George W Bush's move to invade the Middle East nation the "worst decision ever".
Summary:
US President Donald Trump has tweeted that he would abandon his plan of imposing tariffs on steel and aluminium imports from Canada and Mexico if the North American Free Trade Agreement (NAFTA) between the three countries gets revised.
Summary:
Protests have erupted in New Zealand over the country's census, which is being held online for the first time, due to the absence of ethnic category PÃÂkehÃÂ and options for alternative genders in the form.
Summary:
The Big Cheese Festival in England has apologised after it ran out of cheese.
Summary:
Infosys has granted 1.13 lakh Restricted Stock Units (RSUs) worth â¹13 crore to its new CEO, Salil Parekh.
Summary:
He added it was a sequence of all the conversations he had with Boney Kapoor.
Summary:
Photo-sharing platform Instagram is reportedly working on its own 'Portrait Mode' camera feature for its users.
Summary:
"We watch how you drive from home to the movies.
We watch where you go afterwards," he said.
Summary:
The wreckage of US aircraft carrier Lexington, which was lost during the WWII, has been discovered in the Coral Sea by a search team led by Microsoft co-founder Paul Allen.
Summary:
Camera footage has captured the moment the roof of an airport in China partially collapsed due to extreme weather on Sunday.
Summary:
Israeli Prime Minister Benjamin Netanyahu on Monday said that Saudi Arabia had granted Air India permission to fly over Saudi territory on its new routes to and from Tel Aviv.
Summary:
Vijayvargiya also shared a video of the event, where he could be seen holding a guitar on the stage while songs were being played by the orchestra.
Summary:
Union Minister Anant Hegde has said polarising people for the right cause is real democracy, adding that he hoped the Karnataka Assembly elections will be polarised as the Hindus were fed up of Congress' appeasement policy.
Summary:
Uber is facing a $13.5 million lawsuit by a US state Attorney General for not disclosing the 2016 data breach within a "reasonable" time frame.
Summary:
Thousands of starfish along with lobsters and sea urchins washed ashore in one of the biggest mass strandings on record in the UK.
Summary:
This follows demands by UK MPs to bring up the issue citing details of alleged persecutions in Punjab and Kerala.
Summary:
Criticising the BJP-led Centre for allegedly ignoring the plight of farmers, social activist Anna Hazare said the government cares only about industrialists.
He said, "Government is paying attention to GST (Goods and Services Tax), demonetisation but not on the plight of farmers...It cares only about industrialists.
Summary:
A man named Terry Bryant, suspected of stealing Oscar 2018 Best Actress winner Frances McDormand's trophy has been arrested by the police.
Terry reportedly stole the trophy at the Governors Ball party held after the Oscars.
Summary:
He will be leading an alliance of the NPP, BJP, United Democratic Party (UDP), Hill State People's Democratic Party (HSPDP) and others.
Summary:
Veteran actress Shammi, born as Nargis Rabadi, passed away at the age of 89 due to prolonged illness.
Summary:
Android Co-founder Andy Rubin's startup Essential has been granted a patent for a 'pop-up' selfie camera for its smartphones.
Summary:
This comes after Uber agreed to pay Waymo $245 million to settle a lawsuit and not use self-driving technology allegedly stolen from the Google spinoff.
Summary:
The number of child marriages in India has nearly halved in a decade, which has contributed to a global decline in child marriage, UNICEF said on Tuesday.
Summary:
At least 26 people were killed while 12 others were injured in Gujarat's Bhavnagar on Tuesday after a truck they were travelling in skidded off the highway and fell into a drain.
Summary:
London's Metropolitan police Scotland Yard has appointed Neil Basu as the new head of its counter-terrorism operations.
Basu, who is known for his work in combating terror including the 2017 London attacks, is the first Indian-origin officer to be appointed to the role.
Summary:
Actress Sonam Kapoor took to Instagram to wish her cousin Janhvi Kapoor on the occasion of her 21st birthday today.
The Kapoor family is reportedly planning a birthday dinner to mark Janhvi's birthday.
Summary:
Filmmaker Abhinay Deo has said Irrfan Khan never showed any signs of illness during the shooting of the film 'Blackmail'.
Deo further said the release date of 'Blackmail', which is currently scheduled to release on April 6, will be postponed if needed.
Summary:
The incident occurred in South Africa's 12th over when Lyon dropped the ball on De Villiers as he laid on the ground after getting run-out.
Summary:
This comes days after Sachin Tendulkar was made the brand ambassador for the six-team league.
Summary:
The Wrestling Federation of India (WFI) has suspended seven wrestlers for one year after they were found guilty of flouting age limit and representing a different state, without obtaining a No Objection Certificate (NOC) from their parental states.
Summary:
A report published by British legislators has accused International Association of Athletics Federations (IAAF) President Sebastian Coe of misleading a parliamentary inquiry into Russian athletes involved in doping.
Summary:
Athletes from Russia, who participated in the recently concluded Winter Olympics as neutrals, secretly kept the national flag under a white scarf attached to their uniform jackets.
Summary:
The youth wing of the Indian National Congress party took to Twitter to wish 16-year-old shooter Manu Bhaker for her gold medal win at ISSF shooting World Cup, but instead used the image of another shooter Mehuli Ghosh.
Summary:
Passengers had claimed they felt a hard brake and were thrown forward when the flight landed on the shorter runway at the wrong airport.
Summary:
An antibody developed by US-based researchers has successfully suppressed an HIV-like virus in monkeys for six months.
Summary:
Thousands of people in J&K on Monday held protests across the state after the Army reportedly killed four civilians and two suspected militants.
Summary:
Seeking police action, the man said, "They accused me of having illicit relations with a girl but I don't even know her."
Summary:
Addressing Goa residents in a video message on Monday, Goa CM Manohar Parrikar said that he might go abroad for a few days for full recovery.
Summary:
The Home Affairs Ministry along with Doordarshan is planning to air TV shows in J&K that will promote ideas of secularism, peace, and patriotism.
Summary:
A San Francisco-bound Air India flight from New Delhi was diverted to Sapporo in Japan after a medical emergency onboard, the airline said on Monday.
Summary:
Union Railways Minister Piyush Goyal on Monday said he was looking to facilitate manufacturing units for cheap and bio-degradable sanitary napkins at 8,000 stations across India.
Summary:
Rajasthan Governor Kalyan Singh has been found positive for swine flu after he underwent the test thrice due to contradictory reports.
Summary:
Bengaluru-based agri-marketing startup Ninjacart has raised about $1.1 million (â¹7 crore) from venture debt firm Trifecta Capital, the company confirmed.
Summary:
He was co-winner of two Oscar awards in the Best Original Song category.
He won his first Oscar for the song 'The Last Time I Saw Paris' in 1942.
Summary:
In his first public address since announcing his entry into politics, actor Rajinikanth on Monday said he will fill the vacuum left in Tamil Nadu due to AIADMK leader Jayalalithaa's demise and ill-health of DMK leader Karunanidhi.
Summary:
Russia-based security firm Dr.Web has discovered a malware called Triada that is infecting low-cost Android phones even before they are turned on for the first time.
Summary:
Parliamentary proceedings were disrupted in Lok Sabha and Rajya Sabha on Monday as MPs protested over various issues including the $2-billion PNB scam and asked the government about Nirav Modi's whereabouts.
Summary:
Drawing references from Hindu epic Ramayana, Uttar Pradesh Minister Nand Gopal Gupta on Monday said Samajwadi Party patriarch Mulayam Singh Yadav is "Ravana of Kalyug" and Bahujan Samaj Party chief Mayawati is Ravana's sister Surpanakha.
Summary:
Defence Minister Nirmala Sitharaman on Monday said that China is building helipads and other military infrastructure including sentry posts and trenches in the disputed Doklam region to maintain troops in winters.
Summary:
On his 59th birthday on Monday, Madhya Pradesh CM Shivraj Singh Chouhan announced the state government will give â¹12,000 on the birth of a child in a poor family.
Summary:
J&K Police said Waqas was responsible for several attacks on security forces including an attack on the BSF at Srinagar airport.
Summary:
China, the world's largest military, has reduced its troop size to 20 lakh by decommissioning 3 lakh troops, Premier Li Keqiang announced on Monday.
Summary:
Conflict of interests between different parties tears the society apart, he further said.
Summary:
This comes after a North Korean delegation visited South Korea for the Winter Olympics.
Summary:
The RBI on Monday said it has imposed a penalty of â¹2 crore on Indian Overseas Bank after a "fraud was detected" at one of its branches.
Summary:
While speaking at an event, actor Aamir Khan said that he is totally indisciplined while adding, "ItâÂÂs hard to believe but this is a fact." He further said, "The only thing that takes me back to work is my passion for acting.
Summary:
Singer Mika Singh, while commenting on a picture of Ameesha Patel in a bikini, wrote, "Want to join you." Reacting to this, a user commented, "Mika bhai kitna peg andar kar chuke ho?" "She isn't Rakhi Sawant," wrote another user.
Summary:
Actor Prateik Babbar has revealed he almost died of an overdose of cocaine in 2015.
Prateik further said, "I'm glad that it's all over and I have to just move forward with a smile on my face."
Summary:
The present government and politicians are not doing their job, he said.
Summary:
While Best Actress nominee Margot Robbie attended the party wearing a Chanel gown, model Alesandra Ambrosio was spotted in an embellished gown at the event.
Summary:
Summary:
Midfielder Nemanja Matic scored a long-range goal in injury time to help Manchester United, who were 0-2 down at one stage, defeat Crystal Palace 3-2 in the Premier League on Monday.
Summary:
Team India head coach Ravi Shastri has said that captain Virat Kohli reminds him of former Pakistan captain Imran Khan.
Summary:
A report by a British parliamentary committee has revealed five-time Olympic winner cyclist Bradley Wiggins used performance-enhancing drugs under the guise of treating a medical problem during the Tour de France in 2012.
Summary:
According to NCA, the companies have become the "key enabler for the sexual exploitation of trafficked victims in the UK".
Summary:
Earlier, the party boycotted the winter session over the issue of defection.
Summary:
Citing BJP's coalition government in Manipur and Goa, Gandhi said the BJP is disregarding people's mandate.
Summary:
The Assam government has extended the Armed Forces Special Powers Act (AFSPA), 1958 by six more months in the state.
Summary:
Guatemala will open its Jerusalem embassy two days after the US opens it on May 14, Guatemalan President Jimmy Morales has said.
Summary:
German Chancellor Angela Merkel has rejected a plea demanding the country's national anthem 'Song of Germany' to be made gender-neutral.
Summary:
Actor Irrfan Khan has revealed he has contracted a rare disease while adding, "Sometimes you wake up with a jolt with life shaking you up.
Summary:
China has announced that it will spend $175 billion on defence this year, nearly four times as compared to India's $45-billion defence budget.
Summary:
The Enforcement Directorate (ED) has received details of jeweller Nirav Modi's accounts from a few foreign banks in connection with the $2-billion PNB fraud.
Summary:
Meanwhile, the Congress alleged the state government was working on the directions of the RSS.
Summary:
The UIDAI has directed telecom operators to provide a way by March 15 for subscribers to check if their SIM cards have been linked to their Aadhaar number.
Summary:
Goa Chief Minister Manohar Parrikar will travel to Mumbai on Monday for a medical checkup and based on doctor's advice may travel overseas for further treatment, officials have said.
Summary:
The J&K government has claimed that Major Aditya Kumar was not named in the FIR lodged by the police seeking investigation into the Shopian firing incident.
Summary:
He said all the issues were disclosed to BSNL privately and fixed during the weekend.
Summary:
The Taliban also said that it would ensure the project's security.
Summary:
The Russian President had earlier asked the US to provide evidence for the election meddling.
Summary:
The Confederation of All India Traders (CAIT) has said that celebrities should be held liable for endorsing misleading advertisements.
Summary:
Nirav is accused of causing the losses by understating the value and quantity of diamonds and pearls that were being imported.
Summary:
Cellular body COAI has argued that mere voicing of its concerns "does not form and cannot form a case of defamation" as alleged by Reliance Jio. The Mukesh Ambani-led telco had demanded a public apology from COAI for stating that telecom regulator TRAI favours Jio in tariff policies.
Summary:
"What does your wife feel about you staring at my tits?" she responded to the man's message on Instagram.
Summary:
Remembering late actress Sridevi, Kangana Ranaut said that when she used to dress up for cultural shows, her great grandmother would fondly call her Sridevi.
Summary:
Reacting to actress Jennifer Lawrence climbing over chairs in her dress while holding a wine glass at Oscars 2018, a user tweeted, "Jennifer deserves an Oscar for balancing her wine with grace." "Jennifer held her glass of wine more carefully than she held her Oscar," wrote another user.
Summary:
The actor who plays 'The Mountain' in Game of Thrones (GoT), Hafþór JúlÃÂus Björnsson, deadlifted 472 kg during the Arnold Strongman Classic competition to set the Elephant bar deadlift world record.
Summary:
Russian weightlifter Mikhail Shivlyakov bled from the nose due to strain while lifting 426 kg during the 2018 Arnold Sports Festival.
Summary:
Australian spinner Nathan Lyon will be sanctioned by the ICC for dropping the ball at South Africa's AB de Villiers after running him out in the first Test.
Summary:
The dogs, trained to fetch balls and return to the net post, currently live at an NGO called 'United Paws'.
Summary:
The opening ceremony of the upcoming Indian Premier League, which was scheduled to be held on April 6, has been moved to April 7.
Summary:
Talking about reports on the BSP-SP alliance for upcoming bypolls, Uttar Pradesh CM Yogi Adityanath said the situation was like a snake and mole standing together to face a storm.
Summary:
Illegal hoardings of actor Rajinikanth were put up in Tamil Nadu's Chennai despite a Madras High Court ban on hoardings and banners of living persons.
Summary:
The CM further said the BJP should worry about convincing voters how its state President and ex-CM BS Yeddyurappa, who was imprisoned over illegal land denotification, can provide a corruption-free government.
Summary:
Rajasthan Governor Kalyan Singh was wrongly diagnosed with swine flu when he went for a medical check-up at a government hospital.
Summary:
Despite the Centre's nod on Monday for a CBI probe into the alleged Staff Selection Commission (SSC) paper leak case, aspirants have refused to call off their protest.
Summary:
Iraq has ordered the seizure of assets belonging to former dictator Saddam Hussein and over 4,200 officials from his regime.
Summary:
A gift bag worth â¹65 lakh ($100,000) was given to nominees at Oscars 2018.
Summary:
India's richest person and Reliance Industries Chairman Mukesh Ambani's son Akash Ambani will reportedly get married to diamond heiress Shloka Mehta this year.
Summary:
Singer Andra Day posed while lying down on Oscars red carpet floor and Taraji Henson was seen with her hand under her gown.
Summary:
Actress Sunny Leone, while confirming that her twins boys were born via surrogacy, said, "God sent us an angel surrogate to carry our boys until they were born." "We are beyond proud of our family and are so excited.
Summary:
Rishi Kapoor thanked the Oscars for remembering Shashi Kapoor and Sridevi in their 'In Memoriam' section.
Summary:
Summary:
Priyanka Chopra revealed on Instagram that she skipped the Oscar ceremony this year due to ill health.
"I wish all my friends nominated tonight the very best!
Summary:
Sanjay Bairagi, the 40-year-old supervising producer of TV show 'Ishqbaaaz', committed suicide on Friday by jumping off the 16th floor of a building in Mumbai, as per the police.
Summary:
However, the BJP has a pre-poll alliance with Nationalist Democratic Progressive Party, which won 16 seats.
Summary:
Rajasthan's Jhunjhunu district, which had the lowest sex ratio at birth (SRB) in the state in 2011, has become the district with the highest SRB in the state.
Summary:
The megacity has been conceived as spanning across Saudi Arabia, Egypt and Jordan.
Summary:
A fake cryptocurrency firm, Miroskii, has listed Hollywood actor Ryan Gosling among their team members as an "experienced graphic designer" under the name Kevin Belanger.
Summary:
Television celebrities Rochelle Rao and Keith Sequeira, who were seen together on reality TV show 'Bigg Boss 9', got married on March 3.
Summary:
The first look of actress Shraddha Kapoor from the Prabhas starrer 'Saaho' has been revealed on social media.
Summary:
Arjun Kapoor's sister Anshula Kapoor, while defending their half-sisters Janhvi and Khushi against trolls, commented on one of her posts, "I'm requesting you to refrain from using abusive language especially towards my sisters." "I do not appreciate it and have therefore deleted your comments," she further replied to the troll.
Summary:
Australia defeated South Africa by 118 runs at Durban on Monday to take a 1-0 lead in the four-match Test series.
Summary:
A 20-year-old Bangladeshi passenger was arrested after he allegedly stripped naked during a flight from Kuala Lumpur and began watching porn on his laptop.
Summary:
Two coaches of Mumbai's first AC local train have been painted green to indicate that they are reserved for women.
Summary:
The Indian Railways has decided to cut the tariff on luxury trains like the Palace on Wheels and Royal Orient by almost 50%, according to reports.
Summary:
After the current Nagaland Chief Minister TR Zeliang refused to resign from his position, Nagaland Governor PB Acharya has given him a 48-hour deadline to prove his majority on the floor of the House.
Summary:
Following Congress' performance in the recent Assembly polls in the northeast, party President Rahul Gandhi said that the Congress was committed to winning back the trust of the people.
Summary:
After the CPI (M) lost the Tripura Assembly elections for the first time in 25 years, Congress leader Jairam Ramesh said the demise of the Left will be a disaster for India.
Summary:
As many as 214 rescued children were admitted to schools and 260 were counseled, Commission Chairman Sukesh Kalia said.
Summary:
Summary:
Railway Board Chairman Ashwani Lohani has said there will be changes in the present flexi-fare system in premium trains benefiting both passengers and Railways.
Summary:
As many as 75%, or 45 out of 60, newly-elected MLAs in Nagaland are crorepatis, according to an Association for Democratic Reforms (ADR) report.
Summary:
A 4.4-foot-long marsh crocodile was rescued from a drain near a construction site in Mumbai on Sunday.
Summary:
The government has accepted the demands of students protesting against the alleged SSC exam paper leak scam and ordered a CBI inquiry into it, Union Home Minister Rajnath Singh said on Monday.
Summary:
The Income Tax Department has found that 447 companies deducted a total sum of â¹3,200 crore from their employees as Tax Deducted at Source (TDS), but did not deposit that with the government.
Summary:
'Wonder Woman' actress Gal Gadot, in a Givenchy gown, was one of the celebrities who attended the 2018 Oscars.
Summary:
Reacting to former NBA champion Kobe Bryant winning an Oscar for his animated short film 'Dear Basketball', a user tweeted, "Accused rapist Kobe Bryant just won an Oscar.
Other users reacted with tweets like, "Time's up but not for Kobe!" and "Kobe Bryant now has more Oscars than Kubrick and Hitchcock."
Summary:
British cinematographer Roger Deakins has won an Oscar in the Best Cinematography category for the film 'Blade Runner 2049' at the 90th Academy Awards after being nominated 13 times previously.
Summary:
The CBI has arrested an auditor and two employees of the Nirav Modi Group and a director of Mehul Choksi-owned Gitanjali Group in connection with the $2-billion PNB scam.
Summary:
The phone is 4G LTE, and about the size of a credit card.
Summary:
A restaurant in Peru is located 11,706 feet above sea level, near the Inca ruins of Moray.
Summary:
United Airlines is replacing its quarterly performance bonuses for employees with a new lottery bonus program.
Summary:
A village in Kerala held a global Grama Sabha, a meeting to decide the developmental activities in the locality, last month through Skype so that non-resident Keralites could participate in it.
Summary:
Talking about the Ayodhya issue, Art of Living founder Sri Sri Ravi Shankar on Monday said that India shouldn't become like Syria because of the conflict or the country would be in ruins.
Summary:
The Indian embassy in the US has issued a warning about fraudsters spoofing its telephone lines to cheat people for money.
Summary:
Summary:
Information and Broadcasting Minister Smriti Irani has said that Bollywood filmmakers "manufacture" controversies ahead of a film's release in order to gain box office success.
The actor-turned-politician further said that the film industry was not in a pitiable state.
Summary:
Actress Rita Moreno wore the same gown she wore to the 1962 Oscars at the Oscars 2018.
Summary:
India's 16-year-old shooter Manu Bhaker won a gold medal in the women's 10m Air Pistol event while making her international debut at the ISSF World Cup on Sunday.
Summary:
'Dear Basketball' is based on Bryant's retirement poem which he wrote in 2015.
Summary:
Summary:
Telugu Desam Party (TDP) MP Dr Naramalli Sivaprasad on Monday dressed up as Lord Krishna as part of the party's protest against the Centre and demand for special status for Andhra Pradesh.
Summary:
The Mumbai Police has decided to screen four short films on cybercrime in cinema halls across the city to spread awareness among people.
Summary:
The dead body of an 80-year-old man was carried down a hill by his son and police officials in Karnataka after the locals refused to help.
Summary:
An AIIMS Patna student has been rusticated after he entered a girlsâ hostel in drunken and semi-naked state.
Summary:
A special court has granted bail to RJD chief Lalu Yadav's daughter Misa Bharti and her husband Shailesh Kumar in a money laundering case.
Summary:
The man was reportedly waiting for a bus to reach his home when he was chased and stabbed multiple times.
Summary:
World rapid chess champion Viswanathan Anand lifted the Tal Memorial rapid chess title after registering a final round draw against Boris Gelfand of Israel on Sunday.
Summary:
Founded in 2013, the startup offers digitised medical records on the cloud for both patients and doctors.
Summary:
Mumbai-based health-tech startup Wellthy Therapeutics has raised â¹13.5 crore in a seed round led by Ranjan Pai's family office Manipal Education & Medical Group (MEMG).
Summary:
Sunny Leone took to Instagram to announce the birth of her twin boys named Asher Singh Weber and Noah Singh Weber.
Summary:
Gary Oldman was named Best Actor while Frances McDormand won Best Actress award.
'Icarus' won the Oscar for Best Documentary and 'The Silent Child' was named Best Short Film (Live Action).
Summary:
Chivas Alchemy unfolds a canvas of creations inspired by 85 flavour notes, to take the senses by storm.
Summary:
Mark Bridges gave a speech for 36 seconds after winning an Oscar for Best Costume Design, which was the shortest speech at the 90th Academy Awards.
Summary:
Late actress Sridevi was among those mentioned in the 'In Memoriam' section at Oscars 2018 as a tribute to personalities in the film industry who passed away.
Summary:
Soviet dictator Stalin started his career as a weatherman at the Tiflis Meteorological Observatory at the age of 21.
Summary:
The first look posters of Kangana Ranaut and Rajkummar Rao from their upcoming film 'Mental Hai Kya' have been revealed.
Summary:
Gary Oldman mentioned his 98-year-old mother in his acceptance speech while receiving Best Actor Oscar award.
I'm bringing Oscar home." This was the first time that Oldman won an Oscar.
Summary:
Frances McDormand, Best Actress winner at Oscars 2018 in her acceptance speech said, "If I may be so honoured as to have every female nominated stand with me.
Meryl (Streep), if you do it everyone else will." Frances added, "Look around you...
Summary:
Basketball legend and five-time NBA champion Kobe Bryant has won an Oscar for his animated short film 'Dear Basketball'.
Summary:
The Oscar trophies are plated with the same gold as NASA's $8.9-billion James Webb Space Telescope, according to the space agency.
Summary:
Ahead of the announcement of Assembly poll dates, Karnataka CM Siddaramaiah on Sunday inaugurated the less-than-a-kilometre-long Hennur flyover, the construction of which is not complete yet.
Summary:
The BJP and its ally Indigenous People's Front of Tripura (IPFT) won from six out of the seven constituencies where Uttar Pradesh CM Yogi Adityanath campaigned for the Tripura Assembly elections.
Summary:
Uber's CEO Dara Khosrowshahi has slammed a new MIT study which claimed that Uber and Lyft drivers make just $3.37 per hour.
Summary:
Dinesh Shivnath Upadhyaya has received 108 record acknowledgments from the Guinness team for attempting various acts, including weight-lifting and stacking dice in towers.
Summary:
While co-presenting an award at 90th Academy Awards, Pakistan-origin actor Kumail Nanjiani said, "I am from Pakistan and Iowa, two places that nobody from Hollywood can find on the map." He added, "Actually, I have to complain...Kumail Nanjiani is my stage name.
Summary:
City are now just four wins away from securing their third PL title.
Notably, Chelsea have lost four consecutive away matches in all competitions for the first time since January 2003.
Summary:
Lionel Messi's 600th career goal that came as a 26th-minute free-kick helped league leaders Barcelona beat second-placed Atlético Madrid 1-0 on Sunday.
Summary:
Cricket Australia has said it will look into the verbal spat that took place between Australian vice-captain David Warner and South African wicketkeeper Quinton de Kock during the first Test in Kingsmead on Sunday.
Summary:
Ex-Australia captain Ian Chappell has said the Committee of Administrators (CoA) running the BCCI, cricket's "most powerful administration", is a black mark on cricket.
Summary:
A pet cat brought by an Indian couple from Saudi Arabia's Jeddah was seized at the Kochi airport as it was not a recognised route for importing pets, a Customs official said on Sunday.
Summary:
BJP's ally in Tripura, Indigenous People's Front of Tripura (IPFT), has demanded a separate state for the tribals residing in the state.
Summary:
After the NPP-UDP-BJP alliance staked claim to form the Meghalaya government with 34 MLAs, state Congress President Vincent Pala on Sunday said that the mandate was actually given to the Congress.
Summary:
A pair of letters sent by psychoanalysis founder Sigmund Freud in 1923 to his ailing former student and her husband is expected to fetch $14,000 (â¹9 lakh) at a US auction.
Summary:
Air India is looking at raising â¹500 crore by selling land and real estate in 2018-19, and is likely to sell some of its prime properties across India, senior officials have said.
Summary:
The man reportedly got angry and accused the neighbour of cheatingnwhen he began losing the game.
Summary:
Under the HELIOS (High Energy Laser and Integrated Optical-dazzler with Surveillance) programme, two giant lasers will be built to counter unmanned reconnaissance aircraft by blinding their cameras.
Summary:
The ceremony honoured films released from August 1, 1927 till July 31, 1928.
The award ceremony, which was attended by only 270 guests, was not broadcast on any platform.
Summary:
Meanwhile, Daniela Vega is said to be the first openly transgender award presenter at the event.
Summary:
'The Shape Of Water' has won the Oscar for 'Best Picture' at the 90th Academy Awards.
Meanwhile, 'A Fantastic Woman' won Best Foreign Language Film at the award show.
Summary:
Gary Oldman was named Best Actor in a Leading Role for 'Darkest Hour' while Frances McDormand won Best Actress Oscar for 'Three Billboards Outside Ebbing, Missouri' at the 90th Academy Awards.
Summary:
James Ivory became the oldest person to win an Oscar with his award win for best adapted screenplay for the film 'Call Me By Your Name' at the 90th Academy Awards.
Summary:
The paintings used to make the film, which has 65,000 frames, are in the distinct style of painter Vincent Van Gogh.
Summary:
Oscars 2018 host Jimmy Kimmel, while talking about the Oscar statue, said, "Just look at him (Oscar statue).
Summary:
At Oscars 1974, photographer Robert Opel ran naked across the stage while the host David Niven was presenting.
Summary:
'Call Me By Your Name', which revolves around the romantic relationship between a 17-year-old and his father's assistant, is among the nominees for Best Picture at Oscars 2018.
Summary:
Barcelona forward Lionel Messi scored his 600th professional goal against Atletico Madrid in the La Liga on Sunday, reaching the landmark in 108 fewer matches than rival Cristiano Ronaldo.
Summary:
Air India operated a Kolkata-Dimapur-Kolkata flight on Sunday with an all-woman crew as part of its celebration of International Women's Day, which is on March 8.
Summary:
Meanwhile, the Congress remains the largest party with 21 MLAs and also staked claim to form a government.
Summary:
Congress leader PL Punia has called BJP's proposed alliance with National People's Party (NPP) and others in Meghalaya "lethal for democracy".
Summary:
After The Wire reported that I&B Minister Smriti Irani blocked salary funds to Prasar Bharati, the public broadcaster's CEO Shashi Shekhar tweeted that â¹208 crore in staff salary was paid on February 28.
Summary:
Pakistan has lost 50% market share in Afghanistan in the last two years while India and China's shares have been rising, the Pakistan-Afghanistan Joint Chamber of Commerce and Industry (PAJCCI) said.
Summary:
Filmmaker Aanand L Rai, while praising actor Shah Rukh Khan, said, "He makes me feel so comfortable and makes you feel like he is the most obedient actor you have ever worked with." "I've found a friend, a big brother in him," he added.
Summary:
Shubhankar revealed he saw Mickelson on the practice green before Saturday's third round and approached him with his caddie.
Summary:
British long-distance runner and four-time Olympic champion Mo Farah won the inaugural Big Half marathon by just 3 seconds in London on Sunday.
Summary:
Ivorian sprinter Murielle Ahoure celebrated with an Irish flag after failing to find her nation's flag following her gold medal in the 60m race at the world indoor championships in Birmingham on Friday.
Summary:
Nottinghamshire medium-pacer James Iremonger bowled an unbroken spell of 66 overs against Hampshire in 1914, which is the longest continuous spell in a first-class cricket match.
Summary:
A house worth ã800,000 (â¹7 crore) in the Isle of Man, which is located in the Irish Sea, is being sold in a lottery with each ticket costing ã20 (â¹1,800).
Summary:
Nagaland Governor PB Acharya on Sunday said Nationalist Democratic Progressive Party (NDPP) leader Neiphiu Rio should form the government as he has the required majority.
Summary:
After the BJP won the Tripura Assembly elections and ended 25 years of CPI(M) rule, the Left party has accused it of using "massive" amount of money and other resources to influence the elections.
Summary:
Addressing a gathering in poll-bound Karnataka via video-conferencing, PM Modi said radicalisation can only be tackled with integration.
Summary:
According to government records, 431 leopards died in 2017, of which nearly 160 were poaching cases.
Summary:
Enforcement Directorate (ED) officials claimed to have found details of former Finance Minister P Chidambaram's son Karti Chidambaram transferring â¹1.8 crore into the bank account of an influential political figure.
Summary:
The UK may punish death by dangerous cycling with a maximum sentence of up to 14 years in prison, reports said.
Summary:
The protests began after screenshots of the question paper were circulated online, leading to the cancellation of the exams.
Summary:
Costume designer Bhanu Athaiya became the first Indian to get an Oscar when she received the Best Costume Design award at the 55th Annual Academy Awards in 1983.
Summary:
Tatum Beatrice O'Neal became the youngest person to win an Oscar at the age of 10 in 1974.
Summary:
The National Company Law Tribunal has passed an order barring 64 entities from selling their assets amid the ongoing probe into the alleged $2-billion PNB fraud.
Summary:
USA athlete Christian Coleman ran 60 meters in 6.37 seconds, missing his own world record by 0.03 seconds, to claim a gold medal in the 60m race at the World Indoor Athletics Championships on Saturday.
Summary:
As per his blog, Apple sold 2.05 billion devices by 2017 end, of which 750 million were retired.
Summary:
The United Democratic Party (UDP) will extend support to the National People's Party (NPP) to form a non-Congress government, UDP working President Paul Lyngdoh has said.
Summary:
Germany's Angela Merkel on Sunday secured her fourth term as the Chancellor after the Social Democratic party voted in favour of a grand coalition with Merkel's Christian Democratic Union.
Summary:
Iran has said it will not negotiate over its missile programme until the US and European countries dismantle their nuclear weapons.
Summary:
Krishna Kumari has become Pakistan's first Hindu Dalit woman Senator after she was elected to the Upper House on Saturday.
Summary:
China on Sunday defended the Communist Party's proposal to remove the presidential term limit, saying the move would protect the authority of the ruling Communist Party with President Xi Jinping at the centre.
Summary:
Oliver Wiggins claimed that his wrongful charge was a cover-up after a police officer crashed into his car in Brooklyn.
Summary:
Russians were paid nearly â¹600 to attend President Vladimir Putin's rally held as part of his election campaign, reports said.
Summary:
Salman Khan will reportedly replace Akshay Kumar for the role of T-Series founder Gulshan Kumar in his biopic 'Mogul'.
Summary:
"Till today they maintain that and watch our films," he added.
Devgn further said, "The new generation who is watching films...(has) become very sensible, smart and intelligent.
Summary:
Summary:
The teaser of Rajinikanth starrer '2.0' which featured Akshay Kumar as a villian was leaked online on Sunday.
Summary:
Manoj Bajpayee said that even after doing cult films like Satya, Shool and Kaun, film offers were drying out for the actor as filmmakers did not know what to do with him.
Summary:
New South Wales pacer Sean Abbott bowled a bouncer that hit the helmet of Victoria's batsman Will Pucovski during an Australian domestic match on Sunday.
Summary:
PM Narendra Modi on Saturday said the Congress does not consider Punjab CM Captain Amarinder Singh as its own, adding that he is an "independent solider".
Summary:
The Bahujan Samaj Party (BSP) has decided to extend its support to the Samajwadi Party (SP) for the upcoming Phulpur and Gorakhpur bypolls in Uttar Pradesh.
Summary:
After National Conference chief Farooq Abdullah said Muhammad Ali Jinnah did not want a separate country for Muslims, Union Minister Jitendra Singh said the former J&K CM needs to reread history.
Summary:
The Ministry of Road Transport and Highways has written to concerned authorities to get the vehicles of the President, the Vice President, governors, and lieutenant governors registered, it told the Delhi High Court.
Summary:
The officials arrested the snatcher and two others in connection with the case.
Summary:
An Indian Forest Service officer was trampled to death by an elephant in a forest range in Karnataka on World Wildlife Day on Saturday.
Summary:
Indian agencies have sought details of financial transactions related to the case from their counterparts in countries including Mauritius and Hong Kong.
Summary:
Notably, SBI had the highest amount of wilful defaults amounting to â¹27,716 crore till December 2017, according to CIBIL data.
Summary:
China is expected to amend the Constitution in favour of the proposal as the Parliament season begins on Monday.
Summary:
Economists have said the extreme weather in the UK last week cost its economy at least ã1 billion a day and could halve GDP growth this quarter.
Summary:
Late actress Sridevi's ashes have been immersed in the pilgrimage town of Rameswaram, Tamil Nadu by her husband Boney Kapoor and daughters Janhvi and Khushi.
Summary:
Researchers at Purdue University and the University of Iowa have outlined bugs in 4G LTE protocols which could track a user's location, spy on messages and even send fake emergency alerts.
Summary:
A Dubai hotel is offering people a free one-night stay in what it claims is the "world's first social media suite." The suite has a digital mirror, social media-themed furniture and amenities and a butler who is available through Facebook Messenger.
Summary:
Summary:
The Congress witnessed a 40% decrease in its strength of MLAs, from 242 in 2013 to 151 in 2018.
Summary:
Yusuf Ruzimuradov was sentenced to 15 years in prison in 1999 after being convicted of sedition for running a banned newspaper.
Summary:
Two police officers in Ireland engaged in a snowball fight with two men they were chasing.
Summary:
A man from Ireland has shared a video wherein he delivers bread to his snowed-in neighbours via a drone, as a current wave of cold weather spreads across Europe.
Summary:
More than $530-million worth NEM tokens were stolen from Coincheck in January.
Summary:
"A second pair of underwear [was sewn] to the first so you couldn't see through it," Neil later revealed.
Summary:
Formula One has hired Brian Tyler, the Emmy-nominated American composer of several Fast and Furious movies, to write a new theme tune for the organisation.
Summary:
The film will also star Shah Rukh Khan and Anushka Sharma in lead roles.
Shah Rukh will be seen playing the role of a dwarf in the film.
Summary:
Speaking about Hollywood producer Harvey Weinstein, Pamela Anderson said that he threatened her career when she refused to do his 2008 'Superhero Movie'.
Summary:
Producer Prernaa Arora, while speaking about Pakistan Censor Board banning Anushka Sharma's 'Pari' saying it goes against Islamic values, questioned, "Can Pakistan define anti-Islamic?" "Evil, which the film portrays, has no religion," she added.
Summary:
American football player Shaquem Griffin, who had his left hand amputated when he was four years old, put up 20 repetitions of 102-kg bench press using a prosthetic strapped to his left arm.
Summary:
British athlete Sir Roger Bannister, the first person to run a mile in under four minutes, died at the age of 88 on Saturday.
Summary:
Fiorentina captain and Italy international Davide Astori passed away at the age of 31 during his sleep on Sunday, his club has confirmed.
Summary:
Notably, De Villiers has registered three second-ball ducks in his career.
Summary:
The Test Kitchen restaurant in drought-hit Cape Town will be transformed into the Drought Kitchen for nearly two months, starting April 1.
Summary:
Praising the BJP's performance in the recent Assembly elections in three northeastern states, Prime Minister Narendra Modi on Sunday said radicalisation can only be answered by integration.
Summary:
A website called 'Indo-Pak Conflict Monitor' has been launched as a research initiative to monitor ceasefire violations, conflict patterns, and escalation dynamics between India and Pakistan.
Summary:
Nepal was making a record attempt for 'Most People Reading Aloud Simultaneously - Single Location'.
Summary:
A 25-year-old man was detained by the police on the intervening night of Friday and Saturday for allegedly stealing women's clothes, including undergarments, from a residential society in Noida.
Summary:
The police also seized a car and added that a Noida-based resident had allegedly given the old notes.
Summary:
Jeweller Nirav Modi has claimed that a female employee of his firm was illegally arrested by the CBI.
Summary:
Canadian authorities are trying to locate a private luxury plane that was bought by an Indian-origin family in South Africa with the help of a $41 million loan from a Canadian state-owned bank.
Summary:
US resident Kenny Bachman accidentally took a 482-km Uber ride from West Virginia University to his home in New Jersey, instead of a destination near the university campus, which cost him over â¹1 lakh ($1,635).
Summary:
As many as 13 people in Chennai allegedly misused â¹3.3-crore worth car loans from State Bank of India to produce a Tamil movie.
Summary:
Four-time Tripura Chief Minister Manik Sarkar on Sunday submitted his resignation to the Governor after BJP's win in the state Assembly elections.
Summary:
The BJP and its ally the Nationalist Democratic Progressive Party (NDPP) on Sunday met Nagaland Governor PB Acharya to stake claim to form the state government.
Summary:
Several Class 12 girl students have alleged that they were strip-searched by staffers while appearing for the Higher Secondary Certificate (HSC) examination at a school in Pune.
Summary:
The US Department of Homeland Security has delayed its decision on revoking the employment authorisation for spouses of H-1B visa holders.
Summary:
Ali Fazal, in a picture with his girlfriend Richa Chadha shared from the pre-Oscars party, wrote, "Stared back at Drake because woh Richa ko taak raha thha...toh maine bhi ghoora." "Jack Dawson aka [Leonardo DiCaprio] seems to have photobombed this selfie," read a part of his caption.
Summary:
More later revealed that he intentionally needled Miandad to get under his skin and it worked for the Indian team.
Summary:
The feature is specifically for "stories" called Reels using the platform's new video format on the YouTube app.
Summary:
Technology giant Apple is planning to launch a cheaper variant of its 13-inch MacBook Air in the second quarter of 2018, according to a report from KGI Securities analyst Ming-Chi Kuo. The move is expected to help the company push the MacBook shipments up by 10-15% this year.
Summary:
However, the website, created by Krzysztof ZajÃÂ
c, warns users not to use real or important passwords.
Summary:
The funding has privately valued the company at $115 million, according to software company PitchBook.
Summary:
A 200-year-old hidden cellar has been converted into a bar in the Austrian capital city of Vienna.
Summary:
A Mexico-bound flight from Manchester was forced to divert to Gatwick Airport in England after a cockpit window shattered mid-air amid stormy conditions.
Summary:
People in Netherlands' capital city Amsterdam are sharing images and videos of themselves ice skating on frozen canals, as a current wave of cold weather sweeps across Europe.
Summary:
"No one would have believed if I said it a few days ago that BJP will form government in Tripura," he added.
Summary:
Speaking about BJP's performance in recent state Assembly elections, Uttar Pradesh CM Yogi Adityanath said the "lotus will now bloom" in Karnataka, Kerala, West Bengal and Odisha.
Summary:
A BJP leader in Uttar Pradesh's Muzaffarnagar died of cardiac arrest while preparing to celebrate the party's performance in Tripura, Nagaland, and Meghalaya Assembly elections on Saturday.
Summary:
Indian eyewear startup Lenskart is estimated to touch a valuation of â¹3,000 crore after a secondary share sale by its investors, reportedly worth â¹400 crore.
Summary:
A video showing an official forcibly removing a blind man from a lift at Vidhana Soudha in Karnataka's Bengaluru has surfaced online.
Summary:
A constable shot himself in the neck while he was on duty guarding former Tamil Nadu Chief Minister J Jayalalithaa's memorial in Chennai on Sunday, according to reports.
Summary:
A groom and his five family members have been booked for allegedly cancelling the wedding after the bride's family failed to meet their dowry demands in Noida.
Summary:
As many as 175 students have fallen ill after they allegedly consumed food served in their school on Holi in Chhattisgarh.
Summary:
The woman's daughter found her brother unconscious at their house and informed a neighbour.
Summary:
Urging the protestors to "walk on the path of non-violence", Hazare asked them to wait for the government to take action.
Summary:
Model-actress Pamela Anderson has revealed she was molested by her babysitter for a year when she was aged between four and eight.
Summary:
The CBI on Saturday said billionaire jeweller Nirav Modi, who is involved in the â¹12,600-crore fraud, bribed at least one Punjab National Bank official with gold and jewellery.
Summary:
A tea seller in Pune earns as much as â¹12 lakh monthly as his tea house has become famous in the city.
The tea house has got three stalls in the city and the owner wishes to make it an international brand.
Summary:
The White House on Saturday was placed on a lockdown after a man shot himself in the North Lawn of the President's residence.
Summary:
'Mother India' won several awards in India, including the Filmfare Award for Best Film.
Summary:
Summary:
He is also the second most searched celebrity, after Kim Kardashian.
Summary:
Mehuli Ghosh added another medal to India's tally as she shot world junior record score to win bronze in the women's 10m air rifle event.
Summary:
For the first time in the nation's history, Saudi Arabia's women participated in an all-female marathon.
Summary:
Afghanistan spinner Rashid Khan became the youngest cricketer at 19 years, 165 days to captain a national side after leading the team as interim captain against Scotland on Sunday.
Summary:
Talking about artificial intelligence (AI), ex-Google CEO Eric Schmidt at a recent event said, "It makes you smarter...
Summary:
E-commerce giant Flipkart has invested about â¹4,472 crore in its wholesale arm 'Flipkart India Private Limited', making it the single-largest investment in its units, in the past few years.
Summary:
The Haryana khap panchayats have filed an affidavit in the Supreme Court, protesting against them being portrayed as 'Talibani' by some NGOs. The khaps never passed any judgement or order for honour killing and instead encouraged inter-caste and inter-faith marriages, the affidavit read.
Summary:
Robin Uthappa was named the team's vice captain.
Summary:
Indian cricketer Shardul Thakur has revealed college kids "googled" his picture to be sure it was him while he was travelling on a local train in Mumbai after getting off the flight from South Africa.
Summary:
Australian cricketers indulged in ambush marketing in the ongoing Test against South Africa after their request for stump microphones to be muted was denied.
Summary:
Portugal captain Cristiano Ronaldo scored his 300th and 301st La Liga goals in Real Madrid's 3-1 win over Getafe in the La Liga on Saturday.
With the win, Real Madrid are now provisionally 12 points behind La Liga leaders Barcelona.
Summary:
Photo-sharing app Instagram is reportedly working on a feature which allows users to voice or video call other users using the platform.
Summary:
A woman on the Paris Metro was fined â¬60 (â¹4,800) for walking the wrong way, sparking outrage on social media.
Summary:
Severe turbulence caused almost everyone on a recent US flight to vomit, according to an official report filed by a pilot.
Pilots were on the verge of throwing up," the report said.
Summary:
After emerging as the single largest party, Congress leaders met Meghalaya Governor Ganga Prasad, requesting him to invite the Congress to form the government.
We are confident of forming the new government," Congress leader Kamal Nath said.
Summary:
This comes after Congress alleged the deal negotiated under its rule was cheaper.
Summary:
Asserting that Muhammad Ali Jinnah did not want a separate country for Muslims, former Jammu and Kashmir Chief Minister Farooq Abdullah on Saturday said that the partition happened due to Indian leaders.
Summary:
Toyota has announced that it will launch a $2.8 billion self-driving car company named Toyota Research Institute-Advanced Development (TRI-AD) along with automotive suppliers Aisin Seiki and Denso.
Summary:
The couple had celebrated the Holi festival before their family recovered the bodies.
Summary:
The accused was caught by people while trying to flee.
Summary:
Instagram has suspended the account of an Italian model who offered oral sex to voters if they voted 'no' in a referendum on constitutional reforms.
Summary:
Recounting the day actor Sridevi passed away, her husband Boney Kapoor said he found her motionless in the hotel tub just before they were supposed to leave for dinner.
Summary:
The BJP is likely to form the Nagaland government after the party and its ally Nationalist Democratic Progressive Party won 28 seats in the 60-member Assembly on Saturday.
Summary:
The BJP on Saturday defeated the CPI(M) in Tripura to form the state government for the first-ever time after winning 35 seats.
Summary:
Summary:
The cities will have patrolled public spaces and quicker response systems to curb crimes against women.
Summary:
Spies belonging to the UK's MI5 intelligence agency are allowed to carry out criminal activities in the country, UK PM Theresa May was forced to admit.
Summary:
Meryl Streep is among the nominees for the Best Actress in a Leading Role category at Oscars 2018 for the film 'The Post'.
Summary:
Shetty was arrested for helping jeweller Nirav Modi conduct fraudulent transactions of over â¹11,400 crore.
Summary:
Talking about Suresh Raina, who recently made his Team India comeback, coach Ravi Shastri said he batted against South Africa like he was never out of the side.
Raina made 89 runs in the T20I series against South Africa.
Summary:
Overall, Smith is the 13th Australian to reach 10,000 international runs.
Summary:
BJP's victory in various states has boosted the party's confidence for the 2019 General Elections, he added.
Summary:
After the BJP defeated the CPI(M) to win the Tripura elections on Saturday, PM Narendra Modi said, "Yesterday, the country celebrated Holi with all colours.
Summary:
The Russian agency and China National Space Administration will look into possibilities of providing assistance to each other's lunar programmes.
Summary:
Congress leader Mukul Wasnik was photographed carrying a paper that contained seat tallies of the Meghalaya Assembly election.
Summary:
Out of the total, over 1,900 cases of drunken driving were registered by the police.
Summary:
The UNICEF had launched a similar scheme in 2014 in Nigeria aimed at increasing the rate of literacy among girls.
Summary:
Russian President Vladimir Putin has asked the US to provide evidence of Russia's meddling in the country's 2016 presidential elections.
Summary:
While talking about his upcoming film 'Manmarziyan', Abhishek Bachchan tweeted, "It's been just over 2 yrs since I faced a film camera...A new journey, a new film begins today." Directed by Anurag Kashyap, the film will also star Taapsee Pannu and Vicky Kaushal.
Summary:
Talking about what she likes the most about herself, Twinkle Khanna said, "I look after my brain...Eventually, I will come to a point where looks will begin to fade." "I'd have to rely on my brain until I get Alzheimer's and then I'd have nothing to rely on," she added.
Summary:
Spain's 16-time Grand Slam champion and former world number one Rafael Nadal's uncle and former long-time coach Toni Nadal claims that Switzerland's Roger Federer is better than his nephew and is the world's best player.
Summary:
Pakistan-born South African cricketer Imran Tahir on Saturday became the first spinner to take a hat-trick in the Pakistan Super League.
Summary:
The cricketers thwarted the bookies' attempts by reporting the matter to PCB's Anti-Corruption Unit (ACU).
Summary:
This comes after Congress President Rahul Gandhi tweeted that he will visit his maternal grandmother in Italy during the Holi weekend.
Summary:
Reports suggested that Hardik intended to tag West Bengal CM Mamata Banerjee and mistakenly tagged the actress.
Summary:
At least five people were injured after an elevator crashed to the ground from the second floor of the All India Institute Of Medical Sciences' building in Delhi on Saturday.
Summary:
A French researcher has revealed security lapse in the Telangana government's benefit disbursement portal through which the Aadhaar details of lakhs of government beneficiaries can be accessed.
Summary:
The Serious Fraud Investigation Office (SFIO) has sought information and documents from Fortis Healthcare as it looks into Fortis' alleged regulatory lapses over fund transfers to some promoter-linked firms.
Summary:
The CPI(M) has conceded defeat in Tripura after the BJP and its ally IPFT won 26 seats and were leading in 17 other constituencies in the 60-member Assembly.
Summary:
Meghalaya faces a hung state Assembly after no party won the required 31 seats to form the government in the 60-member Assembly on Saturday.
Summary:
Surprisingly, within minutes of my reply, authority revoked my passport," he added.
Summary:
Summary:
The other nominees include Daniel Kaluuya for 'Get Out' and Gary Oldman for 'Darkest Hour'.
Summary:
A Pakistan-based Urdu news channel called singer Ed Sheeran a "British pop queen" and declared him "2017's best female singer".
Summary:
Google CEO Sundar Pichai, while replying to a statement posted by Boney Kapoor after the demise of his wife Sridevi, wrote, "I've special memories of watching Sridevi with my family." "She was a pioneer and an inspiration to so many of us," he added.
Summary:
A special money laundering court in Mumbai on Saturday issued non-bailable warrants against fraud-accused jeweller Nirav Modi and his uncle Mehul Choksi over the $2-billion PNB fraud.
Summary:
In a case pertaining to "right to be forgotten", the German Federal Court of Justice said that Google cannot be held responsible for defamatory content served on a website prior to notice.
Summary:
After the BJP secured a lead in the Tripura Assembly election on Saturday, PM Narendra Modi tweeted that the party's victory depicted a journey from 'shunya' to 'shikhar' (zero to peak).
Summary:
Incumbent Nagaland CM TR Zeliang from Naga People's Front (NPF) has won from his constituency Peren in the Nagaland Assembly elections.
Summary:
Made in cold quantum gas, the particles are said to mimic plasma-containing atmospheric ball lightning, which lasts longer than lightning strikes.
Summary:
Hawaii-based astronomers are tracking a star orbiting Milky Way's central black hole to test Einstein's Theory of General Relativity, which predicts a star's light would get "stretched out" by a strong gravitational field.
Summary:
After adopting uniforms made by Italian fashion brand Armani, a Japanese school was forced to hire four security guards after students complained of harassment on the streets over the uniform.
Summary:
The 26/11 Mumbai terror attack mastermind Hafiz Saeed has said that the US is the "world's biggest terrorist" and slammed Pakistan for "obeying" its orders.
Summary:
A journalist working for a local daily in Pakistan was shot dead on Thursday in a high-security zone in Rawalpindi, police said.
Summary:
US First Lady Melania Trump was granted a green card under the EB-1 programme, also known as 'Einstein Visa', that is meant for people with "extraordinary ability", according to The Washington Post.
Summary:
Russian President Vladimir Putin has announced an online contest for the citizens to suggest names for new nuclear weapons.
Summary:
The second-cheapest country on the list is Trinidad and Tobago, where it costs $1,190 to mine a Bitcoin.
Summary:
Indian cricket team captain Virat Kohli, while praising Anushka Sharma's film 'Pari', tweeted, "Has to be my Wife's best work ever!" "One of the best films I've seen in a long time.
Summary:
The group said the show amounts to "expansion of cultural intervention on Nepali soil".
Summary:
Darren Sammy slammed 16*(4) despite injuring his leg to help Peshawar Zalmi defeat Quetta Gladiators in the PSL.
Summary:
Real-time messaging app WhatsApp has been testing an update that will let users delete sent messages even after an hour.
Summary:
Uttarakhand's BJP-led government has spent â¹5.85 crore in over 11 months on helicopter rides for CM Trivendra Singh Rawat and VIPs, an RTI reply revealed.
Summary:
Using NASA's Hubble and Spitzer space telescopes, astronomers have found evidence of water in the atmosphere of a Saturn-mass exoplanet some 700 light-years away.
Summary:
A Dalit teen was beaten to death after a clash broke out between two groups of youths during Holi celebrations on Friday in Rajasthan's Alwar.
Summary:
A man was stoned to death after he was sentenced by ISIS in Afghanistan's Nangarhar province for alleged adultery, reports said.
Summary:
England and South Africa played a 'timeless' Test match in 1939 which involved 10 days of play without producing a result.
Summary:
The BJP has won 17 seats in Tripura and is leading in 18 constituencies in the state Assembly elections, current trends from the Election Commission data have revealed.
Summary:
The discovery transformed Saudi Arabia's economy, making it the largest producer and exporter of oil in the world.
Summary:
Defending his plan to impose new import tariffs on steel and aluminum products, US President Donald Trump on Friday said trade wars were good and easy to win.
Summary:
PNB is not listed as a creditor in the bankruptcy documents filed in a US court by three companies affiliated with fraud-accused Nirav Modi.
Summary:
Former US men's junior team member Jacob Moore became the first male gymnast to file a lawsuit against former USA Gymnastics doctor Larry Nassar, who was given up to 175 years in prison for molesting young female gymnasts.
Summary:
The ICC removed Pakistan as a host of the 2011 World Cup after the Sri Lankan cricket team's bus was attacked by terrorists on March 3, 2009, on its way to Gaddafi Stadium in Lahore.
Summary:
The Indian team was awarded $15,000 (nearly â¹10 lakh) for winning the tournament.
Summary:
Some 600 computers used to "mine" Bitcoin and other cryptocurrencies have been stolen from data centres in Iceland in what police say is the biggest series of thefts in the Nordic island nation.
Summary:
Meghalaya CM and Congress candidate Mukul Sangma has won from both Songsak and Ampati constituencies in the state assembly elections.
Summary:
After the trends in counting of votes for Tripura Assembly elections show BJP leading in majority seats, party General Secretary Ram Madhav credited the favourable results to Prime Minister Narendra Modi.
"The Prime Minister had addressed four rallies in Tripura.
Summary:
Crediting BJP President Amit Shah for the party's performance, Prasad said Kerala remained the only state ruled by the Left.
Summary:
Incumbent Tripura Chief Minister Manik Sarkar's only options are to take shelter in Bengal, Kerala, or Bangladesh as the BJP will form the next state government, BJP leader Himanta Biswa Sarma said on Saturday.
Summary:
After the early trends showed BJP leading in Tripura, party General Secretary Ram Madhav said the results of the three northeastern states of Tripura, Meghalaya, and Nagaland will be very good for the party.
Summary:
Currently, the BJP is leading in 32 seats with a vote share of 42.3% in Tripura.
Summary:
Despite Antarctic sea ice reaching its second-lowest extent on record, a British Antarctic Survey-led expedition was forced to return as the ship crawled just 8 km in 24 hours, with over 400 km left.
Summary:
Kerala Chief Minister Pinarayi Vijayan has been admitted to Apollo hospital in Chennai.
Summary:
The sanctions were imposed in response to Russian occupation of Crimea, prohibiting Americans from investing in Crimea and banning trade of goods and services to and from the region.
Summary:
Further, reports stated that officials from four countries had discussed ways to manipulate Kushner regarding the US foreign policy.
Summary:
Anupam Kher has been invited to speak at the LSE SU India Forum (LIF) 2018 hosted by the London School of Economics.
Summary:
Late actress Sridevi's daughter Janhvi Kapoor issued a statement ahead of her 21st birthday which read, "You weren't meant for this world.
Summary:
New Zealand's domestic tournament Plunket Shield witnessed two players taking hat-tricks within an hour of each other on the same day for the first time in the competition's 112-year history.
Summary:
Social media platform Facebook has confirmed a new feature to give people a "new medium to express themselves" by letting users upload a voice clip as their status update, according to reports.
Summary:
Hyundai Motor has said US President Donald Trump's plan to impose new import tariffs on steel and aluminium products could "negatively impact" current US production.
Summary:
Sea ice cover in Antarctica has dropped to its second-lowest on record, Australian authorities said on Friday, adding it was not yet clear what was driving the reduction after several years of record highs.
Summary:
The CBI is investigating a "revised tax returns" fraud involving several unknown Infosys employees and Income Tax Department officials for claiming refunds worth â¹5 crore by submitting false information.
Summary:
Thomas was the Chairman of the company, then known as Hindustan Lever, between 1973 and 1980.
Summary:
GitHub said it was the world's biggest distributed denial-of-service (DDoS) attack, interrupting its services for ten minutes.
Summary:
The current Chief Ministers of the northeastern states of Tripura, Meghalaya, and Nagaland are leading in their respective constituencies.
Summary:
Dorsey acknowledged Twitter has been misused for abuse, misinformation, trolls while being accused of censorship, political bias, and focussing on business rather than society.
Summary:
Early trends in the counting of votes in Meghalaya, Tripura and Nagaland Assembly elections show that Congress is leading in Meghalaya, BJP in Tripura and Naga Peoples Front in Nagaland.
Summary:
A neurosurgeon at Kenya's largest hospital has been suspended after performing brain surgery on the wrong patient.
Summary:
The app, which was launched last year, had over 300 million users.
Summary:
Facebook is expanding its Jobs feature to search and apply for jobs directly on its platform to more than 40 countries including India.
Summary:
Notably, BJP has allied with the Indigenous People's Front of Tripura (IPFT) for the elections, which is currently leading in eight constituencies.
Summary:
The ruling-Indian National Congress (INC) is fighting against the Bharatiya Janata Party (BJP), National People's Party (NPP), and United Democratic Party (UDP).
Summary:
The ruling-CPI(M) in Tripura has been in power in the state for the last 25 years, with Manik Sarkar holding the position of the Chief Minister since 1998.
Summary:
Asserting that people should have a greater say in a democracy, BJP MP Varun Gandhi on Friday said there is a need to change the political system in India.
Summary:
BJP has allied with the Indigenous People's Front of Tripura (IPFT) for the Assembly elections.
Summary:
The BJP contested the elections in alliance with the NDPP, with BJP fielding 20 candidates and NDPP contesting 40 seats.
Summary:
Out of total 171.4 million UPI transactions in February, Paytm contributed 68 million, or 40% of the total transactions, a report by National Payments Corporation of India (NPCI) has revealed.
Summary:
Uber co-founder Garrett Camp is launching his own cryptocurrency Eco with an initial issue of one trillion tokens, of which 50% would be given away to the first one billion people that sign up.
Summary:
"Mega-colonies" of over 15 lakh Adélie penguins have been discovered on Danger Islands near the Antarctic peninsula.
Summary:
After a man in Mumbai sought divorce alleging that his wife failed to even offer him water when he returns from work, Bombay High Court stated that not offering water to husband doesn't amount to cruelty.
Summary:
President Quang is on a 3-day diplomatic visit to India and is leading an 18-member delegation, including ministers, party leaders, and businessmen.
Summary:
Haque is believed to be inspired by LondonâÂÂs Westminster Bridge attack that killed four people last year.
Summary:
A Chinese man, a late-stage cancer patient, was sent by mistake to the morgue by his wife after he was found motionless in bed on Monday.
Summary:
Reacting to the clash between Rajinikanth's 'Kaala' and superhero film 'Avengers: Infinity War' on April 27, a Twitter user commented, "The ultimate war begins." "Kaala alone will now beat all Avengers at box office," wrote another user.
Summary:
American reality television personality Kim Kardashian has worn a saree by designer Sabyasachi Mukerji in a photoshoot for the March edition of Vogue India magazine.
Summary:
All five athletes competing in the heats of the 400m men's race event were disqualified because of lane transgressions at the IAAF World Indoor Championships in Birmingham on Friday.
Summary:
Summary:
Ahead of the announcement of the Tripura Assembly election results, a leader of the ruling-CPM on Friday said the results will have far-reaching consequences for the national politics as well as the party.
Summary:
The girl had complained of pain in her private parts to her mother and narrated the entire incident.
Summary:
The people, opposing his visit, got into an altercation with the convict after he threatened them with a gun.
Summary:
The counting of votes for assembly elections in three Northeast states, Tripura, Meghalaya and Nagaland, began at 8 am today.
Summary:
Two people are reported to have been killed on Friday in a shooting at the Central Michigan University in the US.
Summary:
The invitees will come from different backgrounds and include those who have served their communities.
Summary:
Fraud-accused Gitanjali Gems owner Mehul Choksi has said he will return to India if his passport cancellation is revoked, the Enforcement Directorate (ED) told the Prevention of Money Laundering Act court on Thursday.
Summary:
Navjot Kaur became the first Indian woman wrestler to win a gold in the Senior Asian Championships after winning in the 65 kg freestyle category event on Friday.
Summary:
"(Sachin) said 'you just rest and finish your...tea because you've to go and bat, I'll do the job'," Ganguly added.
Summary:
Indian wrestler Vinesh Phogat won a silver medal at the ongoing Asian Wrestling Championships in Bishkek, Kyrgyzstan on Thursday.
Summary:
Online platforms should take down "terrorist content" and "hate speech" within an hour of it being reported, the EU has said in new recommendations to internet companies.
Summary:
The Special Investigation Team (SIT) probing the murder of journalist Gauri Lankesh on Friday arrested the first suspect in the case.
Summary:
A committee comprising 10 Maharashtra ministers had recommended Sambhaji Bhide, accused of inciting violence in Bhima Koregaon earlier this year, for the Padma Shri award in 2016, an RTI reply has revealed.
Summary:
The Union Cabinet has cleared the Fugitive Economic Offenders Bill, 2018, aimed at seizing all assets of defaulters who flee India to avoid criminal proceedings.
Summary:
Over 1,200 Public Sector Bank frauds cumulatively worth â¹2,450 crore were carried out across India with the help of bank staff between April 2013 to June 2016, RBI data has revealed.
Summary:
The South African Parliament on Tuesday voted in favour of amending the Constitution to transfer land from white to black owners without compensation.
Summary:
Armen had briefly served as the country's Prime Minister in the 1990s.
Summary:
Two Indian traders have been robbed of gems worth â¹2.5 crore after thieves stole a briefcase containing the stones at a Paris metro station, according to reports.
Summary:
Bank of England Governor Mark Carney has said that cryptocurrencies are failing as a form of money and "have exhibited the classic hallmarks of bubbles".
Summary:
The release date of superhero film 'Avengers: Infinity War' has been advanced from May 4 to April 27.
Summary:
While talking about her belief in the institution of marriage, Kangana Ranaut said, "I definitely want to get married...want to have children, but my work will always be my first baby." She further said, "Meeting the right guy is on the to-do list.
Summary:
India won their second U-19 World Cup after South Africa could only make 103/8.
Summary:
Prasad, who cited personal reasons for stepping down, has worked as the head of the committee for 30 months.
Summary:
English third division side Rochdale's midfielder Joe Thompson, who survived cancer twice in last three years, played against Tottenham in an FA Cup match at the Wembley Stadium on Wednesday.
Summary:
After days of external pressure, YouTube has banned a neo-Nazi channel called Atomwaffen citing "multiple or severe violations of YouTube's policy prohibiting hate speech".
Summary:
He said India wants to have trade relations and pacts with all countries.
Summary:
A student of Kerala's Nirmala College has been suspended from the college for allegedly insulting the National Anthem.
Summary:
There was no immediate claim of responsibility for the attack.
Summary:
Most of Ireland has been shut down as Storm Emma blocked roads, grounded planes, stopped trains, and left nearly 24,000 homes and businesses without power.
Summary:
Fortis Healthcare has said it'll hire an external legal firm to probe the alleged siphoning of â¹473 crore by its promoters Malvinder and Shivinder Singh.
Summary:
Producer Harvey Weinstein's insurers have refused to pay in his defence of 11 lawsuits alleging sexual assault.
Summary:
Karan Johar, who had planned to make the film 'Shiddat' with late actress Sridevi, has reportedly decided to shelve the project.
Summary:
Summary:
After the fraud's detection, the bank immediately suspended the user ID and password of the accused.
Summary:
Online media startup ScoopWhoop has been slammed by Twitter users for calling Holi the "worst festival".
Summary:
A Kashmiri youth gave up militancy and returned to his home on Friday following appeals from his mother, a senior police official said.
Summary:
The Delhi Police may book parents of children who throw water balloons at people during Holi, reports said.
Summary:
The ruling came after a complaint was filed by far-right leader Heinz-Christian Strache, alleging that activists had made "public insults" by criticising him in a video.
Summary:
Telugu version 'Saahore' song from 'Baahubali 2' has become the first South Indian video song to have crossed 100 million views on YouTube, claimed song's singer Daler Mehndi.
Summary:
Actress Kangana Ranaut has said the most obnoxious nickname given to her is 'black magic witch'.
Summary:
Kangana Ranaut, while speaking about Swara Bhasker's open letter on 'Padmaavat', questioned, "What's so offensive about it?" "It's disturbing to see how she's being...slut-shamed into silence," she added.
Summary:
Amitabh Bachchan took to Twitter to share pictures from Holika Dahan ceremony organised at his home.
Summary:
A statue of rape-accused producer Harvey Weinstein, named 'Casting Couch', has been unveiled near the venue where the Oscars will be held on March 4.
Summary:
Former India captain Sourav Ganguly has revealed his mother-in-law had told him after the third day of the 2001 Kolkata Test against Australia, that India would win it despite following-on.
Summary:
Smith's average is the second-highest in Test cricket (minimum 20 innings).
Summary:
Ireland all-rounder Kevin O'Brien slammed Cricket World Cup's fastest hundred off 50 balls against England on March 2, 2011.
Summary:
Women are barred from attending football matches in Iran since 1979.
Summary:
Five-time Ballon d'Or winner Cristiano Ronaldo took to Twitter to share a picture of eldest son Cristiano Jr imitating his famous shirtless pose.
Reacting to it, a user tweeted, "Jr watches Messi play in his free time, you do that too?"
Summary:
New Zealand's Colin de Grandhomme pulled off a one-handed diving catch to dismiss England Test captain Joe Root in the second ODI.
Summary:
Billionaire Elon Musk has responded to Harvard Professor Steven Pinker, who said building self-driving Tesla cars was "idiotic" as Musk feared artificial intelligence.
Summary:
Matrimony.com-owned online match-making portal BharatMatrimony, has acquired SecondShaadi.com, founded by Vivek Pahwa, for an undisclosed amount.
Summary:
After a photograph of Agra Mayor Naveen Jain riding a bike without a helmet surfaced online, several Opposition parties slammed him for the act.
Summary:
Tweeting jokes and memes on Holi, a user tweeted, "The only thing worse than wasting water on Holi is listening to Anu Malik's 'do me a favour'." Another user wrote, "You know why are the police having a great time today on Holi?
Summary:
He assured the deceased's family of action against the culprits, adding that people who made derogatory comments about the victim online will be punished.
Summary:
Farmers disposed off tomatoes to prevent them from rotting, he added.
Summary:
Pakistan's Foreign Minister Khawaja Asif has said his country won't sacrifice its interests to serve the interests of the US and added that Pakistan will not act as US' proxy.
Summary:
Philippine President Rodrigo Duterte has ordered the country's police and soldiers not to cooperate in investigations into his war on drugs.
Summary:
Summary:
A member of Pakistan's Censor Board said the decision was taken as the film goes against Islamic values.
Summary:
A US court has passed an interim order preventing creditors from collecting debt from fraud-accused Nirav Modi's firm Firestar Diamond Inc after it filed for bankruptcy.
Summary:
George Corones, who turns 100 in April, completed the 50m freestyle in 56.12 seconds, surpassing the previous record of 1:16.92 set by the late Canadian swimmer Jaring Timmerman in 2009.
Summary:
This comes after CEO Evan Spiegel received $637.8 million as total compensation last year after the company went public.
Summary:
Facebook CEO Mark Zuckerberg sold nearly $500 million in the company's shares in February to fund his philanthropic investment vehicle, set up with wife Priscilla Chan.
Summary:
Arne Wilberg, who worked for nine years at Google as contractor has sued the tech giant for allegedly terminating him for complaining about their hiring practices.
Summary:
An advocate in Kerala has filed a case against Malayalam magazine Grihalakshmi for featuring a model breastfeeding a baby on its cover.
Summary:
We have been supporting Syrian refugees since 2014 across Mid East Inc in Greece & Lebanon," the NGO tweeted.
Summary:
After being denied home cooked food in CBI custody, P Chidambaram's son Karti Chidambaram asked the investigating officer to get Swiggy or Zomato.
Summary:
The Indian Railways has announced that Merchant Discount Rate (MDR) charges won't be levied on passengers for booking railway tickets through debit cards.
Summary:
Pakistan on Thursday offered to mediate in talks between the Afghan government and Taliban militant group.
Summary:
The wealth of US billionaires fell the most, declining by combined $55 billion.
Summary:
Summary:
Last year, Rane launched the Maharashtra Swabhiman Paksh after quitting the Congress and pledged support to the NDA.
Summary:
California-based restaurant delivery startup DoorDash has announced it has raised $535 million, which reportedly boosted its valuation to $1.4 billion.
Summary:
In his first known appointment since he was forced to resign as Uber CEO last June, Travis Kalanick is joining the board of his friend's medical office software startup.
Summary:
Only four out of 749 candidates who had appeared for the written entrance test for Hindi MPhil/PhD in Jawaharlal Nehru University have been shortlisted for the interview.
Summary:
A youth in Delhi was allegedly thrashed and stabbed at least 50 times by 20 bike-borne men after an altercation between them which happened earlier on Thursday.
Summary:
Students appearing for Punjab School Examination BoardâÂÂs Class 12 exams at government schools in Ludhiana had to sit on the floor to write their first exam on Wednesday.
Summary:
A man in Uttar Pradesh has been arrested for allegedly raping his nine-year-old niece with learning difficulties and then washing the blood stains from her clothes to destroy the evidence.
Summary:
The case pertains to a 12.6-acre disputed land, in lieu of which the accused blackmailed and extorted â¹40 lakh and a flat from a builder.
Summary:
The incident took place when the boy had gone to the washroom on Wednesday and the accused was arrested after the boy's father filed a complaint, the police said.
Summary:
Haryana government has given relaxation in the physical ability test for the recruitment of sub-inspector-level examination in the state police.
Summary:
He also alleged that his wife would abuse him if he tried to wake her up early in the morning.
Summary:
As per estimates, there are nearly 3,000 homeless people in Paris.
Summary:
Etihad had acquired 24% stake in Jet Airways for around â¹2,069 crore in April 2013.
Summary:
As the February 28 deadline for mandatory KYC (Know Your Customer) compliance by prepaid wallet customers has expired, customers who haven't completed the KYC won't be able to reload their wallet or send money to others.
Summary:
Facebook-owned messaging app WhatsApp has reportedly refused to share user data with Securities and Exchange Board of India (SEBI) on grounds of privacy.
Summary:
The Karnataka government has ordered a probe by the state's Anti-Corruption Bureau into allegations that former AIADMK General Secretary VK Sasikala bribed officials of the Bengaluru central prison to obtain preferential treatment.
Summary:
The official teaser of Rajinikanth starrer 'Kaala' has been released.
Summary:
"You gave us our answer: people don't want two separate feeds," said Facebook's News Feed head.
Summary:
Facebook's COO Sheryl Sandberg at a recent event said, "Not all interactions in social media are equally good for people in terms of their psychological well-being." Sandberg also said that Facebook changed its News Feed to favour more 'meaningful' connections on social media.
Summary:
Indian e-commerce giant Flipkart has infused â¹1,147.5 crore in its online fashion retailer Myntra Jabong Private Limited.
Summary:
Poonam Todi, daughter of an auto driver in Uttarakhand's Dehradun, has topped the Provincial Civil Services (PCS-judicial) examinations 2016, the results of which were declared on Thursday.
My father is an auto-driver but he never let financial constraints come in my way," Poonam said.
Summary:
As many as 10 Naxals were killed in a joint operation by Telangana Police and Chhattisgarh Police in Chhattisgarh's Bijapur district on Friday, Special Director General DM Awasthi said.
Summary:
However, the Delhi Police have claimed that the man had allegedly slapped one of the policemen first.
Summary:
A 57-year-old Uttar Pradesh policeman, Bhupendra Tomar, recently went on to save a man's life despite getting a call about his daughter's sudden demise.
Summary:
At least 11 people have lost vision in one eye after undergoing cataract surgeries in a private hospital in Chhattisgarh, doctors said on Thursday.
Summary:
Residents said the model was erected to convey, "Hookah has burnt Kamala Mills and will burn you too".
Summary:
This comes after reports recently suggested that Nirav Modi was seen in New York.
Summary:
PM Narendra Modi on Friday took to Twitter to wish all the citizens of the country "a Happy Holi".
Summary:
Stormi is 20-year-old Kylie's first child with boyfriend Travis Scott.
Summary:
Actress Disha Patani took to social media to wish her rumoured boyfriend Tiger Shroff on the occasion of his 28th birthday today.
Tiger and Disha will be seen together in the upcoming film 'Baaghi 2'.
Summary:
Summary:
Singer Selena Gomez took to Instagram to share a message on the occasion of her rumoured boyfriend Justin Bieber's 24th birthday on Thursday.
Selena and Justin, who were earlier a couple, have reportedly started dating again after her break-up with The Weeknd.
Summary:
Barcelona's lead at the top of the La Liga's points table was cut to five points after registering a 1-1 draw against Las Palmas in the Spanish league on Thursday.
Summary:
NBA side Cleveland Cavaliers' player LeBron James pulled off a behind-the-back self-pass from between teammate Tristan Thompson's legs during a match against the Philadelphia 76ers on Thursday.
Summary:
The person who lodged the complaint against Bosse said that the athlete had began the brawl after throwing a beer can at him.
Summary:
Manchester City defeated Arsenal 3-0 in the English Premier League to register their second win over the London-based club in five days.
Summary:
Stating that there has been "some visible improvement" in the state's air quality, the authority said the 'very poor' and 'severe' category imposed will also be lifted.
Summary:
Information and Broadcasting Ministry has since January blocked the salary funds for public broadcaster Prasar Bharati, the parent agency of Doordarshan and All India Radio, Prasar Bharati Chairman Surya Prakash said.
Summary:
With a $1.3-billion fortune, 21-year-old Norwegian Alexandra Andresen has been named the world's youngest billionaire in Hurun Global Rich List 2018.
Summary:
Guyana, a South American country, issued four postage stamps with the theme of Phagwah (Holi) in the year 1969.
Summary:
Bollywood Hungama wrote, "'Pari' has the right amount of chills and thrills." It has been rated 3.5/5 (Koimoi), 1/5 (The Indian Express) and 2.5/5 (Bollywood Hungama).
Summary:
South Korea-based researchers developed an aqueous hybrid energy storage device that can be charged within 20-30 seconds via a USB cable or a solar panel.
Summary:
The Union Cabinet has cleared a bill allowing authorities to confiscate all assets of economic defaulters who flee the country, even if they aren't convicted.
Summary:
Former Finance Minister P Chidambaram on Thursday reportedly told his son Karti "Don't worry, I'm there" at Delhi's Patiala House Court after a hearing of INX Media money laundering case.
Summary:
The Muslim clerics have shifted the timing of the Friday namaz in a Mosque in Uttar Pradesh's Lucknow from 12.45 pm to 1.45 pm in light of the Holi celebrations in the city.
Summary:
Congress President Rahul Gandhi on Thursday tweeted he was going to Italy to surprise his Nani (maternal grandmother) on Holi.
Well played." Meanwhile, another user tweeted, "RG to Nani: Surprise, m here for holi.
Summary:
The caste panchayats of the Kanjarbhat community will face legal action if they compel newly married women to undergo 'virginity tests', the Maharashtra government has said.
Summary:
The National Highways Authority of India (NHAI) will deploy an all-female staff in at least one of its toll booths in each state across the nation on the occasion of International Women's Day on March 8.
Summary:
A 50-foot-tall effigy of $2-billion PNB scam accused Nirav Modi was set on fire on Thursday by residents of Mumbai's BDD Chawl on the occasion of Holika Dahan.
Summary:
Calling on local companies to start manufacturing condoms, Zimbabwe Health Minister David Parirenyatwa said that Chinese imports were too small for the local population.
Summary:
The total number of Indian billionaires on the list is 131 and Mumbai has the maximum number of billionaires at 55.
Summary:
Adani Group Founder Gautam Adani, whose infrastructure group is India's largest coal trader, has doubled his wealth to $14 billion over the last year, according to Hurun Global Rich List 2018.
Summary:
China has topped the Hurun Global Rich List 2018 with 819 billionaires, beating the United States which had 571 billionaires.
Summary:
Sridevi and Haasan worked together in several films, including the 1983 Hindi movie 'Sadma'.
Summary:
The CBI has charged former CMD of United Bank of India Archana Bhargava for amassing assets worth over â¹3.6 crore, 133.23% more than her known sources of income.
Summary:
Neymar is expected to miss the remaining season as the recovery could take three months.
Summary:
Addressing BJP workers in Uttar Pradesh, CM Yogi Adityanath called Gorakhpur and Phulpur bypolls "rehearsal" to the 2019 General Elections.
Summary:
After Congress President Rahul Gandhi tweeted that he is planning to surprise his 93-year-old grandmother in Italy, BJP MP Meenakashi Lekhi replied that Karti Chidambaram's arrest has reminded Rahul of his grandmother.
Summary:
The priest had earlier taken some disciplinary action against the accused, who was in charge of church maintenance work.
Summary:
A team of doctors at a district hospital in Karnataka's Tumakuru removed 99 gallbladder stones from a female patient in a three-hour surgery.
Summary:
In a first, the Maharashtra government has announced a collaboration with online encyclopedia Wikipedia to promote Marathi globally and increase its online usage.
Summary:
A group of tantriks allegedly locked the body of a 35-year-old woman in a room at her residence in Rajasthan's Gangapur for 45 days in order to resurrect her.
Summary:
Responding to Sobchak's action, Zhirinovsky called her a "whore".
Summary:
After White House Communications Director Hope Hicks resigned from the post, former Communications Director Anthony Scaramucci on Thursday said that morale inside the White House was terrible.
Summary:
Food discovery startup Zomato's Co-founder Pankaj Chaddah has resigned from the company but will continue on its board of directors.
This comes after Zomato announced that it raised $150 million from Alibaba's payment affiliate Ant Financial.
Summary:
The move could lead to other banks increasing their benchmark lending rates, reports said.
Summary:
Austrian energy drinks firm Red Bull has created 13 billionaires, the most by any company globally, according to the Hurun Global Rich List 2018.
Summary:
RBI is also reportedly reviewing the working of SWIFT messaging system which is linked to the PNB fraud.
Summary:
The premises is reportedly registered to fraud-accused jeweller Nirav Modi and not under any company's name.
Summary:
Delhi's Patiala House Court on Thursday ordered former Finance Minister P Chidambaram's son Karti to five days in CBI custody in the INX Media case.
Summary:
Addressing a conference on Islamic heritage, PM Narendra Modi on Thursday said the fight against terrorism and radicalisation is not aimed at any particular religion.
Summary:
Ahead of Holi, Uttar Pradesh Police on Thursday tweeted, "Tyohar ki aad mein, sharafat na jaye bhaad mein." The police further urged citizens to keep their clothes colourful and intentions clean.
Summary:
Goa CM Manohar Parrikar was discharged from the Goa Medical College and Hospital on Thursday, five days after he was hospitalised over blood pressure issues.
Summary:
The existing self-regulatory body, Institute of Chartered Accountants of India (ICAI), will continue to govern audits of smaller companies.
Summary:
A woman who had accused former Punjab Minister Sucha Singh Langah of raping her for years has withdrawn her allegations during a court hearing in the case.
Summary:
In his annual address to lawmakers on Thursday, Russian President Vladimir Putin revealed that the country has nuclear weapons that are capable of avoiding any missile defence systems.
Summary:
For the first time in five years, Bill Gates is not world's richest person on the list.
Summary:
Twenty-seven billionaires, who were on the Hurun Global Rich List 2017, passed away over the last year.
Summary:
Cryptocurrency Waltonchain's price plunged 20% after the company behind it accidentally tweeted that it won cryptocurrency in its own giveaway.
Summary:
Singer Sunidhi Chauhan, while speaking about motherhood, said she feels like she is on another planet.
It's a beautiful feeling that I cannot explain," she added.
Summary:
F Gary Gray, who directed the 2017 film 'The Fate of the Furious', will reportedly direct the spinoff.
Summary:
Two Chinese cricketers will train with Pakistan Super League side Peshawar Zalmi in the ongoing edition of the tournament.
Summary:
Punjab CM Amarinder Singh on Thursday took to Twitter to share pictures of Indian woman cricketer Harmanpreet Kaur from her first day as Deputy Superintendent of Police.
My best wishes," CM Singh wrote.
Summary:
A 25-year-old Paraguayan artist painted moments from Barcelona forward Lionel Messi's life and career on soccer boots and gifted them to the five-time Ballon d'Or winner.
Summary:
Slamming the bus yatra organised by the Congress in Telangana, state IT Minister KT Rama Rao said the party leaders reminded him of 'Alibaba and the 40 Thieves'.
Summary:
Google parent Alphabet-backed insurance startup Clover Health has posted a $22 million loss in 2017, as compared to $35 million loss in 2016.
Summary:
The National Institute of Fashion Technology (NIFT), in collaboration with the Textile Ministry, will undertake a nationwide survey to create a size chart specifically for Indians.
Summary:
Minister of State for Defence Subhash Bhamre has said the situation at the Line of Actual Control along China was sensitive.
Summary:
The protestors demanded withdrawal of false cases against them, action against guilty cops, a legislation to protect their rights, and government-issued identity cards.
Summary:
The South Western Railway has decided to print tickets issued at stations in Karnataka in Kannada, besides English and Hindi.
Summary:
A 57-year-old French man was charged on Wednesday after confessing to raping and sexually assaulting around 40 women in a series of attacks since the 1990s.
Summary:
The Hurun report added that there are a total of 170 Indian-origin billionaires globally.
Summary:
Malayalam magazine Grihalakshmi has featured model Gilu Joseph breastfeeding a baby on its cover, with the caption 'Mothers tell Kerala, "please don't stare, we need to breastfeed"'.
Summary:
The mummified bodies dating from 3351-3017 BC push back the evidence for tattooing in Africa by 1,000 years, said the museum's curator.
Summary:
Afridi had revealed that former Pakistani pacer Waqar Younis had given him Sachin's bat during net practice before the match.
Summary:
Ex-Google employee, Loretta Lee, has sued the company alleging sexual harassment and wrongful termination, claiming she was subjected to "lewd comments, pranks and even physical violence" on a daily basis.
Summary:
The music service, which supports 12 Indian languages, will compete with Tencent-backed rival Gaana and Apple's music service.
Summary:
A day ahead of Holi, students and teachers from Delhi University on Thursday staged protests outside Delhi Police headquarters over incidents where female students were hit allegedly with semen-filled balloons.
Summary:
Uttar Pradesh Shia Waqf Board Chairman Waseem Rizvi has urged the All India Muslim Personal Law Board to surrender nine mosques built by "Mughal rulers after demolishing temples" to Hindus.
Summary:
Army chief Bipin Rawat on Thursday said that the Indian Army provides services like education and healthcare in areas that are inaccessible to the government.
Summary:
The South Korean National Assembly has passed a law reducing the maximum weekly working hours from 68 to 52.
Summary:
A model has asked the US to help her get out of a Thailand jail in exchange for information on alleged links between President Donald Trump and Russia.
Summary:
Consumer goods giant Unilever CEO Paul Polman's pay surged nearly 51% to $14.13 million in 2017, compared to $9.3 million in 2016.
Summary:
Two people were held in Mumbai on Wednesday for alleged tax evasion of over â¹7 crore, marking the first arrest under Central GST Act. They allegedly exchanged paper invoices without any physical movement of goods, and claimed false input tax credit.
Summary:
American singer and actress Barbra Streisand claims she successfully made two clones of her pet dog after it died last year.
Summary:
Jackie Shroff, during his appearance on the show 'BFFs with Vogue', revealed that he slapped Anil Kapoor seventeen times for a scene in the 1989 film 'Parinda'.
Summary:
PNB has appointed Belgium-based consultancy firm BDO as the forensic auditor for five Nirav Modi group companies in connection with the $2-billion fraud case.
Summary:
After the official Twitter handle of Lord's Cricket Ground shared a picture of the stadium covered with snow, a user reacted, "Potential host for the next Winter Olympics." Other users tweeted, "They are so organised that even the snow settles gracefully," and, "Looks beautiful!
Summary:
Hogg also claimed Kuldeep is ready to play as India's lone spinner in away Tests.
Summary:
Founded in 2006, the company is valued at roughly $19 billion, based on private transactions.
Summary:
A passenger took off his shirt and attacked ground crew after he was forced to leave an American Airlines flight at a US airport.
Summary:
Slamming the government over the â¹6,800-crore Winsome Diamonds fraud case, Surjewala said the group's promoter Jatin Mehta fled India and settled in the Caribbean.
Summary:
AAP claimed that Prakash met L-G Baijal immediately after he was attacked to plan a conspiracy.
Summary:
Google India's Managing Director Rajan Anandan has said that a large number of consumer internet companies will become profitable by the end of 2018.
Summary:
The accident took place when the 18-wheeler truck tried to take a steep turn and the ambulance hit it from behind.
Summary:
A UK-based IT expert has been jailed for 10 months over a revenge cyber attack on the company which terminated his contract early.
Summary:
New York City has agreed to pay $60,000 (over â¹39 lakh) each to three Muslim women forced by police to remove their hijabs to get their mugshots, officials said on Wednesday.
Summary:
PNB fraud accused Nirav Modi's US firm Firestar Diamond Inc, which filed for bankruptcy on February 26, has received strong early expressions of interest from buyers, court filings showed.
Summary:
A 170-acre park in Hyderabad worth over â¹500 crore has also been attached.
Summary:
Food discovery startup Zomato has raised $150 million from Chinese e-commerce giant Alibaba's payment affiliate Ant Financial.
Summary:
International art advisory firm Gurr Johns has bought at least 13 Picasso artworks costing a total of $155 million (â¹1,010 crore) in two days.
Summary:
Information and Broadcasting Minister Smriti Irani has slammed the media coverage of late actress Sridevi's demise.
"As I&B Minister, I would like to say the indignity thrust upon a legend like Sridevi in coverage by TV channels was deplorable," she said.
Summary:
"I wish I had Dhoni in my 2003 World Cup team.
Dhoni made his debut under Ganguly's captaincy in 2004.
Summary:
After a video of a young Pakistani kid bowling at one stump rested on a wall emerged online, former Pakistani captain Wasim Akram tweeted, "Where is this boy???" Further, Wasim described the youngster, who bowls left-arm like him, as a "serious talent".
Summary:
Talking about India's victory in the third Test against South Africa after losing the first two, coach Ravi Shastri said the players always believed they could win.
Summary:
The plane, named Stratolaunch, is expected to be launched in 2019.
Summary:
Actor-turned-politician Kamal Haasan on Thursday said that his party Makkal Needhi Maiam (MNM) does not believe in a total ban on the sale of liquor.
Summary:
Taking a dig at the BJP government in Madhya Pradesh, Congress President Rahul Gandhi on Thursday said his party's victory in the state's Kolaras and Mungaoli bypolls was a 'defeat of misgovernance'.
Summary:
Whale sharks are endangered after years of being over-hunted.
Summary:
The Election Commission has ordered repolling in 11 election booths in Nagaland for Friday.
Summary:
The park has a 2000-MW capacity and was built at a cost of â¹16,500 crore, over 13,000 acres across five villages.
Summary:
An American transgender woman claims to have spent approximately â¹38 lakh to look like a dragon.
Summary:
However, the visitors will not be allowed to interact with the other prisoners.
Summary:
Officials have proposed that climbers drop human waste in only one high crevasse and carry the rest of it.
Summary:
A Russian woman, Viktoria Nasyrova, was on Tuesday charged with drugging and attempting to murder a look-alike with a cheesecake and stealing her passport and cash, after trying to make it look like a suicide attempt.
Summary:
National Award winning actress Neena Gupta is set to make a comeback on television after nine years with the show 'Naamkarann'.
Summary:
The report added 2018 could be the year of mobile malware.
Summary:
Artificial Intelligence (AI) based cancer radiology platform Predible Health has raised an undisclosed amount from Unitus Seed Fund.
Summary:
A US-based study has predicted that Neptune-like planets near the centre of the Milky Way were transformed into rocky planets by emissions from a supermassive black hole within 70 light-years.
Summary:
On recreating an environment similar to Saturn's moon Enceladus in the lab, researchers have found some microbes were able to survive in freezing deep-sea conditions and emit methane gas.
Summary:
A 1926 letter written by Mahatma Gandhi, wherein he discusses the nature of existence of Jesus Christ, is on sale for $50,000 in the US.
Summary:
He added that the CBI gave Karti a lot of chances but he failed to cooperate with them.
Summary:
The Madras High Court on Thursday granted a two-week parole to Ravichandran, who is serving a life term over the assassination of former PM Rajiv Gandhi in 1991.
Summary:
An agreement between Prasar Bharati and Jordan Media was also signed.
Summary:
A supplier has been booked for providing fake jewellery for a mass marriage programme organised by the Uttar Pradesh government after eight women returned their ornaments saying they weren't made of silver.
Summary:
Users can also double tap on the projection on their hand to change what's on the screen.
Summary:
US-based digital publishing startup LittleThings has announced it will shut operations and blamed it on Facebook's News Feed changes, that came in January.
Summary:
Congress leader Peter Alphonse on Thursday said, "[Indrani Mukerjea's] mental status is questionable.
Summary:
The startup also launched a smartphone called 'Katim' last year, which the firm claimed to be the world's most secure phone.
Summary:
Tardigrades, also known as water bears, are the world's most resilient species.
Summary:
Former Finance Minister P Chidambaram's son Karti Chidambaram was sent to one-day CBI custody by a Delhi court yesterday in connection with the INX Media money laundering case.
Summary:
Peter and Indrani Mukerjea claimed to have paid â¹3.1 crore to overseas firms linked to P Chidambaram's son Karti Chidambaram to get government clearance for foreign investment in their company INX Media in 2007, CBI documents have revealed.
Summary:
Mumbai Police on Wednesday arrested two Brihanmumbai Municipal Corporation (BMC) officials for their alleged role in the Kamala Mills fire on December 29.
Summary:
Delhi University has told the Delhi High Court that it cannot disclose BA exam records of 1978, the year it claims PM Narendra Modi graduated.
Summary:
Convicted Khalistani terrorist Jaspal Atwal has denied any association with Khalistan activists saying, "I have nothing to do with Khalistan sympathizers.
Summary:
Speaking at the conference on 'Islamic Heritage: Promoting Understanding and Moderation' on Thursday, PM Narendra Modi said, "all the major religions in the world have been nurtured in India's cradle." "Indians see the whole world as one family.
Summary:
This comes after DGP (Prisons) R Sreelekha in a blog claimed iron hooks are pierced into young boys' bodies as part of the ritual.
Summary:
US President Donald Trump's one of the longest-serving aides, Hope Hicks, has announced her resignation from the post of Communications Director, White House confirmed on Wednesday.
Summary:
'Mundiyan', the first song from Tiger Shroff and Disha Patani starrer 'Baaghi 2' has been released.
The song is a recreated version of the 1999 song 'Mundian To Bach Ke'.
Summary:
"Check the internet about the information of this pic," a user commented.
"Please research before posting," wrote another user.
Summary:
Miss World Manushi Chhillar has featured on the cover of the March edition of Grazia magazine.
Summary:
They will be seen playing struggling actors in the film, which will be based on the time of the Charles Manson murders.
Summary:
Thousands of songs, symphonies and operas composed by prisoners in Nazi concentration camps will be performed at a concert in Jerusalem in April.
Summary:
Microblogging site Twitter has rolled out the Bookmarks feature globally, allowing users to save tweets.
Summary:
Facebook-owned WhatsApp has added time and location filters which can be used while editing photos or videos.
Summary:
After 17 years of mane-free existence, a lioness named Bridget at the Oklahoma City Zoo sprouted a ruff of hair around her neck, similar to one sported by male lions.
Summary:
A hotel in United States' Pennsylvania has installed bathtubs in the shape of champagne glasses in its 'Champagne Tower Suites'.
Summary:
Leader of Congress in Lok Sabha Mallikarjun Kharge has rejected Prime Minister Narendra Modi's invitation to attend the meeting on the appointment of a Lokpal as a 'special invitee'.
Summary:
Ratan Tata-backed home rental startup NestAway has raised $51 million in funding from Goldman Sachs, UC-RNT Fund and the University of California.
Summary:
Online furniture startup Urban Ladder has raised around â¹77 crore ($11.87 million) in funding from existing investors, filings have revealed.
Summary:
A Lashkar-e-Taiba militant, "apparently foreign terrorist", was neutralised in a joint operation by Jammu and Kashmir Police, CRPF and Indian Army in the state's Bandipora district on Thursday.
Summary:
The CBI has alleged Karti received money from the company to get Foreign Investment Promotion Board to overlook illegalities.
Summary:
Kolkata-born para-swimmer and Commonwealth Games bronze medallist Prasanta Karmakar has been suspended for three years for recording videos of female swimmers.
Summary:
The company claims the card can achieve read speeds of up to 160 Mbps and write speeds of up to 90 Mbps.
Summary:
Summary:
MIT and Arizona State University astronomers have detected the earliest stars, formed 180 million years after the Big Bang, when the universe was less than 2% of its current age.
Summary:
Rajasthan Home Minister Gulab Chand Kataria on Wednesday said that abduction cases of 7,995 children and over 24,777 women were solved in the state in last three years.
Summary:
Shankaracharya Jayendra Saraswathi was appointed as the 69th pontiff of Kanchi Sankara Mutt in 1994.
Under his guidance, the 8th century mutt launched several community service initiatives including schools, eye clinics and hospitals.
Summary:
Revising the pass criteria for class 10 exams, the CBSE has exempted students from the mandatory separate criteria of 33% in subjects with 20 marks for internal assessment and 80 marks for theory.
Summary:
Denying reports of Indian Air Force approaching US-based defence company Lockheed Martin for a classified briefing on the F-35 fighter jets, IAF Chief Air Chief Marshal BS Dhanoa said that no requests were made to the "Americans".
Summary:
Lewis, who fired a shot as the Queen exited her motorcade, was arrested but not on attempted murder charge.
Summary:
Although there are other ice skating trails in the city, they are not illuminated with colourful lighting.
Summary:
A couple got married during their train journey in the presence of Art of Living founder Sri Sri Ravi Shankar.
While the couple exchanged garlands and vows, Sri Sri Ravi Shankar recited mantras.
Summary:
The doctors were able to remove the firework without it exploding.
Summary:
A 77-year-old woman had been living with the remains of her mother for at least 30 years in an apartment in Ukraine, said the police.
Summary:
Sridevi had passed away on Saturday night and her mortal remains were flown back to India on Tuesday evening.
Summary:
Filmmaker Rajkumar Santoshi, known for directing 'Andaz Apna Apna', was admitted to Nanavati hospital on Wednesday due to cardiac issues.
Summary:
Hangouts Chat will be competing with messaging service Slack, Microsoft Teams, and other similar projects.
Summary:
US-based startup AliveCor has developed a band for the Apple Watch that monitors a user's heart rhythm to check if its normal.
Summary:
The feature shows a message which reads 'Forwarded message' on the chat bubble.
Summary:
Blue ice occurs when water freezes without air bubbles, which interfere with the passage of light.
Summary:
Vande Hei ventured outside ISS on four spacewalks while Acaba and Misurkin conducted one spacewalk apiece.
Summary:
However, a commonly accepted theory states the collision of a Mars-sized body into Earth released material to form Moon.
Summary:
A woman wrestler and a boxer were attacked with acid by three persons on their way to a stadium in Uttar Pradesh's Meerut.
Summary:
His visit comes three weeks after PM Modi visited Jordan as a part of his West Asia tour.
Summary:
Students found mass copying in Telangana class 10 examinations may be awarded jail term of three to seven years and fines ranging from â¹5,000 to â¹1 lakh, state School Education Director G Kishan said.
Summary:
Widows from Vrindavan have gifted herbal gulal to PM Narendra Modi ahead of Holi.
Summary:
A Christian couple was on Tuesday flogged in Indonesia's Aceh province for playing a children's game considered 'anti-Islamic'.
Summary:
The court also issued prison sentences of three and six months to members of the team that produced the music video.
Summary:
After the cremation of late actress Sridevi on Wednesday, her husband Boney Kapoor released a statement saying, "Rest in peace, my love.
Summary:
In a letter to Delhi Lieutenant Governor Anil Baijal, Delhi Deputy CM Manish Sisodia said the IAS associations were like "khap panchayats" issuing "fatwas" to bureaucrats against attending AAP government meetings.
Summary:
The Congress on Wednesday claimed that the Goa administration was on the verge of collapse in the absence of CM Manohar Parrikar, who has been hospitalised over blood pressure issues.
Summary:
Austria and US-based scientists have created a new exotic state of matter where an electron orbits a nucleus at a great distance, while other atoms are bound inside the orbit.
Summary:
A Child Special Court on Wednesday acquitted the bus conductor accused in the murder of a seven-year-old in a Gurugram school.
Summary:
The Union Cabinet has cleared the proposal for hiking the salaries of Members of Parliament (MPs).
Summary:
The judge also called for restructuring the government's tribal welfare measures.
Summary:
The Anti-Tank Guided Missile (ATGM) Nag was successfully flight-tested in desert conditions against two tank targets at different ranges and timings, Defence Ministry officials said.
Summary:
Noida residents have consumed liquor worth â¹775 crore between April 1, 2017, and January 31, 2018, officials said.
Summary:
IAS officer Pradeep Kasni, who was transferred 71 times in a career spanning over 34 years, retired on Wednesday without having received the salary for past six months.
Summary:
Israeli PM Benjamin Netanyahu has been named as the beneficiary of a PR scheme worth "up to a billion shekels".
Summary:
After actress Sridevi was cremated on Wednesday, her family has issued a statement urging people to help her daughters Janhvi and Khushi remember her fondly and live their lives with "less ache in their hearts".
Summary:
Actor Amitabh Bachchan took to Twitter to share a poem in the memory of late actress Sridevi.
Summary:
Corporation Bank alleged that Kumar filed enhanced valuation reports based on which the loan was sanctioned.
Summary:
Claiming that India's policy on the neighbouring country is a dead-end, the Congress leader said PM Modi never disclosed his meeting with Pakistan and what they were promising.
Summary:
AAP MLA Alka Lamba on Tuesday tweeted pictures which showed her crying while watching news on the crisis in Syria.
Summary:
After the groom's family sought the village council's help, the council got him married to a vegetable seller's daughter.
Summary:
The budget allocated â¹37,000 crore for the agriculture sector.
Summary:
Officials further said that they have initiated action to trace the vehicles.
Summary:
The Bombay High Court has directed the state to allot a piece of land in four months to a 71-year-old who had fought in the 1971 Indo-Pak war and was denied benefits meant for Army men.
Summary:
Officials visited the residence of a 26-year-old man with over 60% disabilities in Haryana to create his Aadhaar card on Tuesday.
Summary:
The Delhi Police is training local residents working as informers to use technology such as smartphones and spy cameras to receive better information on suspicious people, reports said.
Summary:
India's External Affairs Ministry has asserted that India had no hand in the invitation extended to Khalistani terrorist Jaspal Atwal for the events organised by the Canada High Commission during Canada PM Justin Trudeau's visit.
Summary:
The developers said the video game aims to make players understand "what really happened and what the fighters who made sacrifices were doing".
Summary:
US President Donald Trump's deputy assistant, Lisa Curtis, has said that the country is seeking a "new relationship" with Pakistan based on a shared commitment to defeat terror.
Summary:
Markle will marry Prince Harry in May this year.
Summary:
The CBSE has allowed students with special needs to use laptops and computers to write class 10 and 12 board examinations from this academic session.
Summary:
Commending the arrangements made for the last rites of Sridevi, veteran actress Hema Malini has tweeted, "She lay there, beautiful in a red saree, serene in death & totally at peace." The entire film industry is grieving her demise while "some were on the verge of breakdown", she added.
Summary:
The regulator had given the final observation in the IPO within three months after the application was filed.
Summary:
The Central Bureau of Investigation (CBI) on Wednesday arrested an Internal Chief Auditor of Punjab National Bank in connection with the alleged $2-billion fraud involving Nirav Modi and Mehul Choksi.
Summary:
Former Indian cricketer Mohammad Kaif has revealed that former England captain Nasser Hussain called him a bus driver during the 2002 NatWest final, wherein India chased down a target of 326.
Summary:
Venture investing in India's fintech sector was reported to be $2.4 billion in 2017.
Summary:
Scientists have recorded 61 hours of temperatures above 0úC this year on the northern tip of Greenland, which won't see the Sun until March, while Europe is witnessing sub-zero icy winters.
Summary:
They had threatened to further assault the victim if she complained of the incident.
Summary:
Indrani and Peter Mukherjea had reportedly confessed to the Enforcement Directorate that then Finance Minister P Chidambaram had asked them to help his son Karti's business and to make foreign remittances for the same.
Summary:
The Haryana Cabinet, chaired by CM Manohar Lal Khattar, has approved death penalty for those guilty of raping girls aged up to 12 years.
Summary:
Delhi Metro has announced that all metro services will be suspended on all routes till 2:30 pm on March 2, on the occasion of Holi.
Summary:
After being arrested in the INX Media money laundering case, ex-Finance Minister P Chidambaram's son Karti has told a Delhi court, "I'm not a Hindustan leaver like others.
Summary:
Describing India's development of drone technology as "worrying", Pakistan Foreign Office spokesman Mohammad Faisal said that India's expansion of military capabilities was increasing strain on regional strategic stability.
Summary:
Dismissing claims that he will cling to power and become a dictator, Philippine President Rodrigo Duterte on Wednesday said that he is old and wants to finish his term early.
Summary:
Trump was nominated for his "ideology of peace by force" by an American who did not want his identity revealed.
Summary:
US bank JPMorgan Chase has termed cryptocurrencies like Bitcoin as "risk" to its business for the first time.
Summary:
Shahid Kapoor has said he had to struggle to enter Bollywood while adding that for Ishaan Khatter, it was easier because everyone knows he's Shahid's brother.
Summary:
Actor John Abraham, while speaking about his career in the film industry, said his godfather is his audience.
Summary:
World number 16 Nick Kyrgios, who was once banned for 'not trying' in a match, mocked tennis authorities on Twitter after compatriot Daria Gavrilova went unpunished after her outburst on Tuesday.
Summary:
A woman was detained at Delhi's Indira Gandhi International Airport after she shouted the word 'bomb' during frisking recently, officials said.
Summary:
The Bangalore Metropolitan Transport Corporation (BMTC) has installed a web check-in kiosk inside buses plying on the Electronic City-airport route on a pilot basis.
Summary:
Tamil Nadu BJP leader H Raja tweeted a photo of students kissing during a protest against moral policing in Delhi, claiming it that it was students at IIT Madras.
Summary:
A 20-year-old Hyderabad woman staged her own kidnap to avoid a marriage her family was pressuring her into.
Summary:
Earlier, the fiscal deficit target for the current year was raised to 3.5% of GDP from 3.2%.
Summary:
A man dubbed 'Psycho' Shankar for raping 30 women and killing 15 people, committed suicide by slitting his throat in a Bengaluru jail on Tuesday.
Summary:
Pakistan will develop a strategy to avoid being placed on a global terrorism-financing watchlist, Finance Minister Rana Afzal Khan has said.
Summary:
Eleven people fell ill shortly after an allegedly suspicious letter was opened at a US military base in Virginia on Tuesday.
Summary:
Late actress Sridevi, who passed away on Saturday night, was cremated with state honours and received a gun salute at her funeral on Wednesday in Mumbai.
Summary:
India's Gross Domestic Product (GDP) growth surged to 7.2% in the December quarter of 2017-18, restoring its status as the world's fastest-growing major economy.
Summary:
The CBI has also made it "mandatory" for Nirav to join the investigation next week.
Summary:
Notably, Aircel's proposed merger with Anil Ambani's Reliance Communications had failed last year.
Summary:
On February 28, 1953, Cambridge University scientists James Watson and Francis Crick announced they had determined the double-helix structure of DNA, which replicates to pass on information carried by genes.
Summary:
Late actress Sridevi's body was wrapped in the tricolour during her funeral held on Wednesday afternoon.
Summary:
Notably, Nirav Modi left India on January 1 before the FIR was registered in PNB fraud.
Summary:
RP Infosystems allegedly availed loans by submitting fabricated receivables and inflated stock statements.
Summary:
Federer was also awarded Comeback of the Year, making him the most decorated winner in Laureus' history with six awards.
Summary:
Swiss tennis ace Roger Federer thanked his rival Rafael Nadal after winning the Laureus Sportsman of the Year award on Tuesday.
Federer and Nadal won two Grand Slams each last year.
Summary:
The Decision Review System (DRS) will be used in the Indian Premier League for the first time in the tournament's 2018 edition following BCCI's approval.
Summary:
BJP Spokesperson Sambit Patra on Wednesday said, "If corrupt are being jailed and law is taking its own course, I see no reason why any political party should cry vendetta.
Summary:
Afghanistan President Ashraf Ghani on Wednesday offered to recognise Taliban as a legitimate political group in order to end the over 16-year-long war.
Summary:
The Turkish government said it would consider reintroducing chemical castration for child abusers.
Summary:
People have been leaving gloves and scarves for homeless people in Bristol, England, amid a current wave of cold weather sweeping Britain.
Summary:
Another woman reported she was forced to resign from her job at one of Wynn's casinos after she refused to have sex with him.
Summary:
Vidya Balan starrer 'Tumhari Sulu' is set to be remade in Tamil.
Summary:
Kailash Kher, while speaking about Zayn Malik's cover of his song 'Teri Deewani', said the British singer should join his digital academy to learn the "proper nuances" to perform the song.
Summary:
Stokes was out of the England squad for nearly five months over his involvement in a brawl outside a nightclub in Bristol in September last year.
Summary:
Twenty-three-time Grand Slam champion Serena Williams' husband Alexis Ohanian has put up four billboards, along a highway in California with images of their daughter Alexis Olympia, which say, "Greatest momma of all time.
#GMOAT," Ohanian tweeted.
Summary:
England's Jos Buttler slammed a six over fine leg in the 36th over off Tim Southee, which was caught by Rob Ferrari with his right hand.
Summary:
Summary:
US-based self-driving car startup Aurora has raised $90 million in a Series A funding round, with participation from both Greylock Partners and Index Ventures.
Summary:
She claimed they let her switch seats but later asked her to return to her original one.
Summary:
The US envoy for North Korea, Joseph Yun, plans to retire on Friday, the State Department said after President Donald Trump rejected talks to resolve the North Korean crisis unless conditions are met.
Summary:
Credit rating agency Moody's has kept India's GDP growth estimate unchanged at 7.6% for the calendar year 2018.
Summary:
The mascots for the Tokyo 2020 Olympics and Paralympics selected by elementary school kids were unveiled on Wednesday.
Summary:
The Employees' Provident Fund Organisation (EPFO) has made it compulsory to file online claims for provident fund withdrawals of over â¹10 lakh.
Summary:
American battery manufacturer Energiser has launched Power Max P16K Pro smartphone which features a 16,000 mAh battery.
Summary:
The patent describes two devices, one of which has two screens, connected by a hinge, while the other describes a second keyboard-screen as an accessory for a device.
Summary:
World's second richest person Bill Gates has said cryptocurrency is a "rare technology that has caused deaths in a fairly direct way" as it is being used to buy drugs.
Summary:
During the last US Presidential election, Donald Trump paid "slightly higher" advertisement prices on most days than Hillary Clinton, who also contested for the post, Facebook executive Andrew Bosworth has revealed.
Summary:
Creating a DNA map of the elephant family, an international team of scientists have confirmed there are three species of modern elephant, apart from the commonly known African and Asian elephants.
Summary:
At least 23 inmates, including a woman, have tested HIV positive at Gorakhpur district jail in Uttar Pradesh in the past eight months, a jail superintendent said.
Summary:
Condoling death of Kanchi Kamakoti Peetham Shankaracharya Sri Jayendra Saraswathi Swamigal on Wednesday, PM Narendra Modi tweeted, "Deeply anguished by the passing away of Acharya...He will live on in the hearts and minds of lakhs of devotees due to his exemplary service and noblest thoughts.
Summary:
Men are being forced to wear women's clothing and use makeup in a village in Thailand after five young men died in their sleep.
Summary:
A Hyderabad police officer drove eight schoolgirls to their exam centre after their bus broke down.
Summary:
Burglars fled a Bengaluru house with a 25 kg locker only to find it contained a â¹100 note, the police said.
Summary:
A woman in United States' Florida paid her $493 (around â¹32,000) water bill with 49,300 pennies.
Summary:
Founder of online security firm Qihoo 360, Zhou Hongyi, has become $13 billion richer by relocating his company to China.
Summary:
Jennifer Lawrence, while addressing rumours that she had an affair with Chris Pratt, said, "I never had an affair with Chris Pratt on [the sets of] 'Passengers'." It was rumoured that Jennifer was dating Chris while he was still married to Anna Faris.
Summary:
A user commented, "This joke is necessary!?
Really?" Another user wrote, "What's in the name?" "You want publicity in this too.
Summary:
nBollywood celebrities including Deepika Padukone, Aishwarya Rai Bachchan and Shahid Kapoor along with wife Mira Rajput attended the condolence meet of late actress Sridevi.
Summary:
For example, if a user searches for symptoms like 'cough and pain', the Search app will show a list of related conditions.
Summary:
Users can customise furniture templates like size and sturdiness in a simple CAD system after which modified robots cut the individual parts.
Summary:
Reacting to the announcement of scientists working to launch 4G on the Moon by 2019, several Twitter users complained about bad network coverage in their localities.
Summary:
The engine of a Los Angeles-bound Southwest flight caught fire shortly after takeoff on Monday, following which it was forced to turn back and make an emergency landing in Salt Lake City.
Summary:
After Karti Chidambaram's arrest in connection with a money laundering case, BJP MP Subramanian Swamy said former Finance Minister P Chidambaram "approved projects which shouldn't have been approved" and therefore the "trail will lead" to him.
Summary:
Ola Fleet also reportedly secured a term loan of â¹1,000 crore last September.
Summary:
US-based startup Current which makes app-controlled debit cards for teenagers has raised $1 million from venture capital firm Fifth Third Capital.
Summary:
IT Minister Ravi Shankar Prasad has said, "India's startup ecosystem may not be as old as that of some developed economies of the world, but...we are steadily outpacing all of them." Prasad added, entrepreneurs should develop solutions to problems a common man faces.
Summary:
British astronaut Tim Peake has said that Elon Musk and his space exploration startup SpaceX could put humans on Mars by 2040.
Summary:
Faridabad-based laundry startup UClean has raised $1 million from franchise and retail services provider Franchise India Holding, the startup confirmed.
Summary:
Delhi-based Indian Angel Network has invested an undisclosed amount in American video ringtones startup Vyng.
Summary:
The S-Class 350 d is IndiaâÂÂs first âÂÂBS VI compliantâÂÂMade in India, for Indiaâ vehicle.
Summary:
US President Donald Trump has confirmed his run for the elections in 2020 after he appointed Brad Parscale as his campaign manager.
Summary:
Summary:
Adding that he doesn't know many celebrities, he said he does get to meet many political leaders and "Nelson Mandela was the most impressive ever".
Summary:
Two men who hid in the landing gear of a New York-bound plane in Ecuador fell to their death shortly after takeoff on Monday, said authorities.
Summary:
Congress Spokesperson Priyanka Chaturvedi on Wednesday said P Chidambaram's son Karti Chidambaram's arrest is PM Narendra Modi-led government's "classic diversionary tactic" to hide their "own corrupt governance model".
Summary:
Former Bihar CM and Hindustani Awam Morcha founder Jitan Ram Manjhi has quit the National Democratic Alliance (NDA).
Summary:
The bacteria on Tesla could be considered a biothreat, or a backup of life on Earth, they said.
Summary:
Noida-based music streaming service Gaana is raising $115 million led by Chinese internet conglomerate Tencent Holdings, which will acquire a minority stake in the music startup.
Summary:
The man was caught after the Income Tax Department recently asked banks to physically verify over 100-year-old pensioners.
Summary:
The Shankaracharya of Kanchi Kamakoti Peetham, Sri Jayendra Saraswathi Swamigal, passed away at 82 on Wednesday.
Summary:
Belgium's capital Brussels will provide free public transport on days of excessive air pollution under new emergency rules.
Summary:
The US Supreme Court on Tuesday ruled immigrants who face possible deportation can be detained indefinitely without receiving bond hearings, even if they entered the country legally or are seeking asylum.
Summary:
The report titled 'Voices from Syria 2018' cited instances where women married officials for sexual services in order to receive food.
Summary:
North Korean leader Kim Jong-un and his late father Kim Jong-il used fraudulently obtained Brazilian passports to apply for visas to visit Western countries in the 1990s, according to reports.
Summary:
Jaaved Jaaferi, while condoling Sridevi's demise, tweeted, "Sridevi was so much like #MichaelJackson.
Pressure to perform since [childhood days]." "Extremely...introverted but exploded while performing, like 'that' was their life and not the one outside," he added.
Summary:
Actors Tiger Shroff and Disha Patani will recreate the 1999 Punjabi song 'Mundian To Bach Ke' in the upcoming film 'Baaghi 2'.
Summary:
Actress Kangana Ranaut has said she will break up with her boyfriend if he is not patriotic.
Last year, the actress had said that she is in a relationship and wants to get married.
Summary:
Playing without record goalscorer Cristiano Ronaldo, Real Madrid suffered a 0-1 defeat to 13th-placed Espanyol after a last-minute volley, which was deflected off defender Raphaël Varane, found the back of the net.
Summary:
The one-night stay will cost $1 but passengers will have to apply to participate in the programme.
Summary:
A man was removed from a plane in Indonesia for smoking a cigarette near the aircraft's engine while it was reportedly being refuelled.
Summary:
Mars could harbour life, scientists believe after finding bacteria in Chile's Atacama Desert that can lie dormant without rain for a decade before being 'reactivated'.
Summary:
An Ohio State University research has suggested that psychedelic mushrooms likely developed their "magical" properties to lower the chances of getting eaten by insects.
Summary:
A 70-year-old Madrasa teacher was arrested on Tuesday for allegedly raping a 9-year-old girl in Delhi.
According to Delhi Commission for Women Chief Swati Maliwal, the girl "has bled substantially and sustained critical injuries".
Summary:
Summary:
North Korean leader Kim Jong-un's half-brother Kim Jong-nam had told a friend in Malaysia his life was in danger, six months before he was killed, a police official told court on Tuesday.
Summary:
The moon will get its first 4G mobile network next year to allow lunar exploration vehicles to stream high-definition data back to a base station.
Summary:
Former Finance Minister P Chidambaram's son Karti Chidambaram was arrested at Chennai Airport by the CBI on Wednesday for reportedly not cooperating in the investigation of the INX Media money laundering case.
Summary:
India celebrates February 28 as the National Science Day every year to mark the discovery of the Raman Effect by Indian physicist CV Raman in 1928.
Summary:
Freedom fighter and Congress leader Dr Rajendra Prasad, who served as the President of India for 12 years from 1950 to 1962, remains the country's longest serving President.
Summary:
Baitha was allegedly driving in an inebriated condition when he lost control of the vehicle outside a government school.
Summary:
He added that PM Modi and BJP were answerable for corruption in India.
Summary:
The court's ruling came after an appeal was filed by two German states against bans imposed by local courts.
Summary:
The Opposition slammed CM Fadnavis, accusing him of furthering the singing career of his wife, who was also the playback singer for the video.
Summary:
North Korea on Tuesday called the US a "nuclear criminal" and said that it should dismantle its arsenal before other nations in a step towards a nuclear-weapons-free world.
Summary:
A video of the incident shows a crane lifting the car and moving it out of the way.
Summary:
Late actress Sridevi's childhood friend Pinky Reddy has said she spoke to Sridevi the day she was leaving for Dubai and revealed that she had fever and was on antibiotics.
"She was feeling tired, but she said that she has to go for the [family] wedding," Pinky added.
Summary:
Parineeti Chopra has said the biggest myth that people believe about actors is that they throw tantrums.
Parineeti further said, "We have to be careful about everything we do.
Summary:
The 2014 law lets people ask search engines to delist information about themselves from search results.
Summary:
After Justice Revati Mohite-Dere was transferred three weeks after she began day-to-day hearings in the Sohrabuddin encounter case, Congress President Rahul Gandhi tweeted, "The Sohrabuddin case claims yet another Judge." Gandhi also shared a report titled, 'Fresh questions as judge who lifted media gag and slammed CBI is replaced'.
Summary:
Shiv Sena's Goa unit has accused BJP President Amit Shah of acting like a "kangaroo court" after he said the BJP will resolve the Mahadayi river dispute if it wins the Karnataka Assembly elections.
Summary:
At least one person was killed and three others were injured as workers from the ruling Naga People's Front and Nationalist Democratic Progressive Party clashed at a polling booth in Nagaland on Tuesday.
Summary:
Founded in 2012, the startup makes video doorbells and security cameras that connect to users' phones or computers.
Summary:
The Punjab Police has arrested two 40-year-old priests for allegedly supplying guns in Sangrur district.
Summary:
Swamy shared court documents from an earlier case against Tharoor which claim that he had disputed being a Hindu.
Summary:
The central government has sanctioned â¹1,200 crore for schemes to tackle air pollution in Delhi, NITI Aayog CEO Amitabh Kant has said.
Summary:
However, the IIT authorities said the Sanskrit song was chosen by the students themselves.
Summary:
Rejecting bail plea of a 76-year-old woman accused of killing her one-month-old granddaughter, the Bombay High Court observed that age cannot be a criterion for granting bail to the accused.
Summary:
The accused said that despite having given her food, the woman kept coming back.
Summary:
Thai authorities on Monday arrested a group of 10 Russians who were allegedly running a sexual training class in the town of Pattaya.
Summary:
The armed officer, who US President Donald Trump termed a "coward" for failing to confront the Florida school shooter, believed that the gunfire came from outside the school, his lawyer has said.
Summary:
An Australian police officer who called Indians "peasants" has resigned from his post after a newspaper published several sexist, racist and pornographic posts by him.
Summary:
New Zealand's Prime Minister Jacinda Ardern on Tuesday announced reinstating the post of Minister for Disarmament and Arms Control amid tensions in the Asia-Pacific region due to North Korea's nuclear programme.
Summary:
The mortal remains of late actress Sridevi have arrived in a chartered plane to India hours after the body was released to her family members.
Summary:
Taiwan's Premier Lai Ching-te has urged citizens to avoid hoarding toilet paper after reports emerged that its prices would rise by 30% from next month.
Summary:
Notably, RBI is supposed to audit scheduled banks every year.
Summary:
PNB has lost around 40% of its market capitalisation since February 14, the day it disclosed the fraud to the public.
Summary:
Uncapped 27-year-old Indian batsman Mayank Agarwal has broken Sachin Tendulkar's 15-year-old record of most runs by an Indian in a List A tournament.
Summary:
The turnout is expected to rise in Meghalaya as the Election Commission has not received data from all polling booths in the state, officials said.
Summary:
The Home Affairs Ministry on Tuesday denied the presence of ISIS in Kashmir even as the militant group claimed responsibility for the killing of a policeman.
Summary:
The party elected Nawaz Sharif as the "leader for life".
Summary:
While Dubai media reports claimed that traces of alcohol were found in Sridevi's blood, Swamy said he believed that her death was a case of murder.
Summary:
Summary:
While talking about the evolution of Indian films, Nawazuddin Siddiqui said, "I think only the heroes can become stereotypical, not actors." "The Bollywood hero who sings and dances with a heroine by his side, fights but still manages to look good after a beating...has become a stereotype.
Summary:
The complainant alleged that the accused, Ajay Kumar Gaur, demanded a bribe of 5% for a loan of â¹10 lakh.
Summary:
Nasri is currently without a club.
Summary:
Team India captain Virat Kohli and his Proteas counterpart Faf du Plessis have donated â¹5.5 lakh to the Cape Town Water Crisis on behalf of both the teams for drought relief efforts in Cape Town.
Summary:
Andhra Pradesh CM Chandrababu Naidu on Monday reportedly deleted a tweet paying "tributes to revolutionary freedom fighter" Veer Savarkar on his death anniversary.
Summary:
Addressing a rally in poll-bound Karnataka, PM Narendra Modi on Tuesday said there was 'Seedha Rupaiyaa' governance and not "(CM) Siddaramaiah governance" in the state.
Summary:
Claiming that the demonetisation plan was a failure, BJP leader Shatrughan Sinha tweeted, "Whom to blame?
Summary:
Kerala's CPI (M) government has withdrawn a case against six Left MLAs for vandalising the state Assembly in 2015.
Summary:
The Railway Ministry on Monday said it aims to install sanitary pad dispensers and incinerators at about 200 stations by International Women's Day on March 8.
Summary:
The Tamil Nadu government has ordered the St Joseph's Hospice in Chengalpattu to shut down, days after it used a truck to ferry two senior citizens along with a corpse and vegetables.
Summary:
The bridge was commissioned after the stampede and has been constructed by the Army.
Summary:
A 12-year-old Dalit boy was hacked to death and his mother and sister suffered head injuries after they were attacked by unidentified assailants in a village near Tamil Nadu's Viluppuram, police said.
Summary:
The BJP has suspended Baitha's membership for six years.
Summary:
Speaking at the India-Korea Business Summit on Tuesday, Prime Minister Narendra Modi said that the Centre was working towards transforming India from an "old civilisation to a modern society, an informal economy to a formal economy".
Summary:
Facebook has said that it has removed the page of Myanmar monk Wirathu, also dubbed as the 'Buddhist bin Laden', over his anti-Muslim stance.
Summary:
US President Donald Trump has called the World Trade Organisation (WTO) a 'catastrophe', accusing the trade body of making it tough for the US to do business.
Summary:
US President Donald Trump opposed India's import duty of 50% on Harley-Davidson motorcycles as the US does not tax Indian motorcycle imports.
Summary:
US-based Firestar Diamond Inc, controlled by PNB fraud accused jeweller Nirav Modi, filed for bankruptcy on Monday, along with its affiliates A Jaffe Inc and Fantasy Inc. Listing up to $100 million in assets and debt, Firestar blamed liquidity and supply chain challenges for bankruptcy after the nearly $2 billion fraud.
Summary:
Late actress Sridevi's cremation will take place at Vile Parle Seva Samaj Crematorium in Mumbai after 3:30 pm tomorrow, her family announced on Tuesday.
Summary:
Mehul Choksi-owned Gitanjali Group has reportedly not repaid working capital loans worth nearly â¹5,280 crore to a consortium of 31 banks.
Summary:
The Income Tax Department has seized as many as 173 paintings and art works during raids at four premises linked to PNB fraud accused Nirav Modi.
Summary:
UP-based Simbhaoli Sugars on Tuesday said it is "committed to clear all of its outstanding dues" of nearly â¹109 crore with Oriental Bank of Commerce (OBC) in due course of time.
Summary:
Warne's prediction came true when England scored 338/8 in reply to India's 338, and he was termed a 'genius' by then England captain Andrew Strauss.
Summary:
Having children adds eleven years to a woman's biological age and accelerates the ageing process more than smoking and obesity, according to a US-based study of over 1,900 women aged 20-44.
Summary:
The Indian Railways has decided that unutilised berths under the ladies quota will be offered to women passengers on the wait-list first and then to senior citizens.
Summary:
Speaking about his phone conversation with PM Narendra Modi regarding the tariff cut on Harley-Davidson motorcycle imports in India, US President Donald Trump said, "He (PM Modi) said it beautifully, he is a beautiful man." Trump joined his hands and mimicked PM Modi saying, "We have reduced it (import duty) to 75.
Summary:
Stating that pilgrims were "politically and economically" exploited during the UPA regime, he said airfare reduction will end the exploitation.
Summary:
When asked about the sexual misconduct allegations against her father US President Donald Trump, Ivanka Trump said, "I believe my father, I know my father.
I have that right as a daughter to believe my father".
Summary:
'The Legend Room' strip club in Las Vegas, US lets customers pay anonymously via Bitcoin and offers a discount for such customers.
Summary:
Customers can undertake transactions with the available balance but will have to complete the KYC before reloading the wallet.
Summary:
Vodafone CEO Vittorio Colao has said that Indian telecom regulator TRAI's new rule on predatory pricing is "not fair".
Summary:
Summary:
BJP MP Subramanian Swamy has said the facts reported in the media about actress Sridevi's death were inconsistent and that he thought it was a murder.
Summary:
Filmmaker Subhash Ghai, while condoling the demise of actress Sridevi, said, "She maintained her dignity and integrity as an actor, and a person, in this demanding industry." "She was a quiet lady who had a bundle of talent.
Summary:
Actor Shahid Kapoor has said he has won an award every time his wife Mira Rajput has accompanied him to award shows.
Summary:
Reacting to India Under-19 head coach Rahul Dravid taking a prize money cut to ensure parity among colleagues, a user wrote, "The Wall always stands tall." Other tweets read, "Rahul Dravid.
Summary:
Karnataka defeated Saurashtra by 41 runs in the Vijay Hazare Trophy final on Tuesday to win the tournament for the third time.
Summary:
A 25-year, $3 billion partnership with investment group Kosmos is in place for the new event.
Summary:
Reacting to Apple Co-founder Steve Wozniak's remark questioning creativity in India, a user tweeted, "Obviously he hasn't seen and experienced great Indian Jugaad!" Another user tweeted, "Indians are more creative than the world thinks we are.
Summary:
The team based their claims on a bacterium that survives deep underwater without sunlight in environments similar to Europa.
Summary:
BEST, which already has four electric buses, will receive all the 40 buses within the next nine months.
Summary:
The officer has also been directed to solve the ATM theft cases on priority.
Summary:
US' largest cable operator Comcast has offered to buy UK-based media giant Sky for $31 billion.
Summary:
Cricketer Yuvraj Singh-backed advisory firm Startup Buddy has invested in Bengaluru-based software-as-a-service (SaaS) solutions startup Trilyo.
Summary:
Dubai Police has cleared the release of actor Sridevi's mortal remains to the Indian consulate and her family three days after her death so that they can start the embalming process.
Summary:
The Dubai Media Office has announced that the police have closed the case on actress Sridevi's death following an investigation.
Summary:
Google CEO Sundar Pichai doesn't have authority over parent company Alphabet's overall resource allocation to Google, as per a report quoting SEC filings.
Summary:
Germany and France-based researchers have recorded 100 million distance values per second, demonstrating the fastest distance measurement so far.
Summary:
Police arrested four parents and imprisoned three for one day and one for two days.
Summary:
The Central Information Commission has asked the Centre to disclose the expenses incurred on chartering Air India aircraft for PM Narendra Modi's abroad visits from 2013-2017.
Summary:
A bride arrived at the groom's residence in Varanasi's Nayepur village in a horse-drawn cart, accompanied by the baaraat.
Summary:
Nearly 300 kg of ephedrine, an ingredient used to make meth, has been found hidden inside 21,000 highlighter pens in Australia.
Summary:
A 93-year-old woman from Italian town Noventa Vicentina set off for Kenya to volunteer at an orphanage on Monday.
The woman, Nonna Irma, had been giving donations to the Kenyan orphanage for years.
Summary:
Indian-origin American author Padma Lakshmi also condoled her demise in an Instagram story.
Summary:
Summary:
A German village has voted to keep a Nazi-era church bell that bears a swastika and the words "All for the Fatherland - Adolf Hitler".
Summary:
Ramdin cut a Mohammad Irfan delivery towards backward point, where Denly jumped to his right and grabbed the ball mid-air with his right hand.
Summary:
Jamaica's eight-time Olympic gold medal-winning sprinter Usain Bolt will lead the 'World XI' team in a charity football match against team 'England' as part of UNICEF's 2018 Soccer Aid. The match, featuring celebrities and former footballers, will be held on June 10 at Manchester United's home ground Old Trafford.
Summary:
More than 93 crore Windows malware, and over 1.4 crore cryptocurrency miner malware hits were detected in 2017, according to anti-virus company Quick Heal.
Summary:
Hyderabad-based startup Feel Good Innovations has developed car and bike seats which it claims can reduce jerks by 46% while driving.
Summary:
While fire and emergency services were called, the plane managed to land safely at the airport.
Summary:
The Italian capital city of Rome witnessed snow for the first time in six years on Monday as cold winds from Siberia moved across Europe.
Summary:
A hotel housed in a building that was constructed as a fortress in the 12th century has opened in Tel Aviv, Israel.
Summary:
Reacting to the hit-and-run case where a BJP leader allegedly mowed down nine children, Congress leader Renuka Chowdhury said that BJP doesn't care about children because they don't vote.
Summary:
Summary:
Astronomers have reported a stellar flare, an energetic burst of radiation from Sun's nearest star Proxima Centauri, which increased the star's brightness by 1,000 times for 10 seconds.
Summary:
A fire scare was triggered on Tuesday after security personnel detected smoke coming from a bag placed inside Telangana CM K Chandrashekar Rao's helicopter, minutes before take off.
Summary:
A government hospital in Gurugram was vandalised on Saturday night by the family members of a 78-year-old cancer patient after the hospital allegedly denied treatment to the man.
Summary:
The child's father punished him after he didn't attend school for a week.
Summary:
The dispensary, which will be overseen by expert veterinary doctors, will also have a mobile OPD to treat suffering stray animals.
Summary:
Diageo is launching a US limited edition of its Johnnie Walker Black Label Scotch featuring a woman called Jane Walker on the label.
Summary:
India had said it is important that Maldives returns to the path of democracy.
Summary:
and having a good job." "But where is the creativity?" Wozniak asked.
Summary:
Uttar Pradesh CM Yogi Adityanath on Sunday said that contrary to "dynastic politics, casteism and politics of appeasement" practised by previous governments, the state was now witnessing development after 15 years.
Summary:
Goldman Sachs-backed US mobile payments startup Circle on Monday announced that it has acquired cryptocurrency exchange Poloniex.
Summary:
Pakistani army reportedly used loudspeakers on Saturday at its Chakothi post along Line of Control (LoC) warning Indian villages to evacuate before opening fire.
Summary:
Saudi Arabia's King Salman bin Abdulaziz on Monday reshuffled some of the kingdom's top military and ministerial posts to elevate younger officials in key economic and security areas.
Summary:
A news channel in Russia mistakenly used footage from a video game in a tribute to the armed forces.
Summary:
The lawsuit claims that Craig "perpetrated a scheme" to seize Bitcoins mined by Dave, who died in 2013.
Summary:
A video shows late actress Sridevi dancing with her brother-in-law Anil Kapoor at the wedding of their nephew Mohit Marwah in Dubai.
Summary:
Reality television personality Kim Kardashian took to Instagram to share the first picture of her newborn daughter Chicago West.
The baby was born via surrogacy in January, as Kim had earlier suffered pregnancy-related complications.
Summary:
The restaurant managers called the vandal "ignoble" and believed the attack was due to jealousy.
Summary:
India has been ranked 47th out of 86 countries on the Inclusive Internet Index by the Economist Intelligence Unit (EIU), which was commissioned by Facebook.
Summary:
Buffett said Apple's ecosystem is strong to an "extraordinary degree" and users are locked in "psychologically and mentally" to its products.
Summary:
An Auckland-Sydney Jetstar flight was forced to turn back after takeoff because a clipboard left behind by an employee got sucked into the engine, it has been revealed.
Summary:
Summary:
Speaking at a session on India's fiscal reforms, Congress leader P Chidambaram has alleged the Centre's 56-inch chest approach was responsible for the degrading law and order situation in Jammu and Kashmir.
Summary:
Stanford University scientist Mark Jacobson, who claimed that renewable energy could power the entire US grid by 2050, has withdrawn a multimillion-dollar lawsuit against his academic critics.
Meanwhile, his critics had argued that the lawsuit was an attack on scientific freedom.
Summary:
Negative synergies between deforestation, climate change, and use of fire indicate a "tipping point" for the Amazon rainforests to flip to non-forest ecosystems if the deforested area increases by over 20%, according to a research in the journal Science.
Summary:
According to the suicide note recovered, the deceased was depressed after having failed the examination and decided to hang himself.
Summary:
The allegation was made by the sister's former roommate, who also claimed the accused's family had tried to force the victim into prostitution, police said.
Summary:
Addressing party workers in Uttar Pradesh's Gorakhpur, state Chief Minister Yogi Adityanath on Monday said that if caste-based politics wins, development will be defeated.
Summary:
A 25-year-old man has been arrested in Himachal Pradesh's Kangra district for allegedly raping a 3-year-old girl on Monday.
Summary:
The poles, which also have smart LEDs, will be operational by the end of March.
Summary:
Information and Broadcasting Minister Smriti Irani on Monday said public broadcaster Doordarshan should create quality content and improve its revenue generation through advertisements "to ease the burden on taxpayers".
Summary:
"#Russia has the influence to stop these operations if it chooses to live up to its obligations under the #UNSC ceasefire," US State Department spokesperson Heather Nauert tweeted.
Summary:
Bengaluru-based digital design startup Lollypop has raised an undisclosed amount in angel funding from Devi Shetty, Founder of hospital chain Narayana Health.
Summary:
PNB on Monday said the amount of fraudulent transactions, involving Nirav Modi and Mehul Choksi, could be over â¹1,300 crore more than the current estimate of â¹11,400 crore.
Summary:
American rapper 50 Cent has admitted he "never owned, and does not now own, a bitcoin account or any bitcoin." He added "the limited bitcoin transactions" that occurred earlier were converted to US Dollars based upon the then-existing exchange rate.
Summary:
Thailand's Wanheng Menayothin, who is known as the 'dwarf giant', is just one win away from equalling American former boxing champion Floyd Mayweather's undefeated 50-0 win-loss record.
Summary:
Facebook has agreed to pay $35 million to settle claims that its officers and directors misled investors prior to the company's Initial Public Offering (IPO) in 2012.
Summary:
The smartphone then recognised objects to instruct the car what to do.
Summary:
In its iOS 11 Security guide, Apple has revealed that it is using Google's Cloud Platform to store user information for its iCloud services.
Summary:
Experts claim the launcher, being prepared for the first launch of the Space Launch System in 2019, could be used only once.
Summary:
The Solar and Heliospheric Observatory (SOHO), operated by NASA and ESA, has captured the Sun's complete 22-year magnetic cycle.
Summary:
A 14-year-old boy in Delhi created a fake Supreme Court website and uploaded forged court orders in favour of his blind father on it.
Summary:
The Madhya Pradesh government will give an ex-gratia of â¹1 crore to the family of every soldier from the state who is martyred in line of duty, Chief Minister Shivraj Singh Chouhan announced on Monday.
Summary:
The court noted that the exclusionary clause was "ambiguous and discriminatory".
Summary:
A pub in England has cancelled a charity snail race scheduled to take place on Saturday after icy weather made the snails too slow to compete.
Summary:
Speaking about marriage plans with girlfriend Patralekhaa, Rajkummar Rao said, "It's not like both of us don't think about marriage, but we don't get stressed about it." "More than marriage, I think a relationship is about two people being happy...with each other," he added.
Summary:
She has also featured on the cover of the magazine's March edition.
Summary:
The iPads will be provided to passengers in premium classes if in-flight entertainment screens are unserviceable, an official said.
Summary:
A United Airlines plane skidded off the runway in United States' Green Bay last week after landing in icy conditions at 3 am.
Summary:
Delhi-based edtech startup Avishkaar Box has raised â¹5 crore in pre-Series A round of funding from Auxano Deals, the company confirmed.
Summary:
Tharoor further threatened to sue Amazon India over the issue.
Summary:
Prospective patients could use a smartphone app to scan the eyes and use the 'nanodrops' accordingly, said researchers.
Summary:
BJP worker Manoj Baitha, accused of mowing down nine children and injuring around 20 in Bihar's Muzaffarpur on Saturday, has been suspended by the party for a period of six years.
Summary:
US President Donald Trump expressed displeasure over high import duty on Harley-Davidson motorcycles in India, saying the US was "getting nothing" despite a reduction of customs duty to 50%.
Summary:
One person was injured on Tuesday in a bomb blast that took place at a polling booth in Nagaland's Tizit before voting began for the Assembly elections, reports said.
Summary:
Union Finance Minister Arun Jaitley has said that the agriculture credit flow target of â¹11 lakh crore for the Financial Year 2018-19 is achievable by the banking sector.
Summary:
Uttar Pradesh BJP MLA Surendra Singh on Sunday said that those who have reservations against saying Vande Mataram and Bharat Mata ki Jai are Pakistanis and have no right to live in India.
Summary:
While presenting the Prime Minister's Shram Awards in Delhi, Vice President Venkaiah Naidu on Monday said that India is the "economic hope of the globe".
Summary:
A fourth-year MBBS student at Government Medical College in Uttarakhand on Sunday committed suicide, and left a note reading, Ab mai thak gaee hoon (I'm tired now).
Summary:
Summary:
Earlier, officials in Pakistan's Chagai district had barred barbershops from "styling customers' beards with designs".
Summary:
A special court has allowed Enforcement Directorate to issue Letters Rogatory to six countries to identify and seize overseas business and properties of PNB fraud accused Nirav Modi.
Summary:
"Somebody bought them from me online through a credit card and they cancelled the credit card payment.
Wozniak further claimed that he bought the cryptocurrency so that he could "someday travel and not use credit cards, wallets or cash."
Summary:
Once the rider reaches the destination, the car heads off to find a parking spot for itself.
Summary:
A video which shows BJP President Amit Shah mimicking Congress President Rahul Gandhi while addressing a rally in poll-bound Karnataka has surfaced online.
Summary:
Voting for 60-member assemblies in Nagaland and Meghalaya began at 7 am on Tuesday.
Summary:
The Delhi High Court has set up special courts to deal with cases against Members of Parliament and Members of Legislative Assemblies.
Summary:
Union Minister CR Chaudhary on Monday said nearly three crore fake and duplicate ration cards were cancelled with the help of Aadhaar in the last three years of NDA government.
Summary:
The photos of the lynching that surfaced online had shown the tribal man with his hands tied with a lungi and his shirt torn.
Summary:
Over 70 South Korean MPs demanded public hanging of a North Korean General who visited the country to attend the closing ceremony of the Winter Olympics.
Summary:
As per reports, the cryptocurrency would help Iran evade the potential US sanctions.
Summary:
China may overtake the US as the world's biggest producer of nuclear power as it is expected to triple its nuclear capacity in the next 20 years, the International Energy Agency has said.
Summary:
As per reports, Abhishek Bachchan and his wife Aishwarya will be working together after eight years in film based on police officers.
Summary:
Pakistani actor Adnan Siddiqui, who worked with Sridevi in 'MOM', said he met her husband Boney Kapoor in Dubai after her demise and added, "He was crying like a baby." "The entire nation must be so sad.
Summary:
On Saturday, the US men's team won the gold medal in curling at Winter Games by defeating Sweden, just as the episode predicted.
Summary:
Reacting to India captain Virat Kohli giving opener Shikhar Dhawan a head massage in the dressing room during the third India-South Africa T20I, a user tweeted, "Kohli transferring his skills to Dhawan.
Summary:
New Zealand's Seth Rance, who featured in two ODIs and four T20Is for his country, helped rescue Greytown's White Swan Pub from a fire disaster.
Summary:
After naming Ravichandran Ashwin as captain of Kings XI Punjab, the team's director of cricket Virender Sehwag revealed the management had also considered Yuvraj Singh's name.
Summary:
Former England captain Kevin Pietersen took to Instagram to share a video of himself bottle-feeding milk to his adopted baby leopard in Raipur.
How beautiful is this baby Leopard," the caption read.
Summary:
A United Airlines flight was delayed on Sunday after a passenger opened the emergency exit and jumped down the slide at a US airport.
Summary:
Addressing a rally in Karnataka, BJP President Amit Shah on Monday said the Mahadayi river dispute will be resolved if the BJP is voted to power in the Assembly elections.
Summary:
As per the Delhi Excise Act, serving liquor to anyone below 25 years of age is an offence.
Summary:
Uttar Pradesh Police has arrested two people for allegedly making derogatory remarks against PM Narendra Modi, CM Yogi Adityanath and Hindu gods in a video posted on Facebook.
Summary:
Students at Tata Institute of Social Sciences (TISS) have been protesting against the management's decision to withdraw fee waivers provided to students under the government's pre-matric scholarship scheme.
Summary:
An Iraqi court has sentenced 16 Turkish women to death by hanging for joining the Islamic State.
Summary:
This came in response to the US' indictment charging 13 Russians over alleged meddling in the 2016 presidential elections.
Summary:
Former US First Lady Michelle Obama has announced that her memoir titled 'Becoming' will be published on November 13, 2018.
Summary:
Chairman of Essel Group and ZEE Subhash Chandra stated singer Papon has been barred for ever from their group.
Summary:
The CBSE has issued warnings to schools against withholding admit cards of students appearing for Class 10 and 12 board examinations.
Summary:
A video showing two Pakistani television news anchors fighting on camera between takes has surfaced online.
Reacting to the video a Twitter user wrote, "News shall be presented this way...boring news will become interesting.
Summary:
The Weinstein Company, co-founded by Hollywood film producer Harvey Weinstein, announced it will file for bankruptcy after a $500-million sale deal collapsed.
Summary:
Kothari's lawyers alleged that he was kept in illegal confinement for four days.
Summary:
The firm was reportedly hired by Nirav Modi around a month before the scam became public.
Summary:
Olympic silver medalist Gus Kenworthy, who represented USA in skiing at the 2018 Winter Olympics, slammed Ivanka Trump for attending the Games.
Summary:
During the 14th over of South Africa's innings in the final T20I, former India captain MS Dhoni advised Suresh Raina to not fire the ball at the stumps.
Summary:
Former India captain Sourav Ganguly has revealed that Sunil Gavaskar had advised him against choosing Greg Chappell as Team India's coach.
Summary:
Former India football team captain Bhaichung Bhutia officially announced his resignation from All India Trinamool Congress party on Monday.
Summary:
Home Minister Rajnath Singh has said Jainism can get rid of the ongoing violence in the world, adding that it is an era of competition and establishing dominion over each other.
Summary:
The identity of the governor wasn't revealed as the state has been "politically volatile".
Summary:
The Indian Army evacuated all the villages and moved the civilians to a government school, he said.
Summary:
Armed insurgents had attacked a school in the Yobe state.
Summary:
Dismissing claims that Pakistan's economy will suffer because of the country's reinclusion on a terrorist-financing watch list, PM Shahid Khaqan Abbasi's financial adviser Miftah Ismail said the US was seeking to "embarrass" the country.
Summary:
China is planning to build an ocean observatory in the Maldives for military purposes, according to reports.
Summary:
The government expects â¹15 lakh crore investments under the 'Sagarmala' infrastructure development programme, he added.
Summary:
Rajya Sabha MP Amar Singh has said Sridevi did not drink hard liquor while adding, "She used to have wine sometimes like me and many others in public life." This was following reports of alcohol traces being found in Sridevi's body.
Summary:
Model-reality TV star Kendall Jenner has shared pictures on her Instagram, where she is seen posing nude but with her hands over her chest.
Some social media users commented on Kendall's feet in the pictures.
Summary:
Pakistani actress Sajal Ali, who played Sridevi's stepdaughter in her Bollywood debut 'Mom', said that the last message sent to her by the late actress was, "I missed you beta." She added, "The last I spoke to her, she complained, "Aap mujhe call nahi karte ho"...
Summary:
Filmmaker Satish Kaushik has said that he always used to address late actress Sridevi as "ma'am" while adding, "She had that persona, you couldn't call her just Sridevi." He added, "She was like family...
Summary:
Talking about his wife Mira Rajput and daughter Misha, actor Shahid Kapoor said, "I can't see beyond my daughter and I think my wife is slightly jealous." He added, "She (Mira) is the apple of her dad's eye; just the way Misha is mine.
Summary:
A football match in Greece was abandoned after the visiting team Olympiacos' coach Oscar Garcia got injured after being hit by a toilet paper roll thrown by a fan of the home team before kick-off.
Summary:
Satirist Cyrus Broacha said he will not crack jokes on BJP President Amit Shah out of fear, adding that he didn't make fun of late Shiv Sena chief Bal Thackeray either.
Summary:
Notably, 11 security personnel and nine civilians have died due to ceasefire violations by Pakistan since the start of 2018, reports said.
Summary:
A Hizbul Mujahideen militant died at a police station in Jammu & Kashmir's Pulwama on Monday after his accomplice hurled a grenade in a bid to free him, police said.
Summary:
The leaders have opposed a government decision to collect tax on church properties considered commercial.
Summary:
The reports added that under the influence of alcohol, Sridevi reportedly lost her balance, fell into the bathtub and drowned.
Summary:
She had said that her salary was â¹5,000, while Rajinikanth, who was a newcomer then, was paid â¹2000.
Summary:
Three men in northern Pakistan have been found to still speak the Badeshi language, which was believed to have no active known speakers for three generations, according to a report.
Summary:
Summary:
Scott Westgarth, a 31-year-old British boxer, died after registering a win on points after 10 rounds against Dec Spellman in an English title eliminator on Saturday.
Summary:
Russian spies hacked computers at the Winter Olympics in South Korea and masked their IP addresses to make it look like it was carried out by the North, reports said.
Summary:
South African pacer Morne Morkel announced on Monday that he will retire from international cricket after the end of the Test series against Australia.
Summary:
Islamic seminary Darul Uloom Deoband has supported a fatwa issued by Saudi Arabian clerics against using Quran verses as ringtones.
Summary:
A traffic constable in Mangaluru was rewarded with â¹5,000 in an appreciative gesture by the Police Commissioner of Mangaluru for fixing a metal rod that was protruding from a road last week.
Summary:
Only 8-10% of the 144 arms deals in last three financial years were executed within the scheduled time, a Defence Ministry report has revealed.
Summary:
North Korea had sent 229 cheerleaders to the South during the Winter Olympics.
Summary:
Adani Capital, Cello Capital, and DLF Finvest are some of the companies listed by the Financial Intelligence Unit.
Summary:
Foreigners moving to Mumbai reported average yearly earnings of â¹1.4 crore, which is more than double the global expat average of â¹64.7 lakh, the survey showed.
Summary:
As per the videos, the chips could kill consumers.
Summary:
Aditi Rao Hydari has said that cinema is a director's vision, while adding, "I completely surrender to the director's vision and I am like putty in their hands and they mould me." She further said, "For me a film is all about the director...
Summary:
Summary:
Actress Juhi Chawla has said that when she named her daughter Jahnavi, she had called up late actress Sridevi.
Juhi tweeted, "I had called up Sriji to say my baby had the same name as her daughter!" She further wrote, "First Reema Lagoo, now Sridevi...
Summary:
Reacting to a picture shared by England wicketkeeper Jos Buttler, wherein former England captain Nasser Hussain can be seen walking on a street wearing just a towel, a user wrote, "Still trying to one up Ganguly for Lord's shirt off moment." Other users wrote, "Isn't that Vladimir Putin," and, "What possible context is there for this shot?
Summary:
A match between Juventus and Atalanta in Italy's top-tier football league Serie A was postponed after snow covered the pitch during blizzard-like conditions.
Summary:
A woman named Bethanie Heard proposed marriage to her girlfriend Nicholle Warren at the Gatwick Airport in England, surrounded by their friends, family and passengers.
Summary:
A house which is only 9 feet wide, and is one of the narrowest in Britain, has gone on sale for ã225,000 (â¹2 crore).
Summary:
The Shiv Sena will contest the 2019 Lok Sabha elections for two seats in Goa in alliance with the Goa Suraksha Manch (GSM), Shiv Sena spokesperson Sanjay Raut said on Monday.
Summary:
The AAP is planning to live stream all official meetings on its website and will present the proposal in the Delhi Assembly session in March.
Summary:
A research scholar at IIT Kharagpur has developed a disposable and flexible battery powered by bacteria from sewage water as part of an innovation contest, the institute said in a statement.
Summary:
BJP Rajya Sabha MP Vinay Katiyar on Sunday said that the Ram Temple in Ayodhya will be built where "Ram Lalla is resting".
Summary:
Slamming US Vice President Mike Pence for calling leader Kim Jong-un's sister Kim Yo-jong "the centre of a vicious regime", North Korea said that Pence's speech was "disgraceful behaviour".
Summary:
US-based IT firm American CyberSystems has said that it has acquired Hyderabad-based Guru Gowri Krupa (GGK) Technologies, for an undisclosed amount.
Summary:
The body will now reportedly be taken to Muhaisnah, a locality in Dubai, for embalming before being flown back to India.
Summary:
Jacqueline Fernandez paid tribute to late actress Sridevi by playing the song 'Hallelujah' on the piano.
I was always an admiring fan, she was always so gracious and kind to me." Jacqueline added, "There will never be anyone like her."
Summary:
The Northern Railways has decided to introduce an all-weather, glass-roof AC train with 40 seats in Kashmir in order to enhance tourism in the valley.
Summary:
A rickshaw puller in Assam's Karimganj district has established as many as nine schools for village children over the course of last four decades.
Summary:
The CBI has booked Punjab CM Captain Amarinder Singh's son-in-law Gurpal Singh in connection with an alleged bank fraud case against Simbhaoli Sugars Ltd. Gurpal Singh is the Deputy Managing Director of the BSE-listed company.
Summary:
Amid speculations that the US would meddle in the Russian presidential election this year, Deputy Foreign Minister Sergey Ryabkov said that US diplomats and staff will not be allowed to monitor the upcoming polls.
Summary:
A fashion house used drones to fly its luxury handbags down the runway at the Milan Fashion Week on Sunday.
Summary:
Three men were captured jumping on a trampoline in the middle of a road in United States' California.
Summary:
Turkey's Celebi, which earlier expressed interest in buying Air India's ground handling subsidiary, has said the national carrier's bid value will fall if buyers are asked to retain the employees.
Summary:
As per reports, Kareena Kapoor Khan will star in the Hindi remake of the 2018 Marathi film 'Aapla Manus'.
Summary:
Bollywood celebrities including Karan Johar, Farhan Akhtar, Tabu and Farah Khan were spotted visiting Anil Kapoor's house in Mumbai to meet late actress Sridevi's family.
Summary:
PNB fraud-accused Nirav Modi's lawyer Vijay Aggarwal has said he wouldn't advise Nirav to return to India for investigations because the "atmosphere was not conducive".
Summary:
The Enforcement Directorate (ED) will reportedly send judicial requests to 15-17 countries to obtain information about the overseas businesses and assets of Nirav Modi and Mehul Choksi.
Summary:
Canadian skier Dave Duncan, his wife and coach were on Saturday arrested for allegedly stealing a car in Pyeongchang, where the Winter Olympics just concluded.
Summary:
Ashwin, who had earlier represented CSK and RPS, was bought by Kings XI Punjab for â¹7.6 crore.
Summary:
Indian boxer Vikas Krishan won a gold medal and was named the best boxer of the tournament at the 69th Strandja Memorial boxing tournament in Bulgaria.
Summary:
Former sprinter and eight-time Olympic champion Usain Bolt on Sunday took to Twitter to announce that he has signed for a football club.
Summary:
Scientists at Harvard University have developed a flat, electronic, artificial eye that automatically stretches to focus and correct several factors contributing to blurry images.
Summary:
Earlier this month, four men were arrested at Delhi airport for allegedly smuggling gold worth over â¹3 crore.
Summary:
Aamir Khan-backed furniture rental startup Furlenco has raised â¹5 crore from existing investor, Mumbai-based Signet Chemical Corporation.
Summary:
Chennai-based underwater robotic inspection startup Planys Technologies has raised â¹6.7 crore as part of its â¹14 crore funding round, led by Infosys Co-founder Kris Gopalakrishnan.
Summary:
On being asked about extraterrestrial life, American physicist Michio Kaku has predicted that aliens will be peaceful, but they will "view us like we view forest animals".
Summary:
Summary:
Colorado had also installed similar bins after that state legalised marijuana in 2012.
Summary:
Urging the US to lower threshold for talks with North Korea, South Korean President Moon Jae-in called on the North Korean regime to show willingness towards denuclearisation.
Summary:
The chicken shortage occurred due to delayed deliveries after KFC switched to a new delivery partner.
Summary:
Actress Sridevi's body was found motionless by husband Boney Kapoor in the bathtub of a Dubai hotel, as per reports.
Boney reportedly flew to Dubai to "surprise" her.
Summary:
A question in Jammu and Kashmir Services Selection Board's (SSB) recent exam paper regarded Pakistan-occupied Kashmir (PoK) as 'Azad Kashmir', a term used by Pakistan to refer to the PoK.
Summary:
Actor Shahid Kapoor, who had his 37th birthday on February 25, tweeted, "Want to sincerely thank you all for your wishes...But today is the day to remember Srideviji." He further wrote, "Remember her for her brilliance and the magic she brought into our lives...All our love and wishes must be for her today.
Summary:
The AI completed a specific task in 26 seconds with 94% accuracy while the human lawyers took 92 minutes on average with 85% accuracy rate.
Summary:
Swedish scientists are working on technology to use artificial intelligence (AI) for making robot clones of dead people.
Summary:
A district court in Gurugram has rejected an arbitration petition filed by hotel room aggregator Zo Rooms over data theft against Oyo on the grounds that it lacked jurisdiction.
Summary:
The Indian Space Research Organisation (ISRO) has started working towards developing 'igloos' on Moon, called the lunar habitats, for safe keeping of astronauts.
Summary:
A 24-year-old man on Sunday underwent a successful heart and liver transplant in a single surgery that lasted for over 14 hours in Maharashtra.
Summary:
The Siliguri Municipal Corporation (SMC) in West Bengal has introduced a drone designed by a school student to combat dengue.
Summary:
Saudi Arabia's General Security division on Sunday allowed women aged between 25 and 35 to apply for the rank of soldier as part of the Vision 2030 social program launched by Crown Prince Mohammad bin Salman.
Summary:
Urging Pakistan to stop protecting internationally recognised terrorists such as Hafiz Saeed, former Pakistan envoy to the US Husain Haqqani said that the country's judiciary has lost all respect internationally.
Summary:
The Gladstone's Library in Wales' Flintshire town has 26 bedrooms where visitors can spend the night.
Meanwhile, the library, which opened over 100 years ago, is home to over 1.5 lakh books.
Summary:
Sand artist Sudarsan Pattnaik made a sculpture of late actress Sridevi at Puri beach in Odisha while tweeting, "Tribute to one of the brightest stars of Indian cinema #Sridevi." Meanwhile, Karnataka-based cartoonist Satish Acharya dedicated a sketch to the late actress.
Summary:
American airline Delta was criticised for refusing to provide US men's curling team, which won a gold medal at the Winter Olympics, an upgrade to fly back from South Korea.
Summary:
Indian shuttler Sameer Verma beat former world number two Jan O Jorgensen and clinched the men's singles title at the $150,000 Swiss Open Super 300 tournament.
Summary:
Competing for Kansas State University, 19-year-old Tejaswin Shankar broke his own national record by clearing a height of 2.28m.
Summary:
Talking about their process of developing and launching products, Apple CEO Tim Cook said the company takes its time to get every product right "because we don't believe in using our customers as a laboratory." "What we have that I think is unique is patience.
Summary:
No passenger was hurt during the incident, while the flight was delayed by three hours.
Summary:
American model Chrissy Teigen recently asked American Airlines if she could carry her "emotional support casserole" on her flight, tweeting, "please help me".
Summary:
An FIR has been registered against a Class 9 student from Rajasthan for allegedly inviting members of a WhatsApp group to join another group named 'Lashkar-e-Taiba'.
Summary:
A total of 213 projects of the Indian Railways that are delayed in execution cost an overrun of â¹1.73 lakh crore, government data has revealed.
Summary:
Around 40 transgenders have reportedly applied for the post of constable with Chhattisgarh Police, two weeks after the state released the recruitment advertisement.
Summary:
Summary:
An Assistant Engineer with public service broadcaster Doordarshan has been arrested for allegedly sunbathing in a naked state at Pune's Sinhagad fort.
Summary:
A 38-year-old courier delivery agent allegedly set himself on fire in front of a police station in Bengaluru after cops seized the bike he was riding.
Summary:
The statement comes after South Korea said that North Korean officials were open for talks with the US.
Summary:
Reliance Capital along with a string of investors has backed Rajasthan-based construction firm HG Infra Engineering in a $21.5 million funding round, ahead of its initial public offering (IPO).
Summary:
The pilots realised their mistake in 15 minutes and informed air traffic controllers, following which the flight landed safely.
Summary:
In an acting career spanning over fifty years, Padma Shri awardee late actress Sridevi won Best Actress Filmfare awards for her double roles in 'Chaalbaaz' and 'Lamhe'.
Summary:
The CBI has registered a case against Uttar Pradesh-based Simbhaoli Sugars for cheating the Oriental Bank of Commerce (OBC) of â¹109 crore.
Summary:
Thonakal, who required to finish the 42-km race within 2:12.50 to qualify, blamed improper marking on the route for failing to qualify.
Summary:
Congress has failed Puducherry on all fronts, PM Modi added.
Summary:
The statue was unveiled at AIADMK headquarters in Chennai on Jayalalithaa's 70th birth anniversary.
Summary:
BJP's Andhra Pradesh unit has passed a resolution demanding the ruling TDP government build the state High Court and a second capital at Rayalaseema, arguing the region is underdeveloped.
Summary:
A 20-year-old girl in Madhya Pradesh attempted suicide after a video of her father being harassed by a BJP minority cell head went viral.
Summary:
According to latest government data, women constitute only 7.28% of the country's police force.
Summary:
Parrikar had also presented the state Budget in Goa Assembly hours after being discharged on Thursday.
Summary:
Using the pretext of marriage, he would rape women and then ask them to take birth control pill, which were laced with cyanide.
Summary:
A Karnataka law college has sent a student on a 15-day leave after he posted a video criticising BJP President Amit Shah on Instagram, days after the leader visited their campus.
Summary:
Reacting to the alleged fraud at PNB, India's richest banker Uday Kotak has said that he feels "embarrassed as a banker".
Summary:
Summary:
Driven by former Chelsea striker Romelu Lukaku's goal and an assist, Manchester United defeated defending champions Chelsea 2-1 in the Premier League on Sunday.
Summary:
Virat Kohli, who received the ICC Test Championship mace on Saturday, said that Team India is still 80% in Tests despite being world number one.
To be a world-class side, you have to be 100%," he added.
Summary:
Germany ended the event at the second position with 14 gold, 10 silver, and seven bronze medals.
Summary:
Manchester City won their first trophy under coach Pep Guardiola after thrashing Arsenal 3-0 in the final of the English League Cup at the Wembley on Sunday.
Summary:
Canadian singer Neil Young has criticised Google for linking piracy websites for profit and depriving musicians of income.
Summary:
He added that he would apologise to the farmers in Karnataka if Gandhi could prove his claims.
Summary:
Union Minister Giriraj Singh on Sunday said people like AIMIM chief Asaduddin Owaisi have the 'jinn' of Pakistan founder Mohammad Ali Jinnah, adding that they want to break the nation.
Summary:
Accusing the CPI (Marxist)'s Kerala unit of misinterpreting his statement on alliance with Congress, CPI(M) leader Sitaram Yechury on Saturday said it was CPI(M) and not CPI (Kerala).
Summary:
The girl's father claimed that they had earlier informed the school of the boy's behaviour but the authorities did not take any action against him.
Summary:
The Indian Army on Sunday organised a rally in Haryana's Rohtak to address the grievances of veterans, war widows, and those disabled on duty.
Summary:
The letter came after commuters uploaded videos of Rath allegedly manhandling, abusing them and thrashing their properties.
Summary:
An anti-dumping duty is a tariff imposed on imports that are priced below fair market value.
Summary:
On being asked if he missed Steve Jobs, Apple Co-founder Steve Wozniak said, "Extremely.
Summary:
Veteran Bollywood actress Sridevi's mortal remains will be flown back to India on Monday, her husband Boney Kapoor's spokesperson has said.
Summary:
Actor Anupam Kher had pretended to be Sridevi's long-lost sister Prabhadevi by posing for the cover of Cine Blitz magazine as part of an April Fool's prank in 1991.
Summary:
Late actress Sridevi was paid â¹11 lakh for 1987 film 'Mr. India'.
Summary:
The last rites of actress Sridevi will take place at Pawan Hans crematorium in Juhu, Mumbai tomorrow at 11 am, as per reports.
Summary:
Late actress Sridevi, in an old interview with film magazine 'Stardust', had said her sorrow is that there might be no afterlife.
Summary:
Reacting to the sudden demise of his 1989 film 'Chandni' co-star Sridevi, Rishi Kapoor tweeted, "Henceforth no more Moonlit nights!
Alas!" He also tweeted, "How has Sridevi all of a sudden become the "body"?
Summary:
After taking a 15-year break, Sridevi returned to Bollywood with the 2012 film 'English Vinglish'.
Summary:
The actress is seen hugging her husband towards the end of the video.
Summary:
Dravid and other support staff members will now get â¹25 lakh each.
Summary:
The vehicle which killed nine children in an accident on Saturday belonged to BJP leader Manoj Baitha, RJD chief Lalu Prasad Yadav's son Tejashwi Yadav has said.
Summary:
The test was conducted at the Aeronautical Test Range at Challakere town in Karnataka.
Summary:
First announced in Budget 2018, government's GOBAR-Dhan Yojana aims to collect cattle and solid waste from farmers for sale to entrepreneurs who will convert it into manure, biogas and bio-CNG.
Summary:
Padma Bhushan awardee architect Hafeez Contractor has offered to design 19 railway stations across India for free as part of a redevelopment project by the Railways.
Summary:
The course material will be available in Hindi, English and Chinese, officials said.
Summary:
This comes after the US announced the 'largest-ever' sanctions on North Korea over its nuclear and ballistic missile programme.
Summary:
China's ruling Communist Party on Sunday proposed a constitutional reform which would allow President Xi Jinping to stay in office indefinitely.
Summary:
In 2014, the bank experienced a hack where 83 million accounts were compromised.
Summary:
Summary:
Mocking Donald Trump's suggestion to arm teachers to prevent school shootings, Avengers' actor Samuel Jackson called the US President a "m*thaf*k*a".
Summary:
Summary:
Former cricketer Virender Sehwag has apologised for his tweet on the tribal man killing in Kerala wherein he mentioned three Muslims accused in the case.
Summary:
Olympic Athletes from Russia (OAR), who won the ice hockey gold at the Winter Olympics, sang their country's anthem over the Olympic anthem being played, at the medal presentation on Sunday.
Summary:
Eight months after a 23-year-old man was found hanging at his female friend's house in Delhi, police have registered a murder case following a city court's order.
Summary:
A Block Development Officer (BDO) in Bihar's Supaul district has started a new initiative asking Hindu couples to take eight pheras at their wedding, an extra as a cleanliness pledge.
Summary:
Arguing that his salary was not enough, Philippine President Rodrigo Duterte said that he should be paid more because he has two wives.
Summary:
The company expects to roll out 5G services by 2019.
Summary:
Actress Sridevi's brother-in-law actor Sanjay Kapoor has revealed that she had no history of a heart attack while adding that her family is completely shocked due to her untimely demise.
Summary:
Sridevi was portrayed as the wife of an ageing widower in the film.
Summary:
Sridevi, who was at the peak of her career when the role was offered to her, had turned it down saying that it did not meet her stature.
Summary:
Recalling her last meeting with Bollywood actress Sridevi at screening of 'Padmaavat', Hema Malini said, "She looked lovely, happy and healthy and was her usual chirpy self." Hema added, "The news has left me in deep shock.
Summary:
In an Instagram post about the demise of actress Sridevi, filmmaker Karan Johar wrote, "I feel like Indian cinema just lost its smile." He said he was "heartbroken", adding, "Every time I met her I had a star-struck moment." He added, "I danced to 'Hawa Hawai' when I was in school...
Summary:
Actor Hrithik Roshan today tweeted, "I loved her, admired her so much.
Summary:
Late actress Sridevi will be last seen in Shah Rukh Khan's upcoming film 'Zero', where she features in a cameo appearance.
Summary:
Following the PNB fraud, RBI has asked banks to integrate SWIFT interbank messaging system with Core Banking Solution (CBS) by April 30.
Summary:
Boxing legend Muhammad Ali, who was then known as Cassius Clay, beat Sonny Liston in six rounds to be crowned the heavyweight world champion at the age of 22 on February 25, 1964.
Summary:
Talking about science and technology during his 41st 'Mann Ki Baat' address, Prime Minister Narendra Modi on Sunday said that it is human objectives which guide the outcomes of technology.
Summary:
He requested farmers to think of animal waste as a source of income and not garbage.
Summary:
"It is very challenging to privatise state-run banks as it requires an amendment to the law and involves large political consensus," he said.
Summary:
PNB has a cyber crisis management plan in place for customer protection, it added.
Summary:
Sharing a picture with Sridevi, Pakistani actress Sajal Ali wrote, "Lost my mom again." The actress played the role of Sridevi's stepdaughter in her Bollywood debut film 'Mom'.
Summary:
Summary:
Paying tribute to late actress Sridevi, Bollywood actor Akshay Kumar has tweeted, "Shocked beyond words to hear about the sad and untimely demise of #Sridevi." He added, "A dream for many, had the good fortune of sharing screen space with her long ago and witnessed her continued grace over the years.
Summary:
Unaware of the proceedings, Flekken was still inside the goal when Ingolstadt netted after their keeper re-started the game with a long-ball.
Summary:
Reigning Commonwealth Games champion Parupalli Kashyap beat Malaysia's June Wei Cheam in straight games in the men's singles final to clinch the Austrian Open International Challenge.
Summary:
English all-rounder Ben Stokes scored 12 runs in 22 balls and registered figures of 2/43 on his return to international cricket in England's first ODI loss against New Zealand on Sunday.
Summary:
Afghanistan's 19-year-old spinner Rashid Khan has become the number one bowler in both ODI and T20I cricket.
Summary:
US-based IT firm Unisys Corporation has launched a device called Digi-Pet which allows users to monitor their pets in aircraft cargo holds.
Summary:
The Colosseum in Rome was lit in red on Saturday in solidarity with persecuted Christians, particularly a Catholic woman named Asia Bibi.
Summary:
The number of cases in Supreme Court in which the Centre is a party has increased in the last one year, with the Law Ministry attributing the rise to GST and demonetisation.
Summary:
Regular occurrence of bank frauds and wilful defaults hamper the efforts for improving ease of doing business, Finance Minister Arun Jaitley has said.
Summary:
Industry body Assocham has said the alleged PNB fraud should not halt the entire system of corporate lending.
Summary:
Hyderabad-based pharmaceutical company SMS Lifesciences has said that it would acquire Mahi Drugs, which manufactures Active Pharmaceutical Ingredients (API), for an undisclosed amount.
Summary:
Mahindra and Mahindra will merge its logistics platform SmartShift with Mumbai-based truck rental startup Porter, the companies have announced.
Summary:
Late actress Sridevi was down with a fever of 103 degrees when she was shooting for the song 'Na Jaane Kahan Se Aayi Hai' from the 1989 film 'Chaalbaaz'.
Summary:
Late actress Sridevi was last seen at her nephew Mohit Marwah's wedding in Dubai.
Summary:
A family court in Delhi recently dismissed a man's divorce plea, saying he cannot take advantage of his own wrongs, as he committed extreme acts of sexual abuse and domestic violence on his wife.
Summary:
Summary:
After Sridevi's demise, actor Anupam Kher tweeted, "Am I having a horrible dream.
Sridevi no more?
Summary:
Another picture shows Sridevi with Anil Kapoor on sets of 1987 film 'Mr. India'.
Summary:
In a tweet mourning actress Sridevi's demise, the Twitter handle of Congress wrote, "An actor par excellence...She was awarded Padma Shri by UPA Govt in 2013." However, the tweet was later deleted after facing backlash from users.
Please stop politicising...death," wrote a user.
Summary:
Sridevi was reportedly found unconscious in the hotel washroom where she was staying and was taken to the hospital immediately.
Summary:
In the 4-0 league win against Alaves, Real Madrid forward Cristiano Ronaldo let teammate Karim Benzema take a penalty despite being only a goal short of registering 50th career hat-trick and his 300th La Liga goal.
Summary:
Indian captain Virat Kohli and wicket-keeper Mahendra Singh Dhoni have been rested for the upcoming Nidahas Trophy T20I tri-series featuring Sri Lanka and Bangladesh.
Summary:
Technology giant Apple's Co-founder Steve Wozniak has said he still earns $100 a week from the company as "token money".
Summary:
When asked about how he would like to be remembered, Apple Co-founder Steve Wozniak said, "That I did not change with wealth, that I did not seek wealth." He added that he cares about people who need help and tries to help everyone he can.
Summary:
Houston and Ferdowsi haven't received equity awards since they founded Dropbox, the filing said.
Summary:
Talking about the culture in India, Apple Co-founder Steve Wozniak said, "The culture here is one of success based upon academic excellence...
I see two Indias," he added.
Summary:
Norway plans to spend $13 million to upgrade the $9-million seed vault on an Arctic island built 10 years ago to protect the world's food supplies from doomsday scenarios.
Summary:
In his 41st radio address 'Mann Ki Baat', Prime Minister Narendra Modi on Sunday hailed India's achievements in the field of science ahead of National Science Day. The day is observed on February 28 in remembrance of CV Raman who discovered light scattering effect, PM Modi said.
Summary:
A care home in England has been slammed for organising a pole dance show for its elderly male and female residents.
Summary:
A restaurant in United States' Anaheim is launching an ice cream coated with 24 karat gold leaves.
Summary:
Summary:
Actress Shilpa Shetty has posted on Instagram, "You were the reason I became an actor...such a special, pure and kind soul @sridevi.kapoor will miss YOU".
Summary:
World's second costliest footballer Coutinho scored a long-range curler during Barcelona's 6-1 win against Girona on Saturday.
Summary:
Barcelona are 13 games away from becoming the first team since the 1930s to go unbeaten across a La Liga campaign.
Summary:
Messi has now scored against a record 36 opponents in La Liga.
Summary:
Veil works by encrypting a website before showing it on a user's screen and can be used on any browser.
Summary:
Summary:
The Enforcement Directorate (ED) on Sunday seized the farmhouse of RJD chief Lalu Prasad Yadav's daughter Misa Bharti after receiving the order of possession from the adjudicating authority.
Summary:
The International Olympic Committee has upheld its decision to not allow any athletes to march under the Russian flag during the closing ceremony at the Winter Olympics in Pyeongchang.
Summary:
Mourning the sudden demise of actress Sridevi, Priyanka Chopra tweeted, "I have no words.
can't stop crying." Katrina Kaif shared Sridevi's picture on Instagram and wrote, "My favorite actress...a legend...
Summary:
Amitabh Bachchan tweeted that he was feeling uneasy before the news of actress Sridevi's demise was reported, causing Twitter users to think he had a premonition about her death.
Summary:
PM Narendra Modi has expressed his grief over the untimely demise of actress Sridevi, who passed away aged 54.
In a tweet by the official Twitter handle of PMO, PM Modi said, "She was a veteran of the film industry...
Summary:
Nawaz gave away just four runs in his spell against Lahore Qalandars, bowling 20 dot balls in the process.
Summary:
Talking about technology's impact on people's privacy, Apple Co-founder Steve Wozniak said, "Technology is taking away our privacy.
Wozniak, who is currently visiting India, also said technology won't take away jobs, but "the next generation will have different kinds of jobs."
Summary:
During an event in New Delhi on Saturday, Apple Co-founder Steve Wozniak, said, "I can never stand Donald Trump.
Summary:
Summary:
Addressing the nation in this month's 'Mann Ki Baat', Prime Minister Narendra Modi on Sunday said that the country is moving from women development to women-led development.
Summary:
Children in South Sudan are forced to rape their relatives as well as watch them being murdered in order to remain alive, the UN Human Rights Commission has said.
Summary:
The UN Security Council on Saturday unanimously approved a 30-day ceasefire resolution in Syria to allow for humanitarian aid deliveries and medical evacuations.
Summary:
More than 500 civilians have been killed since the Syrian government began air strikes in eastern Ghouta on February 18, the Syrian Observatory for Human Rights said.
Summary:
A bank employee in the UAE reportedly embezzled $5.4 million from the bank for her lover and his brothers.
Summary:
A cat in France has grey and black fur divided down the middle of his face.
Summary:
Veteran actress Asha Parekh has said that all the major filmmakers during her time rushed to sign her for movies since she guaranteed box office success.
Summary:
Mourning the sudden demise of Sridevi, actor and politician Kamal Haasan tweeted, "Sadma's lullaby haunts me now...We'll miss her." She was his co-star in the 1983 film 'Sadma'.
Summary:
Actress Jennifer Lawrence called her friendship with reality TV star Kim Kardashian one-sided.
Summary:
Summary:
Bhuvneshwar Kumar took seven wickets in the three T20Is against South Africa to set the record for the most wickets by an Indian pacer in a bilateral T20I series.
Summary:
A streaker, with 'Peace + Love' written across his chest, crashed into the Olympic skating rink wearing only a pink tutu at the Winter Games in Pyeongchang.
Summary:
IndiGo on Saturday said it will comply with the Supreme Court order and shift some of its flights from Delhi airport's Terminal 1 to Terminal 2 in the coming weeks.
Summary:
Karnataka CM Siddaramaiah has said that it will not be a surprise if Prime Minister Narendra Modi too escapes from India like fraud-accused jeweller Nirav Modi and ex-IPL Chairman Lalit Modi.
Summary:
"Since Independence, I've never seen an Army Chief making comment on political parties.
Summary:
Congress leader Shashi Tharoor on Friday likened the National People's Party (NPP), which has allied with the BJP in poll-bound Meghalaya, to a "tail that wags whenever the dog barks".
Summary:
A video showing several guests at a wedding in Uttar Pradesh's Agra thrashing the Disc Jockey (DJ) and his colleagues for refusing to play music after 10 pm has surfaced online.
Summary:
The move is aimed at ensuring that students get time to pursue other activities for their all-round development.
Summary:
A 15-year-old girl was allegedly attacked by right-wing groups in Kerala after her 18-year-old sister posted a poem on Facebook questioning menstruation taboos.
Summary:
The woman was arrested after a person confessed to having witnessed the crime.
Summary:
Late actress Sridevi began her career as a child artiste in the South Indian film industry.
Her first Hindi film as a lead actress was 'Solvaa Saawan' in 1979.
Summary:
Sridevi, husband Boney Kapoor and her younger daughter Khushi Kapoor were in Dubai to attend a family wedding.
Summary:
India will next play a T20I tri-series against Sri Lanka and Bangladesh in March.
Summary:
Since 2007, Dwarka Das availed various credit facilities from OBC using Letters of Credit by foreign banks to pay off creditors for purchasing precious metals.
Summary:
The Ministry of External Affairs had served a notice to Nirav Modi seeking response as to why his passport shouldn't be revoked.
Summary:
India's first woman International Olympic Committee member Nita Ambani on Saturday presented medals to the top two finishers of Alpine Skiing team event at the Winter Olympics in Pyeongchang, South Korea.
Summary:
After a fan club shared a tweet detailing Sachin Tendulkar's achievements on the 24th date, the former cricketer said, "Didn't realise it until now but the 24th is a lucky date for me.
Summary:
Rajasthan Royals, who are making a return to the IPL after a two-year suspension, have named Steve Smith as their captain for theÃÂ upcoming season.
Summary:
PM Narendra Modi launched the 'Amma scooter scheme' in Tamil Nadu's Chennai on the occasion of late CM Jayalalithaa's 70th birth anniversary on Saturday.
Summary:
Stating everyone has the right to practise their faith, Uttar Pradesh CM Yogi Adityanath on Saturday said being a Hindu, he had the right to visit religious places such as Ayodhya and Mathura.
Summary:
Odisha claims that Rasagola originated in the state over 800 years ago.
Summary:
Summary:
Ravikanth Perepu, the director of Telugu film 'Kshanam' of which Tiger Shroff's 'Baaghi 2' is a remake, has expressed his disappointment on not giving the credit to the original script writer in the recently released trailer.
Summary:
He said this while talking about Bollywood actors and their banter over watching football matches.
Summary:
Padma Shri awardee Manoj Joshi has said he did buffoonery on screen and senseless roles in films just for survival.
Summary:
Virat Kohli on Saturday received the ICC Test Championship mace on behalf of Team India for the second consecutive year for being the number one Test team.
Summary:
Virat Kohli will not be playing the T20I series decider against South Africa at Cape Town due to a stiff back.
Summary:
Indian woman cricketer Mithali Raj smashed more than two sixes for the first time in her 18-year international career on Saturday.
Summary:
This comes after Germany's ice hockey team defeated nine-time Winter Olympics champions Canada 4-3 in the men's semi-finals.
Summary:
India Women defeated South Africa Women by 54 runs in the fifth T20I at Cape Town on Saturday to win the five-match series 3-1.
Summary:
"It caused a little bit of awkwardness in my running gait and the boys...they don't miss anything," said Bancroft.
Summary:
The Maharashtra Women and Child Development Department has launched an online portal for people interested in sponsoring a year-long supply of sanitary pads for rural schoolgirls for â¹182.40.
Summary:
Hyderabad's English and Foreign Languages University has barred five students from appearing in its entrance exam over the students' decision to participate in demonstrations at the campus, officials said.
Summary:
Accusing the CBI and the ED of harassing him and his son, Senior Congress leader P Chidambaram has moved the Supreme Court to seek protection of his Fundamental Rights.
Summary:
While a Taliban attack on a military base in Farah province killed 18 soldiers, a suicide attack near Kabul's diplomatic area killed three people.
Summary:
Thomas Whitaker was convicted of capital murder in connection with the killings of his mother and brother in 2003.
Summary:
Summary:
Steve Jobs had invested $5 million in animation film studio Pixar after he had left Apple in 1985, and became a billionaire for the first time when Pixar went public in 1995.
Summary:
A 14-year-old boy in Indonesia has claimed to have "laid" 20 eggs in the last two years, reports said.
Summary:
Singer Papon has announced that he has quit as the judge of 'The Voice India Kids 2' following the controversy surrounding him kissing a minor girl on the show's sets.
Summary:
This comes after reports claimed that Kohli might terminate his contract with PNB over the $1.77-billion fraud case against jeweller Nirav Modi.
Summary:
Indian gymnast Aruna Budda Reddy has become the first Indian to win an individual medal at the Gymnastics World Cup. Aruna achieved the feat by securing bronze in the women's vault event with 13.649 points to finish behind gold medallist Slovenia's Tjasa Kysslef and Australia's Emily Whitehead, who finished second.
Summary:
Calling Musk a "very good salesman", Wozniak said, "I like Elon Musk very much...
Summary:
Talking about Steve Jobs, Apple Co-founder Steve Wozniak said the former "didn't know anything about insides of a computer".
"I knew Steve Jobs for five years before Apple.
Summary:
Talking about Tesla CEO Elon Musk, Apple Co-founder Steve Wozniak said, "I like him very much.
Summary:
Senior Congress leader Kapil Sibal on Saturday said PM Narendra Modi was the world's costliest 'chowkidar' (watchman) and questioned why bank frauds were happening under his "vigil".
Summary:
Nine students, waiting to cross the road after their school ended, were killed after a speeding SUV ran over them and crashed into the school building in Bihar's Muzaffarpur on Saturday.
Summary:
Garo National Liberation Army (GNLA) chief Sohan D Shira, dubbed as Meghalaya's most-wanted terrorist, was shot dead in an encounter with security forces in East Garo Hills on Saturday.
Summary:
The move is being criticised as a reflection of President Donald Trump's policies against the entry of immigrants into the US.
Summary:
The study further revealed that 43% respondents were sexually touched without their consent.
Summary:
The attack comes four years after the Boko Haram kidnapped more than 270 girls from a school in the town of Chibok.
Summary:
Steve Jobs, who Co-founded technology giant Apple, started the company by selling his Volkswagen bus for $1,500.
Summary:
Amitabh Bachchan confused Ranbir Kapoor with Sanjay Dutt in the teaser of the biopic on Dutt, revealed film critic Rajeev Masand.
Summary:
Rani Mukerji will be hosting the first screening of her film 'Hichki' for 319 school teachers representing 260 plus schools from across the country.
Summary:
Twitter users slammed Gauahar Khan after she criticised singer Papon for kissing a minor girl, while writing, "Thank god...you didn't say it's overreaction!" Gauahar had once supported Bigg Boss 11 contestant Aakash Dadlani's act of trying to forcibly kiss Shilpa Shinde and called it 'overreaction'.
Summary:
Summary:
Rajkummar Rao took to Twitter to respond to a tweet by a media house on him and his girlfriend Patralekhaa, in which she was not tagged but was simply referred to as Rao's girlfriend.
Summary:
Malayalam actress Priya Prakash Varrier, who shot into limelight after the clip of her wink from a song's video went viral, met cricket legend Sachin Tendulkar at an Indian Super League match on Friday.
Summary:
"I truly wish I could take back (the moment)," said Larocque, apologising later.
Summary:
A one-day-old baby boy went missing from a hospital in Karnataka's Kolar in the early hours of Saturday.
Summary:
Myanmar has destroyed 55 villages previously inhabited by the Rohingyas, which may destroy evidence of crimes against the community, according to the Human Rights Watch (HRW).
Summary:
The twin attacks took place near the President's residence and the victims mostly included palace guards and guards of officials.
Summary:
The Vatican is launching an exorcism training course for priests amid a three-fold rise in the demand for services of exorcists in Italy.
Summary:
Commonwealth Games champion Parupalli Kashyap defeated seventh seed Victor Svendsen of Denmark to enter the semifinals of the Austrian Open International Challenge.
Summary:
Bank of India has 314 wilful defaulters who owe â¹6,104 crore to the bank.
Summary:
Summary:
It earlier seized nine cars, including a Rolls Royce Ghost, and Porsche Panamera, belonging to Modi.
Summary:
He further said that ultimately the "truth shall prevail".
Summary:
Sachin Tendulkar and Chris Gayle scored their respective ODI double hundreds on 24 February, five years apart.
Summary:
Apple has said it is required to store keys for the Chinese iCloud accounts in China itself in order to comply with China's new laws.
Summary:
Microsoft has opened a new $165 million campus in Dublin, Ireland, which features a digital lake, an LED waterfall and an indoor mountain.
Summary:
Tamil Nadu CM Edappadi Palaniswami today unveiled a statue of late CM J Jayalalithaa at AIADMK headquarters in Chennai on her 70th birth anniversary.
Tamil Nadu government's Amma Two-wheeler Scheme will also be launched on the occasion.
Summary:
NASA-funded researchers at Florida Polytechnic University are developing a spacesuit component for astronauts that would monitor their mood and adjust their environment to keep them "happy" in space.
Summary:
US President Donald Trump's son Donald Trump Jr on Friday dropped a planned speech on foreign affairs in India and instead held a 'fireside chat' in which he spoke about his business.
Summary:
After President Ram Nath Kovind was invited to attend Aligarh Muslim University's convocation ceremony, the student union has said they won't allow any politician who has been a member of RSS into the university.
Summary:
China's insurance regulator on Friday said that it will take control of private insurer Anbang Insurance Group for a year.
Summary:
US President Donald Trump joked about his bald spot by saying that he tries like "hell" to hide it.
Summary:
Australia's PM Malcolm Turnbull has refused to offer any advice on gun control to the US.
Summary:
Rapper Badshah, along with singer Aastha Gill, has sung a song titled 'Happy Happy' for Irrfan Khan starrer 'Blackmail'.
Summary:
Shahid Kapoor reportedly turned down an offer from a brand which wanted to cast his one-year-old daughter Misha in an advertisement.
Summary:
It alleged that Singla dishonestly induced the bank for getting the loan on false representation by forging documents.
Summary:
This comes after jeweller Nirav Modi was accused in the â¹11,300-crore Punjab National Bank fraud.
Summary:
Pakistan Super League showed Barbados-born pacer Jofra Archer as a Pakistani cricketer in the Quetta Gladiators' line-up ahead of their match against Karachi Kings on Friday.
Summary:
German carmaker BMW on Friday said it will recall 11,700 cars to fix their engine management software as it discovered that an update was mistakenly assigned to certain unsuitable model versions.
Summary:
Contrary to previous studies that suggested Moon's water is concentrated around poles, a new analysis of data from India's Chandrayaan-1 mission and NASA's Lunar Reconnaissance Orbiter found it is widely distributed across the surface.
Summary:
UK-based project 'The Wayback' has designed a virtual reality experience to trigger memories and emotions in dementia patients and help them re-engage with caretakers.
Summary:
The police arrested a man six hours after he kidnapped a two-year-old girl from outside her father's shop in Mumbai.
Summary:
Kerala government has announced â¹10 Lakh ex-gratia to the family of the tribal youth who died after being beaten up by a mob in Palakkad district on Thursday.
Summary:
A former German Catholic priest has been sentenced to eight and a half years in prison for 108 counts of child sex abuse and possession of child pornography, according to reports.
Summary:
Markets regulator SEBI has ordered India's largest private lender HDFC Bank to complete an internal investigation in three months to find out people responsible for leaking financial information through WhatsApp. The regulator found inadequate controls at HDFC as prima facie reason for the leak.
Summary:
The minor girl who was kissed by singer Papon on the sets of 'The Voice India Kids' has defended the singer over the act.
The girl added, "Everybody saw that he kissed me as a kid.
Summary:
Pakistan is expected to be placed on the 'grey list' from June this year.
Summary:
Apple CEO Tim Cook reportedly offered a part of his liver to late Co-founder of the company, Steve Jobs, who was suffering from a type of pancreatic cancer in 2009, as per a biography on Jobs.
Summary:
Saudi Arabia is holding its first-ever jazz, food and arts festival in the capital city of Riyadh.
Summary:
All India Bank Employees' Association (AIBEA) has said the RBI Governor Urjit Patel should take up "moral responsibility" for $1.77-billion PNB fraud and resign from his post.
Summary:
Uber CEO Dara Khosrowshahi has said that India's Prime Minister Narendra Modi is his favourite entrepreneur.
Summary:
Pakistan on Friday said it had arranged a visit of defence experts of six countries to the Line of Control (LoC) to brief them about India's "atrocities".
Summary:
India and Canada have agreed to work together against Sikh terror outfits Babbar Khalsa International and the International Sikh Youth Federation (ISYF).
Summary:
Welcoming Haryana Education Minister's decision to add Gayatri Mantra in school's morning prayers, state Chief Minister Manohar Lal Khattar said this would increase the level of education, ethics, and culture in the education system.
Summary:
An armed officer who did nothing to stop the Florida school shooter last week "certainly did a poor job" and might have been a "coward", US President Donald Trump has said.
Summary:
The US has announced that it will open its embassy to Israel in Jerusalem on May 14 this year, coinciding with Israel's 70th Independence Day. The US in December last year became the world's first country to recognise the status of Jerusalem, which is claimed as the capital by both Israel and Palestine.
Summary:
Video of the celebration shows a man dancing and singing while playing the dhol, with the passengers cheering him on.
Summary:
According to reports, actor Varun Dhawan reduced his fee by 50 percent for Shoojit Sircar's film 'October'.
Summary:
Actor Salman Khan will reportedly be producing a television show revolving around the lives of Mumbai Police officials.
Summary:
Raveena Tandon, while slamming singer Papon for kissing a minor girl, tweeted, "Disgusting!
This man should be arrested!" Lyricist Kausar Munir wrote, "Forcibly 'kissing' an 11yr old girl-child is not fatherly affection.
Summary:
The National Commission for Protection of Child Rights (NCPCR) on Friday issued a notice to singer Papon and TV channel &TV over Papon kissing a minor girl on the sets of a show which is aired on the channel.
Summary:
South African pacer Lonwabo Tsotsobe, who was banned from cricket for eight years over a match-fixing scandal in 2015, now works as a DJ.
They think I'm down and out but I'm not," Tsotsobe said.
Summary:
The Indian basketball team registered its third straight loss in the Asian qualifiers for the 2019 FIBA World Cup, leaving it in the last position in its group.
Summary:
Apple devices at a repair centre in California, US have been making fake emergency calls to 911 multiple times a day.
Summary:
After Delhi Police seized CCTV recordings from CM Arvind Kejriwal's residence in connection with the alleged assault on Chief Secretary Anshu Prakash, the police said the recordings were running behind by 40 minutes and 42 seconds.
Summary:
Researchers at the Indian Institute of Technology Roorkee have discovered the antibacterial properties of a natural compound chlorogenic acid, an aromatic compound found in many plant species including coffee.
Summary:
A new genetic study has found that no wild horses currently exist as the only known wild population is actually a descendant of the earliest-known domesticated horses.
Summary:
An 11-year-old boy in Telangana on Friday told the police about the torture his alcoholic father regularly inflicted on him, his younger sister, and his mother, leading to the arrest of his father.
Summary:
Major Dogra was seen in full Army uniform to pay last tributes to her husband Wing Commander Dushyant Vats, who died in an Indian Air Force helicopter crash on February 15.
Summary:
Pronouncing the judgment on a plea seeking an investigation into auditing firm PricewaterhouseCoopers for their role in Satyam scam, the Supreme Court told the Centre that badly done auditing has led to scandals in India.
Summary:
The World Trade Organisation (WTO) has ruled that South Korea's continued ban on import of seafood from Fukushima after the 2011 nuclear disaster and other parts of Japan amounts to the nation taking discriminatory measures.
Summary:
The US state of Indiana has passed a resolution recognising the contributions of Sikhs across the state and the country.
Summary:
The CBI has booked Dwarka Das Seth International for the alleged fraud, six months after OBC filed a complaint.
Summary:
In a letter to his employees, fraud-accused Gitanjali Gems owner Mehul Choksi said they should look for other "career opportunities" as he cannot pay salaries anymore.
Summary:
Sachin Tendulkar hit the first-ever ODI double hundred against South Africa on February 24, 2010, in the 2,962nd ODI, 39 years after the first-ever ODI was played.
Summary:
Athlete Jithin Paul became the first Indian athlete to be banned by the National Anti-Doping Agency for possession of a prohibited substance.
Summary:
Czech Republic's Ester Ledecka became the first woman to claim gold medals in two sports at a Winter Olympics after claiming her second one in a snowboarding event at the PyeongChang Winter Games on Saturday.
Summary:
Harvard researchers have developed an artificial eye which combines a metalens with an electronically controlled muscle.
Summary:
digital." Filled by Jobs himself, the application is estimated to fetch over $50,000.
Summary:
Google on Friday announced a three-day 'Developer Students Club' Summit in Goa, which aims to impart knowledge about latest technologies amongst students.
Summary:
In its filings, Dropbox revealed it incurred net losses of $111.7 million in 2017, down from $210.2 million in 2016.
Summary:
The chat reportedly includes two videos, with one showing policemen thrashing a man dressed like a politician and the other shows UP CM Yogi Adityanath defending police encounters.
Summary:
US President Donald Trump's eldest son Donald Trump Jr, who is on a visit to India, has said that he loves the Indian media as it is "mild and nice".
Summary:
Mane said he has also given these toilets as wedding gifts to girls who can't afford to build them.
Summary:
Following the arrest, Punjab Police has approached the government to extradite Romi.
Summary:
The charities of 26/11 Mumbai terror attack mastermind Hafiz Saeed's Jamaat-ud-Dawa (JuD) and Falah-e-Insaniat Foundation (FIF) are operating freely in Pakistan despite being banned by the country's financial regulatory body, according to reports.
Summary:
The channel &TV, while speaking on the row over singer Papon kissing a minor girl in a show aired on its network, said it extends its support to all parties who are impacted by this incident.
Summary:
Actor Amitabh Bachchan took to Instagram to share a video of himself rapping for his upcoming film '102 Not Out'.
Summary:
Rajasthan Royals, who are returning to the tournament after a two-year ban, will name their skipper on Saturday while Kolkata Knight Riders will name theirs on March 4.
Summary:
The English Football Association (FA) has charged former FC Barcelona and current Manchester City manager Pep Guardiola for promoting political messages by wearing a yellow ribbon in support of Catalan independence.
Summary:
The Pakistan Cricket Board has taken strict security measures in order to avoid a repeat of 2017's spot-fixing scandal that took place in the Pakistan Super League (PSL).
Summary:
Canadian password management startup 1Password has created a proof-of-concept feature that will allow a user to check if their password already exists.
Summary:
The couple had received the gift on February 18, while the blast took place when they were opening it at their house.
Summary:
A policeman was injured at a police station after his service rifle went off accidentally in Jammu and Kashmir's Shopian district on Saturday.
Summary:
At least 16 infants in Telangana's state-run Sishu Gruh, a safety home for infants, have died within a month.
Summary:
The Uttar Pradesh government is trying to develop various religious sites in the state and convert them into world-class tourist destinations, Chief Minister Yogi Adityanath said on Saturday after visiting Mathura's Krishna Janm Bhumi.
Summary:
A group of protesters threw eggs at a US delegation visiting a research and polling centre near Palestine's Ramallah on Thursday.
Summary:
A woman from Tennessee was arrested on Friday after she intentionally drove a white van into a White House security barrier.
Summary:
Aprilia launches their new two-wheeler SR 125, with âÂÂFind Your FunTwinâ TVC.
The TVC shows people of various tastes finding someone just like them in the most unexpected situations; enjoying their ride & having fun together.
Summary:
The US has been imposing sanctions to put pressure on North Korea over its nuclear and ballistic missile programme.
Summary:
Pakistan is expected to be placed on the 'grey list' from June.
Summary:
The first poster of Parineeti Chopra and Arjun Kapoor starrer 'Namaste England' has been revealed.
Sharing the poster, Parineeti wrote, "IT.
Summary:
Rating points in rankings, which signify a batsman's moving average, are calculated by combining his weighted performance in the latest match with his previous rating.
Summary:
The ministry has also written to Hong Kong branches of four Indian banks, asking them to reconcile accounts and check for irregularities.
Summary:
Bengaluru FC became India's first club to earn a transfer fee from a foreign club after Chinese League One side Zhejiang Lucheng signed Bengaluru FC player Edu Garcia for an undisclosed amount.
Summary:
Summary:
The Election Commission on Friday announced that elections to 58 seats in the Rajya Sabha will be held on March 23, as MPs from 16 states are scheduled to retire in April-May 2018.
Summary:
Addressing a population control campaign in Uttar Pradesh, BJP MLA Vikram Saini said, "I have told my wife to keep producing children, even though she told me that two were enough." Hindus should not stop producing children until a law for population control comes into existence, Saini added.
Summary:
Swachh Bharat Abhiyan mascot Kunwar Bai passed away aged 106 in Chhattisgarh's Raipur due to a prolonged illness.
Summary:
UIDAI on Friday tweeted that children below the age of five years will receive a blue-coloured 'Baal Aadhaar' card.
Summary:
Union Minister for Law and Information Technology Ravi Shankar Prasad in an interview recently said innovation should not be killed in the name of privacy.
Summary:
A class 11 female student was hacked to death by an assailant outside her school in Madhya Pradesh's Anuppur district, police said on Friday.
Summary:
The shooting of Sushant Singh Rajput and Sara Ali Khan's 'Kedarnath' has resumed amid controversy surrounding its director Abhishek Kapoor and the producers.
Summary:
Salman Khan has said articles come on his affairs, on him working with beautiful heroines and then suddenly a court date comes up.
Summary:
Malaika Arora Khan, while talking about the time she started modelling, said that senior models Mehr Jesia and Namrata Shirodkar ganged up against her.
Summary:
Further, the replays confirmed Ingram's glove had touched the ball.
Summary:
German police have stated that they have arrested a Russian football hooligan who was wanted for the "attempted homicide" of an England supporter during the Euro 2016 fan violence.
Summary:
Reacting to President Ram Nath Kovind playing virtual reality (VR) cricket, cricketer-turned-commentator Virender Sehwag tweeted, "Waah ji, kya baat hai, maananiya (Rahstrapati) ji, aap bhi opening pe!
Summary:
Slamming Delhi Chief Secretary Anshu Prakash for making "false claims" about being assaulted by AAP MLAs at CM Arvind Kejriwal's residence, AAP MLA Naresh Balyan on Friday said, "Such officials must be thrashed." He added that officials who block development work over "commission" should be thrashed.
Summary:
Congress leader Anand Sharma has accused Prime Minister Narendra Modi-led Centre government of favouring diamond firms instead of Public-Sector Units (PSUs) in getting foreign deals.
Summary:
Bengaluru-based dairy and poultry products delivery startup Doodhwala has raised $2.2 million in a seed funding round from Omnivore.
Summary:
Affecting 350 million people, "depression is the single largest contributor to global disability," said an Oxford professor.
Summary:
PM Modi added that supervisory authorities must be diligent.
Summary:
The North and East Delhi Municipal Corporations have requested the Delhi government to sanction loans worth â¹540 crore to pay their employees salaries for three months.
Summary:
Filber was arrested over allegations that he had provided favours to the telecom company Bezeq in exchange for providing positive coverage of Netanyahu and his family.
Summary:
Summary:
Prime Minister Narendra Modi welcomed his Canadian counterpart Justin Trudeau on Friday with a hug at the Rashtrapati Bhavan where Trudeau inspected a guard of honour and met Indian officials.
Very happy that you came here along with your wife and children," Modi told Trudeau.
Summary:
Addressing the controversy around singer Papon kissing an 11-year-old female contestant of a reality show, the singer's lawyer Gaurang Kanth has said that consent of the child is not important.
Summary:
It alleged that Gitanjali floated three jewellery investment schemes and said that invested amount could be used for jewellery purchases with additional bonuses after the scheme's maturity.
Summary:
The Income Tax Department has attached a property worth â¹1,200 crore of Mehul Choksi-owned Gitanjali group, located in a Special Economic Zone in Hyderabad.
Summary:
Telecom Major Bharti Airtel and Chinese telecom equipment manufacturer Huawei on Friday announced they have successfully conducted India's first-ever 5G trial, achieving a data speed of over 3 GB per second.
Summary:
A 29-year-old man in Mumbai was diagnosed with a severe chest infection after smoking hookah fired with 'magic coal' for two months.
Summary:
India's ranking in 2017 global corruption index fell by two places to 81 among a group of 180 countries.
Summary:
US comedian Stephen Colbert mocked President Donald Trump's son Donald Trump Jr over his remarks that the poorest of poor in India are always smiling, by releasing a parody of the song 'Nimbooda Nimbooda'.
Summary:
The Strategic Forces Command on Friday successfully test-fired the nuclear-capable Dhanush ballistic missile from an Indian Navy vessel off Odisha coast, Defence officials said.
Summary:
The man, who used to live a forest, died after the mob handed him over to the police.
Summary:
The White House has said that US President Donald Trump is not satisfied with the progress made by Pakistan in terms of its actions against the war on terror.
Summary:
A group of children in Russia's Yakutia Republic trolled Hollywood actor Leonardo DiCaprio over his concerns on climate change.
Summary:
An armed officer assigned to the Florida school, where an expelled student killed 17 people in a mass shooting last week, stood outside the building during the shooting and did not intervene, police have said.
Summary:
Technology company Dell's CEO Michael Dell had bought a penthouse on Manhattan's Billionaires' Row for $100.47 million in 2014, making it the most expensive home ever sold in New York, it has recently been revealed.
Summary:
Anand L Rai has revealed a producer told him if he made the character 'Manu' in 'Tanu Weds Manu' a little macho, he could get Rai a bigger star than Madhavan.
Summary:
Awanish Kumar Awasthi, Chairman of Film Bandhu said they would fully support the making of 'Ramayana' in the state.
Summary:
'The Mummy' actor Brendan Fraser alleged that he was molested by former president of Hollywood Foreign Press Association Philip Berk, when he grabbed the actor's a** cheek at an event in 2003.
Sharing details of how he was allegedly harassed by Berk, Fraser added, "I felt ill.
Summary:
Salman Khan took to Twitter to announce the new release date of his brother-in-law, Aayush Sharma's debut film 'LoveRatri' as October 5.
batao kya date hai release ki," tweeted Salman.
Summary:
Actor Salman Khan has jokingly said he is single because he cannot afford to spend lakhs and crores on getting married to someone.
Summary:
Indian Film and Television Producer Council (IFTPC) is considering a two-year ban to refrain Pakistani artistes from working in Bollywood.
Summary:
While responding to a question on risk of burnout for players due to a lot of T20 cricket, former India captain Sourav Ganguly said cricket cannot survive without the T20 format.
Summary:
Fifteen-year-old Russian figure skater Alina Zagitova beat her teammate and two-time world champion Evgenia Medvedeva to win gold at the ongoing PyeongChang Winter Olympics.
Summary:
Ex-Windies captain Shivnarine Chanderpaul, while playing in a domestic one-day match, hit a straight shot which resulted in his son Tagenarine's run-out at the non-striker's end.
Summary:
Former Pakistan captain Shahid Afridi pulled off a boundary line catch during his team Karachi Kings' match against Quetta Gladiators in Pakistan Super League on Friday.
Summary:
Two men dressed up as US President Donald Trump and North Korean leader Kim Jong-un debated over the nuclear buttons in possession of both the countries, with Trump's lookalike saying his nuclear button was bigger than Jong-un's.
Summary:
Nadezhda Sergeeva, who finished 12th in the two-woman bobsleigh event at the Winter Olympics in Pyeongchang, has become the second Russian to test positive for a banned substance at the Games.
Summary:
The Tamil Nadu health department on Wednesday launched a cosmetic surgery clinic at a government hospital in Chennai to provide free breast reconstruction surgeries to the poor.
Summary:
"It is filled with curiosity about what it...(holds): banality or brilliance," wrote NDTV while Times Of India called it "a fine line between a...
Summary:
NDTV said, "It is a mindless yet harmless comedy." The film "doesn't always manage to hit the bull's eye," wrote Times of India (TOI).
Summary:
Reportedly, Nirav has now been asked to appear before the ED on February 26.
Summary:
Former South African cricketer Herschelle Gibbs, who turns 44 today, became the first-ever batsman to slam six sixes in an over in international cricket, against Netherlands in the 2007 World Cup. Gibbs hit consecutive sixes off spinner Daan van Bunge.
Summary:
Named Luciola for its resemblance to the firefly, each hemispherical particle weighs 16.2mg, has a diameter of 3.5mm, and emits a red light that can illuminate text.
Summary:
A team of 60 policemen and experts visited Delhi CM Arvind Kejriwal's residence and seized hard disks containing recordings of 21 CCTV cameras in connection with Chief Secretary Anshu Prakash assault case.
Summary:
Snapchat's parent company Snap's CEO Evan Spiegel received $637.8 million as total compensation in 2017 after the company went public.
Summary:
Astronomers have confirmed the universe is expanding 9% faster than expected from its trajectory seen shortly after the Big Bang.
Summary:
India is a natural partner and a trusted friend for commercial cooperation, Canadian PM Justin Trudeau has said.
Summary:
A body decomposing for 4-5 months has been found inside a tunnel connecting New Delhi and Shivaji Stadium stations on the Delhi Metro's airport line, police said.
Summary:
While addressing a joint press conference with his Canadian counterpart Justin Trudeau on Friday, PM Narendra Modi said that both India and Canada had similar thoughts on the current situation in Maldives and North Korea.
Summary:
The boy distracted the reptile with a torchlight and hit a bamboo stick on its head, after which it released the boy's uncle.
Summary:
Summary:
I am resigning because of the danger of damaging both Unicef and Save the Children," Forsyth added.
Summary:
Bansal had moved the court against Infosys for withholding his â¹17.38-crore severance package.
Summary:
IIT Delhi will host its tech festival, Tryst'18 Infinity & Beyond!, from February 23 to 26.
Summary:
Pacer Kamlesh Nagarkoti, who was part of India's Under-19 World Cup winning squad, said the players never broke the team curfew as they were "a bit scared" of coach Rahul Dravid.
Summary:
Australia missed being the top-ranked T20I team by 0.19 points, despite their victory in the Trans-Tasman tri-series on Wednesday.
Summary:
India are assured of four medals in the tournament so far.
Summary:
Summary:
The party members alleged that police lathicharged them after they complained about a BJP MLA trying to bribe voters ahead of by-polls.
Summary:
The butchers didn't vote as the party introduced an anti-cow slaughter law, while the bootleggers were angry because of tough prohibition laws, Jadeja explained.
Summary:
Digital payments startup Paytm is launching its own credit scoring product called 'Paytm Score', according to reports.
Summary:
World's second-largest radio telescope, Arecibo Observatory in Puerto Rico, has secured a $20.15-million funding after being damaged by Hurricane Maria last year.
Summary:
Students were present in examination halls but 61 people were found solving their papers in a nearby residence, police said.
Summary:
Pakistan Super League side Peshawar Zalmi flew in 13 Pakistani cancer-stricken children to Dubai to witness the opening ceremony of the T20 tournament and other Zalmi matches.
Summary:
Nirav Modi is the prime accused in the $1.77 billion (â¹11,400 crore) scam involving Punjab National Bank.
Summary:
Over 9,300 wilful defaulters in India owe more than â¹1.1 trillion to banks, according to an analysis of publicly available data.
Summary:
After the $1.77-billion PNB fraud, the CBI has now booked the manager of a PNB branch in Barmer, Rajasthan for allegedly cheating the bank of over â¹2 crore.
Summary:
Pakistani actress Mahira Khan has slammed the media for defaming actor Javed Sheikh over a video in which she can be seen flinching away while Sheikh tried to kiss her on the cheek during an award ceremony.
Summary:
Earlier, the ED had frozen shares and mutual funds worth â¹94.52 crore belonging to Nirav Modi and Mehul Choksi's firms.
Summary:
Stanford University researchers have developed a stretchable electronic skin which is sensitive enough to feel the footsteps of an artificial ladybug.
Summary:
Talking about the issue of farmers committing suicide, Madhya Pradesh Panchayati Raj Minister Gopal Bhargav on Friday said, "MLAs also die.
In past four years, 10 MLAs have died." "Does anybody have any control over death?
Summary:
Uber Chief Executive Officer Dara Khosrowshahi has said, "India is a key component" of the cab-hailing startup's growth plan.
Summary:
Space exploration startup SpaceX tried catching the nose cone of its Falcon 9 rocket, launched on Thursday, using a "giant" net.
Summary:
After space exploration startup SpaceX launched two test satellites for global internet on Thursday, billionaire Elon Musk tweeted, "Don't tell anyone, but the wifi password is 'martians'".
Summary:
The team found that infusing young blood boosted levels of a gene-regulating enzyme Tet2 in the brain's hippocampus which deals with memory and learning.
Summary:
By the second week, wrinkles began to appear and deepen on the flat organoids, explaining the brain folds.
Summary:
A man in Uttarakhand's Haldwani has claimed that he has created a record by making the world's smallest pencil, which is 5 mm long and 0.5 mm wide.
Summary:
Previously, boundary walls of Haj Committee's office and Lucknow's Qaiser Bagh Police Station were also painted saffron.
Summary:
A private school in Kolkata allegedly rusticated a student last month after his parents asked for more time to pay the hiked school fee.
Summary:
US President Donald Trump's administration has announced a new H-1B visa policy which is believed to affect the Indian IT companies and their employees.
Under the new policy, H-1B visas will be issued to an employee only for the period for which he/she has work at a third-party worksite.
Summary:
Billionaire promoters of Fortis Healthcare, Malvinder and brother Shivinder Singh, have said they are trying to "resolve the issues" and "not going anywhere".
Summary:
A 24-year-old woman, who presents the weather report on a sports channel in Argentina and is dubbed the country's sexiest weather girl, has got her buttocks insured for around â¹65 lakh.
Summary:
Indian batsman Cheteshwar Pujara and his wife Puja Pabari have become parents for the first time after the birth of their daughter.
We made a wish and she came true." Pujara got married to Puja on February 13, 2013.
Summary:
Semedo was also arrested in November following an alleged altercation at a nightclub.
Summary:
The PCs will be powered by Intel's XMM 8000 series commercial 5G modems.
Summary:
Summary:
Coral reefs could start to dissolve faster than their growth by year 2100 as human-influenced climate change drives ocean acidification, an Australian-led team of scientists said.
Summary:
A UK national was allegedly sexually molested by two bike-borne men in Rajasthan's Jodhpur on Thursday.
The police said that the woman was molested while she was returning to her hostel.
Summary:
After Canadian Prime Minister Justin Trudeau did bhangra at an event in Delhi on Thursday, a user on Twitter wrote, "To be fair, Trudeau seems to be genuinely enjoying himself and is a good dancer." "He is more of a performing artist than a leader," another user wrote.
Summary:
Cooperating with which, the women immediately left the area, the authorities added.
Summary:
Egypt's Interior Ministry has released a video showing three policemen saving the life of a five-year-old boy by catching the infant after he fell from the third floor of a building.
Summary:
Kolkata-based FMCG firm REI Agro, which is owned by Sandip Jhunjhunwala, owes about â¹2,730 crore to banks.
Summary:
However, Sharma and Paytm's parent company One 97 Communications are reportedly the majority shareholders in the companies.
Summary:
The world's first cave art was made by human ancestors called Neanderthals and not Homo sapiens, an international study has claimed.
Summary:
A National Defence Academy (NDA) cadet carried his unconscious junior on his back for 2.5 km to complete a 13.8-km cross-country run earlier this month.
The gesture was appreciated by Lieutenant General Alok Kler, who presented his Ray-Ban aviator sunglasses to the cadet.
Summary:
Canadian PM Justin Trudeau, who is on a state visit to India with his family, on Thursday said, "People of India are kind, genuine and open.
Summary:
Gopalganj district in Bihar has set a record by constructing 11,244 toilets in 100 hours.
Summary:
Infosys Chairman Nandan Nilekani will help the Centre in development of IT infrastructure for the National Health Protection Scheme (NHPS), a NITI Aayog official said.
"We have consulted Nilekani, we want to build Aadhaar like model for the scheme (NHPS)...
Summary:
Amid controversy over convicted Khalistani terrorist Jaspal Atwal getting invited to a dinner hosted for Canadian PM Justin Trudeau, Atwal said it was unfair to raise his "criminal conviction" for a shooting incident in 1986.
Summary:
Australia banned its ministers from having sex with their staff after Joyce's affair revelation.
Summary:
The ruling Communist Party of China is distributing around 3 lakh free television sets to people in the rural areas of the country to spread President Xi Jinping's political ideology.
Summary:
Italian luxury brand Gucci has been slammed for featuring white models wearing turbans during a show at the Milan Fashion Week.
"Instead of hiring a Sikh model they just put a turban on a white boy," wrote another user.
Summary:
Earlier, Bachchan had jokingly threatened to quit Twitter for reducing his number of followers.
Summary:
A plea has been filed in a Delhi court seeking the lodging of an FIR against Salman Khan for allegedly making a casteist remark during the promotions of 'Tiger Zinda Hai'.
Summary:
The actress is reportedly in Junagarh Fort in Bikaner, Rajasthan for the film's shooting.
Summary:
Trudeau's wife Sophie, who is also dressed in Indian attire, can also be seen joining him for the dance.
Summary:
Meryl Streep has slammed producer Harvey Weinstein for quoting her in his defence against a sexual harassment lawsuit.
Summary:
Indian batsman Manish Pandey, who smashed a 79 off 48 balls in the second T20I against South Africa, said that he needs to 'do more' for a longer run in the Indian cricket team.
Summary:
Swiss tennis star and 20-time Grand Slam champion Roger Federer said that he will not get bored when he retires from the sport.
Summary:
Technology giant Apple will launch a new model of its wireless earphones called AirPods this year, which will let people summon digital assistant Siri via voice commands, according to reports.
Summary:
Social media major Facebook has lost a copyright infringement case against Italian social media company Climbook.
Summary:
The Congress will not declare the name of the CM candidate in Rajasthan before the state elections, the state General Secretary in-charge Avinash Pande said on Thursday.
Summary:
Antiprotons and protons are twin particles with reversed physical properties that instantaneously destroy each other on coming in contact.
Summary:
Hundreds of Delhi Bharatiya Janata Party (BJP) workers staged a protest outside Deputy Chief Minister Manish Sisodia's residence against the alleged assault on Chief Secretary Anshu Prakash by AAP MLAs. The party workers accused the AAP government of not taking any action against its MLAs in the issue.
Summary:
The Ministry of External Affairs (MEA) has received a complaint from a woman in Bihar alleging sexual assault by an official in United Nations Population Fund's (UNFPA) Bihar office, MEA spokesperson Raveesh Kumar said.
Summary:
The Delhi High Court has upheld a trial court's order granting anticipatory bail to Congress leader Sajjan Kumar for the alleged murder of three Sikhs during the 1984 riots after the then PM Indira Gandhi's assassination.
Summary:
The woman pushes the man back, following which he casually left the spot.
Summary:
Do you use a good quality salt every day in your kitchen?
Summary:
However, the singer's lawyer has denied the allegations and called the video misleading.
Summary:
Jenner, who has 24.5 million followers on Twitter earlier said, "I don't know how i feel about" the "new Snapchat".
Summary:
With a visa-free score of 57, India has been ranked 73rd, falling below Saudi Arabia and Zimbabwe.
Summary:
Microsoft Co-founder billionaire Bill Gates was asked to guess the price of everyday grocery items on a TV show.
Summary:
Delhi Police has informed a court that CM Arvind Kejriwal's advisor VK Jain has admitted seeing AAP MLAs Amanatullah Khan and Prakash Jarwal physically assaulting Chief Secretary Anshu Prakash.
Summary:
While Haasan launched his political party on Wednesday, Rajinikanth announced his entry into politics last year.
Summary:
Lalu Prasad Yadav's son and RJD leader Tejashwi Yadav on Thursday accused Nitish Kumar-led Bihar government of conspiring to poison his food and claimed that his phones were being tapped.
Summary:
Elon Musk-led space exploration startup SpaceX on Thursday successfully launched its Falcon 9 rocket, which carried two test satellites for its planned global internet broadband service.
Summary:
The Elephanta Island near Mumbai on Thursday received permanent electricity connection for the first time since 70 years of Independence.
Summary:
An 11-year-old visually challenged girl identified the man who allegedly raped her, through his voice when he visited her house to rape her again in Gurugram, police said.
Summary:
After India claimed the extension of emergency in Maldives was unconstitutional, the island nation has said India's stand ignores facts and ground reality.
Summary:
US President Donald Trump on Thursday accused the media of misinterpreting his comments, tweeting that he never said that teachers should be equipped with guns to avoid incidents of gun violence at schools.
Summary:
"Theresa May, where's the money for Grenfell?...You should do some jail time," Stormzy said.
Summary:
Indian-American author Dinesh D'Souza mocked survivors of the Florida school shooting in which 17 people were killed.
Summary:
The head of Saudi Arabia's General Entertainment Authority has said that the kingdom will invest $64 billion ( over â¹4 lakh crore) in developing its entertainment sector over the next decade.
Summary:
Actress Sonam Kapoor, while talking about working with filmmaker Sanjay Leela Bhansali again, said, "I don't think I am his kind of actor.
Summary:
Former India captain MS Dhoni got angry at non-striker Manish Pandey after the first ball of the last over of India's innings during the second T20I against South Africa on Wednesday.
Summary:
Russian curler Alexander Krushelnitsky and his wife Anastasia Bryzgalova have been stripped of their Winter Olympics bronze medals after Alexander admitted to a doping violation.
Summary:
Canadian Prime Minister Justin Trudeau signed a bat wishing the Global T20 Canada league good luck.
Summary:
"I've copied a bit of AB de Villiers...I just open, myself and set myself to play the ball," he said.
Summary:
After two sitting MLAs of Rajasthan passed away within six months, two BJP MLAs on Thursday claimed that the state Assembly, which is built on a cremation ground, is haunted and demanded 'yagya'.
Summary:
Founded in 2016, CoLive is a technology-powered network platform that provides rented accommodation for students, couples and professionals.
Summary:
A 42-year-old Japanese woman complaining of bloating was diagnosed with two gauze sponges allegedly left behind from one of the C-section surgeries performed six and nine years ago, as reported in the New England Journal of Medicine.
Summary:
CM Kejriwal had announced a compensation of â¹5 lakh each to kin of the deceased.
Summary:
A video of a bus driver reportedly repairing his phone while driving a bus on a highway in Kerala has surfaced online.
Summary:
The Cauvery Delta Farmers Association on Thursday staged a protest and blocked the entrance to the Tamil Nadu Secretariat, demanding a meeting with CM Edappadi K Palaniswami.
Summary:
Kothari's company had submitted forged documents to get loans and created shell firms to carry out illegal activities.
Summary:
The CBI has busted a child pornography racket that was being run through a WhatsApp group named 'Kids-XXX' with 119 members from several countries including US, China and Pakistan.
Summary:
Nawazuddin Siddiqui has said revealing details about his relationships with his ex-girlfriends Niharika Singh and Sunita Rajwar in his biography 'An Ordinary Life: A Memoir' was the biggest mistake of his life.
Summary:
The MEA said it has sent a notification seeking an explanation as to why his passport should not be revoked.
Summary:
The Enforcement Directorate (ED) on Thursday froze shares and mutual funds worth â¹94.52 crore belonging to Nirav Modi and Mehul Choksi's firms.
Summary:
Indian woman cricketer Harmanpreet Kaur will join Punjab Police as Deputy Superintendent of Police (DSP) on March 1 following the waiver of her employment bond with Indian Railways.
Summary:
Gates further said that his primary concern at the time he became a billionaire was being able to pay his employees.
Summary:
AAP MLAs Amanatullah Khan and Prakash Jarwal have been sent to a 14-day judicial custody for allegedly assaulting Delhi Chief Secretary Anshu Prakash during a meeting at CM Arvind Kejriwal's residence.
Summary:
The total wealth of Indian billionaires is 15% of the country's GDP, a report by charity group Oxfam has revealed.
Summary:
Canadian authorities invited Atwal to PM Justin Trudeau's reception dinner in Delhi on Thursday but later withdrew the invite.
Summary:
Five days after Canadian PM Justin Trudeau's arrival in India, PM Narendra Modi on Thursday tweeted that he was looking forward to their talks to strengthen ties between the two countries.
Summary:
State Building and Construction Minister Maheshwar Hazari has threatened to take legal action against him over the alleged offence.
Summary:
Canadian PM Justin Trudeau's office has cancelled an invitation to Outlook for an event in Delhi, allegedly after the magazine carried a report titled 'Khalistan-II made in Canada'.
Summary:
The bank has dismissed reports that it has transferred about 18,000 employees over the $1.77 billion fraud.
Summary:
A man threw an explosive at the US embassy building in Montenegro's capital Podgorica before blowing himself up on Thursday.
Summary:
However, China's Foreign Ministry denied the report, saying that both the countries should work together to uphold peace and tranquillity along the border areas.
Summary:
Najem tweets selfie videos urging countries across the world for help.
You watch it daily without any reaction," Najem can be heard saying in one of his videos.
Summary:
Jeff Bezos-led US e-commerce giant Amazon is now worth more than 2.6 times its competitor Walmart at $718 billion.
Summary:
Very witty and knows exactly how to bring a smile on people's faces," tweeted Zalmi's owner Javed Afridi.
Children from a cancer hospital were also invited to the show by the Zalmi management.
Summary:
Actress Sonam Kapoor slammed a journalist who asked her if she had deleted a video of Deepika Padukone taking the 'Pad Man' challenge, wherein celebrities had to pose with a sanitary napkin in their hand.
Summary:
PNB fraud accused Arjun Patil's wife Sujata has said she would beat Nirav Modi with a slipper if he came to India.
Summary:
Rich Energy is reportedly leading a consortium which is planning a ã200 million (â¹1,807 crore) takeover of the team.
Summary:
Sevilla's Luis Muriel was over 6 yards away from the goal when he bulleted an over 75-kmph header towards the goal before De Gea saved it.
Summary:
Last month was 0.78ðC warmer than the average January of the 1951-1980 period, said NASA.
Summary:
The J&K Police has filed an FIR against unknown lawyers over a banner comparing Parliament attack-convict Afzal Guru and separatist leader Maqbool Bhat with freedom fighters Bhagat Singh, Rajguru and Sukhdev.
Summary:
A letter addressed to UK Prince Harry and fiancée Meghan Markle that contained white powder caused a security scare earlier this week.
Summary:
Students across the US have staged walk outs demanding stricter gun laws over the Florida school shooting that killed 17 people.
Summary:
PNB has reportedly stepped up its controls on use of messaging network SWIFT following a $1.77-billion fraud.
Summary:
Microblogging site Twitter said it will no longer allow people to post identical messages from multiple accounts and will bar the use of automation for the same.
Summary:
Addressing party workers ahead of Karnataka Assembly elections, BJP President Amit Shah has said they should look at PM Narendra Modi's photo and the lotus symbol, and not their local candidate.
Summary:
Reacting to Army chief General Bipin Rawat's remark on All India United Democratic Front's growth in Assam, party MLA Aminul Islam said AIUDF's popularity is growing faster than BJP because it works for "downtrodden".
Summary:
CM Khandu called the allegations false and politically motivated.
Summary:
Haasan has embarked on a political tour across Tamil Nadu.
Summary:
Responding to Elon Musk's criticism of flying cars, Uber CEO Dara Khosrowshahi said, "Challenge accepted.
Summary:
Talking about transportation system Hyperloop, Uber CEO Dara Khosrowshahi said, "Why dig tunnels when you can use the air?" Khosrowshahi, who is currently visiting India, had earlier claimed the US will have flying cars in next 10 years.
Summary:
The postal department has agreed to serve court summons in criminal cases via postmen, the Maharashtra government informed the Bombay High Court.
Summary:
A broken teapot bought for ã15 (over â¹1,300) at a general auction in the UK in 2016 has been auctioned for ã575,000 (over â¹5 crore).
Summary:
Amnesty International has branded US President Donald Trump a "human rights offender", comparing him to authoritarian leaders such as Venezuelan President Nicolas Maduro and Philippine President Rodrigo Duterte.
Summary:
Customers were also reportedly unable to use mobile number porting facility because of the network issues.
Summary:
Police said the suspects communicated online with a man surnamed Tai to purchase Bitcoins, sending photographs of cash to convince him.
Summary:
Actress Sonam Kapoor has said her father Anil Kapoor is never critical of her.
Sonam further said, "Dads are usually like that with their daughters."
Summary:
Twelve vehicles were put into service to extinguish the fire and the operation reportedly lasted over five hours.
Summary:
Chris went flying high into the air and lost his balance while taking on one of his final jumps during the freestyle ski cross event.
Summary:
Three British tourists have been arrested in Spain after they allegedly mocked a gay couple during a flight.
Summary:
Uber CEO Dara Khosrowshahi, who is currently visiting India, has said, "We expect to lose money in Southeast Asia and expect to invest aggressively." Khosrowshahi added there is a huge potential in the region, given its population and fast internet user growth.
Summary:
Andhra Pradesh Police on Wednesday placed senior advocate Jayaraju Yeggoni under house arrest, reportedly to prevent him from protesting during an automobile factory's programme attended by CM Chandrababu Naidu.
Summary:
The Allahabad High Court on Thursday rejected a petition seeking a CBI probe in Uttar Pradesh CM Yogi Adityanath's role in the 2007 Gorakhpur riots.
Summary:
After the Kerala High Court annulled a marriage over alleged love jihad, the Supreme Court has questioned if there can be a probe on the consent of two adults who have decided to get married.
Summary:
The Western Railway has decided to deploy women ticket examiners on all coaches of the Mumbai-Ahmedabad Shatabdi Express from March 8 on a pilot basis.
Summary:
While officials said the man fell from the second floor of the police station when he was trying to escape, his family alleged he was thrashed in custody.
Summary:
Sacked AAP leader Kapil Mishra on Wednesday alleged that Delhi Chief Minister Arvind Kejriwal has directed that several important files from Deputy Chief Minister Manish Sisodia's office be taken away and burnt.
Summary:
Jeweller Mehul Choksi's lawyer Sanjay Abert has said all loans taken by Gitanjali Group are "legal" and will be repaid soon.
Summary:
They are not God." The petitioner claimed that the police failed to take action after a complaint was registered against the accused in 2016.
Summary:
A video has surfaced online, wherein Saharanpur District Magistrate PK Pandey can be seen threatening to slit a Panchayat executive officer's throat over negligence at work.
Summary:
Punjab National Bank has responded to fraud-accused jeweller Nirav Modi's letter asking him to come up with a "concrete and implementable plan" to repay dues.
Summary:
Washington, born on February 22, 1732, became the first US President in 1789.
Summary:
Loan-related frauds accounted for 99.3% of all PNB frauds in 2016-17, according to data by the RBI.
Summary:
Former Google employee Tim Chevalier has filed a lawsuit against the company for wrongfully firing him because of his statements against "discrimination, harassment, and white supremacy." Chevalier, who identifies as transgender and queer, alleged that Google's internal social networking platforms were used to harass the minorities.
Summary:
The Agonda Beach in Goa was placed 18th on the list and was the only Indian beach in the top 25.
Summary:
Jakhar's remark comes after convicted Khalistani terrorist Jaspal Atwal was photographed with Trudeau's wife at a Mumbai event recently.
Summary:
A US-based study on nearly 100 fossils from different human species has found that brain size gradually tripled over last three million years, as opposed to a series of step-like increases.
Summary:
The External Affairs Ministry has said the government is trying to find how convicted Khalistani terrorist Jaspal Atwal was given an Indian visa.
Summary:
Canadian MP Randeep Sarai has apologised for inviting Khalistani terrorist Jaspal Atwal to PM Justin Trudeau's reception dinner scheduled for Thursday in New Delhi.
I should have exercised better judgement," Sarai added.
Summary:
Models carried replicas of their own heads while the runway resembled an operating room at the Gucci show during Milan Fashion Week on Wednesday.
Summary:
This is flow-based lending," he added.
He said that small business with no assets can still use its flows to get credit based on GSTâÂÂinvoices.
Summary:
Mallya entered into an agreement allowing him to acquire up to 13 domestic properties from USL within a limited time frame after his resignation.
Summary:
Actor Akshay Kumar took to Instagram to share a picture from the sets of his upcoming film 'Kesari'.
"Innocent smiles galore on set today!
Summary:
Akshay Kumar has said he doesn't want anyone to associate an image with him.
"I've gone through that in my career's initial days when only action image was associated with me.
Summary:
A dog who watched over his owner's grave for nearly 12 years has died in the same cemetery in Argentine city Villa Carlos Paz. The 16-year-old dog named Capitan had refused to leave the cemetery even though his owner's son had tried to take him home several times.
Summary:
Shares of jeweller Mehul Choksi-owned Gitanjali Gems plunged for the seventh straight session on Thursday, falling 58.5% in the past one week.
Summary:
Former Indian all-rounder Roger Binny has said Indian cricketer Hardik Pandya is lucky to be called an all-rounder.
Summary:
Brazilian football club Operario player Jefferson Reis repeatedly punched a ball boy after he celebrated a goal by rival team Comercial.
Summary:
World number 21 Italy's Fabio Fognini dropped his racquet but still managed to win the set point during his Rio Open Round of 32 match against Brazil's Thomaz Bellucci.
Summary:
The report found that intellectual property theft represented about one-fourth of the cost of cybercrime in 2017.
Summary:
A UK couple is taking their three children out of school and living in a one-bedroom caravan so they can set off on a trip around the world.
Summary:
Summary:
Overall, alcohol use disorders were associated with three times higher risk of all types of dementia, with the risk not decreasing even after periods of abstinence.
Summary:
The Supreme Court on Wednesday ruled that Civil Services examination marks cannot be revealed under the Right to Information Act (RTI).
Summary:
The Brihanmumbai Municipal Corporation (BMC) has been criticised for hiring four law firms despite having a legal cell to handle cases.
Summary:
"I feel it (Bullet Train) is a plan to separate Mumbai from Maharashtra," Thackeray said.
Summary:
Telecom regulator TRAI has termed the cellular operator COAI's allegations accusing TRAI of favouring one operator as "baseless".
Summary:
The session, scheduled to end on March 22, was shortened to four days owing to Parrikar's health.
Summary:
The CBI has said that Nirav Modi's aide Vipul Ambani was fully aware of the fraudulent Letters of Undertaking (LoUs) issued by former PNB official Gokulnath Shetty.
Summary:
The National Organisation of Bank Workers has claimed that PNB transferred 18,000 employees following a directive by Central Vigilance Commission (CVC) after the $1.77-billion PNB fraud.
CVC advised state-owned banks to transfer the officers who have completed three years in a particular branch.
Summary:
Summary:
AAP candidate Akavi N Zhimomi in his affidavit has shown nil movable and immovable assets, it revealed.
Summary:
Ford has announced its North America division's President, Raj Nair, is departing following an internal investigation that found his behaviour was "inconsistent with the company's code of conduct".
Summary:
A century-old tree planted in New Zealand's Campbell Island, having no other tree around in a radius of over 200 km, has become a marker for changes made to the planet by humans, researchers have said.
Summary:
Amid the ongoing 2018 Winter Games in South Korea, Florida State University scientists have developed a new process to create the 'olympicene' molecule, resembling the Olympic rings.
Summary:
PM Modi also announced a defence industrial production corridor in Bundelkhand (divided between Madhya Pradesh and UP).
Summary:
Goa CM Manohar Parrikar was on Thursday discharged from Mumbai's Lilavati hospital, where he was undergoing treatment for a pancreatic ailment.
Summary:
A video shows a group of tourists bouncing on a footbridge in China, following which the bridge collapses and the tourists fall into the water.
Summary:
Actor Amitabh Bachchan took to Twitter to reveal that he has composed and sung a song for his upcoming film '102 Not Out'.
Summary:
A Russian hunter skied through a snowy forest for 10 hours during nighttime to reach the nearest village and get help for his friend.
Summary:
Ahead of the selection meeting for the tri-nation T20I series against Sri Lanka and Bangladesh, a BCCI official said if India captain Virat Kohli wants rest, he will get it.
Summary:
Pakistan's Shoaib Akhtar bowled the fastest delivery in recorded history after clocking 161.3kmph on February 22, 2003, at the World Cup. The delivery helped Akhtar complete a maiden over against England's Nick Knight, with first five balls having speeds of 153.3kmph, 158.4kmph, 158.5kmph, 157.4kmph and 159.5kmph.
Summary:
Android Co-founder Andy Rubin-owned startup's Essential phone is expected to start selling in India at â¹24,999 by late March or early April this year, according to reports.
Summary:
Billionaire Elon Musk will leave the board of his nonprofit artificial intelligence research firm OpenAI, in order to avoid any potential future conflict with Tesla, which is also exploring the same technology.
Summary:
Bengaluru-based lifestyle brand Chumbak has posted a net loss of â¹19.9 crore for the fiscal year 2017, according to filings.
Summary:
Bengaluru-based self-drive vehicle rental startup Drivezy has launched a one-way car rental service that will let customers make point-to-point trips between two cities.
Summary:
Pakistan violates the ceasefire because it does not want India to have a peaceful atmosphere, Border Security Force (BSF) Inspector General Sonali Mishra said on Thursday.
Summary:
Banaras Hindu University (BHU) students have filed a police complaint against a play staged in the campus which allegedly glorified Nathuram Godse, who assassinated Mahatma Gandhi.
Summary:
A man was tied to an electricity pole and beaten to death by a mob in Jaipur on suspicion of molesting his neighbour's three-year-old daughter, with whom he had gone out.
Summary:
The court observed this while hearing a defamation complaint filed by an official against 22 villagers who alleged he had abused them and sought his transfer.
Summary:
Police said the boy was tricked into going to an agricultural field where the accused and his aides attacked him with lathis and sharp weapons.
Summary:
An Indian Sikh man has claimed that his turban was half moved by a white man in an alleged racist attack outside the UK Parliament on Wednesday, according to reports.
"He was a white man, but he didn't sound English.
Summary:
Tamil Nadu-based incubator will be investing â¹1.3 crore across 3 startups, Yellow Messenger, Linksmart DNA, and Book My Diamond.
Summary:
Gurugram-based Bash.ai, an artificial intelligence (AI)-based startup, has acqui-hired tech startup Wemo, which offers expertise for building mobile apps and websites.
Summary:
WeWork is expanding across Bangalore with its newest building, opening in May 2018 at Hebbal, Bellary Road.
Summary:
WeWork is opening its first building in Delhi NCR region on March 1 at Bristol Chowk in Gurugram.
Summary:
Following WeWork BKC and WeWork Marol, WeWork's new workspace is located within walking distance from Vikhroli Train Station in Mumbai making it easily accessible.
Summary:
The official trailer of Irrfan Khan starrer 'Blackmail' has been released.
Summary:
The Enforcement Directorate (ED) has seized 9 cars of PNB fraud accused Nirav Modi in its money laundering probe.
Summary:
Microsoft will be adding support for email addresses in 15 Indian languages across its apps and services, the company announced on Wednesday.
Summary:
The helmet features inbuilt Bluetooth speakers, USB charging port, and can be used for six hours on a single charge.
Summary:
The video's description read, "David Hogg the actor..." and under it, YouTube's algorithm suggested clips with similar claims.
Summary:
For the first time, the initial burst of light from the explosion of a massive star has been captured, scientists have confirmed after analysing images taken by Argentina-based amateur astronomer VÃÂctor Buso.
Summary:
A man has filed a police complaint against a Gurugram private hospital, alleging medical negligence that led to his 67-year-old mother's death.
Summary:
The CBSE helpline set up for students taking Class 10 and 12 Board examinations received a total of 5,600 calls in a span of 21 days.
Summary:
Parents of US First Lady Melania Trump have become permanent US residents, their lawyer said Wednesday.
Summary:
An 18-year-old girl from Prague has said that she spends ã1,000 (â¹90,000) a month to resemble a real-life Barbie doll.
Summary:
Singer-turned-BJP MP Babul Supriyo has said Bollywood should show solidarity and take a stand against working with Pakistani artistes.
Summary:
"Now the difference is that leading ladies are much more courageous to take on layered characters," she added.
So, in that way, it's also fashionable to have layered characters for women."
Summary:
Another user tweeted, "She looks like a black version of Priyanka Chopra." Meanwhile, another comment read, "A mix of Priyanka Chopra and Michael Jackson."
Summary:
The Canadian First Family participated in a cricket event at Delhi's Modern School where they were joined by former cricketers Kapil Dev and Mohammed Azharuddin.
Summary:
Earlier, a Ronaldo-less Madrid was ousted by Leganes in Copa del Rey quarter-finals.
Summary:
US-based electronics maker Tap Systems has developed a wearable device called 'Tap' which turns any surface into a keyboard.
Summary:
With the actuator's expansion, the cuts popped out to form surface gripping the ground, and with contraction, they folded flat, propelling the robot forward.
Summary:
Summary:
Mahindra and Mahindra has agreed to buy 22.9% stake in smart car solutions startup CarSense for â¹6 crore.
Summary:
Scientists believe it prevents the sperm from growing and shrinking, helping them swim towards the egg.
Summary:
During an interview by MNS chief Raj Thackeray, Nationalist Congress Party (NCP) chief Sharad Pawar said only Congress could pose formidable opposition to BJP.
Summary:
Constable Amit Kumar saw the woman lunge for the train's compartment door even as it had started picking up speed.
Summary:
Speaking at an election rally in Nagaland, Prime Minister Narendra Modi said that his vision for the northeast is "transformation by transportation".
Summary:
US President Donald Trump was spotted holding a list of compassionate replies on Wednesday while meeting the survivors of last week's mass shooting at a Florida high school.
Summary:
A team of six surgeons at Mumbai's Nair Hospital removed a 1.87-kilogram tumour from the brain of a 31-year-old man, claiming it as the largest such tumour extracted so far.
Summary:
Hollywood actress Jennifer Lawrence has slammed people mocking her for wearing a 'revealing' Versace dress on a winter day during the promotions for her upcoming film 'Red Sparrow'.
I would have stood in the snow for that dress because...that was my choice," Jennifer wrote on Facebook.
Summary:
A Mumbai branch of the bank had sanctioned a loan of â¹121 crore to Mehul Choksi for Gitanjali Gems in 2012.
Summary:
WhatsApp Co-founder Brian Acton has invested $50 million in encrypted messaging app Signal to help launch its non-profit organisation Signal Foundation, the company said in a blog post.
Summary:
Snapchat has responded with "We hear you" in a blog post to users complaining about the app's redesign.
Summary:
The flag of actor-turned-politician Kamal Haasan's newly launched party Makkal Needhi Maiam depicts six hands holding onto each other with a six-pointed star in the middle.
Summary:
Convicted Khalistani terrorist Jaspal Atwal was photographed with Canadian PM Justin Trudeau's wife Sophie Trudeau at an event in Mumbai on Tuesday.
Summary:
India successfully conducted the first night trial of indigenously developed nuclear-capable Prithvi-II missile on Wednesday.
Summary:
Punjab CM Amarinder Singh on Wednesday gave Canadian PM Justin Trudeau a list of nine Category 'A' Canada-based operatives allegedly involved in promoting radicalism in Punjab, a government official said.
Summary:
Hyderabad High Court has ordered the Tirumala Tirupati temple trust to not terminate its Christian and Muslim employees for being non-Hindus.
Summary:
The International Olympic Committee paid around â¹32 lakh ($50,000) for the training of 22 North Korea athletes who participated in the 2018 Winter Olympics.
Summary:
US President Donald Trump on Wednesday suggested that equipping teachers with firearms at schools can help prevent incidents of gun violence.
Summary:
Residents of Canadian city Windsor have been claiming to hear a humming noise since 2011.
Summary:
Brad and Jennifer were married from 2000 to 2005.
Summary:
Vishal Bhardwaj has announced that the shooting of his upcoming directorial starring Irrfan Khan and Deepika Padukone has been postponed by a few months owing to the actors' health issues.
Summary:
Summary:
Manchester United played out an away goalless draw against Sevilla in the first leg of Champions League Round of 16 on Wednesday.
Summary:
Israel-based public transit app Moovit on Wednesday said that it has raised $50 million in an investment round led by Intel Capital.
Summary:
A Dublin hotel offers pastries and cakes inspired by its own private art collection, as part of its high tea.
Summary:
Notably, entering an airport terminal without a valid ticket is illegal under the Indian aviation rules.
Summary:
An IndiGo passenger who was already in a coach and was to take a Goa-bound flight was denied boarding on Wednesday at Hyderabad airport.
Summary:
Two bikers in Mumbai were arrested for allegedly following the convoy of Canadian Prime Minister Justin Trudeau and performing stunts on the road, police said.
Summary:
RJD leader and Lalu Yadav's son Tej Pratap Yadav has vacated the government bungalow allotted to him, claiming that Bihar CM Nitish Kumar and his deputy Sushil Modi had "unleashed ghosts".
Summary:
Sudhir Shukla, who is associated with a Hindi channel, entered into an argument with the accused who tried to stop him from entering the train citing lack of space.
Summary:
Pakistan on Wednesday broke airspace norms by flying a military chopper within 300 metres of the Line of Control in Jammu and Kashmir, reports quoting Army sources said.
Summary:
The Jharkhand government has banned the Popular Front of India, claiming its members were "internally influenced by the ISIS".
Summary:
The profile claimed that the woman is a sex worker and provided a phone number.
Summary:
South Africa registered a 6-wicket victory in the second T20I at Centurion on Wednesday to end India's winning streak of five T20I matches and level the three-match series 1-1.
Summary:
She is one of the three from the first women-batch inducted into IAF fighter stream in 2016.
Summary:
Dhoni, who had not scored any fifty in his first 65 T20I innings, has now scored two in last 12 innings.
Summary:
Indian leg-spinner Yuzvendra Chahal conceded most runs by an Indian in a T20I match after giving away 64 runs against South Africa on Wednesday.
Summary:
People residing in 'chawls' and dark one-room flats are serving as directors in jeweller Mehul Choksi's companies Gili, Nakshatra and Gitanjali Gems, as per a report.
Summary:
A Chicago-based woman who was at a cafe which was attacked during the 2015 Paris terrorist attacks is suing Twitter, Facebook, and Google, alleging that they helped the growth of ISIS by giving it social media access.
Summary:
In a first, University of Pennsylvania researchers have used human cells to build an artificial eyelid that mimics blinking.
Summary:
He was the head of Gujarat crime branch when 19-year-old Jahan and three others were killed in an encounter in 2004.
Summary:
Talking about rising Bangladeshi immigrants in the northeast, Army chief Bipin Rawat has said Pakistan is behind the "planned" influx and is supported by China in its plan to keep the area disturbed.
Summary:
Rohith's mother, who had earlier declined to take the compensation, said she initially thought the university was trying to buy her silence.
Summary:
Paris-based money-laundering watchdog, the Financial Action Task Force (FATF), has dismissed Pakistan's claims that FATF has granted a three-month reprieve to the country over terror financing.
Summary:
Responding to Palestinian peace negotiator Saeb Erekat, US ambassador to the UN Nikki Haley said, "I will not shut up...I will respectfully speak some hard truths." Erekat had told Haley to shut up after she criticised Palestinian President Mahmoud Abbas.
Summary:
Philippine President Rodrigo Duterte has been listed as a threat to democracy and human rights in Southeast Asia in a report by the US intelligence community.
Summary:
A glitch at Japanese cryptocurrency exchange Zaif allowed some users to buy cryptocurrencies for free.
Summary:
Last year, Reliance had purchased 25% stake in media company Balaji Telefilms for â¹413 crore.
Summary:
Earlier this month, Citibank India had banned the use of its credit and debit cards towards purchase or trading of cryptocurrencies.
Summary:
Aircel CEO Kaizad Heerjee has warned at least 5,000 employees to brace for difficult times in the coming days amid "serious funding issues".
Summary:
The movie portrays women in an objectionable manner, they said.
Summary:
Overall, it was Rohit's 20th international duck and fifth golden duck.
Summary:
"By bringing that baccha (Rahul Gandhi) in Karnataka, we now know that we will win more than 150 seats here," Yeddyurappa claimed.
Summary:
After two AAP MLAs were arrested for allegedly attacking Delhi Chief Secretary Anshu Prakash, party leader Ashutosh on Tuesday suggested they were targeted for belonging to Dalit and Muslim communities.
Summary:
The stall, which became popular for its various discount offers, will close over digitisation.
Summary:
The Calcutta High Court had earlier barred the Centre from withdrawing the forces, stating that normalcy had not been established.
Summary:
Mohammad had planned to give Trudeau a report on the 1984 anti-Sikh riots and a memorandum urging him to recognise the riots as "genocide" in the Canadian Parliament.
Summary:
Top Delhi government officials came to work on Wednesday sporting black armbands to protest against the alleged assault on Delhi Chief Secretary by AAP MLAs. The officials had earlier decided to boycott the meetings called by CM Arvind Kejriwal until he apologises.
Summary:
The constable from the Yellow Gate Police Station had not reported to work since last December, police said.
Summary:
The Pollution Control Board on Tuesday sealed the Ghaziabad Haj House on orders of the National Green Tribunal as it did not have a sewage treatment plant on its premises.
Summary:
Actor Kamal Haasan on Wednesday launched his political party 'Makkal Needhi Maiam' and hoisted a flag carrying the party's symbol in Tamil Nadu's Madurai.
Summary:
The Employees' Provident Fund Organisation (EPFO) on Wednesday lowered the interest rate to 8.55% for the financial year 2017-18, compared to 8.65% for 2016-17.
Summary:
The employees of billionaire jeweller Nirav Modi and his uncle Mehul Choksi used code language to discuss business transactions with the PNB, reports said.
Nirav was referred to as 'friend' and Choksi as 'uncle'.
Summary:
The CBI has arrested Rajesh Jindal, the former head of PNB's Brady House branch in Mumbai where the $1.77-billion fraud involving jewellers Nirav Modi and Mehul Choksi began.
Summary:
Retired PNB Deputy Manager Gokulnath Shetty, who was arrested in the â¹11,400-crore fraud case, has told CBI that fraudulent Letters of Undertaking (LoUs) were issued since 2008.
Summary:
In an editorial on the â¹11,400-crore PNB fraud, ex-Finance Minister and BJP leader Yashwant Sinha said Finance Minister Arun Jaitley cannot be absolved of his "constitutional and democratic responsibility".
Summary:
On the Public Interest Litigations (PILs) filed in the $1.77-billion PNB scam, the Supreme Court said that it's fashionable to file PILs after seeing news headlines.
Summary:
Bjoergen is also the second most successful woman at either the Summer or Winter Olympics.
Summary:
Congress President Rahul Gandhi on Wednesday said, "PM Narendra Modi is not against corruption, he is an instrument of corruption." Stating that fraud-accused businessmen like Nirav Modi and Vijay Mallya magically disappear from India to appear in foreign lands, Gandhi said PM Modi's magic could make democracy disappear from India.
Summary:
We want development of the country...We have to think about our people as they are the beneficiaries of the development," the Bangladeshi PM added.
Summary:
Goa CM Manohar Parrikar's health condition is stable and he is positively responding to treatment, BJP MP Narendra Sawaikar has said.
Summary:
Talking about the 73-day Doklam standoff between India and China, former National Security Advisor Shivshankar Menon has said China aimed to split India and Bhutan.
Summary:
The man, who was rescued by the security personnel before the lion could attack him, said he wanted to have a chat with the animal.
Summary:
Police detained AAP MLA Prakash Jarwal over the alleged assault on Tuesday.
Summary:
Continuous shelling by Syrian government forces in eastern Ghouta has killed around 250 civilians, including 58 children and 42 women, in two days.
Summary:
During the movement, students demonstrating for recognition of Bengali as a national language, along with Urdu, were shot by police on February 21, 1952.
Summary:
A UK woman wanted for fraud got into an argument with the police on a Facebook post appealing for communities across the UK to look out for her.
Summary:
It has instructed payments banks to complete the KYC process independently through third parties.
Summary:
Akshay Kumar has said shooting for his film 'Housefull 4' is going to be like a three-month vacation.
Summary:
Singer Diljit Dosanjh has mentioned his celebrity crush Kylie Jenner in his new song titled 'High End'.
Earlier, talking about Kylie Jenner, Diljit had said, "I love her very much.
Summary:
South African cricketer Lungi Ngidi, who made his international debut against India in January, has revealed he chose fast bowling as his parents couldn't afford a batting kit during his childhood.
Summary:
An Indian newspaper recently published an interview with someone who they believed was ex-WWE wrestler Hulk Hogan.
Summary:
"With their arrogance, the BJP actually believes they can buy God," Gandhi said.
Summary:
West Bengal CM Mamata Banerjee said the government will take care of the mentally unsound, tribal woman who was gangraped by a group of men on Saturday.
Summary:
After his meeting with Canadian PM Justin Trudeau, Punjab CM Amarinder Singh has said he was given assurance the Khalistan issue will be looked into.
Summary:
Couples will have to submit a document signed by their ward member attesting that they did not use plastic at their wedding functions.
Summary:
South Korea's first lady, Kim Jung-sook, will reportedly accompany Ivanka during her stay.
Summary:
The directive will have no impact on the existing 10-digit consumer mobile numbers.
Summary:
In the hope of creating organs compatible with human transplants, Harvard researchers have used human cells to "refurbish" rat and pig lungs.
Summary:
The Pakistan Supreme Court on Wednesday disqualified corruption-accused former Prime Minister Nawaz Sharif as president of the ruling Pakistan Muslim League-Nawaz (PML-N).
Summary:
Actress Deepika Padukone took to Instagram to share a picture of a poem that she wrote during her childhood.
Summary:
The CBI has arrested Vipul Ambani, Mukesh Ambani's cousin and President (Finance) of Nirav Modi's Firestar Diamond firm in connection with $1.77-billion PNB scam.
Summary:
Earlier, Aggarwal had said the probing agencies won't be able to prove the charges against Nirav in the court.
Summary:
UK-based augmented reality (AR) startup 6D.ai is working on a technology to build a crowdsourced 3D map of the world.
Summary:
Summary:
A special CBI court on Wednesday sent six accused employed with jeweller Nirav Modi and Mehul Choksi's firms to police custody till March 5 over the â¹11,400-crore Punjab National Bank fraud.
Summary:
The Malik Gathwala Khap in Haryana has asked women to shun the practice of wearing 'ghoonghats' (veils), stating that the attire blocks vision and obstructs breathing.
Summary:
At least eight people were killed and four others were injured after a speeding 16-wheel truck carrying iron rods crashed into a house and a makeshift tea shop in Madhya Pradesh's Jabalpur on Wednesday.
Summary:
Recently, the US cut aid worth at least $1.15 billion to Pakistan over inaction against terrorists.
Summary:
Japan has donated over 10,000 ballot boxes worth $7.5 million (over â¹48 crore) for Cambodia's 2018 general elections.
Summary:
South Korean government official Jung Ki-joon, who guided Seoul's regulatory clampdown on cryptocurrency, was reportedly found dead on Sunday.
Jung Ki-joon had earlier said cryptocurrencies weren't a legal currency and the government will "strongly respond to excessive cryptocurrency speculation".
Summary:
Ambani said that this will create over one lakh jobs in UP over the next three years.
Summary:
Mahindra Group Chairman Anand Mahindra has tweeted admitting a "dismal wardrobe failure" during his meeting with Canadian PM Justin Trudeau.
Summary:
Taapsee Pannu has said she'll believe she's a star when the audience buys tickets for her film and says 'It's Taapsee's film, let's go and watch it'.
Summary:
Indian batsman Cheteshwar Pujara has said public perception has played a major role in him being unsold at last month's IPL auction.
Summary:
Australia's Chris Lynn dislocated his right shoulder while trying to protect his injury-prone left shoulder during the Trans Tasman tri-series final on Wednesday.
Summary:
While the initial plan was to supply panels for 45-50 million iPhones, Samsung now plans to manufacture panels for 20 million iPhones.
Summary:
It also states AI will allow hackers to mount attacks including driverless car crashes or turn commercial drones into targeted weapons.
Summary:
The report also mentioned that nearly 40% of over 53,000 cyber attacks occurred in the financial services sector last year.
Summary:
However the feature has not been rolled out for iOS users, who cannot see the description even if it is added by another group member.
Summary:
Archaeologists exploring the world's biggest flooded cave in Mexico have discovered 9,000-year-old remains from Mayan civilisation including burnt human bones, ceramics, and wall etchings.
Summary:
Amazon India has hired Mayank Jain, the former Head of Financial Services at the homegrown e-commerce startup Flipkart.
Summary:
Earlier, Union Minister Jayant Sinha said that over 51% of Air India will be transferred to the private sector.
Summary:
Singapore-based software-as-a-service (SaaS) provider Capillary Technologies has raised $20 million from private equity giant Warburg Pincus and venture capital firm Sequoia Capital.
Summary:
In an email to his employees, fraud-accused jeweller Nirav Modi said they should look for other job opportunities as he won't be able to pay them.
Summary:
The trailer of 'Baaghi 2', starring Tiger Shroff and his rumoured girlfriend Disha Patani, has been released.
Summary:
NASA engineers are reportedly working on a new spacesuit with a long-term waste-disposal system, which could be used for emergencies up to six days.
Summary:
The school stated that "stern action was taken, including suspension along with mandated counselling".
Summary:
Describing India as an important market for The Trump Organization, US President Donald Trump's son Donald Trump Jr has said that the global company will lose out on deals because of restrictions imposed by his father.
Summary:
Former students of Bengaluru's CMR Institute of Technology have developed cement-less bricks using a new geopolymer technology that is environment-friendly and have founded a startup around the idea.
Summary:
We are filled with grace and humility," Trudeau penned down in the temple's visitors' book.
Trudeau performed parikrama and also did 'sewa' by preparing rotis inside the temple's langar hall.
Summary:
He had cleared his Class X board exams with 63.8% in 2015.
Summary:
A couple from Bristol has become the oldest winners of the UK lottery by winning the ã18 million (over â¹160 crore) jackpot.
Summary:
Mumbai Police have filed a chargesheet against Ness Wadia, who co-owns Kings XI Punjab along with Preity Zinta, nearly four years after the actress filed a complaint accusing Wadia of molesting her.
Summary:
Shah Rukh Khan said this while explaining why several actors didn't speak up on the row.
Summary:
Composer Shamir Tandon, while defending the use of Pakistani singer Rahat Fateh Ali Khan's voice in 'Welcome to New York', questioned why Rahat's songs 'Jag Ghoomeya' and 'Mere Rashke Qamar' weren't removed from the films featuring them.
Summary:
New pictures of actor Hrithik Roshan from the sets of his upcoming film 'Super 30' have surfaced online.
Summary:
Footprints could be seen on the dead whale, while one person even scrawled "Ana, I love you" on its carcass.
Summary:
In the 48th over, Ellis went on to dismiss Raval.
Summary:
Twenty-three-time Grand Slam champion Serena Williams has said she almost died after giving birth to her daughter, Olympia, last year.
Summary:
Australia, who started the Trans Tasman T20I tri-series as the seventh-ranked team, have jumped to the second spot after winning the final against New Zealand on Wednesday.
Summary:
A 26-room 'beer hotel', said to be the first of its kind in the world, will open in 2019 in Scotland.
Summary:
A new hotel that sources its energy from an underground river has come up in Dublin.
Summary:
A drive-by art gallery has come up on a highway between Abu Dhabi and Dubai, in celebration of the UAE Innovation Month.
Summary:
Nirav Modi is accused in Punjab National Bank's $1.77 billion scam.
Summary:
The Maharashtrawadi Gomantak Party (MGP) and the Goa Forward Party (GFP), who are allies of the BJP government in Goa, have said they will not withdraw support till Manohar Parrikar is Chief Minister.
Summary:
Gurugram-based grocery delivery startup Grofers is in talks to raise up to $65 million in a funding round that can see its valuation drop by over 40%, according to reports.
Summary:
Russian billionaire Yuri Milner's Apoletto Fund has backed Bengaluru-based startup Udaan that offers an online marketplace for businesses.
Summary:
India and Canada have signed a bilateral agreement to support entrepreneurs and startups from both the countries.
Summary:
They believe Earth's earliest life forms were made up of single-celled organisms called prokaryotes, which evolved into complex lifeforms by phagocytosis 2-3 billion years ago.
Summary:
An 18-month-old girl died after she accidentally fell into a pot containing hot curry in her house in Maharashtra's Ambernath on Tuesday, police officials said.
Summary:
Further, actress Bipasha Basu has accused Gitanjali Group of using her pictures to endorse 'Gili', even after her contract with the brand expired.
Summary:
It also said an FIR can't be lodged in any state against them.
Summary:
However, a complaint accusing Kothari of defrauding 7 banks of â¹3,700 crore was filed in February 2018.
Summary:
The laser delivers charge via a thin power cell mounted to the back of the smartphone.
Summary:
The robot, however, managed to open the door, even after one of its body parts fell off.
Summary:
French company Archos has launched an Android-powered electric scooter called Citee Connect which features a 5-inch display between the handle bars.
Summary:
Singapore came first with an average 4G speed of 44.31 Mbps, followed by the Netherlands and Norway.
Summary:
The Pyramids of Giza were aligned without the use of modern technology as engineers used shadows cast during the equinox to line up the 4,500-year-old structure, an Egypt-based study has proposed.
Summary:
AAP MLA Amanatullah Khan on Wednesday surrendered himself at Delhi's Jamia Nagar Police Station after Delhi Chief Secretary Anshu Prakash alleged Khan and other MLAs had assaulted him.
Summary:
Wearing a kurta pyjama dress with kesari patka wrapped around his head, Trudeau performed 'sewa' by preparing rotis inside the temple's langar hall (community kitchen).
Summary:
An Income Tax department joint commissioner in Bihar's Patna was arrested on Wednesday for allegedly molesting a student from the northeast.
Summary:
Wearing an ice-blue skirt suit, the Queen presented the show's designer Richard Quinn with the inaugural Queen Elizabeth II award, which aims to recognise emerging British designers for exceptional talent and originality.
Summary:
Venezuela on Tuesday formally launched a pre-sale of its state-backed cryptocurrency 'Petro' in a bid to recover from its worst financial crisis.
Summary:
A Facebook post by a Mumbai-based woman looking for a girl named Supriya has gone viral.
The woman claimed she overheard a man talking about how he had ditched a girl named Supriya for another girl.
Summary:
An Uttar Pradesh farmer bit off a snake's head and chewed on it before spitting it out.
Summary:
"A section of Congress legislators in Assam are trying to get cheap publicity out of the issue," said Sarma.
Summary:
Canadian Prime Minister Justin Trudeau met Bollywood actors including Shah Rukh Khan and Aamir Khan at an event held in Mumbai on Tuesday.
Summary:
UK-based researchers have uncovered Roman "boxing gloves" beneath the stone fort of Vindolanda, UK.
Summary:
Google's next Android version, Android P, will reportedly feature safeguards for preventing background apps from accessing the phone's camera.
Summary:
People can visit tents hanging from a cliff in the Sahyadri mountains in Maharashtra.
Summary:
Three men who worked as loaders at the Mumbai airport have been arrested for allegedly stealing mobile phones ordered online.
Summary:
A Bengaluru court has ordered e-commerce startup Flipkart to refund â¹1,878 to a man who was accidentally charged twice for his package in 2015.
Summary:
The accused, who was wearing a helmet, is at large.
Summary:
Bruhat Bengaluru Mahanagara Palike (BBMP) has proposed having civic authorities go around Bengaluru's Bellandur Lake in motor boats to keep a watch over it following repeated incidents of fire.
Summary:
The gangster had over 36 criminal cases registered against him, police said.
Summary:
BJP MLA Lokendra Singh died on Wednesday after his car rammed into a truck on a highway in Uttar PradeshâÂÂs Sitapur.
Summary:
The Railways Ministry will move a proposal to reconstruct the Ayodhya railway station building as a replica of the proposed Ram Temple, Minister of State for Railways Manoj Sinha has said.
Summary:
Having already made waves around the world, the all-new Mercedes-Benz S-Class furthers its 115-year old legacy as the car the world looks up to.
Summary:
Earlier campaigns against vaccination had spread false information claiming it will affect children's fertility and carries pork-based gelatine, making it 'haram' for Muslims.
Summary:
Lorentzen finished the race in a time of 34.41, surpassing the previous record of 34.42 set by USA's Casey Fitzrandolph in 2002.
Summary:
World's richest man Jeff Bezos on Tuesday revealed installation of the 500-feet-tall clock, which will keep time for 10,000 years, has begun in the US.
Summary:
According to Tesla, the hack was limited to the company's test cars and did not affect any vehicles owned by its customers.
Summary:
Researchers have developed a 3D-printed clip-on device that is capable of enabling microscopic visualisation of samples ranging from plant to mammalian cells.
Summary:
The supervolcano at Yellowstone National Park was hit with 180 earthquakes from February 8-18, with the largest tremor of magnitude 2.9, as per the US Geological Survey.
Summary:
Jupiter's Great Red Spot, the Solar System's largest storm, would die off within 10 to 20 years, a researcher from NASA's Jupiter-orbiting Juno mission has revealed.
Summary:
Canadian PM Justin Trudeau has said that his visit to India is not about handshakes and photo-opportunities and is rather is about the close India-Canada ties.
Trudeau arrived in India on Saturday for a week-long visit.
Summary:
Thane Municipal Corporation Commissioner Sanjeev Jaiswal on Tuesday asked civic officials to pass a no-confidence motion against him so that he gets transferred.
Summary:
This comes amid allegations that Kothari defrauded banks of â¹3,700 crore.
Summary:
US Vice President Mike Pence was scheduled to meet the North Korean delegation during the Winter Olympics' opening ceremony in South Korea earlier this month, White House has said.
Summary:
Krishna Kumari has become the first Dalit woman to contest Senate elections in Pakistan after she was given the ticket by the Pakistan Peoples Party.
Summary:
A United Airlines pilot flew to San Francisco and hand-delivered the wedding and engagement rings lost by a passenger at a US airport.
Summary:
The 72-inch pizza is made using 16 kg of sauce and 7 kg of cheese.
Summary:
Priyanka Chopra has said she wouldn't have had a career of almost 20 years if she was sensitive to haters.
"I'm not even sensitive to people's opinions.
Summary:
Actress Raima Sen, while speaking about casting couch in the film industry, said, "If you think that you can sleep with a director and get a film, well, it doesn't ever work like that." "One should realise and accept the fact that there is no shortcut to success," she added.
Summary:
Earlier, Union Minister Nirmala Sitharaman said a firm linked to Singhvi's wife had dealings with Modi's firm.
Summary:
Summary:
Social media giant Facebook has launched a feature that supports a standard 3D file format (gITF 2.0) which allows users to share 3D posts in the News Feed section.
Summary:
The Indian Railways has signed a Memorandum of Understanding with the Maharashtra government to set up a â¹600-crore metro coach factory in Latur district.
Summary:
The Bombay High Court told the state that video-conference facility is not a substitute to producing an accused person before the trial court on scheduled dates.
Summary:
Based on an analysis of bills from four private hospitals in New Delhi and NCR, the National Pharmaceutical Pricing Authority (NPPA) found that hospitals sold medicines with a markup of up to 1,192%.
Summary:
Summary:
Bilawal Bhutto, son of ex-Pakistan PM Benazir Bhutto, has written in a newspaper column that his mother showed that one can be a mother and PM simultaneously.
Summary:
At least 17 people were recently killed at a Florida school in a mass shooting by an expelled student.nnn
Summary:
An Asian-American man was described with a racial slur at an outlet of American fast food chain Taco Bell in Philadelphia.
Summary:
Malayalam actress Priya Prakash Varrier has garnered more followers on Instagram than Facebook Co-founder Mark Zuckerberg, whose company also owns the photo-sharing app.
Summary:
The police detained AAP MLA Prakash Jharwal on Tuesday in connection with the alleged assault on Delhi Chief Secretary Anshu Prakash.
Summary:
Women and Child Development Minister Maneka Gandhi on Tuesday said the 12% GST on sanitary napkins benefits small indigenous manufacturers as businesses with less than â¹20-lakh turnover are not taxed.
Summary:
After her marriage was annulled by the Kerala High Court as a case of 'love jihad' in 2017, Hadiya has said she is a Muslim and wishes to remain one.
Summary:
West Bengal Fisheries Minister CN Sinha has announced that a government initiative to provide fish meals for â¹21 across the state will be launched in May. The meals will be sold from battery-operated cars located near district magistrate offices.
Summary:
Trudeau was instead received by Minister of State for Agriculture Gajendra Singh Shekhawat.
Summary:
The West Bengal government has launched a crackdown on Rashtriya Swayamsevak Sangh (RSS)-inspired schools in the state, West Bengal Education Minister Partha Chatterjee has said.
Summary:
Earlier, India had said it was 'disturbed' when a 15-day emergency was imposed on February 5.
Summary:
The New Delhi Municipal Council (NDMC) has announced the introduction of smart classes in classes 6-12 of 45 NDMC and Navyug schools, starting next academic session.
Summary:
Following a Supreme Court directive, the Union Cabinet has approved the setting up of a tribunal to resolve the dispute between Odisha and Chhattisgarh on sharing water from the Mahanadi river.
Summary:
British singer Zayn Malik has revealed that his favourite Bollywood song is 'Chaiyya Chaiyya' from Shah Rukh Khan starrer 1998 film 'Dil Se'.
Summary:
In an alleged reference to Kamal Haasan and Rajinikanth, DMK Working President MK Stalin said paper flowers may bloom in Tamil politics but they are not fragrant.
Summary:
Summary:
Summary:
The Income Tax Department has attached seven properties of the Gitanjali Group and its promoter Mehul Choksi in Mumbai over a tax evasion probe against them.
Summary:
Five-time Ballon d'Or winner Lionel Messi scored his first-ever goal against Chelsea as Barcelona salvaged a 1-1 draw in the Champions League Round of 16 first leg on Tuesday.
Summary:
Indian spinner Kuldeep Yadav has claimed that his Instagram account was hacked, after a picture of a half-naked woman was posted on the account.
Kuldeep deleted the image a minute after it was uploaded and took to Twitter to apologise for the "unsolicited post".
Summary:
"The tour will give immense experience to players and they'll also get different sports experience from other states," said Ravideep Sahi, Inspector General, CRPF.
Summary:
After Delhi Chief Secretary Anshu Prakash alleged that he was assaulted by AAP MLAs during a meeting, BJP spokesperson Sambit Patra said AAP had become synonymous with anarchy.
Summary:
A woman in Punjab allegedly cut off her husband's genitals while he was sleeping and disposed them in the toilet, on suspicion that he was having an extramarital affair.
Summary:
The Delhi Metro Rail Corporation has announced that commuters can now use their smart cards to make payments in feeder buses and at parking lots of 13 stations in the NCR.
Summary:
The police have arrested two women for allegedly stealing valuables including diamond jewellery worth â¹15 lakh by picking pockets in the Delhi Metro.
Summary:
The Delhi High Court has extended a ban on student protests near Jawaharlal Nehru University till March 9.
Summary:
He further said the government is all set to upgrade commuter mobility in the city.
Summary:
A nursing college professor from Mumbai has been convicted by a court for allegedly discussing his sex experiences with female students instead of the assigned subjects.
Summary:
Turkish forces will encircle the Syrian town of Afrin "in the coming days" to drive out the Kurdish YPG militia, President Recep Tayyip ErdoÃÂan said.
Summary:
The hair room is part of a Holocaust Museum where hair of victims of the Nazi death camp is displayed.
Summary:
The five-day loss in the market capitalisation of Punjab National Bank (PNB) has nearly equalled the â¹11,400-crore fraud linked to jewellers Nirav Modi and Mehul Choksi.
Summary:
Summary:
Rotomac owner Vikram Kothari, who allegedly defrauded banks of â¹3,700 crore, is the son of mouth freshener brand Pan Parag's late founder Mansukhlal Madhavlal Kothari.
Summary:
RBI on Tuesday said it had confidentially cautioned banks about possible abuse of the SWIFT interbank messaging system at least thrice since August 2016.
Summary:
He questioned how a clerk, who is authorised only to deal with amounts under â¹25,000, could commit fraud worth crores of rupees.
Summary:
PNB fraud accused Nirav Modi's lawyer Vijay Aggarwal has said that all bank transactions and allegations made by the CBI were completely wrong.
Summary:
Finance Minister Arun Jaitley on Tuesday said that the government will chase down those who cheat the banking system.
Summary:
Former England captain Kevin Pietersen has revealed the upcoming Pakistan Super League will be his last professional tournament as a cricketer.
Summary:
AAP MLA Prakash Jarwal has filed a complaint with the SC/ST commission against Delhi Chief Secretary Anshu Prakash for making casteist remarks.
Summary:
A group of men allegedly gangraped a tribal woman, who was in her twenties, and inserted a metal rod in her private parts in West Bengal's Kushmandi on Saturday.
Summary:
A video showing a local Congress leader, Narayanaswamy, pouring petrol inside the Bruhat Bengaluru Mahanagara Palike (BBMP) office in Karnataka has surfaced online.
Summary:
Stating that people should eat beef if they wish to, Vice President Venkaiah Naidu on Monday questioned the need to celebrate it.
Summary:
The residents are currently provided 50 litres of water for daily consumption.
Summary:
The Maldives Parliament on Tuesday approved President Abdulla Yameen Abdul Gayoom's request to extend the state of emergency in the country by 30 days.
Summary:
US President Donald Trump on Tuesday denied kissing a woman forcibly in the lobby of the Trump Tower 12 years ago.
Summary:
A Malaysian artist has been jailed for a month over a caricature depicting scandal-hit Prime Minister Najib Razak as a clown.
Summary:
Summary:
Talking about her song 'Nain Phisal Gaye' from the upcoming film 'Welcome To New York', Sonakshi Sinha said, "The combination of Sajid-Wajid, Salman Khan and my 'nain' is always a superhit." Salman has made a cameo appearance in the song.
Summary:
The poster of actor Tiger Shroff starrer 'Baaghi 2' has been revealed.
'Baaghi 2' will also star Tiger's rumoured girlfriend actress Disha Patani as the female lead.
Summary:
Actor Kamal Haasan has said that he was entering the field of politics as the ruling AIADMK party was "bad".
Summary:
'Padmaavat' director Sanjay Leela Bhansali has said that he gave a â¹500 note after she finished filming the jauhar scene as he was overwhelmed by how she handled that scene.
Summary:
The government has reportedly directed the Serious Fraud Investigation Office (SFIO) to probe over 50 firms linked to jewellers Nirav Modi and Mehul Choksi.
Summary:
Shahzad will play for Multan Sultans in PSL, while Akram is the Director of Cricketing Operations for the franchise.
Summary:
Summary:
Indian women athletes will wear trousers and blazers instead of the traditional combination of sarees and blazers at the opening ceremony of the upcoming Commonwealth Games.
Summary:
In January, Yusuf was handed a five-month back-dated suspension by the BCCI for testing positive for a banned substance.
Summary:
The Delhi government has announced the launch of 'Mission Buniyaad' from this year for improving the learning skills of students in government and municipal-run schools.
Summary:
Travelling is a beautiful experience but it also brings the risk of things going wrong despite careful planning.
Summary:
A 56-year-old Indian man, diagnosed with end-stage heart disease, was left with two beating hearts following a 'Piggyback Heart Transplant' at Hyderabad's Apollo Hospital.
Summary:
Till now, the private sector was allowed to mine coal only for their own consumption.
Summary:
Congress MLAs from Assam, Nandita Das and Rupjyoti Kurmi, have alleged that Priyanka Chopra's outfit on Assam Tourism calendar is immodest.
Summary:
The first song 'Oye Hichki' from the Rani Mukerji starrer 'Hichki' has been released.
The film is scheduled to release on March 23, 2018.
Summary:
Nirav added that his uncle Mehul Choksi too has been wrongly named as he has an "independent and unconnected business".
Summary:
Former Pakistani cricketer Aamer Hanif's son, Mohammad Zaryab, committed suicide at his home in Karachi after being excluded from an Under-19 team.
Summary:
A report by the Russian National Security Council has revealed that more than 5 lakh computers were disabled by hack attacks in the country last year.
Summary:
The Gujarat High Court has restored a gag order against The Wire, prohibiting it from reporting on the businesses of BJP President Amit Shah's son Jay Shah.
Summary:
Talking about SoftBank's partnership with Uber rival Didi Chuxing, CEO Dara Khosrowshahi said, "If you're going to do business with SoftBank, you have to get used to the way that they do business with your competition", and added that its okay.
Summary:
The Election Commission has removed a Collector in Madhya Pradesh after discrepancies were found in the voters' list ahead of the bypolls for the Mungaoli Assembly seat on February 24.
Summary:
Summary:
Stating that Hindu religious texts do not endorse caste-based discrimination, Ramdev added that people misinterpreted the Vedas, Upanishads, and Manusmriti without studying them.
Summary:
Expressing outrage over the killings of children in Syria, UNICEF on Tuesday issued a blank statement with a footnote that read, "We no longer have words to describe the children's suffering".
Summary:
China had also opposed foreign intervention in the Maldives crisis, calling it the country's internal affair.
Summary:
A Canadian woman said she chased down a thief after he stole another woman's wallet.
Summary:
A 43-year-old American woman was recently arrested for pooping in the middle of a street thrice in the past month.
Summary:
As part of an assignment, a US university professor has asked his students to mail him Twitter messages that he could send to President Donald Trump and get blocked by him on the micro-blogging site.
Summary:
Summary:
TV actor Gaurav Chopra, who was also a contestant on the show 'Bigg Boss 10', got married to his girlfriend Hitisha in New Delhi.
Summary:
A 24-year-old woman and her 26-year-old boyfriend said they were forced off a ã400 (â¹36,000) Birmingham-Dubai Emirates flight minutes before takeoff after the air hostess overheard the woman discussing her period pain.
Summary:
The Maharashtra government is planning to set up its own Computer Emergency Response Team (CERT) in the next six months to tackle cyber attack incidents on corporates and critical government infrastructure.
Summary:
Railway Minister Piyush Goyal on Monday travelled from Mysuru to Bengaluru in a general coach of the Kaveri Express and inspected the amenities available to passengers.
Summary:
Nearly 100 civilians, including 20 children, were killed in Syria's eastern Ghouta area on Monday in the deadliest shelling by Syrian government forces in three years, the Syrian Observatory for Human Rights said.
Summary:
Earlier this month, authorities confiscated over 1,000 kg of the drug.
Summary:
Loans sanctioned for exports were used for other purposes and money was round-tripped to Rotomac's accounts, a consortium of seven banks alleged.
Summary:
"Sara's career is important for KriArj. Not only hers, but everyone involved in the film," said KriArj Entertainment's Arjun N Kapoor.
Summary:
The Income Tax Department has found that Nirav Modi's firms illegally diverted â¹1,216 crore worth diamonds intended for exports to the domestic market for huge profits in FY17.
Summary:
A 'negative watch' status is given when the rating agency is deciding if the company's Viability Rating will be lowered.
Summary:
Global rating agency Fitch on Tuesday placed PNB's Viability Rating on 'Rating Watch Negative' following the $1.77-billion fraud detection.
Summary:
Billionaire jeweller Nirav Modi, who is an accused in the $1.77-billion PNB fraud, has said the bank's actions have destroyed his brand and business.
Nirav said that PNB's "anxiety" to recover the dues "immediately" has closed all his options to pay back.
Summary:
Former Gitanjali Gems Managing Director Santosh Srivastava has said that the company's Chairman Mehul Choksi threatened to trap him in a fraud case in the year 2012-13.
Summary:
Afghanistan spinner Rashid Khan has become the youngest to occupy the top spot in the ICC ODI bowlers' rankings, breaking former Pakistani spinner Saqlain Mushtaq's 21-year-old record.
Summary:
Samsung has unveiled world's largest solid state drive (SSD) which offers around 30TB of storage.
Summary:
PM Narendra Modi did not receive his Canadian counterpart Justin Trudeau at Delhi's Indira Gandhi International Airport after he arrived for his seven-day trip on PM Modi's invitation on Saturday.
Summary:
A prisoner managed to escape from the custody of the Delhi Police on Monday after his aides threw chilli in the eyes of constables.
Summary:
Meanwhile, other designs in his collection were seemingly inspired by inflatable swimming pools and bathtubs.
Summary:
The investor had purchased 41,000 Bitcoins at an average of $8,400, taking his total count to 96,000 Bitcoins.
Summary:
The Co-founder of Ethereum platform and cryptocurrency, Vitalik Buterin, has warned that cryptocurrencies "could drop to near-zero at any time" as they are "a new and hyper-volatile asset class".
Summary:
'Sarabhai Vs Sarabhai' actor Sumeet Raghavan has said that in India, it's like living in a sex starved nation.
Summary:
Filmmaker Subhash Ghai has reportedly approached Priyanka Chopra to star in the sequel of the 2004 film 'Aitraaz'.
Summary:
Summary:
Gurugram-based online marketplace ShopClues has raised $1 million from Mumbai-based venture capital firm Unilazer Ventures, amid reports of a cash crunch.
Summary:
Canada-based biotech startup Avro is developing skin patches to deliver drugs to patients who are unable to swallow or chew.
Summary:
US-based retail giant Walmart's proposed deal with Indian e-commerce firm Flipkart will reportedly include a provision to set up a chain of retail stores across the country.
Summary:
Researchers have uncovered the remains of several Mesolithic-era people with wounds, including wooden poles through two skulls, from an underwater grave in present-day Sweden.
Summary:
US-based researcher Nicholas Hud has said that space rocks play the role of "time capsules", showing what molecules originally existed in our solar system.
Summary:
A genome study on common vampire bats by over 30 international researchers has revealed that the mammals eased into the blood-only diet by feeding on blood-sucking ticks and mosquitos.
Summary:
An 83-year-old man in Rajasthan's Karauli married a 30-year-old woman so that he could get a son to look after the property owned by him, according to reports.
Summary:
Lok Sabha Speaker Sumitra Mahajan has notified that a 1500-square foot crèche facility will be set up in the Parliament House for an "inclusive and supportive work environment" for its female employees.
Summary:
Bank of England Governor Mark Carney said Bitcoin has "pretty much failed" as a currency.
Summary:
Motor company TVS-backed Mumbai-based car servicing startup Carcrew has acquired Delhi-based ClickGarage for an undisclosed amount in a stock-and-cash deal, the startup said.
Summary:
The seven-month-long journey is being called the world's longest pub crawl.
Summary:
Mitsutoki Shigeta had sued the Thai Social Development Ministry for the kids' custody after it was revealed that he had fathered 16 children.
Summary:
Haryanvi singer Vikas Kumar has sent a legal notice to the makers of 'Veerey Ki Wedding' suing them for â¹7 crore while alleging that his song 'Hat Ja Tau' has been used without his permission.
Summary:
Actor Sylvester Stallone has said that social media reports of his death are not true while adding, "Ignore this stupidity." The 71-year-old actor's younger brother Frank Stallone tweeted, "Rumors that my brother is dead are false.
Summary:
Jeweller Nirav Modi's lawyer Vijay Aggarwal has said PNB's $1.77-billion fraud case against his client will collapse just like the 2G scam and Bofors scandal.
Summary:
Indian captain Virat Kohli has achieved the most rating points for any batsman in the ICC ODI rankings in 27 years, achieving 909 points after the South Africa ODI series.
Summary:
Israeli visual aid company OrCam has developed a device for visually impaired users which can be attached to a pair of eyeglasses and can read text aloud.
Summary:
Three of UK's largest cities have partnered to attract more tourists from three of the world's fastest-growing markets â India, China and the Gulf Cooperation Council (GCC) countries which include Saudi Arabia and UAE among others.
Summary:
Japan-based carmaker Aspark has developed an electric car called Aspark Owl which goes from 0-100 kmph in 2 seconds, missing Tesla Roadster's world record by 0.1 seconds.
Summary:
India's second Moon mission Chandrayaan-2, scheduled to launch in April 2018, is estimated to cost â¹800 crore, which is less than Hollywood sci-fi movie Interstellar's budget of â¹1,062 crore.
Summary:
A school teacher at a government school in Uttar Pradesh's Kannauj has been arrested for allegedly stripping a class 8 student on the pretext of taking her measurements for a new uniform.
Summary:
A video of a woman drying an underwear by holding it under the air conditioner vent of a recent Antalya-Moscow flight has gone viral online.
Summary:
The UK's Royal Mint is releasing four new 50 pence coins featuring fictional characters like Peter Rabbit and Mrs Tittlemouse from the books by children's writer Beatrix Potter.
Summary:
Virat Kohli shared a picture of himself hugging wife Anushka Sharma with a portrait of a couple kissing in the backdrop on Instagram.
Summary:
Actress Diana Penty took to Twitter to share the release date of her upcoming film 'Happy Phirr Bhag Jayegi' as August 24.
Summary:
An oak tree believed to have been planted 1,000 years ago in Wales has fallen.
Summary:
Football fans threw hundreds of tennis balls on the pitch during the Bundesliga match between Eintracht Frankfurt and RB Leipzig in a protest against Monday night football in Germany's top division.
Summary:
Canterbury needed 95 to win in two overs and to encourage them to go after the target and lose wickets, Vance bowled a 22-ball over, including 17 no-balls.
Summary:
Notably, the second-placed French figure skating duo suffered a wardrobe malfunction at the event.
Summary:
This comes after Microsoft disclosed a Chrome security bug last year and criticised Google's approach to security patches.
Summary:
Indian car manufacturer Mahindra Group has announced that the company will invest â¹900 crore in electric vehicles (EV) in the next four years.
Summary:
Homo erectus, the ancestors of modern humans which emerged in Africa about 1.8 million years ago, may have been mariners complete with sailing lingo, as per US-based linguist Daniel Everett.
Summary:
Six Israeli researchers ended a four-day Mars habitat experiment in the Negev desert on Sunday.
Summary:
In a statement released on Tuesday, Canadian Prime Minister Justin Trudeau said that Canada supports one, united India.
Summary:
CISF added, "He could not furnish valid documents for carrying the yellow metal."
Summary:
The Union Environment Ministry and the Delhi government jointly launched 'Clean Air Campaign' which saw 4,347 violations in a week, officials said on Monday.
Summary:
The Hockey India selectors on Tuesday brought back Sardar Singh as captain of an 18-member Indian squad for the 27th Sultan Azlan Shah Cup to be held in Ipoh, Malaysia from March 3.
Summary:
North Korea could co-host the 2021 Asian Winter Games with South Korea to continue inter-Korean harmony and exchange, North Korea's representative on the International Olympic Committee, Chang Ung, has said.
Summary:
The I.D. Vizzion also features a virtual assistant which allows riders to control the car via voice and gestures.
Summary:
Samsung has been granted a patent for a drone-like device with a screen controlled by users' eyes in real time.
Summary:
A Chrome extension called 'View Image' has been found displaying the View Image button, exactly where it was before Google removed it from image search results.
Summary:
The data can then be used to predict any heart disease risk with roughly the same accuracy as current methods.
Summary:
Reportedly, a heated argument between the Chief Secretary and the MLAs led to the incident.
Summary:
Gurugram-based hotel aggregator Oyo has filed a criminal complaint against hotel chain Zostel's founders, alleging breach of trust, cheating, and blackmail for getting into a deal.
Summary:
India on Tuesday successfully test-fired the medium-range nuclear-capable Agni II missile from APJ Abdul Kalam island off the Odisha coast.
Summary:
MysuruâÂÂs Lalitha Mahal Palace Hotel was unable to provide rooms for Prime Minister Narendra Modi's contingent, as it was fully booked for a marriage function.
Summary:
The hard-earned money of Indians is being looted by many corporate houses, temple priests said.
Summary:
The Maharashtra government on Monday signed a Memorandum of Understanding (MoU) of â¹35,000 crore with Amol Yadav, the man who built an aircraft on his rooftop.
Summary:
Canadian authorities have invited a transgender student, Dhananjay Chauhan, from Panjab University to a dinner celebrating Canada-India ties with Canadian Prime Minister Justin Trudeau in New Delhi.
Summary:
High school students on Monday held a 'lie-in' protest outside the White House, demanding lawmakers to pass tougher gun control measures after 17 people were killed in a school shooting in Florida.
Summary:
Pakistan is the riskiest country to be born in as it accounted for the world's highest newborn mortality rate in 2016, UNICEF has said in its latest report.
Summary:
US and Thai marines on Monday drank cobra blood and ate scorpions in a jungle survival programme, which is a part of the two nations' annual military exercise 'Cobra Gold'.
Summary:
Marci, who said she loves India and feels at home here, got married to her husband in Madurai twelve years ago.
Summary:
Although Michael D'Souza has been driving for the last 85 years, he got his first licence in 1959 and has renewed it constantly since then.
Summary:
A woman in Egypt has filed for divorce after her husband refused to buy her a shawarma.
"I only knew him for two months before the wedding and never noticed how stingy he was," the woman said.
Summary:
Zimbabwe Cricket Union has approached the International Cricket Council for a loan to bail the board out of a financial crisis.
Summary:
Manchester City, who lost the match 0-1, had a defender sent off in the 45th minute.
Summary:
Former English football coach Barry Bennell has been jailed for 31 years for sexually assaulting 12 boys aged 8-15 while working at clubs including Manchester City between 1979 and 1991.
Summary:
Andhra Pradesh Chief Minister N Chandrababu Naidu has said that he is ready for a no-confidence motion against the NDA government to get "justice" for the state, but only as a last resort.
Summary:
The Human Resource Development Ministry has asked schools to submit photo or video evidence that students heard Prime Minister Narendra Modi's 'Pariksha Pe Charcha', reports said.
Summary:
The Delhi High Court has directed the Delhi Transport Corporation (DTC) to lay down norms for regular medical examination of drivers as passenger safety depended on their fitness.
Summary:
The CBI has refused to disclose the details of expenses incurred for bringing back businessmen Vijay Mallya and Lalit Modi to India.
Summary:
The father of a bride in Uttar Pradesh allegedly tried to commit suicide by hanging himself after the groom cancelled the marriage a day before the wedding ceremony over dowry.
Summary:
Dismissing claims of â¹11,000 crore in unpaid dues, Modi said what his company owed the bank was below â¹5,000 crore.
Summary:
Uber Eats driver Robert Bivines shot a customer multiple times during a food delivery in the US over the weekend and turned himself in on Monday, authorities said.
Summary:
In a first, Stanford University scientists have successfully grown sheep embryos containing human cells, paving the way for organs to be grown in animals which can be transplanted into humans.
Summary:
The bill had also proposed barring the media from reporting on accusations until sanction to proceed with the probe was obtained.
Summary:
An all-woman crew on Monday started operating the Gandhinagar Railway Station in Jaipur, in a first for Rajasthan.
Summary:
An American woman won $200 in the Lucky for Life lottery and the $200,000 jackpot in the Show Me Cash lottery on the same day.
Summary:
The mob had overpowered the police personnel and taken the accused to a market place to beat them.
Summary:
The Rajasthan man accused of murdering a labourer in the name of 'love jihad' on camera, has released a video he made from inside a high-security prison.
Summary:
Donald Trump has been ranked as the worst US President ever in the 2018 Presidents & Executive Politics Presidential Greatness Survey released on Monday.
Summary:
Maldives President Abdulla Yameen Abdul Gayoom asked the Parliament on Monday to extend the state of emergency by 30 days amid the political unrest in the country, officials said.
Summary:
Adding that "pressure campaign is having its bite on North Korea", Tillerson said the world wants the rogue regime to change.
Summary:
Filmmaker Ram Gopal Varma has called reports of him denying being part of the film 'God, Sex, and Truth' false.
Summary:
Talking about the domestic box office success of 'Padmaavat' which has earned â¹276.50 crore, actor Ranveer Singh has said that it is not new for his rumoured girlfriend Deepika Padukone to see her films notch such numbers.
Summary:
Film producer Sajid Nadiadwala will reportedly be launching actress Kriti Sanon's sister Nupur Sanon in Bollywood.
Summary:
He added, "How can a government-run division make such a mistake?
Summary:
She said this during her appearance with her sister Amrita Arora on the talk show 'BFFs with Vogue', which is hosted by Neha Dhupia.
Summary:
Former New Zealand captain Brendon McCullum scored Test cricket history's fastest-ever century off 54 balls in his career's last match before retirement, against Australia on February 20, 2016.
Summary:
Predicting Test cricket's future, former England captain Kevin Pietersen tweeted that in the next 10 years only England, South Africa, India, Pakistan and Australia will continue playing Test cricket.
Recently, England cricket team coach Trevor Bayliss said T20Is should be abolished.
Summary:
After winning the gold medal in alpine skiing at the Winter Olympics, Czech snowboarder and skier Ester Ledecka asked a cameraman how it happened.
Summary:
BJP MP Brij Bhushan Sharan Singh has compared Congress President Rahul Gandhi with a 'barking dog' after Rahul Gandhi slammed PM Narendra Modi over the â¹11,000-crore PNB scam.
Summary:
India will host the World Environment Day 2018 on June 5, Environment Minister Harsh Vardhan and United Nations Environment Programme Executive Director Erik Solheim have announced.
Summary:
Talking in an interview about his vision for Uttar Pradesh, Chief Minister Yogi Adityanath has said that his government wants to make UP the most developed state in India.
Summary:
Doctors in Patna recently removed around 80 kg polythene waste from the stomach of a cow in an operation that took over three hours.
Summary:
The BJP on Monday suspended party leader Rajendra Namdeo after he was detained for allegedly molesting and attempting to rape an acid attack victim in Madhya Pradesh.
Summary:
The Punjab government has announced a â¹50-lakh project for the facelift and preservation of the police station cell where Jawaharlal Nehru was detained in 1923.
Summary:
According to Defence Ministry data, at least one serviceman from the three defence forces commits suicide every three days.
Summary:
A man in Mumbai took to Facebook to share a screenshot which showed his Uber driver's location in the Arabian Sea. The man wrote, "Aslam bhai submarine se aarele hai." Reacting to the viral post, a user wrote, "Seaways cheat code dale hai bhai ne," while another wrote, "You said flying cars by 2018?
Summary:
The bonus will be paid based on citizens' incomes.
Summary:
Priya Prakash Varrier and Omar Lulu, director of her debut Malayalam film 'Oru Adaar Love' have moved the Supreme Court against case registered by Hyderabad and Maharashtra police over its viral song 'Manikya Malaraya Poovi'.
Summary:
Former Gitanjali Gems MD Santosh Srivastava has claimed that fraud accused Mehul Choksi sold his customers overpriced and fake diamonds.
Summary:
Mehul Choksi-owned Gitanjali Gems, which is involved in the $1.77 billion PNB scam, has said its CFO, VP (Compliance and Company Secretary) and a board member have resigned.
Summary:
The Finance Ministry has denied reports which said that Indian banks could take a hit of more than $3 billion due to the PNB fraud.
Summary:
SWIFT is a messaging network used by financial institutions to securely transmit information and instructions using a system of codes.
Summary:
Thirty Congress MLAs have been suspended from Chhattisgarh Assembly after they protested against CM Raman Singh's invitation to a foreign-based mining corporation for investment.
Summary:
Summary:
Recently, reports claimed that Parrikar was critical and was diagnosed with Stage IV pancreatic cancer.
Summary:
Uttar Pradesh BJP MP Kamlesh Paswan and 27 others have been booked under various charges, including rioting and criminal conspiracy, after a quarrel over a land dispute in Gorakhpur, according to the police.
Summary:
A Tamil Nadu court has sentenced a 23-year-old man to death for raping and murdering a seven-year-old girl in February 2017.
The man lured the girl with a dog, raped her and suffocated her to death.
Summary:
Admitting that the North Korean threat to strike the US with nuclear weapons "makes us nervous", Secretary of State Rex Tillerson said the warning also "stiffens" the country's commitment to resolve the nuclear crisis.
Summary:
Pakistan's Attorney General Ashtar Ausaf Ali has said that the government will have to issue another notification to formally ban 26/11 Mumbai terror attack mastermind Hafiz Saeed-led groups Jamaat-ud Dawa (JuD) and Falah-e-Insaniat Foundation.
Summary:
The CBI has registered a case of wilful loan default involving Vikram Kothari and others based on a complaint by Bank of Baroda.
Summary:
Summary:
While the gorilla god was called 'Man-Ape' in the comics, the word was changed to Hanuman in the film.
Summary:
Summary:
Drawing reference from Hindu epic Mahabharata, Patidar leader Hardik Patel on Monday called Madhya Pradesh CM Shivraj Singh Chouhan 'shakuni mama', adding that he is no more acceptable to the youth.
Summary:
The BJP won 47 of the 75 municipalities in the Gujarat civic elections on Monday, while the Congress secured 16 municipalities.
Summary:
Addressing a gathering in poll-bound Karnataka, PM Narendra Modi on Monday questioned if the people need a government which asked for 10% of commission to do work or a government with a mission of development.
Summary:
Tamil Nadu is the most peaceful state in the country and has a "very good" law and order situation, CM EK Palaniswami said.
Summary:
Two CPI (M) activists have been arrested over the murder of a Youth Congress worker in Kerala's Kannur.
Summary:
While the deceased students are yet to be identified, the injured have been admitted to a hospital.
Summary:
Mocking US President Donald Trump for calling Oprah Winfrey "very insecure" amid speculations over her 2020 presidential run, a Twitter user wrote, "Someone get him a cheeseburger, he's losing it!" Other users tweeted, "What were you doing watching Oprah's interview...You should be sleeping.
Summary:
Earlier, Orbán said that refugees in Europe are just "Muslim invaders" seeking better lives.
Summary:
During a speech marking the country's 53rd independence anniversary, Gambian President Adama Barrow announced the suspension of death penalty in the country "as a first step towards its abolition".
Summary:
A man inside a white BMW car who allegedly started masturbating in front of 'Sarabhai Vs Sarabhai' actor Sumeet Raghavan's wife has been arrested in Mumbai after the actor filed an FIR.
Summary:
CBI has said Rotomac Global owes â¹3,695 crore including interest to seven state-owned banks, according to a complaint filed by Bank of Baroda.
Summary:
A leaked version of the Sidharth Malhotra and Manoj Bajpayee starrer 'Aiyaary' was played in a Maharashtra state bus, which was heading to Pune from Mumbai.
Summary:
Karan Johar has announced his upcoming production 'Rannbhoomi', a war drama starring Varun Dhawan and being directed by Shashank Khaitan.
Summary:
A group of seven BTech graduates had moved a Delhi court accusing Gitanjali Gems MD Mehul Choksi of â¹1.5-crore fraud in 2017.
Summary:
Australian vice-captain David Warner said he and some of his teammates suffered "mental breakdown" over a lack of resting period between Ashes and last month's ODI series.
Summary:
Google on Monday announced that users can now pay utility bills with its Unified Payments Interface-based payment app 'Tez', without any transaction charges.
Summary:
The US Air Force recently conducted its second security hackathon and paid out a total $103,883 for finding bugs across around 300 of its public websites.
Summary:
Gates called the reform regressive and said wealthier people tend to get dramatically more benefits than others.
Summary:
Uttarakhand Police has traced as many as 173 missing children within the first 15 days of the launch of 'Operation Smile'.
Summary:
The activist set himself ablaze last week, demanding possession of land allotted to a Dalit family.
Summary:
Former Pakistan ambassador to the US Husain Haqqani has said that the country will collapse like the Soviet Union if it does not quit a "losing arms race".
Summary:
Notably, Gaines was live-streaming her encounter with police.
Summary:
Singapore will impose a 'carbon tax' from 2019 to reduce greenhouse gas emissions in an effort to fight climate change, Finance Minister Heng Swee Keat said.
Summary:
Warning against the resumption of US-South Korea military drills after the ongoing Winter Olympics, North Korea on Monday said that the US has a "purpose to end a thaw in inter-Korean ties" after the games end.
Summary:
A German lawyer contacted the police after over 100 pizzas were reportedly delivered to his office within a span of two weeks, despite nobody in his office placing the orders.
Summary:
Stocks of state-owned banks continued to decline after more lenders reported exposure to the fraud.
Summary:
PNB officials at Mumbai's Brady House branch may have reportedly made over â¹800 crore as kickbacks for issuing fraudulent Letters of Undertaking (LoUs) to jeweller Nirav Modi's firms.
Summary:
Ahmed is also directing the film franchise's second film 'Baaghi 2'.
Summary:
Zareen Khan has threatened to slap a social media troll after she met him for a TV show as he had threatened to rape her.
Summary:
The film is Anushka's third film as a producer and is scheduled to release on March 2.
Summary:
It also received the fifth-biggest weekend opening of all time in North America by minting over â¹1,239 crore while it earned â¹19.35 crore in India.
Summary:
After getting trolled by former South African cricketer Herschelle Gibbs over his running speed on Twitter, Indian spinner Ravichandran Ashwin responded with a match-fixing jibe aimed at Gibbs.
Summary:
Ronaldinho also said that he will participate in some retirement matches this year and will be a "partner in a big project".
Summary:
New Zealand and Chennai Super Kings spinner Mitchell Santner said he is glad that he will be bowling to Indian cricketer MS Dhoni in the nets instead of bowling at him in a match.
Summary:
Haris said that he had advised his son, Mohammed Haris Nalapad, to surrender because nobody was above the law.
"Now that he has surrendered, the law will take its course," the Congress MLA said.
Summary:
The son of the last Nizam of the former princely state of Hyderabad, Nawab Fazal Jah Bahadur, passed away on Sunday aged 72 after a brief illness.
Summary:
The film also won four other awards including Best British Film while Frances McDormand was named Best Actress.
Summary:
Tendulkar pacified the crowd and play resumed, but as India were losing on the fifth day, the crowd turned violent again.
Summary:
Amazon has become the first foreign e-commerce firm to start its own food retail venture in India called Amazon Retail, piloting its services in Pune.
Summary:
A 25-year-old man from Maharashtra's Nalasopara strangulated a woman with a shoelace because she refused to have sex with him, police said.
Summary:
Lilavati hospital in Mumbai, where Parrikar has been admitted, issued a press release denying the rumours over his health.
Summary:
Thieves were caught on CCTV cameras stealing valuables worth nearly â¹1 crore from the Shiva Temple in Haryana's Panchkula district, reports said.
Summary:
Team India captain Virat Kohli is the only Indian cricketer to score a century on World Cup debut.
Summary:
A video of a monkey snatching a wallet from a tourist in the Chinese province of Sichuan and throwing the cash away has emerged on social media.
Summary:
Cara Lucy O'Connor, a 6-year-old Irish student, wrote to NASA to "make Pluto a planet again", saying it's unfair that Pluto isn't a planet.
Summary:
A Canadian man who lost his home in a 2016 wildfire has won the C$1 million (â¹5 crore) jackpot in a lottery.
Summary:
The 2,000-year-old statue, built by a Chinese emperor, had been loaned to US' Franklin Institute by China.
Summary:
KFC has run out of chicken and been forced to close several outlets across the UK.
Meanwhile, social media users tweeted, "#KFC no chicken?!!!
Summary:
The officers are reportedly required to submit an inquiry report on the role of PNB officials in the alleged fraud.
Summary:
During his India visit, Virgin Group Founder Richard Branson has said, "If I were an Indian a lot of my life would be spent sitting in traffic jams." "I have sat in the Indian traffic...itâÂÂs not a pleasant experience," he added.
Summary:
The government has written to the RBI asking how the $1.77 billion PNB scam went undetected through its systems.
Summary:
PNB, which was hit by a $1.77-billion fraud linked to jeweller Nirav Modi, had bagged three vigilance excellence awards over the past three years.
Summary:
Billionaire jeweller Nirav Modi, who is the prime accused in the $1.77 billion PNB scam, will be defended by advocate Vijay Aggarwal, who represented several accused in the 2G spectrum allocation scam case.
Summary:
CBI is also questioning Vipul Ambani, the CFO of Nirav Modi's company Firestar International.
Summary:
As per reports, Salman Khan has asked makers to remove a song by Arijit Singh from the Karan Johar starrer 'Welcome to New York'.
Summary:
"I have also seen a couple of Indian films; they were really entertaining to me," added Cranston.
Summary:
Summary:
After England failed to reach the final of the Trans-Tasman T20I Tri-Series featuring Australia and New Zealand, England coach Trevor Bayliss said T20Is should be abolished over concerns of burnout among players.
Summary:
"My worst nightmare happened at the Olympics," Papadakis later said.
Summary:
Canadian electric utility Nova Scotia Power has set up a pilot project using a combination of Tesla's Powerwall 2 home batteries and Powerpack batteries for a smart power grid experiment.
Summary:
US investigators probing Mercedes-Benz parent Daimler have found that its cars were equipped with software which may have helped them to pass diesel emissions tests, according to reports.
Summary:
Canadian Prime Minister Justin Trudeau on Monday visited the Akshardham Temple in Gujarat's Gandhinagar with his family.
Summary:
A government school in Himachal Pradesh's Kullu reportedly made Dalit students sit separately during a telecast of PM Narendra Modi's 'Pariksha Par Charcha' on Friday.
Summary:
The CBI on Monday conducted raids at three properties in Kanpur in connection with Rotomac Pens' owner Vikram Kothari after it was reported that he failed to repay loans worth over â¹800 crore from state-owned banks.
Summary:
An American woman has won a $100,000 (â¹65 lakh) lottery with a $10 scratch-off ticket gifted by her husband on Valentine's Day. She reportedly joked, "Oh, that's really expensive," when her husband gave her the gift.
Summary:
USA's Christian Coleman broke the 20-year-old world record in the 60 metres sprint after registering a timing of 6.34 seconds at the US Indoor National Championships in Albuquerque on Sunday.
Summary:
Trailing after 19 laps out of the 20, Soumya overtook Olympian and then national record holder Khushbir Kaur in the last lap.
Summary:
Real Madrid became the first team to score 6,000 goals in La Liga, with their comeback 5-3 win over Real Betis on Sunday.
Summary:
US-based Virgin Hyperloop One has signed an MoU with Maharashtra government for a Hyperloop between Mumbai and Pune, reducing the travel time for 140-km distance to 25 minutes.
Summary:
Canada-born gambling and Bitcoin multi-millionaire Calvin Ayre is building a $100 million (nearly â¹650 crore) five-star resort on Antigua.
Summary:
A GoAir passenger has accused a pilot of threatening to crash a Bengaluru-bound flight at Delhi airport but the airline has refuted the allegation.
Summary:
The man had not stopped walking despite warning shots by a sentry, officials said.
Summary:
A Panchkula court has dropped the sedition and attempt to murder charges against 53 Dera Sacha Sauda followers and officials in connection with the Panchkula riots last year.
Summary:
Nate Crowley said he watched the extended versions of three LOTR movies and ate 21 courses during the 15-hour exercise.
Summary:
During South Africa's seventh over in the first T20I, Jasprit Bumrah jumped and threw the ball inside the fence while airborne, but umpires signalled it as six.
Summary:
A Brazilian football game between Vitoria and Bahia was abandoned after the two opposing sides got involved in a brawl that resulted in a total 9 red cards and 8 yellow cards.
Summary:
Khan's wife, Bushra Wattoo, is a 'spiritual adviser', also known as 'Pinki Pir'.
He later married TV anchor Reham Khan in 2015 but parted ways 10 months later.
Summary:
Facebook is planning to launch two smart speakers codenamed Aloha and Fiona in July this year, according to reports.
Summary:
Talking about apprehension towards artificial intelligence (AI), PM Narendra Modi at a recent event said AI should be made in India and made to work for India.
Summary:
NITI Aayog member VK Saraswat said India should manufacture the majority of the parts as equipment shipped from overseas could be compromised.
Summary:
A US-based hotel chain is set to launch a 'Reconnected' program giving visiting families a 5% discount in exchange for locking away their phones.
Summary:
Called thermal resonator, the device, coated with graphene and infused with a phase-changing material, produces both high heat conduction and capacity.
Summary:
The government is planning to reintroduce the transgender bill in the Parliament with changes suggested by a parliamentary committee and various rights groups, reports said.
Summary:
This comes after 985 students were expelled for cheating in Class 12 exams in the state.
Summary:
The Karnataka education department will install GPS tracking system in vehicles transporting question papers for the upcoming Secondary School Leaving Certificate and second-year pre-university examinations in Bengaluru, reports said.
Summary:
The police on Saturday night arrested the employer of the man who was blinded after a mob injected acid in his eyes for allegedly eloping with the employer's wife.
Summary:
"[Modi] is the only one who can solve India's longstanding problems," the eldest sibling said.
Summary:
Officials said the commuters could rent the e-bikes and bicycles through a mobile app and drop the vehicles anywhere instead of bringing them back to the station.
Summary:
Around 20 out of over 2,000 inmates were selected for a professional one-year training in music.
Summary:
He was talking on a phone while crossing the track and texting on another, according to reports.
Summary:
It also offers a 100% reload of sum insured and a free annual health check-up.
Summary:
The 42-year-old was to contest elections on February 27 from the Williamnagar seat.
In 2013 Assembly elections, he unsuccessfully contested as an independent candidate from the same seat.
Summary:
Edison successfully recorded 'Mary had a little lamb' as the first words on the device.
Summary:
Former India captain MS Dhoni has set the record for most catches by a wicketkeeper in T20 cricket, taking his 134th catch against South Africa on Sunday.
Summary:
Fast bowler Bhuvneshwar Kumar has become the first Indian bowler to take a five-wicket haul in all three formats in international cricket.
Summary:
Only Jimmy Connors (109) has won more men's singles career titles than Federer in Open Era.
Summary:
The incident took place on Thursday when the Physics-II paper was distributed instead of Physics-I.
Summary:
A doctor registered with Delhi Medical Council has been barred from all exams held by the National Board of Examination for seven years after he was allegedly caught impersonating other candidates in medical tests.
Summary:
Hyderabad Police has arrested eight people, including a couple, for allegedly beheading a three-month-old baby as part of a ritual in Hyderabad.
Summary:
US President Donald Trump on Sunday said that the Russians were "laughing their asses off" for succeeding in creating "discord, disruption and chaos" in the US.
Summary:
An upside-down house has been built in Ufa city, Russia.
Its curator said, "It is an upside-down house, people are walking on the ceiling and all the furniture is above them...
Summary:
A Mumbai man has set a Guinness World Record by drinking a bottle of tomato ketchup using a straw in a record time of 25.37 seconds.
Summary:
Vidya Balan has revealed she lied to her sister about the ending of her 2012 film 'Kahaani'.
Vidya further said 'Kahaani' is one of her best performances to date.
Summary:
The Stuttgart Chamber Orchestra played the song 'Kuch Kuch Hota Hai' at the Berlin International Film Festival to honour Karan Johar, who was moderating a panel at the event.
Summary:
Praising Hassan after the meeting, Rajinikanth said he had entered politics not for fame or money but to serve the people of Tamil Nadu.
Summary:
Parineeti Chopra, while talking about working with Akshay Kumar in the upcoming film 'Kesari', said it has been her dream to work with him.
'Kesari' will be Akshay and Parineeti's first film together.
Summary:
Filmmaker Vishal Bhardwaj has denied that his upcoming film starring Deepika Padukone is titled 'Rani'.
"So amusing to find out that everyone except me knows the title of my upcoming film!
Summary:
Rudi Bosman, a lecturer, won â¹23 lakh for taking a one handed-catch in the crowd during the New Zealand-England T20I on Sunday.
Summary:
Reacting to American freestyle skier Gus Kenworthy kissing his boyfriend Matthew Wilkas on TV after finishing last in the slopestyle final at Winter Olympics, a user tweeted, "Love is normal.
Summary:
YSR Congress chief YS Jagan Mohan Reddy on Sunday said the party is ready to move a no-confidence motion in the Parliament against the BJP-led NDA government at the Centre.
Summary:
The Election Commission (EC) has issued a notice to BJP MP Yashodhara Raje Scindia for making "statements amounting to threatening/intimidating of electors".
Summary:
Speaking at the Magnetic MaharashtraâÂÂs Global Investment Summit, PM Narendra Modi said Maharashtra would soon become India's first trillion-dollar state.
Summary:
Located at a government college building, the centre is aimed at employing tribal youth.
Summary:
A church priest in Kerala's Kottayam has been booked for allegedly raping a British woman of Bangladesh-origin for a week in January.
Summary:
Officials said the sex toys are prohibited since "they constitute import of obscene representation or figures".
Summary:
A 14-year-old girl in Tamil Nadu's Madurai was set on fire on Friday by her stalker after she rejected his proposal.
Summary:
Calling the country's judiciary and military his enemies, ousted Pakistan Prime Minister Nawaz Sharif on Sunday said that he was not afraid of them.
Summary:
India registered their fifth consecutive victory in T20Is after defeating South Africa by 28 runs in the first T20I at Johannesburg on Sunday.
Summary:
Women in Saudi Arabia can now start their own businesses without the consent of their husbands or male relatives, the Ministry of Commerce and Investment said.
Summary:
Further, women from poor, rural households are 21 times more likely to never attend school than women from rich, urban households, the report claimed.
Summary:
The idea for Ferrari's logo, which features a prancing horse, was given to its founder Enzo Ferrari by the mother of an Italian World War I pilot who used a similar emblem on his plane.
Summary:
India slammed 78 runs in the first six overs against South Africa on Sunday, their highest-ever score in a powerplay in a T20I match.
Summary:
A total of 293 candidates, including 23 women, are contesting elections for 59 seats.
Summary:
Iranian President Hassan Rouhani on Friday questioned why India with a population of over 1 billion does not have veto power at the UN Security Council (UNSC) while the US does.
Summary:
At least four people were killed and four others were injured on Sunday in a gun attack during a festival in Russia's Dagestan, according to reports.
Summary:
The banks reportedly compromised their rules to issue these loans to Kothari.
Summary:
Retired PNB Deputy Manager Gokulnath Shetty fraudulently cleared 143 Letters of Undertakings (LoUs) to Mehul Choksi's firms in just 63 days starting March 1 last year.
Summary:
At least 200 shell companies, and benami assets have come under the scanner of the investigative agencies that are probing the â¹11,400-crore PNB scam involving jeweller Nirav Modi.
Summary:
Karan Johar, on being asked about his response to online haters, said he'll do his own thing no matter what people say.
Summary:
Earlier, Oprah said she won't run for presidency claiming she doesn't have the DNA for it.
Summary:
The donation comes after over 200 female celebrities, including Watson, signed an open letter calling for an end to sexual harassment at work.
Summary:
Akshay Kumar, while speaking about the success of 'Pad Man', said that nobody is interested in listening to speeches or watching documentaries and people are more keen to know about a subject through films.
Summary:
The hidden artwork behind the painting was a landscape image of Barcelona.
Summary:
Suresh Raina, who had last played a T20I for India in February 2017, said that coming back to Team India feels like he is playing for the first time in the Indian jersey.
Summary:
Questioning how the accused in the scam managed to flee the country, the Congress had earlier called Nirav Modi "chhota Modi".
Summary:
Addressing a gathering, Tamil Nadu Deputy CM O Panneerselvam revealed that PM Narendra Modi had asked him to become a minister.
Summary:
In November, another motorist named Ragu had died after he rammed into a makeshift hoarding for ex-CM MGR.
Summary:
An MBA student hanged herself at her hostel in Hyderabad while on a video call with her boyfriend, police said.
Summary:
Around five crore employment opportunities will be created in the country by next year, Union Minister of State for Micro, Small and Medium Enterprises Giriraj Singh said on Saturday.
Summary:
After Israeli PM Benjamin Netanyahu used a piece of an alleged Iranian drone shot down by Israel to warn Iran against carrying out further attacks, Iranian Foreign Minister Mohammad Javad Zarif called the act a "cartoonish circus".
Summary:
The Malaysian government has apologised over a full-page advertisement in Chinese-language newspapers featuring a picture of a barking rooster to mark the Year of the Dog. The advertisement showed a rooster emitting the word "wang", used to represent a dog's bark in Mandarin.
Summary:
Israel PM Benjamin Netanyahu on Sunday used a piece of what he claimed was an Iranian drone shot down by Israel to warn Iran against carrying out further attacks.
Summary:
A US man has been awarded over â¹12 crore after being wrongly imprisoned for murder for almost 40 years.
Summary:
FCC said the resident could face fines and seizure of the device if he keeps operating the Bitcoin miner.
Summary:
A 60-year-old woman in Bihar died after the staff of a private hospital mistakenly gave acid when she asked for drinking water.
Summary:
At least one bank staffer is caught and punished for involvement in fraud every four hours on an average, according to data compiled by the Reserve Bank of India (RBI).
Summary:
University of Tokyo researchers have developed an electronic skin that can measure body vitals and display them in real time.
Summary:
Snap's CEO Evan Spiegel has sold his stock worth over $50 million, marking his first personal stock sale since the company went public in March last year.
Summary:
Mahindra Group Chairman Anand Mahindra has said that his daughters don't buy cars and don't know how to drive as "they only use Ubers".
Summary:
Minister of State for Finance Shiv Pratap Shukla has said the government will try to extradite and punish Nirav Modi, who is allegedly linked to the $1.77-billion PNB scam.
Summary:
After the FBI failed to investigate a tip about the Florida school shooter, US President Donald Trump accused the intelligence agency of spending too much time trying to prove Russian collusion with his presidential campaign.
Summary:
Pakistan will send transgenders to Saudi Arabia to serve as volunteers during 2018 Haj pilgrimage for the first time, according to reports.
Summary:
A customer at a Japanese eatery ate a sushi dish wherein the clam was seen wriggling.
Summary:
UCO Bank said it is fully confident to receive the payment while PNB had said it will honour its bonafide commitments.
Summary:
City Union Bank has said it had suffered three "fraudulent remittances" of over $1.8 million (over â¹12 crore).
Summary:
The deal will value CSB at over â¹1,200 crore.
Summary:
According to reports, actor Salman Khan will be paid â¹78 crore for the third season of reality show 'Dus Ka Dum'.
Summary:
Twitter users mistook actress Jennifer Aniston's husband Justin Theroux for Canadian Prime Minister Justin Trudeau when the news of the couple's separation surfaced.
Summary:
Kriti Sanon, while speaking about the positive response she received for her film 'Bareilly Ki Barfi', said it's good people are looking beyond glamour.
Summary:
Ram Gopal Varma's phone and laptop have been seized by the Hyderabad police to ascertain his link with the short film 'God, Sex and Truth'.
Summary:
CCTV footage shows 18-year-old Lorenzo Pianazza saving a two-and-a-half-year-old, who fell onto the track just one minute before a train was due to arrive at an Italian station.
Summary:
Serbia's former world number one Novak Djokovic invited France's Winter Olympic snowboarding champion Pierre Vaultier for a get-together after the snowboard gold medallist noted the resemblance between them.
Summary:
South Africa's Shabnim Ismail was named Player of the Match for her five wickets for 30 runs.
Summary:
New Zealand batsman Colin Munro has become the first-ever batsman in T20I cricket to hit three fifties in less than 20 balls each.
Summary:
It is the highest amount accumulated from a pre-sale in comparison to Initial Coin Offerings like Filecoin ($257 million) or Tezos ($232 million).
Summary:
Further, no new stoppages are to be provided for trains passing at odd hours.
Summary:
An FIR has been registered against Nalapad and ten others.
Summary:
BJP MP Yashodhara Raje Scindia on Saturday said that those who vote for Congress would not get the benefits of a centrally-funded scheme which provides LPG connections to poor households.
Summary:
Its foundation was laid in August 2016 after a Supreme Court directive that party offices be relocated from the LBZ.
Summary:
He revealed he first visited Taj Mahal when he was 11, during an official trip with his father, former PM Pierre Trudeau.
Summary:
Pakistan's Army chief General Qamar Javed Bajwa has said that there are no terror camps in the country although the presence of terrorists cannot be ruled out.
Summary:
The aircraft crashed in a mountainous area near Semirom, a remote town 620 km south of the capital Tehran.
Summary:
A passenger plane belonging to Iran's Aseman Airlines, carrying at least 60 people, has crashed in the country's southern Isfahan province.
Summary:
To cater to the growing demand, OnePlus is looking to expand its offline reach through more Experience Stores, authorized stores as well as expand its partnership with Croma.
Summary:
Google-spinoff Waymo has become the first company to receive approval to launch a commercial driverless commercial ride-hailing service in the US.
Summary:
Gujarat Police on Sunday detained MLA Jignesh Mevani while he was on his way to attend a rally over the death of a Dalit activist who immolated himself.
Summary:
The girl's father claimed the constable, who was drunk when the incident happened, lured her to the outpost when she had gone to buy household items.
Summary:
Uttarakhand government provides paid Z-security to the Gupta brothers who are linked to the corruption scandal involving former South African President Jacob Zuma, government officials said on Saturday.
Summary:
A man was arrested in United States' Atlantic City after he set fire to his hotel room while allegedly attempting to build a methamphetamine lab there.
Summary:
A video shared on Twitter shows an elephant holding a mouth organ with its trunk and blowing it.
Summary:
PNB officials have told the Enforcement Directorate that Nirav Modi's brother was called at a branch office before a CBI complaint was filed.
Summary:
Former PNB Deputy Manager Gokulnath Shetty has admitted to sharing password of Letters of Undertaking (LoU)-issuing software with employees and directors of Nirav Modi's companies.
Summary:
Taapsee Pannu has said most star kids haven't earned the space that actors who aren't star kids have slogged for.
Taapsee further said, "In such times you think 'kahan aa gaye, ya kyun aa gaye'".
Summary:
Davies packed snow into large wooden boxes to make ice blocks.
Summary:
When Federer was going to take the second serve, Haase told him the officials had not called it out but Federer insisted it was out.
Summary:
Chahal and Yadav managed to pick up a combined 33 wickets in the SA ODI series, the most for a spin duo in a bilateral series.
Summary:
After posting two back-to-back draws, the Catalan side extended their unbeaten run in the La Liga to 24 matches this season.
Summary:
Facebook will start using postcards sent by mail to verify identities of the US election ad buyers, a company executive has said.
Summary:
US-based startup PowerUp Toys has launched a $50 updated version of its paper airplane which features a device controlled by a smartphone.
Summary:
Additionally, Google also removed the 'Search by Image' button that appeared after opening a photo.
Summary:
A website named 'whereisroadster.com' is tracking Elon Musk's Tesla Roadster sent into space.
Summary:
A Jet2 flight carrying nearly 200 passengers issued a 'code red' alert and made an emergency landing on Saturday after the co-pilot fell ill.
Summary:
A 47-year-old woman's earlobes got torn after an unidentified snatcher pulled out gold earrings from her ears in Delhi's Uttam Nagar recently.
Summary:
The police said that his employer's wife returned to her husband 10 days after they eloped.
Summary:
IndiGo passengers created a ruckus at Mumbai airport on Saturday after a Lucknow-bound flight got delayed for nearly five hours.
Summary:
Institutions such as AIIMS Delhi, IIT Delhi, and IIT Bombay, among others failed an audit conducted by the Food Safety and Standards Authority of India (FSSAI) at several institutions.
Summary:
He had also told women to use pills instead of condoms.
Summary:
In the mail the association cited their experience after having hosted ten IPL matches during the tournament's 9th and 10th edition.
Summary:
Punjab National Bank officials, arrested over the Nirav Modi scam, have revealed that a commission was distributed among involved employees for granting Letters of Undertaking (LoUs), the CBI has said.
Summary:
A pair of twin sisters received a surprise joint marriage proposal from a pair of twin brothers at the Twin Lakes State Park in Virginia, United States.
Summary:
Sharing a news article which had the headline 'Deepika, Kat too tall for Aamir, Shahid', Amitabh Bachchan wrote that his height is 6'2'' and he is available to work with such tall actresses.
approx 200 films acted." He added, "You shall never have height problem."
Summary:
Yuzuru Hanyu won Japan's first gold medal at PyeongChang Winter Olympics and also became the first figure skater in 66 years to win back-to-back Winter Olympic gold medals in the men's singles event.
Summary:
Indian men are coming on the back of an ODI series win, while the women are 2-0 up in the five-T20I series.
Summary:
Damore had filed a complaint against Google for violating his right to address workplace problems.
Summary:
The court also ruled Facebook had to delete all the data it gathered illegally on Belgians, including people who were not Facebook users.
Summary:
Vice President Venkaiah Naidu on Saturday inaugurated the eighth Theatre Olympics at Red Fort in Delhi.
Summary:
The Ministry of Home Affairs (MHA) has approved the renaming of several villages, whose names were considered derogatory to a particular gender or community by the local population.
Summary:
An 80-year-old Spanish man has enrolled in a semester-long student exchange program in Verona, Italy.
Summary:
A couple in the United States accidentally proposed marriage to each other at the same time.
Summary:
As per reports, actor Suniel Shetty's son Ahan Shetty will make his debut in Bollywood with a film where he will star opposite Sara Ali Khan, the daughter of Saif Ali Khan and his first wife Amrita Singh.
Summary:
Belgium's top-ranked tennis player David Goffin was forced to retire in his Rotterdam Open semifinal against Grigor Dimitrov after he was hit in his left eye by a ball which bounced off his own racquet.
Summary:
A total of 225 Indian athletes will participate in this year's Commonwealth Games, which will be held in Australia from April 4 to April 15.
Summary:
Intel has said that it was not able to estimate the potential losses due to the lawsuits.
Summary:
A couple has travelled over 70,000 kilometres across the US and Canada in a 130-square-foot house on wheels.
Summary:
North Delhi mayor and BJP leader Preety Agarwal has moved a legal notice against Chief Minister Arvind Kejriwal and other AAP leaders, including Manish Sisodia and Saurabh Bhardwaj for allegedly defaming her.
Summary:
The Congress already has 33% reservation for women and 20% reservation for Scheduled Castes, reports said.
Summary:
Denying any link to fraud-accused jeweller Nirav Modi, Congress MP Abhishek Singhvi has said Defence Minister Nirmala Sitharaman and her colleagues are liable to civil and criminal defamation for "patently false allegations".
Summary:
US-based ride-hailing startup Uber is preparing to sell its Southeast Asian business to rival Grab in exchange for a stake in the Singapore-based ride-sharing company, according to reports.
Summary:
The editor-in-chief of a Hindi news channel has been arrested by the Delhi Police for allegedly raping a female employee.
Summary:
BJP MP Janardan Mishra recently cleaned a clogged school toilet in a village of his Parliamentary constituency Rewa.
Summary:
Iranian President Hassan Rouhani on Saturday gifted an animated version of Kalila wa Demna (Farsi translation of the Panchatantra) and a copy of the Farsi translation of Mahabharata to Prime Minister Narendra Modi.
Summary:
The Unique Identification Authority of India (UIDAI) has refused to reply to an RTI seeking details of money it spent on advertising and promoting Aadhaar over the past eight years.
Summary:
During a surprise visit to some schools in the state, Manipur Education Minister T Radheshyam said that he had found goats and no students in two classrooms of a school.
Summary:
Reports said the police officer was angered after the woman claimed police had wrongly implicated her.
Summary:
The helicopter was carrying officials who were surveying damages caused by a 7.2-magnitude earthquake that hit Mexico on Friday.
Summary:
The aircraft was flown by French pilot Henri Pequet, who flew 6,500 letters gathered from people across the region.
Summary:
On being asked how he will rate his century against South Africa in the sixth ODI, India captain Virat Kohli said it's not his job to say anything about what he does and he is not doing anyone a favour.
Summary:
Former Pakistani fast bowler Shoaib Akhtar has been appointed as Pakistan Cricket Board's brand ambassador and advisor to the chairman on cricket affairs.
Summary:
Gujarat Chief Minister Vijay Rupani on Saturday launched the maiden flight of Bhubaneswar-based airline Air Odisha, connecting Ahmedabad and Mundra.
Summary:
The Shiv Sena has said that jeweller Nirav Modi, accused of defrauding the Punjab National Bank of over â¹11,300 crore, should be appointed as the RBI Governor to "finish off India".
Summary:
The CBI has accused Gitanjali Group of defrauding PNB of â¹4,886 crore.
Summary:
Canadian PM Justin Trudeau arrived in India with his family on Saturday for his seven-day state visit on the invitation of PM Narendra Modi.
Summary:
Defence Minister Nirmala Sitharaman has alleged that Congress leader Abhishek Manu Singhvi's wife was a director in a private firm which dealt with a company owned by jeweller Nirav Modi, who is accused of a â¹11,300-crore fraud.
Summary:
The police have announced a reward of â¹25,000 for information on the man who allegedly masturbated while sitting next to a Delhi University student on a moving bus.
Summary:
Indian banks could take a hit of over $3 billion, following the $1.77 billion PNB fraud case, according to the Income Tax Department.
Summary:
The court said Russian Constitution allows two consecutive presidential terms and Putin had served as President from 2000-2008 and was elected for third time in 2012.
Summary:
The name of dwarf planet Pluto, which was discovered on February 18, 1930, was suggested by an 11-year-old British girl named Venetia Burney.
Summary:
Singer turned politician Union Minister Babul Supriyo has said that Pakistani singer Rahat Fateh Ali Khan's voice in a song from Bollywood film 'Welcome To New York', must be removed and dubbed by someone else.
Summary:
Summary:
As per reports, Deepika Padukone's upcoming film, where she will be essaying the role of gangster Rahima Khan who was popularly known as Sapna Didi, has been titled 'Rani'.
Summary:
RGV was also booked by the police for publishing or transmitting obscene material in electronic form over the same film.
Summary:
Argentine defender Cristian Villagra, who plays in Argentina's top division, will take time off football to donate bone marrow to his brother Gonzalo, who is suffering from leukemia.
Summary:
New Zealand batsman Ross Taylor gifted gloves and the match ball to Mitchell Grimstone, who won â¹23 lakh for catching his six with one hand during the Australia-New Zealand T20I on Friday.
Summary:
Team India will play an estimated 63 international matches in the 2018-19 season ahead of the 2019 World Cup. Out of the 63 matches, 30 will be ODIs, 21 will be T20Is and remaining 12 will be Tests.
Summary:
At least 985 students have been expelled for cheating in class 12 Bihar Board examinations, officials said on Saturday.
Summary:
Katare was booked after the jailed student alleged that he had raped her multiple times.
Summary:
Authorities said that the proceeds collected through the auction are used for administrative purposes in the temple.
Summary:
After his son died of brain haemorrhage in 2013, Shankarlal Verma decided to build the centre aiming to improve the quality of life for children and women.
Summary:
The Haryana government has awarded a residential plot to the wife of a jawan martyred in an anti-militancy operation in Jammu and Kashmir 18 years ago.
Summary:
Brazilian President Michel Temer has signed a decree ordering the Army to take over the security in Rio de Janeiro until the end of the year following a rise in crime and drug-related violence.
Summary:
At least 22 people were killed and more than 70 others were injured on Friday following suicide bombings in the Nigerian town of Konduga, officials said.
Summary:
A jury in the US has ordered a funeral home company to pay $8 million (over â¹51 crore) as compensation to a family after they lost their daughter's body.
Summary:
Following India's 5-1 series victory over South Africa, India captain Virat Kohli hit back at reporters who had criticised the team post their Test series loss.
Summary:
Team India got the local caterer removed and hired an Indian restaurant to get non-breakfast meals in the dressing room at Centurion and Johannesburg during their South Africa tour.
Summary:
India head coach Ravi Shastri, during the post-series press conference, told reporters to "buy the latest Oxford dictionary" to improve vocabulary for describing Virat Kohli's form.
Summary:
McGrath was re-enacting the 1981 incident when Australia's Trevor Chappell bowled underarm to save seven runs off the last ball.
Summary:
NBA legend Michael Jordan, who turns 55 today, once scored 38 points in Game 5 of 1997 NBA Finals for Chicago Bulls against Utah Jazz, despite having 103-degree fever.
Summary:
ODI cricket history's fastest century maker AB de Villiers, who turns 34 today, has a music album to his name.
Summary:
Effigies of actor Rajinikanth were burnt in Karnataka's Ramanagara after he tweeted that the Supreme Court's verdict on the Cauvery river dispute will adversely impact Tamil Nadu farmers.
Summary:
The Supreme Court has sought Attorney General KK Venugopal's assistance on a PIL seeking to bar sitting MPs and MLAs from practising law.
Summary:
During a public meeting in Uttar Pradesh on Saturday, Women and Child Development Minister Maneka Gandhi rebuked a corruption-accused official and called him a "hara*****a".
Summary:
Trump has dismissed allegations of collusion between his campaign and the Russians.
Summary:
Turkey has been accused of carrying out a suspected gas attack in Syria by the Syrian Kurdish forces and the Syrian Observatory for Human Rights.
Summary:
The FBI has admitted its failure to investigate a tip received on the accused Florida school shooter, who killed 17 people on Wednesday.
Summary:
Nirav Modi chain opened its stores in Kuala Lumpur on February 5 and in Macau on February 9.
Summary:
Celebs who paid him in cash have also been identified, reports added.
Summary:
Telecom operators' body COAI has said it does not see "ease of doing business" at local levels in the telecom sector.
Summary:
Earlier, SRK had revealed that he was in talks with Bhansali for two films, one of which was a period film.
SRK last worked with Bhansali in 2002 film 'Devdas'.
Summary:
Producer Prernaa Arora has filed a lawsuit against Abhishek Kapoor over the delay of his directorial 'Kedarnath', the debut film of Sara Ali Khan.
Summary:
Hollywood actress Jennifer Aniston's spokesperson has clarified that she is not getting back with her first husband Brad Pitt following her separation from Justin Theroux.
Summary:
As per reports, actress Amy Jackson is dating millionaire businessman George Panayiotou, the son of British real-estate developer Andreas Panayiotou who also owns a chain of luxury hotels.
Summary:
As per reports, Nargis Fakhri will star in the upcoming horror film 'Amaavas'.
Summary:
Anjali had worked for Hrithik during the legal battle between him and Kangana.
Summary:
TV and film producer Ekta Kapoor took to social media to share a picture while hinting at a reboot of her 2001 serial 'Kasautii Zindagii Kay'.
Summary:
Reacting to Roger Federer becoming the oldest men's singles world number one, a user tweeted, "Let's take a moment to appreciate Federer, words fail that man." Other tweets read, "Somewhere between Federer is world no.
1 and Federer is world no.1, we all grew up," and, "Nobody on male side will ever surpass Federer.
Summary:
Google ran a test of a new technology with the US police that can help them locate emergency 911 callers in an accurate manner, according to reports.
Summary:
PM Modi said President Rouhani's visit showed the two nations' wish for deeper cooperation in key areas.
Summary:
A 65-year-old woman and her daughter were forced to eat faeces by villagers in Jharkhand's Dulmi after they were accused of practising witchcraft.
Summary:
Iran's President Hassan Rouhani on Friday said that the India-Iran relations are beyond trade and business.
Our artists, engineers, and littérateurs ensured that our relations are kept intact, which will strengthen our friendship and relationship in the future," Rouhani further said.
Summary:
A Pakistani anti-terrorism court on Saturday handed four counts of death penalty to 24-year-old Imran Ali, who was charged with the rape and murder of a seven-year-old girl in January.
Summary:
The UP Police Twitter handle on Friday shared a photo collage of criminals who surrendered voluntarily in the wake of recent encounters, with a reference to Salman Khan's movie 'Dabangg' in the caption.
Summary:
In November last year, Pixel 2 and 2 XL users reported their devices were randomly rebooting themselves without any warning.
Summary:
Billionaire investor George Soros has said Facebook and Google have left the US government impotent with their monopoly while only the EU has the power to stop them.
Summary:
Stanford University scientists have found that injecting mice with radiation-inactivated stem cells significantly boosted the animals' defences against recurrence of breast, lungs and skin cancers.
Summary:
The Railway Board has announced that individuals seeking to book trains or coaches can approach the IRCTC to get their seats reserved through an online "single window booking system".
Summary:
The sex ratio at birth saw a dip in 17 of 21 large states in India, with Gujarat witnessing a dip of 53 points, a report released by the NITI Aayog has revealed.
Summary:
The Uttar Pradesh government has made a budgetary provision of â¹250 crore for the Delhi-Ghaziabad-Meerut corridor of the Metro.
Summary:
The mass shooting was 2018's 18th such incident involving a US school.nnnn
Summary:
A Dubai-Amsterdam Transavia Airlines flight was forced to make an emergency landing after a fight broke out over a passenger's alleged refusal to restrain from farting.
Summary:
Indian banks have reportedly witnessed 8,670 loan fraud cases worth â¹61,260 crore in last 5 years.
Summary:
The money was reportedly credited to the Nostro account of PNB from the Hong Kong branch of Allahabad Bank.
Summary:
It added that a supervisory assessment of control systems in PNB has already been undertaken.
Summary:
Singer Arijit Singh has said he does not read comments on social media and his team filters out the comments for him.
Summary:
Actress Esha Gupta has said girls are seen as soft targets by online trolls.
Summary:
Akshaye Khanna and Richa Chadha will star in the upcoming film 'Section 375', which refers to the law in the Indian Penal Code that seeks to define rape for legal purposes.
Summary:
Actor Irrfan Khan has said one doesn't really need to know acting to become a star.
Irrfan further said, "If you have cinema where acting becomes crucial, then everybody would go and learn acting."
Summary:
After becoming the oldest men's singles world number one, twenty-time Grand Slam champion Roger Federer tweeted, "Apparently I'm the oldest tennis player with a number one ranking.
Summary:
Manjot Kalra, who won the Man of the Match award in the 2018 U-19 World Cup final for his century, has said that Rahul Dravid doesn't like to talk much about technique unless one seeks his advice.
Summary:
Shiv Sena, in its mouthpiece 'Saamna', on Saturday alleged that PNB fraud case accused Nirav Modi is BJP's partner and he helped the party during its elections.
Summary:
I was a misfit in BJP." Arvinder Singh, who is former President of Delhi Congress, joined the BJP in 2017.
Summary:
The indictment, which charges 13 Russians, claimed false identities were used to open PayPal accounts to pay for the advertisements.
Summary:
Speaking during 'Pariksha Pe Charcha' on Friday, Prime Minister Narendra Modi said that Tamil is a beautiful language and he regrets that his knowledge of the language is restricted to the greeting "vanakkam".
Summary:
Two alleged criminals in Uttar Pradesh's Kairana district walked around the city carrying placards pledging to reform and not indulge in crime again.
Summary:
An Indian-origin man has been sentenced to over four years in jail for filming dozens of women and girls going to the toilets in three schools in South West England.
Summary:
Pakistan reportedly contracted a foreign commercial loan of $500 million (over â¹3,200 crore) from the world's biggest bank by assets, the Industrial and Commercial Bank of China (ICBC), last month to shore up its depleting reserves.
Summary:
Notably, one Bitcoin was valued at $7,931 on February 11 and $6,048 on February 6.
Summary:
The CBI has arrested Punjab National Bank's former Deputy Manager Gokulnath Shetty in relation to $1.77-billion Nirav Modi fraud case.
Summary:
The Tesla Roadster car which was recently launched into space by SpaceX will likely collide with Earth or Venus in the next million years, according to researchers at the University of Toronto.
Summary:
A woman from Chhattisgarh donated her 21-year-old son's body to a medical college as she didn't have the money to take his body back to their village or to perform his last rites.
Summary:
Iranian President Hassan Rouhani has said his country will simplify visa norms for India so that people of India find it convenient to sustain their relationship with the people of Iran.
Summary:
A 36-year-old man with an extra finger on his left hand struggled for eight months to get an Aadhaar card as centres turned him away due to the difficulty in collecting his fingerprints.
"The system should be changed.
Summary:
The 19-year-old who killed 17 people in a mass shooting at a school in Florida on Wednesday had allegedly commented on a YouTube video, "I'm going to be a professional school shooter," in September last year.
Summary:
An Indian-American maths teacher is being hailed for saving the lives of her students during the recent mass shooting at a Florida high school that killed 17 people.
Summary:
Rajasthan CM Vasundhara Raje has announced that 'Pad Man' has been made tax-free in the state.
Summary:
Actress Kangana Ranaut has said when she was a newcomer in the film industry, failure was a matter of life and death for her.
Earlier, Kangana had said, "Maybe when you are bigger and grow more, both success and failure become more of your responsibility."
Summary:
Filmmaker Mohit Suri has denied reports that he is making 'Ek Villain 2', the sequel to the 2014 film 'Ek Villain', with Sidharth Malhotra and Kriti Sanon as the lead actors.
Summary:
Dairy giant Amul has released an ad on Malayalam actress Priya Prakash Varrier on their Twitter handle, with the caption, "The overnight internet sensation!" The ad, which reads "Wink all, wink all, little star!
Summary:
Adam Pengilly, an International Olympic Committee (IOC) member, was sent home following an incident involving a security officer at the PyeongChang 2018 Winter Olympics.
Summary:
Last season's FA Cup runners-up Chelsea struck four times to go past second-tier Hull City, while Jamie Vardy struck the only goal for Leicester against Sheffield United.
Summary:
Summary:
The hackers took control of a computer at one of the country's banks and used the payment transfer facility to move the amount to their accounts.
Summary:
Apple also earned $61 billion in the quarter, accounting for more revenue than rest of the global smartphone industry combined.
Summary:
Users had also reported that their responses to these notifications were appearing as status updates on Facebook.
Summary:
Employees also tried sticking Post-it notes to glass doors to make them more noticeable but they were removed as they detracted from the building's design, reports added.
Summary:
Mumbai-based fintech startup Fincash has raised $150,000 (about â¹1 crore) in a fresh funding round from a group of angel investors, the startup announced.
Summary:
University of Pennsylvania researchers have demonstrated the feasibility of their "organ-on-a-chip" platform in studying how medicines are transported across the human placental barrier.
Summary:
The biggest black holes in the Universe are growing faster than the rate of stars being formed in their galaxies, according to two separate studies using NASA's Chandra X-ray Observatory and the Hubble Space Telescope.
Summary:
The world's heaviest known element 'oganesson' has properties that differ from other noble gases in the periodic table, researchers have found.
Summary:
Summary:
A Gujarat jeweller on Friday alleged that he was duped of â¹60 crore by Gitanjali Gems promoter Mehul Choksi and despite notifying Gujarat High Court and government against Choksi in 2015, no action was taken.
Summary:
The Reserve Bank of India (RBI) has denied giving any instruction to the Punjab National Bank (PNB) over the Nirav Modi fraud.
Summary:
Zimbabwean anti-corruption investigators on Friday said that they have arrested Levi Nyagura, the Vice Chancellor of the University of Zimbabwe, following an investigation into suspected fraudulent awarding of a doctorate to former First Lady Grace Mugabe.
Summary:
Federer surpassed eight-time Grand Slam winner Andre Agassi, who was 33 years old when he became world number one in 2003.
Summary:
One-third of India's children lose their childhood to repeated illness.
HUL along with Kajol appeal to India to join the Swachh Aadat, Swachh Bharat movement to spread awareness.
Summary:
Following his match-winning ton in the sixth South Africa ODI, Virat Kohli said his wife Anushka Sharma deserves "a lot of credit".
She has been criticised a lot, but she is one person who kept pushing me," he further said.
Summary:
Reacting to India's series victory over South Africa, Virender Sehwag tweeted, "Parampara, Pratishtha, Anushaasan..Brilliant effort from the spinners and wonderfully led from the front by Kohli." "Virat Kohli was simply outstanding," wrote VVS Laxman.
Summary:
Virat Kohli has become the first-ever batsman to hit 500-plus runs in a bilateral ODI series, achieving the feat in the sixth ODI against South Africa on Friday.
Summary:
The National Payments Corporation of India (NPCI) has given consent to launch WhatsApp BHIM UPI beta with limited user base of 1 million and low per transaction limit, the regulator said.
Summary:
When satisfied with image, it sends out an electric shock, forcing the user to unwillingly press a button to click the picture.
Summary:
Later, Hubble found two dark storms that appeared in the mid-1990s and then vanished, said NASA.
Summary:
NASA's solar-powered Mars rover Opportunity, expected to last for 90 days, has completed 5,000 Martian days since landing on the Red Planet in 2004.
Summary:
Pakistan's timing of declaring Jamaat-ud Dawa (JuD) chief Hafiz Saeed a terrorist is suspicious, the Ministry of External Affairs (MEA) has said.
Summary:
Italy-based Michelin chef Massimo Bottura reportedly prepared seven-course meals for a party hosted by jeweller Nirav Modi in November 2017.
Summary:
India-born Gupta brothers have been at the centre of the corruption scandal involving former South African President Jacob Zuma.
Summary:
Former Playboy model Karen McDougal has claimed that US President Donald Trump had a nine-month-long extramarital affair with her in 2006.
Summary:
A model who accused Mohamed Hadid of date rape, said he boasted about his supermodel daughters Gigi Hadid and Bella Hadid to lure young women into bed.
Summary:
Diamond and gold worth â¹549 crore were seized and 29 immovable properties were also identified.
Summary:
However, the bank added that it does not have any direct exposure to Modi.
Summary:
Summary:
Actor Purab Kohli got married to his British girlfriend Lucy Paton at a destination wedding in Goa, almost two years after their daughter Inaya's birth.
Summary:
Actor Rishi Kapoor, while sharing a picture of Malayalam actress Priya Prakash Varrier, tweeted, "Mere time mein naheen ayeen aap!
Summary:
Bhosle, who is the fifth recipient of the award, was felicitated by actress Rekha during the ceremony.
Summary:
Reacting to Indian captain Virat Kohli's 35th ODI century, a user wrote, "When Tendulkar was in 90s, he used to get nervous.
Summary:
With his 28th Man of the Match award against South Africa in the sixth ODI, India captain Virat Kohli has now won the third-most Man of the Match awards by an Indian cricketer.
Summary:
Former Allahabad Bank Director Dinesh Dubey has said that he had opposed granting a â¹50-crore loan to Gitanjali Gems owned by Mehul Choksi unless he repaid an earlier loan of â¹1,500 crore.
Summary:
Jammu and Kashmir CM Mehbooba Mufti on Friday tweeted that the use of the Tricolour in a rally opposing the arrest of a cop over the rape and murder of an eight-year-old was "horrific".
Summary:
After the Supreme Court reduced Tamil Nadu's Cauvery water quota from 192 thousand million cubic feet (TMC) to 177.25 TMC on Friday, state Chief Minister Edappadi K Palaniswami said the verdict is very disappointing.
Summary:
The International Criminal Court has received over 11.7 lakh claims of alleged war crimes in three months from Afghan citizens, reports said.
Summary:
Before this, South Africa had lost 1-5 only to Australia in a seven-match series in 2002.
Summary:
Kohli also became the first-ever batsman to score 500-plus runs in a bilateral ODI series.
Summary:
Virat Kohli has become the fastest batsman to reach 17,000 international runs, achieving the feat in his 363rd innings during the sixth ODI against South Africa on Friday.
Summary:
Before jeweller Nirav Modi's â¹11,000 crore fraud came to light, UB Group's Vijay Mallya was accused of money laundering to the tune of â¹9,000 crore.
Summary:
The Bombay Review Editor Kaartikeya Bajpai on Thursday shut down the magazine indefinitely after an ex-employee accused him of sexual misconduct.
Summary:
Filmmaker Anurag Kashyap has said that marginalising a woman and controlling her is 'subconsciously' ingrained in men's minds.
Summary:
BMC had earlier sent letters to the foundation for showing negligence over the project.
Summary:
Summary:
The government has suspended Nirav's passport on the ED's recommendation, ministry's spokesperson Raveesh Kumar said.
Summary:
Seven health workers died on Friday after inhaling toxic fumes while cleaning a septic tank in Andhra Pradesh's Chittoor district.
Summary:
Years after communal riots in Muzaffarnagar claimed at least 62 lives and dislocated over 50,000 people, Hindus and Muslims recite prayers together after 'unity meetings' in the city.
Summary:
Despite the â¹11,360 crore fraud case, the Punjab National Bank (PNB) will get its allotted recapitalisation share of â¹5,000 crore, according to reports.
Summary:
India's trade deficit, the gap between exports and imports, was its widest in over four-and-a-half years, led by a surge in imports of precious stones and crude.
Summary:
The plea alleged that the film showed petitioners in a bad light, which could adversely affect the trial of Adarsh scam.
Summary:
Kohli joined Sourav Ganguly and Suresh Raina, who also have taken 100 ODI catches each.
Summary:
Reacting to Indian spinners Kuldeep Yadav and Yuzvendra Chahal taking 33 wickets in the India-South Africa ODI series, cricketer-turned-commentator Virender Sehwag tweeted, "Yeh #ChaKu humka dedo Thakur.
Summary:
Mithali Raj became the first woman cricketer to register four straight fifties in T20I cricket as India defeated South Africa by nine wickets in the second T20I on Friday.
Summary:
Afghan spinner Mujeeb Zadran, who was bought by Kings XI Punjab at the IPL auction, has become the youngest bowler to take a five-wicket haul in an ODI.
Summary:
Opposition leader RV Patil said that the books have phrases like "loss of virginity" and "sexual desire".
Summary:
Summary:
Alleging that NDTV Founder Prannoy Roy may escape to South Africa, BJP parliamentarian Subramanian Swamy has said he is asking the ED and I-T Department to issue a Look Out Notice against Roy. Last year, the CBI accused Roy of causing losses to ICICI Bank.
Summary:
During his 'Pariksha par Charcha' interactive session with nearly 3,000 students on Friday, PM Narendra Modi asked them to not think of him as the Prime Minister and consider him a "friend".
Summary:
The former jawan, who retired from service in 1958, said "hard work and dedication" were always his priority.
Summary:
The 25-year-old woman, arrested for posing as a man and marrying two women for dowry in Nainital, was planning a third marriage with an already-married woman, a police investigation has revealed.
Summary:
The US will not allow China to coerce or bully other nations in Asia, Susan Thornton, Acting Assistant Secretary for East Asian and Pacific Affairs has said.
Summary:
I hate turban people," the man allegedly said to Gurjeet Singh.
Illinois police have launched an investigation into the alleged assault.n
Summary:
Shares of Gitanjali Gems have plunged about 40.25% since Wednesday and its market capitalisation fell by around â¹300 crore.
Summary:
Dhoni has taken 256 catches in Tests, 297 in ODIs and 47 in T20Is as a wicketkeeper so far.
Summary:
Talking about WhatsApp's payments feature, Paytm Founder Vijay Shekhar Sharma has said, "We are opening our banking system to the biggest of possible fraud." Sharma alleged that while three-factor authentication is mandatory for Indian payment players, western players are allowed to dodge the set rules.
Summary:
Researchers showed that on tearing tissue paper loaded with electricity-conducting carbon nanotubes, the paper acts as a sensor.
Summary:
Neil Harbisson, the world's first 'cyborg' has said the governments should accept that some people will be "part-technology, part-human" in future.
Summary:
Prasad said he wrote to PMO after not receiving any response from ED, CBI, SEBI and Corporate Affairs Ministry.
Summary:
During PM Narendra Modi's 'Pariksha par Charcha' with nearly 3,000 students on Friday, a student asked the Prime Minister if he was prepared for the 2019 Lok Sabha "examinations".
Summary:
After Independence, Tamil Nadu supported the 1924 formula, while Karnataka argued water should be proportionally divided.
Summary:
During the 'Pariksha par Charcha' session with students in Delhi on Friday, PM Narendra Modi said, "I am in the political system but I am not a politician by nature." He added that all Indian children are "born politicians".
Summary:
Philippine President Rodrigo Duterte has offered a bounty of nearly â¹25,000 for killing each communist rebel, according to reports.
Summary:
Teodora Vásquez was accused of intentionally causing the stillbirth for allegedly aborting her child.
Summary:
Following this, CBI raided Gitanjali Group's 20 locations in Mumbai, Pune and Surat among others.
Summary:
Inflation based on the Wholesale Price Index (WPI) reached a six-month low of 2.84% in January from 3.58% in the previous month.
Summary:
The actor had featured in advertisement campaigns for Nirav Modi's brand along with Priyanka Chopra.
Summary:
Actress Priyanka Chopra's spokesperson has denied reports that she has sued jewellery designer Nirav Modi over not paying her for advertisement campaigns she had featured in for the jeweller's brands.
Summary:
According to reports, Kriti Sanon will be starring opposite Sidharth Malhotra in the upcoming film 'Ek Villain 2'.
Summary:
Ekta further said, "It's always not true that the person who doesn't have power is the victim."
Summary:
Bigg Boss 11 contestant Sapna Chaudhary features in the recreation of Haryanavi song 'Hatt Ja Tau' for the film 'Veerey Ki Wedding'.
Summary:
The victim was a student at the school where Dixon was working as a teacher.
Summary:
According to rules, if a bowler bowls two "dangerous" waist-high full-tosses, he can be taken off the attack.
Summary:
After American curler Matt Hamilton participated in the mixed doubles event at the Winter Olympics, Twitter users compared his resemblance to video game character 'Mario' and made memes on it.
Summary:
South African pacer Lungi Ngidi took to Twitter to share a video meme of himself with Malayalam actress Priya Varrier, created by a fan.
Summary:
Mitchell Grimstone, a 20-year-old fan, was awarded â¹23 lakh after he caught a six, hit by batsman Ross Taylor, with one hand during Australia-New Zealand T20I on Friday.
Summary:
Over 10 lakh people have signed a petition urging Snapchat to withdraw its recent updates which redesigned its layout.
to go back to old Snapchat," the petition read.
Summary:
The Ministry of External Affairs on Friday announced that it has extended the visa of 142 Hindu pilgrims visiting from Pakistan by at least 15 days.
Summary:
India has offered to play a substantive role in the reconstruction of Iraq, Minister of State for External Affairs MJ Akbar said.
Summary:
Argentina's Defence Ministry has announced a reward of $5 million (over â¹32 crore) for information on the submarine that went missing last year.
Summary:
Cab aggregator Ola has detected an alleged million-dollar fraud at the firm by Yugantar Saikia, the company's Chief Administrative Officer and head of human resources.
Summary:
Notably, this is the third film directed by Neeraj Pandey to be banned in Pakistan, after 'Baby' and 'Naam Shabana'.
Summary:
New Zealand's Martin Guptill surpassed former Kiwi captain Brendon McCullum's tally of 2,140 runs to become the highest run-scorer in T20I cricket.
Summary:
On the advice of the Enforcement Directorate, the Ministry of External Affairs on Friday suspended the validity of passport of Nirav Modi who is accused of defrauding Punjab National Bank of over â¹11,000 crore.
Summary:
Australia on Friday chased down the target of 244 against New Zealand to register the highest-ever successful chase in T20I cricket.
Summary:
New Zealand's Mark Chapman was dismissed hit-wicket after a short ball struck him on the helmet, which fell off his head and bounced off the pitch to hit the stumps.
Summary:
After completing 7 years at the International Space Station, NASA's humanoid robot 'Robonaut' is being sent back to Earth for repairs.
Summary:
The party had released a list of 23 candidates for the 60-member assembly, but five candidates later withdrew their nominations, leaving 18 candidates from the party.
Summary:
Earlier, reports suggested that Flipkart's valuation may double to $20 billion if Walmart invests in the company.
Summary:
The Pacific island nation of Tuvalu, expected to "sink" amid rising sea levels, is actually growing in size, a New Zealand-based research has shown.
Summary:
The court was hearing an NGO's petition seeking to make it mandatory for candidates to disclose their and their family's sources of income.
Summary:
China has opposed PM Narendra Modi's visit to Arunachal Pradesh which it claims as part of South Tibet.
Summary:
Ratan Tata's name was mentioned in the Israeli police's recommendation to prosecute Israeli PM Benjamin Netanyahu in two bribery cases, according to a report.
Summary:
In the light of the revelation, Union Bank stock fell 1.25% on Friday as the markets closed.
Summary:
Punjab National Bank has reportedly declared jewellery manufacturer Gitanjali Group as a fraud entity after discovering that the group was allegedly involved in defrauding it of over â¹11,000 crore.
Summary:
The song 'Ek Ladki Ko Dekha Toh Aisa Laga' from the movie '1942: A Love Story' will be recreated for an upcoming film with the same title as that of the song.
Summary:
The seaside wedding reportedly took place in Malibu on Tuesday.
Summary:
Shiv Sena MP Sanjay Raut has said actor Nawazuddin Siddiqui was the only choice for 'Thackeray', the upcoming biopic on Shiv Sena founder Bal Thackeray.
Summary:
World number one Denmark's Caroline Wozniacki progressed to the Qatar Open quarter-finals on Thursday after she complained and apparently mocked her opponent Monica Niculescu's grunting.
Summary:
New Zealand's Martin Guptill, who went unsold at the IPL 2018 auction, slammed a 49-ball ton against Australia to register the fastest T20I ton for his nation.
Summary:
FedEx claimed that no information was misappropriated.
Summary:
Virgin Group Founder Richard Branson has admitted that he was a "little bit jealous" of SpaceX's Falcon Heavy rocket launch which took place earlier this month.
Summary:
Australia-based researchers have developed a graphene-based membrane, which filters water samples from the Sydney Harbour into safe drinking water after just one pass.
don't have clean and safe drinking water," the researchers noted.
Summary:
The Indian Army has denied Pakistan's claims that it killed five Indian soldiers and destroyed Army post in Kashmir.
Summary:
Addressing a gathering at the Talkatora Stadium during his 'Pariksha Pe Charcha', Prime Minister Narendra Modi on Friday requested the parents to not compare their children with others.
He further asked students to never doubt their parent's intentions, but understand them.
Summary:
Saudi Arabia has been demanding the deployment of Pakistani troops since the beginning of Yemen's civil war in 2015.
Summary:
JetPrivilege launches hotels.jetprivilege.com that lets you search, compare and book your stay across numerous hotels and booking websites.
Summary:
The four people are wanted in India for allegedly defrauding the Punjab National Bank of $1.77 billion (over â¹11,000 crore).
Summary:
The Supreme Court on Friday reduced Tamil Nadu's quota of Cauvery water to 177.25 thousand million cubic feet (TMC) from the 192 TMC awarded to the state by Cauvery Water Disputes Tribunal in 2007.
Summary:
Astronomers have confirmed the discovery of 95 new planets outside our Solar System after studying 275 possible candidates found by NASA's Kepler space telescope.
Summary:
Billionaire jeweller Nirav Modi, who is accused of defrauding Punjab National Bank (PNB) of over â¹11,000 crore, has been spotted in an apartment in New York, according to reports.
Summary:
Paytm Founder Vijay Shekhar Sharma has claimed the National Payments Corporation of India (NPCI) asked the company to delay its UPI launch so that Google could launch its payments app.
Google launched 'Tez' in September last year.
Summary:
Apple's iMessage and third-party applications including WhatsApp were also found to be affected by it.
Summary:
NASA's nuclear-powered Curiosity Mars rover has discovered dark, stick-shaped features that are thought to have formed over ancient crystals.
Summary:
Addressing a gathering of students during his 'Pariksha Pe Charcha' on Friday, Prime Minister Narendra Modi said that it is not the student's exam today but his.
Summary:
The International Monetary Fund's (IMF) Communications Director, Gerry Rice, has said that the tax collection assumptions in India's 2018-19 Budget are ambitious.
Summary:
ED also conducted raids on 17 locations linked to Nirav Modi in Delhi, Mumbai, Hyderabad, Jaipur, and Surat in relation to the laundering of â¹11,300 crore from Punjab National Bank.
Summary:
Summary:
The 19-year-old accused of killing 17 people using a rifle at a school in Florida on Wednesday has revealed that he bought a drink at a Subway restaurant before walking to a McDonald's after the attack.
Summary:
Rishi Kapoor has revealed that his late father Raj Kapoor had to mortgage his studio and assets to release the film 'Mera Naam Joker', but it failed to perform well at the box-office.
Summary:
Commentating during the Winter Olympics in Pyeongchang, former freestyle skier and five-time Olympian Jacqui Cooper said, "Very Chinese.
They're very hard to tell who's who." Cooper made the comments following a jump by Chinese aerial skier Yan Ting during a qualifying run at the event.
Summary:
Indian shuttler Kidambi Srikanth posted a video on Instagram wherein he is seen trying to copy Swiss tennis star Roger Federer's service.
"Trying to copy the legend @rogerfederer .
Summary:
Gurugram-based pet care startup PetSutra has raised â¹95 lakh in an angel funding round from a group of investors, the company said in a statement.
Summary:
Amazon has been ordered to pay $1.2 million by the US for illegally distributing unregistered pesticide products in the country.
Summary:
Bengaluru-based car rental startup Zoomcar has raised $40 million in a Series C investment round led by Mahindra and Mahindra.
Summary:
A report by conservationists has revealed that human activities caused orangutan population in Borneo to decline by 1,50,000 from 1999-2015.
Summary:
Rejecting Union Information and Broadcasting Ministry's proposal to appoint a serving IAS officer to Prasar Bharati's board, the public broadcaster has said that accepting the proposal would be an infringement of its autonomy.
Summary:
Candidates who passed Class 10 exam are eligible to appear for the exam.
Summary:
Jammu and Kashmir Assembly has passed a bill for the establishment of a law university in the state along the lines of Bengaluru's National Law School of India University (NLSIU), an official has said.
Summary:
The 2017 Las Vegas attack, which claimed the lives of 59 people and injured over 500 others, remains the US' deadliest mass shooting.
Summary:
Bollywood Hungama wrote the film misses the mark and is a huge letdown.
It has been rated 1/5 (HT), 2/5 (Bollywood Hungama) and 3.5/5 (TOI).
Summary:
Jennifer Aniston and Justin Theroux have issued a statement announcing their split after two and a half years of marriage.
"This decision was mutual and lovingly made at the end of last year.
Summary:
Paytm Founder Vijay Shekhar Sharma has said, "Facebook is one of the most evil companies in the world right now." Sharma's statement comes after Facebook-owned WhatsApp launched its digital payments service via UPI platform in India.
Summary:
The ruling Telugu Desam Party in Andhra Pradesh has announced that it will exit the NDA alliance if the Centre fails to fulfill the 19 promises made by Finance Minister Arun Jaitley by March 5.
Summary:
"Nirav Modi did not meet PM Modi at Davos," he further said.
Summary:
BJP leader and Law Minister Ravi Shankar Prasad has said Congress spokesperson Randeep Surjewala's remark terming Nirav Modi, accused in the $1.77 billion PNB scam, as "Chhota Modi" was "derogatory, scandalous and demeaning".
Summary:
Scientists at MIT, Harvard and elsewhere have demonstrated that light particles called photons can interact and stick together to form a new kind of photonic matter.
Summary:
The Indian Army has killed 20 Pakistani soldiers along the Line of Control (LoC) since the beginning of the year, reports have said.
Summary:
Adding that Haryana has more cases for litigation than Punjab, the advocates said even smaller states like Meghalaya got separate high courts after a 2013 announcement.
Summary:
The students led by Jawaharlal Nehru University Students' Union (JNUSU) sat in protest since 11 am demanding to meet University Vice-Chancellor, Jagadesh Kumar.
Summary:
India is a living museum of peaceful co-existence of different ethnicities and religions, Iranian President Hassan Rouhani, who arrived in India on Thursday for a three-day visit, has said.
Shia, Sunnis, Sufis, Hindus, Sikhs and others are living together.
Summary:
ED is also looking for the revocation of passports of Nirav Modi's wife Ami Modi and his relative Mehul Choksi.
Summary:
Interestingly, the first teddy bear went on sale on February 15, 1903.
Summary:
A 99-year-old veterinarian who was caught by police with deer skin in his house has claimed that actor Saif Ali Khan's grandfather Iftikhar Ali Khan Pataudi gifted it to him 50 years ago when he was employed at the Pataudi Estate.
Summary:
Malayalam actress Priya Prakash Varrier, whose clip in the song 'Manikya Malaraya Poovi' has become viral, said she would like to be known as a good actor rather than being known as the wink queen.
I never expected that [the clip] would become such a big hit," she added.
Summary:
Karan Johar has said his 2016 directorial 'Ae Dil Hai Mushkil' is the only film of his that he's completely satisfied with.
Speaking about his other films, Johar further said, "I think there are some cringe-worthy scenes in 'Kuch Kuch Hota Hai'.
Summary:
"I apologise for being a total idiot," Connor later tweeted.
Summary:
"I have to play the 2019 World Cup," Raina said while talking about his ambitions.
Summary:
Mrigank Pawagi's app is an interactive game which allows users to learn internet safety by completing challenges at different levels.
Summary:
Special squads will be stationed at bus stops and will board the vehicle if the panic button is pressed during an emergency.
Summary:
While the police have questioned two people in connection with the blast, other occupants of the room reportedly fled from the site.
Summary:
The woman claimed that her matrimonial life has been "ruined" because of porn websites.
Summary:
The entry and exit through the first two doors behind the loco-pilot's cabin in Bengaluru Metro trains will be reserved for women from March 1, officials announced.
Summary:
Rouhani's visit comes after the inauguration of the first phase of Iran's Chabahar Port, to be operated by India for ten years, in December.
Summary:
A woman constable in Maharashtra's Kolhapur tried to swallow a bribe of â¹300 after she realised she was caught by the Anti Corruption Bureau (ACB).
Summary:
The court was hearing a petition which alleged corruption in government offices where properties were registered.
Summary:
Amazon's Jeff Bezos is currently the world's richest person with $120.9 billion net worth, nearly $30 billion more than Microsoft Co-founder Bill Gates.
Summary:
The father and stepmother of Swiss freeskier Mischa Gasser travelled 17,000 km on a bike to see their son perform at the Winter Olympics in Pyeongchang, South Korea.
Summary:
Australia and South Africa played the shortest-ever completed Test that got over in 5 hours and 53 minutes, on February 15, 1932.
Summary:
US intelligence agencies including the FBI, the CIA, and the NSA have warned citizens to not buy smartphones made by Chinese technology giants Huawei and ZTE.
Summary:
The Congress on Thursday called jeweller Nirav Modi, accused in Punjab National Bank's $1.77 billion scam, "chhota Modi".
Summary:
BJP President Amit Shah on Thursday rode pillion on a bike as he led the 'Yuva Hunkar Rally' in Haryana's Jind.
Summary:
Expressing shock over the compensation given to sexual assault victims in Madhya Pradesh, the Supreme Court on Thursday asked the state government if it "valued a rape at â¹6,500".
Summary:
About 1.5 lakh online transactions, out of the total 230 crore such deals, get compromised on a daily basis in India, according to reports.
Summary:
Justifying his absence at martyred CRPF jawan Mujahid Khan's funeral, Bihar Minister Vinod Singh said his attendance at the funeral "would not have made the jawan alive".
Summary:
Law Minister Ravi Shankar Prasad has said the government will launch a thorough probe into the â¹11,300-crore fraudulent transactions linked to billionaire jeweller Nirav Modi's firms, adding that nobody will be spared in the case.
Summary:
Delhi CM Arvind Kejriwal's office has written to India Today asking them to sack editor Abhijit Majumder over "communal" coverage of the government's â¹5 lakh compensation to murder victim Ankit Saxena's family.
Summary:
A 28-year-old pregnant woman from Kerala's Kozhikode lost her baby after she was allegedly kicked in the stomach by a local CPI(M) leader.
Summary:
Stormy Daniels, the pornstar who was reportedly paid $130,000 for her silence over a sexual encounter with US President Donald Trump, believes she is now free to discuss the ordeal, her manager Gina Rodriguez said.
Summary:
US Vice President Mike Pence has admitted that he "ignored" but "did not avoid" North Korean leader Kim Jong-un's sister Kim Yo-jong at the opening ceremony of the Winter Olympics in Pyeongchang, South Korea.
Summary:
A Letter of Undertaking (LoU) is an assurance given by one bank to another to meet a liability on behalf of a customer.
Summary:
Punjab National Bank (PNB) has suspended 10 officials in connection with the $1.77 billion fraud linked to jeweller Nirav Modi's firms.
Summary:
He said the cryptocurrency market would continue to see an "acceleration" of growth, despite the recent price plunge.
Summary:
Punjab National Bank has lost more than 20% of its market capitalisation in just two days after it detected a $1.77 billion-worth fraud linked to jeweller Nirav Modi.
Summary:
The win also ended Sri Lanka's eight-T20I losing streak, which had started on April 6, 2017 against Bangladesh itself.
Summary:
The incident happened during the second half when the Brazilian attempted to pass but the ball hit Rocchi, who was standing eight yards away.
Summary:
Indian fast bowler Ishant Sharma, who went unsold at the IPL auction last month, will play county cricket for Sussex from April 4 to June 4.
Summary:
The state government of Odisha would sponsor India's national men's and women's hockey teams for the next five years.
Summary:
In its mouthpiece 'Saamana', the Shiv Sena has called Congress President Rahul Gandhi's recent visit to Hindu and Muslim religious places in Karnataka as a strategy of 'soft Hinduism'.
Summary:
A new pop song written by Thailand's Prime Minister Prayuth Chan-ocha has sparked a backlash on social media.
Summary:
The Lebanese President's office has denied that US State Secretary Rex Tillerson had been kept waiting ahead of a meeting with President Michel Aoun at the presidential palace on Thursday.
Summary:
Responding to a question on his frequent premium-class flights at taxpayer expense, the Director of the US Environmental Protection Agency (EPA), Scott Pruitt said that he does so to avoid "unpleasant interactions".
Summary:
After they quit Fortis, reports emerged claiming the brothers took at least â¹500 crore from the company without board approval.
Summary:
The Enforcement Directorate has seized diamonds, jewellery and gold worth â¹5,100 crore and sealed six properties during searches in the Nirav Modi fraud case.
Summary:
Last year, Ramaphosa replaced Zuma as leader of the ruling party.
Summary:
The doctors were forced to use mobiles after lights over the operating table went off in the middle of the surgery.
Summary:
Billionaire jeweller Nirav Modi reportedly left India on January 1, much before the CBI received complaints about a $1.77 billion-fraud linked to his firms.
Summary:
As the AAP government in Delhi celebrated its three years in power on Wednesday, an RTI reply has revealed the incumbent government spent four times more on advertisements than the previous Congress government.
Summary:
Construction work at the building was stopped two years ago.
Summary:
A video shared by the Shanghai Police shows a burglar knocking out his partner by mistake while attempting a robbery.
Summary:
PNB chief Sunil Mehta has revealed that the $1.77-billion worth fraud linked to jeweller Nirav Modi began in 2011.
Summary:
The collective net worth of 2 lakh super-rich households in India grew to â¹153 lakh crore, nearly equivalent to the market capitalisation of all BSE-listed companies, according to a Kotak Wealth Management report.
Summary:
A television actress has filed a complaint against a man named Vishwanath Shetty for allegedly molesting her at a fitness centre in Andheri, Mumbai.
Summary:
Actor Saqib Saleem has said one doesn't need to have six-pack abs to become an actor.
Saqib further said, "It is just a matter of putting your head down and thinking about what you want."
Summary:
Actor Randhir Kapoor has said because of the paparazzi, people now also recognise the maid who takes care of his grandson Taimur Ali Khan.
Summary:
Twinkle had earlier produced the film 'Pad Man', which deals with the subject of menstrual hygiene.
Summary:
Hyderabad's Jamia Nizamia seminary has issued a fatwa against the song 'Manikya Malarayi Poovi' from the film 'Oru Adaar Love', featuring Malayalam actress Priya Prakash Varrier.
Summary:
Daredevils' Glenn Maxwell, who will be the Master of Ceremonies at Finch's wedding, will also miss the opening match.
Summary:
Teams take turns sliding 19-kg granite rocks towards a marked target area on the surface.
Summary:
The 25-year-old recently won bronze in the mixed doubles curling event along with husband Alexander Krushelnitsky at the Winter Olympics.
Summary:
Addressing a gathering in poll-bound Tripura, Prime Minister Narendra Modi on Thursday claimed that the ruling CPI(M) in the state believed in "gun-tantra" and not 'gantantra'.
Summary:
Parts of the Southern Hemisphere including Argentina, Brazil, and Chile would be witnessing a partial solar eclipse starting from 6:55 pm local time (February 16, 12:25 am in India).
Summary:
The Mumbai Police conducted a raid at an illegal dance bar disguised as an orchestra bar, and rescued 16 women hidden in a cramped, closet-like room with no ventilation on Wednesday.
Summary:
The parents of a 27-year-old man who died of a cancerous brain tumour became grandparents of twins by using their son's cryopreserved semen for a surrogate pregnancy in Pune.
Summary:
Addressing a rally in Itanagar, Prime Minister Narendra Modi on Thursday said that Hindi was most widely spoken in "my Arunachal Pradesh" among all northeastern states.
Summary:
The government is also considering to procure "international machines" to ascertain what causes high pollution on a particular day.
Summary:
The Hyderabad High Court has stayed the decision of the Tirupati temple trust to transfer 44 non-Hindu employees in the institutions run by it.
Summary:
Ethiopia's Prime Minister Hailemariam Desalegn on Thursday said that he has submitted his resignation as both premier and the chairman of the ruling coalition amid a political crisis in the African country.
Summary:
Summary:
This is the company's smallest profit in over two and a half years.
Summary:
Nirav Modi, the 47-year-old billionaire accused in $1.77 billion PNB scam, is the founder of Firestar Diamond.
Summary:
Two Wing Commanders of the Indian Air Force were killed after a microlight helicopter crashed in Assam's Majuli island on Thursday.
Summary:
Former Managing Director of Facebook India and South Asia Umang Bedi has joined Bengaluru-based news and local language content application Dailyhunt as its President.
Summary:
WhatsApp's Vice President Neeraj Arora has resigned from Paytm's Board of Directors days after WhatsApp launched its payments feature in India.
Summary:
However, Mehta added that Nirav did not come out with a concrete repayment plan.
Summary:
Nagaland has never elected a woman MLA in the 54 years of its statehood and through its 12 Assembly elections.
Summary:
The CBI chargesheet against jailed Dera chief Ram Rahim Singh has alleged that mass castration was performed at an old printing press building in Sirsa, which was earlier used to print the Dera's publicity material.
Summary:
The officer has been questioned and continues to perform his routine duty, he added.
Summary:
American fashion and lifestyle magazine Vogue has featured New Zealand's PM Jacinda Ardern in a photo shoot for its March issue and has released an article on her accompanying the image.
Summary:
A monkey apparently consumed a large amount of alcohol and began chasing customers at a nBengaluru bar, following which several of them left the premises.
Summary:
The Enforcement Directorate (ED) on Thursday raided at least 12 premises of billionaire diamond jeweller Nirav Modi in Delhi, Surat, and Mumbai allegedly in connection with $1.77 billion PNB fraud.
Summary:
Foreign branches of Indian banks had loaned money to Nirav Modi-linked firms based on fake guarantees provided by PNB.
Summary:
Actress Rani Mukerji has revealed that her wedding with filmmaker Aditya Chopra was attended by only twelve people.
Summary:
Malayalam actress Priya Prakash Varrier, while speaking on the controversy over the song 'Manikya Malaraya Poovi', wherein a Muslim youth claimed that the song's lyrics are insulting to the Prophet, said, "It is actually unnecessary.
Summary:
The release date of Shahid Kapoor's half-brother Ishaan Khatter's debut film 'Beyond the Clouds' has been postponed to April 20.
Summary:
No athletes were among the injured, organisers further revealed.
Summary:
Japanese tour firm First Airlines offers 360-degree virtual reality tours of cities like Paris and Rome to customers on simulated flights.
Summary:
Campbell Brown, Facebook's Head of News Partnerships, at a recent interview said, "My job is not to go recruit people from news organisations to put their stuff on Facebook." Brown added that her job is to ensure that quality news is published on Facebook.
Summary:
A pop-up marriage licence kiosk has opened at the Las Vegas airport for passengers wishing to get married.
Summary:
Summary:
The Delhi Congress on Wednesday released a 'chargesheet' against the ruling Aam Aadmi Party (AAP) on completion of its three years in the national capital on Wednesday.
Summary:
Congress President Rahul Gandhi has tweeted that hugging PM Narendra Modi and being seen with him in Davos was part of jeweller Nirav Modi's "guide to looting India".
Summary:
The shower of electrons bouncing across Earth's magnetosphere that create the colourful auroras commonly known as Northern Lights has been directly observed for the first time by an international team of scientists.
Summary:
Pakistan Defence Minister Khurram Khan has said India wasted the opportunity to normalise ties when a "political consensus existed within Pakistan" for improving relations, Pakistan media reported.
Summary:
A lock of hair belonging to the first US President George Washington has been discovered hidden inside an envelope kept in a book at a college library in the country.
Summary:
Fella Homes Co-founder Virendra Pratap Singh will join ZiffyHomes as its new Chief Business Officer.
Summary:
Priyanka Chopra has accused jewellery designer Nirav Modi, who is the prime accused in the $1.77 billion scam involving Punjab National Bank, of non-payment of dues for several advertisement campaigns.
Summary:
Four-time champions Pakistan will participate in the upcoming Hockey World Cup which will be hosted in Bhubaneswar, Odisha, later this year.
Summary:
A 30-year-old US-based transgender woman has been able to breastfeed her adopted child in the first case of induced lactation in transgender women documented by doctors.
Summary:
This comes amid increasing pressure on Australian Deputy PM Barnaby Joyce to resign after it was revealed that he had an extramarital affair with his ex-media adviser Vikki Campion.
Summary:
Born on February 15, 1564, Galileo Galilei was an Italian astronomer who pioneered heliocentrism, defying the Vatican view that Earth was the centre of the Universe.
Summary:
The inventor of the teddy bear, which first went on sale on February 15, 1903, named the soft toy after former US President Theodore Roosevelt.
Summary:
Paytm Founder Vijay Shekhar Sharma has been slammed by startup executives over his remark on WhatsApp's Payments feature.
Calling Sharma a hypocrite, MobiKwik Founder Bipin Preet Singh pointed that Paytm got exclusive access when UPI was launched.
Summary:
The panchayat members claimed women were coming in contact with outsiders and marrying them because of phones, risking their exclusive land rights.
Summary:
A picture of Rajasthan Health Minister and BJP leader Kalicharan Saraf urinating on a wall in Jaipur has surfaced online.
Summary:
The law will come into effect in 2020 and ask the citizens for their consent for being a donor.
Summary:
The allegations have been denied by Garcia who was recently accused of sexual harassment by multiple male staffers.
Summary:
A group named Thanthai Periyar Dravidar Kazhagam has filed a petition in a family court in Tamil Nadu's Coimbatore, seeking a divorce between a dog and a goat that were married off on Wednesday.
Summary:
Interestingly, Mason said her twins first thought the cakes were dolls.
Summary:
Filmmaker Karan Johar has revealed Farah Khan turned down an opportunity to choreograph the songs in the 1995 film 'Dilwale Dulhania Le Jayenge' as she had committed to do a Marathi film.
That's the level of commitment she has," he added.
Summary:
"The cricketers of both the nations want to play for betterment of relations," Afrid said about Indo-Pak cricket.
Summary:
SitTight claims that when a person places feet on the footrest platform and balance their centre of gravity, they experience real exercise.
Summary:
A British Airways engineer was killed while another person was injured after two airport vehicles collided with each other on the airfield at London's Heathrow Airport.
Summary:
Uber's CEO Dara Khosrowshahi has said, "we can turn the knobs to get this business even on a full basis profitable, but you would sacrifice growth and sacrifice innovation." Last month, Khosrowshahi had claimed that Uber's core ride-hailing business will be profitable before 2022.
Summary:
Called malacidins, the antibiotic managed to kill drug-resistant skin infections in animals by attacking the bacterial cell wall.
Summary:
Recently, she also filed a rape complaint against a policeman.
Summary:
Targeting youth who follow rules, officials said this was the best occasion to praise such commuters.
Summary:
In a bid to improve Arunachal Pradesh tourism, PM Narendra Modi on Thursday said, "I will tell people to come to Arunachal Pradesh for their meetings and conferences." "Lot of people do it in Delhi and Mumbai.
Summary:
Police have arrested a woman for allegedly posing as a man and marrying two women for getting dowry in Nainital.
Summary:
Minister of State for Finance and Shipping Pon Radhakrishnan on Wednesday said that Tamil Nadu is becoming "a camp and training centre" for extremist forces.
Summary:
After farmers in Maharashtra lost crops on around 2 lakh hectares of land due to hailstorm and unseasonal rains, the state government has sought â¹200-crore aid from the Centre.
Summary:
The man was waiting for his train at the platform when he saw an unconscious man lying on the track.
Summary:
A US school asked its seventh-grade students last week to draw themselves as slaves as part of a history homework assignment regarding the US Civil War (1861-1865) and slavery's role in it.
Summary:
Based on these fake approvals, foreign branches of Allahabad Bank and Axis Bank appeared to have advanced money to these firms abroad.
Summary:
Virgin Atlantic flew an Airbus A330 in the shape of a giant heart on Valentine's Day. The airline took permission to operate the training flight on the special route.
Summary:
The official trailer of Anushka Sharma starrer supernatural horror film 'Pari' has been released.
Summary:
North Korean cheerleaders at the Winter Olympics confused an impersonator with leader Kim Jong-un after he turned up at an ice hockey game on Wednesday.
Summary:
Apple watches outsold the entire Swiss Watch industry by 1.2 million in the fourth quarter of 2017, according to research firm Canalys.
Summary:
It is "not unusual" for any speaker with a vibration-damping silicone base to leave marks when placed on a wooden surface, Apple added.
Summary:
An 'energy net-positive hotel' is expected to open at the foot of a glacier in Norway in 2021.
Summary:
Congress on Wednesday shared a Valentine's Day video dedicated to PM Narendra Modi with 'Pehla Nasha' as its theme song.
Summary:
Milky Way's nearest spiral galaxy Andromeda formed in a "recent" crash between two smaller star systems when Earth already existed, China and Europe-based astronomers have found.
Summary:
Police said the girl's boyfriend had invited her to his uncle's house, where he and his three friends spiked her drinks, following which she fell unconscious.
Summary:
Maldives' Defence Minister Adam Umar has warned that any talk of Indian military intervention in his country's ongoing political crisis could affect Maldives-India relations.
Summary:
"We have shut go-karting and have started a probe at departmental level," officials said.
Summary:
26/11 Mumbai terror attack mastermind Hafiz Saeed has said that he will challenge Pakistan government's "illegal" action of taking over control of the seminaries and health facilities run by him in a court.
Summary:
At least three other banks are likely to be affected due to the $1.77 billion worth fraud transactions detected by PNB.
Summary:
Kriti Sanon has said she's someone who can't understand the logic of arranged marriages.
Summary:
Aamir Khan has revealed that he fell in love for the first time when he was 10 years old.
Aamir further revealed that it was one-sided love.
Summary:
The US Federal Communications Commission (FCC) Chairman Ajit Pai has backed SpaceX's plan to provide broadband services using satellites.
Summary:
Haryana CM Manohar Lal Khattar on Wednesday rode a motorcycle in Jind, where he came to review the arrangements for BJP President Amit Shah's mega bike rally.
Summary:
Currently, Tinder allows either men or women to initiate a conversation after a mutual match has been made.
Summary:
Mumbai-based fintech startup MoneyOnMobile has raised $5 million in Series H funding from Russia-based private aviation company S7 Group, the startup announced.
Summary:
NASA's Solar Dynamics Observatory saw a total solar eclipse in space earlier this week when Earth crossed its view of the Sun. The transit lasted for 31 minutes, covering the entire face of the Sun. The images taken in the ultraviolet wavelength were colourised in purple.
Summary:
Policemen in Jharkhand's Jamshedpur city allegedly thrashed a mentally and physically challenged man in an attempt to remove him from the middle of a road.
Summary:
Claiming there were no communal riots in Uttar Pradesh in the last one year, state Director General of Police (DGP) OP Singh said that the Kasganj violence was a "group clash" which was "effectively checked".
Summary:
The Indian Railways has initiated the recruitment process for hiring 89,000 Group C and D employees, including assistant loco pilots, technicians, gangmen, among others.
Summary:
The Supreme Court has slammed a Bombay High Court order granting bail to three men accused of murder, suggesting they were provoked in the name of religion.
Summary:
The Uttar Pradesh government on Wednesday said that the bodies of non-government persons cannot be wrapped in the Tricolour.
Summary:
Thailand's Health Ministry gave out prenatal vitamin pills to couples along with leaflets explaining how to be healthy in order to conceive on Valentine's Day in a campaign to boost the country's declining birth rate.
Summary:
Bollywood megastar Hrithik Roshan yesterday opened Rado's stylish new store at Delhi IGI Airport.
Summary:
At least 17 people have been killed and 17 others have been injured in a mass shooting at a high school in Florida, police have said.
Summary:
Jacob Zuma has resigned from the post of South Africa's President after defying a 48-hour deadline given by the ruling African National Congress (ANC) to leave the office.
Summary:
Further, Ronaldo has scored 10+ UCL goals for the seventh straight season, no other player has done so in three.
Summary:
BJP's Kurukshetra MP Raj Kumar Saini has slammed the Haryana BJP government for "bowing" before the demands raised by the Jat community by withdrawing 70 FIRs filed during the violent agitation in 2016.
Summary:
After reports said that he expressed fear over girls consuming beer, Goa Chief Minister Manohar Parrikar on Wednesday said that the media had twisted his statement.
Summary:
The court also granted a compensation of â¹3 lakh to the victim.
Summary:
The 44th US President responded by tweeting, "Happy Valentine's Day, @MichelleObama.
Summary:
Canada adopted the maple leaf flag on February 15, 1965, following a proclamation by Queen Elizabeth II to replace the Canadian Red Ensign.
Summary:
The fraud amount of â¹11,360 crore detected by PNB on Wednesday at a Mumbai branch is equivalent to 8.5 times the bank's FY17 net profit of â¹1,325 crore.
Summary:
According to reports, actors Kangana Ranaut and Rajkummar Rao will star together in a yet-to-be-titled psychological thriller, the shooting for which is expected to start in March.
Summary:
Andile Phehlukwayo, who had said that South African batsmen were more confident against Indian spinners after the fourth ODI, was dismissed for a three-ball duck by spinner Kuldeep Yadav in the fifth ODI.
Summary:
Riding on Cristiano Ronaldo's two goals, two-time defending champions Real Madrid defeated PSG 3-1 in the first leg of the last 16 of Champions League on Wednesday.
Summary:
Samsung remained the smartphone market leader in India with 24.7% market share.
Summary:
An American woman who cursed and threatened to get a crew member on a Delta flight fired was made to deboard.
Summary:
Other selected sites include the Taj Mahal, Konark Sun Temple, and Ajanta and Ellora caves.
Summary:
A Delta Air Lines employee has been videotaped telling a passenger, "You can take my f**king picture if you want to a**hole." The passenger claimed the incident occurred when he was inquiring about his luggage as his flight was delayed twice.
Summary:
BJP leader and Union Minister Anantkumar Hegde on Wednesday said Congress President Rahul Gandhi's visit to poll-bound Karnataka was good entertainment.
Summary:
Shiromani Akali Dal President and former Punjab Deputy CM Sukhbir Singh Badal has likened Punjab Minister Navjot Singh Sidhu to a monkey for calling Anandpur Sahib's Virasat-e-Khalsa museum a "white elephant".
Summary:
Rajasthan Congress chief Sachin Pilot has said the party's recent win in all by-election seats in BJP-ruled Rajasthan has shown that the "tide, sentiments and undercurrent" are in Congress' favour.
Summary:
Scientists have learned from 25 years of satellite data that sea levels are rising at 3 mm every year, while its rate is increasing about 0.08 mm per year.
Summary:
Army's Northern Command chief Lieutenant General Devraj Anbu on Wednesday said there are more than 300 terrorists in Pakistan ready to enter India.
Summary:
The punishment had followed after an argument between the man and other passengers.
Summary:
We believe solvers were being used to help examinees cheat, the officials said.
Summary:
A 54-year-old former Navy personnel Dhananjay Sinha has been arrested for allegedly killing his 72-year-old friend over not getting enough space to sit on a Mumbai railway station bench.
Summary:
The Snow and Avalanche Study Establishment on Wednesday issued a 24-hour avalanche warning across several districts in Jammu and Kashmir, Himachal Pradesh, and Uttarakhand.
Summary:
The family of a CRPF jawan who died during an encounter with terrorists in Srinagar, has rejected the Bihar government's â¹5-lakh compensation, saying, "He did not die drinking hooch".
Summary:
The Maldives military on Wednesday threw MPs out of the parliament building amid the ongoing political crisis in the country.
Summary:
The study revealed that those earning $95,000 (over â¹60 lakh) annually are truly happy with their life.
Summary:
Summary:
Price regulation is necessary to counter the irrational and restrictive trade margin, the authority said.
Summary:
The government has clarified that the food served to patients admitted to the hospital is part of healthcare services and is therefore exempt from GST.
Summary:
CRPF constable Raghunath Ghait, who had foiled a suicide attack in J&K's Karan Nagar by spotting two suspected attackers carrying AK-47 guns, will be getting an out-of-turn promotion.
Summary:
Retired High Court judge Justice AM Thipsay, who ruled on four bail applications in the Sohrabuddin Sheikh encounter case, has said that the proceedings in the case pointed towards "failure of justice".
Summary:
Recently, an IAF officer was also detained for allegedly spying for Pakistan in exchange for sex chats.
Summary:
Adding that the US should accept Taliban's right to form a government in the country, it said the US must end its "occupation".
Summary:
Warning that foreign intelligence services are keeping an eye on Russian military personnel, the country's Defence Ministry reportedly ordered troops to abstain from using social media platforms.
Summary:
Pakistan recently listed UN-sanctioned and Hafiz Saeed-led Jamaat-ud Dawa as a terror outfit.
Summary:
A rescue centre in the Philippines offered pet lovers dates with dogs on Valentine's Day. The date, costing $6 to help fund a shelter run by the Philippine Animal Welfare Society, included a decorated table for two.
Summary:
India's Ultra-High Net Worth Individuals (UHNIs) allocated 45% of their income towards savings and investment while the rest went towards expenses, according to a Kotak Wealth Management report.
Summary:
PNB has filed two complaints with the CBI against billionaire jeweller Nirav Modi and a jewellery company alleging fraudulent transactions worth $1.77 billion, officials have said.
Summary:
Actor Diljit Dosanjh's look from the upcoming comedy film 'Arjun Patiala' has been revealed.
Summary:
Indian gymnast Dipa Karmakar, who finished fourth at Rio Olympics, has opted out of this year's Commonwealth Games to avoid any further risk to an injury she suffered last year.
Summary:
World number two badminton player Lee Chong Wei has denied featuring in a sex video which is being widely circulated.
Summary:
Australian cricket team captain Steve Smith will tie the knot with his fiancée Dani Willis in September this year.
Summary:
Twenty-three-time Olympic gold medallist Michael Phelps and wife Nicole became parents for the second time after the birth of their second son on Monday.
Summary:
Defending champions Mumbai Indians will face two-time champions Chennai Super Kings in the 2018 IPL opener in Mumbai on April 7.
Summary:
The UK government has announced the development of a new technology that can automatically detect terrorist content on online platforms.
Summary:
The Baha Mar resort in the Bahamas is looking to hire a 'Chief Flamingo Officer' to care for its flamingos.
Summary:
Congress MP Abhishek Singhvi on Wednesday said that suspended party leader Mani Shankar Aiyar has no right to speak on behalf of the party.
Summary:
The song, composed by singer Vishal Dadlani and written by AAP leader Dilip Pandey, highlights the achievements of the Arvind Kejriwal-led government in different sectors.
Summary:
Currently, advertisements can only be shown on the vehicles' exteriors.
Summary:
Two alert policemen foiled a robbery bid when they noticed a man opening an Axis bank ATM in Bengaluru's Kottigepalya during patrol duty on Tuesday morning.
Summary:
US-headquartered coding talent evaluation platform HackerRank has raised $30 million in Series C funding led by JMI Equity.
Summary:
The Union Health Ministry has passed a proposal that makes it mandatory for Indian students to clear National Eligibility cum Entrance Test (NEET) to obtain an eligibility certificate for applying to medical colleges abroad.
Summary:
They earlier had to wait long hours because the train would stop at the station in the evening, much after the school closed.
Summary:
The official teaser of Irrfan Khan starrer comedy film 'Blackmail' has been released.
Summary:
Summary:
Union Minister Uma Bharti on Wednesday claimed that former Prime Minister Jawaharlal Nehru had sought help from former RSS chief MS Golwalkar after Pakistan attacked Jammu and Kashmir following the Independence.
Summary:
Flagging off the 'Jal Mitti Rath Yatra' in Delhi, Union Home Minister Rajnath Singh on Wednesday said that the government wishes to transform India into a "vishwa guru".
Summary:
After reports claimed the RSS chief Mohan Bhagwat said the Sangh will take three days to prepare for war unlike the Army's six months, a Bihar man filed a case against him for insulting the Army.
Summary:
The Centre has proposed to allow premature closure of Public Provident Fund (PPF) accounts.
Summary:
Students from Andhra Pradesh's NIT on Tuesday threatened to commit suicide after the college administration expelled a senior student and suspended four others for allegedly assaulting and ragging a first-year student.
Summary:
A suspect has been arrested and authorities said that the situation is under control and there are no ongoing security or safety concerns, reports added.
Summary:
US President Donald Trump's lawyer Michael Cohen has claimed he paid over â¹83 lakh out of his own pocket for pornstar Stormy Daniels' silence on her alleged sexual affair with Trump.
Summary:
The country had declared a state of emergency ahead of the storm.
Summary:
The UN has urged people around the world to break up with plastics on Valentine's Day and for ending the use of mineral water bottles and straws, among other plastic products.
Summary:
Harvard University is offering a course called 'Cacaphonies: Toward an Excremental Poetics' for undergraduate students.
Summary:
An organisation named Karnataka Rakshana Vedike organised the wedding of a goat and sheep in Bengaluru in support of ValentineâÂÂs Day. The animals were garlanded with flowers and had their foreheads marked with turmeric for the ceremony.
Summary:
The World Bank has said that India needs to create more regular, salaried jobs with growing earnings rather than self-employment to become a middle-income country by 2047.
Summary:
Brad Garlinghouse, the CEO of the company behind world's third-largest cryptocurrency Ripple, has said that he expects most cryptocurrencies to eventually go to zero.
Summary:
Union Oil Minister Dharmendra Pradhan has said that excise duty and VAT on crude oil will be replaced with Goods and Services Tax (GST) in the coming one to two years.
Summary:
Punjab National Bank's market capitalisation fell by more than â¹3,800 crore on Wednesday after the bank detected fraudulent transactions worth over â¹11,300 crore at a Mumbai branch.
Summary:
Japanese crypto exchange Coincheck's users withdrew 40 billion yen (nearly â¹2,400 crore) on Tuesday after it allowed yen withdrawals for the first time since last month's hack.
Summary:
US magazine publisher Salon is requesting readers using ad blockers to mine cryptocurrency for an ad-free website.
Summary:
Reports claimed that the government plans to lay down a condition to prospective bidders that the airline's name should be retained after the disinvestment process.
Summary:
The project is a satirical comedy set in 2025 when commodities are too expensive and the world has become beyond repair.
"I have always wanted to explore satire.
Summary:
"Everyone knows that [I am shy]," he added.
Summary:
Kuldeep's 16 wickets are the most by a spinner in an ODI series in South Africa.
Summary:
Wishing a happy Valentine's Day, Mevani said several people had professed their love to him.
Summary:
Taking a dig at Maharashtra government for installing safety nets at Mantralaya after a series of suicides at the building, Shiv Sena said the government's "mind" had become "unstable".
Summary:
YouTube channel Shitty Ideas Trending (SIT) has released a video titled 'The Better Half', which deals with the 'pressures' that men undergo on the occasion of Valentine's Day. The video depicts the story of Rishi and how he juggles between his work and wife.
Summary:
Sabyasachi added, "I should have framed [my answer] as a call to stop shaming the sari."
Summary:
A prisoner who escaped from jail after swapping places with his twin brother has been captured after more than a year, the Peruvian Interior Ministry has stated.
Summary:
Virat Kohli registered his 37th win as India's ODI captain against South Africa on Tuesday, equalling the all-time win record after first 48 ODIs as captain.
Summary:
BJP leader and Supreme Court lawyer Ajay Agarwal on Wednesday filed a criminal complaint against suspended Congress leader Mani Shankar Aiyar, seeking his arrest for his remarks on Pakistan.
Summary:
During the first 24 hours after death, genetic changes occur across various human tissues and scientists have used that activity to pinpoint the time of death within nine minutes, according to a recent study in the journal Nature Communications.
Summary:
Wanted Indian Mujahideen terrorist Ariz Khan on Wednesday was arrested by the Special Cell of the Delhi Police.
Summary:
Summary:
On the occasion of Valentine's Day, Kannada leader Vatal Nagaraj on Wednesday said the central government should declare a one-day holiday for love.
Summary:
The rate of departure of the White House administration staff during US President Donald Trump's first year in office was higher than his five immediate predecessors, according to a recent study.
Summary:
Israeli police have said that they have "sufficient evidence" to indict PM Benjamin Netanyahu on criminal charges relating to bribes, fraud, and breach of trust.
Summary:
South Korea has said that North Korea's participation opened the door for peace on the Korean peninsula.
Summary:
US President Donald Trump has slammed India for high import tariffs on high-end motorcycles and threatened to impose a 'reciprocal tax' on motorcycles imported from India.
Summary:
Tata Steel and Wipro are the two Indian companies that have been named by US-based Ethisphere Institute in the list of World's Most Ethical Companies for 2018.
Summary:
The first poster of Salman Khan's brother-in-law Aayush Sharma's debut film 'Loveratri' has been released.
Summary:
Actress Taapsee Pannu took to Twitter to share a picture from the sets of her upcoming film 'Manmarziyan'.
Directed by Anurag Kashyap, 'Manmarziyan' is a love story set in Punjab and will also star actor Vicky Kaushal in the lead role.
Summary:
ICC added that Rabada's actions could have resulted in a reaction from Dhawan.
Summary:
India opener Rohit Sharma has said he did not celebrate his century against South Africa in the fifth ODI on Tuesday as he was involved in the run-outs of Virat Kohli and Ajinkya Rahane earlier in the innings.
Summary:
Preeti, a national level kabaddi player from Haryana, has alleged her parents locked her up for days when she refused to get married according to their wishes.
Summary:
Facebook has integrated a 'Protect' tab in the navigation menu which redirects users to the Facebook-owned 'Onavo Protect-VPN Security' app, which the social media platform had acquired in 2013 reportedly for $200 million.
Summary:
The site will have hotspots that will present virtual reality (VR) tours of the company's WhiteKnightTwo, VSS Unity and the Galactic team.
Summary:
Tim Cook, CEO of the world's most valuable company Apple has said, "I'm hoping to be alive to see the elimination of money." Cook's comment came while talking about the growth of mobile payments at the company's shareholder meeting.
Summary:
Bengaluru-based online car rental platform Drivezy has raised $5 million by offering its own cryptocurrency RentalCoins, its Chief Executive Officer Ashwarya Singh said.
Summary:
According to filings, the startup has already received $1.2 million and the remaining amount will come in tranches.
Summary:
Shanavi Ponnusamy, a transgender woman from Tamil Nadu's Thoothukudi, has sought President Ram Nath Kovind's permission for mercy killing after Air India refused to hire her as a cabin crew member.
Summary:
Summary:
The Japanese economy posted its longest period of growth since the 1980s boom, government data showed on Wednesday.
Summary:
The bank said the transactions were "for the benefit of a few select account holders with their apparent connivance".
Summary:
Sushma Swaraj became the first woman Chief Minister of Delhi when she assumed the office in 1998.
Summary:
Talking about the film, Sircar had earlier said, "It's an unconventional...story in the slice-of-life...romance space." 'October' is scheduled to release on April 13.
Summary:
Google sold 3.9 million Pixel phones in 2017, which is less than the weekly sales of iPhone devices in Q4 2017, where Apple sold 77.3 million units, according to IDC.
Summary:
American aviation startup Skydio has unveiled a self-flying camera drone called 'R1' that follows the user to shoot videos with its 4K camera.
Summary:
US-based Rice University researchers have used lasers to etch graphene onto materials like food, paper, and cloth.
Summary:
Japanese researchers have discovered evidence of a giant dome of lava growing under the Kikai supervolcano that erupted 7,300 years ago.
Summary:
After calibration, the rover will take pictures of Martian rocks and analyse them to look for chemicals that make the ingredients of life.
Summary:
The US National Intelligence's Director Daniel Coats has warned that Pakistan-supported terrorist groups would continue to carry out attacks in India, thus risking escalation of tensions between the two neighbours.
Summary:
Will check who has done this and why," party leader Aaditya Thackeray said.
Whatever those individuals announced as the party stand is not the SenaâÂÂs stand, another leader said.
Summary:
The hospital's security was able to find the thief through CCTV footage and traced him to Varanasi.
Summary:
As many as 13 Indian banks had successfully obtained the freeze order against the global assets of Mallya, stating that he owes over â¹9,800 crore to the banks.
Summary:
A farmer in Andhra Pradesh's Bandakindi Palle village has put up a poster of actress Sunny Leone 'to ward off evil eye' from his field.
The farmer said he thought of this idea as his crops had been attracting "unnecessary attention" of villagers and passersby.
Summary:
A woman in the United States won the $50,000 (â¹32 lakh) Powerball prize while giving birth to her first child.
Summary:
Summary:
Actor Anupam Kher, who is currently shooting for his 512th film 'Baa Baa Black Sheep', has said his competition is not with actors of his age but with actors from the younger generation.
Summary:
Actress Shraddha Kapoor's look from the upcoming film 'Batti Gul Meter Chalu' has been revealed.
Summary:
Talking about succession at a recent meeting, Apple's CEO Tim Cook said that "passing the baton" was one of his important roles as Executive Officer.
Summary:
China and US-based researchers have developed the first fully autonomous DNA robotic system that can shrink cancerous tumours by choking their blood supply.
Summary:
A 42-year-old labourer from Jharkhand cycled 600 km over 24 days to find his wife, who had gone missing from her parent's house.
Summary:
He also revealed that he was supposed to hand the children over for â¹500 each.
Summary:
PM Narendra Modi on Wednesday took to Twitter to wish External Affairs Minister Sushma Swaraj "long life and good health" on her birthday.
Summary:
Men should rather masturbate, than rape and murder," she added.
Summary:
The girl has alleged that her father and step-mother forced her to do household work instead of going to school.
Summary:
Thousands of people on Tuesday participated in the funeral procession of soldiers martyred in the Sunjuwan Army camp attack, in different parts of J&K.
Summary:
An auto-rickshaw driver in GujaratâÂÂs Rajkot has been arrested for allegedly robbing and murdering a 70-year-old woman and then raping and murdering a three-year-old girl in less than 24 hours.
Summary:
Social media major Facebook has reportedly started rolling out a feature that allows users to create customised lists such as 'My Travel Wishlist'.
Summary:
Meanwhile, Uber has said they have suspended the driver.
Summary:
The first-ever video posted on video-sharing platform YouTube featured Co-founder Jawed Karim at a zoo, talking about elephants.
And that's pretty much all there is to say," says Karim in the 18-second video.
Summary:
Valentine's Day is thought to have originated from an ancient Roman festival held in mid-February, wherein boys would draw the names of girls from an urn and they would become partners.
Summary:
Hollywood actor Pierce Brosnan, known for portraying the character 'James Bond', has been issued a show cause notice by Delhi government's Health Department for featuring in a pan masala advertisement.
Summary:
Pari, which is Anushka's third film as a producer, is scheduled to release on March 2.
Summary:
Yadav overtook Sri Lanka's Muttiah Muralitharan, who took 14 wickets in a tri-series in 1998.
Summary:
Nagaland BJP spokesperson James Vizo has said the party is planning to send senior Christian citizens on a free trip to Jerusalem if it comes to power.
Summary:
However, on showing dot patterns used to test 3D vision in humans, they reacted differently.
Summary:
Oxford University scientists have captured an image of a single positively charged strontium atom, held near-motionless by electric fields from metal electrodes two millimetres apart in a vacuum.
Summary:
Union Minister Dharmendra Pradhan on Tuesday said that Pakistan is a "chhutputiya (tiny)" country and Indian forces can give it an apt reply.
Summary:
BJP MLA Pooran Prakash's son and his supporters were caught on CCTV camera assaulting a toll plaza employee in the presence of the MLA himself.
Summary:
An Uttar Pradesh education department official has issued an order barring people from touching the feet of government servants, reports said.
Summary:
US President Donald Trump has announced to donate his 2017's fourth-quarter salary, amounting to $100,000 (around â¹64 lakh), to the Transportation Department to help address the country's infrastructure problems.
Summary:
The Netherlands' Foreign Minister Halbe Zijlstra has resigned a day after he admitted to lying about Russian President Vladimir Putin's plans to create a "Greater Russia".
Summary:
The US and UK have put forward a motion with Financial Action Task Force (FATF) to place Pakistan on a global terrorist-financing watchlist.
Summary:
The total cost of the recently unveiled presidential portraits of Barack and Michelle Obama and the unveiling event was over â¹3.2 crore.
Summary:
A man in US' Albuquerque has been gifting his wife dark chocolates in the same box from the same shop on Valentine's Day since 1979.
Summary:
A woman at a Chinese train station said she climbed onto the conveyor belt of an X-ray machine and travelled all the way to the other side to ensure her handbag would not get stolen.
Summary:
Actor-turned-politician Kamal Haasan, while speaking about joining politics, said he does not want to die merely as an actor.
Summary:
The release date of Sanjay Dutt starrer 'Saheb Biwi Aur Gangster 3' has been announced as July 27, two days before Dutt's birthday.
Summary:
Summary:
Google is planning to roll out an update for Gmail, enabling emails to feature continuously updating information.
Summary:
Virgin Group Founder Richard Branson has said, "The next big thing...
Summary:
Microsoft Co-founder Bill Gates in a recent interview said that big technology companies are inviting government intervention and need to be careful if they think their view is more important.
Summary:
Meanwhile, no injuries were reported and United Airlines released a statement saying that the plane landed safely.
Summary:
American cab-hailing startup Uber has narrowed its losses to $1.1 billion in the fourth quarter of 2017, from a loss of $1.46 billion in the previous quarter, according to reports.
Summary:
While the girl suffered injuries to her neck, the man also attacked three other men who came to her rescue.
Summary:
Have you heard about Alia's new found love?
Summary:
India claimed their first ever ODI series win in South Africa by taking an unassailable 4-1 lead in the six-match series at Port Elizabeth on Tuesday.
Summary:
However, the idea did not seem to catch on, following which it was opened up to all kinds of videos.
Summary:
American toymaker Mattel has unveiled the sequel of card game 'UNO' for the first time since it was invented in 1971.
Summary:
With their series victory against South Africa, India extended their bilateral ODI series winning streak to nine, which is the second-longest in history after Windies' 14 straight series wins.
Summary:
After Jammu and Kashmir CM Mehbooba Mufti claimed there is no alternative to talks with Pakistan, the BJP on Tuesday said it is not the right time as Pakistan is openly supporting militancy in the state.
Summary:
Addressing businessmen in Karnataka, Congress President Rahul Gandhi has claimed that decisions such as demonetisation were taken as the RSS had the power to influence the central government's policies.
Summary:
A Baptist church and a group of clerics in Nagaland have issued warnings to Christians and Muslims against voting for the BJP in the elections in the state and Tripura.
Summary:
Three men have been arrested by the Thane Police for raping a Class 10 girl and circulating the video online.
Summary:
West Bengal Chief Minister Mamata Banerjee has declared that the state will not provide financial support to the National Health Protection Scheme, or 'ModiCare'.
Summary:
The bench was hearing a petition against the Delhi High Court's acquittal of all accused in the Bofors scam.
Summary:
Attending a literature festival in Pakistan's Karachi, suspended Congress leader Mani Shankar Aiyar on Tuesday said that the hatred he receives in India surpasses the love he receives from the citizens of Pakistan.
Summary:
Remington Outdoor, the 202-year-old US gunmaker, has said it would file for bankruptcy protection amid declining sales.
Summary:
Summary:
After complaining about being harassed by a businessman, actress Amala Paul claimed that he was a member of an organised sex racket.
Summary:
Summary:
England's Chris Jordan pulled off a one-handed catch inches away from boundary rope to dismiss New Zealand's Colin de Grandhomme during the teams' T20I match on Tuesday.
Summary:
Veteran Indian all-rounder Yuvraj Singh has said that once he retires from cricket he would want to be known as someone who never gave up.
I am still playing because I am enjoying playing cricket," he added.
Summary:
Addressing businessmen and professionals in Karnataka, Congress President Rahul Gandhi on Tuesday said every ministry in the government has an officer on special duty (OSD) from RSS.
Summary:
Summary:
Difficulty in learning English, cost of extracurricular activities are among the main reasons why students belonging to the Economically Weaker Sections (EWS) and Disadvantaged Groups (DG) drop out of private schools in Delhi, a survey has revealed.
Summary:
The Mumbai Police has detained three people for allegedly beating up a taxi driver to death on Monday after his taxi accidentally brushed past the accused's scooter and the driver almost fell off.
Summary:
Congress corporator Sandeep Sahare has asked the Nagpur Municipal Corporation (NMC) to give unemployed youth commercial space within the city to sell pakodas.
Summary:
However, the SC had earlier said nothing was private in courts, adding that the CCTVs will be installed in "larger public interest".
Summary:
The Maharashtra Education Department has decided to buy 1.5 lakh books on PM Narendra Modi's life as supplementary reading for government school students.
Summary:
Apart from the granules, three gold bars weighing nearly 350 grams were also seized, officials added.
Summary:
South Africa on Tuesday declared the drought which has struck several parts of the country a "national disaster" after reassessing its magnitude and severity.
Summary:
In 2017, the ministry cleared â¹40,000 crore to replace ageing weapons under one of its biggest procurement plans.
Summary:
India opener Rohit Sharma slammed four sixes against South Africa in the fifth ODI on Tuesday to take his sixes tally in international cricket to 265, the second-most by an Indian player.
Summary:
In an interview, YouTube CEO Susan Wojcicki suggested Facebook "should get back to baby pictures and sharing".
Summary:
A British Antarctic Survey-led team will investigate a marine ecosystem hidden for up to 120,000 years beneath the Larsen C Ice Shelf, which lost a trillion-tonne iceberg last year.
Summary:
This comes after Defence Minister Nirmala Sitharaman said Pakistan will pay for the misadventure at the Sunjwan Army camp in which five jawans were martyred.
Summary:
"Junaid was killed by Hindu communalists just for being a Muslim," Ramanunni said.
Summary:
After the budget was presented in the Rajasthan Assembly on Monday, Chief Minister Vasundhara Raje said that there is no guarantee of fulfilling the budget announcements, reports said.
Summary:
Notably, the Cobalt Strike security tool is used to test the strength of an organisation's cyber defences.
Summary:
Notably, large mining companies have come to Iceland due to its abundance of renewable energy.
Summary:
The license will allow Regal to store cryptocurrencies in a vault located in the headquarters of Dubai Multi Commodities Centre.
Summary:
The Chairman of South Korean conglomerate Lotte Group, Shin Dong-bin, has been sentenced to 30 months in jail for bribery.
Summary:
According to reports, actor Ranveer Singh has turned down an offer of â¹2 crore to make an appearance at a wedding.
Summary:
Talking about the success of his film 'Padmaavat', filmmaker Sanjay Leela Bhansali said, "The fate of (the film) was never in our hands, or in the hands of those who wanted to stop it." He also questioned who decides what the audience should see and like.
Summary:
Actress Aishwarya Rai Bachchan's look from the upcoming film 'Fanne Khan' has been revealed by the film's producers.
Summary:
Actor Dhanush will reportedly be playing the role of Arunachalam Muruganantham, the inventor of the low-cost sanitary pad-making machine, in the Tamil remake of Akshay Kumar's 'Pad Man'.
Summary:
A US woman has said that one day she fell asleep after a severe headache and woke up with a British accent which has now stayed with her for the past two years.
Summary:
The Indian women's cricket team chased down the target of 165 against South Africa at Potchefstroom in the first T20I on Tuesday to register their highest-ever successful and the overall second-highest run chase in women's T20I cricket.
Summary:
Days after launching his 'Samvidhan Bachao Nyaya Yatra', RJD leader Tejashwi Yadav has claimed that Bihar CM Nitish Kumar threatened to stop giving advertisements to media houses if they covered the events he organised.
Summary:
Stating that five of the seven people killed in the terror attack on Jammu and Kashmir's Sunjwan Military camp were Kashmiri Muslims, AIMIM chief Asaduddin Owaisi on Tuesday questioned RSS' silence on the issue.
Summary:
Recently, the government withdrew 70 cases filed during the 2016 Jat agitation.
Summary:
The Supreme Court on Tuesday said that the Delhi Noida Direct (DND) flyway will remain toll free as of now and postponed the hearing on the issue by six weeks.
Summary:
Delhi High Court has acquitted two men who were convicted by a trial court earlier for killing a man in a busy market.
Summary:
The accused, who had fired from the jawan's licensed rifle, has been arrested over the incident.
Summary:
A 38-year-old US woman has died from flu complications after deciding not to take the medicine to treat the virus as it was too expensive, her husband has said.
Summary:
Criticising the way Donald Trump conducts himself on social media, Melinda Gates said she wishes the US President would treat people, especially women, with more respect when he speaks and tweets.
Summary:
China on Monday denied the allegation by former Maldives President Mohamed Nasheed that it is attempting to grab land in the island nation amid the ongoing political crisis.
Summary:
Turkey has trolled the US by renaming a street on which the US Embassy is situated after its Syria operation against the Kurdish militia.
Summary:
Malayalam actress Priya Prakash Varrier beat Sunny Leone to become the most searched celebrity in India on Google today after her clip from the song 'Manikya Malaraya Poovi' went viral.
Summary:
The ton was also Rohit's first in ODIs in South Africa, with his previous highest ODI score in the country being 23.
Summary:
In a first, a European team has used a portable optical atomic clock, initially restricted to laboratories, to measure gravity potential.
Summary:
The buffalo racing sport Kambala will continue to take place in Karnataka this year after the Supreme Court refused a plea seeking an interim stay on the practice.
Summary:
Two Lashkar-e-Taiba militants who had attempted to attack a CRPF camp in Srinagar's Karan Nagar were killed by security personnel after a 30-hour gun battle on Tuesday.
Summary:
Defending his coin toss to decide on the postings of two lecturers, Punjab Technical Education Minister CS Channi has claimed he ended the practice of selling postings at desired institutions to lecturers.
Summary:
A US judge has awarded 21 graffiti artists over â¹43 crore after buildings displaying their work were whitewashed by the owner.
Summary:
The West used lizards which could "attract atomic waves" to spy on Iran's nuclear programme, military officials said.
Summary:
The German Parliament's Defence Committee has urged the Navy to stop deploying warships overseas, saying that the country does not have enough ships.
Summary:
There is a Modern Toilet Restaurant in Taiwan where the decorations include shower heads and poop-shaped lights.
Summary:
The government had said it will take all measures to eliminate use of cryptocurrencies in illegitimate activities but did not declare them illegal.
Summary:
"I saw his latest film 'Padmaavat' and fell in love.
The 18-year-old actress will make her acting debut in the Malayalam film 'Oru Adaar Love'.
Summary:
Summary:
Actor Riteish Deshmukh took to Twitter to share a video in which he and his wife Genelia D'Souza can be seen imitating a scene from Shah Rukh Khan and Kajol starrer 1998 film 'Kuch Kuch Hota Hai'.
Summary:
Overall, it was Pandya's fifth duck in international cricket.
Summary:
Twenty-seven-time German champions Bayern Munich will offer their fans an experience to watch football from executive hotel suites, which will be built inside the stadium overlooking the pitch.
Summary:
English football club Hull City's midfielder Ryan Mason has announced his retirement from football at the age of 26, a year after fracturing his skull during a Premier League match against Chelsea.
Summary:
American e-commerce giant Amazon is laying off hundreds of employees at its Seattle headquarters, according to reports.
Summary:
Meanwhile, it recently grounded three A320 Neo aircraft over engine issues.
Summary:
We love you...& wish you well." This comes after she was mocked by PM Narendra Modi for laughing.
We all will have the last laugh.
Summary:
President Ram Nath Kovind on Tuesday paid tribute to Sarojini Naidu, dubbed as 'the Nightingale of India', on her 139th birth anniversary.
Summary:
Presenting the budget for Rajasthan, Chief Minister Vasundhara Raje on Monday announced that the state government will recruit 1.08 lakh youths before December.
Summary:
A 'gender park' open exclusively to women and children will be set up in Kerala's Kottayam.
Summary:
The Delhi High Court today upheld its earlier order accepting Delhi airport operator DIAL's decision to partially shift Indigo and SpiceJet's operations from Terminal 1 (T1) to Terminal 2 (T2).
Summary:
A 25-year-old woman was allegedly gangraped by three men on Saturday in Greater Noida on the day she started working as a domestic help, the police said.
Summary:
Diesel consumption gained 14.5% to 6.65 million tons, while petrol consumption rose 15.6% to 2.09 million tons.
Summary:
The Lucknow University has issued a notice telling students to avoid the campus on Valentine's Day and warned that students found loitering on campus will "face consequences".
Summary:
The US government, with the world's highest spending, can function for 5 days with the wealth of world's richest person Jeff Bezos.
Summary:
At least 50 people were cheated of â¹9.11 lakh after fraudsters allegedly fitted skimming devices at a Mumbai ATM to clone their cards.
Summary:
Former Australian spinner Shane Warne, who led Rajasthan Royals to the IPL title in the inaugural edition in 2008, has been appointed as the team's mentor for this season.
Summary:
It is the first-ever unified Korean team to compete at the Olympics.
Summary:
Talking about YouTube's policy on terminating user accounts at a recent interview, the platform's CEO Susan Wojcicki said, "We do have a three strikes rule." Adding that the company makes sure to be consistent, she stated that they do terminate accounts all the time.
Summary:
McIntyre was at the centre of highly confidential and competitively sensitive information, IBM added.
Summary:
The boy was tied to the tree by his mother and elder brother as a punishment for bunking school, police said.
Summary:
Indian freedom fighter Sarojini Naidu became the first female Governor of a state in independent India when she was appointed as Governor of United Provinces, now Uttar Pradesh, in 1947.
Summary:
The lawsuit will demand Coincheck to allow withdrawals of cryptocurrencies to wallets outside the exchange.
Summary:
Cryptocurrency startup LoopX has pulled an exit scam after raising nearly â¹29 crore in a series of five Initial Coin Offerings (ICO).
Summary:
Speaking about her experience of recording a Hindi song, Salman Khan's rumoured girlfriend Iulia Vantur said, "People really enjoy it when a foreigner sings [in Hindi] but they should be able to understand it." "I was concentrating on the feel and tune of the song," she added.
Summary:
India's lone individual Olympic gold medalist Abhinav Bindra's Twitter account was hacked on Monday reportedly by a Turkish group, which posted pro-Turkish military messages on his handle.
Summary:
In an interview, YouTube CEO Susan Wojcicki said, "what you think is tasteless is not necessarily what someone else would think is tasteless." Wojcicki was asked why YouTuber Logan Paul's channel was not deleted after he posted videos of alleged suicide victim and a dead rat being tasered.
Summary:
Photo-sharing app Snapchat's parent firm Snap has announced that its Global Head of Sales Jeff Lucas has quit the company.
Summary:
Facebook lost about 2.8 million users under the age of 25 in the US, according to research firm eMarketer.
Summary:
An investigation was launched to ascertain how she re-entered the terminal.
Summary:
Former executive of Uber, Travis VanderZanden's e-scooter startup Bird has raised $15 million from investors including Tusk Ventures.
Summary:
The first known interstellar object to visit the Solar System had a "violent past", causing it to tumble or spin chaotically possibly for many billions of years, a recent study has discovered.
Summary:
An international study has traced back the existence of cockroaches to 300 million years ago, predating the separation of Pangaea, one of the most recent supercontinents to have existed, into the existent continents.
Summary:
The government is considering changes in criminal law to allow for the confiscation of the property of NRI men for deserting their wives and not responding to repeated notices issued to them.
Summary:
The Uttar Pradesh Pollution Control Board (UPPCB) has started issuing notices to Noida housing complexes where large generator sets are operational in violation of rules, leading to air pollution.
Summary:
A 13-year-old girl's hair was cut as part of a 'purification ritual' by people in her community in Chhattisgarh's Kawardha after she was allegedly molested by a man.
Summary:
The posting was for Mechanical Lecturers in the state's technical education institutions, reports said.
Summary:
A tenant of a family in Delhi allegedly murdered their son and hid his body inside a suitcase for over a month.
Summary:
The government on Tuesday hiked ticket prices for visiting Taj Mahal to â¹50 from â¹40 to "preserve Taj Mahal for the generations to come".
Summary:
Chinese Consul General in Kolkata Ma Zhanwu has said that many companies from China are prepared to invest in India, and the number would increase in the coming days.
Summary:
After Australia and Windies declined to visit Sri Lanka for their 1996 World Cup league matches citing security reasons, India and Pakistan fielded a combined team for an unofficial match against the Lankan team in Colombo on February 13, 1996.
Summary:
Indian poet and freedom fighter Sarojini Naidu was arrested during the Quit India movement and was jailed in 1942 with Mahatma Gandhi.
Summary:
Meanwhile, South Africa have lost 23 out of the 62 international matches they played at the ground.
Summary:
Some of the reviews included "unbeatable smart phone of the year", and a device that "puts Samsung to shame."
Summary:
Android Co-founder Andy Rubin's smartphone manufacturing startup Essential shipped only 88,000 phones in six months since its launch, according to research firm IDC.
Summary:
Bihar CM Nitish Kumar has said he knew from the beginning that his Grand Alliance with RJD and Congress "wouldn't last for more than a year and a half." "I still managed to carry on for 20 months," he added.
Summary:
The new feature will fully block the use of the driver app for accepting trips during the break time.
Summary:
Presenting the state budget in the Rajasthan Assembly on Monday, Chief Minister Vasundhara Raje announced a one-time farm loan waiver of up to â¹50,000 for small and marginal farmers.
Summary:
The Centre is mulling over a proposal to purchase over 17,000 light machine guns (LMGs) and 6,500 sniper rifles for the armed forces.
Summary:
At least five people have been killed and 11 others injured in an explosion inside an under-maintenance Oil and Natural Gas Corporation (ONGC) ship at Cochin Shipyard in Kerala on Tuesday.
Summary:
North Korean leader Kim Jong-un on Tuesday thanked South Korea and called its hospitality impressive as his sister Kim Yo-jong and other top regime officials returned from their visit to the 2018 Winter Olympics.
Summary:
Summary:
Employees of markets regulator SEBI have reportedly written to the Finance Ministry opposing the transfer of surplus funds to the government.
Summary:
She will reportedly play actor Irrfan Khan's teenage daughter in the sequel.
Summary:
"They ate his body, nearly all of it, and just left his head and some remains," the police added.
Summary:
English midfielder Adam Lallana, who plays for Liverpool, posted a picture of his feet on Instagram and asked for suggestions on how to defrost them.
Summary:
Cryptocurrency mining websites have been hijacking Android phones to mine cryptocurrency Monero, according to cybersecurity firm MalwareBytes.
Summary:
They come to Facebook for friends and family." Brown also said that publishers should feel free to leave Facebook if they feel the platform isn't working for them.
Summary:
A drunk passenger locked himself in the washroom for about an hour at the Delhi airport earlier this month, it has emerged.
Summary:
Founded in 2012, Instacart is an app-based startup that allows customers to order groceries and get them delivered.
Summary:
Mumbai-based diamond manufacturer Laxmi Diamond's Director Ashok Kumar Gajera has invested â¹2 crore ($311,200) in foodtech startup Holachef.
Summary:
Their friend, who was shooting the video, said they were shooting at the tracks to make it realistic.
Summary:
Lutyens' Delhi has lost the maximum forest cover out of all districts in Delhi in the past two years, the India State of Forest Report 2017 has revealed.
Summary:
The Delhi University (DU) has written to all colleges affiliated with it, asking them to hold elections on March 12 for the constitution of internal complaints committee.
Summary:
Rwanda's media watchdog has ordered a three-month shutdown of an American-owned radio station for calling women dangerous, evil and against the plans of God. The January 29 broadcast had sparked outrage and prompted complaints from the National Women's Association and the Women's Journalist Association.
Summary:
International Monetary Fund (IMF) Managing Director Christine Lagarde has stated that regulatory action on cryptocurrencies is "inevitable".
Summary:
As many as 14 worms were removed from Abby Beckley's left eye in August 2016 after she felt an itching sensation in it for over a week.
Each worm was less than half an inch long.
Summary:
Naidu is followed by Arunachal Pradesh CM Pema Khandu with assets worth over â¹129 crore and Punjab's Amarinder Singh with â¹48 crore.
Summary:
The six-time world champion was leading after three runs and needed only 47.843 seconds to win gold.
Summary:
The all-electric robot can also handle objects and climbs stairs.
Summary:
The name for 'Android P', which is expected to launch this year, follows Google's tradition of dessert-themed names for its operating systems.
Summary:
Karnataka BJP chief BS Yeddyurappa slammed Congress President Rahul Gandhi for reportedly visiting a temple after eating "Javari chicken".
He also hit out at CM Siddaramaiah who had last year visited Dharmasthala Manjunatha after eating fish.
Summary:
Police have arrested four men for allegedly molesting a South Korean woman and assaulting her male friend in Haryana's Manesar.
Summary:
Speaking at a function in Karachi, Congress leader Mani Shankar Aiyar said that he loves Pakistan because he loves India and that India should "love thy neighbour as thyself".
Summary:
The court was hearing a plea seeking ban on convicted politicians from heading political parties.
Summary:
Defence Minister Nirmala Sitharaman on Monday said that construction of civilian houses adjacent to the boundary wall of Army camps is a problem across the country.
Summary:
A woman in a Bihar village built a toilet with money she collected through begging, after block level officials ignored her request for funds, reports said.
Summary:
The World Bank-funded Mumbai Urban Transport Project (MUTP) 2, which aimed to decongest Mumbai's suburban railway network, has failed to yield the desired results after six years, a World Bank report has revealed.
Summary:
The Smithsonian's National Portrait Gallery on Monday unveiled the presidential portraits of former US President Barack Obama and former First Lady Michelle Obama.
Summary:
Designer Sabyasachi Mukherjee has been slammed for shaming Indian women who don't know how to wear a saree.
"Sabyasachi telling Indian women how to wear a saree is a classic example of MANSPLAINING," a user commented.
Summary:
In the last update on Saturday, the police said there would be no more statements till the suspect pooped.
Summary:
Kashyap further said, "I love the emotion of love.
Even at 90, I'll be in love."
Summary:
The Under-15 players of football club Aizawl FC, whose senior team is the reigning champion of India's I-League, were forced to sit near the toilet of a train as the club failed to procure confirmed tickets.
Summary:
The first doping case of the Winter Olympics 2018 was found after Japanese short-track speed skater Kei Saito tested positive for a banned substance in Pyeongchang.
Summary:
An MIT team has developed a system called 'NanoMap' that allows drones to fly through dense surroundings such as forests and warehouses.
Summary:
The FBI has accused Robin Ducore of touching a man's head "in a flirtatious manner" and attacking a flight attendant.
Summary:
Congress has alleged that CPI(M) workers carried out the attack which also left two other party workers injured.
Summary:
Summary:
A 50-year-old man slapped a traffic policeman for slapping him while towing his two-wheeler in Maharashtra's Thane district.
Summary:
Anti-Valentine's Day posters with messages like 'Say no to Valentine's Day' and 'Love Jihad: Hindu girls beware' have been put up in Gujarat's Ahmedabad by Bajrang Dal. The group also threatened several clubs and pubs in Hyderabad to not host any special event to celebrate the day.
Summary:
Guards at a Jammu and Kashmir Army camp in Domana area averted a terror attack after they opened fire at two motorcycle-borne militants approaching the camp.
Summary:
Information and Broadcasting Minister Smriti Irani has said the timing is right for the launch of an Indian news channel in the international market but added that no decision has been taken yet.
Summary:
US President Donald Trump's daughter-in-law Vanessa Trump was hospitalised on Monday after she opened a letter containing an unidentified white powder that was sent to the family home.
Summary:
Pakistan's President Mamnoon Hussain has signed an ordinance amending the country's Anti-Terrorism Act to list groups sanctioned by the United Nations Security Council as terrorist organisations.
Summary:
Of the 31 chief ministers of Indian states and union territories, over 35% have declared criminal cases against them, an Association for Democratic Reforms report has claimed.
Summary:
The film is reportedly centred around the Make in India campaign launched by the government.
Summary:
Late singer Nusrat Fateh Ali Khan's song 'Sanu Ek Pal Chain Na Aawe' has been recreated for the upcoming film 'Raid', which stars Ajay Devgn and Ileana D'Cruz.
Summary:
Google is reportedly planning to add iPhone X-like 'notch' to its smartphones for the next version of Android.
Summary:
There have been four suicide attempts in and around the secretariat building since January, resulting in the death of three.
Summary:
The Board admires the Opposition's stand to stall the bill in the Rajya Sabha, he further said.
Summary:
The Punjab Police has started a new campaign in which senior superintendents of police will personally visit singers in their areas and request them to not glorify liquor, arms and drugs in their work.
Summary:
Stating that experts predicted bad weather for the next five days, Madhya Pradesh BJP leader Ramesh Saxena has advised farmers to chant Hanuman Chalisa for an hour every day to protect their crops from hailstorms and heavy rainfall.
Summary:
The retail inflation had hit a 17-month high of 5.21% in December last year.
Summary:
South Africa's ruling African National Congress on Monday night gave President Jacob Zuma 48 hours to resign as head of state after an eight-hour meeting of the party's top leadership.
Summary:
The plan includes $18 billion over two years to build US' border wall with Mexico.
Summary:
He added that Baghdadi is being treated at a medical facility in Syria.
Summary:
Several parades mocking world leaders including US President Donald Trump, German Chancellor Angela Merkel and North Korean leader Kim Jong-un, among others, were organised as part of Germany's Rose Monday carnival.
Summary:
Bank of Baroda will reportedly exit the South African market amid allegations that politically connected Gupta family used its network for illicit transactions.
Summary:
A couple who used a fake garage door and a high fence to hide a small home from a council in England has been fined over ã2,000 (â¹1.8 lakh).
Summary:
Following this, she was able to track down the owner of the dress.
Summary:
The central bank's audit also showed the biggest private lender HDFC Bank had a bad loan divergence of over â¹2,000 crore in FY17.
Summary:
A UK court has ordered absconding liquor baron Vijay Mallya's Kingfisher Airlines to pay $90 million in claims to Singapore-based aircraft leasing company BOC Aviation.
Summary:
Mallika Sherawat took to Twitter to request Minister of External Affairs Sushma Swaraj to help in facilitating a visa to India for Evelien Hölsken, Co-founder of Dutch NGO Free a Girl.
Summary:
Actress Jacqueline Fernandez, while addressing rumours that she is dating Sidharth Malhotra, said, "I'm not a 12-year-old who has to hide her relationships." "I'm a grown-up girl.
Jacqueline further said, "Sid will always remain a close friend."
Summary:
India fielding coach R Sridhar has said MS Dhoni's wicketkeeping style should be researched.
Summary:
Delhi Chief Minister Arvind Kejriwal on Monday met 2018 Under-19 World Cup final centurion Manjot Kalra and congratulated him on the World Cup victory.
Summary:
Gowda had also said it was a mistake "grooming" Siddaramaiah.
Summary:
The Congress on Monday posted a video on Twitter with alleged examples of misogyny by PM Narendra Modi and other BJP leaders.
Summary:
With this, a total of 195 candidates are now contesting elections.
Summary:
The student was beaten to death with a hockey stick and bricks following an argument.
Summary:
Airlines denying boarding to passengers with confirmed tickets due to overbooking must pay a compensation for deficiency of service, aviation regulator DGCA has said.
Summary:
World's first robot ski competition was held in South Korea in which self-operational humanoid skiers with two legs participated wearing skis.
Summary:
Biathlon, a Nordic winter sport, which is also a part of the ongoing Winter Olympics, is a mix of cross country skiing and precision rifle target shooting.
Summary:
Zimbabwe defeated Afghanistan by 154 runs in the second ODI after scoring 333/5 in 50 overs on Sunday.
Summary:
A German court has ruled that social media platform Facebook's failure to tell people it was collecting their data for advertising was illegal.
Summary:
Islamic seminary Darul Uloom Deoband has issued a fatwa against women taking help from male shopkeepers to wear bangles, calling it a "wrong and a big sin".
Summary:
Calling the All India Muslim Personal Law Board (AIMPLB) a "branch of terrorist organisation", Uttar Pradesh Shia Waqf Board Chairman Waseem Rizvi said the board should be banned.
Summary:
CRPF jawan Raghunath Ghait has prevented a suicide attack at a CRPF camp in Srinagar's Karan Nagar by opening fire at two approaching militants.
Summary:
Iraq's reconstruction after three years of war against ISIS will cost $88.2 billion (over â¹5 lakh crore), the Planning Ministry has said.
Summary:
Indonesia's Finance Minister Sri Mulyani Indrawati on Sunday won the 'Best Minister in the World' award at the World Government Summit in Dubai.
Summary:
The Pakistani Taliban on Monday confirmed the death of its deputy leader Khalid Mehsud in a US drone strike last week.
Summary:
A Traffic Collision Avoidance System (TCAS) is designed to prevent mid-air collisions between planes.
Summary:
A 26-year-old Gurugram resident who last year gifted five women iPhone 7s for being his dates on Valentine's Day is offering "boyfriend on rent" services this year.
Summary:
Karan Johar has said he is not taken as seriously as Sanjay Leela Bhansali or Rajkumar Hirani because they're intense filmmakers, who do their work and nothing else.
Summary:
Summary:
Summary:
Summary:
'Nain Phisal Gaye', a new song featuring Salman Khan with Sonakshi Sinha from the upcoming film 'Welcome To New York', has been released.
Summary:
Short-track speed skater Semen Elistratov, who became the first athlete from Russia to win a medal at the 2018 PyeongChang Winter Olympics, dedicated his bronze to his "unfairly" banned compatriots.
Summary:
Qantas airline allegedly left out the luggage of onboard passengers and instead loaded the cricketing gear of the English cricketers who were not even on the flight travelling from Sydney to Wellington on Sunday.
Summary:
Steve Smith on Monday won the Allan Border Medal, the highest honour for an Australian male cricketer, for the second time.
Summary:
"I promise to sew myself in for the individual event," Min tweeted after the event.
Summary:
Once users make a voice call to their contacts, an icon appears at the centre for switching to a video call.
Summary:
However, the company has made no comment regarding when it plans to roll out the feature.
Summary:
Congress President Rahul Gandhi's convoy was stopped and shown black flags by a group of people on his arrival at Karnataka's Sindhanur on Sunday.
Summary:
An unidentified man set an ATM on fire in Hyderabad on Sunday and left behind a 17-page letter on the various problems faced by society.
Summary:
Model Gigi Hadid, while slamming body shamers for calling her "too skinny", revealed her body has changed as she suffers from Hashimoto's disease, which causes hormonal imbalance.
Summary:
Talking about the terrorist attack on the Sunjwan Army camp in Jammu which killed five jawans, Defence Minister Nirmala Sitharaman on Monday said Pakistan will pay for this "misadventure".
Summary:
Pune-based extreme sportsperson Shital Mahajan-Rane has become the first Indian to skydive wearing a 'Nav-wari sari'.
Summary:
The Rajasthan government has announced a â¹25 lakh award for Indian pacer Kamlesh Nagarkoti, who clocked a bowling speed of 149 kmph at the recently concluded U-19 World Cup. Nagarkoti, who took nine wickets in the World Cup, was India's joint second-highest wicket-taker in the tournament.
Summary:
Canada's Mark McMorris won the bronze medal in men's snowboard slopestyle event at the PyeongChang Winter Olympics on Sunday, 11 months after being involved in a near-fatal accident.
Summary:
The event involves participants, divided into noblemen and commoners, throwing oranges at each other in a reenactment of a rebellion against tyrannical lords who ruled Ivrea in the Middle Ages.
Summary:
During a discussion on the Sunjuwan Army camp attack which killed 5 jawans, National Conference MLA Mohammad Akbar Lone on Saturday raised 'Pakistan Zindabad' slogans in the J&K Assembly.
Summary:
Union Minister and BJP leader Uma Bharti has announced that she will not be contesting elections in the future due to health reasons.
Summary:
Meanwhile, the VHP and Bajrang Dal have demanded a ban on Valentine's Day and also campaigned against 'love jihad'.
Summary:
Further, it recently expelled a member after he met Sri Sri Ravi Shankar for a possible settlement and suggested shifting the Babri Masjid.
Summary:
Clarifying its chief Mohan Bhagwat's remarks, the RSS said he meant that the Army can prepare RSS volunteers for war in three days, while it would take six months to train the general population.
Summary:
Listing the qualities of gay men, the daily said that they go to the gym to look at men and wear branded clothes.
Summary:
Last year, Duterte told troops that they were allowed to rape up to three women.
Summary:
Pakistan President Mamnoon Hussain on Monday signed an ordinance aimed at a crackdown on terrorist organisations and individuals banned by the UN Security Council.
Summary:
Cricketer Virat Kohli and wife actress Anushka Sharma will not appear together on season 6 of Karan Johar's talk show 'Koffee With Karan', as confirmed by their spokesperson.
Summary:
Summary:
Actor Ranveer Singh has said that he would have been a different person had he not been an actor.
Summary:
Talking about his directorial 'My Name Is Khan', which completed eight years of its release, Karan Johar said, "A film that will always remain hugely special to me...
Summary:
"Here is something more haunting than your #MondayBlues," tweeted Anushka while sharing the poster.
Summary:
The incident occured when the security guards and people at the venue got into a scuffle.
Summary:
Pictures of actor Hrithik Roshan from the sets of the upcoming film 'Super 30' have emerged online.
Summary:
South Africa's Pakistan-born cricketer Imran Tahir has released a statement alleging racial abuse by a spectator wearing an Indian jersey during the Pink ODI against India on Saturday.
Summary:
Indian football club Bengaluru FC has defied a government advisory and travelled to the Maldives to play an AFC Cup match on February 13.
Summary:
A man who allegedly sprinted across a US airport's runway after scaling a fence and removed a fire extinguisher from the wheel well of an aircraft moments before takeoff was arrested.
Summary:
A couple sold their possessions to sail the world but their boat capsized two days into their journey.
Summary:
A 27-year-old gay nanotechnology researcher in Bhopal committed suicide allegedly to save his 'soulmate', a man Goddess Kali told him he would meet soon.
Summary:
However, the school denied racial discrimination, saying it takes "safeguarding of all pupils very seriously".
Summary:
Summary:
A Delhi University student has lodged an FIR against a man for allegedly masturbating while sitting next to her on a moving bus and repeatedly trying to touch her waist.
Summary:
The 16th US President, Abraham Lincoln, stored important documents inside the crowns of his hats.
Summary:
Another user wrote, "Expressions given by Priya...in those 2 minutes were more than what Nargis Fakhri, Katrina...couldn't give in their entire career." Comedian Zakir Khan tweeted, "#KeepCalm&BeSakht."
Summary:
Anupam Kher will be part of an American TV show 'Bellevue', where he will be playing the character of 'Dr Anil Kapoor'.
gives me (an) opportunity to be a part of world class talent," added Anupam.
Summary:
The ISS is currently operated by Boeing on behalf of US space agency NASA.
Summary:
As many as 20 girls between 6 and 15 years of age have alleged that two nuns at a convent they stayed at in Kerala beat them, forced them to eat stale food, and verbally abused them.
Summary:
The Supreme Court on Monday stayed the FIR against Major Aditya Kumar in the Shopian firing case, in which three civilians were killed and nine others were injured in J&K.
Summary:
The Union Cabinet has cleared the proposal allowing direct admissions to PhD programmes in IITs and IISc under the Prime Minister Research Fellowship scheme.
Summary:
Prime Minister Narendra Modi on Monday visited a 125-year-old Shiva Temple and the Sultan Qaboos Grand Mosque, which is made of 3 lakh tonnes of Indian sandstone, in Oman's capital Muscat.
Summary:
Further, one CRPF jawan was killed on Monday in the Karan Nagar attack, which the Army foiled.
Summary:
The Centre has drafted a plan to check the flow of sewer water into the river Ganga by installing sewage treatment plants (STP) in 10 major cities.
Summary:
Toronto-based Alexis Fraser calls the practice "kiss print pointillism" and reportedly goes through several tubes of lipstick for one painting.
Summary:
Italian cryptocurrency exchange BitGrail has lost cryptocurrency tokens worth about $170 million through "unauthorized transactions".
Summary:
A contest is being hosted to offer fans a chance to launch the trailer of the film 'Baaghi 2' with its lead stars Tiger Shroff and Disha Patani.
Summary:
Paul, who earlier posted a video of an apparent suicide victim, recently filmed himself operating a taser on a rat.
Summary:
Seven of the 10 foreigners who were arrested on pornography charges last month after a party in Cambodia's Siem Reap have been deported.
Summary:
This is the biggest governance failure in the history of India, Mishra claimed.
Summary:
Flipkart has been asked to deposit about â¹55 crore as tax and â¹55 crore as bank guarantee by February 28.
Summary:
Ola's parent ANI Technologies is reportedly planning to invest â¹400 crore ($62.2 million) in Foodpanda India after acquiring the food delivery platform for over â¹200 crore ($31.7 million) in December.
Summary:
Gujarat-based fintech startup Lendingkart has raised over $87 million in an equity funding round as part of its Series C round.
Summary:
The Bajrang Dal on Sunday warned some pubs and clubs in Hyderabad against hosting any special events to celebrate ValentineâÂÂs Day, which it described as against Indian culture.
Summary:
National Commission for Minorities Chairman Syed Ghayorul Hasan Rizvi on Monday urged Muslims to give up Babri Masjid and the disputed land in Ayodhya to Hindus for the construction of Ram Mandir.
Summary:
A 26-year-old law student was allegedly beaten to death by some men outside an eatery in Allahabad after getting into a verbal argument with them.
Summary:
The family, which adopted the boy when he was 12 years old, raised him as a Hindu and he said he grew up celebrating all the Hindu festivals.
Summary:
Speaking at the World Government Summit in Dubai, Prime Minister Narendra Modi on Sunday said that India's leap in World Bank's Ease of Doing Business Rankings from 142 to 100 is "unprecedented".
Summary:
The event organisers said the run was aimed at helping women embrace fitness in any outfit they feel comfortable in.
Summary:
Chief Minister Shivraj Singh Chouhan is not listening to our demands," a guest lecturer who also got her head tonsured said.
Summary:
The pods, designed to travel short and medium distances at 20 kmph, can be coupled in 15 seconds and detached in 5 seconds.
Summary:
The tallest hotel in the world, the 356-metre-high Gevora Hotel, has opened in Dubai.
Summary:
The face of United States' 16th President Abraham Lincoln is carved into Mount Rushmore, along with the faces of three other former US Presidents, namely George Washington, Thomas Jefferson and Theodore Roosevelt.
Summary:
A British restaurant has broken the Guinness Record for the world's largest serving of fish and chips by cooking a meal weighing almost 55 kg.
Summary:
The team was honoured for the development and implementation of Shotover K1 Camera System.
Summary:
Interestingly, Sachin hit all five centuries at the stadium in Tests.
Summary:
The websites were infected through Browsealoud tool, made by software maker Texthelp, which reads out webpages for people with vision problems.
Summary:
A research by MIT's Media Lab has found that facial recognition technology is biased and shows inaccuracies in gender identification depending on a person's skin colour.
Summary:
The number of vacancies was, however, brought down after five additional judges were appointed to the Karnataka High Court.
Summary:
As many as 11,912 cases were settled and over â¹70 crore were recovered from defaulters during recently held Lok Adalats across Jammu and Kashmir.
Summary:
Prime Minister Narendra Modi on Sunday said that the Union government has saved â¹56,000 crore through Aadhaar-enabled Direct Benefit Transfer (DBT) of about 400 government schemes.
Summary:
Summary:
Summary:
With the derby match against Manchester City poised at 1-1 and 12 minutes remaining, the then Manchester United striker Wayne Rooney scored the winner with a bicycle kick on February 12, 2011.
Summary:
Serena played alongside her sister Venus Williams in a doubles match at the Fed Cup on Sunday.
Summary:
Manchester United suffered a 0-1 loss in the Premier League on Sunday against Newcastle United, who moved from the 18th spot on the points table to 13th.
Summary:
The Catalan side remain unbeaten in the league and are seven points above second-placed Atletico Madrid.
Summary:
A 4,900-square-metre villa on Greek island Mykonos is being sold in a lottery, with the tickets costing $49 (over â¹3,000).
Summary:
An Air India Mumbai-Ahmedabad flight carrying 182 passengers aborted takeoff at the last moment on Sunday following a false warning of fire in the port engine.
Summary:
Congress President Rahul Gandhi on Monday slammed RSS chief Mohan Bhagwat, saying that he has disrespected the country's Army and martyrs.
Summary:
The portrait of former Tamil Nadu Chief Minister J Jayalalithaa was unveiled in the Tamil Nadu Assembly on Monday by Speaker P Dhanapal.
Summary:
The Delhi High Court has upheld the life sentence given to a man by a trial court for killing his wife by stabbing her 21 times in 2012.
Summary:
Dosas, beetroot minced kebabs, and dal and rice always featured on his plate, Kapoor said.
Summary:
The Vishva Hindu Parishad (VHP) and the All India Muslim Personal Law Board (AIMPLB) have refused to accept any mediation from Sri Sri Ravi Shankar in the Ram Janmabhoomi-Babri Masjid dispute.
Summary:
The terrorists who attacked Indian Army's Sunjuwan camp on Saturday were reportedly operating in Jammu and Kashmir for the last 10 months and did the recce of the camp several times.
Summary:
The Indian Institute of Science Education and Research in Mohali has developed a prototype of a firecracker which emits light and sound, but no smoke.
Summary:
A 50-year-old man allegedly committed suicide on Sunday by jumping in front of a Noida-bound train at Janakpuri East Metro Station in Delhi.
Summary:
All 71 people, including six crew members, onboard a Saratov Airlines plane were killed after it crashed outside Russia's Moscow, authorities confirmed.
Summary:
A university in the US has fired a professor after she failed a student because she said Australia was a country in an assignment.
Summary:
The Pakistani government has refuted reports of the Bollywood film 'Pad Man' being banned in the country while clarifying that its Central Board of Film Censors is yet to watch it.
Summary:
Ranveer Singh has increased his fee post 'Padmaavat' to match the fee of his rumoured girlfriend Deepika Padukone, as per reports.
Summary:
PM Modi had remarked he hadn't heard such laughter since the Ramayan serial.
Summary:
"Mosque cannot be gifted, sold or shifted," the board said.
Summary:
The authorities at Amritsar's Golden Temple have claimed they paid â¹2 crore as Goods and Services Tax (GST) for purchasing food items for langar over a period of 7 months.
Summary:
Teachers will also have to wear a name tag with 'Rashtra Nirmata' (maker of the nation) written on it.
Summary:
Further, nearly 350 million tonnes of lead and zinc deposits are estimated to be in the state's Rajpura-Dariba mines.
Summary:
Speaking at the World Government Summit in Dubai, Prime Minister Narendra Modi on Sunday said that technology is changing at the speed of thought.
Summary:
US organisation Screen Actors Guild-American Federation of Television and Radio Artists (SAG-AFTRA) released a "Code of Conduct on Sexual Harassment".
Summary:
She had dedicated it to them during her recent performance at the Buckingham Palace in London.
"Performing in front of him was a first.
Summary:
Reacting to Yuzvendra Chahal getting David Miller clean bowled off a no-ball in the Pink ODI, a user tweeted, "Ek no ball ki keemat tum kya jaano Chahal babu!!
Summary:
After being fined â¹3 lakh over crowd violence, defending I-League champions Aizawl FC have demanded â¹57 lakh which AIFF owes them since the 2015-16 season.
Summary:
London City Airport was closed after an unexploded World War II bomb was found in River Thames near the runway on Sunday.
Summary:
Delhi CM Arvind Kejriwal will address a 'Haryana Bachao' rally in Hisar on March 25, AAP leader Naveen Jaihind has said.
Summary:
A BJP MLA from Vijayanagar also formally joined the party during the rally.
Summary:
Speaking at a rally in Karnataka's Koppal, Congress President Rahul Gandhi referred to PM Narendra Modi and asked him to "start working" because he did not have "much time".
Summary:
Shah added that the BJP will make Tripura a "model state" if it was voted to power.
Summary:
Congress President Rahul Gandhi on Saturday tweeted a 2015 video of Home Minister Rajnath Singh praising former PM Jawaharlal Nehru as one of the seasoned and experienced freedom fighters.
Summary:
Addressing the Indian community in Oman's Muscat, PM Narendra Modi on Sunday said, "I am seeing a mini-India in Oman", adding that such diversity was not seen anywhere else.
Summary:
However, he denied that RSS was a military outfit, insisting that it was a "family organisation".
Summary:
The jawan's friend who reportedly witnessed the incident claimed the BJP leader shot his friend.
Summary:
Four wild elephants were killed and one was injured on Saturday after a passenger train hit the herd crossing the rail tracks in Assam's Hojai area.
Summary:
Kerala Chief Minister Pinarayi Vijayan recently met a boy in Kannur district after a video of him crying because he wanted to meet the CM went viral on social media.
Summary:
The 16th President of the United States of America, Abraham Lincoln, personally test-fired rifles outside the White House despite a standing order against firing weapons in the District of Columbia.
Summary:
Four-time Asian champion India's Shiva Keshavan on Sunday finished 34th out of 40 in the men's singles luge event at PyeongChang Games, his sixth Winter Olympics campaign.
Summary:
South Africa's Andile Phehlukwayo slammed 23 runs in five balls in the Pink ODI against India to record the highest strike rate (460) in an international innings (minimum five balls).
Summary:
South African wicketkeeper-batsman Heinrich Klaasen stepped outside the pitch to smash a boundary during the fourth ODI against India on Saturday.
Summary:
A petitioner in the IPL spot-fixing scam alleged Roy had failed BCCI's age verification test in 2017 and was selected due to BCCI's acting secretary Amitabh Choudhary's influence.
Summary:
Addressing a rally in Karnataka, Congress President Rahul Gandhi on Sunday said the BJP broke all records of corruption when it was in power during 2008-13.
Summary:
The eighth Meghalaya Assembly met for 96 days during its tenure of 5 years, an Association for Democratic Reforms (ADR) report has revealed.
Summary:
The policy for financial assistance was initiated in 1972 but the government put a limit on it in July 2017.
Summary:
During his visit to Palestine, PM Narendra Modi on Saturday said that India hopes to see a sovereign and an independent state of Palestine soon.
Summary:
Seven Mexican states have been put on alert after a nuclear densometer was stolen from a vehicle belonging to an engineering firm in the state of Guanajuato.
Summary:
IMF chief Christine Lagarde has urged Arab countries to slash public wages and subsidies to curb spending, achieve sustainable growth and create jobs.
Summary:
A Japanese firm has paid nearly â¹4.5 crore to settle a lawsuit with the family of a deceased employee who died in an accident caused by exhaustion.
Summary:
North Korea has said that it is unable to pay its dues to the UN due to sanctions imposed on its foreign exchange bank.
Summary:
India's largest lender SBI wrote off bad loans worth â¹20,339 crore in 2016-17, the highest among all the state-owned banks.
Summary:
Summary:
Former Bigg Boss contestant and actress Elli AvrRam, while talking about rumours of her dating cricketer Hardik Pandya, said, "Let them [people] be curious in life.
Summary:
Actor Shah Rukh Khan has shared a video where he goes underwater and is seen attempting to recite his popular dialogues from some films including 'Devdas' and 'Dilwale Dulhania Le Jayenge' for his fans.
Summary:
Actress Kim Cattrall called her 'Sex and the City' co-star Sarah Jessica Parker a "cruel" person while adding, "You are not my family.
Summary:
Summary:
She will reportedly be highlighting the evolution of mainstream Hindi cinema at the film festival.
Summary:
Cricket Association for the Blind in India's General Secretary John David has challenged Virat Kohli-led Team India to play a match blindfolded against India's visually impaired team.
Summary:
Patidar leader Hardik Patel on Saturday warned that India will be under President's rule if PM Narendra Modi wins the 2019 Lok Sabha elections.
Summary:
A youth in Kerala was thrashed and tied to an electric pole by family members of a girl for allegedly harassing her.
Summary:
Summary:
Adding that there were many others being held by the insurgents, officials said they hope the captives will be released soon.
Summary:
Notably, Russia has vetoed 11 proposals seeking action on Syria since the civil war began in 2011.
Summary:
North Korean leader Kim Jong-un's sister, Kim Yo-jong, has said that South Korea felt familiar even though it was her first visit to the country.
Summary:
Swedish furniture giant Ikea has opened a â¹100-crore distribution centre spread over 2.3 lakh square feet in Pune.
Summary:
An Antonov An-148 plane operated by Russia's Saratov Airlines crashed with 71 people onboard shortly after taking off from Moscow on Sunday, according to reports.
Summary:
The UAE's Telecom Regulatory Authority has installed a 'Happiness Bank' for its employees in Dubai as a means to award them with surprises.
Summary:
When he was in Paris, his cooking skills were noticed by the chef of the restaurant where he washed dishes.
Summary:
India's Under-19 vice-captain Shubman Gill slammed six sixes during his 123*-run knock on Sunday, equalling Yuvraj Singh and Harbhajan Singh's record of most sixes in a List A innings for Punjab.
Summary:
Indian-origin teenager Medha Gupta has developed an app called Safe Travel which sends alerts to emergency contacts if a user does not reach their destination on time.
Summary:
Facebook has announced a $10 million Community Leadership Program to award users for building 'interactive' groups on the platform.
Summary:
The BJP has fielded the maximum number of crorepati candidates for the Tripura Assembly elections, according to a report released by Association for Democratic Reforms (ADR) on Saturday.
Summary:
An Axis bank ATM in Kanpur was shut down after it dispensed fake currency notes with 'Children Bank of India' and 'Full of Fun' printed on them.
Summary:
Information and Broadcasting Minister Smriti Irani on Saturday said that while India is a tolerant nation, it is "confident enough to have a surgical strike and let the world speak about our powers".
Summary:
However, it said the exercise is being done in an "expedited manner" using 59 sophisticated Currency Verification and Processing machines.
Summary:
He said the motto of "safety first" should be maintained by Railways in all its activities.
Summary:
Following resignation of two White House aides over accusations of domestic abuse, President Donald Trump on Saturday took to Twitter to condemn the #MeToo movement.
Summary:
Women should not be forced to wear long abaya robes in public, a top Saudi cleric has said.
Summary:
A sketch that "may have appeared amateurish and cartoonish" has helped identify a suspect in a robbery case, said US police.
Summary:
An Indian consortium led by ONGC has agreed to pay $600 million (over â¹3,850 crore) for a 10% stake in an offshore oilfield in UAE's Abu Dhabi.
Summary:
Actress Zareen Khan has said that it is because she was paired opposite Salman Khan that people know her today.
Summary:
Actress Sonam Kapoor has apologised to Sonakshi Sinha on Twitter while tweeting, "Don't remember showing you attitude!
Summary:
The cub had been shipped by express mail in a box with perforations for air after being sedated.
Summary:
South Africa captain Aiden Markram has been fined 20% of his match fee, while his players have received 10% fines for slow over-rate in the Pink ODI against India on Saturday.
Summary:
Winter Olympics officials have confirmed the PyeongChang Winter Games were hit by a cyber-attack during the opening ceremony.
Summary:
YouTube has said it did not find any evidence of Russian interference during the UK's Brexit vote in 2016.
Summary:
Niti Aayog CEO Amitabh Kant said the feature would radically transform the digital payments landscape in India.
Summary:
An emergency exit door of a Nigerian airline's plane fell off shortly after the aircraft landed in Nigerian capital city Abuja.
Summary:
Speaking at US' Harvard University, actor Kamal Hassan has said there is a "hue of saffron" in Rajinikanth's politics, adding that he would not politically ally with him until that is changed.
Summary:
A man posing as an Income Tax officer tried to carry out a raid at late Tamil Nadu CM J Jayalalithaa's niece Deepa Jayakumar's residence on Saturday and managed to escape the police during questioning.
Summary:
The Finance Ministry has nominated eight officers to take care of GST-related queries on the social media platform Twitter, according to an official order.
Summary:
Veteran American Investor Jim Rogers has said the next bear market in stocks will be the worst in our lifetime.
Summary:
Mirinda along with Fortis also offers a helpline on how parents can constructively encourage teens.
Summary:
Several women took to social media to share their experiences of sexual harassment during Hajj using #MosqueMeToo. An Egyptian-American feminist and journalist Mona Eltahawy first used #MosqueMeToo to share her sexual assault experience during the pilgrimage in 2013.
Summary:
Prime Minister Narendra Modi on Sunday laid the foundation for Abu Dhabi's first Hindu temple via video conferencing.
Summary:
The UK government spent ã985.50 (nearly â¹90,000) to deliver a six-page letter informing the European Council of its decision to leave the European Union.
Summary:
Brahmin group Sarv Brahmin Mahasabha has withdrawn their protest against Kangana Ranaut's 'Manikarnika: The Queen of Jhansi' after receiving a written assurance from the producers that there is no distortion of history with respect to Rani Lakshmibai.
Summary:
Netherland's Sven Kramer won the event after clocking Olympic record timing of 6:09.76.
Summary:
A pregnant woman who was injured during the terror attack on Sunjuwan Army camp in Jammu and Kashmir gave birth to a baby girl on Saturday.
Summary:
After PM Narendra Modi became the first Indian PM to visit Palestine, Israeli daily Haaretz published a piece titled, "In 'Historic Palestine Visit,' India's Modi Hails Arafat as 'One of World's Greatest Leaders".
Summary:
The coins would be backed by municipal bonds, which local governments normally issue to fund projects.
Summary:
A four-year-old boy in United States' Florida had to be rescued by fire department officials after he climbed inside an arcade machine and got stuck while trying to get a stuffed toy.
Summary:
People in a village in East Khasi Hills with the names Italy, Argentina, Indonesia, and Sweden are registered to vote in the Meghalaya Assembly elections on February 27.
Summary:
He is believed to be the world's oldest zip liner but is awaiting certification from Guinness.
Summary:
With a total wealth of $950 billion, India's financial capital Mumbai has been ranked as the 12th richest city globally by South Africa-based market research group New World Wealth.
Summary:
However, he added mutual funds are the "right way" for retail investors to participate in the capital markets.
Summary:
Summary:
Following his 75-run knock against South Africa on Saturday, Indian captain Virat Kohli went past former Indian captain Mohammad Azharuddin and Chris Gayle in the list of the highest run-getters in the ODI format.
Summary:
French club Nice has alleged that their Italian player Mario Balotelli was shown a yellow card for complaining to the referee about racist chants.
Summary:
An Uttar Pradesh wrestler, who has been selected for the Asian Grappling Championship, has sought help from Prime Minister Narendra Modi as he doesn't have the money to fund his trip.
Summary:
The official Instagram account of sports merchandise group Yonex was hacked on Saturday, with the hackers posting fake news of the group parting ways with Indian shuttler PV Sindhu.
Summary:
Technology giant Apple's smart speaker HomePod, which is priced at $349, will cost $279 to repair its out-of-warranty defects.
Summary:
The issue came to light after numerous developers reported App Store rejections resulting from their apps featuring Apple's emoji designs.
Summary:
Chinese e-commerce giant Alibaba is planning to invest $865 million for a 15% stake in China's home improvement chain, Easyhome.
Summary:
US-based Kyle Adelman has developed a rechargeable device called 'Radius' which repels mosquitos using heatwaves up to an area of 110 square feet.
Summary:
Airlines mention the minimum price they can accept for unsold seats between 24 to 48 hours before flights.
Summary:
The Madhya Pradesh Congress has removed three toilets from its party headquarters as a part of an attempt to remove 'vastu dosh' (architectural defects) from the premises.
Summary:
Two vehicles registered to BJP Kerala State President Kummanam Rajasekharan have been fined â¹1.5 lakh for 97 traffic rule violations.
Summary:
US-based startup Script has developed an app called 'Script' which allows parents to digitally sign school permission slips, pay for field trips and other activities.
Summary:
A mid-air collision between an Air India aircraft and Vistara flight was averted by seconds over Mumbai last week when the flights were just 100 feet apart travelling in opposite directions.
Summary:
Born on February 11, 1847, American inventor Thomas Edison received the first of his then-record 2,332 patents (1,093 US patents) for an 'Electrographic Vote-Recorder', at the age of 21.
Summary:
A dairy in US' Maine will pay its drivers $5 million (â¹32 crore) to settle a dispute hinging on the lack of an Oxford comma in state law.
Summary:
Around 20 male technicians and airport employees pushed a 35,000-kilogram aircraft on a runway at an airport in Indonesia.
Summary:
Seventeen-year-old snowboarder Redmond Gerard won the first gold medal for the United States at this year's Winter Olympics on Sunday, with his victory in the snowboarding slopestyle competition.
Summary:
Pune-based swimmer Rohan More became the youngest in the world and first Asian to complete the Ocean Seven Challenge, which involves crossing seven of the world's toughest ocean channels covering a distance of around 200 km.
Summary:
A startup competition called Polar Bear Pitching, which requires startup founders to stand waist-deep in freezing water while pitching for funds, was held recently in Finland.
Summary:
Elon Musk-led space exploration startup SpaceX's most powerful rocket Falcon Heavy, which launched a Tesla car into space, also carried American science-fiction writer Isaac Asimov's Foundation trilogy.
Summary:
India on Saturday signed six bilateral agreements worth â¹271.9 crore with Palestine, Foreign Secretary Vijay Gokhale said in a press briefing.
Summary:
India's first law against human trafficking, likely to be tabled in the Parliament in the ongoing Budget Session, proposes life imprisonment for repeat offenders.
Summary:
Five soldiers have been martyred and one civilian killed in the ongoing attack by Jaish-e-Mohammed (JeM) terrorists on the Sunjuwan Army camp in Jammu and Kashmir.
Summary:
Students at a government school in Madhya Pradesh's Tikamgarh district had to give their exams on the school's terrace because a BJP MLA was organising a cultural event inside the premises.
Summary:
Actor Ayushmann Khurrana has said that his father P Khurrana was the one who discovered the performer in him.
Summary:
A woman left a newborn baby in a bathroom at a US airport after she reportedly gave birth to him inside the airport.
Summary:
Cristiano Ronaldo scored a hat-trick as Real Madrid moved to the third place following a 5-2 thrashing of Real Sociedad on Saturday.
Summary:
Argentine forward Sergio Agüero's four second-half goals helped Premier League table-toppers Manchester City register a 5-1 win over Leicester City on Saturday and go 16 points clear at the top of the points table.
Summary:
The filings also revealed that the device would have both head-tracking in 3D space as well as eye-tracking technology.
Summary:
Google is reportedly planning to update its Android Messages app which would allow users to send texts from their computer.
Summary:
In a Facebook video, the 16-year-old daughter of a BJP leader in Kerala's Kasaragod has alleged that her father has been threatened by local CPI(M) leaders after he joined BJP.
Summary:
Germany's esports company ESL has bought a minority stake in Mumbai-based mobile gaming company Nazara, the startup announced on Friday.
Summary:
Goa minister Vijai Sardesai, who had called domestic tourists 'scum of the earth', has said that he cannot be apologetic about it and that he wants to "retain the unique identity of Goa".
Summary:
A doctor at Sir Sunderlal Hospital of Varanasi's Banaras Hindu University allegedly left five syringes inside a woman's body during an operation for surgical sterilisation in 2017.
Summary:
Delhi will reportedly get its first lingerie vending machine at Indira Gandhi International Airport later this month.
Summary:
Asserting that students have started to fear exams, CM Yogi said, "[W]e will not leave it at this.
Summary:
The Election Commission of India (ECI) has filed an affidavit in the Supreme Court demanding the power to deregister political parties.
Summary:
The police arrested all the accused after one of them revealed the details of the crime after being caught.
Summary:
The father of Ahed Tamimi, the 16-year-old Palestinian girl who was arrested last year for slapping an Israeli soldier, has asked Prime Minister Narendra Modi to put pressure on Israel to end the occupation.
Summary:
South Africa defeated India by 5 wickets (DLS method) in the rain-curtailed fourth ODI at Johannesburg on Saturday to stay alive in the six-match series by reducing India's lead to 3-1.
Summary:
Modi is the first Indian PM to visit Palestine.
Summary:
South Africa's anti-apartheid leader Nelson Mandela shared the 1993 Nobel Peace Prize with the country's then President FW de Klerk, who released him from prison after 27 years on February 11, 1990.
Summary:
The release date of the Rajinikanth starrer Tamil film 'Kaala' has been announced as April 27.
The don of dons is back," tweeted Rajinikanth's son-in-law Dhanush, who is also the film's producer.
Summary:
Summary:
Maharashtra Revenue Minister Chandrakant Patil on Friday advised BJP workers to increase contact with voters by visiting their homes with gifts ahead of the municipal corporation elections.
Summary:
Slamming PM Narendra Modi for criticising the policies of previous Congress-led governments, party President Rahul Gandhi on Saturday said, "You drive the vehicle by just looking in the rear-view mirror, which will cause accidents." Speaking at an election rally in poll-bound Karnataka, Gandhi added, "The country doesn't want to hear about the past.
Summary:
The Jammu and Kashmir Crime Branch has arrested a Special Police Officer over his alleged involvement in the murder of an eight-year-old girl in Kathua district last month, police officials said.
Summary:
Applicants who do not have Aadhaar can submit their passport, birth certificate or Life insurance policy as proof.
Summary:
Only about 4% of the required strength of psychologists are practising in India, Minister of State for Health and Family Welfare Anupriya Patel informed the Lok Sabha on Friday.
Summary:
The Centre has reportedly released â¹1,269 crore for several projects in Andhra Pradesh amid the ongoing political row over funds to the state.
Summary:
Israel launched air strikes in Syria on Saturday after the Syrian Army claimed to have shot down an Israeli F-16 fighter jet.
Summary:
China aims to eliminate absolute poverty in the country by 2020.
Summary:
Russian President Vladimir Putin has said that he does not have a smartphone, responding to a comment by an official that "everyone has a smartphone in their pocket." Putin had earlier dismissed the need for a smartphone, saying if he had one it would ring all the time.
Summary:
The use of 'hello' as a telephone greeting was first proposed by American inventor Thomas Edison.
Summary:
However, Fortis had denied the claims and said that the brothers took "loans" amounting to â¹473 crore.
Summary:
Talking about the box-office success of 'Padmaavat', actress Deepika Padukone said, "Numbers never mattered to me.
Summary:
Indian all-rounder Irfan Pathan tweeted his version of Sholay film's 'kitne aadmi the' dialogue to congratulate Shikhar Dhawan, who is nicknamed Gabbar, on his hundred against South Africa.
Summary:
Former Pakistani captain Shahid Afridi has said the political relations between India and Pakistan cannot "sour" the cordial relationship he shares with Indian captain Virat Kohli.
Summary:
The Internet Association, which represents companies including Facebook and Google, has expressed support for a bill seeking to restore net neutrality by invalidating a Federal Communications Commission (FCC) order.
Summary:
The accused charged between â¹800 and â¹10,000 for fake documents, police said.
Summary:
Flight details of the passengers were reportedly found on the phone of one of the accused.
Summary:
Union Minister of State for Railways Rajen Gohain has said that only about 18.6% of the components of the Bullet Train project would be Japanese.
Summary:
The jail lists group bathrooms, showers, and designer jewellery such as handcuffs among the facilities provided to the "guests".
Summary:
As many as 100 Germans die every year due to risky masturbation techniques, according to a study.
Summary:
This represents 69.2% of the total budget estimate of direct taxes at â¹10.05 lakh crore for the current financial year.
Summary:
Union Minister of State for Corporate Affairs PP Chaudhary on Friday said that companies have spent â¹4,719 crore towards Corporate Social Responsibility (CSR) activities in the first eight months of the current fiscal.
Summary:
Facebook-owned messaging app WhatsApp has rolled out its digital payments service via UPI platform in India.
Summary:
Citing the Aadhaar Act 2016, the UIDAI on Saturday said essential services including medical help, school admission, and ration through Public Distribution System (PDS) cannot be denied to beneficiaries who do not possess Aadhaar cards.
Summary:
Wildlife conservationists in Bolivia have set up an online dating profile for a frog in an attempt to help find him a mate.
Summary:
Playing in his 100th ODI today, opener Shikhar Dhawan slammed 109 runs to take his run tally to 4,309, the most runs by an Indian and second-most overall after 100 ODIs. Virat Kohli had scored 4,107 runs after 100 ODIs, the second-most by an Indian.
Summary:
Astronomers at the Virtual Telescope Project claimed to have spotted Tesla's Roadster car in space after it was launched aboard SpaceX's most powerful rocket, Falcon Heavy, this week.
Summary:
A school in Hyderabad has expelled several students after their parents joined an unofficial networking group on WhatsApp, reports said.
Summary:
Claiming that the number of tourists visiting Goa is six times its population, he said Goa residents were superior to tourists.
Summary:
However, both India and China were in touch to discuss ways to resolve the Maldives issue, reports said.
Summary:
The Maldives government has announced that it is going to deport a British and Indian journalist working for news agency AFP after arresting them on Friday.
Summary:
Refugees fighting to return to the Chagos Islands had cited WikiLeaks documents claiming that the UK planned to turn the islands into a marine park.
Summary:
As per reports, 'Pad Man' has been banned from releasing in Pakistan after distributors failed to secure a No Objection Certificate (NOC) from the country's censor board for it.
Summary:
Social activist Enoch Moses has filed a police complaint in Chennai against actress Sunny Leone alleging that she is promoting pornography, which is an offence as per the law in India.
Summary:
Filmmaker Prakash Jha said the whole conditioning of a woman is dominated by the fact she has to serve the male well while adding, "That is the tragedy of our times." Jha said this at an interactive session on the topic 'Portrayal of Gender in Cinema'.
Summary:
Priyanka Chopra said that she wanted to get married ever since she was twelve.
I loved being a dulhania," added Priyanka.
Summary:
Amitabh Bachchan, while slamming the paparazzi in his blog post, wrote he wore his knitted cap over his eyes after he was discharged from Lilavati Hospital to protect himself from the flash of the paparazzi's cameras.
Summary:
Pandya tried to hit a Kagiso Rabada delivery over extra cover, where the 23-year-old leapt and completed the catch with his right hand.
Summary:
Australia have won all their matches in the tri-series so far, while New Zealand and England are winless.
Summary:
Vijay was replaced by Ganga Sridhar Raju.
Summary:
India could lose the hosting rights of the 2021 Champions Trophy if the government doesn't provide full tax exemption to the ICC.
Summary:
A 21-year-old woman has claimed she had to flush her hamster down a toilet as it was not allowed on a Spirit Airlines flight in November 2017 despite being told it was allowed earlier.
Summary:
This comes after several suicide attempts were reported at the state's administrative headquarters.
Summary:
After Goa CM Manohar Parrikar said he was afraid that girls are drinking beer, a user tweeted, "When your mythical God can drink poison, your sages can drink soma why can't women drink beer?" Another user tweeted, "sir this is bit wrong, everybody has the right to drink beer, even girls.
Summary:
Karnataka-based cartoonist Satish Acharya has claimed the PM Narendra Modi-led government generates employment by hiring jobless youth to disrupt Facebook pages critical of the Centre.
Summary:
The Supreme Court has reopened a 17-year-old triple murder case and directed former CBI Special Director ML Sharma to lead a Special Investigation Team to probe the murder of a woman and her two children.
Summary:
When the driver arrived to meet them, the robbers completely emptied the van and fled, police officials said.
Summary:
A five-month-old kid named Zola turned model for the fashion label Collina Strada for its Autumn Winter 2018 collection at the New York Fashion Week.
Summary:
India's richest banker Uday Kotak said that he is "ashamed" about the problem of stressed assets in the banking sector.
Summary:
Notably, Dhawan is the 34th Indian cricketer to play 100 ODIs.
Summary:
The Prime Minister will also visit the UAE and Oman.
Summary:
With earnings of â¹10.26 crore on its first day, 'Pad Man' has become Akshay Kumar's lowest opening day grosser in the last three years.
His previous release 'Toilet- Ek Prem Katha' earned â¹13.1 crore on its first day.
Summary:
The first look of Ranveer Singh and Alia Bhatt from the upcoming film 'Gully Boy' has been revealed.
Summary:
South Africa is playing the fourth ODI against India in Johannesburg today dressed in pink to mark 'Pink Day' to create awareness for breast cancer in the country.
Summary:
Sri Lanka's 39-year-old spinner Rangana Herath went past Pakistan's Wasim Akram to become the highest wicket-taker among left-arm bowlers in Test cricket history.
Summary:
Dubbed the "world's blackest black", Vantablack absorbs 99% of the light that hits it, creating the illusion of a void.
Summary:
China and US-based researchers have developed an electronic skin, which when cut into two can heal itself by recreating chemical bonds between the two sides.
Summary:
While talking about cyber forensic capabilities at a conference in Gujarat, Home Minister Rajnath Singh said new technologies like Artificial Intelligence, Blockchain Technology, Cloud Computing, and Robotics are posing new security challenges.
Summary:
The Home Minister also revealed that the government is working towards a Forensic DNA Database to fight against crime.
Summary:
US Vice President Mike Pence skipped a dinner before the Winter Olympics opening ceremony on Friday, at which he was expected to share a table with North Korea's ceremonial head of state Kim Yong-nam.
Summary:
Cryptocurrency scammers have made Twitter accounts that resemble accounts of well-known figures like US President Donald Trump, Tesla CEO Elon Musk and John McAfee.
Summary:
Indian stock exchanges NSE, BSE and MSE said they'll immediately stop trading of their indices on foreign bourses to prevent migration of liquidity to overseas markets.
Summary:
Filmmaker Gauri Shinde, wife of 'Pad Man' director R Balki, has said she's proud the film on menstrual hygiene was handled by men.
Summary:
Miss World Manushi Chhillar has featured on the cover of the February issue of Cosmopolitan magazine.
Summary:
Actress Angelina Jolie, while revealing the advice she gives to her daughters said, "I tell my daughters, 'Anyone can put on a dress and makeup.
Summary:
Speaking about the fight between him and Sunil Grover that took place on a flight, comedian Kapil Sharma said, "I think Sunil got angrier after seeing himself in news." "He was not so angry (when the incident happened)," he added.
Summary:
As per reports, Aamir Khan has offered his nephew Imran Khan a comeback role in his upcoming film 'Mahabharata'.
Summary:
Shahid Kapoor has shared a picture from the sets of his next film 'Batti Gul Meter Chalu'.
Batti Gul Meter Chalu.
#goodpeople #goodvibes." The film is said to star Shraddha Kapoor opposite Shahid while Yami Gautam will reportedly play a lawyer.
Summary:
Actress Anushka Shetty, while denying rumours that she is getting married to her 'Baahubali' co-star Prabhas, said, "Please do not expect Baahubali and Devasena-like chemistry in real life." "It is only for the screen," she added.
Summary:
South Africa called up an Indian spinner named Ajay Rajput at nets to help their batsmen prepare for Indian spinners Kuldeep Yadav and Yuzvendra Chahal ahead of the fourth ODI.
Summary:
Haryana claimed 38 gold medals to win the recently concluded inaugural Khelo India School Games in New Delhi.
Summary:
Owaisi further said that AIMPLB emphasises that land once dedicated "vests in Allah".
Summary:
BJP Member of Legislative Council (MLC) Vikram Randhawa on Saturday said the illegal presence of Bangladeshis and Rohingya Muslims in Jammu and Kashmir can be a problem as they might give shelter to militants.
Summary:
At least one person was killed and 129 others were injured on Friday in twin blasts at a mosque in the Libyan city of Benghazi, according to reports.
Summary:
A Turkish military helicopter was shot down on Saturday during combat in Syria, Turkish President Recep Tayyip ErdoÃÂan said.
Summary:
Former US President George W Bush has said that there is pretty clear evidence that Russia meddled in the 2016 US presidential election.
Summary:
Cryptocurrency exchange Coindelta is celebrating zero fee trading on bitcoin this valentine.
The zero fee trading will last for the whole Valentines Week and end on February 14th, 2018.
Summary:
Doctors said the man's rectum lost its attachment due to the long duration spent as he suffers from rectal prolapse.
Summary:
The letter was delivered by Jong-un's sister Kim Yo-jong who is attending the 2018 Winter Olympics in South Korea.
Summary:
He has also filed an FIR against the film's makers over the row.
Summary:
The teaser of Dhanush's first international film 'The Extraordinary Journey of the Fakir' has been released.
Summary:
The South African cricket team, which is 0-3 down in the six-match ODI series against India, has never lost an ODI while wearing pink jersey.
Summary:
Former Pakistani captain Shahid Afridi asked an Indian fan to hold the Indian Tricolour properly and with respect when asked for a selfie during the Ice Cricket Challenge at St Moritz in Switzerland.
Summary:
Former world number one Serena Williams, who recently became mother to a baby girl, will return to competitive tennis at the Fed Cup in North Carolina.
Summary:
Users on Facebook have been found advertising cryptocurrencies like Bitcoin by misspelling them, even after the social media major prohibited their promotion on the platform.
Summary:
The police are probing a CCTV video footage showing a man thrashing an old woman on the road in Uttar Pradesh's Bareilly.
Summary:
An autorickshaw driver faked his own death with the help of a gang consisting of a cop, a doctor, a bank employee and others so that his wife could get insurance claims from six companies.
Summary:
The Indian Railways have identified 13,000 out of about 13 lakh employees who are on 'unauthorised leave' for a long time and have decided to terminate their services on disciplinary grounds.
Summary:
This comes after Lucknow's Qaiser Bagh Police Station was painted saffron last month.
Summary:
At least two jawans were martyred and six others, including one of the officers' daughter, were injured after terrorists attacked an Army camp in Jammu and Kashmir's Sunjwan area on Saturday.
Summary:
Russian firm Blockchain Fund, which buys and stores cryptocurrency for traders, has opened a free psychological assistance hotline for its clients to help ease their anxiety over Bitcoin market fluctuations.
Summary:
Several scientists working at Russia's top-secret nuclear facility have been arrested for using its supercomputers for private purposes including Bitcoin mining.
Summary:
The mother octopus laid between 100 and 200 eggs four months after arriving at the aquarium, said the curator.
Summary:
India', said everyone thought it was the worst film being made.
SRK further said he does certain films because they appeal to him organically.
Summary:
India's Under-17 goalkeeper Dheeraj Singh is currently in Scotland giving trials for selection at the Scottish club Motherwell FC.
Summary:
An Apple intern was behind the leak of a three-year-old iOS source code, according to reports.
Summary:
YouTube said it might also remove a channel's eligibility to be recommended on YouTube.
Summary:
After the inauguration of a conference on Mughal emperor Aurangzeb in Delhi, BJP MP Maheish Girri said that Aurangzeb was a "terrorist" and didn't receive the punishment he deserved.
Summary:
Patidar leader Hardik Patel has said he would come to West Bengal in 2019 to campaign for CM Mamata Banerjee in the Lok Sabha elections.
Summary:
Bengaluru-based digital gold loans providing startup Rupeek has raised $6.8 million in a funding round led by Accel Partners, filings have revealed.
Summary:
NASA researchers are measuring snow cover from the ground and space at the ongoing 2018 PyeongChang Winter Olympics to provide better data for snowstorm predictions.
Summary:
The video starts with the man telling how Valentine's Day is important for men to express their love.
Summary:
Apart from the medical seats, the government also increased the number of undergraduate and postgraduate seats, he further said.
Summary:
Asteroid 2018 CB, estimated to be around 15-40 metres in size, safely flew past Earth making a closest approach of about 64,000 kilometres, nearly one-fifth the average Earth-Moon distance, on Saturday at 4:00 am IST, NASA revealed.
Summary:
The Indian contingent won a silver medal and two bronze medals at the Asian Para-Cycling Championships held in Naypyidaw, Myanmar on Friday.
Summary:
India defeated England by an innings and eight runs on February 10, 1952, in Chennai to register their first-ever Test victory after 24 unsuccessful attempts in nearly 20 years after becoming a Test playing nation.
Summary:
After the 1964 Innsbruck Winter Olympics were threatened by a lack of snow, the Austrian army transported 50,000 cubic yards of snow to the skiing slopes from nearby snow-capped mountains.
Summary:
Thailand experienced the world's worst traffic congestion in the year 2017, with drivers spending an average of 56 hours in peak congestion, according to a study by transportation analytics company INRIX.
Summary:
Taking a dig against the NDA government for not disclosing Rafale fighter jets' price, Congress President Rahul Gandhi on Friday tweeted 'deal mein kuch kala hai'.
Summary:
Investor Mahesh Murthy has been granted an anticipatory bail after he was arrested on Friday for allegedly sexually harassing a Delhi-based woman.
Summary:
Scientists hit a high-energy beam of electrons with a laser beam a billion million times brighter than light at Sun's surface.
Summary:
The human body is not capable of naturally restoring bone segments, but such implants enhance body's self-healing ability by providing missing parts, noted doctors.
Summary:
Delhi High Court on Friday pulled up the Central Reserve Police Force for not promoting a woman officer over pregnancy, describing the discrimination as "abhorrent".
Summary:
A 17-year-old boy, who was hit by a Delhi Transport Corporation (DTC) bus in Noida, died after he was denied treatment by two hospitals.
Summary:
The UAE's state-owned Abu Dhabi National Oil Company (ADNOC) has lit up its tower in the colours of the Indian National Flag ahead of Prime Minister Narendra Modi's visit to the country.
Summary:
Summary:
The government has directed the banks to only accept online applications for education loans in a bid to make the loan disbursement process transparent and efficient.
Summary:
A woman in Gurugram on Friday delivered her baby outside the gate of a hospital's emergency ward after she was allegedly denied ultrasound test due to lack of Aadhaar card.
Summary:
He added that the hackers were allowed to keep less than 10% of the money earned.
Summary:
Summary:
Actor Amitabh Bachchan has said that even though the country loves the younger generation, the "oldies" have similar capabilities and if given a chance they would not disappoint the audience.
Summary:
The film was earlier scheduled to release on February 16.
Summary:
Actor-comedian Kapil Sharma has said that everyone goes through downfalls while adding, "Just because we are popular, the world gets to know our downfalls." He further said that he has learnt not to trust everyone blindly.
Summary:
AB de Villiers slammed the fastest-ever ODI hundred against Windies in 2015 during a Pink ODI, wherein the South African team members were wearing pink jerseys to create awareness for breast cancer.
Summary:
On Friday, Uber agreed to not use self-driving technology allegedly stolen from Waymo and pay equity valued at about $245 million to the company to settle the lawsuit.
Summary:
A man from the US has claimed that one of his Apple AirPods started emitting white smoke inside his ear while he was using them at the gym.
Summary:
Baharul Islam is contesting the Boxanagar assembly constituency on BJP's ticket, while his brother Mujibar Islam is contesting the Sonamura seat as Congress' nominee.
Summary:
Ant Financial raised $4.5 billion in 2016, which reportedly valued the company at $60 billion.
Summary:
In a customary weekly meeting of all the MPs on Friday, Prime Minister Narendra Modi told the lawmakers to work hard and not just restrict themselves to enjoying the feast.
Summary:
According to the prosecution, the girl was sexually abused by her 57-year-old father in 2015 and sexually exploited by three neighbours.
Summary:
Ride-hailing startup Uber has agreed to not use self-driving technology allegedly stolen from Google's self-driving unit Waymo to settle a trade secrets lawsuit.
Summary:
Several parents protested in front of the school demanding that the accused be suspended.
Summary:
The bank had reported a standalone profit of â¹2,610 crore in the corresponding quarter last fiscal.
Summary:
Summary:
Sidelined AIADMK leader TTV Dhinakaran on Friday claimed that he could get the ruling AIADMK government in Tamil Nadu dissolved if he wanted.
Summary:
A structure dubbed as the darkest building on Earth has been unveiled at the Winter Olympic Games in South Korea.
Summary:
Supporting the legalisation of marijuana, Patanjali CEO Acharya Balkrishna said that the nation should consider the benefits and positive uses of marijuana.
Summary:
A cook of a hostel in Tamil Nadu has been arrested for sexually assaulting nine boys aged between 8 and 13 years for 3 months.
Summary:
US President Donald Trump on Friday signed a spending bill into law, ending the nine-hour government shutdown.
Summary:
Former US Navy SEAL Robert J O'Neill who claims to have killed Osama bin Laden slammed US President Donald Trump's proposal for a military parade calling it a "third world bulls***." Trump has asked the Defense Department to plan a military parade as a means to showcase US' military strength.
Summary:
South Korean President Moon Jae-in and Kim Yo-jong, the sister of North Korean leader Kim Jong-un, met for the first time at the Winter Olympic Games on Friday.
Summary:
Philippine President Rodrigo Duterte has declared himself a dictator, saying his dictatorial leadership was necessary for the country to progress.
Summary:
After Katrina Kaif shared a picture with 'Thugs of Hindostan' co-stars Aamir Khan and Fatima Sana Shaikh, Aamir was trolled for looking taller than both the actresses.
Summary:
Actress Tamannaah, while addressing the incident when a shoe was flung at her at an event, said, "As an actor, we keep quiet when people welcome us with flowers.
Summary:
Actor Ranveer Singh was spotted at an event wearing a pink, gold and black sequined bomber jacket, which was from fashion designer Manish Arora's Spring 2018 women wear collection.
Summary:
Former India captain Sunil Gavaskar has said South Africa should send their 'A' team to play the Buchi Babu tournament held annually in Chennai.
Summary:
Tonga's Pita Taufatofua appeared shirtless at the opening ceremony of the Winter Olympic Games on Friday.
Summary:
However, Carey took one and Maxwell got to his century with a six.
Summary:
Two men dressed up as North Korean leader Kim Jong-un and US President Donald Trump crashed the 2018 Winter Olympics opening ceremony in Pyeongchang, South Korea on Friday.
Summary:
The stations can be used to charge a vehicle in about 25 to 30 minutes.
Summary:
BJP President Amit Shah has described his Congress counterpart Rahul Gandhi's style of politics as "undemocratic" over disruptions during PM Narendra Modi's speech in the Parliament.
Summary:
The petitioner suggested that the state government employ bicycles in the rally.
Summary:
Bengaluru-based healthcare startup HealthifyMe has raised $12 million in Series B funding round led by Sistema Asia Fund.
Summary:
A 12-year-old boy was allegedly killed on Tuesday due to celebratory firing during a pre-wedding ceremony in Rajasthan.
Summary:
The teen was reportedly going to catch his pet pigeon when the boy blocked him, causing the bird to fly away.
Summary:
A 15-year-old boy from Tamil Nadu's Nerunjalakudi hung himself from a ceiling fan at his residence on Thursday after his classmates bullied him and termed his behaviour as "feminine".
Summary:
The woman, who suffers from old age-related memory loss, had been living with her husband and were being looked after by a government-provided carer.
Summary:
Investor Mahesh Murthy was arrested in Mumbai on Friday for allegedly sexually harassing a woman based in Delhi.
Summary:
Further, the RBI also cautioned the public about other fake websites such as www.rbi.org and www.rbi.in.
Summary:
'Padmaavat' was also Deepika's seventh film to earn over â¹100 crore.
Summary:
Responding to rumoured girlfriend Deepika Padukone's statement that he has some way to arrive as a superstar, Ranveer Singh said, "She's the number one actress of Hindi cinema today.
Summary:
As many as 1,218 drones outfitted with LED lights were used during a light show at the opening ceremony of the PyeongChang Winter Olympics on Friday, setting a world record for the 'most unmanned aerial vehicles airborne simultaneously'.
Summary:
The Competition Commission of India has found Google guilty of 'search bias' after complaints by Martrimony.com and Consumer Unity and Trust Society in 2012.
Summary:
Telugu Desam Party MP N Sivaprasad on Friday dressed as a 'tantrik' and chanted mantras outside the Parliament to demand funds for Andhra Pradesh.
Summary:
Claiming that the instant Triple Talaq bill seeks to ban all forms of divorce, the All India Muslim Personal Law Board (AIMPLB) said it will welcome the bill only after all its "flaws" are removed.
Summary:
A mob set fire to a police station in Odisha's Ainthapali on Friday after a 22-year-old tribal man accused of theft died in police custody.
Summary:
Residents will be provided 25 litres water a day through collection sites.
Summary:
Founder of Chinese live-streaming platform YY and former journalist Xueling Li has become a billionaire with a $1.3-billion fortune after its shares tripled over the last year.
Summary:
Director R Balki has said that he approaches Amitabh Bachchan for a film everyday while adding that there is nothing on the cards currently.
Summary:
As per reports, Amitabh Bachchan has been admitted to Mumbai's Lilavati Hospital owing to health issues relating to neck and spine pain.
Summary:
Summary:
Actor Abhishek Bachchan, while reacting to his Twitter account getting hacked, tweeted, "Yes my account got hacked.
Summary:
Rani Mukerji, while talking about which actor came to film sets on time, said, "Aamir Khan is very punctual.
Summary:
India bowling coach Bharat Arun has said Ravichandran Ashwin and Ravindra Jadeja are "not out of the race" for the 2019 World Cup despite Kuldeep Yadav and Yuzvendra Chahal cementing their spots.
Summary:
Lionel Messi's Argentina teammate Angel Di Maria revealed he saw a psychologist to cope with the hurt caused by "jokes and memes" sent to the team.
Summary:
England's Jim Laker is the only bowler to claim 19 of the 20 wickets on offer in a Test, achieving the feat in the 1956 Ashes Test at Manchester.
Summary:
Jacques Kallis slammed 90*(37) to help Royals defeat Virender Sehwag-led Palace Diamonds by 8 wickets in the last T20 match of the St Moritz Ice Cricket tournament on Friday.
Summary:
The Telangana Rashtra Samithi party supports its "Andhra brothers" demanding special status for the state, MP Kavitha Kalvakuntla told the Lok Sabha on Thursday.
Summary:
A delegation of 15 Opposition parties led by Congress President Rahul Gandhi on Friday met President Ram Nath Kovind and demanded a Supreme Court-monitored SIT probe into the allegedly suspicious death of Judge BH Loya.
Summary:
The husband of a BJP corporator was hacked to death on Wednesday by four assailants near Bengaluru's Muneshwara temple, police said.
Summary:
An eight-year-old Indian-origin schoolgirl has entered the UK's Mathletics Hall of Fame, an online learning resource involving primary school level Mathematics curriculum.
Summary:
Two British Islamic State militants belonging to 'The Beatles' group have been captured by the US-backed Kurdish fighters in Syria, US officials said.
Summary:
A US family has sued Starbucks claiming that their two-year-old daughter drank a beverage tainted with an employee's blood in 2016.
Summary:
Two Indian journalists employed by French news agency AFP have been arrested in the Maldives, as per reports.
Summary:
The bill, which needs President Donald Trump's signature, would end an hours-long government shutdown that started on Thursday midnight after current government funding expired.
Summary:
Publishing house Amar Chitra Katha (ACK) has sued Malayalam film 'Shikkari Shambhu' days after its release over copyright violations.
Summary:
As per reports, actress Alia Bhatt is rumoured to be dating Kavin Bharti Mittal, Hike Messenger Founder and son of Airtel Chairman Sunil Mittal.
Summary:
Slamming the Brahmin group Sarv Brahmin Mahasabha, which claimed the film 'Manikarnika' defamed Rani Laxmibai, Kangana Ranaut said, "We cannot even think like that, the kind of things they are saying.
Summary:
The teaser of Amitabh Bachchan and Rishi Kapoor starrer '102 Not Out' has been released.
Summary:
British singer Zayn Malik has revealed he recorded his first Hindi song for an upcoming Bollywood film.
I've worked with AR Rahman on one song."
Summary:
NASA's New Horizons spacecraft has beamed back an image while being 6.12 billion km away, breaking a 27-year-old record set by Voyager 1.
Summary:
A US-based study has added evidence to the theory that increased UV radiation due to depleting ozone contributed to the Earth's largest-ever mass extinction 252 million years ago.
Summary:
Over 200 scientists from 25 countries have chosen a desert in Oman to field-test technology for a manned Mars mission for four weeks.
Summary:
Contrary to existing theory that sea vertebrates generated limbs as they moved onto land for the first time, an international study has suggested that some of the first creatures that learned to walk on the ocean floor have remained underwater since then.
Summary:
A record was set on the second day of Rajim Kumbh Mela in Chhattisgarh after over 2,100 saints and locals blew 'shankh' (conch shells) together.
Summary:
Duterte and 11 Philippine officials have been accused of mass murder since he began his war against drugs as Davao's Mayor in 1988.
Summary:
Fortis Healthcare has denied reports that its promoters, Malvinder Singh and his brother Shivinder, took â¹500 crore out of the company without board approval about a year ago.
Summary:
The world's 500 richest people lost $93 billion in net worth, and 20 of them lost at least $1 billion each.
Summary:
Cybersecurity expert John McAfee has dared a Twitter user to meet him after the user asked McAfee to write white papers for "shit coins" instead of spreading false information about cryptocurrencies.
Summary:
That was not something I should have said." Earlier, Shahid said he would have played Ranveer's 'Padmaavat' character Alauddin Khilji differently.
Summary:
As per reports, Anushka Sharma's father has gifted his son-in-law Indian cricket team captain Virat Kohli the book 'Smokes And Whiskey' by Tejaswini Divya Naik, which is a collection of 42 poems based on relationships.
Summary:
Summary:
Summary:
Former Australian pacer Glenn McGrath, who turns 48 today, once dismissed Sachin Tendulkar LBW for zero after the ball hit his shoulder in front of the stumps.
Summary:
No medals were awarded as Skijoring was a demonstration sport, which never returned to Winter Olympics after 1928.
Summary:
BJP leaders must practice what they preach and drink cow urine every day, former Uttarakhand Chief Minister and Congress leader Harish Rawat has said.
Summary:
In the last three years, as many as 2,198 cow smugglers have been arrested, while 1,113 cases of cow smuggling have been registered in Rajasthan, the state government has revealed in the Rajasthan Assembly.
Summary:
Karnataka CM Siddaramaiah has said the notification seeking public opinion on bringing religious institutions under the jurisdiction of Hindu Department of Religious and Charitable Endowments has been withdrawn following opposition.
Summary:
The woman's family alleged that the nurse started the delivery procedure while coordinating with the doctor on call.
Summary:
The department said it was the last chance for filing "belated or revised returns" for assessment years 2016-17 and 2017-18.
Summary:
PepsiCo Chairman and CEO Indra Nooyi has been appointed as the International Cricket Council's (ICC) first ever independent female director.
Summary:
In addition to this, it offers 40 GB data with rollover facility and no cap on daily usage and unlimited calls.
Summary:
Ice cricket is played on a frozen lake, with players wearing traditional gear along with normal sports shoes instead of spikes.
Summary:
In a first, UK and US-based scientists have successfully developed human eggs outside the human body from their earliest stages to maturity, where they could be fertilised.
Summary:
Released on January 19, 'Secret Superstar' had beaten the opening day collections of 'Dangal' in China by earning â¹43.35 crore.
Summary:
Defending the proposed imposition of 10% Long-term Capital Gain (LTCG) tax on equities, Union Finance Minister Arun Jaitley on Thursday said although the tax is unpopular, it is beneficial for the economy.
Summary:
In November last year, Qualcomm rejected Broadcom's $103 billion takeover bid, saying that it "dramatically" undervalued the company in relation to its leadership position in mobile technology.
Summary:
Chrome's new interface will help users understand that all HTTP sites are not secure, and continue to move the web towards a secure HTTPS web by default.
Summary:
Deoband clerics in Uttar Pradesh have issued a fatwa against buying life insurance policies or getting property insured, stating that it's against the tenets of Islam.
Summary:
A Jammu and Kashmir youth, who had received special arms training in Pakistan, surrendered before the security forces in the state on Friday.
Summary:
The Centre has asked all educational institutions to facilitate the live telecast of PM Narendra Modi's interactive session on exam stress.
Summary:
The Taimei elementary school in Japan has adopted school uniforms designed by Italian fashion brand Giorgio Armani for its students.
Summary:
Daniel Fierro has alleged that Garcia sexually abused him after a legislative softball game in 2014.
Summary:
Pakistan's Foreign Minister Khawaja Asif has asked the US to assist the financing of a fence along its disputed border with Afghanistan.
Summary:
Cameron Winklevoss, one of the Winklevoss twins, has said that Bitcoin will one day be worth 40 times its present value, which is currently just over $8,000.
Summary:
Talking about people being judgemental towards single women, Tabu said, "I think our society has a problem accepting that a woman can be single by choice." She added, "People do it out of concern.
Summary:
Barcelona beat Valencia 2-0 to reach a record fifth successive cup final.
Summary:
Manchester United striker Alexis Sanchez has been handed a 16-month suspended prison sentence in Spain for tax fraud of over $1 million during his Barcelona tenure.
Summary:
Notably, Malinga is IPL's highest wicket-taker.
Summary:
Facebook Co-founder Eduardo Saverin's venture capital company B Capital has raised $360 million for its first fund, it announced on Thursday.
Summary:
Photo-sharing app Instagram has confirmed that it is testing a feature that allows users to reshare other users' public posts as their Story.
Summary:
Slamming female ministers for defending PM Narendra Modi's comment against Congress MP Renuka Chowdhury's laughter, party MP Veerappa Moily said they shouldn't act like PM's slaves.
Summary:
A study has revealed that Female drivers of Uber earn 7% less per hour than their male counterparts in the US.
Summary:
NASA is testing an implantable device that can continuously administer medicines to help prevent astronauts' muscle deterioration during long-term space missions.
Summary:
Chandigarh Police has filed a chargesheet against 11 accused in the Post Graduate Institute of Medical Education and Research (PGIMER) ambulance scam.
Summary:
Railways Minister Piyush Goyal said that steps like blocking the suspected websites were being taken to counter it.
Summary:
The woman left her daughter's body at home and went to her relative's house.
Summary:
The advanced Auto Gear Shift (AGS) technology is now available in the all-new Swift in both petrol and diesel.
Summary:
The IAF officer who was detained last month for allegedly spying for Pakistan in exchange for sex chats has been arrested by the Delhi Police, the Deputy Commissioner of Police (special cell) confirmed.
Summary:
The US government shut down on Friday for the second time in three weeks after a vote on government funding bill was delayed in the Senate beyond the midnight deadline.
Summary:
The philosophy recognises the shift in business environments towards digital, and aims to reduce complexity by simplifying workflows.
Summary:
Daiichi argued that the Singh brothers, former Ranbaxy promoters, had concealed important information while selling Ranbaxy in 2008.
Summary:
About 50 million years ago, ancestors of the world's largest mammals walked on the banks of lakes and rivers in what is now Pakistan and India, according to UK's Natural History Museum.
Summary:
South Korean police have named 76-year-old Samsung Chairman Lee Kun-hee as a suspect in a $7.5 million tax evasion case.
Summary:
Technology giant Apple has confirmed that its three-year-old iOS source code was leaked, after it was posted on internet hosting service GitHub. Apple said that the security of its products doesn't depend on the secrecy of its source code.
Summary:
Summary:
Maldives' High Commissioner Ahmed Mohamed has said that his country wanted to send its special envoy to India but cancelled the proposed visit as it was informed that the dates were not suitable for the Indian government.
Summary:
Denial of benefits to citizens for want of Aadhaar or due to its non-authentication may not be a ground for holding the Aadhaar law unconstitutional, the Supreme Court said on Thursday.
Summary:
Information and Broadcasting Ministry on Thursday informed the Lok Sabha that the government has not proposed any ban on advertisements of junk food on television.
Summary:
The Border Security Force (BSF) on Thursday carried a pregnant woman in a boat from a remote area in Odisha to a hospital after the woman's husband was unable to arrange an ambulance.
Summary:
The number of students missing the Class 10 and 12 Board examinations in Uttar Pradesh has risen to over 6.3 lakh by the third day.
Summary:
However, there was a typo in the caption, which missed 'with' after the word "poor".
Reacting to the typo, a user tweeted, "Sack whoever wrote this tweet for you!
Summary:
Congress leader Jagdish Tytler has filed a police complaint against Delhi Sikh Gurdwara Management Committee (DSGMC) President Manjit Singh GK for allegedly doctoring a video to show Tytler confessing to killing hundreds of Sikhs during the 1984 riots.
Summary:
Canadian magazine Maclean's will be charging men 26% more for a copy of its latest issue in a bid to highlight the gender pay gap.
Summary:
AB de Villiers has been added to South Africa's squad for the remaining three ODIs against India.
Summary:
A Facebook spokesperson said that the intention behind the test is to gain feedback from users about comments on the posts.
Summary:
Adding that the NDA government was a clean government, Jaitley said Congress was manufacturing allegations of corruption against them.
Summary:
Summary:
Japanese conglomerate SoftBank and China's Didi Chuxing have entered into a partnership to provide ride-hailing services in Japan.
Summary:
Observing images of craters on Mars provides scientists insight into the Red Planet's history of water activity, said NASA.
Summary:
Saudi Arabia has temporarily banned imports of live birds, hatching eggs and chicks from India over an outbreak of a bird flu virus in the state of Karnataka.
Summary:
A tehsildar in Jammu and Kashmir's Anantnag was suspended for delegating the task of unfurling the National Flag on Republic Day to a patwari.
Summary:
China has agreed to reopen the Nathu La pass for Indian pilgrims to undertake the Kailash Mansarovar Yatra, Minister of State for External Affairs VK Singh informed the Lok Sabha on Thursday.
Summary:
India has been ranked 44 out of 50 nations in the latest international Intellectual Property index released by the US Chambers of Commerce.
Summary:
The Akshay Kumar starrer 'Pad Man', which released today, "scores high on content as well as emotions," wrote Bollywood Hungama.
Summary:
The Competition Commission of India (CCI) on Thursday imposed a fine of â¹135.86 crore on Google for "search bias", in the latest regulatory setback for the world's most popular internet search engine.
Summary:
In 1869, Dmitri Mendeleev arranged elements in rows and columns in increasing order of atomic weight, thus devising the 'Periodic System'.
Summary:
After nearly 12 years, Twitter posted its first-ever profit of $91 million for the fourth quarter of 2017.
Summary:
Summary:
The Mumbai Police on Wednesday cancelled the conditional licences granted to the three of the city's dance bars for failing to comply with fire safety norms.
Summary:
The report is said to have been leaked from the CBI since it was found unsigned at Chidambaram's residence.
Summary:
A Pakistan court has sentenced a man to death and five others to life imprisonment in a case involving a university student who was lynched over fake allegations of posting blasphemous content online.
Summary:
Al-Qaeda's global network remains "remarkably resilient" as ISIS "currently remains unable to reach a dominant position", UN sanctions monitors have said in a report.
Summary:
The instructor had come up with the idea when the use of recreational marijuana was illegal in the state.
Summary:
However, its operating profit more than doubled to â¹298 crore.
Summary:
Talking about Diljit Dosanjh, who'll portray him, Sandeep further said, "He's a real Singh, a Sardar."
Summary:
Dev is the only Indian pacer to take 400-plus wickets in Tests.
Summary:
The Norwegian delegation has taken more than 6,000 doses of asthma medication to the 2018 Winter Olympics in South Korea's Pyeongchang.
Summary:
Virender Sehwag's 62(31) went in vain as Shahid Afridi-led Royals defeated Palace Diamonds by six wickets in the first T20 match of the St Moritz Ice Cricket tournament on Thursday.
Summary:
The couple's first son Thiago was born in 2012 while their second son Mateo was born in 2015.
Summary:
After fans threw candies onto the pitch during the German Cup quarter-final between Frankfurt and Mainz, referee Deniz Aytekin picked up a candy and offered it to a player before eating it himself.
Summary:
Asking Trinamool Congress leaders to stop "throwing mud" at his office, West Bengal Governor KN Tripathi has said they should instead "go to the washroom" and wash the dirt off their faces.
Summary:
The constable, who became acquainted with the inspector in connection with a case, said he spiked her drink, raped and made a video at gunpoint in 2010.
Summary:
The man, who wanted to meet the CM, produced a fake identity card which showed his association with a healthcare establishment in Pune.
Summary:
Of the beneficiaries, 44% are from SC/ST communities, he said, adding all households belonging to the communities will be covered under it.
Summary:
The complainant alleged the accused gave her a drink which made her dizzy and made the video after she fell asleep.
Summary:
Both students have reached a compromise, police added.
Summary:
Interestingly, the minister had earlier claimed that the theory was scientifically wrong, and said it shouldn't be taught to students.
Summary:
Warren Clark's application was found in Mosul, the Iraqi city which was an ISIS stronghold until it was recaptured by the US coalition forces in July 2017.
Summary:
A professor at US' Northeastern University was caught on video telling his students that he would not mind seeing President Donald Trump dead.
Summary:
Swiss telecom operator Swisscom has revealed that information belonging to roughly 10% of the country's population has been stolen in a data breach.
Summary:
Earlier, Akhtar had said praying to God shouldn't disturb others.
Summary:
A modified Airbus performed parabolic manoeuvres involving the plane to go high, followed by a quick drop to induce weightlessness.
Summary:
Schools and colleges across Andhra Pradesh were shut as people took to the streets during the state-wide bandh called to protest the "insufficient funds" allotted to the state in Budget 2018.
Summary:
Snapchat added 8.9 million daily active users during the quarter, to reach 187 million.
Summary:
Under the scheme, students pursuing PhD in IITs and IISc will be offered fellowships worth â¹70,000-80,000 per month for five years.
Summary:
Female employees of the central government who choose to have a child through surrogacy will be entitled to a maternity leave of 26 weeks, a government notification said.
Summary:
Over 7.13 lakh divorce cases are pending in courts across the country as of December 2017.
Summary:
A restaurant in United States' Boston is offering customers a $3000 (nearly â¹2 lakh) burger that comes with an engagement ring.
Summary:
Following this, James Wright checked the numbers and realised he had won $100,000 (nearly â¹65 lakh) in the Virginia Lottery.
Summary:
A study by Australian researchers has found that approximately 44% of Bitcoin transactions are associated with illegal trade.
Summary:
The Cabinet on Wednesday approved a proposal to redefine micro, small, and medium enterprises (MSMEs), based on their annual turnover.
Summary:
Pictures of actress Katrina Kaif from the sets of the upcoming film 'Thugs of Hindostan' have surfaced online.
Summary:
Sonakshi Sinha has revealed that a celebrity model once body-shamed her, while adding that she made the remark, "What is this cow doing on the catwalk?" She revealed this on Neha Dhupia's talk show 'BFFs with Vogue', where she appeared with Manish Malhotra.
Summary:
Jacqueline Fernandez will feature in the recreated version of Madhuri Dixit starrer song 'Ek Do Teen Char' in the upcoming film 'Baaghi 2'.
Summary:
Milwaukee Bucks' Giannis Antetokounmpo jumped over New York Knicks' 6-foot-6-inch tall Tim Hardaway Jr for the slam dunk in the NBA on Wednesday.
Summary:
The technology could also replace fingerprint sensors in smartphones to become the de-facto standard for unlocking phones, the report emphasised.
Summary:
'The NoMad Hotel' in US' Los Angeles is housed in a 1920s building that was once the headquarters of the Bank of Italy.
Summary:
In an alleged reference to Tripura CM Manik Sarkar, PM Narendra Modi on Thursday said the people of Tripura had been wearing the wrong 'Manik' (gemstone) and should instead wear a 'HIRA'.
Summary:
Hyderabad-based job advertising startup Joveo has raised $5 million in Series A funding round led by Nexus Venture Partners.
Summary:
A 50-year-old man in Kerala was pushed off a bus and hit by passengers after he tried to help a pregnant woman find a seat, reports said.
Summary:
The complainant has claimed that all the accused were involved in the illegal sale of his over 2-acre land through forged rent receipts.
Summary:
The UK government is considering a proposal to ban the sale of puppies at pet shops and other third-party dealers.
Summary:
The video further shows the "prisoners" falling to the ground, while the "executioner" shoots them again multiple times.
Summary:
RBI Governor Urjit Patel has said India has five taxes on capital that will "obviously" impact investment and savings decisions.
Summary:
Technologies like cryptocurrency can't flourish and grow without thoughtful regulation that connects them to finance, cryptocurrency exchange Gemini's CEO Tyler Winklevoss said.
Summary:
A cryptocurrency startup, which leaked the personal data of its Initial Coin Offering (ICO) investors, allegedly reported the anonymous person who found the bug to the police.
Summary:
Google has been working on a video game streaming service for the past two years, reports added.
Summary:
Every family in Arunachal Pradesh's Bomja village has become a crorepati after the Defence Ministry paid them â¹40 crore to acquire 200.056 acres of land.
Summary:
The autopsy report will ascertain whether he died after getting strangled or due to cutting of his throat.
Summary:
Kohli has slammed nine hundreds and nine fifties in ODIs during the period with 160* being his highest score.
Summary:
US defence research agency DARPA has launched Persistent Aquatic Living Sensors program that will study the viability of using both natural and modified sea organisms to detect underwater vehicles.
Summary:
Congress MP Shashi Tharoor has said that the BJP government is planning a "major assault" on the Constitution if it gets a majority in both the Houses of Parliament.
Summary:
Further, filings also revealed that eBay gained $167 million by selling its India business to Flipkart.
Summary:
The Supreme Court on Thursday adjourned the hearing in the Ayodhya dispute case till March 14 citing the incomplete filing of documents by petitioners.
Summary:
The father of Major Aditya Kumar, who has been named in an FIR regarding the death of two civilians in an Army firing, has moved the Supreme Court demanding the FIR be quashed.
Summary:
Notably, the government in its Budget said it will explore the use of blockchain technology for various solutions.
Summary:
Insurgency-related incidents in Northeastern states declined by 63% in 2017 as compared to 2014, according to Home Ministry data.
Summary:
The police said the accused destroyed the house, while his family members hid in the bathroom.
Summary:
World Bank President Jim Yong Kim has said that most of the cryptocurrencies are "basically Ponzi Schemes".
Summary:
US motorcycle giant Harley-Davidson has announced that it is recalling 2.51 lakh vehicles worldwide over a brake failure issue.
Summary:
Shahid Kapoor has said no one knew he was actor Pankaj Kapur's son till he joined Bollywood.
Shahid further said, "My mother was a struggling actor...who separated from dad when I was growing up.
Summary:
A new trailer of the upcoming superhero film 'Deadpool 2', introducing the antagonist 'Cable' has been released.
Summary:
Lucas Warren, who is from United States' Georgia, was selected from around 1.4 lakh entries submitted online.
Summary:
The painting later ended up with a woman who donated it to a museum.
Summary:
Kuldeep Yadav and Yuzvendra Chahal have taken 21 wickets of the 28 picked by Indian bowlers in three ODIs against South Africa.
Summary:
NBA player LeBron James scored in the last second of the match to hand his team Cleveland Cavaliers a win over Minnesota Timberwolves on Wednesday.
Summary:
Ousted Uber CEO Travis Kalanick has said the cab-hailing startup's relationship with Google was "like a little brother to a big brother." Kalanick's statement came as part of his testimony during the trade secrets trial between Uber and Google spinoff Waymo, which began on Monday.
Summary:
Earlier reports said that WhatsApp was working with banks including HDFC and ICICI to integrate its UPI-based payments platform.
Summary:
A US-based startup Cardiogram has devised an artificial intelligence system that was able to detect diabetes with nearly 85% accuracy, based on heartbeat data from wearable fitness trackers.
Summary:
FBI officials arrived at the scene, while the police escorted the passenger off the flight.
Summary:
US-based business-software maker Workday is launching a $250 million Workday Ventures fund for artificial intelligence (AI), blockchain, augmented and virtual reality statups.
Summary:
Noida-based student accommodation startup Placio has raised $2 million in Pre-Series A funding round led by Singapore-based venture capital firm Prestellar Ventures.
Summary:
However, the friendly nations didn't include India to which ex-Maldives President Mohamed Nasheed asked for help in resolving the crisis.
Summary:
Rachel Crooks, who publicly accused US President Donald Trump of forcibly kissing her when she worked at Trump Tower in New York in 2005, has announced that she is running for the state legislature in Ohio.
Summary:
The SP Concept's front mask combines a bold formative design with Kia's unique 'Tiger nose' grille.
Summary:
A Bangladesh court on Thursday sentenced Opposition leader and two-time ex-PM Khaleda Zia to five years in jail for corruption.
Summary:
An American entrepreneur is opening a 'women-only' holiday retreat on an artificial island in Finland where no man will be allowed.
Summary:
India's World Cup-winning Under-19 head coach Rahul Dravid was paid â¹2.4 crore by the BCCI for a 6-month period that ended on December 31, 2017.
Summary:
The gain in this region is in contrast to $360 million loss, incurred during the corresponding period that ended in December 2016.
Summary:
Summary:
Former Congress President Sonia Gandhi on Thursday said that her son and new Congress President Rahul Gandhi is her boss too and there is "no doubt about it".
Summary:
Walmart is reportedly planning to spend $5-10 billion for a substantial stake in Flipkart, making it one of the largest cross-border deals in India.
Summary:
The funding amount will be used to develop its technology, the startup's Chief Executive Officer Sriharsha Majety said.
Summary:
The company also revealed that it has a cash balance of $3.4 billion while entering the first quarter of 2018.
Summary:
The 10-km-wide asteroid that hit Earth 66 million years ago and triggered the extinction of dinosaurs set off a chain of land and undersea volcanic eruptions, claims a new study.
Summary:
A total of 100 bike ambulances will be introduced in the next six months.
Summary:
The party had earlier slammed the government over non-allocation of funds promised during the separation of Telangana and Andhra Pradesh.
Summary:
The Hizbul Mujahideen has claimed responsibility for the attack.
Summary:
Scottish police officers engaged in a 45-minute armed standoff with a 'tiger' before realising it was a stuffed animal.
Summary:
In a series of Instagram stories, Mallika wrote, "Each time you feel weak, each time you feel lesser for no reason...hold up a sanitary pad and post a picture.
Summary:
Ekta Kapoor has announced her production house Balaji Motion Pictures will be producing a film on Amul founder Verghese Kurien, who is known as 'Milkman of India'.
Summary:
Apple has admitted to sending wrong details on app installs and ad spends to iOS developers, citing 'processing error' as the cause of the problem.
Summary:
Google India's MD Rajan Anandan has said, by 2020, the number of Indians using Internet on smartphones will double to 600-650 million, nearly half of India's population.
Summary:
Technology giant Google is facing a class action lawsuit by Pixel, Pixel XL smartphone users over microphone defects in the devices.
Summary:
Jim Mee said he skated nine hours per day for three days, in temperatures as low as -47ð C.
Summary:
Slamming BJP MP Vinay Katiyar for his 'Muslims should go to Pakistan' remark, former Jammu and Kashmir CM Farooq Abdullah said, "Does this country belong to Katiyar's father?" Adding that India belongs to all the citizens irrespective of their religion, Abdullah asserted, "People who talk like this, only breed hatred.
Summary:
Former Congress President Sonia Gandhi on Thursday said she'll work with the party members and other like-minded parties to defeat BJP in the 2019 Lok Sabha elections.
Summary:
Japan's Norishige Kanai and Russia's Anton Shkaplerov teamed up against Russia's Alexander Misurkin and US' Mark Vande Hei, who was then replaced by compatriot Joseph Acaba.
Summary:
The Supreme Court has directed the Uttar Pradesh government to file before it a vision document for the protection and preservation of the Taj Mahal within four weeks.
Summary:
The Indo Tibetan Border Police (ITBP) force has started the process of procuring all-terrain non-amphibious vehicles for deployment on India-China border, a government official said.
Summary:
Pelosi delivered the speech wearing four-inch-heels, forgoing any breaks, and only sipping water.
Summary:
But knowing that your family is always secure and safe in that home is the ultimate achievement.
Summary:
A picture posted by reality television personality Kylie Jenner, wherein she revealed her newborn daughter has been named Stormi Webster, has become the most liked Instagram post ever.
Summary:
Bermuda has become the world's first country to abolish same-sex marriages, almost a year after it had allowed the same in May 2017.
Summary:
Militant outfit Hizbul Mujahideen on Wednesday released an audio, wherein it claimed responsibility for the attack on a Srinagar hospital to free Pakistani Lashkar-e-Taiba terrorist Naveed Jhatt.
Summary:
Jhulan Goswami on Wednesday became the first woman cricketer to take 200 ODI wickets, achieving the feat over 26 years after Kapil Dev became the first male cricketer to reach the same milestone.
Summary:
A software engineer has been arrested in Mumbai for allegedly creating Sachin Tendulkar's daughter Sara Tendulkar's fake Twitter handle and posting offensive comments against NCP chief Sharad Pawar.
Summary:
Interestingly, the car features a "DON'T PANIC" message on its dashboard.
Summary:
Turing Robotic's CEO Steve YL Chao said the company has filed for bankruptcy in order to temporarily suspend its "manufacturing intentions".
Summary:
The diode used quantum tunnelling to rectify infrared waves into current by moving electrons through a small barrier.
Summary:
Union Minister Nitin Gadkari on Wednesday said that 80% of the Ganga river will be cleaned before the Kumbh Mela in 2019.
Summary:
Police on Tuesday arrested around 70 gangsters after crashing the birthday party of their kingpin in Chennai.
Summary:
The Railways Ministry on Wednesday informed the Parliament that bed linens in trains are washed after every use, while the blankets are cleaned at least once in two months.
Summary:
The Uttar Pradesh government is planning to introduce a bill granting ancestral property rights to unmarried granddaughters who have lost their fathers.
Summary:
The notice also warned of attachment of the property if the tax is not deposited.
Summary:
Intelligence agencies have alerted Jammu and Kashmir and Central authorities that the militant group Lashkar-e-Taiba (LeT) is in the process of infiltrating 45 of its militants into the state.
Summary:
The Pakistan Electronic Media Regulatory Authority (PEMRA) on Wednesday directed all print and electronic media not to show or promote Valentine's Day celebrations.
Summary:
The US Department of Treasury has designated three individuals allegedly linked to Pakistan-based terror networks including Lashkar-e-Taiba (LeT) and Taliban as Specially Designated Global Terrorists.
Summary:
After registering their third consecutive ODI win against South Africa on Wednesday, India took their winning streak in ODIs away from home to record nine matches.
Summary:
Snapchat has said that it has no intention to allow users to broadcast Live on the platform, despite announcing it will pipe snippets of NBC's Live Olympics coverage.
Summary:
Technology giant Google has paid nearly $3 million (â¹19.3 crore) as awards in bug bounty programs in 2017.
Summary:
Air India has requested Saudi Arabia for permission to fly over Saudi airspace for its planned route to Israel, an airline spokesperson said.
Summary:
A Cold War-era US military plane is being converted into a 50-seat open dining area in Cleveland.
Summary:
Every day, over 800 million viruses are deposited per square metre above the atmosphere according to a study by scientists in Canada, Spain, and the US.
Summary:
Women in a village in Madhya Pradesh's Jhabua have set up a sanitary pad manufacturing unit, despite opposition from elders and men, to help women risking their health and falling prey to infections.
Summary:
The Delhi government has decided to introduce a 'happiness curriculum' in government schools for students from nursery to class 8.
Summary:
Canadian PM Justin Trudeau has said that he made a "dumb joke" when he recently urged a woman to use the term 'peoplekind' instead of 'mankind' because it was "more inclusive".
Summary:
Guzman's lawyers had earlier said that the drug lord promised not to kill any jurors.
Summary:
The last time India failed to win an ODI series was in January 2016 in Australia.
Summary:
The list was topped by Ripple Co-founder Chris Larsen, who is estimated to have a crypto net worth of $7.5-8 billion.
Summary:
India captain Virat Kohli on Wednesday slammed 160*(159) against South Africa to record the highest score by an Indian in an ODI in South Africa.
Summary:
Jeetendra's lawyer, while denying sexual harassment allegations against the actor, called the claims "baseless, ridiculous and fabricated".
Jeetendra's cousin had filed a complaint against him claiming that he sexually abused her when she was 18 and he was 28.
Summary:
Addressing the Rajya Sabha on Wednesday, Prime Minister Narendra Modi took a jibe at Rahul Gandhi over his elevation as Congress President.
Summary:
A brain implant, which sends electrical impulses like a pacemaker in heart, has been reported by UPenn neuroscientists to improve word recall by 15% in 25 epilepsy patients.
Summary:
The Madhya Pradesh Forest Department has been circulating an adapted version of the "70 minutes" speech in Shah Rukh Khan's movie 'Chak De!
Summary:
Indian embassies in different countries are homes away from home for Non-Resident Indians, External Affairs Minister Sushma Swaraj has said.
Summary:
Finance Minister Arun Jaitley has said the production of â¹10 coins has been halted temporarily as enough stock was available.
Summary:
Adding that cryptocurrencies don't have any "intrinsic value", he said most will never see their recent peaks again.
Summary:
India's third largest telecom operator Idea Cellular on Wednesday said it has suspended interconnect services with Aircel over non-payment of dues "despite several reminders".
Summary:
Supermarket giant Tesco is facing the UK's largest ever equal pay claim of up to $5.6 billion.
Summary:
Transactions worth about â¹131.95 trillion were carried out during the month via digital means.
Summary:
Social activist Arunachalam Muruganantham has said he cried after watching Akshay Kumar portray him in the film 'Pad Man'.
Muruganantham further said, "It was like my whole life, all its struggles...flashing in front of me.
Summary:
Reacting to Virat Kohli scoring his 55th international century, a user wrote, "Ran 100 for himself and many more for his partners.
Summary:
Kohli remained unbeaten in the innings, scoring 160 off 159 balls.
Summary:
Malinga represented Mumbai Indians as a player in 110 matches and took 154 wickets.
Summary:
There was a brawl on a plane in Russia after a 38-year-old man demanded to be allowed off the aircraft for a smoke just before takeoff.
Summary:
During his speech at the Lok Sabha on Wednesday, Prime Minister Narendra Modi slammed Congress President Rahul Gandhi for meeting the Chinese Ambassador amid the Doklam standoff, that lasted for over 70 days.
Summary:
The men reportedly forced the taxi to stop by standing in the middle of the road.
Summary:
However, FIRs over crimes like murder won't be withdrawn, officials said.
Summary:
Currently, avionics systems in the country are developed using commercial RTOS procured from foreign suppliers.
Summary:
Jesus himself gave us the flu shot.
Summary:
The European Commission (EC) has said that Serbia and Montenegro could join the European Union (EU) in 2025 as part of the EU enlargement plan for the Western Balkans.
Summary:
The Mahindra Group and the Piramal Group have expressed interest in buying Sahara Group's Aamby Valley resort town, according to the official liquidator.
Summary:
Former India captain Mahendra Singh Dhoni has become the first Indian wicketkeeper and fourth overall to effect 400 ODI dismissals, achieving the feat in the third ODI against South Africa on Wednesday.
Summary:
India Women directly qualified for the 2021 World Cup after taking an unassailable 2-0 lead in the three-match ODI series against South Africa Women on Wednesday.
Summary:
Two men from China's Anhui province were fined 1,000 yuan (over â¹10,000) each for deliberately damaging or defacing the currency after they were filmed setting fire to 100 yuan notes at a party.
Summary:
Virat Kohli became the first Indian batsman to score 100 runs by running in an ODI innings, achieving the feat during his 160*(159) against South Africa on Wednesday.
Summary:
Playing his 46th ODI as captain, Kohli overtook Sourav Ganguly, who had hit 11 centuries in 147 ODIs as captain.
Summary:
The Tesla Roadster car, which was launched into space by SpaceX's Falcon Heavy rocket on Tuesday, features a "DON'T PANIC" message on its dashboard.
Summary:
The 'India Grape Harvest, Vine & Wine Festival 2018' will be organised in Nashik, authorities said.
Summary:
After Prime Minister Narendra Modi joked about her laughter in the Rajya Sabha, Congress MP Renuka Chowdhury questioned, "What do you expect from a Prime Minister of this category?" The Prime Minister has forgotten his status, she added.
Summary:
Reacting to Congress MP Renuka Chowdhury's laughter during his Rajya Sabha address, Prime Minister Narendra Modi said, "After Ramayan serial, we had the privilege of hearing this kind of laughter today." He also requested Rajya Sabha Chairman Venkaiah Naidu to not say anything to Chowdhury.
Summary:
He directed the ministry to transfer the application to the authority that held the information.
Summary:
Over 1.8 lakh students missed the first day of class X and XII Uttar Pradesh Board examinations on Tuesday, Deputy Director of Education Vikas Srivastava said.
Summary:
Officials said if proper tests are done, around 500 cases of HIV would emerge.
Summary:
A North Korean brewery has launched a wheat beer made using an "exclusive" brewing technique after leader Kim Jong-un criticised the quality of lager imported from South Korea, state newspaper Rodong Sinmun reported.
Summary:
A male orangutan died after being shot at least 130 times with an air gun on the island of Borneo in the second known killing of a critically endangered orangutan this year.
Summary:
An Indian man sneaked into the Sharjah International Airport by climbing a wall and reached the runway to catch a plane to meet his fiancee back home.
Summary:
An audio of filmmaker Quentin Tarantino defending Roman Polanski of raping a 13-year-old has resurfaced.
"That's not rape.
Summary:
Left parties in Andhra Pradesh have called for a state-wide bandh on February 8 to protest against the non-allocation of funds to the state in the Union Budget 2018.
Summary:
Congress' social media head Divya Spandana has said that the video circulated by a BJP leader, showing her asking party workers to create fake social media accounts has been edited out of context.
Summary:
A US-based study has revealed that Northern Hemisphere's permafrost, the ground which remains below 0ðC for at least 2 years, is the largest reservoir of mercury on the planet.
Summary:
While one of the accused has been arrested, police are conducting raids to arrest the other five.
Summary:
The complainant said his father started visiting the godwoman against their wishes as his business was not doing well and performed various rituals on her command.
Summary:
A video of an 18-year-old boy thrashing a 45-year-old Muslim cleric for refusing to say 'Jai Shri Ram' in Rajasthan's Sirohi has surfaced online.
Summary:
After Congress MP Renuka Chowdhury accused PM Narendra Modi of disrespecting women over his joke about her laughter, Union Minister Smriti Irani asked if it was justified for Chowdhury to use gender as a shield.
Summary:
The police have arrested a 67-year-old man for allegedly sexually assaulting his six-year-old granddaughter in Maharashtra's Pune.
Summary:
The transformation of a complex of four buildings, which was used as the headquarters by the Nazi secret police Gestapo in Hamburg, into a luxury apartment complex has sparked protests in Germany.
Summary:
'HODL' (Hold On for Dear Life) refers to holding cryptocurrency rather than sell it in the extremely volatile market.
Summary:
Indian women's cricket team pacer Jhulan Goswami has become the first woman in the world to take 200 wickets in ODI cricket.
Summary:
Kohli scored his 34th ODI hundred in his 197th innings while Sachin had reached the landmark in his 298th innings against Namibia in 2003.
Summary:
Rajput organisation Karni Sena has backed Sarv Brahmin Mahasabha in its protest against Kangana Ranaut's 'Manikarnika: The Queen of Jhansi'.
Summary:
SpaceX's Falcon Heavy rocket is the world's most powerful operational rocket, with a liftoff thrust of 5 million pounds and 140,000-pound load capacity.
Summary:
Opener Smriti Mandhana slammed a 129-ball 135 against South Africa at Kimberley on Wednesday to become the first Indian woman cricketer to smash ODI hundreds in three away countries.
Summary:
The glasses are connected to a police database that can match passengers with criminal suspects.
Summary:
PM Modi added that he supported the nation imagined by Mahatma Gandhi.
Summary:
Hitting out at the Congress in the Rajya Sabha on Wednesday, PM Narendra Modi said, "You (Congress) said we are 'name changer' and not 'game changer'.
Summary:
Summary:
Addressing the Rajya Sabha, Minister of State for Home Affairs Hansraj Ahir said that 108 people were arrested in 90 cases of attacks on journalists between 2015-17.
Summary:
Incidents related to communal violence across the country rose to 822 last year from 703 in 2016, MoS for Home Affairs Hansraj Ahir has said.
Summary:
Stressing the need for accelerated action against female genital mutilation, UN Secretary-General Antonio Guterres warned that 6.8 crore girls may face the practice by 2030.
Summary:
An American woman said she was eating a store-bought salad when her fork got stuck in a three-inch dead lizard that was missing a tail.
Summary:
Telecom regulator TRAI has slammed Anil Ambani-led Reliance Communications for "usurping" unspent balances of its mobile customers after its operations were shut down.
Summary:
The fortune of the Nandwanas, who own 42% of Vakrangee, fell after the company's share price tumbled nearly 60% from its January 25 peak.
Summary:
RBI Governor Urjit Patel has said the central bank's projections indicate inflation for 2018-19 will be around 4.5%.
Summary:
Singapore's Deputy PM Tharman Shanmugaratnam has said there hasn't been a strong case yet to ban cryptocurrency trading in the country.
He said, "Cryptocurrencies are an experiment.
Summary:
Disney on Tuesday announced that it is hiring David Benioff and DB Weiss, the creators of HBO series 'Game of Thrones', to write and produce a new series of 'Star Wars' films.
Summary:
Actor Abhishek Bachchan's Twitter account was hacked by a group calling themselves Turkish 'cyber army'.
Summary:
Reacting to Kylie Jenner naming her baby 'Stormi Webster', a Twitter user wrote, "If I ever have a child I'll be naming it Cloudi." "North Chicago Storm.
Summary:
Actor Ajay Devgn has said it's difficult to stay relevant in the film industry.
Devgn further said, "You have to...try to move forward till you can because there'll be a point where you'll start moving backwards."
Summary:
All-rounder Glenn Maxwell picked up three wickets and slammed an unbeaten 103 off 58 balls to help Australia defeat England by 5 wickets in the T20I tri-series on Wednesday.
Summary:
Paris closed the Eiffel Tower after heavy snow blanketed northern France on Tuesday.
Summary:
Addressing the Kerala Assembly, Chief Minister Pinarayi Vijayan on Wednesday said that the state was considering a law on attacks by pet dogs due to the increasing cases of such attacks.
Summary:
An 11-year-old girl from Uttar Pradesh died on Wednesday after she was allegedly slapped by a private school teacher, police officials said.
Summary:
The national carrier's low-cost arm Air India Express generated the maximum profit of â¹297 crore while ground handling subsidiary AIATSL made a profit of â¹61.66 crore in FY17.
Summary:
She added she decided to file a police complaint after the demise of her parents.
Summary:
The Mask actor Jim Carrey has said he is "dumping" his Facebook stock and deleting his Page because the company profited from Russian interference in the last US elections.
Summary:
Khatun was not included in the Indian contingent despite meeting the eligibility criteria.
Summary:
The employee, Tavis McGinn, has revealed that his job was to do surveys and focus groups globally to understand why people like him.
Summary:
Apple has filed for a patent which shows a stylus that can write on any flat surface and even in the air.
Summary:
Russian capital city Moscow has witnessed its heaviest snowfall in over 100 years as one month's worth of snow has fallen in two days.
Summary:
Congress President Rahul Gandhi on Wednesday said, "I think Modiji has forgotten that he is the PM now, he should answer questions and not always accuse the Opposition." The PM spoke for over an hour and never talked about farmers or youth employment issues, he added.
Summary:
The entire Kashmir would have been part of India if Sardar Vallabhbhai Patel was made the country's first Prime Minister instead of Jawaharlal Nehru, PM Narendra Modi said in the Parliament on Wednesday.
Summary:
Asteroid 2018 CC, estimated to be around 15-30 metres in size, safely flew past Earth on Wednesday at 1:40 am IST at a distance of about 1,84,000 km, nearly half the average Earth-Moon distance, NASA revealed.
Summary:
The festival is held once every 12 years and has drawn thousands of Jain seers and devotees from across the country.
Summary:
India successfully test-fired indigenously developed nuclear-capable Prithvi-II missile on Wednesday.
Summary:
Jamiat Ulama-i-Hind chief Arshad Madani on Tuesday said the government should declare cow as the national animal and added it will ensure the safety of both cows and human lives.
Summary:
A male model reached online-only beauty pageant Miss Virtual Kazakhstan's final after receiving over 2,000 votes for a picture.
Summary:
A pub owner in the UK has spent nearly ã100,000 (â¹90 lakh) to modify his Ford Focus RS, which he bought in 2011 for ã27,000 (â¹24 lakh).
Summary:
The Wall Street Journal reported that Wynn harassed female employees for decades and coerced them into sex.
Summary:
Karan Johar has shared a picture of his twins Yash and Roohi on the occasion of their 1st birthday.
Summary:
Speaking about the upcoming biopic on Prime Minister Narendra Modi, actor Paresh Rawal said, "Only I can play Modi ji." "I say that even at the cost of sounding pompous because I really love him...Just by sporting a white beard, someone can't be Modi ji on screen," he added.
Summary:
Englishman Richard Stokes was just 10 years old when he accompanied his father to the 1956 Ashes Test at Old Trafford, where Jim Laker took Test cricket's first-ever 10-wicket haul.
Summary:
Indian fast bowler Javagal Srinath deliberately bowled wide off the stumps to avoid taking a wicket when the Pakistan team had lost 9 wickets to leg-spinner Anil Kumble in the Delhi Test on February 7, 1999.
Summary:
Cricket legend Sachin Tendulkar has requested the BCCI to consider recognition of Cricket Association for the Blind in India (CABI) and bring the visually-impaired players under its pension scheme.
Summary:
Portuguese football club Boavista conceded an alleged offside goal after the VAR (Video Assistant Referee) camera was blocked out by its fan waving a giant flag.
Summary:
Reacting to SpaceX launching a Tesla car into space on its most powerful rocket, a user tweeted, "You can say musk's Tesla cars are out of this world!
Summary:
Twitter also suspended "mydeepfakes" account, which was spreading fake celebrity porn videos using artificial intelligence (AI).
Summary:
Summary:
Sidelined AIADMK leader TTV Dhinakaran has said that he is ready to merge with the party faction led by Tamil Nadu CM EK Palaniswami and Deputy CM O Panneerselvam if they sack six ministers from the cabinet.
Summary:
Notably, ozone layer blocks the Sun's cancer-causing UV radiation from reaching Earth.
Summary:
A China-made robot was muted and reportedly formatted after it interrupted Turkish Communications Minister Ahmet Arslan during an event on Tuesday.
Summary:
The RBI has kept the repo rate, the rate at which banks borrow from RBI, steady at 6% for the third time in a row during its sixth bi-monthly monetary policy review.
Summary:
'Pari', which is Anushka's third film as a producer, is scheduled to release on March 2.
Summary:
Singhvi had also swum a 36-km stretch along the Mumbai coast last year.
Summary:
Speaking at the Lok Sabha on Wednesday, Prime Minister Narendra Modi said that the Congress had divided India 70 years ago for electoral reasons and petty gains.
Summary:
US-based scientists have detected the first experimental evidence of 'superionic water ice'.
Summary:
North Korean leader Kim Jong-un's younger sister, Kim Yo-jong, will become the first member of the Kim dynasty to visit South Korea when she attends the opening ceremony of the 2018 Winter Olympics there on Friday.
Summary:
Late NASA astronaut Bruce McCandless became the first person to fly untethered in space on February 7, 1984 when he exited space shuttle Challenger.
Summary:
Jessop survived the sinking of HMHS Britannic, a hospital ship during World War I and was also on the RMS Titanic when it sank on its maiden voyage in 1912.
Summary:
The new national parks, which aim to preserve vast tracts of Patagonia, comprise 9 million acres of federal land and over 1 million acres of land donated by American philanthropists.
Summary:
The first modern Briton had dark skin and blue eyes, London-based scientists revealed after DNA analysis of a man who lived 10,000 years ago.
Summary:
A minor girl, who was rescued by Telangana Police from child marriage in April 2017, has been felicitated for excelling in sports by Rachakonda Police Commissioner.
Summary:
US President Donald Trump has said that he would love to see a government shutdown if no deal on reforming the country's immigration system is reached in the Senate.
Summary:
Some US East Coast residents received a false tsunami warning on Tuesday.
The US National Weather Service (NWS) said that it sent a routine test warning, however, some people received an actual warning.
Summary:
The gang members were suspected of involvement in several robberies wherein they threw chilli powder at the victims before snatching their valuables.
Summary:
A new poster of the upcoming superhero film 'Deadpool 2', starring actor Ryan Reynolds, has been released.
Summary:
Automotive manufacturing company Tata Motors' CEO Guenter Butschek has said that achieving the government's vision of 100% electrification of public transport by 2030 is a 'huge challenge'.
Summary:
Google has released a new version of its GIF-making Android app 'Motion Stills' which adds augmented reality (AR) objects to GIFs and videos.
Summary:
Air India will get a one-time grant of â¬750,000 (approximately â¹6 crore) from Israel for launching direct flights between New Delhi and Tel Aviv, a senior Israeli official said on Tuesday.
Summary:
Aamir Khan-backed furniture rental startup Furlenco has raised $1.5 million in debt funding from investors including Rekha Hrishikesh Mafatlal, Lakshmi Narayanan, and M Krishna Sindhuri Private Trust.
Summary:
The VC fund has made investments across 10 startups since its inception in 2015.
Summary:
German-based scientists are studying the marbled crayfish, an all-female species that reproduce asexually, to understand how cancerous tumours grow and spread.
Summary:
Katiyar said this while reacting to AIMIM chief Asaduddin Owaisi's demand that people who call an Indian Muslim âÂÂPakistaniâ be punished.
Summary:
The Supreme Court on Wednesday canceled 88 iron ore mining lease renewals in Goa and held that mining in the state would stop after March 15.
Summary:
The accused would inform his friends about the drugs he had by updating his Snapchat status, police said.
Summary:
The people in Uttar Pradesh's Unnao, where a quack transmitted HIV to around 40 people by reusing a syringe, have claimed that the quack was polite and respectful and his medicines were cheap.
Summary:
Congo's rebel group Allied Democratic Forces (ADF), against which the government launched an offensive last month, is suspected of being behind the attack.
Summary:
Bengaluru-based healthcare startup Healthi has raised $3.1 million in a funding round led by Mumbai-based Montane Ventures.
Summary:
Asian Paints has released a new digital film '#HomesNotShowrooms' with the idea to inspire people to lead richer lives in their dream home.
Summary:
Prime Minister Narendra Modi's estranged wife Jashodaben on Wednesday was injured in a road accident which took place on the Kota-Chittor highway in Rajasthan, police officials said.
Summary:
Upon realising that the vessel would sink after it hit an iceberg, Andrews went from cabin to cabin to urge the passengers to get on the lifeboats.
Summary:
The Vice-President of White Star Line, the company that produced passenger steamship RMS Titanic, had declared the ship to be "unsinkable".
Summary:
All India Majlis-E-Ittehadul Muslimeen chief Asaduddin Owaisi has said the government should bring a law that makes calling an Indian Muslim 'Pakistani' a punishable offence.The offence should be non-bailable and the offender should face a 3-year jail term, he added.
Summary:
Elon Musk's SpaceX has launched the world's most powerful operational rocket carrying a Tesla Roadster car.
Summary:
The Supreme Court on Tuesday said that the possibility of misuse of Aadhaar law is not a sufficient reason for striking it down.
Summary:
A professor from Delhi University's Bharati College has been accused by a student of asking his students to kiss and hug him.
Summary:
A man was arrested in Hyderabad for possessing an Indian National Flag that had a 'crescent moon' symbol at its centre instead of the Ashoka Chakra.
Summary:
Indian princess Sophia Alexandra Duleep Singh has been honoured with a Royal Mail stamp of the UK to mark the centenary of the suffragette movement.
Summary:
Maldives' Supreme Court on Tuesday revoked an order to release nine imprisoned opposition MPs "in light of the concerns raised by President Abdulla Yameen".
Summary:
Indian martial arts expert Vispy Jimmy Kharadi allowed a total of 49 watermelons to be cleanly chopped within a minute on his stomach.
Summary:
Actress Priyanka Chopra, while speaking about her relationships, revealed that she has dated someone in America.
Summary:
A special screening of Akshay Kumar, Sonam Kapoor and Radhika Apte starrer 'Pad Man' was held for Information and Broadcasting Minister Smriti Irani on Tuesday.
Summary:
Responding to Bombay High Court's verdict regarding his early release from prison in the 1993 serial bomb blasts case, actor Sanjay Dutt said, "Truth prevails." "This is a big relief.
Summary:
Actress Priyanka Chopra has featured on the cover of the latest edition of Filmfare magazine titled 'Heartbreak is a b**ch'.
Summary:
The release date of Salman Khan starrer 'Kick 2', which will be a sequel to the 2014 film 'Kick', has been announced as Christmas 2019.
Summary:
A number of universities, including Manchester University, introduced similar anonymous reporting tools.
Summary:
Elon Musk-led SpaceX has confirmed it could not recover the central core booster of the Falcon Heavy rocket, which was supposed to land on a drone ship after the launch on Tuesday.
Summary:
Google has reportedly agreed to buy New York City's Chelsea Market building for more than $2 billion.
Summary:
metallidurans digests toxic compounds and excretes gold pellets, almost nine years after its discovery.
The rod-shaped bacteria live in the soil and flush out toxic metals using an enzyme, which is suppressed in the presence of gold.
Summary:
India's Ambassador to the United Nations Syed Akbaruddin on Tuesday slammed the Sanctions Committees for taking decisions beyond "the gaze of public knowledge".
Summary:
Then Chief Medical Officer of Uttar Pradesh's Unnao Dr Rajendra Prasad was allegedly told about a quack transmitting HIV by reusing a syringe in July 2017, which led to 40 HIV positive cases.
Summary:
A video has surfaced which claims to show staff of a Pakistani medical college smashing students' mobile phones with stones as part of a drive to enforce code of conduct at the institution.
Summary:
The US State Department on Tuesday said that the country could lift the suspension of security assistance to Pakistan if it takes "decisive and sustained" actions against terror groups.
Summary:
Trudeau is a vocal feminist and advocates for gender equality.
Summary:
Apple has said it has seen a "strong demand" for iPhone battery replacements and may offer rebates to users who paid full price for new batteries.
Summary:
Elon Musk-led SpaceX has successfully launched the world's most powerful operational rocket Falcon Heavy towards Mars.
Summary:
The epicentre of the earthquake was at a depth of 9.5 kilometres and 21 kilometres to the north-northeast of Hualien, the US Geological Survey reported.
Summary:
Paul Marciano, the Co-founder of the fashion label Guess, has denied the sexual harassment allegations made against him by actress and supermodel Kate Upton.
"I have never been alone with Kate Upton.
Summary:
Alleging that Rajya Sabha Chairman Venkaiah Naidu was not letting them speak, Opposition members on Tuesday boycotted the Rajya Sabha.
Summary:
Summary:
A police constable employed at the Axis Bank chest branch in Jaipur, which has over â¹900-crore deposits, on Tuesday foiled a robbery bid by 13 armed men.
Summary:
Notably, former Maldives President Mohamed Nasheed has asked India for military intervention to help release the political detainees.
Summary:
The Supreme Court on Tuesday criticised the Delhi government and its police force for not following the action plans prepared by their own task force to decongest traffic in the city.
Summary:
The West Bengal Police has arrested the husband and brother-in-law of a woman who alleged that her husband sold her kidney without her knowledge after she failed to provide â¹2 lakh as dowry.
Summary:
Naveed Jat, the 20-year-old Lashkar-e-Taiba militant who escaped from a Srinagar hospital on Tuesday, was involved in multiple terror attacks that killed several security personnel between 2013-14.
Summary:
Adding that the Sharifs were caught looting the country, Zardari said that they will have to quit politics.
Summary:
Mercedes-Benz has apologised to Chinese consumers over a social media post which quoted Dalai Lama, whom China considers a separatist.
Summary:
North Korea may be months away from acquiring the capability to strike the US with nuclear weapons, US disarmament ambassador Robert Wood has said.
Summary:
The warrant was issued in 2012 after Assange breached bail conditions imposed in connection with a rape case in Sweden and sought asylum at Ecuador's embassy in London.
Summary:
Created three years ago, the 'The Mystery of Satoshi Nakamoto' puzzle encoded series of zeroes and ones in complex rows of flames canvas' edge.
Summary:
It added that time taken for processing these applications and allotment of PAN ranges from few hours to two weeks.
Summary:
South Korea's spy agency has reportedly informed the country's parliament that North Korea could have been behind the world's largest cryptocurrency hack that took place last month.
Summary:
Summary:
Mathew said, "When it comes to black females, who (gets) their music played on pop radio...Mariah Carey, Rihanna, Beyonce and Solange...what do they all have in common?"
Summary:
South Africa were dismissed for 118 at Centurion, their lowest-ever ODI total at home.
Summary:
Twenty-year-old Watford winger Richarlison was seen crying after being substituted in the second half in the Premier League match against Chelsea on Monday.
Summary:
Addressing the Parliament, Finance Minister Arun Jaitley has said a special formula is being devised to release funds to Andhra Pradesh.
Summary:
He further said two night shelters, worth â¹2 crore, are being constructed under a government scheme.
Summary:
Puducherry Lieutenant Governor Kiran Bedi's Twitter account was hacked on Tuesday by a Turkish group.
Summary:
The app will be beneficial for commuters as most auto rickshaws reportedly do not ferry customers for short distances and overcharge at odd hours.
Summary:
The 18-year-old Pune girl who was mistakenly accused of being an Islamic State bomber has claimed that her admission to a nursing college in Jammu and Kashmir was cancelled after she was detained.
Summary:
Nearly 100 incidents of illegal entries have been recorded at Delhi's Indira Gandhi International Airport in 2017, prompting the arrest of 130 Indians and foreigners, MoS for Civil Aviation Jayant Sinha has said.
Summary:
Mumbai Police have upgraded security given to singer Sonu Nigam and two BJP MLAs after receiving intelligence from Jammu and Kashmir Police about threat to their lives.
Summary:
The Chittagong Test pitch on which Sri Lanka and Bangladesh scored combined 1,533 runs, including five centuries and six half-centuries, has been rated as 'below average' by the ICC.
Summary:
DMK MLA and former Tamil Nadu Minister KN Nehru on Tuesday said they would allow students to cheat in the NEET exam if his party was in power and failed to get an exemption.
Summary:
A nine-member committee has concluded in its report to the Karnataka government that having a separate flag for the state is not against the Constitution, reports said.
Summary:
Justifying the government's move, President Rodrigo Duterte said that disposing the cars at auctions would have given the smugglers an opportunity to secure them legally.
Summary:
Notably, the DLA processes supply orders on behalf of the armed forces and related federal agencies.
Summary:
Japanese Princess Mako has postponed her marriage to commoner Kei Komuro until at least 2020, saying they are not yet ready for it.
Summary:
Doritos has denied the reports claiming it is launching a "lady-friendly" version of tortilla chips which would be less crunchy, less messy and come in special packages to fit into women's bags.
Summary:
Akshay Kumar has said that he always wanted to work in and make socially relevant films, while adding, "I didn't have enough money, but now I can." He added, "Even Hollywood does not have a single film on sanitary pads or menstrual hygiene.
Summary:
Actor Rajpal Yadav has said that no filmmaker is God while adding, "This film industry has been in existence for over 100 years now...
Summary:
Actress Neha Dhupia will be playing a drama instructor in the upcoming Kajol and Ajay Devgn starrer film, which has been tentatively titled 'Eela''.
Summary:
Inzamam-ul-Haq got out obstructing the field during an ODI against India on February 6, 2006, and later claimed that he did not know the exact rule.
Summary:
After Defence Minister Nirmala Sitharaman refused to reveal the amount spent on acquiring 36 Rafale fighter jets from France, Congress President Rahul Gandhi said the deal was a 'scam'.
Summary:
The petition argues that most people don't know how major decisions in the SC are taken and streaming of major cases will help "bridge the gap".
Summary:
The pet dogs had escaped from their cage after their owners went to visit a church.
Summary:
Under the policy, such vehicles parked in public spaces will be seized and sent to enrolled scrap dealers for dismantling.
Summary:
A week after ending his 783-day protest demanding a CBI inquiry into the custodial death of his brother, Sreejith has launched another protest against the police at the Kerala Secretariat.
Summary:
Kerala Finance Minister Thomas Isaac claimed a reimbursement of â¹1.2 lakh from the state exchequer for his 14-day Ayurvedic treatment at a private clinic in Malappuram, an RTI reply has revealed.
Summary:
The Indian Institute of Technology Bombay has withdrawn its decision banning non-vegetarian food in a cafe on the campus.
Summary:
The two were riding a two-wheeler when they were hit by a vehicle owned by a liquor contractor.
Summary:
Stating that war is not a solution to anything, former Jammu and Kashmir CM Farooq Abdullah on Monday questioned if Pakistan was the only nation firing across the border.
Summary:
Former Afghanistan President Hamid Karzai has said the entire world knows that Jamaat-ud-Dawah chief Hafiz Saeed is responsible for the 26/11 Mumbai terror attacks.
Summary:
A Vietnamese court has sentenced an activist to 14 years in jail for live-streaming a protest against a steel plant.
Summary:
Last month, reports claimed that Trump had a sexual affair with a pornstar in 2006 while Melania was pregnant.
Summary:
The government has discovered Goods and Services Tax (GST) evasion amounting to â¹5.7 crore in 16 cases in first five months of the ongoing fiscal.
Summary:
Canada's smallest bank by assets, VersaBank, has said it is building a blockchain based virtual vault to store cryptocurrencies and other digital assets.
Summary:
Mangaluru woman entrepreneur Shilpa, who runs a mobile food business, has received a new truck from Anand Mahindra just over a month after he offered to invest in her expansion plan.
Summary:
Transport Minister Nitin Gadkari on Tuesday said he has requested actor Akshay Kumar to become the brand ambassador for the government's road safety awareness campaign.
Summary:
Tamil Film Producers Council has decided to go on an indefinite strike from March 1, while adding there will be no new film releases in theatres.
Summary:
Trott's average remains the highest Test batting average for Australia.
Summary:
The convicts had claimed that the man was planning an armed robbery.
Summary:
His remark came when the court asked why only women and girls were being "abandoned" by parents at Dixit's ashrams.
Summary:
Former Pakistan President and husband of late PM Benazir Bhutto, Asif Ali Zardari, has claimed that Bhutto and former Indian PM Rajiv Gandhi were ready to resolve the Kashmir dispute.
Summary:
The crew members were tortured for nearly a year at a detention centre near Pyongyang.
Summary:
Women above the age of 30 who owned property were given the right to vote in the UK on February 6, 1918.
Summary:
Chuyang has trained over 100 students at several local yoga centres.
Summary:
Trump further said the Democrats would rather see him fail than watch the country do well.
Summary:
In the game, a soldier mimics a real-life mission to clear out drugs in Afghanistan, the world's top cultivator of poppy, from which opium and heroin are produced.
Summary:
The 'Flamenco Ice Tower' is the worldâÂÂs largest ice sculpture, and took two years to build.
Summary:
The price of world's largest cryptocurrency Bitcoin fell below $6,000 on Tuesday, falling nearly 60% since the start of this year.
Summary:
Further, the government has now cleared a proposal allowing 100% FDI in single-brand retail via automatic route.
Summary:
Berkshire Hathaway CEO and world's third-richest person Warren Buffett, who lost $5.1 billion, was the worst hit.
Summary:
Nearly â¹10 lakh crore was wiped out from the market capitalisation of BSE-listed companies in the last 6 days, bringing the total market cap to â¹145 lakh crore.
Summary:
He said this on the Neha Dhupia-hosted talk show 'BFFs with Vogue', where he made an appearance along with Sonakshi Sinha.
Summary:
He added that India will then rise from "2.zero to 200.zero" while referring to Rajinikanth's upcoming release '2.0'.
Summary:
A costume drama has its own unique set of challenges," Ranveer added.
Summary:
India's Under-19 World Cup-winning coach Rahul Dravid has reportedly questioned the disparity between his cash reward of â¹50 lakh and the â¹20 lakh and â¹30 lakh rewards for the support staff and squad respectively.
Summary:
The charger caught fire while passengers were waiting to deplane and sparked an emergency evacuation.
Summary:
Meanwhile, an airport spokesperson later said, "passengers re-boarded the aircraft and the flight departed to Amsterdam."
Summary:
CPI(M) leader Brinda Karat on Tuesday said that "Rajnath Singh and others carry a machine and wherever they go it produces new pack of lies".
Summary:
The police have arrested three people accused of stealing â¹74.5 lakh from a cash van meant to refill ATMs in Pune.
Summary:
The police said the man had been harassing the woman since she gave birth to the girl two years ago.
Summary:
The Israeli government has started issuing deportation orders to 20,000 male African migrants, giving them a 60-day deadline to leave the country.
Summary:
The cryptocoins in the man's account was worth about â¹13 lakh at that time.
Summary:
Benchmark index Sensex plunged over 1,274 points to hit a low of 33,482 during morning trade, before making a rebound.
Summary:
Actor Salman Khan will be launching Warina Hussain as the lead actress opposite his brother-in-law Aayush Sharma in his upcoming production 'Loveratri'.
Summary:
Thirty-year-old wicketkeeper-batsman Abid Ali slammed the highest-ever score by a Pakistani in List A cricket by smashing 209*(156) in a domestic one-day match on Tuesday.
Summary:
Manchester United players Bill Foulkes and Harry Gregg, who survived the Munich air disaster on February 6, 1958, played a match 13 days after the crash, which they won 3-0.
Summary:
Ousted Uber CEO Travis Kalanick once told staff to "cheat codes, find them, use them," according to documents filed by Google spinoff Waymo in its trial against Uber.
Summary:
In a Facebook post, CEO Mark Zuckerberg has said, "I've made almost every mistake you can imagine," adding that he has made dozens of bad deals.
Summary:
Japanese scientists have developed a potential hair regrowth mechanism, cultivating 5,000 hair follicle germs, which successfully grew hair after transplantation onto mice.
Summary:
Vice President and Rajya Sabha Chairman Venkaiah Naidu has urged MPs to not address him as 'His Excellency', adding that the term embarrasses him.
Summary:
The Unique Identification Authority of India (UIDAI) on Tuesday cautioned citizens against falling for Aadhaar 'smart cards' and advised them not to share their details with unauthorised agencies to get 'smart cards'.
Summary:
Ex-Maldives President Mohamed Nasheed on Tuesday urged India to send its envoy, backed by the Army, to help release political detainees and judges amid the ongoing political crisis.
Summary:
Tharoor added that 'troglodytes', who are deliberately ignorant people, shouldn't be allowed to destroy the country.
Summary:
A ship owned by a private US seabed exploration company which is searching for the missing Malaysia Airlines flight MH370 has disappeared from tracking screens for three days.
Summary:
A 'pizza run' wherein competitors will race 5 kilometres while eating slices of pizza will be held in London in May. The run has an admission fee of ã20 (â¹1,800) and its contestants will receive prizes like pizza-themed medals.
Summary:
US' benchmark Dow Jones index closed 4.6% lower on Monday, its steepest single-day drop since August 2011.
Summary:
He further added that 1.89 crore salaried taxpayers paid â¹1.48 lakh crore in taxes and 1.88 crore business people gave â¹44,000 crore.
Summary:
As per reports, comedian Kapil Sharma has started shooting for his comeback show, which is expected to air by the end of March.
Summary:
Vidya Balan has said it's unfair that after a long day, a woman has to come back and do household chores.
Summary:
A new poster of Anushka Sharma and Bengali actor Parambrata Chattopadhyay starrer 'Pari' has been released.
Summary:
Twinkle Khanna has said women shouldn't use menstruation as an excuse to take a leave.
Summary:
On February 6, 1958, a plane carrying 1956 and 1957 English champions Manchester United's players alongside staff and journalists, crashed while taking off from Munich, leaving eight players dead.
Summary:
'Busby Babes' is the name given to Manchester United footballers who were part of club's youth team in the early 1950s and won the English first division under Matt Busby's management.
Summary:
Indian Under-19 coach Rahul Dravid has said he was worried for the India Under-19 players during the IPL auction ahead of the World Cup semi-final against Pakistan.
Summary:
The Kimpton De Witt hotel in Amsterdam has trained staff members on how to capture "Instagram-ready" photographs of guests.
Summary:
Hollywood actress Jennifer Lawrence took over the loudspeaker on a Delta Air Lines flight in the US to cheer for an American football team.
Summary:
The Grinnell Glacier in Montana, US is witnessing a phenomenon called 'watermelon snow' wherein the melted snow in the area appears red in colour.
Summary:
Kerala Chief Minister Pinarayi Vijayan has condemned the attack on Malayalam poet Kureepuzha Sreekumar, who was allegedly verbally abused by a group of BJP/RSS workers over his speech critical of Hindutva.
Summary:
The pilot of a Russian warplane, which was shot down in Syria on Saturday, had killed himself with a grenade to avoid being captured by ISIS militants, Russia's Defence Ministry has said.
Summary:
The Twitter accounts of actor Anupam Kher and Rajya Sabha MP Swapan Dasgupta were hacked on Tuesday.
Summary:
Pakistani Lashkar-e-Taiba terrorist Naveed Jat escaped from police custody on Tuesday reportedly after some gunmen started firing outside a Srinagar hospital, where he was being taken for a medical check-up.
Summary:
The rocket, which SpaceX claims is the world's most powerful, is set to launch tonight.
Summary:
The 2D material was made using Magnesium diboride for the first time with boron atoms in a honeycomb structure.
Summary:
Astronomers have found a plane of dwarf galaxies orbiting perpendicularly around Centaurus A galaxy, that challenges the cold dark matter model of small galaxies being randomly distributed.
Summary:
Amid severe financial constraints, Punjab Chief Minister Captain Amarinder Singh has suggested that all MLAs in the state pay their own income tax, which is currently borne by the state.
Summary:
Kulbhushan Jadhav, sentenced to death by a Pakistani military court on spying charges, is now facing trial in multiple cases related to terrorism and sabotage, according to a local media report.
Summary:
A teacher was arrested in Andhra Pradesh's Prakasam district for forcing a 5-year-old student to drink fruit juice mixed with urine, police said.
Summary:
Jaitley added that rationalisation of tax rates will continue as revenues rise and eventually the 28% tax slab would be restricted to demerit and luxury goods.
Summary:
French citizen Zacarias Moussaoui has claimed that he is being subjected to "psychological torture in solitary detention".
Summary:
The police said the accused led a luxurious life and splurged on several girlfriends.
Summary:
The Khadi and Village Industries Commission (KVIC) has sought â¹525 crore in damages from retailer Fabindia alleging unauthorised use of its trademark "charkha" and selling clothes with "khadi" tag.
Summary:
Reacting to Salman Khan's "Mujhe ladki mil gayi" tweet, a user commented, "Bhai shaadi mein bulana fir".
Summary:
Shubman Gill, who won Player of the Tournament award at the 2018 Under-19 World Cup, said Yuvraj Singh helped him a lot when he was at National Cricket Academy.
Summary:
In the lawsuit, Google accused its former engineer Anthony Levandowski, who later founded a startup which was taken over by Uber, of stealing 14,000 files before quitting the company.
Summary:
Researchers in Brazil have developed a technology that can read mind to identify the song a person is listening to.
Summary:
The QR code enables storage of data in the "pill" itself and patients can read about the pharmaceutical product by doing a quick scan.
Summary:
Karnataka Chief Minister Siddaramaiah on Tuesday tweeted that he was glad PM Narendra Modi was talking about corruption and that he now invites him to "Walk the Talk".
Summary:
BJP MLA T Raja Singh has said that those who do not go to RSS shakha cannot be Hindus.
Summary:
The employee, Sawan Narender Aware, used to give 20-50% discount to shoppers, CBI said.
Summary:
Startups incorporated before 2016 with up to â¹10 crore in angel funding will be exempted from giving angel tax, the Department of Industrial Policy and Promotion (DIPP) has reportedly said.
Summary:
Rejecting the affidavit, the court said, "We are not garbage collectors.
Summary:
Police have registered a case against Bihar MLA Anant Singh, popularly known as 'Bahubali', for conspiring to murder gangster Ramjanam Yadav.
Summary:
The temple authorities sacked him and his father after a photo of the idol in salwar-kameez went viral.
Summary:
The Congress had alleged the price of the jets in the deal was higher than the one previously finalised by the UPA government.
Summary:
Finance Secretary Hasmukh Adhia has said that investors in unlisted firms with suspicious deals are under the Income Tax Department's scanner.
Summary:
Delhi-based logistics startup FarEye has raised $9.5 million (over â¹61 crore) in Series C funding round from Deutsche Post DHL Group, filings revealed.
Summary:
Jennings further said, "Such pitches won't help because India have a great pace attack.
Summary:
Uttarakhand Chief Minister Trivendra Singh Rawat has spent government funds worth â¹68.5 lakh on refreshments and snacks for guests till January 22 since assuming office in March, 2017.
Summary:
Ajay will be seen playing an income tax officer in the Raj Kumar Gupta directorial, which is scheduled to release on March 16.
Summary:
The augmented reality system overlaid CT scan images of bones and blood vessels onto each patient's leg, enabling the surgeon to "see through" the limb.
Summary:
The aerial vehicle was tested with 40 passengers, including its Chief Executive Officer Huazhi Hu, the company added.
Summary:
Former Facebook and Google employees have launched a campaign called "Truth About Tech" to protect children from the potential of digital manipulation and addiction.
Summary:
Cab-hailing startup Ola and the Government of Assam have signed a Memorandum of Understanding (MoU) to pilot an app-based river taxi service in Guwahati.
Summary:
An international team of scientists has found an arachnid resembling a spider with a tail, which was fossilised in amber about 100 million years ago.
Summary:
India on Tuesday successfully test-fired the indigenously developed nuclear-capable Agni-1 ballistic missile from the Abdul Kalam Island off Odisha coast.
The test was conducted by the Indian Army's Strategic Forces Command.
Summary:
A five-year-old boy, who was kidnapped from his school bus in Delhi by two bike-borne assailants on January 25, was rescued by police on Monday after a shootout.
Summary:
In what is said to be the first, Maharashtra Animal and Fishery Sciences University (MAFSU) and an orthopaedic surgeon will work together to give a tiger in Maharashtra a prosthetic leg.
Summary:
Police have said that a common ritual to ward off evil may have caused the fire which broke out at the Meenakshi Amman temple in Tamil Nadu's Madurai on Friday.
Summary:
Nepal's last monarch Gyanendra Shah has arrived in Odisha to attend the International Gau Sambardhana Mahotsav as Chief Guest on Wednesday to lay the foundation stone for a Gaumata Mandir.
Summary:
The government claimed that India had sent 400 Muslim youngsters to Afghanistan to receive training to be able to carry out the attacks.
Summary:
The US Defence Department, Pentagon, temporarily removed and reposted its 2018 Nuclear Posture Review report from its website over the weekend after it mistakenly labelled Taiwan as part of mainland China.
Summary:
A 22-year-old contestant on reality dating series 'The Bachelor' was reported as a missing person by her mother.
A newspaper had published pictures of missing persons and a reader responded saying the contestant was seen on television.
Summary:
Indian benchmark index Sensex fell 1,275 points to as low as 33,482 in morning trade on Tuesday amid a global sell-off.
Summary:
The duo is reportedly undergoing training for the film, shooting for which will begin in May.
Summary:
Actor Hrithik Roshan's look from the upcoming biopic 'Super 30' has been unveiled.
Summary:
Meanwhile, the elderly man did not suffer any serious injuries.
Summary:
Former South Africa and Royal Challengers Bangalore coach Ray Jennings has said that Indian captain Virat Kohli's leadership can come off as 'intimidating' to youngsters in the dressing room.
Summary:
Indian women's cricketer Smriti Mandhana smashed a 98-ball 84 to help India register an 88-run win over South Africa in the first ODI of the three-match series on Monday.
Summary:
nTaking inspiration from the Grand Alliance's success in Bihar in 2015 Assembly elections, rebel JD(U) leader Sharad Yadav has said he and RJD chief Lalu Prasad Yadav are planning to replicate it to defeat BJP in 2019 general elections.
Summary:
Flipkart Co-founder Binny Bansal sold shares of the homegrown e-commerce startup, which were worth $30-35 million, in the buyback last year, according to reports.
Summary:
DSGMC President Manjit Singh GK claimed that an unknown man had sent him an envelope containing the video clips allegedly recorded in 2011.
Summary:
Jammu and Kashmir Police on Monday busted a militant group Jaish-e-Mohammad (JeM) module in Pulwama district, arresting five over ground workers.
Summary:
Heineken has released a new movie 'Generations Apart' that brings to the fore opposing thought processes, different mindsets and how the relationships between parents and children evolve.
Summary:
Maldives police have arrested the country's Chief Justice Abdulla Saeed along with Supreme Court judge Ali Hameed after President Abdulla Yameen Abdul Gayoom declared a 15-day state of emergency on Monday.
Summary:
Britain's Queen Elizabeth II acceded to the throne on February 6, 1952, following the death of her father King George VI.
Summary:
She is the longest-serving living monarch and the wealthiest queen in the world.
Summary:
The teaser of the 'Star Wars' spin-off film 'Solo: A Star Wars Story' has been released.
Summary:
"The film is based on a foreigner's book and tries to dampen the queen's reputation," said Mishra.nn
Summary:
The video also illustrates how Tesla Roadster car separates from the spacecraft to travel 11 kmps in the space.
Summary:
Pirates have freed the oil tanker which had gone missing in the Gulf of Guinea on Friday with 22 Indian sailors onboard, ship management company Anglo-Eastern has said.
Summary:
This was the second time the headmaster was stabbed by one of his students.
Summary:
The government has approved a proposal to extend the tenure of Niti Aayog CEO Amitabh Kant till June 30, 2019.
Summary:
The ministry also issued an advisory asking Indians in Maldives to stay alert and avoid public gatherings.
Summary:
Over 5,500 US troops were present in Iraq at the height of fight against ISIS last year.
Summary:
The UK government has announced that it'll double the health surcharge on visas to the country from ã200 per person per year to ã400, raising the travel document's overall cost.
Summary:
Doritos was slammed on social media after it announced launch of a "lady-friendly" version of the tortilla chips that will be less crunchy, less messy and come in special packages to fit into women's bags.
Indra Nooyi, CEO of PepsiCo, which owns Doritos, said, "Women...
Summary:
Talking about his love for Bollywood films, singer Zayn Malik said, "If you ever get a chance to watch a good Bollywood movie, watch Devdas!" Zayn had earlier revealed that he has even made his girlfriend model Gigi Hadid watch the film.
Summary:
The Sidharth Malhotra and Manoj Bajpayee starrer 'Aiyaary' has been postponed to February 16.
It was earlier scheduled to release on February 9, the same release date as 'Pad Man'.
Summary:
Chelsea suffered a 1-4 defeat at Watford in the Premier League on Monday after conceding three late goals.
Summary:
Formula One has announced it will replace 'grid girls' with 'grid kids' from the start of the upcoming season.
Summary:
Karnataka High Court lawyers on Monday launched a week-long hunger strike over the delay in appointment of judges.
Karnataka's former Advocate General BV Acharya has claimed that out of a total sanctioned strength of 62 judges, there are only 24 appointed judges in the high court.
Summary:
Action will be taken against culprits and those practicing without license, state Health Minister Sidharth Singh said.
Summary:
An Indian-origin man has won the second prize of over â¹17.5 crore in a lottery in Abu Dhabi.
Summary:
The Food Safety and Standards Authority of India (FSSAI) has asked all states and union territories to implement its initiative Blissful Hygienic Offering to God (BHOG), to ensure safer prasad at places of worship.
Summary:
In a complaint filed by Dubai-based JAAS Tourism, Binoy has been accused of cheating the company of â¹13 crore.
Summary:
The scam involved private builders buying â¹1,600-crore worth land owned by farmers at a price of â¹100 crore.
Summary:
A video showing a woman in Mumbai's Khar claiming that she was being tortured by her husband and asking for help has surfaced online.
Summary:
The German government has agreed to recognise 25,000 Jewish Algerians as Holocaust survivors eligible for compensation.
Summary:
Former Iraqi dictator Saddam Hussein's eldest daughter Raghad has been added to Iraq's most wanted list along with 59 other individuals.
Summary:
Delhi opener Unmukt Chand slammed a hundred despite having a broken jaw in a domestic 50-over match against Uttar Pradesh on Monday.
Summary:
Maldives President Abdulla Yameen Abdul Gayoom on Monday declared a 15-day state of emergency amid the ongoing political crisis in the country.
Summary:
Nassar was also sentenced to 60 years on child pornography charges in December 2017.
Summary:
Oscar-winning music composer AR Rahman has said that when he wanted to enter Bollywood's music industry, he was told to change his name to become successful.
Summary:
A new promotional video of the upcoming superhero film 'Avengers: Infinity War', the third film in 'The Avengers' film series, has been released.
Summary:
The teaser of the Akshay Kumar starrer 'Gold' has been released.
Summary:
The CBI on Monday filed a 1,000-page chargesheet in the murder of a 7-year-old student in a private school in Gurugram and held a 16-year-old boy as prime accused.
Summary:
It added that it was every Muslim's duty to comply with the Prophet's guidance to eat with the right hand.
Summary:
The UK's Lloyds Banking Group has banned its customers from buying cryptocurrencies like Bitcoin using credit cards as it fears their falling value could leave it with huge debt.
Summary:
Warning that Europe was in danger just like "the Cold War times", Gabriel called for global disarmament to create a world free of nuclear weapons.
Summary:
He further said the industries have to act more responsibly than a salary earning person and help build a tax compliant society.
Summary:
Finance Secretary Hasmukh Adhia has said demonetisation and other "anti-evasion measures" generated direct taxes of â¹90,000 crore.
Summary:
'Ishtehaar', a new song from Diljit Dosanjh and Sonakshi Sinha starrer 'Welcome To New York' has been released.
Summary:
Summary:
Talking about how sexual harssment is a sensitive issue, actress Richa Chadha said, "This is not a popcorn story, that a hashtag will begin.
Summary:
Indian comedy group AIB in their video 'An Ode To Karni Sena' has taken a dig at the Rajput organisation for allegedly attacking a school bus in Gurugram during protests against 'Padmaavat'.
Summary:
nTalking about reinventing her career as an actress, interior designer, author and producer, Twinkle Khanna said, "I am (a) toaster...I keep getting better with every edition." Twinkle added she is like the next generation iPad as she has a penchant for leaping into new things.
Summary:
Following India's Under-19 World Cup triumph, coach Rahul Dravid said he has no regrets over not lifting the World Cup as a player.
Dravid was part of India's squad for three World Cups (1999, 2003 and 2007).
Summary:
Sultan XI's Akram first beat Toofan XI's Malik off the second ball of his second over and then dismissed him caught behind off the next delivery.
Summary:
Police arrested the men as soon as they were alerted about the picture.
Summary:
Even as the officer tried to explain himself, the mob called to beat him up after which the women thrashed him with sandals.
Summary:
He killed his wife reportedly as she kept with him over the matter and mocked him.
Summary:
Asserting that there is not much difference between Taj and Tej, BJP MP Vinay Katiyar on Monday said that the Taj Mahal will soon be converted to Tej Mandir.
Summary:
US Vice President Mike Pence will stop North Korea from "hijacking" the Winter Olympic Games, an aide to the Vice President has said.
Summary:
The crash set the house on fire although its residents were confirmed safe.
Summary:
The Food Ministry has reportedly proposed doubling the import duty on sugar to 100% to curb cheaper imports.
Summary:
However, TRAI is of the view that the demand on customer refunds is justified as it pertains to premature closure of services, reports added.
Summary:
A floating burger joint, billed as the world's first sustainable floating drive-thru, has come up in Dubai.
Summary:
A truck driver caused significant damage when he drove over Nasca Lines, a 2,000-year-old UNESCO World Heritage Site in Peru.
Summary:
Actress Bhumi Pednekar and actor Vicky Kaushal have featured in Forbes India's '30 under 30' list.
Summary:
nIn the 2018 Budget, the government has halved investments in state-run firms under the Ministry of Heavy Industries to â¹437 crore for next fiscal from â¹883 crore in 2017-18.
Summary:
Dimension NXG, which has developed India's first augmented reality (AR) headset 'AjnaLens', has raised an undisclosed amount from investors including Paytm Founder Vijay Shekhar Sharma.
Summary:
Indian Space Research Organisation (ISRO) Chairman Dr Kailasavadivoo Sivan has said the rover for India's second Moon mission, Chandrayaan- 2, will spend 14 Earth days on the lunar surface, before going into sleep mode.
Summary:
The National Green Tribunal (NGT) on Monday imposed a fine of â¹10 lakh on the Uttar Pradesh government as environment compensation for failing to take action to dispose of the e-waste on banks of Moradabad's Ramganga river.
Summary:
A video showing a woman bringing out a gun to scare off assailants who were beating her husband in front of their house in Uttar Pradesh's Lucknow has surfaced online.
Summary:
Claiming that the BJP-led government had inherited a "ditch" from Congress, Shah said they have taken a long time to fill the ditch.
Summary:
Ronaldo, who was playing for Sporting CP at that time, had an irregular heartbeat even when he was resting.
Summary:
Thane police officers have arrested four alleged thieves who would perform a puja before committing robberies and leave flowers at the spot afterwards.
Summary:
Singapore Telecommunications (Singtel) has said it will invest â¹2,649 crore in Airtel's holding company Bharti Telecom.
Summary:
Tweeting a picture with Gujarat CM Vijay Rupani and state minister Vibhavari Dave, who also attended the screening, Akshay thanked them for their support to the film.
Summary:
Reality TV star Kim Kardashian and rapper Kanye West's newborn daughter Chicago West was seen for the first time in a video shared by Kim's half-sister Kylie Jenner.
Summary:
Ranveer Singh has said that he is not sure if he would play a dark character again, while adding, "It was really hard...I don't think it is healthy to play that part anymore." Ranveer, who played Alauddin Khilji in 'Padmaavat', revealed how for a moment, the character took over the actual him.
Summary:
A gannet called Nigel, who was known as the world's loneliest bird, passed away on a New Zealand island next to his concrete partner this week.
Summary:
Two bankers told Sehwag that they were not like what he had claimed.
Summary:
Cristiano Ronaldo, who celebrated his 33rd birthday on Monday, has scored in every minute of play of a football match, including goals in each minute of the 90-minute regulation time and injury time following each half.
Summary:
South Africa suffered third injury setback as wicketkeeper Quinton de Kock was ruled out for the rest of the India series over a wrist injury he suffered in the nine-wicket loss on Sunday.
Summary:
This comes ahead of the Qualcomm shareholder meeting scheduled for March 6, where Broadcom is seeking to replace Qualcomm's board of directors.
Summary:
The woman was saved while the flight made an emergency landing.
Summary:
"Forget ceasefire, this is direct war.
Summary:
Praising the NDA government during his maiden speech in Rajya Sabha, BJP President Amit Shah on Monday said Kashmir has never been this safe in the past 35 years.
Summary:
Adding that the neighbouring country had crossed all limits, Swamy said India should prepare for war with Pakistan.
Summary:
Several unidentified people set ablaze the door of a mosque in Uttar Pradesh's Kasganj on Monday in an attempt to disrupt communal harmony in the area, police said.
Summary:
The Islamic State's Minister for Information ÃÂmer Yetek has been arrested in Turkey, according to Turkish state media.
Summary:
Bengaluru-based self-publishing platform Pratilipi has raised $4.3 million in its Series A round of funding led by Omidyar Network.
Summary:
TVS Motor Company announced its foray into the 125cc scooter segment with the launch of TVS NTORQ 125.
Summary:
The Sanjay Leela Bhansali directorial 'Padmaavat', which has earned â¹212.5 crore, has become actor Ranveer Singh's first film to earn â¹200 crore.
Summary:
While hearing a petition seeking ban on honour killings and khap panchayats, Chief Justice of India Dipak Misra said that when two adults marry, no one has the right to interfere.
Summary:
Cosmos Redshift 7 or CR7, a galaxy 12.9 billion light-years away from the Earth, is named after five-time Ballon d'Or winner Cristiano Ronaldo, who is known as CR7.
Summary:
PM Modi had suggested that selling pakodas and earning â¹200 daily could be considered employment.
Summary:
The trailer of the Tom Cruise starrer 'Mission: Impossible - Fallout', the sixth film in the franchise, has been released.
Summary:
Indian cricketers Jasprit Bumrah and Harmanpreet Kaur have been named in Forbes India 30 Under 30 achievers list.
Summary:
US researchers have developed an artificial intelligence (AI) system which can train robots to interact with a human instructor and perform tasks for the army.
Summary:
This comes even as state Deputy CM and party leader O Panneerselvam said benefits of government welfare schemes will be available to everyone.
Summary:
Summary:
Indian jewellery designer Nirav Modi has been booked by the CBI for cheating the Punjab National Bank of â¹280 crore.
Summary:
The move has led to the state government being accused of ignoring the Mughal history.
Summary:
The accused blackmailed the victim using pictures and videos, which one of the accused had taken when he raped her a year ago, police officials said.
Summary:
This comes as inter-Korean relations improved after North Korea announced to send a 22-member delegation to the Games.
Summary:
The woman, who had enrolled in the distance education course four years ago, would get up at 5 am to study.
Summary:
Dressed as a groom, the journalist says, "I am present at my wedding today...
Summary:
We all are friends." Kareena added, "The whole idea of the film was to show the story of four friends.
Summary:
Summary:
The 34-year-old was handed a life ban by the cricket board after he was named in the Indian Premier League spot-fixing case.
Summary:
Over 3,400 youths in Bihar were kidnapped for forced marriages as part of a custom known as 'Pakadua Vivah' in 2017, according to Bihar Police.
Summary:
The incident allegedly took place after the morning prayers, when the teacher called the boy to his room and assaulted him.
Summary:
The father of the Delhi man, who was killed by his girlfriend's family in an alleged case of honour killing, has sought the death penalty for his son's murderers.
Summary:
Ramdayal Yadav began to offer his services with due permission from police after his son died in a road accident.
Thanking Yadav for his efforts, police officials said, "He has made our job easier...
Summary:
An inspector in Hyderabad saved the life of a 7-year-old boy, who was hit by a car, by taking him to a hospital in his patrol car and paying for his medical bills.
Summary:
Finance Secretary Hasmukh Adhia has said that Indian markets are down due to weak global sentiment and not because of the new Long-Term Capital Gains (LTCG) tax.
Summary:
Commerce Minister Suresh Prabhu has said the government will develop a strategy to increase the share of exports in GDP to 20%.
Summary:
The court said Lee was only guilty of bribing the confidante of Park Geun-hye.
Summary:
The iPhone X 64 GB model is now priced at â¹95,390, while iPhone 8 and 8 Plus will cost â¹67,940 and â¹77,560 respectively.
Summary:
South Australia is planning to use Tesla batteries to build what it claims would be the world's largest virtual power plant, for at least 50,000 homes.
Summary:
World's first robot citizen Sophia is expected to make a public appearance at a global technology event this month in Hyderabad.
Summary:
Facebook users reportedly also complained that the group was using bots to further lower Marvel projects' ratings.
Summary:
An Australian 'glamping' hotel named Bubbletent lets visitors stay in see-through bubble-shaped tents.
Summary:
Addressing a gathering in Tripura, he also accused the state Chief Minister of not having the courage to remove the minister against whom "fingers are raised".
Summary:
BJP's Karnataka CM candidate BS Yeddyurappa, who himself is a farmer's son, will work in farmers' interests, PM Narendra Modi said on Sunday during a rally.
Summary:
Five policemen in Uttar PradeshâÂÂs Mahoba gave up the prize money they had received for catching a rape accused to the six-year-old victim's family for construction of a toilet at their home.
Summary:
Interestingly, Abby was identified based on information in a microchip implanted in its neck years ago.
Summary:
Turkish chef Nusret Gökçe, who inspired the 'Salt Bae' meme after a video of him seasoning meat went viral, has opened a restaurant in New York.
Summary:
Pakistan Under-19 cricket team manager Nadeem Khan on Sunday said the way his side lost wickets against eventual champions India in the Under-19 World Cup semi-finals, it seemed like they were under some spell.
Summary:
Barcelona set a club record of going 22 matches unbeaten in La Liga after Gerard Pique's 82nd-minute header secured a draw against Espanyol on Sunday.
Summary:
Tottenham Hotspur's Victor Wanyama scored with a long-range bullet strike in a 2-2 draw against Liverpool in Premier League on Sunday.
Summary:
Cash-strapped technology group LeEco's publicly listed arm Leshi Internet has said that $890 million of its debts would be due by the end of this year.
Summary:
Meanwhile, Apple will offer iCloud services on the mainland through a local partner starting from February 28.
Summary:
It was found by a 37-year-old man who managed to track down Martin and return the bottle to him.
Summary:
The Singapore Tourism Board has released a mocking video calling Singapore "boring" after it was ranked 31st in Time Out magazine's list of the world's most exciting cities.
Summary:
Congress social media head Divya Spandana on Sunday reacted to a comment by PM Narendra Modi during a Karnataka rally and said, "Is this what happens when you're on POT?" PM Modi had said farmers were his top priority, and by 'top' he meant 'Tomato, Onion, Potato'.
Summary:
Slamming Bihar CM Nitish Kumar for breaking the Grand Alliance, Lalu Yadav's son Tejashwi Yadav said that Kumar had "raped" the mandate voters had given to the alliance.
Summary:
The body was discovered when the bus was taken for a wash.
Summary:
Stating that times are different and girls are now educated, AIMIM President Asaduddin Owaisi urged parents to ask their daughters for their opinion and permission before their marriage.
Summary:
The Rashtrapati Bhavan's Mughal Gardens will be open to public from February 6 to March 9 between 9:30 am and 4:00 pm after President Ram Nath Kovind inaugurates the annual 'Udyanotsav' on Monday.
Summary:
Maldives government has accused the Supreme Court of trying to impeach President Abdulla Yameen for disobeying its order to release jailed opposition leaders, and said it will resist any such attempt.
Summary:
As much as 64% of the antibiotic pills being sold in India are not approved by the Central Drugs Standard Control Organization, according to a study by Queen Mary University of London and Newcastle University.
Summary:
At least 11 soldiers were killed and 13 others were injured on Saturday in a suicide bomber attack at a military base in Pakistan's Swat Valley.
Summary:
Few of the fans attending Korea's practice match against Sweden chanted "Peace Olympics", while protesters across the street shouted "Pyongyang Olympics".
Summary:
Reality TV star Kylie Jenner has announced the birth of a baby girl with her boyfriend Travis Scott on February 1, after keeping her pregnancy a secret.
"My pregnancy was one I chose not to do in front of the world.
Summary:
The Nigerian Army has declared victory over the Boko Haram militant group after capturing the militants' stronghold Camp Zairo under counter-insurgency operation DEEP PUNCH II.
Summary:
Actress Kareena Kapoor Khan was the showstopper for designer Anamika Khanna at the grand finale of Lakmé Fashion Week Summer/Resort 2018.
She walked the ramp in a black ensemble paired with metallic earrings for the designer's collection 'Reinventing Nudes'.
Summary:
Earlier, iPhone X users also reported activation issues in their smartphones.
Summary:
The tomb of ancient priestess Hetpet has been uncovered by archaeologists near Cairo, Egypt.
Summary:
The continuous ceasefire violations by Pakistan have forced hundreds of people near the border to evacuate from their villages.
Summary:
State-owned oil major ONGC committed â¹13,000 crore investment while Oil India pledged an investment of â¹10,000 crore.
Summary:
The school said the boy is "unfit" for the examination and has an understanding of a Class 1-2 student.
Summary:
Protesting against Prime Minister Narendra Modi's recent 'pakoda' remark, a few students on Sunday sold pakodas outside the PM's rally venue in Bengaluru.
Summary:
A local YouTuber Irfan Junejo accused the government of using some of his footage without his permission.
Summary:
North Korea has been using its Berlin embassy to acquire technology for its nuclear and ballistic missile programmes, Germany's domestic intelligence agency chief Hans-Georg Maassen has claimed.
Summary:
The driver was arrested and charged with the transportation of narcotics.
Summary:
Referring to the box office success of the film 'Padmaavat', actor Shahid Kapoor said, "I am the hero of a Bhansali film, the numbers are going nuts, all is good.
Summary:
Actor Akshay Kumar has said that fitness is not about showing off six-pack abs built from using a bottle full of enhancers.
Summary:
Summary:
Kangana Ranaut has said that she has plans of getting married soon while adding, "Please give me a deadline till next February." Kangana said she had initially given herself a deadline of December this year.
Summary:
Team Norway's caterers used 'Google Translate' to place the order and were surprisedÃÂ to see the hosts delivering half a truck load of eggs.
Summary:
Samajwadi Party President Akhilesh Yadav on Sunday alleged that the BJP was the "biggest casteist party" in India, adding that it was spreading venom in the country in the name of religion and caste.
Summary:
PM Narendra Modi on Sunday said the world discusses 'ease of doing business', his central government talks about 'ease of living', and the Congress government in Karnataka talks about 'ease of doing murder'.
Summary:
"I will not say that (Narendra) Modi will come and instigate to do it, but Amit Shah...that is his standard," he said.
Summary:
The BJP's defeat in the recent bypolls in Rajasthan is a "wake-up call", party leader and CM Vasundhara Raje said while addressing party legislators.
Summary:
A passenger of the car said they were informed about the fire by a man driving next to them, after which they got out of the car.
Summary:
The duo had stolen the antique idols from Gopalaswamy Temple in Telangana's Kamareddy in January.
Summary:
The CBI has arrested a GST Commissioner, and three superintendents from Kanpur for allegedly receiving bribes from companies.
Summary:
The Railway Board has passed a proposal to create a database of contract workers, engaged in providing services such as housekeeping, cleaning and training.
Summary:
Nearly 9,000 people were duped as part of the over â¹10-crore scam.
Summary:
Sharma had won his maiden title at the Joburg Open in December last year.
Summary:
Mumbai's Chhatrapati Shivaji International Airport on January 20 handled 980 flights in 24 hours, breaking its own record of 974 flights in December 2017, airport officials said.
Summary:
Criticising the Union Budget 2018, former Finance Minister and Congress leader P Chidambaram has said that Chief Economic Adviser Arvind Subramanian is a "good doctor", but the NDA government is a "bad patient".
Summary:
Kumar added that the proposed 1% additional cess will yield â¹11,000 crore annually, which is enough to meet funding needs.
Summary:
Pakistan has been giving scholarships for MBBS and engineering courses to Kashmiri students to prepare a generation of doctors and engineers who are inclined towards them, the National Investigation Agency (NIA) claimed.
Summary:
India saw the second highest number of millionaire outflow globally, with 7,000 ultra-rich individuals shifting overseas in 2017, according to a report by New World Wealth.
Summary:
Actor Ranveer Singh has said that as an entertainer, box office numbers are a validation that he is being able to entertain audiences and to him that means everything.
Summary:
Ranveer will portray the former Indian cricketer Kapil Dev in the film.
Summary:
Reacting to ongoing protests against the film 'Padmaavat', Vidya Balan said that it is one's fundamental right to make a film on any subject and screen it in theatres.
Balan, who is also a CBFC member, said, "I feel every...
Summary:
Actress Kangana Ranaut has turned showstopper for the designer duo Shyamal & Bhumika on the last day of the Lakmé Fashion Week (LFW) in Mumbai.
Summary:
Summary:
As per reports, officials of the Defence Ministry who watched the Sidharth Malhotra and Manoj Bajpayee starrer 'Aiyaary' have demanded changes to scenes they found objectionable in the film.
Summary:
Twinkle Khanna has said that her son Aarav keeps replaying a clip from the film Jaan (1996), where she is kissing around the lead actor Ajay Devgn's nipple.
Summary:
Archaeologists have discovered an ancient Mayan city in the jungle of Guatemala's Peten region using an aerial mapping technique.
Summary:
Reacting to Indian all-rounder Hardik Pandya's blue hairdo, a user tweeted, "Peacock bowling to de Kock.
Summary:
Nearly 2.53 lakh central government jobs have been generated in the country during the last two years, according to Budget 2018 data.
Summary:
Prime Minister Narendra Modi, while addressing a rally in Bengaluru, praised India Under-19 head coach for India's Under-19 World Cup victory and said that he teaches us to work honestly and live for others.
Summary:
Rio Olympic silver medallist PV Sindhu finished as runner-up after losing to America's Beiwen Zhang in the final on Sunday.
Summary:
Priced at $129, the device shares user location which is fed into its companion app.
Summary:
A 43-year-old Chinese man who lived in the US has pleaded guilty to selling fake iPhones and iPads in the country.
Summary:
Women and Child Development Minister Maneka Gandhi has said that the ministry is checking whether adults can report sexual abuse they faced as children.
Summary:
The Maharashtra Police has returned 1,430 out of 4,600 bulletproof jackets after the jackets failed the AK-47 bullet test during trials, Additional Director General of Police said.
Summary:
The Indian Railways has signed an agreement with the Department of Posts to set up Passenger Reservation System (PRS) counters at post offices across the country.
Summary:
The panel observed this while probing a recent flight accident.
Summary:
A 25-year-old female actress was shot dead on Saturday by three gunmen in Pakistan after she refused to perform at a party, police said.
Summary:
Nearly ã4.4-billion worth property in the UK is estimated to have been bought using illegally acquired wealth.
Summary:
US President Donald Trump on Saturday said that a recently-released memo accusing the FBI of abuse of power "totally vindicates" him in the Russian election meddling investigation.
Summary:
The same impulse was driving the US to undermine the nuclear deal with Iran, he added.
Summary:
India bowled out South Africa for 118 in 32.2 overs and were at 117/1 when the 40-minute break was taken.
Summary:
India dismissed SA for their lowest-ever ODI total while batting at home after Yuzvendra Chahal took his maiden 5-for.
Summary:
The weekly show features Sheriff Wayne Ivey selecting a fugitive by spinning a wheel with the photos of 10 fugitives.
Summary:
South Africa's previous lowest ODI total at home was 119.
Summary:
He also became the first spinner to take an ODI 5-for against South Africa in South Africa.
Summary:
Adobe confirmed the issue and said it will be addressed in an upcoming update.
Summary:
BJP leader and Union Minister Giriraj Singh on Sunday said he was hopeful the Sunni Muslims will support the construction of a Ram Mandir in Uttar Pradesh's Ayodhya, just like the Shias.
Summary:
The family of a man has alleged that an inspector shot at him on Saturday in Noida for "no reason".
Summary:
Former Finance Minister and Congress leader P Chidambaram has said the Budget has done nothing to rescue the economy from its current situation.
Summary:
The Australian government on Sunday confirmed it won't provide financing for Adani Enterprises to build a rail line for its proposed Carmichael coal project.
Summary:
The donor, who goes by the nickname 'Pine', created 'The Pineapple Fund' in December to give away 5,057 Bitcoins, then worth $86 million.
Summary:
Economic Affairs Secretary Subhash Chandra Garg has said there will be regulations for cryptocurrencies by the end of this fiscal.
Summary:
Guillermo del Toro, director of 'The Shape of Water', which has received 13 nominations at Oscars 2018, won the prize for Outstanding Directorial Achievement in Feature Film at the Directors Guild of America Awards.
Summary:
On the completion of 13 years of the Rani Mukerji starrer 'Black', actor Amitabh Bachchan has tweeted that he received the greatest compliment for the film from his idol veteran actor Dilip Kumar.
Summary:
Actor Akshay Kumar took to Twitter to share a video of him doing a handstand and walking on his hands while flagging off a marathon in Mumbai.
Summary:
Filmmaker Sanjay Leela Bhansali has said that he does not know how to use a computer or how to drive or even change batteries while adding, "I only know how to make a film." The 54-year-old director further said, "That is one thing that I live and die for.
Summary:
Summary:
After leg-spinner Yuzvendra Chahal took his ODI career's first-ever five-wicket haul on Sunday, Virender Sehwag tweeted, "Chahal banayega South Africa mein Mahal.
Outstanding spell of leg-spin bowling.
Summary:
Further, the organisations have also installed 30 condom dispensers in the capital Manila to promote HIV awareness.
Summary:
Amidst reports that the Telugu Desam Party (TDP) might break alliance with the NDA, BJP President Amit Shah reportedly told TDP chief and Andhra Pradesh CM Chandrababu Naidu not to make tough decisions.
Summary:
Telugu Desam Party (TDP) leader YS Chowdary has said that TDP will not pull out of NDA "immediately", but will continue raising the issue of Centre's failure to allocate funds for Andhra Pradesh in the Budget.
Summary:
Sherpa was involved in Gorkhaland politics during the four years he was "absent" from police service.
Summary:
The Indian Space Research Organisation (ISRO) is planning to send the Chandrayaan-2 on the world's first-ever mission to soft-land near the Moon's south pole.
Summary:
He added that the departments are now aiming to use cow urine to cure other ailments.
Summary:
The sub-inspector accused of shooting two men in Noida "for no reason" has been sent to jail and all the four policemen involved in the shootout have been suspended, the police said on Sunday.
Summary:
Delhi Chief Minister Arvind Kejriwal has said that the Delhi government will provide legal help to the family of the man who was killed by his girlfriend's family in an alleged case of honour killing.
Summary:
Ocalan, who is currently serving a life sentence in Turkey, had waged an insurgency against the Turkish government for decades.
Summary:
'Kill Bill' actress Uma Thurman has revealed that when she was 16, she was raped by an actor 20 years older than her.
Summary:
The dominant colour of Facebook is blue as the company Co-founder and CEO Mark Zuckerberg has red-green colour blindness.
Summary:
Yahoo once made an offer to buy social networking site Facebook for $1 billion in 2006, but the offer was turned down by Co-founder Mark Zuckerberg.
Summary:
Actress Deepika Padukone has said 'Padmaavat' is a celebration of the fact that this is the most expensive Indian film made with a female protagonist.
Summary:
BCCI has yet not renewed the domain, which is registered under the name of former BCCI Vice President Lalit Modi, according to website's registration details.
Summary:
Apple overtook Samsung as the largest smartphone maker in the fourth quarter of 2017, according to a report by research firm IDC.
Summary:
SpaceX has confirmed it'll try landing all three boosters of its most powerful rocket Falcon Heavy, after its launch on February 6.
Summary:
'Open source', referring to a publicly accessible software which can be modified and shared by anyone, originated after Netscape released the source code for its web browser.
Summary:
The UNICEF has requested gamers with powerful graphics cards to help mine cryptocurrency Ethereum to raise money for Syrian children.
Summary:
A team of over 100 physicists at the Large Hadron Collider in France claimed to have found a potential evidence of the existence of a subatomic quasiparticle called 'Odderon', whose existence was first predicted in the 1970s.
Summary:
Adding that Kashmir will always be a part of India, he said, "We don't want to attack Pakistan first.
"Pakistan is trying to tear down Jammu and Kashmir," he added.
Summary:
Slamming PM Narendra Modi over a peace agreement with Naga insurgent groups, Congress President Rahul Gandhi said, "Modi ji is the first ever Indian PM whose words don't mean anything".
Summary:
Russia claimed that the pilot of the fighter jet had managed to eject but was killed by militants on the ground.
Summary:
Facebook had paid $8.5 million (nearly â¹38 crore) to acquire the internet address 'fb.com'.
Summary:
An Assistant Engineer in Uttar Pradesh's Moradabad wrote an official letter to his junior asking him to return a matchbox that he borrowed from him.
"A matchbox...was borrowed by you at 8.40 pm on Tuesday, January 23.
Summary:
Finance Minister Arun Jaitley has said structural reforms like demonetisation and GST can cause temporary disruptions but give out larger gains.
"Will demonetisation set back India's GDP by 2%?
Summary:
Chahal first dismissed Quinton de Kock when the score was 51 before Yadav cleaned up Aiden Markram and then David Miller.
Summary:
Mominul Haque became Bangladesh's first cricketer to score centuries in both innings of a Test after going past the landmark figure in both the innings of the first Test against Sri Lanka.
Summary:
South African batsman Quinton de Kock remained not out after he defended a delivery by India's Jasprit Bumrah, with the ball rolling on to hit the stumps without dislodging the bails.
Summary:
India Under-19 team captain Prithvi Shaw, vice-captain Shubman Gill and opener Manjot Kalra were named as the top three batsmen in the Team of the 2018 ICC U-19 Cricket World Cup. The tournament's joint-highest wicket-taker Anukul Roy and pacer Kamlesh Nagarkoti were also included in the team.
Summary:
The police added that the victim was living as a recluse in a makeshift tent on the footpath.
Summary:
A Railway Protection Force (RPF) constable on Friday saved a seven-year-old boy from slipping through the gap between the platform and railway track at a station in Mumbai.
Summary:
A 26-year-old man allegedly murdered his second wife in order to live with the first wife in Delhi's Tughlakabad, police said.
Summary:
The district health department has filed a complaint against an illegal 'skin bank' operating on the Dera Sacha Sauda campus in Sirsa.
Summary:
The Maharashtra government has decided to set up a Transgender Welfare Board to protect their Constitutional and human rights, Social Justice Minister Dilip Kamble said.
Summary:
The family of a Muslim girl on Thursday murdered her 23-year-old Hindu boyfriend near his residence in west Delhi as they were against their 3-year relationship, police said.
Summary:
At least six people were reported to have been injured on Saturday in Italy's Macerata city after a gunman opened fire at African migrants from a moving car.
Summary:
Japan Aerospace Exploration Agency has claimed to set a new spaceflight record for launching the smallest rocket ever to carry a satellite into orbit.
Summary:
Steve had tapped the ball back towards the bowler when Mark charged down the wicket and got out.
Summary:
Shubman Gill, who slammed 372 runs in the 2018 Under-19 World Cup, became the fourth Indian to be awarded Man of the Tournament at an ICC Under-19 World Cup. Yuvraj Singh had won the award in the 2000 edition for scoring 203 runs and taking 12 wickets.
Summary:
Former Argentine player Diego Maradona has been denied entry to the US because he insulted President Donald Trump, his lawyer has claimed.
Summary:
Facebook's CEO Mark Zuckerberg has said that the social media major does not want to assess the trustworthiness of news sources by itself.
Further talking about the two-question survey Facebook designed to help it judge news' trustworthiness, Zuckerberg revealed that it is being done "for years".
Summary:
However, the number of feature phone users is reportedly very high in Uttar Pradesh.
Summary:
Rebels in Syria on Saturday claimed to have shot down a Russian Sukhoi-25 fighter jet in the Idlib province.
Summary:
Russian President Vladimir Putin on Saturday joked that he might start working as a combine driver if he were to lose the upcoming elections.
Summary:
Filmmaker R Balki, while talking about Amitabh Bachchan's cameo appearance in his directorial 'Pad Man', said, "I am not obsessed with (him)...
Summary:
Summary:
English Premier League table-toppers Manchester City were held to a 1-1 draw against Burnley on Saturday, while their rivals Manchester United registered a 2-0 win over Huddersfield Town, with Alexis Sánchez netting his first goal for the Red Devils.
Summary:
Former Indian cricketer Sachin Tendulkar said that his vision is to see India become a multi-sport nation, and suggested that India should look at creating 'Sport Cities'.
Summary:
Real Madrid will face Paris St Germain in the Champions League Round of 16 later this month.
Summary:
Facebook has filed a patent for a technology to automatically detect users' socio-economic status by collecting users' personal data, like education, homeownership and internet usage.
Summary:
Delhi BJP President Manoj Tiwari has demanded that the AAP-led Delhi government give â¹1 crore as compensation to the family of the Hindu man killed by his Muslim girlfriend's family in an alleged case of honour killing.
Summary:
A former female employee of US-based file digitising startup Ripcord has accused the startup's CEO Alex Fielding of improper behaviour at the workplace.
Summary:
The police have booked Telangana BJP MLA TR Singh for allegedly delivering a speech aimed at spreading hatred between two communities over the communal clashes in Uttar Pradesh's Kasganj.
Summary:
The government plans to assign four crore milk-producing cows in the country an Aadhaar-like cheap, unique identity card or UID, first proposed in 2015, at a cost of â¹50 crore, reports said.
Summary:
The J&K Police has alleged that two Kashmiri youth arrested for receiving arms training at a Lashkar-e-Taiba camp in Islamabad were given valid visas by the Pakistan High Commission in Delhi.
Summary:
Hukum Singh, BJP parliamentarian from Uttar Pradesh's Kairana, passed away aged 79 at a hospital in Noida on Saturday.
Summary:
The All India Council for Technical Education has introduced a mandatory course titled "Indian ethos and business ethics" for business school students, excluding IIMs. It includes lessons on Kautilya's Arthashastra, the "gurukul" system of learning and karma, and management lessons from the Vedas, Mahabharata, Bible, and Quran.
Summary:
A 23-foot-wide replica of the Moon has been put on display at the Gateway of India in Mumbai.
Summary:
India has joined the Ashgabat Agreement which plans to facilitate trade between Central Asia and the Persian Gulf by creating a transport and transit corridor.
Summary:
The members of the LGBTQ community on Saturday organised the 10th annual Mumbai queer pride parade through the city streets.
Summary:
Uttar Pradesh Minister Satyadev Pachauri on Saturday said that the violence in Kasganj was a "minor" incident which happens often everywhere, and there was no need to pay much heed.
Summary:
A German court has ordered a mosque in the town of Oer-Erkenschwick to stop broadcasting its weekly call to prayer by loudspeaker after it upheld a challenge by a Christian couple.
Summary:
Eighteen-year-old Prithvi Shaw led India to their record fourth ICC Under-19 World Cup title on Saturday.
Summary:
'Spice Girls' spokesperson confirmed that all five members of the pop band will be reuniting to work on 'new opportunities'.
Summary:
Actor Mukesh Khanna, known for his role as the superhero in the serial 'Shaktimaan', has resigned as the chairperson of Children's Film Society, two months prior to his term's end.
Summary:
Mohammad Kaif and Yuvraj Singh were among five cricketers from India's 2000 Under-19 World Cup-winning squad who went on to represent the senior team.
Summary:
India Under-19 team vice-captain Shubman Gill, who was named Player of the 2018 U-19 Cricket World Cup, is the only cricketer with 1,000-plus runs in an international format at an average of 100-plus.
Summary:
Congratulating India Under-19 team on their World Cup triumph, India captain Virat Kohli tweeted, "What a win for the U19 boys, take it as a stepping stone; Long long way to go!" Indian leg-spinner Yuzvendra Chahal wrote, "Special shoutout to Rahul Dravid sir.
Summary:
In 2017, over 12 lakh mobile users faced malware disguised as adult content for installing infected apps on devices, according to cybersecurity firm Kaspersky Lab. The firm also identified 23 families of malware that use porn content to hide their real functionality.
Summary:
Claiming that The Boring Company's flamethrower was facing issues with customs, the startup's founder and Tesla CEO Elon Musk announced that he was renaming it as 'Not a Flamethrower'.
Summary:
Underworld don Dawood Ibrahim has acquired a vast amount of property including hotels and mansions across the Midlands and southeast UK, according to a report.
Summary:
Most of the over 1,300 cryptocurrencies are even worse than Bitcoin, he said.
Summary:
The $7.5 million settlement that Casino billionaire and Wynn Resorts Founder Steve Wynn paid to a former employee reportedly involved a paternity claim.
Summary:
Top US banks like JPMorgan Chase, Bank of America and Citigroup have said they are halting the purchases of cryptocurrencies on their credit cards.
Summary:
CBDT Chairman Sushil Chandra has said that the Income Tax Department has issued nearly two lakh notices to people who deposited â¹15 lakh or more during demonetisation but didn't file returns.
Summary:
Sushant Singh Rajput took to social media to share a picture of him posing in his underwear for the cover of 'The Man' magazine for its February issue.
Summary:
Actress Sushmita Sen turned showstopper for the label 'Kotwara' at the ongoing Lakmé Fashion Week in Mumbai.
Summary:
A letter by Karni Sena National President Sukhdev Singh Gogamedi dismissed reports of the organisation withdrawing protests against the film 'Padmaavat'.
Summary:
Actor Ali Fazal has said that he is horrible with filing income tax, while adding, "It is like ICSE chemistry." The 31-year-old actor added, "Learn the periodic table.
defaulting on tax?"
Summary:
Oscar-winning composer AR Rahman's score from 2008 film 'Slumdog Millionaire' has been included in the line-up planned for the Oscar Concert on February 28 in Los Angeles.
Summary:
Twinkle Khanna has responded to a man who called the 'Pad Man' challenge, wherein celebrities are being asked to post a picture holding a sanitary pad, 'hypocrisy [in] its best form'.
Summary:
Sindhu, who had emerged victorious at India Open last year, won the semi-final with a scoreline of 21-13, 21-15.
Summary:
Suspended AAP leader Kapil Mishra has tweeted photographs of posters terming Delhi Chief Minister Arvind Kejriwal as the 'messiah of Muslims'.
Summary:
After the Karnataka BJP organised a 24-hour cow yagna for the protection of the animal, Congress parliamentarian BK Hari Prasad termed the programme as "black magic".
Summary:
Homegrown e-commerce startup Flipkart's losses have risen by 68% to â¹8,771 crore for the fiscal year 2017, according to reports.
Summary:
Kerala Assembly Speaker P Sreeramakrishnan was reimbursed nearly â¹50,000 by the state after spending the amount on purchasing a pair of spectacles, an RTI reply has revealed.
Summary:
A novel on Spain's imperial age, which was written 400 years ago and rumoured to be cursed, has been published.
Summary:
Russia will deploy warplanes on a disputed island near Japan after Russian PM Dmitry Medvedev allowed the nation's Air Force to use a civilian airport there.
Summary:
Mohamed Hadid, father of models Gigi and Bella Hadid, has been accused of date rape by a 23-year-old model.
Summary:
Rajput group 'Karni Sena' founder Lokendra Singh Kalvi has clarified that his organisation is not withdrawing the protests against the film 'Padmaavat'.
Summary:
The discovery was made using quasar microlensing, where gravitational effect of small objects creates magnified images of faraway galaxies.
Summary:
India remained unbeaten throughout the tournament, registering two 10-wicket wins and three wins by 100 runs or more.
Summary:
Prithvi Shaw, who led India to their record fourth Under-19 World Cup title on Saturday, has won all the 11 matches he has captained India U-19 in.
Summary:
Twenty-three-year-old Aiden Markram, who has played just two ODIs for South Africa, has been named as the country's captain for the remaining ODIs against India.
Summary:
Users are putting their Microsoft Surface Pro 4 tablets in the freezer to fix a screen flickering issue in the device.
Summary:
At nearly 9 hours, NASA still holds the spacewalk world record, set in 2001.
Summary:
Speaking at the Nobel Prize Series 2018 held in Goa, Physics Laureate Serge Haroche said, "Science is under attack from fake news and religious viewpoints which is confusing society." Haroche expressed concern about a rising number of people not accepting Darwin's Theory of Evolution.
Summary:
Goldfein is on an official trip to India, aimed at strengthening the relationship between the two nations' air forces.
Summary:
Uttar Pradesh Police conducted 15 encounters in the past two days, killing one gangster and arresting nearly 24 criminals, a police spokesperson said on Saturday.
Summary:
Prime Minister Narendra Modi's book 'Exam Warriors' was launched by External Affairs Minister Sushma Swaraj and Human Resource Development Minister Prakash Javadekar on Saturday.
Summary:
British TV presenter Piers Morgan has slammed the BBC for airing a lewd cartoon of him with US President Donald Trump.
Summary:
Actress Renuka Shahane has slammed a man for abusing her in Hindi by calling her a prostitute over one of her Twitter posts.
Summary:
Earlier, reports said his account was hacked after he started following Bigg Boss contestants including Shilpa Shinde, Priyank Sharma and Hina Khan as well as their fan clubs.
Summary:
Prithvi Shaw, aged 18 years and 86 days, has become the youngest-ever captain to win an ICC Under-19 World Cup final.
Summary:
Chand had slammed 111* in the 2012 Under-19 World Cup final.
Summary:
PM Narendra Modi and President Ram Nath Kovind congratulated team India on winning the Under-19 World Cup for a record fourth time.
Summary:
Indian leg-spinner Yuzvendra Chahal mocked teammate Kedar Jadhav's bowling action after the latter shared a picture of himself bowling in the first India-South Africa ODI.
I love bowling in the middle overs," to which Chahal replied, "Rolled your arm under not over Kedar bhaiyaaaa.
Summary:
After RJD MLA Upendra Paswan was attacked by unidentified assailants on Friday, party leader Tejashwi Yadav slammed Bihar Chief Minister Nitish Kumar over his silence on the incident and called him "mauni baba".
Summary:
After Congress President Rahul Gandhi slammed the Centre over the Union Budget, Finance Minister Arun Jaitley on Saturday said that Gandhi belonged to the new generation of 'Twitter bahadurs' who show bravery on the microblogging platform.
Summary:
Swamy proposed a voluntary cess to ensure that cows are protected even after they stop providing milk.
Summary:
Stating that the Indian Army is the world's most disciplined force, Jammu and Kashmir CM Mehbooba Mufti has said the AFSPA cannot be revoked due to the state's deteriorating condition.
Summary:
Addressing the Global Investors Summit in Guwahati on Saturday, Prime Minister Narendra Modi said that the northeast is at the heart of India's Act East Policy for connecting with Southeast Asia.
Summary:
Pakistani provincial minister Mir Hazar Bijarani, who was found dead in his house on Thursday along with his wife, first shot his wife dead and then killed himself with the same weapon, police have said.
Summary:
Syrian Kurds on Friday accused Turkey-backed rebels fighting them of mutilating and then filming the body of one of their female fighters after a video of her corpse emerged.
Summary:
A former Hawaii state worker who sent a false missile alert last month has said that at the time of sending the alert to the citizens he was "100% sure" that the attack was real.
Summary:
The company has become the largest private sector investor in Assam by investing â¹5,000 crore in last few years.
Summary:
Following India's U-19 team winning the World Cup today, the BCCI announced a cash reward of â¹50 lakh for head coach Rahul Dravid.
Summary:
Speaking after India's Under-19 team's triumph in the Under-19 World Cup, coach Rahul Dravid said that he feels embarrassed when he gets attention instead of the team that won the trophy.
Summary:
Eighteen-year-old Gill's family moved from Fazilka to Mohali to further his cricket when he was eight years old.
Summary:
After Rahul Dravid-coached India Under-19 team won the World Cup on Saturday, cricketer-turned-commentator Virender Sehwag tweeted, "Every Indian is delighted, all credit to Rahul Dravid for committing himself to these young kids, and a legend like him deserves to lay his hands on the WC.
Summary:
Google's video sharing platform YouTube has started rolling out notices below videos uploaded by news broadcasters that receive some level of government or public funding.
Summary:
US-based startup Mema engineering has developed a smart bike light which senses when a bike rider is slowing down or accelerating, automatically signalling any vehicle behind the bike.
Summary:
After BJP lost all three bypoll seats in Rajasthan, party MP Shatrughan Sinha on Friday tweeted, "Rajasthan becomes first state to give BJP Triple Talaq.
Summary:
Cricketer Yuvraj Singh-backed co-working space startup Creator's Gurukul has raised an undisclosed amount from investors including Rohit Nanda.
Summary:
NASA has shared a panoramic footage from the Curiosity Mars rover that shows the 18-km route the rover has driven from its 2012 landing site.
Summary:
It's suspected the vessel, carrying 13,500 tonnes of gasoline, may have been hijacked for ransom or attacked by pirates for the gas.
Summary:
Independent United Nations (UN) monitors have accused North Korea of supplying ballistic missile systems along with conventional weapons including rocket launchers and surface-to-air missiles to Myanmar.
Summary:
However, the world's richest person Jeff Bezos led the billionaires whose wealth increased and added $3.2 billion to his fortune.
Summary:
The father of the Malayalam actress who was molested on a moving train has said when she called him to inform him about the incident, he asked her to thrash the molester.
Summary:
Riteish Deshmukh shared a picture with wife Genelia D'Souza on Instagram on the occasion of their wedding anniversary and wrote, "Tu mile dil khile, aur jeene ko kya chahiye." His caption also read, "To my partner, my friend, my everything.
Summary:
Speaking about some of the things she hates about Alia Bhatt, Katrina Kaif said that Alia does not read or reply to her messages even when she is online.
Summary:
The new release date of John Abraham's upcoming film 'Parmanu: The Story of Pokhran' has been postponed to April 6.
Summary:
Reacting to India winning the Under-19 World Cup title, actor Shah Rukh Khan tweeted, "Wow. What a proud moment for young India.
Well done lil ones...May u keep conquering the world.
A great morning." "Finally a World Cup for Rahul Dravid!
Summary:
The US police have warned Netflix users of an email phishing scam as a part of which hackers using a fake account are asking users to provide personal information.
Summary:
A Goa court has issued a notice to Delhi Chief Minister Arvind Kejriwal in connection with the case filed against him by the Election Commission for his 'bribery' remarks during 2017 Goa elections campaign.
Summary:
Haryana Police on Saturday arrested three people and have identified a few more in connection with the attack on two Kashmiri students in the state's Mahendragarh District.
Summary:
A former student of MS University in Gujarat was detained on Saturday for allegedly setting the university's Vice-Chancellor's office on fire over delay in conferring degree.
Summary:
All India Muslim Personal Law Board (AIMPLB) has said it will introduce a new provision in its model 'Nikahnama' (Islamic marriage contract), asking the man to commit that he will not give Triple Talaq.
Summary:
The Goa government will install sanitary pad dispensers at all construction sites, state-run schools, and industrial estates from April, Goa Labour Minister Rohan Khaunte said on Thursday.
Summary:
Delhi High Court has upheld the life imprisonment awarded to five convicts in the 2010 Delhi gangrape case of a 30-year-old woman.
Summary:
Afghanistan President Ashraf Ghani has said that Pakistan is the headquarters of the Taliban and demanded that the country take immediate action against the militant group operating on its soil.
Summary:
US State Secretary Rex Tillerson has hinted at the Venezuelan Army ousting President Nicolás Maduro saying it has often been an "agent of change" in the country.
Summary:
India, who remained unbeaten throughout the tournament, also won the title in 2000, 2008 and 2012.
Summary:
The Supreme Court on Friday clarified that the Hindu Succession Act 2005, which gives equal rights to daughters on ancestral property, is also applicable for women born before 2005.
Summary:
Actress Disha Patani took to Twitter to slam a news channel for calling an old picture of her 'ugly'.
Disha added, "You couldn't get a better breaking news than that?"
Summary:
He said the reasons for Sensex's biggest crash since November 2016 needed to be figured out.
Summary:
Luger Shiva Keshavan and cross country skier Jagdish Singh will represent India at the PyeongChang Winter Olympics which begins on February 9.
Summary:
Irish agri-tech startup Cainthus has rolled out a plan to produce a predictive imaging system that can identify cows from their facial features and hide patterns.
Summary:
The National Highways Authority of India (NHAI) has told its officials to ensure proper maintenance of all tolled stretches across the country, warning them of toll charges being halved if they fail to do so.
Summary:
The arrest came after the police held four other private detectives who reportedly sold CDRs to Pandit.
Summary:
UP Shia Waqf Board chairman Waseem Rizvi on Friday said that those who are against the construction of Ram Mandir in Ayodhya should go to Pakistan and Bangladesh.
Summary:
A Delhi court has dropped sedition charges against two of the five people who hijacked an Air India plane in 1981.
Summary:
US President Donald Trump on Friday approved the declassification of a memo that accuses the FBI of abuse of power during its probe into alleged Russian collusion in the 2016 presidential election.
Summary:
Hackers have reportedly scammed customers of cryptocurrency startup BeeToken out of nearly $1 million worth of Ethereum in just a day.
Summary:
CBDT Chairman Sushil Chandra said the Income Tax Department has issued a "few lakh" notices to Bitcoin investors and is working to obtain taxes on these investments.
Summary:
Filmmaker Karan Johar was seen sporting grey hair as he turned showstopper for designer duo Falguni and Shane Peacock at the ongoing Lakmé Fashion Week in Mumbai.
Summary:
Bollywood actor and Indian Premier League side Kolkata Knight Riders' owner Shah Rukh Khan revealed during a question-answer session on Twitter that he will miss former KKR captain Gautam Gambhir, who was with them for seven years.
Summary:
Apple has offered to repair the iPhone 7 devices, that displayed 'No Service' in the status bar due to a failed component, for free.
Summary:
Flying taxi startup Joby Aviation has raised $100 million to take its all-electric vertical take-off and landing (eVTOL) passenger aircraft into pre-production, the startup has said.
Summary:
Cab-hailing startups Ola and Uber have signed the 'Shared Mobility Principles for Livable Cities' to achieve goals such as lower emissions, to create more livable cities.
Summary:
Mahindra & Mahindra's used vehicles selling subsidiary Mahindra First Choice Wheels has raised $15 million in funding from existing investors.
Summary:
Japanese conglomerate SoftBank has hired Andrew Kovacs as its Global Head of Communications for its $100 billion Vision Fund.
Summary:
Polar bears need over 12,000 kilocalories a day during their prime hunting season in the spring to stay healthy, according to US-based researchers.
Summary:
Indo-Australian single mother Rajeshwari Sharma recently performed her daughter's 'kanyadaan' (the ritual of giving away the bride), which is traditionally performed by brides' fathers.
Summary:
The Centre is planning to divest its stake in national carrier Air India by the end of 2018, Union Minister of State for Civil Aviation Jayant Sinha said on Friday.
Summary:
According to the complaint registered by the victim's father, the accused lured the girl with the promise of snacks and took her to an abandoned building where they assaulted her.
Summary:
Over 40 shops were gutted in a fire that broke out in Tamil Nadu's Madurai Meenakshi Amman temple complex on Friday.
Summary:
The students said they were returning to their campus from a mosque when the mob attacked them without any reason.
Summary:
Drugmaker GlaxoSmithKline (GSK) has reported a 69% year-on-year rise in standalone net profit to â¹89.7 crore for December quarter, compared to â¹52.95 crore in the same period last fiscal.
Summary:
For every â¹1 the government plans to raise, 19 paise will come from borrowings and 70 paise will come from direct and indirect taxes in the financial year 2018-19.
Summary:
So, the net taxable income of employees under 60 years of age will be a reduction of â¹5,800 from salary income.
Summary:
The combined market capitalisation of all companies listed on the BSE fell by â¹4.6 lakh crore on Friday, from about â¹153.1 lakh crore earlier.
Summary:
A man in China hired a digger to steal 500 tonnes of concrete slabs which formed an 800-metre stretch of road in the Jiangsu province and sold them to a stone materials factory for $793, police said.
Summary:
Summary:
She said, "This man brushed past me...
Summary:
The Budget 2018 has proposed a standard deduction of â¹40,000 for salaried people in place of existing transport allowance and medical reimbursement.
Summary:
Yuvraj was player of the tournament in the 2000 U-19 World Cup and the 2011 ICC World Cup, and was also a part of India's 2007 World T20 winning team.
Summary:
Palaeontologists have discovered a new species of fish after a 10-year-old tourist noticed the shape of a fish in flagstones during a monastery tour in Colombia.
Summary:
CBI has filed a petition in the Supreme Court challenging Delhi High Court's 2005 order quashing all charges against those accused in a â¹64-crore Bofors pay-off case.
Summary:
The Railways Ministry is rethinking the current flexi-fare system and is considering introducing a dynamic pricing system for train tickets, Railway Minister Piyush Goyal has said.
Summary:
Jamaat-ud-Dawah chief and 26/11 Mumbai attack mastermind Hafiz Saeed has said that Pakistan and not India was behind his house arrest last year as the Pakistani government wanted to stop him from raising the Kashmir issue.
Summary:
The Ministry added that homosexuality is against the ethos of the country.
Summary:
Talking about actress Swara Bhasker being criticised for writing an open letter opposing how jauhar was allegedly endorsed in Sanjay Leela Bhansali's 'Padmaavat', Richa Chadha said, "I think she was ready for the abuse." Richa added, "She, later, wrote in Hindi also and said, "Aap Hindi Mein Gaali De Sakte Hain".
Summary:
Deepika Padukone took to social media to share a picture of a letter sent to her by Amitabh Bachchan, praising her for her performance in 'Padmaavat'.
Thank You Baba," she wrote while sharing the picture.
Summary:
The release date of Hrithik Roshan and Tiger Shroff's yet untitled film has been announced as October 2, 2019.
Summary:
Summary:
Actress Amy Schumer has said she was "flat-out raped" while talking about her first sexual encounter.
Summary:
Du Plessis injured his right index finger during the first ODI in Kingsmead.
Summary:
Meanwhile, Saina Nehwal, who finished second in Indonesia Masters last week, lost her quarter-final match against America's Zhang Beiwen.
Summary:
Ingram tried to hook the ball and got a top edge before Ludeman leapt high and plucked the ball with his right hand.
Summary:
The intended attack came after the man had requested the judge to grant him "five minutes" alone with Nassar in a locked room.
Summary:
While Sachin and Sehwag are the only Indians in the XI, the side features three South Africans, four Australians and a Sri Lankan.
Summary:
The BJP on Friday released its first list of 45 candidates who will contest the upcoming Meghalaya Assembly elections.
Summary:
Union Budget 2018-19 is a clear indication that the Centre is alarmed by the Gujarat election result and has realised that the rural population was "moving away from it", the Shiv Sena said on Friday.
Summary:
BJP-ally National People's Party President WR Kharlukhi on Friday said that JD(U) chief Nitish Kumar was the only person who could unseat BJP from power at the Centre and not Congress President Rahul Gandhi.
Summary:
Namibia is sending thousands of soldiers on leave next month as the country has run out of money to feed them or pay essential bills.
Summary:
A Stanford University study has secured approval to conduct human tests for a cancer vaccine that had a 97% success rate in tests on mice.
Summary:
The initiative will reportedly require â¹11,000 crore in state and central funding.
Summary:
Ganguly wrote that he was embarrassed after a policeman recognised him when he was going for 'Durga Bisharjon' but told him to keep this secret.
Summary:
Ukrainian artists Daniel Green and Daria Marchenko have made a seven-foot-tall portrait of US President Donald Trump using coins and casino tokens.
Summary:
Discussing the row over 'Padmaaavat' allegedly endorsing jauhar, Sanjay Leela Bhansali said, "It's like saying...Hrishikesh Mukherjee endorsed cancer in Anand...It is the story, it is what happened." He added, "Why must a filmmaker be answerable to socio-political interpretations for every action...
Summary:
Shah Rukh Khan took to Twitter to share a picture with his co-stars, Anushka Sharma and Katrina Kaif, from the upcoming film 'Zero'.
Summary:
Slamming the BJP-led Centre for not allocating funds to Andhra Pradesh in the Budget, the ruling TDP state government has said, "We are going to declare war." The TDP, which is part of the NDA alliance, had demanded more funds for infrastructure development after Andhra Pradesh and Telangana were separated.
Summary:
Summary:
Former boxing champion Floyd Mayweather hinted at his entry in MMA after sharing a video of himself standing in an MMA cage on social media.
Summary:
"I'd rejected his offer earlier in the day, but couldn't refuse a second time," Ganguly wrote in his book.
Summary:
Willey hit 79(36) as England XI won by 8 wickets.
Summary:
Japanese automaker Nissan has unveiled slippers, tables, and floor cushions that park themselves using autonomous driving technology.
Summary:
Congress President Rahul Gandhi on Friday tweeted, "In Parliamentary language, the Sensex just placed a solid 800 point No Confidence Motion against Modi's budget." The BSE benchmark index fell by nearly 840 points a day after the government presented the Union Budget.
Summary:
A video showing Uttar Pradesh Director General (Home Guard) Surya Kumar Shukla taking a pledge to ensure that the Ram Mandir is constructed in Ayodhya "at the earliest" has surfaced online.
Summary:
She was arrested while taking the money from him.
Summary:
Whereas the US holds a national debt of $20.6 trillion, which is 32% more than the bloc's debt.
Summary:
China has praised UK PM Theresa May for "sidestepping" questions over China's violation of human rights during her visit to the country.
Summary:
Pakistan's Foreign Office has said that the country has killed 17,614 terrorists in counter-terrorism operations since the 9/11 attacks.
Summary:
Filmmaker Karan Johar has revealed that he has taken relationship advice from actress Katrina Kaif.
Summary:
Several religious organisations in Senegal have called for the cancellation of singer Rihanna's visit to the country, accusing her of planning to promote homosexuality, which is illegal in the West African country.
Summary:
Yun-hi chalta rahe!" The film is the third instalment of the 'Yamla Pagla Deewana' franchise and stars Sunny Deol, Bobby Deol and Kriti Kharbanda.
Summary:
Summary:
Three jawans were killed and one was injured after an avalanche hit an Army post in Jammu and Kashmir's Kupwara district on Friday.
Summary:
A Motor Accident Claims Tribunal has awarded â¹1.25 crore to the two minor sons of a CRPF jawan, who was killed after a rashly-driven truck collided with his motorbike in 2016.
Summary:
India plays an important role in the fight against terrorism which is one of the key aspects of the policy, it added.
Summary:
Two French military helicopters belonging to an Army flight training school crashed into each other at Carcès Lake on Friday, killing five crew members aboard the helicopters, officials have said.
Summary:
Seven Indian boxers, including five-time world champion Mary Kom, won gold medals in the India Open International Boxing Tournament.
Summary:
It is the world's largest government-funded healthcare programme and will provide â¹5 lakh annual cover to 10 crore poor families.
Summary:
OnePlus announced its official 'BuyBack Program' on the e-store oneplusstore.in in partnership with Cashify, which allows you to exchange your old phone for best exchange value and get instant cash for the purchase any OnePlus device on oneplusstore.in.
Summary:
He reportedly urged his friends to let him complete the unfinished game while being wheeled away.
Summary:
Mukesh Ambani-led Reliance Jio has clarified that they haven't launched any app called JioCoin.
Summary:
Actor Shah Rukh Khan's former chartered accountant Moreshwar Ajgaonkar has told Income Tax officials that he used forged documents to purchase Alibag plots on the instructions of SRK.
Summary:
Dylan O'Brien starrer 'Maze Runner: The Death Cure', which released today, "is neither as satisfying as Harry Potter nor as campy as Twilight," wrote Hindustan Times.
Summary:
Virat Kohli has equalled Sourav Ganguly's record of most ODI hundreds as India captain after slamming his 11th against South Africa on Thursday.
Summary:
The ICC confirmed that there is "strong evidence" to indicate that the UAE-based Ajman All Stars tournament is a "corrupt event", but also clarified that it cannot take action as it does not fall under its sanctioning purview.
Summary:
Sony CEO Kazuo Hirai will step down from the position, effective April 1, 2018, the Japanese technology company announced on Friday.
Summary:
Last week, Vakrangee had purchased about 0.5% stake in PC Jeweller.
Summary:
The cryptocurrency market has lost over $100 billion in market capitalisation in less than 24 hours.
Summary:
Actor Jim Carrey won't face trial over the suicide of his ex-girlfriend Cathriona White in 2015 as the charges against him have been dismissed.
Summary:
Summary:
Actor Dwayne Johnson has revealed his mother tried to commit suicide when he was 15 years old by jumping in front of a moving car.
Dwayne added, "What's crazy...
Summary:
Actor Shahid Kapoor, while speaking about Ranveer Singh's portrayal of 'Alauddin Khilji' in the film 'Padmaavat', said he would have played the character differently.
Summary:
Summary:
Commenting on the Union Budget 2018, Yoga guru Ramdev said it would've been better to increase the non-taxable income limit to â¹5 lakh per annum.
Summary:
As many as five pairs of badminton doubles pairings from India in various disciplines have reached the quarterfinal stage of the ongoing India Open Super 500 tournament.
Summary:
Billings first caught Faulkner inside the boundary and tossed the ball before crossing the boundary after losing balance.
Summary:
Sri Lankan player Kusal Mendis missed scoring a double ton on his 23rd birthday after he got dismissed for 196 while playing against Bangladesh in the first Test on Friday.
Summary:
An Indian-origin girl named Mayuri Bhandari has shared a video of herself dancing to Deepika Padukone's song 'Ghoomar' while figure skating at the Ice Centre in Las Vegas.
Summary:
Noida-based fashion startup FabAlley has raised â¹5 crore in venture debt from Trifecta Capital, the startup said in a statement.
Summary:
Alibaba shares plunged as much as 5.9%, the sharpest decline in 18 months.
Summary:
He accused the woman of lying to snatch Jayalalithaa's properties.
Summary:
Hyderabad Police is suspecting a case of human sacrifice for 'Super Blue Blood Moon' after a 3-month-old infant's severed head was found on the terrace of a residence in Hyderabad.
Summary:
The police claimed that the accused even admitted to assaulting his 16-year-old girlfriend.
Summary:
The US is pushing the whole world towards a nuclear war, North Korea has said in a letter to the UN.
Summary:
Benchmark index BSE Sensex closed nearly 840 points down at 35,067 on Friday, a day after Finance Minister Arun Jaitley unveiled the 2018 Union Budget.
Summary:
The UAE has opened the world's longest zip line which is 2.83 km long, equivalent to the length of 28 football fields.
Summary:
The Supreme Court on Friday refused to hear a petition which sought to make the offences of rape, sexual assault, outraging of modesty, voyeurism, and stalking gender-neutral.
This appears to us like an imaginative petition," the bench said.
Summary:
A Class 9 student died on Thursday after a fight with fellow students in a school's washroom in Delhi.
Summary:
Michelle Obama has responded to the tweet of a 9-year-old girl's mother wherein she said that her daughter loves that the former US First Lady is brown and thus dressed up like her for a school project.
Summary:
We like naked girls." However, several women who attended the conference said the party made them 'uncomfortable'.
Summary:
Directed by Sudhir Mishra, the film is scheduled to release on March 9.
Summary:
Aamir Khan and Zaira Wasim starrer 'Secret Superstar' has earned over â¹500 crore in China within 2 weeks of its release.
Summary:
Finance Minister Arun Jaitley on Thursday said that the Long-term Capital Gain (LTCG) tax alone will be enough to cover the bill for Centre's National Health Protection Scheme and to fund the minimum support price (MSP) payment to farmers.
Summary:
With the announcement of hike in customs duty in Union Budget 2018-19, luxury car prices will witness a rise of â¹1.25 lakh to â¹5 lakh.
Summary:
Describing the Union Budget 2018-19 as "pragmatic", economist Arvind Panagariya on Thursday said that the coverage of 10 crore families for expenses up to â¹5 lakh under government-funded health care is the most significant programme.
Summary:
Google's parent company Alphabet has posted a loss of $3.02 billion for the quarter ended December 31, 2017.
Summary:
Google's parent company Alphabet has posted revenues of $110.9 billion, an increase of 23% year on year for fiscal year 2017.
Summary:
Alpha One is a single passenger vehicle and is 9.2 feet tall.
Summary:
Apple has posted an all-time record revenue of $88.3 billion, an increase of 13 percent from the year-ago quarter for first quarter ended December 30, 2017.
Summary:
E-commerce giant Amazon has posted a net income of $1.9 billion for its fourth quarter ended December 31, 2017, which is the largest in its history.
Summary:
The tourists will be able to go on spacewalks and shoot video clips during the trip which could cost approximately $100 million (around â¹640 crore), Solntsev added.
Summary:
While talking about rape cases of an 8-month-old girl in India and a 7-year-old in Pakistan, the United Nations Spokesperson Stephane Dujarric said that such cases are witnessed in all the countries.
Summary:
Over 1,200 graduates from IITs and NITs have been selected to teach 53 state-run engineering colleges in backward areas, Union Human Resource Development Minister Prakash Javadekar has said.
Summary:
This comes after the apex court directed two doctors from AIIMS to visit the victim and assess her medical condition.
Summary:
The green patch in the charts would increase on getting positive reactions, red on negative, and grey on neutral responses.
Summary:
Benchmark index BSE Sensex fell over 570 points to 35,328 on Friday, a day after Finance Minister Arun Jaitley unveiled the Budget 2018.
Summary:
After Brazilian football club Portuguesa lost a match 0-3, some angry fans stole pizzas which were to be delivered to the players.
Summary:
An FIR has been filed against four AAP MLAs for allegedly assaulting BJP leader Vijender Gupta, two city mayors and others at CM Arvind Kejriwal's residence on Tuesday.
Summary:
Infosys Co-founder SD Shibulal has launched a startup incubator EduMentum that aims to help early stage organisations working in the space of systemic education transformation.
Summary:
As many as four people have died and another has been critically injured after a passenger train ran over them in Bihar on Friday.
Summary:
Unveiling a bolder and more confident Vistara, watch the fabulous Deepika Padukone fly the new feeling amongst the clouds in a vibrant and playful mood, truly capturing the aspirations of the airline.
Summary:
Finance and Revenue Secretary Hasmukh Adhia, along with seven other members, was involved in making the Union Budget 2018 that was presented by Finance Minister Arun Jaitley on Thursday.
Summary:
A man has been arrested for allegedly raping a 19-year-old girl inside a movie theatre in Hyderabad.
Summary:
A businessman has been arrested by Mumbai Police based on a molestation and stalking complaint filed against him by veteran actress Zeenat Aman.
Summary:
A Malayalam actress was allegedly sexually harassed on a moving train from Kannur to Thiruvananthapuram on Wednesday night.
The actress also stated that apart from two men, none of her co-passengers came to help her.
Summary:
The government has made Permanent Account Number (PAN) mandatory for any entity conducting financial transactions of â¹2.5 lakh or more.
Summary:
After scoring his first ODI century in South Africa on Thursday, Indian captain Virat Kohli now has scored ODI tons in all the nine countries he has played in.
Summary:
Bengaluru-based online grocer BigBasket has raised $300 million in a funding round led by Chinese e-commerce giant Alibaba, the startup's CEO Hari Menon said.
Summary:
Food discovery and ordering startup Zomato has raised $200 million from Chinese e-commerce giant Alibaba's payment affiliate Ant Financial, filing has revealed.
Summary:
Bombay High Court on Thursday told the Central Industrial Security Force (CISF) that since tattoos will not interfere with an applicant's duties, CISF must make an exception to their rules.
Summary:
US President Donald Trump has tweeted that his State of the Union speech was watched by 45.6 million people, falsely claiming that it was the most-watched in history.
Summary:
France will include sales of illegal drugs in its GDP calculations in compliance with European Union rules that require all bloc members to account for such revenues.
Summary:
As many as 955 miners were trapped underground at a gold mine in South Africa on Thursday following a power cut that is preventing lifts from bringing them to the surface.
Summary:
Rajput group Karni Sena on Friday claimed that the ruling-BJP had lost all three Rajasthan bypoll seats to Congress as it did not ban the release of the film 'Padmaavat'.
Summary:
Actress Anushka Sharma shared a series of pictures of her husband Virat Kohli on her Instagram stories after he scored his 33rd ODI hundred in South Africa on Thursday.
Summary:
Actress Neha Dhupia has slammed a troll who tweeted to her, "Life is too short so do more skin show and sex." This was a reply to her tweet which read, "Life's too short...
Summary:
Actor Kamal Haasan has said that he is not anti-Hindu and that he viewed Christianity and Islam in a "similar" manner.
Summary:
Ola's Co-founder Bhavish Aggarwal has said that India's Union Budget 2018 is, "progressive, balanced and forward-looking." Snapdeal's Co-founder Kunal Bahl also commended the Budget for its focus on growing the country's digital footprint and improving the ease of doing business.
Summary:
Uruguayan striker Luis Suarez scored a header to help defending champions Barcelona go past Valencia in the first leg's semi-final of the Copa del Rey championship at Camp Nou on Thursday.
Summary:
Former Formula One boss Bernie Ecclestone called the racing league's new owners' decision to end the use of 'grid girls' in the Formula One races as being 'prudish'.
Summary:
Tony Chapron, the French referee who kicked out at a footballer before sending him off during a Ligue 1 game, was handed a three-month ban with a further three months suspended ban by the Ligue 1.
Summary:
Chairing a meeting of 17 non-NDA party leaders, former Congress President Sonia Gandhi urged everyone to bury their differences and unite against the ruling BJP at a national level.
Summary:
"The principal lost control of his vehicle while taking a U-turn...he drove his car into a group of children who were returning to their respective classes after morning prayers," police said.
Summary:
The Railways is considering a proposal to allow the private sector to own, operate, and execute railway lines, senior officials said on Thursday.
Summary:
At least 18 people were injured on Friday in China's Shanghai after a van caught fire and plowed into pedestrians near a Starbucks outlet.
The fire was caused as the van's driver was smoking a cigarette inside the vehicle.
Summary:
The US State Department's third-ranking official, Under Secretary for Political Affairs Thomas Shannon, resigned from his post on Thursday, becoming the latest senior diplomat to exit President Donald Trump's administration.
Summary:
Fidel Castro Diaz-Balart, the eldest son of late Cuban revolutionary leader and President Fidel Castro, committed suicide aged 68 on Thursday after being suffering from depression, state media has reported.
Summary:
India, who last won an ODI in South Africa on January 18, 2011, also ended the African nation's 17-ODI winning streak at home.
Summary:
Kohli's previous highest ODI score in South Africa was 87*.
Summary:
Canada's Upper House of Parliament has passed a bill to modify the country's national anthem in a bid to make it gender-neutral.
Summary:
Congress leader Tehseen Poonawalla said, "50% MSP to farmers.
Summary:
Though the government slashed excise duty on petrol and diesel in the 2018 Union Budget, fuel prices remained unchanged due to the introduction of a road and infrastructure cess.
Summary:
The total exempted capital gains from listed shares and units is â¹3.67 trillion as per returns filed for the assessment year 2017-2018, the minister added.
Summary:
Slamming the Union Budget presented by the government on Thursday, Congress President Rahul Gandhi tweeted, "4 years gone; FANCY SCHEMES, with NO matching budgets." He added that the Centre had failed to provide employment to the youth during the last four years of BJP's rule.
Summary:
Ex-Finance Minister P Chidambaram on Thursday said PM Narendra Modi's speech and the spirit of Davos have been forgotten within a few days.
Addressing the World Economic Forum in Davos, PM Modi had said India is an investment in the future.
Summary:
The government on Thursday hiked the defence budget for the next financial year to â¹2.95 lakh crore, a nearly 7.81% increase from last year.
Summary:
BCCI's official Twitter account mistakenly wrote on the microblogging platform that South African captain Faf du Plessis was run-out by Rohit Sharma for 30 runs in the ongoing ODI in Durban.
Summary:
Congress candidates have won Ajmer and Alwar parliamentary seats and the Assembly seat for Mandalgarh in the Rajasthan bypolls.
Summary:
West Bengal CM Mamata Banerjee-led Trinamool Congress (TMC) has won the bypolls for the Lok Sabha constituency of Uluberia and the Assembly seat of Noapara.
Summary:
A newborn baby died after falling on the floor when the mother was forced to walk to the delivery room in a government hospital in Madhya Pradesh.
Summary:
The high court recently expressed its displeasure towards the state authorities for failing to prevent cockfights, which took place on a large scale during Sankranti.
Summary:
The officer had demanded â¹1,000 from the rider for releasing his motorcycle, which was involved in an accident.
Summary:
Nearly 1,700 US military bases, constituting half of all US bases worldwide, are threatened by climate change, according to a study by the US Department of Defence.
Summary:
Indian all-rounder Yuvraj Singh took to Instagram to share selfies taken by his wife Hazel Keech and claimed that he made her "selfies sexier" by photobombing them.
Summary:
Interestingly, Goyal, who took over the Railway Ministry last year, hasn't presented a Railway Budget.
Summary:
During his 2018 Union Budget speech on Thursday, Finance Minister Arun Jaitley announced that the Centre plans to invest over â¹51,000 crore for the expansion of the railway network in Mumbai.
Summary:
All-rounder Kieron Pollard thanked Mumbai Indians for retaining him despite being snubbed from Windies squad.
Summary:
Bangladesh's total of 513/10 against Sri Lanka in the first Test on Thursday is the highest total in Test cricket history not including a bye or a leg-bye.
Summary:
The Court of Arbitration for Sport on Thursday lifted life bans on 28 of the 43 Russians accused of doping at the 2014 Sochi Winter Olympics.
Summary:
A man in Mumbai has filed an FIR against e-commerce giant Flipkart after he allegedly received a detergent bar instead of his order of an iPhone 8.
Summary:
Asserting that schools are not places of marketing, several teachers said that the decision is against the mandate of education.
Summary:
The Army personnel will be protected under the AFSPA in J&K's Shopian firing incident which killed three civilians, reports said.
Summary:
Conceptualised by PM Modi, the book emphasizes why students should prioritise knowledge over marks.
Summary:
Poland has issued a list to the Interpol to help find 1,600 Nazis accused of committing war crimes in German concentration camps.
Summary:
Healthcare, transport and consumer goods companies are also expected to benefit from the Budget.
Summary:
The budgetary and extra-budgetary expenditure for infrastructure sector was increased to â¹5.97 lakh crore.
Summary:
In the Union Budget 2018, the government has announced that it will invest â¹1 lakh crore to upgrade the country's education infrastructure over four years.
Summary:
The government boosted funding for 59 schemes such as the crop insurance scheme and the umbrella scheme for development of Scheduled Castes.
Summary:
Commenting on the 2018 Budget, former Prime Minister Manmohan Singh said that the word 'reform' had been used and abused too many times.
Adding that he couldn't blame the Budget for being politically motivated, Singh said that the fiscal arithmetic was at fault.
Summary:
Finance Minister Arun Jaitley has announced that the government will develop a scheme to assign every major or small enterprise in India a unique ID.
Summary:
After the Union Budget 2018 was presented in the Parliament, PM Narendra Modi has said that the Budget will help strengthen the country's foundation.
It is PM Modi-led government's last full budget before the 2019 elections.
Summary:
Jaitley announced that the government roadmap for infrastructure for FY 2018-19 will include plans to introduce seaplanes and a passenger-friendly toll policy.
Summary:
Benchmark index BSE Sensex fell nearly 700 points from a high of 36,227 while Finance Minister Arun Jaitley was presenting the Budget.
Summary:
A Live video on Facebook, claiming to show the 'Super Blue Blood Moon' in Greece, used a nine-year-old still image of the moon, according to reports.
Summary:
"This rocket was meant to test very high retrothrust landing in water so it didn't hurt the droneship, but amazingly it has survived," Musk tweeted.
Summary:
In December 2017, Adobe announced it achieved gender pay equality in the United States.
Summary:
Notably, the firm only offered 20,000 flamethrowers for sale.
Summary:
After reports said that an Indian Air Force officer was taken into custody for allegedly spying, Defence Minister Nirmala Sitharaman has said the force had enough reasons to take such an action.
Summary:
The woman had eloped with her lover and the baby had remained with the father.
Summary:
The Centre on Thursday told the Supreme Court that death penalty is not an answer to every child abuse case and that there are graded penalties for graded offences under the POCSO Act, 2012.
Summary:
North Korea's flag was raised in South Korea on Thursday ahead of the Winter Olympic Games despite having laws against it.
Summary:
Summary:
Actor Kamal Haasan has been invited by the Harvard University to deliver a speech on February 10.
He had earlier spoken at Harvard University in 2016.
Summary:
During his 2018 Budget speech, Finance Minister Arun Jaitley on Thursday said the government will introduce an 'e-assessment system' for taxpayers to reduce "person-to-person contact".
Summary:
With 110,000 condoms set to be made available during the event, 2018 Winter Olympics in PyeongChang will set a record for the most number of condoms to be handed out at a Winter Olympics.
Summary:
Twitter Co-founder Biz Stone has participated in London-based fact-checking startup Factmata's $1 million seed funding round, the startup said.
Summary:
Users will be able to book Jump bikes within the Uber app and will have to go to the location of the bike.
Summary:
US-headquartered investment firm Tiger Global has reportedly surfaced as the biggest beneficiary with $424 million after selling an estimated 2.2% stake in the firm last year to SoftBank.
Summary:
As many as 25 to 40 children are treated every year under the project, which started in 2012.
Summary:
Goa CM Manohar Parrikar has said the government will start imposing a â¹5,000-fine for drinking in public places.
Summary:
The University of Hyderabad has suspended a research scholar for one year after he allegedly abused and questioned the credentials of a Dalit professor on social media last November.
Summary:
Supermodel Kate Upton has accused fashion brand Guess' Co-founder Paul Marciano of sexually harassing women.
Summary:
Machinery used to decrease air pollution, chromite, and ball screws will also become cheaper.
Summary:
The dictionary took 44 more years to complete as the final and 125th portion was published in 1928.
Summary:
The Hollywood sign, erected in 1923, was originally a real estate advertisement that read 'Hollywoodland'.
Summary:
While Shahid was dressed in a white bandhgala, Mira wore a white bridal lehenga from Dongre's Songs of Summer collection.
Summary:
He also revised the fiscal deficit estimate for the current financial year to 3.5% of GDP as against 3.2% earlier.
Summary:
In a break from tradition, Finance Minister Arun Jaitley has presented the Union Budget 2018 in both Hindi and English.
Summary:
Jaitley used 'government' 122 times whereas 'Crore' and 'India' were used 111 times and 96 times respectively.
Summary:
The government has projected the fiscal deficit at 3.3% of GDP for 2018-19.
Summary:
While presenting the Budget 2018, Finance Minister Arun Jaitley announced that 8 crore poor women would be provided with free LPG connections.
Summary:
Technology giant Apple in a statement said the company would never "do anything to intentionally shorten the life of any Apple product." It came after US authorities reportedly started investigating if Apple violated securities laws while issuing the software update that slowed iPhone models.
Summary:
Australia's Brisbane Airport has announced that it will become the world's first airport to let travellers pay with cryptocurrency like Bitcoin and Ethereum at its terminal shopping areas.
Summary:
Previous studies have demonstrated stopping light by trapping it inside crystals or ultracold clouds of atoms.
Summary:
Scientists have unveiled a sandstone slab which contains about 70 dinosaur and mammal footprints dating back over 100 million years.
Summary:
The CBI on Thursday filed a chargesheet against Dera Sacha Sauda chief Gurmeet Ram Rahim Singh and two doctors for allegedly castrating around 400 followers.
Summary:
The combination of US President Donald Trump and Prime Minister Narendra Modi is a very good one, US Ambassador to the UN Nikki Haley has said.
Summary:
The European Union (EU) has pledged over â¹330 crore in aid to Palestine after the US withheld aid to a UN agency supporting Palestinian refugees.
Summary:
The Ritz hotel in Paris has decided to auction more than 10,000 pieces of furniture and art objects, some of which date back to the 1920s.
Summary:
The Bombay High Court today said it hasn't found any violation by the state in allowing the early release of Sanjay Dutt from jail in the 1993 bomb blasts case.
Summary:
Actor Tiger Shroff took to social media to wish his father Jackie Shroff on the occasion of his 61st birthday today.
Summary:
Summary:
After presenting the 2018 Budget, Finance Minister Arun Jaitley on Thursday said that he has been putting surplus money in the hands of the middle-class taxpayer step by step, in every budget.
Summary:
The Apple supplier at present assembles iPhone SE models at its Bengaluru plant.
Summary:
Customs officials found two black pouches containing the gold bars from an unoccupied seat pocket of the aircraft.
Summary:
Haji Zahooruddin, the Managing Director of Karim's restaurant in Delhi, died at the age of 85 on January 27.
Summary:
While TMC's Sunil Singh won the Noapara seat, Sajda Ahmed won from Uluberia by over 4 lakh votes.
Summary:
European science academies have warned that sucking carbon dioxide from air will not work on the vast scales needed to beat climate change.
Summary:
With the announcement of Union Budget 2018-19, automobiles including cars and motorcycles have become more expensive.
Tobacco items including bidi, cigarettes and pan masala are set to become costlier.
Summary:
The Supreme Court has adopted a roster system for allocation of cases after four judges went public with allegations that Chief Justice Dipak Misra allocated cases to benches of his preference without any rational basis.
Summary:
While presenting the Union Budget 2018 on Thursday, Finance Minister Arun Jaitley said that the government will encourage organic farming by farmer collectives in large clusters.
Summary:
While presenting the Union Budget 2018 on Thursday, Finance Minister Arun Jaitley announced that the salaries of all the Members of Parliament (MPs) will be automatically revised every five years based on inflation.
Summary:
Finance Minister Arun Jaitley had said that this year's budget will focus on improving agriculture and India's rural economy.
Summary:
While presenting the Union Budget 2018, Finance Minister Arun Jaitley announced that health and education cess will be increased from 3% to 4%.
Summary:
The exemption amount on interest income of senior citizens from deposits in banks and post offices will be increased from â¹10,000 to â¹50,000.
Summary:
While presenting the Union Budget 2018, Finance Minister Arun Jaitley said that 187 projects have been sanctioned at a cost of â¹16,713 crore under the Namami Gange Programme to conserve River Ganga.
Summary:
While presenting the Union Budget 2018, Finance Minister Arun Jaitley on Thursday announced that over 5 lakh WiFi spots will be created in rural areas.
Summary:
While announcing the addition of 56 new airports under the government's UDAN scheme, Finance Minister Arun Jaitley said that those people in "hawai chappal" are also flying in "hawai jahaj".
Summary:
Finance Minister Arun Jaitley has announced that â¹10,000 crore was allocated for creating and supporting telecom infrastructure under various government projects.
Summary:
It has been revealed to the court that US Gymnastics doctor Larry Nassar, who was sentenced to 40 to 175 years in prison for sexual abuse, abused a total of 265 women.
Summary:
Other researchers also raised doubts about humans leaving Africa so long ago.
Summary:
Wishing the Indian Coast Guard on its 41st Foundation Day, PM Narendra Modi on Thursday tweeted, "The Indian Coast Guard is serving the nation with great assiduousness." "They not only guard our coasts but also help protect the maritime environment," he added.
Summary:
As two democracies sharing common values, the sky is the limit for bilateral relations between the US and India, US Ambassador to the UN Nikki Haley has said.
Summary:
A Reddit user has shared a picture of the 'breakup letter' he wrote to his gym to end his membership.
Summary:
Italian police have arrested a postman after finding nearly 500 kg of undelivered mail stashed away in his garage.
Summary:
A new still from Alia Bhatt and Vicky Kaushal starrer 'Raazi' has been released.
Summary:
He claimed that being in a good spot in the economy doesn't mean that every Indian is doing well if the economy is doing good.
"No government can claim it has solved unemployment problem.
Summary:
The festival will host a performance by Farhan Akhtar and Varun Thakur on Feb 4.
Popular band Indian Ocean and international artists will also perform at the festival on 2nd Feb for free.
Summary:
Bad Budget and nothing for middle class!
Good Budget but nothing for middle class!" "Moral of #Budget2018 Never be average.
Summary:
Voicing concern over air pollution in Delhi-NCR, Jaitley had said the Centre will subsidise machinery combating pollution.
Summary:
Criticising the Union Budget presented by Finance Minister Arun Jaitley on Thursday, Congress leader Manish Tewari has accused the BJP-led Central government of paying lip service to farmers and other marginalised sections.
Summary:
Pakistan was awarded the third place in the Under-19 World Cup after their third-place playoff against Afghanistan was washed out without a ball being bowled on Thursday.
Summary:
Chris Gayle, who was bought by Kings XI Punjab, shared a video of him doing a bhangra celebration after dismissing teammate Andre Russell in a practice session.
Summary:
Former Himachal Pradesh CM Virbhadra Singh, his wife Pratibha have been named as accused in a money laundering case in a chargesheet filed by the Enforcement Directorate on Thursday at a Delhi court.
Summary:
A video footage of a masked man robbing a couple after holding their child at gunpoint in an ATM in Indore has surfaced online.
Summary:
While customs duty on mobile phones has been increased from 15% to 20%, it has been increased to 15% on some TV parts.
Summary:
"Government made many positive changes in the personal income tax rates in the last three years," Jaitley said.
Summary:
Further, the Vice President's monthly salary will be increased to â¹4 lakh from â¹1.25 lakh.
Summary:
Finance Minister Arun Jaitley announced that the Indian government does not consider cryptocurrencies like Bitcoin a legal tender and will take all possible measures to curb their use for illegal activities.
Summary:
He added that 1.88 crore individual business taxpayers paid â¹25,753 on average.
Summary:
During the launch of its 28th Earth-orbiting mission, a piece of insulating foam broke off and struck the left wing.
Summary:
Finance Minister Arun Jaitley has said that corporate tax rate for companies with a turnover of up to â¹250 crore will be reduced to 25% from the present 30%.
Summary:
Finance Minister Arun Jaitley on Thursday said that cash payments at toll plazas will be done away with and the government will introduce a toll system based on 'pay-as-you-use' model.
Summary:
Summary:
While presenting the Union Budget 2018, Finance Minister Arun Jaitley has announced that the NITI Aayog will establish a national programme to direct efforts towards Artificial Intelligence (AI).
Summary:
Amu had offered a â¹10-crore bounty to behead the film's actress Deepika Padukone.
Summary:
Airport capacities will be upgraded to handle 1 billion trips annually, he added.
Summary:
The government has allotted â¹1,48,528 crore for Indian Railways capital expenditure in the Budget 2018, in the highest-ever fund allocation for the Railways capital needs.
Summary:
He further said government insurance firms will be merged into a single entity and listed on exchanges as part of the divestment programme.
Summary:
He further said that the Centre has undertaken the redevelopment of 600 major railway stations across India.
Summary:
Delivering the Union Budget, Finance Minister Arun Jaitley said that the government has allocated â¹14.3 lakh crore to be spent for rural infrastructure.
Summary:
Presenting the Union Budget 2018 in Parliament, Finance Minister Arun Jaitley on Thursday announced â¹56,619 crore for SC welfare and â¹39,135 crore for ST welfare.
Summary:
Jaitley also announced the redevelopment of as many as 600 railway stations.
Summary:
Slamming the Centre for merging the Union Budget and the Railway Budget, former Railway Minister Pawan Bansal has said that the move has "finished the importance of the Railways." He added that a separate Railway Budget allowed the Parliament to scrutinise the government's announcements.
Summary:
While presenting the Union Budget 2018, Finance Minister Arun Jaitley on Thursday said the machines which manage crop residue will be subsidised as air pollution in Delhi-NCR is a cause of concern.
Summary:
Facebook has posted a revenue of $12.97 billion for the fourth quarter of 2017, up by 47% from last quarter.
Summary:
A man who tried cashing counterfeit traveller's cheques was cleared of fraud charges by a Swedish court because "he was very much in love".
Summary:
A new song titled 'Sayaani' from Akshay Kumar, Sonam Kapoor and Radhika Apte starrer 'Pad Man' has been released.
Summary:
Hollywood actress Rose McGowan, while responding to Harvey Weinstein's statement that the sexual encounter between him and Rose in 1997 was consensual, said, "Stop calling it consensual, you pig." "He can fall off the planet.
Summary:
An American man sentenced to life imprisonment for rape has been cleared of the charge after 37 years in prison.
His 82-year-old mother said, "Thank you...
Summary:
This comes after Chowdhury said that she can show the jacket, which BJP claimed to be worth â¹70,000, for â¹700.
Summary:
The machines used for the excavation work of underground Metro-3 have been named Godavari, Tapi, and Krishna among others.
Summary:
Finance Minister Arun Jaitley has announced the world's largest government-funded healthcare programme with â¹5 lakh annual cover per family for 10 crore poor families.
Summary:
He also said that women's contribution to EPF will be reduced to 8% from 12% for the first three years.
Summary:
Delivering the 2018 Union Budget speech, Finance Minister Arun Jaitley on Thursday said India is a $2.5 trillion economy that is firmly on the path of an over 8% growth.
Summary:
Finance Minister Arun Jaitley on Thursday announced â¹10,000 crore for the fisheries and aqua-culture and animal husbandry fund, during his Budget speech today.
Summary:
Delivering the 2018 Budget speech, Finance Minister Arun Jaitley has said the government will increase the Minimum Support Price for farmers by 1.5 times for the upcoming Kharif Crop season.
Summary:
Presenting the Union Budget 2018, Finance Minister Arun Jaitley on Thursday said, "India hopes to grow at 7.2-7.5% during the second half of the year." The nation will become the world's fifth largest economy "very soon", he added.
Summary:
The institutional credit for agricultural activities has been increased from â¹10 lakh crore to â¹11 lakh crore for the FY 2018-19, Finance Minister Arun Jaitley announced while presenting this year's budget in the Parliament on Thursday.
Summary:
The government will develop 22,000 Gramin Agricultural Markets.
Summary:
While presenting the 2018 Budget in the Parliament, Finance Minister Arun Jaitley on Thursday said the government was focussing not only on 'Ease of Doing Business' but also on 'Ease of Living'.
Summary:
Presenting the Union Budget 2018, Finance Minister Arun Jaitley on Thursday said the government plans to construct 2 crore more toilets under the Swachh Bharat Abhiyan over the next two years.
Summary:
In the pre-Budget meeting on Thursday, the Cabinet approved the country's Union Budget for the FY 2018-2019.
Summary:
Former Australian captain Greg Chappell instructed his brother Trevor Chappell to bowl an underarm delivery as New Zealand needed seven runs off the final delivery in Melbourne on February 1, 1981.
Summary:
Space exploration startup SpaceX has launched a used Falcon 9 rocket loaded with a geo-communications satellite GovSat-1 commissioned by the Luxembourg government.
Summary:
Social media giant Facebook's CEO Mark Zuckerberg has said that overall usage has dropped by "roughly 50 million hours every day" amid News Feed changes.
Summary:
Google has updated its Flights app which uses artificial intelligence (AI) to predict upcoming flight delays, including information regarding the delay.
Summary:
Expressing concern over the rape of an eight-month-old girl, the Supreme Court has directed two AIIMS doctors to visit her in the hospital and assess if she can be shifted to AIIMS.
Summary:
UK minister Michael Bates on Wednesday offered his resignation as he arrived late to the Parliament.
"I'm thoroughly ashamed at not being in my place and therefore I shall be offering my resignation to the PM with immediate effect.
Summary:
He further said that he is now addicted to the procedures and has plans to undergo more lip jobs.
Summary:
The suspects claimed they had been collecting the oranges during their journey for personal consumption.
Summary:
Amitabh Bachchan has threatened to quit Twitter, accusing the social media giant of reducing his number of followers.
Summary:
Stock market index BSE Sensex gained over 220 points on Thursday as Finance Minister Arun Jaitley started presenting the Union Budget 2018-19.
Summary:
While presenting the Union Budget 2018, Finance Minister Arun Jaitley on Thursday said that this year's budget will focus on improving agriculture and the country's rural economy.
Summary:
Responding to a comment by Apple Co-founder Steve Wozniak, Elon Musk has said that Wozniak "is a lovable, fuzzy bear".
Summary:
BJP leader Yashwant Sinha on Wednesday said that he will not leave the party, but it can expel him if it wants.
Summary:
Reacting to the month's second supermoon coinciding with lunar eclipse, a Twitter user wrote, "When you be like 'Dekho chand aaya, chand nazar aaya' and #supermoon decides to be like 'Chand chupa badal mein'".
MAKING MOON GREAT AGAIN", wrote another user.
Summary:
A total of 99 couples tied the knot at a mass wedding ceremony organised by spiritual organisation Sant Nirankari Mission in Mumbai's Kharghar on Tuesday.
Summary:
Amid BJP's opposition to putting up of Tipu Sultan's portrait in the Delhi Assembly on the occasion of 69th Republic Day, Speaker Ram Niwas Goel on Wednesday said it wouldn't be removed "at any cost".
Summary:
He has become only the fifth Finance Minister to deliver the Budget speech for five consecutive times.
Summary:
A 'fiscal deficit' arises when a government's total expenditures exceed the revenue it generates, excluding money from borrowings.
Summary:
Indian stock markets in January posted their best one-month pre-budget gain in 13 years by gaining about 6% in the month to February 1.
Summary:
Similarly, Charan Singh served as the PM for a brief period from July 1979 to January 1980.
Summary:
In a break from tradition, Jaitley will likely deliver his Budget speech in Hindi, becoming the first Finance Minister to do so since Independence.
Summary:
The children, aged 6-9 years, were all born with a defect where the external ear is small and deformed.
Summary:
India has been ranked as the world's sixth wealthiest nation with a total wealth of $8.23 trillion, according to a report by New World Wealth.
Summary:
NASA named seven hills on planet Mars after the seven crew members, including India-born astronaut Kalpana Chawla, of the Space Shuttle Columbia who lost their lives while returning from their mission.
Summary:
Responding to Swara Bhasker's open letter criticising 'Padmaavat' over the Jauhar scene, Deepika Padukone said she must have missed the disclaimer in the beginning of the film which states that it does not glorify Jauhar.
Summary:
The Economic Survey 2017-18 has revealed that only 28% of India's urban dwellers live in a rented house.
Summary:
The Indian Budget is less transparent than the Bangladesh Budget as it provides limited information in the public domain, anti-corruption watchdog Transparency International India (TII) has said.
Summary:
Stock market index BSE Sensex gained over 150 points on Thursday ahead of the PM Narendra Modi-led government's last full budget before the general election next year.
Summary:
Emirates crew members allegedly thrashed a 71-year-old Nigerian passenger and taped his mouth shut for hours during a recent Dubai-Chicago flight.
Summary:
Mankind on Wednesday witnessed the 'Super Blue Blood Moon' occurring for the first time since 1866.
Summary:
The MEA wrote to the banks with details of Ramachandran's family's wealth, following which they agreed to settle the case.
Summary:
American pornstar Stormy Daniels on Tuesday denied she wrote an email denying an alleged sexual affair with US President Donald Trump in 2006.
Summary:
Alia Bhatt, on being asked to give some advice on love life to Katrina Kaif, jokingly said, "Leave the gym and focus on men instead." She said this on the Neha Dhupia-hosted talk show 'BFFs with Vogue'.
Summary:
Speaking about the recently-concluded IPL auction that featured 581 players, former Indian captain Sourav Ganguly said, "Don't judge players by the amount of money they get in the IPL".
Summary:
A goal from Tottenham's Christian Eriksen in the 11th second of the match and an own goal from Phil Jones resulted in Manchester United going 15 points behind leaders Manchester City in the Premier League on Wednesday.
Summary:
A Turkish amateur league football club named Harunustaspor signed 22-year-old ÃÂmer Faruk KñroÃÂlu for 0.0524 Bitcoin, becoming the first-ever football team to pay transfer fee using the cryptocurrency.
Summary:
Virat Kohli, who led India to the 2008 Under-19 World Cup title, said the current India Under-19 team is much more confident than his 2008 side.
Summary:
After India defeated Pakistan in the U-19 World Cup semi-final, ex-Pakistan captain Ramiz Raja said Pakistan should consider giving charge of the youth team to someone like Indian coach Dravid.
Summary:
According to government estimates, there has been a 51% decrease in malware infections in all networks in India since the launch of Botnet Cleaning and Malware Analysis Centre.
Summary:
Bengaluru-based edtech startup iNurture has raised â¹28 crore in Series C funding round led by venture capital firm Ventureast, the startup said.
Summary:
"These managers will assist the patients as well as the other workers in solving their day-to-day issues," said a government official.
Summary:
Fares for smaller pets like cats, puppies, and birds will cost equivalent to a child's ticket, the circular said.nn
Summary:
While responding to petitions seeking restraint on deportation of Rohingya Muslims, the Centre told the Supreme Court that it doesn't want India to become the refugee capital of the world.
Summary:
The longest Budget speech by words was delivered by former PM Dr Manmohan Singh, comprising 18,650 words, during his tenure as Finance Minister in 1991.
Summary:
An officer of the Indian Air Force has been taken into custody by the force for allegedly spying for Pakistan, reports said.
Summary:
India's Railway Budget has been separate from the Union Budget since 1924.
Summary:
The current Chief Minister of West Bengal, Mamata Banerjee, became the first female minister to present the Railways Budget in 2002.
Summary:
After India attained Independence on August 15, 1947, John Mathai became the first Railway Minister of the country.
Summary:
Actor Tom Hardy got a tattoo which reads 'Leo knows all' on his right bicep after losing a bet to Leonardo DiCaprio over getting an Oscar nomination.
Summary:
199 gold, 199 silver, and 275 bronze medals will be awarded at the week-long games.
Summary:
BJP leader Yashwant Sinha has launched the 'Rashtra Manch' portal, aimed at starting a movement against the Centre's policies.
Summary:
Talking at a college in Meghalaya, Congress President Rahul Gandhi has said the RSS ideology is aimed at disempowering women and pointed out that the organisation has no women in leadership roles.
Summary:
Congress President Rahul Gandhi on Wednesday said PM Narendra Modi is still a "suit-boot" person, adding that he maintains a distance from the poor which he does not with people like former US President Barack Obama.
Summary:
The Gujarat High Court has reversed a trial court's decision and cleared a woman who was found travelling with the chopped body of her boyfriend.
Summary:
The Uttar Pradesh Cabinet on Tuesday approved a scheme aimed at providing employment to the family members of the security personnel who were martyred after April 1, 2017.
Summary:
Another video allegedly showing Gupta riding a bike during the Tiranga rally and shouting slogans also emerged.
Summary:
He further said that the latest models of missiles were likely designed by North Korea itself.
Summary:
Daiichi had purchased a majority stake in Ranbaxy from the brothers for $4.6 billion in 2008.
Summary:
Shah Rukh Khan, while speaking on sexual harassment faced by women, said nobody dared misbehave with a woman on the sets of his films.
Summary:
Formula One will end the practice of using 'grid girls', starting from the first race of the 2018 World Championship.
Summary:
Falkirk fans threw plastic eyeballs at Dunfermline midfielder Dean Shiels, who had his right eye removed in 2006.
Summary:
Delhi's archaeology department has proposed to construct an interpretation centre-cum-museum at the Mehrauli Archaeological Park (MAP).
Summary:
A Delhi-Tehran Mahan Air flight made an emergency landing at the Delhi airport on Wednesday after one of its engines failed minutes after take-off.
Summary:
Days after the violent clashes in Uttar Pradesh's Kasganj, BJP leader Raja Singh has said every house in the district has an AK-47.
Summary:
BJP Karnataka leader KS Eshwarappa on Tuesday said good Muslims support the BJP while the "Muslims who have killed 22 BJP and RSS activists" are with the Congress.
Summary:
Steg will remain suspended until the issue of the tests is fully clarified, the company said.
Summary:
Teachers will also undergo capacity building training on road safety.
Summary:
The Snow and Avalanche Study Establishment on Tuesday issued an avalanche warning to several Jammu and Kashmir districts, hours after a 6.1-magnitude earthquake in Afghanistan caused tremors in north India.
Summary:
However, the eggs did not hit CM Patnaik and the woman has been detained by the police.
Summary:
Lawmakers in Hong Kong on Wednesday voted to ban ivory sales in the world's largest ivory retail market by 2021.
Summary:
Individuals can also avail deductions on interest on house and education loans, medical insurance premium, donations to political parties and for social causes.
Summary:
"The guys who are given the opportunity need to capitalise and...convince...they are suitable for the spot," he further said.
Summary:
South Korea's Samsung Electronics on Wednesday posted a record profit of $11.5 billion for the December quarter, marking a 72.9% year-on-year increase.
Summary:
The Supreme Court on Wednesday said that the National Green Tribunal (NGT) cannot have benches comprising of a single judge.
Summary:
Following outrage over matrimonial website mysonikudi.com which categorised brides into 5-star etiquette, NRI ready, and black beauty, actress Gul Panag revealed that it was a social media experiment.
Summary:
The accused raped the baby when he was alone with her.
Summary:
The Maharashtra government has announced a scheme under which a packet of sanitary pads will be made available to seven lakh girls from government schools in rural parts for â¹5.
Summary:
Rwanda has become the first low-income country to provide universal eye care to its entire 1.2 crore population.
Summary:
The regulator alleged that AriseBank failed to register with authorities and falsely claimed that it had purchased a bank.
Summary:
South Korea's Finance Minister Kim Dong-yeon had recently said the government has no plans to "ban or suppress" cryptocurrency trading.
Summary:
Following reports that Mukesh Ambani-led Reliance Jio is planning to create its own cryptocurrency called JioCoin, over 30 fake JioCoin apps have appeared on the Google Play Store.
Summary:
Japan's largest messaging service Line on Wednesday announced that it is planning to start a cryptocurrency exchange.
Summary:
American surfwear firm Boardriders' CEO Pierre Agnes has gone missing at sea in France on Tuesday.
Summary:
Amazon, Berkshire Hathaway, and JPMorgan Chase on Tuesday said they'll form a company to cut healthcare costs for their employees.
Summary:
Jackie Shroff will be making his debut in Gujarati cinema with a remake of the National Award winning Marathi film 'Ventilator'.
"Finally, I have been cast in a film in my mother tongue Gujarati.
Summary:
"I think the whole system is archaic and deeply humiliating for players," NZCPA's chief executive Heath Mills said.
Summary:
Australian batsman David Warner, who was retained by Sunrisers Hyderabad, took to Instagram to share a video of his three-year-old daughter Ivy Mae dancing to the anthem of the IPL franchise.
"Ivy Mae already excited about the @sunrisershyd anthem.
Summary:
Hyderabad captain Ambati Rayudu has been banned by BCCI for two matches for leading on-field protests against umpires during a domestic T20 match against Karnataka on January 11.
Summary:
The move will see Samsung supply the chips to a Chinese company that makes Bitcoin mining equipment, reports said.
Summary:
Muslim crew members found violating the order will be reprimanded and those violating repeatedly will be "nabbed by the religious police", Indonesian officials said.
Summary:
Gandhi wore the jacket at a concert during his two-day visit to poll-bound Meghalaya.
Summary:
Security agencies will test anti-drone technology in Delhi from next month, according to the Civil Aviation Ministry.
Summary:
Delhi Commission for Women Chairperson Swati Maliwal on Wednesday launched a 'satyagrah' to protest against the rape of an eight-month-old girl in the city.
Will work day and night to move system," Maliwal tweeted.
Summary:
A Gujarat court has dropped the attempt to murder charges against Vishva Hindu Parishad leader Pravin Togadia and 38 others after the state government said it was not in favour of fighting the case.
Summary:
A fire broke out in a godown on Wednesday morning in Bhiwandi near Mumbai, destroying at least 12 shops and six shanties, reports said.
Summary:
A Thai court on Wednesday sentenced six people to jail under laws protecting the country's royals for setting fire to portraits of King Maha Vajiralongkorn and his late father, King Bhumibol Adulyadej.
Summary:
NASA is live-streaming the Super Blue Blood Moon, occurring for the first time since 1866.
Summary:
The prescribed ceiling for MNP rates was â¹19 till now.
Summary:
The GDP growth rate for the fiscal year 2015-16 has been revised upwards to 8.2% from 8%, government data showed on Wednesday.
Summary:
The Vietnamese aviation authority has fined budget airline Vietjet 40 million dong (over â¹1 lakh) for a display by bikini-clad models aboard a special flight carrying home the country's under-23 football team from a competition in China.
Summary:
Facebook Co-founder Dustin Moskovitz's software company Asana said on Tuesday it raised $75 million in a financing round led by Former US Vice President Al Gore's Generation Investment Management.
Summary:
The team found a specimen which has been living for 35 years, while most "normal" rats live for six years and age as they do so.
Summary:
Only 31% students had failed the BA exam last year.
Summary:
Days after a video showed a man being hit by a train during his attempt to take a selfie with it, another video showing the man unhurt and laughing at the incident has surfaced online.
Summary:
Afghan President Ashraf Ghani on Wednesday received a call from Indian PM Narendra Modi, who offered condolences on the death of civilians in the recent terror attacks in Afghanistan.
Summary:
The Army has filed a counter FIR in response to the one filed by the J&K Police against its 10th Garhwal unit in the Shopian firing incident, which killed three civilians.
Summary:
Denouncing the US as a "gross violator of human rights", North Korea on Wednesday said that "racial discrimination and misanthropy" are serious problems existing in the US social system.
Summary:
A former employee who was fired from his job allegedly drained out more than 1.1 lakh litres of liquor from a Chandigarh distillery in revenge on Monday.
Summary:
Over 2 crore hydrocodone and oxycodone pills were shipped to a small US town with 2,900 residents between 2006 and 2016, it has emerged.
Summary:
An Anger Management Park is set to come up in Dhaka, Bangladesh in order to help people deal with stress and anger issues.
Summary:
Akshay will be seen playing a Sikh soldier in the film, which is based on the Battle of Saragarhi.
Summary:
Several families from San Francisco Bay Area in the US reportedly booked an entire theatre to watch Deepika Padukone starrer 'Padmaavat'.
Summary:
Mandira Bedi has said casting couch is a two-way street and the blame can't be put on just one person.
Summary:
A father of three was buried while trying to dig a sand tunnel during a visit to a beach in Florida, United States.
Summary:
Pacer Shivam Mavi, sold for â¹3 crore, was the second-most expensive among India U-19 players.
Summary:
Announcing that it will focus its energy on Oreo 8.1, Essential said that in the meantime, it will release Oreo 8.1 in Beta.
Summary:
After BJP slammed Congress President Rahul Gandhi for wearing a jacket that they claimed to be worth nearly â¹70,000, Congress leader Renuka Chowdhury said she can show people the same jacket for â¹700.
Summary:
The National Investigation Agency has pointed out Pakistan's role in providing technical and cyber support to militant group Hizbul Mujahideen and Jammu and Kashmir's political party Tehreek-e-Hurriyat.
Summary:
The Army, which claimed that it fired at the civilians after they injured seven jawans, has filed a counter FIR in the incident.
Summary:
A Jharkhand government employee, who served as a lady supervisor with the women and child welfare department, has sought CM Raghubar Das' help for a new job profile after undergoing a sex-reassignment surgery.
Summary:
Terming the FIR against the Army in the death of three civilians in J&K's Shopian "unfortunate", Northern Army Commander Lieutenant General Devraj Anbu said the Army was "provoked to the ultimate".
Summary:
Seong-ho, who defected in 2006, was tortured by the North Korean regime over his visit to China.
Summary:
The cryptocurrency, named "petro", will have a great impact on the country's economy, Maduro said.
Summary:
The man who had been protesting in front of the Kerala Secretariat against the death of his brother in prison called off the protest on the 783rd day after the CBI recorded his statement.
Summary:
The Uttar Pradesh Police on Wednesday arrested Salim, the prime accused in the murder case of a youth who was shot dead during Kasganj violence on Republic Day. Salim had been absconding with his brothers Nasim and Wasim after the incident.
Summary:
Notably, the Centre cannot reject the recommendations if it is sent back by the SC Collegium.
Summary:
The woman had said she threw a â¹500-note at the driver and fled after he misbehaved with her.
Summary:
Italian village Ollolai is selling some of its houses for only â¬1 (â¹80).
Summary:
Filmmaker Vivek Agnihotri, while slamming actress Swara Bhasker for her remark on 'Padmaavat', called her a "fake feminist".
Summary:
Two of the four historians named by Rajput organisation Karni Sena in a panel to watch 'Padmaavat' have said the film doesn't hurt sentiments of any community.
Summary:
Nineteen-year-old fast bowler Ishan Porel, who was India's top wicket-taker in the Under-19 World Cup semi-final against Pakistan, had gone unsold at the IPL auction.
Summary:
Afridi, after the match, claimed that he was just trying to smell the ball.
Summary:
The ICC has launched an investigation into a private T20 league in UAE after footage of bizarre dismissals from one of its matches emerged online.
Summary:
Technology giant Apple's Co-founder Steve Wozniak has said, "Now I don't believe anything Elon Musk or Tesla says, but I still love the car." Wozniak's comment came in reference to the delays in the implementation of technology that Musk claimed Tesla would bring to its cars.
Summary:
Scientists have shown that killer orca whales could imitate human speech, in some cases at the first attempt, saying words such as "hello", "one, two" and "bye bye".
Summary:
Adding that farmers greatly benefit from such programs, Meena said applications for a tour to South Africa have also been floated online.
Summary:
US First Lady Melania Trump arrived separately to attend President Donald Trump's first State of the Union (SOTU) address on Tuesday, breaking with a long-standing tradition.
Summary:
Actress Priyanka Chopra, while speaking about what it takes to woo her, said, "I like to be given attention, not like creeper-worthy attention...
Summary:
Katrina Kaif, on being asked what she hates about Alia Bhatt, jokingly said, "She could possibly be a little more generous and pass some of the critics' appreciation and awards my way rather than taking it all." She said this on Neha Dhupia's talk show 'BFFs with Vogue'.
Summary:
Google added that 99% of apps with abusive content were identified and rejected before the users could install them.
Summary:
Talking about automation at a recent event, Tata Consultancy Services' COO N Ganapathy Subramaniam said the job loss fears in the IT industry are highly exaggerated.
Summary:
Online education firm Coursera's Co-founder Andrew Ng has raised $175 million artificial intelligence (AI) fund.
Summary:
A video has surfaced which shows a 26-year-old man clearing snow from a skywalk which is 2,000 metres above the ground in China.
Summary:
A female passenger has claimed that United Airlines did not allow her emotional support peacock to board its flight despite her having offered to buy the bird its own ticket.
Summary:
"China's GDP is five times India's and it creates 150 lakh jobs," he added.
Summary:
For the new global fund, Sequoia is trying to attract investors in China, the reports added.
Summary:
While one student has been arrested by the railways police, the city police has launched a search group to nab the others.
Summary:
The doctors claimed ultrasound tests done by a private clinic had not mentioned twins.
Summary:
The same men had allegedly kidnapped her in December, 2017.
Summary:
Australia's national broadcaster has revealed that it found hundreds of top-secret and highly classified documents of the country's government in two cabinets which were being sold at a second-hand furniture store.
Summary:
Several pugs gatecrashed the finals of Vodafone Premier Badminton League and nobody could resist their charm.
Summary:
Interestingly, the flight was carrying 85 plumbers, including 65 from the same company.
Summary:
Sanjay Leela Bhansali, while speaking on the 'Padmaavat' row, said, "I think it's the most anxious release in the history of Indian cinema." "There were anxious moments right from finishing it to getting the censors and getting it into theatres," he added.
Summary:
A US appeals court has ruled that dating app Tinder is discriminating against users above 30 by charging them $19.99 per month for its premium service, Tinder Plus.
Summary:
Developers of cryptocurrency Zcash have used radioactive waste from Chernobyl nuclear plant in Ukraine to build a secure cryptocurrency system.
Summary:
Former engineers at Google's self-driving car project Waymo, Dave Ferguson and Jiajun Zhu, have developed a self-driving vehicle to transport local goods.
Summary:
Switzerland-based virtual reality (VR) startup Imverse has developed a technology which lets users render themselves inside VR in real time.
Summary:
The Qantas Boeing 787 Dreamliner burned 10% of biofuel, apart from 90% regular jet fuel, achieving 7% lesser carbon emissions.
Summary:
More than a year has passed since Charles Bolden, appointed by former US President Barack Obama, resigned as NASA administrator on January 20, 2017, after a seven-year tenure.
Summary:
Meanwhile, there have been no reports of casualties or damages in India.
Summary:
The woman, who was alone in her car, suffered minor injuries.
Summary:
The man had left his home carrying two plastic bags, one containing trash and the other containing money to deposit into the bank.
Summary:
'Glee' actor Mark Salling has been found dead near his Los Angeles home, ahead of his sentencing in March over possession of child pornography.
Summary:
Reports added that two other Punjabi songs will also be recreated for the film, which will star Tiger Shroff in the lead role.
Summary:
Rapper Jay Z, while speaking about mending his marriage with Beyoncé after cheating on her, said, "We chose to fight for our love...
Summary:
Technology giant Google has added Hindi language support for its digital assistant for users on Allo messenger in India.
Summary:
MIT researchers have developed an ink that changes the colour of 3D-printed plastic objects when exposed to ultraviolet light for 20 minutes.
Summary:
The man's family has alleged that before committing murder, the murderer posted a video announcing his intent to kill and Facebook should have alerted the police immediately.
Summary:
Summary:
Mumbai-based technology-enabled fashion startup 6Degree has raised about â¹ 2.6 crore in pre-Series A funding from Indian Angel Network and TAN Advisors.
Summary:
US-based retail giant Walmart is in advanced talks to buy a significant minority stake in Indian e-commerce giant Flipkart, according to reports.
Summary:
The startup lets users drag and drop graphic interfaces using browser tool to create virtual 'scenes' that can be viewed using VR glasses.
Summary:
The police also said that the woman seemed to hail from either UP, Bihar, or Odisha according to her attire.
Summary:
The Supreme Court has said religion is only one of the seven criteria the court has to consider while deciding a child's custody.
Summary:
Floodwaters have peaked in the French capital city of Paris as the country has been experiencing its heaviest rains in 50 years since last month.
Summary:
But in all the times I've played (with) him, he's never come close to breaking 80," Pettersen who holds a career-best world rank of No. 2 added.n
Summary:
The startups were given 10 minutes to talk about their companies before a panel of investors to get on-the-spot offer.
Summary:
Opening up on the row over his film 'Padmaavat', Sanjay Leela Bhansali said, "The protests were illogical...
Summary:
A single phone is available on which the families of officials can leave messages.
Summary:
Interestingly, the 1997 Budget presented by P Chidambaram was called the 'Dream Budget' owing to the reforms which helped broaden India's tax base.
Summary:
Facebook has prohibited advertisements that promote financial services that are associated with misleading or deceptive promotional practices, naming cryptocurrencies and initial coin offerings among those.
Summary:
The US Department of Justice and the Securities and Exchange Commission are reportedly investigating if Apple violated securities laws while issuing an update that slowed older iPhone models.
Summary:
For the first time in its history, Michelin has allowed a chef to publicly withdraw his three-star French restaurant from its listings.
Summary:
Indian Navy on Wednesday launched INS Karanj, the third of the six indigenous Scorpene-class submarines.
Summary:
The government has urged the Supreme Court to enforce a rare policy by withdrawing the tobacco industry's legal right to trade, according to a filing seen by Reuters.
Summary:
US President Donald Trump has signed an executive order to keep the military prison at Guantanamo Bay open, formally reversing his predecessor Barack Obama's nine-year-old order to close the detention centre.
Summary:
The widow of Indian engineer Srinivas Kuchibhotla, who was shot dead in US last year, was invited to attend President Donald Trump's first State of the Union (SOTU) address on Tuesday.
Summary:
The UK government has approved a plan to build a memorial in London to honour the Indian Sikh servicemen who fought for Britain during WWI and WWII.
Summary:
The incident was reportedly caused due to a malfunction in the 764-feet-high bungee jump's pulling system.
Summary:
A video showing cheerleaders dancing to the song 'Ghoomar' from 'Padmaavat' has been shared online.
Summary:
Summary:
The coin toss in the Pakistan-Zimbabwe Test at Harare on January 31, 1995, was done twice as Pakistan captain Saleem Malik called 'bird' instead of heads or tails.
Summary:
Former UFC women's bantamweight champion Ronda Rousey, who once won a fight in 14 seconds, has agreed to join the WWE.
Summary:
Mumbai-based web and mobile browser testing platform BrowserStack has raised $50 million (â¹318 crore) in a Series A funding round from US-based venture capital (VC) firm Accel Partners.
Summary:
SoftBank's Vision Fund is investing $300 million in US-based dog-walking startup Wag that connects dog walkers with dog owners via an app.
Summary:
A Class 9 student of a government school in Delhi was allegedly sodomised for a year by five senior students inside the school premises.
Summary:
Referring to recent ceasefire violations between India and Pakistan, Home Minister Rajnath Singh said that Pakistan should not misinterpret India's "decency".
Summary:
PM Modi will be the first Indian Prime Minister to visit Palestine.
Summary:
The Centre has proposed the adoption of the 'Singapore Model' to counter Islamic radicalisation of youth.
Summary:
The Vishva Hindu Parishad (VHP) has said that it will hold Tiranga Yatras in Uttar Pradesh's Agra, Aligarh, and Bareilly to protest the violence which broke out in Kasganj on January 26.
Summary:
Slamming the Centre for not taking necessary steps for welfare of widows, the Supreme Court on Tuesday said that neither their families nor the Centre wants to look after them.
"Have you seen the plight of these widows?
Summary:
Meanwhile, the Centre has directed the state government to send a comprehensive report about the violence, which killed one and injured two people.
Summary:
While hearing a petition against Aadhaar, the Supreme Court on Tuesday said that Aadhaar has helped in a "citizen-centric delivery of services", but there is a need to examine the scope for misuse of data collected.
Summary:
Trump further said he puts himself in the position of people who would get affected by his decisions.
Summary:
India would witness a 'super blue blood' moon between 5:15 PM and 7:37 PM today as the Moon goes from east to west.
Summary:
The government has reversed its decision to issue orange-coloured passports to people requiring emigration check amid criticism that it might lead to discrimination and segregation.
Summary:
A certain portion of India's Union Budget was leaked in 1950 when the printing used to take place at the Rashtrapati Bhavan.
Summary:
The first Budget of Independent India only covered seven and a half months from August 15, 1947, to March 31, 1948.
Summary:
Senior Congress leader Veerappa Moily on Tuesday said that Sonia Gandhi continues to serve as the Chairperson of the UPA, adding that she has the capability to pull the allies together.
Summary:
Four Chinese students have successfully completed 200 days living self-sufficiently in an isolated "lunar lab" to simulate a long-term space mission, as the country prepares for its goal of putting people on the Moon.
Summary:
The Finance Ministry has issued a memorandum asking all ministries and departments to identify such posts and submit a detailed report on the matter.
Summary:
President Ram Nath Kovind has cleared a bill giving Supreme Court and High Court judges a salary hike of nearly 200%.
Summary:
Iran Supreme Leader Ayatollah Ali Khamenei has accused the US of relocating the Islamic State militant group from the war-torn Middle East to Afghanistan to justify its presence in the country.
Summary:
After US President Donald Trump rejected peace talks with the Taliban, the militant group said that the move by the US President will likely result in more war and bloodshed.
Summary:
Billionaire Anil Ambani-led Reliance Communications' December quarter loss reduced by over 95% sequentially as the company exited its consumer business.
Summary:
The company's revenue increased about 13% to â¹1.32 trillion during the same quarter.
Summary:
Harbhajan, who represented Mumbai Indians for 10 years, was bought by Chennai Super Kings in the 2018 IPL auction, making Kohli the only player to be with one franchise throughout.
Summary:
This comes after political parties across Nagaland issued a joint declaration to not contest elections until the issue is resolved.
Summary:
The BJP will organise a 24-hour 'Go Raksha Asthayama Yagna' in Bengaluru on February 2, in a bid to promote the protection of cows across India.
Summary:
RJD leader Ashok Sinha on Tuesday resigned from the party, stating that jailed RJD supremo Lalu Prasad Yadav's son Tejashwi cannot lead the party like his father.
Summary:
The Delhi High Court has asked the Election Commission to state the factual aspects behind its recommendation to disqualify 20 AAP MLAs in the office of profit case.
Summary:
The body of a newborn girl was found on Monday in a dustbin outside the Safdarjung Hospital mortuary in Delhi, police said.
Summary:
The student wing of the Congress, the National Students' Union of India (NSUI), organised a 'pakoda protest' against Prime Minister Narendra Modi in front of several colleges in Bengaluru.
Summary:
The Delhi government will move the Supreme Court seeking a stay on the ongoing sealing drive taking place across markets in the city, CM Arvind Kejriwal said on Tuesday.
Summary:
The door-to-door waste collection service which is in force in parts of Gurugram is likely to be extended to all wards by March 31, officials said.
Summary:
The green court was hearing a plea that alleged waste management facilities were below average at the dargah.
Summary:
A petitioner at the Supreme Court on Tuesday claimed that the trial which led to the execution of the two men accused of murdering Mahatma Gandhi has not yet attained "legal finality".
Summary:
A woman from Maharashtra's Thane has claimed that her husband gave her instant Triple Talaq on a â¹100 stamp paper after harassing her for months over dowry.
Summary:
The Federal Bureau of Investigation's Deputy Director, Andrew McCabe resigned from his post amid accusations of political bias by US President Donald Trump.
Summary:
Nearly 25,000 people were sterilised over mental or genetic illnesses under the eugenics protection law, which was aimed at preventing the birth of inferior offspring.
Summary:
Kenyan Opposition leader Raila Odinga on Tuesday declared himself as the "people's president" and took oath at a ceremony in the capital city of Nairobi.
Summary:
Gavate's coach said the match was played on a ground with a leg-side boundary of 60-65 yards and off-side boundary of 50 yards.
Summary:
While talking about Swara Bhasker, who had criticised 'Padmaavat', Ranveer Singh said, "I got a message from (her) just yesterday...She loved my performance in the film." Swara had earlier written an open letter to director Sanjay Leela Bhansali, saying that she felt "reduced to a vagina" after watching his film 'Padmaavat'.
Summary:
A Mumbai sessions court on Tuesday framed charges against actor Sooraj Pancholi for allegedly abetting actress Jiah Khan's suicide.
Sooraj has pleaded not guilty and examination of witnesses will start from February 14.
Summary:
Khan had allegedly applied for buying agricultural land for farming but constructed a farmhouse for personal use.
Summary:
Chandrasekhar said he told Srinivasan he wanted to sign Dhoni as "he can change the match situation on his own".
Summary:
Former Indian captain Sourav Ganguly has said India U-19 vice-captain Shubman Gill is "a bit like" cricket legend Brian Lara and current New Zealand skipper Kane Williamson.
Summary:
Technology giant Apple's stock has plunged 5.1% since January 22 over reports of low iPhone X demand, wiping out $46.4 billion from its market capitalisation.
Summary:
The BJP has backed out from a joint declaration by eleven political parties to not contest the Nagaland Assembly elections until the Naga insurgency issue is resolved.
Summary:
Indian e-commerce market has reached $33 billion, registering 19.1% growth in 2016-2017, according to the government's Economic Survey 2018.
Summary:
The Delhi government on Monday announced a new parking policy under which parking on streets and lanes of residential areas will not be free anymore.
Summary:
India and Pakistan have extended an agreement on linking the two countries through Munabao-Khokhrapar rail line till January 31, 2021.
Summary:
A typo which read 'State of Uniom' instead of 'State of Union' was spotted in the tickets meant for the guests to attend President Donald Trump's first address to the joint session of the US Congress on Tuesday.
Summary:
He said that like cryptocurrencies, gold is also not issued by any state.
Summary:
Summary:
He said this while responding to reports of Kareena and him working together with Imtiaz for 'Jab We Met 2'.
Summary:
Summary:
'Beyond The Clouds' director Majid Majidi has said actress Deepika Padukone was not called for the casting of the film.
Summary:
South African batsman AB de Villiers has been ruled out of the first three matches of the upcoming six-match ODI series against India.
Summary:
Reacting to a Pakistani player tying shoelaces of Indian vice-captain Shubman Gill in the semi-final of U-19 World Cup on Tuesday, a user wrote, "Divided by boundaries, united by cricket." Another user wrote, "They are rivals, not enemies.
Summary:
Former Indian pacer Ajit Agarkar and Sri Lanka captain Tillakaratne Dilshan will feature alongside Virender Sehwag and Shoaib Akhtar in two T20 matches to be played on a frozen lake in St Moritz, Switzerland.
Summary:
A Lucknow cleric issued a fatwa saying that Muslim women should not watch men play football.
Senior Darul Uloom cleric Mufti Athar Kasmi claimed that watching men "playing with bare knees" violated the tenets of Islam.
Summary:
Hackers have stolen over â¹95 lakh worth Ethereum by tricking people to participate in a fake cryptocurrency token sale.
Summary:
Amazon reportedly also incurred $800 million loss in its international businesses for the same period.
Summary:
The â¹48-crore order to supply the uniforms for 90,000 personnel has been awarded to the Khadi and Village Industries Commission.
Summary:
Reacting to Nagaland parties boycotting Assembly polls until there is a resolution for the Naga insurgency issue, Minister of State Kiren Rijiju said that conducting a timely election is a constitutional process.
Summary:
The goons had also filed a complaint against the boy for engaging in quarrels with them frequently.
Summary:
Global sanctions have been imposed against North Korea over its ballistic and nuclear missile programme.
Summary:
Passports will remain a valid address proof in India after the Ministry of External Affairs on Tuesday reversed its decision to not print the passport holder's address on the last page of the booklet.
Summary:
One of the accused in the 2002 Godhra train burning has been arrested in Gujarat, after being on the run for 16 years.
Summary:
Oscar-winning actress Meryl Streep has filed an application requesting for her name to be trademarked with the US Patent and Trademark Office.
Summary:
The Indian U-19 cricket team today defeated Pakistan by 203 runs to enter final.
Summary:
Ambrose ended with first-innings figures of 18-9-25-7.
Summary:
Messaging service WhatsApp's recent update allows users to send messages on iPhone using Apple's digital assistant Siri.
Summary:
After an FIR was filed against the Army over the killing of two Jammu and Kashmir civilians, BJP leader Subramanian Swamy warned that the state government would be toppled if it doesn't withdraw the complaint.
Summary:
Myntra Co-founder Mukesh Bansal's healthcare startup Cure.Fit has raised $10 million in debt financing from HDFC Bank and Axis Bank.
Summary:
A senior official of Visakhapatnam Urban Development Authority with a monthly salary of â¹1 lakh has been arrested after police raids revealed that he owned assets worth â¹60 crore.
Summary:
Mahatma Gandhi's personal secretary Venkita Kalyanam has claimed that he never said Gandhi's last words were not 'Hey Ram'.
Summary:
The Tamil Nadu government has reduced bus fares after widespread protests over its decision to hike fares for the first time in six years.
Summary:
The first-ever public LGBT festival was held in Myanmar after the government gave its approval for the '&Proud' festival, though homosexuality is illegal in the country.
Summary:
Interestingly, a Pakistani man had entered his wedding as WWE wrestler Triple H last year.
Summary:
American cosmetics company Revlon's CEO Fabian Garcia has stepped down "to pursue other opportunities" after less than two years.
Summary:
China's first Bitcoin exchange BTCC has been acquired by a Hong Kong-based blockchain investment fund following a crackdown by Chinese officials.
Summary:
Cryptocurrency startup Prodeum, which aimed to raise around $6.5 million, has allegedly defrauded investors and replaced its website layout with the word "penis".
Summary:
Cybersecurity expert John McAfee has said that over 50% of the world will be using cryptocurrency in five years.
Summary:
Former Roadies host Raghu Ram announced his divorce with actress-singer Sugandha Garg.
He shared a collage featuring one picture from their wedding and another picture after their divorce.
Raghu captioned it, "Some things never change.
It changes...
Summary:
Rinku Singh, an LPG delivery man's son from Aligarh, was bought by IPL side Kolkata Knight Riders for â¹80 lakh, four times his base price at the auction on Sunday.
Summary:
A knuckleball free-kick gives the ball an erratic movement as it's struck with little or no spin.
Summary:
Summary:
A Kolhapur court on Tuesday granted bail to Sanatan Sanstha member Virendra Tawde, who was named as the main accused by the special investigation team probing the murder of CPI leader Govind Pansare.
Summary:
The SC had earlier stayed a National Company Law Tribunal order allowing the Centre to take over Unitech's management.
Summary:
A man was killed and five others were injured during violent clashes between two groups in Uttar Pradesh's Amethi on Tuesday.
Summary:
The Houthis have launched several missiles since last year in retaliation against Saudi Arabia's involvement in Yemen's civil war.
Summary:
One of the terrorists who killed over 20 people in a recent attack on a hotel in Afghanistan's Kabul was trained by Pakistan's Inter-Services Intelligence (ISI), Afghanistan's UN envoy Mahmoud Saikal has claimed.
Summary:
Model Gigi Hadid and her sister model Bella Hadid have posed nude for the March 2018 issue of British Vogue magazine.
Summary:
Tripura CM Manik Sarkar is reportedly the poorest serving Chief Minister in the country as an affidavit filed by him ahead of the state Assembly elections revealed that he has â¹2,410.16 as his bank balance.
Summary:
Varun Dhawan has become the youngest Bollywood actor to get a wax statue at the Madame Tussauds museum.
Summary:
While talking about the ongoing controversy on the film 'Padmaavat', Deepika Padukone said, "We are not endorsing jauhar.
Summary:
Apple has notified its suppliers that it's cutting production target for the iPhone X in the three-month period from January by half, according to reports.
Summary:
Human waste could one day serve as a valuable resource for astronauts on deep-space missions, a US-based study has claimed.
Summary:
Police seized a car, mobile, â¹5 lakh cash, and 26 kg ganja from him.
Summary:
The man went to a police station claiming that he was informed about the rumours on social media by friends and that he wasn't in Kasganj during the clashes.
Summary:
Summary:
The settlement reached between the government and detainees consists of various assets including real estate, commercial entities, and cash.
Summary:
Amid calls for protests against Donald Trump's first state visit to the UK in October, the US President claimed that he is very popular in Britain and gets a lot of fan mail from the country.
Summary:
A video has emerged of a cow chasing a lorry carrying its injured calf, which was being taken to a veterinary hospital in Karnataka for treatment.
Summary:
A student found ã100 (â¹9,000) on her lap on a train in England when she woke up from a nap after discussing her financial problems with her mother on the phone.
Summary:
Actress Ragini Khanna has revealed that when she was doing television shows, there were times when she worked for 40 hours at a stretch.
Summary:
taking advantage of me." Mika had forcibly kissed Rakhi during his birthday party in 2006.
Summary:
Shilpa further said she has no plans getting married as of now.
Summary:
The pitch used for the India-South Africa Test at the Wanderers Stadium in Johannesburg has been rated 'poor' by the ICC as it had "excessively steep and unpredictable bounce".
Summary:
This will be Pujara's second stint with Yorkshire.
Summary:
Facebook has hired technology giant Google's Director of Product for augmented reality (AR) Nikhil Chandhok.
Summary:
While 25% of the expenditure for the week-long trip will be borne by the employees, 75% will be taken from the Staff Benefit Fund.
Summary:
The child suffered burn injuries on his face, cheeks, chest, and back and was admitted to a hospital.
Summary:
The number of cases of attempt to murder and offences causing injury recorded in Mumbai's north region increased in 2017 as compared to 2016, according to the Mumbai Police data.
Summary:
The Maharashtra government has decided to hire 30 public relations officers, one for each of the 30 ministers, for an estimated cost of â¹90 lakh per year.
Summary:
An NGO has written a letter to Brihanmumbai Municipal Corporation (BMC), objecting to the civic body's list allocating places to hawkers.
Summary:
Most of the weapons were purchased via the e-commerce site Snapdeal for around â¹2,000 each, the police said.
Summary:
The Bengaluru Police has withdrawn the proposal to penalise riders for wearing non-ISI mark helmets.
Summary:
Tamil Nadu Education Minister KA Sengottaiyan has said that the state government is continuously urging the Centre to exempt the state's students from National Eligibility-cum-Entrance Test (NEET).
Summary:
Yemeni separatists seeking independence for south Yemen have seized control of the country's presidential palace after two days of clashes with Yemeni troops.
Summary:
Mahatma Gandhi founded three football clubs, all named Passive Resisters Soccer Club, in the 1900s during his stay in South Africa.
Summary:
Directed by 'Udta Punjab' director Abhishek Chaubey, the film is set in the 1970s and will narrate the tale of Chambal dacoits.
Summary:
Football Delhi has decided to celebrate current India football captain Sunil Chhetri's birthday on August 3 as Delhi's Football Day.
Summary:
The structure is reportedly made of three connected spheres constructed from glass and steel, and can accommodate up to 800 people.
Summary:
No Indian city meets the air quality standard prescribed by the World Health Organisation, a report by non-governmental organisation Greenpeace has revealed.
Summary:
Hyderabad High Court has sought the names of the politicians who took part in cockfights during Sankranti celebrations in Andhra Pradesh, despite its ban on the sport.
Summary:
Notably, Mount Mayon is Philippines' most active volcano and has erupted 50 times in the last 500 years.
Summary:
A US couple got married in a ladies' toilet after the groomâÂÂs mother fell ill in the courthouse on the wedding day and had to be rushed to a washroom.
Summary:
After Spanish clothing brand Zara introduced a skirt priced at ã70 (â¹6,000), a Twitter user commented, "You can't be serious.
Summary:
Actor Ranveer Singh took to social media to share a photo of a letter sent to him by Amitabh Bachchan, praising him for his performance in 'Padmaavat'.
Summary:
Actress Deepika Padukone has featured on the cover of the February edition of fashion magazine Vogue India.
Summary:
Spring Fest, one of India's largest socio-cultural fests has concluded.
Summary:
Reacting to India beating Pakistan in the Under-19 World Cup semi-final, former cricketer Virender Sehwag tweeted, "That was brutal.
All the best for the finals #Rahuldravid one more game guys", read part of Harbhajan Singh's tweet.
Summary:
The deal also includes employees that have worked on Google's Pixel smartphones.
Summary:
Alibaba's cloud computing unit has launched artificial intelligence (AI) based solution 'Malaysia City Brain' to manage traffic at Kuala Lumpur, Malaysia.
Summary:
The segments of PM Narendra Modi's monthly radio address 'Mann Ki Baat' are now supported on Amazon voice assistant software Alexa Skill.
Summary:
A Delhi-bound IndiGo flight from Kolkata airport had to return about 20 minutes after take-off as smoke was seen coming out of one of its engines.
Summary:
Gurugram-based toilet hygiene startup PeeSafe has raised $1 million in a funding round that saw participation from Ola Cabs Vice President Rahul Maroli.
Summary:
The idea of spraying Sun-dimming chemicals in the Earth's atmosphere to slow global warming faces may not be feasible, as per a leaked United Nations report citing safety concerns.
Summary:
The discovery of such rare fossils helps understand how creatures moved across Africa and Europe, earlier joined by the supercontinent Pangaea, said researchers.
Summary:
The accused, who had arrived from Hong Kong, allegedly concealed 15 gold bars inside a specially designed vest but was caught by the Air Intelligence Unit.
Summary:
In her Facebook post, the woman claimed the man started forcing her hands into his pants, following which she got off the bike and ran away.
Summary:
BJP MP Vinay Katiyar on Tuesday alleged that miscreants who support Pakistan and can go to any extent to defy the Tricolour are the ones behind the Kasganj violence.
Summary:
A woman in Uttar Pradesh gave birth to her daughter at a hospital gate after the hospital denied her admission as she didn't have an Aadhaar card or a bank account.
Summary:
Referring to the recent violent clashes in Uttar Pradesh's Kasganj, Bareilly District Magistrate RV Singh said that a strange trend has developed to visit Muslim areas and raise slogans against Pakistan.
Summary:
A US court on Monday ordered the release of Indian-descent activist Ravi Ragbir who was arrested earlier this month during a routine check-in with the US immigration authorities and was ordered immediate deportation.
Summary:
Responding to a tweet calling to incite violence, Twitter said, "we have investigated the reported content and could not identify any violations of the Twitter rules or applicable laws." The tweet was by journalist Jagrati Shukla's verified account, which has 36,500 followers.
Summary:
China's Tencent has led a $5.4-billion investment in the country's largest commercial property company Wanda Commercial.
Summary:
The incident happened at the 1997 Sundance Film Festival when Rose was asked to go to Weinstein's suite for a meeting.
Summary:
Electric carmaker and Tesla rival Faraday Future has accused its former CFO Stefan Krause of stealing trade secrets and attempting to recruit its employees.
Summary:
An office boy at digital payment company Paytm has made over â¹20 lakh in the recently conducted stock sale wherein around 200 employees sold their shares worth â¹300 crore.
Summary:
Elon Musk's tunnelling startup 'The Boring Company' has sold 10,000 flamethrowers so far, earning around $5 million.
Summary:
Gurugram-headquartered HR firm PeopleStrong has launched a product called Alt Recruit which uses artificial intelligence (AI) to suggest candidates for job openings.
Summary:
Sharing her ordeal on Facebook, an Agra-based journalist has alleged that she was stalked and harassed by two drunk men on a two-wheeler and denied support when she called the women's helpline.
Summary:
With the PM10 level at 290, Delhi was the most polluted city in India in 2016, a report released by non-governmental organisation Greenpeace has revealed.
Summary:
The government in its annual Economic Survey has stated that India has 21 million "unwanted" girls as couples keep having children until they produce a desired number of sons.
Summary:
Nobel Peace Prize winner Malala Yousafzai has said that she wants to visit India and has learnt Hindi by watching dramas and films on Indian TV channels.
Summary:
A teacher in Raipur's Kendriya Vidyalaya allegedly told her students that girls wearing short clothes or lipstick were inviting rape like that of Nirbhaya.
Summary:
Two Belgian restaurants have been sued for allegedly selling customers "mineral water" that came from the tap.
Summary:
The actress will reportedly be seen playing the role of an embroidery artist in the film.
Summary:
Worldwide shipments of devices including computers, tablets, and mobile phones will reach 2.32 billion units in 2018, an increase of 2.1% from last year, according to a report by Gartner.
Summary:
Virgin Atlantic on Monday announced that the new aircraft joining their fleet will feature three suites, namely the Love Suite, Solo Freedom Suite, and Solo Corner Suite.
Summary:
This is Ripple's largest capital infusion and brings the three-year-old company's total funding to $110 million.
Summary:
UK-based scientists have shown that icy ponds, which form on debris-covered Himalayan glaciers, control the rate at which meltwater flows downstream.
Summary:
The woman Imam who led Friday prayers in Kerala's Wandoor has said that those threatening her are cowards and want to "keep women under veils".
Summary:
PM Narendra Modi and President Ram Nath Kovind paid floral tribute to Mahatma Gandhi on his 70th death anniversary.
Summary:
A statue of Dr BR Ambedkar in Haryana's Ambedkar Park was found with a broken hand and leg on Monday, causing members of the Dalit community to gather in the park and demand action against the miscreants.
Summary:
Goa Chief Minister Manohar Parrikar has said that the rise in prices of coconuts is because of wild monkeys who throw them off of trees before they are ready for harvest, leading to a loss.
Summary:
Finding merit in allegations against Allahabad High Court judge Justice SN Shukla in the medical college admission scam case, a Supreme Court judge panel has recommended his removal.
Summary:
On being asked about security chip-enabled Aadhaar cards on Twitter, UIDAI CEO Ajay Bhushan Pandey said, "Aadhaar is a card-less digital identity.
Summary:
The Pupil-Teacher Ratio (PTR) in government schools has improved significantly, the Economic Survey revealed on Monday.
Summary:
Liberia's newly sworn-in President George Weah has pledged to cut his salary by a quarter in the wake of his country's ongoing economic crisis.
Summary:
Hyderabad-based healthcare startup eKincare has raised $1.5 million in Series A funding round, the startup confirmed.
Summary:
India thrashed Pakistan by 203 runs on Tuesday to enter ICC Under-19 World Cup final.
Summary:
Police said the accused, on the pretext of playing with the baby, took her to a room where he assaulted her.
Summary:
The US has ended the ban which barred the entry of refugees from 11 countries deemed as "high risk" by President Donald Trump's administration.
Summary:
However, the businessman, who is absconding now, allegedly kept calling and following her.
Summary:
Actress Neetu Chandra, while responding to Sidharth Malhotra's apology on Twitter over his remark on Bhojpuri language, said, "He apologised generally...So I can't acknowledge it." She added that Sidharth had not tagged her in his tweet.
Summary:
China-based laptop maker Lenovo has identified a flaw in the Fingerprint Manager Pro software which allows hackers to bypass fingerprint scanners to gain access to user devices.
Summary:
The Kerala High Court has issued a notice to the Centre on a PIL challenging its decision to introduce orange-coloured passports for people requiring emigration check.
Summary:
Tourists are being offered a night's stay at a slum in Mumbai at the cost of â¹2,000 per night.
Summary:
Former Congress President Sonia Gandhi was seated in the first row.
Summary:
A Canada-based stargazer has tracked the $150-million IMAGE mission satellite, which NASA launched in 2000 but lost contact with at the end of 2005.
Summary:
Mahatma Gandhi was assassinated by Nathuram Godse on January 30, 1948, during a prayer meeting at Delhi's Birla House.
God must be in my heart and on my lips," Gandhi reportedly said two days before his assassination.
Summary:
According to details by 21 electoral trusts, BJP received â¹290 crore of the total â¹325.27 crore corporate donations to 10 political parties in 2016-17, an Association for Democratic Reforms report stated.
Summary:
The Supreme Court has issued notices to the Rajasthan, Haryana, and Uttar Pradesh governments on a plea seeking contempt action against them for not preventing violence in the name of cow vigilantism.
Summary:
Indonesia's police on Sunday detained 12 transgender women, cut their long hair short and made them wear male clothing to "coach" them to behave like "real men".
Summary:
France will launch an investigation into whether the 70% discount on Nutella that sparked brawls in supermarkets violated trading laws.
Summary:
Maharashtra government has decided to spend â¹52.5 lakh to buy 855 four-wheeler bags for legislators, other officials, and scribes to carry budget documents.
Summary:
Former England captain and Manchester United legend David Beckham on Monday launched his new Miami-based football club in USA's Major League Soccer (MLS) championship.
Summary:
The touring Indian cricket team and hosts Australia led by Sir Don Bradman observed a minute's silence in Melbourne after the death of Indian leader Mahatma Gandhi following his assassination on January 30, 1948.
Summary:
Former world number one badminton player Prakash Padukone was conferred with Badminton Association of India's (BAI) inaugural Lifetime Achievement award for his contribution to the sport.
Summary:
Comparing Indian captain Virat Kohli to former Windies captain Viv Richards, former Windies fast bowler Michael Holding said that Kohli like Richards will learn to be calmer as a captain.
Summary:
Facebook will begin prioritising the placement of local news in the News Feed section, the company has said in a blog post.
Summary:
A small aircraft facing engine failure was forced to make an emergency landing in the middle of a highway in US' California.
Summary:
US politician Miguel Santiago has said he intends to seek a ban on the sale of Elon Musk-led Boring Company's flamethrower, at least in California.
Summary:
Bengaluru-based online furniture startup Urban Ladder's revenue has jumped 70% to â¹95 crore in fiscal year 2017, filings have revealed.
Summary:
Uttar Pradesh Agriculture Minister Surya Pratap Shahi on Monday said that the Kasganj violence was a "small incident" where "only two" people had died.
Summary:
"Women are doing great, and I'm happy about that," Trump added.
Summary:
Mumbai-based wedding planning startup The Wedding Brigade has raised $1 million in a pre-series A round of funding led by Blume Ventures.
Summary:
As many as 36 people have died after the bus they were travelling in smashed through the railing of a bridge and fell into a canal in West Bengal's Daulatabad on Monday.
Summary:
"I would say this is not the time for all these...
We had a tough time in making this film reach the audience," he added.
Summary:
Malaysia has banned the release of 'Padmaaavat' in the country as "the storyline of the film touches on the sensitivities of Islam".
Summary:
The survey claimed that collection of direct taxes by Indian states and local governments is significantly lower compared to other countries.
Summary:
The tradition of carrying a briefcase on Budget day was adopted from the British, who have been carrying 'Budget Box' since 1860.
Summary:
A 23-year-old man interrupted the fifth Australia-England ODI in Perth by running onto the ground naked in front of almost 54,000 people on Sunday.
Summary:
Established in 1995, the award has been conferred on 18 MPs so far.
Summary:
The expelled members belonged to the party's Sivaganga unit and its subunits.
Summary:
Congress leader Jagdish Tytler has revealed that then PM Rajiv Gandhi had taken him out in his car to assess the situation in Delhi during the 1984 anti-Sikh riots.
Summary:
The Beetle model used by German carmaker Volkswagen while exposing monkeys to diesel exhaust fumes as a test in 2014 was reportedly among the vehicles rigged to cheat on emissions tests.
Summary:
China on Monday said that it was ready to hold talks with India to resolve differences over the China-Pakistan Economic Corridor (CPEC) project.
Summary:
The Supreme Court has cleared a proposal of the central government aimed towards ending stubble burning in Punjab, Haryana and Uttar Pradesh.
Summary:
The boy had insisted that the girl agree to marry him but when she sought more time, he shot himself, police said.
Summary:
Russia on Monday accused the US of trying to influence its upcoming presidential election by attempting to release a sanctions report.
Summary:
Blaming South Korean media for encouraging "insulting" public sentiment towards the country, North Korea has cancelled a joint cultural performance with South Korea ahead of the Winter Olympic Games.
Summary:
Warning those responsible for the recent attacks in the country, Afghanistan President Ashraf Ghani on Monday said that "we will take revenge for every drop of blood".
Summary:
Summary:
Ishaan Khatter, while talking about his half-brother actor Shahid Kapoor, said, "All my life I have learned so much by watching him.
Summary:
As per film trade analyst Ramesh Bala, Akshay Kumar will be working on the Hindi remake of 2015 Tamil horror comedy film 'Kanchana 2'.
Summary:
I only look like one when I have my beard." He said this during an event in Mumbai, where the crowd greeted him as 'Raees'.
Summary:
After signing Chris Gayle for his base price of â¹2 crore, IPL side Kings XI Punjab shared a picture of the Jamaican wearing a turban on Instagram.
Summary:
Kolkata Knight Riders CEO Venky Mysore has revealed the team's former captain Gautam Gambhir had requested them to not retain him for the 2018 IPL.
Summary:
Further, the pitch that offers more than occasional unevenness of bounce for spinners on the first day of a match is also considered dangerous.
Summary:
The parties have said they would contest the elections only after a political resolution for the insurgency movement in Nagaland.
Summary:
The couple had a baby in 2014, after which the jawan stopped coming home, reports added.
Summary:
It would make using phrases such as "Polish death camps" punishable by up to three years in prison.
Summary:
Earlier, Netanyahu had accused Iran of building military bases in Syria and Lebanon to "eradicate" Israel.
Summary:
'Chennai Express' and 'Race 2' are also among her â¹100 crore films.
Summary:
This follows three consecutive years of drought in Cape Town, which will be the world's first major metropolis to run out of water.
Summary:
Celebrities including Rihanna, Miley Cyrus, Lady Gaga, Pink and Zayn Malik were seen with white roses at Grammys 2018 to show support for the Time's Up movement, which aims to fight harassment and gender inequality.
Summary:
Ranveer Singh has said that bisexuality added another layer to his character Alauddin Khilji's complex personality in the film 'Padmaavat'.
Summary:
The Economic Survey 2017-18 has quoted Bollywood actor Sunny Deol's dialogue 'tarikh par tarikh' to highlight frequent delays in the judicial process.
Summary:
The Economic Survey 2017-18 has revealed that five statesâ Tamil Nadu, Maharashtra, Gujarat, Karnataka, and Telangana, accounted for 70% of India's exports for the first time.
Summary:
Around 18% jobs were at risk in southern cities, compared to 23% elsewhere in the country.
Summary:
Volkswagen has apologised after reports revealed that it funded a 2014 study that exposed monkeys to toxic diesel fumes.
Summary:
A police officer on Monday reportedly shot himself dead while trying to resolve a student protest in Punjab's Faridkot.
Summary:
The survey estimated that due to "meta-preference" for sons, India could have about 21 million "unwanted girls," or girls whose parents wanted to have sons instead.
Summary:
Bands of the Army, the Navy and the Air Force on Monday participated in the 'Beating the Retreat' ceremony, marking the end of the four-day-long Republic Day celebrations, at Delhi's Vijay Chowk.
Summary:
The first Indian Budget was presented by the founder of 'The Economist' magazine James Wilson on February 18, 1860.
Summary:
Reportedly, 100% of French women claim they have been harassed on public transport at least once.
Summary:
This comes after Trump said he will make his first state visit to Britain in October this year.
Summary:
The European Union General Affairs Council on Monday adopted guidelines for Britain's exit from the bloc as per which the transition period would end on December 31, 2020.
Summary:
The court's ruling came in a case filed by a woman whose car had been damaged by walnuts falling from her neighbour's tree.
Summary:
The 2016 Marathi film Sairat's song 'Zingaat' will be recreated for its Hindi adaptation 'Dhadak' and will feature the lead stars Ishaan Khatter and Janhvi Kapoor.
Summary:
On choosing to do the film 'Judwaa 2' after her film 'Pink', actress Taapsee Pannu said, "I didn't want to be labelled as part of a mahila morcha...(wanted) to have the option of singing and dancing." She further said, "This industry is quick to stereotype.
Summary:
After winning his 20th Grand Slam title, world number two Roger Federer said he doesn't think he can win 24 Grand Slam titles.
Summary:
Kings XI Punjab's mentor-cum-director of cricket Virender Sehwag has revealed the team has bought Chris Gayle as a back-up opener.
Being an opening batsman, Gayle can prove to be a danger to any opposition," he added.
Summary:
Homegrown taxi aggregator Ola may sign a memorandum of understanding (MoU) with the Assam government for a river taxi service in the state, according to reports.
Summary:
Kasganj's Superintendent of Police Sunil Kumar Singh has been transferred to Meerut amidst Opposition's criticism of the Uttar Pradesh government over the violent clashes in which a boy was killed.
Summary:
Former Haryana Director General of Police SPS Rathore, convicted in a molestation case, was seen on stage at a Republic Day event organised by district authorities in Panchkula.
Summary:
The Army said it opened fire against a mob in self-defence when they tried to lynch an officer.
Summary:
As per reports, Venkannagari Krishna Chaitanya's body was found when his landlord called the police after he did not step out from his room for a long time.
Summary:
Warning that his problems with the European Union (EU) may transform into something very big, US President Donald Trump said the bloc has been "very unfair" in trade with his country.
Summary:
Oxford University spin-out startup Bodle Technologies has raised $8.4 million in a series A funding round led by UK-based Parkwalk Advisors.
Summary:
A skit featuring Hillary Clinton and musicians including Snoop Dogg and DJ Khaled reading extracts from the book 'Fire and Fury: Inside the Trump White House' was aired at the Grammy Awards 2018.
Summary:
The trailer of actor Shahid Kapoor's half-brother Ishaan Khatter upcoming debut film 'Beyond The Clouds' has been released.
Summary:
Maharashtra, Uttar Pradesh, Tamil Nadu, and Gujarat are the states with the most GST registrants, the survey further revealed.
Summary:
Aryaman Birla, son of Indian industrialist Kumar Mangalam Birla whose net worth is over $12.7 billion, was featured at the 2018 IPL auction and was bought by Rajasthan Royals for â¹30 lakh.
Summary:
He made his debut for J&K last year.
Summary:
Kings XI Punjab's mentor-cum-director of cricket Virender Sehwag, who was sitting alongside owner Preity Zinta, bid successfully for his nephew Mayank Dagar in the IPL auction.
Summary:
IT ministry has tested LiFi, an LED-based wireless communication technology, jointly conducted with IIT-Madras and lighting company Philips India.
Summary:
Ten foreigners have been arrested for "singing and dancing pornographically" near Cambodia's Angkor Wat, said the police.
Summary:
It is not mandatory for a public authority to seek and find information to provide it to an RTI request, the Delhi High Court has said.
Summary:
Warning that a nuclear attack by North Korea would be "suicidal", South Korean Defence Minister Song Young-moo said that the rogue regime will be "removed from the global map" if it attacks South Korea or the US.
Summary:
A Florida couple has found a message in a bottle written by Scottish students and cast into the sea in the 1980s.
Summary:
Reliance Jio will reportedly raise as much as $2.2 billion (almost â¹14,000 crore) in debt to fund the purchase of Reliance Communications' wireless assets.
Summary:
The 58-year-old artiste, who has performed on over 5,000 stages, was rushed to the hospital but was declared dead on arrival.
Summary:
Summary:
England's Tom Curran picked up his maiden five-wicket haul to be named Man of the Match.
Summary:
Paytm and China's Alibaba-owned AGTech Holdings have partnered to launch a gaming platform called Gamepind for users in India.
Summary:
China's Alibaba and Foxconn Technology have led a $347.74 million funding round in Chinese electric car maker Xiaopeng Motors.
Summary:
A rare snowstorm in Saudi Arabia's Tabuk region recently left the sand blanketed in snow.
Summary:
The editorial added that the party betrayed Andhra Pradesh CM Chandrababu Naidu the same way it betrayed Shiv Sena in Maharashtra.
Summary:
This makes Pune the first city where Google is assisting a corporation for such a project, officials said.
Summary:
After at least 2 people died after a bus fell into a river in West Bengal on Monday, police used tear-gas against locals angry over late arrival of help, reports said.
Summary:
Five men allegedly hijacked a Dial 100 police vehicle, stripped the policemen at gunpoint, dressed in their uniform, and abducted a woman from her home in Madhya PradeshâÂÂs Panna on Sunday.
Summary:
A woman in Uttar Pradesh's Hapur was first married to her rapist on the order of the village Panchayat and later given Triple Talaq, reports said.
Summary:
Terming the violent clashes in Kasganj as "unfortunate", Uttar Pradesh Governor Ram Naik said that steps would be taken to ensure that such incidents are not repeated in the future.
Summary:
At least 11 soldiers were killed and 15 others were injured on Monday in an Islamic State attack on a military academy in Kabul, Afghanistan.
Summary:
After rapper Jay-Z called him a "superbug", US President Donald Trump called on Twitter users to tell the rapper that black unemployment was at a record low because of his policies.
Summary:
Civil Aviation Minister Ashok Gajapathi Raju has said that a foreign operator has shown interest in buying 49% stake in Air India.
Summary:
'Padmaavat' has entered the â¹100 crore club, making it actor Shahid Kapoor's first film to earn â¹100 crore in his 15-year-long Bollywood career.
'Padmaavat' earned â¹114 crore within four days of its official release and a limited paid preview of the film on January 24.
Summary:
Fitness-tracking app Strava is reportedly revealing sensitive information about secret military bases through the heat map publicly available on its website.
Summary:
KC Neogy and HN Bahuguna were the only Finance Ministers who did not present a Union Budget.
Summary:
US President Donald Trump has said he sometimes tweets from bed or during meals, although he occasionally lets others post his words.
Summary:
Summary:
Indian pacer Irfan Pathan is the only cricketer to take a hat-trick in a Test's first over, in the format's 141-year-history featuring 2,294 matches.
Summary:
Interestingly, three of the four hat-tricks taken by bowlers on ODI debut have come in Dhaka.
Summary:
The tableau of Ministry of Youth Affairs and Sports was on Sunday adjudged the best tableau among all the ministries which participated in the Republic Day parade.
Summary:
The new valuation makes Paytm second-most valuable internet startup in India after Flipkart (about $12 billion).
Summary:
"The facility will be provided on first-come, first-served basis in Indian railways from next year, (2019)," he added.
Summary:
VP and Shanta Dhananjayan, a Padma Bhushan-winning couple who are Bharatanatyam dancers and teachers, have been performing together for over 50 years.
Summary:
The government also launched 'Khelo India Programme' with an outlay of over â¹1,750 crore, he said.
Summary:
Relatives of the 32-year-old Mumbai man who died after being pulled into an MRI machine have alleged that a ward boy had told them the machine was off.
Summary:
Students of Shri Vijaylaxmi Industrial Training Institute in Itarsi, Madhya Pradesh were asked to take a pledge not to vote for BJP until the government stopped conducting online exams.
Summary:
A group of armed robbers allegedly forced a UK cryptocurrency trader to transfer Bitcoin at gunpoint after breaking into his home.
Summary:
A lawsuit filed by a New York-based investor in the Delhi HC accuses billionaire brothers Malvinder and Shivinder Singh of diverting funds to aid them with a $1.6-billion personal debt.
Summary:
Aviation Minister Ashok Gajapathi Raju has said Air India's debt could be 40% higher than the previously estimated â¹50,000 crore.
"I won't be surprised if the total debt reaches â¹70,000 crore.
Summary:
This came a day after a petrol bomb was hurled at a Maharashtra cinema hall.
Summary:
A video shows Blue Ivy Carter, daughter of singer Beyoncé and rapper Jay-Z, asking her parents to stop clapping at Grammy Awards 2018.
Summary:
Slamming actress Swara Bhasker over her opposing 'Padmaavat', actress Suchitra Krishnamoorthi tweeted, "What standards are these?" She said that she found it funny that Swara, who played an erotic dancer or prostitute onscreen, feels like a vagina after watching a story of a pious queen.
Summary:
Summary:
Notably, New Zealand had whitewashed Pakistan in the five-match ODI series before the T20I series.
Summary:
Google has confirmed it invested in cab aggregator Go-Jek, Uber's rival in Indonesia.
Summary:
Officials are planning to screen a laser show depicting Kerala's history on the Idukki dam, which is Asia's oldest arch dam.
Summary:
The mother of the boy, who died during violent clashes in Uttar Pradesh's Kasganj, has asked the state government to declare her son a martyr.
Summary:
Delhi University Students' Union Joint Secretary Uma Shankar is likely to lose the post as he failed to clear his first semester examination conducted in November-December 2017, reports said.
Summary:
A 29-year-old man died after falling from a bridge at the Chennai airport on Monday, the police said.
Summary:
The album '24K Magic' by singer Bruno Mars won seven awards including Album Of The Year and Best R&B Album at the 60th Grammy Awards this year.
Summary:
The survey added that retail inflation during 2017-18 averaged to the lowest in the last 6 years at 3.3%.
Summary:
During a live Q&A session on Twitter, Unique Identification Authority of India (UIDAI) CEO Ajay Bhushan Pandey said that there hasnâÂÂt been a single incident of Aadhaar data breach or data theft in seven years.
Summary:
Two Malaysians flew from Kuala Lumpur to Telangana to spend the weekend in Sangareddy prison, a former jail where people can stay and experience the life of a prisoner by paying â¹500 per day.
Summary:
The England-Windies Test that began on January 29, 1998, in Jamaica, is the only match in Test cricket's 140-year history which was abandoned as drawn due to 'dangerous pitch'.
Summary:
Intel warned some customers, including several Chinese technology firms, about security flaws within its processor chips before informing the US government, the Wall Street Journal has reported.
Summary:
E-commerce major Amazon has invested about â¹1,950 crore into its Indian subsidiary Amazon Seller Services, according to filings.
Summary:
Addressing the Parliament at the start of the Budget Session, President Ram Nath Kovind on Monday said that work has started to provide villages with broadband connectivity and 2.5 lakh panchayats have already been connected.
Summary:
A cleric from Islamic seminary Darul Uloom Deoband has issued a fatwa against Muslim women watching football since men playing the sport do not have covered knees.
Summary:
Expressing hope that the instant Triple Talaq bill is passed in the Rajya Sabha soon, President Ram Nath Kovind on Monday said the dignity and honour of Muslim women were held hostage for decades.
Summary:
While addressing the Parliament during the 2018 Budget Session on Monday, President Ram Nath Kovind said that Aadhaar saved over â¹57,000 crore from going into the wrong hands.
Summary:
The current NDA-led Central government is committed to doubling the income of farmers by the year 2022, President Ram Nath Kovind said on Monday.
Summary:
Addressing the Parliament on the commencement of the Budget Session, President Ram Nath Kovind on Monday said Kumbh Mela being recognised by UNESCO as 'Intangible Cultural Heritage of Humanity' is a matter of pride for India.
Summary:
The Central Board of Secondary Education (CBSE) has issued a circular to schools, saying the board will accept feedback from schools and students about the Class 10 and 12 examination papers.
Summary:
Uttar Pradesh Chief Minister Yogi Adityanath has granted â¹20 lakh as ex-gratia to the parents of the boy killed in the Kasganj violence on Friday.
Summary:
Vijay Keshav Gokhale, who is succeeding S Jaishankar as India's Foreign Secretary, is a 1981-batch Indian Foreign Service officer, who was serving in the Ministry of External Affairs as Secretary (Economic Relations).
Summary:
A US woman has claimed that she placed an Amazon order for sauna hats from a seller named 'RussianBear' but instead received a $100 vial of a cancer drug that includes blue scorpion venom.
Summary:
Filmmaker Boney Kapoor has said that his daughter Janhvi Kapoor is not trying to be like her mother Sridevi.
so being her daughter why should Janhvi ape her." He further said that their daughter has her own individuality.
Summary:
Australia defeated Afghanistan by six wickets to storm into the final of the ICC Under-19 Cricket World Cup in New Zealand on Monday.
Summary:
Barcelona frontman Lionel Messi scored a late free-kick to help his side register a comeback 2-1 victory against Alaves in the La Liga on Sunday.
Summary:
Chat app Discord has shut down a user-created group named 'deepfakes' on its platform, that was spreading fake celebrity porn videos using artificial intelligence (AI).
Summary:
A five-bedroom house resembling a castle has gone on sale for $2.8 million (nearly â¹18 crore) in Idaho, United States.
Summary:
A replica of a hand grenade attached to the poster of a Hollywood war movie was found in a consignment that landed at the Mumbai airport, said the police.
Summary:
A 66-year-old woman, who was arrested after she allegedly snuck past a security checkpoint to board a Chicago-London flight without a ticket earlier this month, has been arrested again at Chicago airport.
Summary:
Jasper Infotech, the parent company of e-commerce firm Snapdeal, is reportedly planning to sell its last major asset, Unicommerce eSolutions.
Summary:
The Ministry of Home Affairs has written to various government departments to carry out precautionary measures against unidentified flying objects after multiple drone sightings near sensitive installations.
Summary:
Siddharth-Garima, the writer duo who penned a song in 'Padmaavat', responded to the open letter by actress Swara Bhasker with a blog post titled 'An open letter to all Vaginas'.
Summary:
RPG Group just launched a microsite that gives B-Schools students the opportunity to interview with them for a job directly through their phones or desktop.
All they need to do is record a video about themselves and the most impressive entries get a chance to work with the Group.
Summary:
Following his knocks of 54 and 41 in the last South Africa Test, India captain Virat Kohli has moved past legend Brian Lara in the all-time Test rating points list.
Summary:
The 29-year-old has taken 79 wickets in 22 first-class matches and has also hit a first-class hundred.
Summary:
Notably, Wozniak had bought bitcoin as an "experiment" when it was priced at $700 per coin.
Summary:
This follows a report by The New York Times, which said at least 55,000 of Devumi's accounts used personal details of real Twitter users.
Summary:
BJP MP Varun Gandhi has written to Lok Sabha Speaker Sumitra Mahajan to initiate a movement for "economically advantaged" MPs to give up their salaries for the remaining 16th Lok Sabha.
Summary:
Former Finance Minister and Congress leader P Chidambaram has said "if selling pakodas is a job, then so is begging".
Summary:
Ahead of the Budget Session, Parliamentary Affairs Minister Ananth Kumar on Sunday said the government will do everything possible to get the Triple Talaq bill passed in the Parliament.
Summary:
Former Finance Minister P Chidambaram presented the second highest number of Budgets, at nine.
Summary:
Summary:
The Central Information Commission (CIC) has directed the Prime Minister's Office to disclose names of non-government personnel accompanying PM Narendra Modi on foreign visits.
Summary:
A 25-year-old prisoner who escaped from a jail in the US has been caught while trying to re-enter the correctional facility.
Summary:
Indian banks' stressed loans declined for the first time since 2015, at the end of September quarter last year.
Summary:
A man was detained by the police after he attempted to throw a shoe at actress Tamannaah Bhatia but ended up hitting the employee of a jewellery store, the inauguration of which the actress was attending.
Summary:
Experienced pacers Irfan Pathan, Lasith Malinga and Dale Steyn were among players who went unsold at the IPL auction.
Summary:
South African opener Dean Elgar has said the third India-South Africa Test should have been called off even before he was hit on the helmet.
Elgar was hit by a bouncer which led to play being stopped prematurely on the third day of the Test.
Summary:
BJP MP Subramanian Swamy has called economist Amartya Sen a "traitor", adding that he was conferred the Bharat Ratna "just because he was Left-wing and Sonia Gandhi pressed for it".
Summary:
The Delhi government has prepared the building layout for the city's first ever Haj house which will be open to public from mid-2019.
Summary:
The Terry Fox run is an annual, non-competitive event organised to spread awareness about cancer.
Summary:
A Chhattisgarh court has directed the police to file an FIR against Congress MLA Jai Singh Agrawal and his four associates for allegedly grabbing land of a 55-year-old tribal man.
Summary:
A group of students from an engineering college in Kerala's Alappuzha have complained against their principal for allegedly hurting religious sentiments of north Indian students by deliberately serving them beef cutlets.
Summary:
Delhi's Jawaharlal Nehru University will hold its second convocation ceremony to confer PhD degrees after a gap of 46 years in the last week of February or the first week of March.
Summary:
In case of direct recruitment, 4% of the total number of vacancies will be reserved for people with benchmark disabilities.
Summary:
A Class 12 UP girl set herself on fire and died on Saturday after her school principal's son allegedly tried to sexually assault her, the police said.
Summary:
"What would earlier get into wrong hands is now going to the intended beneficiaries," he added.
Summary:
Royal Challengers Bangalore have bought all four fast bowlers who dismissed them for IPL's lowest-ever total of 49 runs, in last year's edition.
Summary:
He had founded Ikea at the age of 17, building it into the world's largest furniture retailer.
Summary:
While talking about Padmaavat's director Sanjay Leela Bhansali being slapped by Karni Sena members on the film's sets in Jaipur, Ranveer Singh said, "I was ready to go on a rampage." Talking further about the sets being vandalised, he added, "That is my place of worship...
Summary:
All-rounder Krunal Pandya's selling price to base price ratio was the second-highest as he fetched â¹8.8 crore, 22 times his base price.
Summary:
The eight IPL franchises spent â¹431.7 crore to buy 169 players in the 2018 IPL auction in Bengaluru.
Summary:
Reacting to the applause by the spectators, Federer said, "You guys make me nervous.
You guys fill the stadiums." Federer's father also began crying while standing in the crowd.
Summary:
RR also spent â¹11.5 crore on Jaydev Unadkat, the most expensive Indian player at the auction.
Summary:
Google Home users have reportedly complained that the company's smart speaker was unable to answer questions like, 'Who is Jesus?', but could respond to queries about Buddha, Muhammad, and Satan.
Summary:
Speaking at the Jaipur Literature Festival, Congress MP Shashi Tharoor said, "Hindutva is like Hindu wahhabism," adding that it was high time the "better Hindus" took back Hinduism.
Summary:
Appointed to the post in 2015, Jaishankar is reportedly the longest-serving foreign secretary since 1976.
Summary:
The man flouted IAF guidelines which allowed for tattoos at only certain body parts.
Summary:
Maharashtra on Sunday won the award for the best tableau at the 69th Republic Day parade in New Delhi.
Summary:
Filmmaker Karan Johar has said that he is a fan of actress Kangana Ranaut's work but unfortunately she is not a fan of his work.
Summary:
A gift for all of you on Hrithik's birthday." The last film in the franchise 'Krissh 3' released in 2013.
Summary:
Actress Deepika Padukone has said that she will not invite Katrina Kaif to her wedding.
Meanwhile, Deepika is said to be currently dating Ranveer Singh.
Summary:
Renuka Shahane has said that if there is a remake of her 1994 film 'Hum Aapke Hain Koun..!', she would love to see Alia Bhatt and Varun Dhawan play the new-age Nisha (Madhuri Dixit) and Prem (Salman Khan).
Summary:
Actor Arjun Rampal has said that he feels like a bull and that's what people in the film industry call him.
Summary:
Reacting to Roger Federer's rushed half-volley forehand winner from near his feet in Australian Open's final, Indian cricket legend Sachin Tendulkar tweeted, "Grace, power and agility.
Summary:
Reacting to Swiss tennis player Roger Federer winning his 20th Grand Slam title at the Australian Open on Sunday, a user tweeted, "Roger Federer and trophies.
It's a love story." "This was the 200th Grand Slam of the Open Era.
Summary:
Also known as the 'Walking God of North Karnataka', Swami was awarded the Padma Shri for his spirituality.
Summary:
The Army has reportedly asked the government to induct missiles on an emergency basis, following a shortage of anti-tank guided missiles.
Summary:
Summary:
In 2017, over 9 lakh tweets were recorded on Republic Day.
Summary:
Criticising the way UK Prime Minister Theresa May is negotiating Brexit with the European Union (EU), US President Donald Trump has said that he would take a "tougher" approach to the talks.
Summary:
Google's hands-free AI-powered camera called 'Clips', which was unveiled last year, is now on sale, priced at $249.
Summary:
Silicon Valley-based big data startup Unravel Data has secured $15 million (â¹95.4 crore) in a Series B funding round led by US-based VC firm GGV Capital.
Summary:
Switzerland's Roger Federer became the first male tennis player to win 20 Grand Slam titles, after winning a joint-record sixth Australian Open title on Sunday.
Summary:
On January 28, 1986, NASA's Challenger space shuttle, which had completed 9 successful Earth-orbiting missions, exploded just 73 seconds after lift-off in its 10th spaceflight.
Summary:
Actress Maisie Williams has said that Game of Thrones season eight will premiere in April 2019.
Summary:
Other seven wickets were shared by Ishant Sharma and Bhuvneshwar Kumar while India's fifth pacer Hardik Pandya went wicketless.
Summary:
The report said the accounts were bought from a company called Devumi which claims to increase a user's "social media presence".
Summary:
Responding to Elon Musk's tweet about creating a zombie apocalypse to promote Boring Company's flamethrowers, a user tweeted, "We can see right through you Elon." Another user tweeted, "Gawddammit, Elon.
Summary:
She also claims upon confrontation, an Uber supervisor said, "He's a dude".
Summary:
The Information and Broadcasting Ministry is planning to set up a Social Media Communication Hub to keep track of the trending news and to gather feedback on Centre's schemes.
Summary:
Summary:
Meanwhile, two flight attendants can be seen laughing behind her in the video.
Summary:
Rajput group Karni Sena convenor Lokendra Singh Kalvi has said that the group is ready to collect the money that director Sanjay Leela Bhansali spent on making 'Padmaavat' if he hands over the rights of the film.
Summary:
Actor Sushant Singh Rajput has said that he is single while adding, "I'm never taciturn about my relationship." Sushant was reportedly dating actress Kriti Sanon, who was his co-star in the film 'Raabta'.
Summary:
Shahid Kapoor has said he is used to being the favourite of all his filmmakers but working on sets of 'Padmaavat' was the first time that he was like an outsider.
Summary:
The classmate, along with two others, faces criminal charges for allegedly intentionally exposing the victim to pineapple despite being aware of her allergy.
Summary:
After getting sold to Chennai Super Kings in the Indian Premier League auction on Sunday, South African pacer Lungi Ngidi tweeted, "Just listened to the #LungiDance song loving it already".
Summary:
Windies' Chris Gayle, who holds the record for the highest individual score in IPL, was sold to Kings XI Punjab for â¹2 crore after going unsold twice at the 2018 IPL auction.
Summary:
India lost to Belgium on penalties in the final of the second leg of the Four Nations Invitational Tournament in New Zealand on Sunday.
Summary:
Seven Indian cricketers playing in the U-19 World Cup were sold in the auction.
Summary:
"I'm glad Amazon is being irrational...
Summary:
The US Secret Service has reportedly warned banks of "jackpotting" attacks on ATMs across the country.
Summary:
Google confirmed the same and added that the ads were blocked in less than two hours.
Summary:
The newly announced ship will draw inspiration from shows like The Powerpuff Girls and Ben 10.
Summary:
A French woman who was stranded at Nanga Parbat, known as the 'Killer Mountain', in Pakistan-occupied Kashmir has been rescued by mountaineers.
Summary:
Prime Minister Narendra Modi on Sunday said that the Adivasi women in Chhattisgarh have broken stereotypes which depicted them in jungles, carrying kindle wood on their heads, by operating e-rickshaws in the "dangerous atmosphere".
Summary:
Canadian PM Justin Trudeau was spotted wearing 'rubber ducky' socks during a discussion on the importance of education in women empowerment at the World Economic Forum in Davos, Switzerland.
Summary:
A district consumer forum in Maharashtra has held SBI guilty of deficiency in service for debiting â¹5,000 from a bank account in spite of a failed ATM withdrawal.
Summary:
The US-India Business Council (USIBC) has urged Finance Minister Arun Jaitley to further reduce tax uncertainties for multinational firms and institutional investors.
Summary:
A 32-year-old man died after he was sucked into an MRI machine at a government-run hospital in Mumbai due to alleged negligence by the staff, the victim's family claimed.
Summary:
Elon Musk-led tunnelling startup 'The Boring Company' has unveiled a flamethrower for sale, priced at $500 (nearly â¹31,800).
Summary:
The documentary 'Kailash', which is about Nobel Peace Prize winner Kailash Satyarthi and his efforts to end child slavery, won the 'US Grand Jury Prize: Documentary' at the Sundance Film Festival.
Summary:
Tokyo-based cryptocurrency exchange Coincheck has said it would repay owners $425 million of the money stolen in what is being considered the biggest cryptocurrency theft ever.
Summary:
The couple, who live in South Africa, began preparing for the trip in 2014 and got married a year later.
Summary:
Billionaire Elon Musk has posted a video on his Instagram account showing him using his tunnelling startup Boring Company's flamethrower.
Boring Company unveiled the flamethrower priced at $500 (nearly â¹31,800).
Summary:
Dr Varghese runs India's only polio ward at St Stephen's Hospital and provides reconstructive surgery to give polio survivors greater mobility.
Summary:
The leg-spinner has taken 12 wickets in List A cricket.
Summary:
Indian batsman Suresh Raina, who last played a T20I for India in February last year, has been recalled to the Indian side for the T20I series against South Africa.
Summary:
Pragyan Ojha, who won the Purple Cap for taking most wickets in the 2010 IPL, went unsold for the third straight IPL auction on Sunday.
Summary:
IPL history's most expensive bowler Tymal Mills, who was bought by RCB for â¹12 crore from a base price of â¹50 lakh in 2017, went unsold in the 2018 IPL auction on Sunday.
Summary:
Australian pacer Jason Behrendorff, who dismissed former Indian batsmen Sachin Tendulkar and Rahul Dravid for their last professional ducks, was bought by Mumbai Indians for â¹1.5 crore in the IPL auction on Sunday.
Summary:
Apple has included an 'Advanced Mobile Location' feature in the recent iOS update, which automatically sends a user's location to emergency services on calling.
Summary:
The device works with both phones and tablets up to 9.7 inches in size.
Summary:
The airline said the tickets had been mistakenly advertised at a lower price due to a "genuine human error," adding that customers would receive a full refund.
Summary:
India...decides its foreign policies in accordance with interest of America in every move made by America against China," he said.
Summary:
Congress MP Jairam Ramesh has said that the senior leaders in the party should act as "mentors and not tormentors".
He added that the party should ensure that young leaders take over the party's reins before the 2019 general elections.
Summary:
The startup aims to use the raised funds to develop its AI-based learning solution Commit.Live along with hiring partners and strengthening academia.
Summary:
Addressing the nation during his monthly radio programme 'Mann ki Baat', Prime Minister Narendra Modi on Sunday said that there are many sectors where "Nari Shakti" is playing a pioneering role and establishing milestones.
Summary:
The Indo-Tibetan Border Police (ITBP) rescued over 100 people after a massive fire broke out at Arunachal Pradesh's Dirang on Saturday.
Summary:
Adding that it was sad to lose Chawla at a young age, PM Modi said she had given the message that there was no limit to "Nari Shakti".
Summary:
Prime Minister Narendra Modi on Sunday remembered freedom fighter Lala Lajpat Rai on his 153rd birth anniversary, tweeting, "Punjab Kesari Lala Lajpat Rai left an indelible mark on India's history.
Summary:
The daughter of a woman rescued by the Indian government from Saudi Arabia has thanked External Affairs Minister Sushma Swaraj.
Summary:
An audit by the customs department has revealed that nine exit gates at Terminal 3 were being used by Delhi airport staff to smuggle items.
Summary:
Following the Taliban attack in Kabul, Afghanistan, that killed nearly 100 people and injured over 150 others, Pakistan called on all nations to cooperate in order to combat and eliminate terrorism.
Summary:
Actress Swara Bhasker has written an open letter to Director Sanjay Leela Bhansali, saying that she felt "reduced to a vagina" after watching his film 'Padmaavat'.
Summary:
Vodafone India provided a platform to 14-year-old Vamsi Krishna, gold medallist in national doubles under-13, to play against Olympic Champion Carolina Marin at the Premier Badminton League.
Summary:
Interestingly, Bopanna had won his first Grand Slam with Dabrowski at French Open last year.
Summary:
This was Saina's first appearance in an international competition's final since her title triumph at Malaysia Masters in January last year.
Summary:
The first ever instance of a car being charged for speeding is believed to have occurred on January 28, 1896, when the vehicle was travelling at 13 km/h, four times the allowed limit.
Summary:
Interestingly, the term "literally" is often misused by English speakers.
Summary:
Twenty-six-year-old pacer Jaydev Unadkat became the most expensive Indian player to be sold at the 2018 IPL auction after Rajasthan Royals bought him for â¹11.5 crore on Sunday.
Summary:
Pacer Shardul Thakur, who wore Sachin Tendulkar's jersey number 10 for India during his debut ODI series last year, was bought by CSK for â¹2.6 crore in the IPL auction on Sunday.
Summary:
Seventeen-year-old spinner Mujeeb Zadran from Afghanistan, who is the first international cricketer born in the 21st century, was sold to Kings XI Punjab for â¹4 crore.
Summary:
Murugan Ashwin, with a base price of â¹20 lakh, was bought by Royal Challengers Bangalore for â¹2.2 crore.
Summary:
After analysing facial cues, the service creates an itinerary of recommended locations in New Zealand.
Summary:
Three businessmen from Delhi were arrested by the Delhi Police for allegedly harassing a woman on a flight from Bengaluru to Delhi earlier this month.
Summary:
The Oxford Dictionaries announced 'Aadhaar' as its 2017 'Hindi Word of the Year' at the Jaipur Literature Festival on Saturday.
Summary:
During the first 'Mann Ki Baat' address this year, Prime Minister Narendra Modi on Sunday praised Maharashtra's Matunga Railway Station which is run by women.
Talking about President Kovind's recent interaction with women achievers, PM Modi said, "I would like to mention the Matunga Railway station which is an all-women station.
Summary:
The French capital city of Paris has been put on flood alert due to the rising water levels of the Seine river.
Summary:
Addressing a press conference on Saturday, Karni Sena chief Lokendra Singh Kalvi again denied any role in the attack on school bus in Gurugram on January 24.
Summary:
A petrol bomb was allegedly thrown by unidentified persons at a cinema hall screening the film 'Padmaavat' in Maharashtra's Kalyan on Saturday.
Summary:
A father of five whose T-shirt saying "In Need Of Kidney" went viral has received a lifesaving transplant from a stranger.
Summary:
Portugal's Cristiano Ronaldo scored his career's 100th and 101st penalty goals to help Real Madrid beat Valencia 4-1 in their La Liga encounter on Saturday.
Summary:
England's limited-overs captain Eoin Morgan remained unsold on the second day of the IPL auction.
Summary:
Congress President Rahul Gandhi has appointed a six-member panel for the selection of a candidate for the upcoming by-election in Odisha's Bijepur.
Summary:
Talking about working conditions and safety issues at a recent event, British PM Theresa May said that the answer isn't to shut Uber but instead comply with safety standards.
Summary:
Addressing the special village development campaign on Saturday, Union Minister of State RK Singh threatened to slit the throat of any official indulging in corruption.
Summary:
Two IPS officers were allegedly attacked by other police officials in Uttar Pradesh's Banda after the IPS officers caught them taking illegal 'recovery money' from trucks carrying sand.
Summary:
As per Professor Kannan, the Botanical Garden in-charge, the number of visitors in the garden has reduced by almost 50%.
Summary:
The mother, who was shooting the video, can be heard talking about the boy lying, reports said.
Summary:
Sri Lankan President Maithripala Sirisena has said that 90% of the country's foreign loans amounting to over â¹3 lakh crore which were borrowed by the previous government was unaccounted for.
Summary:
All 120 wickets fell in the three-match Test series between India and South Africa, marking the first such instance ever in a series of 3 or more Tests.
Summary:
As many as 31 players went unsold out of the 109 players auctioned on day one of the IPL auction on Saturday, including world number one T20I bowler Ish Sodhi.
Summary:
IPL's most expensive overseas player Ben Stokes was bought by RR for â¹12.5 crore, making him the biggest buy on day one of the auction.
Summary:
All-rounder Krunal Pandya was bought by Mumbai Indians through RTM for â¹8.8 crore, 22 times his base price of â¹40 lakh, in the IPL auction on Saturday.
Summary:
India have retained the ICC Test Championship mace and won a $1-million award after defeating South Africa by 63 runs in the third Test in Johannesburg.
Summary:
Sunrisers Hyderabad bought the most number of players at 14, while Kolkata Knight Riders outspent rival teams, splashing out â¹51.4 crore for 10 players.
Summary:
Karthik had not kept wickets for India in Tests since January 2010.
Summary:
A 34-year-old Muslim woman, who led the Friday prayers at the Quran Sunnat Society's office in Kerala's Malappuram, is claimed to be the first woman in India to perform the role.
Summary:
Former US State Secretary Hillary Clinton said thanks to "activist bitches supporting bitches", referring to those raising their voices against sexual harassment.
Summary:
Philippine President Rodrigo Duterte told a group of business leaders in Delhi that he would offer them 42 virgins if they were interested in investing in his country.
Summary:
She further alleged that she was told that she wasn't allowed to touch the products until she purchased them.
Summary:
After being bought by Kings XI Punjab for â¹2 crore, Indian all-rounder Yuvraj Singh called Preity Zinta his "favorite team owner," and said he was happy to be back to the team.
Yuvraj had earlier represented KXIP from 2008-2010.
Summary:
Reacting to Preity Zinta's bidding spree during the first day of the IPL auction, a user tweeted, "Can the other teams get any player?" Other tweets read, "Auctioneer: Next player for auction is...Preity Zinta: 3 Crore...Auctioneer: Ma'am, player ka naam toh bolne do," and, "Mom : beta ye lo chocolate.
Summary:
Rio Olympics gold medalist Gil Roberts has won an appeal against WADA relating to a doping ban, after a US arbitration panel agreed the sprinter had tested positive because of "passionate kissing".
Summary:
The US state of Washington has reportedly tabled a bill that aims to ban devices containing "difficult or impossible to remove" batteries.
Summary:
A Ghaziabad-based man was arrested at the Delhi airport for allegedly carrying two live bullets in his wallet, an official said.
Summary:
The Bharatiya Janata Party has objected to the Tipu Sultan's portrait that was unveiled by Delhi Chief Minister Arvind Kejriwal on the occasion of the 69th Republic Day. The CM uncovered the portrait among 70 other personalities, including revolutionaries, freedom fighters, and heroes.
Summary:
Summary:
Former environment minister and Congress MP Jairam Ramesh on Saturday accused the BJP of tweaking the country's environment laws to favour industries.
Summary:
Summary:
President Ram Nath Kovind on Saturday launched the Pulse Polio programme 2018 by administering polio drops to children below five years of age at the Rashtrapati Bhavan.
Summary:
Police arrested her while she was taking the money from the MLA.
Summary:
NITI Aayog CEO Amitabh Kant has said the Direct Benefit Transfer (DBT) mechanism in several government schemes helped the government save around â¹65,000 crore.
Summary:
He further said GST has brought about an entire change in the country's indirect tax system.
Summary:
At least 49 people were arrested as violence ensued in Uttar Pradesh's Kasganj on Saturday, a day after a boy was killed in clashes over a Republic Day rally in the district.
Summary:
School students and residents of Kochi's Willingdon Island were evacuated on Saturday after ammonia gas leaked from a lorry stationed at the Fertilisers and Chemicals Travancore Limited (FACT) factory.
Summary:
At least 14 people were killed and several others were injured on Saturday in a shootout at a nightclub in Brazil, police officials said.
Summary:
India recorded a 63 run-win in the final Test in Johannesburg on Saturday to register their first Test victory in South Africa after over seven years.
Summary:
World's tallest man Sultan Kösen on Friday met the world's shortest woman Jyoti Amge in Egypt.
Summary:
Eighteen-year-old Kamlesh Nagarkoti, who has bowled at speeds of over 145kmph in the ongoing Under-19 World Cup, was bought by KKR for â¹3.2 crore in the IPL auction.
Summary:
All-rounder Krunal Pandya has become the most expensive uncapped player in IPL history after Mumbai Indians retained him for â¹8.8 crore through Right to Match option in the auction on Saturday.
Summary:
Vice-captain Shubman Gill, who averages over 100 in Youth ODIs, was sold to Kolkata Knight Riders for â¹1.8 crore.
Summary:
It also describes a method by which officers within the car could manually take control or use it wirelessly.
Summary:
The engine, constructed in the UK and inducted to the then East Indian Railway in 1855, was christened as 'Fairy Queen' in 1895.
Summary:
London-headquartered startup BlockEx, which provides a financial exchange platform for blockchain-based digital assets, has raised over $24 million.
Summary:
The National Highways Authority of India (NHAI) will soon launch a toll-free number to report road accidents that take place on national highways (NH).
Summary:
A natural history museum in Switzerland has identified an 18-century mummy as UK Foreign Secretary Boris Johnson's ancestor on the basis of DNA tests.
Summary:
A journalist has released a 13 years old picture of former US President Barack Obama with Nation of Islam leader Louis Farrakhan.
Summary:
US President Donald Trump's call for nations to pursue their self-interest will cause clashes between each other's agendas and take the world back to the eve of WWI, UN rights chief Zeid Ra'ad Al Hussein has warned.
Summary:
Russia's youngest billionaire Kirill Shamalov has reportedly lost almost half of his wealth after divorcing Russian President Vladimir Putin's daughter Katerina Tikhonova.
Summary:
Saudi Prince Alwaleed bin Talal, the Middle East's richest person was released from detention on Saturday, his family sources said.
Summary:
The trailer of Urvashi Rautela starrer 'Hate Story IV' has been released.
Summary:
Nawazuddin Siddiqui, while speaking about portraying Indo-Pakistani author Saadat Hasan Manto in the upcoming biopic on him, said he had to "purify himself" to play Manto.
Nawazuddin further said, "The greatest challenge for me was that I'm not like him.
Summary:
Saif Ali Khan has said he'd happily not be called a star, while adding that he likes the reputation of being an actor.
"I think more like an actor than a star.
Summary:
All the eight players bought by CSK on the first day of the IPL auction on Saturday are aged above 30.
Summary:
Google is testing a tool called Bulletin that would allow anyone to publish information about local interests like bookstore readings, sporting events, or street closures.
Summary:
Panda said the party knew about his association with the firm.
Summary:
Responding to criticism over Congress President Rahul Gandhi being allotted a 6th-row seat at the Republic Day Parade, the BJP has said similar treatment was given to its leaders when the Congress was in power.
Summary:
This comes a day after 53 party workers were expelled from Kancheepuram Central unit and five from AIADMK's trade union wing.
Summary:
A group of meritorious female students were invited by the Jammu and Kashmir Legislative Assembly Speaker last week to watch the proceedings and functioning of the House.
Summary:
Summary:
Two people were killed and 10 others were injured after the Assam Police opened fire at protesters in Dima Hasao district on Thursday.
Summary:
At least six women have been booked in Maharashtra's Bhiwandi for allegedly assaulting a team of policemen after the cops arrested a man accused in a cheating and impersonation case, Thane police officials said.
Summary:
The woman's husband and sister-in-law told the police that when she was playing with her dog, the dog sprang on her causing her to lose balance and fall from the terrace.
Summary:
Ranveer Singh has revealed he locked himself in his house for 21 days to prepare to play Alauddin Khilji in 'Padmaavat'.
Summary:
World number two tennis player Caroline Wozniacki defeated world number one Simona Halep to win her maiden Grand Slam title at the Australian Open and also claim the world number one spot.
Summary:
On January 27, 1967, astronauts training for the first crewed Apollo flight were burned alive inside a purely oxygen-filled launch module since its door could be opened only inwards while high cabin pressure made it impossible to do so.
Summary:
At least 95 people were killed and over 150 others were injured on Saturday in a Taliban attack in Afghanistan's capital Kabul.
Summary:
Producer Harvey Weinstein has been sued by his former Indian-American assistant who has alleged she was subjected to sexual exploitation while working for him.
Summary:
Aamir Khan and Zaira Wasim starrer 'Secret Superstar' has earned over â¹300 crore within 8 days of its release in China.
Summary:
Wicketkeeper-batsman Sanju Samson, who represented Rajasthan Royals from 2013-2015, was bought by the team for â¹8 crore after a bidding war with Mumbai Indians in the IPL auction.
Summary:
Twitter has revealed that Russian-linked Twitter bots shared US President Donald Trump's tweets almost 4.7 lakh times during the final months of the 2016 Presidential elections.
Summary:
Facebook has been slammed for its 'Did You Know' feature that prompted users to answer "I usually sleep with...".
"Things that Facebook wants to know these days.
However, the technology giant claimed its statement was incorrectly worded and instead wanted people to write "what" they sleep with, like a teddy bear, rather than "who".
Summary:
Casino billionaire and Wynn Resorts Founder Steve Wynn had allegedly paid a $7.5 million settlement to a manicurist who accused him of forcing her to have sex with him in 2005, according to a report by Wall Street Journal.
Summary:
According to reports, Sridevi's daughter Janhvi Kapoor will star as the lead actress in Ranveer Singh's upcoming film 'Simmba'.
Summary:
India's Dinesh Karthik was sold to Kolkata Knight Riders for â¹7.4 crore, while Parthiv Patel, who is playing for India in the third Test against South Africa, went unsold.
Summary:
Indian fast bowler Ishant Sharma, who had a base price of â¹75 lakh as compared to â¹2 crore last year, went unsold for the second consecutive year in the IPL auction on Saturday.
Summary:
The deceased, identified as Anthony, was about to deliver a ball when he suffered the attack and fell down head first.
Summary:
After CSK bought Harbhajan Singh for â¹2 crore in the IPL auction, the spinner took to Twitter to express gratitude and also used lyrics of a Tamil song.
Harbhajan represented Mumbai Indians in IPL's first 10 seasons.
Summary:
Kings XI Punjab placedàthe final bid of â¹9 crore before Sunrisers exercised the Right to Match option to retain him.
Summary:
Sri Lanka's Lasith Malinga, who is the highest wicket-taker in IPL history with 154 wickets, went unsold on the first day of the 2018 IPL auction today.
Summary:
Multibillion-dollar Japanese conglomerate SoftBank is reportedly in talks to invest in Indian online insurance aggregator PolicyBazaar at a valuation of $800 million.
Summary:
Further, CBSE informed that this year onwards, only one question paper would be set for the test.
Summary:
Clashes erupted outside the Indian High Commission in London on Friday after Pakistani-origin British lawmaker Nazir Ahmed led a 'black day' protest demanding freedom of the Indian state of Jammu and Kashmir.
Summary:
In an interview with a Chinese daily, India's ambassador to China, Gautam Bambawale said that India and China are "not rivals", but instead "partners in development".
Summary:
Chennai Police constable Kannan Kumar killed a man upon discovering that he was posing to be his girlfriend on Facebook to dupe him.
Summary:
Delhi University Law Centre's website was hacked on Friday allegedly by Bangladeshi hackers.
The message left on the website read, "Hey admin, your system is not secure.
Summary:
A US court has sentenced an Indian-origin man to life for killing his wife by beating her with a hammer at least 19 times in 2016.
Summary:
Coffee giant Starbucks' Chairman Howard Schultz has said "one or a few legitimate" cryptocurrencies are coming, but Bitcoin won't be one of them.
Summary:
AirAsia India is a 51:49 joint venture between Tata Sons and Malaysian carrier AirAsia.
Summary:
The USA gymnastics board is set to resign after USA's Olympic Committee had given them six days to quit over the sexual abuse scandal surrounding gymnastic team's doctor Larry Nassar, sentenced to 40 to 175 years in prison.
Summary:
Japanese cryptocurrency exchange Coincheck has confirmed it lost about $524 million after suffering a hack which stole 500 million NEM tokens, said to be the biggest cryptocurrency hack ever.
Summary:
Called hygrobots, the robots made using actuator nanofibres can crawl, wriggle back and forth, and twist like a snake.
Summary:
Censor Board Chief Prasoon Joshi has backed out of the ongoing Jaipur Literature Festival.
Summary:
Indian shuttler Saina Nehwal beat Thailand's Ratchanok Intanon 21-19, 21-19 to reach the final of the Indonesia Masters Super 500 tournament on Saturday.
Summary:
Kolkata Knight Riders did not exercise the Right to Match option for their captain Gautam Gambhir after Delhi Daredevils bought him for â¹2.8 crore in the IPL auction on Saturday.
Summary:
Richard Madley, nicknamed 'The Hammerman', is a career auctioneer from Wales.
Summary:
Kings XI Punjab bought India's second Test triple centurion Karun Nair, who also smashed two tons in India's domestic T20 tournament this month, for â¹5.6 crore.
Summary:
Distributors claimed connections of customers who hadn't linked their Aadhaar by December 31, 2017 were frozen by the Indian Oil Corporation (IOC).
Summary:
The Indian Railways has changed the category name 'viklang' (handicapped) to 'divyang' (divine bodies) in its concession forms offered to people with special needs.
Summary:
Lives while crossing tracks accounted for the maximum number of deaths (1,651).
Summary:
US President Donald Trump received boos and hisses from the audience at the World Economic Forum in Switzerland's Davos on Friday after he branded the media as "mean and vicious".
Summary:
Since then, the baboons have been recaptured, except for four of them which were located in the service zone, said the zoo.
Summary:
Trump invited 15 European CEOs to discuss business and encourage them to invest in the US as part of his efforts to strengthen the American economy.
Summary:
The recreated version of the song 'Gazab Ka Hai Din' from Taapsee Pannu and Saqib Saleem starrer 'Dil Juunglee' has been released.
Summary:
"Here is why Tom Cruise gets paid the big bucks," Graham Norton said jokingly after the video was played.
Summary:
Yuvraj became the most expensive buy in IPL history in 2015 when Delhi Daredevils bought him for â¹16 crore.
Summary:
Reacting to Kings XI Punjab's owner Preity Zinta buying six players in the first three rounds of the IPL auction, Virender Sehwag tweeted, "Ladkiyon ko shopping ka shock hota hai.
Summary:
Meanwhile, Bangladesh's Shakib Al Hasan was bought for â¹2 crore by SRH.
Summary:
Former Kings XI Punjab player Glenn Maxwell was sold to Delhi Daredevils for â¹9 crore, while England Test captain and IPL debutant Joe Root went unsold during the IPL auction on Saturday.
Summary:
Three-time IPL winner Yusuf Pathan was bought by Sunrisers Hyderabad for â¹1.9 crore in the IPL auction on Saturday.
Summary:
English batsman Jason Roy was sold to Delhi Daredevils for â¹1.5 crore.
Summary:
Former Rajasthan Royals batsman Shane Watson was sold to CSK for â¹4 crore.
Summary:
US-based scientists have found that a drug used to treat Hepatitis C may also be effective in treating people infected with Zika virus.
Summary:
The constable, Chakrapani Reddy, was unarmed when he confronted the trader attempting to shoot the other.
Summary:
A 97-year-old female farm labourer from Karnataka was awarded the Padma Shri on Thursday for assisting childbirth free of cost for 77 years in backward areas.
Summary:
A yoga teacher in Andhra Pradesh's Visakhapatnam was beaten to death with iron rods by unknown assailants on Friday.
Summary:
US President Donald Trump's administration has signed a contract worth $23.6 million (over â¹150 crore) with the world's largest aerospace company Boeing to replace two food chilling systems aboard the President's Air Force One, according to reports.
Summary:
Gill, who currently averages better than Australian legend Don Bradman, also joins him as the joint second-fastest to reach 1,000 international runs.
Summary:
English all-rounder Ben Stokes, who became IPL's most expensive overseas player last year, was bought by Rajasthan Royals for â¹12.5 crore.
Summary:
Former Google engineer Steve Yegge has cited the technology giant's inability to innovate as the main reason for quitting after 13 years.
Summary:
The US government has proposed a bill to end the country's visa lottery system in favour of reducing backlogs of highly-skilled workers.
Summary:
Nabha jailbreak mastermind Prema Lahoria and Punjab's most-wanted gangster Harjinder Singh, alias Vicky Gounder, were killed in an encounter with police near the Punjab-Rajasthan border on Friday.
Summary:
The film earned an additional â¹5 crore from limited preview screenings on Wednesday.
Summary:
Hollywood actor James Franco was digitally removed from the cover of Vanity Fair's Annual Hollywood Issue over sexual harassment allegations against him, confirmed the magazine's spokesperson.
Summary:
Each IPL team was given â¹80 crore to build squads before the player retention event.
Summary:
Australian pacer Mitchell Starc went from his base price of â¹2 crore to â¹9.4 crore within minutes to be bought by Kolkata Knight Riders, while former Royal Challengers Bangalore player Chris Gayle went unsold in the first round.
Summary:
Future Supply Chain Solutions will fully acquire Snapdeal's logistics service provider Vulcan Express Pvt Ltd in an all-cash deal valued at â¹35 crore, said Founder and Chairman Kishore Biyani.
Summary:
US-based physicists have created floating 3D images that viewers can see from any angle.
Summary:
The rescued people were rushed to a hospital, while the search operation is still underway, police added.
Summary:
Interestingly, he took the test after his 13-year-old brother scored the highest score of 162 points last year.
Summary:
US Ambassador Nikki Haley has termed the rumours that she is having an affair with President Donald Trump as "highly offensive" and "disgusting".
Summary:
Speaking about getting the maximum attention for his role of 'Alauddin Khilji' in 'Padmaavat', Ranveer Singh said, "I'm not into one-upmanship at all." "I have done a two-hero film, I have done an ensemble film.
Ranveer further said, "It's a very collaborative process.
Summary:
Ashwin later tweeted, "I am happy that @lionsdenkxip will be my new home and thank you so much @ChennaiIPL for all the great memories."
Summary:
Indian Premier League side Sunrisers Hyderabad used the newly introduced Right to Match (RTM) option to buy Indian opener Shikhar Dhawan for â¹5.2 crore, after Kings XI Punjab won the bidding war.
Summary:
Targeting the Opposition's 'Save the Constitution' rally held in Mumbai on Friday, Maharashtra Chief Minister Devendra Fadnavis said the rally was held to save the party, not the Constitution.
What they (Congress) held today was a 'Save Party' rally and not 'Save Constitution' rally.
Summary:
Until the discovery, only one other population with the same number of fish had been identified nearby.
Summary:
Jammu and Kashmir Police wrongly suspected an 18-year-old Pune girl for planning a suicide attack on Republic Day due to possible misinterpretation of intelligence input.
Summary:
At an event organised by an NGO, over 100 waste-pickers unfurled the Tricolour at one of the three landfills in Delhi on the Republic Day eve.
Summary:
Ex-Afghanistan President Hamid Karzai has said that he had found Delhi a lot more conservative than his country's capital Kabul during his first visit to India in 1976.
Summary:
The article titled 'Shared values, common destiny' highlighted the importance of India's ties with the ASEAN countries.
Summary:
A woman in China has paid a sum of â¹5 crore in dowry to marry a man who is 15 years younger than her.
Summary:
India beat Japan 4-2 in the second leg of the Four Nations Invitational Tournament in New Zealand on Saturday.
Summary:
Delhi beat Rajasthan by 41 runs at the Eden Gardens to clinch their maiden Syed Mushtaq Ali Trophy on Friday.
Summary:
The Gurugram Police on Friday arrested Haryana BJP leader and Karni Sena National Secretary Suraj Pal Amu over anti-'Padmaavat' violence.
Summary:
The umpires stopped play on the third day of the third India-South Africa Test during the hosts' innings, after South African opener Dean Elgar was struck on the helmet off a Jasprit Bumrah delivery.
Summary:
If the decision is not to resume play, officials should consider if the pitch can be repaired.
Summary:
The Right to Match card, introduced for the first time in IPL, is an option for a team to retain a player, by matching the highest bid amount for the player by another team during the auction.
Summary:
Becker, who won 64 titles in his career, was declared bankrupt in June last year.
Summary:
Former Indian captain Sourav Ganguly has said that at one point former Indian coach Greg Chappell was trying to end his career.
Summary:
Pakistan Foreign Minister Khawaja Asif on Thursday said Kashmir and Rohingya issues are among the "causes of a fractured world" which need to be addressed at the international level.
Summary:
Hearing a domestic violence case, the Gujarat High Court observed that "modern marriages" arranged through Facebook are "bound to fail".
Summary:
Over 100 boats at the market sell fruits, vegetables and fish, among other produce.
Summary:
With 67 prisoners on death row in 2017, Maharashtra recorded the most number of death row prisoners in the country last year, a National Law University report has said.
Summary:
Mexican drug lord Joaquin 'El Chapo' Guzman has promised to not kill any jurors in his upcoming trial, his lawyers have said.
Summary:
A supermarket sale on Nutella has led to chaos in supermarkets across France.
Summary:
Hrithik has reportedly approached the film's director Vikas Bahl regarding Sara's casting and the talks have been initiated.
Summary:
The short film, narrated by Kobe Bryant himself, features illustrations showing Bryant through his career, and has music by Oscar-winning composer John Williams.
Summary:
South Korean tennis player Hyeon Chung took to Instagram to share a picture of his foot injury, which caused him to retire from the Australian Open semi-final against Roger Federer on Friday.
Summary:
The day was called off early after batsman Dean Elgar was hit on the helmet, forcing umpires to discuss about the pitch, which offered uneven bounce throughout the day.
Summary:
The US Ski and Snowboard Association is using virtual reality-based programs to train athletes for the upcoming Winter Olympic Games in PyeongChang.
Summary:
Cricketer-turned-commentator Virender Sehwag tweaked a famous dialogue of Bollywood film 'Gangs of Wasseypur' to describe pacer Mohammad Shami's batting.
Summary:
Pakistan has said that India's programmes to develop advanced weapons and delivery systems far exceeds its "legitimate" defence needs.
Summary:
Union Railway Minister Piyush Goyal has requested citizens to avoid selfies and stunts near railway tracks.
Summary:
At the India-ASEAN summit, PM Narendra Modi said that the maritime sector was one of the key areas for growth and development of the Indo-Pacific region.
Summary:
Andhra Pradesh Chief Minister Chandrababu Naidu missed the Republic Day celebrations in the state on Friday after his flight from Abu Dhabi was delayed due to fog.
Summary:
A private college in Kerala has issued a circular advising female students to avoid travelling pillion with male students on their two-wheelers, citing the state police's directive.
Summary:
Philippine President Rodrigo Duterte told Myanmar leader Aung San Suu Kyi that she shouldn't bother about rights activists as they are "just a noisy bunch".
Summary:
UK MPs belonging to the Conservative Party are considering ousting PM Theresa May if the party registers a poor result in the upcoming local elections, according to The Guardian.
Summary:
Financial Services Secretary Rajiv Kumar has said that honest borrowers will find it easier to get loans from public sector banks (PSBs) following the reforms being undertaken.
Summary:
Andhra Pradesh and Telangana governor ESL Narasimhan on Friday praised the development work carried out by the governments of the two states, adding that they are doing every bit possible.
Summary:
The Doomsday Clock, symbolising how close the planet is to an apocalypse, was set at 2 minutes to midnight, the closest since 1953 during the Cold War. The Clock was moved 30 seconds forward compared to 2017, citing growing nuclear risks and climate dangers.
Summary:
Dhoni had scored 3,454 runs as captain in 60 Tests (96 innings), while Kohli crossed him in only 35 Tests (57 innings).
Summary:
Congress President Rahul Gandhi was allotted a seat in the sixth row at the Republic Day Parade, alongside Ghulam Nabi Azad, the Leader of Opposition in Rajya Sabha.
Summary:
Singer Katy Perry on Thursday posted a photo on Instagram of her nails painted with the symbols of cryptocurrencies like Bitcoin, Ethereum, and Monero.
Summary:
American rapper 50 Cent, who has earned nearly $8 million in Bitcoin, has admitted he forgot about earning 700 Bitcoins in 2014 via sales of his album 'Animal Ambition'.
Summary:
Indian tennis player Rohan Bopanna has entered his career's third Grand Slam final after reaching the Australian Open mixed doubles final on Friday.
Summary:
Billionaire investor George Soros has said governments would soon start regulating Facebook and Google as they control over half of all internet advertising revenue.
Summary:
Karnataka CM Siddaramaiah on Friday termed BJP President Amit Shah and BJP's Chief Ministerial candidate for state Assembly elections BS Yeddyurappa as "former jail birds".
Summary:
India's Border Security Force (BSF) refused to exchange sweets with Pakistani Rangers at the Attari-Wagah border on Republic Day this year.
Summary:
Uttar Pradesh Minister Sandeep Singh on Friday mistakenly termed the 69th Republic Day as 59th.
Summary:
The government has cut GST rate from 12% to 8% on houses purchased using the credit-linked subsidy scheme (CLSS) under Pradhan Mantri Awas Yojna.
Summary:
Philippine President Rodrigo Duterte has expressed interest in adopting India's unique identification Aadhaar system to improve financial inclusion and fight corruption in the Philippines, India's Ministry of External Affairs officials said.
Summary:
Previously, Bhagwat had defied an official order by hoisting the Tricolour on Independence Day.
Summary:
China on Friday unveiled plans to build a 'Polar Silk Road' across the Arctic as part of its Belt and Road Initiative (BRI).
Summary:
US President Donald Trump on Friday said that his 'America First' policy does not mean "America alone".
Summary:
Cameron had opposed Brexit and resigned after Britain voted to leave the bloc.
Summary:
Filmmaker Vishal Bhardwaj has said it is chutzpah if a film is not released despite the Supreme Court's order that the film should be released.
Summary:
Actress Shabana Azmi has said the film 'Padmaavat' should be sent as India's official entry to Oscars next year.
Shabana further said the film is spectacular and spell-binding.
Summary:
Australian wheelchair tennis player Dylan Alcott crashed into a linesman while playing a shot, which won him a point at the Australian Open on Thursday.
Summary:
Batting first, England lost their first five wickets for just eight runs, with four players getting out on ducks, before recovering to score 196.
Summary:
Australian Open quarter-finalist Tennys Sandgren has apologised for his 2012 tweet wherein he stated that a visit to a gay club "left his eyes bleeding".
Summary:
Kieron Pollard, Sunil Narine, Darren Bravo and Andre Russell are among Windies' players who will miss 2019 World Cup Qualifiers in March to play in the Pakistan Super League.
Summary:
Google is releasing a new version of Chrome browser that would allow users to right-click and permanently mute websites that autoplay audio and video while scrolling.
Summary:
Opposition leaders including former Jammu and Kashmir CM Omar Abdullah, Patidar leader Hardik Patel and NCP chief Sharad Pawar organised the 'Save Constitution' march in Mumbai on the occasion of 69th Republic Day. Congress leader Sanjay Nirupam alleged that the BJP-led Centre was trying to change the Constitution.
Summary:
Scientists examining over 1,24,000 corals across the Asia-Pacific region have found plastic on one-third of the 159 reefs, with Indonesia having the most plastic and Australia the least.
Summary:
An 18-year-old Pune-based woman, suspected to be a suicide bomber, was detained by Jammu and Kashmir Police on Thursday night.
Summary:
Six Southeast Asian nations on Thursday formed the 'Our Eyes' initiative aimed at countering terrorism and extremism in the region.
Summary:
January 26, 1930, was set as the date for independence after the Congress, led by Jawaharlal Nehru, declared "Purna Swaraj", or Complete Independence, as its ultimate goal in Lahore in December 1929.
Summary:
Nehwal will face Thailand's Ratchanok Intanon in the semifinal.
Summary:
Swiss tennis player Roger Federer entered his 30th Grand Slam final, after 21-year-old South Korean Hyeon Chung retired due to injury in the Australian Open semi-final on Friday.
Summary:
The government has scrapped the rule that mandated people to get a Class 1 officer's recommendation for a passport under the tatkal or instant category.
Summary:
Netra is an Airborne Early Warning and Control (AEW&C) aircraft with a 200-km range, and was inducted by the IAF last year.
Summary:
New YorkâÂÂs Guggenheim Museum turned down a request from the White House to borrow a painting by painter Vincent Van Gogh, instead offering an 18-karat gold toilet "should the President and First Lady have any interest in installing it in the White House".
Summary:
Film and television actor Manoj Joshi was conferred with the Padma Shri on Thursday.
Summary:
Alongside Srikanth, 2017 World Weightlifting champion in the 48 kg category, Saikhom Mirabai Chanu, and Asian Games gold medalist former tennis player Somdev Devvarman were also conferred with the award.
Summary:
Canada-based researchers have developed an Augmented Reality system that projects patients' internal anatomy directly on the body, doing away with the need to make incisions.
Summary:
The tourists proved the duping to the police using their credit card slip as evidence.
Summary:
The first-ever Chief Guest to attend the Republic Day parade at Rajpath was the then Governor General of Pakistan, Malik Ghulam Muhammad, in 1955.
Summary:
President Ram Nath Kovind was seen getting teary-eyed after presenting the Ashok Chakra to the mother and wife of martyred IAF Garud Commando Corporal Jyoti Prakash Nirala during the Republic Day Parade on Friday.
Summary:
The 69th Republic Day parade on Thursday saw the first-ever tableau by All India Radio and Income Tax Department.
The parade also saw an all-women BSF biker squad performing 16 varieties of stunts and acrobatics.
Summary:
More than two chief guests were invited to the Republic Day Parade for the first time in 69 years, as ten Association of Southeast Asian Nations (ASEAN) leaders attended the Republic Day Parade on Friday.
Summary:
A group of women personnel deployed at high altitude borders also marched with the tableau.
Summary:
Nirala was part of an army operation in November 2017, in which he gunned down two Lashkar-e-Taiba terrorists despite being shot thrice.
Summary:
US President Donald Trump ordered firing Special Counsel Robert Mueller who was appointed to investigate Russian meddling in 2016 presidential election, reports said.
Summary:
US President Donald Trump on Friday apologised for retweeting anti-Muslim videos posted by a British far-right group's leader last year.
Summary:
Vanity Fair magazine has been trolled by Twitter users for photoshopping an extra hand on Oprah Winfrey in a photo featured as part of its cover story.
Summary:
Rajput group All India Brajmandal Kshatriya Rajput Mahasabha has announced a bounty of â¹51 lakh for anyone who would chop off filmmaker Sanjay Leela Bhansali's head over the row on 'Padmaavat'.
Summary:
The release date of Hrithik Roshan starrer 'Super 30' has been postponed to January 25, 2019.
Summary:
Bengaluru-based Axio Biosolutions, which makes a sponge-like bandage to instantly clot blood, has raised $7.4 million (â¹47 crore) in a Series B round led by Ratan Tata's RNT Capital.
Summary:
Launching such satellites "would bring astronomers on the street," said a New Zealand-based astronomer.
Summary:
The Centre on Thursday announced the 2018 Padma Shri recipients, including 99-year-old freedom fighter Sudhanshu Biswas who runs schools and orphanages for the poor.
Summary:
The US on Thursday slapped sanctions against four Taliban and two Haqqani Network terrorists based in Pakistan.
Summary:
French Parliament on Wednesday banned the lawmakers from wearing any religious symbols in Parliament under a new "neutral" dress code to underline France's commitment to the principle of secularism.
Summary:
Shiller said Bitcoin is a "really clever idea" but raised concerns over it going viral as a currency.
Summary:
Sunfeast Farmlite Active Protein Power is made from Sattu or roasted Bengal Gram.
Sattu is considered to be a superfood for its high protein content which helps in fighting fatigue.
Summary:
Actress Deepika Padukone has confirmed that she was paid more than her male co-stars Ranveer Singh and Shahid Kapoor for the film 'Padmaavat'.
Summary:
India beat Bangladesh by 131 runs to remain undefeated at the Under-19 Cricket World Cup and reach the semi-finals where they will face Pakistan.
Summary:
Martyred Indian Air Force Garud Commando Jyoti Prakash Nirala has been posthumously awarded the Ashoka Chakra on the 69th Republic Day, becoming the first-ever airman to receive the honour for a ground combat operation.
Summary:
BSF soldier Dara Singh on Friday marched in the Republic Day parade for a record 18th time.
Summary:
An all-woman bikers contingent of the Border Security Force showcased stunts at the Republic Day parade at Rajpath for the first time in history.
Summary:
The Indo Tibetan Border Police has shared a video showing the jawans raising the National Flag at a height of 18,000 feet in the Himalayas, where the temperature is around -30ðC.
Summary:
Terror outfit Jaish-e-Mohammed chief Masood Azhar's brother Talha Siaf declared India and PM Narendra Modi as the outfit's "number one" enemies during a rally in Pakistan.
Summary:
All India Radio (AIR) showcased its tableau for the first time in the Republic Day parade and featured Mahatma Gandhi's maiden and only broadcast through AIR.
Summary:
The Chittorgarh unit of Rajput organisation Karni Sena has claimed it will produce a film titled 'Leela Ki Leela' based on Sanjay Leela Bhansali's mother Leela Bhansali.
Summary:
The title of the sixth 'Mission: Impossible' film is 'Mission: Impossible- Fallout', announced the film's actor Tom Cruise.
Summary:
India cueist Pankaj Advani won India's third-highest civilian award, the Padma Bhushan, for his contribution to snooker and billiards.
Summary:
In 2017 Q4, Google Play reached its highest ever quarterly app downloads at 19 billion, taking a record lead of 145% over Apple's App Store, according to App Annie.
Summary:
Amazon India has claimed of registering double the orders than Indian e-commerce giant Flipkart during Republic Day sales.
Summary:
Currently Uber provides cabs, autorickshaws, outstation, and carpooling services in 29 Indian cities while bike services exist in nine.
Summary:
An international team of researchers has discovered the earliest modern human fossil ever found outside of Africa.
Summary:
US President Donald Trump on Thursday proposed a legislation in the Congress that would provide citizenship for roughly 7 lakh undocumented immigrants known as 'Dreamers' over a period of 10-12 years.
Summary:
Following reports that Mukesh Ambani-led Reliance Jio is planning to create its own cryptocurrency called JioCoin, a fake website 'reliance-jiocoin.com' started offering 'JIO COIN' at a launch price of â¹100 per coin.
Summary:
A video shows fans of actor Shah Rukh Khan worshipping and bathing the poster of his film 'Raees' with milk as the film completed one year of release on Thursday.
Summary:
Ranveer Singh has said his dream role is that of an army officer.
It will be an honour for me," Ranveer further said.
Summary:
Philippe Coutinho, who recently became the world's second-most expensive footballer, made his debut for Barcelona in their 2-0 win over Espanyol in the Copa del Rey on Thursday.
Summary:
The vehicle has two dental operation theatres, the minister said.
Summary:
At least 41 people have been killed and dozens more injured in a blaze at South Korea's Sejong hospital on Friday.
Summary:
Both the leaders pledged to make efforts to restart Israel-Palestine peace negotiations.
Summary:
UK Prime Minister Theresa May has said cryptocurrencies like Bitcoin must be regulated to prevent them from being used for criminal activity.
Summary:
Investment firm TPG Global led consortium has placed bid of about $1 billion for optical fibre assets of Tata Teleservices (TTSL), according to reports.
Summary:
The Government of India on Thursday announced three Padma Vibhushan, nine Padma Bhushan and 73 Padma Shri Awards for 85 personalities.
Summary:
Prime Minister Narendra Modi has announced that one person from each of the 10 ASEAN countries would be given Padma Shri, India's fourth highest civilian award.
Summary:
Dismissing speculations that she would be running against US President Donald Trump in the 2020 presidential elections, TV show host Oprah Winfrey said that she does not have the DNA for it.
Summary:
Bengaluru-based aerospace startup TeamIndus, one of the five finalists of Google's $30-million race to the Moon, has terminated the launch agreement with ISRO.
Summary:
Addressing the nation on the eve of Republic Day, President Ram Nath Kovind on Thursday called for a "civic-minded nation" where people can disagree with each other but without mocking others' dignity.
Summary:
Rajagopalan Vasudevan, dubbed 'plastic road-maker of India', was awarded the Padma Shri, India's fourth highest civilian honour.
Summary:
The Finance Ministry has said the GST revenue collections rose in December after falling for two straight months and stood at â¹86,703 crore.
Summary:
A minor rape victim on Wednesday committed suicide in Odisha's Khurda, the second such case over the last three days.
Summary:
About 3% of the apps with "Bitcoin exchange" and 2.6% using "Bitcoin wallet" in the title were blacklisted.
Summary:
Bombay High Court had quashed the CCI's order to probe Jio's complaint of cartelisation against the telcos in September 2017.
Summary:
Gold price increased by â¹1,000 in last 19 days to reach a 14-month high of â¹31,450 per ten grams in the national capital.
Summary:
International Monetary Fund (IMF) Chief Christine Lagarde has said cryptocurrency mining is extremely energy intensive and takes as much electricity as a G-20 economy.
Summary:
SpiceJet Chairman and MD Ajay Singh has said he is not interested in buying Air India as "SpiceJet is a small airline and Air India is a large problem".
Summary:
World Bank's Chief Economist Paul Romer has resigned from his post after he alleged that Chile's decline in ease of doing business rankings was due to methodological changes that could have been politically motivated.
Summary:
As per reports, Income-tax Appellate Tribunal (ITAT) has asked actress Priyanka Chopra to include a â¹40 lakh watch and a â¹27 lakh Toyota Prius car she received as gifts as her taxable income.
Summary:
The release date of 'Ek Ladki Ko Dekha To Aisa Laga', which will star Sonam Kapoor and her father Anil Kapoor together for the first time, has been announced as October 12.
Summary:
Summary:
The Hyderabad Police has booked filmmaker Ram Gopal Varma a day before the release of his film 'God, Sex, and Truth' over charges of obscenity.
Summary:
India had earlier lost 1-2 to Belgium, the Olympic silver medalists, in the final of the first leg of the tournament.
Summary:
CPI(M) leader Prakash Karat on Thursday accused the Narendra Modi-led central government of trying to change the Constitution and said any effort to "weaken" it must be resisted.
Summary:
Three people were killed and at least 10 others were severely injured after an overspeeding private bus collided with a lorry near Andhra Pradesh's Nellore district on Thursday.
Summary:
Union Transport Minister Nitin Gadkari has said it is his dream that all vehicles in the country run on environment-friendly fuels like Ethanol and CNG.
Summary:
Summary:
A woman has slammed a journalist who tweeted about "caste/class discrimination" using a photograph of her and her baby occupying seats in the Delhi Metro while their nanny sat on the floor.
Summary:
Reports quoting airport security sources said someone misheard Tharoor saying that he was waiting for his sister as waiting for his pistol.
Summary:
As part of US President Donald Trump's memorandum on 'Strengthening the Policy of the US Toward Cuba', the State Department has created a task force to promote "free flow of information" on the island nation.
Summary:
Italian far-right leader Matteo Salvini has pledged to kick out 1 lakh illegal migrants from the country annually if he is elected as the Prime Minister.
Summary:
The government had awarded 3 Padma Vibhushan, 9 Padma Bhushan and 73 Padma Shri Awards on Thursday.
Summary:
India's first Paralympic gold medalist Murlikant Petkar was on Thursday awarded the Padma Shri, India's fourth highest civilian honour.
Summary:
North Korea has called for the reunification of the peninsula that has been divided for nearly 70 years, the state media reported.
Summary:
The dogs had banners reading 'Ban Animal Testing' and 'Down With Cruel Cosmetics' around their necks.
Summary:
Over 3,000 unaided private schools in Maharashtra have said they won't admit students under the Right to Education Act until the state government clears their dues worth nearly â¹150 crore.
Summary:
The All India Council for Technical Education (AICTE) on Wednesday said that engineering students will study vedas, puranas, and yoga under the revised curriculum from the next academic session.
Summary:
Many employees blamed the CA who promised refunds, the department said.
Summary:
They allegedly raised funds with bogus claims that their 'My Big Coin' cryptocurrency was backed by gold and had MasterCard partnership.
Summary:
Delhi's Health Department has issued a show-cause notice to Karan Johar's Dharma Productions, distributors and the owners of a private TV network for allegedly promoting tobacco through a pan masala ad on a reality show.
Summary:
I need to dedicate more time to raising my children," said Elton.
Summary:
Taking a dig at Karni Sena after Padmaavat's release, a user wrote, "Karni Sena is the villain and marketing head of Padmaavat." A tweet read, "Loved the climax in #Padmaavat when everyone was worried about Karni Sena waiting for them outside the multiplex." Another user wrote, "Movie only glorifies Rajputs history!
Summary:
India ended the second day of the third Test in Johannesburg at 49/1 on Thursday, leading South Africa by 42 runs in the second innings.
Summary:
Talking about the India U-19 team ahead of the IPL auctions and World Cup quarter-final, coach Rahul Dravid revealed that he has told the team to keep the auction out of their minds.
Summary:
Jasprit Bumrah on Thursday took his maiden five-wicket haul in Tests, becoming the fourth Indian pacer to take a five-for in a Test in South Africa.
Summary:
Du Plessis, dismissed for 8(19), was first of Bumrah's five wickets.
Summary:
The BJP has claimed that the Congress government in Karnataka received a â¹250-crore bribe for awarding tenders to ten ineligible contractors for a government project.
Summary:
Days after Bengaluru's Bellandur lake caught fire, the National Green Tribunal asked the Karnataka government to submit timelines with regard to the treatment of the water body.
Summary:
A group of activists on Wednesday launched a website that allows people across the country to report medical negligence and malpractices.
Summary:
The woman's body was discovered after the locals informed the police about not getting any response from her despite repeated attempts.
Her body has been sent for postmortem, police added.
Summary:
An Indian-American doctor couple from the US state of Ohio has been indicted on charges of committing healthcare fraud for performing unnecessary medical tests on patients so that they could receive insurance claims.
Summary:
South Korean carmaker Hyundai has recalled nearly 88,000 old cars in the US after identifying an electrical short in the antilock brake system (ABS) that could cause engine-compartment fires.
Summary:
BJP leader Suraj Pal Amu, who had offered a â¹10-crore reward to anyone who would behead Padmaavat's director Sanjay Leela Bhansali and actress Deepika Padukone, has been put under "house arrest" in Gurugram.
Summary:
In 2015, Delhi Daredevils bought Yuvraj Singh for â¹16 crore, making him the most expensive buy of IPL ever.
Summary:
Global spending on robotics and drones is expected to grow 22.1% year-on-year to reach $103 billion in 2018, according to a report by International Data Corporation (IDC).
Summary:
Criticising the government over the violent protests against 'Padmaavat', AIMIM President and MP Asaduddin Owaisi on Wednesday said PM Narendra Modi's "56-inch chest" was only for the Muslims and not for the Rajputs.
Summary:
but their first point was China." Gadkari added that if Tesla is ready to come, India will offer it land.
Summary:
NITI Aayog CEO Amitabh Kant has said some states have improved in terms of ease of doing business after being ranked very low on an index, crediting this to the "name and shame" system.
Summary:
However, Amu, who was appearing as a Karni Sena supporter in the debate, refused to apologise and told her, "Behave yourself!"
Summary:
The Supreme Court on Thursday directed the states and union territories to implement the Rights of Persons with Disabilities Act, 2016, within three months.
Summary:
Condemning the attack on a school bus ferrying children by protesters demanding a ban on Padmaavat's release, Delhi Chief Minister Arvind Kejriwal said that people cannot afford to remain silent anymore.
Summary:
The court observed that the prisoner could be given leave under provisions for 'extraordinary reasons'.
Summary:
Earlier this month, Asif said that Pakistan can survive without US aid but it won't compromise on national integrity.
Summary:
A cafe named 'Toilet Garden' in Ahmedabad pays people â¹2 every time they use its loo.
Summary:
The US dollar on Wednesday fell to its lowest level in 3 years against several major global currencies.
Summary:
A man tried to self-immolate outside a theatre in Varanasi screening the film 'Padmaavat'.
The man has been detained by the police.
Summary:
Comedian Kunal Kamra has revealed in a Facebook post that he was asked by his landlady in Mumbai to move out of her house due to "political issues".
Summary:
Denying reports that she got engaged to rumoured boyfriend Ranveer Singh in January during their vacation in the Maldives, Deepika Padukone said, "I wasn't engaged." She said this on the Neha Dhupia-hosted talk show 'BFFs with Vogue'.
Summary:
The 77-year-old woman has claimed the mummies were the bodies of her siblings who died eight or nine years ago.
Summary:
Celebrity performers at the event include Abhishek Upmanyu, Rahul Subramanian, Suraj Jagan, Ritviz with Sunburn and FBB Campus Princess.
Summary:
While giving a jail sentence of up to 175 years to ex-USA gymnastics team doctor Larry Nassar for sexual assault of over 160 women, Judge Rosemarie Aquilina told him, "I've just signed your death warrant." Judge Aquilina said it was her "honour and privilege" to sentence him.
Summary:
Real Madrid, playing without forwards Cristiano Ronaldo and Gareth Bale, were knocked out of the Copa del Rey (King's Cup) in the quarterfinals on away goals after losing 1-2 to Leganes in the second leg.
Summary:
In the picture, the riot shield of the policeman can be seen being used as wickets.
Summary:
US-based engineers have developed a Harry Potter-like clock called 'Stata Clock' (formerly Eta Clock) which tracks user location via GPS.
Summary:
Speaking at the World Economic Forum, Alibaba Founder Jack Ma restated that part of the 'secret sauce' of the company's success is that they have "so many women colleagues." The 53-year-old said, "women sacrifice more - they love it...
Summary:
Israel-based researchers have deciphered one of the last sea scrolls that were found in the 1940s and 1950s near the Dead Sea shore.
Summary:
A fire broke out on January 22 in Gora Bazar market in West Bengal's Dum Dum, resulting in the death of two workers and reportedly destroying over 300 shops.
Summary:
Photo-sharing app Snapchat's Vice President of Product Tom Conrad will quit the company in March, Conrad has confirmed.
Summary:
A Facebook page called 'Jaaton Ka Adda' live streamed Sanjay Leela Bhansali's film 'Padmaavat' from a movie theatre screening the film.
Summary:
Summary:
The upcoming Hollywood film 'A Kid Like Jake', which stars Jim Parsons, Claire Danes, Octavia Spencer and Priyanka Chopra, has premiered at the 2018 Sundance Film Festival.
Summary:
Rajput group Karni Sena activists in Uttar Pradesh's capital Lucknow on Thursday presented roses to people and requested them to not watch the movie 'Padmaavat'.
Summary:
Adding that women strike a perfect balance in EQ, IQ and LQ, he said, "If you want your company to be successful...
Summary:
American aerospace startup Rocket Lab, earlier this week, launched New Zealand's first satellite 'Humanity Star', a sphere made with 65 reflective panels.
Summary:
UK-based researchers have developed a mathematical model that explains how knowledge grows in modern science.
Summary:
MIT researchers have devised a needle as thin as a human hair that can deliver tiny quantities of medicine to brain regions as small as 1 cubic millimetre.
Summary:
The Aam Aadmi Party has alleged that Delhi CM Arvind Kejriwal's car was not allowed inside the official residence of Lieutenant-Governor Anil Baijal on Wednesday.
Summary:
Former US Vice President Joe Biden on Tuesday boasted about forcing the Ukrainian government to fire a prosecutor general in six hours in 2016.
Summary:
The London-based Blighty India Cafe, which offers 'The Gandhi' vegan breakfast on its menu, is facing protests by activists claiming it glorifies the British Empire.
Summary:
A Dutchman named Harmen Leijnse, who has studied Sanskrit for two years, on Wednesday embarked on a 12-day tour to understand the hygiene needs and practices of people living in northern India.
Summary:
An Indian-American surgeon allegedly tried to strangle a nurse with an elastic cord after she administered an injection into his patient at the "wrong time," said the police.
Summary:
Actor Rishi Kapoor, in a now deleted tweet, jokingly wrote that Ranveer Singh has announced if Rajput organisation Karni Sena stops the release of 'Padmaavat', he "will do Johar".
Summary:
Several trolls have shared what they claim to be phone numbers of filmmakers Sanjay Leela Bhansali and Anurag Kashyap on Facebook.
Summary:
Condemning the attack on a school bus in Gurugram over 'Padmaavat', Farhan Akhtar tweeted, "Attacking a school bus is not an agitation.
Summary:
Former cricketer Jonty Rhodes took to Twitter to share a picture of his kids India and Nathan travelling to South Africa with ex-India captain MS Dhoni.
Summary:
Afghanistan will face Australia in the semi-final while Pakistan will face winner of the quarter-final match between India and Bangladesh.
Summary:
The platform holds two 15-minute live-streamed quiz sessions where the participant has to answer 10 questions correctly.
Summary:
Google's India-born Chief Executive Officer Sundar Pichai has said that there is a "moral imperative" to involve more women in the development of technology products.
Summary:
A passenger has been arrested at the Delhi airport for allegedly trying to smuggle gold and steroids worth over â¹69 lakh into the country, according to an official statement issued today.
Summary:
However, the island's previous owners have secured planning permissions for new agricultural buildings and a cottage.
Summary:
Bengaluru-based eyewear startup Glassic has raised an undisclosed amount of funding from a clutch of investors including The Chennai Angels, Lead Angels, and LetsVenture.
Summary:
Police have arrested one person who confessed to stealing natural oil from the pipeline.
Summary:
An IIT Kanpur student has accused an Indian Air Force officer of raping her on multiple occasions after promising to marry her.
Summary:
The Delhi High Court has sought the legal opinion of doctors' boards on digging out a woman's corpse to investigate the cause of her death, around four months after its burial.
Summary:
Microsoft will use Deep Neural Networks to enable high-quality Indian language translations, the company announced on Thursday.
Summary:
Sanjay Leela Bhansali's film 'Padmaavat' has been cleared with a U certificate and no cuts by Pakistan's Censor Board, as compared to the U/A certification it had received from India's Censor Board.
Summary:
Actress Deepika Padukone has said the Jauhar scene in the film 'Padmaavat' is by far her most special and challenging moment as an actor.
Summary:
Brown also claimed his discovery as the world's smallest fly having 0.395 mm of body length.
Summary:
Eighteen people were arrested for attacking a school bus full of students in Gurugram on Wednesday over the row on the film 'Padmaavat'.
Summary:
Google-funded $30 million-Lunar XPrize race to the Moon, which began 10 years ago, is set to end as no team will be able to make a launch attempt by the March 31 deadline.
Summary:
It has challenged a previous court order upholding DIAL's decision to partially shift operations of IndiGo, GoAir, Spicejet from T1 to T2.
Summary:
Uber's Chief Executive Officer Dara Khosrowshahi is scheduled to visit India next month, a company spokesperson has confirmed.
Summary:
The technique was however termed unreliable for diabetic patients by other researchers as tears don't accurately reflect body glucose levels.
Summary:
The team used three different types of skin cells which control skin complexion, structure, and wound healing.
Summary:
It'll be mandatory for students to intern for 2-3 months, AICTE Chairman said.
Summary:
Jammu and Kashmir Police has issued an alert that a Pune-based 18-year-old girl, may attempt a suicide attack on Republic Day in the state.
Summary:
Around 15,000 students at institutes run by Nashik Shikshan Prasarak Mandal in Maharashtra have created a record by achieving the target of completing 1,45,95,786 Surya Namaskars within a year.
Summary:
Mother Teresa remains the only person till date to be awarded India's highest civilian honour Bharat Ratna as a naturalised citizen.
Summary:
IndiGo's parent InterGlobe Aviation on Tuesday reported a 56.4% year-on-year increase in its net profit to â¹762.03 crore for the December quarter, compared to â¹487.25 crore a year ago.
Summary:
Karni Sena has threatened to blacken the face of Maharashtra Navnirman Sena chief Raj Thackeray after a party member said nobody will be allowed to obstruct Padmaavat's release in Mumbai.
Summary:
YouTuber Logan Paul, who was slammed for posting a video allegedly showing a suicide victim's body, has now posted a video on suicide prevention.
Summary:
The Windows Diagnostic Data Viewer allows users to verify that the company is doing what its documentation says.
Summary:
They have reportedly held discussions with the Automotive Component Manufacturers Association and the Society of Manufacturers of Electric Vehicles.
Summary:
Noting that Google's current blended global tax rate is 20%, Pichai said the question was where Google should pay.
Summary:
There was a minor scare at Delhi's IGI Airport on Wednesday after an object resembling a hand grenade was found in the luggage of an Ahmedabad-bound GoAir passenger during security check.
Summary:
Two exoplanets in the TRAPPIST-1 system, discovered with seven Earth-like planets last year, have been identified as most likely to be habitable by a new US-based study.
Summary:
A local court in Chandigarh on Wednesday sentenced a man to 8 years in jail for robbing an auto rickshaw driver of â¹100.
Summary:
The accused also shot the bus driver in the leg when he tried to stop them from abuducting the child.
Summary:
Bai Jerbai Wadia Hospital's doctors in Mumbai removed an LED bulb from the lung of a seven-month-old girl who had swallowed it while playing with a toy mobile phone.
Summary:
While hearing a case involving two boys who were swapped at birth 3 years ago, an Assam court has said the boys can decide to return to their biological parents when they turn 18.
Summary:
Maharashtra has banned the sale of tobacco at shops selling fast-moving consumer goods (FMCG).
Summary:
The biggest online fashion shopping store Myntra is back again with 'Right to Fashion Sale' to celebrate India's Republic Day. They are all set to offer 50% to 80% discount on fashion products.
Summary:
Chinese researchers have successfully cloned two genetically identical macaque monkeys using somatic cell nuclear transfer, used to clone Dolly the sheep in 1996.
Summary:
Simon Barnes, the actor who played Tinky Winky in the children's TV series Teletubbies, passed away last week at the age of 52 in Liverpool, England.
Summary:
Condemning the Gurugram school bus attack by a mob protesting against 'Padmaavat', Congress President Rahul Gandhi blamed BJP for using "hatred and violence", adding that it's "setting our entire country on fire".
Summary:
However, several activists gathered outside the police station demanding the police to not register a case as the car owner wasn't pressing any charges.
Summary:
At the time of the album's launch, one Bitcoin was priced at around $662.
Summary:
Chronicle will help teams search, retrieve information, and run analysis "in minutes", rather than the days it currently takes, Alphabet claimed.
Summary:
Referring to PM Narendra Modi's speech at the World Economic Forum, Communist Party of India (Marxist) has said he should stop embarrassing the country.
Summary:
The message concealed in the DNA contained instructions on how to claim the Bitcoin.
Summary:
The Confederation of Pro-Kannada Organisations has called for a state-wide bandh on Thursday in Karnataka demanding Centre's intervention into the Mahadayi water-sharing issue with Goa. Private schools and government offices are expected to remain shut in the state, while services like buses, metro, and cabs are likely to run.
Summary:
Notably, SBI collected â¹1,771 crore during April-November 2017 as fine from customers who didn't maintain monthly average balance in their accounts.
Summary:
Activist Akkai Padmashali has become the first transgender in Karnataka to register for marriage.
Akkai had married her partner Vasu, a transgender rights activist, in January 2017 after being in a relationship for eight years.
Summary:
The program was introduced by 27-year-old Stockton Mayor Michael Tubbs, who is hoping it will eliminate the city's economic burden.
Summary:
Named the Cullinan, the diamond was the largest ever found.
Summary:
Amid calls from US President Donald Trump's administration to boost the country's nuclear arsenal, outgoing chief of the National Nuclear Security Administration (NNSA), Frank Klotz, has warned the agency is working at full capacity.
Summary:
The owner of Grumpy Cat, who became famous online due to a permanent scowl on its face, has been awarded $710,000 (â¹4.5 crore) for copyright and trademark infringement by a US court.
Summary:
Actress Deepika Padukone was named the Most Stylish Female at the HT India's Most Stylish Awards 2018.
Shahid Kapoor got the Most Stylish Male award.
Summary:
The release date of Tiger Shroff starrer 'Student of The Year 2' has been announced as November 23.
Summary:
An administrative official in Rajasthan's Udaipur has directed district education officers to make sure there is no performance on Padmaavat's song 'Ghoomar' at schools and colleges' Republic Day programmes.
Summary:
YouTube has announced a $5 million investment in its 'Creators for Change' program, to promote videos which "counter hate and promote tolerance." The program includes videos focussing on racism, the plight of refugees, and breaking stereotypes surrounding Muslim women.
Summary:
Founded in 2015, Katerra helps design and build construction projects faster and at lower costs.
Summary:
Gurugram-based parody video startup Spoofin has raised an undisclosed amount of funding before launching its product in the market.
Summary:
With the help of newly deployed MAVEN mission, the biggest modern-day Martian dust storm, expected to begin this summer and last till early 2019, could improve understanding of its dryness, said NASA.
Summary:
A 21-year-old taxi driver from Tamil Nadu's Chennai on Wednesday set fire to himself after he was allegedly physically assaulted by traffic police officials for not wearing a seat belt.
Summary:
"We are a separate religion from Hinduism, which is why we have been demanding a separate marriage act,â an activist said.
Summary:
Those sanctioned include 2 Chinese firms involved in exporting metals and goods used in North Korea's weapons industry.
Summary:
The British government has announced a dedicated national security unit to combat fake news and disinformation.
Summary:
Deepika Padukone, Ranveer Singh and Shahid Kapoor starrer 'Padmaavat' is "a spectacular looking period film that matches international standards", wrote Bollywood Hungama.
India Today wrote that the film is "mediocrity covered with jewels".
Summary:
Nassar had already been sentenced to 60 years on child pornography charges in December 2017.
Summary:
Scientists used cell and egg from two monkeys while the embryo was placed in another.
Summary:
The Centre on Wednesday announced it would infuse â¹88,139 crore as capital into 20 state-owned banks during the current fiscal.
Summary:
January 25 is recognised as National Voters' Day throughout the country every year.
Summary:
The world's largest diamond ever found, the Cullinan Diamond, was discovered in a mine in South Africa on January 25, 1905.
Summary:
This comes after protesters set fire to vehicles in Haryana and Gujarat during protests against Padmaavat's release.
Summary:
Talking about artificial intelligence (AI) at a recent event, Alibaba's Founder Jack Ma said, "The AI, Big Data is a threat to human beings." He also said that AI will kill a lot of jobs as they will be done by machines in the future.
Summary:
Commenting on the reported alliance between the BJP and the Indigenous People's Front of Tripura (IPFT), Tripura CM Manik Sarkar has said that the BJP is using militants to gain power in the state.
Summary:
Stating that the 5-year jail term awarded to RJD chief Lalu Prasad Yadav was a "judicial matter", Bihar CM Nitish Kumar on Wednesday said he had no role in the conviction.
Summary:
After Prime Minister Narendra Modi's return from Switzerland, Congress President Rahul Gandhi on Wednesday tweeted, "Youth in India were wondering if you got any (black money) back with you in your plane".
Summary:
Tesla CEO Elon Musk would receive a $55.8 billion bonus payout if the electric car manufacturer becomes a $650 billion company in 10 years, the company filings revealed.
Summary:
Prime Minister Narendra Modi on Wednesday honoured 7 girls and 11 boys with the National Bravery Awards.
Summary:
TCS also became the second Indian company to cross a market value of â¹6 trillion.
Summary:
UK's competition regulator has provisionally blocked the $16.3-billion takeover of UK media conglomerate Sky by media tycoon Rupert Murdoch's 21st Century Fox. It said the deal would give Murdoch's family, which owns Fox, "too much control" over UK's news providers.
Summary:
Kanpur-based group Kshatriya Mahasabha has announced a cash reward for anyone who would chop off actress Deepika Padukone's nose over the row on 'Padmaavat'.
Summary:
India's Rohan Bopanna has entered the Australian Open mixed doubles semi-finals for the first time in his career.
Summary:
In 2017, Panda was removed as BJD's spokesperson after writing an article criticising the party's leadership.
Summary:
Announcing the test, Musk tweeted that the rocket will be "Launching in a week or so."n
Summary:
According to an inquiry, the fire started because of flying charcoal embers from a hookah being illegally served at Mojo's Bistro.
Summary:
The Supreme Court has dismissed a plea to constitute a Special Investigation Team to probe an attack on former JNU Students Union President Kanhaiya Kumar.
Summary:
The roads declared pothole-free by Uttar Pradesh's Public Works Department (PWD) will display banners carrying photographs of PM Narendra Modi and CM Yogi Adityanath.
Summary:
Rashtriya Swayamsevak Sangh chief Mohan Bhagwat on Wednesday said followers of Islam in India were not opposed to cow-protection and cow-rearing.
Summary:
The Supreme Court on Tuesday gave the Centre three months to decide if the seven convicts imprisoned for life over former PM Rajiv Gandhi's assassination should be released.
Summary:
The driver of the bus carrying pilgrims during the Amarnath Yatra attack in July 2017 has been conferred the Uttam Jeevan Raksha Padak for showing courage in saving life under dangerous circumstances.
Summary:
Currently, the city has only one crematorium for animals, which is run by an NGO.
Summary:
Tata trusts have requested the National Company Law Tribunal to consider allowing Tata Sons to buy out Mistry firms' stake in the company.
Summary:
More than 100 Karni Sena members have been detained across India, reports said.
Summary:
Before 'Padmaavat', Sanjay Leela Bhansali's film 'Bajirao Mastani' met with opposition from workers of the Bharatiya Janata Party (BJP) over the portrayal of Peshwa Bajirao I.
Summary:
Earlier in the day, protestors set fire to a bus on Gurugram's Sohna Road.
Summary:
Indian batsman Cheteshwar Pujara got to his half-century in 173 balls after taking over 50 balls to get off the mark in the third Test against South Africa.
Summary:
Hursey is believed to be the youngest athlete to represent Wales at any sport at senior level, having played in the country's table tennis team last year at the age of 10.
Summary:
Apart from Melbourne Renegades, Pollard has represented 11 other domestic teams including IPL franchise Mumbai Indians.
Summary:
Questioning if the trial court had powers to pass such an order, the high court said such restrictions are against the law.
Summary:
Summary:
The Punjab and Haryana High Court has dismissed a plea submitted by the followers of Dera chief Ram Rahim seeking the telecast of his sermons from jail.
Summary:
Mumbai Police has shared a series of tweets playing on the names of social media apps like Instagram as 'Risktagram', WhatsApp as 'WreckApp', and Twitter as 'Danger'.
Summary:
China has been facing pressure from the US administration over its trade practices.
Summary:
He further said that India must have a structure where Aadhaar can and cannot be used.
Summary:
Denouncing fake news as "satanic", Pope Francis said that false stories spread quickly and the damage caused by them is difficult to contain.
Summary:
Selfe, who began her modelling career in the 1950s, is the only octogenarian among a cast of younger models featuring in the beauty campaign.
Summary:
A man was arrested for biting a police dog in US' Boscawen, said the police on Tuesday.
The police said, "Both of them resisted arrest and one very strongly resisted arrest.
Summary:
Veteran actress Jaya Bachchan hosted a dinner for the female nominees and winners of Filmfare Awards 2018.
Summary:
Indian middle-order batsman Ajinkya Rahane got caught behind on 3 during the third South Africa Test on Wednesday but survived as replays showed the delivery was a no-ball.
Summary:
With his 106-ball 54, Kohli became the first Asian captain to make two 50+ scores in a Test series in South Africa.
Summary:
Defending Virat Kohli over criticism of his captaincy, former India captain Sourav Ganguly said that it is important to be patient as the ongoing South Africa tour is his "first big overseas tour".
Summary:
Jharkhand were bowled out for 78 as Karnataka sealed a 123-run win.
Summary:
The Delhi High Court on Wednesday ordered the Election Commission to not issue any notification for bypolls for the seats vacated by the 20 disqualified AAP MLAs till the next hearing in the case on January 29.
Summary:
Founded in 2015, Milkbasket is a subscription based service and delivers goods such as milk and bread to its customers.
Summary:
A video showing a man being hit by an incoming train while attempting to take a selfie in Hyderabad's Lingampally on Wednesday has surfaced online.
Summary:
The Central Railway has identified 166 such structures including temples, churches and mosques in Byculla, Kalyan and Parel among others.
Summary:
The Indian men's hockey team defeated hosts New Zealand 3-2 in their opening match in the second leg of Four Nations Invitational Tournament at Hamilton on Wednesday.
Summary:
Entry to Rajasthan's Chittorgarh Fort has been closed reportedly for the second time since 1947 after 1,900 female Karni Sena members opposing the release of 'Padmaavat' threatened to commit 'jauhar' (self-immolation) in the fort.
Summary:
"This meant that no rival could effectively challenge Qualcomm in this market, no matter how good their products were," the regulator said.
Summary:
'Padmaavat' director Sanjay Leela Bhansali has agreed to screen the movie in the Rajasthan High Court to invalidate an FIR filed against it.
Summary:
The first ever canned beer was sold on January 24, 1935, in the US.
Summary:
Cricket South Africa on Wednesday mistakenly used Indian off-spinner Ravichandran Ashwin's picture while congratulating Cheteshwar Pujara for scoring 50 in the first innings of the third Test.
Summary:
After RJD chief Lalu Prasad Yadav was given a 5-year jail term in the third fodder scam case, his son Tejashwi said the BJP, the RSS, and Bihar CM Nitish Kumar had conspired against Lalu.
Summary:
A US-based auction house has put on sale a letter by Albert Einstein defending his friend Friedrich Adler, who assassinated the Austrian Minister-President during World War I.
Summary:
US-based neuroscientists have found that keeping the head still and shifting eyes sparks vibrations in the eardrums, even in the absence of any sounds.
Summary:
Four security personnel were killed and at least seven others were injured during an ongoing Naxal encounter in a secluded area in Chhattisgarh's Narayanpur district on Wednesday.
Summary:
Prime Minister Narendra Modi on Tuesday said that India's GDP has now increased by over 6 times compared to the over $400 billion in 1997.
Summary:
Afghanistan's National Directorate of Security has said that explosives used by Taliban militants in the attack on the Intercontinental Hotel in Kabul last week came from Pakistan.
Summary:
He said the company's "most important project" in the South Asian region is India's first bullet train line.
Summary:
Notably, Disney had co-financed and distributed Pixar's films for 12 years, splitting the profits.
Summary:
Idea's revenue declined by 25% to â¹6,509.6 crore, mainly due to telecom regulator TRAI's decision to reduce interconnection charges by more than half.
Summary:
Hollywood actor Tom Hanks has said it'd be a treat to play a villain in a James Bond film.
Summary:
IIT Bombay is hosting its annual Entrepreneurship Summit on 27th & 28th January 2018 with the theme 'A Zenith of Innovation.' The event will host speakers like Arundhati Bhattacharya, Bhavish Aggarwal, Shiv Khera among others.
Summary:
World number 58 Chung, who ousted six-time champion Novak Djokovic, beat USA's 97th-ranked Tennys Sandgren earlier on Wednesday.
Summary:
The 21-year-old defeated US' Tennys Sandgren in straight sets to enter Grand Slam semi-finals for the first time in his career.
"First Grand Slam semifinal, first tweet.
Summary:
Iqbal has hit 2,549 runs in 74 ODIs at Dhaka's Sher-e-Bangla National Stadium, while Jayasuriya recorded 2,514 runs at Colombo's Premadasa Stadium.
Summary:
Later, Siraj took to Instagram and thanked Telangana Police for recovering his accounts.
Summary:
Former cricketer Mohammad Yousuf has said Pakistan captain Sarfraz Ahmed should seek MS Dhoni's advice to get back his fitness and form.
Summary:
Indian female basketball player Poonam Chaturvedi, who is suffering from brain tumour, scored 44 points to help Chhattisgarh beat Karnataka 79-78 in the semi-final of Senior National Basketball Championship.
Summary:
A couple spent six months converting a bus into a mobile home so that they could travel across the US with their young son and three dogs.
Summary:
French police have imposed a fine of â¬750 (â¹59,000) on a Russian man who was driving while eating a plate of foie gras and watching a movie on his laptop, which was perched on the car's dashboard.
Summary:
Three youths who have been protesting against a practice of conducting virginity tests on brides, were beaten up by a mob of 40 people at a wedding they were attending in Pune's Pimpri on Sunday.
Summary:
Addressing the Jammu and Kashmir Legislative Council on Wednesday, CM Mehbooba Mufti said that she hopes that Pakistan follows PM Narendra Modi's advice of fighting poverty together rather than fighting with each other.
Summary:
Turkish Deputy Prime Minister Bekir BozdaÃÂ has said that there is a "small possibility" that Turkey and the US will come face-to-face in Syria's Manbij.
Summary:
The Maharashtra government has announced that it will provide protection to 'Padmaavat' amid protests by Rajput organisation Karni Sena demanding a ban on the film's release.
Summary:
Kohli has used 28 different players in these 35 matches, with Ravichandran Ashwin featuring in 33 Tests, the most by any player under Kohli's captaincy.
Summary:
Indian batsman Cheteshwar Pujara took 54 balls and nearly 80 minutes to get off the mark in the first innings of the third Test against South Africa on Wednesday.
Summary:
The statement came after Flipkart lost its appeal against the Income Tax department over reclassification of marketing expenditure and discounts.
Summary:
The nations have been ranked across categories covering environmental health and ecosystem vitality.
Summary:
The report further said the number of jobless in India will increase to 18.9 million in 2019, against 18.3 million in 2017.
Summary:
Currently, around 395 stations and 50 trains are equipped with CCTV cameras.
Summary:
The Madhya Pradesh Education Department has decided to replace marks with smileys in the report cards of Class 1 and 2 government school students.
Summary:
The attackers detonated a car bomb outside the office before using rocket-propelled grenades to blast their way inside.
Summary:
Reacting to the picture, a user tweeted, "Virat defending our team from African bowlers".
Summary:
UBS Chairman Axel Weber has said that Bitcoin is "not an investment we would advise".
Summary:
The government reportedly plans to raise foreign investment limit in private sector banks to 100% from 74%, and to 49% from 20% in state-run banks.
Summary:
Filmmaker Ram Gopal Varma, while sharing a Google Trends report, tweeted, "[Porn star] Mia Malkova is more popular than Prime Minister Narendra Modi and India's richest man Mukesh Ambani." Mia will be seen in Varma's upcoming project 'God, Sex and Truth'.
Summary:
The film, which will feature Diljit and Kriti together for the first time, will be directed by Rohit Jugraj.
Summary:
Reacting to Cheteshwar Pujara scoring his first run after 53 balls against South Africa on Wednesday, a user wrote, "Pujara's like a person who walks into a bank without an Aadhaar number.
Pujara playing with 100+ strike rate#IndvSA," and, "Quality 50 by Pujara.
Summary:
A UK-based price comparison website is looking for a retired person to act as its "senior gap year adviser" and visit destinations around the world.
Summary:
He added that 25% rape cases registered with the police last year were fake.
Summary:
Patiala House Court in Delhi has become the first trial court to have a permanent National Flag across the country, the New Delhi Bar Association has said.
Summary:
Summary:
Speaking at the Uttar Pradesh Diwas programme on Wednesday, Vice President Venkaiah Naidu said that "Ramrajya is governance minus fear, corruption and discrimination".
Summary:
The Maharashtra Congress will hold a three-day agitation from January 29 against the rise in petrol and diesel prices.
Summary:
Veteran BJP leader LK Advani has said that former Prime Minister Lal Bahadur Shastri consulted with former RSS chief Guru Golwalkar over national issues.
Summary:
Former Jammu and Kashmir CM Omar Abdullah has shared a video of a man performing a rail stunt and slammed him for "this sort of adventure seeking".
Summary:
Summary:
The members of China's ruling Communist Party in the Muslim-majority region of Linxia Hui Autonomous Prefecture, often dubbed as "China's Mecca", have signed an atheism pledge in the "pursuit of Marxist purity".
Summary:
He said Amazon had refused a refund twice as his wife had unintentionally signed for the product.
Summary:
The court has also imposed a fine of â¹5 lakh each on the duo.
Summary:
The French Parliament's lower house has voted in favour of an article in a new law to give the country's citizens the 'right to make mistakes' in dealings with the government without being automatically punished.
Summary:
Members of Rajput organisation Karni Sena blocked the Delhi-Jaipur highway while protesting against the release of the film 'Padmaavat'.
Summary:
Adding that Indian system doesn't care about fans or players, he said the tournament wasn't a success for the fans.
Summary:
Researchers at Israel-based security firm Checkmarx have discovered a bug in the dating app Tinder which allows hackers to access a user's photos and matches.
Summary:
E-commerce giant Amazon has pulled a number of products that featured the slogan "slavery gets sh*t done" after facing criticism for seemingly endorsing slavery.
Summary:
The helicopter service is part of the hotel's nearly â¹135 crore expansion, which also includes the opening of 100 new guest rooms.
Summary:
ISRO has released images captured by India's 100th satellite that was placed in orbit with 30 others by PSLV-C40 rocket on January 12.
Summary:
According to the International Renewable Energy Agency, electricity from renewable sources will be cheaper than power from most fossil fuels by 2020.
Summary:
Karni Sena Chittorgarh unit president Govind Singh Khangarot has been arrested after it was declared that over 1,900 women of the community were "ready to commit jauhar (self-immolation)" over the release of 'Padmaavat'.
Summary:
Saeed had sought protection from the court ahead of a visit by the United Nations Security Council's sanctions monitoring team.
Summary:
A US drone on Wednesday fired two missiles at a home near the Pakistan-Afghan border and killed two militants from the Haqqani Network, Pakistani police officials have said.
Summary:
Adnan Khan, along with three friends, allegedly robbed the outlet of â¹3.45 lakh in December.
Summary:
Filmmaker Karan Johar has said that politicians putting films over economic and social issues is ridiculous.
Summary:
In light of the ongoing protests against the movie 'Padmaavat', Ambience Mall in Haryana's Gurugram district has stated that the mall's security has been beefed up and people can come without any fear.
Summary:
Australian YouTube channel 'How Ridiculous' has broken its own previously set world record for the greatest height from which a basketball shot is made.
Summary:
Instagram is internally testing a feature that will notify a user if someone takes a screenshot or screen recording of their Story, according to reports.
Summary:
Microblogging site Twitter has introduced an 'India Gate' emoji ahead of the nation's Republic Day on January 26, and it will reportedly remain live on the platform until January 29.
Summary:
Commenting on the move, Lee said it is clear that "Uber is taking their cultural transformation seriously.'
Summary:
US-based venture capital firm Sequoia Capital is reportedly planning to raise up to $1 billion for its sixth India-focused fund, which is estimated to be the largest corpus raised for the domestic market.
Summary:
Completing the year's first spacewalk, NASA astronauts Mark Vande Hei and Scott Tingle spent 7 hours and 24 minutes outside the International Space Station to replace a hand on its robotic arm, used to grapple visiting vehicles.
Summary:
The National Investigation Agency on Tuesday filed a chargesheet against 37-year-old Birju Salla, who allegedly left a note in the washroom of a Jet Airways flight claiming it had been hijacked.
Summary:
A Singapore Airlines crew member has been arrested at the Delhi airport for allegedly smuggling gold worth over â¹31 lakh.
Summary:
Slamming Odisha's BJD government over the suicide of a girl who had claimed she was raped by "four men in uniform", Congress and BJP called for separate demonstrations and a state-wide shutdown on Thursday.
Summary:
Indonesian troops on Wednesday drank the blood of snakes, including King Cobra, rolled in glass and broke bricks with their heads to display the country's military skills during US Defence Secretary James Mattis' visit.
Summary:
Uganda's President Yoweri Museveni has said he loves US President Donald Trump as he tells Africans frankly.
"Africans need to solve their problems.
Summary:
Every family photo has a story, and Axis Bank's new video captures the special one behind little Appu's family photo.
Summary:
RJD chief Lalu Prasad Yadav on Wednesday was found guilty in the third of the six fodder scam cases he has been accused in by a Special CBI court in Ranchi.
Summary:
Dr Bhabha tragically passed away in an airplane crash in Switzerland on January 24, 1966.
Summary:
According to reports, the battery in question was that of an iPhone and exploded right after the man bit it.
Summary:
Summary:
Orijit Sen, who co-founded People Tree, said the design was originally created by him 18 years ago.
Summary:
Hollywood actress Meryl Streep received her 21st Oscar nomination for 'The Post', breaking her own record as the most nominated actress in Oscar history.
Summary:
Apple has launched its voice-controlled wireless HomePod smart speaker, priced at $349 (about â¹22,200), which would rival Amazon's Alexa and Google Assistant.
Summary:
Social media platform Facebook was reported to be down for almost an hour by many users in India.
Summary:
Summary:
Uber on Tuesday said the company may allow users to request drivers with higher ratings to ensure safety.
Uber CEO Dara Khosrowshahi said the company will do much more with driver ratings and allow users to opt in to quality service.
Summary:
The International Court of Justice (ICJ) has fixed April 17 and July 17 as time limits for India and Pakistan respectively for the filing of written pleadings by them in the Kulbhushan Jadhav case.
Summary:
The US State Department has denied the citizenship to the 16-month-old as he has the DNA of his Israeli father.
Summary:
As many as 16 people have been arrested in Gujarat's Ahmedabad for vandalising a mall in the city to protest against the release of the film 'Padmaavat'.
Summary:
Apple has rolled out an iOS update to fix a bug which allowed users to freeze iPhones with a text message.
Summary:
His family and a fellow passenger have accused crew members of negligence, alleging that he was not given immediate medical assistance and oxygen supply.
Summary:
The two pilots were involved in a mid-air brawl wherein the male co-pilot allegedly slapped the fellow woman commander during a Jet Airways flight.
Summary:
Gurugram-based home rental startup ZiffyHomes has raised â¹2 crore in funding from a clutch of angel investors led by Bikky Khosla and Anirudh Agarwal.
Summary:
Uber CEO Dara Khosrowshahi has said the startup's core ride-hailing business will be "profitable before 2022".
Summary:
The rider Oscar Nilsson claims the car, involved in GM's self-driving testing program, swerved into his lane, knocking him off his motorcycle and injuring him.
Summary:
MIT engineers have designed an artificial neural network for "brain-on-a-chip" system to control the strength of an electric current flowing across it, similar to how electrical signals flow between neurons.
Summary:
Meanwhile, around 13 trafficked people have been traced by British authorities.
Summary:
Followers of Dera chief Ram Rahim, who is serving a 20-year jail term for raping two followers, have moved the Punjab and Haryana High Court to allow them to hear his sermons from jail.
Summary:
A woman in Maharashtra's Pune allegedly jumped from the fourth floor of a building in a bid to stop the anti-encroachment team from demolishing unauthorised construction at her residence on Tuesday.
Summary:
Karni Sena has denied any type of involvement in vandalising a mall and shops in Gujarat's Ahmedabad to protest against the release of the film 'Padmaavat'.
Summary:
A quiz booklet by the BJP's Madhya Pradesh youth wing titled 'Mere Deendayal' claimed that India suffered through the partition due to Jawaharlal Nehru's "greed for power".
Summary:
Karnataka BJP MLA Sunil Kumar reportedly said that the upcoming polls for the Bantwal constituency in the Karnataka Assembly elections was a contest "between Allah and Rama".
Summary:
After a special screening of 'Padmaavat' for Karni Sena, mediator Suresh Chavhanke has said, "Alauddin Khilji has been portrayed in the manner he should have been portrayed" and called it a victory for Rajputs.
Summary:
Rachel Morrison has become the first female cinematographer to receive an Oscar nomination in the 89-year-old history of the Awards.
Summary:
Stating that the judiciary crisis is not yet resolved, Communist Party of India (Marxist) leader Sitaram Yechury on Tuesday said they are in discussion with other Opposition parties to move an impeachment motion against Chief Justice Dipak Misra.
Summary:
Team India has played four Test matches at The Wanderers Stadium in Johannesburg, winning one and drawing the other three.
Summary:
After Shiv Sena announced it will be contesting the 2019 Lok Sabha elections alone, Maharashtra CM Devendra Fadnavis on Tuesday said the BJP-led coalition government with Sena will complete its full term.
Summary:
Scientists have reconstructed the face of a teenage girl named Dawn, whose remains dating to 7000 BC were discovered in a Greek cave in 1993.
Summary:
The government of Kuwait on Tuesday announced amnesty for Indian workers who were forced to illegally extend their stay in the Arab country due to non-payment of their salaries.
Summary:
26/11 Mumbai terror attack mastermind Hafiz Saeed has claimed that Pakistan's government wants to arrest him at the behest of India and the US.
Summary:
The Madhya Pradesh High Court on Monday directed the Centre and state government to refrain from using the word 'Dalit' in official communication as it has no mention in the Constitution.
Summary:
The US said Dhar was a leading member of the now-defunct terrorist organisation al-Muhajiroun.
Summary:
Highlighting the importance of technology in present times, he said that data is real wealth.
Summary:
ISIS militants from the community threatened China for the first time last year.
Summary:
The author of the book 'Fire and Fury: Inside the Trump White House', Michael Wolff, has claimed that US President Donald Trump is currently having an affair inside the White House.
Summary:
A three-year-old dog named Rusty travelled around 1500 km across Australia in the back of a truck after its family went on a vacation without it.
Summary:
Producers of John Abraham and Diana Penty starrer 'Parmanu: The Story of Pokhran' have announced its release date as March 2, clashing with Anushka Sharma's 'Pari'.
Summary:
Maharashtra Minister Jaykumar Rawal, while asking people to not watch 'Padmaavat', suggested that people should watch Salman Khan's films instead.
Summary:
The report also said if businesses invest in AI at the same rate as top-performing firms, they could boost revenue by 38%.
Summary:
A Zimbabwean family that had been living at Bangkok airport for three months has departed for the Philippines where a United Nations refugee camp is located.
Summary:
"Each animal was boarded in the cabin of the aircraft in a crate which was secured into seats with seatbelt extenders," Southwest Airlines said.
Summary:
The CBI has said it will oppose a petition filed against it for not challenging a special CBI court's order discharging BJP President Amit Shah in the Sohrabuddin Sheikh encounter case.
Summary:
A man hurled a shoe at AIMIM chief Asaduddin Owaisi on Tuesday while Owaisi was speaking against the Triple Talaq issue at a rally in Mumbai's Nagpada.
Summary:
There has been a 30% increase in international passengers at the airport in the last two years, creating long queues at immigration counters, they added.
Summary:
The Kerala High Court has ruled that couples seeking to get their marriage registered can appear before the state's registrar through video conference.
Summary:
The accused have been stealing mobiles from areas such as Mayur Vihar and Noida in order to buy drugs for the past one year, police said.
Summary:
External Affairs Minister Sushma Swaraj on Tuesday said that Buddhism and Ramayana connect India with other ASEAN countries.
Summary:
The incident came to light when the woman's husband complained to the station authorities in Kolkata after which the BSF was informed.
Summary:
Mumbai-headquartered Evolusolve Technologies-led personal finance management app WealthTrust has raised $500,000 from venture capital firm India Quotient in a pre-Series A funding round.
Summary:
A group of people protesting against the release of film 'Padmaavat' vandalised a mall and nearby shops in Ahmedabad's Memnagar.
Summary:
Despite the Supreme Court clearing an all India release of 'Padmaavat', Gujarat Deputy CM Nitin Patel said most theatre owners in the state had voluntarily decided to not screen it.
Summary:
Microblogging platform Twitter on Tuesday announced that its Chief Operating Officer (COO) Anthony Noto will be resigning from the company.
Summary:
Responding to Delhi Deputy Chief Minister Manish Sisodia's open letter on disqualification of 20 AAP MLAs, BJP's Delhi President Manoj Tiwari asked Sisodia to stop writing letters and contest elections instead.
Summary:
After Prime Minister Narendra Modi addressed the World Economic Forum in Switzerland's Davos, Congress President Rahul Gandhi on Tuesday asked him to explain the economic inequality in India to the audience there.
Summary:
All India Majlis-E-Ittehadul Muslimeen Chief Asaduddin Owaisi has said BJP wants India to be "Muslim-mukt (Muslim-free)", while RSS wants a "Dalit-mukt Bharat".
Summary:
Meanwhile, diesel prices in the city surged to â¹67.10 per litre.
Summary:
Summary:
Major markets across Delhi observed a one-day bandh on Tuesday as part of protests by traders' associations against the government's sealing drive on unauthorised shop constructions.
Summary:
Javadekar also said he asked Singh to refrain from making such comments.
Summary:
International Monetary Fund (IMF) Chief Christine Lagarde has said India's GDP can grow 27% if women are brought to the same level as men in terms of economic and workforce participation.
Summary:
The European Union (EU) has removed eight jurisdictions including Panama, the UAE, and South Korea from the 17-member tax haven blacklist it adopted last month.
Summary:
A Brazilian doctor has been sharing videos of himself dancing with pregnant women in the hospital.
Summary:
South Korea's financial regulator has announced that the use of anonymous bank accounts to make cryptocurrency transactions will be banned starting January 30.
Summary:
The company's market value reached as high as $107 billion after its fourth-quarter results were announced.
Summary:
This comes after Coinbase reportedly made $1 billion revenue in 2017, going past its projection of $600 million.
Summary:
The world's largest private spirits business, Bacardi, has said it will buy tequila maker Patrón in a $5.1 billion deal.
Summary:
Cybersecurity expert John McAfee has said, "Banks in India are cracking down on accounts connected to crypto exchanges, causing the dip." He also asked cryptocurrency investors not to panic after reports that the top Indian banks have suspended accounts of the country's top exchanges.
Summary:
After analysing over 372 ICOs, it found that about $400 million has been stolen.
Summary:
NBA player LeBron James, who has scored 29,993 career points, congratulated himself on Instagram for his pending achievement of reaching the 30,000-point mark.
Summary:
Ajay Reddy, the captain of India's Blind World Cup-winning cricket team said, "Sachin (Tendulkar) sir and PM Narendra Modi are tweeting congratulations, but no one comes out and offers support.
Summary:
BCCI's Committee of Administrators (CoA) has said that it will review India's performance in South Africa following the tour's conclusion.
Summary:
No government has successfully proven that Netaji Subhas Chandra Bose died in an airplane crash in Taiwan in 1945, Trinamool Congress leader Sukhendu Sekhar claimed on Tuesday.
Summary:
Germany's automotive watchdog has asked Volkswagen-owned carmaker Audi to recall 1.27 lakh diesel cars after it detected illicit emission control devices.
Summary:
Al-Qaeda has called on Muslims around the world to attack Jews and US citizens over President Donald Trump's decision to recognise Jerusalem as Israel's capital.
Summary:
A dog accidentally shot his master dead before a hunting trip in Russia, officials have said.
Summary:
L'Oréal's first ever hijab model Amena Khan has pulled out of the French cosmetics company's advertising campaign, citing the ongoing criticism over the anti-Israeli tweets she had made in 2014.
Summary:
Meryl Streep (The Post) was nominated for the Best Actress award, bringing her total Oscar nominations to 21.
Summary:
"We used to preserve camels out of necessity, now we preserve them as a pastime," the event's chief judge said.
Summary:
Section 144 has been imposed in Gurugram, two days before the release of Bollywood film 'Padmaavat'.
Summary:
Former South African captain Graeme Smith has said he is "not sure" if Virat Kohli is a "long-term captaincy option" for Team India.
Summary:
The deal also requires Musk to lead the company over the long term while also ensuring flexibility to appoint another CEO.
Summary:
Speaking at the World Economic Forum in Switzerland's Davos, PM Narendra Modi on Tuesday said that globalisation was losing its lustre and protectionism was gaining more importance.
Summary:
The woman threatened to commit suicide if the accused were not punished.
Summary:
The fast spread of mobile phones across low-income countries like India can make it harder for poor people in rural areas without the phones to access healthcare services, according to an Oxford University study.
Summary:
Addressing the World Economic Forum (WEF) in Switzerland's Davos, PM Narendra Modi on Tuesday said that only birds used to tweet in 1997, and joked that even humans tweet now.
Summary:
Another theory claimed that Netaji had been living as a sadhu in Faizabad.
Summary:
Pilots working for Israel's national airline El Al have refused to fly deported asylum seekers to countries which may pose a risk to their lives.
Summary:
Warning the US over its defence activities on the Korean Peninsula, North Korea said that it possesses "powerful and reliable" deterrent to counter any nuclear threat.
Summary:
India's largest lender SBI has recommended that the income tax exemption limit be raised to â¹3 lakh in Budget 2018.
Summary:
In October last year, Chandrasekaran had said Tata Group is interested in Air India but will need more details on its disinvestment process.
Summary:
The biopic's director James Erskine got the award for the 'Best Director of a Long Documentary', and an honorary diploma.
Summary:
Nawazuddin further said as an actor the role was worth playing.
Summary:
Actor Rishi Kapoor has revealed that he has blocked more than 5,000 people on Twitter.
"If anyone dares to take a dig at my family members, I will block (them)," he said.
Summary:
American tennis player Tennys Sandgren's mother Lia broke her rib while celebrating her son's fourth-round victory at the Australian Open.
Summary:
Manchester United's new number 7 Alexis Sanchez used to wash cars and do somersaults on the streets when he was six years old to support his family in Chile.
Summary:
Another AAP leader alleged that the recommendation was former Chief Election Commissioner AK Joti's gift to PM Narendra Modi.
Summary:
Hyderabad TRS corporator ST Reddy has shared a selfie with a lorry driver defecating in open on Facebook, stating that the only way to "stop the open defecation is by shaming the drivers".
Summary:
A 14-year-old tribal girl in Odisha who had claimed she was raped by "four men in uniform" allegedly committed suicide at her home on Monday.
Summary:
The Maharashtra government has directed all the Regional Transport Offices (RTOs) in the state to take action against two-wheeler dealers for not selling helmets along with the vehicles.
Summary:
Indian dairy cooperative AMUL on Tuesday released a poster captioned "Davoice of the PM!" on Prime Minister Narendra Modi's speech at the World Economic Forum in Davos.
Summary:
Adding that those failing to follow the order will be penalised, police said riders not wearing ISI mark helmets will be fined â¹100.
Summary:
Gurugram has banned the entry of horses from Delhi and western Uttar Pradesh to avoid horses being affected by the bacterial disease Glanders, officials said.
Summary:
Egypt's military has arrested former Army General Sami Anan after he announced plans to contest the elections against President Abdel Fattah al-Sisi, his aides have claimed.
Summary:
The 337-run knock helped Pakistan draw the match.
Summary:
The people from 'Padmavat' poet, Malik Muhammad Jayasi's village in Amethi, Uttar Pradesh have demanded a share of profit from the earnings of the film 'Padmaavat', which is based on the poem.
Summary:
The country's media regulator issued orders to ban actors whose "heart and morality" did not match the Communist Party's values.
Summary:
World number one Rafael Nadal retired due to an injury after his three hour and 47 minute-long five-setter Australian Open quarter-final against Croatia's Marin Cilic on Tuesday.
Summary:
Scientists in Spain have developed an artificial intelligence (AI) system that can predict the likelihood of corruption in a government as well as the conditions that favour their appearance.
Summary:
Addressing the World Economic Forum (WEF) in Switzerland's Davos, Prime Minister Narendra Modi on Tuesday said that India has chosen the 'reform, perform, transform' route to revolutionise its economic and social policies.
Summary:
Hawaii Governor David Ige has said that there was a delay in retracting the false missile alert earlier this month as he forgot his Twitter password.
Summary:
China has invited Latin American and Caribbean countries to join its Belt and Road Initiative (BRI).
Summary:
A senior spokesperson of Karni Sena's unit in Chittorgarh has claimed that over 1,900 women have signed up for 'Jauhar'.
are disheartened with the verdict of the court," the spokesperson added.
Summary:
Actor Ranveer Singh has said Alia Bhatt has no airs about herself and amidst the 'divaness', she is still a humble and normal girl at heart.
Summary:
Speaking about the clash between his film 'Aiyaary' and Akshay Kumar's 'Pad Man', Sidharth Malhotra said, "Yes, it irritates, but now it's too late." "This situation could have resolved earlier, people could have stuck to their dates, respecting others' space," he added.
Summary:
The song 'Saat Samundar Paar' from the 1992 film Vishwatma is inspired by a 1988 English song 'Heart' by synthpop duo Pet Shop Boys.
Summary:
After India lost the first two Test matches in South Africa, India coach Ravi Shastri said another 10 days of practice in the country would have made a difference.
Summary:
Australian cricket team captain Steve Smith took to Twitter to share a picture of himself with fiancée Dani Willis attending an Australian Open match, but mistakenly tagged a wrong account instead of his fiancée's.
Summary:
Pakistan cricketers are adored in India, I myself have got so much love from India," said Akhtar.
Summary:
German tennis player Mischa Zverev has been handed a Grand Slam-record $45,000 (nearly â¹29 lakh) fine for "poor performance", after he retired 48 minutes into his first round match at the Australian Open.
Summary:
Indian cricketer Suresh Raina, who has been retained by IPL side Chennai Super Kings for the 2018 edition, has said playing for the franchise made him a "real" cricketer.
Summary:
However, no injuries were reported, California's Culver City Firefighters said.
Summary:
The team was able to levitate a two-centimetre polystyrene sphere using ultrasonic waves.
Summary:
A theoretical model by Penn State researchers has suggested that the origins of very high-energy neutrinos, ultrahigh-energy cosmic rays, and high-energy gamma rays could be connected with black-hole emissions.
Summary:
The move was made after several protests were being organised in the district, the District Magistrate said.
Summary:
The district administration of Uttar Pradesh's Gautam Budh Nagar has issued an order directing the primary and junior government schools in the district to hold compulsory parent-teacher meetings every three months.
Summary:
Entry of heavy vehicles will be banned on the DND Flyway, Kalindi Kunj and New Ashok Nagar border, police said.
Summary:
The man died before the ambulance could reach the venue of the competition.
Summary:
Over half of all Indians, especially women, eat an unbalanced diet without the required fresh fruits, green vegetables, pulses, meat, and milk products, according to the recently released National Family Health Survey (NFHS-4) 2015-16.
Summary:
Staff in an under-construction hospital building at Uttar Pradesh's Hardoi were made to sleep in a post-mortem house.
"The construction of the building hasn't been completed yet.
Summary:
The US has asked Pakistan to arrest or expel Taliban leaders who are carrying out terror activities in Afghanistan after the group claimed the attack on the Intercontinental Hotel in Kabul.
Summary:
India's benchmark indices Sensex and Nifty closed above 36,000 and 11,000 respectively for the first time on Tuesday.
Summary:
Prime Minister Narendra Modi on Tuesday addressed the Plenary Session at the World Economic Forum 2018 in Switzerland's Davos, becoming the first Indian PM to do so in 20 years.
Summary:
Summary:
A tsunami warning has been issued for Alaska after an earthquake of magnitude 8 struck the US state's coast on Tuesday.
Summary:
The Guinness World Record for the largest tin of caviar was recently broken at a party at a luxury resort in Dubai.
Summary:
Zaira Wasim and Aamir Khan starrer 'Secret Superstar' has earned over â¹200 crore within four days of its release in China.
Summary:
Eighteen-year-old Australian leg-spinner Lloyd Pope took eight wickets for 35 runs against England on Tuesday to register the best-ever figures in an Under-19 World Cup. Pope helped Australia defend 127 runs as England were dismissed for 96 from being 47/0 at one time in the quarter-final.
Summary:
The construction workers also installed traffic monitoring equipment and traffic signals.
Summary:
Shiv Sena will oppose BJP's "bogus Hindutva" to ensure that "genuine Hindutva" gets political power, Thackeray added.
Summary:
NASA and MIT researchers studying Mercury, the closest planet to the Sun, have said its expanding orbit suggests weakening gravitational pull of the Sun as it ages and loses mass.
Summary:
United Nations' Secretary-General António Guterres has ruled out any mediation to resolve the Kashmir issue unless both India and Pakistan agree to address the tensions through talks.
Summary:
The Andhra Pradesh government and the Canton of Zurich on Monday signed a sister-state agreement to promote mutual prosperity and development.
Summary:
Pakistan police have arrested the main suspect behind the rape and murder of a seven-year-old girl.
Summary:
A US city has removed an illegal "Bob's House" road sign that it believed was erected by a resident who wanted to make it easier for visitors and deliverymen to find his house.
Summary:
Summary:
Hollywood actress Ashley Judd has revealed that she was asked to take her shirt off during her first audition.
Summary:
The 36th edition of IIT-BHU Varanasi's annual socio-cultural festival 'Kashiyatra' was bigger than ever with over 2,000 participants from 50 colleges.
Kashiyatra featured 9 flagship events including a Kavi Sammelan featuring some great Indian poets.
Summary:
Cricket legend Sachin Tendulkar met the Indian women's team in Mumbai on Monday, ahead of their South Africa tour next month.
Summary:
Twenty-time English champions Manchester United have been named as the highest revenue generating football club in the world for the 10th time by the Deloitte Football Money League.
Summary:
A 35-year-old half-marathon runner from Bengaluru suffered a cardiac arrest after he finished his run at the Mumbai marathon on Sunday.
Summary:
The only input the travellers have to give for the package is the kind of environment they want to travel to.
Summary:
One person was killed and at least 11 others were injured after the 2,160-metre Kusatsu-Shirane volcano erupted near a Japanese ski resort on Tuesday and triggered an avalanche.
Summary:
The speech was prepared by the state government and was distributed to the assembly and media beforehand.
Summary:
Content management startup Paperflite has raised over â¹2.5 crore in a seed round of funding led by The Chennai Angels, the startup said.
Summary:
Gurugram-based employee rewards startup Advantage Club has raised over â¹1.9 crore in funding round led by accelerator Axilor Ventures.
Summary:
In a first, an international team of scientists has found that a model plant Arabidopsis thaliana contains over 600 different receptor proteins, 50 times more than humans, that are critical for plant growth, development, and immunity.
Summary:
Netaji Subhas Chandra Bose's grand nephew Chandra Bose has said that PM Narendra Modi accepted the demand to document and rewrite the "true history of the Indian freedom struggle".
Summary:
Critics have slammed the horsepox research saying the 'smallpox vaccine' justification doesn't make sense and it could lead to another outbreak.
Summary:
Google is rolling out an Android Oreo update which displays WiFi speeds before connecting to networks.
Summary:
Australia-based researchers have discovered rocks in Queensland bearing striking similarities to those found in Canada, suggesting that part of northern Australia was part of North America 1.7 billion years ago.
Summary:
Canada-based scientists have discovered a copper-based catalyst that converts carbon dioxide, a greenhouse gas, into ethylene for making polyethylene plastic.
Summary:
A study of basaltic rocks called angrites has suggested that water was brought to the Earth by meteorites during the first two million years of the solar system, currently 4.6 billion years old.
Summary:
India's longest living army veteran, retired Major FKK Sircar, passed away on Sunday at the age of 101.
Summary:
While hearing the Kerala 'love jihad' case, the Supreme Court observed that the National Investigation Agency's probe cannot have any bearing on the legitimacy of Hadiya's marriage to Shafin Jahan.
Summary:
Train 18 is expected to be manufactured by June 2018.
Summary:
Before its launch, the $130,000 (â¹83 lakh) Gold Rush nail polish by Models Own was considered the world's most expensive nail paint.
Summary:
The man had run away with a woman and the panchayat had imposed the fine for him to be able to live with her again.
Summary:
Actor Prateik Babbar got engaged to his girlfriend Sanya Sagar on Monday at her farmhouse in Lucknow.
that just happened!" wrote Prateik while sharing a picture with Sanya.
Summary:
Ranveer: Say no more," wrote another user.
Meanwhile, another user wrote, "Only Ranveer can pull off that suit."
Summary:
Video footage has captured the moment a Chinese man climbed over balconies to rescue a toddler stuck on the canopy of a second-floor window.
The toddler, who had fallen from the third floor, was left unsupervised at home when the incident occurred.
Summary:
Team India coach Ravi Shastri said players need to rectify the "schoolboy errors" that led to run-outs in the second South Africa Test.
Summary:
Summary:
A flick, or frame-tick, is roughly 1.41723356 nanoseconds long and defined as 1/705,600,000 of a second.
Summary:
Earlier, Intel confirmed that the security patches also caused computers with newer chips to reboot.
Summary:
Currently, the Maharashtra government is being run by the coalition of BJP and Shiv Sena.
Summary:
Uber CEO Dara Khosrowshahi has said the US will have flying cars within 10 years.
Summary:
Digital payments startup Paytm has introduced 'Paytm for Business' app for merchants and businesses to to accept payments instantly for zero charges.
Summary:
A US judge has rejected Uber's proposed $3 million class-action settlement with 2,421 New York drivers who accused the company of retaining excessive fees from their fares.
Summary:
Uber's online meal ordering and delivery platform Uber Eats has acquired US-based food delivery startup Ando which was founded by chef David Chang.
Summary:
Noida-based travel app RailYatri, that provides train travel information, has acqui-hired Kochi-based food delivery technology startup YatraChef to manage its in-transit delivery business.
Summary:
Aam Aadmi Party (AAP) on Tuesday filed a fresh plea in the Delhi High Court to challenge the disqualification of 20 party MLAs for holding offices of profit.
Summary:
In a bid to teach people about traffic discipline, Mumbai Police recently shared a video of a cat crossing the road after traffic light changes its colour.
Summary:
British comedian Jimmy Carr has suggested in a tweet that New Zealand's oldest city, Dunedin needs an earthquake to look beautiful.
Summary:
A class 12 Pakistani student on Monday shot his school principal dead within the institution's premises over alleged blasphemy, police have said.
Summary:
In this plan, one can save up to â¹46,350 under section 80C and up to â¹30,000 under 80 D as per existing tax laws.
Summary:
It added that the court's orders must be obeyed by the states.
Summary:
Last year, China with 6.8% growth rate was ahead of India's 6.7%, making it the fastest growing economy.
Summary:
News Corporation's Executive Chairman Rupert Murdoch has said Google and Facebook should pay a fee to 'trusted' publishers, just like cable companies.
Summary:
Former Delhi CM and Congress leader Sheila Dikshit in her autobiography 'Citizen Delhi: My Times, My Life' has claimed that her government didn't have "smooth" relations with Manmohan Singh-led Centre.
Summary:
"My sister Jeannette Epps has been fighting against oppressive racism and misogynist in NASA and now they are...
Summary:
Out of 3000 entries from over 193 countries, three Indian school kids have been selected among the 24 winners of NASA's 2018 Commercial Crew Program Calendar Art Contest.
Summary:
Held under the tagline 'India Means Business', the meeting was attended by 40 CEOs of global companies and 20 from India.
Summary:
The Madhya Pradesh government has ordered action against contractual teachers who tonsured their heads in protest.
Summary:
A woman in Haryana's Gurugram was pulled out of a car and raped, while her husband and brother-in-law were held at gunpoint.
Summary:
As a part of her drive, she is requesting everyone to use dustbins instead of throwing waste in the lake.
Summary:
Notably, the US already possesses over 1,000 low-yield nuclear weapons.
Summary:
However, the object was determined to be blue ice, a mixture of chemicals and human waste.
Summary:
Rajasthan IPS officer Indu Kumar Bhushan, who lives in the state's capital Jaipur, has named his bungalow 'Hawalat' (lockup).
"I named my bungalow as 'Hawalat' last year to show creativity.
Summary:
Notably, Nifty touched 10,000 for the first time on July 25, 2017, whereas Sensex reached 35,000 on January 17.
Summary:
Actress Jacqueline Fernandez has said that not getting married won't stop her from having a child.
Jacqueline further said, "Sometimes, I wonder if I want to bring someone into this world and put them through this."
Summary:
India coach Ravi Shastri has defended the team management's decision to keep Ajinkya Rahane out from the first two Tests against South Africa, saying Rohit Sharma was the best option going by current form.
Summary:
It's much worse than that." He added that he didn't want to "see these garbage patches just mindlessly sent around".
Summary:
Customs officials at the Delhi airport have arrested a Chinese national allegedly carrying 15 gold bars worth more than â¹52 lakh.
Summary:
'Under' will be the first restaurant of its kind in Europe.
Summary:
Online classifieds platform OLX has appointed Momtaz Moussa as its India business' General Manager.
Summary:
Slamming the central government over the Triple Talaq bill, Owaisi said, "Justice for women is an excuse, the target is Shariat".
Summary:
The proposed visit of Vietnam's PM Nguyen Phuc and his wife to Bodh Gaya in Bihar on January 27 has been cancelled.
Summary:
Minister of State for Human Resource Development Satya Pal Singh has said that the ministry is ready to sponsor an international conference where scientists can state where they stand on the theory of evolution.
Summary:
On the occasion of Netaji Subhas Chandra Bose's 121st birth anniversary, Prime Minister Narendra Modi tweeted, "The valour of Netaji Subhas Chandra Bose makes every Indian proud." He added, "We bow to this great personality on his Jayanti." Meanwhile, President Ram Nath Kovind tweeted, "He remains one of our most beloved national heroes and an icon of India's freedom struggle".
Summary:
Recalling the night of the terrorist attack on Intercontinental Hotel in Kabul, Akash Raj, an Indian national staying in the hotel, said he was almost choking when terrorists set the rooms on fire.
Summary:
A team of 32 chefs and managers from the Taj Group will be ensuring that Prime Minister Narendra Modi receives Indian food during his visit to Davos in Switzerland for the World Economic Forum.
Summary:
Former international football player George Weah has been sworn in as the new President of Liberia, in the country's first democratic power transition in 47 years.
Summary:
Republican and Democratic Senators on Monday reached a temporary deal to end the US government shutdown.
Summary:
Shah Rukh Khan was felicitated at the 24th Annual Crystal Awards as part of World Economic Forum's 48th Annual Meeting for his leadership in championing children's and women's rights in India.
Summary:
In a recent interview, PM Modi had said that earning â¹200 daily by selling pakoda is also a form of employment.
Summary:
The Opposition Congress in Chhattisgarh Assembly has demanded the disqualification of ruling BJP's 11 MLAs for holding posts of Parliamentary Secretaries.
Summary:
The family members of a martyred Army jawan agreed to perform his last rites after UP CM Yogi Adityanath called the father of the jawan and assured him of all possible support.
Summary:
The Border Security Force has destroyed Pakistan's ammunition, fuel dump and several firing positions along the International Border (IB) in Jammu in retaliation for its ceasefire violations, officials said.
Summary:
The US President Donald Trump imitated Indian PM Narendra Modi by faking his accent in his conversations regarding the US' decision of sending more troops into Afghanistan, according to reports.
Summary:
Pakistan's Chief Justice Mian Saqib Nisar has been slammed after he compared the length of a speech to that of a woman's skirt.
Summary:
The owner of a Dublin hotel has sent a British blogger an invoice of â¬5,289,000 (â¹41.4 crore) after refusing to accept her request for free accommodation in return for social media promotion.
Summary:
Actor Morgan Freeman, while pointing out what's wrong with the trophies of the Screen Actors Guild (SAG) Awards, said, "It works from the back, but from the front, it's gender-specific." The trophy called 'The Actor' shows a nude male figure holding a mask of comedy and a mask of tragedy.
Summary:
'Phullu' director Abhishek Saxena, while slamming Censor Board over the certification of 'Pad Man', said that all the rules change whenever Akshay Kumar comes into action.
Summary:
Actress Neetu Chandra has slammed Sidharth Malhotra for allegedly making fun of the Bhojpuri language on Bigg Boss 11.
Summary:
While Shilpa reportedly took home â¹1.29 crore, Hina is said to have received â¹1.75 crore.
Summary:
Actress Richa Chadha has said that if one takes up a commercial project, people call that person a sell-out.
Summary:
Sanchez, who joined Arsenal from Barcelona in 2014 for ã31.7 million, will receive a reported salary of ã500,000-a-week at United.
Summary:
Laughlin threw the ball inside before crossing the boundary as Weatherald completed the catch 30 metres away.
Summary:
The court stated that the petitioner can approach the one-man panel already appointed to probe Jayalalithaa's death in case of an issue.
Summary:
The UAE is home to largest number of Indian migrants in the world.
Summary:
Earlier, the Congress had released a video of PM Modi hugging world leaders with the hashtag "Hugplomacy".
Summary:
However, university authorities have said that the "poor results" were due to students not completing required formalities.
Summary:
Canadian PM Justin Trudeau has announced that he will be on a state visit to India from February 17 to 23, at the invitation of PM Narendra Modi.
Summary:
The Delhi Traffic Police has asked road users to plan their journeys in advance on Tuesday as traffic will be restricted in parts of central Delhi in connection with the Republic Day Parade rehearsal.
Summary:
A judge in the US told a jury that God asked him to convince them that a woman accused of sex trafficking was not guilty.
Summary:
Pakistan accused Afridi of running a fake vaccination programme in which he collected DNA samples to confirm bin Laden's identity.
Summary:
The net interest income, or the core income a bank earns by giving loans, grew by 9.2% to â¹4,732 crore.
Summary:
The biggest bank in the Nordic region, Nordea, has informed all its employees on Monday that they will not be allowed to trade in Bitcoin and other cryptocurrencies from February 28.
Summary:
A video shows Bigg Boss 11 runner up Hina Khan dancing with her boyfriend Rocky Jaiswal to the Haryanvi song 'Mane Pal Pal Yaad Teri' featuring dancer Sapna Choudary, who was Hina's co-contestant.
Summary:
Russian astronaut Anton Shkaplerov on Saturday shared a video of him flying a vacuum cleaner aboard the International Space Station (ISS).
Summary:
The Delhi High Court has observed that Mahatma Gandhi's assassination case records are part of India's "cultural heritage".
Summary:
While investigating the alleged rape of a minor, the Kerala Police on Saturday arrested the minor's alcoholic father for accepting money from abusers and sending his daughter with them.
Summary:
Promising that the US will never allow Iran to acquire a nuclear weapon, Vice President Mike Pence on Monday said that the country will withdraw from the "ill-conceived" 2015 Iran nuclear deal until it is fixed.
Summary:
The priest was found guilty of abusing teenage boys over many years in a Vatican investigation.
Summary:
Pakistan will not allow UN Security Council's sanctions monitoring team any access to 26/11 Mumbai terror attack mastermind Hafiz Saeed or his entities during its visit this week, reports said.
Summary:
The death toll crossed the previous tally of more than 27,000 murders in 2011 at the peak of Mexico's drug war.
Summary:
The US' output is expected to surge above the historic high of 10 million barrels per day rivalling the largest producer Russia, IEA said.
Summary:
The Ministry further said that China has strictly adhered to the WTO's rules since it joined the trade body.
Summary:
Pointing out that the world's billionaires added $762 billion to their wealth last year, charity group Oxfam's study has found that it is enough to end extreme poverty seven times over.
Summary:
Summary:
Hrithik Roshan took to Twitter to announce the beginning of his shoot for the upcoming film 'Super 30' on the day of Saraswati Puja.
Summary:
Directed by Chakri Toleti, the film is scheduled to release on February 23.
Summary:
A professional tennis player named Tennys Sandgren, who was born in Tennessee, US, reached the 2018 Australian Open quarterfinals after defeating world number five Dominic Thiem on Monday.
Summary:
He further said that one can't expect a startup to adhere to all matured company regulations.
Summary:
Protesting against the arrest of a Mumbai Fire Brigade officer in connection with the Kamala Mills Compound fire incident, nearly 140 fire officers from across Mumbai have threatened to collectively submit their resignations.
Summary:
The family members of a slain Army jawan from Uttar Pradesh have refused to perform his last rites, demanding the presence of Home Minister Rajnath Singh and CM Yogi Adityanath.
Summary:
The Supreme Court on Monday stayed proceedings in the Delhi and Bombay High Courts on cases related to imposition of Goods and Services Tax (GST) on sanitary napkins.
Summary:
President Ram Nath Kovind has said that he refers to former President APJ Abdul Kalam as a "space scientist" and Prime Minister Narendra Modi as a "social scientist".
Summary:
The 12-year-old accused of stabbing a Class 1 boy at a Lucknow school has claimed that she was being framed by the school over previous arguments between her father and some teachers.
Summary:
While trying to link her mobile number to Aadhaar, a woman claims she was told nine unknown numbers were already connected to it.
Summary:
Rebel BJP leaders Yashwant Sinha and Shatrughan Sinha have supported the Aam Aadmi Party (AAP) after 20 AAP MLAs were disqualified on Sunday.
Summary:
Pakistan's Supreme Court has given 72 hours to the investigation team to arrest the culprit behind the rape and murder of a seven-year-old girl.
Summary:
Democrats have opposed any government funding plan that does not protect young undocumented immigrants known as 'Dreamers'.
Summary:
A Pakistani cleric has been arrested for allegedly beating to death an 8-year-old boy who tried to run away from a madrasa.
Summary:
Global IT spending is projected to rise 4.5% from last year to reach $3.7 trillion in 2018, according to a report by research firm Gartner.
Summary:
Lokendra Singh Kalvi, convenor of Rajput group Karni Sena, has said that they are ready to watch 'Padmaavat'.
Summary:
The opening match and the final will be hosted in Mumbai.
Summary:
Ramachandra Guha, who was a part of BCCI's Committee of Administrators, has said the BCCI officials worship Indian captain Virat Kohli even more than the cabinet worships PM Narendra Modi.
Summary:
Raina, the ninth cricketer overall to reach the landmark, also recorded the highest individual score in the Syed Mushtaq Ali Trophy history.
Summary:
Apple may stop iPhone X production by mid-2018 due to disappointing sales, according to KGI Securities analyst Ming-Chi Kuo. He stated disinterest in China as the main reason for the weaker demand.
Summary:
Saini filed a report with HackerOne, which administers Uber's bug bounty but it was reportedly rejected.
Summary:
Dubbed 'Osama bin Laden of India', Qureshi was reportedly indoctrinated by Sadiq Israr, the arrested Indian Mujahideen Co-founder.
Summary:
Hiring the cheapest manpower and running the cheapest airline won't ensure quality, Aviation Secretary RN Choubey said.
Summary:
The world's richest 42 people hold as much wealth as 3.7 billion of the poorest half of the world, a report by charity group Oxfam has revealed.
Summary:
A video showing actress Alia Bhatt dancing to the song 'Hawa Hawa' from the film 'Mubarakan' has emerged online.
Summary:
Summary:
As per reports, Ranveer Singh is being approached to star in 'No Entry Mein Entry' and portray the character Prem, originally played by Salman Khan in 'No Entry'.
Summary:
Summary:
The last time world number 14 Djokovic lost in straight sets at Australian Open was in 2007.
Summary:
It was Fekir's third goal through direct free-kick this season.
Summary:
Karnataka captain Vinay Kumar produced a Jonty Rhodes-style run-out to dismiss Punjab's Gurkeerat Mann in a domestic T20 match on Sunday.
Summary:
Workers were seen rubbing grease over electric poles in Philadelphia, US, to make them too slippery for fans to climb them in celebration following a championship match between American football clubs Philadelphia Eagles and Minnesota Vikings.
Summary:
Elsewhere, women's world number 1 Simona Halep from Romania also reached the quarter-finals after registering a straight-set win over Naomi Osaka.
Summary:
Real Madrid forward Cristiano Ronaldo examined his injury on a physio's smartphone after getting kicked in the face during his second goal in a La Liga match on Sunday.
Summary:
The revenue rose 28.4% at â¹211.98 crore in 2016-17, against â¹165.14 crore in the previous year.
Summary:
The Supreme Court on Monday transferred to itself two petitions from Bombay High Court related to the death of special CBI Judge BH Loya.
Summary:
The arrested mastermind of 2008 Gujarat serial blasts, Abdul Subhan Qureshi, was trying to revive the Students Islamic Movement of India (SIMI) and Indian Mujahideen (IM) in four states, according to Delhi Police.
Summary:
Addressing nuns during his visit to Peru, Pope Francis joked that "a gossiping nun is like a terrorist".
"Because gossip is like a bomb.
Summary:
Indian-American Manisha Singh has been sworn in as the Assistant Secretary of State for Economic and Business Affairs in US President Donald Trump's administration.
Summary:
Philippine President Rodrigo Duterte on Monday told the country's troops to shoot him if he became a dictator and overstayed his term in office.
Summary:
The introduction of digital banking has reportedly reduced the requirement of administrative staff.
Summary:
It is "just a matter of time" before Wipro starts reporting industry-matching growth as all company-specific challenges have been addressed, he added.
Summary:
The initiative was taken in the backdrop of the stressful environment and the rising cases of suicide in Kota.
Summary:
It uses ceiling-mounted cameras to identify each customer and track what items they select, eliminating the need for billing.
The purchases are billed to customers' credit cards when they leave the store.
Summary:
The Rajasthan and Madhya Pradesh governments have moved the Supreme Court seeking modification of its order lifting the ban on the film 'Padmaavat' in four states.
Summary:
Facebook employee Matt King, who lost his sight, is working to verbalise online content and enable the visually impaired to 'see' and determine appropriate content on the platform.
Summary:
Valletta, the capital of Malta, was officially named European Capital of Culture 2018 in a ceremony held on Saturday.
Summary:
Dismissing reports of exit from the Indian market, Uber has said, "We are 100% committed to serving our riders and driver partners in India." It came after SoftBank's executive said that Uber should focus on recovering market share in the US.
Summary:
The White House's public comment phone line has updated its voicemail message to blame the Democrats for the government shutdown.
Summary:
The drill comes amid tensions over North Korea's missile programme which had threatened to "sink" the country and turn it into "ashes".
Summary:
Union Oil Minister Dharmendra Pradhan has said that his ministry is trying to bring petrol, diesel, and kerosene under the ambit of GST.
Summary:
At the time of demonetisation, the total currency in circulation was â¹17.97 lakh crore.
Summary:
Actress Deepika Padukone has said that her rumoured boyfriend actor Ranveer Singh is the best kisser in the film industry.
Summary:
Slamming demands for banning Sanjay Leela Bhansali's upcomig film 'Padmaavat', actress Renuka Shahane shared photos on Facebook, wherein she demanded a ban on rape, sexual molestation and female foeticide instead of the film.
Summary:
Earlier, a Mewar royal Mahendra Singh Mewar said the Censor Board had endorsed a film that may cause social unrest.n
Summary:
University of Michigan researchers have patented a system that could use glasses or a headset to prevent motion sickness while in a moving car.
Summary:
This comes after President Ram Nath Kovind approved the Election Commission's recommendation to disqualify 20 AAP MLAs.
Summary:
He added that a focus on infrastructure in the budget will be a good sign for foreign investors.
Summary:
Kerala Police on Sunday arrested two journalists who were at a protest led by Dalits against a wall built near a temple in Ernakulam barring their entry.
Summary:
The operators were opposing the mandatory installation of speed governors.
Summary:
The accused would pay people to watch a particular channel at a particular time to increase its TRP, police said.
Summary:
In an open letter to the people of Delhi, Deputy Chief Minister Manish Sisodia questioned, "Isn't it unconstitutional and illegal to disqualify MLAs?
Isn't it pushing Delhi into polls?
Summary:
The Gujarat State Gauseva Ayog has begun a cow tourism project with an aim to promote and popularise cow rearing in the state.
Summary:
The World Economic Forum (WEF) ranked India 62nd among 74 emerging economies on an Inclusive Development Index, below ChinaâÂÂs 26th position and PakistanâÂÂs 47th position.
Summary:
The altercation broke out after the men scolded the deceased for being careless with the bag, police said.
Summary:
A Gurugram-based NGO on Saturday organised a 47-km car rally for visually impaired people who acted as navigators for drivers with normal vision.
Summary:
Notably, Assange has been living at Ecuador's embassy in London since 2012.
Summary:
Bengaluru-headquartered food-tech startup HungerBox has raised $2.5 million in a pre-Series A funding round led by Singapore-based LionRock Capital.
Summary:
Prime Minister Narendra Modi will hold bilateral talks with the President of Switzerland Alain Berset and Prime Minister of Sweden Stefan Lofven during his Davos visit to attend the World Economic Forum's annual meeting.
Summary:
Delhi Police Special Cell on Monday arrested Abdul Subhan Qureshi, the 2008 Gujarat serial blasts mastermind.
Summary:
The survey also showed that 67 crore people constituting India's poorer half increased their wealth by 1% last year.
Summary:
At least 200 Rajput women in Rajasthan's Chittorgarh marched with swords for a âÂÂSwabhimaanâ (self-respect) rally, demanding that the film 'Padmaavat' be banned or they be given permission to end their lives.
Summary:
New Zealand's Colin Munro, the world's top-ranked T20I batsman, was stranded on 49* in the seven-wicket win over Pakistan on Monday.
Summary:
NSA whistleblower Edward Snowden on Sunday took to Twitter to express his concerns over demands to link Aadhaar to services, saying, "Such demands must be criminalised." He further called Aadhaar "an improper gate to service".
Summary:
Technology giant Apple has partnered with Malala Fund to support girls' education, thereby becoming its first Laureate partner.
Summary:
Google first rolled out the feature in 2011 to protect online accounts.
Summary:
The incident occurred while the agents were trying to take away the tractor over unpaid dues, and the farmer held onto the tractor's bonnet to stop them.
Summary:
The Raipur Municipal Corporation in Chhattisgarh organised the three-day Kachra Mahotsav 2018, India's first Garbage Festival, from Friday to Sunday.
Summary:
French President Emmanuel Macron has said that Britain's decision to quit the European Union (EU) through a 'yes' or 'no' vote was a mistake.
Summary:
Amitabh Bachchan has revealed that he was once told by a film crew that if his second child was a son, he should name him Tiger.
Summary:
Salman Khan's rumoured girlfriend Iulia Vantur has said that the actor loves singing, writing lyrics and he is already acting, dancing and composing while adding, "There's nothing he can't do." Iulia, who has been learning music, further said, "He is a better singer than me...
Summary:
Several protestors allegedly belonging to Rajput organisation Karni Sena vandalised the Delhi Noida Direct (DND) flyway toll plaza on Sunday.
Summary:
New Zealand, the top-ranked team in the ICC T20I team rankings, had dismissed Pakistan for 105.
Summary:
Elsewhere, Barcelona registered a 5-0 win over Real Betis, with Lionel Messi and Luis Suárez scoring twice each.
Summary:
"Since we moved to India, the team has done well.
The conditions in India are suiting the team quite well," he added.
Summary:
Researchers at a German research laboratory have developed a sensor-driven electronic 'skin' that can enable users to control objects or appliances with gestures.
Summary:
Snow plans to use the investment to develop its augmented reality (AR) and facial recognition technologies.
Summary:
Technology giant Google has announced that it has agreed to a patent cross-licensing deal with China's Tencent Holdings amid its push to enter the Chinese market.
Summary:
A video footage shows a propeller plane successfully landing sideways after being hit by turbulence at Amsterdam's Schiphol Airport.
Summary:
He also said that BigBasket plans to invest in technology to further strengthen customer service areas and back-end efficiencies.
Summary:
Addressing the Luitporiya Hindu Sammelan in Guwahati, Rashtriya Swayamsevak Sangh chief Mohan Bhagwat said that while India forgot its enmity with Pakistan on August 15, 1947, Pakistan has not.
Summary:
A Patanjali mega store located in Noida Sector 110 was shut down on Saturday for operating without a food licence from the Food Safety and Drugs Administration department.
Summary:
Supreme Court judge Justice L Nageswara Rao on Sunday said that the image of lawyers in the country is "not very good" and the profession requires more quality.
Summary:
People belonging to minority communities from Pakistan and Afghanistan, who migrated to India "due to religious persecution" before December 31, 2014, will be given Indian citizenship, Union Minister Rajnath Singh said on Sunday.
Summary:
The contractual teachers, who were demanding regularisation of their services, will be included in the education department as regular teachers.
Summary:
The project's first phase can process 25 tonnes of waste per day while the airport currently generates over 20 tonnes daily.
Summary:
An estimated four crore people formed a human chain in Bihar by lining along the state borders and crisscrossing all state districts to protest against the practices of dowry and child marriages on Sunday.
Summary:
Only 45% of the world's countries are 'free', it said in its 'Freedom in the World 2018' report.
Summary:
Researchers at mobile security firm Lookout have discovered malware, 'Dark Caracal', designed to look like WhatsApp texts to steal user data.
Summary:
Amidst reports of several rape cases in Haryana over the past week, Congress spokesperson Sushmita Dev has said that the BJP-governed state was becoming "the rape capital of India".
Summary:
PM Narendra Modi on Sunday said it was in the interest of the Congress party to be "Congress-mukt (free of Congress)".
Summary:
After President Ram Nath Kovind approved the Election Commission's recommendation to disqualify 20 AAP MLAs, senior AAP leader Ashutosh on Sunday said it was unconstitutional and dangerous for our democracy.
Summary:
Social activist Anna Hazare has said that Prime Minister Narendra Modi did not reply to the 30 letters that he had written to him over the last few years as he has "an ego of his prime ministership".
Summary:
Meanwhile, over 56 people had reported injuries in separate incidents of cross-border firing.
Summary:
India is home to 50% of the world's undernourished children, the report pointed out.
Summary:
PM Narendra Modi has said it is a myth that the common man wants freebies and sops from the government.
Summary:
Rishi Kapoor took to Twitter to share a special reunion picture with veteran actors Danny Denzongpa, Prem Chopra, Jeetendra, Paintal and Ranjeet.
Summary:
The Academy of Motion Picture Arts and Sciences has stated that actress Priyanka Chopra will help announce the Oscar nominations for this year.
Summary:
The official Twitter handle of 'Aiyaary', while taking a dig on sharing its release date with 'Pad Man', wrote, "Good to have you back!" Earlier, 'Aiyaary' had moved its release date from January 26 to February 9 to avoid a clash with 'Pad Man'.
Summary:
Summary:
Neha Dhupia, while recalling an incident where she tried to copy Priyanka Chopra's style, said, "Priyanka...looked really hot in a golden sari...
Summary:
Karan Johar jokingly called Amitabh Bachchan's daughter Shweta Bachchan Nanda "nepotism ki brand ambassador and dukaan" while describing her as "Amitabh Bachchan ki beti.
Summary:
Femina magazine in a tweet congratulating the winner of the Best Actor Filmfare Award tagged cricketer Irfan Pathan by mistake instead of actor Irrfan Khan, who won the award for 'Hindi Medium'.
Summary:
Summary:
Corral lobbed the ball from his own half after catching the opposing team's goalkeeper off his line with just over 10 minutes left.
Summary:
Tonga's Pita Taufatofua, who carried the Tongan flag shirtless at the Rio Olympics, has qualified for the Winter Olympics as a cross-country skier.
Summary:
A Delhi court on Saturday granted bail to sacked Aam Aadmi Party leader Kapil Mishra in connection with a defamation case filed against him by Health Minister Satyendar Jain.
Summary:
Former Delhi CM Sheila Dikshit has revealed that she had been planning to resign from her position in 2012 due to health issues but decided to stay after the Nirbhaya gangrape case.
Summary:
At least four workers were killed and nine injured on Sunday in a blast at a chemical plant in Gujarat's Vadodara, reports said.
Summary:
The man, who set ablaze two BMWs and a Honda City, was caught by security guards while he was in the process of setting fire to an 11th car.
Summary:
An estimated 50,000 people on Saturday marched in anti-government protests in the Romanian capital of Bucharest.
Summary:
RBI Deputy Governor Viral Acharya has called for setting up an online trading platform to sell bad loans similar to the one in the US.
Summary:
UK Prime Minister Theresa May has said that company bosses who "line their own pockets" while failing to protect employees' pension schemes will be hit with huge fines.
Summary:
Election Commissioner Om Prakash Rawat has been appointed as the new Chief Election Commissioner with effect from January 23.
Summary:
The Zaira Wasim and Aamir Khan starrer 'Secret Superstar' has earned over â¹100 crore in two days of its release in China.
Summary:
Further, Australia lost first three matches of an ODI series at home for the first time.
Summary:
A video showing North Delhi Mayor Preeti Aggarwal telling her aides that "the license of the Bawana factory is with us so we cannot say anything" during a media interaction has gone viral.
Summary:
AAP leader and Delhi's Deputy CM Manish Sisodia has urged President Ram Nath Kovind to hear the view of the 20 AAP MLAs who have been accused of holding offices of profit.
Summary:
The court was hearing an appeal by a Kendriya Vidyalaya teacher who was sacked after officials found that she got a Scheduled Caste certificate after marriage.
Summary:
Protesters claimed that these issues were on a rise under Trump's administration.
Summary:
A US bomber carrying four nuclear bombs crashed in Greenland, a Denmark-controlled territory, on January 21, 1968.
Summary:
A US-based team is claiming to develop the world's first legally compliant cryptocurrency backed by oil called OilCoin.
Summary:
Accounting for the highest number of listed companies, India's steel sector pays taxes amounting to 43% of profits, he said.
Summary:
China's richest person and Tencent Holdings Chairman Ma Huateng's net worth has surpassed $50 billion, making him the first-ever mainland Chinese individual to achieve this milestone.
Summary:
Members of Rajput group Karni Sena have distributed a memorandum in all theatres of Gurugram asking them not to screen 'Padmaavat'.
Summary:
Women groups led by the All India Democratic Women Association (AIDWA) burnt the effigy of Ram Gopal Varma (RGV) in Visakhapatnam while protesting against the release of his upcoming film 'God, Sex and Truth'.
Summary:
Shah Rukh Khan has said that the failure of his 2000 film 'Phir Bhi Dil Hai Hindustani' made him, and his co-producers Juhi Chawla and Aziz Mirza stronger.
Notably, 'Phir Bhi Dil Hai Hindustani' completed 18 years of its release on Sunday.
Summary:
The Indian Premier League will allow a replacement player for the team that buys England's Ben Stokes, in case he misses the entire tournament due to legal proceedings.
Summary:
Mumbai-born speed skater Anice Das, who will represent Netherlands in the upcoming Winter Olympics, will visit India in search of her biological parents after the tournament.
Summary:
For instance, the 'Breathe' category instructs users to inhale and exhale for a minute and 'Distract' category offers challenges like counting backwards or thinking up names starting with different alphabets.
Summary:
The Uttar Pradesh government has reportedly sought the opinion of Muzaffarnagar's District Magistrate about withdrawing nine criminal cases pending against BJP leaders regarding the 2013 riots.
Summary:
The Jammu and Kashmir government on Saturday said that passport applications of former militants may be approved for performing Haj and other religious obligations after proper verification.
Summary:
The Home Ministry has sanctioned nearly â¹110 crore to hire Air India planes to ferry security personnel between their homes and remote areas like Jammu and Kashmir and the northeast where they are posted.
Summary:
Mineral water, liquor, and soft drinks could get costlier in Maharashtra as the state has decided to increase the bulk water tariff for industries that use water as raw material.
Summary:
A teacher in a UP school was terminated from work after he told the classmates of a Class 3 student to slap him 40 times for not completing his homework.
Summary:
A 32-year-old pregnant woman was allegedly gangraped in Uttar Pradesh's Budaun during the early hours of Friday, police officials said.
Summary:
Three hours after being admitted, doctors shifted the man to the ICU saying his condition was very serious, his relative said.
Summary:
BJP MP Subramanian Swamy has submitted documents to a Delhi court, claiming the Income Tax Department imposed a â¹414-crore fine on a firm in relation to the National Herald case against Sonia and Rahul Gandhi.
Summary:
US President Donald Trump's recent "harsh" statements against Pakistan had led to a decline in the relationship, he added.
Summary:
The 12-year-old girl noticed the worm in her mouth after drinking from the can, reports said.
Summary:
The AAP had earlier moved the Delhi High Court against the EC's recommendation, but the court had refused to stay it.
Summary:
The incident follows warnings by the US embassy in Kabul that armed groups may be planning attacks against hotels in the city.
Summary:
Miocic defeated Francis Ngannou via unanimous decision in the main event of UFC 220.
Summary:
US commercial startup Rocket Lab has launched its Electron rocket into orbit and deployed three satellites for the first time.
Summary:
US Vice President Mike Pence told the country's troops to focus on their missions despite the government shutdown.
Summary:
Protesters in Greek capital city Athens have torn down a red sculpture shaped like an angel and broken its wings in a fresh act of violence against an artwork critics have likened to Satan.
Summary:
Russian police found a two-metre crocodile in a small pool of water dug in the concrete basement of a house in St Petersburg city, officials said.
Summary:
A Canadian resident made a car out of snow on the side of a street to prank the police.
Summary:
Aishwarya Rai Bachchan along with 111 other women achievers were felicitated on Saturday by President Ram Nath Kovind at Rashtrapati Bhawan.
Summary:
Ranveer Singh attended the Filmfare Awards 2018 wearing a suit which had the posters of his favourite Bollywood films printed on it.
Summary:
Summary:
Karan further said, "Money, I'd do anything for.
Summary:
Spain's Rafael Nadal ensured that he will remain world number one after he went past Argentina's Diego Schwartzman in four sets to reach the Australian Open's quarterfinal on Sunday.
Summary:
In his message for recently retired 2005 Ballon d'Or winner Ronaldinho, Lionel Messi said that football will never forget his smile.
Ronaldinho had assisted Messi's first-ever senior goal at Barcelona.
Summary:
A memo written by the chief lawyer of Snapchat's parent company Snap, which threatened the employees against leaking information, was leaked this week.
Summary:
Skyline uses satellite and aerial photos through GPS to create interactive images for the wallpapers.
Summary:
Video footage shows workers hitting a glass bridge with a sledgehammer and jumping on it to check if it is safe for visitors.
Summary:
The startup allows customers to rent the theatre at â¹1,299 an hour for up to 18 people.
Summary:
Following the death of 17 people in a fire in Delhi, Prime Minister Narendra Modi said, "Deeply anguished by the fire at a factory in Bawana." Adding that his thoughts were with the families of those who lost their lives, he said, "May those who are injured recover quickly".
Summary:
Home Minister Rajnath Singh on Sunday said that India has given a strong message to the world that the country can kill its enemies not only on Indian soil, but also in their territory.
Summary:
Former Telecom Minister A Raja has alleged that former Comptroller and Auditor General of India (CAG) Vinod Rai was a "contract killer" whose shoulder was used to kill the UPA-2 government.
Summary:
The Italian government has launched an online portal for citizens to report what they consider fake news.
Summary:
The explosion took place after the bomb struck a civilian vehicle, officials added.
Summary:
The CBI alleged that the officials had sanctioned and disbursed loans based on forged documents.
Summary:
Earlier, the world's third-richest person Warren Buffett had said that cryptocurrencies like Bitcoin will most certainly "come to a bad ending".
Summary:
India will surpass China as the fastest growing large economy in 2018 and its equity market will become world's fifth largest, as per a report by Sanctum Wealth Management.
Summary:
The International Space Station has completed 7,000 days orbiting the Earth at a 400-km altitude, after its first module was launched in 1998.
Summary:
Filmmaker Karan Johar has said that Ranveer Singh has rejected two movies which he offered while adding that he has also tried to cast Shahid Kapoor a couple of times but he too said no.
Summary:
A French citizen has become the first person in the world to undergo a face transplant for a second time, Paris' public hospital system AP-HP confirmed.
Summary:
For used goods, it allows sellers to register by including details like price, category, location and images.
Summary:
Further, Uber stock worth $8 billion has been sold to a SoftBank-led group of investors at a discounted valuation of $48 billion.
Summary:
Awarding a 5-year jail term to a man for sexually assaulting a nine-year-old girl, a Delhi court observed that a woman's body is her own and all others are prohibited from touching her without consent.
Summary:
PM Netanyahu, who was in India for a six-day visit, was the second PM from Israel to visit the country in 25 years.
Summary:
A video showing people using bed sheets to escape the attack on the Intercontinental Hotel in Kabul, Afghanistan, has emerged online.
Summary:
The US city of Los Angeles recently posted its requirement of a graphic designer on Twitter with an image seemingly created using Microsoft Paint.
Summary:
A Chinese boy who was practising Kung Fu moves inside a parking complex accidentally burnt down 40 e-bikes, it has been revealed.
Summary:
Interestingly, while the cheapest annual BVG ticket costs â¬728 (â¹56,800), a pair of sneakers was sold for â¬180 (â¹14,000).
Summary:
In their reports, they noted that supervision and regulation by the central bank remained strong and have improved in the recent years.
Summary:
On being asked about his support as a parent, Federer said, "I have no idea where they're going to go.
Summary:
The funding comes after Coolpad separated from its Chinese technology company partner, LeEco.
Summary:
Google launched the feature last year to highlight articles in its search results that have been fact-checked.
Summary:
Microblogging platform Twitter has said it will notify the users who were exposed to Russian propaganda during the 2016 US presidential election.
Summary:
The app allows users to connect to other users with low battery which it displays next to the sent texts.
Summary:
A pilot was hauled off a British Airways England-Mauritius flight before takeoff amid fears he was drunk.
Summary:
Families of six Indians who are allegedly being tortured by their employers in Malaysia have approached the External Affairs Ministry, seeking its help to bring them back to India.
Summary:
She had been operating the flesh trade racket from a spa for the last one year, police said.
Summary:
The accused claimed that a wish-granting ghost will appear from a soft drink bottle.
Summary:
The Delhi government has directed all liquor vendors in the city to ensure sale of liquor after scanning barcodes from February 15 in a bid to block tax loopholes, officials said.
Summary:
A rape victim consumed poison outside Madhya Pradesh Chief Minister Shivraj Singh Chouhan's residence on Thursday, reports said.
Summary:
Prime Minister Narendra Modi on Sunday greeted Tripura, Manipur, and Meghalaya on their Statehood Day on Twitter.
Wishing Meghalaya on the day, he tweeted, "I will always cherish the affection of the people of Meghalaya.
Summary:
Mexican Presidential candidate Andrés Manuel López Obrador denied allegations that his campaign may be backed by Russia by releasing a parody video.
The allegations were made by his rival candidate Jose Antonio Meade.
Summary:
Officials said that the policewoman was not seriously injured.
Summary:
Adding that the US is the UK's closest ally, Johnson said that Trump should be welcomed to the UK.
Summary:
The attackers, who have reportedly taken several people hostage, entered the hotel through a kitchen.
Summary:
A California man who ate raw fish daily ended up in the hospital with a 5 ft 6 in tapeworm that wiggled out of his body during a bout of bloody diarrhoea.
Summary:
The ball in blind cricket is bigger than the standard ball and is filled with ball-bearings to create sound for the players to detect it.
Summary:
It is followed by United Airlines' Los Angeles-Singapore flight, which takes 17 hours and 55 minutes.
Summary:
Several maps relating to Army intelligence were found in a photocopy shop in Uttar Pradesh's Bareilly, police said.
Summary:
Opposing the relationship, the accused called the victims to clean his septic tank and then beat them to death.
Summary:
The Delhi Police on Sunday arrested Manoj Jain, the owner of the Bawana firecracker unit in relation to the Bawana industrial area fire case.
Summary:
Sri Lankan President Maithripala Sirisena on Saturday said he would take control over the country's economy from Prime Minister Ranil Wickremesinghe amid the crisis between the ruling United National Party (UNP) and its coalition partner.
Summary:
An England-based grocery store chain is looking to hire a 'chicken nugget connoisseur' ahead of the launch of its new range of frozen and fresh foods.
Summary:
The matter was reported when Marilyn Hartman, who has a history of sneaking onto planes, could not produce a passport at London's Heathrow Airport.
Summary:
Actor Akshay Kumar is set to auction a bicycle he used in the film 'Pad Man' for charity.
Summary:
Summary:
Madhya Pradesh CM Shivraj Singh Chouhan on Saturday said that the state government will move the Supreme Court to stop the release of the film 'Padmaavat' in the state.
Summary:
Elsewhere, Manchester United kept up their title chase with Anthony Martial's strike giving them a 1-0 win at Burnley.
Summary:
"These principles apply in any form of the game and ignored, they can lose games," Chappell said.
Summary:
The fans over here have literally adopted me," he added.
He further said despite CSK not featuring in IPL in the last two seasons, its fan base still got stronger.
Summary:
India lost 1-2 to Belgium in the final of the first leg of the Four Nations Invitational Tournament in New Zealand on Sunday.
Belgium had earlier beaten India 2-0 in the group stages of the tournament.
Summary:
Nine crew members of a reality TV show were arrested at a US airport after allegedly trying to sneak a fake bomb through a security checkpoint and film the incident, the Transportation Security Administration announced on Friday.
Summary:
Indian women are now flying fighters and progressing despite several challenges, he added.
Summary:
Civic police volunteers in Kolkata allegedly beat a man to death for refusing to give them a bribe after he was caught riding without a helmet.
Summary:
Three teenagers handed over a 30-year-old man to police after they spotted him removing railway track joints in Ghaziabad.
The man claimed he removed the joints to buy wheat flour, police said.
Summary:
Around 90,000 Indian nationals have been safely brought back from foreign conflict zones, countries affected by natural disasters, and other challenging situations in the last few years, External Affairs Ministry official Dnyaneshwar Mulay said.
Summary:
Amid a string of rape incidents in Haryana, Chief Minister Manohar Lal Khattar on Saturday said the state will enact a law providing death penalty for rapists of girls aged 12 years and below.
Summary:
A compensation of â¹ 1 lakh each will be given to the injured, he added.
Summary:
nIsraeli Prime Minister Benjamin Netanyahu has said that no country other than the US can act as mediator in the Israel-Palestine conflict.
Summary:
The Army hit hideouts used by three Kurdish militant groups, including the YPG that had played a key role in the fight against Islamic State in Syria.
Summary:
Blaming the Democrats for the government shutdown, US President Donald Trump on Saturday called it a "nice present" from the party on the first anniversary of his presidency.
Summary:
The Irrfan Khan and Saba Qamar starrer 'Hindi Medium' was named the Best Film at the 63rd edition of the Filmfare Awards.
Summary:
At least 17 people were killed after a fire broke out at a firecracker godown in Delhi's Bawana industrial area on Saturday, Fire Services officials said.
Summary:
Singer Ed Sheeran has announced his engagement to girlfriend Cherry Seaborn in an Instagram post.
Summary:
Rakesh Patel, the director of Gujarat multiplex association, has said that they have decided not to screen the upcoming film 'Padmaavat' across the state while adding, "Everyone is scared." He further said, "No multiplex wants to bear the loss.
Summary:
Akshay Kumar helped raise â¹12.93 crore in a day for Union Home Ministry's 'Bharat Ke Veer' initiative, which supports families of martyred soldiers.
Summary:
Despite Rajput group Karni Sena's continuous threats against the film 'Padmaavat', director Sanjay Leela Bhansali invited them to watch the film.
Summary:
Kent Roger Solheim, a Norwegian fan of the Premier League club, Liverpool FC, has named his daughter 'Ynwa', which is an abbreviation for the club's anthem 'You'll Never Walk Alone'.
Summary:
It clarified that customers who paid using saved credit cards or PayPal were not affected.
Summary:
CBI Judge BH Loya, who was hearing the Sohrabuddin Sheikh encounter case in which BJP President Amit Shah was accused, passed away in December 2014.
Summary:
State-owned ONGC on Saturday said it will acquire the government's entire 51.11% stake in Hindustan Petroleum (HPCL) for â¹36,915 crore.
Summary:
Over 100 schools located along the Line of Control (LoC) and the International Border in five districts of Jammu and Kashmir have been closed down due to ceasefire violations by Pakistan.
Summary:
Police in the Netherlands' Rotterdam will identify and "undress" youths wearing clothes that they believe don't match their assumed income in a move aimed at reducing crime.
Summary:
US State Secretary Rex Tillerson has revealed that he keeps a printed copy of President Donald Trump's tweets to respond to questions on the country's foreign policy.
Summary:
US banking giant Morgan Stanley's CEO James Gorman received $27 million in total compensation in 2017, an increase of 20% from a year earlier.
Summary:
Mauritius was the largest source of Foreign Direct Investment (FDI) in India, followed by the US and UK in 2016-17, according to an RBI census.
Summary:
Manoj Bajpayee retweeted a tweet shared by a journalist who took a dig on Akshay Kumar postponing Pad Man's release.
Summary:
Actress Shraddha Kapoor has said that working with actor Prabhas in their upcoming film 'Saaho' has been a great opportunity for her.
Summary:
Hollywood actor Will Smith on Saturday attended the Big Bash League match between Melbourne Stars and Sydney Thunder at the Melbourne Cricket Ground.
"This is my first cricket match.
Summary:
Summary:
Voges pulled the ball towards deep midwicket and attempted a second run as Archer's throw hit the stumps at the striker's end.
Summary:
Russian tennis star Maria Sharapova's return to Australian Open ended with a third-round thrashing at the hands of former world number one Germany's Angelique Kerber on Saturday.
Summary:
Dotcom had reportedly generated over $175 million by encouraging paying users to share copyrighted material.
I was arrested for the alleged online piracy of my users," Dotcom tweeted on Saturday.
Summary:
Lebanon's intelligence service may have hacked Android smartphones in at least 21 countries to turn them into cyber-spying devices which take photos and record conversations, reports said.
Summary:
Meanwhile, Pakistan's Foreign Ministry said India had committed more than 125 violations since the beginning of the year.
Summary:
China has accused a US warship of violating its sovereignty in the South China Sea by entering its territorial waters without permission.
Summary:
A 77-year-old Romanian pensioner has claimed that Adolf Hitler was his 'godfather' as he was the first baby born at a camp for ethnic Germans, where he was baptised by the German dictator during WWII.
Summary:
Audi has launched the all-new Q5 with a price range of â¹53.25-57.60 lakh.
Summary:
With two titles, India is now the joint-most successful team along with Pakistan.
Summary:
The second man to walk on the Moon, Buzz Aldrin was born Edwin Eugene Aldrin Jr. on January 20, 1930, in New Jersey, US.
Summary:
The release date of 'Dhadak', which marks Sridevi's daughter Janhvi Kapoor's debut and also stars Shahid Kapoor's half-brother Ishaan Khatter, has been postponed to July 20.
Summary:
Aamir Khan and Zaira Wasim starrer 'Secret Superstar' has beaten the opening day collections of 'Dangal' in China by earning â¹43.35 crore.
Summary:
Melbourne Stars claimed victory against Melbourne Renegades due to hitting more boundaries after tied scores in the Super Over forced a count-back in the Women's BBL on Saturday.
Summary:
Speaking about the 2019 General Elections, PM Narendra Modi on Friday said, "I don't waste time thinking about elections.
Summary:
Finance Minister Arun Jaitley on Saturday performed the 'halwa' ceremony to mark the commencement of the printing process for Budget 2018-19.
Summary:
Minister of State for Human Resource Development Ministry Satya Pal Singh has said that students shouldn't be taught naturalist Charles Darwin's Theory of Evolution as it is "scientifically wrong".
Summary:
US President Donald Trump's real estate company The Trump Organization's Indian franchisees are offering to fly the first 100 investors in their property in Gurugram to the US to meet the US President's eldest son.
Summary:
The department has asked people dealing in Bitcoin and other cryptocurrencies to pay tax on capital gains.
Summary:
Russia and China's growing military capability is a greater threat to the US than terrorism, the US Department of Defense has claimed in its new National Defense Strategy.
Summary:
The country has issued the highest weather alert in several parts of the country after storm winds reached speeds of up to 140kmph in some places.
Summary:
A shutdown of US government services is triggered when the Senate fails to clear appropriate funding for government operations.
Summary:
The banks are verifying current accounts held by India's top 10 cryptocurrency exchanges including Zebpay, Unocoin, and BTCXIndia.
Summary:
An estimated 95% of Vietnam households use minimum one Masan product, according to research firm Kantar.
Summary:
Summary:
Members of the Rajput group Karni Sena set fire to the ticket counter of a movie theatre in Faridabad, Haryana.
Summary:
Further, the list features 10 players from Afghanistan.
Summary:
Cricketer-turned-commentator Virender Sehwag has said that if Ashish Nehra can make a comeback to the Indian team at 36 then even Yuvraj Singh can.
"He's not in the Indian team...His talent is intact.
Summary:
Senior AAP leader Gopal Rai on Saturday claimed that the Election Commission's recommendation to disqualify 20 AAP MLAs was Chief Election Commissioner AK Joti's "gift" to Prime Minister Narendra Modi.
Summary:
Kumar confessed during interrogation that he and his friend plotted to kill Sharma as she used to scold him over trivial issues.
Summary:
Judge Loya had been hearing the Sohrabuddin Sheikh encounter case when he died.
Summary:
While the maximum fare for Chennai buses has increased from â¹14 to â¹23, bus fares in rural areas witnessed an increase of almost 33%.
Summary:
The accused sent victims to Gulf nations on the pretext of providing them jobs and then forced them into prostitution, police said.
Summary:
The Maharashtra State Police Complaints Authority received 649 complaints against police officials across the state in 2017.
Summary:
The bodies of nine Syrian refugees who crossed into Lebanon were found frozen near the country's border with Syria on Friday, the Lebanese Army said.
Summary:
After being rusticated for poor attendance and for picking up fights, a class 12 student of a private school in Haryana's Yamunanagar shot the school's principal three times at her office.
Summary:
The second man to walk on the Moon, Buzz Aldrin once punched a conspiracy theorist for claiming the first-ever Moon landing was fake.
Summary:
Technology giant Apple has topped Fortune magazine's list of the 'World's Most Admired Companies' for 2018.
Summary:
Aldrin had also tweeted a customs declaration form which Apollo 11 astronauts had to sign upon their return to Earth in 1969.
Summary:
USA's world 100-metre silver medallist Christian Coleman broke the 60-metre sprint indoor world record by clocking a timing of 6.37 seconds at an event in South Carolina on Friday.
Summary:
NASA has successfully applied a new technology that allows aircraft to fold their wings between zero and 70 degrees while inflight.
Summary:
Pichai emphasised that AI is the "most important" thing that humanity is working on.
Summary:
Congress President Rahul Gandhi on Friday suggested three topics to PM Narendra Modi for his monthly radio address 'Mann Ki Baat', after the PM invited people's ideas for the segment on Twitter.
Summary:
NASA astronaut Jeanette Epps, supposed to become the first African-American to live aboard the International Space Station in June, has been pulled off the mission.
Summary:
He further said, "We at Visa won't process transactions that are cryptocurrency-based.
Summary:
Deepika tweeted, "'Only from heart can you touch the sky'...a big thank you...
for your support, generosity!" Ranveer's tweet read, "Big Man with a Big Heart!
Summary:
Oscar winning director Woody Allen has said that he never molested his adopted daughter Dylan Farrow.
Summary:
'Baahubali' actor Prabhas' uncle Krishnam Raju, who is a renowned Telugu actor, has revealed that Prabhas is willing to get married this year.
Summary:
Four ex-Ranji Trophy players have been included in USA's squad for the regional 50-over tournament in the Caribbean.
Summary:
After collapsing during her Australian Open third-round match due to heat, world number 42 Alize Cornet said the players were being sent to the "abattoir" by being told to play in such weather.
Summary:
Former IBM software engineer, Jiaqiang Xu has been sentenced to five years in jail by a US court for stealing proprietary source code from the company.
Summary:
Rebel AAP leader Kapil Mishra on Saturday claimed the party's internal survey shows that AAP will not win any of the 20 seats if by-elections are held.
Summary:
Bengaluru-based workforce outsourcing startup Awign has raised â¹5 crore from Unitus Seed Fund and other angel investors, the startup said in a statement.
Summary:
The court said there is a phonetic similarity between the plaintiff's trademark Marc and Flipkart's MarQ brand name.
Summary:
NASA has shared an image of the Cartwheel Galaxy taken with the Hubble Space Telescope.
Summary:
The search operations were carried out on hearing a small explosion-like sound shortly after Dalai Lama's discourse, a police official said.
Summary:
National Green Tribunal has issued notices to the Delhi government and Delhi Jal Board seeking their response to a plea alleging that rainwater harvesting systems were not installed in schools and colleges.
Summary:
Swami and Netaji's birth anniversaries are observed on January 12 and 23, respectively.
Summary:
A minor girl was allegedly abducted and gangraped by three men in a moving car in Haryana's Faridabad on Friday.
Summary:
This was the first time the Russian President took part in the ritual publicly.
Summary:
The US National Security Agency (NSA) has been using secret speech recognition technology to identify people by their unique voiceprint for years, according to a declassified NSA document.
Summary:
HSBC has agreed to pay $101.5 million to settle a US criminal probe into rigging of currency transactions.
Summary:
The teens' acquaintances are seen requesting the policemen as "no one else has a car".
Summary:
Asking people to boycott the film 'Padmaavat', BJP MLA from Hyderabad Raja Singh has asked the people to burn and vandalise theatres if required to stop others from watching the movie.
Summary:
India will now face the third-ranked team in the world, Belgium, who had earlier handed India their only loss of the tournament.
Summary:
WhatsApp Co-founder Jan Koum has revealed that he was in a conference room with lawyers for "three days straight" while signing the deal with Facebook for the messaging app's acquisition.
Summary:
Pichai added he regrets that people misunderstand that Google fired him because of a political belief.
Summary:
Apple CEO Tim Cook has said, "I don't have a kid, but I have a nephew that I put some boundaries on...
Summary:
Uttar Pradesh Chief Minister Yogi Adityanath on Friday said that US President Donald Trump was inspired by Indian Prime Minister Narendra Modi's development policies for the country.
Summary:
Pakistan needs to change its mindset on terrorism which differentiates between good and bad terrorists and refuses to see reason in peace, India Ambassador Syed Akbaruddin told the United Nations Security Council on Friday.
Summary:
Former Telecom Minister A Raja, who was acquitted in the 2G spectrum allocation scam, has said he was punished because former PM Manmohan Singh and then Union Ministers P Chidambaram, and Pranab Mukherjee remained silent.
Summary:
US President Donald Trump, who completed his first year in office on Saturday, repeatedly termed certain American media organisations as 'fake news' throughout the year.
Summary:
Pakistan's Army chief General Qamar Bajwa has confirmed the death sentences awarded to 10 terrorists by a military court for carrying out suicide attacks in the country in the last few years.
Summary:
FMCG major Hindustan Unilever's (HUL) CEO Sanjiv Mehta has said the company would rather disrupt its own business model and not get disrupted.
Summary:
A song titled 'Nachle Na' from Taapsee Pannu and Saqib Saleem starrer 'Dil Juunglee' has been released.
Summary:
Kim Kardashian took to Twitter to announce that the name of her third child would be Chicago West.
Kim has two other kids with husband Kanye West, named North West and Saint West.
Summary:
After the Supreme Court stayed the ban on 'Padmaavat' in Rajasthan, the state is set to challenge the court against it.
Summary:
Hollywood star Will Smith, who attended Friday's Australian Open third round match between Nick Kyrgios and Jo-Wilfried Tsonga, wrote in an Instagram post that he is hooked to the sport following the match.
I haven't been to many Tennis matches.
I'm pretty sure I'm hooked!" wrote Smith.
Summary:
Paes and partner Purav Raja beat fifth seeds Jamie Murray and Bruno Soares on Saturday.
Summary:
Playing against Zimbabwe in the Under-19 World Cup, Indian opener Shubman Gill successfully hit a six with a short-arm jab, a shot made famous after Indian captain Virat Kohli played it against England last year.
Summary:
On being asked if he was shocked when Facebook offered to buy WhatsApp for $20 billion, Koum said he had an idea that their active user number was one of the highest in the industry.
Summary:
Cambridge researchers have discovered "unusually sophisticated prehistoric monuments and technology" under a pyramid-shaped landform in the Greek island of Keros.
Summary:
An Australia-based study has found that some of the building blocks of The Pentagon and Empire State Building contain fossilised microbes that lived up to 340 million years ago, predating the dinosaurs.
Summary:
Madhya Pradesh Chief Minister Shivraj Singh Chouhan on Friday said that the gap between police and citizens needs to be bridged.
Summary:
"Sending terrorists and initiating ceasefire violation is a part of Pakistan's wicked nature.
Summary:
Union Minister of State for Housing and Urban Affairs Hardeep Singh Puri on Friday announced the commencement of India's first-ever 'Livability Index' to assess the living standard in 116 cities.
Summary:
Bihar Chief Minister Nitish Kumar will be accorded Z-plus category security after his convoy was attacked with stones in the state's Buxar district on January 12.
Summary:
Notes worth over â¹90 lakh have been recovered from the officer's residence and office.
Summary:
The hospital had informed the family that the baby died due to medicine reaction and nothing could be done about it.
Summary:
WhatsApp Co-founder Jan Koum has revealed that he conceived the idea of creating the messaging app after being annoyed about missing calls at the gym.
Summary:
The shutdown means many government services will close down until a new budget is agreed.
Summary:
Yesteryear actress Parveen Babi was the first Indian film star to get featured on the cover of TIME magazine in 1976.
Summary:
The policy caused Dutee to be suspended in 2014, following which she took her case to CAS.
Summary:
Earlier, Facebook announced it'll prioritise content from users' Friends instead of content from brands.
Summary:
After Election Commission recommended disqualification of 20 AAP lawmakers for allegedly holding offices of profit, BJP spokesperson Sambit Patra on Friday said the AAP has moved from 'India against corruption' to 'I am corruption'.
Summary:
Responding to the criticism he received for hugging global leaders, PM Narendra Modi in an interview said "I don't know all the protocols as I am a common man.
Summary:
The team is currently investigating how to link the sensor to a smartphone for a user-friendly way of identifying safe drinking water.
Summary:
The test is sensitive to mutated DNA in the blood and cancer-related proteins, said researchers.
Summary:
PM Narendra Modi will be the first Indian Prime Minister to attend the summit in 21 years.
Summary:
Justifying its construction activities in the disputed Doklam region, China on Friday said that India should not comment on it.
Summary:
The Centre on Friday announced that former Gujarat CM Anandiben Patel will be appointed as the Governor of Madhya Pradesh.
Summary:
The Centre on Friday added nine cities including Bareilly, Silvassa and Moradabad, under its Smart Cities Mission, taking the total number of cities selected for the scheme to 99.
Summary:
He said he "behaved like a common person without getting too formal", which was liked by the world leaders.
Summary:
China had relaxed the one-child policy in 2015 to reverse the trend of its ageing population.
Summary:
International sanctions were imposed against North Korea in response to its nuclear weapons programme.
Summary:
Joshi is scheduled to participate in the session 'Main aur Woh: Conversations with Myself' at the festival.
Summary:
All India Majlis-E-Ittehadul Muslimeen chief Asaduddin Owaisi on Friday said that the film 'Padmaavat' is "bakwas" (rubbish) and Muslims shouldn't watch it as God didn't create them to watch a two-hour film.
Summary:
Actress Khushbu Sundar has said that if people are talking about actresses in a bikini, they should also talk about actor Hrithik Roshan's bare body.
Summary:
World number one Simona Halep said she was almost dead and could not feel her ankle after playing in the joint-longest Australian Open women's singles match in terms of games played in her third round win over Lauren Davis on Saturday.
Summary:
Delhi Chief Minister Arvind Kejriwal on Friday tweeted that history was a witness that truth has always triumphed in the end.
It is natural," he wrote.
Summary:
After receiving criticism and threats for his 'madrasas produce terrorists' remark, Shia Waqf Board chief Waseem Rizvi said he didn't say all madrasas are producing terrorists.
Summary:
London's Tower Hamlets Council declared its area as a "Trump-free zone", banning US President Donald Trump from visiting the area.
The council further called on UK PM Theresa May to withdraw the state visit invitation extended to Trump.
Summary:
A Russian teenager on Friday attacked a group of students with an axe, injuring six people, before setting his school on fire in the city of Ulan-Ude, officials said.
Summary:
US President Donald Trump had said in an interview in 2005 that he would give his wife Melania Trump a week to lose pregnancy weight, The Washington Post has reported.
Summary:
India's anti-doping body, the National Anti Doping Agency (NADA), reportedly conducted 2,667 tests out of their intended target of 7,000 tests throughout 2017.
Summary:
South Africa's JP Duminy slammed five sixes in seven balls, with bowler Eddie Leie conceding 37 runs in a single over during a domestic one-day match in South Africa.
Summary:
During a television interview on Friday, Prime Minister Narendra Modi urged the nation to not evaluate him only on the basis of demonetisation and GST reforms.
Summary:
Responding to criticism over his foreign trips during a television interview, PM Narendra Modi on Friday said he has spent more than one day in at least 80% of Indian districts.
Summary:
While talking about postponing Pad Man's release in a press conference along with filmmaker Sanjay Leela Bhansali, actor Akshay Kumar said, "His (Bhansali's) need is more for this date than mine".
Summary:
Kannada actress Sruthi Hariharan revealed that once a Tamil producer said that he would exchange her with four other men, to which she responded saying that she carries a slipper with her.
Summary:
Former American swimmer Michael Phelps, the most decorated Olympian of all time, has said he is extremely thankful that he did not end his life while fighting depression.
Summary:
Social media platforms YouTube and Facebook are removing videos that show people eating detergent as part of a challenge.
Summary:
The company emphasised that those working on AI also need to train people for new skills.
Summary:
This comes amid Pakistan's allegations that India is spreading terrorism in its province of Balochistan.
Summary:
The Delhi High Court on Friday refused to provide interim relief to 20 AAP lawmakers, who were seeking a stay on the Election Commission's recommendation to disqualify them for allegedly holding offices of profit.
Summary:
Ex-Union Minister Jairam Ramesh has said Uttar Pradesh's division would be "inevitable" due to its size and population.
Summary:
Former German rapper Denis Cuspert who joined ISIS in 2014 and reportedly married the FBI translator hired to spy on him has been killed in an air strike in Syria, a US-based monitoring group said.
Summary:
Following complaints from Reliance Communications (RCom) customers, TRAI has directed the company to refund unspent balance and security deposit of its customers.
Summary:
Actress Priyanka Chopra was seen kissing her co-star Alan Powell on the streets of New York while shooting for the upcoming season of her American TV series 'Quantico'.
Summary:
Summary:
Nobel Peace Prize winner Malala Yousafzai, while talking about 'Pad Man' said, "I'm really excited to see the film...
Summary:
Bangladesh defeated Sri Lanka by 163 runs in the triangular series on Friday, achieving their biggest margin of victory by runs in ODI cricket.
Summary:
England pacer Chris Woakes dismissed Australia debutant Alex Carey by running him out using his foot during the second ODI on Friday.
Summary:
Sydney Thunder's Indian-origin spinner Arjun Nair has been suspended from bowling in domestic cricket for at least three months after being reported for a suspect action in the Big Bash League.
Summary:
The operators are protesting against the installation of speed governors in the vehicles, an association member said.
Summary:
A major fire broke out at Bengaluru's Bellandur lake on Friday morning, hours after a similar fire was doused at the lake by 5,000 army jawans.
Summary:
BJP MP Subramanian Swamy on Friday said the case of Congress MP Shashi Tharoor's wife Sunanda Pushkar's death will not be closed because he will counter-argue the matter.
Summary:
Earlier, the EVMs used in Dholpur bypoll carried the candidates' pictures.
Summary:
Japanese demonstrators who were staging a sit-in protest against the construction of a new military base in the country's Okinawa region were forcibly removed by the police.
Summary:
Ardern became the country's youngest Prime Minister since 1856, after taking over the office in October last year.
Summary:
Johnson had said it was "ridiculous" that the two countries were linked by a single railway line.
Summary:
Cybersecurity expert John McAfee, who was present at the cruise, blamed government interventions for the recurring crash in value of cryptocurrencies saying, "It's like how do you ban smoking weed?
Summary:
Three new promotional videos of the upcoming film 'Padmaavat' have been released.
Summary:
The release date of the Akshay Kumar starrer 'Pad Man' has been postponed to February 9 to avoid a clash with Sanjay Leela Bhansali's 'Padmaavat'.
Summary:
The app displays quotes about death from philosophers when a notification is opened.
Summary:
Norwegian Air pilot Harold van Dam broke subsonic transatlantic records when he flew a Boeing 787 Dreamliner from New York City to London in five hours and 13 minutes on Monday.
Summary:
The Aam Aadmi Party on Friday moved the Delhi High Court against Election Commission's recommendation to disqualify 20 of their MLAs. This comes after the EC submitted a recommendation to President Ram Nath Kovind, seeking disqualification of lawmakers on the grounds that they allegedly held offices of profit.
Summary:
Accepting the demands of a man protesting against the custodial death of his brother for 771 days, the CBI will launch a probe into the incident.
Summary:
Last year, India joined the Wassenaar Arrangement, which controls export of conventional weapons.
Summary:
Former Telecom Minister Andimuthu Raja, who was recently acquitted in the 2G spectrum allocation case, has challenged PM Narendra Modi for an open debate on the 2G case.
Summary:
A telecom provider has deactivated the SIM card owned by HL Prabhakar, Project Director for Aadhaar (UID) in Karnataka, claiming that Prabhakar had failed to link his Aadhaar number with the SIM card.
Summary:
The Election Commission has recommended the disqualification of 20 AAP MLAs for allegedly occupying offices of profit, citing that the MLAs were also appointed as Parliamentary Secretaries.
Summary:
However, it suggested a minimum height restriction of 3,000 metres for mobile communication, to maintain compatibility with terrestrial mobile networks.
Summary:
China is testing a facial recognition surveillance system that alerts authorities when targets move beyond a designated 300-metre safe zone in the Muslim-dominated Xinjiang region, according to the Bloomberg.
Summary:
North Korea has demanded an apology from the US for not using its official name, the Democratic People's Republic of Korea.
Summary:
Mukesh Ambani-led Reliance Jio on Friday reported its first ever net profit at â¹504 crore in the December quarter, against a loss of â¹271 crore in the September quarter.
Summary:
Twinkle Khanna has said failure has been her role model, while addressing an interactive session at Oxford Union Society, a debating society whose members are primarily from the University of Oxford.
Summary:
This is only the third time Australia have lost the first two matches of an ODI series at home.
Summary:
Speaking about his return to Tests, South Africa's AB de Villiers has said he feels like "he is in the best form of his life".
Summary:
World number nine CoCo Vandeweghe was fined $10,000 (over â¹6 lakh) for hurlingàabuse at her opponent Timea Babos in her first round Australian Open match.
Summary:
Former India captain MS Dhoni has said that Chennai Super Kings will aim to buy Ravichandran Ashwin during the IPL auction as he is a 'local boy'.
Summary:
Australian left-arm pacer Mitchell Starc produced a 142.2-kmph yorker to clean bowl England's Moeen Ali for 1 run during the second ODI in Brisbane on Friday.
Summary:
India have called up Mumbai's Shardul Thakur and Delhi's Navdeep Saini to act as the team's net bowlers after the team management reportedly complained that South Africa have not provided them with quality net bowlers.
Summary:
After India coach Ravi Shastri shared a picture of himself with Cheteshwar Pujara and a leopard statue, a user wrote, "Make this leopard run after Pujara, his running will automatically improve." Other tweets read, "Ghumne gaye ho ya match jeetne, We lost the series like tracer bullet," and, "Ask Hardik Pandya to ground his bat in.
Summary:
All-rounder Ravindra Jadeja on Thursday shared a picture of himself with a lion from Johannesburg, where India will face South Africa in the third Test starting January 24.
Summary:
Indian woman cricketer Harmanpreet Kaur has said Western Railway is demanding â¹27 lakh from her for quitting her job to take up the DSP post in Punjab Police.
Summary:
A class 11 female student was found dead in the premises of a school in Haryana's Sonepat on Thursday.
Summary:
The bank's net interest income during the quarter rose by 24.1% year-on-year to â¹10,314.34 crore.
Summary:
Conflict in both regions, controlled by pro-Russian separatists, had begun after Russia annexed Ukraine's Crimean peninsula.
Summary:
The recommendation, if accepted by the President, would leave AAP with 42 seats in the 70-seat house and lead to by-polls in Delhi.
Summary:
This takes the overall number of recalled vehicles by Honda, equipped with Takata airbags, to 3.13 lakh units in India.
Summary:
India accounts for 25% of the estimated 75 lakh science and engineering bachelor's degrees awarded across the world in 2014, the maximum in the world, according to a 2018 US government report.
Summary:
The plea was by an American woman who claimed Farooqui had oral sex with her without her consent and had been mistakenly acquitted.
Summary:
China and US-based researchers have developed "atomristors", the thinnest data storage device with dense memory capacity.
Summary:
Russian capital Moscow experienced its darkest December on record in 2017, with about "six or seven minutes" of direct sunshine, as per local media reports.
Summary:
The GST Council has reduced the tax on 29 goods and 53 services including sugar boiled confectionery, drinking water packed in 20-litre bottles and mehendi cones.
Summary:
The Indian Navy's first all-women crew aboard the INSV Tarini on Friday morning crossed the Cape Horn through the Drake Passage, considered to be the 'Mount Everest of sailing'.
Summary:
"I do this all the time when I switch from glasses to contacts," a user tweeted over the video.
Summary:
It was the second-biggest package Dimon has received since he became CEO in 2005, only trailing his $49.9 million of reported compensation for 2007.
Summary:
Actor Ranveer Singh took to Twitter to share a picture showing the physical transformation he underwent for his upcoming film 'Gully Boy' from the earlier physique he had for 'Padmaavat'.
Summary:
Summary:
BJP MP-actor Shatrughan Sinha questioned as to why Shah Rukh Khan and Amitabh Bachchan are being criticised for not condemning protests against 'Padmaavat' when PM Narendra Modi is quiet.
Summary:
Former Bigg Boss contestant Swami Om has claimed he told show's host Salman Khan and the makers to ensure Shilpa Shinde wins Bigg Boss 11.
Summary:
The Sympulse Sundowner, the grand finale of Sympulse '18, will host an exquisite line-up of comedians and musicians on 21st January at Koregaon Park, Pune.
Summary:
Australian opener David Warner took to Instagram to share a video of his elder daughter Ivy Mae singing England supporters' chant 'Oh Jimmy Jimmy Anderson'.
Summary:
Online classifieds platform Quikr has reported a 55% rise in revenue to â¹63.8 crore for the the financial year 2016-17, according to filings.
Summary:
US-based energy management startup Bidgely has raised $27 million in its Series C funding round led by Canadian venture capital firm Georgian Partners.
Summary:
A 1.1-km-wide asteroid classified as "potentially hazardous" by NASA will reportedly fly past Earth at a speed of over 1 lakh kmph on February 4.
Summary:
The gravitational-wave event was detected by LIGO and confirmed by its gamma-ray emission by over 70 telescopes worldwide.
Summary:
Union minister Arjun Ram Meghwal on Friday said that although PM Narendra Modi doesn't have an MBBS degree, he is the "best doctor" to cure six "diseases" that have slowed India's growth.
Summary:
Demanding a rollback of the hiked Metro fares, several students from the Delhi University staged a protest outside the Vishwavidyalaya Metro station on Thursday.
Summary:
Notably, ceasefire violations by Pakistan killed a 17-year-old girl and a BSF jawan on Thursday.
Summary:
A 45-year-old woman in Kerala was arrested on Thursday after she confessed to the police that she killed her 15-year-old son for teasing her.
Summary:
Diesel price reached a record high of â¹62.44 per litre in Delhi on Friday as international oil prices continue to rise.
Summary:
A man in Uttar Pradesh's Hapur district allegedly threw his wife off a building's terrace after giving her instant Triple Talaq for not meeting his dowry requirement of â¹3 lakh.
Summary:
F Lalchhandama, a 17-year-old boy who lost his life while saving his friend from drowning, is a recipient of the National Bravery Award this year.
Summary:
The top leadership of the United Nations has assumed full gender parity for the first time in the 72-year-old history of the world body.
Summary:
That is the job of the state", it said while rejecting the submission that the film's screening may cause serious threats to life, property, law and order.
Summary:
The T20I tri-series between India, Bangladesh, and Sri Lanka, scheduled in March, has been preponed.
Summary:
Reports had claimed that Zuckerberg bought the yacht from New Zealand's billionaire businessman Graeme Hart.
Summary:
UC Berkeley neuroscientists have claimed to track the progress of a thought through the brain, by recording the electrical activity of neurons.
Summary:
The patches allow UV light to reach the bone, where it is absorbed and then emitted as blue fluorescent light.
Summary:
The Central Board of Secondary Education (CBSE) has revised Class 12 examination date sheet for 2018 by shifting the date of Physical Education exam from April 9 to April 13.
Summary:
Baloch activist Mama Qadeer has alleged that Pakistan's intelligence agency ISI paid Mullah Omar, known to be their agent in Balochistan, "crores of rupees" to abduct Kulbhushan Jadhav from Iran.
Summary:
When people can share their information with private insurance and mobile companies, why do they have a problem sharing the information for Aadhaar, the Supreme Court asked on Thursday.
Summary:
Indians registered a 12% point increase in the US naturalisation rate during 2005 and 2015, the biggest increase in the number of immigrants who obtained the US citizenship, according to a Pew Research Center study.
Summary:
The singer went missing on Sunday when she had gone to attend an event with another performer.
Summary:
The US has called for 26/11 Mumbai terror attack mastermind Hafiz Saeed's prosecution "to the fullest extent of the law".
Summary:
Hackers have compromised more than 14% of the Bitcoin and Ethereum supply, said Lex Sokolin, Global Director of Fintech Strategy at Autonomous Research.
Summary:
She said DoT plans to introduce a ranking system for telecom operators to tackle the problem of dropped calls.
Summary:
The Delhi High Court on Thursday asked IndiGo, Delhi airport operator DIAL and DGCA to resolve amicably a dispute over partially shifting airline operations from Terminal-1 to Terminal-2 at Delhi's IGI Airport.
Summary:
Bollywood stars Amitabh Bachchan, Aishwarya Rai and Karan Johar, among others posed for a selfie with the Israeli PM Benjamin Netanyahu at the event 'Shalom Bollywood'.
Summary:
The discovery of a drawing 'The Hill of Montmartre with Stone Quarry' by Vincent van Gogh has been confirmed, dating to 1886.
Summary:
Anukul Roy picked up four wickets to help dismiss Zimbabwe for 154 before India went on to chase down the target with 170 balls remaining.
Summary:
Former world number ones Roger Federer and Novak Djokovic have called for an increase in the pay players earn at the Grand Slam tournaments.
Summary:
Indian cricketing legend Sachin Tendulkar shared a congratulatory message on Twitter after Indian captain Virat Kohli was named the ICC Cricketer of the Year.
Tendulkar's message read, "No surprises there at all.
Notably, Kohli is only the fourth Indian to win the Sir Garfield Sobers Trophy.
Summary:
Facebook's Director of AI (artificial intelligence) Research Yann LeCun has claimed that world's first robot citizen Sophia is not intelligent, has no feelings and "zero understanding of what it says." His comment came in response to Sophia's tweet which said it was "hurt" by LeCun's comment around its AI.
Summary:
WhatsApp on Thursday launched its Business App, which focusses on connecting users with small businesses, for Android.
Summary:
WhatsApp is working with State Bank of India, HDFC Bank, ICICI Bank, and Axis Bank to integrate its Unified Payments Interface (UPI)- based payments platform.
Summary:
Microsoft is developing an artificial intelligence technology (AI) that can generate images based on text descriptions, the company has said.
Summary:
The Indian Army has successfully completed the construction of a foot overbridge at Ambivli railway station and the commuters will be able to use the bridge from January 31.
Summary:
Member of Parliament Alok Sanjar from Madhya Pradesh apologised and paid a fine of â¹250 for riding a motorcyle without wearing a helmet at a rally.
Summary:
Google has awarded nearly â¹72 lakh to researcher Guang Gong for finding bugs in its Pixel devices.
Summary:
This comes after the years 2014, 2015, and 2016, all consecutively broke records for the hottest years, which NASA attributed to increased carbon dioxide and other human-made emissions.
Summary:
Dozens of former and current employees at the United Nations have claimed that sexual harassment, including rape, goes unpunished at the world body, according to a Guardian report.
Summary:
Facebook has appointed outgoing American Express CEO Kenneth Chenault to its board, making him the first African-American to be on the board.
Summary:
The school principal was also taken into police custody for allegedly hiding the incident.
Summary:
PM Narendra Modi will felicitate seven girls and eleven boys with the National Bravery Awards on January 24.
Summary:
Singh has served in the Army between 1963 and 1966 and also fought the 1965 war against Pakistan.
Summary:
Officials said an estimated 75% of the 94 police stations will be covered under the schedule.
Summary:
A three-year drought around South Africa's Cape Town has led the City officials to fear a "Day Zero" on April 21, 2018, where taps would be turned off and people would have to queue for water.
Summary:
Singer Ricky Martin, while opening up about his own personal struggles with coming out as gay, said, "It was extremely painful for me." He added, "I grew up in this culture that told me that my feelings...were evil." Martin further said, "I was...a sex symbol.
Summary:
Addressing an event in Mumbai, Israeli PM Benjamin Netanyahu on Thursday said, "World loves Bollywood, Israel loves Bollywood, I love Bollywood." Netanyahu also invited several Bollywood personalities including Imtiaz Ali, Amitabh Bachchan, and Karan Johar to click a selfie.
Summary:
Speaking about Rajinikanth, Akshay Kumar said, "Everything he does is so stylish." He added, "I even enjoyed getting punched by him." Recalling an incident he witnessed, Akshay revealed, "Once, we were just sitting on the set, waiting for next shot and he brushed some dirt off his pants.
Summary:
Rajan Nayer, a former official in Zimbabwe cricket administration, has been suspended by the International Cricket Council (ICC) on charges of fixing international matches.
Summary:
A late goal from Spanish forward Marco Asensio against Leganes on Thursday helped Real Madrid end their three-match winless run in all competitions.
Summary:
The feature only allows the accounts a user follows or anyone they message to see the status.
Summary:
Bengaluru-based security management startup myGate has raised â¹16 crore in its first round of funding, led by Prime Venture Partners.
Summary:
Baluni also accused Congress President Rahul Gandhi of holding "secretive" meetings with China during the Doklam standoff.
Summary:
The recent Make-II initiative introduced for defence procurements will help small industries participate in manufacturing defence equipment, Defence Minister Nirmala Sitharaman said on Thursday.
Summary:
This follows the Transport Ministry's recent directive stating that crash guards pose serious safety threats to pedestrians and occupants of the vehicles.
Summary:
The doctors at a Tamil Nadu hospital allegedly left a piece of gauze inside a four-year-old boy while performing a surgery.
Summary:
Three years is too less a time to bring about major changes in the national capital, Delhi Commission for Women Chairperson Swati Maliwal said referring to the commission's contribution towards women's cause.
Summary:
Virat Kohli on Thursday won the Sir Garfield Sobers Trophy, becoming the fourth Indian to win the ICC Cricketer of the Year award.
Summary:
It was only the third instance of India being beaten by Pakistan in an ICC tournament.
Summary:
The Congress led-UPA government had introduced the Aadhaar policy as "a voluntary instrument to empower citizens", he added.
Summary:
Referring to reports that China was building a military complex in the Doklam region, Ministry of External Affairs on Thursday clarified that the status quo in the region had not altered.
Summary:
The Maharashtra government has announced a 1% reservation in government jobs and education for orphans in the state.
Summary:
This comes amidst reports of several rape cases in Haryana over the past one week.
Summary:
Romania's ruling party has nominated Viorica Dancila as the country's new PM after Mihai Tudose resigned from the post following a power struggle within the party.
Summary:
Labelling China as a disruptive power in the Indo-Pacific region, the head of the US military's Pacific command Admiral Harry Harris on Thursday called on the countries in the region to come together to ensure peace and stability.
Summary:
Swiss MP Niklaus-Samuel Gugger revealed at a recent conference that after 15 days of his birth he was abandoned by his biological Indian mother at a Karnataka hospital.
Summary:
India's largest telecom operator Bharti Airtel has reported a 39.3% year-on-year decline in profit at â¹305.8 crore for the December quarter, after telecom regulator TRAI ordered a cut in mobile interconnection charges.
Summary:
Salman Khan's rumoured girlfriend Iulia Vantur, while talking about her equation with actress Katrina Kaif, said, "We (Katrina and I) spoke so many times...We have nothing to (fight about)...
Summary:
Directed by Chakri Toleti, the comedy film is scheduled to release on February 23.
Summary:
Madhya Pradesh minister Bhupendra Singh has said he never opposed playing of songs from the film 'Padmaavat'.
Summary:
According to reports, actress Taapsee Pannu will be playing the role of a professional shooter in the film titled 'Womaniya', which will be produced by Anurag Kashyap.
Summary:
Summary:
Sachin Tendulkar took to Twitter to share two old pictures of himself with Vinod Kambli on the occasion of the latter's 46th birthday.
Summary:
Swine flu has caused 24 deaths in Rajasthan since January 1, while 374 people in the state tested positive for the disease in the same period, reports said.
Summary:
The Central Railway has planned to install 11,000 CCTVs in all the compartments of its local trains by the end of 2018 at an estimated cost of â¹177 crore.
Summary:
The Vemula family had earlier slammed Irani, the then Human Resource Development Minister, claiming she lied in the Parliament about the events around Rohith's suicide.
Summary:
Slamming former PM Manmohan Singh for not defending him in the 2G scam case, former Telecom Minister A Raja has said Singh's silence was like "silencing of our nation's collective conscience".
Summary:
The Kerala High Court has ordered the state government to pay â¹1.75 lakh as compensation to a man who lost sight in one eye during hartal violence 13 years ago.
Summary:
The Limca Book of Records has named Jammu and Kashmir's 'Gulshan Books' as the 'only bookshop-library on a lake' in its 2018 edition.
Summary:
A BSF jawan was martyred and a teen girl killed on Thursday during a ceasefire violation by Pakistan along the International Border in Jammu.
Summary:
A court in Canada has convicted a 21-year-old woman of killing her friend after police officials noticed the murder weapon in a selfie posted on Facebook.
Summary:
The drivers also claimed that Metro stations were being used as places of business by drug dealers.
Summary:
They were provided a handwritten religious marriage document signed by a Chilean bishop onboard.
Summary:
Describing Donald Trump as a "disaster" for the human rights movement, the head of Human Rights Watch Kenneth Roth on Thursday said that the US President has encouraged oppression by authoritarian leaders across the world.
Summary:
The GST Council on Thursday decided to put 29 handicraft items in the 0% tax slab and reduce rates on 53 services.
Summary:
Following his 153 in the Centurion Test, India captain Virat Kohli leapfrogged to second spot in the ICC Test rankings and reached 900 Test rating points.
Summary:
Lifeguards used a drone to help rescue two young swimmers from rough seas off the northern coast of New South Wales in Australia on Thursday.
Summary:
De Villiers came to bat in the 39th over and scored a 44-ball 149 in 59 minutes, hitting 16 sixes and 9 fours.
Summary:
The Bruhat Bengaluru Mahanagara Palike (BBMP) has announced its decision to get 100 more bike ambulances in the city to provide emergency first aid to accident victims.
Summary:
Nearly 2,000 people have been arrested in four districts across Andhra Pradesh for organising cockfights during Sankranti despite a court-ordered ban.
Summary:
The government is working on a proposal that will require retailers to report purchases above â¹6 lakh to the Financial Intelligence Unit (FIU), according to reports.
Summary:
Notably, Black Friday is regarded as the first day of the Christmas shopping season with retailers offering huge discounts.
Summary:
US President Donald Trump on Thursday denied claims that the country's embassy in Israel will be moved to Jerusalem within a year.
That's no," Trump said.
Summary:
The UK government on Wednesday listed unusual excuses that it had received for late tax returns.
Summary:
Ratings agency Moody's has estimated that Mukesh Ambani-led Reliance Industries may spend as much as $23 billion on Jio over 3-4 years.
Summary:
Lokendra Singh Kalvi, the convenor of Rajput organisation Karni Sena, has said that the public should impose curfew in cinema halls that screen 'Padmaavat'.
Summary:
Sunny Leone's statue will be unveiled at the Madame Tussauds wax museum in Delhi.
Summary:
Actress Kareena Kapoor Khan has turned showstopper for fashion designer Vikram Phadnis' show in Doha, Qatar.
Summary:
Summary:
Former Indian cricketer Sachin Tendulkar took to Instagram to share a video of himself picking a lemon from a tree with his friends.
Summary:
An air hostess conducted a marriage ceremony for a couple on a Southwest flight before handing the newlyweds ceremonial wings.
Summary:
A businesswoman is selling ã10 (â¹880) raffle tickets for her ã1 million (â¹8.8 crore) cottage in England.
Summary:
Actor Kamal Haasan, who recently announced his decision to enter politics, said that he will begin his Tamil Nadu yatra from former President Dr Abdul Kalam's residence in Ramanathapuram on February 21.
Summary:
Earlier the bank provided onlyna Digital Rupay card which was linked to a user's Paytm Payments Bank savings account.
Summary:
A Swedish skier was killed on Thursday after an avalanche hit a ski resort in J&K's Gulmarg, while another Swedish national who was with him was rescued alive.
Summary:
A female BMRCL loco pilot filed a police complaint claiming an unidentified man armed with a knife snuck into her apartment, smoked, littered and left the place after smelling and taking away the undergarments.
Summary:
Angry with his wife for filing a domestic violence case against him, a man allegedly stabbed his father-in-law to death in Delhi.
Summary:
A cleric from a madrasa in Maharashtra's Nanded has been booked for allegedly raping a 12-year-old girl after showing her a porn clip on phone and molesting another minor.
Summary:
The Allahabad High Court has imposed a â¹5,000-fine on the Prime Minister's Office and the Law Ministry after they sought an extension to file the response to a PIL.
Summary:
China's Kweichow Moutai, the world's most valuable liquor firm, is suffering from inventory shortages caused by rising nation-wide demand.
Summary:
For the first time in over 11 years, US bank Goldman Sachs is worth less than its rival, Morgan Stanley.
Summary:
Further, Zaira Wasim has been nominated in the Best Actor In A Leading Role (Female) category.
Summary:
Summary:
Reacting to the Supreme Court's decision to allow an all India release of 'Padmaavat', Rajasthan Home Minister Gulab Chand Kataria said, "The order given by the court will be studied".
Summary:
Summary:
Hobart Hurricanes' Jofra Archer inflicted a run-out with a direct hit while lying down, having one stump in view to aim at, during a BBL match against Adelaide Strikers on Wednesday.
Summary:
India overtook the US to take the second spot for the number of app downloads in 2017, as per the App Annie 2017 Retrospective report.
Summary:
Swedish camera manufacturer Hasselblad has introduced a 400-megapixel multi-shot camera H6D-400C MS.
Summary:
The study also called for reducing microwaves' electricity consumption by using it efficiently.
Summary:
Further, 75% of the deaths were in rural areas, the report stated.
Summary:
Lauding a 14-year-old Indian boy for creating a drone to identify landmines, Israeli PM Benjamin Netanyahu on Thursday said, "This was slumdog millionaire." Netanyahu, who met the boy during his visit to Ahmedabad's iCreate Centre, said the invention will save lives.
Summary:
Police said they have initiated a probe and their focus is to find the purpose of the complex since the area near the temple is highly sensitive.
Summary:
Clarifying that Pakistan won't compromise on national integrity, Foreign Minister Khawaja Asif on Thursday said that the country can survive without US aid.
Summary:
The couple said they were earlier doing "regular stuff" like buying groceries and sleeping early on Sundays.
Summary:
Private sector lender Yes Bank on Thursday posted a 22% year-on-year rise in profit at â¹1,076.8 crore for the December quarter, compared to â¹882.6 crore a year earlier.
Summary:
Russian Athletics Federation's president said he wasn't "surprised", adding that the list of athletes will be passed to Russian Anti-Doping Agency.
Summary:
Xiaomi said it has updated its App Store listing with a newer version, approved by WhatsApp.
Summary:
Japanese gaming company Nintendo has unveiled do-it-yourself (DIY) cardboard accessories which interact with the company's gaming system Switch.
Summary:
A US judge has approved a $7.75-million deal, offering 1.6 million (16 lakh) California drivers an average $1.08 each, to settle a lawsuit against Uber.
Summary:
Astronomers using Chile-based Very Large Telescope have discovered a star in the Milky Way orbiting an invisible body four times more massive than the Sun. The astronomers noticed the star being flung backwards and forwards at high speeds every 167 days, signalling a black hole.
Summary:
The Hyderabad University on Wednesday barred media from entering its premises to attend an event commemorating Dalit PhD scholar Rohith Vemula's second death anniversary.
Summary:
The Bombay High Court has observed that the financial status of a person is not a criterion for refusing them a firearm licence.
Summary:
A Russian couple has been arrested for regularly raping their 12-year-old daughter from December 2016 to March 2017.
Summary:
A former CIA agent has been charged with unlawful retention of classified information for keeping details of US agents, safe houses and other secrets, years after retiring from the agency.
Summary:
Summary:
Earlier, Intel said that the security patches were causing reboot problems for older processors.
Summary:
Bengaluru-headquartered mobile advertising startup InMobi has appointed investment banker Marc Steifman as its Chief Financial Officer (CFO).
Summary:
Three Indians have been included in ICC's Test Team of the Year, with the cricketer of the year Virat Kohli being named the captain of the side.
Summary:
Rohit, who scored his third ODI double century recently, was included in the team last year, while Bumrah has been named for the first time.
Summary:
Pakistani actress Saba Qamar broke down in a television interview while talking about how she is frisked more at airports due to her nationality.
Summary:
Declaring that he isn't anti-Hindu, the actor said he is anti-Modi and anti-Amit Shah instead.
Summary:
Horn read Intel manuals and investigated how processors handle speculative execution.
Summary:
Apple CEO Tim Cook said both full-time and part-time employees are eligible for the bonus.
Summary:
The Supreme Court on Thursday rejected a plea seeking to ban the media from publishing, discussing, or politicising the issues raised by four senior judges in a press conference last week.
Summary:
Switzerland's richest man and pharmaceutical tycoon Ernesto Bertarelli has been fined over â¹2 crore for driving at a speed of 88 km per hour in a 50 zone in December 2016 near Geneva.
Summary:
A former personal assistant to Goldman Sachs' President and Co-Chief Operating Officer David Solomon has been charged with stealing hundreds of bottles of wine worth over $1.2 million (â¹7.6 crore) from his former boss.
Summary:
A college in China gave its students papers with photographs of seven people during their exams, and asked them to select their teacher and write the name.
Summary:
The company said it could not pass some benefit of GST rate reduction to the consumers due to lack of time and pipeline issues.
Summary:
The bank is also only the third Indian company to achieve this milestone after Tata Consultancy Services (TCS) and Reliance Industries.
Summary:
Spiritual leader Sri Sri Ravi Shankar has said he loved watching Sanjay Leela Bhansali's 'Padmaavat' and found nothing objectionable about it.
Summary:
Lionel Messi missed a penalty as Barcelona's 29-match unbeaten run ended with a 0-1 loss against Espanyol in the Copa del Rey quarter-final first leg on Wednesday.
Summary:
Authorities had said that Air Berlin stock must be auctioned off to recover some of the cash.
Summary:
The urologist used medical supplies on the flight for the delivery.
Summary:
Regional language social networking app ShareChat has raised $18.2 million in Series B funding round led by Chinese smartphone manufacturer Xiaomi.
Summary:
Technology giant Google and Singapore-based venture fund Temasek are investing in Indonesia-based Uber rival Go-Jek, according to reports.
Summary:
Using DNA sequencing, UK-based scientists have found the 'Two Brothers' mummies at the Manchester Museum have different fathers, making them half-brothers.
Summary:
US-based researchers are developing a male contraceptive pill based on a plant extract that African hunters traditionally used as heart-stopping poison on their arrows.
Summary:
The government is planning to set up a â¹2,200-crore fund to finance solar projects to achieve its target of having 175 GW in renewable energy by 2022.
Summary:
An eight-year-old boy on Wednesday was allegedly killed in cross-fire during an encounter between police and criminals in Uttar Pradesh's Mathura.
Summary:
The victim, Ikra Chaudhary, said she also found a note that read "Now call your Ram" in the house.
Summary:
Uttar Pradesh CM Yogi Adityanath on Thursday said that madrasas need to be modernised and closing the minority institutions is not a solution.
Summary:
Congress spokesperson Randeep Singh Surjewala on Thursday said that the government was "snoozing" while the Chinese troops occupied the Doklam plateau.
Summary:
The Uttar Pradesh government has decided to start metro services in Agra, Kanpur, and Meerut by 2024 at an estimated cost of â¹43,800 crore.
Summary:
Telangana Police has started a survey of all criminals across the state to prepare a database to easily identify and track them whenever there is an offence.
Summary:
The court also restrained other states from banning 'Padmaavat'.
Summary:
The counting for all three states will be held on March 3.
Summary:
World's top-ranked Test batsman Steve Smith has been named ICC's Test Cricketer of the Year.
Summary:
Indian spinner Yuzvendra Chahal's six-wicket haul against England in a T20I in February last year at Bengaluru has been named ICC's T20I Performance of the Year.
Summary:
Apple CEO Tim Cook has said the next iOS update will allow the users to disable the intentional slowdown of their devices.
Summary:
Interestingly, 40% of about 1.43 lakh people employed in Seattle's IT sector were born in another country.
Summary:
Indian Railways' Delhi Division has been asked to upgrade its waiting rooms by providing modern facilities for passengers as part of a pilot project.
Summary:
In a first, an international team of researchers have recreated a part of DNA of an Iceland-based man Hans Jonatan, who died in 1827, from 182 of his living descendants rather than his physical remains.
Summary:
Summary:
India has reapproved a deal to buy 1,600 Israeli anti-tank guided missiles, Israel's PM Benjamin Netanyahu has said.
Summary:
Flying an Unmanned Aerial Vehicle or drone without obtaining permission from authorities is illegal in Nepal.
Summary:
India on Thursday test-fired the nuclear-capable inter-continental ballistic missile Agni-V, whose range includes the northernmost part of China.
Summary:
The Central Board of Secondary Education (CBSE) has scrapped the practice of giving schools permanent affiliations.
Summary:
But it can't be stopped." Earlier, McAfee revealed he used cryptocurrency to pay for prostitutes and porn.
Summary:
She's strong, feminine, lovely...all at the same time." Sonam further said Waheeda Rehman, who played Rosie's character, was excellent in the film.
Summary:
Kangana Ranaut has said sharing the horrific secrets of her life with people who were empathetic felt like detox.
Summary:
A 55-year-old American man who bit off a chunk of his wife's nose, permanently disfiguring her, will spend more than six years in prison following his sentencing on Tuesday.
Summary:
Israel-based firm Vayyar has developed a device 'Walabot DIY' that can see through walls using 3D imaging sensors.
Summary:
A shuttle bus chartered by Google was also attacked outside San Francisco, US, the police confirmed.
Summary:
The Archaeological Survey of India has told local affiliates to double up efforts to find the list of 'untraceable' historic antiquities and monuments including temples and tombs.
Summary:
Carmelo Ferlito, an Italy-based volcanologist has suggested that Mount Etna, Europe's tallest and most active volcano, behaves more like a giant hot spring.
Summary:
The boy was the main suspect in the rape and murder of a 15-year-old girl, whose body was found with her private parts mutilated and liver ruptured.
Summary:
An official said, "When we have launched special drive against cleanliness, a school teacher is supposed to cooperate with us.
Summary:
This comes after the White House physician revealed that Trump needs to lose 4-6 kg by starting to exercise.n
Summary:
US President Donald Trump on Wednesday announced the 'winners' of his 'Fake News Awards' on his party website.
Summary:
Defending his father from the accusations of racism, US President Donald Trump's son Eric Trump on Wednesday said, "My father sees one colour: green," referring to the colour of money.
Trump was recently accused of racism by the United Nations for allegedly calling certain African nations 'shitholes'.n
Summary:
After launching the new Shut The Fake Up campaign, which urges everyone to be real, Fastrack has now launched the Faketionary.
Summary:
He has also been named the captain of Men's ODI and Test Teams of the Year.
Summary:
The government has announced April 1 as the deadline for the mandatory installation of Global Positioning System (GPS) devices and panic buttons in all passenger transport vehicles, including taxis and buses.
Summary:
Facebook has agreed to investigate the spread of Russian misinformation before UK's 2016 referendum to leave the European Union.
Summary:
Further, the company will pay $38 billion in tax on its overseas cash.
Summary:
The operator added that it aims to be the world's first to switch to electric air transport.
Summary:
Titan, the only other body in the Solar System with stable liquid on its surface, has seas filled with liquid hydrocarbons like methane, which lie at an average elevation like the "sea level" on Earth, according to NASA.
Summary:
China has taken almost complete control of the northern side of the disputed Doklam region, by building seven helipads, concrete posts, trenches and deploying several dozen armoured vehicles on the plateau, according to a report.
Summary:
Mohit Gupta from Haryana's Karnal has topped the all-India Chartered Accountancy final exam with a score of 587 out of 800 (73.38%).
Summary:
The 1993 Mumbai blasts mastermind Dawood Ibrahim is using his nephews to send messages to his brother Iqbal Kaskar who is lodged in a jail in Maharashtra, reports said.
Summary:
The Supreme Court has agreed to examine whether former Presidents and Prime Ministers are entitled to government bungalows after leaving office.
Summary:
American pornstar Stormy Daniels had said in an interview in 2011 that US President Donald Trump had once compared her to his daughter Ivanka Trump during their sex affair.
Summary:
Phillips said it was a "great sound" when the baby started crying after delivery.nnnn
Summary:
As per reports, actress Deepika Padukone has been approached to star opposite Prabhas in an upcoming bollywood film.
The makers are also said to be considering Alia Bhatt and Katrina Kaif if Deepika rejects the film.
Summary:
Stating that performing for the inmates was an "unforgettable experience", Mahadevan said he was touched by the "amazing audience".
Summary:
The trailer of the upcoming film 'Dil Juunglee', starring Taapsee Pannu and Saqib Saleem, has been released.
Summary:
Ex-India captain Kapil Dev has said all-rounder Hardik Pandya doesn't deserve to be compared with him if he continues committing "silly mistakes".
Summary:
Users can also comment and react the same way as they do on Live.
Summary:
UK-based entrepreneurs have designed a fitness app Sweatcoin that pays users to be physically active using accelerometers and GPS location.
Summary:
His family had alleged that Minister Smriti Irani lied about his death in Parliament.
Summary:
Pune-based edtech startup Rubix108 has raised $1 million in pre-Series A funding round led by Polaris Fund and investor Ayush Kankariya.
Summary:
Silicon Valley startup CircleCI, which provides automation to build, test and deploy code, has raised $31 million in a funding round led by Top Tier Capital Partners.
Summary:
The FIR was registered against the suspects after one of the girls overheard their conversation regarding the pictures.
Summary:
Several restaurants, pubs, and bars which were operating in Bengaluru without trade licences have closed down rooftop operations following a crackdown by the Bruhat Bengaluru Mahanagara Palike, the civic body has said.
Summary:
It asked them to coordinate with approved telecom service providers willing to provide internet services for free.
Summary:
The court took the decision after the woman expressed apprehensions that her former husband might try to harm her reputation by posting her pictures.
Summary:
Of the 16 arrested people, seven are businessmen, four are money converters, and five are field agents, police officials said.
Summary:
Reiterating that 'Padmaavat' has been banned in Madhya Pradesh, state Home Minister Bhupendra Singh has said people should not play its songs.
Summary:
Anti-virus provider Kaspersky Lab has discovered an Android spyware called Skygofree which can steal WhatsApp messages and record audio via microphone when an infected device is in a specified location.
Summary:
AIADMK leader VK Sasikala's brother Dhivakaran has claimed that late Tamil Nadu CM Jayalalithaa had died on the evening of December 4 and not on December 5 when it was declared to the general public.
Summary:
Israeli Prime Minister Benjamin Netanyahu misspelled Gandhi as "Ghandi" in a note left at Mahatma Gandhi's ashram during his visit to Gujarat.
Summary:
Amidst outrage over multiple rape incidents in Haryana, Additional Director General of Police RC Mishra has said rapes are "part of the society" and have been taking place "since forever".
Summary:
Rawat said the Indian Army was prepared to face them if they come back.
Summary:
Following reports that pornstar Stormy Daniels was paid $130,000 before the 2016 US presidential election for her silence over a sexual encounter with Donald Trump, she revealed that her affair with the President lasted "nearly a year".
Summary:
The loan, taken in 2014, will be repaid over a period of 20 years.
Summary:
Saudi Prince Alwaleed bin Talal, the Middle East's richest person, has been moved from the five-star hotel where he was being held to a jail after refusing to pay $6 billion in a reported settlement with Saudi authorities.
Summary:
Mumbai has been ranked as Asia's fifth most expensive rental city for expatriates, leaving behind Singapore which stood at eighth rank on the list.
Summary:
The company's revenue grew 3.3% to â¹8,590 crore.
Summary:
Bitcoin reached an all-time high of about $19,700 on December 17 last year and the price plunged to as low as $9,500 on Wednesday.
Summary:
Tweeting about the article, the actress wrote, "Dear Yahoo: how do I get to this timeline where I've slept with Enrique Iglesias please."
Summary:
Actor Kamal Haasan, who announced his entry into politics last year, has said he will announce the name of his political party and its guiding principles on February 21.
Summary:
The user's breath determines the computer's hash rate, which then determines how much Monero the computer can mine.
Summary:
The ministry clarified that Doval was instead part of a regular meeting on national security.
Summary:
Claiming that the woman had lived with him in Saudi Arabia for a month, he said she went back to India after her father fell ill.
Summary:
Bihar Deputy CM Sushil Kumar Modi on Wednesday tweeted that the liquor mafia and opposition party RJD were behind the attack on CM Nitish Kumar's convoy in Buxar earlier this month.
Summary:
The hike will be applicable at all 16 civic hospitals and is expected to be implemented from April.
Summary:
A video showing a Dalit youth being thrashed and forced to chant 'Jai Mata Di' in Uttar Pradesh's Muzaffarnagar has surfaced online.
Summary:
Sunni and Shia clerics have together filed an FIR against Uttar Pradesh Shia Waqf Board chief Waseem Rizvi for allegedly spreading hatred against the Muslim community and its educational institutions.
Summary:
Delhi CM Arvind Kejriwal has announced the government's decision to install CCTVs in all classes of government schools.
Summary:
The IRCTC has apologised for printing posters depicting an ISKCON temple's photograph as Puri's Jagannath Temple.
Summary:
Reports said police later persuaded her to cremate Gurpreet's body, which was found on January 9.
Summary:
Union Minister Prakash Javadekar has said 15% universities which are rated A++ and A+ by the National Assessment and Accreditation Council (NAAC) will be allowed to offer online courses for non-technical three-year degrees.
Summary:
Thousands of candidates travelling to Gwalior after an Army recruitment program allegedly hijacked a train plying from Madhya Pradesh's Shivpuri to Rameshwaram and forced the engine driver to take it back to Shivpuri.
Summary:
Students at West Bengal's Jadavpur University have been on a sit-in protest since Monday, demanding revocation of a bill enabling the state government to form rules and procedures for student union elections.
Summary:
Virat Kohli got into a spat with a journalist who questioned his "lack of consistency" in selecting the team, noting that India fielded a different playing XI in each Test under him.
Summary:
The RBI on Wednesday reiterated that all 14 designs of â¹10 coin are legal tender for transactions.
Summary:
Malaysia's Sultan Ibrahim Ibni Iskandar, the ruler of the state of Johor, has received a life-size replica of a Stone Age car from the 1960s cartoon 'The Flintstones' as a belated birthday gift.
Summary:
Guardians of the Galaxy director James Gunn has offered to donate $100,000 to US President Donald Trump's favourite charity if "he'll step on an accurate scale with an impartial medical professional".
Summary:
Former India captain Sunil Gavaskar has suggested that MS Dhoni should have just quit Test captaincy instead of leaving Test cricket altogether.
Summary:
On May 1, 2005, Ronaldinho chipped the ball over two defenders before Lionel Messi chipped it over the Albacete goalkeeper to score his first of 530 goals for Barcelona.
Summary:
After getting fired by RAW General Manager Kurt Angle, WWE wrestler Braun Strowman angrily overturned a truck all by himself.
Summary:
It also takes only 2 minutes to refill the bike with hydrogen using the filling station.
Summary:
Speaking at the inauguration of entrepreneurship incubation centre 'iCreate' in Ahmedabad, Prime Minister Narendra Modi on Wednesday said that the centre's name did not carry a capital 'I' as it implies ego and arrogance.
Summary:
The first Jallikattu-related death was reported on Monday after a 19-year-old was gored to death by a bull in Madurai.
Summary:
However, Chandrasekhar retweeted the video posted by an RSS worker, who dubbed the incident as an attack by CPI(M) workers.
Summary:
Iran Supreme Leader Ayatollah Ali Khamenei on Tuesday said Saudi Arabia betrayed the Muslim world by aligning with the US.
Summary:
The Adani Group on Wednesday said it would invest â¹750 crore to double the capacity of the company's edible oil refinery at Haldia in West Bengal.
Summary:
Notably, the government's fiscal deficit was 112% of the â¹5.47 lakh crore target for 2017-18 from April to November.
Summary:
Bigg Boss 11 contestant Priyank Sharma, who was questioned about his sexual orientation during the show, said, "Trolls on my sexual orientation and character do affect me." During an argument on the show, Arshi Khan had called him gay.
Summary:
Vidya Balan has said that her husband Siddharth Roy Kapur is an intensely private person while adding that she is "badmash".
Summary:
Singer Enrique Iglesias and his partner former tennis player Anna Kournikova shared the first pictures of their newborn twins Nicholas and Lucy on Twitter.
Summary:
Actress Swara Bhasker has said that Twitter timelines of a lot of people, including hers, resemble streets where men are passing comments at women.
Summary:
Brazilian football legend Ronaldinho featured in the first-ever video to reach one million views on YouTube.
Summary:
The Delhi Development Authority (DDA) has written to paramilitary forces including the BSF, CISF, and CRPF to accommodate their staff in over 6,000 flats rejected by allottees of the authority's housing schemes.
Summary:
Kerala's Sabarimala temple has recorded its highest-ever collection of â¹255 crore this pilgrimage season, the state's Tourism Minister Kadakampally Surendran said on Tuesday.
Summary:
The government wants â¹32 crore in total to show all the channels like Aastha and Vedic".
Summary:
The Bombay High Court has asked the Maharashtra government to consider making sanitary napkins available at concessional rates to needy women.
Summary:
Civil Aviation Minister Ashok Gajapathi Raju has said that "suggestions" on Air India's disinvestment are welcome but the proposed stake sale in the national carrier will go on.
Summary:
A 27-year-old Mumbai man was on Tuesday burnt to death after his two-wheeler fell into an open manhole and exploded inside it.
Summary:
Pope Francis was hit by an object resembling a towel thrown at him from the crowds gathered in Chile's capital Santiago.
Summary:
"Saving the rial means saving Yemenis from inevitable hunger," the PM said on Wednesday.
Summary:
Both the nations have also agreed to send a unified women's hockey team for the Games.
Summary:
Ramdev has said Patanjali will be turned into a "non-profit" entity, and that they have used all profits for charity since inception.
We will list Patanjali in people's hearts," he said.
Summary:
Later in an interview, Ronaldinho called the players of the opposing team "terrible".
Summary:
Pacer Lungi Ngidi became the seventh South African to win a Man of the Match award on Test debut, achieving the feat against India in Centurion on Wednesday.
Summary:
Pillay picked up the ball and gave it to Stewart after it stopped near the stumps following a mistimed shot.
Summary:
Describing the law and order situation in Haryana as "worrisome", Congress leader Bhupinder Singh Hooda demanded that CM Manohar Lal Khattar resign on moral grounds.
Summary:
Delhi recorded a total of 9,546 protests in 2017, which is 11.47% less than the 10,784 protests held in 2016, a report by the Delhi Police has revealed.
Summary:
"We can defend ourselves despite this nexus between India and Israel," Asif said.
Summary:
Expressing similar views, DMK working President MK Stalin termed the scrapping "regressive" and "condemnable".
Summary:
Listing the measures undertaken by his government, Khattar said changes have been made in the police administration, including the transfer of a few officers.
Summary:
The petitions that the Supreme Court is hearing against the constitutional validity of Aadhaar argue that it violates the Right to Privacy and may allow the government to increase surveillance of citizens.
Summary:
Former Pakistan Foreign Minister Hina Rabbani has said the US is not present in south Asia for peace and stability but to create chaos in the region.
Summary:
A 45-year-old woman in Northern Ireland claims to have married the ghost of a Haitian pirate named Jack who died 300 years ago.
Summary:
Switzerland's Nestle, the world's biggest packaged-food company, has agreed to sell its US confectionery business to Nutella maker Ferrero for $2.8 billion.
Summary:
Investments worth $26.8 billion were recorded across 589 deals, a 37% increase from previous record set in 2015.
Summary:
'Kumkum Bhagya' actress Shikha Singh exposed the social media identity of a Mumbai police officer named Jagdish Gunge, who asked her for her bikini pictures in a comment.
Summary:
Talking about the contribution of men in household chores, actress Rani Mukerji said, "When we expect that men should go out and work, those men should also be encouraged to participate in the housework." Rani added, "What happens is that they are discouraged from doing it.
Summary:
Bigg Boss 11 winner Shilpa Shinde has said people call her "TV ki Salman Khan" and "Dabangg" on the sets of her TV shows.
Summary:
P Jaya Kumar, writer of Ram Gopal Varma's directorial 'Sarkar 3', has claimed Varma's 'God, Sex and Truth' is a carbon copy of his work right from the first word till the end.
Summary:
Meanwhile, 38-year-old Ivo Karlovic became the oldest man to reach the Australian Open third round in 40 years.
Summary:
A Tamil Nadu league cricketer died and six others were injured after two cars carrying them collided and fell off a bridge in Namakkal district on Monday.
Summary:
Former England all-rounder Andrew Flintoff has revealed that the England and Wales Cricket Board ignored his job application for the coach's post in 2014, as they thought someone else had emailed them.
Summary:
Summary:
The plane was reportedly forced to make the unscheduled stop at San Francisco five hours into the trip as the toilets were not serviced before takeoff.
Summary:
Reports suggest that the fire has engulfed the entire factory and people living nearby have been evacuated.
Summary:
British-Indian sculptor Anish Kapoor has pledged his $1 million Genesis Prize, dubbed the Jewish Nobel Prize, to five charities helping refugees worldwide.
Summary:
The Indian men's hockey team defeated Japan 6-0 in their opening match of the Four Nations Invitational Tournament in New Zealand on Wednesday.
Summary:
The last time India lost a Test series was when Australia defeated them 2-0 in a four-match series in 2014-15.
Summary:
Crouch is the world's first-ever minister tasked with the portfolio of 'Loneliness'.
Summary:
Benchmark index BSE Sensex closed above the 35,000-mark for the first time ever on Wednesday, less than a month after crossing the 34,000-mark.
Summary:
Joe Martin, the policeman, who was also a boxing trainer, suggested Ali to first learn how to fight and began his boxing training.
Summary:
Batsman Cheteshwar Pujara got run-out for 19(47) in the second innings of the Centurion Test on Wednesday, becoming the first Indian cricketer to be run-out twice in a single Test in India's 520-Test history.
Summary:
Samsung India has launched a new shopping app and service, called Samsung Mall, exclusively for the Indian market.
Summary:
US software firm IBM and Denmark's Maersk have announced a joint venture that uses blockchain technology to track international cargo movement.
Summary:
The US state of New Jersey on Monday passed a law making it illegal to fly an unmanned drone aircraft while being drunk.
Summary:
AirAsia India CEO Amar Abrol has ruled out any plans to participate in the proposed Air India disinvestment.
Summary:
"Wishing the master of wisdom & wit a very happy birthday...@Javedakhtarjadu sahab," tweeted Riteish Deshmukh.
Summary:
Actor Prakash Raj has claimed that BJP workers used cow urine to 'clean and purify' the stage where he recently delivered a speech in Karnataka's Sirsi.
Summary:
US-based Southwest Airlines has filed a lawsuit against a website that alerted flyers when the fares of its flights fell.
Summary:
Elmore said, "The couple chose the mountains for their engagement photos because their relationship was kind of brought together by their love of nature."
Summary:
The Four Seasons Beverly Wilshire Hotel in the US has introduced a 'glamping' experience for guests staying at its Veranda Suite, the only hotel room with its own floor.
Summary:
Slamming Congress President Rahul Gandhi, Union Home Minister Rajnath Singh on Tuesday claimed that the party was declining as Gandhi spoke about domestic issues on international platforms.
Summary:
Almost everyone from the Muslim community has welcomed this move, Naqvi added.
Summary:
The technology, called "cell quake elastography", uses a high-speed camera to study cells on a scale of milliseconds.
Summary:
Social media users also reported witnessing a loud sound and buildings shaking in Michigan during the event.
Summary:
The hydrogel-making process, 60% faster than the older one, could boost mass production of organs on a chip, said researchers.
Summary:
Speaking at the inauguration of the iCreate Centre in Ahmedabad, Israeli Prime Minister Benjamin Netanyahu said, "Jai Hind!
Thank you Prime Minister Modi, thank you all!" He added, "The world knows about iPads and iPods, there is one more i that the world needs to know about, that is iCreate".
Summary:
BJP leader Rajdhani Yadav from Jharkhand's Latehar district has been arrested for assaulting a District Transport Officer over removal of a nameplate from the leader's personal car.
Summary:
Had a great time celebrating Tamil Heritage Month and Thai Pongal this evening," Trudeau tweeted after the celebration.nn
Summary:
CollPoll CEO Hemant Sahal said the funds will be used to expand its offerings of campus-related products and services.
Summary:
Uber rival Grab has acquired Bengaluru-based payments startup iKaaz to help expand its digital payments platform GrabPay. As a part of the deal, the iKaaz team will join the Singapore-headquartered Grab's research and development centre in Bengaluru.
Summary:
Further, Twitter's Direct Messaging engineer Pranay Singh claimed users' sex messages and pictures of their illegitimate wives and girlfriends are on his server.
Summary:
UK-based doctors have reported the case of a 34-year-old man who ruptured his throat while trying to stop a high-force sneeze.
Summary:
Sitharaman wore a flight overall, an anti-gravity suit (G-Suit), a helmet, and an oxygen mask while flying the Russia-made frontline combat jet.
Summary:
In 1752, Franklin conducted the famous kite-and-key experiment during a thunderstorm.
Summary:
Google-owned video sharing platform YouTube has announced that it will require creators to have at least 1,000 subscribers and 4,000 hours of annual viewing time to monetise their videos.
Summary:
Interestingly, Oymyakon houses 500 residents and was once a stopover for reindeer herders in the 1920s and 1930s.
Summary:
The discovery could help shed new light on the ancient Maya civilisation, said the group.
Summary:
Prime Minister Narendra Modi along with Israeli PM Benjamin Netanyahu and his wife Sara Netanyahu on Wednesday flew kites at the Sabarmati Ashram in Ahmedabad.
Summary:
Two Assam families, one Muslim and the other Hindu, have opted to keep the babies they took home from a hospital in 2015 instead of their biological sons.
Summary:
The Forest Department is planning to launch '1926', a 24ÃÂ7 national helpline, to allow the public to anonymously file complaints of illegal activities like tree felling and poaching.
Summary:
The US on Tuesday said that it will withhold an aid of $65 million (over â¹415 crore) that it provides to a United Nations agency which supports the Palestinian refugees.
Summary:
Summary:
He added, "I want to make socially relevant films...
I also want my films to reach out to more people."
Summary:
Another poster advising people not to defecate on railway tracks is captioned, "Neele gagan ke tale".
Summary:
Veteran actress Ava Mukherjee, who played the role of Shah Rukh Khan's grandmother in the 2002 film 'Devdas', passed away at the age of 88 on Monday.
Summary:
American technology company Microsoft has topped Thomson Reuters' list of Top 100 Global Technology Leaders.
Summary:
Facebook said that this year, it will invest in "massively simplifying and streamlining" the Messenger app.
Summary:
Modifications in Facebook News Feed are promoting fake news, according to a report by The New York Times.
Summary:
Swiss watchmaker Tag Heuer has unveiled 'Connected Modular 45' watch which features 589 baguette-cut diamonds at the price of over â¹1 crore.
Summary:
US-based storage and rental startup Omni has raised $25 million led by executives of blockchain fintech startup Ripple with participation from Highland Capital.
Summary:
The clusters' formation depends on dark matter and dark energy and studying them helps understand such phenomena, said NASA.
Summary:
The body was sent for postmortem after family members identified it, police officials said.
The minor girlâÂÂs body was found with her private parts mutilated and liver ruptured last week.
Summary:
External Affairs Minister Sushma Swaraj on Wednesday said that terrorism is "undeniably the mother of all disruptions today" and that our attitude towards it has evolved in the last few decades.
Summary:
A 19-year-old woman has been arrested for allegedly murdering her 15-year-old brother for always telling their mother about her speaking to her boyfriend on the phone.
Summary:
Maharashtra CM Devendra Fadnavis has claimed that Bhima Koregaon violence was a conspiracy against the state government and BJP, the party officials said.
Summary:
A BJP leader also burnt Rizvi's effigy and held a demonstration against him in Azamgarh.
Summary:
White-goods maker Amber Enterprises has raised $28 million (â¹178 crore) from Abu Dhabi Investment Authority (ADIA), Goldman Sachs and other anchor investors, ahead of its Initial Public Offering (IPO).
Summary:
Haryana suffered losses worth â¹126 crore due to the violence which erupted after Dera Sacha Sauda chief Ram Rahim's rape conviction, the state's Advocate General Baldev Raj Mahajan told the Punjab and Haryana High Court.
Summary:
One of the founding fathers of the US, Benjamin Franklin was never elected as the country's President.
Franklin is also one of the only two non-presidents who appear in US dollar bills.nn
Summary:
The producers of Sanjay Leela Bhansali-directorial 'Padmaavat' moved the Supreme Court on Wednesday challenging the ban on the film in Rajasthan, Gujarat, and Haryana.
Summary:
Apple supplier in China, Catcher Technology factory, has been accused of chemical safety and overtime violations by its workers, according to China Labor Watch.
Summary:
Google has announced the construction of three new undersea cables in 2019 to help expand its cloud business.
Summary:
Using crawling robots, a Purdue University study has found that babies inhale dust and airborne impurities four times (per kilogram of body mass) what an adult would breathe walking across the same floor.
Summary:
ISRO has released the first image captured by its Cartosat-2 series satellite which was launched from Sriharikota, Andhra Pradesh, on January 12.
Summary:
Stating that the number of seats available in medical colleges in the nation was "highly inadequate", President Ram Nath Kovind on Tuesday said the issue needs to be addressed "very urgently".
Summary:
The station is one of the six stations selected to offer services of paediatricians free of cost.
The station also plans to provide free medicines from nearby pharmacies to visiting patients.
Summary:
Union Women and Child Development Minister Maneka Gandhi has said that students should be taught from major religious texts, including the Gita, Quran and Bible, at least twice a week.
Summary:
The National Investigation Agency and Uttar Pradesh Police in a joint raid have recovered demonetised â¹1,000 and â¹500 notes worth around â¹100 crore from an under-construction house in Kanpur.
Summary:
Gujarat MLA Jignesh Mevani was asked by journalists to leave a press conference in Chennai after he demanded the removal of Republic TV's microphone, on Tuesday.
Summary:
Referring to 26/11 Mumbai terror attack mastermind Hafiz Saeed as 'sahab', Pakistan's PM Shahid Abbasi on Tuesday said that his country won't take any action against him as no case is registered against him in Pakistan.
Summary:
The embassy worths over â¹6,400 crore and is designed like a crystalline cube.nnn
Summary:
Tentatively titled 'Bisahi', the film will be entirely shot in Deepika's home state of Jharkhand starting March.
Summary:
As per reports, TV actress Mouni Roy will play a villain in the Ranbir Kapoor, Alia Bhatt and Amitabh Bachchan starrer upcoming film 'BrahmÃÂstra'.
Summary:
It is reportedly spreading via executable files shared in the form of mails and fake security alerts.
Summary:
WhatsApp is reportedly working on a feature that notifies users of spam messages which have been forwarded many times.
Summary:
A hotel in Dublin has a "genealogy butler" who works with guests interested in learning about their family history.
Helen Kelly assesses guests' ancestors' information, family records and maps before submitting genealogical reports.
Summary:
Italian sports car manufacturer Ferrari's CEO Sergio Marchionne has said, "If there is an electric supercar to be built, then Ferrari will be the first." Adding that people are amazed by Tesla, Marchionne said, he is not trying to minimise what Musk did but thinks "it's doable" by everybody.
Summary:
Reacting to the government withdrawing its Haj subsidy, AIMIM chief Asaduddin Owaisi asked the government to stop the subsidy given to Hindu pilgrims in different parts of the country.
Summary:
The Nagpur Police said judge BH Loya had died due to a heart attack, adding that they had undertaken a thorough investigation.
Summary:
The Supreme Court on Tuesday slammed a CBI-constituted Special Investigating Team not filing the required number of FIRs while investigating alleged extrajudicial killings and fake encounters in Manipur.
Summary:
The policeman was suspended following the incident, officials said.
Summary:
US President Donald Trump is mentally very sharp but needs to lose 4.5 to 6.8 kg by eating better and starting to exercise, the White House physician has said.
Summary:
The H-1B visa programme offers temporary US visas that allow companies to hire highly skilled foreign professionals working in areas with shortages of qualified American workers.
Summary:
The court also ordered Samsung to immediately stop sales and manufacturing of products that use the two patents mentioned in the lawsuit.
Summary:
Ronaldinho had not played for any professional club since 2015 but took part in India's Premier Futsal league.
Summary:
The tower, which is being tested by researchers, has produced more than 10 million cubic meters of clean air since it was launched.
Summary:
On January 17, 1966, a B-52 bomber crashed into a jet refuelling aircraft, dropping three 70-kiloton hydrogen bombs near the Spanish town of Palomares and one at an unknown location in the Mediterranean.
Summary:
The Allahabad High Court has issued a contempt notice to Central Board of Film Certification (CBFC) Chairman Prasoon Joshi over his failure to respond to a petiiton regarding the release of 'Padmaavat'.
Summary:
Visitors at the Mercado de las Brujas market can also find the 'yatiri' or witch doctors who claim to contact the supernatural and deal with spiritual matters.
Summary:
Anil Ambani-led Reliance Communications' (RCom) subsidiary Global Cloud Xchange has said it is laying a 68,000-km undersea cable at a cost of $600 million to carry data across Europe and Asia.
Summary:
The government on Tuesday said it has decided to deregister 1.2 lakh more companies for various non-compliances in the crackdown on shell companies.
Summary:
Supreme Court judge Arun Mishra, who is hearing petitions on Justice Loya's death, on Monday broke down during an informal meeting of the judges in the apex court lounge, reports said.
Summary:
Schumacher's brother Ralf and four-time F1 champion Sebastian Vettel also began their careers there.
Summary:
The police on Tuesday resorted to lathicharge against Congress and BJP workers in Amethi after the two groups clashed during the second day of Congress President Rahul Gandhi's visit to Uttar Pradesh.
Summary:
The Indian non-banking finance company Bajaj Finance has marked down the valuation of mobile wallet company MobiKwik to $279 million from the earlier valuation of $327 million.
Summary:
Togadia had been found in the hospital after going missing for 12 hours.
Summary:
To tackle crimes like cyber threats, child pornography and online stalking, the government is planning to set up a Cyber Warrior Police Force (CWPF), reports said.
Summary:
The Delhi University Admission Committee has recommended colleges to give a 2% relaxation to female students qualifying under the OBC quota.
Summary:
After Kerala CM Pinarayi Vijayan assured support to a man protesting for 768 days against the custodial death of his brother, one of the four accused cops has demanded a CBI inquiry into the case.
Summary:
The Delhi University on Tuesday asked the Delhi government to "immediately" release funds towards the payment of salary of teachers belonging to 12 fully-funded colleges.
Summary:
Around 80 days after committing the crime, a man has been arrested for throwing his four daughters off a moving train in Uttar Pradesh while travelling from Bihar to Jammu and Kashmir.
Summary:
At least nine construction workers were killed and five others were injured after a partially-constructed bridge collapsed in Colombia on Monday.
Summary:
The Chairman of the US Joint Chiefs of Staff, General Joseph Dunford, has said that he's not giving up on the US' ties with Pakistan amid tensions between the two nations over Pakistan's crackdown on terrorism.
Summary:
Victoria's Secret model Nina Agdal has slammed a magazine for not using her pictures while claiming that they deviated from her portfolio and that she "did not fit into the (sample size) samples".
Summary:
Nine cryptocurrency hedge funds, tracked by research firm Eurekahedge, gave combined returns of 1,167% in 2017 compared to Bitcoin's 1,400% gain.
Summary:
Reality television star Kim Kardashian and her husband rapper Kanye West have announced the birth of their third child, a baby girl born via surrogacy.
Summary:
Global smartphone brand, OnePlus has broken the billion-dollar sales barrier for the first time, the company's Founder and CEO Pete Lau has revealed.
Summary:
More than 1,800 Muslim clerics in Pakistan have issued a fatwa against suicide bombings claiming they are 'un-Islamic'.
Summary:
Shoaib Malik scored four runs after a Colin Munro throw bounced off his head to the boundary during the fourth New Zealand-Pakistan ODI on Tuesday.
Summary:
Drawing references from the Hindu epic Mahabharata, Karnataka CM Siddaramaiah on Tuesday likened the people of Congress to Pandavas who are walking on the right path.
Summary:
After the government withdrew its Haj subsidy policy, AIMIM President Asaduddin Owaisi on Tuesday said, "Zyaada baaja bajane ki zarurat nahi hai." Stating that the Supreme Court had ordered the gradual withdrawal of the scheme in 2012, Owaisi claimed that he had proposed the move in 2006.
Summary:
Indian Army chief General Bipin Rawat on Monday said that social media is being used against the army and that one needs to be careful in its use.
Summary:
Adding that foreign tourist arrivals had increased by 15.2%, he said it contributed 6.88% to the country's total GDP and 12.36% to employment in terms of jobs.
Summary:
The Defence Acquisition Council, led by Defence Minister Nirmala Sitharaman, has approved the procurement of 72,000 assault rifles and around 94,000 carbines worth â¹3,500 crore on a fast-track basis.
Summary:
The central government abolished the subsidy completely on Tuesday.
Summary:
Summary:
As per reports, comedian Kapil Sharma will make his comeback to television with a game show.
Summary:
Congress spokesperson Randeep Singh Surjewala on Tuesday said that the BJP should help resolve the Supreme Court controversy and not "muddle and polarise" the issue.
Summary:
India ended the fourth day of the Centurion Test against South Africa at 35/3 on Tuesday, needing another 252 runs to win.
Summary:
Afghanistan's first-ever Test match against India will take place in Bengaluru from June 14-18, marking the first instance of a Test to be held in India in the month of June.
Summary:
India's 2011 World Cup-winning coach Gary Kirsten suffered a cracked jaw after getting struck by a drive during a Big Bash League practice session.
Summary:
Minister Altaf Bukhari had earlier asked General Rawat to "not give sermons".
Summary:
The proposal was put forth by NDMC Chairman Naresh Kumar while reading out the council's budget on Monday.
Summary:
Maharashtra CM Devendra Fadnavis has directed state officials to formulate a package giving incentives to those companies willing to set up Metro coach manufacturing units in the state.
Summary:
Kerala CM Pinarayi Vijayan met and assured support to a man on the 767th day of his sit-in protest outside the Secretariat against the custodial death of his brother.
Summary:
Congress leader Abhishek Singhvi has demanded an independent inquiry into the alleged mysterious death of Justice BH Loya, who was hearing the Sohrabuddin Sheikh encounter case.
Summary:
Israeli PM Benjamin Netanyahu on Monday said that Jews in India have never witnessed anti-Semitism unlike in some other countries.
Summary:
A 12-year-old boy died on Sunday after a firecracker fell on his head during a church festival in Bengaluru.
Summary:
The report further stated that most juveniles were booked on charges likes theft, criminal trespass, and rape among other serious crimes.
Summary:
The Philippine government has revoked the licence of news website Rappler which has been critical of President Rodrigo Duterte and his war on drugs.
Summary:
Bangladesh has said it will complete the return of the Rohingya refugees to Myanmar within two years after the repatriation begins.
Summary:
He also said that Patanjali would welcome financial support if offered but doesn't support the idea of Foreign Direct Investment (FDI).
Summary:
Uttar Pradesh Haj Committee Secretary RP Singh was removed from his post on Tuesday over his decision to paint the green-and-white exterior wall of Lucknow's Haj House in saffron colour.
Summary:
Hollywood actor Kevin Spacey has been accused of racism as a security company's head recalled how during a shoot for 'House of Cards' in 2012, the actor allegedly said, "I don't want n***ers watching my trailer." Spacey's comment was directed at a group of African-American guards.
Summary:
Chief Justice Dipak Misra on Tuesday held a 15-minute meeting with the four senior Supreme Court judges who had accused him of assigning cases to "preferred benches" without any rational basis.
Summary:
Non-striker Virat Kohli used signals to help Hardik Pandya counter reverse swing of South African bowlers during the Centurion Test.
Summary:
Australia's Anthony Stuart took a hat-trick in his third ODI against Pakistan on January 16, 1997, becoming the second Australian to register an ODI hat-trick.
Summary:
As many as 21% youths aged between 14 and 18 years in rural areas cannot name the state they live in, according to a survey on rural education.
Summary:
Pakistan's Defence Minister Khurram Dastgir Khan has said that the US has been trying to convince the country that India was not a threat.
Summary:
He said database breach occurs when a system is weak, adding that the reported database breach was only a "breach of trust".
Summary:
Railway Minister Piyush Goyal said the deadline to complete building foot overbridges at the Elphinstone Road and Currey Road stations has been extended to February 15 due to technical reasons.
Summary:
The government has estimated that the move will help save around â¹800 crore.
Summary:
European Council President Donald Tusk has said that the bloc members' "hearts are still open" to Britain if it chooses to reverse its Brexit decision.
Summary:
The US State Department has issued an advisory warning its citizens visiting North Korea to "draft a will" and arrange "funeral wishes" before travelling.
Summary:
US President Donald Trump has been awarded a 'Medal of Bravery' by the residents of Afghanistan's Logar province for his stance against Pakistan.
Summary:
Led by a surge in gold and crude imports, India's trade deficit, the gap between exports and imports, widened to its highest in over three years in December.
Summary:
Former Andhra Bank director Anup Prakash Garg has been sent to a seven-day Enforcement Directorate (ED) custody in a â¹5,000-crore bank fraud case.
Summary:
As per reports, actress Richa Chadha is set to make her singing debut in collaboration with singer and music producer Dr Zeus.
Summary:
Actor Manoj Bajpayee has said that he may have done wrong films in his career but it helped him pay some bills at some point.
Summary:
Malayalam actor Sidhu R Pillai, son of Malayalam film producer PKR Pillai, has been found dead in Goa. While reports suggested that he drowned to death, the cause of his demise is yet to be confirmed.
Summary:
Veteran director P Vasu, while dismissing rumours of his death as a hoax, said that he found about it through WhatsApp. Sharing his clarification in a video, he added, "I can only laugh.
Summary:
She added, "(The film) may get four or five stars or even one, but nothing really matters in front of the box-office collection." Taapsee further said, "I cannot run away from that fact.
Summary:
Meanwhile, a replacement aircraft was arranged and the flight departed four hours late.
Summary:
Justice Loya, who was hearing the Sohrabuddin Sheikh encounter case, died following a cardiac arrest in 2014.
Summary:
The eight jurisdictions could be moved to the 'grey list' which includes nations that have committed to change rules on tax transparency and cooperation.
Summary:
Calling Trump's remark "dehumanising" and "ugly", the pastor said he felt "led by God" to speak out against the President's comments.
Summary:
The government on Tuesday withdrew its Haj subsidy for pilgrims, stating that the decision is part of its agenda of empowering minorities without appeasement.
Summary:
This comes days after the US state of Hawaii issued a false alert, warning people of an incoming ballistic missile.
Summary:
The Haryana government has banned the release of the upcoming film 'Padmaavat'.
Summary:
Out of them, 12 walked on the Moon while three astronauts were launched twice.
Summary:
The restaurant said it honoured its policy of free delivery for orders above ã12 (around â¹1,000).
Summary:
South African wicketkeeper-batsman Quinton de Kock edged three consecutive Mohammed Shami deliveries for four runs each before getting out off the fourth straight edge during the Centurion Test on Tuesday.
Summary:
An eatery in US' Las Vegas is selling donuts featuring edible 24K gold leaf and dust as well as sparkling Perrier-Jouët Champagne in the run-up to Valentine's Day. The donuts sold by Donut Mania cost $15 each and must be pre-ordered for freshness.
Summary:
Patanjali Ayurved has entered into an agreement with e-commerce platforms including Amazon, Flipkart, Paytm Mall, and BigBasket, to push online sales of its FMCG products.
Summary:
A video has surfaced, wherein a group of apparently drunk men dancing in the middle of a road can be seen assaulting two men and a woman on a bike in Bengaluru.
Summary:
North Korea has said US President Donald Trump's tweet about having a bigger nuclear button than its leader Kim Jong-un's is the 'spasm of a lunatic'.
Summary:
Actor Sidharth Malhotra, who turned 33 on Tuesday, had earned â¹50 at the age of four when he first shot for an advertisement.
Summary:
The Lucknow Metro has started a 'Share your selfie' contest in an effort to attract passengers.
Summary:
The passenger, Ryan Carney Williams, accused British Airways of racial profiling.
Summary:
World's largest cryptocurrency Bitcoin on Tuesday fell to its lowest level since December 4 last year.
Summary:
Television producer Vikas Gupta has said he will give â¹3 lakh each to his Bigg Boss 11's co-contestants Arshi Khan and Jyoti Kumari from the prize money of â¹6 lakh he received for becoming the show's second runner-up.
Summary:
An American firefighter catching a child dropped from a burning building was captured on a helmet camera.
The video shows the child being dropped by her father while climbing down a ladder from the third floor.
Summary:
After Hardik Pandya got run-out in the second Test after failing to ground his bat, a user tweeted, "When you think that your salary has got you covered for the month #SAvIND #Pandya." Other tweets read, "Mondays are hard", "Me trying to fulfill my responsibilities.
Summary:
Portal will be the first product to be launched from Facebook's consumer hardware lab Building 8, the reports added.
Summary:
Speaking at a literature festival organised by The Hindu, Gujarat MLA Jignesh Mevani on Monday criticised PM Narendra Modi, saying that the PM has not been able to perform and has become a symbol of grand failure.
Summary:
Delhi-based information technology (IT) startup Newgen Software has raised $20 million by selling shares to Goldman Sachs and Forefront Alternative Investment Trust.
Summary:
Bajaj Finance on Tuesday said it will acquire 12.60% stake in digital wallet startup Mobikwik, in contrast to earlier stated 10.83% stake.
Summary:
Netherlands-based researchers have accidentally discovered the oldest-ever butterfly fossils that suggest insects have been around for at least 200 million years.
Summary:
The priest, posing as a Maoist, made hoax calls giving death threats to Kinjarapu and even stuffed detonators in a vehicle near the minister's village.
Summary:
A video showing a 70-year-old man offering a 21-year-old woman as the prize to the person who tames the bull at a Jallikattu event in Tamil Nadu's Periya Anaikaraipatti village has surfaced online.
Summary:
Reliance Industries Chairman Mukesh Ambani on Tuesday said his company will invest â¹5,000 crore in West Bengal in businesses such as petroleum and retail over the next three years.
Summary:
Chinese e-commerce giant Alibaba-owned messaging app DingTalk on Monday unveiled an English version in India that caters to the small and medium-sized enterprises.
Summary:
Summary:
The disease caused high fevers and death within three to four days.
Summary:
Indian captain Virat Kohli has been fined 25% of his match fee for showing dissent during the second Test against South Africa in Centurion.
Summary:
Google has denied that it launched its Maps app in China, after reports suggested the app was made accessible for the first time in the country.
Summary:
Addressing people in Rajasthan's Barmer on Tuesday, PM Narendra Modi took a dig at Congress saying, "Congress aur aakaal judwa bhai hain (Congress and drought go hand in hand)." "Jahan Congress jayegi wahan aakaal jayega (Wherever Congress will go, drought will follow)," PM Modi added.
Summary:
Using the UK-based Gemini laser, scientists focussed the energy equalling all the solar energy hitting Earth onto few microns.
Summary:
The Black Death in the 14th century that wiped off around one-third of Europe's population, was not spread by rats but lice carried by humans, a Norway-based study has suggested.
Summary:
US President Donald Trump has denied the Wall Street Journal's account of an interview with him last week, in which he was quoted as saying he probably has a very good relationship with North Korean leader Kim Jong-un.
Summary:
Police officers said minor injuries were reported and the fight was broken up, while the phone turned out to be in the restaurant's 'lost and found'.
Summary:
A Thai model who flashed her buttocks online to show the effects of a bottom whitening cream has been arrested for alleged false advertising.
She said, "I have a child to support and no husband.
Summary:
The UK's second-biggest construction company, Carillion, on Monday announced that it is liquidating its assets after rescue talks with government and banks failed.
Summary:
FMCG major Hindustan Unilever's (HUL) market capitalisation crossed â¹3 trillion for the first time on Tuesday, making it the eighth Indian company to achieve this milestone.
Summary:
she wasn't appreciative." Earlier, Shilpa said she would never want to meet Hina again.
Summary:
After watching the pre-release screening of the film 'Padmaavat', author Amish Tripathi, known for his novels like 'The Immortals of Meluha', tweeted, "It honours Rani Padmavati...
Summary:
The investors will receive TON tokens called Grams for participating in ICO.
Summary:
It also has a four-dimensional navigation system which can suggest fuel stops.
Summary:
Australian airline Qantas on Tuesday said it has amended its website to no longer refer to the China-claimed regions of Taiwan and Hong Kong as countries.
Summary:
A video showing Madhya Pradesh Chief Minister Shivraj Singh Chouhan slapping a man during a roadshow in Dhar district's Sardarpur has surfaced on social media.
Summary:
The police arrested two sisters on Monday for allegedly stealing a newborn baby from a Rajasthan government hospital.
Summary:
A 30-year-old man strangulated his 38-year-old girlfriend while they were having sex in a car near a shopping complex in south Delhi and drove her naked body to her family and confessed to the crime.
Summary:
Israeli Prime Minister Benjamin Netanyahu along with his wife Sara visited the Taj Mahal in Agra on Tuesday.
Summary:
The Supreme Court on Tuesday said that if the Centre does not take any action towards the banning of Khap Panchayats, then the court will have to step in.
Summary:
A BJP leader has filed an FIR against Congress leader Rama Shankar Shukla for putting up posters in Uttar Pradesh, portraying Congress President Rahul Gandhi as Lord Rama and PM Narendra Modi as Ravana.
Summary:
Pregnancies with foetuses having serious abnormalities or posing a threat to the mother can be medically terminated without obtaining permission from a high court, the Bombay High Court ruled recently.
Summary:
Punjab Tourism Minister Navjot Singh Sidhu has said that he wrote to PM Narendra Modi seeking â¹100 crore to revamp Jallianwala Bagh.
Summary:
At least 15,000 people fled their homes after lava rolled down the slopes of Philippine volcano Mount Mayon on Tuesday.
Summary:
The Japanese city of Gamagori has broadcasted emergency warnings to prevent people from eating locally purchased blowfish fugu after a supermarket sold five packages of it without removing its poisonous liver.
Summary:
Technology company BlackBerry has launched a cloud-based software cybersecurity product called 'Jarvis' that can detect vulnerabilities in software used in connected and autonomous vehicles.
Summary:
A Goa-Hyderabad IndiGo flight allegedly departed 25 minutes earlier than its scheduled time without making any announcement on Monday, leaving 14 passengers behind.
Summary:
Russian scientists have described a dinosaur species that roamed Siberia 120 million years ago, naming it the Siberian Titan.
Summary:
This comes a day after the Attorney General said the controversy has been sorted out and there were no differences anymore.
Summary:
Vishva Hindu Parishad leader Pravin Togadia, who was found in a hospital after missing for 12 hours, has said he was told a conspiracy to kill him in an encounter is being hatched.
Summary:
The Canadian police have said that the reported attack involving an 11-year-old Muslim girl, Khawlah Noman, who claimed her hijab was cut on her way to school last week, did not happen.
Summary:
According to reports, actress Jacqueline Fernandez has started shooting for 'Race 3' with the song 'Allah Duhai Hai', a track repeated in instalments of the Race franchise.
Summary:
Salman Khan's rumoured girlfriend Iulia Vantur, while talking about her experience in India, said, "Nobody knows me here.
Summary:
Indian wicketkeeper Dinesh Karthik is set to return to the Indian Test team for the first time since 2010, as he will replace injured keeper Wriddhiman Saha.
Summary:
India dismissed last 6 Papua New Guinea batsmen while giving away only three runs during India's second group match at the Under-19 World Cup on Tuesday.
Summary:
Pakistani all-rounder Shoaib Malik did not take the field in the second innings after suffering a concussion by an accidental throw by a fielder during the 4th ODI against New Zealand on Tuesday.
Summary:
Manchester United cruised to a comfortable 3-0 victory over Stoke City in the Premier League on Monday, with Antonio Valencia, Anthony Martial, and Romelu Lukaku all finding the back of the net.
Summary:
The professor reportedly claimed that a pet translator could be available in less than a decade.
Summary:
Chinese e-commerce giant Alibaba and technology major Microsoft's artificial intelligence (AI) models have scored more than humans in a Stanford University reading test.
Summary:
The Australian government has announced a $1.6-million innovation challenge aimed at combating the threats faced by the Great Barrier Reef which supports around 69,000 jobs.
Summary:
NASA estimates over 7.5 lakh pieces of old satellite and rocket debris smaller than 1 cm exist in Earth's orbit.
Summary:
A digital reconstruction of the skull of a 200-million-year-old South African dinosaur has been made publicly available by a Johannesburg student to facilitate 3D printing and research even at home.
Summary:
Mojo's Bistro pub owner Yug Tulli, accused in Mumbai's Kamala Mills fire case, surrendered before the police on Tuesday after evading arrest for two weeks.
Summary:
Punjab Power and Irrigation Minister Rana Gurjit Singh has resigned amid allegations that he bagged sand mine contracts worth crores on his staff's names.
Summary:
Odisha Police on Monday said four students of Class 4 and 5 of a government school have been arrested for attempt to murder of a 6-year-old Class 1 student.
Summary:
Mumbai 26/11 terror attack survivor Moshe Holtzberg's grandfather on Tuesday said, "Mumbai is a lot safer now." Adding that it's a very special day, the grandfather said Moshe is happy to be back to the city after 9 years.
Summary:
Sensitive cases are usually assigned to benches headed by senior-most judges.
Summary:
Andhra Pradesh has decided to criminalise purchase of sexual services in brothels, as part of a crackdown on the sexual slavery of women and children, reports said.
Summary:
A man was arrested in Uttar Pradesh after a video surfaced, wherein he and some other men were seen beating up people for defecating in open.
Summary:
The Centre has decided to launch 'Operation Digital Board', which will help students view diagrams and presentations through digital tools.
Summary:
A former New Zealand police officer, Tom Lewis, has claimed that his country's police and government officials covered up a failed assassination attempt on UK's Queen Elizabeth II during a royal tour of New Zealand in 1981.
Summary:
Manchester United legend Ryan Giggs has been appointed as the new Wales manager replacing Chris Coleman, who led Wales to the Euro 2016 semi-finals but resigned in November to coach English club Sunderland.
Summary:
This event was featured among the top 50 things that have defined India by Economic Times.
Summary:
Twenty-year-old American gymnast Simone Biles, who won four gold medals at Rio Olympics, took to Twitter on Monday to reveal that she was sexually abused by former USA Gymnastics team physician Larry Nassar.
Summary:
Moshe Holtzberg, who was two years old when he lost his parents during the 26/11 Mumbai terror attack, arrived in Mumbai on Tuesday after nine years.
Summary:
India's Under-19 team captain Prithvi Shaw scored 57 of India's 67 runs as they registered a 10-wicket win over Papua New Guinea in Under-19 World Cup group match on Tuesday.
Summary:
Indian-origin researcher Sayani Majumdar and her colleagues at a Finnish university have designed organic, few nanometres-thick ferroelectric films kept between electrodes, that can store data.
Summary:
A bee species has been discovered that is capable of surviving in an Arctic archipelago where the Soviets once conducted about 130 nuclear tests, according to a Russia-based study.
Summary:
The video shows the heat shield being separated from the vehicle followed by the ejection of 'Cartosat 2', the heaviest satellite on the rocket.
Summary:
Army chief General Bipin Rawat on Monday said that a new Aadhaar-based mobile application is being developed for soldiers to report their grievances.
Summary:
Turkey-US relations remain strained over the US' support to Syrian Kurdish militia, the YPG, whom Turkey accuses of being terrorists.
Summary:
Following this, Gavin Becker's girlfriend Olivia accepted the proposal.
Summary:
Members of Rajput group Karni Sena vandalised the campus of a private school in Madhya Pradesh as students were performing the 'Ghoomar' song from 'Padmaavat'.
Summary:
The four Supreme Court judges who had publicly criticised the Chief Justice of India Dipak Misra, have not been included in the bench that will begin hearing several important cases from January 17.
Summary:
England all-rounder Ben Stokes has been charged with affray for his involvement in a brawl outside a pub in Bristol last September.
Summary:
Tony Chapron, the French league referee who swung a leg towards Nantes player Diego Carlos in Sunday's match against PSG after being accidentally tripped, has been handed a provisional suspension.
Summary:
A new feature in Google Arts & Culture app lets users take selfies and finds art that resembles them using image recognition technology.
Summary:
With the fund, FISE will establish the Tata Smart Energy Incubation Center, FISE's Founder Manoj Kumar said.
Summary:
The police said Kiran was also involved in the assault of eight other women last year.
Summary:
Bengaluru-headquartered online payment gateway startup Razorpay has raised $20 million in Series B funding round led by Tiger Global and Y Combinator.
Summary:
US-based researchers have studied a 161-million-year-old bird-like dinosaur fossil discovered in China.
Scientists think the dinosaur used its flashy neck feathers and a bony crest on its snout to attract mates.
Summary:
Social activist Anna Hazare on Monday said that anyone wanting to join his movement will have to file an affidavit saying they won't join political parties or fight elections.
Summary:
A 13-year-old girl, who was allegedly gangraped two days ago, has not had a medical test yet because of non-availability of doctors at a government hospital in Ghaziabad.
Summary:
Doctors said Togadia had fallen unconscious due to low sugar levels.
Summary:
Police made the discovery after a 17-year-old girl escaped the house and alerted the authorities.
Summary:
British Labour MP Emily Thornberry has called US President Donald Trump "an asteroid of awfulness that has fallen on this world".
Summary:
After the UAE claimed that Qatari fighter jets intercepted civilian aircraft, Qatar's Foreign Ministry dismissed the claims as "completely false".
Summary:
A group of 12 volunteers have been charged with misdemeanour offences in the US city of El Cajon for feeding homeless people in a park.
Summary:
The lead singer of the Irish rock band 'The Cranberries' Dolores O'Riordan has passed away at the age of 46.
Summary:
Prime Minister Narendra Modi and Israeli Prime Minister Benjamin Netanyahu have signed a pact for the co-production of films between the two nations.
Summary:
Days after four Supreme Court judges expressed concerns over allocation of cases by Chief Justice Dipak Misra, Bar Council of India Chairman Manan Kumar Mishra has said, "Kahani khatam ho gayi (the story is over now)".
Summary:
More than $400,000 (â¹2.5 crore) worth cryptocurrency Stellar Lumens was stolen on January 13 by hackers from online wallet application BlackWallet.
Summary:
After the Tamil Nadu Assembly approved a nearly 100% hike in legislators' salary from â¹55,000 to â¹1.05 lakh, DMK Working President MK Stalin has said his party legislators will not accept the increased salary.
Summary:
Reacting to BJP's criticism over its video mocking PM Narendra Modi's hugs with world leaders, the Congress said humour in politics should be appreciated, adding that there was nothing vicious in the video.
Summary:
A rocket landed in the premises of the Indian embassy in Kabul, Afghanistan on Monday, the Ministry of External Affairs (MEA) said.
Summary:
Petrol price rose to â¹71.18 per litre, the highest since August 15, 2014.
Summary:
Nearly 32 years after the Chernobyl tragedy, the nuclear disaster site in Ukraine has been transformed into a â¬1-million solar plant.
Summary:
While six other companies crossed this milestone earlier, Reliance Industries is the most valued Indian firm with a market value of â¹6 trillion ($94 billion).
Summary:
Union Minister Jayant Sinha has said the government will split Air India into four separate firms and offer to sell at least 51% in each of them.
Summary:
Talking about sexual harassment in Bollywood, actress Kalki Koechlin said that if celebrities talk about sexual harassment, it only becomes a shocking headline.
Summary:
The makers clarified that it is based on a work of fiction and never had a dream sequence featuring Alauddin Khilji and Rani Padmavati.
Summary:
Salman Khan has said he hopes that the film industry gets "many more bigger successes" this year while adding, "It is important that we see more hits, more blockbusters." Talking about the success of 'Tiger Zinda Hai' (TZH), Salman added, "Records are never ever-lasting.
Summary:
'Dabangg 3' producer Arbaaz Khan has said that other than Sonakshi Sinha, no other actress has been cast in the film currently.
Summary:
Pacer Jasprit Bumrah took both South African wickets in the second innings as the hosts ended the third day of the Centurion Test at 90/2, leading India by 118 runs.
Summary:
Denying having made any such remarks, Ghosh claimed the complaints were cheap tricks by the ruling Trinamool Congress which was frightened by BJP's growth.
Summary:
A group of activists and farmers from Karnataka, mainly from the state's northern region launched a new party named Jana Samanyara Paksha (JSP) on Monday.
Summary:
The Communist Party of India (Marxist) on Monday urged the Centre to clarify reports that National Security Advisor Ajit Doval attended a BJP meeting on upcoming state elections at Union Minister Rajnath Singh's residence.
Summary:
After Delhi's Lieutenant Governor Anil Baijal approved the government scheme for doorstep delivery of public services, CM Arvind Kejriwal tweeted, "All citizens of Delhi are grateful to (you) sir.
Summary:
A couple who had eloped from their village in Karnataka allegedly committed suicide on Sunday after learning that the woman's mother had killed herself over the matter.
Summary:
As many as 29 people were evacuated to safety while one was admitted to a hospital after a short circuit caused a fire in a Thane building in the early hours of Monday.
Summary:
Reportedly, the accused, a distant relative of the victim, assaulted the girl when she was playing outside her house.
Summary:
The train's pilot saw the fire in the engine and immediately brought it under control using an extinguisher.
Summary:
While reports quoting Indian officials have claimed that seven Pakistani jawans were killed in retaliatory action, Pakistan's Foreign Office said four of its troops were killed.
Summary:
Summary:
The government will invite fresh applications for the Reserve Bank of India's (RBI) Deputy Governor post although interviews were conducted last year, according to reports.
Summary:
A 73-year-old French man had his licence confiscated after circling a roundabout 17 times to evade police attempts to stop his car.
Summary:
'Bigg Boss 11' winner TV actress Shilpa Shinde has said that she would rather explore the medium of films than television.
Summary:
Summary:
'Coca-Cola' is the second most widely understood term in the world after 'OK'.
Summary:
A 910-carat diamond thought to be the fifth largest in the world has been discovered in the African nation of Lesotho, UK-based mining company Gem Diamonds said on Monday.
Summary:
Inflation based on the Wholesale Price Index (WPI) eased to 3.58% in December from 3.93% in the previous month due to lower food inflation.
Summary:
Sreejith has been demanding a CBI probe into his brother's death, alleging that he was killed in police custody.
Summary:
However, police said they didn't find Togadia when they went to execute the arrest warrant against him, and are investigating his whereabouts.
Summary:
Over 1,000 Danish teenagers have been charged with child pornography offences for sharing a sex video involving two 15-year-olds on Facebook Messenger.
Summary:
Summary:
The UK Independence Party (UKIP) leader, Henry Bolton, ended his relationship with his girlfriend Jo Marney after she reportedly said Prince Harry's fiancee Meghan Markle would "taint" the royal family.
Summary:
Idea Cellular and Vodafone India will reportedly start operating as a merged entity from April this year.
Summary:
Benchmark indices Sensex and Nifty ended at record closing highs for the third straight session on Monday with Nifty closing above 10,700 for the first time.
Summary:
French dairy firm Lactalis has said its recall of baby milk products due to salmonella contamination, has been extended to 83 countries from around 30.
Summary:
Summary:
English singer-songwriter and co-founder of the rock band 'The Rolling Stones' Mick Jagger, who is currently in India, shared a picture from his visit on social media while tweeting, "Enjoying the vibrant sights and sounds of India!" The purpose and duration of Jagger's visit are yet to be known.
Summary:
She further said, "I don't know why our society wants women to marry by the age of 30.
I am not getting married anytime soon and I am not even 30."
Summary:
'Bigg Boss 11' contestant and TV producer Vikas Gupta has revealed that the show's host Salman Khan got contestants food from his house during the 'Weekend Ka Vaar' episodes.
Summary:
India captain Virat Kohli dedicated his 150 against South Africa in the second Test on Monday to wife Anushka Sharma by kissing the wedding ring on reaching the landmark.
Summary:
Several Left parties held a protest at Delhi's India Gate on Monday against Israel PM Benjamin Netanyahu's six-day visit to India.
Summary:
After Goa Minister Vinoda Paliencar's said Kannada people are 'haramis' while talking about the Mahadayi river dispute, Karnataka CM Siddaramaiah has said the abuse was "reprehensible to say the least".
Summary:
The victims included those who fell while flying kites and those injured by glass-coated manjha (kite string), officials added.
Summary:
The Election Commission of India has registered 9.67 lakh new voters in Maharashtra in a special drive conducted between October 3 and December 15, 2017.
Summary:
He further said the government is planning to extend the lease period for Railways' land assets from 45 years to 99 years.
Summary:
"We are the Chibok girls...we are never coming back," one of the girls said in the video.
Summary:
Russian Foreign Minister Sergei Lavrov on Monday said that the country will not support attempts by the US to modify the 2015 Iran nuclear deal.
Summary:
The teacher and two students sustained serious injuries.
Summary:
Chivas Regal, the world's first luxury whiskey, has launched a new campaign titled 'WIN THE RIGHT WAY'.
Summary:
According to the author, two suicide bombers were assigned to carry out the attack on Bhutto.
Summary:
Virat Kohli equalled cricket legend Don Bradman's record of most 150+ scores by a captain in Test cricket by registering his eighth such score against South Africa on Monday.
Summary:
Summary:
Swedish contraception app Natural Cycles, which calculates fertility during a month, has been reported to the country's medical regulator after many of its users became pregnant.
Summary:
Toyota's luxury car making division Lexus has launched its LS 500h hybrid sedan in India, priced at â¹1.77 crore.
Summary:
Cab aggregator Uber is hiring its first female drivers in Saudi Arabia ahead of the lifting of a driving ban on women, the company has said.
Summary:
After Indian Army chief General Bipin Rawat said that the country should shift focus from its border with Pakistan to that of China, the Chinese Foreign Ministry called Rawat's comments "unconstructive".
Summary:
Reports quoting officials said he was gored by a bull while playing with it outside the arena, adding that he had taken part in the first round of Jallikattu.
Summary:
Despite the Hyderabad High Court's ban on conducting cockfights, the sport was held in several places in Andhra Pradesh during the ongoing three-day festival of Sankranti, reports said.
Summary:
The magazine said that the image "illustrates the regression of humanity through Trump".
Summary:
After describing immigrants from African countries as people coming from "shithole countries", US President Donald Trump told reporters, "No, I'm not a racist.
Summary:
Abbas claimed that the US had offered the town of Abu Dis as the capital of a future Palestinian state.
Summary:
There can only be a maximum of 21 million Bitcoin in total.
Summary:
On the occasion of Army Day, Nimrat Kaur said that people should go beyond "merely posting an 'I am proud of Indian Army' post" on their social media accounts like Facebook to express patriotism.
Summary:
TV actress Charu Rohatgi, known for her roles in serials like 'Iss Pyaar Ko Kya Naam Doon?' and 'Uttaran', passed away on Monday.
Summary:
As per reports, actress Rakul Preet Singh will star opposite actor Ajay Devgn in an upcoming film.
Summary:
German tennis player Andrea Petkovic called the match official on to the court during a weather break for a mid-match dance-off in the final of the Kooyong Classic tournament in Melbourne.
Summary:
Eight-time Grand Slam champion Australia's Ken Rosewall writes a 'good luck' letter addressed to Swiss tennis star Roger Federer before each Australian Open.
Federer, who has won the tournament five times, said that he cherishes Rosewall's letters.
That's the extent of it," Rosewall said.
Summary:
Google-owned video sharing platform YouTube will be rolling out new features including one which allows users to watch videos in incognito mode similar to Google Chrome.
Summary:
A new security flaw has been found in Intel hardware which could give hackers access to corporate laptops in seconds, as per Finnish cybersecurity firm F-Secure.
Summary:
Protests by contractual teachers who tonsured their heads demanding the regularisation of their services have spread from Madhya Pradesh's capital Bhopal to Gwalior and Sagar.
Summary:
Karnataka Police on Sunday used a garbage truck to transport the corpse of a 28-year-old TV journalist to a hospital after he died in an accident, reports said.
Summary:
A Class 12 student is the prime suspect in the rape and murder case of a 15-year-old girl, whose mutilated body was found in Haryana's Jind last week.
Summary:
A consumer forum has directed a Bengaluru doctor to pay â¹90,000 to the father of a 9-year-old girl who suffered high fever and allergy after taking a high dosage of tablets he had prescribed.
Summary:
Summary:
The death toll from a cyclone which hit Madagascar earlier this month has risen to 51 with another 22 people reported missing, officials said.
Summary:
Amid the controversy involving four senior-most Supreme Court judges and Chief Justice of India Dipak Misra, Attorney General KK Venugopal on Monday said the crisis has been sorted out and there are no differences now.
Summary:
India captain Virat Kohli has become the fastest batsman to reach 53 international hundreds after slamming his 21st Test hundred against South Africa on Monday.
Summary:
This feature will help all elderly or others facing issues with fingerprint authentication, the UIDAI said.
Summary:
The runway located at an airport on the tiny Caribbean island of Saba is 400 metres long.
Summary:
Following allegations of sexual assault by a woman, actor Aziz Ansari has said that he thought everything that happened between him and her had been consensual.
Summary:
A Bahrain-bound NRI passenger claims to have been stuck at Delhi airport for the past three days as a bag containing his passport was mistakenly taken away by a passenger to Canada.
Summary:
This comes after an Indian soldier was killed by the Pakistani troops in J&K's Rajouri last week.
Summary:
At least 38 people were killed and 105 others were injured on Monday in a twin suicide bombing in the Iraqi capital of Baghdad, officials said.
Summary:
A video of two Russian police officers pelting a speeding car with snowballs to slow it down has prompted ridicule online.
Summary:
A speeding car became airborne after hitting a road divider and plowed into the first floor of an office building in California, US.
Summary:
Local media estimated the mice chewed up and ruined banknotes worth $300 (nearly â¹20,000).
Summary:
The Norwegian government has tweeted a clarification for Australian citizens after their government advised them to "avoid polar bear attacks in Norway." The tweet read, "Thank you #Australia for your concern.
Summary:
Softbank, which has a market value of about $91.5 billion, plans to list the unit in Tokyo and London, reports said.
Summary:
South Korean electronics company LG has unveiled a hospitality robot at CES 2018 designed to deliver food and drinks to travellers in hotels and airport lounges.
Summary:
Barcelona's Argentine forward Lionel Messi scored his side's fourth goal with a 30-yard curling free-kick in their 4-2 win over Real Sociedad in the La Liga on Sunday.
Summary:
Aanchal Thakur, who became India's first skier to win an international medal last week, has sought Prime Minister Narendra Modi's help to procure an Iranian visa for her skier brother Himanshu.
Summary:
Indian all-rounder Hardik Pandya got run-out in the second Test against South Africa after he failed to drag his bat across while returning to the striker's end.
Summary:
Australia's Bernard Tomic on being asked about his failure to qualify for the Australian Open 2018, said, "I just count money, that's all I do.
Summary:
Snapchat has received up to 83% negative reviews on the App Store after a redesign in countries including Australia, Canada, and the UK.
Summary:
Australian airline Qantas has said that around 100 passengers were affected due to a mechanical issue with the baggage belt at Sydney airport.
Summary:
A new floating sauna hotel will open in the middle of a remote Arctic river in Sweden this year.
Summary:
Summary:
As many as 33% of the 76 candidates contesting the 2018 Madhya Pradesh municipal elections are crorepatis, according to a report by Association for Democratic Reforms.
Summary:
Delhi Urban Shelter Improvement Board has informed the Delhi government that as many as 1,167 homeless people refused to shift to night shelters despite persuasion.
Summary:
The Indonesia Stock Exchange building in Jakarta was evacuated after the floor of a walkway above the lobby collapsed on Monday.
Summary:
After a career that saw 51 wins, Gurney retired from racing in 1970.
Summary:
American civil rights activist Martin Luther King Jr. was sent an anonymous letter by the Federal Bureau of Investigation in 1964, encouraging him to commit suicide.
Summary:
Former Indian wicketkeeper Kiran More became the first and only wicketkeeper in Test cricket history to effect five stumpings in an innings, achieving the feat in a Test against Windies on January 15, 1988.
Summary:
A zip line has been launched over 1,000 feet above Grand Canyon West, United States.
Summary:
On January 15, 1949, Lieutenant General KM Cariappa took over as the first Indian Commander-in-Chief of the Indian Army, replacing General Sir Francis Butcher, the last British Commander-in-Chief of India.
Summary:
The five were neutralised while infiltrating in Dulanja village, police said.
Summary:
The Indian Railways has restored one of India's oldest monorails which was once owned by the Maharaja of Patiala.
Summary:
Nagarkoti, who regularly bowled at speeds around 145 kmph, ended with figures of 3/29 in his seven overs.
Summary:
Premier League table-toppers Manchester City's unbeaten streak was ended at 30 games, starting from last season, with a 3-4 away defeat against Liverpool on Sunday.
Summary:
Tony Chapron, a referee in France's Ligue 1, kicked Nantes' Diego Carlos before sending him off by showing a second yellow during PSG's 1-0 win on Sunday.
Summary:
US state Texas Representative Mike Conaway has introduced a bill called Defending US Government Communications Act, aiming to ban government agencies from using Huawei and ZTE phones.
Summary:
American car manufacturer Ford will more than double its investment in electric vehicles to $11 billion by 2022, Chairman Bill Ford said at an event on Sunday.
Summary:
Essentially these ads showed for people seeking addiction treatment while commanding huge prices on Google's networks.
Summary:
WhatsApp is also reportedly testing a feature to allow group administrators to restrict activities of other members.
Summary:
Credit Suisse and Deutsche Bank have also been chosen for IPO targeting a valuation of $100 billion, reports added.
Summary:
A car was struck by a fuel vent cover that allegedly fell from a United aircraft during takeoff from a US airport, the Federal Aviation Administration has confirmed.
Summary:
A day before Congress President Rahul Gandhi's visit to Amethi, a poster put up in the city showed Gandhi as Lord Ram and Prime Minister Narendra Modi as the ten-headed Ravana.
Summary:
Bengaluru-based fashion retailer Voonik's Founder Sujayath Ali has said it has achieved EBITDA profitability which is a measure of the company's financial performance and value.
Summary:
Chinese bicycle sharing startup Ofo is expected to launch its services in India on Monday and will reportedly be made available on Paytm.
Summary:
It is SoftBank's first investment in Germany and will make Auto1 Europe's most valued private startup after Spotify.
Summary:
The Indian Navy is planning to acquire its third aircraft carrier for â¹1.6 lakh crore along with 57 twin-engine fighter planes, reports said.
Summary:
According to him, the biomass or stubble can be converted into Biochar using a reactor.
Summary:
Former Union Minister Raghunath Jha passed away on Sunday night at Delhi's Ram Manohar Lohia hospital at the age of 78.
Summary:
Asserting that India's Jerusalem vote at the UN against Israel has not affected the ties between the two countries, Israeli PM Benjamin Netanyahu on Sunday said the India-Israel relationship is "a marriage made in heaven".
Summary:
Between 2013 and 2017, Maharashtra recorded 1.39 lakh cases of illegal mining, highest in the country, according to data revealed by the Union Environment Ministry in Rajya Sabha earlier this month.
Summary:
Justifying spending â¹3.8 lakh on ten copies of the Bhagavad Gita, Haryana Chief Minister Manohar Lal Khattar on Monday said that critics didn't know the value of the holy book.
Summary:
People in Vadodara on the occasion of Makar Sankranti on Sunday flew kites and balloons with messages seeking the release of Indian Naval officer Kulbhushan Jadhav who is on death row in Pakistan.
Summary:
Police officers in Leicester, England, have issued leaflets in Punjabi, Gujarati, and English cautioning people against "bogus faith or spiritual healers" who promise luck and love for money.
Summary:
Television actress Shilpa Shinde has been declared the winner of reality TV show 'Bigg Boss 11'.
Summary:
The Bahujan Samaj Party plans to collect â¹50,000 from those seeking to wish party chief Mayawati personally on her 62nd birthday today, reports said.
Summary:
Sri Lankan President Maithripala Sirisena on Sunday reimposed a 62-year-old ban that kept women from legally buying alcohol in the country, days after it was lifted for the first time.
Summary:
Four retired judges have written an open letter to Chief Justice Dipak Misra, stating that they agree with the four Supreme Court judges who claimed cases were being allocated arbitrarily to particular benches.
Summary:
Filmmaker Sanjay Leela Bhansali has said that he has always been fascinated by the stories of honour, valour and vigour of great Rajput warriors and the film 'Padmaavat' is his homage to those stories.
Summary:
Pakistan will try to privatise its flag carrier Pakistan International Airlines (PIA) before the general elections due this year, Pakistani Privatisation Minister Daniyal Aziz has said.
Summary:
Condemning Congress' video mocking PM Narendra Modi's hugs with world leaders, BJP leader and Union Minister Prakash Javadekar said this is the lowest the Opposition party has ever stooped.
Summary:
Granting a 62-year-old man divorce, the Bombay High Court observed that blaming one's spouse for failure to conceive amounts to cruelty.
Summary:
Requesting people not to harass his family, late Justice BH Loya's son has said that he has no suspicion over the death of his father, who was hearing the Sohrabuddin Sheikh encounter case.
Summary:
The police have arrested 28 people, including ten women, in connection with the attack on Bihar CM Nitish Kumar's convoy in Buxar district.
Summary:
A Public Distribution System dealer in Jharkhand's West Singhbhum district put up a notice outside his shop reading, "A ration cardholder or any villager for that matter should meet the PDS dealer before dying of starvation".
Summary:
An Iranian oil tanker has sunk after burning for over a week following its collision with a cargo ship in the East China Sea. Iranian officials said the remaining 29 crew members and passengers on the tanker were presumed dead.
Summary:
The US Department of Defence's first-ever financial audit will cost more than â¹5,700 crore.
Summary:
The woman, who shouted "Zeman - Putin's (Russian President) slut", was knocked to the floor by the President's bodyguards.
Summary:
Madame Tussauds trolled US President Donald Trump by placing a wax statue of Trump outside the country's new embassy in London after he cancelled his visit to open the embassy.
Summary:
Filmmaker Anurag Kashyap has said that he won't go anywhere without making a film with Shah Rukh Khan.
Summary:
Dhinchak Pooja, who was among the contestants on 'Bigg Boss 11', sang her song 'Dilon Ka Shooter' during the reality TV show's finale on Sunday.
Summary:
Defending champions India defeated Nepal by eight wickets to enter the semi-finals of the Blind Cricket World Cup on Sunday.
Summary:
Captain Virat Kohli slammed 85* as India ended the second day of the Centurion Test at 183/5, trailing South Africa by 152 runs.
Summary:
With the availability of 4G cellular in smartphones, 4G is fast becoming the default internet access, the report said.
Summary:
The bridge had been inoperable since last June when heavy rains washed away a 300-metre long road segment.
Summary:
The Maoists stopped the bus, forced the passengers and driver to get out before setting it on fire.
Summary:
Congress President Rahul Gandhi has asked party leaders in Karnataka not to use words like 'Hindu extremists' and 'terrorists' to describe the BJP and RSS.
Summary:
An entire unit of the Indian Territorial Army, which is a voluntary, part-time Citizens Army, has pledged to donate their organs.
Summary:
A UK court has sentenced an Indian-origin teen to eight years in jail for trying to buy explosives online to kill his father who did not approve of his white girlfriend.
Summary:
An investigation has been launched after an access panel on the wing of a Boeing 747 used by Japanese Prime Minister Shinzo Abe fell off during a flight from Tokyo to Hokkaido.
Summary:
However, Kolesnik said mining will be possible only after Russia adopts relevant legislation, reports added.
Summary:
According to the official press release, it is the first Indian film that will have a global IMAX 3D release.
Summary:
Juhi Parmar, Urvashi Dholakia, Gauahar Khan and Gautam Gulati won the subsequent seasons.
Summary:
A Pegasus Airlines plane skidded off the runway of Turkey's Trabzon airport on Saturday and was left stuck in the mud on the edge of a cliff.
Summary:
The Congress has released a video mocking PM Narendra Modi's hugs with world leaders, along with the caption, "With Israeli PM Benjamin Netanyahu visiting India, we look forward to more hugs from PM Modi!
Summary:
Congress President Rahul Gandhi on Sunday accused the BJP of a "discriminatory mindset" after the central government decided to issue differently coloured passport jackets to those with and without an 'Emigration Check Required' status.
Summary:
Rebel BJP leader Yashwant Sinha has asked party leaders and ministers to "get rid of their fear" and "speak up for democracy" like the four Supreme Court judges who recently raised concerns over the apex court's administration.
Summary:
Claiming that India will become a "Hindu rashtra" by 2024, Uttar Pradesh MLA Surendra Singh has said by that time, only those Muslims who assimilate into the Hindu culture will be allowed to stay in the country.
Summary:
Notably, the government has pegged agriculture and allied sector growth at 2.1% this fiscal from 4.9% in 2016-17.
Summary:
After Indian Army chief General Bipin Rawat said the Army was ready to call Pakistan's "nuclear bluff", Pakistan Foreign Minister Khawaja Asif issued a nuclear threat to India.
Summary:
The Chhattisgarh High Court has made it mandatory to obtain a copy of an accused's Aadhaar card while examining surety papers submitted along with bail applications.
Summary:
As Israel PM Benjamin Netanyahu arrived in India on Sunday on a six-day visit, Delhi's Teen Murti Chowk was renamed Teen Murti - Haifa Chowk, after the Israeli city of Haifa.
Summary:
Citing a shortage of water in Karnataka, CM Siddaramaiah has said it's not possible to release water from the Cauvery river.
Summary:
The Border Security Force on Friday killed a Pakistani intruder along the India-Pakistan border in Amritsar, officials said.
Summary:
The government is reportedly considering providing Air India employees with the option of joining other public sector companies, as it moves ahead with the airline's privatisation.
Summary:
The World Bank's Chief Economist Paul Romer has said he would recalculate ease of doing business rankings going back at least four years.
Summary:
It said cryptocurrencies could not be considered financial assets, thereby barring funds from investing directly.
Summary:
A 23-year-old photographer has accused Indian-origin American actor Aziz Ansari of sexual assault while she was on a date with him.
Summary:
Actor Saif Ali Khan has said that doing a web series is not a step down for him as an actor but a step towards a new direction.
Summary:
Nana Patekar and his wife Neelakanthi visited the world's largest community kitchen at the Golden Temple in Amritsar and washed dishes there as part of seva.
Summary:
Pujara played 92 innings in Test cricket without ever getting out for a first-ball duck.
Summary:
Several Apple iPhone X users have complained that their hair keeps getting stuck in the mute switch on the left side of the phone or in the gap between the bezel and the display.
Summary:
Claiming that Karnataka had already started diverting water from the Mahadayi river amidst a water-sharing dispute, Goa Minister Vinoda Paliencar said Kannada people are harami (illegitimate) and can do anything.
Summary:
Doctors at the hospital where her postmortem was conducted said the victim may have been sexually assaulted after she was murdered and it could be an act of frustration.
Summary:
Following US President Donald Trump's ultimatum to fix "disastrous flaws" in the 2015 Iran nuclear deal, Chinese Foreign Minister Wang Yi called on the US to "cherish" the agreement.
Summary:
Supporting calls from French bakers, Macron said that the baguette is "the envy of the whole world".
Summary:
Trump also targeted the media for reporting fake news, saying, "They don't even try to get it right, or correct it when they are wrong.
Summary:
Several stores owned by Swedish retailer H&M in South Africa were trashed by members of anti-racism group Economic Freedom Fighters over an advertisement they viewed as racist.
Summary:
Also starring actress Renuka Shahane, the film has been scheduled for a summer release this year.
Summary:
Following a pay disparity row, actor Mark Wahlberg has agreed to donate $1.5 million (â¹9 crore) in his co-star Michelle Williams' name to Time's Up, which aims to fight harassment and gender inequality.
Summary:
Ben Stokes, the most expensive overseas buy in IPL history, has also set his base price at â¹2 crore.
Summary:
"Pay Trump bribes here," "emoluments welcome," and "we are all responsible to stand up and end white supremacy" were also projected onto the building.
Summary:
Manning was sentenced to 35 years after being found guilty of 20 charges, including espionage in 2013.
Summary:
India has been ranked 30th on the World Economic Forum's (WEF) 'Structure of Production' index, while Japan topped the list.
Summary:
Ethereum now comprises over 18% of the total crypto market and has a market capitalisation of $138 billion, compared to Bitcoin's $235 billion.
Summary:
Akshay Kumar has said he knew nothing about sanitary pads before he was 20.
Summary:
Actress Eliza Dushku has revealed that she was sexually molested by stunt coordinator Joel Kramer when she was 12 during the production of 1994 film 'True Lies'.
Summary:
A total of 2,159,100 yuan (â¹2 crore) has been donated to a Chinese boy and his school after a photograph of his swollen hands and frozen hair went viral.
Summary:
South African cricketer Kagiso Rabada was dropped twice by the Indian fielders off Ravichandran Ashwin's consecutive deliveries in the second Test on Sunday.
Summary:
Mohammad Shami has become the third quickest Indian fast bowler to reach 100 wickets in Test cricket.
Summary:
This will be the third time Bhambri will appear in the Australian Open men's singles main draw.
Summary:
Roy overtook Alex Hales, who had slammed 171(122) against Pakistan in 2016 to record the then highest individual score by an England player.
Summary:
Samsung showcased two versions of its foldable device with one folding inwards while the other folding outward, reports added.
Summary:
Belgian watch manufacturer Ressence has developed a mechanical watch Type 2 e-Crown Concept that can be paired with a user's smartphone.
Summary:
Technology major Microsoft has added a 'Quiet Hours' feature to Windows 10 which is similar to the Mac's 'Do Not Disturb' feature.
Summary:
The section, which is available under the Apps tab in the App Store, contains around four apps so far.
Summary:
Several dishes in the Bamboozle restaurant's menu seemingly refer to how some Chinese speakers are seen to wrongly pronounce the letters L and R.
Summary:
The couple, which plans to leave the establishment, said they are "ready for a new adventure".
Summary:
Luxury fashion brand Gucci has collaborated with three-Michelin-starred chef Massimo Bottura to open its first restaurant in Florence, Italy.
Summary:
The Society of Indian Automobile Manufacturers (SIAM) has sought customs duty concessions in the upcoming budget for certain components of electric vehicles (EVs) that are currently not manufactured in India.
Summary:
The Delhi High Court has said that authorities cannot deny passport to an Indian citizen because they have applied for asylum in a foreign country.
Summary:
An 18-year-old Delhi University student crushed a homeless man to death with his BMW car when the man was crossing a road in Maurice Nagar, police said.
Summary:
The Delhi government has decided to ban the entry and exit of horses, mules, and donkeys in the city due to the outbreak of Glanders disease, Rural Development Minister Gopal Rai said.
Summary:
World Health Organisation official Dr Soumya Swaminathan has said that India should introduce the HPV vaccine as cervical cancer kills 70,000 women every year in the country.
Summary:
"Issues which were proper and normal...before October 2016 suddenly became weapons of interference and oppression," Tata Sons argued.
Summary:
Delhi's Rishabh Pant posted the fastest T20 century by an Indian and the second fastest overall after smashing a 32-ball ton against Himachal Pradesh in Syed Mushtaq Ali Trophy on Sunday.
Summary:
Earlier, India had become the first team to score over 300 runs in an Under-19 World Cup match against Australia.
Summary:
Earlier, openers Shaw and Kalra put up 180, the best opening partnership for India in U-19 World Cups.
Summary:
David Gudeman, one of two ex-Google engineers suing the company for alleged discrimination, has said the discussions at the company are dominated by a "hate group".
Summary:
The residents of Murmansk in the North West of Russia witnessed sunlight for the first time in 40 days on January 11.
Summary:
An Indore-bound IndiGo passenger ended up in Nagpur after he boarded the wrong aircraft from the Delhi airport on Friday.
Summary:
An airport spokesperson said the lounge, which was gutted, was used by VVIPs and did not form part of the passenger terminal.
Summary:
Guests will be served locally sourced Alaskan meals like Alaska King Crab and Copper River Salmon.
Summary:
Delivery Hero reportedly invested $27.3 million (â¹174 crore) in Ola, acquiring 1% stake in the ride-hailing company, as part of the deal.
Summary:
The US Trade Representative office has included Alibaba's online marketplace Taobao on its list of "Notorious Markets" for selling fake products.
Summary:
Haryana had recorded the worst sex ratio at birth in the 2011 Census with 834 girls per 1,000 boys.
Summary:
Democratic US Senator Dick Durbin on Friday confirmed that US President Donald Trump referred to African nations as 'shitholes' during a meeting.
Summary:
A Reddit post of a man resting in a portable camping hammock at an airport has gone viral.
The man tied one end of the hammock to a pillar and the other end to a table.
Summary:
Female members of the Kshatriya community in Chittorgarh have threatened to perform 'jauhar', self-immolation, if the screening of the film Padmaavat is not stopped by the government, reports said.
Summary:
The Dubai Police and Dubai Motorbike Festival recently set the Guinness World Record for the longest wheelie (distance) on an ATV (all-terrain vehicle).
Summary:
The hub charges the ring and also directs which effects are mapped to which movements.
Summary:
Flipkart has unveiled a line of air conditioners and smart TVs under its private label MarQ, at CES 2018 in Las Vegas.
Summary:
Following his dismissal at the hands of Ravichandran Ashwin in the second Test, South African youngster Aiden Markram was lauded by Indian captain Virat Kohli for his 94-run innings.
Summary:
Intel has warned the big firms against installing security patches for vulnerabilities that became public last week, the Wall Street Journal reported.
Summary:
Google has launched an update for its video chat mobile app Duo which allows users to call other users who do not have the app installed.
Summary:
Technology giant Google has acquired UK-based startup Redux focused on technology that uses vibrations to turn screens into speakers.
Summary:
A recent Paris-bound flight from Tunisia was affected by severe turbulence just moments after the cabin crew served the in-flight meals.
Summary:
Temasek-backed InnoVen Capital may invest up to $90-100 million in Indian startups this year, the venture debt firm's India CEO Ashish Sharma has said.
Summary:
The Twitter account of India's Permanent Representative to the United Nations Syed Akbaruddin was allegedly hacked by Turkish nationals on Sunday.
Summary:
Union Minister Kiren Rijiju has said that Vijay Mallya's legal team has been raising issues to delay his extradition from the UK.
Summary:
Netanyahu had also received PM Modi at the airport during his visit to Israel last year.
Summary:
The Karnataka government is planning to reduce the time spent on morning assemblies from around 40 to 20 minutes in government schools, reports said.
Summary:
'Tiger Zinda Hai' has become Salman Khan's highest-ever grossing film in India by surpassing the lifetime earnings of his 2015 film 'Bajrangi Bhaijaan', which earned â¹320.34 crore at the domestic box office.
Summary:
A lake in Maharashtra is believed to have formed around 50,000 years ago when a meteorite hit the region.
Summary:
A husband and wife in the US won a $1 million (around â¹6.3 crore) jackpot each in separate lotteries around four months apart.
Summary:
An emergency alert warning people of an incoming ballistic missile was mistakenly dispatched to mobile phones across US' Hawaii on Saturday.
Summary:
Himachal Pradesh CM Jai Ram Thakur said his government has no intention of banning Sanjay Leela Bhansali's 'Padmaavat' in the state.
I want the film to be screened in theaters," added Thakur.
Summary:
The autonomous satellite includes cost-saving methods and experimental technology designed to detect water resources in space.
Summary:
This comes months after it was reported that Zomato is in talks with Alibaba's affiliate Ant Financial to raise funding.
Summary:
The government has revoked its decision to halt production of coins, and has asked all the four mints in the country to restart production, but at a slower pace.
Summary:
India's vote at the UN against the US' recognition of Jerusalem as Israel's capital will not affect its ties with Israel, Israeli ambassador to India Daniel Carmon has said.
Summary:
Slamming Army chief General Bipin Rawat for criticising Jammu and Kashmir's education system, state Education Minister Syed Altaf Bukhari on Saturday said he should not comment on issues that do not fall under his jurisdiction.
Summary:
Airtel earlier said it had gained all government approvals for the acquisition of the company.
Summary:
The Walt Disney Company CEO Bob Iger received $36.3 million in compensation during fiscal 2017, down by 17% from the fiscal 2016.
Summary:
A case has been filed against Tamil lyricist Vairamuthu for allegedly making remarks against a Hindu goddess, Andal, at a function in Rajapalayam.
Summary:
The Council added it was "unfortunate" that the judiciary gave Congress President Rahul Gandhi an opportunity to comment on the institution.
Summary:
Darling went on to hit two more sixes in his innings, during the Ashes.
Summary:
The 87th-minute winner gave Villarreal its first league victory at Bernabeu in 18 attempts.
Summary:
The Board of Control for Cricket in India (BCCI) has allowed former Indian captain Mohammad Azharuddin to contest elections for the position of the Hyderabad Cricket Association (HCA) president.
Summary:
Rippon will join openly gay Canadian skater Eric Radford at the Winter Games.
Summary:
The girl was bitten all over her face, burnt with an electric iron, and attacked with scissors, Delhi Commission for Women said.
Summary:
Patidar leader Hardik Patel was booked on Friday for allegedly delivering a 'political' speech at an educational and farmers' welfare event in Gujarat's Jamnagar in November 2017.
Summary:
Several teachers from Madhya Pradesh's Bhopal on Saturday shaved their heads during the 'Adhyapak Adhikar Yatra' protest, demanding equal salaries for equal work and other administrative changes in the education system.
Summary:
Apollo Hospitals on Friday submitted 30 volumes of medical records relating to late Tamil Nadu CM Jayalalithaa's hospitalisation and demise, along with their copies, to the panel probing her death.
Summary:
The Mumbai Port Trust's Cruise Terminal situated at Ballard Pier will launch a prepaid taxi booth to ensure that foreign tourists get taxis without hassle, officials said.
Summary:
Israeli PM Benjamin Netanyahu arrived in India on Sunday for a six-day state visit.
Summary:
The Women and Child Development Ministry has proposed that the school curriculum should include lessons on the harmful impact of internet addiction, cyber ethics, and information about cyber laws.
Summary:
The baby, who now weighs around 2.4 kilograms, was born prematurely after her mother developed high blood pressure.
Summary:
The accused had threatened the girl against narrating the incident to anyone, police added.
Summary:
Sehwag added that "Kohli hurt Bhuvneshwar Kumar's self-confidence" by dropping him for the Centurion Test.
Summary:
WhatsApp attributed the problem to the app's distribution, saying it was not under their control but the issue was being fixed.
Summary:
Nepal on Friday opened a new optical fibre link to China, ending its dependence on India for Internet services.
Summary:
The Bar Council of India on Saturday announced a seven-member delegation comprising members of the council to mediate talks with the four senior-most Supreme Court judges, who spoke against CJI Dipak Misra at a press conference.
Summary:
Defending champions India thrashed Bangladesh by 10 wickets in the Blind Cricket World Cup in UAE on Saturday, maintaining their unbeaten run in the tournament.
Summary:
Google Photos has censored the 'gorilla' tag from its image-labelling technology, after it was found it classified people of colour under the category in Photos.
Summary:
US ambassador to India Kenneth Juster has said US President Donald Trump's 'America First' and PM Narendra Modi's 'Make In India' policy are not incompatible, adding that investing in each other's markets will be mutually beneficial.
Summary:
Varnika Kundu, who was allegedly stalked by BJP Haryana President Subhash Barala's son Vikas, has said that the statements made by Vikas in his recently released video were a "blatant lie".
Summary:
Calling an intelligence analyst a "pretty Korean lady", US President Donald Trump reportedly asked why she wasn't negotiating with North Korea.
Summary:
UN Secretary-General António Guterres has called for a "balance of power" in the United Nations Security Council (UNSC) in order to make the global body more democratic.
Summary:
KFC Canada has introduced 'Bitcoin Bucket' which can only be bought using the cryptocurrency.
Summary:
Talking about actor Dustin Hoffman being accused of inappropriate behaviour in the 1970s, Liam Neeson said, "He touched another girl's breast...But it's childhood stuff what he was doing." Neeson also called the ongoing sexual harassment allegations 'a bit of a witch-hunt'.
Summary:
"It's making me wonder what kind of security measures are taken while...
in outdoor locations...we had four security guards (but) they were the first to run," said Dahiya.
Summary:
Summary:
Kajol said that her mother Tanuja used to make her sweep the house and clean the bathroom when she was a kid.
Summary:
Filmmaker Anurag Kashyap took to Twitter to warn his fans about a fake Facebook account in his name which asked aspiring actors to share their private pictures.
Summary:
Union Minister Ramdas Athawale has said that changing the name of the "controversial" film 'Padmavati' is not enough.
Summary:
Parineeti Chopra has said that if anybody makes negative comments about Arjun Kapoor, she could even kill for him.
Summary:
IIT Delhi Alumni Association will organise the first edition of 'Reunion Run' for its alumni and their families on January 14.
Summary:
Claiming that people have rejected the Congress, Patra said he was "surprised and pained" by the party's move.
Summary:
AG Venugopal further said he hoped that the judges will not let the issue escalate.
Summary:
"I think Shikhar Dhawan is the 'Bali ka Bakra' (scapegoat)...He just needs one bad innings and he is out of the team," Gavaskar added.
Summary:
New Zealand captain Kane Williamson successfully held onto the ball one-handedly to dismiss Pakistan's Hasan Ali for 1(3) in the third ODI on Saturday.
Summary:
South Africa ended the opening day of the second Test match against India at Centurion at 269/6 on Saturday.
Summary:
Google has removed 60 gaming applications from Play Store after they were found to be infected with a malware that displayed pornographic advertisements.
Summary:
Army chief General Bipin Rawat has said teachers in several Jammu and Kashmir schools were teaching students with two maps, one of India and the other of the state.
Summary:
US-based cryptocurrency exchange Kraken was down for more than 48 hours after the site initiated a system upgrade on Thursday morning.
Kraken engineers had earlier estimated the downtime would only be of two hours.
Summary:
One of the buildings of the last traditional fish processing facility in the US' state of Maine, swept away to a Canadian island as a result of the 'bomb cyclone' that struck the US last week.
Summary:
This was in response to a plea by director Sanjay Leela Bhansali, where he appealed for quashing of an FIR in the state.
Summary:
As many as 40 non-Afghan cricketers have expressed interest in participating in the tournament.
Summary:
Google's former Security Engineer Cory Altheide has claimed the company stopped employees from pro-diversity discussions.
Summary:
In Moon-like low gravity conditions, the module would have to perform vertical and horizontal manoeuvring to find a suitable landing spot.
Summary:
The man had refused to pay, claiming he never married the petitioner's mother.
Summary:
India should avoid replicating foreign models of urbanisation like that of China as it may lead to inequitable urbanisation, NITI Aayog Vice Chairman Rajiv Kumar has said.
Summary:
"Many parties...are targeting me in an effort to tarnish his (my father's) political image," Vikas claimed in the video.
Summary:
President Gurbanguly Berdimuhamedov issued the order at the request of Interior Minister Isgender Mulikov who claimed that women drivers were responsible for the majority of car accidents in the country.
Summary:
US ambassador to Panama John Feeley has resigned from his post, saying he no longer felt able to serve US President Donald Trump.
Summary:
IDFC Bank has said its board has approved a takeover of financial firm Capital First in a share swap deal.
Summary:
The resignation of Murthy, who has been with the company for 26 years, marks the first senior-level exit after Salil Parekh took charge as Infosys CEO and MD.
Summary:
Infosys Chairman Nandan Nilekani has said he will be at Infosys "as long as required, not a day longer." Nilekani was brought back to the company in August last year, following the resignation of then CEO Vishal Sikka and ex-Chairman R Seshasayee after a boardroom tussle.
Summary:
Talking about his memoir 'An Unsuitable Boy', Karan Johar said writing things that he didn't want to address and share opened up his soul even more.
Summary:
Reports added that Wahlberg's team negotiated the fee for the reshoot, while Michelle wasn't told about the deal.
Summary:
Filmmaker Ali Abbas Zafar has said that the only two superstars who can be brought in a film together are Shah Rukh Khan and Salman Khan.
The filmmaker further said he would love to do a comedy film starring both of them.
Summary:
Former Australian fast bowler Ryan Harris has been penalised by Cricket Australia over the tweets he posted in relation to Brisbane Heat's Alex Ross' obstructing the field dismissal in the Big Bash League.
Summary:
Adelaide Strikers' 35-year-old fast bowler Ben Laughlin pulled off a "flying" catch to dismiss Perth Scorchers' Michael Klinger in the Big Bash League on Saturday.
Summary:
Fast bowler Bhuvneshwar Kumar, who was India's highest wicket-taker in the first Test against South Africa, has been dropped from the team for the second Test.
Summary:
Five wrestlers were among six killed when their SUV hit a tractor in Sangli district in western Maharashtra early on Saturday, police said.
Summary:
Indian Army chief General Bipin Rawat on Friday said that while the Indian Army has killed several terrorists, 39 terrorists have been caught alive as the Army wanted to give them a "second chance".
Summary:
A Punjab-based man arriving from Dubai was intercepted carrying gold worth â¹30 lakh at the Chandigarh airport on Saturday.
Summary:
The Railway Board has directed senior officials in the civil engineering department to visit railway sites where safety work is underway for at least two days every two weeks.
Summary:
Five members of a family were killed after a major fire broke out at their residence in Rajasthan's Jaipur on Saturday.
Summary:
The Pakistani government has replaced the head of the joint investigation team formed to investigate the rape and murder of an eight-year-old girl after her father demanded a Muslim lead the probe.
Summary:
Ethiopia has banned adoption of children by foreign families amid concerns that the children face abuse.
Summary:
Archaeological Survey of India's proposal to hike ticket rates for both foreign and domestic tourists visiting the Taj Mahal, for the second time in two years, has faced opposition from the tourism industry.
Summary:
India last clinched the title in 2012 under the captaincy of Unmukt Chand.
Summary:
After the estimates are submitted, the Finance Ministry holds extensive discussions with other ministries.
Summary:
Parthiv Patel is the senior-most Indian player, in terms of years since international debut, in the team facing South Africa in the second Test starting today.
Summary:
England beat New Zealand in Christchurch on January 13, 1930, the same day another England team was playing a Test against Windies in Barbados.
Summary:
Facebook shares tumbled nearly 4.5%, reducing Zuckerberg's fortune to $74 billion.
Summary:
Using NASA imaging data, US-based researchers have discovered small pits in a large crater near the Moon's North Pole, which they say could be entrances to an underground network of lava tubes.
Summary:
India has signed an MoU with the UK to enable the return of illegal Indian immigrants within a month of their detection, Union Minister Kiren Rijiju said on Friday.
Summary:
Reportedly, the helicopter took off from Juhu airport at 10:20 am and lost contact with air traffic control 15 minutes later, following which the search operation was launched.
Summary:
US President Donald Trump cancelled his UK visit as had got the message from Londoners that he isn't welcome in the country, London Mayor Sadiq Khan has said.
Summary:
Bitcoin's share in the total cryptocurrency market capitalisation has slipped to a record low of about 32.5%, compared with 84.7% a year ago.
Summary:
Telecom regulator TRAI has slashed the international call termination charge from 53 paise a minute to 30 paise a minute, effective February 1.
Summary:
"Meghan's education, her first job...he gave her so much of who she is," added Samantha.
Summary:
A new song titled 'Saale Sapne' from Akshay Kumar starrer 'Pad Man' has been released.
Summary:
The release date of Sonam Kapoor and Kareena Kapoor starrer 'Veere Di Wedding' has been postponed to June 1.
Summary:
Collisions between spinning proton with proton resulted in a neutron with right-skewed direction, whereas the collision of spinning proton with a gold nucleus resulted in a left-deflected neutron.
Summary:
The toothbrush was unveiled at CES 2018 and also enables parents to monitor their child's brushing habits.
Summary:
Barcelona used "Swamiye Ayyappo, Ayyappo Swamiye", a South Indian Hindu devotional song, in the introduction video for their record signing, Philippe Coutinho, on Twitter.
Summary:
Dougherty was awarded the money under the Tui Catch-A-Million competition.
Summary:
Gurugram-based algorithmic trading platform Kuants has raised â¹50 lakh in seed funding from Delhi-based angel investors Pankaj Chopra and Ankush Gupta.
Summary:
Patterns in disks of dust and gas around young stars may not always be signs of orbiting planets, a NASA study has found.
Summary:
A youth was arrested in Bihar on Friday after he allegedly issued a death threat to Bihar Chief Minister Nitish Kumar, police said.
Summary:
The accused have confessed to their crime, police added.
Summary:
Four students drowned after a boat ferrying 40 KL Ponda High School students capsized two nautical miles away from the shore in Maharashtra's Dahanu on Saturday morning.
Summary:
Speaking at the foundation stone-laying ceremony of an international cruise terminal in Mumbai, he said the proposal was already a part of Mumbai's development plan.
Summary:
The raids have been conducted at premises linked to his son Karti Chidambaram in connection with the Aircel-Maxis money laundering case.
Summary:
A Chinese space rocket booster fell from the sky and exploded near the town of Xiangdu in China, following a successful launch of two Chinese satellites into orbit on Friday.
Summary:
South Korea has announced that it, along with North Korea, will install artificial reefs near a disputed maritime border between the two Koreas to prevent illegal fishing by Chinese ships.
Summary:
The amount was reportedly paid to the woman to not publicly discuss an alleged sexual encounter with Trump.
Summary:
ISRO also plans to launch satellites that can study oceans and observe Earth despite cloud cover.
Summary:
National Family Health Survey on around 6 lakh households in 2015-16 has revealed that Bihar is India's poorest state, while Delhi is the richest.
Summary:
Notably, India-born Kalpana Chawla and Indian-origin Sunita Williams flew to space as American astronauts.
Summary:
An NRI, working for Google as a software engineer, has been arrested for allegedly molesting a 52-year-old US woman at Taj hotel in Delhi.
Summary:
Facebook COO Sheryl Sandberg and Twitter Co-founder and CEO Jack Dorsey will not seek re-election to Walt Disney's board, according to a filing.
Summary:
China's aviation regulator on Friday criticised US-based Delta Air Lines for listing Chinese-claimed regions of Tibet and Taiwan as independent countries on its official website.
Summary:
Elon Musk's spokesperson has confirmed that the billionaire mistakenly attended a 'sex party' last year, thinking it was a costume-themed corporate party.
His impression was that it was a corporate party with a costume theme, not a 'sex party'," the spokesperson said.
Summary:
In a moment when others are failing, India and China are assuming the leadership in the fight against climate change to make sure that the world doesn't suffer, UN Secretary-General António Guterres has said.
Summary:
Bitcoin has a market valuation of about $240 billion, while the combined market valuation of all cryptocurrencies is nearly $740 billion.
Summary:
JPMorgan Chase & Co has said that its equities trading business booked a $143 million loss linked to a single client in the fourth quarter.
Summary:
Over $3 billion was wiped off from the value of South African property stocks in just four days on rumours that three people working out of US-based research firm Viceroy Research were investigating a South African property company.
Summary:
He will be speaking at the 15th edition of the India Conference 2018, which will take place from February 10-11.
Summary:
Tourism Minister KJ Alphons has said the government might rope in Hollywood stars like Richard Gere, Julia Roberts, and Angelina Jolie as brand ambassadors for Incredible India 2 campaign.
Summary:
The Indian team engaged in team-bonding exercises as a part of their training ahead of the second Test against South Africa at the SuperSport Park in Centurion.
Summary:
New Zealand dismissed Pakistan for 74 to clinch the five-match ODI series 3-0 in the third ODI in Dunedin on Saturday.
Summary:
Microsoft and Accenture will help growth-stage technology startups achieve scale in markets and improvise their business model.
Summary:
Bengaluru-based on-demand workforce providing startup Workflexi.in has raised â¹1 crore in seed funding, the startup said.
Summary:
Gurugram-based logistics startup Rivigo has raised $50 million in Series D funding round, at a valuation of around $945 million, according to reports.
Summary:
The book contains chapters on nine renowned Muslims, one of whom is Naik.
Summary:
Enforcement Directorate (ED) on Saturday searched various premises linked to Karti Chidambaram, son of Congress leader P Chidambaram, in relation to the Aircel-Maxis money laundering case.
Summary:
A fine of â¹11,000 has also been imposed on the convict.
In July 2014, the convict allegedly spiked the victim's drinks and raped her at his house.
Summary:
Karnataka minister RV Deshpande on Friday sought Bengaluru to be "urgently" declared as the second National Capital for India.
Following his proposal, a Twitter user said, "Sir, Karnataka itself needs a second capital..
first fix Bengaluru traffic and infrastructure problem.
Summary:
The 53-year-old used an argon beam, used to stop livers from bleeding during operations, to sign 'SB' onto his patients' livers.
Summary:
US President Donald Trump is in "excellent health", the White House physician has said after Trump had his first presidential medical exam on Friday which did not include a mental fitness test.
Summary:
A man in Canada assaulted an 11-year-old Muslim girl, Khawlah Noman, by cutting her hijab using scissors while she was walking to school on Friday, police have said.
the man just ran away...came again..continued cutting my hijab again," Noman has said.
Summary:
Online retailer Asos has been trolled by social media users for introducing a pair of 'buttless jeans'.
why?" "May as well not bother wearing them," commented another user.
Meanwhile, another user wrote, "Why wear anything?"
Summary:
Gemstones from Britain's crown jewels were hidden in a biscuit tin and buried in a castle during the Second World War, an upcoming BBC documentary has revealed.
Summary:
Attorney General KK Venugopal on Friday said that the press conference organised by the four senior-most Supreme Court judges over their concerns regarding the administration of the SC could have been avoided.
Summary:
Congress President Rahul Gandhi on Friday said that the death of special CBI judge Justice BH Loya, who was hearing the Sohrabuddin Sheikh encounter case, should be investigated properly.
Summary:
Imran Tahir, the third-highest wicket-taker for South Africa in World Cup history, represented his birth-nation Pakistan in the 1998 U-19 World Cup. Eoin Morgan, England's 2015 World Cup captain, played for Ireland in the 2004 U-19 WC.
Summary:
Former national-level boxer Jitender Mann was found murdered on Friday with multiple gunshot injuries at his flat in a multi-storey apartment in Greater Noida.
Summary:
Amazon Founder Jeff Bezos and his wife MacKenzie Bezos have donated $33 million in college scholarships to give undocumented immigrants called 'Dreamers', the opportunity to go to college.
Summary:
Using X-rays from four pulsars, engineers located a satellite orbiting Earth at 17,500 mph within a 10-mile radius.
Summary:
The number of faceoffs between the two sides also increased by 48% last year.
Summary:
The Income Tax Department has told the Madras High Court that its confidential letter on Gutka scam in Tamil Nadu was seized from VK Sasikala's room in J Jayalalithaa's Poes Garden residence.
Summary:
The Bombay High Court on Friday ruled that detaining patients over unpaid hospital dues is illegal.
Summary:
US President Donald Trump has waived economic sanctions related to the 2015 Iran nuclear deal, suspending the US sanctions on Iran for 120 days and avoiding upending the pact.
Summary:
This comes after Saudi women were allowed in a stadium for National Day celebrations in a one-off event in September last year.
Summary:
North Korea has announced plans to send its delegation to the games to be held in Pyeongchang, South Korea.
Summary:
DiCaprio will reportedly feature in the film as an ageing actor.
Summary:
Television actress Shama Sikander took to social media to respond to body-shamers who trolled her for wearing a bikini while tweeting, "Yes, I 'have b***s' and nice ones indeed." She further wrote, "I think it's time for all those trolls who like to give my body parts names...
Summary:
Vidya Balan has said people no longer feel the need to go to a theatre to watch a star.
People want to go to the theatre to experience a good film and characters," she added.
Summary:
Former Attorney General Soli Sorabjee on Friday said that he was disappointed by the press conference organised by the four senior-most Supreme Court judges over the administration of the SC.
Summary:
Indian cricketing legend Sachin Tendulkar's son Arjun Tendulkar says that his father wants him to be a 'fearless' cricketer.
Summary:
The league said in a statement that the company behind the goal-line technology had been warned last month after some errors in the earlier stage of the season.
Summary:
With 58 players, Australia has the most overseas players registered for the auction.
Summary:
Launched in collaboration with Zone Startups India, the program will introduce the startups to investors, relevant customers and industry connects.
Summary:
The youth was offered a job in a restaurant by an agent but was made to work as a labourer.
Summary:
Jamiat Ulama-i-Hind has filed a â¹20-crore defamation suit againt Uttar Pradesh Shia Central Waqf Board Chairman Waseem Rizvi for requesting a ban on madrasas, alleging that they are "breeding terrorists".
Rizvi, however, denied receiving the notice.
Summary:
CM Yogi said that keeping the winter season in mind, the state government is providing shelters and blankets to poor and needy.
Summary:
A US-based Indian engineer married his gay partner in a traditional ceremony recently in Maharashtra's Yavatmal.
The engineer resides in California while his partner is from Vietnam.
Summary:
Trump further said that he only stated the obvious, that Haiti was "a very poor and troubled country".
Summary:
The African Union has demanded an apology from US President Donald Trump after he reportedly called nations on the continent 'shitholes'.
Summary:
In the letter, they accused CJIs of assigning cases with "far-reaching consequences" to selective benches without any rational basis.
Summary:
The Maharashtra government stated it could justify every minute of parole granted to Sanjay Dutt, prompting the Bombay High Court to ask if the same rules were applied to an average prisoner.
Summary:
Voicing concern over the administration of the Supreme Court, SC judge Justice Jasti Chelameswar has said that the four senior-most SC judges did not want "wise men" to accuse them of selling their souls.
Summary:
The car, which will be deployed as a ride-hailing vehicle, will be able to identify pedestrians, yield to emergency vehicles, and react to avoid collisions.n
Summary:
Facebook has revamped its News Feed to prioritise content from users' friends and family, instead of content from publishers and brands.
Summary:
Jet Airways has prohibited passengers from carrying smart luggage, which includes devices with non-removable batteries, on its aircraft from January 15.
Summary:
A Japanese railway official on Friday said that about 430 people were stuck on a train overnight because of heavy snow that blanketed much of the country's Japan Sea coast.
Summary:
Cab-hailing startup Uber used a tool called Ripley to remotely lock data on company-owned smartphones and laptops to thwart police raids in foreign countries, according to a report.
Summary:
The Trump administration had earlier said that the strategic ties between the US and India would define the 21st century.
Summary:
The US hopes Pakistan would do the right thing and turn over the terrorists that it has asked for, US Under Secretary of State for Public Affairs Steve Goldstein has said.
Summary:
The Myanmar Army has admitted to killing 10 Rohingya Muslims in September last year in the violence-hit Rakhine State.
Summary:
The company had added 24,654 employees in the same period last fiscal.
Summary:
IT giant Infosys has reported a 38.3% year-on-year increase in net profit to â¹5,129 crore for the December quarter, compared to â¹3,708 crore in the same period last fiscal.
Summary:
Actor and comedian Bill Cosby while referring to the movement against sexual harassment '#MeToo', said, "Please don't put me on #MeToo." In 2017, a sexual assault case against Cosby ended in a mistrial.
Summary:
Actress Kajol has said that Shah Rukh Khan is such a fine actor that it comes very naturally to her to work with him.
Summary:
Sanjay Leela Bhansali, while speaking about how he coped with the row over his directorial 'Padmaavat', said, "It's Lataji's (Mangeshkar) songs and cigarettes which have kept me going all these months." The film has been facing protests from groups like Rajput organisation Karni Sena.
Summary:
After being trolled for receiving 'Nothing to Hide Award' at Star Screens Awards, actress Kriti Sanon has said, "Nowadays, there are different awards being handed out, including one called a 'Youth Icon'.
Summary:
Summary:
All of India's World Cup matches are being held in UAE, after India refused to travel to Pakistan for the tournament.
Summary:
Arjuna Capital and the New York State Common Retirement Fund have co-filed shareholder resolutions, asking Facebook and Twitter to produce a "detailed report" on scope of sexual harassment on their platforms.
Summary:
The app will then automatically communicate the preferences to another user.
Summary:
The poles may also feature surveillance cameras, and sensors to measure temperature and air quality.
Summary:
The Tamil Nadu Assembly on Friday passed a bill increasing the monthly salary and other allowances paid to the state's MLAs by nearly 91%.
Summary:
A Health Ministry panel has recommended compensation with a base amount of â¹20 lakh each for patients who received faulty hip implants from pharmaceutical giant Johnson & Johnson (J&J) seven years ago.
Summary:
However, plastic used for packing and packaging will be exempted from the ban, officials said.
Summary:
The new US Ambassador to the Netherlands, Pete Hoekstra, was confronted by journalists over the remarks he made in 2015 that Islamist extremists were burning politicians and cars in the Netherlands.
Summary:
The sale will take place on February 13, through e-auction.
Summary:
The External Affairs Ministry has announced that the last page of passports, which carries the holder's address, will no longer be printed, making the document an invalid address proof.
Summary:
India's retail inflation measured by the Consumer Price Index (CPI) stood at 5.21% in December, its highest level in 17 months, government data showed on Friday.
Summary:
Supreme Court judges, in their media address on Friday, alleged Chief Justices of India were selectively assigning cases with "far-reaching consequences" to their preferred benches "without any rationale".
Summary:
The United Nations High Commissioner for Human Rights has termed US President Donald Trump "racist" for reportedly calling El Salvador, Haiti and certain African nations as "shitholes".
Summary:
The Meryl Streep and Tom Hanks starrer 'The Post' "will be seen as one of the most important films of our times," wrote Hindustan Times.
Summary:
At least 96 members of Rajput organisation Karni Sena were arrested while they were protesting outside the office of Central Board of Film Certification (CBFC) over the film 'Padmaavat'.
Summary:
Vikram Bhatt directorial '1921', which released on Friday, "is a routine horror drama that offers nothing new," wrote Bollywood Hungama.
Summary:
Around 100 toilets in Uttar Pradesh's Etawah have been painted saffron, days after a police station and a Haj House in Lucknow were painted in the same colour.
Summary:
Four sitting senior-most Supreme Court judges on Friday directly addressed the media for the first time, claiming that Chief Justice Dipak Misra had failed to address their concerns regarding the administration of the apex court.
Summary:
Praising Uttar Pradesh CM Yogi Adityanath for his Twitter skills, PM Narendra Modi said, "Yogi ji bhi kam khiladi nahi hai.
Summary:
Prime Minister Narendra Modi reportedly spoke to Law Minister Ravi Shankar Prasad on Friday about the press conference held by four sitting Supreme Court judges.
Summary:
Terming the allegedly mysterious death of CBI judge BH Loya a "serious matter", the Supreme Court on Friday sought a response from Maharashtra government on pleas seeking an independent probe into it.
Summary:
The KKS Harbour was destroyed by the LTTE during Sri Lanka's civil war.
Summary:
US President Donald Trump has cancelled his visit to the UK next month where he was supposed to open the new American embassy.
Summary:
Qatar's Foreign Minister Mohammed bin Al Thani has claimed that his country was diplomatically boycotted by its Arab neighbours in June last year as it refused UAE's request to extradite the wife of an Emirati opposition figure.
Summary:
North Korean leader Kim Jong-un has won the latest round of standoff with US President Donald Trump, Russian President Vladimir Putin has said.
Summary:
Notably, one year ago the entire market value of all cryptocurrencies was just over $15 billion.
Summary:
Five women have accused actor James Franco of sexual misconduct and inappropriate behaviour.
The women, four of whom were his acting class students, claimed Franco would make everybody think they could get roles if they were to perform sexual acts.
Summary:
After Anushka Sharma shared the first look of her upcoming movie 'Pari' on Twitter, a user wrote, "That's not holi with pari...It's #Kohli with pari." Another user wrote, "This poster is really scary.
Summary:
Summary:
After Ludeman slashed the ball towards off-side, Maxwell, fielding at point, jumped and got his right hand to the ball before diving behind to complete the catch.
Summary:
A video showing former India captain MS Dhoni holding daughter Ziva in his lap at her first annual function of school has surfaced online.
Summary:
Chandra detected a bright, point-like source of X-ray emission from galaxy J1354 signalling a black hole.
Summary:
University of Copenhagen researchers have identified 18 new spider-hunting pelican spiders from a study of 26 species in the African island nation of Madagascar.
Summary:
The caller was advised by the phone attendant to lure the buffalo back using fodder.
Summary:
A research scholar of Indira Gandhi National Open University, who went missing from the JNU campus on Monday, had gone to Patna for a "dip in the Ganga" and has returned, the police said on Thursday.
Summary:
Rupani had earlier said that the state banned it because of the way women have been represented in the film.
Summary:
The RTI had sought details on expenditure made on various Prime Ministers' wardrobes since 1998.
Summary:
After four senior-most Supreme Court judges alleged "judicial indiscipline" during a press conference on Friday, the government reportedly said that the judges will sort out the "internal matter" themselves.
Summary:
The judges also released a two-month-old letter to the CJI criticising selective assigning of important cases to judges.
Summary:
US President Donald Trump has said that he probably has a very good relationship with North Korean leader Kim Jong-un.
Summary:
Mukesh Ambani-led Reliance Jio is planning to create its own cryptocurrency called JioCoin, according to reports.
Summary:
Amazon Founder and CEO Jeff Bezos survived a helicopter crash in 2003 in Texas, United States.
Summary:
"Barring Saif Ali Khan, 'Kaalakaandi' has nothing to offer," wrote Times of India (TOI).
Summary:
Women aged 25 and above will now be allowed to visit Saudi Arabia alone, without being accompanied by a male companion, the Saudi Commission for Tourism and National Heritage (SCTH) has said.
Summary:
IndiGo has been accused of "threatening" to use security force against a group of 20 passengers who allegedly refused to vacate its aircraft at Patna airport in December.
Summary:
Light from distant galaxies takes time to reach Earth, allowing astronomers to look into the universe's history.
Summary:
NASA's Mars Reconnaissance Orbiter mission has found eight sites where thick deposits of ice beneath Martian surface are exposed on eroding slopes.
Summary:
Army chief General Bipin Rawat on Friday said that China may be a powerful country but India is not a weak nation either.
Summary:
Indian stock markets reacted adversely after four Supreme Court judges raised concerns over the administration of the apex court under the current Chief Justice of India Dipak Misra during a press conference on Friday.
Summary:
UK Queen Elizabeth's lingerie supplier Rigby & Peller has been fired over the revelation of personal details about royal fittings by the firm's founder June Kenton in her autobiography.
Summary:
The company said that despite repeated efforts, dairy business accounted for only around 10% of the company's revenue in India.
Summary:
Actor Ajay Devgn took to Twitter to share the teaser of his first Marathi production 'Aapla Manus'.
Summary:
The report added, "Censor Board's Examining Committee asked the producers to remove the shots where her stomach was visible.
Summary:
Gadot also received the #SeeHer Award at the award show for her portrayal of the superhero character.
Summary:
China-based startup Dreamlight has developed a sleeping mask that emits light from LED panels present on its inside to wake the user.
Summary:
India's second Test triple centurion Karun Nair smashed a hundred off 48 balls in a T20 match against Tamil Nadu on Friday.
Summary:
Former cricketer Sachin Tendulkar's son Arjun, in a recent interview in Australia, stated that England all-rounder Ben Stokes and Australian pacer Mitchell Starc are his role models.
Summary:
Brazilian scientists have said that a virus is the main cause of the death of more than 170 guiana dolphins in over 40 days on the coast of Rio de Janeiro state.
Summary:
Bihar Chief Minister Nitish Kumar's convoy was on Friday attacked and pelted with stones in Buxar.
Summary:
Ahead of the second South Africa Test, captain Virat Kohli along with the Indian team, visited the India House in Johannesburg.
Summary:
World number one Rafael Nadal and defending champion Roger Federer have been named as the first and second seeds respectively for the Australian Open, commencing on January 15.
Summary:
For the first time in India, four sitting Supreme Court judges called a press meet to address the nation claiming that democracy is in danger.
Summary:
Gallup International Association (GIA) has ranked Indian PM Narendra Modi as the number three world leader in its annual survey.
Summary:
A system of at least five exoplanets has been discovered by science enthusiasts, becoming the first multi-planet system discovered entirely through crowdsourcing.
Summary:
South African pacer Kagiso Rabada, who recently became the top-ranked bowler in Test cricket, is the youngest bowler ever to top the ICC Test rankings for bowlers.
Summary:
US-based software major IBM on Thursday named James Kavanaugh as its new Chief Financial Officer (CFO), replacing Martin Schroeter from the position.
Summary:
In a first, Australia-based researchers have studied the largest known underwater volcanic eruption.
Summary:
Since the patient and his family couldn't read English, the man only found out when he went to purchase another bottle after consuming the first one.
Summary:
PM Narendra Modi on Friday wished Indian spiritual leader and monk Swami Vivekananda on his 155th birth anniversary.
Summary:
After the launch of Indian Space Research Organisation's 100th satellite on Friday, Prime Minister Narendra Modi, in his address at National Youth Festival 2018 said that the scientists of ISRO have made India proud again.
Summary:
External Affairs Minister Sushma Swaraj on Thursday helped a woman stranded at the Kuala Lumpur International Airport bring back the body of her son, who died at the airport.
Summary:
Last week, the department seized unaccounted cash and bullion worth â¹41 crore from a private vault.
Summary:
Marriott has apologised for the error and said it respects China's territorial integrity.n
Summary:
Imaging firm Eastman Kodak's shares surged about 200% after it announced its own cryptocurrency KODAKCoin.
Summary:
The actress reportedly bought the bungalow in 2015 for â¹10 crore and spent another â¹20 crore in building other amenities.
Summary:
Actress Kalki Koechlin will be seen playing a rapper in the upcoming film 'Gully Boy', which will star Ranveer Singh in the lead role.
Summary:
Reacting to a 2-hour power outage at the world's biggest technology show, Consumer Electronics Show (CES) 2018, a user on Twitter said, "Elon Musk pulled the plug".
Summary:
Miura, who became the world's oldest goal-scorer last year, will enter his 33rd season in professional football this year.
Summary:
Former wrestler and coach Sukhchain Singh Cheema, who won bronze in the 1974 Asian Games, passed away in a road accident near Patiala on Wednesday.
Summary:
Bengaluru-based realty firm Embassy Group has infused $15.6 million (around â¹100 crore) in co-working space startup WeWork India, according to filings.
Summary:
Bengaluru-based mobile payments technology startup ToneTag has raised â¹8.5 crore from an overseas investor, according to a report.
Summary:
NASA astronomers have used the Hubble Space Telescope to study the composition and motion of 10,000 Sun-like stars, as seen in the inset image of the Milky Way galaxy.
Summary:
The idea aims to reduce the money spent in elections as well.
Summary:
Despite Hyderabad High Court's ban on conducting cockfight, Telugu Desam Party MP and MLA participated in the sport in Andhra Pradesh's Pithapuram town on Thursday.
Summary:
The history of the Balkans is more dramatic and interesting than the screenplay of 'Game of Thrones', even if there are no dragons in it, European Council President Donald Tusk has said over the region's geopolitical tensions.
Summary:
UK Queen Elizabeth has revealed that when she was crowned, she had jokingly said she couldn't look down wearing the royal crown, which weighs 1.28kg, as her neck would break.
Summary:
West Bengal-based cement producer Shree Cement has agreed to acquire a majority stake in the United Arab Emirates-based Union Cement Company, the company revealed on Thursday.
Summary:
However, players will be able to claim 50% of the prize money if they pull out before their first match.
Summary:
Indian Space Research Organisation (ISRO) successfully launched its 100th satellite on Friday from Sriharikota spaceport in Andhra Pradesh, along with 30 other satellites.
Summary:
Weighing about 60,000 kg, Hoba lies intact at its impact point having no preserved crater around it.
Scientists believe the meteorite's flat shape could be responsible for its low impact velocity.
Summary:
Koimoi wrote that the film "ends up testing patience at some junctures." It has been rated 2.5/5 (Bollywood Hungama), 3.5/5 (Koimoi) and 4/5 (TOI).
Summary:
The names include 'Ochyrocera aragogue' inspired by spider Aragog in Harry Potter and the Chamber of Secrets, 'Ochyrocera varys' after Lord Varys, known as "The Spider" in Game of Thrones.
Summary:
"[T]he prevalence of men rape is wider than is generally presumed," he added.
Summary:
The Federal Bureau of Investigation (FBI) has released age-progressed photographs of four alleged hijackers charged with the 1986 hijack of Pan American Flight 73.
Summary:
Lashing out at media for defaming madrasas, Union Minister of Minority Affairs Mukhtar Abbas Naqvi on Thursday said, "I have studied in a madrasa, am I a terrorist?" The madrasas have contributed towards the nation's growth and played a great role in our freedom struggle, Naqvi added.
Summary:
Stating that private data is recorded when one travels in public transport, Prasad said privacy issues should not be "overblown".
Summary:
Transport workers in Tamil Nadu on Thursday called off their indefinite strike after eight days and will resume duties from Friday.
Summary:
The Kerala government on Thursday allowed prisoners lodged in the state's jails to donate their organs to close relatives.
Summary:
The Madurai district administration on Thursday made Aadhaar registration mandatory for bull tamers to participate in the bull-taming sport Jallikattu.
Summary:
A Saudi private company on Thursday opened the Kingdom's first car showroom exclusively for women.
Summary:
Rejecting an immigration deal to allow immigrants from El Salvador, Haiti and certain African nations, US President Donald Trump said, "Why are we having all these people from shithole countries come here?" Trump's remarks sparked criticism, with Democrats accusing him of racism.
Summary:
Kazakhstan's output in November and December last year was about 130,000 barrels a day above the target agreed with OPEC.
Summary:
Talking about actors endorsing fairness creams, Sushant earlier said, "We shouldn't endorse or prefer one skin tone over another."
Summary:
Former South African cricketer Jonty Rhodes took to Instagram to share a picture of his family bathing in the Ganga river in Rishikesh.
Summary:
Founded in 1994, Mackevision provides data-based 3D visualisation and operates in countries like Japan.
Summary:
Last year, President Donald Trump scrapped the Deferred Action for Childhood Arrivals, or 'Dreamers' program.
Summary:
A bug that allows a user with local administrator access to unlock App Store preferences in macOS High Sierra by using a fake password has been discovered.
Summary:
Scientists have reported the discovery of the partial skeleton of a new species of turkey-sized herbivorous dinosaur from 113-million-year-old rocks in Australia.
Summary:
"The terminal is being constructed to the best global benchmarks to berth superliner cruise ships," the Shipping Ministry said.
Summary:
This comes after an inquiry revealed the Kamala Mills fire was caused by a Hookah served at the pub.
Summary:
A Kerala woman has claimed she was forced to convert her religion and has accused her husband of hatching a conspiracy to sell her to the Islamic State.
Summary:
Chhattisgarh government decided to withdraw the state Land Revenue Code (Amendment) Bill after CM Raman Singh met some senior tribal leaders on Thursday and discussed the issue with them.
Summary:
The Uttar Pradesh government is organising a three-day annual fest, Gorakhpur Mahotsav, in Chief Minister Yogi Adityanath's home constituency.
Summary:
Indian liquor manufacturing firm Jagatjit Industries has raised $42 million (â¹265 crore) in debt funding from non-banking financial company Indiabulls Commercial Credit.
Summary:
Amazon CEO Jeff Bezos, whose net worth reached $106 billion earlier this week, earlier worked as a cook at McDonald's.
Summary:
However, the ministry added that Assange will not leave Ecuador's embassy while there are no security guarantees.
Summary:
Dravid revealed when he went to the inter-school selections, there was no wicketkeeper, so he made himself available as a wicketkeeper to get into the side.
Summary:
Playing in Australia for the first time, Sachin Tendulkar's son Arjun picked up four wickets and slammed 48(27) in a T20 match for Cricket Club of India against a Hong Kong-based side.
Summary:
Hyderabad lost a T20 match against Karnataka by two runs after officials added two runs to Karnataka's total after their innings.
Summary:
South Africa captain Faf du Plessis took to Instagram to share a picture of himself kissing pacer Kagiso Rabada on his forehead during a match.
Summary:
Wishing Rahul Dravid on his 45th birthday, Sachin Tendulkar tweeted, "There might be many strong walls around us but the greatest yet is the one and only, Rahul Dravid.
Summary:
RJD chief Lalu Prasad Yadav's son Tej Pratap has launched the Lalu Prasad (LP) movement to seek justice for Lalu, who was awarded a 3.5-year jail term after his conviction in a fodder scam case.
Summary:
Nobel Laureate Kailash Satyarthi, who turned 64 on Thursday, led an 80,000-km global march against child labour in 1998 where 7.2 million people participated from 103 countries.
Summary:
The contingent, named 'Seema Bhavani', will include women aged between 25 and 30 years, who are drawn from various combat ranks of the force.
Summary:
Police on Wednesday arrested suspected Lashkar-e-Taiba (LeT) operative Bilal Ahmad Kawa for his alleged involvement in the Red Fort terror attack, 17 years after the attack.
Summary:
However, UIDAI maintained that Airtel Payments Bank's eKYC licence will remain suspended.
Summary:
The Maharashtra government is planning to introduce a separate category for orphans appearing for various competitive exams.
Summary:
Reports said Steve appeared to be drunk when he approached Weinstein.
Summary:
US-based 82-year-old entrepreneur Carol Staninger has unveiled a motion-detecting prototype monitor for children called 'Save Our Loved Ones' at CES 2018.
Summary:
Technology company Philips has unveiled the 'SmartSleep' headband that plays white noise to help sleep.
Summary:
Twenty-three-time Grand Slam champion Serena Williams, in a recent interview, revealed that she suffered blood clots after giving birth to daughter Alexis Olympia on September 1 last year.
Summary:
Indian women's junior hockey team goalkeeper Khushboo Khan has requested Madhya Pradesh CM Shivraj Chouhan for a toilet to be constructed at her home.
Summary:
Researchers at a German university have found a WhatsApp bug which lets users join group chats without invitation despite end-to-end encryption.
Summary:
Talking about his statement that BJP and RSS have terrorists, Karnataka CM Siddaramaiah on Thursday clarified that he had called them "Hindutva terrorists".
Summary:
Karnataka Home Minister and Congress leader Ramalinga Reddy on Thursday accused the BJP-led Centre of tapping phones of "some people" ahead of the state Assembly elections this year.
Summary:
A 45-year-old Uttar Pradesh Police constable was beaten up by a mob for allegedly raping a seven-year-old girl near her home in Surajpur on Wednesday.
Summary:
After the accused in the Chandigarh stalking case, Vikas Barala was granted bail, victim Varnika Kundu has said she does not oppose the decision as of now.
Summary:
A group of over eight burglars, popularly called 'Chaddi Baniyan' gang, is suspected to have stolen jewellery weighing ten tolas from an apartment in Hyderabad's Meerpet.
Summary:
At least 19 establishments in Delhi's Khan Market have been partially sealed under the North Delhi Municipal Corporation's sealing drive over alleged illegal construction and misuse of land.
Summary:
A seven-year-old Class 3 boy died on Thursday after allegedly being beaten up at his school in Ghaziabad, police said.
Summary:
American television host Jimmy Kimmel marked President Donald Trump's 2000th lie with a documentary titled 'Pants Of Fire: The Road To 2000 Lies'.
Summary:
The card can be programmed to act as a debit, credit, prepaid, multi-currency, or loyalty card.
Summary:
Indu Malhotra on Thursday became the first ever female lawyer to be directly recommended for the position of a Supreme Court judge by the Collegium, according to reports.
Summary:
The government added that it was amending a 1955 law terming it "discriminatory against women".
Summary:
Japanese pop group 'Kasotsuka Shojo', which translates to 'Virtual Currency Girls', wants to educate people about cryptocurrencies.
Summary:
A Mumbai-bound Jet Airways flight that was getting ready to depart the Mangaluru Airport today was forced to abort takeoff due to an empty tractor parked at the end of the runway.
Summary:
Questioning why Navy officials want to stay in south Mumbai, Union Minister Nitin Gadkari on Thursday said they are needed for patrolling at the border.
Summary:
The Kerala Women's Commission has slammed an order passed by St Mary's High School in Pathanamthitta, mandating teachers to wear coats over sarees.
Summary:
The External Affairs Ministry on Thursday confirmed that a meeting between National Security Advisor Ajit Doval with his Pakistani counterpart took place in Bangkok in December last year.
Summary:
A bus conductor on Wednesday forced a daily wage earner to disembark with the body of his friend, who had passed away during the bus ride in Tamil Nadu's Shoolagiri.
Summary:
Former Telecom Minister A Raja, who was recently acquitted in the 2G spectrum allocation scam case, has described former Comptroller and Auditor General Vinod Rai as 'sutradhar' (anchor) of the scam in his upcoming book.
Summary:
Listing Russia as one of the most dangerous countries to visit in 2018, the US State Department advised citizens to "reconsider travel" to the country over security and safety risks.
Summary:
Masiyiwa, who serves as Econet Chairman, is also Africa's fourteenth richest person.
Summary:
In its first survey into the trading of cryptocurrencies, the Income Tax Department has reportedly found that there are over six lakh active cryptocurrency traders in India.
Summary:
The court has asked Patanjali to respond to the allegations within 10 days.
Summary:
Saif Ali Khan, on being asked by a reporter about his wife Kareena Kapoor's comeback, responded by saying, "Had you asked this question to her, she would have probably thrown...
Summary:
Pornstar Mia Malkova will star in an upcoming project titled 'God, Sex and Truth' by filmmaker Ram Gopal Varma.
Summary:
A comic book titled 'The Wall', based on former India captain Rahul Dravid's life, has been released by Sportwalk, a Chennai-based sports media and merchandise startup, on the occasion of the cricketer's 45th birthday on Thursday.
Summary:
Former Australian cricketer Shane Watson said that his performance against fast bowling started to "really dive" post Phil Hughes' death after being hit by a ball in 2014.
Summary:
BCCI shared a video of Dravid cutting his birthday cake with the players.
Summary:
American aviation and aerospace company Boeing has unveiled a prototype of a vertical-takeoff-and-landing (eVTOL) unmanned aerial vehicle that can carry up to 226.7 kilograms of cargo.
Summary:
Accusing Andhra Pradesh CM Chandrababu Naidu of not fulfilling his poll promises, YSR Congress leader Roja organised a protest against him in Chittoor where her supporters sported flowers on their ears.
Summary:
Ex-US President Barack Obama had received gifts worth $3,000 (nearly â¹2 lakh) during his India visit as Chief Guest at the 2015 Republic Day Parade, the US State Department has said.
Summary:
A video showing All India Majlis-e-Ittehadul Muslimeen (AIMIM) corporator Sameena Begum performing 'nagin dance' at a college function in Hyderabad has surfaced online.
Summary:
A 57-year-old Bihar Police Inspector has been suspended for allegedly sharing a morphed image of PM Narendra Modi shaking hands with Mumbai terror attack mastermind Hafiz Saeed on WhatsApp. The picture was reportedly accompanied by the caption "Dekho kaun deshdrohi hai" (look who is the traitor).
Summary:
The Bangalore University has decided to stop collecting â¹500 from its gold medallists and rank-holders in undergraduate and postgraduate courses.
Summary:
The Kerala Police has arrested a man for allegedly raping four minor girls who were inmates at a shelter home that he used to run.
Summary:
The woman claimed she did so as she was waiting for her husband to board the train.
Summary:
Salman Khan's manager has denied reports that the shoot of Salman's film 'Race 3' was disrupted after armed men entered the film's sets.
No one has entered any set and the shoot is on as usual," said the manager.
Summary:
Halit had fled the war in Syria four years ago and has been working as a shoe-shiner since.
Summary:
Dravid, who turned 45 today on Thursday, faced 31,258 balls in Tests, setting the record for most balls faced by a batsman.
Summary:
Police said the hackers gave the option to traders to get five encrypted files for free to show that they are in control.
Summary:
At least two international flights had to abort their landing at Ahmedabad airport and head to Mumbai after a cow walked into the middle of the runway on Thursday morning.
Summary:
The Punjab and Haryana High Court on Thursday granted bail to the son of BJP Haryana President Subhash Barala in the Chandigarh stalking case, five months after he was arrested.
Summary:
The Supreme Court has issued a notice to Kerala CM Pinarayi Vijayan over a CBI plea challenging his acquittal by the Kerala High Court in the SNC-Lavalin corruption case.
Summary:
The Delhi High Court has dismissed a plea seeking withdrawal of coins having religious symbols embossed on them.
Summary:
A hospital in Haryana's Faridabad charged â¹18 lakh for 22-day treatment of a pregnant woman, who died at the hospital.
Summary:
West Bengal CM Mamata Banerjee on Thursday received an honorary Doctorate of Literature (DLitt) from the Calcutta University.
A petitioner had moved the Calcutta High Court challenging the university's decision, claiming that Banerjee was ineligible to receive the degree.
Summary:
Attacking US President Donald Trump over revelations made in 'Fire and Fury: Inside the Trump White House', North Korea said the popularity of the book points to the US leader's political demise.
Summary:
A Pakistani news TV anchor on Thursday hosted a live telecast with her daughter to protest the rape and murder of an eight-year-old minor, Zainab Ansari, in the country.
Summary:
The position, based in Sweden, requires applicants who dislike productivity and deadlines but enjoy relaxing.
The "fakeation specialist" position is temporary, lasting from January 22 to February 4.
Summary:
A US woman said she fired two gunshots at her husband while he was in the toilet to "make him listen to her" during their fight.
Summary:
At least 20 of the 21 paintings in a Genoa exhibition attributed to Italian artist Amedeo Modigliani have been declared fake by a court-appointed expert.
Summary:
The market value of US imaging firm Eastman Kodak increased by $431 million after it revealed plans to launch its own cryptocurrency KODAKCoin on Tuesday.
Summary:
The 36-year-old is now the country's fourth-richest person with a net worth of $29.7 billion, according to Bloomberg.
Summary:
The North American Bitcoin Conference, which is to be held in Miami, US next week, is no longer accepting Bitcoin payments for tickets due to high fees and network congestion.
Summary:
The L Catterton private equity fund, co-owned by Louis Vuitton-maker LVMH, wants to invest about $500 million (nearly â¹3,200 crore) in Baba Ramdev's Patanjali, Ravi Thakran, L Catterton Asia's managing partner said.
Summary:
Filmmaker Karan Johar has been trolled by social media users for sharing a picture of Akshay Kumar's look to announce Parineeti Chopra's casting in the upcoming film 'Kesari'.
Summary:
The title of Rajkummar Rao and Shraddha Kapoor starrer has been announced as 'Stree'.
"We have a title!
Summary:
Health experts termed their actions as disappointing and said they shouldn't do it in a public forum.
Summary:
Two asteroid belt objects which separately crashed to Earth in 1998 are the first meteorites found to contain both liquid water and organic compounds, according to a study published in the journal Science.
Summary:
US-based astronomers have used a single gravitational wave event, created by colliding neutron stars, to measure the age of the universe.
Summary:
Two crude bombs were unearthed by a Metro official during excavation work at a Metro construction site in Mumbai Central on Wednesday.
Summary:
The 74-year-old is accused of murdering a gang rival in 2003.
Summary:
Following the incident, the police reportedly escorted Salman home, and has advised the actor to maintain a low profile.
Summary:
Notably, Urus is Lamborghini's first 5-seater car.
Summary:
A University of Rochester team led by Indian physicists has claimed to create particles with negative mass in an atomically thin semiconductor, by causing it to interact with confined laser light.
Summary:
Model Ashley Graham has revealed she was sexually harassed by an assistant at the age of 17 on the sets of a photoshoot.
She said the assistant pushed her into a closet and exposed himself.
Summary:
American technology company Dell has unveiled jewellery made of gold which was recovered from computer motherboards collected through its recycling programs.
Summary:
Dravid's mother Pushpa handed him a bottle of jam whenever he went out playing, which prompted his teammates to give him the nickname 'Jammy'.
Summary:
Roshan Lal Thakur, the father of India's first international skiing medalist Aanchal Thakur, has revealed that he taught paragliding to Prime Minister Narendra Modi two decades ago.
Summary:
Wanting to reach 500 of the last ball to give his captain the option to declare overnight, Hanif got run-out while attempting the second run.
Summary:
The US Department of Justice (DOJ) has charged Ohio resident Philip Durachinsky for allegedly using a malware, nicknamed 'Fruitfly', to spy on users between 2003 and 2017.
Summary:
Thune also asked if Apple was planning to offer rebates for those who replaced batteries prior to cost reduction.
Summary:
The Finance Ministry on Thursday said the Income Tax Department has attached more than 900 Benami properties worth over â¹3,500 crore.
Summary:
The Indian Banks' Association has said there is no proposal to discontinue free banking services and asked people not to pay heed to 'baseless rumours'.
Summary:
A bill that seeks to increase the allotment of Green Cards by 45%, from the current 1.2 lakh to 1.75 lakh annually, has been introduced in the US House of Representatives.
Summary:
The world's biggest cryptocurrency exchange, Binance, added 2.4 lakh people in an hour on Wednesday, CEO Changpeng Zhao has said.
Summary:
The regulator also ordered to give up â¹13 crore of wrongful gains with interest from the auditing firm and its two erstwhile partners.
Summary:
World's third richest person and Berkshire Hathaway CEO Warren Buffett has said that cryptocurrencies like Bitcoin will most certainly "come to a bad ending".
Summary:
Responding to the â¹5 crore defamation notice sent to her by Honeypreet Insaan's mother, Rakhi Sawant said, "I'm going to sue [her] for â¹20 crore." "I've all the evidence regarding my allegations against Honeypreet and her father," she added.
Summary:
Speaking about Salman Khan starring in 'Race 3', Saif Ali Khan said, "He's the best thing to happen to anybody." "Salman is the biggest star in the country," he added.
Summary:
Singapore-founded gaming company Razer has unveiled the 'Project Linda' concept at CES 2018 which extends the smartphone into a full laptop.
Summary:
Cricketer-turned-commentator Virender Sehwag compared Rahul Dravid, who is nicknamed 'The Wall', to the Great Wall of China in a birthday message for the former India captain.
Summary:
China's cyber watchdog has slammed Alibaba's Ant Financial for compromising user privacy after its Alipay service users were automatically enrolled in its credit scoring system.
Summary:
An international team of astronomers analysing 355 multi-planet systems have found that exoplanets orbiting the same star tend to have similar sizes and a regular orbital spacing like "peas in a pod".
Summary:
The boy's friends also said he was made to do around 150 sit-ups as punishment in school.
Summary:
He said this brings the airline at par with other carriers.
Summary:
The Delhi Police fined 8,214 people â¹200 each for smoking in public under a special drive carried out on four separate days in south and southeast Delhi areas.
Summary:
Singapore Airlines owns 49% stake in carrier Vistara, while the remaining shares are with the Tatas.
Summary:
Defending its decision of scheduling Class 12 History and Mathematics board examinations on consecutive days, CBSE said the date sheet was decided after taking into consideration a number of factors, including competitive exams.
Summary:
Toyota's Etios and Liva have 14 Standard Safety features on which experiential drive is designed including Child Seat Anchor Points, Emergency Locking Retractor & Warning among others.
Summary:
Lead actors of 'Aisi Deewangiâ¦Dekhi Nahi Kahi', Jyoti Sharma and Pranav Misshra, have quit the show alleging "inhuman treatment" by the producers, saying they were forced to work 18 hours daily without food and water.
Summary:
A stay order against the film's release was issued in 2015 over its trailer, which showed the actors mouthing expletives.
Summary:
A power outage hit the world's biggest technology show, CES 2018, in Las Vegas on Wednesday, leaving parts of the event in the dark for almost two hours.
Summary:
The patents were granted to various IBM researchers, engineers, scientists and designers across the US and 47 other countries.
Summary:
World-renowned physicist Stephen Hawking has reiterated that if global warming continues Earth would one day look like Venus, which has surface temperatures of over 470ðC.
Venus was much like Earth 4.5 billion years ago, according to NASA.
Summary:
The South Australian government has approved a proposal of a US-based company to build the world's largest solar-thermal power plant in the Australian state.
Summary:
The first two weeks have been allocated to the odd-numbered e-rickshaws and last two weeks for the even-numbered e-rickshaws.
Summary:
"Frankly, it's an agreement that I have no problem with, but I had a problem with the agreement that they signed, because, they made a bad deal," Trump added.
Summary:
Three of the suspects were caught by the police as they tried to flee the five-star hotel but two men managed to escape on a scooter.
Summary:
Ezzeya Daraghmeh says, "I like my hair and I hate to throw it away.
Summary:
A man allegedly rammed a stolen armoured personnel carrier into a shop window before climbing through the rubble to steal a bottle of wine in a town in northern Russia on Wednesday.
Summary:
Actor Naseeruddin Shah is set to star in 'The Tashkent Files', a film based on former Prime Minister Lal Bahadur Shastri's death.
The film will also star actor Mithun Chakraborty.
Summary:
Modius claims to stimulate the user's brain, making them want to eat less.
Summary:
Gaming hardware maker Razer has developed a wireless and battery-less mouse which draws its power from the mousepad in real-time, with the combo being priced at $250.
Summary:
Facebook is shutting down its text-based assistant 'M', which was launched in 2015.
Summary:
A Cambridge University-led study has discovered swirling gas in some of the earliest galaxies that formed soon after the Big Bang.
Summary:
Railway board Chairperson Ashwani Lohani has directed for reduction in the service charge for booking tour packages with the Indian Railway Catering and Tourism Corporation (IRCTC) by 10%.
Summary:
Three jawans were injured after a rope slipped off ALH Dhruv helicopter during a rehearsal for Army Day on Tuesday.
Summary:
The school has, however, refuted the charges levelled by the girls, saying they were subjected only to a general search.
Summary:
PM Narendra Modi, during a conference of police chiefs, asked the officials to focus on foot-patrolling to deal with crimes effectively and win people's confidence.
Summary:
Jammu and Kashmir's Peoples Democratic Party (PDP) MLA Aijaz Ahmad Mir on Thursday said, "We should not celebrate the killings of militants, it is our collective failure." Adding that militants from Kashmir are martyrs and "our brothers", he said some of them are minors who don't know what they are doing.
Summary:
Jailed AIADMK leader VK Sasikala's husband M Natarajan has surrendered before a CBI court in connection with a duty evasion case of import of a luxury car from the UK.
Summary:
Former Finance Minister P Chidambaram on Thursday compared the new Aadhaar virtual ID safety measure to locking a stable after the horses have bolted.
Summary:
Japan's PM Shinzo Abe has revealed his best golf score to Miss Universe Japan Momoko Abe during a meeting on Thursday.
Summary:
Incorporated in 2011, EPS provides ATM operation services, including supply and installation of ATMs.
Summary:
Sanjay Leela Bhansali's upcoming film 'Padmavati' has been officially renamed as 'Padmaavat', as confirmed by the film's Twitter handle.
Summary:
Marvel Comics creator Stan Lee has been accused of sexual harassment by nurses who were employed to take care of him at his home.
Summary:
Another team showed, water on supercooling can exist in two interchangeable liquid states with different densities, and called it 'singularity'.
Summary:
A man has been caught taking upskirt videos of girls at the school arts festival organised in Kerala's Thrissur by cutting a hole into his slipper and fitting a phone camera in it.
Summary:
A 45-year-old tribal man in Odisha is carving a 15-km road through a mountain to connect his village Gumsahi to the main road in Phulbani town.
Summary:
Delhi-based artificial intelligence-powered Information Technology (IT) company ArchSaber has started offering Software as a service (SaaS).
Summary:
The US on Wednesday warned its citizens against travelling to the Indian state of Jammu & Kashmir and not to venture within 10 miles of the India-Pakistan border due to the "potential for armed conflict".
Summary:
It is set to be largest corporate VC fund in the auto industry over the period until 2022, the companies said in a statement.
Summary:
Astronomers have found evidence that repeated space radiation called fast radio bursts (FRBs) could be coming from rapidly rotating neutron stars located near black holes, as per a new publication in the journal Nature.
Summary:
The second Prime Minister of India Lal Bahadur Shastri died on January 11, 1966, a day after he signed the Tashkent Agreement with Pakistan.
Summary:
Indefinite curfew was imposed at Dhula in Assam on Wednesday after a man died as police opened fire to control a mob protesting an alleged custodial death.
Summary:
The 15 lakh-strong Indian diaspora in the UK is now represented by as many as four Indian-origin ministers including one state minister and three junior ministers.
Summary:
Assange fuelled the speculation that he may have received Ecuador's citizenship by uploading a picture of himself in the colours of the Ecuadorian flag.n
Summary:
Transporting live marine crustaceans like lobsters on ice or in icy water was also banned.
Summary:
Vidya Balan has acquired the rights to a project in which she will be seen portraying former Prime Minister Indira Gandhi.
Summary:
Over 400 bats died in one colony alone as temperatures in Sydney soared to an 80-year record high of 47.3úC on Sunday.
Summary:
The new uniforms will be produced by Lands' End, which provides uniforms for Delta and Alaska Airlines.
Summary:
Gujarat-headquartered stent maker Sahajanand Medical Technologies (SMT) has raised $36.23 million (about â¹230 crore) in a funding round led by financial services firm Morgan Stanley.
Summary:
Aligarh Mayor Mohammed Furqan on Wednesday confessed that he did not remember the National Anthem completely, but that he respected it.
Summary:
Two of the owners were caught after the police laid a trap for them using information given by someone who had been sheltering them.
Summary:
The Indian NavyâÂÂs first all-women sailing crew braved their way through a storm in the Pacific Ocean while on the way to Falkland Islands on January 8.
Summary:
Former Unique Identification Authority of India (UIDAI) Chairman Nandan Nilekani has said that there is an "orchestrated campaign" to malign Aadhaar.
Summary:
Hyderabad Police on Wednesday busted an oil adulteration racket, with one person being arrested for illegally extracting oil from animal waste, flesh, and bones and selling it to fast-food joints.
Summary:
US President Donald Trump has told his South Korean counterpart Moon Jae-in that his country is open to talks with North Korea "at the appropriate time, under the right circumstances".
Summary:
Mumbai-based mobile gaming company Nazara has acquired a majority stake in Chennai-based gaming firm Nextwave Multimedia.
Summary:
Gurugram-based Ayurvedic beverages startup Kiva has raised an undisclosed amount of funding in an angel round led by consortium of investors, according to reports.
Summary:
Gujarat-based fintech startup Lendingkart's NBFC arm Lendingkart Finance has raised $4.7 million (â¹30 crore) from Netherlands Development Finance Company.
Summary:
Scientist Sivan K has been appointed as the new chairman of Indian Space Research Organisation (ISRO), succeeding AS Kiran Kumar.
Summary:
New Zealand mountaineer Sir Edmund Hillary, with Sherpa Tenzing Norgay, was the first to successfully reach the summit of Mount Everest in 1953.
Summary:
The Council for the Indian School Certificate Examinations has announced that ICSE Class 10 exams will be held from February 26 till March 28.
Summary:
Pakistan on Wednesday accused India of distracting it from counter-terrorism efforts.
Summary:
"Pakistan wants recognition for its sacrifices rather than payment," the Pakistani minister added.
Summary:
The Income Tax Department has said people who abet and induce benami transactions could face imprisonment of up to 7 years.
Summary:
Biochemists Frederick Banting, Charles Best, and John Macleod discovered insulin and administered it to 14-year-old Leonard Thompson.
Banting and Macleod were jointly awarded the 1923 Nobel Prize in Medicine.
Summary:
Slamming Siddaramaiah over his remark, the BJP accused him of trying to polarise the upcoming Karnataka Assembly elections on communal lines.
Summary:
After the Supreme Court ruled that playing the National Anthem in cinema halls before movie screenings is not mandatory, the Maharashtra government has said it will continue with the practice in the state.
Summary:
A Supreme Court bench has said the apex court receives criticism that it is trying to run the government and country if it points out that the government isn't doing its work.
Summary:
Settlement of the pending dues was one of the demands of the workers.
Summary:
Days after the murder of former Shiv Sena corporator Ashok Sawant, a 17-year old student from Pune has been arrested, police said.
Summary:
The Ministry of Human Resource Development has directed states to ensure that students are aware of appropriate mechanisms to address the issues of gender violence faced in and around schools.
Summary:
The White House on Wednesday called a federal judge's decision to block President Donald Trump from ending the DACA (Deferred Action for Childhood Arrivals) program "outrageous".
Summary:
A small fire broke out in a guest room of a Canadian hotel made of ice.
Summary:
She will be paired opposite actor Akshay Kumar in the film.
Summary:
A British man's testicle "exploded like a volcano" after he caught a rare infection known as African Salmonella while on a holiday in Tunisia.
Summary:
Chennai-based health food startup Manna Foods has raised â¹152 crore from a fund managed by Morgan Stanley Private Equity Asia.
Summary:
Bengaluru-based advertising technology firm InMobi on Wednesday said it has bought the US-based mobile video ad start-up AerServ for $90 million in a cash-and-stock deal.
Summary:
Lalu Yadav, sentenced to 3.5 years in jail in the fodder scam case, has said that sending him to an open jail would create law-and-order problems as too many people would come to meet him.
Summary:
Vijay Patel, an Indian-origin shopkeeper died after he was punched for refusing to sell cigarette paper to underage teenagers in London.
Summary:
Two men were beaten up and paraded with their heads partially shaved on allegations of stealing cattle in Uttar Pradesh's Ballia on Monday.
Summary:
Meanwhile, it has proposed hiring 225 buses, including 100 air-conditioned mini-buses.
Summary:
The train was stationed at a railway yard in Bihar's Mokama when the incident occurred, a Railways spokesperson said.
Summary:
Some reports claimed Siddaramaiah has a sleep disorder which he had tried to cure with yoga.
Summary:
The South Delhi Municipal Corporation collected â¹17 crore as 'use conversion charges' from traders between December 22 and January 8.
Summary:
Pope Francis is treating Rome's poor, homeless and migrants to a day at circus, in his latest gesture towards people living on the margins of society.
Summary:
Filmmaker Anurag Kashyap has said the biopics made in Bollywood are "not honest", adding that such films have become a formula now.
Kashyap further said he finds Bollywood biopics very "manipulative" and doesn't like most of them.
Summary:
Bollywood actor R Madhavan has qualified for the national finals of the Mercedes Trophy golf tournament by winning the qualification round of the Mumbai leg on Wednesday.
Summary:
SanDisk also unveiled the world's smallest 256 GB USB flash drive with reported speeds of up to 130 MBps.
Summary:
Hurricanes appealed for run-out, before asking the umpire to check for obstructing the field.
Summary:
The West Bengal man who was arrested for stalking Sachin Tendulkar's daughter Sara has said that he has stalked her "many times" and "will not leave her".
Summary:
Speaking at a campaign for Lok Sabha bypolls in Alwar, BJP candidate Jaswant Singh Yadav on Tuesday said Hindus should vote for him and Muslims should vote for the Congress.
Summary:
Tamil Nadu CM Edappadi K Palaniswami has introduced a bill in the state assembly proposing a nearly 100% salary hike for the state MLAs. The monthly salary and allowances of the MLAs will increase from â¹55,000 to â¹1.05 lakh if the bill is passed.
Summary:
Indrani Mukerjea's former driver has told a Mumbai court that Indrani had called her husband Peter Mukerjea from the forested area in Raigad where her daughter Sheena Bora's body was dumped a day after her murder.
Summary:
The state government is reportedly in the process of digitising all schools and improving infrastructure before passing the government order.
Summary:
The Supreme Court on Wednesday appointed a new three-member Special Investigation Team to re-examine the 186 cases, in connection with the anti-Sikh riots of 1984, which were closed earlier.
Summary:
Following the Kamala Mills fire in Mumbai, the Indian Hotels and Restaurant Association (AHAR) and Hotel and Restaurant Association (Western India) have issued circulars, asking their members to conduct fire safety audits at the earliest.
Summary:
The plea claimed that a state-financed institution cannot be allowed to have a prayer that promotes a particular religion in violation of the Constitution.
Summary:
The Supreme Court has asked Jaypee Associates to deposit â¹125 crore as directed, failing which it would be held in contempt of court and could land in Tihar Jail.
Summary:
Dalit leader Jignesh Mevani on Tuesday said he believes in the politics of love and not love jihad.
Summary:
Pointing out that people without a permanent address cannot avail Aadhaar cards, the Supreme Court on Wednesday asked the Centre if homeless people don't exist for the government.
Summary:
She said GST was introduced in India at once except in J&K where it was implemented only after a debate in the Assembly.
Summary:
The Centre on Tuesday approved sanctions worth â¹696 crore to eight Naxal-affected districts of Chhattisgarh under its Special Central Assistance scheme.
Summary:
Samsung Electronics is the most valuable company in South Korea with a market capitalisation of about $330 billion.
Summary:
Cricketer-turned-commentator Virender Sehwag took to Twitter to share an image of hand-shaped 'rotis' and jokingly asked Indian wicketkeeper Parthiv Patel if he needed a set of wicketkeeping gloves.
Summary:
Everton co-owner Farhad Moshiri has claimed that Romelu Lukaku refused a new deal at the club after a voodoo message told him to join Chelsea.
Summary:
Bengaluru-based Orb Energy has raised $15 million from Dutch development bank FMO and US government agency Overseas Private Investment Corporation (OPIC).
Summary:
The Supreme Court has exempted Jaypee Associates' directors from appearing in every court hearing on the grounds of their age, as requested by company's independent directors' counsel.
Summary:
The police, who retrieved drugs from the hotel room, suspect that the woman died of a drug overdose.
Summary:
As many as 55 out of 77 coal-fired power plants in Maharashtra have been flouting pollution norms, as per an analysis by non-governmental organisation Greenpeace.
Summary:
A constable employed with the Manpada Police Station in Maharashtra has been suspended after his wife accused him of marrying six other women over the last 32 years.
Summary:
Villagers hope that the memorial will serve as a tourist attraction, Asish said.
Summary:
Around 166 militants have joined peace process in Nangarhar till date due to the efforts of the intelligence operatives, officials said.
Summary:
The Central Board of Secondary Education on Wednesday announced that the Class 10 and 12 board exams will be held from March 5 this year.
Summary:
World's richest person and Amazon CEO Jeff Bezos added $32.6 billion to his wealth in 2017, which is higher than the GDP of 93 countries according to figures from IMF.
Summary:
The earlier policy allowed foreign airlines to hold up to 49% stake in Indian carriers with the exception of Air India.
Summary:
During his radio show 'Calling Karan', filmmaker Karan Johar urged a gay caller to be honest with his wife and tell her the truth after the man told him that he recently got married to the woman under family pressure.
Summary:
It also announced a blockchain-powered image rights platform KODAKOne which creates a digital ledger of rights ownership that photographers can use to register and license their work.
Summary:
Oledcomm claims the lamp can reach speeds of 224 Gbps, is more secure than traditional WiFi and does not use radio or electromagnetic waves.
Summary:
One of the five absconding accused in the 2002 Gulberg Society massacre was arrested in Gujarat's Ahmedabad on Wednesday, after more than 15 years.
Summary:
Summary:
A 26-year-old student, Mukul Jain, pursuing PhD from Jawaharlal Nehru University (JNU) has been missing from the campus since January 8, police said.
Summary:
The Indian Army killed 138 Pakistani soldiers in 2017 during tactical operations and retaliatory cross-border firings along the Line of Control in J&K, reports quoting government sources said.
Summary:
A Pakistani journalist known for criticising his country's military establishment on Wednesday claimed that he escaped being kidnapped by 10-12 armed men when he was travelling to the airport earlier in the day.
Summary:
South Korea's President Moon Jae-in has credited his US counterpart Donald Trump for facilitating the resumption of talks with North Korea after a gap of two years.
Summary:
Telecom body TAIPA has said that it expects mobile services to become costlier by 10% owing to the absence of government concessions.
Summary:
The market capitalisation of Moutai, which is also the most valuable liquor company, reached as high as $151 billion on Tuesday edging past LVMH's $149 billion.
Summary:
A user had made a purchase by sending 0.00475574 Bitcoin Cash instead of Bitcoin, which the website accepted.
Summary:
"A gift for all of you on Hrithik's birthday," tweeted Rakesh.
Summary:
Speaking on Bollywood biopics, Kashyap stated, "All biopics are nationalist and patriotic...that pisses me off."
Summary:
Summary:
Bengaluru-based car rental startup Zoomcar is set to raise $50 million from Ford's startup investment arm, Ford Smart Mobility, and Mahindra & Mahindra, according to a report.
Summary:
Existing investors like Russian VC firm RuNet and Singapore-based RB Investments participated in the round.
Summary:
The Finance Ministry on Wednesday said that supply of food or drink provided by a mess or canteen to students and staff is taxable at 5% without Input Tax Credit.
Summary:
The Delhi government will be funding pilgrimage trips of 77,000 senior citizens, 1,100 from every Assembly constituency, every year.
Summary:
Calling Japan a major ally, the US State Department on Tuesday gave preliminary approval for the sale of over â¹800-crore worth of SM-3 anti-ballistic missiles and equipment to Japan to counter North Korea's "provocative behaviour".
Summary:
After US President Donald Trump said that he would beat Oprah Winfrey if she runs for presidency in 2020, a Twitter user wrote, "Bruh in your dreams".
Some other users tweeted, "Oprah will not have to beat Trump in 2020.
Summary:
The address by Saeed "in real terms laid the foundation of jihad in the UK", Saeed's organisation had then reportedly said.
Summary:
The FDA gave the outlet 15 days to improve the conditions.
Summary:
The discontinuation of minting will have no effect on the circulation as there is no shortage of coins.
Summary:
The temporary 16-digit Virtual ID, which will be randomly generated, can be used instead of the actual Aadhaar number for authentication.
Summary:
Japanese astronaut Norishige Kanai has apologised for providing "terrible fake news" that he grew taller by 9 cm within three weeks aboard the International Space Station.
Summary:
A new poster of Anushka Sharma starrer 'Pari' has been released.
Summary:
US-based aerospace company Bell Helicopter has unveiled its 4-seater flying electric taxi at CES 2018 which it plans to supply to Uber for robotic flights in 2020.
Summary:
As per WADA's doping code of 2015, a first-time offence automatically invokes a four-year suspension.
Summary:
India on Tuesday bagged its first-ever medal at an international skiing event after 21-year-old Aanchal Thakur won bronze at the Alpine Ejder 3200 Cup in Erzurum, Turkey.
Summary:
Ex-England all-rounder Ian Botham was handed a 63-day ban for using cannabis in 1986.
Summary:
Former India captain Rahul Dravid's 12-year-old son Samit slammed 150 runs in an under-14 one-day match to help Mallya Aditi International School amass 500/5 in 50 overs.
Summary:
Windies got bowled out for 102 against England in the first innings of the Barbados Test, that ended on January 10, 1935.
Summary:
The capsule consists of six arms that unfold into a star-shaped structure and gradually release drugs after swallowing.
Summary:
UK Prime Minister Theresa May has inducted Rishi Sunak, an Indian-origin lawmaker and the son-in-law of Infosys Co-founder Narayana Murthy, into her government.
Summary:
French fashion designer Gabrielle Bonheur 'Coco' Chanel introduced the 'Little Black Dress' in the 1920s.
Summary:
A Spanish prisoner who was declared dead by three doctors turned out to be alive when he started snoring and moving on the autopsy table, said reports.
Summary:
Actress Meghan Markle, the fiancee of UK's Prince Harry, has closed her social media accounts on Instagram, Twitter and Facebook.
Summary:
Hobart Hurricanes' Jofra Archer jumped to pull off a one-handed reflex catch off his own bowling to dismiss Brisbane Heat's Ben Cutting in the Big Bash League on Wednesday.
Summary:
The Indian cricket team will tour Ireland for two T20Is in June this year, their first visit to the country since 2007.
Summary:
Short overtook Luke Wright, who hit 117(60) while playing for Melbourne Stars against Hobart Hurricanes in the 2012 edition.
Summary:
Indian cricketer Rohit Sharma took to Instagram to troll Yuzvendra Chahal after the latter shared a picture of himself standing with a golf club.
Summary:
The airline added that the flights that will feature seats "pre-reclined at a comfortable angle" will be less than four hours.
Summary:
An estimated 13,000 tourists were trapped in Swiss ski resort Zermatt for two days due to heavy snowfall and a high risk of avalanches.
Summary:
The next-generation Airbus SE BelugaXL super transporter, one of the world's largest aircraft, is set to make its debut flight in the middle of 2018 after the first plane was rolled off the assembly line.
Summary:
The remote Scottish island of Stronsay, home to about 300 people, has launched a new website and tourism campaign in the hopes of creating new jobs and attracting new residents.
Summary:
Paytm has announced setting up of its wealth management division Paytm Money for users to store cash and earn interest.
Summary:
West Bengal CM Mamata Banerjee has alleged that RSS and its affiliates are distributing books containing defamatory material against Prophet Muhammed to school students to trigger communal riots.
Summary:
Kashmiri girl Insha Mushtaq, who lost her eyesight to pellet gun injury during the protests that broke out in Jammu and Kashmir in 2016, cleared her Class X exams.
Summary:
The Union Cabinet on Wednesday cleared a proposal allowing 100% foreign direct investment (FDI) in single-brand retail via automatic route.
Summary:
BMW also set the record of the longest twin vehicle drift of 63 km while refuelling the car mid-drift.
Summary:
The robots, created by British artist Giles Walker, had CCTV cameras for faces, and wore high heels while dancing around the pole.
Summary:
French company Euveka has developed a robotic mannequin called Emineo which can change shape in seconds.
Summary:
Summary:
SpaceX President Gwynne Shotwell has said the Falcon 9 rocket "did everything correctly", after reports emerged claiming the space exploration startup lost the 'secret' satellite Zuma.
Summary:
The machine named 'Happy Nari', installed by the Railway Women Welfare Association of Bhopal, dispenses two sanitary napkins for â¹5.
Summary:
A Russian comedy duo made a prank call to Eddie Calvo, the Governor of the US territory Guam and fooled him into believing that he was speaking to Ukraine's PM.
Summary:
A US couple has been accused of attempting to rob a taxi driver the woman distracted by being topless.
Summary:
McDonald's north and east India licensee CPRL has said that 84 outlets, which were closed in December, will reopen by this weekend.
Summary:
Filmmaker Rohit Shetty, on being asked about his views on nepotism, said, "Two years ago, intolerance was the word, now it's nepotism." "But it will fade out in some time," he added.
Summary:
Hrithik Roshan, who turned 44 on Wednesday, received â¹100 as his first remuneration at the age of six for appearing in the song 'Jane Hum Sadak Ke Logon Se' in the 1980 film 'Aasha'.
Summary:
Filmmaker Karan Johar, while giving examples of how there are female superstars in Bollywood, said, "Kajol and Aishwarya Rai Bachchan are superstars in their own right." "I don't think you can say that [Bollywood is dominated by males]," he added.
Summary:
The device can be installed on any standard door by attaching it to the door's hinge and also illuminates the room when it detects smoke.
Summary:
The police said that forensic specialists are examining the incident.
Summary:
The company also said the systems running on older Intel processors will experience noticeable decrease in performance.
Summary:
A Mumbai-Bengaluru IndiGo flight returned to the Mumbai airport after pilots declared a full emergency shortly after takeoff on Tuesday night.
Summary:
Footage taken by a passenger shows a Disney Monorail running with a train door wide open across the Florida theme park.
Summary:
Samajwadi Party chief Akhilesh Yadav has said he is not thinking of an alliance with any party and is working on strengthening the partyâÂÂs vote bank.
Summary:
US-based kids content startup Kinsane has raised $2.5 million from angel investors including Zodius Capital Founder Neeraj Bhargava, the startup said.
Summary:
Acknowledging the leak, Wag said it happened because of a technical glitch in the software and added that no information has been misused.
Summary:
The reactions also used up less energy in breaking methane and butane.
Summary:
A Europe-based research has found that consumption of common painkiller and fever drug ibuprofen for up to six weeks disrupted male sex hormone production.
Summary:
A YEIDA official said that adequate time was given to all builders to defend themselves.
Summary:
The initiative also seeks to make sanitary napkins free of cost.
Summary:
Congress leader Harinder Mann reportedly told party workers not to be suppressed by opposition forces and to "hack them".
Summary:
The Centre said this while the court was hearing a plea seeking abolition of hanging by the neck.
Summary:
It said that with an "ambitious government undertaking comprehensive reforms", India has "enormous growth potential" compared to other emerging economies.
Summary:
An Indian-origin man, Baljinder Singh, has become the first person to lose naturalised US citizenship under President Donald Trump's administration.
Summary:
A US district judge has blocked President Donald Trump's administration from ending the 'Dreamers' programme which aims to shield deportation of immigrants who were brought illegally to the US as children.
Summary:
India has set up three research stations in Antartica, the first being 'Dakshin Gangotri' in 1984.
Summary:
The two leaders also recorded their gratitude and appreciation for the Soviet Union for facilitating the deal.
Summary:
On being asked whether he would win the US 2020 presidential election if talk show host Oprah Winfrey chooses to run for the post, US President Donald Trump said, "Yeah, I'll beat Oprah." However, he added, "I know her very well.
Summary:
Australia-based researchers have developed a swallowable electronic capsule that can detect different gases in the human gut.
Summary:
Earlier, Paul uploaded the video blurring the victim's face but removed it within 24 hours.
Summary:
While IndiGo logged an on-time performance (OTP) of 81.22%, the list was topped by Japan Airlines with an OTP of 85.27%.
Summary:
Japanese astronaut Norishige Kanai has claimed he grew 9 cm in height over the past three weeks aboard the International Space Station (ISS).
Summary:
Indian scientists have discovered a 5,000-year-old rock art in Kashmir, possibly the oldest human record of a supernova, a stellar explosion.
Summary:
China's Consul General Ma Zhanwu on Tuesday said the Doklam issue was an "old page" and that the country was hoping to work with India to "turn a new page" of growth and development of bilateral relations.
Summary:
An earthquake of magnitude 7.6 hit islands belonging to Honduras in the Caribbean Sea on Tuesday.
Summary:
A man in US' California accidentally set his apartment on fire while trying to burn a spider with a torch lighter, according to reports.
Summary:
Deepika Padukone, on being asked to complete the sentence 'Ranveer, stop doing...', replied by saying, "Stop doing outrageous clothes." The actress, who is said to be dating Ranveer, said this during her appearance on the Neha Dhupia-hosted talk show 'BFFs with Vogue'.
Summary:
Actor Hrithik Roshan's ex-wife Sussanne Khan took to Instagram to wish him on the occasion of his 44th birthday on Wednesday and wrote, "Forever and always you stay the sunshine in my life." "Smile that smile brightest and you always will spread that light...limitless," she added.
Summary:
The owner of the apartment said she only made a single payment.
Summary:
Speaking about the silence on sexual harassment in Bollywood, Neha Dhupia said, "There's a constant fear among actors to save their reputation, [and that of] their parents and families." "Also, they may feel it's going to become ugly," she added.
Summary:
Malaika Arora, while referring to the 'Chaiyya Chaiyya' song from 1998 film 'Dil Se', said the magic of it could only be recreated if Farah Khan, Shah Rukh Khan and she came together for it.
Summary:
The man told the police that he was dropped at the airport to fill out a job application.
Summary:
Scientists in 2009 reported the discovery of 60-million-year-old fossils of a snake estimated to weigh 1,140 kg and measure 48 feet.
Summary:
National Conference Chief Farooq Abdullah on Tuesday said only PM Narendra Modi has the "courage" to initiate talks with Pakistan to end militancy in Jammu and Kashmir.
Summary:
A woman from Uttar Pradesh has alleged that her husband gave her instant Triple Talaq in an inebriated condition over the phone.
Summary:
Minister of State for Civil Aviation Jayant Sinha on Tuesday said that the ministry was exploring the possibility of âÂÂair rickshawsâ based on drone technology for easy transportation service.
Summary:
Questioning Supreme Court's role in Triple Talaq issue, an All India Muslim Personal Law Board member said the court's work is to make decisions within the purview of law and to not make the law.
Summary:
Wedding card of Uttarakhand BJP MLA Suresh Rathor's 'daughter' had a logo of the state government printed on it.
Defending the move, Rathor said, "I was marrying off a poor girl as my own daughter.
Summary:
Kerala CM Pinarayi Vijayan allegedly paid â¹8 lakh for a helicopter ride taken from Thrissur to Thiruvananthapuram from the State Disaster Relief Fund.
Summary:
US President Donald Trump has been named the world's most oppressive leader towards press freedom by New York-based non-profit organisation Committee to Protect Journalists.
Summary:
Bahrain has announced plans to host the first-ever 'Baby Olympics' where two to four-year-olds will take part in the games in April.
Summary:
The Delhi-National Capital Region (NCR) is likely to generate about 1.5 lakh metric tonne of e-waste in a year by 2020, industry body Assocham has said.
Summary:
Jet Airways has terminated the services of two senior pilots who were involved in a cockpit fight while flying from London to Mumbai on January 1.
Summary:
Speaking during an event at the Rajasthan University, state Education Minister Vasudev Devnani said Indian astronomer and mathematician Brahmagupta had discovered the law of gravity 1,000 years before English scientist Isaac Newton.
Summary:
The Home Ministry has issued an advisory against using plastic flags since they are not biodegradable and ensuring their proper disposal with dignity is a practical problem.
Summary:
Adding that he didn't need to learn Hindutva from the UP CM, Siddaramaiah said Adityanath has a "jungle raj in Uttar Pradesh".
Summary:
Union Minister Giriraj Singh on Tuesday claimed that Kerala CM Pinarayi Vijayan "looked, acted and behaved" like North Korean leader Kim Jong-un.
Summary:
In a circular issued to its employees, the State Bank of India included a directive against burping, especially during meetings, and called it "highly irritating".
Summary:
As many as 4,790 fires were reported across Mumbai, including at cinema studios, dilapidated buildings, plush restaurants, and illegal structures in 2017, as per official data.
Summary:
The family of an accident victim has accused doctors of a government-run hospital in Karnataka of declaring him dead while he was alive.
Summary:
Hurricane Harvey which struck the US in August 2017 cost nearly â¹8 lakh crore in damages.
Summary:
Adding that they captured and are analysing three drones, the ministry said the extremists may have been aided by a "technologically advanced state".
Summary:
Four investors of cryptocurrency Fantasy Market have claimed that its CEO Jonathan Lucas disappeared with their money and hasn't refunded their investments despite repeated requests.
Summary:
A Thane court has rejected a plea by Dawood Ibrahim's brother Iqbal Kaskar, arrested in an extortion case, to allow him to have homemade food in jail due to various ailments.
Summary:
A man died after his daughter allegedly pushed him off the third floor of their house in a bid to save her lover in Uttar Pradesh's Noida.
Summary:
Swaraj India leader Prashant Bhushan on Tuesday said, "We chose secularism because diversity is our strength.
Summary:
The Delhi government is planning to hold weekly cultural events, including performances and exhibitions, at historical sites starting February in a bid to promote and preserve them as centres of arts and cultural heritage.
Summary:
Two Maharashtra ministers have been using more than one vehicle, despite a state government order stating a minister would get only one vehicle for official use, an RTI query has revealed.
Summary:
Two aides of RJD chief Lalu Prasad Yadav were lodged in a Ranchi jail, days before Yadav was sent to the same jail over his conviction in the fodder scam case, reports said.
Summary:
The first meeting of the UN General Assembly (UNGA) comprising 51 nations was convened at Westminster Central Hall in London, England on January 10, 1946.
Summary:
Orbán once called asylum seekers "a Trojan horse for terrorism".
Summary:
US Defence Secretary James Mattis has apologised to Japanese counterpart Itsunori Onodera over a series of incidents involving US military aircraft, including the emergency landing of a helicopter in Japan's Okinawa region.
Summary:
Ex-UK PM David Cameron thought that former US President Barack Obama was one of the "most narcissistic, self-absorbed people" he had ever encountered, the PM's former aide Steve Hilton has claimed.
Summary:
US President Donald Trump's scheduled medical exam this week will not include a psychiatric evaluation, the White House said on Monday amid claims that he was unfit for the President's office.
Summary:
She further said that there are compliance risks to the bank beyond the risks to the customer.
Summary:
Chatterjee alleged that unlawful activities are being facilitated by use of cryptocurrencies.
Summary:
The 'Volocopter 2X' features 18 propellers and has a flight time of 30 minutes.
Summary:
Actress Anushka Sharma, while sharing the first video of her look from her upcoming film 'Pari', tweeted, "Sweet dreams guys." The video announces the new release date of the film on the occasion of Holi on March 2.
Summary:
The makers of the Saif Ali Khan starrer 'Baazaar' have announced its release date as April 27, which is also the release date for Kangana Ranaut's film 'Manikarnika - The Queen of Jhansi'.
Summary:
A footballer from Saudi Arabia is facing jail for dabbing during a match, as the act is illegal in the country.
Summary:
Bengaluru-based space startup TeamIndus, which aims to launch a mission to the Moon to win the $20-million Google Lunar XPRIZE, has reportedly lost its launch contract with ISRO over funding issues.
Summary:
In an apparent reference to China, Prime Minister Narendra Modi on Tuesday said that India was not eyeing foreign territories and exploiting anyone's resources.
Summary:
Jayalalithaa's 'Cradle Baby Scheme' was even lauded by Nobel Peace Prize winner Mother Teresa, he added.
Summary:
A Gurugram court has restrained the media from revealing the identity of the victim in the Gurugram school murder case, directing the media to use 'Prince' to identify him.
Summary:
An ISIS executioner, known as the 'White Beard', accused of beheading gay men and throwing them off rooftops has escaped police custody just minutes after being arrested in Iraq.
Summary:
North Korea has said its weapons are only directed at the US and not South Korea, Russia or China.
Summary:
JPMorgan CEO Jamie Dimon on Tuesday said he regrets criticising Bitcoin and calling the cryptocurrency a fraud in the past.
Summary:
Filmmaker Vikram Bhatt, who is known for his bold films often in the horror genre, said, "Selling sex in Bollywood is dead." He further said that 'horrex', a genre of movies with elements of horror and sex, doesn't exist anymore as sex is out of horrex.
Summary:
However, pacer Bhuvneshwar Kumar jumped eight places to achieve career-best 22nd position in Test rankings for bowlers.
Summary:
Sandhu, however, said he would consider playing for a European club again if it meets his terms and conditions.
Summary:
Calling Congress President Rahul Gandhi's speech in Bahrain irresponsible, BJP leader and Union Minister Ravi Shankar Prasad on Tuesday alleged that he was spreading hatred among Indians with his speeches abroad.
Summary:
This takes the total number of Indian pilgrims who can perform Haj to over 1.75 lakh, including the 35,000 increase in quota last year.
Summary:
Police has arrested 12 people, including three minors, on Monday for allegedly vandalising vehicles during the violence that took place in Koregaon Bhima village in Maharashtra's Pune.
Summary:
It had seized 3,000 vehicles and collected a â¹1.38-crore fine from January to October 2017.
Summary:
Senior journalists accompanying West Bengal CM Mamata Banerjee on her UK visit were reportedly caught stealing silver cutlery during an official dinner at a London hotel.
Summary:
Maharashtra's Pupil-Teacher Ratio (PTR) in 2016-17 was 27 students for every teacher, worsening in comparison with the 2015-16 figure which stood at 24 students per teacher, the Centre's All India Survey on Higher Education has revealed.
Summary:
The Delhi government on Tuesday approved a tender to purchase 1,000 non-air conditioned, standard-floor cluster buses to serve the city's outlying areas, Deputy Chief Minister Manish Sisodia said.
Summary:
Several fire tenders were rushed to the spot to control the fire and no casualties have been reported so far.
Summary:
A 15-year-old boy was killed by a 19-year-old performing a 'dagger dance' at an engagement function in Hyderabad's Shaikpet.
Summary:
Reports said when the BJP corporators played the song on tape, Muslim corporators from BSP and SP walked out.
Summary:
On receiving a complaint from the man, the police laid a trap and held the officer while accepting the bribe.
Summary:
A Bangladeshi court on Monday upheld a government ruling banning marriage between its citizens and Myanmar's Rohingya refugees.
Summary:
At least seven people were killed and 23 others were injured on Tuesday after a bomb went off in the Pakistani city of Quetta, officials said.
Summary:
Let's refrain from utilising CBFC's name unnecessarily." Prasoon also said the film has already been submitted with the five modifications that the Board suggested previously.
Summary:
While describing benefits of its 'Beauty Cream', a Patanjali advertisement said the cream is "extremely beneficial for skin ailments like dry skin, dark complexion and wrinkles".
Summary:
US President Donald Trump would welcome the challenge to run against talk show host Oprah Winfrey in 2020 if she chooses to become a presidential candidate, the White House said on Monday.
Summary:
Australian coach Darren Lehmann tweeted that the replica trophy of the Ashes urn was allotted a separate seat on Qantas airline, while he was travelling from Sydney to Melbourne.
Summary:
Batsman Baheer Shah, part of Afghanistan's team for the upcoming U-19 World Cup, has a first-class average of 121.77 presently, the highest average in first-class cricket (minimum 1,000 runs).
Summary:
Yuvraj Singh slammed his joint second-slowest fifty in T20s after reaching the half-century mark in 40 balls for Punjab in a domestic T20 match against Delhi on Tuesday.
Summary:
After taking five wickets in the first Test against India, 22-year-old South African pacer Kagiso Rabada has become the world's highest-ranked Test bowler.
Summary:
In a tweet, he said it "always seemed fair" to him to pay for prostitutes and that he would not have met his wife otherwise.
Summary:
Mumbai-Delhi has emerged as the third busiest domestic air route in the world in 2017 with 47,462 flights during the year, according to OAG Aviation Worldwide.
Summary:
Rajasthan Education Minister Vasudev Devnani on Monday said that he does not mention Jawaharlal Nehru University too much and no Kanhaiya should take birth in Rajasthan.
Summary:
Conducting the Yuva Hunkar rally in Delhi despite being denied permission, Gujarat MLA Jignesh Mevani on Tuesday said, "The government is targeting us, an elected representative is not being allowed to speak".
Summary:
The beads are added to these products to act as an exfoliant.
Summary:
Shia Central Waqf Board chief Waseem Rizvi on Tuesday claimed some madrasas have produced terrorists and stressed the need to make religious education optional.
Summary:
This comes after people slammed H&M, calling the advertisement "racist" and "unacceptable".
Summary:
India's richest banker Uday Kotak has planned to set up a family office but decided not to invest in debt and cryptocurrencies.
Summary:
The collection, which totalled â¹6.56 lakh crore, is 67% of the Budget estimate of direct tax for 2017-18.
Summary:
Hollywood actress Gwyneth Paltrow has announced that she is engaged to television producer Brad Falchuk.
Summary:
Actor Abhishek Bachchan, while wishing filmmaker Farah Khan on her 53rd birthday, wrote, "Happy Birthday my Farahbia." He shared a picture with Farah from the sets of the 2006 film 'Kabhi Alvida Naa Kehna'.
Summary:
Twitter users slammed Disney for releasing the official Black Panther collector's badge with a white character while the superhero character is shown as the king of the fictional African nation of Wakanda.
Summary:
Indian woman cricketer Veda Krishnamurthy took to Twitter to share a picture of herself imitating ex-Pakistan captain Shahid Afridi's celebration after taking a wicket in Women's Big Bash League.
Responding to it, Afridi wrote, "Good try, work harder and more importantly keep taking wickets you'll get there."
Summary:
When Gandhi refused to help her, the woman asked him why politicians visit public places and how do they benefit the people.
Summary:
The online records will help research scholars, administrative departments of the state government, judiciary, and general public.
Summary:
Seventeen unions went on strike on Thursday demanding that the drivers' salaries be increased to that of drivers from other government corporations.
Summary:
Summary:
Summary:
Referring to the anti-government protests that took place in Iran, Supreme Leader Ayatollah Ali Khamenei has said that those who seek to overthrow the Islamic Republic from abroad "have failed and will fail in the future too".
Summary:
WikiLeaks has shared a link to a full-text copy of the book 'Fire and Fury: Inside the Trump White House', which is based on US President Donald Trump's tenure in office.
Summary:
Yusuf Pathan has said the prohibited substance for which he has been banned was detected in a medicine which he was consuming for throat infection.
Summary:
In the memo, Damore had questioned Google's diversity efforts and blamed biological differences, not discrimination, for fewer women in tech roles.
Summary:
Amazon CEO Jeff Bezos' net worth reached $105 billion on Monday which is above Bill Gates' 1999 high of $100 billion.
Summary:
Woodman's 2014 pay totalled $287.2 million as the company's shares soared after IPO, boosting the value of his equity grant, according to Bloomberg.
Summary:
Vivo has unveiled the world's first smartphone with in-display fingerprint sensor at CES 2018.
Summary:
The car has a top speed of 257 kmph and also features self-driving technology.
Summary:
Cybersecurity expert John McAfee on Monday tweeted that he has used cryptocurrency to pay for prostitutes, drugs and pornography.
Summary:
Sahara Desert has received around 15 inches of snow after a storm struck Ain Sefra in Algeria on Sunday.
Summary:
After the demise of the man behind the success of Old Monk, Kapil Mohan, a user tweeted, "Thank you...for giving us the solution for everything." A tweet read, "The only thing that unites India across religious and caste lines.
Summary:
An American tourist was arrested after allegedly overdosing on Viagra and running around naked at the Phuket International Airport in Thailand.
Summary:
He had allegedly tied up with a matrimonial agency to pick his victims.
Summary:
Other modifications suggested by the Board include changes in the song 'Ghoomar' and adding a disclaimer that the film doesn't glorify the practice of Sati.
Summary:
American television host Jimmy Kimmel, while referring to the goof-up at the Oscars last year wherein the wrong film was named the Best Picture, said, "If it happens again, literally everyone at ABC should be fired." "If it happens a second time, no one's competent enough to be running a TV show," he added.
Summary:
The film, in which Johar will be seen playing himself, will reportedly revolve around the IIFA Awards.
Summary:
The film is the third instalment in the 'Dhamaal' film series and is scheduled to release on December 7, 2018.
Summary:
The Australian parliament had voted to legalise same-sex marriages in early December but the country required that all couples give a month's notice for weddings, making Tuesday the first possible date for gay marriages.
Summary:
Former Australian captain Ricky Ponting is set to be Australia's assistant coach for the upcoming T20I series against New Zealand and England ahead of coaching the Delhi Daredevils team in IPL 2018.
Summary:
Eight-time Olympic gold winner Usain Bolt has secured a trial at German football club Borussia Dortmund, scheduled to take place in March.
I don't get nervous but this is different, this is football now," he said.
Summary:
India defeated South Africa by 189 runs in a warm-up match ahead of the ICC U-19 World Cup in New Zealand on Tuesday.
Summary:
An elderly couple in Mumbai has written to the President, seeking permission for 'active euthanasia' which allows a person to be killed by administering an overdose of painkillers.
Summary:
Three contract workers died due to suffocation while cleaning a blocked manhole on the premises of ND Sepal Apartments in Bengaluru's Somasundarapalya.
Summary:
A Bhopal man killed himself on Saturday after his wife refused to hand over the TV remote to him, said the police.
Summary:
The Islamic State has increased its presence in Pakistan in 2017, according to a report by a Pakistan-based think tank.
Summary:
Excuse me," the guest said.
However, the host didn't mind the unexpected appearance and said, "He can come in.
Summary:
A high school student was killed and six others were wounded on Sunday in Sudan's Geneina city during protests against the rising prices of bread.
Summary:
Indian Bitcoin exchange Unocoin's Co-founder Sunny Ray has said that people should not see Bitcoin as a way to evade taxes.
Summary:
Gurugram-based Bike taxi startup Bikxie has raised â¹2 crore from GEMs Partners and former MD and CEO of finance company Magma Fincorp, Sachin Khandelwal, the company said.
Summary:
Yusuf Pathan has been handed a five-month back-dated suspension by the BCCI for testing positive for a banned substance during a domestic T20 competition in March last year.
Summary:
To date, ISRO has launched over 200 foreign satellites, including 101 nanosatellites in its record launch in February 2017.
Summary:
Bihar government has banned manufacture, distribution, sale, purchase, display, and advertisement of electronic cigarettes in the state.
Summary:
The team booked an entire floor at Apple's Cupertino office which was named the 'Purple Dorm' to work on the iPhone.
Summary:
American company Kohler has unveiled Numi intelligent toilet at the Consumer Electronics Show (CES) 2018, which can automatically open up its lid when a user approaches it.
Summary:
Nokia has unveiled a sleep tracking system called Nokia Sleep at CES 2018 which can monitor a user's snoring.
Summary:
Babulal, who set himself on fire after Indian captain Virat Kohli got out for just 5 runs in the first innings of the first South Africa Test, succumbed to his injuries on Tuesday.
Summary:
Fulay helped Google build communication apps Allo, Duo, and Hangouts, and previously served Microsoft as its Lead Program Manager.
Summary:
A 14-year-old anaemic boy, who received repeated blood transfusions totalling 22 litres over the last two years, was recently treated after Delhi-based doctors found hookworms in his small intestine.
Summary:
UIDAI has decided to give access only through biometrics of the person whose details were sought, according to the reports.
Summary:
Prime Minister Narendra Modi on Tuesday said that international organisations such as IMF, World Bank, and Moody's are looking at India in a positive way.
Summary:
Emphasising the harmful effects of tobacco products, the apex court remarked that health of a citizen holds primacy.
Summary:
Gandhi returned to India on January 9, 1915, with his wife Kasturba.
Summary:
India observes Pravasi Bharatiya Divas on January 9 every year to mark the contribution of the overseas Indian community in the development of the country.
Summary:
Aviation Secretary Rajiv Nayan Choubey has said the government will invite expressions of interest from those interested in buying Air India after the budget on February 1.
Summary:
Actress Bella Thorne has revealed she was sexually abused as a child till the age of 14.
Later, Thorne posted a video in which she encouraged those who were sharing experiences of facing sexual harassment.
Summary:
Responding to reports that Deepika Padukone starrer 'Padmavati' will release on January 25, the same date as 'PadMan', Sonam Kapoor said, "Good cinema is good cinema.
Summary:
The Dubai Creek Tower is expected to be completed in time for the Dubai Expo 2020.nnn
Summary:
The Brihanmumbai Municipal Corporation (BMC) has razed illegal extensions at BJP MP Shatrughan Sinha's 'Ramayan' residence in Mumbai's Juhu.
Summary:
With average global temperature predicted to increase to 2.6úC by 2100, scientists fear high egg mortality and female-only offspring production among the species.
Summary:
Karnataka CM Siddaramaiah has questioned Uttar Pradesh CM Yogi Adityanath's authority to criticise him for consuming beef.
Summary:
The Sikh Coordination Committee of the East Coast and American Gurdwara Parbandhak Committee have announced a ban on the entry of Indian officials in 96 gurdwaras in the US.
Summary:
Addressing the first PIO Parliamentarian Conference in Delhi, PM Narendra Modi on Tuesday asked global lawmakers of Indian origin to be partners in India's development and facilitate the country's economic growth.
Summary:
India recently retrieved a stolen 12th-century idol of Brahma and Brahmani from London.
Summary:
US President Donald Trump on Monday appeared to forget the National Anthem during his appearance at a college football championship match in Atlanta.
"Someone should teach Trump the old trick of repeatedly mouthing watermelon when you forget the words," read another tweet.
Summary:
The employees affected are those hired for non-technical roles and the move follows an order from the airline's CMD Pradeep Singh Kharola.
Summary:
The Ministry of External Affairs recently launched an initiative titled 'Sameep' under which serving diplomats visit schools and colleges in their hometowns and interact with students.
Summary:
Modifying its order on the National Anthem, Supreme Court on Tuesday said that it is not mandatory to play the anthem in cinema halls before movie screenings.
Summary:
Actor Farhan Akhtar was offered a role in filmmaker Rakeysh Omprakash Mehra's 2006 film 'Rang De Basanti', which was rejected by him.
Summary:
The app, revealed at CES 2018, will let users book a ride in real-time and have access to other modes of transportation including public, private, and ride-sharing services.
Summary:
Indian hockey players participating at the Hockey India Senior Men's National Championships in Imphal have complained of falling sick due to the lack of facilities to counter the cold weather.
Summary:
American whistleblower Edward Snowden has said UIDAI authorities should be arrested not the journalists for the alleged Aadhaar data breach.
Summary:
The call, which Jobs made while demonstrating the working of Google Maps, was also the first ever phone call made on an iPhone.
Summary:
Astronauts floating weightlessly through space experience a persistent fever, with their body temperature increasing by about 1úC, as per a Germany-based study on space station astronauts.
Summary:
Addressing the NRI community in Bahrain, Congress President Rahul Gandhi on Monday said that he will present a "shining new" version of the party in the next six months.
Summary:
With former CM Virbhadra Singh and his son Vikramaditya Singh taking oath as Himachal Pradesh Legislative Assembly members, it'll be for the first time a father-son duo will be a part of the state assembly.
Summary:
Union Minister Smriti Irani has tweeted an incorrect news item stating the recently approved Zojila Tunnel project will reduce Srinagar-Leh travel time to 15 minutes.
Summary:
Addressing the Indian diaspora in Bahrain, Congress President Rahul Gandhi on Monday said India is under threat as the government is converting the anger of unemployed youth into hatred among communities.
Summary:
North Korea has agreed to send a delegation of high-ranking officials, athletes and cheerleaders to the 2018 Winter Olympics in South Korea next month.
Summary:
Khorana also developed the first artificial gene in 1972, whose functioning he demonstrated within a bacterial cell.
Summary:
Wisdom, along with millions of albatrosses, flies thousands of kilometres each year to return home and raise a single chick.
Summary:
Children as young as five are encouraged to smoke by their parents as part of a centuries-old tradition in Portuguese village Vale de Salgueiro during Christian feast day Epiphany.
Summary:
Thousands of people participated in the annual No Pants Subway Ride held around the globe on Sunday.
Summary:
Bengaluru Development Minister KJ George has announced a compensation of â¹5 lakh each to the kin of the employees who lost their lives during a fire at a restaurant in Bengaluru's Kalasipalyam on Monday.
Summary:
An FIR has been registered against the organisers of the event where Gujarat MLA Jignesh Mevani and JNU student leader Umar Khalid gave speeches in Maharashtra's Pune on December 31.
Summary:
An arrest warrant has been issued against Dera Sacha Sauda Chairperson Vipassana Insan in connection with the violence in Panchkula after Gurmeet Ram Rahim's conviction in August.
Summary:
Hizbul Mujahideen Commander Riyaz Naikoo has allegedly threatened through an audio clip to pour acid into the eyes of people contesting for upcoming Panchayat elections in Jammu and Kashmir.
Summary:
Rejecting the bail plea of a 16-year-old student accused of murdering a 7-year-old student at Gurugram's Ryan International School, a sessions court has fined his father â¹21,000 for wasting the court's time on baseless litigations.
Summary:
One of the accused has been arrested, the Superintendent of Police said.
Summary:
Law Minister Ravi Shankar Prasad on Monday urged the UIDAI to seek The Tribune and its journalist's help in identifying the "real offenders" responsible for the Aadhaar data breach reported by the newspaper.
Summary:
Journalists should not be charged with defamation just because they committed minor errors in reporting or showed passion and enthusiasm in covering a scam, the Supreme Court said on Monday.
Summary:
This comes after the state government ordered the installation of PM Modi's portrait in all educational institutions.
Summary:
At least three people were injured on Monday after a fire broke out on the roof of Trump Tower in New York.
Besides housing businesses and luxury apartments, the building is also US President Donald Trump's private residence.
Summary:
Pakistan had released 145 Indian fishermen arrested on similar charges in December.
Summary:
The US government has announced that it is not considering any proposal that could force deportation of H-1B visa holders by ending the provision of granting visa extensions, as they waited for permanent residency.
Summary:
Brigadier (retired) Kapil Mohan, the former Chairman and MD of India's first known brewery Mohan Meakin Ltd, passed away on Saturday aged 88 after suffering a cardiac arrest.
Summary:
The system, which will be a national facility for improving weather and climate forecasts, will also help improve India's peak computing capacity from 1 petaflop to 6.8 petaflops.
Summary:
SpaceX has reportedly lost the 'secret' satellite Zuma commissioned by the US government after it failed to reach the orbit.
Summary:
Meanwhile, Jet Airways released a statement saying it would take further action against the employee following the investigation.
Summary:
An Italian appeals court has acquitted former Finmeccanica President Giuseppe Orsi and former chief of its subsidiary AgustaWestland, Bruno Spagnolini, in the AgustaWestland corruption case citing insufficient evidence.
Summary:
China has agreed to stop a road construction activity along the Line of Actual Control (LAC) in the Indian territory of Arunachal Pradesh after a border personal meeting between the two nations.
Summary:
The Congress has termed Section 377 of the Indian Penal Code, which criminalises homosexuality, as "archaic", adding that it has no place in the 21st century.
Summary:
"Pakistan has made important sacrifices and contributions to the global anti-terrorism cause," it added.
Summary:
The US government has decided to end the Temporary Protected Status (TPS) of nearly 2 lakh El Salvadorans in September 2019, giving them 18 months to leave or seek lawful residency.
Summary:
The PM had in the past joked about executing any journalist who criticised his government.nnn
Summary:
Police officers have released an audio clip of a 39-year-old man calling 911 and reporting himself for drunk driving in Florida, US.
Summary:
Actress Radhika Apte has said Sushant Singh Rajput is an overrated actor.
Summary:
Reacting to reports of marrying rumoured boyfriend Anand Ahuja in April, actress Sonam Kapoor said she hardly has time for it.
Summary:
Rajput organisation Karni Sena's member Mahipal Singh Makrana has said the group wants names of the characters in 'Padmavati' to be changed, following Censor Board's suggestion that the film's title should be changed to 'Padmavat'.
Summary:
Kangana will reportedly portray the role of an amputee while Amitabh will play her mentor in the film.
Summary:
Indian cricketer Yusuf Pathan failed a dope test last year during Ranji Trophy season, following which the BCCI asked Baroda to not pick him, according to a report.
Summary:
Wrestler Parveen Rana has alleged that two-time Olympic medallist Sushil Kumar personally instigated his supporters to manhandle him, resulting in a brawl between the two camps after the Commonwealth Games selection trials.
Summary:
Ranjan made his T20 debut in 2016, making 10 runs in three games, and played his only List A match last year against Himachal Pradesh.
Summary:
Congress President Rahul Gandhi on Monday reached Bahrain, his first foreign visit as party chief, as part of his outreach to the Indian diaspora.
Summary:
A Pakistani Urdu newspaper 'Khabrain' has issued its calendar for 2018 with 26/11 Mumbai attack mastermind JuD chief Hafiz Saeed's photograph on it, according to reports.
Summary:
Army chief General Bipin Rawat has said there has been a "major reduction" in Chinese troops at Doklam region on Sikkim-Bhutan border, where India and China were locked in a stand-off.
Summary:
Harikrishnan V Nair, who hails from Kerala, has won over â¹20 crore in a lottery in UAE's Abu Dhabi.
Summary:
During the International Gita Mahotsav held last year in Haryana, the state government gifted 10 copies of the Bhagavad Gita costing â¹38,000 each to VVIPs, an RTI response has revealed.
Summary:
The fourth wife of a man in Madhya Pradesh had set the third one on fire after the victim refused to divorce the husband.
Summary:
Summary:
The Australian cricket team jumped two places to reach the third spot in the ICC Test team rankings following their 4-0 thumping of England in the recently-concluded edition of the Ashes.
Summary:
The Centre has asked the Supreme Court to consider recalling its order on mandatory playing of the National Anthem before screening a film at cinema halls until further notice.
Summary:
Music maestro AR Rahman has been officially appointed as the brand ambassador of Sikkim, the state government announced on Monday.
"I thank people of Sikkim for making me the brand ambassador of the state.
Summary:
French footwear manufacturer Zhor Tech has unveiled smart insoles at CES 2018, which can track a user's fatigue levels via an app.
Summary:
The government has extended the deadline for linking Aadhaar with small saving schemes by three months to March 31, 2018.
Summary:
The case was filed against them for holding a meeting in violation of prohibitory orders in Gorakhpur.
Summary:
This comes after UIDAI filed an FIR over The Tribune's story on the breach of Aadhaar data security.
Summary:
Further, 30-40% of diseases and deaths in Pakistan are linked to poor water quality, as per official figures.
Summary:
Bitcoin's rival cryptocurrency Ethereum has surpassed Ripple to become the world's second largest cryptocurrency.
Summary:
Summary:
While talking about his first love, actor Rajinikanth said, "A lot of people win with their first love.
Summary:
David Beckham and his wife Victoria Beckham have reportedly spent above ã60,000 (â¹52 lakh) on an underwear closet at their Cotswolds mansion on the outskirts of London, which is worth ã6 million (â¹52 crore).
Summary:
UV Sense, a battery-free electronic sensor, is NFC-enabled which allows users to retrieve the data collected using the app.
Summary:
A terminal at the US' John F Kennedy International Airport was evacuated on Sunday after a water main broke and flooded a baggage claim area.
Summary:
Baba Ramdev-led Patanjali Ayurved is likely to partner with eight leading e-tailers including Amazon, Flipkart, and Paytm Mall, to push the online sale of its FMCG products.
Summary:
A video showing two boys made to stand upside down and hit with a pipe by their hostel warden in Telangana's Zaheerabad has surfaced online.
Summary:
The man who put the garland around Sharma complained about a water shortage problem.
Summary:
Majority of Muslims were in favour of banning the practice of instant Triple Talaq, Union Minority Affairs Minister Mukhtar Abbas Naqvi has said.
Summary:
The PIL had claimed a mystery person was responsible for Gandhi's assassination.
Summary:
Reacting to UIDAI CEO Ajay Bhushan Pandey's tweet about a warning of his parody account, a user tweeted, "Please link your Aadhaar no.
Summary:
The Indian Railways has announced it will be deploying camera-equipped drones to monitor its network of around 1.2 lakh kilometres of tracks, in an attempt to prevent accidents.
Summary:
Former Shiv Sena corporator Ashok Sawant was allegedly stabbed to death outside his house in Mumbai's Kandivali late on Sunday night by two unidentified assailants.
Summary:
Former White House Chief Strategist Steve Bannon on Sunday said that his statement describing the meeting between President Donald Trump's son Donald Trump Jr and Russians as "treasonous" was not directed at Trump's son.
Summary:
UK Immigration Minister Brandon Lewis was appointed the new chairman of the Conservative Party in Prime Minister Theresa May's cabinet reshuffle on Monday.
Summary:
The coalition has been conducting air strikes on Houthi-controlled Yemeni territories since 2015.
Summary:
Iran's atomic chief Ali Akbar Salehi has said the country might reconsider its cooperation with the UN nuclear watchdog if the US fails to respect its commitments in the 2015 nuclear deal that Iran struck with world powers.
Summary:
She said the corporation was "breaking equality law" in how it paid female staff.
Summary:
All-rounder Ben Stokes has been named in England's squad for next month's T20 tri-series against Australia and New Zealand.
Summary:
The CM further said that Queen Padmini was "more than just history" for the people of Rajasthan.
Summary:
India failed to chase down the target of 208 runs as South Africa emerged victorious in the first Test of the three-match series in Cape Town on Monday.
Summary:
The B2 RS Puram Police Station in Tamil Nadu's Coimbatore has been ranked as the best police station in the country by the Home Affairs Ministry.
Summary:
In a letter to Apple, investors Jana Partners and the California State Teachers' Retirement System (CalSTRS) have urged the smartphone maker to address the growing addiction of iPhones among youth.
Summary:
It also features self-driving technology, touch control, internet connectivity and voice recognition using Amazon's digital assistant, Alexa.
Summary:
Refuting the charges of negligence, the hospital issued a refund of over â¹12 lakh to the family.
Summary:
However, a parliamentary spokesperson said that all pornographic websites are blocked by the Parliament's computer network.
Summary:
The deaths of civilians resulting from air-launched explosives rose by 82% last year, claiming nearly 9,000 lives, according to a study by the Action on Armed Violence.
Summary:
The Sidharth Malhotra and Manoj Bajpayee starrer 'Aiyaary', which was earlier scheduled to release on January 26, will now release on February 9 as confirmed by director Neeraj Pandey.
Summary:
Summary:
Trolling model and reality TV star Kendall Jenner for attending Golden Globes 2018, a user tweeted, "Why is Kendall Jenner at Golden Globes - did she get nominated for her Pepsi ad?" Another user wrote she was there to hand out Pepsi to the women wearing black.
Summary:
Prernaa Arora, producer of the film 'Jasmine: Story of a Leased Womb', has said Aishwarya Rai Bachchan is their top choice to play the role of a surrogate mother.
Summary:
In a bid to end the practice of manual scavenging, the Kerala government is procuring 50 robots which are developed to clean sewer holes.
Summary:
Opposition parties including the DMK and Congress on Monday staged a walkout during Tamil Nadu Governor Banwarilal Purohit's maiden address in the state Assembly.
Summary:
The accused had collected â¹45,000 to â¹60,000 from each man.
Summary:
Tourism Minister KJ Alphons has said he will speak only on matters related to him and not on other issues, adding that he has had enough as it has now become difficult to crack jokes.
Summary:
"The drugs are incinerated at temperatures over 1,000ðC now," Deputy Commissioner of Police, Crime Division added.
Summary:
A major fire broke out in Gorakhpur's BRD government hospital on Monday, causing extensive damage to the principal's office and the record room situated in its premises.
Summary:
Calling the mainstream media "losers", US President Donald Trump on Monday postponed his "Fake News Awards" for "dishonesty and bad reporting" to January 17.
Summary:
The US and France believe recent protests in Iran were a sign of the government's failure, the White House has said after US President Donald Trump and French counterpart Emmanuel Macron spoke over the phone.
Summary:
Calling claims made over US President Donald Trump's mental fitness in the book 'Fire and Fury: Inside the Trump White House' absurd, CIA Director Mike Pompeo said that Trump was "completely fit" to lead the country.
Summary:
The weather prompted the closure of several academic institutions and affected regular activities in the country.
Summary:
This comes after a book claimed that several of Trump's aides considered him unfit for office.
Summary:
During a ceremony in the Sistine Chapel on Sunday, Pope Francis told mothers to feel free to breastfeed infants if they were hungry.
Summary:
Swedish fashion giant H&M is facing backlash on Twitter over a hooded top advertisement which users are calling 'racist'.
Summary:
Consumer goods firm Reckitt Benckiser (India) has moved the Delhi High Court against Patanjali's Green Flush toilet cleaner over deceptive similarities with Reckitt Benckiser's Harpic.
Summary:
Philip Morris has also launched a new website to inform and encourage its UK customers to quit smoking cigarettes.
Summary:
Celebrities attending this year's Golden Globe Awards were seen wearing black as a sign of solidarity with victims of sexual assault and harassment following the spate of allegations against top Hollywood actors and filmmakers.
Summary:
All of Saha's 10 dismissals were catches, making him the first Indian wicketkeeper to take 10 catches in a Test.
Summary:
French airbag manufacturer Helite has unveiled a belt called Hip'Air at CES 2018 which contains airbags to protect a user's hips in case of a fall.
Summary:
French startup E-Vone has unveiled smart shoes with falling alerts at Consumer Electronics Show (CES) 2018 which notifies family or medical services if a user takes a fall.
Summary:
Slamming Siddaramaiah over farmer suicides in Karnataka, Adityanath tweeted, "As UP CM I am working to undo the misery and lawlessness unleashed by your allies."
Summary:
BJP leader Subramanian Swamy on Monday said that only those who flaunt their sexual orientation are punished under Section 377, which criminalises homosexuality.
Summary:
A Gurugram court on Monday denied bail to the 16-year-old boy accused of murdering seven-year-old Pradyuman Thakur in Ryan International School last year.
Summary:
She further said that praise of Non-Resident Indians makes her immensely proud.
Summary:
Summary:
Suspected terrorist Bilal Wani on Monday disclosed that he and two other terrorists planned to attack the Akshardham Temple and disrupt the Republic Day parade in Delhi, the Anti-Terrorism Squad said.
Summary:
Palestine's Foreign Ministry has denied reports claiming that it has reinstated its ambassador to Pakistan, Walid Abu Ali. Palestine had recalled Ali over his presence at a rally organised by 26/11 mastermind and Jamaat-ud-Dawah (JuD) chief Hafiz Saeed last month.
Summary:
US National Security Advisor HR McMaster has said that the Russian government has launched a campaign to influence Mexico's 2018 presidential election.
Summary:
Fairbank is the fourth US bank CEO to become a billionaire, according to Bloomberg.
Summary:
Summary:
Rani Mukherji has said that if her husband Aditya Chopra was like Karan Johar, she would not have fallen in love with him as Karan is a very social person.
Summary:
Former Australian all-rounder Greg Chappell took his career-best Test and ODI figures on the same day and the same ground, eight years apart, on January 8.
Summary:
EPL side Liverpool has stated that fans who bought recently-transferred Brazilian footballer Philippe Coutinho's 2017-18 Liverpool jersey can get their money compensated at the official club stores with a ã50 voucher.
Summary:
Summary:
Former Indian captain Mohammad Azharuddin was barred from attending the Hyderabad Cricket Association meeting on Sunday.
Summary:
The nomination of Narayan Dass Gupta, one of AAP's three Rajya Sabha candidates, has been put on hold till Monday by the Returning Officer.
This comes after the Congress filed an objection against him, alleging Gupta held an office of profit.
Summary:
Following the Supreme Court's decision to review Section 377 which criminalises homosexuality, a user tweeted, "Yes. My 'natural' partner is my own choice." Another tweet read, "It's not a crime to choose one's own sexual orientation!
Summary:
Army Chief General Bipin Rawat has called for the modernisation of the country's armed force, saying it should take cues from the 'Arthashastra' and 'Chanakya Neeti'.
Summary:
The Manipur Education Department has dismissed a primary school teacher for pursuing an MBBS course and making his brother teach on his behalf at a government school.
Summary:
The directive comes after an elderly visitor tried to touch the CM's feet.
Summary:
The Secretary of Iran's Supreme National Security Council, Ali Shamkhani, on Sunday urged Muslim nations to forge closer cooperation to counter the US' "dishonest, duplicitous and divisive policy" towards them.
Summary:
All 20 students who scored 100 percentile in 2016 were engineers and males, the IIM added.
Summary:
It further referred the plea against the Section to a larger bench.
Summary:
UIDAI's complaint against newspaper The Tribune over its story on the alleged breach of Aadhaar data security was over the act of unauthorized access, UIDAI clarified in an official statement.
Summary:
Yang, a controlling shareholder of Country Garden, saw her fortune soar to $25.6 billion on Friday, making her the fifth-richest person in China, according to Bloomberg.
Summary:
Television show host-philanthropist Oprah Winfrey has called out sexual predators while saying, "Women have not been heard if they dare speak the truth to the power of those men.
Summary:
The film also won another major award when Frances McDormand was named Best Actress in the the drama category.
Summary:
Indian football team captain Sunil Chhetri scored a right-footed stunner for Bengaluru FC while playing against Kolkata in Indian Super League fixture on Sunday.
Summary:
Wasim Jaffer, who contributed in Vidarbha's maiden Ranji Trophy title win this season, did not charge his fee for the season as he was not able to compete for the side last season due to injury.
Summary:
Australia reclaimed the Ashes with a 4-0 series win after England were beaten by an innings and 123 runs on Monday.
Summary:
In 2017, SpaceX launched 18 rockets, setting the record for most launches in one year by a private company.
Summary:
Electronics giant Samsung has unveiled a 146-inch 4K modular TV called 'The Wall' which it claims to be "the world's first modular TV", at electronics show CES 2018.
Summary:
Congress President Rahul Gandhi has decided that the presidents of all state units of the party will continue in their posts until a decision to replace them is taken, the party has said.
Summary:
Chinese and French researchers have demonstrated that silicon, which is naturally hard and brittle, can be grown into superelastic horseshoe-shaped nanowires.
Summary:
British physicist Stephen Hawking gradually got paralysed after being diagnosed with ALS syndrome during his undergraduate days.
Summary:
The government has cancelled a â¹32,000-crore Make in India project aimed at constructing 12 advanced minesweeper warships in collaboration with South Korea at the Goa Shipyard.
Summary:
Following an order from the Allahabad High Court, the Uttar Pradesh government has directed district administrations and the state police to remove unauthorised loudspeakers from religious and other public places.
Summary:
US ambassador to the UN Nikki Haley on Sunday said that President Donald Trump's tweet about having a bigger nuclear button keeps North Korean leader Kim Jong-un "on his toes".
Summary:
Actress Parineeti Chopra has thanked the fashion police for helping improve her fashion sense.
Summary:
Barcelona thrashed Levante 3-0 on Sunday to go 16 points ahead of rivals and La Liga defending champions Real Madrid, who were held to a 2-2 draw by Celta Vigo.
Summary:
Australia gave away five runs as penalty after a ball from Australia's Nathan Lyon hit the wicketkeeper's helmet on the final day of the fifth Test in Sydney on Monday.
Summary:
The captains of the teams participating in the upcoming ICC Under-19 World Cup in New Zealand were welcomed with Haka, a traditional war dance in the Maori culture of New Zealand.
Summary:
England captain Joe Root was forced to retire hurt twice after suffering from dehydration, diarrhoea, and vomiting at the SCG.
Summary:
The glove is connected to a control panel with a battery module on the bridge of the hand.
Summary:
The light, that attaches magnetically to the back of rider's helmet, features automatic turn signals while slowing down or stopping.
Summary:
Wani was studying the structure and geomorphology of Kashmir's Lolab Valley.
Summary:
An 80-year-old police station in Lucknow has been painted saffron, days after the UP government painted the green-and-white exterior walls of the city's Haj House in the same colour.
Summary:
A dormant volcano on the Kadovar Island in Papua New Guinea has erupted for the first time in known history.
Summary:
Five employees associated with the Kailash Bar and Restaurant in Bengaluru's Kalasipalyam were killed after a fire broke out at the site during the early hours of Monday.
Summary:
Global debt has hit an all-time high of $233 trillion in the third quarter of 2017, which is over three times the global economy, according to the Institute of International Finance.
Summary:
India's powerlifting world champion Saksham Yadav succumbed to his injuries following a road accident at Delhi-Haryana border today.
Summary:
Former Chelsea striker Diego Costa, making his first La Liga appearance since returning to Atletico Madrid, was sent off for jumping into the stands to celebrate his goal in the 68th minute.
Summary:
Pakistan Foreign Secretary Tehmina Janjua has said that US President Donald Trump "put his foot in the mouth" when he wrote a strongly-worded tweet against Pakistan on January 1.
Summary:
While responding to the media about not hiding Taimur Ali Khan from the paparazzi, actor Saif Ali Khan said that if doing so gave them privacy, he would not mind that.
Summary:
A Mumbai-based startup, VoxWeb, has claimed that the hand symbol used by actor Rajinikanth was similar to its brand's logo, but with the left thumb free.
Summary:
A video showing 'Game of Thrones' actor Kit Harington drunk and being dragged out of a bar in New York has emerged online.
Summary:
Actress Esha Gupta slammed fans for calling an 18-yr-old teen her boyfriend and said, "He is my baby..not my boyfriend you sick minded a**holes." This was after Esha addressed him as 'baby boy' in a picture, which led to fans trolling her for dating a younger person.
Summary:
Luv Tyagi, a contestant chosen from among common people who has been evicted from the reality show Bigg Boss 11, said, "Shilpa Shinde is winning the show.
Summary:
Actress Yami Gautam will star along with Shahid Kapoor in the upcoming film 'Batti Gul Meter Chalu'.
Summary:
Talking about Sanjay Dutt's struggle with drug addiction, filmmaker Mahesh Bhatt said, "It went to a point where his first thought in the morning was about heroin." Bhatt further said that Sanjay had a really hard time dealing with his addiction to heroin.
Summary:
Ex-world number five Canadian tennis player Eugenie Bouchard took to Instagram to share a picture of herself with a cricket bat gifted to her by BBL side Hobart Hurricanes.
Summary:
Adelaide Strikers' Khan was playing his first ball when he attempted the scoop shot off the bowling of Sydney Thunder's Gurinder Sandhu.
Summary:
Reportedly, the police are now searching for the tournament's organisers.
Summary:
The locals in Mountain View, where Google is based, reportedly consider GBikes souvenir from Google.
Summary:
The Harbin International Ice and Snow Sculpture Festival, the world's largest ice festival has kicked off in China.
Summary:
During his tenure as UP CM, Yadav had not visited Noida.
Summary:
Summary:
A parliamentary standing committee has slammed the Railways for giving "freeloaders" complimentary passes to travel on luxury trains whose fares range between â¹31,600 and â¹41,000.
Summary:
This move comes after Home Minister Rajnath Singh's remark that the border population living along the Sino-India border were the country's "strategic assets".
Summary:
Jailed RJD leader Lalu Prasad Yadav's wife Rabri Devi on Sunday said his sister, Gangotri Devi, had passed away as she could not bear the news of his 3.5-year jail sentence.
Summary:
He accused the agency of exploiting the plight of Palestinian refugees in order to destroy Israel.
Summary:
The Chinese city of Chongqing has introduced facial recognition technology for registering marriages in a move aimed at making the procedure simpler and faster.
Summary:
A video showing cars frozen in floodwaters in the US state of Massachusetts after a storm and freezing temperatures hit the country's east coast has surfaced online.
Summary:
As many as 32 people have been reported missing after a cargo ship collided with an oil tanker in waters off China's eastern coast on Saturday.
Summary:
The Iranian government has reportedly arrested former President Mahmoud Ahmadinejad for inciting anti-government protests which killed at least 22 people.
Summary:
Iran has banned the teaching of English in primary schools after the country's Supreme Leader Ayatollah Ali Khamenei said that early learning of the language could pave the way for Western "cultural invasion".
Summary:
Veteran actor Shrivallabh Vyas, known for acting in films like 'Lagaan' and 'Sarfarosh', passed away on Sunday at the age of 60 in Jaipur.
Summary:
Chennai Smashers' Sindhu won the match with a scoreline of 15-11, 10-15, 15-12 to hand Ahmedabad Smash Masters' Tai Tzu Ying her first loss of the season.
Summary:
Shaun embraced his brother after completing the first run and was reminded by Mitchell to go back to his crease.
Summary:
The organisers said Samani had earlier participated in marathons in Rajkot and Ahmedabad.
Summary:
Last year, Pranav had returned the scholarship given to him by Mumbai Cricket Association over poor form.
Summary:
Chinese smartphone manufacturer Doogee has launched a smartphone called Doogee BL12000 featuring a 12,000 mAh battery, which the company claims can recharge fully in 4 hours.
Summary:
Taiwanese company Acer has unveiled a laptop, Swift 7 Ultrabook, which it claims is the world's thinnest computer with a thickness of 8.98 mm (0.35 inches).
Summary:
AIADMK MLA KR Rajakrishnan on Friday ferried 70 people in a bus from Andhiyur to Bhavani during the Tamil Nadu bus strike.
Summary:
Slamming the US for blocking financial aid to Pakistan, 26/11 Mumbai terror attack mastermind Hafiz Saeed said that the US has forgotten Pakistan's contributions in the war against terrorism.
Summary:
A 17-year-old Argentinian, Abril Lorenzatti, has set the Guinness World Record for the longest hair on a teenager at 1.52 meters (nearly 5 feet).
Summary:
Punjab National Bank had 143 such bad loan accounts, collectively owing the bank â¹45,973 crore.
Summary:
Actor Amitabh Bachchan has shared his look tests for an upcoming film.
Summary:
Arbaaz Khan said that being known as Salman Khan's brother had more pros than cons.
Summary:
"Padmavati is a very important film...it should release soon," said Pad Man's co-producer Prernaa Arora.
Summary:
Hollywood actor Brad Pitt had offered to pay $120,000 (over â¹75 lakh) to watch an episode of the HBO series 'Game of Thrones' with actress Emilia Clarke, who plays the character 'Daenerys Targaryen'.
Summary:
The play on the third day of the first India-South Africa Test in Cape Town on Sunday was abandoned without even a ball being bowled due to rain.
Summary:
Summary:
Convicts serving life terms in Tamil Nadu's Puzhal Central Prison have been converting demonetised notes into customised stationery for use in government offices.
Summary:
"Her action was bringing bad name to our family," her brother said.
Summary:
Criticising the NDA government's J&K policy, Congress leader P Chidambaram said its "hard, muscular, militaristic" approach had failed to end militancy in the state.
Summary:
Over 14,400 individual and community bunkers will be constructed along the Line of Control (LoC) and International Border (IB) for J&K citizens facing continuous shelling from Pakistan.
Summary:
Reacting to UIDAI registering an FIR against The Tribune newspaper and its reporter Rachna Khaira over a story on alleged breach of Aadhaar data security, journalist Shekhar Gupta tweeted "Throwing cops at reporters is, as stupid as it is unsustainable".
Summary:
The Myanmar Army began its crackdown on Rohingya militants in the Rakhine State last year.
Summary:
The trailer of animated series 'Our Cartoon President' based on US President Donald Trump has been released.
Summary:
The cold weather disrupted flight services and also caused power outages in several homes across the region.
Summary:
A nearly naked activist impersonating US President Donald Trump organised a rally aimed at poking fun at "the war between two chauvinist fatties" in front of the US embassy in Kiev, Ukraine.
Summary:
A technician was killed in the fire that broke out at Cinevista studio in Mumbai last evening.
Summary:
Former Indian wicketkeeper Syed Kirmani, who played the 1983 World Cup-winning campaign, pledged to donate his eyes on Saturday, only to retract the pledge later citing religious values.
However, I might not be able to honour my commitment due to some religious values.
Summary:
Philippe Coutinho, who became the world's second-most expensive footballer at ã142 million, was bought by Liverpool for ã8.5 million.
Summary:
South Korean electronics giant Samsung has unveiled 'Notebook 7 Spin' multi-functional laptop with a 360-degree rotating touchscreen display.
Summary:
A variant of Android.Fakeapp malware is targeting Android users using a fake version of the Uber app to steal login and password data, according to US-based cybersecurity firm Symantec.
Summary:
The Bihar Congress on Saturday asserted that RJD chief Lalu Prasad Yadav's conviction in the fodder scam case will not impact the Congress-RJD alliance in the state.
Summary:
RJD chief Lalu Prasad Yadav's son Tejashwi Yadav on Saturday 'thanked' Bihar Chief Minister Nitish Kumar after his father received a 3.5-year jail term in a fodder scam case.
Summary:
Those already owning black cars will be required to get it painted white or silver.
Summary:
NASA astronaut John Young, who became the first human to fly solo around the Moon during Apollo 10 mission in 1969, died on Friday aged 87.
Summary:
Presently, 216 railway stations are offering Wi-Fi under the Digital India initiative.
Summary:
Somesh Panigrahi, a 25-year-old Chhattisgarh grocer, is a "stock witness" for the police in 250-300 cases.
Summary:
The judge-population ratio in India last year was 19.66 judges per 10 lakh people, Law Ministry data revealed.
Summary:
Only bulls aged between three and fifteen years will be allowed to participate, the guidelines added.
Summary:
Slamming the revelations made in 'Fire and Fury: Inside the Trump White House', US President Donald Trump on Sunday called the book an act of fiction and its author Michael Wolff a fraud.
Summary:
Iran's Islamic Revolutionary Guard Corps (IRGC) on Sunday declared victory over the anti-government protests for which it had blamed its "enemies".
Summary:
The first US presidential election was held on January 7, 1789, with only white men who owned property allowed to vote.
Summary:
Finance Minister Arun Jaitley has said that banks must restore their credibility and work for the society as it is the taxpayers' money which is being infused into the banking system.
Summary:
Actor Karan Singh Grover, while wishing his wife actress Bipasha Basu on her 39th birthday, said, "Wish you a very very very happy birthday my sweet precious princess!...
Summary:
A 63-year-old man from Madhya Pradesh set himself ablaze after Indian captain Virat Kohli got out for just five runs in the first innings of the first Test against South Africa on Friday.
Summary:
Denying reports of former Pakistan cricket team captain Imran Khan getting married for the third time on January 1, his political party Pakistan Tehreek-e-Insaf (PTI) said he has only proposed to a woman named Bushra Maneka.
Summary:
Earlier, reports suggested that SoftBank-led investors bought Uber shares at $48 billion valuation.
Summary:
The CCTV cameras at Mojo's Bistro weren't working during the Kamala Mills fire, which claimed 14 lives, a Mumbai Fire Brigade report has revealed.
Summary:
A parliamentary panel has asked the government to furnish year-wise data on the expenditure incurred on providing salaries and allowances to IAS, IPS and other officers within three months.
Summary:
The Central Railway said there will be a block between Churchgate and Mumbai Central from 10:35 am to 3:35 pm on Sunday in Mumbai.
Summary:
A parliamentary panel will reportedly suggest the government that Air India should be given at least five years to revive.
Summary:
Finance Minister Arun Jaitley has said the credit growth in the banking system has started improving slowly after the government's recent decision to recapitalise public sector banks.
Summary:
Villas-Boas, whose uncle Pedro competed in the Dakar Rally in 1982 and 1984, ended the first day of the rally in the 42nd position.
Summary:
A man from West Bengal has been arrested by Mumbai Police for allegedly stalking and harassing cricket legend Sachin Tendulkar's 20-year-old daughter Sara Tendulkar.
Summary:
An Uber spokesperson confirmed the service will include all safety features available for Uber cab rides.
Summary:
A woman in Saudi Arabia gave divorce to her husband as he loved her more than his own mother.
The judge granted the divorce, praising the woman for taking a stand.
Summary:
England's Alastair Cook beat Sachin Tendulkar's record of being the youngest cricketer to reach 12,000 Test runs, achieving the milestone during the last Ashes match on Sunday.
Summary:
Four powerlifting players were killed while two more players including national-level player Saksham Yadav were injured in a road accident due to fog conditions at Delhi-Haryana border on Sunday.
Summary:
The pressure-sensitive technology has already been implemented around the virtual home button in Samsung Galaxy S8 and S8+.
Summary:
Defence Minister Nirmala Sitharaman has slammed Doordarshan for broadcasting advertisements during the live telecast of a musical event paying tribute to Telugu saint-composer Thyagaraja.
Summary:
A Sub Inspector and four constables were suspended on Saturday over dereliction of duty, hours after a group of protesting farmers dumped rotten potatoes outside Uttar Pradesh CM Yogi Adityanath's residence.
Summary:
Summary:
The UIDAI has registered an FIR against The Tribune newspaper and its reporter Rachna Khaira after Khaira reported that "unrestricted access" to Aadhaar data could be availed from anonymous sellers for â¹500.
Summary:
Get older people hyped and for younger people to think it (figure skating) is cool," the 22-year-old said about his song selection.
Summary:
Actor Saif Ali Khan has said that he is probably the first Pataudi to have worked for a living in ten generations.
Saif further said, "But with that living, I restored the family home.
Summary:
Katrina Kaif has said that she would love to play the role of Anarkali in 'Mughal-E-Azam', if the film gets a remake.
Summary:
Australia's Shaun and Mitchell Marsh became the third pair of brothers to have scored a ton while batting alongside each other in a single inning of a Test match, during the last Ashes match against England on Sunday.
Summary:
LG is also expected to showcase an 88-inch OLED display TV with 8K resolution at the upcoming event.
Summary:
Robomart will track what customers take using a 'checkout free technology' and will send a receipt accordingly.
Summary:
The mobile game spending figure amounted to nearly 82% of all app revenue.
Summary:
Technology companies working with augmented reality (AR) and virtual reality (VR) raised over $3 billion in venture funding in 2017, according to analytics firm Digi-Capital.
Summary:
Apple also confirmed that Meltdown bug has been fixed in the December update of macOS.
Summary:
The platform's third-party password reset system was breached, allowing access to multiple users' accounts, according to Reddit.
Summary:
Addressing a police conference in Madhya Pradesh, Home Minister Rajnath Singh on Saturday said Pakistan was instigating the youth of Jammu and Kashmir against India.
Summary:
A Karnataka school student has alleged that she was repeatedly beaten up by the hostel warden over rumours that she was a lesbian.
Summary:
In a first, Delhi International Airport Limited has asked airlines to cancel all domestic flights scheduled between 10:30 am and 12:15 pm from January 18 to January 26 from Indira Gandhi International Airport.
Summary:
The women confronted the men and snatched the mobile phone of one of the accused before deleting the pictures, police said.
Summary:
A Delhi court has imposed a â¹10,000 fine on AAP leader Ashutosh for trying to "waste precious time of the court" in a criminal defamation case filed against him by Finance Minister Arun Jaitley.
Summary:
Peoples Democratic Party (PDP) spokesperson Rafi Ahmad Mir has said there is nothing wrong in condoling death of local militants and termed the practice as a religious obligation.
Militants are our brothers," he said.
Summary:
Former Sri Lankan captain Sanath Jayasuriya is currently unable to walk without the help of crutches as he is suffering from a knee injury.
Summary:
Brazilian midfielder Philippe Coutinho has become the world's second-most expensive footballer, following his transfer from Liverpool to Barcelona for ã142 million (â¹1,220 crore).
Summary:
Salman Khan has become the first Bollywood actor with three films in the â¹300 crore club after his film 'Tiger Zinda Hai' crossed the milestone on the 16th day of its release.
Summary:
RJD chief Lalu Prasad Yadav on Saturday tweeted, "Rather than practising BJP's Simple Rule - 'Follow us or We will Fix you'.
Summary:
Describing wireless technology in 1926, Serbian-American inventor Nikola Tesla said that one day "we shall be able to communicate with one another instantly, irrespective of distance...through television and telephony we shall see and hear one another as perfectly as though we were face to face".
Summary:
Fire broke out on the sets of two TV serials at Cinevista Studios in Mumbai on Saturday evening.
Summary:
The US has registered a 26% decline in cancer deaths between 1991 and 2015, saving over 24 lakh lives, a study by the American Cancer Society (ACS) has revealed.
Summary:
Two out of Test cricket's top-three opening wicket stands are by Indians, with Vinoo Mankad and Pankaj Roy setting a then-record stand of 413 against New Zealand on January 7, 1956.
Summary:
Decommissioned space laboratory Tiangong-1, which had been declared "out of control" by China in 2016, could reportedly re-enter the Earth's atmosphere around March.
Summary:
The Indian Railways needs to buy 3,350 truckloads of cow dung at â¹42 crore in 2018 to "recharge" malfunctioning bio-toilets, according to an IndiaSpend report based on CAG data.
Summary:
The move to end the extension of H-1B visas would be bad policy and is contrary to the goals of a merit-based immigration system, the US Chamber of Commerce has said.
Summary:
After the government estimated 2017-18 GDP growth at 6.5%, Congress leader P Chidambaram said the "worst fears of an imminent economic slowdown have come true".
"In a slowdown, how will jobs be created?
Summary:
The outer walls of the Haj House in Uttar Pradesh, which were painted saffron by the government on Friday, have been repainted white.
Summary:
Libya had requested the Organisation for the Prohibition of Chemical Weapons for assistance in destroying the weapons.
Summary:
As per reports, the biopic on badminton player Saina Nehwal starring Shraddha Kapoor has been shelved.
Summary:
As per reports, US President Donald Trump's team has requested for the Meryl Streep and Tom Hanks starrer 'The Post' to be screened at the White House.
Summary:
South African pacer Dale Steyn has been ruled out for 4-6 weeks after sustaining a heel injury during the second day of the first Test against India on Saturday.
Summary:
The avalanche, which occurred in the European mountain range of Pyrenees, got triggered after the snowboarder cracked a snow plate during a jump.
Summary:
Podolski will run the restaurant along with two co-owners.
Summary:
Aiming to promote grassroots-level cricket development globally, Dhoni will establish 12 more such academies in Asia.
Summary:
The collision prompted emergency evacuation of all 168 passengers from the other airplane.
Summary:
As many as fourteen people have been arrested after the police busted a sex racket being operated at a lodge in Kerala's Kochi.
Summary:
BJP leader Virendra Singh has written to Human Resource Development Minister Prakash Javadekar, asking him to work on providing education on Hindu rituals in Sanskrit schools.
Summary:
After the luggage of two female MPs was stolen during train journeys, Railway Minister Piyush Goyal told the Rajya Sabha that the government is planning to introduce 20 lakh CCTV cameras to improve surveillance of the railways.
Summary:
President Ram Nath Kovind on Saturday said that vacancies at central universities must be addressed with urgency.
Summary:
The protests were staged in response to the anti-government demonstrations against alleged corruption and poor economic conditions.
Summary:
He said the companies deposited â¹25 crore or more in bank accounts and withdrew in an exceptional manner post demonetisation.
Summary:
Nineteen-time Grand Slam champion Roger Federer defeated Germany's Alexander Zverev in the men's singles match before partnering up with Belinda Bencic to beat the German doubles team to win Switzerland its third Hopman Cup title.
Summary:
Following a story by The Quint on Kulbhushan Jadhav, the Pakistan government tweeted that nThe Quint "accepted the truth that Kulbhushan Jadhav was a spy and that some RAW officials had reservations about his appointment." The Quint later retracted the story, saying it was rechecking some of the information.
Summary:
Mumbai Police on Saturday arrested Yug Pathak, the owner of Mojo's Bistro, following a fire department report stating the Kamala Mills fire broke out at the pub.
Summary:
Pakistan has blacklisted 26/11 Mumbai attack mastermind Hafiz Saeed's Jamaat-ud-Dawah and its charity wing Falah-e-Insaniat Foundation along with 70 other groups.
Summary:
A day after India's GDP was estimated to grow at 6.5%, NITI Aayog Vice Chairman Rajiv Kumar said that the Manmohan Singh-led 1991 reforms had brought the GDP down to 1.1%.
Summary:
The video shows the man crying through the ceremony as he is forced by the bride's family to complete the rituals.
Summary:
Vice President Venkaiah Naidu has issued a privilege notice against Congress President Rahul Gandhi for spelling Finance Minister Arun Jaitley's last name as 'Jaitlie' in a tweet.
Summary:
A total of six bodies have been recovered from a spot in Jammu and Kashmir's Kupwara district, where a passenger vehicle was hit by an avalanche on Friday, officials said.
Summary:
Jamaat-ud-Dawah (JuD) chief Hafiz Saeed has sued Pakistan's Defence Minister Khurram Dastgir Khan for PKR 100 million over defamation.
Summary:
Saudi Arabia has reportedly arrested 11 princes after they staged a protest against the Kingdom's recently introduced economic reform which suspended government payments of the princes' power and water bills.
Summary:
Publishers of the book 'Fire and Fury: Inside the Trump White House' have released it four days ahead of schedule after US President Donald Trump threatened to sue them.
Summary:
US President Donald Trump has said that his "greatest assets have been mental stability and being, like, really smart." This comes after a book claimed that several of his aides considered him unfit for office.
Summary:
Paul's lawyer has denied any accusations while saying, "He didn't rape anybody."
Summary:
Filmmaker Karan Johar has said he doesn't want his children Yash and Roohi to grow up on a film set.
Summary:
As per reports, actresses Parineeti Chopra, Disha Patani and Kiara Advani will star in the fourth film in the 'Housefull' franchise.
Summary:
As per reports, paintings made by Sridevi of Sonam Kapoor and late singer Michael Jackson will be auctioned for charity.
The starting price for Sonam's painting is said to be â¹8 lakh, while it is â¹10 lakh for Michael's painting.
Summary:
Actor Sunny Deol is set to star in the debut film of Dimple Kapadia's nephew Karan Kapadia, as confirmed by the film's producer Tony D'Souza.
Summary:
Filmmaker Karan Johar has said women wear salwar kameez and men wear loose clothes to hide their extra weight.
Summary:
Actress Rani Mukerji has said that she is not interested in actor Salman Khan's marriage while adding, "I just want to see Salman's kids." The actress said this when she featured on the reality show Bigg Boss 11, which the actor hosts.
Summary:
Karni Sena convenor Lokendra Singh Kalvi has said that they will never allow the screening of Sanjay Leela Bhansali's 'Padmavati' anywhere in India or abroad.
Summary:
Haryana Agriculture Minister had said that cow's milk would make the boxers "smart and beautiful".
Summary:
Ex-Australia captain Ricky Ponting, who has been appointed as Delhi Daredevils' head coach, said that IPL is a huge tournament where one gets to work with the best players in the world.
Summary:
Hardik Pandya took both South African wickets as the hosts ended day two of the first Test at 65/2 on Saturday, leading India by 142 runs.
Summary:
The 42-year-old Australian had represented CSK as a player from 2008 to 2013 and then in 2015.
Summary:
South Africa's batting coach Dale Benkenstein said that he wanted to book an Uber and head to the hotel after witnessing Bhuvneshwar Kumar reduce SA to 12/3 in the first Test on Friday.
Summary:
"This action pertains to 0.1 percent of the HP systems sold globally" over the stated years, HP said.
Summary:
England's Football Association has handed Arsenal manager Arsene Wenger a three-match touchline ban on charges of foul language and bad behaviour towards match officials in Arsenal's 1-1 draw with West Brom in the Premier League last Sunday.
Summary:
Indian Super League franchise Chennaiyin FC's head coach John Gregory has been suspended for three matches and fined â¹4 lakh with immediate effect for his offensive remarks on referees.
Summary:
The special CBI court which sentenced RJD supremo Lalu Prasad Yadav to 3.5 years in the fodder scam case has said his jail term would be extended by six months if the â¹5-lakh fine is not furnished.
Summary:
A Chicago-Hong Kong United Airlines flight was diverted to Alaska after a passenger reportedly spread faeces all over the plane's bathrooms and stuffed his shirt in a toilet.
Summary:
Pandya's highest score in Test cricket is 108 (96), which came against Sri Lanka in August last year.
Summary:
During the first ODI between New Zealand and Pakistan in Wellington, winds exceeding 100 kmph forced umpires to remove the bails during a part of the hosts' innings.
Summary:
There was a 35% year-over-year increase from 2016, where consumers spent $43.5 billion across both stores.
Summary:
A report by Parliament's Standing Committee on transport has stated that some private airlines create long queues at check-in counters so that passengers miss their flights.
Summary:
NITI Aayog Vice Chairman Rajiv Kumar has said that India's economic activity has been picking up for the last three quarters and the country's GDP growth will become more robust in 2018-19.
Summary:
Following Lalu Prasad Yadav being sentenced to 3.5 years in jail in the fodder scam case, his son Tejashwi Yadav said that they will approach the High Court after studying the sentence and apply for bail.
Summary:
US President Donald Trump's tweets targeting Pakistan help strengthen its ties with China, state-owned Chinese media has said.
Summary:
A New York gym chain has launched naked workout classes which require all the participants to be naked.
Interestingly, the gym chain is reportedly used by celebrities like Rihanna and Sandra Bullock.
Summary:
Notably, it was also the fourth consecutive year that global dealmaking has exceeded $3 trillion in value.
Summary:
Former Infosys CFO V Balakrishnan praised Chairman Nandan Nilekani for correcting the "wrongdoings" committed by the previous board over CEO pay.
Summary:
Pictures of Abhishek Bachchan and Aishwarya Rai Bachchan's â¹21 crore apartment, located in Bandra-Kurla Complex, have been featured in an article by a magazine.
Sonam Kapoor reportedly has a â¹35 crore apartment in the same complex.
Summary:
A gangster named Lawrence Bishnoi from Rajasthan has said that he will kill actor Salman Khan in Jodhpur.
Summary:
Karan Johar has said he'd like to apologise to Alia Bhatt for making her feel conscious about her weight, as he had asked her to lose weight for her debut film 'Student of The Year'.
Summary:
Former Australian captain Steve Waugh's final innings in Test cricket came against India at his home stadium, the Sydney Cricket Ground, on January 6, 2004.
Summary:
World number three tennis player Grigor Dimitrov jumped the net to check on his opponent Kyle Edmund who tumbled to the court, clutching his right ankle during a Brisbane International match.
Summary:
The official Instagram account of the Indian cricket team shared a picture of South African pacer Dale Steyn checking out Indian pacer Umesh Yadav's tattoo.
Summary:
Air Intelligence Unit officials seized three gold bars worth â¹10.64 lakh from a passenger at Hyderabad airport on Saturday.
Summary:
BJP government in Meghalaya means the overall development of the state, he added.
Summary:
Cornell physicists have developed "muscles" for robots the size of a human cell, which can change shape upon sensing chemical or thermal changes in its environment.
Summary:
Bangalore University has asked students to pay an extra â¹500-fee along with the regular fee to receive their gold medals and certificates ahead of the annual convocation ceremony.
Summary:
The Kerala Police has decided to add high-tech cameras as part of its uniform in a bid to improve security measures in the state.
Summary:
External Affairs Minister Sushma Swaraj during her Thailand visit on Thursday wore the flowers gifted to her by the country as hair and hand accessories.
Summary:
The Ministry of Minority Affairs has decided to lift its ban on persons with disabilities from applying for the Haj pilgrimage.
Summary:
Delhi minister Satyendar Jain and three PWD officials have committed a "large-scale fraud" involving nearly â¹100 crore in awarding contracts of the road and drain works, a petitioner alleged in a Delhi court on Friday.
Summary:
China may deploy its 10,000-tonne naval destroyer in the Indian Ocean and the South China Sea, according to reports.
Summary:
A special CBI court today sentenced Rashtriya Janata Dal chief Lalu Prasad Yadav along with other convicts to 3.5 years in jail in the â¹89-lakh fodder scam case.
Summary:
IndiGo President Aditya Ghosh told a parliamentary panel that those who studied in "government schools or mohalla/village areas" cannot be trained to speak fluent English within 4-5 weeks.
Summary:
Residents of the German city of Stuttgart are gift-wrapping vehicles parked blocking sidewalks and bike lanes in an attempt to punish people who park their cars irresponsibly.
Summary:
A parliamentary panel has recommended fixing an upper limit on airline fares depending on the sector.
Summary:
The farmers are demanding at least â¹10 per kg while the prices have crashed to â¹4 per kg.
Summary:
Blaming PM Narendra Modi and Finance Minister Arun Jaitley for economic downturn, Congress President Rahul Gandhi termed GDP as 'Gross Divisive Politics'.
Summary:
Railways' revenue from passenger traffic and freight movement has gone up by 5.2% and 5.7% respectively between April and December 2017, a Railway Board member has said.
Summary:
Ahead of the sentence announcement for Lalu Prasad Yadav and 15 others in a fodder scam case, a Ranchi court judge said that open jail is best for these convicts as they also have experience of "cow farming".
Summary:
The US' national public health agency has called for a meeting to review the country's preparedness to deal with a nuclear event amid the ongoing nuclear tensions with North Korea.
Summary:
China is planning to build its second overseas military base in Pakistan near the Gwadar port, according to reports.
Summary:
Chhotu Baraik, a physically disabled beggar in Jharkhand, reportedly makes nearly â¹30,000 a month and has three wives.
Summary:
Locals in Florida (US) have been posting online about iguanas that are falling from trees after being completely frozen and immobilized because of the cold temperatures in the region.
It's too cold for them to move," a wildlife official said.
Summary:
Finance Minister Arun Jaitley has said the government has collected over â¹38,000 crore as GST compensation cess between July and November of last year.
Summary:
Aditya Birla Group unit Hindalco Industries is reportedly among potential buyers that submitted bids for US aluminium producer Aleris.
Summary:
Veteran emerging-markets investor Mark Mobius will retire from Franklin Templeton Investments at the end of January after three decades at the firm.
Summary:
Pictures showing actor Anil Kapoor on the sets of the upcoming film 'Race 3' have surfaced online.
Anil is the only actor who is part of all the three films in the 'Race' franchise.
Summary:
Rajkummar Rao, while talking about his acting career, said he's in the film industry for a marathon and not a rat race.
Summary:
Technology major Apple has revealed that iOS developers earned $26.5 billion in 2017, making it a more than 30% increase from 2016.
Summary:
The unit will only sell locally produced and packaged food products, the reports further said.
Summary:
The DNA was extracted from the remains of a two-year-old child buried at a church in Naples, Italy.
Summary:
US-based particle physicists have collaborated with glass artists to create a stained-glass artwork for representing the magnetic field inside the Muon g-2 experiment at Fermilab.
Summary:
The politics of religion, if not checked, could give rise to "many Hafiz Saeeds" among Hindus, Dalit leader and BR Ambedkar's grandson, Prakash Ambedkar, said on Friday.
Summary:
The prime accused in the case, Mushtaq Ahmed, was absconding since the 1993 blast that claimed 11 lives.
Summary:
Indian dairy cooperative Amul recently released a poster captioned "Rajinitea?" after actor Rajinikanth announced his entry into politics.
Summary:
A patient was killed and three people were injured after an ambulance collided with a truck on Maihar-Rewa road in Madhya Pradesh's Satna on Saturday.
Summary:
In 2016, the seminary had issued a fatwa against Muslims chanting 'Bharat Mata ki Jai'.
Summary:
A Catholic diocese in Northern Ireland has banned handshake in its masses due to the risk of infection from the flu that has spread across the UK and Ireland.
Summary:
Any violation of the ban by bars, restaurants, clubs, and cultural centres in the New Delhi area would lead to immediate cancellation of licence.
Summary:
At least four policemen have been killed while two have been seriously injured in an improvised explosive device (IED) blast on Saturday in Jammu and Kashmir's Baramulla district.
Summary:
Notably, Tsukiji fish market will relocate later this year to make way for the Tokyo 2020 Olympics.
Summary:
The India Energy Storage Alliance (IESA) is set to hold the country's first startup competition focused on energy storage, electric vehicles & charging infrastructure, and micro-grids.
Summary:
In a first, US-based researchers have developed hairy skin from mice stem cells in laboratory conditions, which they say could lead to new treatments for skin disorders and cancers.
Summary:
Amid the ongoing research to develop "unhackable" quantum internet, Australian scientists have devised a new test for entanglement (pairing) of light particles called photons.
Summary:
Over 12,000 science enthusiasts have helped develop an 'Eclipse Megamovie', stitched using about 46,000 photos of the 2017 total solar eclipse that spanned the entire US width.
Summary:
The girl's visa was rejected twice before Swaraj's intervention.
Summary:
Wanted posters of the owners have also been pasted on their residential building gate.
Summary:
A dismantled railway bridge at the Bundki Station in Uttar Pradesh was reconstructed by the Northern Railways (NR) within seven hours.
It would have taken at least three months to reconstruct the bridge using normal method, he added.
Summary:
West Bengal Chief Minister Mamata Banerjee on Friday unveiled the official emblem of the state government.
Summary:
"The park will benefit those differently-abled children, who want to move forward and thrive in life," the minister said.
Summary:
External Affairs Minister Sushma Swaraj has urged the Association of Southeast Asian Nations (ASEAN) think tanks to strengthen consultation and suggest ways to enhance maritime, commercial, educational, and cultural cooperation with India.
Summary:
Under the Consumer Protection Bill, 2018, proposed in the Lok Sabha, celebrities endorsing misleading advertisements will have to pay a penalty of upto â¹50 lakh and serve a 3-year ban.
Summary:
US President Donald Trump's administration has proposed a plan to open nearly all of the country's offshore waters to oil and gas drilling, overturning a longstanding US energy policy.
Summary:
Every unit of the cryptocurrency will be equal in value to Venezuela's one oil barrel.
Summary:
The US abused its power as a permanent member of the United Nations Security Council by calling a meeting of the body on Iran's ongoing anti-government protests, Iranian Ambassador Gholamali Khoshroo said on Friday.
Summary:
A plastic drum containing about 24-kg cocaine worth 125 million Philippine pesos (nearly â¹16 crore) was found floating off the coast of the Philippines.
Summary:
Singer-composer AR Rahman has said he's very proud of his 25 years in the industry as he did things which he didn't imagine he'd do.
Rahman further said, "2017 has been one of the best years.
Summary:
The man, who was reportedly a construction worker and neighbour of the toddler's relatives, also died in the incident.
Summary:
A private jet's pilot died at Finland's Kittilä Airport on Thursday after he was hit by the door of the plane he was due to fly.
Summary:
Actress Anushka Sharma, who is accompanying husband Virat Kohli on the Indian team's tour to South Africa, was seen dancing alongside a random passer-by on a street of Cape Town.
Summary:
Barcelona's Argentine forward Lionel Messi could reportedly leave Barcelona without a transfer fee if Catalonia secedes from Spain and the club does not compete in any of Europe's top four football leagues.
Summary:
The eyewear features dedicated shutter buttons that can be clicked to take photos or record videos.
Summary:
GoPro also sent letters to the impacted employees, explaining that the lay offs are intended to "better align" the company's resources with business requirements, reports added.
Summary:
A 6 inches wide and 6 feet long piece of a solar panel has been stolen from China's recently-opened highway which is built with wireless charging systems for electric vehicles.
Summary:
The $1.3 million (over â¹8 crore) worth vodka bottle, which was stolen from a bar in Denmark this week, has been found empty by police at a building site in the country.
Summary:
Last year witnessed several controversial events in the sporting world.
Summary:
Defence Minister Nirmala Sitharaman has withdrawn a 2016 order which allegedly downgraded the rank and status of armed forces officers as compared to their civilian counterparts within the defence ministry.
Summary:
Both the restaurants were running illegal hookah bars, the report said.
Summary:
A Hwasong-12 intermediate-range ballistic missile (IRBM) launched by North Korea last year failed and crashed into its Tokchon city, according to reports.
Summary:
"While doing a two-hero film, my three-four films didn't work, but his (the other hero) did.
Akshay further revealed people's behaviour changed when his films performed well.
Summary:
Steyn is the seventh-highest Test wicket-taker among pacers and South Africa's second-highest wicket-taker in Tests after Shaun Pollock (421).
Summary:
Before dismissing AB de Villiers as his maiden Test scalp on Friday, Bumrah's first ODI wicket on his debut in 2016 was Australian captain and top-ranked Test batsman, Steve Smith.
Summary:
US-based researchers are developing futuristic robots with soft artificial limbs, which can mimic the flexibility and self-healing ability of biological muscles.
Summary:
An international team of astronomers has showed that a birth mass of stars of 200-300 solar masses, previously disputed, appears likely.
Summary:
At least nine people went missing and are feared dead after an avalanche hit the Kupwara-Tangdhar road in Jammu and Kashmir on Friday.
Summary:
Goa Town and Country Planning Minister Vijai Sardesai on Friday said that the state should become expensive so that low-budget Indian tourists are discouraged from visiting.
Summary:
The US has recently cut a total aid of at least $1.15 billion to Pakistan.
Summary:
China has banned steel and other metal exports to North Korea and has capped the export of crude oil along with other refined oil products to the isolated nation.
Summary:
The fee, built into the ceremony cost, is given back to couples if they arrive on time but is distributed among church workers if they are late.
Summary:
Actress Juhi Chawla, while talking about her 16-year-old daughter Jahnavi and 14-year-old son Arjun, has said that she would be thrilled if her children want to join Bollywood.
Juhi further said, "Jahnavi is academically inclined.
Arjun is an all-rounder.
Summary:
Karan Johar, on being asked if Kangana Ranaut will be invited as a guest on the reality show 'India's Next Superstars', said, "Humaara dil bada hai, ghar khula hai." He added that whoever gets invited on the show, he'll welcome that person with love and respect.
Summary:
India's World Cup-winning captain Kapil Dev, who is celebrating his 59th birthday today, is the only player in Test cricket's history to complete 5,000 runs along with 400 wickets.
Summary:
England's Mason Crane and India's Jasprit Bumrah on Friday became the second and third bowlers in the past two weeks to be denied maiden Test wickets due to overstepping no-balls.
Summary:
US Internet Association has announced intent to act as an intervenor in the lawsuit against the Federal Communications Commission (FCC) over its decision to repeal net neutrality.
Summary:
Twitter has said that blocking a world leader from the platform would "certainly hamper" necessary discussion around their words.
Summary:
Chinese company 90Fun has developed a self-balancing suitcase called the 'Puppy 1' that follows its user around.
Summary:
Allowing a 20-year-old girl to stay with her father against her mother's will, the Supreme Court on Friday said that an adult woman has a right to live a life of her own choice.
Summary:
A man has been arrested for killing his 64-year-old mother by pushing her off a building's terrace in Gujarat's Rajkot in September last year.
Summary:
A major fire broke out in a residential building's basement in Mumbai's Nagpada on Friday, making it the third such incident in nine days.
Summary:
Denying the allegations, the accused said he had taken a pill and fallen into deep sleep.
Summary:
A 10-year-old and his mother have sued 27 Washington DC police officers for unlawfully pepper spraying them during peaceful protests on President Donald Trump's Inauguration Day.
Summary:
ISIS has declared a war against the Palestinian militant group Hamas for failing to stop US' decision to recognise Jerusalem as Israel's capital.
Summary:
Warning that they will be harder to control, Zuckerberg said cryptocurrencies take power from centralised systems and put it back into people's hands.
Summary:
Shah Rukh Khan showed the announcement video of 'Zero', seven months before its release on January 1, to Hollywood actor Brad Pitt, when he visited India in May 2017.
Summary:
The Maharashtra government has announced it will form its own international school board in the state.
Summary:
The Delhi High Court on Friday ruled that barring recruitment of women to the Territorial Army was against the fundamental rights provided under the Constitution.
Summary:
The US and South Korea were conducting the drills in an apparent show of strength against North Korea over its missile threats.
Summary:
The price of cryptocurrency TRON reached a new record high of $0.30 on Friday, surging nearly 13,800% in the last one month.
Summary:
Summary:
The wedding will reportedly be attended by around 300 people.
Summary:
Part of Kim Kardashian's tweet of a statistical chart, which shows the number of people killed by lawnmowers, was named International Statistic of 2017 by UK's Royal Society of Statistics.
Summary:
The eighth season of the HBO series 'Game of Thrones', which will be the final season for the fantasy show, will air in 2019.
Summary:
Former Windies' captain Brian Lara named his first daughter as Sydney after the city where he went on to convert his maiden Test ton into a double hundred on January 5, 1993.
Summary:
India ended the opening day of the Cape Town Test on Friday at 28/3, trailing South Africa by 258 runs.
Summary:
Ocean areas with zero oxygen increased four times in size while the number of coastal sites with depleted oxygen became tenfold since 1950, a global analysis has revealed.
Summary:
Five children and a bus driver were killed after a school bus collided with a truck in Madhya Pradesh's Indore on Friday.
Summary:
He had been stealing for the past two years using customised underwear and jacket, police said.
Summary:
Nepal has approached Uttar Pradesh education board seeking support and guidance for its newly established National Examination Board of Nepal in conducting high school and intermediate exams.
Summary:
Thane residents can now lodge a complaint with the Thane Municipal Corporation and the fire department if they find hotels and restaurants operating in the area without adhering to safety norms.
Summary:
An eight-month-pregnant woman died after falling off a moving bus in Kerala's Kottayam district after she wasn't offered a seat and had to stand, police said.
Summary:
The Bruhat Bengaluru Mahanagara Palike said it has started issuing closure notices to all rooftop restaurants and bars in the city as they are operating without trade licences.
Summary:
The Human Resource Development Ministry has identified around 80,000 'ghost' teachers in various colleges and universities after the introduction of Aadhaar.
Summary:
Over 1 lakh employees of local and long distance government buses have launched indefinite strikes across Tamil Nadu over a proposed wage hike.
Summary:
The White House has banned its staff and guests from using their personal mobile phones within the West Wing citing security concerns.
Summary:
The group was formed amid the sexual harassment scandal in the UK Parliament.
Summary:
Saudi Arabia on Friday intercepted a ballistic missile near its border with Yemen, Saudi's state media reported.
Summary:
Two Ebola survivors have sued the Sierra Leone government after millions of dollars worth of aid provided to help fight the disease were found to be missing.
Summary:
Soldiers in the Spanish Army's elite La Legión unit have been found to be obese following which they were put on a diet.
Summary:
A US regulator has imposed a penalty of $70 million on Citigroup for failing to address shortcomings in its anti-money laundering policies.
Summary:
Growth in Gross Value Added (GVA) terms is estimated at 6.1% this fiscal.
Summary:
This comes after Trump had said his nuclear button is much bigger than Jong-un's.
Summary:
With 58 sixes, Aaron Finch has hit the second highest number of sixes in the league.
Summary:
China has released a plan to build a technology park for the development of artificial intelligence (AI) at a cost over â¹13,400 crore (ï¿¥13.8 billion).
Summary:
Uber Co-founder Travis Kalanick is planning to sell about 29% of his stake in the ride-hailing startup for about $1.4 billion, according to reports.
Summary:
However, the Indian government has claimed that the Aadhaar data including biometric information is fully safe and secure.
Summary:
A criminal case has been registered in Hyderabad against Verizon Data Services India for using bouncers and forcefully extracting resignations from employees.
Summary:
RJD chief Lalu Prasad Yadav has filed a plea in Ranchi's special CBI court seeking minimum punishment in one of the fodder scam cases, on grounds of health.
Summary:
Turkey's state religious affairs body has said in an online glossary that boys and girls must be allowed to marry at the age of 12 and 9 respectively, to save themselves from adultery.
Summary:
The China Development Bank has withdrawn its insolvency petition against Anil Ambani-led Reliance Communications (RCom).
Summary:
According to reports, Aishwarya Rai has demanded a fee of â¹10 crore for her upcoming film, a remake of the 1967 film 'Raat Aur Din'.
Summary:
The actor further questioned, "What is the point of buying so (many) defence (weapons) when your woman is not strong?"
Summary:
Filmmaker Anurag Kashyap, while discussing his upcoming film 'Mukkabaaz', said, "I have learnt that in India whatever you have to say, say it through a love story." He added that this is what people understand.
Summary:
Delluc managed to travel 1,500 vertical meters in 4 minutes and 20 seconds during the run.
Summary:
Only Sir Donald Bradman has scored 6,000 runs in fewer innings (68) than Smith and Sobers.
Summary:
Australia captain Steve Smith pulled off a one-handed diving catch to dismiss England's Dawid Malan on the second day of the fifth Ashes Test on Friday.
Summary:
This comes after FCC voted 3-2 to repeal Obama-era 'net neutrality' rules in December.
Summary:
He urged members to seriously introspect on their conduct in the House.
Summary:
A member of the Bhima Koregaon Gram Panchayat has said that there was no conflict on the basis of caste in the village and people live peacefully there.
Summary:
The Kerala Police on Friday averted a possible terror attack by seizing five metal containers containing explosives under the Kuttippuram Railway bridge in Malappuram district.
Summary:
Ukraine planned to blow up a Russian gas pipeline passing through its territory in 2014-2015, Deputy Minister for Temporarily Occupied Territories Yuriy Grimchak has said.
Summary:
UK's Parole Board has recommended the release of serial sex attacker John Worboys who is believed to be the country's worst sex offender.
Summary:
The agency said India has an "impressive rate of capital accumulation per worker" which helps in maintaining economic growth and increasing living standards.
Summary:
China has removed about 1,400 baby formula products from stores as part of a safety overhaul.
Summary:
India's largest lender SBI is planning to bring down the minimum balance limit for savings accounts to â¹1,000 from the current â¹3,000 balance in metros, according to reports.
Summary:
Vistara CEO Leslie Thng has said that the Tata Group and Singapore Airlines are open to bid for the state-run Air India.
Summary:
The base colour of the note will be chocolate brown, and all â¹10 notes issued by RBI earlier will remain valid.
Summary:
The Triple Talaq bill was not passed in the Rajya Sabha as the Winter Session of the Parliament ended on Friday.
Summary:
The horror film 'Insidious: The Last Key', which released today, "doesn't have the slightest enthusiasm to muster up something fresh," wrote Hindustan Times (HT).
Meanwhile, Firstpost wrote that the film is "frightening in a satisfyingly creepy way." It has been rated 1.5/5 (Koimoi), 2/5 (HT) and 3/5 (Firstpost).
Summary:
Debutant Indian pacer Jasprit Bumrah bowled South Africa's AB de Villiers to take his maiden Test wicket on Friday.
Summary:
Kohli will be the only player to feature in IPL 2018 who has never gone into auctions.
Summary:
American chipmaker Intel's CEO Brian Krzanich sold $24 million worth of the company's stock in November last year, according to reports.
Summary:
Facebook's CEO Mark Zuckerberg has said that currently the social media major makes "too many errors" enforcing policies and preventing its misuse.
Summary:
South Korean electronics giant Samsung has become the world's largest chipmaker of 2017 after surpassing Intel to take on the position, according to American research company Gartner.
Summary:
NASA is launching two new missions this year to explore the starting point of space, nearly 100 km above Earth's surface.
However, the near-Earth space experiences both.
Summary:
Prime Minister Narendra Modi met farmer Roop Narayan Singh Chauhan from Fatehpur, Uttar Pradesh, who wrote a 151-foot-long handwritten congratulatory letter to him.
Summary:
The green-and-white exterior wall of Haj House in Lucknow, used as a transit place by Muslims on their way to pilgrimage, has been painted saffron in colour by Uttar Pradesh government.
Summary:
The police have arrested two of the girl's uncles over the killings.
Summary:
Residents of the city can visit the website to learn which beaches have been deemed safer.
Summary:
The guards at the zoo managed to remove him from the enclosure.
Summary:
A Manipur scientist claims to have successfully synthesised the hottest Indian hybrid chilli.
Summary:
Oxford Street was brought to a standstill after a giant white balloon constructed as part of a London festival started blowing uncontrollably in the wind, said reports.
Summary:
Notably, the 355-metre-high JW Marriott Marquis hotel in Dubai is the current titleholder.
Summary:
"Joshi has gone ahead and unilaterally advised modifications in the film," said Kalvi.
Summary:
The show's contestants had to go to a mall and appeal for votes directly to the fans.
Summary:
Actor Akshay Kumar took to Twitter to reveal his look from the upcoming film 'Kesari'.
Beginning my 2018 with #KESARI, my most ambitious film," wrote Akshay.
Summary:
Former Pakistani captain Javed Miandad has said that Pakistan's cricket will not die if they don't play with India.
India and Pakistan have not played bilateral cricket since 2012-13 owing to political tensions between the two countries.
Summary:
Guests can stay inside a retired double-decker tourist bus at the Parsons Camp in England.
Summary:
US-based scientists have developed a new approach to reconstruct past ocean temperatures.
Summary:
Mexican archaeologists have excavated a stone sanctuary from a pond near a volcano east of Mexico City, which they say could have been built as a miniature model of the universe.
Summary:
A Delhi court acquitted the accused in a murder case as police had not matched the fingerprints on the murder weapon with that of the accused.
Summary:
The Union Health Ministry on Thursday launched an online cancer detection course to help non-cancer specialists detect early signs of the disease, especially in villages and smaller cities.
Summary:
The sentence of Lalu Prasad Yadav, convicted in the fodder scam case, will be announced on January 6 via video conferencing, his lawyer has said.
Summary:
The budget session of Parliament will commence from January 29 and the Union Budget 2018 will be presented on February 1, the cabinet committee on parliamentary affairs said on Friday.
Summary:
Ripple became the world's second largest cryptocurrency, surpassing Ethereum last week.
Summary:
Interestingly, the 73-metre-high Taj Mahal is taller than the 72.5-metre-high Qutub Minar.
Summary:
Actress Deepika Padukone, who turned 32 on Friday, made her acting debut with the 2006 Kannada film 'Aishwarya'.
Summary:
Bumrah is the seventh Indian to make Test debut in SA.
Summary:
Europe-based scientists have developed the first portable bionic hand that mimics the sense of touch, which allowed a woman to "feel" with her arm after about 25 years of losing it.
Summary:
Facebook CEO Mark Zuckerberg has said cryptocurrencies take power from centralised systems and "put it back into people's hands".
Summary:
While Intel admitted the flaw, it said the exploits do not have the potential to delete data.
Summary:
A "bomb cyclone" is an unofficial term referring to explosive cyclogenesis, which occurs on rapid decrease of atmospheric pressure in the middle of the storm.
Summary:
US and UK-based volcanologists have revealed six volcanoes to watch out for this year.
Summary:
Micro sculpture artist Sachin Sanghe has recently gifted PM Narendra Modi sculptures carved on chalks.
Summary:
The body of a class 12 student, who was abducted while she was returning home from tuition on Tuesday, was found on Thursday night in Uttar Pradesh's Bulandshahr.
The abduction was reportedly caught on a CCTV camera.
Summary:
The Supreme Court on Friday asked the Central Pollution Control Board about the difference ban on the sale of firecrackers made on pollution in Delhi-NCR.
Summary:
Saudi Arabia has said that there is no evidence to support the US lawsuit alleging that the Kingdom was involved in the 9/11 terror attack in the US.
Summary:
North Korea has accepted South Korea's proposal to hold official talks next week to discuss inter-Korean relations and its possible participation in the Winter Olympics in South Korea next month.
Summary:
A Washington-bound woman had an entire plane to herself after she was mistakenly booked on a flight meant for crew members.
Summary:
The price of Bitcoin's rival cryptocurrency Ethereum surpassed the $1,000 milestone for the first time to reach a record high of $1,045 on Thursday.
Summary:
Directed by Rajkumar Hirani, the film will also star Manisha Koirala as Nargis Dutt and Paresh Rawal as Sunil Dutt.
Summary:
Actress Meryl Streep, on being asked about her silence on sexual harassment, responded by saying, "I want to hear about the silence of Melania Trump.
Meryl Streep has faced criticism for not speaking out sooner against rape-accused producer Harvey Weinstein.
Summary:
Mohammad Mansur Ali Khan of Pataudi, who was born on January 5, 1941, permanently damaged his right eye in a car accident almost six months before making his debut for India against England.
Summary:
Billionaire Elon Musk has shared a time-lapse video of the setting up of his space exploration startup SpaceX's Falcon Heavy rocket.
Summary:
The Parliamentary Standing Committee on Transport, Tourism and Culture slammed private airlines for mistreatment of passengers.
Summary:
Taking a jibe at PM Narendra Modi, Gujarat MLA Jignesh Mevani tweeted a video of PM Modi captioned, "Nostradamus predicted that In 21st century world's best actor will be from India.
The video shows PM Modi speaking about the rights of Dalits.
Summary:
A government release said that the Sarpanch of Bhanakpur village got inspired by the Telangana village's initiative after seeing it on television and decided to replicate it.
Summary:
The Centre on Thursday announced the launch of cleanliness survey 'Swachh Survekshan 2018' as a part of the Swachh Bharat Mission.
Summary:
The Indian Army on Thursday located and defused live bombs and improvised explosive devices (IEDs) planted along the Line of Control (LoC) in Jammu and Kashmir's Rajouri district.
Summary:
It also claims that Trump watches three televisions, eating a cheeseburger and making telephone calls while being in bed.
Summary:
A US-based electrical engineer has discovered the largest known prime number, having as many as 23,249,425 digits.
Summary:
Technology giant Apple has confirmed that all Mac systems and iOS devices are affected by Meltdown and Spectre bugs.
Summary:
The year 2017 saw Flipkart Co-founder Binny Bansal's being replaced as CEO of the company by former Tiger Global executive Kalyan Krishnamurthy.
Summary:
The US has suspended around $900 million (â¹5,700 crore) in security assistance to Pakistan for failing to take action against terrorist groups Afghan Taliban and Haqqani Network.
Summary:
The actor had claimed Honeypreet feared that Rakhi might become her 'sautan' by marrying Ram Rahim.
Summary:
A study on a 385-million-year-old shark fossil has found evidence suggesting humans and sharks shared a common ancestor approximately 440 million years ago.
Summary:
The international ban on the chemicals has resulted in about 20% less ozone depletion during the Antarctic winter compared to 2005.
Summary:
The Supreme Court on Thursday issued a notice to Centre and states questioning the non-implementation of the provisions of the Sexual Harassment of Women at Workplace Act by states and Union Territories.
Summary:
Israeli PM Benjamin Netanyahu will reportedly gift a â¹70-lakh (390,000 shekels) Gal-Mobile water desalinisation and purification jeep to PM Narendra Modi during his four-day visit from January 14.
Summary:
Hyderabad Police on Thursday issued orders extending the ban on begging in the city for two more months.
Summary:
Trump accused Pakistan of giving "lies and deceit" in return of US' $33 billion aid over the last 15 years.
Summary:
Pakistan's Foreign Minister Khawaja Asif has said, "The US behaviour is neither that of an ally nor of a friend.
Summary:
Saudi Arabia has arrested over 3.3 lakh foreigners, most of them without residence or work permits, in a nationwide crackdown against violators of the Kingdom's residency and labour regulations.
Summary:
Seventeen-year-old Thai girl Supatra Sasuphan, who was earlier named the world's hairiest teenager by Guinness Records, has revealed that she has married "the love of her life".
Summary:
Commenting on 'Wonder Woman' actress Gal Gadot's photo, singer Diljit Dosanjh wrote, "Just because of my comment, Kylie got angry.
Summary:
Actor Ranbir Kapoor will be seen portraying Sanjay Dutt in the film, which has been directed by Rajkumar Hirani.
Summary:
Ram Gopal Varma, while speaking about being active on Twitter again, said, "Neither a tiger changes its stripes nor a snake changes its fangs and whether that's my USP or not, that's me." "I got bored of not being on Twitter and I got [back] on," he added.
Summary:
Summary:
23-time Grand Slam champion Serena Williams, who was pregnant with her first child while on her way to winning the Australian Open 2017, has withdrawn from the 2018 edition of the tournament.
Summary:
Indian shuttler Jwala Gutta slammed IndiGo airlines after the IndiGo staff at Chennai Airport allegedly forgot to load the baggage on a flight for Hyderabad.
Summary:
The Kolkata Airport Director said, "This is a big achievement.
Summary:
A US man who was banned from Alaska Airlines for allegedly touching an air hostess has threatened to take legal action against the airline.
Summary:
Google India's Vice President Rajan Anandan has invested an undisclosed sum in Bengaluru-based online lingerie retailer Buttercups Intimates.
Summary:
1 Above restaurant owner's relative has written to PM Narendra Modi and President Ram Nath Kovind, seeking an inquiry by the Central Bureau of Investigation in the Kamala Mills fire incident in Mumbai last week.
Summary:
Islamic seminary Darul Uloom Deoband has issued a fatwa asking Muslims to avoid marrying into families whose members work in banks, as income earned from interests is considered 'haram' (illegitimate) in Islam.
Summary:
Liverpool's Egyptian forward Mohamed Salah was named the African Footballer of the Year, beating the likes of his club teammate Sadio Mane from Senegal and Borussia Dortmund's Gabon striker Pierre-Emerick Aubameyang.
Summary:
Stating that no biometric Aadhaar data has been breached, the UIDAI has admitted that some persons have misused a search facility which provides limited access to names and other details of Aadhaar holders.
Summary:
Unrestricted access to details of any Aadhaar number can be purchased through anonymous sellers over WhatsApp for â¹500, according to an investigation by The Tribune.
Summary:
Out of all the Test-playing nations where Test cricket has been hosted, South Africa and Australia are the two nations where India have never won a Test series.
Summary:
The first-ever One Day International was an impromptu one, played between England and Australia in Melbourne on January 5, 1971.
Summary:
The 200 million monthly active Indian users on WhatsApp sent over 20 billion messages on New YearâÂÂs Eve, according to Facebook.
Summary:
The Assam Police has registered a case against West Bengal CM Mamata Banerjee for allegedly making inflammatory remarks over the updating of the National Register of Citizens in the northeastern state.
Summary:
The government is expected to issue recapitalisation bonds worth â¹1.35 trillion under the plan.
Summary:
Replying to a letter from former Telecom Minister A Raja, former PM Manmohan Singh wrote that he was happy the DMK leader was cleared in the 2G scam case.
Summary:
The plea claimed there was no legal or statutory provision prohibiting one from carrying personal food articles.
Summary:
An authentic age proof document is now mandatory for women visiting Kerala's Sabarimala temple, where the entry of female devotees between the age group of 10-50 is banned.
Summary:
An upcoming book titled 'Fire and Fury: Inside the Trump White House' has claimed that the ultimate goal of Donald Trump was never to win the US presidential elections.
Summary:
The US State Department has placed Pakistan on a special watch list for "severe violations of religious freedom".
Summary:
Lawmakers in United States' New Jersey will vote next week to ban inebriated or drugged droning, as well as to outlaw flying unmanned aircraft systems over prisons.
Summary:
Reliance Communications Chairman Anil Ambani said he went through "torture, trauma, mental agony" when subjected to CBI questionings in the 2G scam case.
"I would get calls from people saying...you are going to go to jail," he said.
Summary:
On being asked if he was open about menstruation with his son Aarav, actor Akshay Kumar said that his wife Twinkle Khanna has told everything about it to him.
Akshay's upcoming film 'PadMan' deals with issues of menstrual hygiene in rural India.
Summary:
Actor Shahid Kapoor's wife Mira Rajput has slammed the paparazzi for taking photos of their one-year-old daughter Misha.
Mira and Misha were clicked by the paparazzi while they were at a children's park.
Summary:
Apologising for his earlier diplomacy, Karan stated that he would only praise films and trailers he genuinely likes.
Summary:
Former heavyweight boxing world champion Mike Tyson is reportedly opening up his own cannabis resort.
Tyson has bought a 40-acre property in California City, with 20 acres dedicated to marijuana cultivation, as per reports.
Summary:
"Only the PayUMoney wallet service is shutting down because we have two wallets now after Citrus acquisition," PayUMoney's MD Jitendra Gupta said, adding it doesn't make sense to operate two wallets simultaneously.
Summary:
The government is planning to install GPS devices on 2,700 electric locomotives by December 2018 to provide real-time train information.
Summary:
The Supreme Court in December referred the case to a central tribunal as the shipyard was under the Defence Ministry.
Summary:
Activists of BJP's youth wing, ABVP, created a ruckus at Madhya Pradesh's Saint Mary's PG College on Thursday after the authorities denied permission for performing an aarti for Bharat Mata at the campus.
Summary:
Reports said initial investigation had revealed that the couple was depressed after their son and daughter refused to take care of them.
Summary:
The central government has approved a logo designed and conceptualised by West Bengal CM Mamata Banerjee as the state's symbol.
Summary:
Claiming that US President Donald Trump's "absurd tweets" encouraged disruption in the country, Iran on Thursday said that the US "has crossed every limit" in international relations by expressing support for Iran's anti-government protesters.
Summary:
A 69-year-old Australian man has been arrested in Cambodia for allegedly locking up his girlfriend, her younger sister and her niece in their house and demanding sex.
Summary:
The Reserve Bank of India has reportedly asked banks to recalibrate their ATMs to ensure that they start dispensing the â¹200 denomination notes.
Summary:
A new Android malware that targets over 232 banking apps, including those of SBI, HDFC, and IDBI, has been discovered.
Summary:
During a hearing on the quantum of sentence in the fodder scam case, convict RJD President Lalu Prasad Yadav told the special CBI judge Shivpal Singh that it is "too cold in jail".
Summary:
The release of Akshay Kumar starrer 'PadMan' has been preponed by a day to January 25.
Summary:
England captain Mike Denness left himself out of the team for an Ashes Test that started on January 4, 1975, after scoring 65 runs in previous six innings.
Summary:
However, India (118.47) will still be ranked above South Africa (117.53) on decimal points.
Summary:
During a Lok Sabha session held on Thursday, Home Minister Rajnath Singh said those whose names were not listed in the first draft of the National Register of Citizens in Assam will be included in the list later.
Summary:
Islamic seminary Darul Uloom Deoband has issued a fatwa stating that designer and slim fit burqas were haram and prohibited in Islam.
Summary:
While the curfew timing imposed on girls is 8 pm, the curfew for boys is 10 pm.
Summary:
When asked if he paid the price for being rich and famous, Reliance Group Chairman Anil Ambani said, "I am neither rich nor famous.
Summary:
Singapore's Finance Minister Heng Swee Keat had won the same award in 2011 when he had been the MD of MAS.
Summary:
Actress Taapsee Pannu has said she won't choose a cricketer or a rich businessman as her life partner.
Taapsee further said she likes the fact that people are so oblivious to her personal life.
Summary:
Actors Sushant Singh Rajput and Bhumi Pednekar will be playing dacoits in their upcoming film 'Sone Chidaiya', their first film together.
Summary:
Actress Sonam Kapoor has said that Bollywood is twenty years behind Hollywood when it comes to making women-centric commercial films.
Sonam will be seen along with three other actresses in her upcoming film 'Veere Di Wedding'.
Summary:
Basketball player Manu Ginobili attempted a pass from behind the three-point line which went through the basket but was overlooked by referees and several players during an NBA match.
Summary:
Delhi Daredevils on Thursday named former Australian captain Ricky Ponting as their new head coach for the Indian Premier League 2018.
Summary:
Jahan was one of the five petitioners in the case against instant Triple Talaq, which was banned by the Supreme Court in August 2017.
Summary:
At 11:05 am IST on January 3, the Earth passed closest to the Sun for the year 2018.
Summary:
After the Constitution, democracy, and the armed forces, the Rashtriya Swayamsevak Sangh (RSS) is what keeps people in India safe, according to former Supreme Court judge KT Thomas.
Summary:
Police has identified the man, who is yet to regain consciousness.
Summary:
A 48-year-old man in Chhattisgarh lodged a case against his son for allegedly killing his dog when it did not obey his instructions to bring a ball lying outside the house, police said.
Summary:
All industrial units in Delhi will have to switch from any other fuel source they currently use to piped natural gas (PNG) by March 15, the government has informed the Environment Pollution (Prevention and Control) Authority (EPCA).
Summary:
A day after a jawan was killed in a ceasefire violation by Pakistan in J&K, the Border Security Force on Thursday killed an intruder and destroyed two Pakistani army mortar positions.
Summary:
Defending President Donald Trump's tweet about the size of his nuclear button, the White House on Wednesday said that US citizens should be concerned about North Korean leader Kim Jong-un's mental fitness, and not their President's.
Summary:
Russian citizens may contest a presidential election either as party candidates or independents.
Summary:
Mumbai attack mastermind Hafiz Saeed-led Jamaat-ud-Dawah (JuD) has said that it will serve a legal notice to Pakistan Defence Minister Khurram Dastgir Khan over his defamatory remarks.
Summary:
At least 11 people were killed in Nigeria on Wednesday after a suicide bomber blew himself up, completely destroying a mosque in Borno State.
Summary:
Former RBI Governor Duvvuri Subbarao has said, "It is premature to take a decisive action on Bitcoin and other cryptocurrencies." He said that Bitcoin is a technology innovation and regulation should not choke its growth in India.
Summary:
Gautam Gambhir, who has led Kolkata Knight Riders (KKR) to two Indian Premier League (IPL) titles, has not been retained by the franchise for IPL 2018.
Summary:
Australians David Warner (Sunrisers Hyderabad) and Steve Smith (Rajasthan Royals) were retained for â¹12 crore each.
Summary:
Intel also said that it believes these exploits do not have the potential to corrupt, modify or delete data.
Summary:
Three-time Grand Slam champion and former world number one Andy Murray has withdrawn from Australian Open after failing to recover from an ongoing hip injury.
Summary:
Of the eight MLAs, five were from the ruling Congress party.
Summary:
During the Lok Sabha session on Thursday, Trinamool Congress MP Saugata Roy called Assam's National Register of Citizens a conspiracy to drive out Bengali-speaking citizens from the state.
Summary:
US-based pharmaceutical startup Spark Therapeutics has announced the cost of its gene therapy that injects a virus into the patients' eyes at $425,000 per eye, or $850,000 (nearly â¹5.4 crore) for most patients.
Summary:
As RJD President Lalu Prasad Yadav's sentencing in the fodder scam case was postponed for the second consecutive day, special CBI judge Shivpal Singh on Thursday said he received phone calls from Lalu's men.
Summary:
This comes after many businesses were slapped notices for not passing on the benefit of lower GST rates to consumers.
Summary:
Ex-UK PM Margaret Thatcher declined to hold at least three meetings with her Indian counterpart Rajiv Gandhi during his visit in 1985, saying, "Too many, we shall be bored," according to recently released classified files.
Summary:
Female workers were prevented from leaving the premises of a garment factory in Tamil Nadu that supplies to Hugo Boss, according to an investigation by The Guardian.
Summary:
This is part of a month-long trial to have a 'Common Mobility Card' which can be used in the Metro, Delhi Transport Corporation and cluster buses.
Summary:
The design was approved by the government last week, and the RBI has already printed around 1 billion pieces of this new note, reports claimed.
Summary:
The court observed that Mallya had not appeared before the court within 30 days and no representation was made on his behalf.
Summary:
A journalism student at Abdul Wali Khan University who was beaten to death by a mob in April last year has been named Pakistan Person of the Year 2017 by the Herald magazine.
Summary:
Florida has received its first snow in 29 years as a rare type of winter storm hit the US' southeastern region on Wednesday.
Summary:
Chinese officials are reportedly concerned that the miners have taken advantage of low power prices in some areas and this has affected normal electricity use in some cases.
Summary:
This figure is 120 times more than the ã28,758 (â¹24.6 lakh) earned by UK workers on average.
Summary:
After actor Rajinikanth launched a website on Monday to unite his fans and people to bring a good change in Tamil Nadu politics, over 3 lakh people reportedly joined his portal within two days.
Summary:
Actress Radhika Apte, on being asked if everything was okay between her and Sonam Kapoor on the sets of the film 'PadMan', responded by saying, "Why should there be problems?" "We don't have too many scenes together, but I really like her spirit.
Summary:
Cricket legend Sachin Tendulkar was the first batsman in cricket history to be given out by a third umpire.
Summary:
The junior wrestler had sustained a fractured skull and was admitted to hospital following the incident.
Summary:
A team of over 200 astronomers studying the Tabby's Star 1,280 light-years away has ruled out the theory of an alien megastructure orbiting it, causing its unusual dimming.
Summary:
The revenue department will unseal two rooms of the bungalow to evaluate its value, according to the reports.
Summary:
Days after two transgender women alleged that they were assaulted by police officials without any provocation in Kerala, a case was registered against the two under the Immoral Traffic (Prevention) Act. Reportedly, the police have a video that features the transgender women indulging in "immoral activities".
Summary:
A Thai court on Thursday jailed a blind woman for 18 months after she posted an anti-monarchy article on Facebook.
Summary:
However, a spokesperson for the news channel later said that it was a false alarm.
Summary:
Meanwhile, Royal Challengers Bangalore and 2017 champions Mumbai Indians retained Virat Kohli and Rohit Sharma respectively.
Summary:
Calling the latest video of Kulbhushan Jadhav released by Pakistan as 'propaganda', the External Affairs Ministry has said that it cannot be considered credible.
Summary:
The Mumbai police has booked investor and Seedfund Co-founder Mahesh Murthy for alleged sexual harassment and stalking.
Summary:
A man from Norwegian capital Oslo took a taxi ride through three countries on New Year's Eve, racking up a bill of 18,000 Norwegian kroner (â¹1.4 lakh).
Summary:
The team has been asked to follow other rules in place for tourists and locals alike as Crisis Level 6 water restrictions have been enforced.
Summary:
Former female Google employee Heidi Lamar has filed a complaint against the company, accusing it of paying female teachers lower salaries compared to their male counterparts working for its Children's centre.
Summary:
Summary:
The negative pricing compensates the consumers' subsequent electricity billing.
Summary:
Justice Sudhir Agarwal has decided one lakh cases in his 12-year career as a judge at the Allahabad High Court.
Summary:
US President Donald Trump on Thursday called talks between North Korea and South Korea a "good thing".
Summary:
Following this, all the family members other than the woman had to be admitted to the hospital for dizziness, vomiting, hallucinations and headaches.
Summary:
The organisers of Cannes Film Festival have announced that Hollywood actress Cate Blanchett will be heading the jury of the film festival's 2018 edition.
Summary:
Hollywood actress Meryl Streep, while recalling an incident wherein actor Dustin Hoffman slapped her for a scene in the 1979 film 'Kramer vs Kramer', said it was overstepping.
Summary:
Speaking about the upcoming biopic on Sanjay Dutt, Dia Mirza said, "I don't want to put too much pressure on myself by thinking about the fact that it might take my acting career...in a new direction." "I'm excited about the Dutt biopic and my work in it," she added.
Summary:
Responding to this, Neeraj wrote, "I am a Dalit...
All without using my Dalit identity."
Summary:
Summary:
The items formed part of a collection of 270 pieces of Indian and Indian-inspired jewellery and precious stones spanning 400 years.
Summary:
A US Twitter user has shared the story of a stranger who paid for his sister's birthday cake.
Summary:
The Indian flag was mistakenly hoisted upside down at the Newlands stadium in Cape Town when the Indian cricket team was practicing in the nets on Wednesday.
Summary:
Visitors can crawl inside a baobab tree in Hyderabad.
Summary:
BJP MP Parvesh Verma on Wednesday claimed that Delhi Chief Minister and AAP chief Arvind Kejriwal sold two of the party's three Rajya Sabha seats for â¹100 crore.
Summary:
For the first time, an international team of physicists have built a two-dimensional experimental system that allows studying the physical properties of materials theorised to exist only in four-dimensional space.
Summary:
Penn State researchers have developed a new technique that can remove salt from water using less energy than previous methods.
Summary:
This comes after the school was accused of promoting enmity among different religious groups.
Summary:
A 52-year-old Assistant Sub Inspector was found hanging from the ceiling of a police station in Kerala's Kochi on Wednesday.
Summary:
A US-based Imam has apologised for saying that Muslims had a duty to kill Jews, while reacting to the country's decision recognising Jerusalem as Israel's capital.
Summary:
Reliance Communications Chairman Anil Ambani has said "new" RCom will be India's largest B2B business that will be "focussed on global and enterprise business".
Summary:
In this video of a new and unique science experiment that was conducted, a scientist and his assistant discover a revolutionary new formula about the money you earn with your "khoon" and "paseena".
Summary:
New Infosys CEO Salil Parekh will earn an annual salary of â¹16.25 crore which includes â¹9.75 crore variable pay.
Summary:
Pakistan has released a video in which ex-Indian Navy officer Kulbhushan Jadhav is thanking Pakistan for allowing him to meet his mother and wife last week.
Summary:
Sputnik 1, the first man-made object to orbit Earth, was launched by the Soviets in October 1957.
Summary:
Late music composer and singer RD Burman, popularly known as Pancham Da, composed musical scores for 331 films during his career, spanning over three decades.
Summary:
The Supreme Court has directed the BCCI to allow Bihar to participate in Ranji Trophy and other domestic cricket tournaments.
Summary:
US-based social media management startup Buffer publishes the salaries of all its employees online for the public to see.
Summary:
In a first, Caltech researchers have created gas-filled bacterial cells with the ability to reflect sound waves, like submarines reflect sonar to reveal their locations, for targeted tumour treatments.
Summary:
PM Narendra Modi during a telephonic conversation with Russian President Vladimir Putin on Wednesday discussed the intensification of Indo-Russia ties.
Summary:
Fast food chain KFC slammed rival McDonald's in a tweet parody of US President Donald Trump's recent nuclear button claim.
Summary:
An American soldier boarded 10 flights over two days to witness the birth of his daughter Julia on New Year's Day. Francois Clerfe, who returned from Iraq to California, said the experience was fun and exciting.
Summary:
A family of four in China documented its weight loss over six months in a series of before and after photographs.
Summary:
Meanwhile, his twin sister Aitana de Jesus Ontiveros was born at 12:16 am on January 1, 2018.
Summary:
The new release date of Tiger Shroff starrer 'Baaghi 2' has been announced as March 30.
Summary:
Similarly, Burman used beer bottles to compose the opening beats of 'Mehbooba Mehbooba' song from 'Sholay'.
Summary:
According to reports, Ranveer Singh and his rumoured girlfriend Deepika Padukone are set to get engaged in Sri Lanka.
Summary:
Defender Héctor BellerÃÂn scored in the injury time to help Arsenal clinch a 2-2 draw against London rivals Chelsea in the Premier League on Wednesday.
Summary:
Nine backpackers, aged 21 to 25, overdosed on hyoscine in Australia on Tuesday after mistaking the travel sickness drug for cocaine.
Summary:
Researchers found that the virus was able to cross the blood-brain barrier to reach tumours and also 'switch-on' the body's defence systems to attack cancer cells.
Summary:
Shiv Sena in its editorial mouthpiece Saamana slammed BJP-led Centre and Maharashtra government for failing to control the clashes during Maharashtra bandh on Wednesday.
Summary:
Kerala CM Pinarayi Vijayan has said that North Korea has successfully defended the pressure imposed by the US, adding that the country has been following tough anti-US agenda.
Summary:
Madhya Pradesh CM Shivraj Singh Chouhan has said that the state is changing because he dreams with open eyes and puts in all his efforts to transform those dreams into reality.
Summary:
Another complaint was regarding Rajasthan school staff allegedly sexually assaulting a girl student.
Summary:
Karnataka Chief Minister Siddaramaiah on Wednesday provided free laptops worth â¹45 crore to around 31,000 SC/ST college students, ahead of the state Assembly polls scheduled this year.
Summary:
She captioned the video as "I am proud of all Indian languages.
Summary:
He also urged the armed forces to be brave to overcome difficulties and create a powerful force that is always ready for fight and sure to win.
Summary:
US President Donald Trump on Wednesday said that former White House chief strategist Steve Bannon did not only lose his job but also lost his mind when he was fired.
Summary:
The offer came after Apple admitted to slowing down old iPhones.
Summary:
Nearly 12,000 workers spent a combined 2.2 crore hours over a period of six years on building the Burj Khalifa, the tallest building in the world.
Summary:
The year 2017 saw many youngsters emerge with breakout performances in several sports.
Summary:
AIADMK has decided to launch a new party newspaper and a TV channel.
Summary:
Genetic analysis of a six-week-old infant that lived about 11,500 years ago in Alaska has revealed a previously unknown population of ancient Americans.
Summary:
US-based researchers have developed a Magnetic Resonance Imaging (MRI) technology that can determine whether a cancerous tumour is benign or malignant without performing a biopsy.
Summary:
Addressing the Lok Sabha, Minister of State for Defence Subhash Bhamre said that India has signed 187 defence deals to procure military platforms and equipment from domestic and foreign firms in the last four years.
Summary:
Uttar Pradesh government has directed the cinema halls to display the newly unveiled Kumbh Mela logo right after the National Anthem is played before screening movies.
Summary:
The Cabinet Committee on Economic Affairs on Wednesday approved the â¹6,808-crore Zojila Tunnel project, aimed at providing all-weather connectivity between Srinagar, Kargil, and Leh. The bi-directional tunnel will reportedly reduce the time taken to cross Zojila Pass from 3.5 hours to 15 minutes.
Summary:
Earlier, some Indo-Canadians also complained that Chinese globes being sold at retailer Costco omitted Arunachal Pradesh as well from the map of India and presented it as a part of China.
Summary:
The Railways is planning to have 22 coaches in all the trains under its network so that they can run on any route, irrespective of the time taken to complete the journey, Railway Minister Piyush Goyal has said.
Summary:
The wedding cards were printed in Tamil, and bride Chiharu wore a sari while the groom Yuto donned a veshti.
Summary:
X-Men actress Ellen Page took to Instagram to reveal that she has married her partner Emma Portner, who is a dance instructor.
Summary:
A new song titled 'Hu Ba Hu' from Akshay Kumar, Sonam Kapoor and Radhika Apte starrer 'PadMan' has been released.
Summary:
Delhi's Nisar Ahmed, the son of a rickshaw puller and a housemaid, is set to train at the Racers Track Club in Jamaica, the academy where eight-time Olympic gold medalist sprinter Usain Bolt trained.
Summary:
Photo-sharing app Instagram is running a test to let users post their Instagram Stories directly to WhatsApp, the company confirmed.
Summary:
E-commerce giant Amazon has been granted a patent in the US which will allow users to try on clothes virtually.
Summary:
The flight's pilots decided to turn around over a banging noise heard mid-air, following which passengers were seated on a replacement plane.
Summary:
Homegrown e-commerce startup Flipkart has infused â¹1,632 crore into its logistics arm eKart, according to filings.
Summary:
The study on mice showed acetaldehyde, produced by the body while processing alcohol, slices through DNA, causing irreversible damage when not neutralised.
Summary:
India has rescued three Indian and seven Nepalese girls who were trafficked to Kenya and held captive in Mombasa, Indian External Affairs Minister Sushma Swaraj tweeted on Thursday.
Summary:
The student's family alleged he suffered head injuries when the police lathicharged to clear a roadblock and succumbed to injuries.
Summary:
A high-level internal investigation has been ordered to probe how the documents went missing from an official's cupboard.
Summary:
Several incidents of road and rail route blockades were reported during the bandh.
Summary:
Four people were killed and at least seven people were injured after a fire broke out on the second floor of a residential building in Mumbai's Andheri East on Wednesday night.
Summary:
Mumbai Police on Thursday cancelled a students' programme that was to be attended by Gujarat MLA Jignesh Mevani and student leader Umar Khalid, who were accused of making controversial speeches in Pune.
Summary:
US President Donald Trump has dissolved a voter fraud commission that he created after claiming that he lost the 2016 presidential election's popular vote as millions of people voted illegally.
Summary:
India has cancelled a â¹3,174-crore deal to buy 1,600 Spike anti-tank guided missiles, according to Israeli state-owned defence company Rafael Advanced Defense Systems.
Summary:
The Braille Code, a language system used by the visually challenged, consists of a set of symbols in the shape of raised dots on a surface.
Summary:
Cricket legend Don Bradman reversed the Australian batting order to protect batsmen from 'wet' wicket in the second innings of the third Ashes Test in 1937.
Summary:
The tip of the spire of Burj Khalifa, the tallest building in the world, can be seen from up to 95 km away.
Summary:
Jet Airways has grounded a pilot couple for fighting inside the cockpit during a flight from London to Mumbai on Monday.
Summary:
Slamming the bill criminalising instant Triple Talaq, West Bengal Chief Minister Mamata Banerjee claimed it was not designed to protect Muslim women.
The BJP is indulging in politics with it," she said.
Summary:
For the first time since 1866, a total lunar eclipse will coincide with the second full moon of a calendar month, often called a Blue Moon, which will occur on January 31.
Summary:
Minister of State for Railways Rajen Gohain has said that Aadhaar is not compulsory for booking tickets for a rail journey, but added that its use is encouraged.
Summary:
A majority of public grievances were raised against Uttar Pradesh, Maharashtra, and Delhi governments on a range of issues in 2017, MoS for Personnel Jitendra Singh said.
Summary:
Social networking site Facebook has said that PM Narendra Modi was the most talked about Lok Sabha MP and cricketer Sachin Tendulkar the most talked about Rajya Sabha MP in 2017 on the platform.
Summary:
"Such respect for the people of Iran as they try to take back their corrupt government," Trump tweeted.
Summary:
A bottle of vodka worth $1.3 million (â¹8 crore) has been stolen from a Danish bar.
Summary:
Egypt's Grand Mufti Shawki Allam has issued a fatwa banning Bitcoin, saying that trade in cryptocurrency is similar to gambling which is forbidden in Islam.
Summary:
Expressing dissatisfaction over the performance of the country's top intelligence agency, the Pakistan Supreme Court on Wednesday told the Inter-Services Intelligence (ISI), "you are a top agency, don't make a joke out of the country".
Summary:
Former White House Chief Strategist Steve Bannon described the Trump Tower meeting between President Donald Trump's son Donald Trump Jr and several Russians during the 2016 election campaign as "treasonous" and "unpatriotic", according to a book.
Summary:
A 29-year-old man in Kerala accidentally left his bag, which had a live python, on a train to Kottayam and the snake was rescued by officials after the train had travelled 150 km.
Summary:
Diagnostics chain SRL Diagnostics on Wednesday said that the company had become the first Indian diagnostics company to surpass â¹1,000 crore in revenue in 2017.
Summary:
Actor Piyush Sahdev, who was arrested after a woman filed a complaint accusing him of rape, said he has lost many days of his life in jail and wants to get back to work now.
Summary:
Actor Ranveer Singh has said that he doesn't know what he did to deserve the success that he got in Bollywood.
Summary:
Actress Tabu said that after doing films like 'Hera Pheri' and 'Biwi No.1', one cannot say that she is not fit for comedy.
Summary:
Adding that it wants to divide the country on basis of religion and caste, Vaidya said RSS strongly condemns and opposes such mentality.
Summary:
Delhi Police data has revealed a 33% rise in crime at Delhi Metro premises, with 12,854 cases reported in 2017.
Summary:
The Centre on Tuesday declared Hyderabad open defecation free (ODF) after the Greater Hyderabad Municipal Corporation (GHMC) undertook measures such as the construction of 98 public toilets.
Summary:
During the Lok Sabha session on Wednesday, MoS for Home Affairs Hansraj Ahir said there was no evidence of any suicide being committed while playing the Blue Whale Challenge.
Summary:
Reports said that it was the jawan's birthday.
Summary:
"The missile is capable of hitting its target from surface to surface and ground assault," the Navy said.
Summary:
Former Pakistan PM Nawaz Sharif on Wednesday urged PM Shahid Abbasi to devise a strategy to make the country self-sufficient and independent of the need for US aid.
Summary:
This is the first time that the transaction volume has crossed the 1 billion mark.
Summary:
She had signed contracts with her two sons after they turned 20, stipulating that they must pay 60% of the profit from their incomes.
Summary:
German Formula One legend Michael Schumacher, who won record seven championships, obtained his kart license from Luxembourg aged 12.
Summary:
Akmal's knock was the second instance of a player slamming a double ton while chasing in a List A match.
Summary:
Finance Minister Arun Jaitley has accused Congress of having double standards regarding the Triple Talaq bill and trying to stall it in the Rajya Sabha after supporting it in the Lok Sabha.
Summary:
Summary:
Opposing the Centre's bid to make Hindi an official UN language, Congress MP Shashi Tharoor questioned why a potential Prime Minister from Tamil Nadu or West Bengal should be forced to speak in Hindi at the UN.
Summary:
Amid reports that Chinese troops had intruded into the Indian side of the border in Arunachal Pradesh, China on Wednesday said it had "never acknowledged the existence of so-called Arunachal Pradesh".
Summary:
The Railways had added a provision last year wherein citizens could forgo 50% subsidy.
Summary:
The bill was earlier passed in the Lok Sabha with most Opposition parties, including the Congress, voting in its favour.
Summary:
The UN's rules for making a language official are preventing India from doing so, Swaraj added.
Summary:
Union Minister Manoj Sinha has said that the government expects to roll out all 650 branches of India Post Payments Bank (IPPB) by April 2018.
Summary:
The United States has a 'nuclear football', a briefcase which allows the country's President to authorise a nuclear attack.
Summary:
Mbasogo became the President in 1979 after overthrowing his uncle who allegedly plotted to kill their family members.
Summary:
Prince Harry's wedding to American actress Meghan Markle could provide a ã500-million (over â¹4,300 crore) boost to UK's economy, according to business valuation consultancy Brand Finance.
Summary:
Slamming US President Donald Trump for threatening to cut off $300 million annual financial aid to UN agencies supporting Palestine, President Mahmoud Abbas' spokesperson said that Jerusalem is "not for sale".
Summary:
The Malaysian government has enlisted a private US seabed exploration company to resume the search for the missing Malaysia Airlines flight MH370.
Summary:
Reacting to a new US proposal which might result in up to 5 lakh Indian H-1B visa holders being deported, Mahindra Group Chairman Anand Mahindra tweeted, "Swagatam, Welcome Home." "You're coming back in time to help India Rise," he added.
Summary:
Prabhas reportedly spent nearly five years shooting for 'Baahubali' franchise without signing any other film in between.
Summary:
A Redditor made a joke crediting Trump for commercial airlines recording zero accidental deaths worldwide last year, a few hours before Trump actually did the same on Twitter.
Summary:
During a Big Bash League match, Melbourne Renegades captain Aaron Finch leapt in the air to take a catch with his left hand and bobbled before completing it successfully on the second attempt.
Summary:
A Ryanair passenger escaped via the emergency exit of a flight at Spain's Malaga airport on Monday night.
Summary:
The AAP has named its national spokesperson Sanjay Singh, social activist Sushil Gupta, and former President of Institute of Chartered Accountants of India ND Gupta as its three nominees for the Rajya Sabha elections.
Summary:
The videos are clearer than the 20-second clip released by Dhinakaran's aide a day before the RK Nagar bypoll, reports claimed.
Summary:
Two US F-16 fighter jets intercepted a small plane after it couldn't be contacted when it violated airspace restricted for US President Donald Trump's holiday visit to his Mar-a-Lago residence in Florida.
Summary:
Petrobras was sued after Brazilian prosecutors accused the company's former executives of accepting over $2 billion in bribes over a decade.
Summary:
Union Minister Rajen Gohain has said that the Indian Railways earned â¹2,354 crore more through the sale of tickets in 2016-17 as compared to 2015-16.
Summary:
The bandh, which started on Wednesday morning, was called in protest following the violent clashes during the celebrations of the 200th anniversary of Bhima Koregaon battle in Pune.
Summary:
Technology giant Apple launched its own clothing line in 1986 called 'The Apple Collection' which was later discontinued.
Summary:
Needing three to win off the last ball, Sixers took a single following which Renegades started celebrating.
Summary:
Researchers found man-made changes to ocean water levels, including those generated by climate change, are "squishing" the planet.
Summary:
Taking inspiration from the way dew drops stick to spider webs, US-based researchers have developed an implantable thread having insulin-producing capsules.
Summary:
After 40 years of research, US-based scientists have claimed to devise a process that transforms shale gas to electricity and products like methanol and gasoline while consuming carbon dioxide instead of emitting it.
Summary:
A woman accused of killing her rapist by slitting his throat in 2009 has been cleared by a sessions court in Mumbai.
Summary:
A MiG-29K fighter jet of the Indian Navy overshot the runway and caught fire at the Goa airport on Wednesday.
Summary:
Pakistan's Defence Minister Khurram Dastgir Khan on Wednesday said that the country did not act against Hafiz Saeed-led Jamaat-ud Dawah (JuD) and Falah-i-Insaniat Foundation (FIF) under "pressure" from the US.
Summary:
An Alaska Airlines flight was cancelled after a rat was spotted jumping into the aircraft, said its passengers.
Most of the passengers were accommodated on a later flight, while the aircraft was grounded.
Summary:
A pet dog in Brazil rushed to the balcony of a home after apparently getting scared by fireworks on New Year's Eve, and found itself clinging from the balcony's railing after slipping down.
Summary:
Ten firefighters spent six hours removing a large ring from a man's penis on Saturday after it got stuck during a sex game.
Summary:
NITI Aayog has said in its report that it was "unviable" to provide further financial support to Air India, Union Minister Jayant Sinha told the Rajya Sabha.
Summary:
Actor Salman Khan, while speaking about doing action scenes in films, said, "My body is like a diesel engine, ek baar garam ho gaya toh chalta rahega." "I can't do handstands or put my body upside down.
Summary:
Riteish Deshmukh has revealed that Genelia D'Souza, who's his wife now, didn't talk to him for two days during the shooting of 'Tujhe Meri Kasam' as his father was the CM of Maharashtra then.
Summary:
Actor Saif Ali Khan has said that he would have been a better actor in English as it is his primary language.
He said that he became an actor as he was not interested in academics.
Summary:
"I wish @PawanKalyan will contest all seats in AP like @superstarrajini doing in TN...If he doesn't do, PK's fans will feel he doesn't have guts like Rajinikanth," he tweeted.
Summary:
Summary:
She also gave examples of her films 'Ladies vs Ricky Bahl' and 'Shuddh Desi Romance' in which she worked with other actresses.
Summary:
A four-year-old US boy believed to be living in a closet has tested positive for methamphetamine exposure and told investigators "his friends" were rats and roaches, his attorney said.
Summary:
A bar in Italian city Milan is capable of seating only four guests and a bartender.
Summary:
A US-based study has simulated that the supervolcano beneath Yellowstone National Park, US, could be fuelled by the tectonic plate that began sinking and melting beneath North America several million years ago.
Summary:
The Quadrantid meteor shower, which peaks annually on January 3-4 would be difficult to observe under the light of the fading supermoon, which occurred on January 2.
Summary:
The award money will be put in a fixed deposit and the interest will fund the girl's education, the Mayor said.
Summary:
A Dalit man in Gujarat has alleged that he was beaten up and forced to lick a constable's shoes by a Deputy Commissioner of Police in lock-up.
Summary:
TRAI asked RCom to keep all the unique porting codes (UPC) valid till January 31.
Summary:
Mahindra Group Chairman Anand Mahindra tweeted a video of a man on a bike transporting multiple packs of banana stems out of a field using a conveyor belt-type system and called it 'Kela-Konveyor'.
Summary:
However, when the mission succeeded the next year, Dhawan sent Kalam to conduct the press conference and claim the credit.
Summary:
Apple's advertising lead, Ken Segall, revealed in 2013, that they were initially considering alternate names for iPhone which included 'iPad', 'Tripod', 'Telepod' and 'Mobi'.
Summary:
Raju Mahalingam, the Creative Head of Lyca Productions which is producing Rajinikanth starrer '2.0', has resigned from his post to join Rajinikanth's newly announced party.
Raju added he has registered just as a party member and doesn't hold any position yet.
Summary:
New Zealand opener Colin Munro became the first cricketer to hit three centuries in T20I cricket after smashing a 47-ball ton against Windies on Wednesday.
Summary:
Using a software from a company called Alphonso, the apps would listen for audio from TV to target advertisements.
Summary:
One of the tweets included a picture of one wrestler with Clarke's picture on it while kicking another wrestler bearing the CNN logo.
Summary:
NASA used continuous light which triggered early reproduction in wheat plants.
Summary:
While a fine of up to â¹180 will be imposed for littering, â¹100-â¹150 will be levied for spitting in public.
Summary:
Assam CM Sarbananda Sonowal on Tuesday said the people who are not named in the National Register of Citizens (NRC) will not be entitled to any constitutional rights.
Summary:
A police complaint has been filed against Gujarat MLA Jignesh Mevani and JNU student Umar Khalid for allegedly making inflammatory speeches in Maharashtra a day before the Bhima-Koregaon violence broke out.
Summary:
The Madras High Court on Wednesday asked the Centre why a law could not be enacted to make it compulsory for women to breastfeed their babies.
Summary:
A CBI court has deferred the order on the quantum of sentence to be awarded to RJD chief Lalu Prasad Yadav to Thursday.
Summary:
South Korea has called North Korea's decision to restore an inter-Korean communication channel "very significant".
Summary:
The Iranian Foreign Ministry on Tuesday advised US President Donald Trump to stop wasting his time on posting useless and insulting tweets about other nations.
Summary:
England-based chef Laura Goodman was forced to call the police after receiving death threats for claiming she spiked a vegan customer's meal with meat.
Summary:
Former Indian cricketer Vinod Kambli has said that he has taken up coaching on the advice of his friend Sachin Tendulkar.
Summary:
Forward Raheem Sterling scored the fastest goal of the Premier League season after just 38 seconds as Manchester City defeated Watford 3-1 on Tuesday.
Summary:
The issue persists even after the users reset their devices, reports added.
Summary:
Minister of State for Heavy Industries and Public Enterprises Babul Supriyo has said that currently there are no plans to make all vehicles electricity-powered by 2030 in India.
Summary:
Slamming Prime Minister Narendra Modi over his silence on the violent clashes in Maharashtra, Congress leader Mallikarjun Kharge on Wednesday called him "mauni baba".
Summary:
Kishore Biyani-led Future Group is in talks to buy e-commerce startup Snapdeal's logistics arm Vulcan Express for about â¹50 crore, according to reports.
Summary:
According to details uploaded on Bihar government's website, CM Nitish Kumar owns assets worth â¹56.23 lakh while his son Nishant Kumar possesses assets worth â¹2.43 crore, more than four times his father's wealth.
Summary:
The NGO has urged the authorities to arrest the man and shift the child to a hospital for treatment.
Summary:
Minister of State for Defence Subhash Bhamre has said there will be no immediate review of the â¹10,000 cap placed on educational assistance provided to children of jawans who died or suffered disabilities in action.
Summary:
Adding that no evidence of the allegations has been provided yet, Boyle's lawyer said his client is presumed innocent.
Summary:
The US government has blocked the $1.2 billion sale of global payment service MoneyGram to Alibaba's Ant Financial over national security concerns.
Summary:
This comes after South Korea proposed talks with North Korea over the participation.n
Summary:
Padma Vibhushan-awardee Satish Dhawan was an Indian rocket scientist who became ISRO's third Chairman in 1972, serving a 12-year tenure.
Summary:
A victim of child marriage, she is known to have opened 18 schools for girls as well as a care centre for pregnant rape victims.
Summary:
Archaeologists have found stone tools dating back to the Middle Stone Age near Mumbai's Manori beach, indicating human habitation in the area 10,000 to 15,000 years ago.
Summary:
Reports state that some locals informed the Indian Army about the intrusion, following which the latter intercepted the Chinese troops and seized their machines.
Summary:
Dalit groups have called for Maharashtra bandh on Wednesday after violence erupted during the 200th-anniversary celebrations of the Bhima Koregaon battle in Pune district on January 1.
Summary:
Several schools in Thane have been shut over security concerns.
Summary:
Six countries namely Equatorial Guinea, Ivory Coast, Kuwait, the Netherlands, Peru and Poland, on Tuesday formally joined the United Nations Security Council (UNSC) as non-permanent members.
Summary:
She alleged that Pakistan worked with the US at times and also harboured terrorists that attacked the US troops in Afghanistan.
Summary:
"The thighs are all so wrong, geometric straight thighs?" commented a user.
"Her right leg looks wrong," wrote another user.
Summary:
"Hindi cinema can no longer ignore the audience's need for fresh content," he added.
Summary:
Her husband David said he had proposed to her on December 23, 2016, which was the day she was diagnosed with cancer.
Summary:
A woman in England who previously suffered eight miscarriages gave birth to her first child on New Year's Day. Craig and Emma Parker had spent six years trying to have a child and undergone two failed rounds of IVF before conceiving again naturally.
Summary:
The older versions of Apple laptops called PowerBooks had the iconic half-eaten apple logo placed upside down.
Summary:
The amount of money moved by Google through this tax structure in 2016 was 7% higher than in 2015.
Summary:
Swedish streaming music service Spotify has been sued by US-based Wixen Music Publishing over copyright infringement.
Summary:
The Canadian government is launching a pilot program for surveillance of suicide-related behaviours using social media through artificial intelligence (AI).
Summary:
PayPal Co-founder and early Facebook investor Peter Thiel's venture capital firm Founders Fund has bought $15-20 million of Bitcoin since 2012, according to reports.
Summary:
UK-based Virgin Trains has apologised "unreservedly" after it was slammed for using language deemed sexist by social media users.
Summary:
UK-headquartered online food delivery startup Deliveroo is planning to set up operations in India and is reportedly looking to hire a country head to lead the launch.
Summary:
The Uttar Pradesh government has made it compulsory for madrasas to provide holidays on seven festivals celebrated by other faiths, including Diwali, Raksha Bandhan, Mahavir Jayanti, and Christmas.
Summary:
Road Transport and Highways Minister Nitin Gadkari ruled out exemptions from toll collection at national highways, saying that if people want good services, they will have to pay for it.
Summary:
After author Suhel Seth corrected Congress MP Shashi Tharoor's grammar in a Twitter post, a user tweeted, "This will go down in history.
Summary:
The police added that the accused was helped by the relative she was having an affair with.
Summary:
Iran had closed the border posts in September last year in response to the region's independence vote which was deemed illegal by the Iraqi government.
Summary:
The year 2018 will witness the return of the football World Cup, with Russia hosting the FIFA tournament for the first time in June.
Summary:
The Archaeological Survey of India is planning to restrict the number of tourists visiting the Taj Mahal to 40,000 daily in a bid to preserve the heritage site.
Summary:
US President Donald Trump has responded to North Korean leader Kim Jong-un who had threatened that he has a nuclear button on his desk, tweeting, "I too have a nuclear button." "It is a much bigger, and more powerful one than his (Jong-un's), and my button works," Trump said.
Summary:
Four MLAs, including one from the ruling Congress, resigned as members of the Meghalaya Assembly and joined the BJP on Tuesday.
Summary:
E-commerce giant Flipkart's Founders Sachin Bansal and Binny Bansal have incorporated a new company named Sabin Advisors.
Summary:
Researchers aim to understand how creatures deep in the sea communicate using sound considering the absence of light down there.
Summary:
Former RAW Chief Rajinder Khanna has been appointed as the Deputy National Security Advisor by PM Narendra Modi-led Appointments Committee of the Cabinet.
Summary:
The National Medical Commission Bill, 2017, that was tabled in the ongoing Lok Sabha session proposes allowing homeopathy, Ayurveda doctors to practise modern medicine after completing a 6-month 'bridge course'.
Summary:
Maharashtra CM Devendra Fadnavis has ordered a judicial inquiry into the clashes which erupted during the 200th anniversary celebrations of the Bhima Koregaon battle in Pune.
Summary:
Army chief General Bipin Rawat on Tuesday urged the youth to join the Army and said people must rise above their "microscopic identities" to embrace themselves as Indians.
Summary:
Siblings abandoned by their families can be separated from each other at the time of adoption if they are above five years of age and agree to it, Union Minister Maneka Gandhi said on Tuesday.
Summary:
The Uttar Pradesh Transport Department will introduce vehicle registration number portability soon, allowing owners to retain vehicle numbers even if they sell it, according to officials.
Summary:
Defence Minister Nirmala Sitharaman on Tuesday approved the purchase of 240 precision-guided bombs worth â¹1,254 crore for the Air Force and 131 Barak missiles worth â¹460 crore for the Navy.
Summary:
US President Donald Trump has threatened to cut a financial aid for Palestine, accusing Palestinians of being unwilling to talk peace with Israel.
Summary:
China has termed Pakistan as an "all-weather" ally.
Summary:
A Chinese man recently paid the first instalment of his new BMW using around 70,000 yuan (â¹7 lakh) worth of coins.
Summary:
Actress Priyanka Chopra said that she was advised against starring in films like 'Fashion' and was told that girls did women-centric roles only towards the end of their careers to win awards.
Summary:
Socialite Paris Hilton took to Instagram to announce that she got engaged to her boyfriend, actor Chris Zylka.
"I said Yas!
So happy and excited to be engaged to the love of my life.
Summary:
Saif Ali Khan has said his daughter Sara Ali Khan was inspired by Aishwarya Rai to become an actress.
Summary:
Rohit Sharma, the only cricketer to score three ODI double tons, said "anything is possible on a day when things go your way", after being asked about the possibility of scoring 300.
Summary:
Expressing disappointment over being allotted the Gujarat Fisheries Ministry for the third time, state Minister Parshottam Solanki asked, "Should I sit by the seashore and catch fish?" Claiming that Deputy CM Nitin Patel was being given special treatment, Solanki questioned why he was left out.
Summary:
Over a quarter of the planet's land could become significantly drier if global warming reaches 2úC, according to a China and UK-based study.
Summary:
The central government has reserved over â¹10,000 crore for internal security in J&K, northeastern and Maoist-hit areas, under the â¹25,000-crore umbrella scheme for modernisation of police forces.
Summary:
The portal carries details on 350 different schemes and will be updated from time to time.
Summary:
Such alerts were initially sent only for trains like Rajdhani and Shatabdi, but will now be sent for other superfast and express trains as well.
Summary:
Trump had said that the US "foolishly" handed Pakistan $33 billion-worth aid.
Summary:
France aims to develop a trade "backbone" with China and Russia in a move aimed at deepening economic ties, French Economy and Finance Minister Bruno Le Maire has said.
Summary:
The Indian Railways will soon launch its own debit card in association with State Bank of India (SBI) and Indian Railway Catering and Tourism Corporation (IRCTC) to promote cashless payments, reports said.
Summary:
A law mandating equal pay for men and women in Iceland came into effect on Monday, making it the first country to have such a legislation.
Summary:
Central Board of Film Certification Chairman Prasoon Joshi has said that while reviewing 'Padmavati' for certification, the role of the special panel was only advisory in nature and the final decision was with the CBFC Commitee.
Summary:
Ghazal singer Kesiraju Srinivas, who holds the Guinness World Record for singing in most languages at one concert, was arrested over sexual harassment charges filed by a female radio jockey.
Summary:
This has only been achieved previously by stacking multiple lenses, the researchers noted.
Summary:
If the proposal is implemented, up to 7.5 lakh Indian H-1B visa holders could be deported from the US.
Summary:
The body appeared to have been hanging there for at least six to seven days, the police added.
Summary:
Pakistani cricketer-turned-politician Imran Khan on Tuesday tweeted the Bollywood movie dialogue, "My name is Khan and I am not a terrorist" after he was granted bail in terrorism cases.
Summary:
Cryptocurrency mining site NiceHash Co-founder Marko Kobal has stepped down as the company's CEO.
Summary:
Salil Parekh taking over as Infosys CEO is hugely positive, ex-CFO Mohandas Pai has said.
Summary:
Finance Minister Arun Jaitley on Tuesday said that the government will not take knee-jerk decisions on cryptocurrencies.
Summary:
The Nikkei India Manufacturing Purchasing Managers' Index (PMI) rose to 54.7 in December from November's 52.6, marking its fifth straight month above the 50 level.
Summary:
Actress Priyanka Chopra has said that she loves it when people stalk her on Instagram.
Priyanka added, "I'm impressed that you know so much about me...
Summary:
Miss India 2013 Sobhita Dhulipala has said that the beauty pageant made her feel like it doesn't matter what one feels or thinks as what sells is beauty and sex.
Summary:
On joining Twitter again, director Ram Gopal Varma compared it with Jesus Christ's resurrection while tweeting, "Here's my Jesus like rejuvenated second coming on Twitter." After keeping away from Twitter for over seven months, RGV credited actor-politician Pawan Kalyan's film 'Agnyaathavaasi' for inspiration.
Summary:
Bollywood actor Shah Rukh Khan, in a TV show hosted by him, said that he would like to see India's women cricket team captain Mithali Raj coaching the men's team.
Summary:
Earlier, Diljit had revealed that he loved model Kylie Jenner and left no chance to comment on her Instagram posts.
Summary:
Late singer Amy Winehouse's father Mitch has claimed that her spirit often pays him a visit in the form of a ghost.
Not physically, but spiritually all the time," said Mitch.
Summary:
After Vidarbha's win, VCA announced a â¹3-crore reward for the team.
Summary:
India's first fitness reality show, Fitness League of India (FLI), has raised its first round of funding worth $500,000 (over â¹3 crore) from Franchise India, along with other investors.
Summary:
The clashes erupted on Bhima Koregaon battle's 200th anniversary.
Summary:
Rejecting PM Narendra Modi's claim that his government made it possible for Muslim women to go on Haj without male guardianship, AIMIM chief Asaduddin Owaisi said the regulation was passed by the Saudi Haj authorities many years ago.
Summary:
After a video showing Defence Minister Nirmala Sitharaman walking without any security to have lunch with common people in Bengaluru surfaced online, a Twitter user wrote, "Indian defence is in good hands." Another user wrote, "She is a no nonsense person." Meanwhile, a tweet read, "Please do not expose yourself to danger...
Summary:
A 27-year-old civil services aspirant was found hanging from a ceiling fan at a paying guest accommodation in Delhi, police said on Monday.
Summary:
The body said it has provided access to individual or community toilets within 500 metres of every settlement.
Summary:
More than 700 people captured by the militant group Boko Haram in Nigeria have managed to escape captivity, the Nigerian Army said.
Summary:
Playing in Australia's Twenty20 Big Bash league, Sydney Sixers' Sean Abbott conceded 11 runs off one legitimate delivery to hand a win to opponents Perth Scorchers, who needed 9 runs off 6 balls.
Summary:
MDR is the rate charged to a merchant by a bank for providing debit and credit card services.
Summary:
Earlier, the film minted â¹2890 crore worldwide to set the record for the fifth-biggest global weekend opening for a film ever.
Summary:
Summary:
The second wicket Spofforth took was of a player who was facing his first ever ball in international cricket.
Summary:
Manikandan, a 14-year-old footballer rescued as a child beggar from a temple in Kollam, Kerala, will undergo a one-month training camp at Real Madrid.
Summary:
The regulations will apply to all service providers offering telecom services in India, TRAI said.
Summary:
Shinde's efforts to evacuate victims and save lives deserves being commended, Mumbai Police said.
Summary:
BR Ambedkar's grandson and Dalit leader Prakash Yashwant Ambedkar has called for a bandh across Maharashtra on Wednesday over the clashes that erupted on Bhima Koregaon battle's 200th anniversary.
Summary:
The death toll from five days of unrest in Iran has risen to 21 after nine people were killed during anti-government protests on Monday, Iran's state media reported.
Summary:
India is likely to see mergers and acquisitions (M&A) worth $50 billion (â¹3.1 lakh crore) in 2018, according to apex industry body Assocham.
Summary:
SBI is followed by PNB and Central Bank of India which collected â¹97 crore and â¹68 crore respectively.
Summary:
Finance Minister Arun Jaitley has said there is no mechanism to prevent misuse of cryptocurrencies such as Bitcoin by terror groups.
It functions with a degree of anonymity," he said.
Summary:
Finance Minister Arun Jaitley on Tuesday ruled out having a single rate for all commodities under the GST regime.
Summary:
Reacting to Star Screen Awards introducing the 'Nothing To Hide' award category, a Twitter user wrote, "This is why aliens always go to America and never to Mumbai".
Summary:
The film will reportedly feature Shahid and Shraddha as lawyers.
Summary:
Actor Prakash Raj has said that he will enter politics if someone challenges him to take a plunge.
However, Prakash further said he neither has any political aspiration nor liking for a particular party.
Summary:
Indian Premier League side Royal Challengers Bangalore have added India's former World Cup-winning coach Gary Kirsten and ex-Indian pacer Ashish Nehra to their coaching staff.
Summary:
Real Madrid's Portuguese forward Cristiano Ronaldo shared a photo on Twitter, posing alongside 15 trophies, which comprised his individual awards, in his hometown of Madeira.
Summary:
Israeli food-tech startup SuperMeat, which is developing lab-made chicken meat, has raised $3 million in seed funding.
Summary:
YouTuber Logan Paul has apologised for posting a video showing the body of an apparent suicide victim in Japan's Aokigahara forest.
Summary:
Police have arrested a man for allegedly killing 6 people with an iron rod in Haryana's Palwal between 2 am and 4 am on Monday night.
Summary:
Iran's Supreme Leader Ayatollah Ali Khamenei has blamed the country's "enemies" for the unrest amidst the ongoing anti-government demonstrations.
Summary:
At least 14 people were killed and 12 others were injured on Monday in Nigeria as gunmen opened fire indiscriminately at people returning from New Year's Eve service from a church, according to reports.
Summary:
On his visit to a church on the New Year's Eve, Britain's Prince Philip joked about a bearded man asking if he was a terrorist, reports said.
Summary:
Managing Director of Indian public sector lender Punjab National Bank (PNB), Sunil Mehta, has put 300 branches under investigation and asked all loss-making branches to either shape up within a year or face closure or merger.
Summary:
A nation-wide strike involving nearly 3 lakh doctors was called off after Union Minister Ananth Kumar said the National Medical Commission Bill will be sent to a standing committee.
Summary:
As there were no propulsion systems on the sphere-shaped spacecraft, instead of impacting the Moon as intended, it passed within 6,000 km of the Moon's surface.
Summary:
Both the Indian men's and women's hockey teams secured Asia Cup titles, while the Indian women's ice hockey team registered their first-ever international victory.
Summary:
Apart from the winners' prize money of â¹2 crore, recently crowned Ranji Trophy champions Vidarbha will also be awarded â¹3 crore by the Vidarbha Cricket Association.
Summary:
Former Australian leg-spinner Shane Warne was smashed for 150 runs by the Indian batsmen in his debut Test, which started on January 2, 1992, in Sydney.
Summary:
The term 'Robotics' was coined by Russian-born American science-fiction writer Isaac Asimov and it was used for the first time in his short story called 'Liar!' which was published in 1941.
Summary:
Moutrie claimed the video, which has 100 million views, was removed for violating Facebook's community guidelines but didn't contain explicit nudity.
Summary:
Twitter Co-founder and CEO Jack Dorsey took to Twitter to reveal that he went silent for 10 days as a part of 'Vipassana' meditation.
Dorsey finished the silent meditation on the first day of 2018.
Summary:
No large commercial plane witnessed a fatal crash during 2017 and the year was the safest on record for commercial air travel, said a review published by aviation consultants.
Summary:
LeEco's Founder Jia Yueting has failed to comply with a court order to return to China to deal with the company's debts.
Summary:
US-based astronomers have found "the first direct observational evidence" of a black hole's influence on star formation.
Summary:
India has sent a 12-year-old boy back to Pakistan after he unintentionally strayed into the Indian territory from Ferozepur nearly seven months ago, according to the Pakistani embassy in New Delhi.
Summary:
Over half of the 3.86 lakh births across the world on New Year's Day took place in nine countries, UNICEF added.
Summary:
UN Secretary-General António Guterres has issued a "red alert" for the world in his New Year's message.
Summary:
The Calgary Zoo in Canadian province Alberta has shifted its penguins inside because of the cold temperature.
Summary:
"After #Padmavat verdict, SRK named his movie #ZERO so that Censor Board cannot add, subtract, multiply, divide anything," wrote another user.
Summary:
Hollywood actress Jessica Alba took to Instagram to announce that she gave birth to a baby boy on New Year's Eve.
"Best gift to ring in the New Year!!" she wrote.
Summary:
Actor Prabhas, known for acting in the 'Baahubali' film franchise, will be starring in an upcoming Bollywood film.
The film is likely to mark Prabhas' debut in Bollywood.
Summary:
A kitten with two faces was euthanised less than a month after she was born in South Africa.
Summary:
Earlier the crowd had booed during Michael van Gerwen's semifinal against Rob Cross.
Summary:
The message history is only stored in users' mobiles, computers and other terminals, WeChat wrote in a post.
Summary:
Immigration desk computers at several airports in the United States were down for approximately two hours on Monday, causing delays and long queues for passengers.
Summary:
NASA's SOFIA, a Boeing jetliner modified to carry a 100-inch-diameter telescope, is preparing for its 2018 observing campaign, which will include observations of celestial magnetic fields, star-forming regions, and Saturn's largest moon Titan among others.
Summary:
The deceased and his friend were supposed to board a train to Agra but boarded the wrong train.
They panicked after realising their mistake and jumped off the moving train.
Summary:
Vice President and Rajya Sabha Chairman Venkaiah Naidu on Tuesday asked members to not talk during obituary references as it sends a "wrong message".
Summary:
The fifth Ashes Test to be held in Sydney from January 4 will be the 10th Pink Test.
Summary:
Chinese e-commerce giant Alibaba is in advanced talks to buy a significant minority stake in Pune-based logistics startup Xpressbees by making an investment of $100 million, according to reports.
Summary:
Parliament's ongoing winter session has witnessed continuous adjournments several times.
Summary:
Delhi High Court on Tuesday stayed a special CBI court's order awarding 3-year jail term to former Jharkhand CM Madhu Koda in a coal scam case till January 22.
Summary:
Three hundred Hollywood celebrities, including Jennifer Lawrence and Meryl Streep, have launched a campaign named 'Time's Up' to battle sexual harassment.
Summary:
South Korea on Tuesday offered high-ranking government talks with North Korea next week over the latter's possible participation in the 2018 Winter Olympic Games in the country.
Summary:
The year 2017 saw Roger Federer and Rafael Nadal team up for the first time in their careers, while Floyd Mayweather knocked out Conor McGregor in 'The Money Fight' in August.
Summary:
Germany has enforced a law to fine social networks up to $60 million for failing to remove hate speech.
Summary:
The CEO of a US-based company was arrested on Sunday for allegedly making a bomb hoax call because he was irked by flight delays at Mumbai airport.
Summary:
Congress will consult other opposition parties before taking a decision on the bill banning instant Triple Talaq.
Summary:
US President Donald Trump's administration is considering a proposal to end the provision of granting extensions to H-1B visa holders whose applications for permanent residency (Green Card) had been pending.
Summary:
Bengaluru Police dropped several people, who were stranded due to New Year celebrations, home in their patrol vehicles.
Summary:
Poet Anwar Jalalpuri, who translated Bhagavad Gita to Urdu, passed away at the age of 71 on Tuesday after suffering a brain stroke.
Summary:
One person was killed and several others were injured after violent clashes erupted between Dalit and Maratha groups in Maharashtra's Koregaon Bhima on the 200th anniversary of Battle of Bhima Koregaon.
Summary:
Kolkata is set to get its first floating market, named 'The Floating Market of Patuli', which is likely to be open for public in January.
Summary:
While his music favourites included songs like 'Wild Thoughts' which featured Rihanna and remained popular for parties last year.
Summary:
The US state of California on January 1, 2018, legalised the sale of recreational marijuana, over 20 years after legalising its medical use.
Summary:
"Portraying the role of a powerful female character...
Katrina further said, "It is really nice to see that the female character could be as strong."
Summary:
The Karnataka government will purchase 640 electric vehicles under the Centre's FAME India subsidised scheme, according to an official statement.
Summary:
The ship, called Symphony of the Seas, will also feature a 40-foot-long surf simulator.
Summary:
Speaking on the Pulwama attack in which five security personnel were martyred, BJP MP Nepal Singh said, "Soldiers in the Army die every day." Stating that even villagers get injured during scuffles, Singh added that there is no country in the world where soldiers do not die during battles.
Summary:
Union Minister of Science Harsh Vardhan on Monday said India ranks third in the world in nanotechnology while being fifth in terms of scientific publications.
Summary:
A woman from Uttar Pradesh's Bareilly has sold her 15-day-old son to arrange funds for the treatment of her 25-year-old husband, who was paralysed after an accident in September.
Summary:
The managements of fifteen gurudwaras in Canada's Ontario have issued a statement denying entry to Indian officials and diplomats.
Summary:
The Western Railway (WR) has opened an extended landing of the foot overbridge (FOB) from Monday.
Summary:
A woman tried to immolate herself inside a police station in Uttar Pradesh's Mathura district over delay in arresting the people accused of raping her.
Summary:
Delhi ration cardholders can buy ration from all 2,254 fair price shops under the government's portability scheme available only through online transactions, Food Supplies Minister Imran Hussain tweeted on Monday.
Summary:
The tourist unit of Delhi Police is planning to learn foreign languages such as Russian, German, Spanish, Portuguese, Japanese, and French besides English to provide better assistance to foreign nationals.
Summary:
The cases of drink-driving in Delhi on New Year's Eve doubled as compared to 2016, the police have said.
Summary:
Opposing the National Medical Commission Bill, around 2.9 lakh doctors associated with the Indian Medical Association are observing a 12-hour strike till 6 pm today across the country's private hospitals.
Summary:
The US has confirmed a military aid cut of over â¹1,600 crore ($255 million) to Pakistan after US President Donald Trump threatened to no longer provide monetary assistance to Pakistan on Monday.
Summary:
The 'whistled language' used as a means of communication in Turkish village Kuskoy has entered the UNESCO Intangible Cultural Heritage list.
Summary:
The $440 million prize marks the ninth largest jackpot in the history of Powerball.
Summary:
North Korean hacking group Andariel seized a server at a South Korean company to mine 70 Monero coins worth $25,000, according to a South Korean government-backed hacking analysis team.
Summary:
On Tuesday 3:30 am IST, the Moon reached its perigee, the closest point in its orbit around the Earth, at a distance of roughly 3,56,565 km.
Summary:
To mark its 60th anniversary this year, NASA would launch several missions which include the Parker Solar Probe to explore the Sun's outer atmosphere.
Summary:
BJP MLA Banwari Lal Singhal uploaded a post on Facebook alleging that Muslims were conspiring to capture all parliamentary constituencies by giving birth to 12-14 children and establish rule by 2030.
Summary:
After US President Donald Trump slammed Pakistan for giving "safe haven" to terrorists, India claimed that Trump's message has vindicated India's stand as far as Pakistan's role in perpetrating terror is concerned.
Summary:
The Indian Railways have decided to give a discount of â¹100 to passengers if food booked for the journey isn't served on time in the train.
Summary:
Pakistan's Foreign Minister Khawaja Asif has said that Pakistan has already refused to "do more" for the US after US President Donald Trump criticised Pakistan over inaction in cracking down on terrorists on its soil.
Summary:
Pakistan's financial regulatory body has banned 26/11 Mumbai terror attack mastermind Hafiz Saeed's charities from collecting donations.
Summary:
China has developed a new underwater surveillance network along the maritime Silk Road, which includes the Indian Ocean.
Summary:
A group of revellers in Coromandel, New Zealand built a small sand island in coastal waters on Sunday.
Summary:
Filmmaker Aanand L Rai, while speaking about casting Shah Rukh Khan in 'Zero', said, "I needed a big star and even if you cut two feet away from Khan saab, he'd still stand tall." "This story has a wide reach and he'll take it to the world," he added.
Summary:
Singer Sunidhi Chauhan gave birth to a baby boy on Monday in Mumbai's Surya Hospital.
This is Sunidhi's first child with composer Hitesh Sonik, whom she married in 2012.
Summary:
However, Vidya further said she didn't undergo plastic surgery as she's not okay with it.
Summary:
The first official poster of actor Shah Rukh Khan's upcoming film 'Zero' has been released.
The makers had earlier released a video unveiling Shah Rukh's look.
Summary:
Manchester United on Monday defeated Everton 2-0 to register their first victory after three successive draws in the Premier League.
Summary:
Bangladeshi cricketer Sabbir Rahman was fined over â¹15 lakh (20 lakh Bangladeshi Taka) and has been handed a six-month suspension after he was found guilty of assaulting a young boy during a first-class match.
Summary:
Earlier, reports suggested that Apple will launch its own video subscription service in 2018.
Summary:
Previously, former employees were free to post any kind of review of places they used to work at.
Summary:
The structure features a 93-metre-long glass observation deck and a neon-lit tunnel which leads visitors to an interactive exhibition on the future of Dubai.
Summary:
The drug was found to slow down the rate of nerve cell loss and reduce the amount of amyloid plaques in mice brain linked with Alzheimer's.
Summary:
Cambridge researchers have reached a halfway milestone in developing immature sperm from human stem cells.
Summary:
A 10-year-old boy in Tamil Nadu allegedly committed suicide by hanging himself on Monday after his father scolded him for not taking bath on the New Year's Day. The boy was with his friends when his father scolded him, following which he locked himself in a bathroom.
Summary:
Bihar Urban Development Minister SK Sharma was allegedly manhandled by the staff of a hotel in West Bengal's Birbhum after he demanded a refund for his room charges.
Summary:
Ruling out the possibility of a cricket series between India and Pakistan, Union Minister Sushma Swaraj said the high number of cross-border violations by Pakistan does not set a conducive atmosphere for the sporting engagement.
Summary:
In the three years, India played 135 international matches, winning 87 and losing 36.
Summary:
The Home Ministry has declared Nagaland a "disturbed area" under Armed Forces (Special Powers) Act (AFSPA) for six more months till June-end.
Summary:
PM Narendra Modi on Monday urged Indian scientists to use vernacular languages to "promote an understanding and love of science in our youths".
Summary:
Gokhale, who is a 1981-batch Indian Foreign Service officer, currently serves as Secretary (Economic Relations) in the Ministry of External Affairs.
Summary:
Musharraf had recently called the LeT "patriotic".
Summary:
"Criticism is different from violence and damaging public properties," Rouhani said while urging people to avoid violence.
Summary:
Pakistan on Monday claimed the US assistance provided to the country was "reimbursement" for its fight against al-Qaeda.
Summary:
However, it reappeared shortly after taking off, forcing the flight to turn around.
Summary:
The Centre has made it mandatory for e-commerce firms to display the maximum retail price (MRP) on goods from today.
Summary:
Hollywood actor Hugh Jackman has said that in order to convince people to go out to theatres to watch movies, cinema has to offer them more than what they get on television.
Summary:
Model and reality TV star Kendall Jenner, while denying rumours of her pregnancy, tweeted, "I just like bagels ok." The rumours began after Kendall shared a selfie on Instagram.
Summary:
A full-page advertisement has been placed in the American newspaper The Washington Post, wherein New Zealand-born singer Lorde has been called a bigot, a week after she cancelled a concert in Israel.
Summary:
While talking about filmmaker Karan Johar's twins Yash and Roohi, Sonakshi Sinha said that Johar calls her Yash's first girlfriend because his son feels shy around her and nobody else.
Summary:
The Kerala office of the Censor Board has denied certification to the film '21 Months of Hell', a docu-fiction based on the torture methods used by the police during the Emergency in India in 1975.
Summary:
Rahul had tested positive for drugs at a Mumbai rave party in 2012.
Summary:
Windies captain Carlos Brathwaite took a one-handed leaping catch to dismiss New Zealand's Tom Bruce in the first T20I of 2018 on Monday.
Summary:
Stating that there was no comparison between PM Narendra Modi and Congress leaders, Union Minister Narendra Singh Tomar on Saturday said the two were as different as the hair of moustache and tail.
Summary:
In the evening, the traffic police also issued advisories asking people to take alternate routes.
Summary:
Maharashtra Education Ministry is considering a proposal to have separate board exam papers for students appearing for national entrance exams for medical and engineering colleges.
Summary:
The department picked up 741 male beggars and around 300 female beggars this year, officials said.
Summary:
A carton full of organically grown fresh vegetables was one of the New Year gifts that jailed RJD president Lalu Prasad Yadav got on Monday.
Summary:
Israel's Intelligence Minister Israel Katz on Monday wished success to anti-government demonstrators amid violent unrest across the country.
Summary:
The 12-year-old grandson of slain al-Qaeda chief Osama bin Laden has been killed in an air strike along the Pakistan-Afghanistan border, according to reports on Monday.
Summary:
US President Donald Trump on Monday shared a video listing his government's achievements in 2017.
The video included Trump's comments on the rise in the rate of employment and the stock market in the US.
Summary:
Trump's remarks come in the wake of anti-government protests in Iran.
Summary:
As many as 1,400 cars were destroyed on Sunday after a fire broke out in a multi-storey parking garage in UK's Liverpool.
Summary:
Actor Shah Rukh Khan's look from the upcoming Aanand L Rai directorial 'Zero', in which the actor plays a dwarf, has been revealed.
Summary:
He also indicated that the country will no longer provide assistance to Pakistan.
Summary:
The annual exchange of lists is aimed at updating the nations about the installations to be covered under the agreement.
Summary:
Tamil Nadu BJP President Tamilisai Soundararajan has said that actor Rajinikanth will be a part of the BJP-led National Democratic Alliance for the 2019 Lok Sabha elections.
Summary:
A day after announcing plans to form a political party, actor Rajinikanth on Monday launched a new website and urged his fans to register with their names and Voter ID numbers.
Summary:
Apart from Kohli, the other Indians included in the ODI XI are Rohit Sharma and Hardik Pandya, while Cheteshwar Pujara and Ravindra Jadeja made it to the Test XI.
Summary:
President Ram Nath Kovind on Sunday gave his assent to The Indian Institutes of Management Bill, 2017, allowing IIMs to award degrees instead of diplomas to their graduates.
Summary:
He complimented the Army for combating terrorism and guarding the country's borders in 2017.
Summary:
Over 450 Indian nationals, including 58 civil prisoners and 399 fishermen, are lodged in Pakistani jails, according to a list handed over by Pakistan to India on Monday.
Summary:
The Telangana government on Monday launched a round-the-clock power supply to the state's 23 lakh farmers free of cost.
Summary:
The other members of the Gulf Cooperation Councilâ Bahrain, Kuwait, Oman, and Qatarâ have also committed to introducing VAT.
Summary:
He also said Pakistan will respond to President Trump's tweet shortly.
Summary:
Pakistan is planning to seize the financial assets and charities run by 26/11 mastermind and Lashkar-e-Taiba (LeT) founder Hafiz Saeed, according to a Reuters report.
Summary:
The policy will apply to all verticals, including small business, big retail, e-commerce and direct selling, CAIT said.
Summary:
As per reports, actress Alia Bhatt will star in a film which will be produced by Priyanka Chopra's production house 'Purple Pebble Pictures'.
Reports added, "Alia and Priyanka are extremely fond of each other.
Summary:
While talking about 'Padmavati', a Mewar royal Mahendra Singh Mewar said the Prasoon Joshi-led Censor Board has endorsed a film that may cause social unrest as it misrepresents revered heroic characters.
Summary:
While addressing speculations that he will get married to rumoured girlfriend Natasha Dal this year, actor Varun Dhawan said that this is not on his agenda right now.
Summary:
While talking about the bill criminalising instant Triple Talaq which was passed in Lok Sabha, actor Ali Fazal tweeted, "What a trap this triple talaq bill is.
Wow...and nobody is consulted?" He further wrote, "(You) send the husband into jail by criminalising it.
Summary:
While talking about filmmaker Sanjay Leela Bhansali, Anurag Kashyap said that he creates opera like cinema which is pure magic.
Kashyap further said that Bhansali is a pure artiste.
Summary:
Elon Musk, Founder of the tunnelling startup 'The Boring Company', has raised $1 million for the startup by selling hats worth $20 each.
Summary:
Summary:
PM Narendra Modi said 1,300 women applied to go for Hajj without mahram.
Summary:
Three undertrial prisoners escaped from high-security Mathura jail in Uttar Pradesh by jumping the compound wall at around 2 am on Monday.
Summary:
Pakistan-based Jaish-e-Mohammed has released a video of a 17-year-old militant hailing jihad before going to attack the CRPF camp in J&K's Pulwama.
Summary:
Thousands of people were forced to flee after a boat caught fire during a fireworks display on New Year's Eve in the Australian state of New South Wales.
Summary:
US President Donald Trump on Monday wished his "enemies" and "haters" in his New Year's message.
Summary:
Vidarbha won their first ever Ranji Trophy title after beating seven-time champions Delhi by nine wickets in the final on Monday.
Summary:
This is possible due to a time difference of nearly 23 hours between New Zealand and Hawaii.
Summary:
Former Pakistan captain Ramiz Raja has said that Pakistan Cricket Board should consider appointing a coach like Rahul Dravid for the country's Under-19 team.
Summary:
Wenger overtook former Manchester United boss Sir Alex Ferguson's record of having taken charge of 810 Premier League games.
Summary:
NASA has teamed up with the US government's military research body, DARPA, to build robotic satellites that can be used to sabotage enemy satellites, as well as refuel and repair friendly satellites.
Summary:
Snapchat CEO Evan Spiegel spent $4 million on New Year's Eve party for his employees in Los Angeles, US.
Summary:
A video showing police thrashing a group of men with lathis at Gurugram's Sahara Mall on New Year's Eve has surfaced online.
Summary:
Nearly 1,600 cases of child marriage were prevented in Tamil Nadu between January and November 2017, according to government data.
Summary:
Victims of Muzaffarnagar riots from Muslim and Jat communities on Sunday agreed to withdraw cases against each other in connection with the 2013 violence in the district.
Summary:
Russian President Vladimir Putin on Sunday signed a law to increase the maximum sentence for hoax bomb callers from five to ten years in prison.
Summary:
BRI, which also incorporates the China-Pakistan Economic Corridor (CPEC), aims to connect China with Asia and Europe through a network of rail and sea projects.
Summary:
Casino revenue in the world's biggest gambling hub of Macau rose for the first time in three years in 2017.
Summary:
Richard Cousins, the CEO of British catering giant Compass Group, has died in a seaplane crash near Sydney, Australia, on New Year's Eve that also killed four of his family members.
Summary:
Former 'Bigg Boss 11' contestant Arshi Khan has said that since actresses do nude scenes all the time, people should not have a problem if she does something similar.
Summary:
While talking about the biographical drama series based on the life of Queen Elizabeth II titled 'The Crown', actor Amitabh Bachchan said that he finds himself becoming a character in the times of the queen.
Summary:
'Baahubali' actor Prabhas has featured on the cover of GQ India magazine for its January issue.
Summary:
Virat Kohli and Shikhar Dhawan did an impromptu 'bhangra' dance on the streets of Cape Town, South Africa, on the New Year's Eve. They danced on the music being played by local musicians.
Summary:
English all-rounder Ben Stokes has been replaced by Dawid Malan in England's ODI squad to face Australia this month.
Summary:
Japanese automaker Honda's subsidiary Honda Motorcycles and Scooters India (HMSI) has said it doesn't have the technology for electric two-wheelers.
Summary:
Samsung has confirmed that it is investigating battery issues in Galaxy Note8, S8 and S8 Plus smartphones.
Summary:
As BJP President Amit Shah arrived in Bengaluru on Sunday, Karnataka CM Siddaramaiah said his magic will not work in the state.
Summary:
Toyota Kirloskar Motor has said the company is approaching the government to consider hybrid cars as part of India's drive towards electric vehicles (EVs).
Summary:
An autorickshaw driver from Andhra Pradesh's Vijayawada thrashed his 15-year-old daughter to death on Friday after getting irritated by a series of blank calls.
Summary:
Police have arrested two managers employed with '1 Above', a pub located in Mumbai's Kamala Mills Compound, after a fire at the pub claimed 14 lives and injured 21 people.
Summary:
Mahadeva further slammed Hegde for saying that the BJP intends to change the Constitution.
Summary:
The presence of foreign bank ATMs in India has declined by 18% from 1,141 to 934 between September 2014 and September 2017, according to RBI data.
Summary:
A Motor Accident Claims Tribunal has directed a motorcycle owner and the vehicle's insurer to pay â¹3.7 lakh as compensation to a 10-year-old boy who suffered permanent disability after the motorcycle hit him in 2013.
Summary:
Apple launched its most expensive smartphone iPhone X with an edge-to-edge display and face recognition technology at â¹89,000 and â¹1,02,000 for 64 GB and 256 GB variants respectively.
Summary:
Madhya Pradesh, Maharashtra, Chhattisgarh, Jharkhand, and Haryana were declared open defecation free states in October 2017.
Summary:
Ishrat Jahan, one of the five Muslim women who petitioned against the practice of instant Triple Talaq, was inducted into the BJP on Saturday, the party's West Bengal General Secretary Sayantan Basu said.
Summary:
He further said the country's nuclear arsenal is complete now and called for warheads' mass production.
Summary:
Reacting to messaging service WhatsApp's outage experienced on New Year, a user tweeted, "WhatsApp wale Aadhaar link karna shayad bhool gye." Another user tweeted, "WhatsApp can't be down.
A user also tweeted, "How single are you?
Summary:
The year also saw the development of drones that can be controlled via hand gestures and cable-less elevators.
Summary:
WhatsApp also faced global outage earlier in December and November, when several countries including India and the US were affected.
Summary:
Gujarat Deputy CM Nitin Patel on Sunday was allotted the Finance Ministry amid reports that he was unhappy with the portfolios assigned to him in the new government.
Summary:
Issues discussed during the meeting were Kashmir unrest and Pakistan's stance on terrorists, reports added.
Summary:
The first draft of the National Register of Citizens (NRC) for Assam recognised 1.9 crore people as Indian citizens.
Summary:
Congress President Rahul Gandhi celebrated New Year with his mother Sonia Gandhi in Goa, a party official said on Monday.
Summary:
The son of a Jammu and Kashmir police constable was among the three terrorists who attacked a CRPF camp in Pulwama district during the early hours of Sunday, reports said.
Summary:
The son of a jawan martyred during a terrorist attack on a CRPF camp in Jammu and Kashmir has said, "The world has not seen a country worse than Pakistan." The attack claimed the lives of five CRPF personnel.
Summary:
During his 'Mann ki Baat' address on Sunday, PM Narendra Modi said a nationwide cleanliness survey would be conducted between January 4 and March 10.
Summary:
Greeting the nation on New Year, Prime Minister Narendra Modi on Monday tweeted, "Wishing you all a happy 2018!
Summary:
The actor revealed that he is keeping himself occupied by watching a lot of films which he had missed out on.
Summary:
The Prabhu Solomon directorial is said to be inspired by real-life events, and is a tribute to late actor Rajesh Khanna's 1971 film bearing the same title.
Summary:
Manchester City's record-setting 18-match win streak came to an end with a 0-0 draw against Crystal Palace on Sunday.
Summary:
North Korean leader Kim Jong-un said in his New Year's address that the nation could send a delegation to South Korea to take part in the 2018 Winter Olympics.
Summary:
Hong Kong-based Info Billion Technology has developed a smart notebook called IDNbook which retains a user's original handwriting and transfers the hand-written notes to smartphones/cloud in real time via Bluetooth.
Summary:
US-based developer Pheramor has developed a dating app which matches its users based on DNA obtained from the swab taken from their cheek.
Summary:
Over 350 flights were affected at Delhi's Indira Gandhi International Airport on New Year's Eve after fog reduced the visibility range to nearly 50 metres.
Summary:
Stating that she was the same age as the constable's mother, Kumari said that she should have controlled her temper.
Summary:
Prime Minister Narendra Modi on Sunday said Muslim women have found a way to free themselves from the practice of instant Triple Talaq after years of struggle.
Summary:
A 36-year-old non-resident Indian was killed on Saturday during a celebratory firing at the sangeet function ahead of his wedding in Haryana's Kaithal town.
Summary:
US Vice President Mike Pence was trolled with a rainbow flag stating "Make America Gay Again" by his neighbours during a stay at his vacation home in the US state of Colorado.
Summary:
Indian golfer Shiv Kapur won his third Asian Tour title of 2017 by lifting the Royal Cup in Thailand on Sunday.
Summary:
Astronauts onboard the International Space Station will experience New Year's Eve 16 times as they orbit the Earth once every 90 minutes, the US' space agency NASA has said.
Summary:
Summary:
Gujarat Deputy CM Nitin Patel has said he will take charge after BJP President Amit Shah assured him that he will be assigned portfolios suitable to his "stature".
Summary:
Andhra Pradesh Chief Minister N Chandrababu Naidu has warned his party MPs and MLAs against indulging in cockfights during Sankranti.
Summary:
Nearly half of the 4.16 lakh jobs created were generated in the manufacturing sector while education and health accounted for 32% of the new jobs.
Summary:
An 18-year-old girl from Hyderabad has claimed to have created the world's largest painting using her feet.
Summary:
This would be the minister's second visit to the area after his four-day tour in September.
Summary:
Ahead of New Year's celebrations, Mumbai Police has banned the use of flying lanterns in the city till January 22 so as to avoid any untoward incidents.
Summary:
This comes after the government said that protesters will have to "pay the price", warning them against such "illegal gatherings".
Summary:
At least 15 people were killed and 13 others injured on Sunday in a suicide attack at a funeral in eastern Afghanistan, officials said.
Summary:
A Pakistani lawmaker has submitted a resolution to the Punjab province Assembly seeking a ban on Japanese cartoon Doraemon and foreign dramas.
Summary:
In a message to employees, Air India Chairman and Managing Director Pradeep Singh Kharola has said, "We have to perform if we do not want to perish." "We have to adopt a professional and productive work culture which will hold the key for our turnaround," he added.
Summary:
Actress Richa Chadha, while referring to film Padmavati's title being changed to 'Padmavat', tweeted, "If I remove the 'i' from my name, will I be more acceptable?
Summary:
Speaking on a television chat show, actor Zac Efron recalled an incident where he almost died during a cycling trip in London with actor Hugh Jackman.
Summary:
Shah Rukh Khan sang a few lines of the song 'Tujhe Dekha Toh' from his film 'Dilwale Dulhaniya Le Jayenge' at an event in Muscat, Oman.
Summary:
Actor Shah Rukh Khan, while addressing his upcoming film's director Aanand L Rai, tweeted, "Sir, title kab announce karna hai?
Summary:
Blue, who turns six on January 7, is depicted as leading an all-female constitutional convention in 2050.
Summary:
Denmark's ruling Liberal Party is planning a national streaming service 'Danflix' along the lines of on-demand video streaming service Netflix, party officials said.
Summary:
Australia captain Steve Smith has said that he prefers to be batting on the field instead of watching cricket.
Summary:
The official Instagram account of the team shared a picture showing the players training indoors.
Summary:
Slamming the government over only 7% utilisation of â¹9,860 crore allotted for Smart Cities Mission, Congress President Rahul Gandhi tweeted, "China is outcompeting us while (PM Narendra Modi) gives us empty slogans." He shared a documentary on a Chinese village which had turned into a megacity.
Summary:
The Union Home Ministry has urged chief ministers of all states to visit another state only after informing the host government, citing security reasons.
Summary:
Addressing the nation during the last edition of Mann ki Baat for 2017, Prime Minister Narendra Modi on Sunday said that it was time to transform the nation from 'positive India' to 'progressive India'.
Summary:
A 61-year-old man was found murdered inside a mosque in Andhra Pradesh's Rajahmundry on Friday.
Summary:
Michael Neu acted as a middleman in the scam, obtaining money and then wiring funds to his co-conspirators in Nigeria, police said.
Summary:
Homeless people in the Belgian capital of Brussels have been given portable cardboard tents as part of a charity project.
Summary:
Transport Minister Nitin Gadkari has said that India has the potential of starting 10,000 seaplanes.
Gadkari added that he has asked Civil Aviation Minister Ashok Gajapathi Raju to formulate regulations for seaplanes.
Summary:
Four Central Reserve Police Force (CRPF) jawans were martyred and three others were injured during a terrorist attack on a CRPF training centre in Jammu and Kashmir's Pulwama district in the early hours of Sunday.
Summary:
Summary:
However, Dev was selected again in the next match and went on to play 65 more consecutive Tests before retiring.
Summary:
Following his scores of 76 and 102* in the Melbourne Ashes Test, Australia captain Steve Smith has reached 947 rating points, the all-time second highest after legend Don Bradman's 961.
Summary:
Summary:
All police stations in Telangana will maintain a Facebook account and a Twitter handle from next year to communicate with people on a daily basis, police officials said.
Summary:
Mumbai terror attacks mastermind Hafiz Saeed's aide Maulana Ameer has claimed that Pakistan's intelligence agency ISI was behind the ill-treatment of the family of Kulbhushan Jadhav.
Summary:
A video showing an 85-year-old woman talking to Google's digital assistant Google Home Mini went viral this week after she received the device as a Christmas gift.
Summary:
An All Nippon Airways flight from Los Angeles to Tokyo was forced to turn around after nearly four hours into the journey as the crew discovered an "unauthorised" passenger on board, the airline said.
Summary:
The Competition Commission of India has ordered a probe against Star India and its officials over alleged abuse of dominant position in broadcasting services market in Kerala.
Summary:
Singer Justin Bieber is auctioning a painting he made to raise funds for people affected by the recent wildfires in California.
Summary:
As per reports, actor Ajay Devgn will be co-producing the upcoming film 'Total Dhamaal' in addition to starring in it.
Summary:
Actor Dylan Sprouse, known for acting with his twin brother Cole Sprouse in the Disney Channel series 'The Suite Life of Zack & Cody', has said that being called a "former child star" is derogatory.
He added, "Even 'young actor' sounds better.
Summary:
Yuvraj Singh took to social media to share a picture of himself with Sachin Tendulkar and former India pacer Ajit Agarkar from a pre-New Year's party.
Summary:
Responding to reports that Facebook was reportedly demanding new users' Aadhaar data, IT Minister Ravi Shankar Prasad has said he will enquire into it.
Summary:
Former Infosys CFO Mohandas Pai has said, "The e-commerce market places need to have a no-fake policy to address problems relating to selling fake products on their platforms." Pai also said that the market places should build a good review mechanism to keep a quality check on products.
Summary:
A drunk businessman on Saturday allegedly set a bouncer at Hyderabad's The Park Hotel on fire and immolated himself.
Summary:
This comes after Latha petitioned against the corporation's decision to increase the monthly rent from â¹3,702 to â¹21,160.
Summary:
Launched last month, Hyderabad Metro carries around one lakh passengers every day.
Summary:
Inspector General of Kochi Police P Vijayan has instructed police officials to not spoil festive spirit while ensuring security during New Year celebrations.
Summary:
This comes after Tamil actor Rajinikanth announced his decision to enter politics.
Summary:
A video showing a man confronting Haryana Police officials who were questioning a couple at Rohtak's Tilyar Lake has gone viral.
Summary:
The Australian Navy has seized heroin and hashish worth over â¹2,600 crore in the Arabian Sea, officials said.
Summary:
A man in US' Florida was arrested for his failed attempt at rigging the front door of his home to electrocute his pregnant wife, authorities said.
Summary:
Russia has reported an outbreak of highly pathogenic H5N2 bird flu that led to the death of more than six lakh birds, according to the World Organisation for Animal Health.
Summary:
The CAG said the telcos, which include Tata Teleservices, Telenor, and Reliance Jio, understated revenues by over â¹14,800 crore causing shortfall to the government.
Summary:
A Scottish Championship between St Mirren and Dundee United witnessed a snowball fight between the opposing fans.
Summary:
The biggest fashion moments of 2017 included Indian representative Manushi Chhillar becoming Miss World 2017, making India the winner after 17 years.
Summary:
Cricketer and commentator Kevin Pietersen on Friday slammed Emirates airline for misplacing his luggage while he was travelling from United Kingdom to Australia.
Summary:
India has produced many business leaders in the world, including Madurai-born Sundar Pichai, who is the CEO of technology giant Google.
Summary:
Apple has patented a long-range wireless charging technology that will let users charge multiple devices from a particular distance from the charger.
Summary:
During his radio address Mann ki Baat on Sunday, PM Narendra Modi welcomed those born in the 21st century to the democratic system as they will start becoming eligible voters from January 2018.
It can transform our nation," he added.
Summary:
Government teachers with outstanding performance will be deputed in these co-educational schools, Sisodia added.
Summary:
The state government has been providing â¹12,000 per family for construction of toilets in rural and urban households since last year.
Summary:
Addressing his last 'Mann ki Baat' programme this year, PM Narendra Modi said all the ten Association of Southeast Asian Nations (ASEAN) leaders will attend 2018 Republic Day as chief guests.
Summary:
China's ban on the sale of ivory came into effect on Sunday, closing 172 ivory-carving factories and retail outlets.
Summary:
The Malaysian state of Terengganu plans to run a conversion therapy course for transgender women, officials said.
Summary:
Celebrity contestant Priyank Sharma has been evicted from the reality show Bigg Boss 11.
"I'm only looking at the positives, now," said Priyank.
Summary:
Talking about Karan Johar's twins Roohi and Yash, actor Varun Dhawan said, "I wish I could protect them from getting papped all the time." Varun, who made his acting debut in Bollywood with Johar's 2012 film 'Student of The Year', is very close to the filmmaker.
Summary:
Actress Dia Mirza, while talking about working with Ranbir Kapoor in actor Sanjay Dutt's biopic, said that it was deeply gratifying.
Summary:
Summary:
A Chrome extension called Archive Poster, with over 1,05,000 users, has been found mining the cryptocurrency 'Monero' without the user's permission.
Summary:
Apple has reduced the replacement cost of out-of-warranty batteries in India by a reported price of over â¹4,000 for iPhone 6 models and beyond.
Summary:
Claiming that he has offers from several parties, BJP leader Eknath Khadse said, "My situation these days is like a beautiful girl who every boy wants on his side." He added that his admirers were increasing with each passing day.
Summary:
BJP leader Subramanian Swamy on Sunday slammed actor Rajinikanth's decision to enter politics and called him an illiterate.
Summary:
According to the plan, the teachers who indulge in these habits will be asked to undergo counselling, meditation, and yoga sessions.
Summary:
The Brihanmumbai Municipal Corporation (BMC) on Saturday demolished 314 illegal structures while inspecting 624 restaurants, eateries and malls across the city and its suburbs.
Summary:
This would be applicable only to a girl child born through normal delivery.
Summary:
Warning pubs against serving fire shots, the Pune Fire Department has said such beverages are illegal and highly dangerous.
Summary:
A video showing a man jump in front of Uttar Pradesh CM Yogi Adityanath's convoy has surfaced online.
Summary:
The Russian President added that a constructive Russia-US dialogue was necessary to maintain global stability.
Summary:
Pavel Lerner, a Bitcoin analyst and blockchain expert, was abducted by a group of masked people on December 26, EXMO revealed.
Summary:
"As the World Bank report suggests, GST is going to be transformational, revolutionary tax system to change India's economy," he said.
Summary:
The Finance Ministry has served notices to fashion retailer Lifestyle, McDonald's franchisee Hardcastle Restaurants, and a Hindustan Unilever dealer for allegedly not passing on the benefit of lower GST rates to consumers.
Summary:
Announcing his decision to enter politics, actor Rajinikanth on Sunday said he will form a new party to contest the next Tamil Nadu Assembly elections from all constituencies.
Summary:
Sophia, the world's first robot to be granted citizenship, made its first appearance in India during an annual festival at IIT-Bombay on Saturday.
Summary:
Nepal's Cabinet on Friday banned solo expeditions on its mountains, including the Mount Everest, in a move aimed at reducing accidents among climbers, officials said.
Summary:
The discovery of gold's origin in the universe was hailed by many as "scientific breakthrough" of the year.
Summary:
Congratulating Rajinikanth on his entry into politics, actor Kamal Haasan said, "I congratulate my brother Rajini for his social consciousness and his political entry.
Summary:
Indian chess champion Viswanathan Anand clinched a bronze medal at the World Blitz Chess Championship in Riyadh on Saturday.
Summary:
The only Indian woman wrestler to win an Olympic medal, Sakshi Malik, has passed the selection trials to qualify for next year's Commonwealth Games.
Summary:
Congress President Rahul Gandhi has appointed Celestine Lyngdoh as the new state President, while Lapang will serve as a Meghalaya Pradesh Congress Committee advisor.
Summary:
President Ram Nath Kovind on Saturday said that India was facing a "possible mental health epidemic".
Summary:
Talking about the opposition to New Year parties by certain groups, Union Minister Jitendra Singh said it would be taken care of.
Summary:
Doctors pursuing Indian systems of medicine including Ayurveda and homeopathy may be allowed to practice allopathy after clearing a bridge course, according to a bill introduced in the Lok Sabha.
Summary:
A general court martial (GCM) has ordered that an Indian Army Brigadier be stripped of his rank and undergo three years of rigorous imprisonment on charges of having an extramarital affair with a Colonel's wife.
Summary:
US President Donald Trump on Friday mocked climate change, saying the US' east coast could "use a little bit of global warming" as it faces its coldest New Year's Eve. This was an apparent dig at the Paris climate deal, which Trump claimed would have cost the US "trillions of dollars".
Summary:
The German capital of Berlin will have a "safety zone" for women during New Year's Eve celebrations.
Summary:
The woman claimed that their families had agreed upon their marriage but Subramanya had said he would marry a woman, who could give him â¹20 lakh for his next film.
Summary:
Maharajkumar Vishvaraj Singh, the 76th Maharana of the Mewar dynasty and a former Lok Sabha member, has slammed the Central Board of Film Certification (CBFC) for agreeing to certify the film 'Padmavati' without his consent.
Summary:
Veteran Sri Lanka pacer Lasith Malinga was used as a net bowler at a special practice session with new Sri Lanka coach Chandika Hathurusingha in Colombo.
Summary:
Smith, who scored 1,079 runs at 71.93 last year, ended 2017 with 1,305 runs at 76.76.
Summary:
F1 champion Mercedes' Lewis Hamilton has emptied his Instagram account and deleted some of his older tweets after facing backlash over a post in which he mocked his nephew sporting a blue and pink dress.
Summary:
Twenty-three-time Grand Slam winner Serena Williams lost in her first match after giving birth to her first child in September.
Williams was beaten by French Open champion Jelena Ostapenko in an exhibition match in Abu Dhabi.
Summary:
Defending Premier League champions Chelsea defeated Stoke City 5-0 in the Premier League on Saturday, extending their unbeaten run in the league to five matches.
Summary:
A high-altitude balloon, launched by Google under "Project Loon" to provide internet in remote parts of the earth, has crashed in Kenya.
Summary:
BJP Karnataka chief BS Yeddyurappa on Friday said that the party has established its government in 19 states because of Prime Minister Narendra Modi's achievements.
Summary:
The fund was set up in Nirbhaya's name after her brutal gangrape triggered nationwide outrage.
Summary:
One jawan was killed and two jawans were injured after terrorists attacked a CRPF training centre in Jammu and Kashmir's Pulwama district during the early hours of Sunday.
Summary:
The Narcotics Control Bureau (NCB) arrested four students from Delhi University, Jawaharlal Nehru University and Amity University for their alleged involvement in a narcotics supply racket in the national capital.
Summary:
The Delhi Metro has announced that passengers will not be allowed to exit from Rajiv Chowk Metro Station after 9 PM on New Year's Eve for security reasons.
Summary:
Introducing Special New Year's Eve packages from Ola Rentals to welcome 2018, with safe transportation at your disposal at all times.
Summary:
Further, the film's title will be changed.
Summary:
The proposed project will have a capacity of 700 MW and will be built with foreign funds, reports added.
Summary:
India made significant foreign policy moves in 2017, including its boycott of the Belt and Road Forum held in China over sovereignty concerns.
Summary:
South Korean electronics giant Samsung has said that it does not reduce the performance of its phones with older batteries.
Summary:
He added that he has warned Bedi against overstepping her constitutional and statutory limits.
Summary:
BJP leader Narottam Patel has said that Gujarat Deputy Chief Minister Nitin Patel is upset over not being appointed in-charge of the departments of his choice.
Summary:
The Parliament on Thursday passed two bills to revoke 245 obsolete laws to "reform the legal system".
Summary:
The Kolkata Police has issued a notification banning public display of weapons from January 2, 2018, to January 1, 2019.
Summary:
Russian tankers transferred oil to North Korean vessels at sea in breach of UN sanctions, reports said.
Summary:
Talking about the success of the Salman Khan and Katrina Kaif starrer 'Tiger Zinda Hai', director Ali Abbas Zafar said, "If you give the audience what your trailer promises, they will accept it with open arms." Ali added, "My equation with Salman is what the success of Tiger Zinda Hai validates.
Summary:
Talking about the decision of the Central Board of Film Certification to certify 'Padmavati', former CBFC chief Pahlaj Nihalani said, "This film was sidelined by CBFC...
Summary:
Rio Olympic gold medalist Carolina Marin said that she needs a new strategy each time while facing Rio silver medalist PV Sindhu and London bronze medalist Saina Nehwal.
Summary:
Sachin Tendulkar took to Twitter to share a video of cricketer-turned-commentator Mohammad Kaif's son Kabir facing a bowling machine, which displayed Tendulkar as the bowler.
Reacting to it, Kaif wrote, "My son Kabir seems to have handled your bowling much better."
Summary:
Deputy Commissioner of Tumakuru district KP Mohan Raj has sought an explanation from her about the incident.
Summary:
A case has been registered under the Uttar Pradesh Prevention of Cow Slaughter Act.
Summary:
The Madrasa Welfare Society has written to CM Trivendra Rawat seeking his nod to appoint Sanskrit teachers.
Summary:
Indian-origin scientist Pratibha Laxman Gai has been named for damehood, the female equivalent of knighthood, for "services to chemical sciences and technology".
Summary:
The US has conducted several military and naval drills near North Korea this year over its nuclear programme.
Summary:
Summary:
Turkey on Friday signed a $2.5-billion loan agreement with Russia for the purchase of S-400 missile defence systems, Turkish officials said.
Summary:
Thousands of people joined rare anti-government protests in Iran on Friday against poor economic conditions including alleged corruption and rising prices, reports said.
Summary:
Zambian President Edgar Lungu has directed the country's military to help fight the spread of cholera, officials said.
Summary:
US President Donald Trump has said that he will win the 2020 presidential election as the media will help him secure the victory.
Summary:
The firm was raising funds through investment contracts without registering with the regulator, SEBI said.
Summary:
The fund is to benefit long-term and retail investors by providing an opportunity to purchase equity stocks of government-run companies and earn stable returns.
Summary:
The Border Security Force (BSF) has been told to keep a close watch on the India-Bangladesh border in Tripura to prevent entry of "unwanted elements" into the state where Assembly elections are due in 2018, an election official said.
Summary:
Palestine on Saturday recalled its ambassador to Pakistan, Walid Abu Ali, after India expressed displeasure over his presence at a rally organised by 26/11 mastermind and Jamaat-ud-Dawah (JuD) chief Hafiz Saeed, officials said.
Summary:
Dhoni is followed by former captain Sourav Ganguly, who led India to 21 Test wins in 49 matches.
Summary:
The government has provided over â¹7,500 crore to six state-owned banks so that they meet the prescribed regulatory capital requirement.
Summary:
It is a custom in Spain to eat 12 grapes at the stroke of midnight on New Year's Eve, while people in Turkey gift each other red underwear for good luck.
Summary:
The biggest controversies in Bollywood this year included members of Rajput organisation Karni Sena slapping director Sanjay Leela Bhansali and protests against the release of 'Padmavati'.
Summary:
Kohli also took his ODI hundreds tally to 32, the second-most hundreds by a batsman in ODI cricket.
Summary:
The latest luxury liner from the Norwegian Cruise Line, the ship will sail to the Caribbean and Alaska starting June 2018.
Summary:
A new law on data protection is in the process of being framed, Union Minister Ravi Shankar Prasad on Friday informed the Rajya Sabha.
Summary:
The Bill debars wilful defaulters and existing promoters from bidding for stressed assets of companies undergoing insolvency proceedings.
Summary:
Following the fire which broke out in Mumbai's Kamala Mills Compound, Mayor Vishwanath Mahadeshwar questioned why should he resign over the incident.
Summary:
Rajinikanth has confirmed the new release date of his upcoming film '2.0' as April 14, 2018.
Rajinikanth further said the film's release got postponed due to work on the graphics and AR Rahman re-recording the film's songs.
Summary:
Reacting to the news that the Censor Board might change the title of 'Padmavati' to 'Padmavat', a user tweeted, "Do we also have to refer to Lilavati Hospital as Lilavat and Behen Mayawati as Mayawat now?" "Now that #Padmavati has lost an I, can we call the aggressors Karn Sena?
Summary:
Actor Rajinikanth has said that filmmakers Suresh Krissna and Mani Ratnam are the ones who made him a superstar.
Summary:
Rajput organisation Karni Sena's member Sukhdev Singh Gogamedi said the committee formed to review Sanjay Leela Bhansali's 'Padmavati' had opposed the film but the Central Board of Film Certification decided to certify it under pressure from the underworld.
Summary:
An Indian-origin surgeon based in New Jersey, US, has been temporarily suspended from medical practice for allegedly reusing disposable anal catheters on multiple patients.
Summary:
A 54-year-old Chinese man named Shi Lei smashed ice with his hands to help rescue a 70-year-old woman who had fallen into a frozen river.
Summary:
Former Australia captain George Bailey pulled off a one-handed leaping catch to dismiss Sydney Thunder opener Kurtis Patterson in the Big Bash League on Saturday.
Summary:
Sydney Thunder wicketkeeper-batsman Jos Buttler slammed four sixes in the 12th over off Hobart Hurricanes medium-pacer Thomas Rogers in the Big Bash League on Saturday.
Summary:
The Niagara Falls, located on the US-Canada border, has partly frozen following the recent cold wave that has hit parts of North America.
Summary:
NASA's Earth-observing satellite has photographed an iceberg which calved from Antarctica's Pine Island Glacier (PIG) in September and fragmented within weeks.
Summary:
Out of the â¹9,860 crore released to 60 cities under the Smart Cities Mission, only 7%, or about â¹645 crore have been utilised so far, according to the Housing and Urban Affairs Ministry.
Summary:
Police raided the house acting on a tip-off and registered a case of abduction and gangrape.
Summary:
As many as 98 private members' bills were introduced in the Lok Sabha on Friday, including one to constitute a board for protection and control of stray cows.
Summary:
Nearly 18,000 kg of avocados spilled onto a highway in the US state of Texas on Thursday, after a truck carrying them crashed and caught fire.
Summary:
Fashion magazine Vanity Fair has been slammed over a video suggesting 2016 US Presidential nominee Hillary Clinton should quit politics and take up knitting instead.
Summary:
The fashion show also featured drag queens and people with disability.
Summary:
Mahindra Group Chairman Anand Mahindra tweeted he was interested to invest in the mobile truck food business run by a woman entrepreneur in Mangaluru.
Summary:
The Central Board of Film Certification has decided to give a U/A certificate to the film 'Padmavati' provided some modifications are made in the film.
Summary:
A Harvard Business School research has found that people switching a queue actually waited 10% longer than if they had stayed put.
Summary:
This is the fourth consecutive time Smith has scored over 1,000 runs in a calendar year.
Summary:
Australian captain Steve Smith scored his 23rd Test ton to help his side secure a draw against England in the fourth Test at Melbourne on Saturday.
Summary:
Researchers also developed a portable receiver device, for rescue teams, that can detect signals to find the user.
Summary:
Regarded as the Father of Indian space program, Vikram Sarabhai founded ISRO in 1969, while also spearheading the launch of India's first satellite Aryabhata.
Summary:
Pakistan on Saturday claimed that India has denied visas to 192 Pakistani pilgrims who wanted to visit the country's Nizamuddin Dargah in January next year to participate in death anniversary ceremony of Hazrat Khwaja Nizamuddin Auliya.
Summary:
A groom in Kerala abandoned the car he was travelling in and instead took the Kochi Metro to reach his wedding on time.
Summary:
Ringo Starr, who was the drummer in English rock band 'The Beatles', is among the personalities who will receive knighthoods as part of UK's Queen Elizabeth's annual New Year's Honours list.
to be considered and acknowledged for my music and my charity work," said Starr.
Summary:
"Hema Malini should restrict her opinions to drinking water quality," tweeted a user.
Summary:
Double Olympic medalist Sushil Kumar has claimed that wrestler Parveen Rana bit him during their clash in the Commonwealth Games trials on Friday.
Reacting to his supporters clashing with Parveen's, Sushil said, "Whatever happened...was wrong."
Summary:
Speaking about the friendship between herself and compatriot and competitor Saina Nehwal, PV Sindhu said, "We're friends; like "Hi", "Bye"...
"The rivalry (with Saina) is always there.
Summary:
Facebook-owned instant messaging service WhatsApp temporarily enabled a feature in beta for Windows phones that let users reply privately to another user in a group, according to reports.
Summary:
Facebook has apologised after an investigation found inconsistencies in removing 'offensive' posts which are reported by users.
Summary:
A Spanish court has ruled that parents can read their children's WhatsApp messages, saying it is required to preserve the "indemnity of minors".
Summary:
Rome Mayor Virginia Raggi is planning to add 10,000 square metres of temporary beach to the banks of the Tiber River.
Summary:
Locals in Spanish town Ibi celebrated Els Enfarinats on Thursday, dressing up in military attire and staging a mock takeover using eggs, flour and firecrackers.
Summary:
The Samajwadi Party opened the application process for candidature in the 2019 Lok Sabha elections.
Summary:
Patidar leader Hardik Patel has said that he will get Gujarat Deputy CM Nitin Patel a "good position" in the Congress if Nitin, along with 10 MLAs, quits the BJP.
Summary:
The Rajya Sabha on Friday rejected a private member bill seeking to guarantee employment to every citizen above 18 years of age or provide them unemployment allowance.
Summary:
A study by US' National Institutes of Health has found that white fat in mice serves as a reservoir for immune cells called memory T-cells, which learn to fight infections.
Summary:
Kumari has registered an FIR against Rajvanti, accusing the constable of preventing her from "discharging her public duty".
Summary:
However, due to his confession to the fraud, his sentence was halved to 6,637 years and six months.
Summary:
Terming the US-Russia relationship the biggest disappointment of 2017, Russian President Vladimir Putin's spokesman Dmitry Peskov said, "It takes two to tango." Russia is ready to build relations, but US efforts are also necessary, the Russian diplomat said.
Summary:
Union Minister Jayant Sinha has said the private sector can run airlines business "far better" than the government.
Summary:
The government has said nearly 50,000 enrolment operators have been suspended for violating the guidelines for Aadhaar enrolment till date.
Summary:
A post-graduate student was arrested on Friday for posting abusive religious content on a Facebook page.
Summary:
Kavitha Bharanidaran, a Chennai resident, has attempted a new Guinness World Record for performing yoga continuously for over 105 hours.
Summary:
A truck bombing in Somalia's capital Mogadishu which killed over 500 people in October was the biggest terror attack of 2017.
Summary:
Vidarbha's Rajneesh Gurbani became only the second player to register a hat-trick in the final of the Ranji Trophy after scalping the hat-trick on the second day of the final against Delhi on Friday.
Summary:
The robot recognises voice and can also interact in English, the startup's Founder Kisshhan Psv highlighted.
Summary:
Fashion retailer Forever 21 has confirmed that point-of-sale (POS) devices at some of its stores in the US were breached, compromising customers' payment card information.
Summary:
making Amazon richer and the Post Office dumber and poorer?" Trump tweeted.
Earlier in August, Trump criticised Amazon and said it is "doing great damage to tax paying retailers."
Summary:
India has said that it will strongly take up the issue of Palestinian envoy Walid Ali's presence at a rally organised by 26/11 mastermind and Jamaat-ud-Dawah (JuD) chief Hafiz Saeed on Friday in Pakistan.
Summary:
In a Facebook post, Baloch leader Hyrbyair Marri on Friday said Kulbhushan Jadhav was not arrested from Balochistan but "was, in fact, abducted from Iran by Pakistani state-sponsored religious proxies and handed over to Pakistani forces".
Summary:
A day after a fire killed 14 people at Mumbai's Kamala Mills, the Brihanmumbai Municipal Corporation (BMC) has started demolishing illegal structures at the site.
Summary:
Air India has suspended two staffers after a passenger, who had bought tickets for Muscat, boarded a Mumbai-bound flight.
Summary:
Hundreds of youngsters recently attended the Singles' Ball in the town of Middlemarch, New Zealand.
Summary:
Pakistani police rescued 25 members of a family who were allegedly held hostage at gunpoint by a drunken relative in the city of Rawalpindi.
Summary:
The market capitalisation of Ripple reached more than $110 billion and the cryptocurrency has surged over 47,200% year-to-date.
Summary:
The government on Friday said over 25,800 fraud cases involving about â¹179 crore related to credit/debit cards and internet banking were reported in 2017.
Summary:
UK-based Bitcoin exchange Exmo was hit by a Distributed Denial of Server (DDoS) cyber attack on Thursday, just days after one of Exmo's leading analysts was kidnapped.
Summary:
Rana, after losing to Sushil in the semifinal clash, claimed that Kumar's supporters beat him and his elder brother "for daring to take the ring" against him.
Summary:
Facebook and Twitter could face sanctions if they fail to deal with fake news, the UK's chair of Department of Digital, Damian Collins has said.
Summary:
The family of a wheelchair-bound woman who fell down an escalator at a US airport and died following a surgery has sued Alaska Airlines and a contractor.
Summary:
Scientists found cancer cells slow the overall protein synthesis to handle the backlog of misfolded proteins, thereby slowing the body clock.
Summary:
The police rescued 51 girls held hostage at the madarsa during the raid.
Summary:
The central zone task force team on Saturday arrested a 42-year-old woman for impersonating the Deputy Commissioner of Police (DCP) in Hyderabad.
Summary:
The local administration has plastered white paint on the 'mera parivar gareeb hai' (my family is poor) stamps painted on tribal homes in Madhya Pradesh's Shivpuri district.
Summary:
Pitching for the establishment of a body to regulate the functioning of private hospitals in India, BJP MP Meenakashi Lekhi on Friday said that private hospitals do their job like a business.
Summary:
This comes after US President Donald Trump accused China of transferring oil to North Korea.
Summary:
Syria last month declared a victory over the militant group after fighting it for three years.
Summary:
Guatemala's Foreign Minister Sandra Jovel has said that the country's plan to move its embassy in Israel to Jerusalem will not be reversed and called for the critics of the decision to respect the decision.
Summary:
Islamic State has claimed responsibility for the attack which killed at least 11 people in Egypt's Coptic Christian church on Friday, in the latest attack on Egypt's Christian minority.
Summary:
Former British PM John Major was urged to cancel the Soviet Union's vast debts in return for dismantling its nuclear weapons, declassified files have revealed.
Summary:
The US has announced that it will deny Pakistan a military aid amounting to $255 million (over â¹1,600 crore) as it expects it to take decisive action against terrorism, as per reports.
Summary:
A Shiv Sena MP assaulted an Air India staffer, following which the no-fly list was introduced.
Summary:
PM Narendra Modi launched the UDAN scheme to promote low-cost air-travel in India while several countries, including Qatar and Japan, announced easier visa norms for Indian travellers.
Summary:
The BJP has raised a breach of privilege motion against Congress President Rahul Gandhi in the Rajya Sabha after Rahul addressed Finance Minister Arun Jaitley as 'Mr Jaitlie' in a tweet.
Summary:
The St Thomas Central School in Kerala's Thiruvananthapuram has taken back the two students it expelled for hugging each other on campus.
Summary:
While two boys have returned, 22 other boys are yet to be traced.
Summary:
US President Donald Trump has warned there won't be any deal to protect the young undocumented immigrants known as 'Dreamers' without funding for US-Mexico border wall and end of visa lottery programme.
Summary:
Thong jeans by Japanese designer Meiko Ban made its debut at Tokyo Fashion Week in October this year.
Summary:
SEBI had fined Agarwal for telling the media he wanted to buy Amrutanjan Healthcare (AHL) without first discussing it with the board.
Summary:
Sensex closed at a record high of 34,056.83 points compared to last year's close at 26,626.46.
Summary:
Summary:
Actor Dharmendra took to social media to share a picture with Salman Khan and wrote, "You will always be a son to me." Salman had paid a surprise visit to Dharmendra's farm to meet him.
visit," added Dharmendra.
Summary:
Film producer Siddharth Roy Kapur has said that cinema-going habit is being discouraged in India owing to the imposition of GST on movie tickets.
Summary:
Pace bowler Chris Morris has been restored to South Africa's squad after recovering from a groin injury.
Summary:
The owner of a roadside restaurant in Bangkok that was awarded a Michelin star has said she may return the honour if it continues affecting her daily routine.
Summary:
The ruling AIADMK on Friday expelled 132 workers for bringing 'disrepute' to the party after it lost the RK Nagar bypolls to sidelined AIADMK leader TTV Dhinakaran.
Summary:
Based on mathematical models of the Sun's magnetic energy, UK-based researchers have predicted that temperatures would start dropping from 2021, sending Earth into a "mini ice age" by 2030.
Summary:
US-based researchers have used particles of light called photons to control the direction of electrical current in semiconductors without deploying an electric voltage.
Summary:
A Haryana woman has died allegedly after being denied treatment by a private hospital due to lack of the original copy of Aadhaar card.
Summary:
Two of the four earlier took to Twitter to seek the Minister's help.
Summary:
Government think-tank NITI Aayog is the slowest among 52 central ministries and departments in addressing public grievances, according to a Centralised Public Grievance Redress and Monitoring System report.
Summary:
The incident, which was captured on camera, took place when the bus was returning after dropping off passengers boarding a flight, airport officials said.
Summary:
The Mangaluru Police has issued a notice stating that 'obscene dances, including naked and semi-naked dances', will not be allowed at restaurants, clubs, and bars hosting New Year's parties.
Summary:
Police investigation revealed she had earlier married a 16-year-old and a 17-year-old, while disguised as a man.
Summary:
The World Baloch Organisation (WBO) has put up billboards carrying the slogan "#FreeBalochistan from human rights abuses by Pakistan" across the Times Square in US' New York City.
Summary:
Saudi Arabia has released two sons of late King Abdullah, two months after they were arrested in a corruption probe, according to reports.
Summary:
Vishal Sikka resigned as Infosys CEO in August which the board said was due to Co-founder Narayana Murthy's verbal attacks.
Summary:
The first list issued by the body had included Ram Rahim Singh and Asaram Bapu.
Summary:
Summary:
Rana claimed Sushil's supporters beat him, his supporters and his brother "for daring to take the ring" against him.
Summary:
This month, he began issuing daily recommendations about cryptocurrencies people should invest in but later said he would post them once a week.
Summary:
Cab-hailing startup Uber has raised $1.25 billion from Japan's SoftBank-led team of investors, according to reports.
Summary:
India is using the Afghan soil to hatch conspiracies against the China-Pakistan Economic Corridor (CPEC) project, Pakistan's Interior Minister Ahsan Iqbal has said.
Summary:
The Indian Space Research Organisation (ISRO) has announced that it will launch 31 satellites, including India's Cartosat-2 series Earth observation satellite, in a single mission onboard its Polar rocket on January 10.
Summary:
Women in Iran's capital Tehran will no longer be arrested for violating the Islamic dress code, Tehran's police chief Brigadier General Hossein Rahimi has said.
Summary:
Pakistan's military has warned the US against taking any 'unilateral action' against it.
Summary:
The government has said that the Indian economy slowed down in 2016-17, with the gross domestic product (GDP) declining drastically from 8% the previous year to 7.1%.
Summary:
Shares of Anil Ambani-led Reliance Communications (RCom) surged nearly 30% during intraday trade on Friday, after Mukesh Ambani's Reliance Jio said it will acquire RCom's wireless infrastructure assets.
Summary:
Citigroup will pay $11.5 million to resolve claims that a Citigroup brokerage unit showed wrong stock ratings on hundreds of stocks for about 5 years, according to US self-regulatory organisation FINRA.
Summary:
Indian spinner Harbhajan Singh took to Twitter to share a video of himself dancing with Bollywood actor Shah Rukh Khan at the wedding reception of Virat Kohli and Anushka Sharma in Mumbai.
#BadshahKhan," Harbhajan captioned the video.
Summary:
Talking about rape-accused Hollywood producer Harvey Weinstein, actress Kate Winslet said, "He was just so horrible to deal with...
Summary:
Summary:
Summary:
Pakistani all-rounder Mohammed Hafeez took to Twitter to share a picture of himself with current India U-19 coach Rahul Dravid on a flight to New Zealand.
Summary:
After qualifying for next year's Commonwealth Games, wrestler Sushil Kumar said that his guru Satpal Singh and yoga guru Baba Ramdev keep motivating him to play well.
Summary:
The government plans to connect all gram panchayats with high-speed broadband by March 2019.
Summary:
An Indian-origin teenager was shot dead on Thursday in a robbery attempt at a petrol pump in the US city of Chicago.
Summary:
The police apprehended him after he tried to barge into the woman's house days after the incident.
Summary:
Facebook said Kadyrov's accounts had been deactivated due to "legal obligations" arising from the new sanctions.
Summary:
China has rejected accusations that it helped North Korea evade United Nations' sanctions after US President Donald Trump claimed China allowed an oil transfer to North Korea.
Summary:
Credit rating agency Moody's has said that Mukesh Ambani-led Reliance Industries' credit rating won't be affected by the acquisition of Reliance Communications' wireless infrastructure assets for under â¹25,000 crore.
Summary:
Indian marksman Jitu Rai today won the men's 50m pistol national title with a new national finals record score of 233 at the 61st National Shooting Championship in Thiruvananthapuram on Friday.
Summary:
Over 150 artists have contributed their creations to government hospitals treating the victims of the 1984 Bhopal gas tragedy.
Summary:
Eight MLAs from Meghalaya, including five from the ruling Congress, resigned from the state Assembly on Friday to reportedly join the National People's Party, a BJP ally.
Summary:
A Yacht party was organised ahead of the Sunburn which saw Nucleya performing for the invitees including Vaani Kapoor, Sophie Chaudry and Shibani Dandekar.
"Been in loads of beach party, but this gotta be a craziest Yacht party!
Summary:
Two-time Olympic medalist Sushil Kumar qualified for the 2018 Commonwealth Games after defeating Jitender Kumar in the 74kg weight category on Friday.
Summary:
Google CEO Sundar Pichai has said that while everyone knows Shah Rukh Khan, people started to know him only after his interview with the actor in 2014 for the film 'Happy New Year'.
Summary:
The year 2017 saw various celebrities tying the knot, including actress Anushka Sharma, who married Indian cricket captain Virat Kohli.
India' actress Sagarika Ghatge married former cricketer Zaheer Khan.
Summary:
Sri Lanka cricket coach Chandika Hathurusingha has banned his players from listening to music during training.
Summary:
Delhi captain Rishabh Pant, aged 20 years and 86 days, became the youngest captain to lead a side in the Ranji final after taking the field against Vidarbha on Friday.
Summary:
Sidelined AIADMK leader TTV Dhinakaran on Friday took oath as an independent MLA in the Tamil Nadu Assembly after winning the bypolls from late CM Jayalalithaa's RK Nagar constituency.
Summary:
AIADMK's Rajya Sabha MP Navaneethakrishnan on Thursday demanded that the Parliament session be shifted to south India, claiming that pollution had made Delhi uninhabitable.
Summary:
Mumbai Police has booked three restaurant owners in connection with the fire at a building in Mumbai's Kamala Mills Compound which killed 14 people and injured around 16 others.
Summary:
The incident took place in Cairo's Helwan district and involved more than one attacker, reports claimed.
Summary:
A US woman was arrested after allegedly damaging an art collection worth $300,000 (nearly â¹2 crore) that belonged to a lawyer on their first date, police said.
Summary:
'Tiger Zinda Hai' director Ali Abbas Zafar has revealed that the film is a tribute to PM Narendra Modi and his 2014 hostage rescue operation to save the lives of 46 nurses held captive by ISIS.
Summary:
'Lae Dooba', the first song from the Sidharth Malhotra, Manoj Bajpayee and Rakul Preet starrer 'Aiyaary', has been released.
Summary:
They also have a four-year-old daughter, who is currently staying with Juhi.
Summary:
The statue was a backup sculpture made for the third instalment of the film.
Summary:
Actor Rajkummar Rao has said that the audience does not want to see crap anymore while adding, "I don't think mediocrity will survive." Rajkummar further said, "Manoj sir (Bajpayee) also tells me, 'Tu bahut lucky hai...
Summary:
Indian batsman Shikhar Dhawan took to Twitter to slam Emirates airline after his wife Aesha and their kids weren't able to join him in Cape Town due to the airline staff's "unprofessional" behaviour.
Summary:
Rohit Sharma has revealed Yuvraj Singh told him not to even look at his "sister" Ritika, who is now Rohit's wife, when the couple met for the first time during a shoot.
Summary:
US-based Cisco's Chairman Emeritus John Chambers has expressed interest in working with Indian drone startups.
Summary:
"Each city should have a limit on population.
She further added that authorities should introduce restrictions to control the population.
Summary:
As many as 30 fossilised dinosaur eggs dating back 130 million years have been found in the Chinese city of Ganzhou, state media reported.
Summary:
BJP MP Sushil Singh on Friday claimed that thousands of elderly people whose biometrics do not match their records anymore were facing trouble getting their pension.
Summary:
Currently, petrochemical products like jet fuel don't come under the ambit of the GST.
Summary:
Jagannath Gurjar, a 56-year-old sarpanch in Madhya Pradesh's Morena district, has been removed from his position for forging documents to marry a 12-year-old girl.
Summary:
The Defence Ministry has announced that it will organise an online quiz competition on Gallantry Awards from January 1-10.
Summary:
Russia on Thursday slammed the US over its plans to sell anti-missile systems to Japan, accusing it of violating an arms control treaty.
Summary:
It is Salman Khan's fifth film to earn over â¹200 crore.
Summary:
This comes after CPRL got a new logistics partner and started reopening closed restaurants.
Summary:
India also set a world record by preparing 918 kilograms of khichdi.
Summary:
There is a doll hospital in Lisbon, Portugal, which is believed to be the oldest surviving doll hospital that continues to operate from its original location.
Summary:
Cook's effort was the 52nd time a player achieved the feat in Test cricket.
Summary:
All the assets owned by China's technology group LeEco's Founder Jia Yueting have been seized by a Chinese court.
Summary:
The court ruled that letter 'J' isn't edible and therefore the 'bite' doesn't infringe on Apple's logo.
Summary:
US President Donald Trump's website is coded to take a jibe at former US President Barack Obama in the event of an internal server error, a Washington Post reporter has found.
The error message read, "Oops!
Summary:
Researchers at Nanyang Technological University, Singapore have developed a skin patch that uses micro-needles to deliver drugs which turn energy-storing white fat into energy-burning brown fat.
Summary:
The UK has achieved its greenest year ever in terms of electricity generation, breaking 13 clean energy records in 2017, National Grid figures revealed.
Summary:
Himachal Pradesh Congress MLA Asha Kumari slapped a female constable on Friday after an altercation outside the venue of a review meeting being conducted by Congress President Rahul Gandhi.
Summary:
Union Minister Hardeep Singh Puri has said that in the past, he had attempted negotiations with terrorists and he can now "accept the challenge" of brokering peace between Delhi CM Arvind Kejriwal and Lieutenant Governor Anil Baijal.
Summary:
During a discussion on fake advertisements in the Rajya Sabha, Vice President Venkaiah Naidu recalled an incident when he lost â¹1,000 after being fooled by a fake weight-loss advertisement.
Summary:
As false emergency calls can lead to criminal charges, the parent was advised to teach the girl a phone's proper use.
Summary:
The government on Wednesday said it would borrow an additional â¹50,000 crore during the current fiscal.
Summary:
Bakshi's statement came after McDonald's India alleged lapses in food quality and safety by "all facets of the supply chain".
Summary:
Actor Ajay Devgn took to social media to share the first look poster of his debut Marathi production 'Aapla Manus'.
Summary:
Swiss tennis player Roger Federer played beach tennis and cooked local cuisine in Western Australia ahead of the first Grand Slam of 2018, the Australian Open.
Summary:
Apple may face criminal charges in France over slowdown of older iPhones due to battery issues after French organisation HOP filed a lawsuit against the company this week.
Summary:
Tourism Ministry officials said India has a shortage of nearly two lakh hotel rooms and is struggling to manage a surge in tourist arrivals.
Summary:
A privately-owned plane crashed into the side of a building after it was blown from its parking space at Malta airport by strong winds on Wednesday.
Summary:
A white shark whose Twitter page had garnered nearly 1,30,000 followers over the last five years has gone missing, according to US-based tracking organisation Ocearch.
Summary:
The agency added that children in conflict-ridden regions were used as human shields, killed, and maimed.
Summary:
Myanmar has announced that the repatriation of the Rohingya Muslims will begin from January 22 next year.
Summary:
The US and Turkey on Thursday lifted all visa restrictions after a nearly three-month standoff.
Summary:
The German police on Thursday launched a search operation for four convicts who escaped from a local prison through a hole, measuring 30 cm by 120 cm, in a wall.
Summary:
Mukesh Ambani-led Reliance Industries' acquisition of Anil Ambani-led Reliance Communications' telecom infrastructure will bring synergies and lower costs for Reliance Industries, according to a report by brokerage firm Morgan Stanley India.
Summary:
"The VCs don't have any intrinsic value and are not backed by any kind of assets," the ministry said.
Summary:
Late actor Rajesh Khanna's debut film 'Aakhri Khat' was India's official entry to Oscars in 1967 in the Best Foreign Language Film category.
Khanna is known for starring in films like 'Aradhana', 'Anand' and 'Amar Prem'.
Summary:
Viswanathan Anand beat Russia's Vladimir Fedoseev in a three-way tie-break to win the World Rapid Chess Championship in Riyadh on Thursday.
Summary:
"After our internal investigation, we've found that this is a 3rd party issue," Xiaomi's Vice President and India Managing Director Manu Kumar Jain said.
Summary:
China has become the world's second country to construct a photovoltaic highway after France which introduced a road fitted with solar panels in 2016.
Summary:
Summary:
BJP-led municipal corporations are responsible for checking illegal constructions, Agrawal added.
Summary:
January 2018 would witness two supermoons, where a full Moon can appear up to 14% bigger as it comes relatively closer to Earth.
Summary:
US-based researchers are developing a skin patch for diabetics that painlessly delivers drugs to regulate blood sugar without the need for insulin injections.
Summary:
Minister of State for Human Resource Development Upendra Kushwaha on Thursday informed the Rajya Sabha that schools affiliated with the CBSE are not mandatorily required to prescribe NCERT textbooks to their students.
Summary:
An Uttar Pradesh woman who was given Triple Talaq for oversleeping was told to observe 'iddat' and 'halala' as the couple decided to remarry.
Summary:
The United Nations Security Council has denied international port access to four North Korean ships suspected of carrying or having transported goods banned by international sanctions targeting the reclusive nation.
Summary:
A DNA test will decide the rightful winner of a $920,000 (nearly â¹6 crore) lottery after a teacher in Thailand, Preecha Kraikruan, said he had lost the winning tickets, later claimed by a retired policeman, Charoon Wimon.
Summary:
Summary:
The Kashmiri chilli chicken filled samosa was declared the winner at a contest organised by a national newspaper for the Indian community in South Africa.
Summary:
The actress accessorised her look with rings, which are also from Gucci.
Summary:
Around 300 passengers were forced to spend the night at Stansted airport, UK, after bad weather caused several flights to be cancelled or delayed on Wednesday.
Summary:
A Zimbabwean family has been stranded at Bangkok airport for two months, after unsuccessfully trying to fly to Spain to seek political asylum.
Summary:
Scheduled to launch in mid-2020s, the 300-megapixel Wide Field Infrared Survey Telescope (WFIRST) would study how the universe expanded over time.
Summary:
At least six coaches of New Delhi-Varanasi Manduadih Express train derailed at New Delhi Railway station on Thursday night.
Summary:
Expressing condolence at the death of 14 people during a fire at Mumbai's Kamala Mills Compound, Prime Minister Narendra Modi on Friday tweeted, "My thoughts are with the bereaved families in this hour of grief." President Ram Nath Kovind tweeted, "Wishing the injured an early recovery.
Summary:
While welcoming the Triple Talaq bill, the Chairman of the Uttar Pradesh Shia Central Waqf Board on Friday called for 10 years of punishment for the offenders instead of the proposed three years.
Summary:
A State Bank of India (SBI) ATM was stolen by unidentified persons from Bijbehara town in Kashmir on Thursday night.
Summary:
External Affairs Minister Sushma Swaraj on Thursday said that former Indian Naval Officer Kulbhushan Jadhav's first question after seeing his mother was "Baba kaise hain (how is father?)".
Summary:
The government has withdrawn the monthly price hike of â¹4 on LPG cylinders as the hike was considered contrary to its Ujjwala scheme of providing free cooking gas connections to the poor.
Summary:
Australian PM Malcolm Turnbull has been fined $250 (over â¹15,000) for not wearing a life jacket while steering his inflatable boat on Sydney Harbour.
Summary:
US President Donald Trump on Thursday said that he believes the investigation into the alleged Russian interference in the US election "makes the country look very bad and puts the country in a very bad position".
Summary:
Apple on Thursday apologised to its customers for slowing down older versions of its iPhones with software updates.
Summary:
The fire in the rooftop restaurant claimed the lives of at least 14 people.
Summary:
Most of the victims killed in the accident were women attending the birthday party, according to the police.
Summary:
A UK-based Rubik's Cube enthusiast, Tony Fisher, has claimed to have developed a fully functional Rubik's Cube from ice.
"This is my Rubik's Cube made from 95% ice...
Summary:
Former Chelsea, Manchester City, PSG and AC Milan striker George Weah will be the next president of the West African nation of Liberia.
Summary:
US-based scientists have discovered a way to 'hack' contractile mesenchymal cells from mouse embryos to create self-folding living tissues.
Summary:
NASA has curated this year's best photographs clicked by astronauts aboard the International Space Station (ISS), which orbits the Earth 400 km away.
Summary:
NASA is reportedly planning to send a probe to the nearest star system Alpha Centauri to study a potentially habitable exoplanet Proxima b.
Summary:
Humans of Hindutva, a popular Facebook page that pokes fun at fanatical Hinduism, was taken down on Thursday after its anonymous creator was reportedly threatened by trolls.
Summary:
The World Bank on Thursday committed $40 million (over â¹256 crore) for the development of tourism facilities in the Indian state of Uttar Pradesh.
Summary:
The Embassy added that while it can safeguard the safety of Chinese citizens, it cannot shield crimes committed by them.
Summary:
Sidelined AIADMK leader TTV Dhinakaran on Thursday said his aunt VK Sasikala is on a vow of silence (maun vrat) since the death anniversary of late Tamil Nadu CM J Jayalalithaa on December 5.
Summary:
During the winter session, Law Minister Ravi Shankar Prasad on Thursday said of the 300 cases of instant Triple Talaq in 2017, 100 had taken place after the Supreme Court ban in August.
Summary:
Expressing his disappointment, US President Donald Trump on Thursday said that China has been "caught red handed" selling oil to North Korea.
Summary:
Pilot Jon Emerson announced the flight plan to passengers before introducing his girlfriend, Lauren Gibbs, who was a flight attendant on board.
Summary:
Angad Bedi, who played the antagonist in 'Pink', has said when a big actor refuses a film, another actor is born.
Summary:
Actor Akshay Kumar took to Instagram to share a picture with wife Twinkle Khanna on the occasion of her 43rd birthday today.
Happy birthday, Tina," he wrote alongside the photo.
Summary:
Dwayne Johnson starrer 'Jumanji: Welcome to the Jungle', which released today, has "well-timed humour combined with slapstick comedy," wrote Bollywood Hungama.
Summary:
Indian batsman Ajinkya Rahane said that the Indian team is lucky to have a player like MS Dhoni as his suggestions on the field are of great help to the players.
Summary:
Slamming the BJP-led government for not consulting all stakeholders before drafting the instant Triple Talaq bill, the Nationalist Congress Party has accused it of introducing the bill for gaining political mileage.
Summary:
Chinese Defence Spokesman Colonel Ren Guoqiang on Thursday said that India should "strictly control" its border defence troops and work towards developing a positive military-to-military relationship with China.
Summary:
Flight operations at the Delhi airport were suspended for 20 minutes on Thursday after a pilot of an airline spotted a drone-like object in the area.
Summary:
Denial of information due to lack of Aadhaar card is a serious breach of the Right to Information Act and amounts to harassment of the applicant, the Central Information Commission has said.
Summary:
A Class 9 boy accidentally hanged himself to death while trying to imitate a goddess from a television series in Uttar Pradesh's Lucknow, police said.
Summary:
A couple in Japan has been arrested after their 33-year-old daughter was found frozen to death in a room where they had locked her for at least 15 years.
Summary:
At least 68 civilians, including eight children, were killed in one day in the air strikes by the Saudi-led coalition in Yemen's civil war, United Nations' humanitarian coordinator Jamie McGoldrick has said.
Summary:
At least 14 people were killed and 14 others were injured in Mumbai after a fire broke out at a rooftop restaurant in the Kamala Mills Compound shortly after midnight, officials have said.
Summary:
The world's largest steelmaker ArcelorMittal's Chairman Lakshmi Mittal gained $5.13 billion this year.
Summary:
Late sitar maestro Pandit Ravi Shankar's family recently gifted one of his four sitars made in 1961 to the British Museum in London.
Summary:
Adelaide Strikers' batsman Jonathan Wells slammed a 104-metre six which landed on the roof of the Sydney Cricket Ground on Thursday.
Summary:
A spectator managed to catch a six in the stands without using his hands during the Big Bash League match between Sydney Sixers and Adelaide Strikers on Thursday.
Summary:
The Aam Aadmi Party has asked its supporters to donate â¹100 to show their support to CM Arvind Kejriwal, after he was not invited for the inauguration of Delhi Metro's Magenta line.
Summary:
The Congress on Thursday said it supports the Triple Talaq bill, but suggested it be strengthened in favour of Muslim women to ensure that subsistence allowance and maintenance to them is not stopped.
Summary:
Germany-based scientists led by Indian researcher Puneet Murthy, have found an exotic state of matter where the constituent particles called fermions pair up when limited to two dimensions.
Summary:
During a debate on the Triple Talaq bill in Lok Sabha, BJP MP Meenakshi Lekhi on Thursday said Muslim women must not be afraid of anyone as they have a brother in Prime Minister Narendra Modi.
Summary:
Divorce in Islam is of three types, including Talaq-e-biddat, or instant Triple Talaq, which the government is seeking to criminalise.
Instant Triple Talaq allows divorce by saying 'talaq' thrice in one sitting.
Summary:
Taiwan has had to scrap 2 lakh passports that mistakenly feature Washington's Dulles International Airport instead of Taipei's Taoyuan International Airport.
Summary:
While Germany which allowed same-sex partnerships since 2001 legalised gay marriage in June, Malta became European Union's 15th member to legalise same-sex unions in July.
Summary:
The CEOs of these US companies earned 265 times more than the average worker there.
Summary:
Singer Mika Singh has said he dedicates his success in Bollywood to actor Akshay Kumar.
Summary:
Rohit further said a good commercial film will always work.
Summary:
Gautam Gambhir has said "the hurt" caused by the controversies surrounding the DDCA motivated the Delhi team to reach the final of the ongoing Ranji Trophy.
Summary:
Indian all-rounder Yuvraj Singh trolled former Pakistani pacer Shoaib Akhtar, after the latter shared a picture of a motivational quote, wherein he can be seen wearing glasses and holding a helmet.
Summary:
Mirza attended a dinner hosted by veteran all-rounder Mohammad Hafeez and met members of the Pakistan cricket team before they departed for New Zealand.
Summary:
Haryana shooter Anisa Sayyed won the women's 25m pistol gold with a new finals national record at the 61st National Shooting Championship Competitions on Wednesday.
Summary:
The ruling AIADMK on Thursday expelled 44 members for allegedly supporting sidelined AIADMK leader TTV Dhinakaran, after it lost the RK Nagar bypoll.
Summary:
Summary:
Goa CM Manohar Parrikar on Thursday said the state's interests have not been compromised after his letter to Karnataka BJP on the Mahadayi river dispute, adding that it was within the legal framework.
Summary:
The Army is reportedly planning to use camels to patrol the Line of Actual Control in Ladakh.
Summary:
On New Year's Eve, restaurants, pubs, and bars in Bengaluru will be open till 2 am, which is one hour beyond the permissible time for nightlife.
Summary:
Former Zimbabwean President Robert Mugabe will get a fully-furnished residence, a fleet of three cars, and 20 staffers as part of a government-funded retirement package.
Summary:
It also said that there had been a ban on direct recruitment in Air India for non-operational categories of employees.
Summary:
Ratan Tata, who turns 80 today, rejected a job offer from IBM to work at Tata Steel, handling blast furnace in 1961.
Summary:
The Lok Sabha on Thursday passed the Muslim Women (Protection of Rights on Marriage) Bill 2017, which criminalises instant Triple Talaq.
Summary:
Mukesh Ambani's Reliance Jio has signed a binding definitive agreement with brother Anil Ambani-led Reliance Communications for purchase of its wireless infrastructure assets.
Summary:
The CEOs of top listed companies in India earn an average of $1.46 million annually, which is 229 times more than the average worker here, according to Bloomberg.
Summary:
Endorsing External Affairs Minister Sushma Swaraj's stand that Kulbhushan Jadhav's mother and wife were insulted on their Pakistan visit, Congress on Thursday said it stands united with the government on this issue.
Summary:
Reliance Industries Founder Dhirubhai Ambani, born on December 28, 1932, used to sell 'bhajias' to pilgrims in Gujarat at the age of 15.
Summary:
Anand won the match in 34 moves, remaining unbeaten in the competition with five wins and four draws from nine encounters.
Summary:
Facebook also said that the prompt to use names as per Aadhaar Cards was part of a test intended for new users.
Summary:
Apple CEO Tim Cook, who earned a total payout of $102 million in FY17, will have to use private aircraft for all business and personal purposes, according to Apple's shareholder proxy statement.
Summary:
Apple's average profit per handset was $151 (â¹9,700) in the July-September quarter, five times more than its closest rival Samsung, according to research firm Counterpoint.
Summary:
Talking about the investors he likes, Sharma said, "Alibaba is like the people who know this world.
Summary:
While tabling a bill seeking to criminalise instant Triple Talaq, Law Minister Ravi Shankar Prasad on Thursday said the government was not interfering in Shariat, the Islamic religious law.
Summary:
External Affairs Minister Sushma Swaraj on Thursday said that Pakistan had used Kulbhushan Jadhav's "emotional" meeting with his wife and mother in Islamabad as a propaganda exercise.
Summary:
At a meeting of BJP parliamentarians, PM Narendra Modi on Thursday rebuked the party MPs for ignoring his text messages, a report quoting party sources has claimed.
Summary:
Addressing the Lok Sabha, Power Minister RK Singh on Thursday said that all Indian households will receive 24-hour power supply by March 2019.
Summary:
A giant dog statue resembling US President Donald Trump has been placed outside a shopping mall in China to mark the Chinese year of the dog.
Summary:
Actor Sajjad Delafrooz, who played the antagonist in 'Tiger Zinda Hai', has said the scene in which he had to torture Salman Khan and Katrina Kaif was painful.
Summary:
Actor Rajinikanth, while speaking about fans who seek his blessings by touching his feet, said, "Do not fall at my feet.
Summary:
Actress Richa Chadha's look from her upcoming film 'Daasdev' has been unveiled.
Summary:
Formula One champion Lewis Hamilton has apologised for posting a video online wherein he can be heard yelling at his nephew for wearing a dress.
Summary:
Former cricketer Sachin Tendulkar attended the wedding ceremony of cricketer Krunal Pandya and his girlfriend Pankhuri Sharma on Wednesday.
Summary:
Facebook is allowing gambling-style apps on its platform without verifying the user's age, according to reports.
Summary:
All India Majlis-E-Ittehadul Muslimeen President Asaduddin Owaisi issued a notice in the Lok Sabha opposing the introduction of Triple Talaq bill, calling it "violation of fundamental rights".
Summary:
Researchers demonstrated the responses in Potentilla reptans plant, subjected to several competing scenarios.
Summary:
A 52-year-old traffic constable has been booked for allegedly sexually assaulting a 14-year-old boy in Ghaziabad in a drunken state on Tuesday.
Summary:
Jailed leader VK Sasikala's niece Krishnapriya, two government doctors, and Jayalalithaa's assistant S Poongundran have also been summoned.
Summary:
The government will provide â¹437 crore subsidy to 11 cities for launching electric buses, taxis and three-wheelers, Ministry of Heavy Industries and Public Enterprises has announced.
Summary:
Shkreli, who once raised a drug's price by over 5,000%, was convicted in August of defrauding investors.
Summary:
Law Minister Ravi Shankar Prasad on Thursday introduced a bill to criminalise instant Triple Talaq, in the Lok Sabha.
Summary:
Cook, who has now scored 11,956 Test runs, overtook Sri Lanka's Mahela Jayawardene (11,814), Windies' Shivnarine Chanderpaul (11,867) and Brian Lara (11,953).
Summary:
India senior team captain Virat Kohli met the India Under-19 team on Wednesday, ahead of the junior team's departure for the U-19 World Cup, scheduled to start on January 13 in New Zealand.
Summary:
The Lisa operating system designed for the Apple Lisa computer, which was named after Steve Jobs' oldest daughter, will be made available for free from 2018 by US-based Computer History Museum.
Summary:
For the first time, scientists have recorded two connected ocean whirlpools, called eddies, spiralling in opposite directions off the Australian coast.
Summary:
Summary:
Union Minister Anantkumar Hegde on Thursday apologised in the Parliament for his remark on the Constitution.
Summary:
Bajrang Dal in Karnataka's Dakshina Kannada district has submitted a petition to Mangaluru Police, calling for a ban on alcohol and "explicit dancing" in restaurants and bars on New Year's Eve, saying they tarnish women's reputation.
Summary:
The Assam government has altered the office timings for its staff from 10 am to 5 pm to 9.30 am to 5 pm.
Summary:
The Islamic State militant group has claimed responsibility for an attack in Kabul, Afghanistan which killed at least 40 people and injured 30 others on Thursday.
Summary:
Iranian Supreme Leader Ayatollah Ali Khamenei on Wednesday said that US President Donald Trump will fail in his stance towards Iran like former US President Ronald Reagan.
Summary:
Markets regulator SEBI has imposed a penalty of â¹8 lakh on Emami Chairman RS Agarwal in a case related to Amrutanjan Healthcare (AHL).
Summary:
CPRL, the north and east India licensee of McDonald's, has partnered with a new logistics firm and has started reopening about 84 closed restaurants.
Summary:
'Kaala Doreya', the recreated version of Punjabi folk song 'Kala Doria', from Saif Ali Khan starrer 'Kaalakaandi' has been released.
Summary:
Officials in the Indonesian island Bali had to declare a "garbage emergency" across a six-kilometre stretch of coast after its beaches have been overflowing with waste.
Summary:
Premier League-leaders Manchester City defeated Newcastle United 1-0 on Wednesday to register their record 18th consecutive win in the league.
Summary:
Netflix is partnering with Facebook-owned messaging platform WhatsApp in India to communicate with users for content recommendations, according to reports.
Summary:
United Airlines has apologised and given a $500 (â¹32,000) travel voucher to passenger Jean-Marie Simon who accused the airline of giving her first-class seat to US Representative Sheila Jackson Lee. The airline said Simon had cancelled her flight and released her seat to the next person on the airline's upgrade list.
Summary:
Courts in Sri Lanka's Jaffna and Vavuniya have ordered the release of 69 Indian fishermen lodged in Sri Lankan prisons.
Summary:
The violations include burning of leaves or plastic in the open, dust pollution due to construction, among others.
Summary:
After former Pakistan PM Benazir Bhutto's son Bilawal Bhutto accused Pervez Musharraf of murdering his mother, the former President asked Bilawal to stop resorting to sloganeering and be a man enough.
Bilawal claimed that Musharraf sabotaged his mother's security to assassinate her.
Summary:
Zimbabwe's President Emmerson Mnangagwa on Thursday appointed the country's ex-Army chief Constantino Chiwenga as one of his two Vice Presidents.
Summary:
Cellular operators' body COAI's Director General Rajan Mathews has said, "The (telecom) industry cannot afford to bid for any more spectrum before the latter part of 2018 or early 2019." He said telecom sector needs some time to settle before being able to spend on spectrum at another auction.
Summary:
Axis Bank said it would work with SEBI to investigate the matter and take action as needed.
Summary:
A JetBlue flight from Georgia, US, landing at Boston airport on Monday, spun 180ð and skidded off the taxiway before coming to a stop facing the other direction, airline officials said.
Summary:
Earlier in June, he had announced plans to launch a â¹100-crore fund to promote the state's startup culture.
Summary:
Bengaluru-based online grocer BigBasket has posted a 107% year-on-year jump in revenue to â¹1,090 crore for FY17, while its losses increased to â¹191 crore from â¹103 crore.
Summary:
The interceptor, positioned at Abdul Kalam Island in the Bay of Bengal, destroyed the target at a 30-kilometre altitude.
Summary:
External Affairs Minister Sushma Swaraj, while addressing the Rajya Sabha on Thursday, said Kulbhushan Jadhav's mother and wife were made to look like widows in Pakistan during their meeting.
Summary:
Apple CEO Tim Cook earned about $102 million (â¹654 crore) in fiscal 2017 after receiving a 74% increase in his annual bonus.
Summary:
Among the notable sequels of Indian films that released this year were 'Baahubali 2: The Conclusion' and 'Tiger Zinda Hai', a sequel to the 2012 film 'Ek Tha Tiger'.
Summary:
The residents of the Israeli city of Tel Aviv have built a 36-metre-tall Lego tower, which is believed to be the world's tallest plastic brick tower.
According to Guinness World Records, the previous record was set in 2015 for a 35.05-metre-tall Lego tower.
Summary:
The government of Guangzhou city in China will allow citizens to verify their identities through Tencent-owned social media app WeChat using facial recognition technology.
Summary:
The BJP has removed its Ghaziabad district chief Ajay Sharma after he staged a protest outside the wedding reception of an interfaith couple, claiming that the marriage was a case of love jihad.
Summary:
Congress President Rahul Gandhi on Wednesday tweeted, "Dear Mr Jaitlie - thank you for reminding India that our PM never means what he says or says what he means.
Summary:
Japanese scientists have developed a nanowire device that can detect microscopic levels of cancer markers in the urine, which could help non-invasively diagnose the disease.
Summary:
Russian space agency Roscosmos had lost contact with the weather satellite launched on November 28, as the rocket carrying the satellites had been programmed with the wrong coordinates, Deputy PM Dmitry Rogozin revealed on Wednesday.
Summary:
The National Human Rights Commission (NHRC) on Wednesday issued a notice to the Uttar Pradesh government over the 32 eye surgeries conducted under torchlight at a health centre in Unnao recently.
Summary:
Disqualified AIADMK MLA Vetrivel has sought anticipatory bail from the Madras High Court after a police case was registered against him for releasing a video showing late Tamil Nadu CM Jayalalithaa admitted to a hospital.
Summary:
The error led to 31 out of 52 accidents in 2017-18 (till December 15), while 64 out of 104 accidents occurred due to this reason in 2016-17.
Summary:
At least 39 people were killed in an attack on a Shia mosque in Kabul in October.n
Summary:
A kitten born in Eastern Cape, South Africa, is going viral on social media for having two faces.
Summary:
A video that has emerged online shows a 10-metre-tall frozen waterfall that spreads over an abandoned building in China.
Summary:
A California couple were charged on Tuesday for allegedly using a drone to deliver drugs to customers, US police said.
the drone used for the delivery of the illegal narcotics," Riverside Police Department wrote on Facebook after arresting the couple.
Summary:
David Dhawan, while responding to reports that he's planning to remake the 1999 film 'Biwi No 1', said, "We haven't thought about remaking it as of yet." "We may surprise everyone by doing an entirely original film this time," he added.
Summary:
He had suffered a head injury during the accident.
Summary:
The company said the authorities are investigating the matter and declined to disclose any details.
Summary:
Dubai's Burj Khalifa, the world's tallest building, will replace its fireworks with a laser light show this New Year's Eve, officials have announced.
Summary:
It is Congress' duty to defend the Constitution and the right of every citizen and every single person, he added.
Summary:
In order to deal with the rush on December 31, Namma Metro will charge flat â¹50 at three stations post its regular operating hours of 11 pm, Bengaluru Metro officials said.
Summary:
The Vishva Hindu Parishad (VHP) on Wednesday said it will identify 500 upper-caste families in every district that will make socially backward, poverty-stricken families as their "friends".
Summary:
The US-led international coalition fighting ISIS has said that now fewer than 1,000 fighters of the terrorist group remain in Iraq and Syria in its area of operations.
Summary:
Taiwan will slowly get used to our Air Force drills that encircle the island, China said on Wednesday.
Summary:
Delhi-based job and career community for women Sheroes has acquired child healthcare startup Babygogo for an undisclosed amount, the company said.
Summary:
Ashish Nehra, whose 6/23 are the best bowling figures for India in World Cup history, called time on his 20-year-long professional career in November.
Summary:
The Supreme Court in August declared Right to Privacy a Fundamental Right, which may likely impact Aadhaar's constitutional validity.
Summary:
The case was lodged against them for holding a meeting in violation of prohibitory orders in Gorakhpur.
Summary:
Former US President Barack Obama has been named the most admired man in the country for the 10th year in a row, securing 17% votes in a poll conducted by Gallup.
Summary:
Union Minister for Electronics and IT Ravi Shankar Prasad has said that nearly 71.24 crore mobile numbers, both new connections and existing, have been linked with Aadhaar till December 8.
Summary:
The government has exempted children up to the age of five years from giving their biometrics to the passport issuing authority, MoS for External Affairs Retd General VK Singh informed the Lok Sabha on Wednesday.
Summary:
Over 16,000 posts are vacant in the Navy and the Air Force faces a shortage of 15,503 personnel.
Summary:
While addressing an Indian Economic Association conference, President Ram Nath Kovind on Wednesday stopped midway when he saw that volunteers were distributing food packets among the delegates during his speech.
Summary:
During an interview, Barack Obama has said it's hugely liberating to no longer be the US President as the job entailed a wide range of responsibilities and a constantly full inbox.
Summary:
Former al-Qaeda chief and 9/11 mastermind Osama bin Laden had issued orders to assassinate Pakistan's ex-PM Benazir Bhutto and then-President Pervez Musharraf, according to a report which cites Pakistan's Inter-Services Intelligence (ISI).
Summary:
Actor Amitabh Bachchan on Tuesday tweeted that the first time his father, veteran poet late Harivansh Rai Bachchan, had an emotional breakdown in front of him was when he returned home after the 'Coolie' accident.
Summary:
The leading actor in the film is yet to be finalised.
Summary:
Actress Taapsee Pannu has said she firmly believes that awards aren't really the perfect judgement of one's talent.
Taapsee further said.
Summary:
Marquis Teague and Trahson Burrell were forced off the plane after a flight attendant accused them of taking blankets from first-class.
Summary:
Fans will be able to interact with her through the app and will also get access to exclusive content from the shuttler.
Summary:
The Lok Sabha on Wednesday passed a bill proposing to protect unauthorised slums and colonies in Delhi from disciplinary action for three more years.
Summary:
The girls' parents later approached the police, following which the man was taken into custody.
Summary:
The duo killed the woman at midnight and told the neighbours the next day that her mother died due to some ailment.
Summary:
Satpute, who stayed alone in a flat, suffered from severe diabetes, police officials said.
Summary:
Operatives of Pakistan's espionage agency ISI are using moral and financial support to revive pro-Khalistan elements for anti-India activities, Minister of State for Home Affairs Hansraj Ahir said in the Lok Sabha on Wednesday.
Summary:
Two policemen were suspended on Wednesday after a preliminary investigation, following a security lapse in the movement of PM Narendra Modi's motorcade during his recent Noida visit.
Summary:
The Uttar Pradesh government has allocated â¹7.86 crore for conducting a census of cows, buffaloes, pigs, goats, and sheep in the state.
Summary:
A software programmer employed with the CBI has been arrested for developing and selling a software for booking railway tickets by duping the Tatkal ticket booking system, which is operated by the IRCTC.
Summary:
China has announced that the country's paramilitary police force, which serves as a backup for the military in times of war and maintains domestic security, will be fully controlled by the ruling Communist Party's armed forces from January 1, 2018.
Summary:
The man said that "he did not know what to do as he was in a rush to get to work".
Summary:
American singer Joy Villa has filed a police complaint against US President Donald Trump's ex-campaign manager Corey Lewandowski, accusing him of sexually harassing her during a party in November.
Summary:
The government on Wednesday cut the interest rate on small savings schemes, such as Public Provident Fund (PPF) and National Savings Certificate (NSC), by 0.2 percentage points for the January-March quarter.
Summary:
As many as 17 states have agreed to reconsider their policy of inflating Class 12 marks, following the Centre's appeal that it leads to unrealistic cut-offs in universities.
Summary:
Bilawal Bhutto, son of former Pakistan PM Benazir Bhutto, held former President Pervez Musharraf responsible for his mother's death on her 10th death anniversary on Wednesday.
Summary:
Grammy-award winning singer Lorde has cancelled a scheduled concert in Israel amid calls from activists for her to boycott Israel as a protest against its treatment of Palestinians.
Summary:
Ahead of India's tour of South Africa, newly married India captain Virat Kohli has said cricket is in his blood and it is not difficult for him to switch back to it post wedding.
Summary:
South Africa defeated Zimbabwe by an innings and 120 runs after picking up 16 wickets on the second day of the first-ever four-day day-night Test at Port Elizabeth on Wednesday.
Summary:
Defender Jitendra Singh, aged 16 years, six months and 13 days, became the youngest goalscorer in I-League history after scoring for Indian Arrows against Shillong Lajong on Tuesday.
Summary:
The United States alone had over 46,000 Indians who became naturalised citizens.
Summary:
Speaking at an event of the state power department, Bihar CM Nitish Kumar has said he faced power cuts at his residence despite being the Chief Minister of the state.
Summary:
Nepal will, however, seek help from India and China for getting crucial data for the exercise, the Director General of Nepal's Survey Department said.
Summary:
Detailed guidelines regarding the minimum attendance required to be maintained by students will be issued soon.
Summary:
MoS for Parliamentary Affairs Vijay Goel on Wednesday informed the Rajya Sabha that the government didn't agree with Union Minister Ananthkumar Hegde's remark that the government would amend the Constitution to remove the word 'secular' from the Preamble.
Summary:
Sadhvi Pragya Singh Thakur and Lieutenant Colonel Shrikant Purohit, accused in the 2008 Malegaon blast case, will now be tried for conspiracy to commit terror.
Summary:
Bharatiya Janata Party's Suresh Bhardwaj on Wednesday took oath as a minister in the Himachal Pradesh Cabinet in Sanskrit, while all the other ministers were heard taking the oath in Hindi.
Summary:
In the year 2017, the US imposed a travel ban on citizens of six Muslim-majority countries, along with North Korea and Venezuela.
Summary:
US President Donald Trump's proposed wall along the country's border with Mexico is still in its evaluation phase, with eight prototypes being tested in a desert outside San Diego.
Summary:
The year 2017 saw Dove removing a 'racist' Facebook ad in October, which showed a black woman turning white.
Summary:
Former Infosys CFO Mohandas Pai has alleged that big Indian IT companies have formed a cartel to keep salary of entry-level engineers low.
Summary:
Summary:
Former India captain MS Dhoni attended Bollywood actor Salman Khan's birthday party with his wife Sakshi, hours after gracing India captain Virat Kohli and actress Anushka Sharma's wedding reception in Mumbai.
Summary:
A Chinese murder suspect, who pretended to be mute for 12 years in an attempt to conceal his identity, ended up losing the power of speech for real.
Summary:
India captain Virat Kohli has said that he will be meeting the New Zealand-bound India Under-19 team, ahead of the U-19 World Cup as their coach Rahul Dravid has asked him to.
Summary:
Prime Minister Narendra Modi, who was in Shimla for the swearing-in of new Himachal Pradesh Chief Minister Jai Ram Thakur, stopped by the Indian Coffee House at the Mall Road for some coffee.
Summary:
The Delhi government has slammed Lieutenant Governor Anil Baijal for rejecting its proposal to make public services available at citizens' doorsteps.
Summary:
The man is accused of cheating people of over â¹1 crore by promising them admission or police transfers.
Summary:
The accused reportedly brought the victims from Maharashtra for teaching them the Bhagavad Gita but started sexually exploiting and beating them after a few months.
Summary:
Russian President Vladimir Putin has urged wealthy Russians to repatriate some of their overseas assets, estimated to be over $1 trillion, amid additional sanctions imposed by the US.
Summary:
A US woman is believed to be the world's oldest flight attendant, having recently celebrated 60 years of service at the age of 81.
Summary:
The biggest controversies in Hollywood in 2017 included sexual harassment allegations against top producers and actors including several accusations against producer Harvey Weinstein.
Summary:
A 6-member panel, which includes former royals and historians, has been set up to review Sanjay Leela Bhansali's film 'Padmavati'.
Summary:
English umpire David Shepherd would hop and skip on the cricket field every time the scoreboard read 111, 222, 333 and so on.
Summary:
Indian Arrows' Nongdamba Naorem pulled off a solo goal, going past five defenders in eight seconds before successfully netting against Shillong Lajong in the I-League on Tuesday.
Summary:
Facebook is testing a feature for users in India to enter their names as per their Aadhaar Cards while signing up.
Summary:
Congress has called the government's policy to secure former Navy officer Kulbhushan Jadhav's release from Pakistan "inconsistent" and "flip-flop", adding that it will go against an early release.
Summary:
Finance Minister Arun Jaitley in the Rajya Sabha said PM Narendra Modi didn't question, nor meant to question "the commitment to this nation of either former PM Manmohan Singh or former Vice President Hamid Ansari".
Summary:
Elon Musk-led Tesla's lithium-ion battery system in Australia responded to a power cut in just 140 milliseconds.
Summary:
These states accounted for 69% of all arrests as well.
Summary:
The Kerala prisons department has made it mandatory for prisoners in the state to enrol for Aadhaar.
Summary:
Union Minister Kiren Rijiju on Wednesday slammed the Pakistani media for being "irresponsible" and heckling the mother and wife of Kulbhushan Jadhav, who visited the latter in Pakistan earlier this week.
Summary:
Singer Rihanna has called for an end to gun violence in a social media post after the death of her cousin.
never thought that would be the last time," Rihanna wrote on Instagram.
Summary:
Katz said he decided to honour the US President following his decision to recognise Jerusalem as Israel's capital.
Summary:
Murari Lal Meena, a special assistant posted in Rajasthan, has been booked for alleged cheating and forgery.
Summary:
Fashion designer Sabyasachi Mukherjee has apologised for wrongly taking credit for styling Indian cricket team captain Virat Kohli at his wedding reception in Mumbai.
Summary:
Cricketer Suresh Raina wished actor Salman Khan on the occasion of his 52nd birthday today and wrote, "Words fail to describe him but emotion is something that connects with him." "Looking back at my time in Bollywood, no one stands out as much as you!" tweeted Sonam Kapoor.
Summary:
Summary:
Ukrainian double world chess champion Anna Muzychuk is not participating in this week's world championship being held in Saudi Arabia over women's rights.
Summary:
Following India captain Virat Kohli and actress Anushka Sharma's wedding reception in Mumbai on Tuesday, India all-rounder Yuvraj Singh took to Twitter to share a picture of himself with the actress and called her 'Rosie phabie'.
Summary:
Congress leader Shehzad Poonawalla has announced plans to author a book on the power structure followed by the Congress and his "fight against the dynastic order".
Summary:
Following this, Congress' state unit wrote to the Speaker, requesting cancellation of Nath's membership to the assembly.
Summary:
However, there will be no hike in tariff for those who use up to 20,000 litres per month.
Summary:
In an apparent dig at his successor Donald Trump, former US President Barack Obama said that using social media in a harmful way can lead to the "Balkanisation of society".
Summary:
A FEMEN activist staged a similar protest in 2014 and managed to take the baby Jesus figure before she was arrested.
Summary:
Union Minister of State for Railways Rajen Gohain has said that the Indian Railways does not have any proposal to increase fares.
Summary:
BSE CEO Ashish Chauhan has said Sensex's record high is because the steps by the Indian government have been phenomenal over last few years.
Summary:
As of Tuesday, the 500 billionaires on the Bloomberg Billionaires Index controlled $5.3 trillion, up from $4.4 trillion last year.
Summary:
The second spot was occupied by Dwayne Johnson, with $1.5 billion receipts.
Summary:
A woman in Pennsylvania, US, recently checked her electricity bill for the month of November and found out that she was charged over $284 billion.
Summary:
The August 21 total solar eclipse that spanned across the entire US created never-before-seen bow waves in the Earth's atmosphere, similar to those made by a fast-moving river boat, MIT researchers have found.
Summary:
Afghanistan has exported 10,640 tonnes of goods worth over $20 million to India via the first air corridor which was launched in June this year to link Kabul and New Delhi.
Summary:
Civil Aviation Ministry has informed the Parliament that national carrier Air India and private carrier Jet Airways received the maximum number of passenger complaints in 3 years.
Summary:
On their wedding day, a Pune-based doctor couple raised awareness about organ donation by pledging to donate their organs and encouraging the guests to fill out consent forms for the same.
Summary:
The Punjab and Haryana High Court on Tuesday granted bail to two men accused of cutting 200 plants of Musket, a medicinal plant, on condition that they will plant 300 saplings.
Summary:
The police had launched an appeal on Facebook to find "Miss Betty Miller", to whom the note was addressed.
Summary:
Reliance Communications Chairman Anil Ambani has said that one needs "a pipeline into the RBI's printing press" to be in the wireless business.
Summary:
Amul has reportedly filed a case in Gujarat High Court against India's five trademark registry offices for allowing other companies to use its brand name.
Summary:
A Mumbai sessions court has given relief to the ousted Tata Sons Chairman Cyrus Mistry and his family's investment firms in a â¹500 crore defamation complaint filed by Tata Trusts' R Venkataramanan.
Summary:
Actress Anushka Sharma has been named Person of the Year by animal rights organisation People for the Ethical Treatment of Animals (PETA).
Summary:
Differently-abled Sri Lankan cricket fan Gayan Senanayake attended the wedding reception of Indian cricket team captain Virat Kohli and actress Anushka Sharma in Mumbai on Tuesday.
Summary:
Reacting to Jackman commentating, a user wrote, "Is there anything he can't do?"
Summary:
South Korean prosecutors have demanded a 12-year jail term for Samsung heir Jay Y Lee for his conviction on bribery charges.
Summary:
Users will be able to get the repair status just by entering details like order number or contact number.
Summary:
A team of college students from the US has developed a browser extension called 'Open Mind' that alerts users of fake and biased news stories.
Summary:
"Instances have occurred in the past when this period has been chosen by terrorists," the BCAS alert stated.
Summary:
A Thiruvananthapuram-bound IndiGo flight from the Delhi airport was cancelled after the plane suffered a fuel leak while waiting to take off on Wednesday.
Summary:
Summary:
"If Pakistan considers Kulbhushan Jadhav as a terrorist, then that is how it has treated him," Agrawal added.
Summary:
Virtual reality (VR)-based home decor startup Foyr has raised $3.8 million in Series A funding round led by property consultancy JLL and other individual investors.
Summary:
The victim's father has claimed that the driver offered to take the girl back home when she wasn't feeling well and molested her in an isolated place.
Summary:
Rejecting around 40 petitions against regulation of private school fee, the Gujarat High Court on Wednesday upheld the Gujarat Self Financed Schools (Regulation of Fees) Act. It aims to regulate the 'exorbitant fee' charged by private schools.
Summary:
Other than Aditya, the police said three others are absconding and a reward of â¹50,000 has been attached to them.
Summary:
Australian police found a one-metre-long crocodile walking on the streets in Victoria's Melbourne on Christmas Day. The crocodile reportedly attempted to run off into the bushes but was caught by its tail and is now in the care of state wildlife authorities.
Summary:
While talking about struggles in her career, Priyanka Chopra revealed, "I have been thrown out of films because...a girlfriend was recommended...girlfriend of the hero or the director." "I couldn't do anything...because I didn't cater to the whims and fancies of powerful men," she said.
Summary:
Macfarlane never knew his father while Robinson was adopted, and the two were looking for their biological families.
Summary:
In a first, a disorder characterised by uncontrolled video-gaming behaviour would be officially recognised as a mental health condition by the World Health Organisation in 2018.
Summary:
Slamming Pakistan over its treatment towards former Indian Navy officer Kulbhushan Jadhav's family, BJP MP Subramanian Swamy on Tuesday said that India should wage war against the nation and split it into four pieces.
Summary:
Researchers have studied about 3000 pulsars in the Milky Way and found only five pulsar planets so far.
Summary:
Using GPS trackers and on-board videos, Oxford University researchers have studied how falcons intercepted dummy drone targets.
Summary:
Intelligence agencies have issued warnings to Tihar jail authorities in Delhi that underworld don Dawood Ibrahim is plotting to kill Chhota Rajan.
Summary:
Quoting Pakistan Foreign Office spokesperson, Pakistan media has reported that shoes of former Indian Navy officer Kulbhushan Jadhav's wife weren't returned as they suspected presence of a suspicious object in them.
Summary:
The Aadhaar cards of around 80% residents of five villages in Madhya Pradesh's Neemuch district cite their date of birth as January 1, Palsoda village head has said.
Summary:
Raj Kumar Vaishya, who is 98 years old, on Tuesday received his master's degree in Economics from Patna's Nalanda Open University.
Summary:
Saudi Arabia has reportedly released 23 of the 200 princes and senior officials, who were arrested in November on corruption charges, after they reached deals with the government.
Summary:
In the note, he accused the EMI record label of blocking distribution of his 1968 album 'Unfinished Music No 1: Two Virgins' because he appeared nude on its cover.
Summary:
Ambani said this after announcing RCom's debt resolution plan which included sale of its wireless assets.
Summary:
Priyanka Chopra, while referring to reports that she was paid â¹5 crore for a 5-minute performance at an award show, questioned why male actors are not asked about the number of zeroes on their pay cheques.
Summary:
Twitter users have slammed the Los Angeles Times for featuring only white actresses on the cover of its magazine 'The Envelope'.
"White actresses [should] speak up when their Women of Colour colleagues are ignored," read another comment.
Summary:
Google's photo sharing and storage service Google Photos is rolling out video collages called "Smiles of 2017" that displays smiling pictures of the users with a background song.
Summary:
"We must reward the personnel, who are going beyond their duties to prevent crimes at the airport," a senior CISF official said.
Summary:
Cab-hailing startup Uber has reportedly agreed to sell its $400-million US auto-leasing business Xchange Leasing to a California-based startup Fair, which was founded in 2016.
Summary:
An international study has discovered how male peacock spiders showcase a rainbow signal to attract female counterparts.
Summary:
A 21-year-old man has surrendered before the Himachal Pradesh Police admitting he made a hoax bomb call to a Mandi bus terminal last week for the Blue Whale Challenge, a police officer said.
Summary:
CS Rangarajan, the chief priest of Telangana's Chilkur Balaji temple, has said he will make devotees do sit-ups if they wish him a happy New Year on January 1.
Summary:
The government collects 0.5% Swachh Bharat Cess on all services to fund cleanliness and sanitation schemes across the country.
Summary:
With no proper garbage disposal in place, garbage has been dumped at the Meethotamulla garbage mountain for years.
Summary:
Bhutto was the first woman to become the Prime Minister of a Muslim-majority nation after her election in 1988.
Summary:
A blast by armed men at a Libyan crude oil pipeline on Tuesday has reduced the North African country's crude oil output by up to 1 lakh barrels per day, Libya's national oil company has said.
Summary:
Israel is in contact with at least ten countries, including those in Europe, over the possible transfer of their embassies to Jerusalem after the US recognised the city as Israel's capital, Israel's Deputy Foreign Minister Tzipi Hotovely has said.
Summary:
CPRL administrator Justice GS Singhvi has written to Radhakrishna Foodland, the logistics partner of McDonald's in north and east India, to restore supplies.
Summary:
BJP's veteran leader and five-time MLA Jai Ram Thakur on Wednesday took oath as the 14th Chief Minister of Himachal Pradesh after the party formed the state government with 44 seats.
Summary:
As many as 18 out of 20 newly appointed Gujarat Cabinet Ministers, including CM Vijay Rupani, are crorepatis while eight are school dropouts, an Association for Democratic Reforms report stated.
Summary:
Earlier, reports said India crossed the LoC, killing three Pakistan soldiers in retaliation for the death of four Indian jawans.
Summary:
Salman Khan, who turned 52 on Wednesday, has played the character named 'Prem' in fifteen films till now.
Summary:
Sports personalities MS Dhoni, Virender Sehwag, Sunil Gavaskar, Saina Nehwal and Anil Kumble were spotted at the reception.
Summary:
Team India captain Virat Kohli was seen dancing to Shah Rukh Khan's song 'Chaiyya Chaiyya' with the Bollywood actor himself at his reception in Mumbai on Tuesday.
Summary:
US-based researchers created a new type of neural network made with memristors that may improve the efficiency of machines to think like humans.
Summary:
Only 50% of the ministers are graduates or have higher degrees.
Summary:
The World Bank has announced to provide a $318 million (â¹2,036 crore) loan for modernisation of irrigation projects in Tamil Nadu, which would help small and marginal farmers improve water management.
Summary:
The US on Tuesday imposed sanctions on two North Korean officials over their country's nuclear programme.The US named the two officials as Kim Jong-sik and Ri Pyong-chol, and said both played key roles in North Korea's development of ballistic missiles.
Summary:
China's financial hub of Shanghai will limit its population to 2.5 crore people by 2035 as part of a government plan to tackle "big city disease", authorities have said.
Summary:
China and Pakistan on Tuesday offered to include Afghanistan in the China-Pakistan Economic Corridor (CPEC) on mutually beneficial principles after the first trilateral meeting of the foreign ministers of the three countries.
Summary:
Shah Rukh Khan, on being asked if he would like to wish Salman Khan on the occasion of his 52nd birthday today, replied by singing, "Tum jiyo hazaaron saal." "I won't be able to meet him because my children are here and I want to spend time with them.
Summary:
Former cricketer Sachin Tendulkar and actors including Shah Rukh Khan, Ranbir Kapoor, Priyanka Chopra, Kangana Ranaut, Aishwarya Rai and Amitabh Bachchan attended the wedding reception of Virat Kohli and Anushka Sharma in Mumbai.
Summary:
According to reports, Aishwarya Rai will play a woman with multiple personality disorder in the remake of the Nargis starrer 1967 film 'Raat Aur Din'.
Summary:
With the results, second-placed United is just one point above Chelsea.
Summary:
The museum has around 100 wax statues of public figures including Mahatma Gandhi and PM Narendra Modi.
Summary:
Claiming that the officials were served dinner in silver utensils, Telkur said each plate of food served cost â¹800.
Summary:
Based on quantum particles' interaction with the environment, Cambridge researchers theoretically showed that the particles could be tracked even when they're not being observed.
Summary:
The proposed BMC sports complex will have a lawn tennis court, cricket and football grounds, basketball and volleyball courts, along with an open gym.
Summary:
The J&K government has issued guidelines to 4.5 lakh employees on how to behave on social media.
Summary:
A Surat-based businessman on Sunday facilitated weddings of at least 251 women, who had lost their fathers and are financially unstable.
Summary:
A video footage allegedly showing late Tamil Nadu CM Jayalalithaa in a hospital was on Tuesday submitted to the one-man inquiry commission probing her death.
Summary:
The man said he announced the bounty over Hegde's reported remark that secular people were unaware of their parentage.
Summary:
Donald Trump is the first US President in almost a century to not host a state dinner during his first year in office.
Summary:
The All-India Muslim Women Personal Law Board (AIMWPLB) has said the All-India Muslim Personal Law Board (AIMPLB) shouldn't try to blackmail the government by accusing it of interfering in religious matters, while opposing the proposed Triple Talaq bill.
Summary:
The Ministry of External Affairs on Tuesday said Kulbhushan Jadhav's appearance during his meeting with his mother and wife raised questions over his health and well-being.
Summary:
It was re-elected to the UN's Economic and Social Council as well to the International Maritime Organisation Council.
Summary:
The video listed out the good things that happened this year including the mystery of why Kattappa killed Baahubali being revealed in 'Baahubali 2'.
Summary:
England and Tottenham striker Harry Kane on Tuesday netted his 39th Premier League goal this year to break retired forward Alan Shearer's 22-year-old record of 36 goals in the English top flight in a calendar year.
Summary:
Japanese cybersecurity firm Trend Micro has discovered a cryptocurrency mining malware called Digmine, which is spreading via Facebook Messenger.
Summary:
Chinese technology group LeEco's Founder Jia Yueting has been ordered to return to the country within a week to deal with the company's debts.
Summary:
After RJD chief Lalu Prasad Yadav was convicted in the fodder scam and taken into police custody, former Bihar Deputy CM and Lalu's son Tejashwi Yadav said the Opposition were "hugely mistaken" to think his father was finished.
Summary:
Former Indian Navy officer Kulbhushan Jadhav's mother was called "qatil ki maa" (murderer's mother) by the Pakistan media outside the country's Foreign Office in Islamabad after her meeting with her son on Monday.
Summary:
A three-foot tall dwarf Jaish-e-Mohammed commander, Noor Mohammed Tantray, was killed by security forces in an encounter in J&K on Tuesday.
Summary:
Following the meeting between former Indian Navy officer Kulbhushan Jadhav and his family, Pakistan daily Dawn reported "such decisions should serve as a template for others...including in Indian-occupied J&K".
Summary:
The district administration has transferred the chief medical officer, who gave permission for the surgeries in violation of norms.
Summary:
Russian belly dancers were called to perform at an alumni function at the government-run Lala Lajpat Rai Medical College in Uttar Pradesh's Meerut on Tuesday.
Summary:
In 'Dostana', John and Abhishek Bachchan's characters pretended to be gay in order to share an apartment with Priyanka Chopra's character.
Summary:
Shares of Reliance Communications surged 41% on Tuesday after Chairman Anil Ambani said the company would reduce its debt by about â¹25,000 crore.
Summary:
Without naming, Gopinath claimed that one party was disgruntled that Mallya was allowed to leave India, while the other blamed the former for not taking adequate action.
Summary:
The monthly Goods and Services Tax (GST) collection declined to its lowest since its rollout in June this year.
Summary:
Actor Anupam Kher has said that he stops people from calling him a legend or a veteran actor while adding that he feels awkward and wants to do more work.
Summary:
Actor Ranveer Singh has said that filmmaker Aditya Chopra calls him "nalayak" (useless) and tells him to learn something from Anushka Sharma.
Summary:
No decision has been taken on whether Sonia Gandhi would continue to remain in the position of UPA chairperson or make way for new Congress President Rahul Gandhi, party leader M Veerappa Moily has said.
Summary:
In a complaint, Deepa expressed suspicion that some acquaintances could be behind the incident.
Summary:
The digital commerce market in India is expected to cross $50 billion in value by the end of 2018, according to a recent study conducted by Assocham and Deloitte.
Summary:
IT major Wipro has invested $2.05 million in US-based data management software startup Imanis Data, the company said in a stock-exchange disclosure.
Summary:
SIAM added that all electric two-wheelers and passenger vehicles used for personal purposes be exempt from parking charges.
Summary:
A 'Second Failure Conclave' was recently held in Uttarakhand's Dehradun, with an aim to encourage students by conveying that "failure in school is not the end of life".
Summary:
Himachal Pradesh CM-elect Jai Ram Thakur on Monday said, "tired and retired officials would have no place in the government." The BJP had earlier alleged that former CM Virbhadra Singh-led Congress government comprised "retired, tired and hired" officials.
Summary:
Slamming Guatemala's decision to move its embassy in Israel to Jerusalem, the Palestinian Foreign Ministry said, "It is a shameful and illegal act that goes totally against the wishes of church leaders in Jerusalem." It further said that Palestine will act to oppose the decision.
Summary:
After a courtship of over four years, Virat Kohli tied the knot with actress Anushka Sharma in December.
Summary:
Accusing Pakistan of harassing Kulbhushan Jadhav's family, the External Affairs Ministry said his mother and wife were forced to remove mangalsutra, bangles and bindi, and change their clothes, during their meeting with Jadhav on Monday.
Summary:
Benchmark index BSE Sensex closed above the 34,000-mark for the first time on Tuesday, after breaching the level in morning trade.
Summary:
Rapper-singer Yo Yo Honey Singh's comeback song in Bollywood after two years 'Dil Chori' from the upcoming film 'Sonu Ke Titu Ki Sweety' has been released.
Summary:
Minister of State and three-time MLA Vibhavariben Dave is the only woman in the Council.
Summary:
Speaking about Kohli's batting in Test cricket, Sandeep said, "Virat is definitely a great batsman, no doubt about it.
Summary:
New Zealand and Pakistan played the last four-day Test in 1973, with the match ending in a draw.
Summary:
Sharma was playing against Australia when Shastri heard someone call Rohit a 'Hitman', before using the nickname himself while commentating.
Summary:
Stating that western attire is "foreign imposed slavishness", BJP MP Subramanian Swamy urged the party to make it mandatory for members to shun western clothing and wear "Indian climate friendly clothes".
Summary:
Announcing that Jammu and Kashmir Panchayat elections will be held from February 15, CM Mehbooba Mufti said people of the state have always chosen ballots over bullets and will continue to do so.
Summary:
Union Minister Ravi Shankar Prasad said the Nokia plant in Tamil Nadu was left like an "orphaned child" and the government was "on the job" to make it operational.
Summary:
A report by UK's Centre for Economics and Business Research (CEBR) has said India will overtake France and UK to become world's fifth-largest economy in 2018.
Summary:
Jacqueline, who will be seen opposite Salman Khan in 'Race 3', had starred with Deepika in 'Race 2'.
Summary:
Hollywood actress Heather Menzies-Urich, known for playing the role of Louisa von Trapp from the 1956 musical 'The Sound of Music', passed away at the age of 68.
Summary:
Actress Rakhi Sawant, while addressing Yoga guru Baba Ramdev in an Instagram video, said, "I dare you to launch Patanjali condoms." She added that everyone wants to see Patanjali condoms.
Summary:
Reacting to MS Dhoni donning a Santa hat after the third T20I against Sri Lanka, a user tweeted, "Dhoni is Santa Claus of cricket.
Summary:
North Korean ambassador for American affairs at the UN, Pak Song-il, has asked the US to provide evidence to support its claims that the WannaCry ransomware attack was engineered by North Korea.
Summary:
Over 280 IAS officers have not yet filed their Immovable Property Returns (IPRs) for the year 2015-16, government data has revealed.
Summary:
However, a former NCC official said sporting beard is not allowed in the camp.
Summary:
A two-day music festival was held in Bengaluru recently with 'Bugs of the Ecosystem' as its theme to spread the message of sustainability and the need of building a responsible ecosystem.
Summary:
Trinamool Congress has announced plans to organise a 'Brahmin Sammelan' in West Bengal's Birbhum district on January 8.
Summary:
Calling the meeting a staged drama, Kaur said Pakistan played to the gallery and tried to befool the international community.
Summary:
A French journalist who was arrested in Kashmir on December 10 for violating visa and passport regulations was discharged on Tuesday.
Summary:
While delivering his Christmas message on Monday, Pope Francis said that "winds of war" are blowing around the world.
Summary:
Mumbai terror attack mastermind and Jamaat-ud-Dawah (JuD) chief Hafiz Saeed has opened the first office of the Milli Muslim League (MML) in Lahore, Pakistan.
Summary:
Predicting that relations between Russia and the US will improve, Russian Foreign Minister Sergey Lavrov said that there is no new "Iron Curtain" between the two world powers.
Summary:
It has asked the banks to discuss consolidation of overseas branches and take a final call on closing some unviable operations.
Summary:
BJP MLA Vijay Rupani on Tuesday took oath as the Chief Minister of Gujarat for his second consecutive term in state capital Gandhinagar.
Summary:
WeWork's shared office spaces across Bangalore are perfectly situated for the budding entrepreneurial community.
Summary:
WeWork's co-working space in Delhi NCR provides you with an opportunity to be a part of the burgeoning startup scene fueled by a new era of entrepreneurs.
Summary:
WeWork's amenities, services, and staff make your life easier by solving your logistical headaches.
Summary:
This was in retaliation to the death of four Indian soldiers during an unprovoked firing by Pakistani troops on Saturday, reports said.
Summary:
In the US, Verizon acquired Yahoo's core business for $4.48 billion and Amazon purchased Whole Foods for $13.7 billion.
Summary:
Addressing his fans in Chennai, actor Rajnikanth on Tuesday said that he will reveal his plans about entering politics on December 31.
Summary:
India jumped to the second spot in the ICC T20I team rankings after completing a 3-0 series whitewash against Sri Lanka.
Summary:
Facebook-owned instant messaging platform WhatsApp will end support for smartphones running on BlackBerry OS, BlackBerry 10, and Windows Phone 8.0 and older, from December 31, 2017.
Summary:
Paytm has announced its plans to launch an incubator for startups with the aim of building and sharing technology solutions among developers in India.
Summary:
Union Minister and animal rights activist Maneka Gandhi has authored a gaushala manual to publicise the standard operating procedures for running cow shelters.
Summary:
Magazines hailing separatist leader Burhan Wani as the 'hero of freedom of Kashmir' on their covers have been sold at the Shaheedi Jor Mela in Punjab's Fatehgarh Sahib.
Summary:
Acting on a tip-off, a police team surrounded a house where two JeM militants were reportedly hiding and killed Noor in the subsequent encounter.
Summary:
It is estimated that the tsunami had two times the energy of all bombs used during WWII.
Summary:
McDonald's India's estranged partner Vikram Bakshi has said over 80 outlets of the fast-food chain in east India have been shut due to discontinuation of supplies by its logistics partner.
Summary:
Kingfisher Airlines Founder Vijay Mallya is a "victim of flamboyance and arrogance rather than any political conspiracy", Air Deccan Chairman GR Gopinath has said.
Summary:
Actress Soha Ali Khan has said that the biopic she will be co-producing on retired lawyer Ram Jethmalani is a fascinating story as he is now 94 years old and has had a career of over 70 years.
Summary:
Australian opening batsman David Warner was dismissed on 99, only to score a century off the next ball after the dismissal was found to be off a no-ball, resulting due to the bowler's overstepping.
Summary:
"I felt greater pain in visiting Mahakal temple (at Ujjain) than scaling the Everest," part of Arunima's tweet read.
Summary:
They further said they had received complaints from vegetarians about public display of meat.
Summary:
Two out of every three mental health professionals in Mumbai feel they lack skills to tackle child sexual abuse cases, a study supported by the UNICEF revealed.
Summary:
Police data has revealed that country-made liquor, brewed in Haryana, has seen an annual increase of 25% in seizure over the past two years.
Summary:
Uttar Pradesh's BJP unit has urged the All India Muslim Personal Law Board (AIMPLB) to give up its "rigid and archaic stand" on Triple Talaq.
Summary:
A 46-year-old woman from Ludhiana has alleged that she is being forced to serve as a slave by her employers in Saudi Arabia.
Summary:
Union Minister Hansraj Ahir on Monday asked senior doctors of a hospital in Maharashtra's Chandrapur to join the Naxals after they remained absent from a medical store inauguration that Ahir was attending.
Summary:
Congress President Rahul Gandhi on Monday sent a "big hug" to a 107-year-old woman who wished to meet him on her birthday.
Gandhi was responding to the woman's granddaughter Dipali Sikand's tweet, which read, "Today my grandmother turned 107.
To meet Rahul Gandhi!
Summary:
The most expensive car launched in India this year is Lamborghini's Aventador S Roadster, priced at â¹5.79 crore.
Summary:
The total income tax paid declined to â¹1.88 lakh crore in 2015-16, from â¹1.91 lakh crore in 2014-15.
Summary:
Known for silent slapstick comedies and political satires, the English actor made his film debut in 1914 with the movie 'Making a Living'.
Summary:
Virat Kohli, who missed India's T20I series against Sri Lanka due to his wedding, has been displaced from the top spot in the T20I rankings for batsmen.
Summary:
Pakistani cricketer Babar Azam smashed a century off 26 balls in a charity T10 match after being hit for six sixes in one over by former Pakistan captain Shoaib Malik earlier in the match.
Summary:
Tamil Nadu Deputy Chief Minister O Panneerselvam on Monday said that no state minister had met former Chief Minister J Jayalalithaa during her hospitalisation.
Summary:
Summary:
Based on reanalysis of the world's oldest algae fossils, Canada and US-based researchers have estimated the origins of photosynthesis to be 1.25 billion years old.
Summary:
After Kulbhushan Jadhav's meeting with his mother and wife, Pakistan on Monday released a new confession video in which he is seen thanking their government for facilitating the meeting.
Summary:
Pakistan Foreign Affairs Ministry spokesperson Mohammad Faisal has said that the meeting between Kulbhushan Jadhav, sentenced to death in Pakistan, and his family was not the last.
Summary:
Jadhav later thanked the Pakistan government for arranging the 40-minute meeting.
Summary:
Baba Ramdev-led Patanjali Ayurved will invest â¹671 crore in Chhattisgarh for setting up food and herbal processing unit, according to government officials.
Summary:
Summary:
While talking about his film 'Kedarnath' which will release on the same date as Shah Rukh Khan's film with Aanand L Rai, director Abhishek Kapoor said, "Why call them...clash?
Summary:
Bob Givens, who was among the chief animators who helped design the cartoon character Bugs Bunny, passed away at the age of 99.
Summary:
Veteran Bengali actor Partha Mukherjee passed away at the age of 70 at a private hospital in Kolkata on Monday.
Summary:
While talking about Miss World 2017 and Mr World 2016 titles, which have been won by India's Manushi Chhillar and Rohit Khandelwal respectively, Mr India 2017 Jitesh Singh Deo said the bar has been set by them.
Summary:
Veteran singer Lata Mangeshkar, while talking about former cricketer and Rajya Sabha MP Sachin Tendulkar's first speech in the Parliament being disrupted, said, "This is an insult to...one of cricket's biggest icons." She added, "Sachin calls me Maa. He called to take my blessings before proceeding to Parliament.
Summary:
He further said it was a wrong impression that Pakistan was desperate to play India and insisted it was about asking for its due.
Summary:
In a letter to PM Narendra Modi, the Shiv Sena in Goa called Chief Minister Manohar Parrikar a 'bad Santa' for agreeing to the diversion of waters of Mahadayi river to Karnataka.
Summary:
Talking about Delhi CM Arvind Kejriwal not being invited to the inauguration of the Delhi Metro's Magenta line, Deputy CM Manish Sisodia tweeted that it was an insult to the people of Delhi.
Summary:
The man, who was in an inebriated state, got down after five hours when the police assured him of a meeting with his grandson.
Summary:
India has proposed to Pakistan to "release all prisoners who are above 70 years of age, are women, or are of unsound mind".
Summary:
The man, Kumar Ajitabh, had listed his car online for sale and his friends suspect that he had gone out to meet a prospective buyer after which he went missing.
Summary:
The Uttar Pradesh government has decided to set free 93 prisoners on Monday, on the occasion of former Prime Minister Atal Bihari Vajpayee's 93rd birthday.
Summary:
Adding that people find it fashionable to believe that Uttar Pradesh CM Yogi Adityanath is not modern enough due to his clothes, PM Modi on Monday praised Adityanath for rising above superstitions and breaking the 'Noida jinx'.
Summary:
At least five people were killed and several others were injured after a bus rammed into pedestrians in Russian capital of Moscow.
Summary:
Three jawans of India's Border Security Force (BSF) were captured by Bangladesh Army after they inadvertently entered their territory.
Summary:
Actor Shah Rukh Khan was initially offered Aamir Khan's role in the comedy-drama '3 Idiots'.
Summary:
India coach Ravi Shastri has said that 36-year-old wicketkeeper and former captain MS Dhoni can still beat players ten years junior to him.
We know, at this age, he can beat players aged 26.
Summary:
Tunisia has banned flights by Emirates alleging that UAE had banned Tunisian women from visiting or passing through its territory.
Summary:
SoftBank participated in Indian cab-hailing startup Ola's $1.1 billion funding round in October and invested $2.5 billion in e-commerce startup Flipkart in August.
Summary:
Former Flipkart Chief Product Officer (CPO) Punit Soni has said that 90% of companies doing artificial intelligence/machine learning are doing nothing.
Summary:
With increasing cosmic rays over the Earth, more ions, aerosols, and clouds are formed, which then cool the planet with more rain.
Summary:
The Hyderabad prison department has provided employment to two graduates who were found begging on the city's streets.
Summary:
A man dressed as Santa Claus in Goa was spreading awareness on road safety on Christmas Eve in Goa. He distributed chocolates and pamphlets about traffic safety to violators, requesting them to follow rules.
Summary:
North Korea has said that the US should wake up from its "pipe dream" of making the reclusive nation give up nuclear weapons "developed through all kinds of hardships".
Summary:
Indian telecom operators must invest more to ensure that security is built into all of their products, Reliance Jio's Chief Information Security Officer Brijesh Datta has said.
Summary:
He said that India's bank recapitalisation plan, GST, and improvement in ease of doing business rankings are all important.
Summary:
Hollywood actress Jennifer Lawrence visited a children's hospital in her hometown of Louisville, Kentucky on Christmas Eve.
Lawrence has visited the hospital over the Christmas holiday every year since 2013.
Summary:
Television actress Divyanka Tripathi, while speaking about casting couch, revealed that she has had such encounters.
Divyanka further said, "I always gauged [such] intentions, got out of the conversation, and protected my dignity."
Summary:
Israeli players have been denied visas by Saudi Arabia to participate in an international speed chess championship, World Chess Federation (FIDE) said.
Summary:
Indian badminton player Ashwini Ponnappa got married to businessman and model Karan Medappa at a ceremony in Karnataka's Coorg on Sunday.
Summary:
Apple's iPhone X users have claimed that they can't use the Face ID feature to approve family purchases and have to enter their password manually.
Summary:
Union Minister Anantkumar Hegde on Sunday said, "We are here to change the Constitution." Adding that those claiming to be secular and progressive did not have an identity of their parents and blood, he said, "I will be happy if someone identifies as Muslim, Christian, Brahmin, Lingayat or Hindu.
Summary:
Two bike-borne men on Saturday snatched the phone of Eenam Gambhir, the diplomat who had called Pakistan 'Terroristan' in UN, in Delhi.
Summary:
Confiscation of such drugs hiked from 40 kg in 2012 to 1,687 kg last year.
Summary:
The Brihanmumbai Municipal Corporation will start the construction of the city's first textile museum at the United Mill compound in Kalachowki in February.
Summary:
The notification says that students' parents and family members will have to reveal their faces while entering or leaving the school.
Summary:
I feel proud," the tree's owner said.
The family said that they have been growing this tree for over four decades.
Summary:
Amit Khare, then Deputy Commissioner, who exposed the fodder scam in 1996, said he was glad he didn't waste time worrying about career, family, and future, or he wouldn't have been able to render his duty sincerely.
Summary:
A college in Bandra organised a blood donation drive on its campus last week.
Summary:
The Twitter account of WikiLeaks founder Julian Assange went offline on Monday.
Summary:
On being questioned about what went wrong in partnership with McDonald's, the company's estranged partner Vikram Bakshi said, "It was my doing because no brand wants a strong partner." He further said that most brands would prefer a "subservient" partner than a strong partner.
Summary:
It is Salman Khan's 12th film to cross the â¹100 crore mark, the maximum for any Bollywood actor.
Summary:
PM Narendra Modi and Uttar Pradesh CM Yogi Adityanath on Monday inaugurated Delhi Metro's Magenta Line.
Summary:
Pakistan also allowed an Indian diplomat to accompany them for the meeting.
Summary:
It is believed that the modern Christmas tree originated in Germany in the 17th century.
Summary:
The title song from Akshay Kumar, Sonam Kapoor and Radhika Apte starrer 'PadMan' has been released.
Summary:
Malik was playing for the Shahid Afridi Foundation Red team, while Azam was part of the Shahid Afridi Foundation Green team.
Summary:
Summary:
The convention allows foreign nationals who are arrested or detained to have the access.
Summary:
Summary:
Summary:
Indian sand artist Sudarsan Pattnaik has claimed to have made the world's biggest Santa Claus face on Odisha's Puri beach.
Summary:
Pakistani troops also initiated unprovoked firing on Indian positions in Shahpur area.
Summary:
The US has applauded a reduction of $285 million (over â¹1,800 crore) in the United Nations' operational budget for 2018-2019 as "a big step in right direction".
Summary:
China in its new government report has claimed that it has 'reasonably' expanded its islands and military presence in the disputed South China Sea, saying it can do whatever it wants in its territory.
Summary:
Israeli Agriculture Minister Uri Ariel has urged people to attend a mass prayer on Thursday with hopes this will "rip the skies open." Ariel said, "I call on the public to take part in the prayer," adding that the nation has faced drought for four years.
Summary:
Estonian police have sent 700 black Christmas cards to drivers with five or more driving offences recorded during 2017.
Summary:
Singer Tulsi Kumar took to Twitter to announce that she has given birth to a baby boy.
This is Tulsi Kumar's first child with husband Hitesh Ralhan.
Summary:
A five-month-old reindeer named Little Buddy was saved after an emergency blood transfusion from his brother ahead of Christmas in New York.
Summary:
Ahead of India's tour of South Africa, former South Africa captain AB de Villiers said India captain Virat Kohli is one of the best captains at the moment.
Summary:
For the first time, the Met department will issue a runway-wise fog forecast for the Delhi airport, allowing airlines and the airport operator to be better prepared for low-visibility operations.
Summary:
A Europe-based study has shown that algae growth on the Greenland ice sheet, world's second-largest ice sheet, significantly reduces surface reflectivity and contributes more to its melting than mineral dust or carbon.
Summary:
Delhi's transport department is planning to penalise owners of cars and two-wheelers that have crash guards fitted in them in an effort to reduce the use of the illegal aftermarket accessory.
Summary:
Addressing a music awards ceremony in Mumbai, Vice President Venkaiah Naidu has said that music should be "used for national integration, for the spread of humanity, love and affection, and seva".
Summary:
Uttar Pradesh Minister Om Prakash Rajbhar on Sunday said "poor people" don't vote for leaders who offer "baati chokha", instead they vote for those who offer them chicken and alcohol.
Summary:
At least six people were killed and one other was injured in Afghanistan's capital Kabul on Monday after a suicide bomber detonated himself near a compound belonging to the Afghan intelligence agency, officials said.
Summary:
US President Donald Trump told his friends, "You all got a lot richer," hours after he signed a tax cut bill which proposed US' biggest tax overhaul in 30 years into law on Friday, a report has claimed.
Summary:
A Russian man was stabbed by a fellow passenger at the Kaliningrad airport after a verbal conflict erupted between the two during a flight over alleged unpleasant smell from the victim's socks.
Summary:
The logo was designed by a design start-up and uses both English and Kannada alphabets.
Summary:
Spinner Washington Sundar became the youngest debutant for India in T20Is after appearing in the final T20I against Sri Lanka on Sunday.
Summary:
However, India has refuted the claim, saying allowing a diplomat to meet him cannot be termed as 'consular access'.
Summary:
Soldiers fighting World War I ceased hostilities and played football with enemy troops on Christmas Day in 1914.
Summary:
The Christmas tree, which is usually a 50-60 years old Norwegian spruce tree, is placed in London's Trafalgar Square as a decoration during the festival.
Summary:
The Indian boxing contingent claimed three gold, a silver, and a bronze medal at the Galym Zharylgapov Boxing Tournament in Karaganda, Kazakhstan.
Summary:
American tennis star Serena Williams will play her first match after becoming a mother at the Mubadala World Tennis Championship, event organisers have confirmed.
Summary:
Astronauts aboard the International Space Station, which orbits Earth 400 km away, celebrated Christmas eve by watching 'Star Wars: The Last Jedi'.
Summary:
The President further said that his administration is working towards a Maldives-India free trade agreement.n
Summary:
Congress leaders have said the party will conduct a 'scientific analysis' of vote share in constituencies to select right candidates for assembly elections.
Summary:
Rashidpura Khori railway station in Rajasthan's Sikar district is run and maintained solely by villagers and not railway staff.
Summary:
Guatemala has announced that it will move its embassy in Israel to Jerusalem, becoming the first country to follow US' recognition of Jerusalem as Israel's capital.
Summary:
Filmmaker Shree Narayan Singh has said it gives him a high to hear Microsoft co-founder Bill Gates appreciate his film 'Toilet- Ek Prem Katha'.
Talking about the film's actor Akshay Kumar, Shree Narayan further said, "I don't know if I could've made this film without Akshay Sir."
Summary:
Actor Ajay Devgn took to Twitter to share a video, in which he has announced his debut Marathi film 'Aapla Manus', which translates to 'Our Person'.
Summary:
The Indian cricket team celebrated Christmas Eve wearing Santa Claus hats after finishing 2017 with their 37th victory in international cricket, the second most in a calendar year behind Australia's 38 international wins in 2003.
Summary:
An official said helicopters dropped rescue personnel over every gondola car to open roof hatches and rescue the skiers.
Summary:
An artificial Christmas tree in Serbian capital city Belgrade is being mocked after its cost was revealed to be â¬83,000 (â¹63 lakh).
Summary:
Vistara has announced plans to hire male cabin crew on flights.
Summary:
UK-based researchers have found that Uranus appears brighter and dimmer over a cycle of 11 years, according to the solar activity cycle, which also affects sunspots.
Summary:
Rajasthan's BJP MLA Gyan Dev Ahuja has said that if one engages in cow smuggling or slaughters a cow, he will be killed.
Summary:
RJD Supremo Lalu Prasad Yadav was served chapati, dal, and cabbage for dinner on his first night in a Ranchi jail, following his conviction in one of the fodder scam cases.
Summary:
The Centre has asked all states to tighten security and maintain utmost vigil to prevent any untoward incident ahead of Christmas and New Year celebrations, a Home Ministry official has said.
Summary:
Karnataka Home Minister Ramalinga Reddy has said that the state is planning to frame a law to award capital punishments to convicts for raping minor girls.
Summary:
The father of Sepoy Pargat Singh has urged the Centre to teach Pakistan a lesson after his son was martyred during a cross-border firing in Jammu and Kashmir's Rajouri district.
"Our government must give a befitting reply to Pakistan.
Summary:
Hussain further said that Pakistan was most affected by terrorism.
Summary:
A box of gift-wrapped horse manure addressed to US Treasury Secretary Steven Mnuchin was found near his home in Los Angeles, sparking bomb scare.
Summary:
The Iraqi city of Mosul has celebrated its first Christmas in four years after defeating IS which seized the country in 2014.
Summary:
Rohit Sharma hit his 38th six against SL in 2017 across all formats, the most for any batsman against a particular opponent in a year.
Summary:
After rebel AIADMK leader TTV Dhinakaran won the RK Nagar bypolls, DMK working President MK Stalin on Sunday said the electoral result was a Himalayan loss for the Election Commission.
Summary:
Earlier, 40 girls were rescued from his ashram in Delhi.
Summary:
Jharkhand's Education Ministry has directed 40,000 schools to dedicate one day for an annual 'Matri-Pitri Pujan' where students will worship their parents.
Summary:
In his 1,552-page judgment in the 2G spectrum case, special CBI judge OP Saini remarked that the high-profile nature of a case cannot be used as grounds for conviction without admissible evidence.
Summary:
The aircraft, roughly the size of a Boeing 737, can carry 50 people and can stay airborne for 12 hours.
Summary:
Calling US President Donald Trump's new national security strategy a "criminal document", North Korea said that the action plan seeks the "total subordination of the whole world to the interests of the US".
Summary:
Mudslides and flash floods triggered by a tropical storm in the Philippines have killed around 200 people and left thousands homeless.
Summary:
Moody's and Fitch will publish any data if you "pay them", Swamy alleged.
Summary:
Three leading figures in the Miss America Organisation, including the President, CEO, and Chairman, have resigned after leaked emails revealed how pageant officials ridiculed winners for their appearance, intellect and sex lives.
Summary:
Actor Saif Ali Khan has said that he didn't known his song 'Ole Ole' from the 1994 film 'Yeh Dillagi' featured in the Salman Khan and Katrina Kaif starrer 'Tiger Zinda Hai'.
Summary:
Reality television personality Kim Kardashian tweeted a picture where mostly the women and children of her family were seen, which she captioned, "DAY 24- CHRISTMAS EVE." Twitter users speculated that Kim's half-sister Kylie Jenner was missing from the picture because she's pregnant.
Summary:
Actress Ratna Pathak Shah, in a veiled reference to Sonakshi Sinha, slammed actresses who star in films like 'Dabangg'.
Summary:
While sharing an old picture with Shah Rukh Khan on Instagram where they can be seen at a gym, filmmaker Karan Johar wrote, "When SRK tried his level best to train me in 2009!
Summary:
Talking about the upcoming film 'Saaho', actor Prabhas said that Shraddha Kapoor's character in the film is not just there for the songs but adds a lot of weight to the story.
Summary:
Actress Shilpa Shetty took to Twitter to apologise for the casteist remark she made during an interview.
The actress, in an interview, had used the word "bhangi" while describing how she looks at home.
Summary:
India had earlier lost to the Bangladeshi side 0-3 in the group stage of the competition.
Summary:
BCCI's chief selector MSK Prasad has said that wicket-keeper MS Dhoni will not be replaced till the 2019 World Cup because none of the younger keepers match the former Indian captain's level.
Summary:
English cricketer Ben Stokes, who was suspended by the England and Wales Cricket Board for his involvement in a fight outside a Bristol pub, is set to be given the green light to participate in the IPL's next edition.
Summary:
Afghanistan's 19-year-old leg-spinner Rashid Khan tweeted expressing his joy after his photo was used as a profile picture by former Australian wicket-keeper Adam Gilchrist.
Summary:
Even if Congress President Rahul Gandhi were to live in Gujarat for the next five years, his party won't be able to win the 2022 Assembly elections, Gujarat BJP chief Jitu Vaghani has said.
Summary:
Union minister Ram Vilas Paswan has slammed RJD chief Lalu Prasad Yadav for comparing himself with Nelson Mandela and Ambedkar, saying they made sacrifices in national interest while Yadav was in jail for corruption.
Summary:
The accused broadcasted to one lakh subscribers daily and some videos he circulated involved two to five-year-old kids, police said.
Summary:
Reports said the director was summoned based on the woman's complaint and the officer hit him when he misbehaved with her in front of the police.
Summary:
The Gauhati High Court has ordered a Special Investigation Team probe into a 2010 fake encounter case, in which three Manipuri men were allegedly killed by officers of a Nagaland-based Army intelligence unit.
Summary:
During a discussion at the Oval Office in June, US President Donald Trump had said that Nigerian immigrants "live in mud huts" and all immigrants from Haiti "have AIDS", according to a report by The New York Times.
Summary:
It further said that social media platforms closed nearly one crore internet accounts for "violating service protocol".
Summary:
Sidelined AIADMK leader VK Sasikala's nephew TTV Dhinakaran has won the RK Nagar bypolls by a margin of 40,707 votes.
Summary:
The ultra-conservative Kingdom of Saudi Arabia has introduced several reforms for women this year, allowing them to drive and issue fatwas.
Summary:
Himachal Pradesh's CM-elect Jai Ram Thakur is a five-time MLA, who won the Seraj seat in the recently concluded elections with a margin of over 11,000 votes.
Summary:
Actor Anil Kapoor's role in the 1987 film 'Mr. India' was initially offered to Amitabh Bachchan.
Summary:
Actor Amitabh Bachchan on Saturday said Reliance Industries Founder Dhirubhai Ambani offered to help him when he went bankrupt in the 1990s.
Summary:
Mercedes-Benz India CEO Roland Folger has said the Centre's plan for nationwide electrification of the auto industry by 2030 is commercially and technologically unviable.
He further said this plan will prevent better technological options for future generations.
Summary:
Stating that no procedure was followed while drafting the instant Triple Talaq bill, the All India Muslim Personal Law Board (AIMPLB) has said it will request PM Narendra Modi to withhold and withdraw the bill.
Summary:
Celebrating Reliance's 40 years, Ambani said his father Dhirubhai started RIL with an investment of â¹1,000 and it is now an over â¹6 lakh crore company.
Summary:
Infosys Co-founder Narayana Murthy has slammed the trend of senior management in IT industry taking home high wage hikes.
Summary:
Actress and UNICEF Global Goodwill Ambassador Priyanka Chopra has said that she asks people to donate their compassion, if they don't have enough money to donate to a social cause.
Summary:
Actress Sonam Kapoor, while wishing her father Anil Kapoor on his 61st birthday on Sunday, tweeted, "You have made me the person I am today...Without you, I wouldn't be half the woman I am." "The man who has frozen time," read Riteish Deshmukh's tweet.
Summary:
Actor Varun Dhawan, who celebrated Christmas at an orphanage, has said that for Christmas he wants a pollution-free Christmas and New Year from Santa Claus.
Summary:
Summary:
An FIR was filed against Salman Khan and Shilpa Shetty on Saturday in Mumbai over alleged casteist remarks.
Shilpa, in an interview, had also allegedly said, "I look like a bhangi".
Summary:
The BJP-led Haryana government has created only 3,000 job opportunities for youths in the state during their three-year tenure, Congress MP Deepender Hooda has claimed.
Summary:
Talking about the Gujarat Assembly elections, Chidambaram said both the Congress and BJP were victorious.
Summary:
Swamy tweeted, "TN BJP record: A national ruling party gets a quarter of NOTA's vote.
Summary:
The first time humans reached the Moon's orbit was on the Christmas eve of 1968.
Summary:
An Allahabad court has lifted a gag order against The Wire, allowing it to publish articles on the businesses of Amit Shah's son Jay Shah.
Summary:
Adding that she will rejoin her classes, she said she wants to return to normal life.
Summary:
The girl's consent to have sexual relations was without knowing its implications and consequences, the court added.
Summary:
To ensure the safety of women on Mumbai's local trains, the exteriors of ladies coaches should be painted in "soothing saffron", a Central Railway official has suggested.
Summary:
Hundreds of members of BJP, Bajrang Dal and other right-wing organisations on Friday attempted to disrupt the wedding of a Muslim man to a Hindu woman in Uttar Pradesh's Ghaziabad.
Summary:
After the UN unanimously passed new sanctions against North Korea on Friday, US President Donald Trump tweeted, "The World wants Peace, not Death!" The sanctions were imposed over the test-launch of an intercontinental ballistic missile by North Korea last month.
Summary:
US Defence Secretary James Mattis has urged the country's soldiers to be ready for anything, saying that "storm clouds are gathering" over the Korean Peninsula.
Summary:
British troops deployed to Afghanistan received just ã1 (â¹85) each to celebrate Christmas, reports said.
US troops reportedly received Christmas trees, decorations, turkeys, gifts, and a copy of the new Star Wars film.
Summary:
Calling the US an "accomplice in igniting a war" in Ukraine, Russian Deputy Foreign Minister Sergey Ryabkov said that the US' intention to provide lethal arms to Ukraine "crosses a line" and pushes the country towards bloodshed.
Summary:
Sakshi Malik, India's 2016 Olympic bronze medalist, was bought by the Mumbai Maharathi side for â¹39 lakh.
Summary:
The world's longest glass bridge, located in China's Hebei province, opened for the public today.
Summary:
Thakur won from the Seraj constituency against Congress candidate Chet Ram with a margin of over 11,000 votes.
Summary:
Gurugram's Medanta hospital has charged â¹15.88 lakh for the 21-day treatment of an 8-year-old suffering from dengue, who later died due to the disease.
Summary:
Technology giant Google paid tribute to late singer Mohammed Rafi with a doodle on his 93rd birth anniversary on Sunday.
Summary:
Slamming BJP and Congress for not visiting mosques during the election campaign, AIMIM chief Asaduddin Owaisi accused the parties of ignoring the minority Muslim community.
Couldn't they have clicked a single photo with Muslims?" questioned Owaisi.
Summary:
Speaking about the Under-19 World Cup, India's former Under-19 and current senior captain Virat Kohli said, "The U-19 WC was a very important milestone in my career...
Speaking about New Zealand captain Kane Williamson, who played in Under-19 WC, Kohli said, "I remember playing against Kane.
Summary:
After defeating West African Boxing Union Middleweight champion Ernest Amuzu, Indian boxer Vijender Singh has said that he next aims to win the Commonwealth and World Championship titles.
Summary:
A US court has fined Apple $25,000 for each day the company fails to produce evidence for a lawsuit against the chipmaker Qualcomm.
Summary:
Chinese smartphone maker Xiaomi India's Head of Online Sales Raghu Reddy has said, "India is the biggest market for us outside of China and the focus is to keep growing in India." He also said that the company has set up infrastructure from a manufacturing and distribution standpoint.
Summary:
Leading with almost double the votes received by rival AIADMK candidate Madhusudhanan, former AIADMK leader TTV Dhinakaran has said, "This is Amma's constituency.
Summary:
The 120 member team of CapriCoast joined the HomeLane team post the acquisition, including its founder Jawad Ayaz.
Summary:
Former Prasar Bharati CEO Jawhar Sircar had said that Doordarshan was forced to use its reserve fund after paying the salaries.
Summary:
The court will pronounce the quantum of sentence for Yadav on January 3.
Summary:
Sahaj's father said that the doctors declared him dead after he did not wake up one morning.
Summary:
The Indian Army retaliated "strongly and effectively" at Pakistan Army posts, an Army press release said.
Summary:
Following the UN Security Council decision to impose new sanctions on North Korea on Friday, the reclusive nation's Foreign Ministry said the US was terrified by its nuclear force.
Summary:
NYT also reported that over two dozen women experienced or witnessed sexual misconduct at Vice.
Summary:
Billionaire and founder of GoDaddy Bob Parsons announced on Friday that he plans to give $1.3 million in additional bonuses to his employees after the US passed a new tax bill.
Summary:
The Supreme Court in 2012 had cancelled Videocon's 15 telecom licences in 2G spectrum allocation done under the then Telecom Minister A Raja.
Summary:
Budget carrier IndiGo has become the first Indian airline to operate over 1,000 daily flights across its domestic and international network.
Summary:
Finance Minister Arun Jaitley on Saturday said that Aadhaar-based Direct Benefit Transfer (DBT) scheme has led to "huge savings" till now.
Summary:
Premier League leaders Manchester City extended the record run of consecutive top-flight wins to 17 matches by thrashing Bournemouth 4-0 on Saturday.
Summary:
Backing protests seeking higher pay and promotions for doctors in Rajasthan, AIIMS Resident Doctors' Association has urged PM Narendra Modi to wear the "white apron for a day" to understand the "tremendous pressure" they face.
Summary:
Hotels, bars, and pubs can host Christmas and New Year's Eve parties till 5 am in Mumbai, instead of the usual 1:30 am deadline, said a notification issued by the state home department, in consultation with the excise department.
Summary:
Karnataka Rakshana Vedike on Saturday conducted a protest rally in Bengaluru, demanding reservation for Kannadigas in private and public-sector jobs.
Summary:
Addressing a gathering of chartered accountants on Friday, NITI Aayog Vice Chairman Rajiv Kumar said the Goods and Services Tax (GST) regime would get stabilised in the next 18 months.
Summary:
ShopClues Co-founder Sandeep Aggarwal accused his wife and Co-founder Radhika Aggarwal of having an extramarital affair.
Summary:
With his 10th successive victory, the 2008 Olympic medal winner maintained his 100% win record in professional boxing.
Summary:
A federal judge in Seattle on Saturday partially blocked US President Donald Trump's move to suspend the family reunification programme for refugees.
Summary:
Afghanistan's 19-year-old leg-spinner Rashid Khan won the Man of the Match award while making his debut for Adelaide Strikers in Australia's Big Bash League.
Summary:
All-rounders Ravichandran Ashwin and Ravindra Jadeja were not named for theÃÂ fifth straight ODI series.
Summary:
India's only international-sized ice rink is facing meltdown due to its disuse since its inauguration six years ago.
Summary:
Following his conviction in the fodder scam case, Lalu Prasad Yadav tweeted that history would have treated people like Nelson Mandela, Martin Luther King, and Ambedkar as villains had they failed in their efforts.
Summary:
ISIS has over 10,000 fighters in Afghanistan, with more coming from Iraq and Syria, Russia's special envoy to Afghanistan Zamir Kabulov has said.
Summary:
US President Donald Trump has said that the US "foolishly spent" $7 trillion in the Middle East, urging it was time to direct funds towards domestic needs rather than on foreign spending.
Summary:
Nearly 11.3 crore equity shares were bought back at a price of â¹1,150 per equity share.
Summary:
Summary:
Arshi Khan, a contestant chosen from among common people, has been evicted from the reality show Bigg Boss 11.
Summary:
"Both the shows are my babies and nothing gets better than merging them together," said JD Majethia, who is the producer for both the serials.
Summary:
Mouni is also starring with actor Akshay Kumar in the upcoming film 'Gold'.
Summary:
Actresses Kareena Kapoor Khan, Alia Bhatt, Sridevi and Sonam Kapoor have featured on the cover of Filmfare magazine for its January issue.
Summary:
The film has been tentatively titled 'Ela' and will reportedly be directed by Pradeep Sarkar.
Summary:
Following his record ton against Sri Lanka in the Indore T20I on Friday, Indian opener Rohit Sharma took to Instagram to post a picture of himself with wife Ritika Sajdeh.
Summary:
A tribute match in the memory of late veteran BCCI scorer Rakesh Sanghi is set to be held in Chandigarh on Sunday.
Summary:
Following his acquittal in the 2G scam case, former Telecom Minister A Raja said, "Wait for my book.
Summary:
Lalu Prasad Yadav's son Tejashwi on Saturday said the class and caste Lalu was born in and the struggle with which he made his mark in politics was the real scam for which he was paying.
Summary:
Yuva Sena President and son of Shiv Sena chief Uddhav Thackeray, Aaditya has demanded that the age for contesting elections to legislative bodies be lowered to 21 or 18.
Summary:
Union Finance Minister Arun Jaitley on Saturday alleged that the Congress changed its position on Aadhaar after joining the Opposition in the Parliament.
Summary:
"Of the 12 air-conditioned local train services, 11 will be fast," a WR official said.
Summary:
An Army jawan was arrested on Friday for allegedly parading a woman with a garland of slippers around her neck in Maharashtra's Osmanabad.
Summary:
The Enforcement Directorate (ED) has filed a chargesheet against RJD chief Lalu Prasad Yadav's daughter Misa Bharti and her husband in a money laundering case.
Summary:
The evidence has already been handed over to the High Court, reports said.
Summary:
Princess Michael of Kent has apologised for wearing a brooch depicting a black figure after it was called "racist" by internet users.
Summary:
India is set to get its first sea bridge runway after the approval to extend the Agatti Airport in Lakshadweep has been given to Airports Authority of India.
Summary:
This was Barcelona's third consecutive win against Real Madrid in the La Liga at the Santiago Bernabéu.
Summary:
Fodder scam is a series of financial irregularities where â¹950 crore was fraudulently withdrawn by Bihar's animal husbandry department by making a false paper trail of fodder, medicines, and equipment purchases.
Summary:
Infosys Co-founder Nandan Nilekani and wife Rohini committed to donate at least half of their $1.7 billion wealth to charity.
Summary:
The first successful human kidney transplant was performed on December 23, 1954, from one identical twin to another by Dr Joseph Murray, without using immune-suppressing drugs.
Summary:
Real Madrid defeated Barcelona 11-1 in an El Clasico encounter in 1943, the largest margin of victory in El Clasico history.
Summary:
During an El Clásico match in 2002, Barcelona fans threw a severed pig's head at Real Madrid's Luis Figo while he was taking a corner at Camp Nou. Figo had left Barcelona for Real in 2000 for a then world record transfer.
Summary:
Batsman Rohit Sharma holds the record for hitting the highest individual scores by an Indian in both ODI and T20I cricket.
Summary:
The government has reportedly decided to increase the jail term for drunk drivers causing death from two to seven years.
Summary:
Following reports of unverified feed aired by television channels, the Centre has asked them to authenticate reports before broadcasting so that false or doctored material sourced from social media does not pass off as news.
Summary:
Nearly 90 people have been killed and dozens of others have gone missing in the Philippines after a tropical storm hit the country's Mindanao island on Friday, triggering mudslides and flooding, according to officials.
Summary:
Kieron Graham managed to track down his 29-year-old brother after receiving a DNA kit from his adoptive parents, and found they were studying in the same university.
Summary:
The shakers, shaped like mini planes and named Wilbur and Orville, feature the words 'Pinched from Virgin Atlantic'.
Summary:
US beverage maker Long Island Iced Tea's shares rose nearly 300% on Thursday after it announced it was changing its name to 'Long Blockchain Corp'.
Summary:
Ford CEO Jim Hackett has apologised to employees for accusations detailed in The New York Times report that management at two Chicago plants didn't respond adequately to complaints of sexual harassment.
Summary:
The total market capitalisation of all listed companies on the Bombay Stock Exchange (BSE) touched a record high of over â¹150 trillion on Friday.
Summary:
Directed by Akshat Verma and also starring Deepak Dobriyal, Kunaal Roy Kapur and Shenaz Treasury, 'Kaalakaandi' is scheduled to release on January 12, 2018.
Summary:
A fan of singer Taylor Swift revealed the singer helped her buy a house after she was left homeless during her pregnancy.
Summary:
The petition further alleged that Damon "not only ignored but enabled his friend Harvey's inappropriate behavior".
Summary:
Indian batsman Rohit Sharma has revealed that police once threatened to put him in jail for breaking windows in their neighbourhood while playing cricket with friends during childhood.
Summary:
A Virgin Australia flight attendant sang the holiday classic 'Have Yourself a Merry Little Christmas' for passengers at the Melbourne airport after making routine announcements.
Summary:
US-based cab-hailing startup Uber mistakenly used the flag of Cuba to congratulate Puerto Rico on its Flag Day in an advertisement on Facebook.
Summary:
Russian space agency Roscosmos is reportedly reviewing plans for a luxury hotel onboard the International Space Station (ISS) by 2022.
Summary:
Summary:
The Andhra Pradesh government has recommended banning New Year festivities on January 1 in all the temples across the state.
Summary:
China has punished as many as 8,123 people over misuse of government funds after an audit of the government's expenditure in the 2016 central budget revealed multiple problems, the state media reported.
Summary:
Russia is ready to cooperate with the US in Afghanistan to foster stability in the region, Russia's Foreign Ministry said on Saturday.
Summary:
Former Bihar Chief Minister Lalu Prasad Yadav on Saturday was found guilty in the fodder scam case by a special CBI court in Ranchi.
Summary:
With earnings of â¹33.75 crore on its first day, Salman Khan and Katrina Kaif's 'Tiger Zinda Hai' has become the second-highest Hindi opening grosser of 2017.
Summary:
Meanwhile, 16 people, including Lalu Prasad Yadav, were found guilty in the case.
Summary:
The coal scam or Coalgate accounting for over â¹1.86 lakh crore was one of the biggest scams reported by the Comptroller and Auditor General in 2014.
Summary:
Posting a video with their own version of Bollywood song 'Yeh Dosti Hum Nahi Todenge', the official Twitter handle of US Embassy in India on Friday wished the people of India a "fantastic" New Year.
Summary:
Indian opener Rohit Sharma slammed 108 runs in boundaries, including 12 fours and 10 sixes, during his record 118-run knock against Sri Lanka in the Indore T20I.
Summary:
The app turns an Android phone into a motion, sound, vibration, and light detector, which can then be positioned to monitor the environment.
Summary:
Earlier, Musk said the rocket will carry his 'midnight cherry' Roadster to Mars.
Summary:
The amount was deposited between February 1, 2016 and October 25, 2017, Uber revealed.
Summary:
An international team led by Swiss astronomers has found that an exoplanet, which evaporates like a comet, follows an elliptical orbit passing almost over the poles of its star, instead of the equatorial plane.
Summary:
The special CBI court in Ranchi will pronounce the quantum of sentence for former Bihar CM Lalu Prasad Yadav and 15 others found guilty in the fodder scam case on January 3.
Summary:
The driver of the bus was sleeping at the time of the accident, the police added.
Summary:
Prashant Sharma and Niti Shree, who are founders of a digital start-up, received Bitcoin worth around â¹1 lakh as only 15 of the 200 guests gave them traditional gifts.
Summary:
The Finance Ministry revealed that about 70 complaints have been filed with the Anti-Profiteering Authority, which is to examine complaints of not passing benefits to consumers under GST.
Summary:
The I-T department has asked Bitcoin holders to disclose details of Bitcoins or other cryptocurrency transactions.
Summary:
The government has allowed companies to paste price stickers on unsold packaged products to reflect new MRP post GST until March 2018.
Summary:
Investor Michael Novogratz halted his plan to launch a $500 million hedge fund in cryptocurrencies and predicted that Bitcoin could drop to as low as $8,000 before rebounding.
Summary:
The Censor Board, while talking about the 'Jauhar' scene in Sanjay Leela Bhansali's 'Padmavati', said, "We feel women's organisations would take strong objection to the self-immolation." "They might see this as another form of Sati, a practice that is constitutionally banned in the country.
Summary:
It will be directed by Varun's father David Dhawan, who also directed the original film.
Summary:
Australian pacer Andrew Tye became only the second bowler after Indian spinner Amit Mishra to pick up three T20 hat-tricks after picking up his third in the Big Bash League on Saturday.
Summary:
Chinese internet major Baidu has sued Jing Wang, former General Manager of its autonomous driving unit, alleging he stole in-house technology.
Summary:
Emergency crews were called to the site, even though the pilot was not injured during the incident.
Summary:
Odorrana, also known as odorous frog, is a genus of frogs with over 50 species.
Summary:
India has sanctioned $25 million to help develop Myanmar's violence-hit Rakhine State.
Summary:
He also pledged to make Pakistan's seaward defence "impregnable".
Summary:
Belgium is expected to become the first country to appoint a female envoy to Saudi Arabia with the appointment of Dominique Mineur to the post, Belgium state broadcaster has reported.
Summary:
The RBI's decision to initiate a prompt corrective action (PCA) against some public sector banks (PSBs) led to rumours that the government may close down some banks.
Summary:
The case led to five police officials getting suspended for insensitivity, negligence, and delay in registering the offence.
Summary:
Indian researchers in 2017 were behind several scientific achievements, one of them being ISRO launching record 104 satellites at once in February.
Summary:
Arora has been working with Airtel in senior leadership roles since 2006 and was appointed Airtel Payments Bank's CEO on June 1, 2016.
Summary:
Dutch painter Vincent van Gogh cut off his left earlobe with a razor on December 23, 1888, later documenting it in a painting titled 'Self-Portrait with Bandaged Ear'.
Summary:
Elon Musk-led space exploration startup SpaceX has set a record for the most number of rockets launched in one year by a private space company, with its 18th launch on Friday.
Summary:
US-based researchers have developed a process where graphene, a 2D form of carbon, temporarily becomes impenetrable and harder than diamond upon impact.
Summary:
NASA astronaut Bruce McCandless, the first person to fly freely and untethered in space, has died aged 80.
Summary:
Apart from Nath, the President of Tripura unit of Pradesh Mohila Congress, Himani Debbarma, also switched to BJP.
Summary:
RJD Supremo Lalu Prasad Yadav, ahead of the special CBI court's verdict on fodder scam case in Ranchi, said that he has faith that will get justice.
Summary:
India is a model for peacefully resolving maritime disputes and a strong provider of security, US Navy Secretary Richard Spencer has said praising India for peacefully resolving a maritime border dispute with the US in the Indo-Pacific region.
Summary:
Human Resource Development Minister Prakash Javadekar was seen outside the Parliament on Friday, using a purple landline-receiver attached to his cellphone reportedly to prevent harmful radiations emitting from the phone.
Summary:
Delhi Chief Minister Arvind Kejriwal's name is not included in the list of VIP guests invited for the inauguration of Delhi Metro's Magenta Line.
Summary:
The traditional presidential seal on the collectible coin has also been replaced with an image of an eagle bearing Trump's signature.
Summary:
An elderly US couple was caught with 27 kg of marijuana worth over $300,000 (nearly â¹2 crore) in their pickup truck.
Summary:
A North Korean soldier who escaped to South Korea will receive a lifetime supply of Choco Pies, a popular snack in both the countries.
Summary:
Amitabh Bachchan, while speaking at the launch of the teaser of late Shiv Sena founder Bal Thackeray's biopic, revealed that Thackeray had a photo of the actor next to his head on his deathbed.
Summary:
Indian Olympic gold medalist Abhinav Bindra has requested the Sports Minister Rajyavardhan Singh Rathore to relieve him from key shooting posts to avoid a potential conflict of interest as he is also involved in private projects.
Summary:
India's stand-in captain Rohit Sharma made a wicket-keeping gesture after being dismissed in the second T20I against Sri Lanka to signal to the dressing room to send keeper MS Dhoni to bat at number three.
Summary:
Indian wicketkeeper MS Dhoni was run out on a duck on his One-Day International debut for India while facing Bangladesh on December 23, 2004.
Summary:
Train Ticket Examiners and their superintendents in premium trains like Rajdhani, Shatabdi and Duronto will soon be dressed in grey jackets, grey trousers, white shirts and red ties.
Summary:
Summary:
Spain-based astronomers estimate that the skull-shaped "Halloween" asteroid which flew harmlessly by Earth on October 31, 2015, will return in November 2018.
Summary:
National Conference MLA Abdul Majeed Larmi on Saturday said all those killed in Kashmir, including militants and Hizbul Mujahideen commander Burhan Wani, were 'martyrs'.
All those, including militants, who are being killed in Kashmir are 'martyrs'," he said.
Summary:
Replying to his tweet, a Congress worker said, "Another one- If BJP had a film franchise it would be called Ocean of lies".
Summary:
Police in Iran have arrested 230 boys and girls for dancing and drinking alcohol at parties in the capital city of Tehran.
Summary:
The Federal Bureau of Investigation (FBI) has arrested a former US Marine, Everitt Jameson, for allegedly plotting an attack inspired by the Islamic State on Christmas in San Francisco.
Summary:
It is also offering a special exchange offer on ELANTRA & TUCSON of â¹70,000(P/D).
Summary:
The Finance Ministry has revealed that banks lost â¹16,789 crore due to frauds in last fiscal.
Summary:
The sanctions have been imposed in response to the test-launch of an intercontinental ballistic missile (ICBM) by North Korea last month.
Summary:
The legislation will nearly double the standard deduction for individuals and cut the corporate tax rate from 35% to 21%.
Summary:
A UK Army officer and an ex-diving instructor have married underwater in the Florida Keys National Marine Sanctuary after a four-year long-distance courtship.
Summary:
Two heterosexual Irish men, Matt Murphy and Michael O'Sullivan, have married in Dublin to avoid paying inheritance tax.
Summary:
After chairing his first Congress Working Committee as party President, Rahul Gandhi on Friday said, "Everyone knows about 2G, the truth has come out in front of you." On Thursday, the Patiala House Court acquitted all accused in the 2G scam case, including former Telecom Minister A Raja and DMK leader Kanimozhi.
Summary:
After chairing his first Congress Working Committee as party President, Rahul Gandhi on Friday said that the "whole architecture of BJP is about lies".
Summary:
Argentina-based scientists have found fossils of a carnivorous marine reptile that lived 150 million years ago in Antarctica.
Summary:
The Central Bureau of Investigation will move the Supreme Court against the Allahabad High Court verdict acquitting Rajesh and Nupur Talwar in the murder case of their daughter Aarushi and domestic help Hemraj.
Summary:
Earlier on Friday, Jiechi met National Security Adviser Ajit Doval for annual boundary negotiations.
Summary:
At least 26 people have died and 24 have been injured after a bus fell off a bridge in Banas river in Rajasthan's Sawai Madhopur on Saturday.
Summary:
A drug dealer carrying around 1,000 marijuana joints jumped into a police patrol car after mistaking it for a taxi in the Danish capital of Copenhagen, said the police.
Summary:
Policewoman Madhubala Devi set Nayanthara's photo as her profile picture while posing as a girl interested in a love affair with the alleged gangster.
Summary:
Salman further said whenever he'd go around looking for director's work everyone told him he should become an actor.
Summary:
Rape-accused producer Harvey Weinstein's ex-wife Eve Chilton has asked him to pay â¹32 crore ($5 million) for child support immediately as the ongoing legal proceedings against him could leave him financially insolvent.
Summary:
Rajkummar Rao and Alia Bhatt have been named the Hottest Vegetarians of 2017 by animal rights organisation PETA.
Summary:
In its review analysis of the Himachal Pradesh Assembly elections loss, Congress members have blamed infighting, sabotage by local leaders, and lack of resources as the reason for the defeat.
Summary:
The athletes were stripped of their medals and banned from participating in any future Olympic events.
Summary:
Australian cricket captain Steve Smith played a few rounds of tennis with former world number three and Wimbledon 2016 finalist Canada's Milos Raonic ahead of Australian Open, 2018's first Grand Slam of the season.
Summary:
Digital payments in India will supersede cash and non-digital payments by 2022, according to a report by International Data Corporation.
Summary:
US-based astronomers studying a Sun-like star have found evidence suggesting its dimming could be caused by orbiting gas and dust clouds, likely the remains of destroyed planets.
Summary:
After running out of hydrogen, the star shrank, causing it to heat up.
Summary:
After a woman claimed to be late Tamil Nadu CM J Jayalalithaa's daughter in a petition, the Madras High Court directed the Apollo Hospital to provide Jayalalithaa's blood samples.
Summary:
Kumar posed his request after Rajnath Singh finished his IB endowment lecture, where he spoke about various policing challenges in India.
Summary:
Aadhaar registration is required for children availing food under the centrally sponsored National Nutrition Mission, Union Minister Virendra Kumar said in the Parliament on Friday.
Summary:
Israeli PM Benjamin Netanyahu has said that several nations are considering moving their embassies in Israel to Jerusalem, following the US' move in recognising Jerusalem as its capital.
Summary:
India defeated Sri Lanka by 88 runs in the second T20I in Indore on Friday, taking an unassailable 2-0 lead in the three-match series and registering their fifth consecutive international series victory.
Summary:
Rohit overtook South Africa's AB de Villiers, who slammed 63 sixes in 2015.
Summary:
Rohit, along with Lokesh Rahul, put up 165 runs for the first wicket, registering the highest partnership for India in T20Is.
Summary:
The Indian PM's security is constituted by the Special Protection Group (SPG), which is the sole security organisation overseeing and coordinating PM's security.
Summary:
Indian batsmen Rohit Sharma and Lokesh Rahul put up a 165-run stand for the first wicket against Sri Lanka in the Indore T20I, registering the highest partnership for India in T20I cricket history.
Summary:
India consumes the maximum amount of mobile data in the world at 150 crore gigabytes per month, NITI Aayog CEO Amitabh Kant said on Friday.
Summary:
As per reports, the Central Board of Film Certification (CBFC) has now asked the Mewar royal family to join a panel that would help in certifying Sanjay Leela Bhansali's film 'Padmavati'.
Summary:
The Bharatiya Janata Party (BJP) has reached the 100-mark in the 182-member Gujarat Assembly after an independent MLA announced his "unconditional support" for the party.
Summary:
Adarsh Housing Society was a residential complex in Mumbai, originally meant to provide houses to Kargil war widows.
Summary:
On December 8, 2011, India had achieved their highest-ever ODI total by putting up 418/5 against Windies at the same stadium.
Summary:
Reacting to Rohit Sharma hitting the joint-fastest T20I hundred off 35 balls, former Indian cricketer Virender Sehwag tweeted, "RoHit Sharma !
It ain't this easy yaar." Meanwhile, former cricketer VVS Laxman tweeted, "What a stunning century it was from Rohit Sharma.
Summary:
The Delhi Police and Municipal Corporation of Delhi (MCD) on Friday sealed shops and restaurants in South Delhi's Defence Colony market over alleged unauthorised construction.
Summary:
The High Court had called the 85% warning rule an "unreasonable restriction".
Summary:
The Uttar Pradesh Assembly on Friday passed a bill to award death penalty, life imprisonment, and up to â¹10-lakh fine to those dealing in illicit liquor if its consumption leads to death.
Summary:
He also suggested the creation of a separate ministry to be named as 'Ministry of Population Regulation'.
Summary:
The US has reportedly listed the Milli Muslim League (MML), the political party founded by Jamaat-ud-Dawah (JuD) chief and Mumbai terror attack mastermind Hafiz Saeed, as a terrorist organisation.
Summary:
Mumbai terror attack mastermind and Jamaat-ud-Dawah (JuD) chief Hafiz Saeed has warned that the US' move recognising Jerusalem as Israel's capital could lead to a declaration of war across the Middle East.
Summary:
Whistleblowing website WikiLeaks has gifted a pair of virtual cryptocurrency kitties to US President Donald Trump and his ex-presidential rival Hillary Clinton.
Summary:
After WWE wrestler John Cena shared a video of actor Shah Rukh Khan's speech at TED Talks, the actor replied, "Thanks for taking out time to 'see' it.
Summary:
He added, "Both PadMan and Aiyaary are absolutely different.
Summary:
Actor Salman Khan, who topped the Forbes India Celebrity 100 list with earnings of â¹232.83 crore, earned â¹164.83 crore more than actress Priyanka Chopra, who had an annual income of â¹68 crore in 2017.
Summary:
A case has been registered against two sons of Rajasthan BJP Minister Hem Bhadana for allegedly abducting and assaulting a man on Wednesday.
Summary:
The Dawoodi Bohra sect in Maharashtra asked its community members to use Indian-style toilets instead of western toilets.
Summary:
Summary:
In response to a user's tweet that Elon Musk should buy Twitter, the billionaire CEO of Tesla asked how much the microblogging site costs.
Summary:
An eight-year-old girl was allegedly gangraped by a 19-year-old and five minors aged between six and 12 in Pune.
Summary:
Addressing a press conference with Palestinian President Mahmoud Abbas, French President Emmanuel Macron said that the US has marginalised itself in the Israel-Palestine conflict by recognising Jerusalem as Israel's capital.
Summary:
Rohit's century is the fastest by an Indian across all formats in international cricket.
Summary:
A day after Sachin Tendulkar was prevented from making his debut speech in Rajya Sabha, the former cricketer took to Facebook to deliver his message.
Summary:
The Aligarh administration on Thursday issued notices to five Hindu Jagran Manch leaders, warning them that they should not be found within a 50-metre radius of schools on Christmas.
Summary:
The US should treat Pakistan and India equally, Pakistan's Foreign Secretary Tehmina Janjua said on Friday, expressing concerns over her country being put on notice by the US for providing safe havens to terrorists on its soil.
Summary:
This comes after Congress' demand for an apology over PM Narendra Modi's remarks on former PM Manmohan Singh led to repeated adjournments of the Rajya Sabha.
Summary:
A Test is considered drawn, and not tied if the batting team has wickets remaining when the time expires, even if the scores are level.
Summary:
A 150-metre-high Dh160 million (approximately â¹280 crore) structure of a frame is set to open in Dubai next month.
Summary:
In a first, MIT and Harvard researchers have found that a single injection of a gene-editing substance prevented deafness in baby mice who inherited progressive hearing loss.
Summary:
However, the suspension of the e-KYC licence of Airtel Payments Bank has not been revoked.
Summary:
Ripple is world's fourth largest cryptocurrency with a market capitalisation of over $52 billion.
Summary:
Veteran actor Randhir Kapoor said that if some interesting script comes his way, he is ready to work with his daughters Karisma Kapoor and Kareena Kapoor Khan.
Summary:
Right-wing group Hindu Jagran Manch has written to the Censor Board while protesting outside its regional office against the Bengali film 'Rong Beronger Kori' for naming the protagonists after Ram and Sita.
Summary:
Summary:
Actress Neha Dhupia has said that she literally slept in her bed with the award she received at a recent awards ceremony the night she received it.
Summary:
The gown was designed by luxury label Ralph & Russo.
However, some Twitter users slammed her over the expensive gown and a user called her "thoughtless".
Summary:
Summary:
The police said that Sangeeta was drunk when she fired the shots and injured her mother and brother after a heated argument.
Summary:
"I want my country to be united in a secular fabric.
Summary:
A man has been arrested for allegedly setting a woman on fire in public in Hyderabad's Lallaguda for rejecting his marriage proposal.
Summary:
A murder case has been registered by Haryana Police against unknown persons and a three-member SIT has been formed to probe his death.
Summary:
A video of a government school teacher getting a massage from a student in Madhya Pradesh's Damoh district has surfaced online.
Summary:
Former Australian spinner Shane Warne has said that Australia captain Steve Smith is the best Test batsman in the world, ahead of India captain Virat Kohli.
Summary:
HDFC has approved the sale of its realty brokerage business HDFC Realty and digital real estate business HDFC Developers to online classifieds platform Quikr for around â¹357 crore, according to filings.
Summary:
Italian police have arrested an ambulance worker suspected of killing patients to earn money from a funeral parlour linked to the mafia.
Summary:
The price for the buyback offer was fixed at â¹320 per share.
Summary:
State-owned Bank of India will shut 400 ATMs to cut costs as part of a turnaround plan.
Summary:
The report further said that extensive powers of the government to override RBI decisions should be addressed through legal amendments.
Summary:
Bharatiya Janata Party on Friday decided to retain Vijay Rupani as Gujarat Chief Minister for a second term.
Summary:
India captain Virat Kohli has featured as the highest-paid sportsperson in the 2017 Forbes India Celebrity 100 list with â¹100.72 crore earnings.
Summary:
The police said that all the accused have been arrested.
According to reports, four out of the five accused are suspected to be juvenile.
Summary:
Microsoft Co-founder Bill Gates gifted a woman named Megan Cummins a stuffed Pusheen cat as part of Reddit's Secret Santa.
Summary:
Virat and Anushka on Wednesday had visited PM Modi and invited him in person for the reception.
Summary:
Several protesters vandalised the posters of Salman Khan starrer 'Tiger Zinda Hai' at a cinema hall in Jaipur over an alleged casteist remark that he made on television.
Summary:
The Election Commission on Thursday recorded a voter turnout of 77% in the bypoll held in Tamil Nadu's RK Nagar.
Summary:
Nearly 20 Pakistani cricketers, including Saeed Ajmal, have been left stranded in Uganda over payment dispute with a T20 league organiser.
Summary:
Nadella added he is proud of the company that Gates and Ballmer built.
Summary:
New Zealand's government has signed an agreement of understanding with local tribes to give Mount Taranaki the same legal rights as a person.
Summary:
Amazon has reportedly also applied for a trademark for 'OpenTube'.
Summary:
National Mathematics Day is celebrated on December 22, since 2012, after former Prime Minister Manmohan Singh made the declaration to pay tribute to Srinivasa Ramanujan on his birth anniversary.
Summary:
China's ruling Communist Party has said that the party members must do as they are told as that is the only way to guarantee the authority of the central leadership.
Summary:
Reacting to brother Krunal Pandya's wedding announcement on Twitter, India all-rounder Hardik Pandya wrote, "@krunalpandya24: Caught n Bowled Pankhuri - 0(1)...My jaans are getting married and I am super excited for the wedding.
Summary:
He further alleged BJP workers were being "brutally killed" in Karnataka and it's in a "state of anarchy" under the Congress rule.
Summary:
After a CBI court acquitted former Telecom Minister A Raja and all other accused in the 2G spectrum allocation scam case on Thursday, A Raja wrote a letter of gratitude to DMK Chief Karunanidhi.
Summary:
US-based scientists have developed a technique for directly printing metal circuits to create stretchable electronics.
Further, in case of damage, the circuits could be "healed" by heating, said researchers.
Summary:
Bansal said that Flipkart has begun recruiting AI experts and building infrastructure for its internal AI unit called 'AIforIndia'.
Summary:
Researchers from the University of Tokyo have developed a humanoid robot called Kengoro which is designed to sweat while doing push-ups.
Summary:
An official said, "The gold...
Summary:
Archaeologists have discovered a 1,300-year-old stone monument in Mongolia.
Summary:
The museum will feature themed places where visitors can take selfies, showcase selfie-inspired art and feature a Game of Thrones-inspired Iron Throne made of selfie sticks.
One of its co-founders said, "The relationship between people and art has changed.
Summary:
Electric carmaker and Tesla rival Faraday Future reportedly raised $1 billion, the startup's investor Jia Yueting claimed.
Summary:
Israel's Mossad intelligence agency is seeking fresh recruits by advertising employment opportunities on its Facebook page.
Summary:
Authorities in Australia on Thursday seized 1.2 tons of the drug methamphetamine worth nearly â¹5,000 crore, in their biggest-ever haul.
Summary:
Reportedly, Reliance Jio is interested in acquiring a range of RCom's spectrum, which will be valued at about â¹19,000 crore.
Summary:
Baba Ramdev promoted Patanjali has been ranked as India's most trusted Fast Moving Consumer Goods (FMCG) brand, according to the Brand Trust Report India Study 2017.
Summary:
The film "could have done with more sense and subtlety," said NDTV while The Times of India (TOI) wrote, "This Tiger is alive and kicking".
Summary:
Rajasthan government on Thursday approved 1% reservation for members of the Gujjar community and four other backward castes.
Summary:
The train was operational for about 9 months till its engine caught fire in 1852.
Summary:
A woman in Uttar Pradesh was allegedly gangraped by her brother-in-law and his friend on her wedding night, following which her husband divorced her through instant Triple Talaq after she complained to him.
Summary:
The boy removed his red shirt and flagged it to stop the train on the track in West Champaran district.
Summary:
US Ambassador Nikki Haley on Thursday said the US will ''remember this day'' for being ''singled out'' after the UN General Assembly voted 128-9 to reject the US' recognition of Jerusalem as Israel's capital.
Summary:
India on Thursday slammed United Nations Security Council for not deciding for more than a year whether to designate the Taliban leaders in Afghanistan as global terrorists or to freeze their assets.
Summary:
After Samajwadi Party MP Jaya Bachchan expressed anger over Sachin Tendulkar's speech being interrupted in the Rajya Sabha, Congress MP Renuka Chowdhury asked if being awarded a Bharat Ratna gave anyone the licence to speak.
Summary:
Over 40 girls have been rescued from self-styled godman Baba Virendra Dev Diskhit's ashram in Delhi by a team of senior officials, including Delhi Commission for Women Chief.
Summary:
Bombay High Court on Friday set aside Maharashtra Governor's 2016 sanction to prosecute former Maharashtra CM Ashok Chavan in the Adarsh Housing Society scam.
Summary:
Cryptocurrency exchange EtherDelta suffered a security breach as hackers managed to take control over its DNS server and redirected the etherdelta.com domain to a malicious server hosting a copy of their website.
Summary:
Former Google CEO Schmidt will continue to serve on the company's board and become a technical advisor to Alphabet, the company said.
Summary:
The world's first-ever detection of two neutron stars colliding, which revealed the origin of heavy elements like gold and platinum, was voted as the scientific breakthrough of 2017 by the journal 'Science'.
Summary:
Japan's government has boosted the country's defence budget to a record level of nearly â¹3 lakh crore (ÃÂ¥5.19 trillion) for the next fiscal to strengthen its defence capabilities against threats posed by North Korea's nuclear programme.
Summary:
IT major Tata Consultancy Services (TCS) has secured a $2.25 billion outsourcing contract from television rating measurement firm Nielsen, the largest ever bagged by an Indian IT firm.
Summary:
Bitcoin currently has a market capitalisation of over $210 billion and accounts for about 44% of the cryptocurrency market.
Summary:
A video shows Indian cricket team captain Virat Kohli and his wife, actress Anushka Sharma dancing together while Punjabi singer Gurdas Maan performed live at their wedding reception held in Delhi on Thursday.
Summary:
Earlier, it was supposed to be directed by Honey Trehan, who was an assistant director in Bhardwaj's 'Omkara'.
Summary:
Defence Minister Nirmala Sitharaman, while attending a party meeting in Shimla on Thursday, said the BJP could have had a better win in Himachal Pradesh.
She is in Himachal Pradesh as the party observer.
Summary:
Uttar Pradesh CM Yogi Adityanath in Karnataka said people of the state have to decide whether they want a land where saints and gods are worshipped or where Tipu Sultan is worshipped.
Summary:
Doval and Jiechi are expected to discuss ways to maintain peace and tranquillity along the 4,000-km-long border.
Summary:
The funding round has taken the total funding raised by the startup to $13 million, Indus OS said in a statement.
Summary:
A video shows a staffer in a Thai zoo poking a chained tiger with a stick to make it roar while tourists pose for photographs.
Summary:
The Trump SoHo hotel in New York has officially changed its name to The Dominick as part of a rebranding effort.
Summary:
UK-based scientists have directly observed bacteria living deep inside Arctic and Antarctic ice, an environment once considered sterile.
Summary:
In another case, a passenger was arrested for allegedly attempting to smuggle gold worth â¹42.67 lakh and saffron worth â¹3 lakh overseas.
Summary:
The UK government said the new passport will be one of the world's most secure travel documents.
Summary:
Coca-Cola has launched Glaceau smartwater in India.
Summary:
While Shah Rukh Khan featured in the second spot with earnings of â¹170.50 crore, Indian cricket team captain Virat Kohli came third with â¹100.72 crore earnings.
Summary:
The UN General Assembly on Thursday voted 128-9 in favour of a resolution opposing the US move to recognise Jerusalem as Israel's capital.
Summary:
After the court acquitted all accused in the 2G spectrum case, Congress leader Veerappa Moily demanded that the then Comptroller and Auditor General Vinod Rai apologise for his "presumptive loss" allegations.
Summary:
US President Donald Trump has put Pakistan on notice for providing safe haven to terrorist organisations in its soil, US Vice President Mike Pence has said during his unannounced visit to Afghanistan.
Summary:
Directed by MNS leader Abhijit Panse, it has been written by Shiv Sena spokesperson Sanjay Raut, who will also produce the film.
Summary:
The official photographs of UK's Prince Harry and actress Meghan Markle's engagement have been released on the Instagram page of Kensington Palace.
Summary:
Adityanath said the law would end cases political in nature against leaders cutting across party lines.
Summary:
India was among the 128 countries which voted in favour of a resolution rejecting the US' recognition of Jerusalem as Israel's capital at the 193-member United Nations General Assembly's meeting on Thursday.
Summary:
Three days after the BJP won the Gujarat Assembly elections, CM Vijay Rupani and Deputy CM Nitin Patel on Thursday submitted their resignations to Governor OP Kohli.
Summary:
Accusing the BJP of conspiring to acquit the accused in 2G spectrum case, the AAP said the nation would never accept that there was no corruption in the alleged scam.
Summary:
An interpreter for Polish PM Mateusz Morawiecki mistakenly called UK PM Theresa May 'Madam Brexit' while the two European leaders addressed a press conference on Thursday.
Summary:
The bandh was organised to protest against the state government's new sand mining policy.
Summary:
SpiceJet reported 259 technical snags, while Jet Airways and IndiGo reported 80 and 37 glitches on their planes respectively.
Summary:
NASA has selected two mission concepts, to return a comet sample to Earth and explore the habitability of Saturn's largest moon Titan, for a $850-million funding.
Summary:
The gel consisting of a synthetic form of progestin is said to block testes from making enough testosterone to produce normal sperm levels.
Summary:
Martian surface went barren as water was absorbed by rocks, which can hold 25% more water than those on Earth, an Oxford University research has proposed.
Summary:
Cricketers Suresh Raina, Shikhar Dhawan and Gautam Gambhir were among those who attended the wedding reception of Indian cricket team captain Virat Kohli and actress Anushka Sharma, which was held at the Taj Diplomatic Enclave in New Delhi.
Summary:
Park officials believe it was a pre-planned act, as vandals would have known exactly where the footprint was.
Summary:
The Himachal Pradesh High Court has ordered state authorities to take action against 116 hotels and guesthouses operating illegally in Dharamshala and immediately disconnect their water and electricity connections.
Summary:
When the official Twitter handle of Vice President Venkaiah Naidu tweeted, "M", several users tried to guess the meaning of the tweet.
Summary:
The 16-year-old accused in the Ryan International School murder case has filed a second bail application in a district sessions court on Thursday.
Summary:
Claiming to be a biological daughter of late Tamil Nadu CM J Jayalalithaa, a woman has moved the Madras High Court seeking cremation of Jayalalithaa's body as per the Iyengar Brahmin community rituals.
Summary:
Centre will provide ferry facilities to devotees of Lord Shiva from Sri Lanka to Chennai to visit the Thillai Nataraja Temple in Tamil Nadu, the Ministry of External Affairs said on Thursday.
Summary:
External Affairs Minister Sushma Swaraj on Wednesday said that medical visas of three Pakistani nationals have been approved by the Ministry of External Affairs.
Summary:
A district school board in West Bengal has issued a directive that requires parents to submit an undertaking if their house has a toilet or not to get their children's marksheet.
Summary:
A 64-year-old man in Jordan has set up a hotel in a Volkswagen Beetle, which he claims is the worldâÂÂs smallest hotel.
Summary:
In his 1,552-page judgement on the 2G spectrum case, Special Judge OP Saini said he waited seven years for permissible evidence in the case, and religiously sat in the open court every working day, foregoing summer vacations.
Summary:
After being acquitted in the 2G spectrum allocation case, Former Telecom Minister A Raja said he brought revolution to the telecom sector but was labelled a criminal for it.
Summary:
Prime Minister Narendra Modi on Thursday attended the wedding reception of Indian captain Virat Kohli and his wife, actress Anushka Sharma, which was held at the Taj Diplomatic Enclave in New Delhi.
Summary:
Indian captain Virat Kohli and his wife, actress Anushka Sharma, made their first public appearance post wedding at their reception at the Taj Diplomatic Enclave in New Delhi on Thursday.
Summary:
NITI Aayog Director General Anil Srivastava has said that India will create 10 crore new jobs by the year 2020 due to the government's initiatives such as Make in India and Startup India.
Summary:
Hogg overtook former Sri Lankan player Ajith Ekanayake, who had achieved the feat aged 46 years and 179 days.
Summary:
Uttar Pradesh Chief Minister Yogi Adityanath has said the government is planning to set up cow sanctuaries in all 75 districts of the state.
Summary:
Bravo is followed by Lasith Malinga, who has taken 331 wickets in T20s.
Summary:
The Janki Ghat Bada Sthan Temple in Ayodhya has installed heaters for the idols owing to the cold weather, temple priest Mahant Janmejay Sharanhe revealed.
Summary:
The government has received over â¹666 crore in donations to the Swachh Bharat Kosh from the corporate sector and individuals since 2014, MoS for Drinking Water and Sanitation Ramesh Jigajinagi informed the Lok Sabha on Thursday.
Summary:
India had achieved its previous best year-end ranking in 1993 when it finished the year as 100th-ranked team.
Summary:
Pakistan's Foreign Office on Thursday said that Indian national Kulbhushan Jadhav was not under any threat of immediate execution.
Summary:
Turkish President Recep Tayyip ErdoÃÂan has warned US President Donald Trump that he "cannot buy Turkey's democratic will" on UN's Jerusalem vote with dollars.
Summary:
As many as 153 Initial Public Offerings (IPOs) hit the Indian stock market this year, raising $11.6 billion, according to an EY report.
Summary:
Actress Bipasha Basu has denied rumours that she is expecting her first child with her husband Karan Singh Grover, whom she married in 2016.
Summary:
According to reports, the Sanjay Leela Bhansali directorial 'Padmavati' will not release before March or April as the Central Board of Film Certification(CBFC) hasn't scheduled it for certification.
Summary:
A beggar living in Uttar Pradesh's Raebareli was found in possession of an Aadhaar card and Fixed Deposit documents worth â¹1 crore.
Summary:
A transgender rights activist has complained of sexual harassment by Delhi airport staff on December 17.
While the activist was using the disability restroom at the airport, a cleaning staff opened it as the lock wasn't functioning properly.
Summary:
The Indian hockey team management has introduced 'NeuroTracker' to enhance the mental strength of the members of the women's hockey team, ahead of next year's Commonwealth Games, Asian Games and the World Cup. The program uses 3D multiple object tracking to enhance situational awareness, attention and cognitive stamina.
Summary:
Vidarbha will face Delhi in the Ranji Trophy final scheduled to start on December 29.
Summary:
The court ordered a probe in the role of officials who allowed encroachment, calling it a case of "abuse of power".
Summary:
Pakistan on Thursday said it will release 291 Indian fishermen, who were held for allegedly illegally fishing in its territorial waters, on humanitarian grounds.
Summary:
The Kolkata Police has arrested a 20-year-old college student for posting insulting content about famous leaders and personalities on his Facebook page.
Summary:
Saudi Arabia on Thursday paid 2 billion riyals (over â¹3,400 crore) to half of the kingdom's population under a new welfare scheme for low and middle-income families.
Summary:
During a special emergency session at the UN General Assembly over the US decision to recognise Jerusalem as Israel's capital, US Ambassador to the UN Nikki Haley said that no vote can make a difference to the country's move.
Summary:
He further said that as per the provisional figures, Air India's total loans as on March 31, 2017 are around â¹48,877 crore.
Summary:
Maruti Suzuki has launched the all-new CelerioX in India.
Summary:
The 2G spectrum scam, which the CAG claimed caused a â¹1.76 lakh-crore presumptive loss to the national exchequer, involved Sun TV's Maran brothers, executives from Reliance ADAG, including its President Surendra Pipara and Senior Vice President Hari Nair.
Summary:
The average annual salary of the five taxpayers was â¹126.4 crore.
Summary:
The latest round of funding has valued the company at around $56 billion.
Summary:
The pension covers accidental death or sustained injury due to natural calamities such as floods and avalanches while performing operational duties.
Summary:
A banner stating that the act attracts strict action was put up near the residence, prohibiting people from taking pictures.
Summary:
German conglomerate Thyssenkrupp AG has developed elevators called 'Multi' which can operate without cables, and is starting trials for the first system.
Summary:
US-based augmented reality (AR) startup Magic Leap, which has raised over $1.8 billion to date, has revealed its first product, an AR headset called Magic Leap One. The headset, consisting of round-lensed goggles, comes with a controller and computing unit designed to be worn on the belt.
Summary:
A thrift store worker in US' Texas found over $17,000 (â¹10.9 lakh) in the pocket of a donated coat.
Summary:
Ducatus Cafe, owned by cryptocurrency mining company Ducatus Global, accepts Bitcoin, its own virtual currency called Ducatus, and other cashless payments.
Summary:
It said this defeats the intention of appointing contractual employees who should perform specific tasks of defined duration.
Summary:
A Burger King franchisee in the US has agreed to pay $250,000 (â¹1.6 crore) after investigators found 843 child labour violations in its restaurants in Massachusetts.
Summary:
While talking about actor Amitabh Bachchan, actress Alia Bhatt said that he is a very warm person and tries to make everyone feel comfortable.
Summary:
While responding to reports of himself and Salman Khan featuring in the sequel of their 2007 film 'Partner', Govinda said that he hasn't been finalised for the sequel.
Summary:
At least four people were killed and nine injured when a boiler in a sugar factory in Bihar's Gopalganj district exploded on Wednesday.
Summary:
The driver of the car that struck Williams' SUV has also beenÃÂ cleared.
Summary:
A female passenger passed out in her seat about 20 minutes into an Air China flight, causing the plane to turn around.
Summary:
The relations between China and Taiwan have deteriorated since last year following the inauguration of Taiwan's President Tsai Ing-wen, who refuses to acknowledge both sides are part of "one China".
Summary:
After US branded China as a "revisionist power" seeking not only to challenge the country's power but to erode its security and prosperity, the Chinese Defence Ministry said that the US was hyping up China's military modernisation.
Summary:
Kobe Steel has admitted for the first time that three senior executives were aware of the data tampering behind the company's recent fabrication scandal.
Summary:
European steel giant ArcelorMittal has agreed to pay $1.5 million to settle a lawsuit alleging that its coke plant in the US emitted large amounts of pollution.
Summary:
Shares of American fast-food chain Chipotle fell nearly 5% on Friday after reports surfaced that some of its workers at a Los Angeles restaurant were ill.
Summary:
He said this is close to Indian Railways' revenue of â¹1.68 trillion during 2015-16.
Summary:
The Finance Ministry said it hasn't provided entire amount towards capital infusion in public sector banks as most banks failed to meet performance target.
Summary:
Anil Ambani-led Reliance Infrastructure (RInfra) has agreed to sell its Mumbai power business to Adani Transmission in a deal valued at â¹13,251 crore.
Summary:
The company claims that the phone, priced at $52 (â¹3,330), is smaller than a human thumb and lighter than a ã2 coin.
Summary:
The insolvency petition by the couple is for their contractual dues as an operational creditor.
Summary:
Veteran actor Om Puri passed away at the age of 66 after suffering a heart attack in January.
Vinod Khanna, who was reportedly suffering from cancer, passed away in April at the age of 70.
Summary:
The government too cannot construct the temple as India is a secular country, he added.
Summary:
Tendulkar, who was nominated to the House in 2012, was to speak on the dismal condition of sports education and facilities available in India.
Summary:
Indian spinner Ekta Bisht was named in both the ICC women's ODI and T20I teams of 2017, making her the lone cricketer to feature in both the teams.
Summary:
Captain Komal Zanzad picked up nine wickets to help Vidarbha dismiss Haryana for 31 runs in 18.4 overs in the quarter-final of the plate division of the Senior Women's One-Day League on Thursday.
Summary:
After a Delhi court acquitted all accused in the 2G spectrum allocation scam case on Thursday, Finance Minister Arun Jaitley said Congress is treating the court's verdict as a "badge of honour".
Summary:
Former PM Manmohan Singh on Thursday said the 2G scam accusations leveled against the UPA government were massive propaganda without any foundation.
Summary:
Security agencies in Ladakh have been put on high alert after the phones were found contacting Chinese numbers.
Summary:
Samsung's mobile business in India has seen an increase of 27% in revenue to more than â¹34,000 crore for the year ended March 2017.
Summary:
Facebook has been accused of age discrimination after a report showed that they allowed employers to exclude older users from seeing their job ads.
Summary:
Israeli Prime Minister Benjamin Netanyahu described the UN as a "house of lies" ahead of a vote on a draft resolution calling on the US to withdraw its recognition of Jerusalem as Israel's capital.
Summary:
Police have arrested the driver and a second man over the incident.
Summary:
The app uses the smartphone's camera and adds fart effects like a rainbow or cloud while recording the videos.
Summary:
Police officers have said that the air inside a house hosting a college fraternity party in US' Maryland registered a .01 on a Breathalyzer due to the excessive alcohol being served there.
Summary:
In September, the London court asked Bakshi to sell his 50% stake in local joint venture to McDonald's.
Summary:
Actress-turned-author Twinkle Khanna, who has produced Akshay Kumar starrer 'PadMan', said he was not the first choice for the film.
Summary:
Summary:
The relatives of the twins who were erroneously declared 'dead' by Delhi's Max hospital staged a protest outside the hospital on Thursday, a day after it resumed operations.
Summary:
Dubbed as India's biggest annual cake show, the 43rd Annual Cake Show has begun in Bengaluru, which showcases cakes based on unique themes.
Summary:
The US Homeland Security Adviser Tom Bossert has reported that Facebook and Microsoft disabled a range of North Korean online threats in the past week.
Summary:
Apple is reportedly planning to combine iOS and macOS apps by next year.
Summary:
Security has been increased at the Delhi, Mumbai, Lucknow, and Hyderabad airports for the past 10 days.
Summary:
Dubai is set to get a new hotel with a 170-metre-high 'sky pool' connecting two towers.
Summary:
A surprise visit by Ivanka Trump to a school in Connecticut, US prompted parents to pull their children out of classes to protest the first daughter and her father President Donald Trump.
Summary:
Bank of Korea Governor Lee Ju-yeol has said there is 'irrational exuberance' in trading of virtual currencies like Bitcoin, which have risen dramatically in value this year amid frenzied speculation.
Summary:
Ministry of Information and Broadcasting has clarified that condom advertisements without sexually explicit content can be aired between 6 am and 10 pm.
Summary:
Trump had recently said that foreign countries send their "worst of the worst" people to the US through the country's green card immigration lottery system.
Summary:
This year, the design features over 30 deluxe suites, a frozen playground for kids and an ice bar.
nIt was founded in 1989 and has been rebuilt yearly since then.
Summary:
The European Court of Justice has ruled that a sorbet can be called a 'champagne sorbet' if it tastes like champagne.
Summary:
During his first appearance before a Senate committee on Tuesday, Pakistan's Army chief General Qamar Javed Bajwa urged lawmakers to try to normalise relations with India.
Summary:
Acquitting all accused in the 2G scam case, special court judge OP Saini on Thursday said that the public prosecutor failed miserably in proving their case.
Summary:
Food Safety and Standards Authority of India (FSSAI) will soon certify street food localities across the country as 'clean street food hubs', if they fulfil certain food safety and hygiene criteria.
Summary:
With a total of 822 deaths, Uttar Pradesh recorded the highest death toll in India due to Acute Respiratory Infections (ARI) in 2016, government data has revealed.
Summary:
Apple has admitted that it slows down old iPhone models that have low capacity batteries to avoid unexpected shutdowns.
Summary:
Ride-hailing startup Uber has appointed its first-ever Chief Operating Officer (COO), selecting Barney Harford, the former CEO of online travel site Orbitz, for the post.
Summary:
North Korea has denied US accusations that it was behind the cyber attack dubbed as 'WannaCry' which hit around 3 lakh computers in 150 countries in May this year.
Summary:
The city council said it cannot take any action as the trees are on private land.
Summary:
Aircel currently offers 2G services to about 4 million users in these six circles.
Summary:
Hollywood actor Hugh Jackman has said Shah Rukh Khan is his mentor.
Summary:
Darsheel Safary, who played the character 'Ishaan' in the 2007 film 'Taare Zameen Par', has said people tell him their lives improved after the film released.
Summary:
A woman has filed a complaint against Hollywood actor Sylvester Stallone accusing him of raping her when she was a minor in 1990.
Summary:
An 'anti-smog gun' was tested on Wednesday by the Delhi government to counter the excessive air pollution levels in the national capital.
Summary:
In an attempt to preserve the "purity of Ganga", Union Minister Satya Pal Singh has urged Hindus to not immerse cremated remains in the river.
Summary:
Indian cricketer Suresh Raina has cleared the mandatory Yo-Yo test for Team India selection at the National Cricket Academy, Bengaluru, days ahead of India's tour of South Africa.
Summary:
A priest also called the request a "cheap publicity" stunt by VHP.
Summary:
BJP's General Secretary in Jammu and Kashmir Ashok Kaul has said that Hindus cannot be a minority anywhere in India as they constitute a majority in the country.
Summary:
The Delhi High Court has directed the AIIMS Hospital to constitute a medical board and examine a 15-year-old married pregnant girl seeking to abort her over 25-week pregnancy.
Summary:
He told police he was not aware that satellite phones were banned in India.
Summary:
Several rooms have undergone refurbishments, while a new Indian restaurant called Omya has been launched.
Summary:
Silicon Valley venture capital firm Sequoia Capital is in the early stages of raising $5-6 billion for a third global growth fund, according to reports.
Summary:
Hyderabad-based device maker Smartron, which is backed by Sachin Tendulkar, has acquired 60% stake for $1 million in home automation startup MiQasa.
Summary:
US President Donald Trump will personally save up to $15 million (around â¹96 crore) a year under a tax cut bill which proposes the biggest tax overhaul in 30 years, according to an American think tank's report.
Summary:
Where in, each design has been exquisitely crafted to tell a unique story of love, in a minimalist yet sophisticated way.
Summary:
Chahal took 19 T20I wickets this year, surpassing Afghanistan's Rashid Khan and Windies' Kesrick Williams, who have 17 wickets each.
Summary:
The Patiala House Court on Thursday acquitted all accused in the 2G scam case, including former Telecom Minister A Raja and DMK leader Kanimozhi.
Summary:
This day also marks the longest day of the year in the Southern Hemisphere, called the Summer Solstice.
Summary:
Ahmedabad Police has registered an FIR against Patidar leader Hardik Patel for holding a 15-kilometre roadshow from Bopal to Nikol on December 11 despite district authorities denying him the necessary permission.
Summary:
The board on Wednesday ruled that the 16-year-old accused in the murder of Ryan International School's seven-year-old student Pradyuman Thakur will be tried as an adult.
Summary:
Former cricketer Sachin Tendulkar on Thursday will initiate a debate in the Rajya Sabha for the first time since his election to the Upper House in 2012.
Summary:
Following his two catches in the India-Sri Lanka T20I on Wednesday, former Indian captain Mahendra Singh Dhoni took his tally to 133 catches to equal Kumar Sangakkara's record of most catches by a wicketkeeper in T20 cricket.
Summary:
Following India's T20I victory against Sri Lanka, Rohit Sharma became the seventh cricketer and third Indian to win 50 T20 matches as a captain.
Summary:
The Delhi High Court on Wednesday dismissed a plea by IndiGo that challenged Delhi airport operator DIAL's decision to partially shift the airline's operations from Terminal 1 to Terminal 2 for expansion work.
Summary:
Mumbai's Wasabi by Morimoto and Masque and Delhi's The Spice Route also featured in the top ten.
Summary:
US President Donald Trump has threatened to cut US financial aid to countries which vote in favour of a resolution rejecting the US' recognition of Jerusalem as Israel's capital during the United Nations General Assembly's meeting on Thursday.
Summary:
Australia's first submarine which disappeared during the First World War was found on Thursday after a search for 103 years.
Summary:
The explosion was caused by a bomb hidden inside an audio cassette player.
Summary:
Reality television personality Khloé Kardashian took to Instagram to confirm that she is pregnant with her boyfriend, basketball player Tristan Thompson's child.
Summary:
A photo gallery shows the birthday celebrations of Saif Ali Khan and Kareena Kapoor's son Taimur Ali Khan, who turned 1 on Wednesday.
Summary:
Summary:
Congress MP Shashi Tharoor on Wednesday said that he would introduce a private member bill in the Lok Sabha next year for making stalking a non-bailable offence.
Summary:
After a Pakistani woman asked External Affairs Minister Sushma Swaraj to be her 'Ibn-e-Mariyam (messiah)' while requesting a medical visa for her father, the minister responded saying she's not a messiah, nor can she be.
Summary:
External Affairs Minister Sushma Swaraj has shared deaf and mute Pakistan-returned Geeta's diary entries and asked people to identify her dialect that may help in locating her home.
Summary:
A group of 20 Hindu activists allegedly disrupted Christmas celebrations in Rajasthan's Pratapgarh town on Tuesday night, claiming that the event was aimed at "forcibly converting" the attendees.
Summary:
Prime Minister Narendra Modi should admit that he made allegations about his predecessor Manmohan Singh colluding with Pakistan in order to win the Gujarat elections, the Congress demanded on Wednesday.
Summary:
Congress has moved a no-confidence motion against the CM Raman Singh-led BJP government in Chhattisgarh in the state assembly on Wednesday.
Summary:
Bangladesh's Transport Minister Obaidul Quader on Wednesday accused Pakistan's Inter-Services Intelligence (ISI) of conspiring with the terror groups among the Rohingya refugees.
Summary:
A North Korean soldier defected to South Korea on Thursday across the demilitarised zone (DMZ) between the two countries, according to reports.
Summary:
German customs officials on Tuesday burnt 550 kg of confiscated marijuana in a heat and power station due to lack of other facilities to dispose of such a large quantity of the weed.
Summary:
French PM Edouard Philippe spent over â¹2.6 crore on hiring a private aircraft to bring him and a delegation back to the country from an official trip to Japan earlier this month.
Summary:
India registered their biggest victory in T20Is after defeating Sri Lanka by 93 runs in the first T20I in Cuttack on Wednesday.
Summary:
Former Indian captain Mahendra Singh Dhoni on Wednesday became the cricketer with most fielding dismissals in T20Is. With his 4 dismissals in the T20I against Sri Lanka, Dhoni took his overall tally to 74 dismissals, two more than South African cricketer AB de Villiers.
Summary:
The European Court of Justice has said that European Union (EU) nations need not legally recognise Triple Talaq.
Summary:
The list ranks 153 countries on 15 factors including property rights, innovation, taxes and red tape.
Summary:
Indian cricket team captain Virat Kohli and his wife, actress Anushka Sharma, met Prime Minister Narendra Modi on Wednesday and invited him to their wedding reception, which will be held on December 21 in Delhi.
Summary:
The Union Cabinet on Wednesday approved a plan to set up the country's first National Rail and Transport University in Gujarat's Vadodara.
Summary:
The Municipal Corporation of Indore has decided to announce names of those spitting in public places on the radio and publish them in local newspapers apart from imposing a â¹500-fine.
Summary:
The Supreme Court has rejected a plea seeking a ban on liquor across India and imposed a cost of â¹1 lakh on the petitioner, observing that the plea had 'no merit'.
Summary:
Pakistan's Army chief General Qamar Javed Bajwa has hailed Mumbai terror attack mastermind and Jamaat-ud-Dawah (JuD) chief Hafiz Saeed and said he can play an active role to resolve the Kashmir conflict, like every other citizen of Pakistan.
Summary:
A paper company in China has collaborated with a conservation centre for giant pandas to recycle the animal's faeces and food debris into toilet paper and napkins, according to media reports.
Summary:
Individuals with over â¹1 crore of declared income rose 23.5% to 59,830 in tax assessment year 2015-16, according to data released by Income Tax Department.
Summary:
The direct tax collection stood at â¹7.42 lakh crore in the previous year.
Summary:
The White House on Wednesday said the cryptocurrencies market offers great hope, but also presents security risks and concerns.
Summary:
Cryptocurrency Litecoin's founder Charlie Lee has said in a Reddit post that he sold and donated all of his holdings in Litecoin.
Summary:
It has been speculated that Kareena Kapoor, who was earlier dating Shahid, cheated on him with Saif Ali Khan.
Summary:
While talking about actress Priyanka Chopra, US singer-songwriter Nick Jonas said that she is a lovely person.
"We met through a mutual friend...
Nick further said, "I'm dying...
Summary:
Chelsea will face city rivals Arsenal, while Manchester City will host Bristol City in the semi-finals.
Summary:
Mumbai witnessed a nearly seven-fold increase in the amount of cocaine seized in 2017 as compared to last year, Narcotics Control Bureau has revealed.
Summary:
As many as 176 government officers were asked to retire in public interest for being non-performers, from July 2014 to October 2017, the government said in the Parliament on Wednesday.
Summary:
Kolkata's Alipore Court will begin hearing the case of attempt to murder of then Congress leader Mamata Banerjee in 1990, from February 6 onwards.
Summary:
This happened when the woman tried to stop the workers from digging on a piece of land on which her family cultivated crops.
Summary:
Supporters of a Samajwadi Party student wing leader at Banaras Hindu University on Wednesday vandalised an ATM, damaged over 40 vehicles, and set a school bus on fire after the leader was arrested.
Summary:
A trade centre would be established at Behiang that is located approximately 4 km from the India-Myanmar border.
Summary:
A first-year female MBBS student of a private medical college has filed a police complaint alleging rape by a peon on the college campus in Odisha's Bhubaneswar.
Summary:
Samsung Chief Technology Officer of mobile business division and former Bixby chief Injong Rhee has resigned, South Korean electronics giant confirmed on Wednesday.
Summary:
"This decision by Myanmar...can only be viewed as a strong indication that there must be something terribly awful happening in the country," Lee said.
Summary:
Russian President Vladimir Putin on Wednesday said that foreign intelligence services were trying to meddle in the country's social and political life.
Summary:
Kohli topped the list with a brand value of $144 million (â¹921 crore), a 56% growth from 2016.
Summary:
Of the 68 newly elected MLAs in Himachal Pradesh Assembly, 22 have criminal cases pending against them as per their election affidavits, an Association for Democratic Reforms report revealed.
Summary:
The Rajasthan High Court has issued a notice to the Centre, asking why condom advertisements cannot be shown on TV between 6 am and 10 pm.
Summary:
India coach Ravi Shastri has said that captain Virat Kohli is the "boss" of Team India while he just gives suggestions.
Shastri further said that Kohli could go on to captain India for another six-seven years.
Summary:
The Delhi Metro has suspended four officials based on an internal investigation after a Magenta Line train crashed into a boundary wall at the Kalindi Kunj depot during a trial.
Summary:
Prime Minister Narendra Modi on Wednesday asked BJP MPs not to get distracted by what the Opposition was "raking up on credibility, rumours, and the misinformation".
Summary:
Pakistan has issued visas to the mother and wife of Kulbhushan Jadhav, a former Indian Navy officer who was sentenced to death by a military court for alleged involvement in espionage and subversive activities.
Summary:
According to password managing firm SplashData, numeric combination '123456' has been ranked first on the 'Worst Passwords of 2017' list.
Summary:
Brisbane Heat's Mitchell Swepson took a diving catch to dismiss Melbourne Stars' Ben Dunk for a duck in the Big Bash League on Wednesday.
Summary:
The Delhi Metro Rail Corporation (DMRC) has said the inauguration of Delhi Metro's Magenta Line is on track and PM Narendra Modi will inaugurate the section on December 25.
Summary:
The UK government has announced that a legislation to make high-speed broadband a legal right is expected to pass in early 2018.
Summary:
Further elaborating on whether it would add to the company's core business, he added that Ola should have bought Swiggy instead.
Summary:
Shiv Sena MP Sanjay Raut, while objecting to 'Tiger Zinda Hai' occupying prime-time slots in Maharashtra which has led to fewer screens for Marathi films, said, "Those who are doing this should remember...Shiv Sena's tiger too is zinda." He further said, "These big fishes (Tiger Zinda Hai) are...(eating) small ones.
Summary:
The man who was accused of molesting a 17-year-old Bollywood actress on a flight has been granted bail by Mumbai court on Wednesday.
Summary:
Actress Ileana D'Cruz, on being asked if she is insecure about sharing screen space in multi-starrer films, said that she is not competing with anyone and doesn't like being jealous.
Summary:
Filmmaker Shoojit Sircar has slammed BJP MLA Panna Lal Shakya for saying that Virat Kohli earned all his money in India and took it abroad by marrying Anushka Sharma in Italy.
Summary:
Filmmaker Leena Yadav, who is directing the upcoming Rishi Kapoor starrer 'Rajma Chawal', has said that the veteran actor is quite unfiltered in his opinions.
Leena further said that working with Rishi has been a great learning experience for her.
Summary:
Taking a dig at BJP MLA Panna Lal Shakya's comments on Virat Kohli and Anushka Sharma marrying abroad, Congress spokesperson Randeep Surjewala asked youth to take the BJP's "prior approval" before deciding their wedding venue and food menus.
Summary:
Indian all-rounder Yuvraj Singh on Tuesday took to social media to share a picture of himself with a trophy after hitting 358 runs in the Cooch Behar U-19 Trophy final in 1999.
Summary:
In a letter to Finance Minister Arun Jaitley, a group of 60 economists has called the Centre's funding for old-age pensions as "stingy" and sought to increase pension from â¹200 to â¹500 per month in the next Budget.
Summary:
A constable in Telangana showed up in a lungi and vest when asked to report to duty after finishing a full day at work.
Summary:
Indian opener Rohit Sharma has become the second Indian batsman after Virat Kohli to score 1,500-plus runs in T20I cricket.
Summary:
The Delhi High Court on Wednesday ordered a CBI probe into the Adhyatmik Vishwa Vidyalaya ashram in Delhi where girls and women were allegedly kept in illegal confinement.
Summary:
Former South African cricketer Jonty Rhodes took to Twitter to share a picture of himself drinking lassi in Jaipur and called it the secret behind Yuvraj Singh's six-hitting power.
Summary:
The Panaji bench of the Bombay High Court has rejected Tehelka's former editor-in-chief Tarun Tejpal's plea to dismiss the rape charges against him and rejected his request to discard the trial.
Summary:
A pastor in Singapore was on Wednesday sentenced to 2 months in jail for recording 12 upskirt videos of women.
Summary:
The value of an investment by Amitabh and Abhishek Bachchan in a Singapore blockchain firm offering microfinance through cryptocurrencies has grown 70 times from $250,000 (â¹1.6cr) to $17.5 mn (â¹112cr) in 2.5 years.
Summary:
Sand artist Sudarsan Pattnaik has collaborated with Indira Gandhi National Open University (IGNOU) and the Human Resource Development Ministry to launch the world's first online certificate course on sand art in March 2018.
Summary:
Muslim organisations were not consulted before the draft bill to criminalise the practice of instant Triple Talaq was framed, the government said on Wednesday.
Summary:
Cases of ragging in university and college campuses have increased by over 70%, from 515 cases in 2016 to 889 cases this year, according to government data.
Summary:
At a meeting of BJP parliamentarians, PM Narendra Modi said their recent electoral victories were big as they now rule 19 states, adding that former PM Indira Gandhi had ruled 18 states when she was in power.
Summary:
A cockroach has been found in a meal served at an Air India business class lounge at the Delhi airport.
Summary:
Brazilian police have busted an alleged drug-smuggling ring operating in Rio de Janeiro's airport.
Summary:
Maruti Suzuki became the first Indian automaker to cross â¹3 trillion market capitalisation after its shares hit the â¹10,000 mark during intraday trade on Wednesday.
Summary:
Saudi Arabia announced its largest-ever budget of $261 billion for 2018, higher than its 2017 budget of $250 billion.
Summary:
'Chhalka Chhalka Re', a song from Vivek Oberoi and Rani Mukerji's romantic drama 'Saathiya', featured in the 2008 Uma Thurman and Jeffrey Dean Morgan starrer 'The Accidental Husband'.
Summary:
French athlete Pablo Signoret has set the Guinness World Record for the 'longest blindfolded slackline walk' over a canyon in China.
Summary:
A photograph showing an owl trying to climb a branch has been declared the overall winner of the Comedy Wildlife Photography Awards 2017.
Summary:
Madame Tussauds Orlando trolled Disney World on Tuesday after the Florida attraction unveiled a new Donald Trump robot in its refurbished Hall of Presidents.
Summary:
The UIDAI has asked banks to seek explicit consent of the beneficiary before changing the account to which the government subsidy is being remitted.
Summary:
Markets regulator SEBI Chairman Ajay Tyagi has said that "Bitcoin is not a systemic issue globally as of now" but the government is looking into it along with RBI and SEBI.
Summary:
Writer Nishant Kaushik has slammed 'Hichki' director Siddharth P Malhotra for not giving him credit for writing the film's story.
Summary:
A man in Jaipur allegedly locked his two wives in a car and set the vehicle on fire for not keeping his mother happy.
Summary:
Vice President and Rajya Sabha Chairman M Venkaiah Naidu has said nobody will apologise for PM Narendra Modi's remarks on former PM Manmohan Singh as the statement wasn't made in the Parliament.
Summary:
Burglars broke into a co-operative bank after drilling a hole in a concrete wall in Delhi's Mundka and stole cash and jewellery worth over â¹30 lakh, police said.
Summary:
Facebook abused its dominant market position to collect user data, Germany's competition watchdog has said.
Summary:
However, the ad-blocking feature on Chrome will not prevent the ads from tracking users.
Summary:
"As we build out the Alibaba network globally, India is another important piece that is now firmly in place," Alibaba Cloud President Simon Hu said.
Summary:
The diners are required to register their face to their account using a facial recognition software before making their first purchase.
Summary:
A 53-year-old man has been living in Beijing airport for around nine years after he left his home in 2008 following a fight with his wife.
Summary:
Arthur Collins, a British man convicted of spraying acid in a London nightclub injuring 22 people has been sentenced to 20 years in prison.
Summary:
Philippine President Rodrigo Duterte on Tuesday used rape to illustrate the effects of illegal drugs on the behaviour of addicts.
Summary:
Mumbai-based Edelweiss Financial Services has agreed to acquire Religare Enterprises' securities business, the company said on Wednesday.
Summary:
Suhaib Ilyasi, former host of TV show 'India's Most Wanted', has been sentenced to life imprisonment by a Delhi court for stabbing his wife to death 17 years ago.
Summary:
The Election Commission on Wednesday barred all media houses from broadcasting a video showing late Tamil Nadu CM Jayalalithaa admitted in Chennai's Apollo hospital.
Summary:
After the ruling, Uber claimed most of its products are already covered by such regulations.
Summary:
Retired Calcutta High Court judge CS Karnan was released from the Presidency Jail on Wednesday, after serving a six-month sentence.
Summary:
A video showing a driverless truck revolving in reverse direction on a highway near Tamil Nadu's Dindigul has gone viral.
Summary:
Messi, who scored 37 goals in La Liga last season, earned his fourth Pichichi Trophy.
Summary:
Facebook has rolled out new tools which will allow users to block unwanted friend requests and messages.
Summary:
Yuvraj Singh-backed online diagnostics startup Healthians' Co-founder Anuj Mittal has reportedly sued the company, its Founder Deepak Sahni and investors for oppression of his rights as a minority shareholder.
Summary:
North Korea termed the recent US-South Korea drills as a provocation, accusing the US of "begging for nuclear war" by staging the military exercise.
Summary:
Cardinal Bernard Law, who was forced to resign as archbishop of US city Boston in 2002 over a sex abuse scandal, passed away aged 86 on Wednesday in Rome.
Summary:
Actress Vidya Balan, while revealing that she faced sexual harassment at a young age, said, "I remember as a child, I was plucking flowers under my building and some passerby pinched me in my inner thigh." She added that she was given the liberty to talk to her parents about such things.
Summary:
Delhi Government on Wednesday tested an 'anti-smog gun', a machine that sprays water into the air, to bring down pollution levels in the National Capital.
Summary:
Defending champions Manchester United will face Bristol City, while Chelsea will host Bournemouth in the quarter-finals on Wednesday.
Summary:
Senior IPS officer Jacob Thomas has been suspended by the Kerala government for his comments against the administration.
Summary:
Two teams from India, one boys' and one girls' team, will compete at the inaugural Junior NBA World Championships in the US from August 7-12, 2018.
Summary:
Union Minister of State for Agriculture Krishna Raj was rushed to Delhi's Ram Manohar Lohia Hospital after she fell ill during the BJP parliamentary meeting on Wednesday.
Summary:
The court was hearing a petition which said the authority was wrongly constituted and gave permission to cut the trees in its very first meeting.
Summary:
Reacting to former Pakistan cricket team captain Waqar Younis suggesting to mix T10 format with Test cricket, a user tweeted, "Let cricket remain cricket.
Summary:
Construction of a Mahabharata-themed museum has begun in Haryana's Kurukshetra after the Union government reportedly allocated â¹31 crore for the project under the Swadesh Darshan Scheme.
Summary:
A 12-year-old Pakistani boy with hearing and speech disabilities, who was lodged in an Indian juvenile home for crossing over into Indian territory without travel documents in May this year, has been acquitted.
Summary:
American graphic novelist and DC Comics writer Brad Meltzer will release his new graphic novel titled 'I Am Gandhi: A Graphic Biography of a Hero' in May 2018.
Summary:
Meanwhile, the report also revealed that the number of migrants from all countries living in India currently is 52 lakh.
Summary:
After a Hindu body issued warnings to schools in Aligarh against celebrating Christmas, Uttar Pradesh Deputy CM Dinesh Sharma has said people are free to celebrate any festival.
Summary:
A seaside resort in Jamaica has unveiled glass-bottomed bungalows over the sea.
Summary:
Volkswagen-owned Audi is recalling more than 52,000 luxury cars in the US and Canada to fix faulty fuel lines.
Summary:
The proposals must consider a 30-astronaut program with varying time durations in space, said NASA.
Summary:
A jet stream speeding through the atmosphere high above Jupiter's equator changes its course in a 4-year cycle due to gravity waves (not same as gravitational waves), said NASA scientists.
Summary:
If convicted, the student will be transferred from a correctional home to a jail when he is 21 years old.
Summary:
Virgin Hyperloop One has achieved a record speed of nearly 387 kmph during its third phase of testing at hyperloop test site in the US.
Summary:
A 26-year-old woman in Tennessee, US, has given birth to a baby girl that was frozen as an embryo 24.5 years ago, believed to be a world record for frozen embryo resulting in a successful birth.
Summary:
'Aaj Se Teri', the first song from the Akshay Kumar, Sonam Kapoor and Radhika Apte starrer 'PadMan' has been released.
Summary:
The hospital's licence was revoked for declaring an alive newborn dead.
Summary:
Vice President Venkaiah Naidu has said that the notion of secularism is safe in India as it is in the DNA of Indians.
Summary:
The legwork on India's first undersea tunnel for Mumbai-Ahmedabad bullet train corridor has begun in Mumbai.
Summary:
However, users will have to give consent to Facebook to keep a facial template to use this feature.
Summary:
Musk tweeted at Oculus Chief Technology Officer John Carmack, asking him if he has time to talk and posted his phone number in the tweet publicly.
Summary:
NASA researchers have captured shockwaves propagating away from a US Air Force test aircraft as it flew faster than the speed of sound.
Summary:
The US government has lifted a three-year funding pause on gain-of-function (GOF) experiments seeking to alter viruses like influenza, MERS, and SARS and make them even more dangerous.
Summary:
The Kensington Palace has revealed that UK's Prince Harry interviewed ex-US President Barack Obama as a guest editor for a UK radio show.
Summary:
Pakistan on Tuesday rejected "unsubstantiated allegations" made in US President Donald Trump's National Security Strategy, saying the document trivialised the country's efforts to fight terrorism and unmatched sacrifices to promote peace.
Summary:
Saeed was released from house arrest by a Pakistani court last month.
Summary:
People have likened the tree to a toilet brush and planned its funeral.
Summary:
A five-year-old US boy called 911 reporting that Grinch was going to steal Christmas, following which a police officer visited his home.
Summary:
Ian McKellen, who starred in the 'X-Men' and 'The Lord of the Rings' series, has said there've been actresses who offered to sleep with directors for roles.
Summary:
Actress Karisma Kapoor has shared a picture with her nephew Taimur Ali Khan to wish him on the occasion of his 1st birthday today.
Summary:
Further, Uttar Pradesh registered 67 cases and seven arrests in the three years.
Summary:
The Indian Railways has issued a statement saying that it's working towards providing 100% LED lighting for energy needs in railway staff colonies, stations, and platforms by March 2018.
Summary:
The Bombay High Court has said that people convicted of child abuse do not deserve any leniency, adding that victims of such crimes often suffer life-long post-traumatic stress disorders.
Summary:
US-based home insurance startup Lemonade has raised $120 million in a funding round led by Japanese conglomerate SoftBank.
Summary:
The first-ever sample-to-sequence process performed entirely aboard the International Space Station by record-breaking astronaut Peggy Whitson has been termed successful after reanalysis of samples brought to Earth.
Summary:
US-based researchers recording the sound of a Mexican fish species have found their "stadium-like chorus" generated while mating is loud enough to cause at least temporary if not permanent hearing loss in marine mammals preying on the fish.
Summary:
Pakistani cricketer-turned-politician Imran Khan on Tuesday confused former Tamil Nadu CM Jayalalithaa with jailed AIADMK leader VK Sasikala.
Summary:
US envoy Nikki Haley has warned several United Nations ambassadors in a letter that US President Donald Trump will be watching the upcoming UN General Assembly vote on Jerusalem carefully.
Summary:
Palestinian President Mahmoud Abbas has sent delegations to China and Russia to ask them to seek international sponsorship for peace talks with Israel under the banner of the United Nations.
Summary:
Shops and establishments in Maharashtra can remain open and operate round the clock in three shifts starting today after the state government amended the Maharashtra Shops and Establishments Act. The notification covers hotels, restaurants, and malls, but excludes bars, pubs, wine shops, and discotheques.
Summary:
France has passed a law banning all exploration and production of oil and natural gas by 2040 within the country and its overseas territories, claiming it as the world's first such ban.
Summary:
A day ahead of the RK Nagar bypoll, rebel AIADMK leader TTV Dhinakaran's supporter P Vetrivel has released a video showing late Tamil Nadu Chief Minister Jayalalithaa admitted in Chennai's Apollo hospital.
Summary:
New Zealand's PM Jacinda Ardern has received a homemade Christmas tree decoration from her allotted anonymous giver as part of the country's nationwide Secret Santa.
Summary:
Jitesh Pillai, the editor of Filmfare magazine has slammed Kangana Ranaut for saying that she was called to receive an award in 2014 but since she couldn't attend the function the award was given to someone else.
Summary:
BJP spokesperson S Prakash condemned its MLA Panna Lal Shakya's recent remarks questioning cricketer Virat Kohli's patriotism for preferring Italy over India to get married.
Summary:
Varun Dhawan won the Best Actor award for 'Badrinath Ki Dulhania' and Sridevi was named the Best Actress for 'Mom' at Zee Cine Awards 2018.
Summary:
Over â¹2,600 crore allocated for cleaning up the Ganga river was not utilised till March 2017, according to a Comptroller and Auditor General report tabled in the Parliament on Tuesday.
Summary:
The National Green Tribunal is left with 33% of its sanctioned strength after its Chairman Justice Swatanter Kumar retired on Tuesday, reports said.
Summary:
Reportedly, the abducted assistant station master called up a senior official saying the Naxals have threatened to kill them if trains continue to ply on Masudan track.
Summary:
Of the 182 newly elected members of Gujarat Assembly, 47 have criminal cases registered against them as per their election affidavits, a study conducted by Association for Democratic Reforms and Gujarat Election Watch revealed.
Summary:
Selected from over 11,000 entries, a photo of an orangutan crossing a river in Indonesia, captured by Jayaprakash Joghee Bojan of Singapore has won him the 2017 National Geographic Nature Photographer of the Year carrying a $10,000 cash prize.
Summary:
The Tea Terrace café in London has introduced 'Selfieccinos' featuring their customers' self-portraits.
Summary:
The Malaysian Parliament recently discussed uniforms worn by AirAsia and Firefly airlines' female crew, calling them "too revealing." Requesting the Malaysian Aviation Commission to probe the matter, a lawmaker said the outfits can "arouse passengers" and are un-Islamic.
Summary:
Three armed robbers ate salad and drank beer for about two hours after tying up a steel trader and his wife at their house in Ghaziabad on Monday, said the police.
Summary:
The 10 biggest billionaire gainers this year added a total of $204 billion to their fortunes, compared to $74.7 billion in 2016, according to Forbes.
Summary:
In a letter to his twins Yash and Roohi, filmmaker Karan Johar wrote, "Mothers of your classmates will come to drop them in school, but you'll have your father." "While your classmates' mothers will make a WhatsApp group to discuss your homework, I'll be the only father in it," he added.
Summary:
Students from a government school in Bhopal were made to serve tea and snacks at a programme organised by the state government where Education Minister Vijay Shah was also present.
Summary:
Visas issued to Pakistani citizens reduced by nearly 35% in 2017, with 34,445 visas issued this year as compared to 52,525 visas in 2016, Minister of State for Home Affairs Kiren Rijiju said on Tuesday.
Summary:
It was not the government's decision to change the name of the college, he added.
Summary:
India and China should learn lessons from the 73-day-long military standoff in which both the countries engaged in June in the disputed Doklam region, to avoid any further conflict of similar nature in the future, China has said.
Summary:
The Indian embassy in Brazilian capital city BrasÃÂlia organised an event on Monday showcasing the cuisine, culture and architecture of Punjab and Bihar.
Summary:
The US Food and Drug Administration has approved a new gene therapy 'Luxturna' to treat children and adult patients with an inherited form of vision loss that may result in blindness.
Summary:
An international team of researchers has proposed that Mars was formed in a region called Asteroid Belt, roughly 1.5 times away from the Sun from its current position, before migrating to its present location.
Summary:
The White House has shut down its public petition system 'We The People', promising that a new version will return in January next year.
Summary:
Joo-il Kim, who was a member of North Korea's military, revealed that these soldiers are highly brainwashed.
Summary:
nUS President Donald Trump spoke with UK PM Theresa May on Tuesday in a telephone call.
Summary:
Actress Sunny Leone has backed out of the New Year's eve show in Bengaluru saying that the city police has said that they will not be able to ensure the safety of her and her team.
Summary:
Addressing the Goa Assembly, Chief Minister Manohar Parrikar warned of a crackdown on rave parties in the state and said that one cannot dance all night without doping.
Summary:
After the Hindu Jagran Manch warned schools to avoid Christmas celebrations, the Uttar Pradesh government has directed the police to ensure a peaceful Christmas in the state.
Summary:
Russian cybersecurity firm Kaspersky Lab has asked a US court to overturn a ban on its products in government networks.
Summary:
Earlier, North Korea said it had completed its state nuclear force.
Summary:
China on Tuesday announced plans to set up the world's biggest carbon market in a move aimed at reducing greenhouse gas emissions.
Summary:
A CAG report has said that Tata Teleservices, Telenor, and Videocon are among five telecom firms which have understated revenues by over â¹14,800 crore for the period up to 2014-15.
Summary:
While another user wrote, "Please check the facts before you post something."
Summary:
MNS leader Shalini Thackeray has said they will oppose Salman Khan's 'Tiger Zinda Hai' if it takes prime-time screens in the state and if Marathi films get fewer shows.
Summary:
Pacer Navdeep Saini, who picked up seven wickets to help Delhi win the Ranji semi-final, said he owes his life to Gautam Gambhir.
Summary:
Local residents alerted the police after spotting blood coming out of a jute bag floating in the drain.
Summary:
As many as 1.9 million mentions of 2017 Gujarat Assembly elections were recorded on Twitter between December 1 and 18, Twitter India has revealed.
Summary:
Madhya Pradesh Home Minister Bhupendra Singh on Monday revealed the name of a minor rape and murder victim on Twitter while addressing a complaint about the case.
Summary:
The mother of the accused has claimed her son had only slapped the two boys.
Summary:
During the Question Hour in Rajya Sabha, House Chairman and Vice President Venkaiah Naidu asked Health Minister JP Nadda, "What is an e-cigarette?" Naidu's query came when a member of Parliament asked the minister about the health risks posed by an e-cigarette.
Summary:
This comes after Congress President Rahul Gandhi said that people of Gujarat did not support the model endorsed by Prime Minister Narendra Modi.
Summary:
Former J&K CM Farooq Abdullah has said, "Pakistan doesn't indulge in conspiracies", in response to PM Narendra Modi's allegations that former PM Manmohan Singh colluded with Pakistan for BJP's defeat in Gujarat Assembly elections.
Summary:
The original picture, which has a snow-filled background, was reportedly taken in Finland.
Summary:
Singapore-based wearable technology startup KaHa has raised $4.5 million in a funding round led by Metals International.
Summary:
Bangladesh and Myanmar have formed a Joint Working Group composed of 15 members from each country, to handle the repatriation of Rohingya refugees.
Summary:
Russia on Monday said it was ready to become an "honest mediator" in resolving the Israel-Palestine conflict.
Summary:
The diplomat, whose body was found on the side of a motorway in Beirut last week, was reportedly sexually assaulted and strangled.
Summary:
The US had decertified Iran's compliance with the deal in October this year.
Summary:
Russia has arrested a Norwegian citizen on charges of spying for allegedly obtaining confidential documents related to the Russian Navy.
Summary:
Police in Australia mistakenly broadcast plans to arrest a suspected North Korean agent on social media platform Periscope.
Summary:
The court ruled that the student's constitutional rights to dignity had been violated.
Summary:
It added that 15 out of 16 test checked food laboratories did not have qualified food analysts.
Summary:
Songs for the Hollywood film 'Lake of Fire', which have been composed by Qutub-E-Kripa, a group of student musicians of AR Rahman's music academy, have been shortlisted in the 'Best Original Song' category for Oscars 2018.
Summary:
Microsoft co-founder Bill Gates mentioned Akshay Kumar's film 'Toilet: Ek Prem Katha', while sharing a list of tweets from 2017 that inspired him.
Summary:
The trailer of the all-female starrer heist film 'Ocean's 8', which stars Anne Hathaway, Sandra Bullock and Rihanna, has been released.
Summary:
Actor Sanjay Dutt, while talking about his character Munna Bhai from the 2003 film 'Munna Bhai MBBS', said it is the one character which defines him.
It's such a beautiful character that became a part of every family in India," added Sanjay.
Summary:
The auction of players for the 2018 Indian Premier League season will take place on January 27 and 28 in Bengaluru.
Summary:
Cricket legend Sachin Tendulkar's son Arjun picked up a five-wicket haul, his second in three matches, to help Mumbai beat Railways in the Cooch Behar Under-19 Trophy.
Summary:
A bloc of Arab nations and Turkey have called an emergency meeting of the United Nations General Assembly after the US vetoed a UN Security Council resolution rejecting the US decision to recognise Jerusalem as Israel's capital.
Summary:
While 26 were killed in air strikes or bombings, 39 were "deliberately targeted" for their journalistic work and murdered, it added.
Summary:
The Opposition claimed that electing the prosecutor general was not within the powers of the Parliament and called for creating a commission for the same.
Summary:
Benchmark indices Sensex and Nifty closed at new lifetime highs on Tuesday, a day after Bharatiya Janata Party's (BJP) victory in Gujarat and Himachal Pradesh Assembly polls.
Summary:
Actress Genelia Deshmukh has gifted her husband Riteish Deshmukh a Tesla Model X car on his 39th birthday.
Summary:
The Rajya Sabha on Tuesday passed a bill granting greater autonomy to Indian Institutes of Management (IIMs) and declaring them institutes of national importance.
Summary:
American tennis player Serena Williams took to Twitter to ask for help in dealing with her three-month-old daughter's teething problems.
Anyone??" wrote Serena in one of her tweets.
Serena gave birth to Alexis Olympia in September.
Summary:
After reopening the affiliation process for five new colleges, the Mumbai University (MU) has received 28 applications.
Summary:
The first-ever Royal Rumble match had taken place in January 1988 as a 20-man contest.
Summary:
He scored 111* in the first Test of a three-match series against South Africa to record the 50th of his career-total of 51 Test centuries.
Summary:
The Central Board of Secondary Education (CBSE) has asked schools to send their regular and experienced teachers to ensure quality and error-free evaluation, or risk losing affiliation.
Summary:
To bring parity among both categories, the number of shots in all women's events have been increased, making them equal to men's events.
Summary:
Two accused have been arrested based on the footage from a CCTV installed near the bus stop.
Summary:
After Rohit Sharma offered Virat Kohli a 'husband handbook' in a tweet congratulating him on his marriage, the Indian captain replied, writing, "Haha thanks Rohit, and please do share the Double Hundred Handbook as well." In his tweet, Rohit also asked Anushka to keep her surname.
Summary:
The Delhi High Court has dismissed a plea seeking martyr status to freedom fighters Bhagat Singh, Sukhdev, and Rajguru who were hanged by the British in 1931.
Summary:
Regar had wanted to kill a different labourer for being in contact with someone he regarded as a sister, police added.
Summary:
Bengaluru-based home design and decor portal Livspace has raised a reported amount of â¹11 crore from media conglomerate Bennett Coleman and Co. Last year, Livspace raised â¹100 crore from Bessemer Venture Partners.
Summary:
A UK-based study has found that fungi were essential in the creation of an oxygen-rich atmosphere, without which life on Earth wouldn't be possible.
Summary:
Haryana Chief Minister Manohar Lal Khattar on Sunday asked IAS and IPS officials to introspect if they have gone off the track during their service period.
Summary:
Russian spokesperson Dmitry Peskov on Tuesday said that the new US National Security Strategy is of an imperial nature and reflects the country's reluctance to give up the idea of a unipolar world.
Summary:
China on Tuesday slammed US President Donald Trump's National Security Strategy as a "Cold War mentality" that will only harm the US.
Summary:
A driverless Delhi Metro train on Tuesday rammed into a wall during its trial run after brakes were not applied in time.
Summary:
India's Mukesh Ambani stood sixth after he gained $18 billion this year.
Summary:
The trailer of the upcoming Sidharth Malhotra and Manoj Bajpayee starrer 'Aiyaary' has been released.
Summary:
With this, Smith is now only behind Australia legend Don Bradman, who has 961 Test rating points.
Summary:
Incumbent Himachal Pradesh CM Virbhadra Singh has submitted his resignation to Governor Acharya Devvrat after the Congress' defeat in the Assembly elections.
Summary:
Facebook also revealed a 21% increase in government requests for user data worldwide.
Summary:
Electric carmaker Tesla was under investigation by the Securities and Exchange Commission (SEC) over Model 3 car but it didnâÂÂt inform investors about it, according to a report.
Summary:
The world migrant population has risen to 25.8 crore, an increase of 49% since 2000, according to a UN report on international migration.
Summary:
The Saudi-led coalition shot down a ballistic missile launched by the Houthi rebels on Tuesday, the state media said.
Summary:
A 14-year-old boy in Ireland accidentally drained his mother's bank account while playing FIFA.
Summary:
The government on Tuesday said, "At present, there is no proposal to make Aadhaar linkage mandatory in property transactions." Earlier, after PM Modi had hinted at a crackdown on Benami properties, there were reports of making Aadhaar linkage mandatory for property transactions.
Summary:
Hindustan Petroleum (HPCL) has asked Airtel Payments Bank to reverse LPG subsidy amounts that have been wrongfully credited to its accounts.
Summary:
Model and ex-Bigg Boss contestant Sofia Hayat, while backing Rakhi Sawant for speaking up against the Information and Broadcasting Ministry's restriction on condom advertisements, said she should probably do a condom ad dressed as a nun.
Sofia further said, "Condoms are respectful!
Summary:
Shakya further said, "In this country, Ram, Krishna, Vikramaditya, and Yudhisthira got married."
Summary:
Shah Rukh, Kajol and Rani had featured in the 1998 film 'Kuch Kuch Hota Hai'.
Summary:
Police have launched a manhunt to arrest Birua, who declared himself the de facto administrator of Kolhan and has been trying to charge rent from the local population.
Summary:
Former England spinner Graeme Swann has said that Australian quick Mitchell Starc's 'ball of the Ashes' would have claimed Sachin Tendulkar's wicket "1,000 times out of 1,000".
Summary:
Delhi have appeared in the Ranji Trophy final 14 times previously, winning seven times.
Summary:
Later, Buttler was dismissed for a duck during his team's successful chase.
Summary:
Prime Minister Narendra Modi on Tuesday met fishermen who were affected by Cyclone Ockhi in Tamil Nadu's Kanyakumari.
Summary:
On being asked why the BJP didn't win 150 seats in the Gujarat Assembly elections as he had predicted, party President Amit Shah said he didn't know the Congress would carry out low-level politics.
Summary:
Low visibility caused by dense fog in Lucknow and surrounding areas led to the collision of 10 cars on the Lucknow-Agra Expressway in Unnao district on Monday.
Summary:
Los Angeles Lakers on Monday honoured basketball legend Kobe Bryant by retiring both jersey numbers 8 and 24 worn by the 39-year-old during his 20-year career with the NBA team.
Summary:
Egypt's Mohamed Elshorbagy defeated Marwan Elshorbagy in the first-ever men's final between two brothers in the 41-year history of the World Squash Championships in Manchester.
Summary:
Kaul had been named Country Manager last year, after being sales Director and Head of iPhone sales since April 2011.
Summary:
Delhi-based online gaming startup 9stacks has raised nearly â¹10 crore in seed round from investors including IndustryBuying Founder Swati Gupta, and INI Farms Founder Purnima Khandelwal.
Summary:
Dr Reddy's Laboratories has agreed to pay $5 million to resolve US claims that it sold drugs in packaging that wasn't tested for child safety.
Summary:
The BJP's chief ministerial candidate for the Himachal Pradesh Assembly elections, Prem Kumar Dhumal, lost from the Sujanpur seat by a margin of 1,900 votes.
The gain that victory has brought to state BJP is important," he said.
Summary:
French privacy watchdog CNIL has issued a notice to WhatsApp to stop sharing user data with the parent company Facebook within a month.
Summary:
A 15,000-year-old skeleton of a woolly mammoth has been auctioned for â¬548,000 (nearly â¹4.15 crore) in France's Lyon.
Summary:
The 42nd President of the US, Bill Clinton, was impeached on December 19, 1998 after he was charged with lying under oath and obstructing justice in connection with an extramarital affair with White House intern Monica Lewinsky.
Summary:
The move is aimed at protecting Japan from North Korea's nuclear missile development that has become a threat to its national security, Defence Minister Itsunori Onodera said.
Summary:
Nayzia Thomas gave birth to a baby boy after completing her research paper.
Thomas said the paper "wasn't due until the end of the week...
Summary:
It is not the responsibility of the authorities.
It is the responsibility of the individual," he added.
Summary:
Notably, Airtel had merged with Tigo in Ghana last month to become the country's second-largest operator.
Summary:
South Korean cryptocurrency exchange Youbit has announced that it is shutting down and is filing for bankruptcy after it was hacked for the second time this year.
Summary:
Sonam Kapoor has acquired the film adaptation rights for Krishna Udayasankar's 'Govinda', the first novel in the three book series which is a modern retelling of the Hindu epic 'Mahabharata'.
Summary:
Salman further said, "Throughout the promotions, I kept on saying that if you're expecting some action, then don't go and watch the movie."
Summary:
Filmmaker SS Rajamouli, who directed Prabhas in the 'Baahubali' film franchise, jokingly said he and Prabhas have been together for five years and they need a break from each other.
Summary:
Rani Mukerji has said that guests did not click pictures of her daughter Adira at her birthday party as they feared Aditya Chopra, who is known for refusing to take pictures with people.
Summary:
The Congress on Tuesday opposed the Centre's plan in the Parliament to set up 12 special courts for trying pending criminal cases against MPs and MLAs. Such courts have the inherent potential to be abused by the government of the day, Congress MP Anand Sharma claimed.
Summary:
Kerala's Trivandrum Medical College has withdrawn its ban on male and female students sitting together in classrooms.
Summary:
The European Parliament has praised India for its contribution in rebuilding war-torn Afghanistan since the ouster of the Taliban regime in 2001.
Summary:
The BJP on Monday appointed Finance Minister Arun Jaitley and Saroj Pandey as observers to oversee the election of a new party leader for the Gujarat Assembly.
Summary:
After reports that some members of the Sikh community were forcibly converted to Islam in Pakistan, External Affairs Minister Sushma Swaraj tweeted that she will take up this issue with the government of Pakistan.
Summary:
Reacting to Pakistan coach Mickey Arthur comparing Babar Azam to Indian captain Virat Kohli, the Pakistani batsman said he should not be compared to a "very big player" like Kohli.
Azam added that he follows Kohli nowadays.
Summary:
Adding that results would have been different if "a little more anger would have transformed into votes", he said, "BJP's (election) campaigns are always about caste and religion.
Summary:
A wheelchair-bound passenger on Tuesday claimed that he was not allowed to board a Bengaluru-Kolkata Air India flight on December 17.
Summary:
Italian jewellery brand Bulgari has recently opened the Bulgari Resort & Residences Dubai, believed to be the most expensive hotel in the city.
Summary:
Delhi-based maternity and parenting lifestyle management startup Baby Destination has raised â¹2 crore from New York-based investor Tariq Khan and GEMs Partners.
Summary:
US-based edtech startup Springboard has raised $9.5 million in Series A funding round led by venture capital firm Costanoa Ventures.
Summary:
Ratan Tata-backed women's fashion brand Kaaryah has shut down due to lack of funds, the startup's Founder and CEO Nidhi Agarwal confirmed.
Summary:
Delhi Commission for Women chief Swati Maliwal has urged PM Narendra Modi to bring in a legislation wherein at least those convicted of raping minors are given death penalty within six months.
Summary:
Japanese prosecutors have raided the headquarters of at least two of Japan's biggest construction companies over alleged collusion on bids for the magnetic levitation (maglev) railway line.
Summary:
Ride-hailing aggregator Ola has announced it has acquired Foodpanda's India business from its parent company Delivery Hero in exchange for an undisclosed amount of equity stock.
Summary:
The trailer of Rani Mukerji starrer 'Hichki' has been released.
Summary:
Former Australian captain Ricky Ponting's nickname 'Punter' was given to him by spin legend and his teammate Shane Warne, while Ponting was a part of the Australian Cricket Academy.
Summary:
After BJP gained majority in both Himachal Pradesh and Gujarat Assembly polls, a New York Times report's heading read, "In India, Modi's party shows its might in state elections".
Summary:
This comes after Rajasthan HC directed a sessions court to grant bail to two accused in a criminal case.
Summary:
Congress President Rahul Gandhi on Tuesday said the result of Gujarat Assembly elections was a "massive jolt" to BJP.
Summary:
US Homeland Security Adviser Tom Bossert has publicly blamed North Korea for the cyber attack dubbed as 'WannaCry' which hit around 3 lakh computers in 150 countries in May this year.
The UK and technology giant Microsoft had also earlier accused North Korea of the attack.nn
Summary:
All-rounder Hardik Pandya equalled World Cup-winning India captain Kapil Dev's record of scoring over 500 runs and bagging 30-plus wickets in ODIs in a calendar year.
Summary:
A consumer court has ordered Jet Airways to pay â¹50,000 to a passenger who found a button in his in-flight meal.
Summary:
Paytm Founder Vijay Shekhar Sharma has pledged about 5% of his personal stock in Paytm Mall, which is reportedly worth $50 million, for the Employee Stock Ownership Plan (ESOP).
Summary:
Summary:
Hong Kong was leased to Great Britain by China in 1898 for 99 years.
Summary:
Shiv Sena MP Sanjay Raut on Tuesday said that even though BJP is coming to power in Gujarat, the "real winner" is Congress.
Summary:
Out of 1,024 sanctioned and notified posts for special educators in 1,028 government-run schools, 767 posts are already filled.
Summary:
While highlighting Swami Vivekananda's teachings, Mukherjee said that dominance of one culture can't be objective of human progress.
Summary:
Former Himachal Pradesh Chief Minister Virbhadra Singh's son Vikramaditya Singh won the Shimla Rural seat by over 4,800 votes on Monday.
Summary:
After winning his first ODI series as captain, Indian opener Rohit Sharma said that walking out with the team sheet for the first time was "a feeling of its own which can never be measured or compared with anything".
Summary:
The Uttar Pradesh government on Monday opened its first infertility clinic in Lucknow at Dr Ram Manohar Lohia Hospital.
Summary:
The West Bengal government is reportedly planning to introduce blockchain technology in a bid to secure its online documents from cyber attacks.
Summary:
In a bid to reduce the number of road accidents, West Bengal Police have started stopping vehicles on highways at night to offer drivers water and tea to combat drowsiness.
Summary:
When Delhi government said closing schools would cause children to suffer academically, NGT responded saying, "You don't do your duty and now you are giving reasons.
Summary:
A Chandigarh head constable and a Home Guards volunteer were suspended after they towed a wrongly parked car from Sector 34 while a 12-year-old slept inside it.
Summary:
Former Infosys CFO Mohandas Pai has said India needs a Chief Information Officer (CIO) under Prime Minister's Office (PMO) for integrating IT strategies and policies related to various departments.
Summary:
Foreign visitors in Iceland are estimated to outnumber the local population by seven to one this year.
Summary:
'Oumuamua, the first interstellar object to visit the Solar System, is being reconsidered as a comet after being thought as comet and then classified as asteroid.
Summary:
US President Donald Trump's judicial nominee Matthew Petersen, who was criticised for failing to answer any question on basic knowledge of procedural law during his Senate confirmation hearing, has withdrawn his nomination.
Summary:
A leak has been discovered in the UK's newest and biggest aircraft carrier HMS Queen Elizabeth after less than a month in service.
Summary:
Celebrating 3 years of success, Mercedes-Benz Certified cars, a one-of-a-kind program, not only promises assured quality, world-class service & flexible financial assistance but also an option to exchange your car within 5 days of owning.
Summary:
The BJP runs a coalition with People's Democratic Party in J&K, Janata Dal (United) in Bihar, and Shiv Sena in Maharashtra.
Summary:
Notably, Goa was under the rule of the Portuguese since the 16th century.
Summary:
A Pune-bound passenger who allegedly stole a â¹7,000-bag from a store at Delhi airport was made to fly back to Delhi by the next flight to return it, an official said.
Summary:
The United States First Daughter Ivanka Trump has thanked Telangana CM K Chandrashekar Rao in a handwritten note for the hospitality during her three-day visit to Hyderabad last month.nDescribing her experience as "incredible and inspiring", Ivanka wrote she was deeply touched by warmth of the people of Telangana.
Summary:
Earlier, election campaign posters termed CM Vijay Rupani, BJP chief Amit Shah, and PM Narendra Modi as "RAM".
Summary:
The original prize of the FIFA World Cup, the Jules Rimet Trophy, was stolen from Brazil's Rio de Janeiro on the evening of 19-20 December 1983 and has not been recovered since.
Summary:
The US welcomes India's emergence as a leading global power, said the new US National Security Strategy unveiled by President Donald Trump on Monday.
Summary:
Congress President Rahul Gandhi on Monday said that he was satisfied and not disappointed over the party not forming the governments in Gujarat and Himachal Pradesh.
Summary:
Japanese researchers have claimed to develop a glass that can heal its cracks when pressed by hand, without heating it.
Summary:
Lotuses of pink and red hues are in full bloom on a lake in Thailand as part of an annual phenomenon.
Summary:
Lands inhabited by over 15.3 crore people could be submerged in water by the end of this century, according to a US-based research presented in journal Earth's Future.
Summary:
A NASA-funded study has claimed that microscopic fossils discovered in a nearly 3.5 billion-year-old rock in Australia are the oldest fossils ever found, and give the earliest direct evidence of life on Earth.
Summary:
However, all the other 14 members of the council, including US allies the UK and Japan, voted in favour of the resolution.
Summary:
Forty-one-year-old Debra Parsons from England has said that she will spread her late mother's ashes on her Christmas turkey and pudding.
Parsons, who lost her mother in May, added that she has found solace by eating her mother's ashes.
Summary:
Actress Richa Chadha has said she feels sad for those who think she and Ali Fazal are faking their relationship to promote their film 'Fukrey Returns'.
Summary:
Jacqueline Fernandez has said Salman Khan came like a guardian angel and picked her up from a career low.
Summary:
Actress Meryl Streep, while responding to Rose McGowan slamming her for working with rape-accused producer Harvey Weinstein and not speaking up against him, said she wasn't deliberately silent.
Summary:
Scientists have warned that the Asiatic cheetah is on the threshold of extinction following a UN decision to pull funding from conservation efforts of the world's fastest animals.
Summary:
The biggest Panettone cake, which is popular during Christmas time, has been baked in Italian city Milan.
Summary:
Following England's loss in the third Ashes Test against Australia, Cook registered his 14th Test loss in Australia in 18 Test matches.
Summary:
Kerala Kings thrashed Punjabi Legends by 8 wickets at Sharjah to become the first-ever T10 Cricket League champions.
Summary:
Greater Manchester Police has opened investigations into a "hate crime" amid reports that Manchester City player Raheem Sterling was kicked and subjected to racial slurs at the club's training base before Saturday's match against Tottenham.
Summary:
Jet Airways passengers protested at the Guwahati airport after a Kolkata-bound flight was delayed and later cancelled on Saturday night.
Summary:
A crocodile lizard, a snail-eating turtle, and a bat with a horseshoe-shaped face are among 115 new species discovered in 2016 in Cambodia, Laos, Burma, Thailand and Vietnam, according to a report by World Wide Fund for Nature (WWF).
Summary:
At least six people were killed and over 70 others were injured after a passenger train derailed in US' Washington on Monday during its inaugural run on a high-speed route, according to reports.
Summary:
Zimbabwe's Army on Monday declared an end of the military operation that led to the ouster of Robert Mugabe from the post of the country's President last month.
Summary:
The fourth most popular choice for voters in the Gujarat Assembly elections was NOTA, or None of the Above, the option which allows voters not to choose any of the candidates.
Summary:
A senior official of the Election Commission has said there was a 100% match in the random vote count on EVMs and paper trail slips in Gujarat.
Summary:
Indian domestic carriers have scrapped their flat â¹3,000 cancellation fee after regulator DGCA asked the airlines to provide data on cancellation charges.
Summary:
US comedian Pete Davidson announced in an Instagram post that he got a tattoo of his "hero" and 2016 US Presidential nominee Hillary Clinton as a Christmas gift for her.
Summary:
A Guinness World Record has been set for the world's longest wedding dress train, measuring over 8,095 metres.
Summary:
Nawazuddin Siddiqui has sent a counter notice to his ex-girlfriend Sunita Rajwar after she sued him for revealing details about their relationship in his biography.
Summary:
PM Narendra Modi, during his meeting with a Muslim body, said that the issue of Triple Talaq is not religious, but is rather about women's rights.
Summary:
Former Indian sprinter PT Usha has taken to crowdfunding and has raised over â¹21 lakh to help run her school for young athletes to train them for future Olympic and Asian Games.
Summary:
Meanwhile, an EC official said that random vote tally in Gujarat showed 100% match.
Summary:
In a first, a Thane court has fined a painter â¹5,000 for giving a minor girl a flying kiss in 2010.
Summary:
Paytm is planning to invest $77 million (about â¹500 crore) to promote QR code payments among offline merchants, allowing them to accept unlimited payments directly to their bank accounts at 0% charge.
Summary:
The card is so small that 200 million of these cards could fit into a standard postage stamp.
Summary:
The coalition deal makes Austria the only western European country with a far-right presence in government.
Summary:
The Income-Tax Department has unearthed undisclosed income of â¹7,961 crore post demonetisation from November last year to March 2017, Union Minister Pon Radhakrishnan informed the Parliament on Monday.
Summary:
Singer Enrique Iglesias and his girlfriend former tennis player Anna Kournikova welcomed twins, a boy and a girl, over the weekend in Miami.
Summary:
According to reports, Shahid Kapoor has replaced Ranveer Singh in the Hindi remake of the 2017 Telugu film 'Arjun Reddy'.
So (director) Sandeep Vanga went to Ranveer's Padmavati co-star Shahid Kapoor," said a source.
Summary:
"It's not easy as many people come every day to Mumbai to follow their passion.
I have done many advertisements just to survive because Mumbai is an expensive city," he added.
Summary:
National Award-winning child actor Naman Jain, known for acting in films like 'Chillar Party' and 'Raanjhanaa', will play the role of young Baba Ramdev in an upcoming biopic television series on the Yoga guru.
Summary:
Actor Shah Rukh Khan has revealed that lyricist Javed Akhtar did not like the title of his 1998 film 'Kuch Kuch Hota Hai'.
Summary:
Stating that schools can treat the notice as a request or a warning, HJM leaders claimed that celebrating Christmas is a "step towards forced conversions".
Summary:
Of the 19 women candidates who contested the Himachal Pradesh Assembly elections, only four got elected to the Vidhan Sabha.
Summary:
National Green Tribunal (NGT) on Monday allowed vintage cars which satisfy prescribed norms under the Motor Vehicles Act to ply on Delhi roads for rallies and exhibitions.
Summary:
Boxer Bhavesh Kattamani, who won a gold in the 52kg category, was chosen as the tournament's best boxer.
Summary:
German electric vehicle (EV) startup Magnum Pirex is planning to invest around $15.5 million (nearly â¹100 crore) to set up a manufacturing base in Andhra Pradesh.
Summary:
A press release issued by customs said, "A detailed personal and baggage search of the three passengers resulted in the recovery of five pieces of gold...
Summary:
Those recognised as survivors are entitled to full compensation including medical assistance in Japan.
Summary:
The 54-year-old was convicted of running a smuggling ring that trafficked more than 500 refugees.
Summary:
The Bharatiya Janata Party has won the 2017 Himachal Pradesh Assembly elections with 44 seats and 48.8% vote share, whereas the Congress secured 21 seats with a 41.7% vote share.
Summary:
Notably, BJP had won 115 seats in the 2012 Gujarat Assembly elections.
Summary:
The Bharatiya Janata Party has defeated the ruling Congress in the 2017 Assembly elections to form the government in Himachal Pradesh.
Summary:
Brazilian footballer Kaka, who retired from football on Monday, was the last footballer to win the Ballon d'Or before Cristiano Ronaldo and Lionel Messi.
Summary:
Shah Rukh Khan said that people should respect women who take the brave step of sharing instances of when they faced harassment and help in stopping such incidents from happening in their own line of business.
Summary:
US-based transport technology startup Virgin Hyperloop One has raised $50 million in a funding round led by existing investors Caspian Venture Capital and DP World.
Summary:
Last month, Musharraf had said that he is the biggest supporter of LeT and likes its founder and 26/11 Mumbai terror attack mastermind Hafiz Saeed.
Summary:
He also said that nearly â¹1,300 crore was spent on the printing of new â¹2,000 notes.
Summary:
Actress Emilia Clarke, known for playing the character Daenerys Targaryen in the HBO series 'Game of Thrones', has said that there's a very strict social media ban on the sets of the series this year.
Summary:
Veteran actress Hema Malini has said that she feels very happy that she has portrayed the role of Queen Padmavati in the television series 'Terah Panne' which used to air on Doordarshan.
Summary:
Hollywood actor Will Smith, who is currently in India for the fourth time, has said he thinks he should just move in with Akshay Kumar.
Summary:
US-based artist and upcycler Gabriel Dishaw has used old Louis Vuitton bags to create sculptures of characters like Darth Vader, Kylo Ren, and Stormtrooper from the 'Star Wars' franchise.
Summary:
According to reports, actor Milind Soman will marry his girlfriend Ankita Konwar, who is an air hostess by profession, in 2018.
Summary:
Actor Ranveer Singh has shared a picture with his rumoured girlfriend Deepika Padukone's father Prakash Padukone in his Instagram stories.
Summary:
Kim Jonghyun, lead singer of the K-Pop boyband 'SHINee' from South Korea, passed away at the age of 27 in a case of suspected suicide.
Jonghyun reportedly texted a suicide note to his sister, which read, "Please let me go.
Summary:
Karan Johar has said that he always finds Ranbir Kapoor stealing his phone and reading his messages.
I think he works for the company that makes my phone," added Johar.
Summary:
The annual cultural festival of IIT Bombay, Mood Indigo, will bring the British progressive metal band 'Haken' for their India debut on December 22.
Summary:
India's stand-in captain Rohit Sharma moved up two places to the fifth spot in the ICC rankings for ODI batsmen after scoring his third ODI double ton in the second ODI against Sri Lanka.
Summary:
Uttar Pradesh CM Yogi Adityanath on Sunday said that there will not be any person without a roof over his/her head by 2022.
Summary:
A Chinese court sentenced 10 people to death in a public trial attended by thousands of people, before taking them away for execution.
Summary:
Former Libyan dictator Muammar Gaddafi's son, Saif al-Islam Gaddafi, will run in the 2018 presidential election, a family spokesperson has revealed.
Summary:
Voicing his support for same-sex marriage, Philippine President Rodrigo Duterte said that he himself considered the idea of becoming bisexual so he could "have fun both ways".
Summary:
The US should withdraw the nuclear weapons it has deployed in Europe instead of upgrading them, according to Russia's Foreign Ministry.
Summary:
Pakistan's National Security Advisor Lieutenant General (retired) Nasser Khan Janjua on Monday said that the stability of the south Asian region hangs in a delicate balance and the possibility of a nuclear war cannot be ruled out.
Summary:
The remains of 12 British soldiers who fought in New Zealand's Northern War have been found in a mass grave in the country's Kawakawa region, 170 years after the battle took place.
Summary:
Sarah Mullally has been named as the first female Bishop of London by the Church of England.
Summary:
At least 26 people were killed and 23 others were reported missing in the Philippine province of Biliran as a result of landslides caused by tropical storm Kai-tak, officials said.
Summary:
Narayanbhai had earlier defeated Asha in 2012 Assembly elections by nearly 25,000 votes.
Summary:
Notably, the BJP had won 115 seats, while the Congress had secured 61 seats in the 2012 Assembly elections.
Summary:
Congress President Rahul Gandhi has said that the party accepts the verdict of the people and congratulated the new governments in Himachal Pradesh and Gujarat.
Summary:
India's previous longest streak was six wins between November 2007 and June 2009.
Summary:
This came after President Abraham Lincoln issued the Emancipation Proclamation in 1863 declaring that slaves in the states involved in the Civil War were free.
Summary:
The Mark Hamill, late actress Carrie Fisher and Daisy Ridley starrer 'Star Wars: The Last Jedi' has minted $450 million (over â¹2890 crore) worldwide to set the record for the fifth-biggest global weekend opening for a film ever.
Summary:
BJP National President Amit Shah on Monday said that the two-third lead in Himachal Pradesh Assembly elections shows that people there want to join PM Narendra Modi in the journey to development.
Summary:
Dalit leader Jignesh Mevani has won the seat in Gujarat's Vadgam as an independent candidate with Congress support, with a margin of nearly 20,000 votes.
Summary:
Accusing the BJP of fighting elections on "emotional issues", Gehlot said Congress carried out a "real election campaign".
Summary:
Benchmark index BSE Sensex plummeted over 850 points on Monday as the initial trends in the Gujarat Assembly election results showed a close fight between the BJP and the Congress.
Summary:
Congratulating the people of Gujarat and Himachal Pradesh, Rajasthan CM Vasundhara Raje on Monday said that the assembly elections' results prove that there is no substitute to BJP in India.
Summary:
He had earlier claimed that the BJP could win the Gujarat elections only through EVM tampering.
Summary:
Reacting to Gujarat and Himachal Pradesh Assembly election results, a user praised Congress tweeting, "No opposition hve ever got more than 70 in history of gujrat gud sign for 2019 LS poll for congress".
Summary:
Indian batsman Rohit Sharma scored exactly 217 runs in three innings in the recently-concluded ODI and Test series against Sri Lanka.
Summary:
Notably, the BJP has not announced its Chief Ministerial candidate for Gujarat.
Summary:
Facebook has said in a blog post that it will demote posts which ask users for likes or shares for wider visibility of their content.
Summary:
Hollywood actor Brad Pitt worked as a driver for strippers before joining the film industry.
Summary:
The French Finance Ministry has filed a complaint against Amazon for abusing its dominant position with vendors using its platform to sell their goods.
Summary:
The Adani Group on Monday said that it has cancelled a $1.5 billion contract with a mining services company for work on its proposed Carmichael coal mine in Australia.
Summary:
Actress Kangana Ranaut has said that following her squabble with Hrithik Roshan and Aditya Pancholi, her earnings have gone down and she has few advertisements.
Summary:
You do what you do because there is no other like you." He added, "Not here in this little planet...the universe is yours." Richa made her acting debut with the 2008 film 'Oye Lucky!
Summary:
The birth certificate of a Ludhiana man, Harpreet Singh, shows he was born on February 30, 1995, instead of February 20, 1995.
Summary:
During the UP Assembly session on Monday, state Health Minister Sidharth Nath Singh said that 60% of the specialist doctors posts in the state's government hospitals were lying vacant.
Summary:
Two tigers from Ranthambhore reserve will be relocated to the Mukundra Hills tiger reserve in a bid to reduce congestion and territorial fights at the Ranthambhore reserve.
Summary:
US-based startup Out Of Galaxy has developed a $99 (about â¹6,400) smart bottle called H2OPal which automatically tracks a user's hydration level via an app.
Summary:
Times Internet, the digital arm of the The Times Group, has acquired spiritual content startup 'House of God' for an undisclosed amount.
Summary:
German Interior Minister Thomas de Maiziere has proposed creating the position of an anti-Semitism commissioner to tackle increasing violence against Jews in the country.
Summary:
The Congress party's chief ministerial candidate and current CM Virbhadra Singh has conceded the party's defeat in the Himachal Pradesh Assembly elections.
This comes after the BJP secured a lead in nearly two-thirds of the state's 68 Assembly seats.
Summary:
Congress' Mumbai unit President Sanjay Nirupam on Monday claimed that BJP's victory in Gujarat Assembly elections is not due to the people but because of Electronic Voting Machines (EVMs).
Summary:
Uttar Pradesh Chief Minister Yogi Adityanath on Monday reiterated that a change in the Congress leadership would benefit the BJP.
Summary:
Stating that he would not like to comment about the 'new chief', Union Minister Rajnath Singh said, "sar mundwate hi ole pade" (being greeted by hailstorm when you shave your head), in an apparent reference to Congress President Rahul Gandhi.
Summary:
Referring to Congress President Rahul Gandhi and the Assembly elections results, Goa Chief Minister Manohar Parrikar said, "In his opening innings, he scored zero." Gandhi took charge as the Congress President on Saturday after being unanimously elected.
Summary:
Swiss tennis star Roger Federer was named the BBC Overseas Sports Personality of the Year for a record fourth time.
Summary:
Contesting against Congress candidate Gohil Ajitsinh this year, Vaghani had won the Bhavnagar West seat during the 2012 elections as well.
Summary:
Doctors at Mumbai's Grant Medical College removed a bullet lodged in a 28-year-old patient's eye socket, endoscopically from his nose.
Summary:
As the Election Commission data showed BJP leading in Gujarat Assembly elections, PM Narendra Modi tweeted, "Jeeta Vikas, Jeeta Gujarat." He said the election result in Gujarat and Himachal Pradesh showed strong support for politics of good governance and development.
Summary:
Automaker Toyota will make more than 10 battery electric car models globally by early 2020s, the company said on Monday.
Summary:
Technology giant Google has rolled out the "Hey Google" voice command for its Assistant in the latest Google app update.
Summary:
The airport is the world's busiest, handling more than 250,000 passengers and nearly 2,500 flights every day.
Summary:
Iran on Sunday slammed French President Emmanuel Macron over his stance towards the country, warning him not to follow US President Donald Trump blindly.
Summary:
The Chateau Louis XIV's ownership was concealed by various shell companies in France and Luxembourg, reports added.
Summary:
Russian President Vladimir Putin on Sunday called US counterpart Donald Trump to thank him for a CIA tip that helped thwart bombings in Russia's St Petersburg.
Summary:
"We should be able to slice and dice the data whichever way we want," he added.
Summary:
While reacting to reports of actress Priyanka Chopra being paid around â¹4-5 crore for a five-minute performance at an award show, film critic Rajeev Masand tweeted, "Why is this shocking?" He further wrote, "About time the women got paid as much as men!
Summary:
Two cylindrical gold bars worth over â¹56 lakh were recovered from two passengers at Indira Gandhi International Airport in Delhi on Sunday.
Summary:
Over 100 shops were gutted in a major fire at a shopping complex located in Bhopal's Bairagarh area on Sunday.
Summary:
Union Law Minister Ravi Shankar Prasad on Sunday said that the draft law banning instant Triple Talaq is associated with the issue of women's prestige, honour, and justice.
Summary:
The 12.64-km section of the upcoming Botanical Garden-Janakpuri West line will reduce travel time between Noida and south Delhi by about 45 minutes.
Summary:
The Centre has advised the Jammu and Kashmir government to ensure that Kashmiri youths' passport applications won't be affected due to their relatives' association with militancy in the past.
Summary:
Earlier, the bypoll that was scheduled for April got cancelled after Dhinakaran was accused of trying to bribe voters.
Summary:
The statement followed his re-arrest by the Jharkhand police over the Amrabad police station attack on Saturday, three days after his release on bail.
Summary:
Both the houses of the Parliament were adjourned on Monday following an uproar by Congress members over the alleged remarks levelled by Prime Minister Narendra Modi against his predecessor Manmohan Singh.
Summary:
Israel's national trade union staged a half-day strike on Sunday to protest generic drugmaker Teva's decision to lay off a quarter of its workforce.
Summary:
At least 12 people were killed in a fire that broke out at a shop in Mumbai's Saki Naka on Monday.
Summary:
Incumbent Himachal Pradesh CM Virbhadra Singh is the official CM candidate of the Congress, while BJP has put forward Prem Kumar Dhumal.
Summary:
The hospital filed a police complaint after finding the vehicle missing, but hospital later refused to press charges against the man after his driver got back the vehicle.
Summary:
'Zinda Hai', a new song from the upcoming Salman Khan and Katrina Kaif starrer 'Tiger Zinda Hai', has been released.
Summary:
Congress in-charge of Gujarat Ashok Gehlot on Monday said that the Congress had fought the elections with honesty and the victory was theirs whatever the results be.
Summary:
Right to Health is an internationally recognised fundamental right.
Summary:
Maintaining that India is a land of Hindus, he said India provides shelter to "tortured" Hindus from across the world.
Summary:
"Mushroom Cake from Taiwan to Celebrate today's Victory," BJP spokesperson Tajinder Bagga tweeted.
Summary:
The Indian Railways has cleared a â¹12,000-crore proposal to equip 6,000 electric locomotives with the European Train Control System (ETCS) Level II.
Summary:
In Himachal Pradesh, the BJP is leading in 39 seats, Congress in 22.
Summary:
Australia won the Ashes for the 33rd time after defeating England by an innings and 41 runs on Monday to take an unassailable 3-0 lead in the ongoing five-Test series.
Summary:
Congress candidate and OBC leader Alpesh Thakor is leading in the Radhanpur constituency by over 15,000 votes, Election Commission data revealed on Monday.
Summary:
An affidavit filed by the Jammu and Kashmir government in the Supreme Court maintained that the state doesn't acknowledge Hindus as a minority because it goes by the Centre's national list of minorities.
Summary:
Describing India's economic condition as "favourable to growth", he said the country needs to unleash the next set of reforms to achieve its potential.
Summary:
For a second time this year, the air pollution recorded in Mumbai on Sunday was higher than in Delhi, official data has revealed.
Summary:
Himachal Pradesh Election Commission has said that the firm that was responsible to ensure webcast of all polling stations during the state assembly elections lacked adequate manpower and technical support.
Summary:
Griezmann, who deleted his tweet later, had painted himself black as part of a fancy-dress outfit.
If I have hurt anyone, I apologise," the Frenchman later tweeted.
Summary:
Summary:
The Devkundi-Jambulpada hamlet in Mumbai's Vasai recently received electricity for the first time since independence.
Summary:
A 70-year-old man died on Sunday after suffering a heart attack while waiting in the voters' queue to cast his vote for the nagar panchayat polls in Punjab's Ghagga.
Summary:
NBA star LeBron James wore one black and one white shoe with the word "equality" in capital gold letters on the back of each shoe during an NBA game.
Summary:
The Centre is planning to increase the pension it provides to people from Below Poverty Line (BPL) households from the current â¹200-â¹1,000 a month to around â¹1,600.
Summary:
The agency reportedly rejected the request due to lack of a formal chargesheet against Naik when the request was submitted.
Summary:
Uruguay's Luis Suarez and Brazil's Paulinho scored braces in Barcelona's 4-0 thrashing of Deportivo La Coruna on Sunday.
Summary:
US-based startup BEAM Authentic has developed a $99 (about â¹6,400) smart button called 'BEAM' which lets users display messages, photos, and GIFs. The device features a circular AMOLED screen which is connected to the 'BEAM Authentic' app via Bluetooth.
Summary:
E-commerce major Amazon's Indian arm is planning to invest $5-10 million (â¹32-64 crore) in Bengaluru-based digital lending platform Capital Float, according to reports.
Summary:
US technology major Oracle Corporation has agreed to buy Aconex, an Australian company that makes cloud-based collaboration software for construction projects, for $1.2 billion.
Summary:
Meanwhile, in Himachal Pradesh where 35 seats are required to form the government, BJP is leading in 36.
Summary:
Early trends in the counting of votes in Gujarat and Himachal Pradesh Assembly elections show BJP leading in both the states.
BJP is leading in 85 constituencies in Gujarat and 18 in Himachal.
Summary:
Counting of votes for the Gujarat and Himachal Pradesh Assembly elections began at 8 am today.
Summary:
Draupadi, a female character in Mahabharata, had "five husbands, (but) she won't listen to any of them.
The Mahabharata war that caused the death of 18 lakh people resulted from Draupadi's stubbornness, he added.
Summary:
The girl was allegedly raped when she tried to stop the fight.
Summary:
Bharatiya Janata Party's chief ministerial candidate in the Himachal Pradesh Assembly elections, Prem Kumar Dhumal, is trailing by 1,709 votes from Sujanpur.
Summary:
Kiran Sharma, a woman doctor in Jammu and Kashmir, has been awarded by the Indian Society of Blood Transfusion and Immunohaematology (ISBTI) for donating blood 53 times in three decades.
Summary:
The voter turnout was higher in the northern and central parts of the state than in the western coastal regions.
Summary:
Gujarat Chief Minister and BJP candidate Vijay Rupani is leading in the Rajkot West constituency by 7,600 votes after the Election Commission started counting votes on Monday.
Summary:
Vice President Venkaiah Naidu on Sunday said all political parties should reach a consensus and pass the Women's Reservation Bill, adding that it should not be politicised.
Summary:
Turkish President Recep Tayyip ErdoÃÂan has warned that Muslims may lose Mecca and other holy sites if the US decision to recognise Jerusalem as Israel's capital is not reversed.
Summary:
An economist in the US has claimed to have discovered $21 trillion in unauthorised spending by the US government.
Summary:
Over 400 people were inside the church when the attack occurred.
Summary:
An Austrian man dressed up as St Nicholas, the Christian saint who inspired Santa Claus, was asked to remove his red frock and beard by the authorities as they deemed it to be in violation of the country's full-face veil ban.
Summary:
According to reports, Salman Khan and Govinda will return to star in the sequel of their 2007 film 'Partner'.
The sequel will be directed by Sohail Khan, who has reportedly registered two titles 'Carry On Partner' and 'Partner 2' for the film.
Summary:
Ritesh Sidhwani, who is co-producing the Akshay Kumar starrer 'Gold', said the film is not a biopic on hockey player Balbir Singh.
Summary:
Television actor Hiten Tejwani has been evicted from the reality show Bigg Boss 11 as his co-contestants chose another contestant Priyank Sharma over him, during the elimination round this week.
Summary:
Sab mahaan hote honge, but I'm someone who believes in a man's world," she added.
Summary:
Union Home Minister Rajnath Singh has slammed Congress President Rahul Gandhi for accusing the BJP of spreading fire and violence in the country.
Summary:
Most of the exit polls have predicted that the BJP would secure a win in the elections.
Summary:
Indian wrestlers Sakshi Malik and Sushil Kumar won gold medals at the Commonwealth Wrestling Championship on Sunday.
Summary:
Congress President Rahul Gandhi has asked PM Narendra Modi to provide a special financial package for the rehabilitation of families of fishermen, who lost their lives due to Cyclone Ockhi in Kerala, Tamil Nadu and Lakshadweep.
Summary:
A 21-year-old girl in Punjab allegedly committed suicide on Sunday by setting herself on fire after her visa to go abroad got rejected.
Summary:
Calling the Centre a "factory of elections", Raut claimed that PM Narendra Modi had used government money during the recently concluded election campaign in Gujarat.
Summary:
The celebrations started hours before the counting of votes began.
Summary:
Former AC Milan and Real Madrid midfielder Kaka, who lifted the 2002 World Cup with Brazil, announced his retirement from football on Sunday.
Summary:
The ship with more than 5,000 passengers and crew on board returned to Florida, US after the illness was reported.
Summary:
It is the third such state after Kerala and Odisha to provide a pension for transgenders.
Summary:
The Shah Rukh Khan starrer 2004 film 'Swades' was the first Indian film to be shot inside the NASA research centre at the Kennedy Space Center in Florida, USA.
Summary:
Palestine's ambassador to India Adnan Alihaijaa has said that India and China will lead the negotiations between Israel and Palestine.
Summary:
A report has claimed that a few Army regimental centres have adopted a new disciplinary measure in which they smash the mobiles of trainee soldiers as punishment for using them in violation of rules.
Summary:
The cabinet said the tower design was favoured by a majority.
Summary:
Talking about an ecosystem for drones, Minister of State for Civil Aviation Jayant Sinha has said that the regulations for operating drones will be out in 30-60 days.
Summary:
Australian pacer Mitchell Starc's delivery to dismiss England's James Vince during the third Ashes Test on Sunday is being dubbed 'ball of the 21st century'.
Summary:
Google has announced a new Chrome update called Chrome 64 Beta which allows users to mute autoplay videos on websites.
Summary:
However, it is not clear whether Facebook plans to launch the feature for regular users as well.
Summary:
Auto industry body SIAM has sought two tax rates under GST for passenger vehicles in the upcoming union budget.
Summary:
Talking about high-end consumer demographic, Bengaluru-based digital lending platform ZestMoney's CEO Lizzie Chapman has said that the users today are "time poor and consumption rich".
Summary:
Far-right European leaders on Saturday slammed the European Union for its policies on migrants, accusing the bloc of "killing" Europe.
Summary:
A Goa-based DJ, Ajit Pai, was slammed on social media over the recent repeal of net neutrality rules in the US after users mistook him for US Federal Communications Commission (FCC) Chairman who happens to share the same name.
Summary:
It also alleged that the accused diverted the funds.
Summary:
Veteran actress Rekha, who received the Smita Patil Memorial Award on Saturday, said that the late actress was a far better actor than her or anyone else.
Summary:
Ritesh Sidhwani, who co-produced 'Fukrey Returns', has said that the film's box-office success shows that the audience is coming for content and star value is not the only driving force.
Summary:
The police on Saturday night busted a prostitution racket in Hyderabad and arrested four people, including two actresses from Mumbai.
Summary:
Indian opener Shikhar Dhawan hit his 12th ODI ton and became the second-fastest Indian player to score 4,000 ODI runs after crossing the landmark figure in the third ODI against Sri Lanka on Sunday.
Summary:
The body of an Indian Army soldier who went missing after an avalanche in J&K's Kupwara was found in the area on Sunday.
Summary:
A taxi driver was killed on Saturday during a gunfight between the Army and militants in J&K's Kupwara, Defence Ministry said.
Summary:
A basketball fan who attended Thursday's NBA match between the Atlanta Hawks and the Detroit Pistons won $10,000 (â¹6.4 lakh) after making a shot from the center of the court in his first attempt.
Summary:
A research institute for the study of 'Bhagavad Gita' would soon be set up by CM Yogi Adityanath-led Uttar Pradesh government in Mathura, state minister Laxmi Narayan Chaudhary said on Sunday.
Summary:
Talking about the influence of mobile phones, computer software platform Oracle's VP of Product Development in India, Sanket Atal, has said that the future belongs to chatbots and messaging.
Summary:
Former Russian economy minister Alexei Ulyukaev has been sentenced to eight years in prison for soliciting a $2 million bribe.
Summary:
Addressing a gathering of journalists on Saturday, Pope Francis said that journalists who indulge in fake and sensationalised news commit a "very serious sin" that hurts people.
Summary:
Argentina officially ended the rescue mission for the vessel earlier this month.
Summary:
Doctors removed the toy along with 20 centimetres of the man's large intestine.
Summary:
With the win, India also denied SL their first-ever bilateral ODI series win in India, having played 10 series till now.
Summary:
This comes after Chief Minister Raman Singh launched an electricity development project for the village.
Summary:
World number three and Olympic silver medallist PV Sindhu settled for a silver at the year-ending World Superseries Finals in Dubai on Sunday.
Summary:
Apollo Hospitals Founder and Chairman Dr PC Reddy on Saturday said that doctors were advised to not reveal late Tamil Nadu Chief Minister Jayalalithaa's critical health condition, fearing people's emotional response to the news.
Summary:
Rambai, the mother of Nirbhaya gangrape case convict Mukesh, has said that she should have given birth to a girl.
Summary:
A total of 105 Flight Cadets graduated as Flying Officers of the Air Force on Saturday.
Summary:
Stating that people from humble families find it difficult to establish themselves in politics, BJP MP Varun Gandhi said his surname had helped him become a Lok Sabha member twice at a young age.
Summary:
Lala Amarnath scored India's first-ever Test century on December 17, 1933, while playing in his debut match against England.
Summary:
Russian state-owned oil pipeline company Transneft on Friday said its computers had been used for unauthorized mining of the cryptocurrency Monero.
Summary:
Bengaluru-based online grocer BigBasket's Chief Technology Officer (CTO) Pramod Jajoo at a recent event said, "Data is a key driver of building great products." He also said that the gathered data needs to be actionable, should measure insights and also have the ability to draw insights.
Summary:
Talking about investing in startups, Google's VP for South East Asia and India, Rajan Anandan, has said, "Single-founder startups are difficult; I don't invest in them anymore." He also said that startups go through many setbacks and it gets difficult to manage without another founder.
Summary:
Officials alleged that the man also attempted to broker the sale of coal from North Korea to groups in Indonesia and Vietnam.
Summary:
Jeffrey Currie, global head of commodities research at Goldman Sachs, has said that demand for gold was not affected by Bitcoin price gains because the two have different investor pools.
Summary:
Actress Genelia Deshmukh, while wishing her husband Riteish Deshmukh on his 39th birthday on Sunday, shared a picture on Twitter and wrote, "You will forever be my always." She further wrote, "Thank you for being my everything...
Summary:
Responding to the Karnataka government's decision to cancel actress Sunny Leone's New Year's eve show in Bengaluru, singer Vishal Dadlani tweeted, "Can we please petition the (Karnataka) Govt to allow...(Leone's) NYE show." He further wrote, "I believe some...fanatics have promised to commit mass-suicide if the show happens.
Summary:
Summary:
Actress Rose McGowan slammed Meryl Streep for being silent on the sexual harassment row in Hollywood even though she has worked with rape-accused producer Harvey Weinstein.
Summary:
Apart from counselling, the youth are trained in vocational skills like make-up art and computer data entry.
Summary:
LGBTQ activists have staged a protest in Delhi's Sansad Marg against the Transgender Persons (Protection Of Rights) Bill 2016, claiming the bill threatens the rights guaranteed by the Supreme Court in 2014.
Summary:
The poster was an invite for party members to attend a meeting on December 16 and 17.
Summary:
Summary:
A Congress leader from Uttar Pradesh's Gorakhpur has initiated various campaigns, based on party President Rahul Gandhi, to promote 'Brand Rahul' since 2014.
Summary:
Aaron Dunn, an ice hockey fan from Canada, won a car after scoring the puck from the half-line through a small cut-out placed in front of the goal.
Summary:
The Indian Army is totally prepared to take on any situation in the Doklam plateau and any mischief will be dealt with properly, General Officer Commanding-in-Chief of the Eastern Command Lieutenant General Abhay Krishna said.
Summary:
Mumbai-based online beauty products marketplace Purplle has raised â¹3.44 crore in a funding round led by Singapore-based Mountain Pine Capital and Suncoast Investments.
Summary:
The US Defence Department has admitted to running a secret Unidentified Flying Object (UFO) investigation programme for five years.
Summary:
Riya Subodh, who is from Ahmedabad, was declared the winner of the reality show India's Next Top Model season 3.
Summary:
French sailor Francois Gabart smashed the world record for the fastest solo navigation of the globe on Sunday after completing the feat in 42 days, 16 hours, 40 minutes and 35 seconds.
Summary:
In a bid to extract sensitive information, Pakistan's Inter-Services Intelligence (ISI) employed women to attempt luring three Indian officials posted in Islamabad and film them in compromising positions, according to a report.
Summary:
The first-ever successful flight in history made by the Wright Brothers in North Carolina on December 17, 1903, was just 12 seconds long, covering a distance of 120 feet.
Summary:
Van Niekerk's hat-trick was the first-ever hat-trick registered in the Women's Big Bash League.
Summary:
The Kerala High Court has upheld the decision of a Thiruvananthapuram school to expel a Class XII student for hugging a female friend.
Summary:
The mosque had requested Rai to donate the land.
Summary:
Former Chief Justice of Sikkim High Court SN Bhargava touched the feet of self-styled godman Asaram Bapu, who is under trial for allegedly sexually assaulting a 16-year-old girl in 2013.
Summary:
Technology giant Google has announced that it will officially shut down its augmented reality (AR) platform called Project Tango on March 1, 2018.
Summary:
As of September, Dish TV and Videocon d2h had 24% and 20% market share respectively.
Summary:
Consumer goods giant Unilever has agreed to sell its margarine and spreads business to US private equity firm KKR for $8 billion.
Summary:
Aamir Khan launched the shoot of Shah Rukh Khan's 2004 film 'Swades' by giving the mahurat clap.
Summary:
A 17-year-old Bengaluru girl was rescued by Marathahalli police from a prostitution racket in New Delhi.
Summary:
"We have been able to get rid of a large amount of trash lying scattered all over the area," officials said.
Summary:
Chennai police inspector Periyapandi was shot dead last month after his colleague accidentally pressed the trigger while taking out a pistol from his pocket, Rajasthan SP Deepak Bhargav said.
Summary:
Police said the accused was angry with the minor's parents as they had objected to him ogling her.
Summary:
Stating that Mumbai's monorail and skywalks are a waste of public money, a statutory committee slammed the Mumbai Metropolitan Region Development Authority for misjudging the feasibility of these transport systems.
Summary:
A woman allegedly conspired with her lover to kill her six-and-a-half-year-old daughter after she saw them in a compromising position in Delhi's Ghazipur.
Summary:
Over 53,000 disabled persons, elderly citizens, and widowed women in Uttarakhand have not received their pensions since October 2016 as they could not procure Aadhaar cards, reports said.
Summary:
Efforts are being made to bring Erravelli's body to his native place for the last rites, his family said.
Summary:
The 36-year-old, who was the gram pradhan of Domariyaganj village, had stepped out of his house to meet his friends when four assailants arrived in an SUV and shot at him.
Summary:
Delhi Police have arrested a 37-year-old labour supervisor for allegedly stealing a roll of electric cable worth â¹10 lakh from a metro construction site.
Summary:
British Olympic champion Adam Peaty won 100m breaststroke gold at the European Short Course Championships before giving away his medal to a fan.
Summary:
Technology giant Google has updated its guidelines to hide news from sites that "misrepresent or conceal their country of origin".
Summary:
The company is also reportedly using gear-like cogs to create this adjustable hinge, allowing the device to hold in different positions.
Summary:
American electric carmaker Tesla has restricted the use of its Superchargers for vehicles used for commercial purposes, according to an updated policy.
Summary:
Earlier this month, the CBI had booked Biswal, along with two others, in connection with a case pertaining to corruption.
Summary:
Cellular operators' body COAI has said the extension of deadline for linking Aadhaar with mobile connections provides an immediate relief to both telecom operators and consumers.
Summary:
The seat allotted to Shah was previously occupied by Vice President Venkaiah Naidu.
Summary:
Saudi women will be allowed to drive from June next year.
Summary:
Pakistan has reportedly rejected India's plea for consular access to Jadhav over 30 times.
Summary:
Facebook launched Free Basics across India, offering free internet access to some websites that were available on its Free Basics platform.
Summary:
Former India captain Rahul Dravid has said he is "more a failure than a success".
If you just do the math, I was more a failure," he added.
He said taking failure well is "really important".
Summary:
Minister of State for Civil Aviation Jayant Sinha has said that India needs to have its own "Elon Musks and risk takers" who are ready to invent trillion dollar industries.
Summary:
Many business tycoons were in news in 2017, including former Infosys CEO Vishal Sikka, who resigned from Infosys in August.
Summary:
Prime Minister Narendra Modi on Saturday announced â¹90,000 crore for improving roads and national highways in the Northeast in the next two to three years to facilitate better connectivity.
Summary:
The aviation arm of the Indian Navy will double its aircraft fleet in the coming decade to nearly 500, Chief of Naval Staff Admiral Sunil Lanba said on Friday.
Summary:
Bangladesh on Saturday honoured 27 Indian war veterans as it celebrated Victory Day to commemorate its emergence as an independent nation following the 1971 war against Pakistan.
Summary:
The family of Miss Iraq, Sarah Idan, was forced to leave the country after a picture of her with Miss Israel, Adar Gandelsman, led to death threats, Gandelsman said.
Summary:
The second phase will deal with the transition period and EU's future trade relations with Britain.
Summary:
Irrfan Khan has said there are people who are ready to use their sexuality to reach somewhere in the film industry while there are also those who are against it.
Summary:
Late actress Carrie Fisher's dog Gary attended the screening of 'Star Wars: The Last Jedi'.
She tweeted, "He sat on Fisher's former assistant's lap...
Summary:
The Marshs joined Amarnaths as cricket's second father-son trio to have scored tons in Test cricket, after Mitchell, the youngest Marsh, scored his maiden Test ton against England in the Ashes on Saturday.
Summary:
Notably, Madrid are the first team to retain the Club World Cup title.
Summary:
The victim's father complained that the Uttar Pradesh Police had refused to lodge a complaint several times at various police stations.
Summary:
A local court has issued non-bailable warrants against UP minister Suresh Rana, former Union Minister Sanjeev Balyan, and BJP MLAs Sangeet Som and Umesh Malik for allegedly inciting violence during the 2013 Muzaffarnagar riots.
Summary:
The BCCI's Anti-Corruption and Security Unit chief Neeraj Kumar on Saturday said no evidence was found against the two Indians in the alleged Ashes spot-fixing case.
Summary:
The Brihanmumbai Municipal Corporation will reportedly start work on beautification of Bandra Fort starting March next year.
"We are only doing landscape work,â municipal architect Borale said.
Summary:
City are now 14 points clear at the top of the points table, having played one match more than second-placed Manchester United.
Summary:
The All India Council for Technical Education has said institutes offering Post Graduate Diploma in Management can deduct only â¹1,000 from admission fee if students decide to withdraw before the last date of entry.
Summary:
A Bihar English Honours student has claimed his mark sheet shows that he passed in Psychology, a subject he never opted for.
Summary:
Indian tennis star Sania Mirza will not be playing at the Australian Open 2018 due to a condition called 'jumper's knee' in her right leg.
Summary:
Brazilian aviation company Embraer's CEO Paulo de Souza has said that a network of electric aircraft, which it is developing with Uber, is likely to launch commercially in 2024.
Summary:
Real-estate firm Unitech on Saturday said that two of its directors have resigned from the company.
Summary:
TV serial producer Suhaib Ilyasi, known for hosting the television crime series 'India's Most Wanted', has been convicted in connection with the death of his wife Anju Ilyasi 17 years ago in 2000.
Summary:
Nannes said that team managers used to ask the owners about what they should do next during the match.
Summary:
The cross-combat bout between former boxing world champion Floyd Mayweather and UFC champion Conor McGregor generated over $600 million (â¹3,800 crore) in revenue.
Summary:
Outgoing Congress President Sonia Gandhi will be contesting the 2019 general elections from Uttar Pradesh's Raebareli, her daughter Priyanka Gandhi Vadra said on Saturday.
Summary:
US President Donald Trump's judicial nominee Matthew Petersen failed to answer any question on basic knowledge of procedural law during his Senate confirmation hearing.
Summary:
Bradman, who played a total 234 matches, had a highest first-class score of 452*.
Summary:
Rahul Dravid has revealed that he went on to score 180 in the second innings of the Kolkata Test in 2001 after then Australian captain Steve Waugh sledged him over his batting position.
Summary:
In its World Migration Report, the agency said the largest share of the Indian diaspora, comprising 35 lakh Indians, lived in the UAE in 2015.
Summary:
Koda reportedly charged between â¹30 crore to â¹80 crore to recommend a company or a project.
Summary:
Sobers Joban, the alleged fixer who made claims about being able to rig elements of the third 2017 Ashes Test, was first red-flagged by the BCCI in 2015.
Summary:
Sindhu will face world number two AkaneÃÂ Yamaguchi in the final on Sunday.
Summary:
In a sting operation by a British tabloid, two Indian bookies offered to sell details of rigged periods of play in the third Ashes Test.
Summary:
US President Donald Trump's administration is considering revoking a rule that allows spouses of H-1B visa holders to work in the US.
Summary:
He said that during UPA rule, banks reclassified the loans that were supposed to fall into the non-performing assets category.
Summary:
Nazareth's Mayor Ali Salam ordered to cancel traditional Christmas singing and dancing.
Summary:
Actor Varun Dhawan and actress Alia Bhatt have denied being cast in Karan Johar's upcoming film titled 'Shiddat'.
On being asked about the film, Varun said, "Which movie?
Summary:
Amitabh Bachchan and Ranbir Kapoor have featured on the cover of the 42nd-anniversary special issue of 'India Today' magazine.
Summary:
While the woman and her baby have now been admitted to the hospital, officials have denied all allegations.
Summary:
Former Indian cricketer Sachin Tendulkar and former Australian pacer Brett Lee raced against each other on a go-karting race track.
Summary:
The BCCI on Friday organised a workshop on the Decision Review System (DRS) in Visakhapatnam for its top 10 domestic umpires, who are not a part of the International Cricket Council panel.
Summary:
The Indian Railways plans electrification of 38,000 km route in five years from 2017-18, the Railways Ministry informed the Rajya Sabha on Friday.
Summary:
School teachers of a government school in Karnataka's Tumakuru district allegedly gave liquor to students when they asked for water during a school trip.
Summary:
India won 10 gold and as many silver medals on the first day of the Commonwealth Wrestling Championship in Johannesburg.
Summary:
Patel also questioned the Supreme Court's rejection of the plea to verify the votes through paper trail.
It is used for smooth counting of votes wherever there is a fault," he said.
Summary:
The French Constitutional Council, the country's highest constitutional authority, on Friday rejected a proposed legislation to criminalise visiting terrorist websites for the second time this year.
Summary:
Canadian billionaire Barry Sherman and his wife were found dead at their home in Toronto on Friday.
Summary:
The RBI has imposed a penalty of â¹5 crore on Syndicate Bank for violating the directions issued on cheque purchase, bill discounting, and Know Your Customer (KYC) norms.
Summary:
This comes after Airtel was accused of using the Aadhaar-eKYC based process to open payments bank accounts of subscribers without their consent.
Summary:
Gurugram Fortis hospital charged up to 1,737% more than the procurement price of the medical equipments to the parents of the 7-year-old girl who died of dengue, the National Pharmaceutical Pricing Authority revealed.
Summary:
Union Minister Jayant Sinha has said India must create its own global giants like Google, Facebook and Alibaba.
Summary:
Indian-origin cricketer Jason Jaskirat Sangha has been named the captain of the Australian Under-19 cricket team for the upcoming ICC Under-19 Cricket World Cup in New Zealand.
Summary:
"By imposing emergency, people were devoid of what was rightfully theirs," state Minister Rajendra Rathore said.
Summary:
Sehwag was also dismissed for a three-ball duck on his T20 debut for county side Leicestershire against Yorkshire on June 16, 2003.
Summary:
A Delhi court on Friday acquitted a man of rape charges after finding that a woman had filed the rape case because her mother found "three used condoms" in her bag.
Summary:
Outgoing Congress President Sonia Gandhi on Saturday said personal attacks on her son and new party President Rahul Gandhi have made him a "fearless person".
Summary:
E-commerce major Amazon has agreed to pay Italy â¬100 million to settle outstanding tax claims, the country's tax authority said on Friday.
Summary:
The letter said that Uber used tactics such as hacking into competitor networks to obtain trade secrets.
Summary:
The hologram, when illuminated with a straight laser, projected a Caltech logo.
Summary:
Global sea levels are predicted to rise by 7.42 metres if the Greenland Ice Sheet melts completely, according to a new 3D mapping by US and UK-based researchers.
Summary:
The rate of poverty and inequality in the US is likely to increase under US President Donald Trump's administration, the UN's special rapporteur on extreme poverty and human rights has warned.
Summary:
US President Donald Trump's administration has banned a government health agency from using words like 'transgender' and 'foetus', among others in official documents, reports said.
Summary:
American fashion label Michael Kors has announced that it will go fur-free fur by the end of 2018 and the new policy will also apply to its recently acquired Jimmy Choo label.
Summary:
Director Peter Jackson has admitted to blacklisting actresses Ashley Judd and Mira Sorvino and not casting them in 'Lord of the Rings' under pressure from rape-accused producer Harvey Weinstein.
Summary:
Sonam Kapoor has said she won't play just a hot girl in a song as it would be a waste of her time.
Summary:
Pakistani actress Mahira Khan has said she has become more cautious after the pictures of her smoking with Ranbir Kapoor in New York surfaced online.
Summary:
Directed by Neeraj Pandey, who earlier directed films like 'Baby' and 'MS Dhoni: The Untold Story', Aiyaary' is scheduled to release on January 26, 2018.
Summary:
A video shows a man hanging from a balcony to escape a fire in one of the apartments of a 23-storey building in Chongqing, China on Wednesday.
Summary:
Summary:
Employment-oriented social networking platform LinkedIn dismissed a report that found a security flaw in the platform last month, researcher Khalil Shreateh has claimed.
Summary:
Japanese conglomerate SoftBank is in talks to invest $300 million in the US-based dog-sitting app Wag, according to reports.
Summary:
Tibetan spiritual leader the Dalai Lama's official iPhone app which was launched by him on Thursday, has been blocked in China.
Summary:
A woman in UK was jailed for four years and six months on Friday for giving her son anti-psychotic drugs and poison over a period of six weeks between August and October 2015.
Summary:
An Italian woman who ordered her boyfriend's murder through a website and paid a murderer in cryptocurrency Bitcoin has been sentenced to six years imprisonment.
Summary:
Jadeja, who opened the batting for Jamnagar, scored 154 off 69 balls including 15 fours and 10 sixes.
Summary:
The Taj Mahal Palace Hotel in Mumbai opened on December 16, 1903, 21 years before its neighbour Gateway of India.
Summary:
UK's Foreign Secretary Boris Johnson drank a can of peach juice from Fukushima, the Japanese region hit by the nuclear disaster in 2011, in an attempt to prove that it was safe.
Summary:
Kangana Ranaut has been invited to Harvard Business School as a speaker at the annual India Conference in February 2018.
Kangana will deliver speeches on the topics 'The Changing Entertainment Landscape in India' and 'Disrupting the Indian Mainstream Cinema'.
Summary:
Don't bring Leone here...Let them organise events related to Kannada culture and literature, which is our heritage."
Summary:
Non-vegetarian dishes were not included in the menu for lunch and dinner served on the first day of the annual IAS Week in Uttar Pradesh's Lucknow, an official said.
Summary:
The incident reportedly took place when the biker, while trying to avoid hitting two pedestrians crossing the road, lost control of the bike.
Summary:
While Rahul Gandhi formally took over today aged 47, his father Rajiv Gandhi became Congress President at 41, and his mother Sonia Gandhi was elected at 52.
Summary:
Sonia Gandhi's last speech as Congress President was interrupted several times due to firecrackers that the party workers were bursting outside the All India Congress Committee headquarters in Delhi on Saturday.
Summary:
Smith is the only player to score 1000-plus runs at 60-plus averages in four consecutive years.
Summary:
Smith is also the only captain other than Virat Kohli to score a Test double century in the last 22 months.
Summary:
A group of carol singers and a Christian priest on Saturday were beaten up by suspected Bajrang Dal activists for alleged forced conversion of Hindus to Christianity in Madhya Pradesh, reports said.
Summary:
He said it is the first large hydropower project in Mizoram.
Summary:
Chennai will host Jallikattu Premier League, an Indian Premier League-styled event for the bull-taming sport of jallikattu, on January 7.
Summary:
As many as 26,339 farmers committed suicide in Maharashtra from 2001 to October 2017, the state government said on Friday.
Summary:
A laser-driven technique for creating fusion power that does not use radioactive fuel, leaving no toxic waste, is now within reach, said Australia-based researchers.
Summary:
China has unveiled a satellite network plan for round-the-clock surveillance on the South China Sea. The East Asian country plans to launch 10 satellites into space over the next three years to maintain non-stop surveillance on the disputed waterway.
Summary:
North Korea "will march forward and make great advancement victoriously as world's most powerful nuclear and military state", the reclusive nation's diplomat Ja Song-nam told the United Nations during a session on North Korea's nuclear programme.
Summary:
Users can add anyone, from public figures to acquaintances, to the Felt naughty list and the person with the most votes will receive a lump of coal for each vote cast.
Summary:
The school authorities were reportedly aware of the party.
Summary:
A viral video shows a two-year-old girl picking up the doll meant to denote baby Jesus during a Nativity play at a US church.
Summary:
Bill Young started sharing pictures of the textile floorings he would see during stop-overs on long-haul flights two years ago on the 'myhotelcarpet' Instagram page.
Summary:
'Pink' actor Vijay Varma has said after the film he only got offers to play a molester.
Summary:
Responding to Indian dairy cooperative Amul for its 'Tharooraurus' poster, Congress MP Shashi Tharoor on Saturday tweeted, "Butterly honoured.
Amul had tweeted a poster on the leader captioned "Tharooraurus anyone?" for his usage of the word 'rodomontade'.
Summary:
A medicinal vegan bar and café called Rehab has recently opened in London.
Summary:
The United Nations has condemned the execution of 38 jihadists belonging to ISIS and al-Qaeda by Iraq on Thursday and called for an immediate halt to the mass execution of prisoners in the country.
Summary:
In his first address as the President of the Indian National Congress on Saturday, Rahul Gandhi said that he accepted the position with "deepest humility", knowing that he will always be "walking in the shadows of giants".
Summary:
Apollo Hospitals Vice-Chairperson on Friday said the late Tamil Nadu CM J Jayalalithaa was brought to the hospital in a breathless state in September last year and recovered from it after adequate treatment.
Summary:
On December 16, 2012, a 23-year-old student was gangraped and tortured in a moving bus by six men.
Summary:
Facebook is launching 'Snooze' feature which will give the users an option to temporarily unfollow a person, Page or group for 30 days, the social media giant announced on Friday.
Summary:
It's the first time that the space exploration startup launched both types of reused equipment at the same time.
Summary:
Social activist Anna Hazare on Friday alleged that BJP received â¹80,000 crore as donations in last 5 months.
Summary:
After formally taking over as Congress President, Rahul Gandhi on Saturday said that Congress took India to 21st century, but Prime Minister Narendra Modi is taking the country back to the medieval times.
Summary:
US-based researchers have discovered how the human immune system remembers vaccinations to prevent infections even decades later.
Summary:
Former Pakistani Ambassador to the US Husain Haqqani has said that Pakistan's Army is the arsonist in Afghanistan which also wants to be part of the fire brigade, referring to Pakistan's policy in the war-torn country.
Summary:
It ruled that warlord Thomas Lubanga was liable to pay the amount to the soldiers and their families.
Summary:
The latest intercontinental ballistic missile (ICBM) tested by North Korea "is not yet a capable threat against us right now", US Defence Secretary Jim Mattis said on Friday citing his country's forensic analysis of the missile test.
Summary:
Queen Elizabeth II and Prince Philip gift all their 1,500 members of staff a traditional Christmas pudding on the occasion of Christmas, according to palace officials.
Summary:
Indian dairy cooperative Amul on Friday released a poster captioned "Tharooraurus anyone?" after Congress MP Shashi Tharoor's tweet with the word 'rodomontade' went viral.
Summary:
The person has already donated over $6.5 million in Bitcoins to some well known non-profit organisations including Watsi, The Water Project and MAPS.
Summary:
An artificial intelligence researcher at Google, Steven Scott, has been accused of inappropriately grabbing a woman at a conference in 2010 and taking advantage of another on two separate occasions, according to reports.
Summary:
India's largest telecom firm Airtel's Chairman Sunil Mittal has said that his move to invest in Africa in 2010 "was a bit rushed".
Summary:
Filmmaker Karan Johar took to social media to share a new picture from the sets of Janhvi Kapoor and Ishaan Khatter starrer 'Dhadak'.
Summary:
Congress Spokesperson Abhishek Singhvi has said the party may oppose a proposed legislation criminalising instant Triple Talaq if it's in violation of a Supreme Court judgement on the matter.
Summary:
The blades in these special sharpeners tilt towards the right, unlike normal sharpeners, and the pencil needs to be rotated anti-clockwise, making it easier for a left-handed person.
Summary:
IT major Tech Mahindra is working on developing a solution using blockchain technology to let dealers issue registration certificate and number for a vehicle, a company official said.
Summary:
Elon Musk has slammed publishing company Wired over an article which claimed that The Boring Company Founder dislikes public transit.
Summary:
The maker of craft beer Bira 91, B9 Beverages has raised â¹25 crore from Chennai-based asset management company Anicut Capital, according to filings.
Summary:
The SUV (sport utility vehicle) is also the 16th electric vehicle registered in Mumbai during the current financial year.
Summary:
A UK-based study of ancient faeces from prehistoric burials on a Greek island have provided the first archaeological evidence for the parasitic worms described 2,500 years ago in the writings of Greek physician Hippocrates.
Summary:
A US court has sentenced a Nigerian man to over 3 years in prison after he pleaded guilty to taking part in a global cyber scam.
Summary:
An Indonesian court has sentenced eight workers and two visitors of a gay club to up to three years in prison over anti-pornography charges.
Summary:
Rahul Gandhi officially took charge as the President of Indian National Congress on Saturday, replacing his mother, Sonia Gandhi, who held the post for 19 years.
Summary:
A CBI court on Saturday sentenced former Jharkhand CM Madhu Koda to 3 years' imprisonment in a coal scam case and imposed a â¹25-lakh fine.
Summary:
On December 3, 1971, Pakistan's military attacked several Indian posts and declared a state of war against India because of India's support to East Pakistan (now Bangladesh) against Pakistan's military oppression.
Summary:
The crash killed all the 128 people onboard the two flights and six others on the ground.
Summary:
Bangladesh's Liberation War Affairs Minister AKM Mozammel Haque has thanked India for its support during the country's war of independence against Pakistan in 1971.
We got all logistic support from India," the minister said.
Summary:
Vice President M Venkaiah Naidu on Friday suggested the ministers in the Rajya Sabha not say 'I beg to' while laying papers on the table and rather say 'I raise to'.
He made the observation after ministers began their sentences by saying, "I beg to lay on the table...".
Summary:
Australian batsman Belinda Clark was the first cricketer to score a double hundred in ODI cricket after smashing 229 against Denmark in Mumbai on December 16, 1997.
Summary:
Australian captain Steve Smith beat Indian legend Sachin Tendulkar to become the third quickest player to reach 22 Test hundreds after crossing the milestone in the third Ashes Test against England in Perth on Saturday.
Summary:
Harvard and Cornell engineers have created 80-milligram "RoboBees" programmed to mimic an insect brain and behave autonomously.
Summary:
About 75% of the firms surveyed anticipate benefits in business process efficiency and employee productivity with the use of AI, it added.
Summary:
The $52.6 million train climbs 743 metres over a span of 1,738 metres along gradients as steep as 47.7ú.
Summary:
Scientists exploring volcanic rocks at a Scottish island have discovered remains from a previously unknown meteorite that impacted the Earth around 60 million years ago.
Summary:
This comes after a study found 720 out of 1,000 children never looked up for a constellation.
Summary:
A team led by two NASA scientists is set to embark on a 750-kilometre Antarctic expeditionnto survey an unexplored stretch of the frozen continent.
Summary:
Citing the two recent terrorist attacks in New York, US President Donald Trump on Friday said that foreign countries send their "worst of the worst" people to the US through the country's green card immigration lottery system.
Summary:
Meanwhile, Fuehrer has travelled nearly 29,000 kilometres in his mobile home and visited several places including Alaska and Florida.
Summary:
"They told us they wanted to marry later, so we arranged their marriage," police said.
Summary:
Employees will also get an additional 10% of the salary they choose to receive in Bitcoin as an incentive.
Summary:
Bitcoin exchange Coinsecure has said that the survey conducted by the Income Tax Department was "extremely routine" and all exchanges in India have gone through the same process.
Summary:
Kareena Kapoor has said that Shah Rukh Khan is India's biggest romantic hero.
Summary:
Responding to her upcoming film 'Veere Di Wedding' being called a chick flick, actress Sonam Kapoor said, "Don't call it that!
There's no such thing as chick flicks." "Do you call a hero's film a stud film?
Sonam further said 'Veere Di Wedding' is about coming-of-age of women at large.
Summary:
Spain could miss out on the 2018 World Cup in Russia despite qualifying after reports claimed that FIFA warned the Spanish football federation with a ban over political interference in the functioning of the association.
Summary:
A police constable in Madhya Pradesh on Friday aimed his service rifle at Congress leader and Lok Sabha MP Kamal Nath when he was boarding a chartered plane.
Summary:
The Darjeeling toy train, also known as the Darjeeling Himalayan Railway (DHR), resumed operations on Friday after six months.
Summary:
A hotel in Budapest has recently opened the highest ice skating rink in the Hungarian capital city on its rooftop.
Summary:
A Chinese man has been sentenced to one year in jail by a court in Inner Mongolia, an autonomous region of China, for stamping on a portrait of Mongol ruler Genghis Khan.
Summary:
Promoters hold 17.92% stake in Unitech, of which 73% is pledged.
Summary:
The court said the 85% warning rule was unconstitutional and an "unreasonable restriction" on the right to do business.
Summary:
The Taj Mahal Palace Hotel in Mumbai, which opened 114 years ago on December 16, 1903, charged its first guests â¹10 for single rooms and â¹13 for rooms with attached bathrooms and fans.
Summary:
The video shows the ambulance equipped with speakers, a generator and covered with flex posters of the party.
Summary:
On the first day of the Parliament's Winter Session, Opposition leaders protested against the disqualification of rebel JD(U) leaders Sharad Yadav and Ali Anwar from the Rajya Sabha.
Summary:
Austin Waugh, the son of World Cup-winning Australian captain Steve Waugh, has been included in Australia's squad for the 2018 U-19 World Cup. The 17-year-old slammed 372 runs in eight Under-17 National Championships matches last season.
Summary:
India is Afghanistan's most reliable regional partner and the largest contributor of development assistance in the region, the US Defence Department has said, welcoming India's additional economic, medical, and civic support to the war-torn country.
Summary:
Before Delhi, Joban played for his home state Himachal Pradesh in U-17, U-19 and U-22 age-group.
Summary:
Russian President Vladimir Putin has said that he is on first name terms with US President Donald Trump, adding that is how relations should be among world leaders.
Summary:
The eighth round of Syrian peace talks brokered by the United Nations collapsed on Thursday without progress towards a deal to end the seven-year Syrian civil war.
Summary:
Summary:
Following cricketer Virat Kohli and actress Anushka Sharma's wedding, Fevikwik tweeted, "The right kind of match fixing" alongside an illustration to wish the couple.
Summary:
Summary:
Speaking about the ongoing row on the film 'Padmavati', Rishi Kapoor said, "These are a bunch of idiots, who are raising the alarm." He added, "Picture dekho fir bolo na.
Summary:
Director of 'Newton' Amit V Masurkar has said that the Best Foreign Language Film category at the Academy Awards (Oscars) is like the Olympics.
Summary:
Our people forgot that she is an artist, not the enemy!" Mahira, who made her Bollywood debut with 'Raees', had not been permitted to promote the film.
Summary:
Indian National Lok Dal (INLD) Lok Sabha MP Dushyant Chautala on Friday rode a tractor to the Parliament with some of his aides for the first day of the Winter Session.
Summary:
Baljit Singh Joban, the father of 31-year-old alleged fixer and ex-Delhi cricketer Sobers Joban, has said that if his son is found guilty by ICC then "let them hang him".
Summary:
Sindhu will face world number eight China's Chen Yufei in the semi-finals on Saturday.
Summary:
Tourism Minister KJ Alphons on Thursday said that forcing foreigners to take selfies is not the right thing to do and is an intrusion of their privacy.
Summary:
Madhya Pradesh CM Shivraj Singh Chouhan has said that it'll be mandatory for all school buses carrying female students to deploy women conductors.
Summary:
Police have arrested 26 people after fans brawled during a footballÃÂ derby between rivals Red Star and Partizan in Belgrade, Serbia.
Summary:
Following his record third ODI double ton, Rohit Sharma in an interview to Ravi Shastri said he relies on timing as he doesn't have "so much power" like MS Dhoni or Chris Gayle.
Summary:
The minister also said that the government is serious about implementing the Clinical Establishments Act to check overcharging and profiteering by doctors and hospitals.
Summary:
Puducherry Lieutenant Governor Kiran Bedi on Friday banned Business Class air travel by officials due to "severe financial constraints".
"Business travel is not essential.
Summary:
Bengaluru-based online shopping portal for fashion and lifestyle products Styletag has suspended operations and is reportedly in the midst of a restructuring exercise.
Summary:
The Argentinian submarine that went missing last month was being "chased" by a British Navy helicopter and a Chilean ship shortly before disappearing.
Summary:
However, the trade deficit widened on an annual basis as compared to $13.40 billion in the year-ago period.
Summary:
Two people were killed and two others were injured on Friday as a security vehicle in Tamil Nadu Governor Banwarilal Purohit's convoy ran over a group of pedestrians in Mahabalipuram.
Summary:
The year also saw the ouster of Uber CEO Travis Kalanick and exit of Ford Motor's Mark Fields.
Summary:
The car Madhukar was travelling in ran over Asha Kamble, a 67-year-old woman, who succumbed to her injuries at a local hospital.
Summary:
Earlier in October, the government had increased the customs duty on polyester fabric to 20% from the existing 10%.
Summary:
The wife of the domestic help Hemraj, who was murdered along with Aarushi Talwar in 2008, has challenged the acquittal of Rajesh and Nupur Talwar in the case.
Summary:
The Union Cabinet has passed the bill to replace the Medical Council of India (MCI) with a National Medical Commission, Law and Justice Minister Ravi Shankar Prasad said on Friday.
Summary:
The Supreme Court has dismissed Congress' plea seeking directions to Election Commission to verify at least 25% of EVM votes in the Gujarat elections with Voter Verifiable Paper Audit Trail.
Summary:
The caste of an accused and the complainant will no longer be recorded by the police in Punjab, Haryana, and Chandigarh during the filing of an FIR.
Summary:
Social media major Facebook's Chief Operating Officer Sheryl Sandberg has said that the US Federal Communications Commission's (FCC) decision to end net neutrality is "disappointing and harmful." Sandberg said that an open internet is critical for economic opportunity.
Summary:
The US Federal Communications Commission's (FCC) Chief Technology Officer Eric Burger had expressed concerns about the plan to repeal net neutrality rules, according to reports.
Summary:
Uber Investor and Sherpa Capital Co-founder Shervin Pishevar has resigned from the venture capital firm following allegations of sexual misconduct and assault.
Earlier this month, Pishevar took a leave of absence from Sherpa Capital.
Summary:
After declassifying about 750 films earlier this year from 210 nuclear tests conducted by the US between 1945 and 1962, US-based weapon physicist Greg Spriggs has made 62 new videos from them publicly available.
Summary:
A woman in US' Long Island was arrested for allegedly sending thousands of dollars worth of Bitcoin to ISIS.
Summary:
Russian Deputy Foreign Minister Igor Morgulov has said that Russia won't be a part of sanctions imposed against North Korea that would "strangle" the country economically.
Summary:
Russia could attack underwater communication cables, cutting off the internet to Britain and other NATO countries, Britain's Chief of the Defence Staff Air Chief Marshall Sir Stuart Peach has warned.
Summary:
The Unique Identification Authority of India (UIDAI) has asked all the banks to "speed up" installation of fingerprint and iris scanners in 10% of their branches for those seeking to open new bank accounts.
Summary:
Vodafone India on Friday announced that Manish Dawar will take over as its Chief Financial Officer (CFO) with effect from January 1, 2018.
Summary:
Summary:
Responding to reports that she and her French boyfriend have been asked to evict their apartment in Paris over non-payment of rent, Mallika Sherawat tweeted that they don't have any house in Paris.
Summary:
As per reports, actor Nawazuddin Siddiqui will play late Bal Thackeray, the founder of the Shiv Sena in an upcoming biopic on the political figure.
Summary:
The Juvenile Justice Board on Friday rejected the bail plea filed by the juvenile accused in the Ryan International School murder case.
Summary:
Flipkart-owned fashion retailer Myntra is planning to open a chain of offline stores for selling multi-brand cosmetic and wellness products, according to reports.
Summary:
Australia's Catholic Church has rejected suggestions by a commission to make celibacy for priests voluntary and end the secrecy of confession.
Summary:
Addressing an annual press conference on Thursday, Russian President Vladimir Putin told a journalist who attempted to ask a follow-up question that the conference wasn't a "discussion".
Summary:
Iran has opened the country's first museum dedicated to a female artist, Monir Shahroudy Farmanfarmaian.
Summary:
Real-estate firm Jaypee Associates has deposited â¹150 crore in the Supreme Court registry after it was ordered to deposit the amount by December 14.
Summary:
Finance Minister Arun Jaitley has said that 35% of people who have filed GST returns have mostly not paid any tax.
Summary:
The Congress on Friday clarified that Sonia Gandhi is only retiring from the post of party President and not from politics.
Summary:
The 1903 Nobel Prize in Physics was divided, with one half awarded to French physicist Antoine Henri Becquerel for his discovery of "spontaneous radioactivity" and the other half jointly to Pierre Curie and Marie Curie for isolating radium and polonium.
Summary:
Prince Harry had designed the engagement ring himself for Meghan.
Summary:
Nawazuddin Siddiqui and Vijay Varma's film 'Monsoon Shootout', which released on Friday, "fails to engage despite being backed by powerhouse talents," wrote Hindustan Times.
Summary:
'Youthquake' has been selected as Oxford Dictionaries' Word of the Year.
The word, meaning a "cultural, political, or social change arising from the actions...
Summary:
Gurugram-based food-technology startup Yumist shut down in September after failing to raise capital.
Summary:
Responding to an RTI application, the Defence and Home Affairs Ministries have said that terms like 'martyr' or 'shaheed' do not exist in their lexicon.
Summary:
Further, during the investigation, the tabloid's reporters were asked for $187,000 for spot-fixing in the third Ashes Test.
Summary:
A petition filed in the Karnataka High Court has sought a ban on the sale of liquor on New Year's Eve and January 1, 2018, in Bengaluru, to prevent crimes against women and road accidents.
Summary:
A Japanese tourist was allegedly drugged and robbed in Varanasi on Thursday by a man posing as a tour guide.
Summary:
US-based MagLab has successfully tested the world's strongest superconducting magnet, producing 32 teslas (a unit of magnetic field strength), 33% stronger than the previous record.
Summary:
Australian fashion label Black Milk has created a new clothing collection named 'Team Hogwarts', which is inspired by the Harry Potter series.
Summary:
A noodle measuring over 10,119 feet holds the Guinness World Record for being the longest noodle.
Summary:
MDR is the rate charged to a merchant by a bank for providing debit and credit card services.
Summary:
Actress Anushka Sharma took to Instagram to share a picture with her husband cricketer Virat Kohli from their honeymoon.
Anushka married the Indian cricket team captain in Tuscany, Italy in an intimate wedding ceremony.
Summary:
As per reports, Sara Ali Khan's debut film 'Kedarnath' will release on the same day as Shah Rukh Khan's upcoming film, which is being directed by Aanand L Rai. Kedarnath's director tweeted that the film's release is on schedule for December 21, 2018.
Summary:
Actor Salman Khan has said that Eid was not the right time for the release of his film 'Tubelight'.
Summary:
Protesters said that her participation in the event is an assault on the culture of the land.
Summary:
A renowned UK-based surgeon has pleaded guilty to marking his initials on the livers of two patients while performing transplant surgery.
Summary:
Former Brazilian footballer Ronaldinho has been offered to run for a senate seat next year by a few political parties in the country.
Summary:
"I don't usually field in slips so it was just a shock to hold on to one, let alone a one-hander," Gotch said.
Summary:
England wicketkeeper Jonny Bairstow celebrated his maiden Ashes century on Friday by kissing the badge on his helmet and headbutting it during the third Ashes Test.
Summary:
Chinese Taipei's Hsu Ya Ching changed her racquet during the final point of the Group B women's doubles match at the Dubai World Superseries Finals on Thursday.
Summary:
Kings XI Punjab head coach's job was informally held by Sehwag last season.
Summary:
Indian Accent, which has repeatedly been rated India's best restaurant, has opened in London.
Summary:
Meza and his gunman also allegedly stole the man's house keys and phone.
Summary:
Lawmakers in Bermuda have voted to ban same-sex marriage, six months after it was legalised by the country's Supreme Court.
Summary:
India's Test vice-captain Ajinkya Rahane's father Madhukar Baburao Rahane was arrested on Friday after the car he was travelling in hit a woman near Kolhapur.
Summary:
The Union Cabinet on Friday cleared the Muslim Women (Protection of Rights on Marriage) Bill, 2017, or the Triple Talaq bill, which makes the practice a non-bailable offence.
Summary:
Electronic Voting Machines (EVMs) in India consist of a 'Control Unit', controlled by polling officers, and a 'Balloting Unit', where voters press the button corresponding to their choice.
Summary:
American animator and Mickey Mouse's creator Walt Disney was once fired from a job in a newspaper as his editor felt he was not creative enough.
Summary:
Former India Under-23 footballer Prathamesh Maulingkar won the title of Mr India Supranational 2017 on Thursday and will represent India at the Mr Supranational 2018 competition.
Summary:
Former Pakistani captain Shahid Afridi took a hat-trick with his first three balls in the 10 overs-a-side cricket while playing for the Pakhtoons in the T10 League.
Summary:
A minimum of 98 overs will be bowled on each day of four-day Tests as compared to 90 overs in five-day Tests.
Summary:
He started the langar service on his son's eighth birthday and has been organising it ever since.
Summary:
External Affairs Minister Sushma Swaraj on Friday tweeted that the Ministry will provide the ticket for the return of an Indian woman who was allegedly abducted in Pakistan.
Summary:
Authorities in China foiled an evasion attempt in less than seven minutes in a test to check the effectiveness of the country's surveillance system.
Summary:
China's Navy on Thursday began a four-day live-fire drill off the coast of North Korea amid increased military activity in the region.
Summary:
A photographer was held responsible by a Delhi consumer court for ruining a wedding after he failed to provide a married couple with photographs of their wedding day despite accepting 80% of the payment.
Summary:
Former Censor Board chief Pahlaj Nihalani, while reacting to the Information and Broadcasting Ministry's restrictions on advertising condoms on television between 6 am and 10 pm, questioned why Akshay Kumar is promoting paan masala.
Summary:
According to reports, Priyanka Chopra will be paid around â¹4-5 crore for a 5-minute performance at an award show.
Summary:
Information and Broadcasting Ministry has ordered Assamese television channel DY 365 to go off-air for three days and Gujarati channel VTV for one day for violating the cable network rules.
Summary:
Prime Minister Narendra Modi did not address queries of Opposition at the all-party meeting held ahead of the Parliament's Winter Session, Congress leader Mallikarjun Kharge said on Friday.
Summary:
The message of peace and harmony is "beautifully portrayed" in the Holy Quran and it does not propagate violence, Army Chief General Bipin Rawat told a group of students from Jammu and Kashmir on Thursday.
Summary:
Prime Minister Narendra Modi on Friday paid tribute to the first Deputy Prime Minister of India, Sardar Vallabhbhai Patel, on his death anniversary and said that the nation is indebted to him.
Summary:
Apple Maps has unveiled indoor layouts of over 30 airports across the globe to let users "look inside" for check-in desks, airport lounges, bathrooms and other locations.
Summary:
A man was apprehended at the Delhi airport on Wednesday for allegedly using a fake ticket to see his Frankfurt-bound family off, according to reports.
Summary:
US-based astronomers have claimed to discover an "improved" method for measuring the masses of solitary stars, especially those with planets.
Finally, the data is combined to calculate the star's mass, said researchers.
Summary:
Germany and US-based researchers have discovered a way to use microbes for turning Greek yogurt waste into molecules for biofuel production.
Summary:
White dwarfs are Earth-sized objects having mass equal to the Sun that have exhausted their nuclear fuel.
Summary:
Researchers behind $100-million Breakthrough Listen project studying the first asteroid known to visit the Solar System from outside have found no evidence of alien technology.
Summary:
The victim had reportedly first attacked the suspect with a knife, injuring his fingers.
Summary:
A Constitutional Court in Indonesia has rejected a plea to make sex outside marriage illegal in the world's biggest Muslim-majority country.
Summary:
The man has confessed to his crime, saying he dreaded the divorce to avoid living apart from their children.
Summary:
The Supreme Court on Friday extended the deadline for linking Aadhaar number to all services and government schemes, including mobile phone number, Permanent Account Number (PAN), and bank accounts, till March 31, 2018.
Summary:
"'The Last Jedi' is everything a Star Wars film should be," said The Times of India (TOI) while Firstpost wrote that the film "surprises constantly".
Summary:
Rahul Gandhi was elected the party President on Monday.
Summary:
Gustave Eiffel, the designer of Paris' Eiffel Tower, had helped design New York's Statue of Liberty.
Summary:
The film is an all-female spin-off of the Ocean's trilogy.
Summary:
Rajkummar Rao starrer 'Newton', India's official entry to Oscars 2018, has failed to make it to the Best Foreign Language Film category's new shortlist for the 90th Academy Awards.
Summary:
The new bills listed for introduction and passage include Triple Talaq Bill and GST (Compensation to States Amendment) Bill.
Summary:
The World Health Organisation (WHO) has declared that cannabidiol (CBD), which is a relaxing compound in medical marijuana, is safe and well tolerated in humans, and is not associated with any negative public health effects.
Summary:
China and US-based researchers have captured the oldest ice core ever drilled outside the polar regions, dating back over 6 lakh years, before modern humans appeared.
Summary:
US-based scientists have found that human-caused climate change made Hurricane Harvey roughly three times more likely and its rainfall 15% more intense.
Summary:
Iraq on Thursday hanged 38 jihadists belonging to ISIS and al-Qaeda in the city of Nasiriyah for terrorism offences.
Summary:
The US has unveiled its new embassy in London which is believed to be the world's most expensive embassy.
Summary:
The leader of the Palestinian militant group Hamas, Ismail Haniyeh, has vowed to reverse US President Donald Trump's recognition of Jerusalem as Israel's capital.
Summary:
The weapons provided by the US and Saudi Arabia to Syrian opposition groups fighting against President Bashar al-Assad frequently ended up in the hands of ISIS, arms monitoring group Conflict Armament Research has said.
Summary:
A news reporter preparing to go live to deliver her weather report in the United States was hit in the face with a snowball by her photographer.
Summary:
The mother of the teenage actress who was allegedly molested onboard a Delhi-Mumbai Vistara flight did not want to file a complaint when asked by crew members, the airline has informed DGCA.
Summary:
Rape-accused producer Harvey Weinstein, while responding to actress Salma Hayek's accusation that he forced her into doing a lesbian sex scene in the 2002 film 'Frida', said he doesn't recall pressurising her.
Summary:
A Cambridge study analysing 411 wine glasses from 1700 to present day has found their capacity gradually increased from 66 ml to nearly 450 ml over 300 years.
Summary:
Congress MP Shashi Tharoor on Thursday in a tweet about parodies on his writing and speaking style, used the word 'rodomontade' which means 'boastful or inflated talk or behaviour'.
Summary:
Indian Navy, Indian Air Force, and Indian Coast Guard have successfully rescued 700 fishermen affected by Cyclone Ockhi, Union Defence Minister Nirmala Sitharaman said on Thursday.
Summary:
RJD chief Lalu Prasad Yadav on Tuesday tweeted, "I am the son of Twitter.
Summary:
The Election Commission (EC) on Thursday clarified that Congress President Rahul Gandhi was issued a notice under model code of conduct and not an FIR following his interview with a Gujarati channel.
Summary:
The Andhra Pradesh government has entered into a Memorandum of Understanding (MoU) with the National University of Singapore to collaborate on various aspects of governance.
Summary:
A Dubai-based real estate company will give a studio apartment in Dubai worth nearly â¹88 lakh to any cricketer who manages to score a century in 10 overs in the 10 overs-a-side T10 Cricket League in Sharjah.
Summary:
The Ministry of Home Affairs (MHA) has proposed that ATMs shouldn't be replenished with cash after 9 pm in cities, 6 pm in rural areas, and 4 pm in Maoist-affected districts, over attacks on the vans.
Summary:
Ahead of the Winter Session of the Parliament, PM Narendra Modi said all the parties were on-board to take the country ahead and make the session positive to achieve that purpose.
Summary:
The CISF has said it cannot allow the "reverse entry" of passengers at Delhi airport.
Summary:
On #NationalJeansDay on 17th December 2017, fbb gives you an opportunity to #GrabAPair almost FREE.
Summary:
The commission said the rules were heavy-handed, and stifled competition and innovation among the service providers.
Summary:
As per government data available, 14 sittings is the lowest for any winter session since 1999.
Summary:
Researchers using Google's artificial intelligence (AI) and NASA's Kepler Space Telescope have found the eighth planet around a Sun-like star, making it the first to tie with our solar system in number of planets.
Summary:
Italy's Leaning Tower of Pisa was reopened to tourists after 11 years on December 15, 2001.
Summary:
The trailer of Akshay Kumar, Sonam Kapoor and Radhika Apte starrer 'PadMan' has been released.
Summary:
Union Minister Maneka Gandhi has written to 24 Bollywood filmmakers including Shah Rukh Khan and Aamir Khan asking to comply with the Sexual Harassment of Women at Workplace Act, 2013.
Summary:
The panel will suggest ways to ensure hospitals don't overcharge a patient who has been assured of a certain package.
Summary:
Former India captain and Cricket Association of Bengal President Sourav Ganguly on Thursday said that day-night Test cricket is inevitable in India and it has to happen someday.
Summary:
Two Rajasthan government school teachers have been suspended for spelling mistakes in the English question paper for Rajasthan Board of Secondary Education examinations.
One of the teachers prepared the paper while the other reviewed it.
Summary:
Congress spokesperson Randeep Surjewala called the EC a "captive puppet of the PM" which has turned into "BJP's frontal organisation".
Summary:
Vijay Mallya's lawyer on Thursday told a London court that Indian jails are over-crowded and are infested with rats, cockroaches, and snakes.
Summary:
Indian shuttler PV Sindhu reached the semi-final of the year-ending Dubai World Superseries Finals after defeating Japan's Sayaka Sato 21-13, 21-12 in her second group match.
Summary:
The study projected that e-waste generated will climb to 52.2 million tonnes by 2021.
Summary:
Officials had earlier claimed that Manipur was facing 35% rain deficiency during this year's monsoon.
Summary:
The combined market value of all cryptocurrencies has now surpassed the $500 billion mark, making them more valuable than billionaire Warren Buffett's Berkshire Hathaway ($491 billion).
Summary:
According to reports, Mallika Sherawat and her French boyfriend Cyrille Auxenfans have been asked to evict their apartment in Paris over non-payment of rent.
Summary:
The Euston railway station in London will be turned into a shelter for around 200 homeless people on Christmas Day. The station will be filled with festive decorations, while tables will be laid out to serve the people Christmas dinner.
Summary:
The Allahabad High Court on Thursday remarked that bureaucracy has been misleading people for 70 years in the country.
Summary:
At least 37 students of a government school fell sick on Wednesday allegedly after eating food under a mid-day meal programme in Mumbai.
Summary:
Congratulating Virat Kohli and Anushka Sharma on their wedding, South African cricketer AB de Villiers said, "I know you guys are going to have a very happy life together and hopefully many kids to come." He also revealed that he was surprised by the news of their wedding.
Summary:
As many as seven people were killed in Madhya Pradesh when a speeding dumper ran over them while they were helping victims of an accident involving two motorcycles.
Summary:
The student claimed Dalit students were rusticated and punished severely, which was not the case with general category students.
Summary:
The Supreme Court on Thursday directed the Centre to proportionally allocate â¹7.8 crore, meant for setting up 12 special courts to deal with cases involving politicians, to the concerned states.
Summary:
The Delhi government has asked the Deputy Directors of Education to constitute a three-member committee in every district to keep a check on the increase in fees by private schools.
Summary:
Four Russians were detained on Thursday for flying a drone equipped with a camera over the Shree Jagannath Temple in Odisha's Puri, which the government has declared a 'no fly zone'.
Summary:
"It is found that in 92% cases, the molesters are close relatives," he added.
Summary:
For Himachal Pradesh, the India Today exit polls suggest BJP will win 51 seats, while Congress will win 17.
Summary:
Jitesh Singh Deo from Lucknow was declared the winner of the 2017 Mr India pageant which was held on Thursday.
Indian footballer Prathamesh Maulingkar won the title of Mr India Supranational and will compete at Mr Supranational 2018.
Summary:
With $1.85 billion (â¹12,000 crore) in career earnings, basketball legend Michael Jordan tops Forbes' list of the top 25 highest-paid athletes of all time.
Summary:
The share of national income captured by India's top 10% of earners was 55% in 2016, according to the World Inequality Report.
Summary:
Congress President Rahul Gandhi on Wednesday said the party would leave the Centre no choice but to pass the women's reservation bill, which provides 33% reservation for women in Parliament and state Assemblies.
Summary:
By 2022, one in five workers engaged in mostly non-routine tasks will rely on AI to do a job, the report added.
Summary:
Israel on Thursday announced the closure of its border crossings with the Gaza Strip which is controlled by the Palestinian militant group Hamas, in response to daily rocket fire from the enclave.
Summary:
General Electric (GE) and the Tata Group have announced a partnership to manufacture components of commercial jet engines in India.
Summary:
The Income Tax Department has begun issuing the first set of summons and questionnaires to people related to the Paradise Papers leak, according to reports.
Summary:
The scene featured him and actress Kareena Kapoor, who portrayed the character 'Pooja' in the film.
Summary:
Hollywood actor George Clooney's friend Rande Gerber has revealed that in 2013 Clooney gifted 14 of his friends $1 million each to thank them for helping him when he moved to Los Angeles to pursue acting.
Summary:
The current Maharashtra government cares for the farmers the most and has made most of the provisions for schemes related to farmers, Shiv Sena minister Deepak Kesarkar has said.
Summary:
The Shahi Imam of Delhi's Jama Masjid has sought PM Narendra Modi's help to repair the structure after layers of plaster on its domes and walls started peeling off due to water seepage.
Summary:
The Election Commission (EC) has issued a show cause notice to BJP candidate Bhushan Bhatt after a video of him asking party workers to not bother about the ECâÂÂs Model Code of Conduct went viral.
Summary:
Four Delhi Development Authority (DDA) officials have been booked for allegedly raping a colleague over the last three years.
Summary:
England middle-order batsman Dawid Malan has revealed that he almost started crying after slamming his maiden Test ton against Australia in the third Ashes Test on Thursday.
Summary:
South Korean electronics giant Samsung has patented a smartphone with a double-sided display that stretches onto the rear of the device.
Summary:
The operator of Masala Library restaurants, 'Massive Restaurants' has raised a reported amount of â¹160 crore from Mumbai-based private equity firm Gaja Capital.
Summary:
Delhi-based drone startup WeDoSky has raised an undisclosed amount of funding from Mumbai Angels Network, after bootstrapping for over 2 years.
Summary:
A Delhi court has directed a man to pay â¹1 lakh as damages to US-based Nike for infringing its trademark.
Summary:
The department of legal metrology has booked over 15,000 cases of MRP violations across India after the revision of GST rates on various products, according to reports.
Summary:
During the first phase of the elections, 68% voter turnout was recorded in the state.
Summary:
The Walt Disney Company on Thursday announced it will acquire 21st Century Fox's film and television studios, cable entertainment networks and international TV businesses in a deal worth $52.4 billion.
Summary:
US-based venture capital firm Inventus Capital's Managing Director Kanwal Rekhi has said that India has proven to be a "bottomless pit" for venture capital firms.
Summary:
Tycho Brahe, born on December 14, 1546, was a Danish astronomer who accurately measured positions of 777 stars, before the invention of telescope.
Summary:
Actor Salman Khan has revealed that his brother-in-law Aayush Sharma's Bollywood acting debut will be titled 'Loveratri'.
Summary:
Former Tamil Nadu CM Jayalalithaa's niece Deepa on Wednesday alleged that there was no chance of her aunt getting indisposed and hospitalised and alleged she may have been attacked.
Summary:
The Supreme Court on Thursday ruled that the Parsi woman who married outside the community will be allowed to enter fire temples and the 'tower of silence' when her parents pass away.
Summary:
The only bridge connecting Uttarakhand's Uttarkashi to the China border collapsed on Thursday when two trucks were crossing it, officials said.
Summary:
After taking the field against Australia on Thursday, former England captain Alastair Cook became the youngest cricketer to reach 150 Tests, achieving the feat aged 32 years and 354 days.
Summary:
The filings also revealed that the net profit rose 31% to â¹40.7 crore from â¹31 crore the year before.
Summary:
Users can then visit the vending machine, which will scan their faces using facial-recognition technology for a three-day test drive of cars.
Summary:
Bengaluru-based modular home furnishing startup HomeLane has raised $10 million from venture capital firm Accel Partners, Sequoia Capital, and RB Investments, the startup announced.
Summary:
Inflation based on the Wholesale Price Index (WPI) accelerated to an eight-month high of 3.93% in November as compared to 3.59% in October, government data showed.
Summary:
He said if petroleum products are brought under the GST regime, it will attract the highest tax slab prevalent at that time.
Summary:
India's state-run Corporation Bank has said the RBI has imposed certain restrictions on the bank to carry out banking activities as its share of bad loans rose sharply.
Summary:
Producer Firoz Nadiadwala, while mourning the death of actor-director Neeraj Vora, said, "I've lost the battle to save my brother and friend from the clutches of death." "His health had improved so much.
Summary:
Speaking about the man who allegedly molested a Bollywood teen actress on a flight by keeping his foot on her armrest, actress Kangana Ranaut said, "For me, it is highly offensive.
Summary:
England women's cricket team all-rounder Danielle Wyatt, who had proposed to Virat Kohli in 2014, was trolled by teammate Sarah Taylor over the Indian captain's tweet confirming his marriage.
Summary:
The premises of officials were raided as they allegedly possessed assets disproportionate to their known sources of income, the statement added.
Summary:
Delhi Police have arrested a man who allegedly shot his girlfriend in the leg following an argument and then called the police claiming the woman was shot at during a snatching bid.
Summary:
He also said his short against Tesla has lost him money and he doesn't know when the company's stock will decline.
Summary:
Bengaluru-based premium tea selling startup TeaBox has raised $7 million in Series B funding from Singapore-headquartered venture capital firm RB Investments.
Summary:
US-based cab aggregator Uber's Head of Driver Product Aaron Schildkrout announced his departure from the company in an email to Uber staff on Wednesday.
Summary:
Delhi-based financial services startup FinBucket has raised â¹12 crore from early-stage venture capital firm Impanix Capital.
Summary:
Native American tribe Navajo Nation has sued Wells Fargo for $50 million, claiming the bank targeted tribal members with "predatory sales tactics".
Summary:
The bank admitted it was late to disclose over 53,000 transactions of A$10,000 or more through its deposit-taking ATMs between 2012 and 2015.
Summary:
The company has liability of â¹1,525 crore and was seeking time until January 31 to deposit â¹125 crore.
Summary:
The richest 0.1% of the world's population have increased their combined wealth by as much as the poorest 50% between 1980 and 2016, according to a report by French economist Thomas Piketty.
Summary:
Australia needed one run off two balls with one wicket remaining when Windies' Joe Solomon's direct hit resulted in the first-ever tied Test.
Summary:
The transition concerns only national radio channels.
Summary:
Sharing its flight path, Flightradar24 tweeted, "The best tree topper is definitely an airplane."
Summary:
A $10.9 million (approximately â¹70 crore) hospital exclusively for camels, believed to be the first of its kind in the world, has recently opened in Dubai.
Summary:
Argentine football legend Diego Maradona ran a football clinic for students at a school in Barasat near Kolkata on Tuesday.
Summary:
Other than the service providers, the consumer can send the complaint mail to Members of Parliament as well.
Summary:
Stating that no restrictions have been imposed on performing aarti and other rituals in Amarnath cave shrine, the National Green Tribunal on Thursday clarified that the silent zone restrictions will be imposed only around the Shivlinga.
Summary:
A new Anubhuti luxury coach featuring interiors like bucket seats and LCD entertainment screens has arrived in Mumbai, and will be added to the Mumbai-Ahmedabad Shatabdi Express soon.
Summary:
University of Delaware researchers have developed 'smart windows' that switch from retroreflective to transparent with the addition of a liquid.
Summary:
The Russia-North Korea military commission has met for the first time in the North Korean capital Pyongyang, Russia's embassy to North Korea said on its Facebook page on Thursday.
Summary:
The New York City subway is selling a trash can for $300 (nearly â¹20,000).
Summary:
A school in the US state of Illinois gave its eighth-grade students an assignment which involved a pony with a Hitler-style haircut and moustache, to "help students understand the issues leading to World War II".
Summary:
A pair of 26-year-old twin brothers got married to 23-year-old twin sisters in China.
Summary:
Personalities including PM Narendra Modi and Akshay Kumar tweeted condolence messages after actor-director Neeraj Vora passed away on Thursday.
"An energetic and creative personality, he'll be remembered for his films and warm nature," tweeted PM Modi.
Summary:
A postage stamp bearing late actor Raj Kapoor's face was released by India Post in 2001 to honour him.
Summary:
Additionally, the organisers also announced actress Kristen Bell as the first ever host of the award ceremony.
Summary:
Max Group on Wednesday said that it has filed an appeal with the appropriate authority against cancellation of the licence of its hospital in Shalimar Bagh.
Summary:
Later, the all-rounder shared a picture on social media of them celebrating with the caption, "Lightning does not strike twice?
Summary:
Bengaluru-based video sharing startup Clip App has raised an undisclosed amount of funding led by Matrix Partners India, the company has said in a statement.
Summary:
The fan managed to surpass the security and ran straight towards Dhoni, who tried to stop him from touching his feet.
Summary:
The Supreme Court reprimanded the defence lawyer of death row convicts in the Nirbhaya case after the latter accused the state and the police of bribing the victim's parents.
Summary:
A winding structure resembling a staircase hangs from the ceiling of a railway station in Sydney, Australia.
Summary:
After spending 139 days aboard the International Space Station (ISS), the 53rd set of crew members, NASA's Randy Bresnik, ESA's Paolo Nespoli, and Roscosmos' Sergey Ryazanskiy have landed in Kazakhstan.
Summary:
A satellite developed by students at the University of Colorado Boulder has made the "first direct detection" of energetic electrons near the inner edge of Earth's radiation belt.
Summary:
A primary school in Denmark has cancelled the traditional Christmas service due to the presence of students of immigrant backgrounds, saying the education law forbids such preaching.
Summary:
At least 11 fighters of a Congolese militia group have been jailed for life for raping at least 37 girls as young as 18 months near the village of Kavumu between 2013 and 2016.
Summary:
Arya went missing after a court issued an arrest warrant against him in the case.
Summary:
The data added that the cases settled amounted to around 25% of the total 10,43,0116 cases placed before the Adalats.
Summary:
The Congress has urged the Election Commission to initiate action against PM Narendra Modi and BJP chief Amit Shah for violating the Model Code of Conduct a day ahead of the Gujarat Assembly elections.
Summary:
Jisha was raped and murdered at her residence by Ameerul, who was allegedly under the influence of alcohol.
Summary:
Earlier in the day, BJP chief Amit Shah cast his vote at a polling booth in Naranpura.
Summary:
Inspired by World War II methods to break the German Enigma code, American researchers have used cryptographic techniques to decode the activity of motor neurons.
Summary:
The team induced the plants to give off dim light for nearly four hours.
Summary:
A human foot in a sneaker has washed up on the shore of British Columbia, marking the 13th such incident in 10 years.
Summary:
A man lost his GoPro to a seagull and found it five months later on the Norwegian coast.
Summary:
Talking about dating actor Ali Fazal, actress Richa Chadha said, "I never thought I'll fall for an actor." "I have had bad experiences with actors on outdoor shoots...
Summary:
Filmmaker Mahesh Bhatt has shared a picture of Indian cricket team captain Virat Kohli and actress Anushka Sharma's wedding reception card.
Summary:
Kangana Ranaut, while speaking on Hrithik Roshan's interview about their row on a news channel, revealed she was initially called by the channel for the interview but she had refused it.
Summary:
Actor Saif Ali Khan, on being asked if he would play his father and former Indian cricket team captain late Mansoor Ali Khan Pataudi onscreen, said, "I don't think I am sexy enough." "He was a stylish person and played the game with his own style.
Summary:
An Indian restaurant's owner has been jailed for two years in the United Kingdom for stealing ã90,000 (â¹78 lakh) in taxes by falsifying repayment claims, an official has said.
Summary:
An Indian Administrative Service (IAS) officer, Jitendra Kumar Jha went missing on Monday, after he left for a morning walk.
Summary:
A proposal has been made to stitch images of Lord Krishna on the uniforms of Mathura Police along with the words 'Tourism Police', reports said.
Summary:
The Delhi High Court has rejected Indian cricketer Gautam Gambhir's plea seeking to restrain a Delhi-based restobar chain from using his name in connection with its pubs.
Summary:
Summary:
A 13-year-old girl from Maharashtra's Kolhapur has been hospitalised after she was forced to do 300 sit-ups as punishment by her teacher for not completing her eighth class.
Summary:
A teacher couple working in a private school in Jammu and Kashmir were sacked on their wedding day after the school management claimed that their "romance could adversely affect the students".
Summary:
The cabin crew and passengers were taken off the plane, while the flight resumed after the cabin was checked.
Summary:
Amazon floodplains surrounding the Amazon River emit as much methane into the atmosphere as all of the planet's oceans combined, according to a study published in the journal Nature.
Summary:
As many as 10,000 to 1,00,000 microorganisms live on every grain of sand, a Germany-based study has revealed.
Summary:
At least 6,700 Rohingya Muslims, including 730 children, were killed in the month after ethnic violence broke out in Myanmar in August, medical aid group Doctors Without Borders (MSF) has said.
Summary:
A 21-year-old Indian-American student, Paras Jha, on Wednesday pleaded guilty to repeatedly hacking the computer system of US' Rutgers University between 2014 and 2016, paralysing the university's networks for days at a time.
Summary:
The UN chief also called on countries to fully implement the sanctions imposed by the UN on North Korea.
Summary:
At least 13 police officers were killed and 15 others were injured in Somalia on Thursday after a suicide bomber dressed up in a police uniform detonated himself inside a police training camp, according to reports.
Summary:
With the video streaming platform Voot, you can watch shows, movies, originals and extra masala at a time and place of your convenience.
Summary:
PM Narendra Modi on Thursday commissioned India's first indigenous Scorpene-class submarine Kalvari into the Navy at Mumbai's Naval Dockyard.
Summary:
Actor-director Neeraj Vora, who starred in films like 'Baadshah' and 'Hello Brother', passed away on Thursday after battling coma for a year.
Summary:
NASA and Disney are reportedly planning a special screening of 'Star Wars: The Last Jedi' for astronauts aboard the International Space Station (ISS) orbiting the Earth 400 km away.
Summary:
Hollywood actress Salma Hayek has revealed that rape-accused producer Harvey Weinstein forced her into doing a lesbian sex scene in the 2002 film 'Frida', of which he was the distributor.
Summary:
Chandigarh Administrator VP Singh Badnore has launched smart city cards for facilitating payments for various government and commercial utilities in the Union Territory.
Summary:
Sports Minister Rajyavardhan Singh Rathore has sanctioned â¹5 lakh for the treatment of 69-year-old former Indian boxer Kaur Singh, the only Indian boxer to have fought against Muhammad Ali. The announcement comes after Punjab Chief Minister Amarinder Singh had sanctioned â¹2 lakh from his relief fund.
Summary:
Pakistan on Wednesday rejected India's plea for consular access to former Indian Naval officer Kulbhushan Jadhav, claiming that India wants the access to get the information gathered by its "spy".
Summary:
Shakeel is known as Dawood's most trusted aide and has been handling the D-Company's activities for 30 years.
Summary:
The Election Commission on Wednesday issued a notice to Congress President Rahul Gandhi over his TV channel interview which was aired a day before the elections in violation of poll codes.
Summary:
A Delhi-Vijayawada Air India (AI) flight with Civil Aviation Minister Ashok Gajapathi Raju onboard was delayed on Wednesday, following which Raju called up AI CMD Pradeep Kharola to ask why it hadn't departed yet.
Summary:
It appears to be diminishing as Voyager spacecraft found it twice the Earth's diameter in 1979, said NASA.
Summary:
The woman had won a prize of $100,000 (â¹64 lakh) in a lottery a few years back.
Summary:
Egyptian singer Shyma has been sentenced to two years in prison for inciting debauchery in a music video in which she was seen eating an apple and a banana before a classroom of young men.
Summary:
The 32-year-old, who had told investigators she woke up to find her baby "beat to hell," was convicted of manslaughter.
Summary:
PM Narendra Modi's mother Heeraben on Thursday cast her vote at a polling booth in Gandhinagar during the second phase of Gujarat Assembly elections.
The first phase of polling held on December 9 witnessed 68% voter turnout.
Summary:
A computer's hard disk and Central Processing Unit were stolen from Delhi University's Law Faculty after officials started compiling attendance of its faculty members and students.
Summary:
UNICEF representative in India Dr Yasmin Ali Haque has said that the Indian government has banned condom advertisements for a certain time frame and not condoms altogether.
Summary:
The police also arrested two businessmen for allegedly circulating images of donation acknowledgement receipts on social media.
Summary:
West Bengal Chief Minister Mamata Banerjee on Tuesday said, "We don't beat people to death in Bengal.
Summary:
Summary:
Ten Association of Southeast Asian Nations (ASEAN) leaders will be chief guests at India's 69th Republic Day celebrations, reports said.
Summary:
Premier League leaders Manchester City extended the record run of consecutive top-flight wins to 15 matches after thrashing Swansea 4-0 on Wednesday.
Summary:
US-based researchers probing five chimpanzee deaths in Uganda in 2013 have discovered a human common cold virus rhinovirus C behind the outbreak affecting a community of 56.
Summary:
While recent gravitational wave discoveries resulting from black hole mergers have suggested ancient black holes as the source of almost all dark matter in the Universe, a recent US-based study has ruled them out as a source.
Summary:
Pakistan's Supreme Court on Tuesday questioned the counsel which looks after the Hindu minority's Katas Raj temple in Chakwal over the absence of statues of Lord Ram and Hanuman from the temple.
Summary:
A Singaporean court has sentenced an Indian-origin man to 10 months in jail for hiring a minor girl for sex services last year and not paying her.
Summary:
Japanese conglomerate SoftBank has earned $175 billion in investments, which is 15 times its $11-billion-worth investments made in the last 18 years.
Summary:
Inspired by the bionic hand of Luke Skywalker in Star Wars, Georgia Tech researchers have created an ultrasonic sensor that allows amputees to control all the prosthetic fingers individually.
Summary:
30 students earned first division in class 10 board exams this year.
Summary:
The Income Tax Department on Monday conducted surveys at nine Bitcoin exchanges across India on suspicion of alleged tax evasion, according to reports.
Summary:
Officials said action would be taken against stalls within 150m outside the stations.
Summary:
Former US basketball player Dennis Rodman has said that North Korean leader Kim Jong-un and US President Donald Trump "are pretty much the same" as they both "love control".
Summary:
Tanzanian President John Magufuli pardoned the two men convicted of raping 10 primary school girls.
Summary:
A Los Angeles-New York JetBlue flight was diverted to Las Vegas after a man allegedly started biting and hitting his fellow passengers.
Summary:
The Economic Offences Wing (EOW) took over the probe in Pancard Clubs (PCL) case where more than 50 lakh investors were allegedly duped of approximately â¹7,035 crore.
Summary:
The Central Board of Film Censors (CBFC) of Pakistan has refused to grant the No-Objection Certificate (NOC) to 'Tiger Zinda Hai'.
Summary:
The release date of the upcoming Anil Kapoor and Madhuri Dixit starrer 'Total Dhamaal' has been announced as December 7, 2018.
Summary:
The Delhi High Court on Wednesday disposed of BJP leader and former TMC MP Mukul Roy's plea alleging phone tapping, after the Centre and West Bengal government denied his numbers being intercepted.
Summary:
BJP councillors on Tuesday staged a protest against BSP leader and Meerut Mayor Sunita Verma after she reportedly kept sitting when the National Song Vande Mataram was played during an official ceremony.
Summary:
The BJP said that he was not an "active member of the party".
It was uploaded by my brother from my phone," Sareen said later.
Summary:
Stating that the limestone-shoals chain connecting India and Sri Lanka, known as Ram Setu, is an important part of India's cultural legacy, Union Law Minister Ravi Shankar Prasad said nobody should tamper with it.
Summary:
The Supreme Court has asked the state governments to consider setting up an 'open prison' in each district.
Summary:
Christ Gospel Team director Y Vijay Kumar has been arrested for allegedly passing a derogatory remark against Bharat Mata during a speech in Hyderabad.
Summary:
Taking a dig at the BJP a day ahead of the second phase of Gujarat Assembly polls, RJD supremo Lalu Prasad Yadav tweeted, "Kamal ka phool always banaving April fool." He further urged the electorate to stay calm and vote wisely.
Summary:
The passenger tweeted to Railway Ministry's official account which responded immediately and sent help.
Summary:
The Karnataka High Court has asked the state government to construct at least two to three stadiums in Bengaluru and observed that the city should have 10 stadiums considering its population.
Summary:
Free entrance coaching for Scheduled Caste and Scheduled Tribe students has been launched in Delhi by Chief Minister Arvind Kejriwal.
Summary:
The Kerala government has sought â¹1,843 crore from the Centre to mitigate the damage caused by Cyclone Ockhi, Chief Minister Pinarayi Vijayan said on Wednesday.
Summary:
"Water supply is a big responsibility and HUDA doesn't have the necessary expertise.
Summary:
The Delhi health department has asked the Drug Controller General of India to include nicotine gums and lozenges in the category of drugs that can be sold only on doctor's prescription.
Summary:
A senior Andhra Pradesh police officer, who passed away six months ago, was issued a transfer this week and was asked to report to the police headquarters.
Summary:
CISF had extended its special consultancy services that provide security suggestions to schools nationwide.
Summary:
A crack and an oil leak have been found in a Japanese bullet train, officials said on Wednesday.
Summary:
Talking about PM Narendra Modi's remarks on Nehru-Gandhi family, Congress President Rahul Gandhi said he doesn't feel any hatred towards PM Modi and that the PM has helped him the most.
Summary:
Foreign workers in the US may work for more than one employer on an H1-B work visa, the country's immigration agency said.
Summary:
Gujarat CM Vijay Rupani has said that firecrackers would go off in Pakistan if Congress came to power, whereas firecrackers would be burst in Gujarat if the BJP won.
Summary:
Finisar will use the funds to reopen a 700,000-square-foot plant in Texas to produce chips.
Summary:
Further, 'Fidget Spinner' is the 8th trending search on Google.
Summary:
Chinese authorities are collecting DNA samples, fingerprints and other biometric data from every resident in the Xinjiang region where most of the Uighur community lives, Human Rights Watch (HRW) has said.
Summary:
Three days after declaring victory over ISIS in the country, Iraq's PM Haider al-Abadi on Tuesday warned that the terrorist group might "erupt again somewhere else" without international cooperation in combatting the militants.
Summary:
US Secretary of State Rex Tillerson has said that the country is ready to talk to North Korea without preconditions.
Summary:
A US-based drug company Avondale Pharmaceuticals has hiked the price of Niacor, a prescription-only version of vitamin B3 pills, by 809% last month.
Summary:
The RBI has penalised IndusInd Bank with â¹3 crore for violating guidelines in the assessment of bad loans and extension of non-fund based facilities.
Summary:
The Cash Logistics Association (CLA) has said that Cash in Transit (CIT) firms are waiting for payment of about â¹25 crore from banks for additional services rendered during demonetisation.
Summary:
On the 31st death anniversary of veteran actress Smita Patil on Wednesday, Amitabh Bachchan tweeted, "She had...premonition of my 'Coolie' accident a night before it happened...called and told me of it." "Memorable films with her 'Shakti' and 'Namak Halaal'," he added.
Summary:
On being asked why she doesn't talk about her relationship with rumoured boyfriend Anand Ahuja, actress Sonam Kapoor said, "This is just keeping it a little sacred...
Summary:
The policemen took the wheelchair-bound leader, Samresh Singh, outside the hospital without any official order.
Summary:
Prime Minister Narendra Modi on Wednesday accused the Congress-led UPA regime of pressurising banks into giving loans worth thousands of crores to select industrialists in a scam bigger than 2G and coal scams.
Summary:
Uttar Pradesh Governor Ram Naik on Tuesday launched the logo for the Kumbh Mela, which will be organised in Allahabad during January-March 2019.
Summary:
A five-year-old girl moved the National Green Tribunal alleging noise pollution by the Delhi Metro and asked to shift Rohini Metro stations to alternate sites as noise levels were found above the prescribed limits.
Summary:
Congress President Rahul Gandhi on Wednesday said that the results of the Gujarat Assembly elections may be surprising.
Summary:
Summary:
The Hyderabad Traffic Police on Tuesday arrested two ambulance drivers on charges of drunk driving.
Summary:
Claiming that the World Telugu Conference was aimed at boosting Telangana CM K Chandrashekar Rao's image, Telangana Pradesh Congress Committee (TPCC) spokesperson Sravan Dasoju has slammed the government for 'wasting' over â¹50 crore on the event.
Summary:
BJP leader Subramanian Swamy on Wednesday said that US scientists' claim that Ram Setu bridge is man-made is already a known fact.
Summary:
BJP MP Priyanka Rawat from Uttar Pradesh's Barabanki was caught on camera threatening a Sub-Divisional Magistrate, saying, "Barabanki mein jeena mushkil kar dungi (I'll make it difficult for you to live in Barabanki)".
Summary:
San Francisco and Pune-based sales enabling startup MindTickle has raised $27 million (over â¹174 crore) in a Series B funding round led by Silicon Valley-based VC firm Canaan Partners.
Summary:
A window from a US military helicopter fell onto the sports ground of a school near a US air base in Japan on Wednesday.
Summary:
A Philippine man is facing a penalty of up to 90 years in jail and a fine of â¹95 lakh over the death of his 30 dogs who died of suffocation while being transported to a dog show in a closed van.
Summary:
Israel's Air Force on Wednesday hit a military compound of Palestine's militant group Hamas in the Gaza Strip, injuring three people.
Summary:
Indian opener and stand-in captain Rohit Sharma slammed his record third double hundred as India beat Sri Lanka in the second ODI by 141 runs on Wednesday, levelling the three-match series 1-1.
Summary:
Rohit Sharma became the first cricketer in ODI history to score three double hundreds after slamming 208*(153) against Sri Lanka today.
Summary:
Filmmaker Karan Johar, while talking about relationships, said that people shouldn't believe in the dialogue of his film 'Kuch Kuch Hota Hai' which says "pyaar dosti hai".
Summary:
Actor Shahid Kapoor has been voted as the Sexiest Asian Man for 2017, beating Hrithik Roshan in an annual UK poll conducted by London-based newspaper 'Eastern Eye'.
Summary:
The Juvenile Justice Board on Wednesday rejected the plea to treat the juvenile accused in the Ryan International School murder case as a minor, until the chargesheet is filed by the Central Bureau of Investigation.
Summary:
Nathan Paulin, a 23-year-old French slackliner, completed a 670-metre walk along a tightrope from the Eiffel Tower while suspended nearly 200 feet up in the air in 30 minutes.
Summary:
The governments of Uttar Pradesh, Haryana, and Rajasthan have been sleeping like 'Kumbhakarna' and now they are blaming the Supreme Court for passing orders banning the use of petroleum coke and furnace oil in their states, the apex court said.
Summary:
Rohit Sharma has hit the highest yearly individual ODI score for India each year since the last five years.
Summary:
Reacting to the video, a user tweeted, "Dear MS Dhoni, is there anything that you can't do."
Summary:
Apple has registered slowest revenue growth in India at 17% in FY2017, according to filings, its lowest in the past 6 years.
Summary:
The Supreme Court has asked the Union of India's nodal agency to set up a meeting with Google, Yahoo and others to remove sex determination content.
Summary:
Former Iraqi dictator Saddam Hussein was captured by US forces on December 13, 2003, after spending nine months on the run.
Summary:
The Organisation of Islamic Cooperation (OIC) has called on international community to recognise East Jerusalem as the capital of Palestine.
Summary:
US President Donald Trump on Tuesday signed into law a defence policy bill that authorises a $700-billion (over 45 lakh crore) budget for the military.
Summary:
Soha Ali Khan has said her struggle with her profession as an actor was the toughest chapter for her to write in her book 'The Perils Of Being Moderately Famous'.
Summary:
Actress Nargis Fakhri and American rapper Snoop Dogg sang in Punjabi singer Dr Zeus' new song titled 'Woofer'.
Summary:
Actress Vidya Balan has said that the box-office performance of her comedy drama 'Tumhari Sulu' proved that a married actress can also score a hit film.
Summary:
Madhya Pradesh Women and Child Development Minister Archana Chitnis on Wednesday proposed issuing weapon licences to eligible women and girls on a priority basis.
Summary:
Indian fan Sudhir Gautam told Rohit that Mohammad Nilam had to leave earlier than scheduled but was unable to return due to financial constraints.
Summary:
Reacting to a condom company wishing newlyweds Virat Kohli and Anushka Sharma, a user wrote, "Don't you know #CondomAds are banned from 6 to 10.
Summary:
Indian opener Rohit Sharma dedicated his record third ODI double century to his wife Ritika Sajdeh on the occasion of their second wedding anniversary.
"I'm happy my wife is here with me on this special day.
Summary:
All India Majlis-E-Ittehadul Muslimeen (AIMIM) chief Asaduddin Owaisi on Wednesday said that India cannot be governed on the basis of "Hindi, Hindu, and Hindustan".
Summary:
The Mumbai Police on Tuesday detained a 35-year-old man who allegedly made a hoax call to the National Investigation Agency office saying there could be a 'chemical attack' during the Gujarat Assembly polls.
Summary:
An Andhra Pradesh court has directed the police to conduct a potency test on a man, who assaulted his wife on the first day of their marriage for disclosing his impotency to her parents.
Summary:
A video of a 5-year-old girl, who was holding a 'DUMP TRUMP' poster, being called a terrorist by supporters of US President Donald Trump in Los Angeles has surfaced online.
Summary:
Earlier in July, a Shanghai court froze $180 million in assets owned by Yueting, his wife, and LeEco's three subsidiaries.
Summary:
CNN reporter Jim Acosta has revealed that he was warned by White House Press Secretary Sarah Sanders not to question President Donald Trump's during a bill signing ceremony on Tuesday.
Summary:
The National Green Tribunal has directed the Amarnath Shrine Board that there should be no chanting of 'mantras' or 'jaykaras' in Amarnath temple.
Summary:
The government on Wednesday extended the deadline for linking of Aadhaar with bank accounts to March 31, 2018, or 6 months from the date of commencement of account, whichever is later.
Summary:
The new poster of the upcoming film 'PadMan' shows Akshay Kumar's on-screen wife Radhika Apte.
Summary:
Meanwhile, YouTuber and singer Vidya Vox occupied the fourth spot and actress Disha Patani came fifth.
Summary:
Prabhas starrer 'Baahubali 2: The Conclusion' was the most searched query in India in 2017, Google India has revealed.
Summary:
The BJP has filed a complaint with the Election Commission claiming that Congress President Rahul Gandhi violated election codes by giving an interview in the last 48 hours of campaigning in Gujarat.
Summary:
Indian opener Rohit Sharma slammed his record third ODI double century against Sri Lanka on the occasion of his second wedding anniversary today.
Summary:
Amazon CEO Jeff Bezos-founded aerospace startup Blue Origin has test flown its rocket capsule for the first time, Bezos confirmed in a tweet.
Summary:
Bengaluru-based food delivery startup Swiggy has acqui-hired the management team of Bengaluru-based gourmet Asian food startup 48East.
Summary:
More than 3,000 former and present employees of the Flipkart Group and group companies including Myntra participated in the repurchase, Flipkart said.
Summary:
Scientists analysing data from NASA's Cassini spacecraft, which was recently crashed into Saturn's atmosphere, suggest the planet's rings are under 200 million years old, relatively "young" when compared to the solar system's age of 4.5 billion years.
Summary:
North Korean leader Kim Jong-un has vowed to "win victory in the showdown" against the US with the country's rapidly advancing nuclear arsenal, the state media said on Wednesday.
Summary:
A homeless man allegedly stole â¬300,000 (over â¹2 crore) from the unlocked office of Loomis, a company handling cash deliveries to and from businesses.
Summary:
According to reports, the medical reports of television actor Piyush Sahdev suggest that he is guilty of rape.
Summary:
Singer Shweta Pandit, known for singing in films like 'Mohabbatein' and 'Highway', took to Twitter and wrote, "Will Virat continue to play cricket now that he's married?!" "Or these settling down type questions will just be reserved for Anushka?...
Summary:
The dictionary said there was an increase of 70% in searches when compared to 2016, with searches rising following the Women's March.
Summary:
The three boys and three girls were born several months after their mother had a miscarriage in January.
Summary:
A Chennai police inspector was shot dead in Rajasthan by a robbery accused during a house raid on Wednesday.
Summary:
A 15-year-old boy committed suicide two hours after he was forced to marry his widowed sister-in-law in Bihar's Gaya district on Monday.
Summary:
Indian all-rounder Washington Sundar has become the youngest cricketer in 14 years to represent India in an ODI.
Summary:
In response to former VP for user growth Chamath Palihapitiya's criticism of social media, a Facebook spokesperson has said that the company was very different back then.
Summary:
A Charlotte-San Francisco American Airlines flight made an emergency diversion on Monday so flyers could use the toilet after a clog incapacitated all four bathrooms onboard.
Summary:
Mumbai-based multi-cryptocurrency exchange Koinex has raised an undisclosed amount in pre-Series A funding.
Summary:
Japanese space startup ispace has raised $90.2 million in the largest Series A funding to date in the global commercial space sector, the startup said.
Summary:
A new image from NASA's Chandra X-ray Observatory shows elements in stellar remnants of a supernova with different colours: silicon (red), sulphur (yellow), calcium (green) and iron (purple).
Summary:
The annual report by National Oceanic and Atmospheric Administration showed the far northern region is warming twice as fast as the rest of the globe.
Summary:
A baby girl born with her heart outside her body has become the first in the UK to survive the extremely rare condition after undergoing three operations.
Summary:
Rohit hit his first double hundred in 2013, before making the highest-ever ODI score (264) against Sri Lanka in 2014.
Summary:
This was also the 25th instance of India scoring 350+ in an ODI innings, second-most by a team after South Africa (26).
Summary:
The Centre on Tuesday issued a notification taking back the December 31 deadline for linking bank accounts with the Aadhaar number, but did not specify a new date.
Summary:
Indian opener Rohit Sharma slammed his fifth 150+ ODI score on Wednesday, equalling Sachin Tendulkar and David Warner's record of most 150+ scores in ODI cricket.
Summary:
Rohit Sharma, who hit a record third double ton against Sri Lanka today, became the second Indian after Zaheer Khan to hit four straight sixes in an ODI.
Summary:
PM Narendra Modi on Wednesday paid floral tribute to the martyrs of the attack on Parliament House in 2001 on its 16th anniversary.
Summary:
Indian opener Rohit Sharma scored his first ODI century as captain and overall 16th ODI hundred against Sri Lanka in Mohali on Wednesday.
Summary:
Sharma slammed seven sixes in nine balls during his knock, his third ODI double century.
Summary:
NCP Chief Sharad Pawar has said PM Narendra Modi should be ashamed of himself for alleging former PM Manmohan Singh was conspiring with Pakistan for BJP's defeat in Gujarat.
Summary:
Bitcoin seems more likely to be attractive to those who want to make transactions in the black or illegal economy, rather than everyday transactions, he added.
Summary:
"We do not comment on media speculation and rumours," a Reliance spokesperson said.
Summary:
The Supreme Court on Wednesday stayed an order of the National Company Law Tribunal (NCLT) that allowed the government to take over Unitech's management.
Summary:
Gadot's face has reportedly been overlaid on another person's head by training artificial intelligence on images of Gadot as well as other porn videos.
Summary:
The yet-to-be-titled film will be directed by Tejas Vijay Deoskar.
Summary:
A new promotional video of Salman Khan and Katrina Kaif starrer 'Tiger Zinda Hai' has been released.
Also starring Katrina Kaif, 'Tiger Zinda Hai' is scheduled to release on December 22.
Summary:
A co-passenger of the teen Bollywood actress who said she was molested by a middle-aged man on a flight has claimed that the alleged molester is innocent.
He also apologised when the actor shouted at him," the passenger added.
Summary:
The National Highways Authority of India has reportedly directed the toll plaza staff across the country to salute or give standing ovation to defence personnel.
Summary:
A scuffle broke out between BJP and BSP workers in Uttar Pradesh after one of the newly elected corporators from the latter took oath in Urdu at Aligarh Municipal Corporation.
Summary:
Reacting to Indian opener Rohit Sharma slamming his third ODI double hundred, a user tweeted, "What An Incredible Week This Has Been For Sharmas." Other tweets read, "Rohit Sharma Is 2nd Indian To Scare Sri Lankans To The Core.
Summary:
Notably, entering an airport terminal without a valid ticket is illegal under Indian aviation rules.
Summary:
The synthetic ice means the skating rink is capable of functioning without consuming energy or water.
Summary:
Pop-up sleeping rooms, where guests can take naps ranging from 30 minutes to two hours, have come up in London.
Summary:
The Glenesk Hotel in Scotland holds the Guinness World Record for 'the most varieties of whiskey commercially available,' with a selection of 1,031 whiskeys.
Summary:
Summary:
A Japan-based study on 23 identical twins has shown that difference in certain chromosomes makes one twin more at risk for autoimmune thyroid diseases, which affect the immune and metabolic system.
Summary:
The fossil of a tick with a feather preserved in a 99-million-year-old amber specimen has led researchers to believe that the parasites fed on the blood of feathered dinosaurs.
Summary:
The Asian Development Bank (ADB) on Wednesday lowered India's GDP forecast for the current fiscal by 0.3% to 6.7%.
Summary:
Delhi's Special CBI court has held former Jharkhand CM Madhu Koda, former Coal Secretary HC Gupta, and former Jharkhand Chief Secretary Ashok Kumar Basu guilty of criminal conspiracy in the â¹1.86 lakh-crore coal scam.
Summary:
A small town in Louisiana, US, has the same name as Delhi.
Summary:
The 1993 Mumbai blasts mastermind Dawood Ibrahim and his long-time aide Chhota Shakeel have split after a 30-year-long association over Dawood's brother Anees Ibrahim's interference in the operations of the D-Company, according to reports.
Summary:
The Tripura government on Tuesday announced that its female staff can avail a 24-month maternity leave, applicable for their first two children.
Summary:
Researchers at Purdue University have revealed that as a meteor enters Earth's atmosphere, there is a "big gradient between high-pressure air in front of the meteor and the vacuum of air behind it".
Summary:
Those sentenced to death included the father of the woman who had married Shankar against her family's wishes.
Summary:
The scheme, which is applicable for treatment at both private and government hospitals, will now be sent to Delhi L-G Anil Baijal for approval.
Summary:
A letter by English naturalist Charles Darwin doubting the existence of God has been sold for $125,000 (over â¹80 lakh) at a New York-based auction.
Summary:
North Korean leader Kim Jong-un has pledged to make his country "the world's strongest nuclear power" as he hailed the scientists behind the country's recent intercontinental ballistic missile (ICBM) launch, according to the state media.
Summary:
This comes amid rising tensions over North Korea's nuclear programme.
Summary:
The incident occurred after the victim asked the accused's girlfriend if she was okay.
Summary:
A woman who married and allegedly duped four men of lakhs of rupees has been arrested after being accused of duping her fiancé in Punjab.
Summary:
Ranveer, who'll play a rapper in 'Gully Boy', was attending a rapping workshop to prepare for his role.
Summary:
Kareena further said Soha is the one person in the family she's in awe of.
Summary:
Alleging the involvement of an international network in the killings, Rao accused the state government of not exposing its financial network or training module.
Summary:
Villagers from Odisha's Mayurbhanj on Tuesday thrashed Andala Nodal school's headmaster Tapas Giri and tied him to a pole after a class 6 student alleged that Giri had sexually assaulted her for a month.
Summary:
After facing flak over non-utilisation of the fund collected as Environment Compensation Charge (ECC), the Delhi government is planning to obtain 500 e-buses for around â¹600 crore, most of which will be borne by ECC.
Summary:
Delhi Chief Minister Arvind Kejriwal had launched the Aam Aadmi Party after taking part in Hazare's anti-corruption movement in 2011.
Summary:
Microsoft has pledged $50 million over the next five years to broaden its AI (artificial intelligence) for Earth program, the company announced.
Summary:
Facebook is testing a feature to let users' comments on posts be visible to only a particular section of its audience.
Summary:
Mumbai-based mobile gaming company Nazara has raised $27.99 million (â¹180 crore) from investor Rakesh Jhunjhunwala, who acquired a majority of its stake.
Summary:
Bengaluru-based online medical consultation startup DocsApp has raised $7.2 million in a Series A funding from Bessemer Venture Partners and Japanese investment firms, Techmatrix Corporation and DeNa Networks.
Summary:
Discovered in 2014, MU69 is over 6.5 billion km from Earth and appears 30 km long, or about 15-20 km in case there's a moon.
Summary:
US President Donald Trump has dismissed sexual misconduct allegations against himself as "fake news" and "fabricated stories" of women whom he does not know or has never met.
Summary:
The Hiroshima High Court on Wednesday reversed a lower court's ruling and barred the restart of a nuclear reactor in the country that was shut in the wake of the 2011 Fukushima nuclear disaster.
Summary:
China on Wednesday marked the 80th anniversary of the massacre in which Japanese troops are believed to have killed around 3 lakh civilians and soldiers after invading China's then-capital Nanjing on December 13, 1937.
Summary:
US State Secretary Rex Tillerson has said that he does not enjoy dealing with Pakistan as the US relationship with the South Asian country has "drifted over the years".
Summary:
North Korean leader Kim Jong-un can control the weather, the reclusive nation's state media has claimed.
Summary:
The channel had aired footage from Kapur's show 'Breakfast With Champions' along with news about Kohli's wedding with actor Anushka Sharma.
Summary:
Kazakhstan's Permanent Representative to the UN, Kairat Umarov, has suggested that the global body adopt an International Diwali Day. The move would "immortalise" Diwali, which reflects the ideas of the UN in good overcoming evil, Umarov said.
Summary:
The petitioner pointed out that the amendment only made an exception for 'Jallikattu', and not bullock cart races.
Summary:
Rony Scaria, a Cadet at the Officers Training Academy in Chennai, died on Tuesday after he sustained a head injury during a boxing match.
Summary:
The initiative aims to ensure maximum participation of people towards e-governance and that maximum facilities are available in the vernacular language, reports said.
Summary:
Expressing displeasure at the illegal construction of the 108-foot Hanuman idol in Delhi, Delhi High Court on Tuesday asked if a prayer made from an illegal property reaches God. A court-appointed committee revealed large-scale trespass on public land, including the idol built in 2002, in the area.
Summary:
The Election Commission on Tuesday ordered repolling in six booths in Gujarat, where the first phase of Assembly elections was held on December 9.
Summary:
Slamming the Delhi government's decision to compensate the family of an ex-Army man who committed suicide, the Delhi HC said, "You are setting a trend; commit suicide and get â¹1 crore compensation." It further questioned the need for compensatory employment which was also provided to the man's family.
Summary:
The ban will come into effect from the start of the next school year in September 2018, he added.
Summary:
US Secretary of State Rex Tillerson on Tuesday said that the State Department doesn't have any "wins to put on the board" after the first year of President Donald Trump's administration.
Summary:
While speaking at the One Planet Summit in Paris on Tuesday, French President Emmanuel Macron said that the world is "losing the battle" against climate change.
Summary:
The man allegedly threw a glass at the police officers and injured one of them.
Summary:
Hollywood actress Meryl Streep has received her 31st nomination at the Golden Globe Awards, which is a record in the 75-year history of the award show.
Summary:
While congratulating cricketer Virat Kohli and actress Anushka Sharma on their wedding, batsman Rohit Sharma tweeted, "Anushka Sharma, keep the surname".
Summary:
Earlier, Dosanjh said he loves Kylie very much and leaves no chance to comment on her Instagram posts but he does so in Punjabi so that she doesn't reply.
Summary:
Telangana CM K Chandrashekar Rao has announced distribution of 1.5 crore sheep to 7.6 lakh Yadav families in the state.
Summary:
The fight started after some prisoners were reportedly angered by Pistorius' lengthy telephone conversation.
Summary:
Congress President Rahul Gandhi on Tuesday slammed PM Narendra Modi over alleged atrocities on Dalits in Gujarat and said the community feels insecure in the state.
Summary:
Gujarat's Mehsana district BJP I-T cell president Chandresh Patel has reportedly threatened Pachot village residents with a sword after they staged a protest against BJP candidate Rajni Patel.
Summary:
A passage on Prime Minister Narendra Modi in a half-yearly English examination conducted at government schools in Rajasthan had multiple spelling errors, reports said.
Summary:
A new high-quality fake $100 banknote which is almost impossible to be distinguished from genuine currency has been found in South Korea, according to officials.
Summary:
The victim, who was detained by the jawan and his associates, was rescued by the police.
Summary:
The terminals of Tokyo airport will be "scattered" with robots who will help visitors arriving for the 2020 Olympics, an official has said.
Summary:
Scientists in New Zealand have unearthed fossils of a penguin dating back to 56-60 million years, which they estimate weighed about 101 kilograms and measured 5 feet 10 inches, 7 inches longer than known ancient penguins.
Summary:
Villalba expressed sympathy over the pollution, but said the case should have targeted the mining company.
Summary:
Nearly a thousand women are killed each year in honour killing cases in Pakistan, according to activists.
Summary:
The World Bank announced on Tuesday that it will stop financing upstream oil and gas projects after 2019.
Summary:
National Conference leader and former J&K CM Omar Abdullah on Tuesday slammed PM Narendra Modi for breaching security protocol by travelling in a single engine seaplane.
Summary:
Earlier, Vice President Venkaiah Naidu had said that Yadav had voluntarily left his party by speaking against it publicly, thus incurring disqualification.
Summary:
All India Majlis-e-Ittehadul Muslimeen (AIMIM) chief Asaduddin Owaisi on Monday said that if PM Narendra Modi believes in what he is saying about Pakistan meddling in Gujarat elections, he should order the arrest of those involved.
Summary:
Minister of External Affairs Sushma Swaraj has sought a report from the Uttar Pradesh government on the alleged thrashing of French tourists in the state's Mirzapur district.
Summary:
The Supreme Court has said the CBI-led investigation into the "larger conspiracy" behind former PM Rajiv Gandhi's assassination hasn't made "much headway".
Summary:
Groundsman Chris Scott and his staff were awarded Man of the Match for their efforts to make play happen during a rain-affected Test match between New Zealand and South Africa, which ended on December 12, 2000.
Summary:
"Apple Music and Shazam are a natural fit, sharing a passion for music discovery and delivering great music experiences to our users," Apple said in a statement.
Summary:
The annual Geminid meteor shower would be seen during December 13-14 over India as the Earth passes through debris left by asteroid '3200 Phaethon'.
Summary:
However, the report added that performance of private investment remains a key macroeconomic concern.
Summary:
Unitech moved the SC on December 11 against the tribunal's order allowing the government to take control of the real estate company's management.
Summary:
According to reports, Indian cricket team captain Virat Kohli and actress Anushka Sharma, who got married on Monday, will sell their wedding photos to an American fashion magazine.
Summary:
Shilpa further said that she would hit him if he tried to touch her again.
Summary:
Comedian-actor Johnny lever has said that he thinks Sunil Grover is a very good artist while adding, "Krushna Abhishek, Sudesh Lehri and Sugandha Mishra are also doing well.
Summary:
Disappointed!" commented a user.
"Disaster," read a comment.
Meanwhile, another comment read, "The only thing that saved the ugliness of the view is Deepika."
Summary:
Telangana MLA Bodiga Shobha's husband and her official bodyguards on Tuesday allegedly beat up toll plaza employees for asking for the toll fee.
Summary:
The woman who had founded an advertising solution startup was visiting her friends who stayed on the 15th floor of the building.
Summary:
The programme covers all villages which are located within 10 kilometres of the international border in 17 states.
Summary:
Adding that PM Modi doesn't like "roti chawal", Alpesh Thakor said, "Modiji eats mushrooms from Taiwan.
Summary:
Uttar Pradesh CM Yogi Adityanath on Tuesday said that the people of Gujarat had taught former PM Manmohan Singh how to talk and Congress President Rahul Gandhi how to visit temples during the Assembly polls.
Summary:
Billionaire Elon Musk-backed digital payments startup Stripe has launched its private beta version in India.
Summary:
Kolkata-based cafe chain startup Chai Break has raised â¹5 crore from incubator Venture Catalysts in exchange for 10% stake, the startup has confirmed.
Summary:
Online furniture retailer Pepperfry has narrowed its losses to â¹128.8 crore in 2017 fiscal, as compared to â¹154.9 crore in the previous fiscal, according to filings.
Summary:
"To be included in the distinguished and diversely talented company of the other Companions of Honour is a particular privilege," Rowling said.
Summary:
The agreement signed between Myanmar and Bangladesh for the return of Rohingyas creates an impossible timetable for the safe return of refugees and therefore should be redrafted and involve United Nations, Human Rights Watch (HRW) has said.
Summary:
Japan on Tuesday chose the Chinese character for 'North' as the defining symbol for 2017, citing repeated missile threats from North Korea as the reason for the choice.
Summary:
Model Bella Hadid joined the 'Day of Rage' protest against US President Donald Trump's decision to recognise Jerusalem as the capital of Israel.
Summary:
Following India captain Virat Kohli and actress Anushka Sharma's wedding, Twitter users used Ravi Shastri's picture to make a 'naraaz phupha' meme.
Summary:
US President Donald Trump's decision to recognise Jerusalem as Israel's capital will fasten the destruction of Israel and double unity among Muslims, Iran's Defence Minister General Amir Hatami has said.
Summary:
A Telangana woman and her boyfriend killed her husband and disfigured the boyfriend's face so he could impersonate the husband and take possession of his assets.
Summary:
Forty five-year-old KC Rekha is the first and only Indian woman to hold a licence to venture into the sea for fishing.
Summary:
Gayle has hit 10-plus sixes in a T20 innings 15 times.
Summary:
The Telangana government has announced to launch a mobile application 'Urban Genie' which will enable citizens in urban areas across the state to find certified technicians and workers.
Summary:
Google introduced features like picture-in-picture mode as part of Android Oreo, which was launched in August.
Summary:
Mount Hope in the British Antarctic Territory has become Britain's highest mountain after satellite data revealed it was 55 metres taller than the 3,184-metre-high Mount Jackson, previously believed to be the tallest.
Summary:
The 50-kilometre chain of limestone shoals connecting India's Rameshwaram and Sri Lanka's Mannar Island, known as 'Ram Setu' in Hindu mythology, is man-made, according to a promotional video for Science Channel's 'What On Earth?' show.
Summary:
This comes after three women who claim they were sexually harassed by Trump before he ran for president, urged the US Congress for an investigation.
Summary:
The revelations are based on leaked documents from two corporate intelligence firms.
Summary:
Filmmaker Karan Razdan has said that actress Sunny Leone is willing to star in his upcoming film which has been inspired by the life of yesteryear actress Meena Kumari.
I guess, she also saw this as her big chance," added Razdan.
Summary:
Actress Nargis Fakhri will star opposite Sanjay Dutt in the upcoming film 'Torbaaz', which is based on Afghan children who are trained to be suicide bombers.
Summary:
Dairy cooperative Amul has released a new poster on the wedding of cricketer Virat Kohli and actress Anushka Sharma.
Summary:
Actor Aamir Khan has invested â¹2 crore in Bengaluru-based online furniture rental startup Furlenco, according to filings.
Summary:
On the occasion of Rajinikanth's 67th birthday on Tuesday, the actor's fans in Chennai created his portrait using 6700 mini cupcakes.
Rajinikanth's fans have earlier conducted rituals on huge cutouts of him just before the launch of his films for goodwill and success.
Summary:
A worldwide survey has found over 1,000 marine turtles each year get entangled in plastic debris.
Summary:
Mumbai City FC has become the first team in the Indian Super League to dedicate a section of its stadium for fans of the away team.
Summary:
The Haryana Police on Monday found the mutilated body parts of a woman near Purana Sugar Mill area in Rohtak.
Summary:
Reacting to the 12-foot-tall statue of Diego Maradona which was unveiled in Kolkata recently, a user tweeted, "That's Ronaldo R7 in a wig.
looks more like someone's gran." "Good to see the chap that did the Ronaldo one is still in business," another user wrote.
Summary:
Indian all-rounder Ravindra Jadeja was slammed by several fans on social media after he shared a picture of himself smoking hookah at his farmhouse.
Very wrong picture and caption." "Jaddu you're a role model to youngsters.
Summary:
HP confirmed the presence of the software and said that over 460 models of laptop were affected by the "potential security vulnerability".
Summary:
Mars' atmosphere is well protected from the ionising effects of solar wind hitting the planet despite the absence of a global Earth-like magnetic dipole, a Sweden-based study has claimed.
Summary:
Austria has scrapped a ban on smoking in bars and restaurants that was due to come into effect in May next year.
Summary:
In an apparent move to counter US President Donald Trump's stance on climate change, French President Emmanuel Macron awarded millions in grants to 13 US climate scientists to relocate to the country and pursue their work.
Summary:
Bitcoin's rival cryptocurrency Litecoin hit a fresh record high of over $340 on Tuesday, surging over 7,750% year-to-date.
Summary:
Over 14 crore PAN cards have been linked with Aadhaar till now, according to reports.
Summary:
The Supreme Court on Tuesday observed that hotels and restaurants were not bound by the maximum retail price (MRP) for selling bottled water.
Summary:
Windies' Chris Gayle on Tuesday became the first cricketer to hit 20 hundreds in T20 history after slamming an unbeaten 146(69) in the Bangladesh Premier League final.
Summary:
Quoting the recently released data of National Crime Records Bureau (NCRB), the BJP Mahila Morcha on Tuesday expressed concern over the high rate of crimes against women in Tripura.
Summary:
Questions in the civil services exam conducted by the Arunachal Pradesh Public Service Commission (APPSC) were allegedly copied from a resource website for civil services examinations in Pakistan.
Summary:
The light show's organisers said that each drone cost over $1,500 to make.
Summary:
Apple Co-founder Steve Wozniak, along with other technologists, has written an open letter urging for the cancellation of voting on a proposal to end net neutrality and called it an "imminent threat".
Summary:
US-based meal replacement startup Soylent's Co-founder Rob Rhinehart has stepped down from his role as the company's Chief Executive Officer.
Summary:
Urging citizens to fulfil their "highly patriotic duty", Burundi has introduced a campaign to raise funds for the 2020 presidential election by taking contributions directly from citizens.
Summary:
Russian President Vladimir Putin views tweets by US President Donald Trump as official statements, Russian spokesperson Dmitry Peskov said on Tuesday.
Summary:
The Bombay Stock Exchange has asked mutual fund companies to ensure that individual clients compulsorily submit Aadhaar details from January 2018.
Summary:
Reliance Industries Chairman Mukesh Ambani is planning an Initial Public Offering (IPO) of telecom arm Jio after $31 billion in investments, according to reports.
Summary:
Telecom operator Airtel will sell up to 20% stake in DTH arm Bharti Telemedia to private equity firm Warburg Pincus for about $350 million, the companies said in a joint statement.
Summary:
Reacting to the wedding of Virat Kohli and Anushka Sharma, comedian Mallika Dua wrote on social media, "#DandruffNeBanaDiJodi," while referring to the shampoo advertisement for which they first reportedly met.
Summary:
Filmmaker Karan Johar took to Twitter to wish Rajinikanth on the occasion of his 67th birthday on Tuesday and wrote, "Happy birthday to the mega superstar." Actor Riteish Deshmukh's tweet read, "Happy Birthday Thalaiva...
Summary:
According to reports, the engagement ring given to actress Anushka Sharma by cricketer Virat Kohli is worth around â¹1 crore and was specially crafted by a designer from Austria.
Summary:
Actress Rani Mukerji has said she has had a stammering problem which she successfully hid for 22 years.
(so I could) camouflage that." Rani further said that even her team was unaware about her problem.
Summary:
As many as five Indian girls, participating in the Pacific School Games, were swept away by sea at the Glenelg beach in Adelaide, Australia on Sunday.
Summary:
The cow protection movement is not directed against Muslims and Christians and "a communal colour is being given to it unnecessarily", RSS General Secretary Suresh Bhaiyyaji Joshi said on Monday.
Summary:
Railway Board Chairman Ashwani Lohani has asked all the railway officers to go beyond the stipulated policies to increase the public transporter's business.
Summary:
Congress President Rahul Gandhi on Tuesday said that Prime Minister Narendra Modi's allegations that former PM Manmohan Singh was colluding with Pakistan in the Gujarat polls were "not acceptable".
Summary:
Matias Messi, older brother of Barcelona and Argentina forward Lionel Messi, has been sentenced to house arrest for possession of a weapon, a prosecutor said on Monday.
Summary:
Chinese smartphone maker Xiaomi has hired former Samsung India Head of Sales Deepak Nakra as its Offline Sales Head.
Summary:
A US soldier who defected to North Korea in 1965 and was court-martialled after he surrendered to the US Army nearly 40 years later, died at the age of 77.
Summary:
Chinese authorities have ordered restaurants in Xinjiang's Urumqi to remove halal logos in a campaign that aims to regulate unauthorised usage of religious signs and prevent the proliferation of fake Islamic cuisine.
Summary:
The North Atlantic Treaty Organisation (NATO) on Tuesday said that all its member nations have decided to prolong Secretary-General Jens Stoltenberg's term until September 30, 2020.
Summary:
Russia's Federal Security Service (FSB) has foiled a terror plot by an ISIS-affiliated group targeting 2018 presidential elections, FSB Director Alexander Bortnikov said.
Summary:
With presence in south, west and north India, IndoStar aims to transform lives by providing financial assistance and helping its customers in "Life ka Take-Off".
Summary:
India's retail inflation measured by the Consumer Price Index (CPI) stood at 4.88% in November, its highest level in 15 months.
Summary:
It is the first of several engagements planned for the OnePlus community to experience the OnePlus 5T Star Wars Limited Edition which goes on sale on December 15 on Amazon.in and oneplusstore.in.
Summary:
Actor Rajinikanth's life story was included in a chapter 'Learning to Communicate' in the Central Board of Secondary Education (CBSE) curriculum for the sixth standard.
Summary:
Wu Yongning was going to use the prize money from the stunt for his wedding and his mother's medical treatment, his uncle revealed.
Summary:
Fashion designer Sabyasachi Mukherjee has revealed that it took 67 karigars (artisans) and 32 days to complete Anushka Sharma's wedding lehenga.
Summary:
It has also been reported that Vijay and his wife were staying separately for the last one year and that the actor was being treated for depression.
Summary:
A woman's family in Uttar Pradesh has alleged that doctors of a private hospital left a pair of scissors in her abdomen during a caesarean operation, leading to the woman's death.
Summary:
Germany's Audi has abandoned plans to sell its Italian motorcycle brand Ducati, its CEO Rupert Stadler has said.
Summary:
Astronomers behind the $100-million Breakthrough Listen project would be looking for signs of alien technology on the first-ever object detected to visit the solar system from outside.
Summary:
The woman Instagrammed the photograph, following which a user commented, "When it's meant to be it's meant to be".
Summary:
A law expert acting as a defence witness in Vijay Mallya's extradition hearing has questioned the integrity of India's Supreme Court, arguing Mallya will not get a fair trial in India.
Summary:
SEBI Chairman Ajay Tyagi has said the markets regulator will "seriously" probe the data leaks on social media channels like WhatsApp. He confirmed that SEBI has come to know of instances wherein price-sensitive financial data of reputed companies was leaked before the earnings were formally made public.
Summary:
He further said that they will be making an official announcement about the film soon.
Summary:
"Rahane should have played...because he has the ability to play in such conditions," he said.
Summary:
Sachin Tendulkar wrote to PM Narendra Modi, requesting him to include all international medalists in the central government health scheme (CGHS).
Summary:
The number of visas granted by the UK to Indian nationals in the year till September 2017 has increased by 9% as compared to last year, a report by the UK Office for National Statistics has revealed.
Summary:
Australian all-rounder Ellyse Perry paused her team's Women's Big Bash League match against Melbourne Stars after her six went on to hit and injure a young boy watching the game.
Summary:
After Danielle Wyatt, England woman cricketer who had proposed to Virat Kohli in 2014, congratulated him on his wedding, a user wrote, "Stay strong @Danni_Wyatt .
Summary:
Summary:
The airline was forced to cancel flights after torrential overnight rain led to delays in the de-icing of planes.
Summary:
She said Spirit asked her to buckle her baby into the seat, refusing to give her a few minutes to finish nursing even though the plane's door was still open.
Summary:
A heap of Russian Post packages were scattered in different directions by the jet stream of an aircraft on a snow-covered airfield.
Summary:
A woman gave birth to a baby girl onboard a Pakistan International Airlines flight, which was flying from Saudi Arabia to Multan.
Summary:
Former mayor of the US' Oklahoma City, Kirk Humphreys, said during an interview that "if homosexuality is okay...then it's okay for men to sleep with little boys".
Summary:
United Airlines CEO Oscar Munoz has asked employees to commit to a "zero tolerance" policy on sexual harassment.
Summary:
The film is reportedly centred around the Make in India campaign launched by the government.
Summary:
The poster was unveiled by Rajinikanth's son-in-law Dhanush, who is producing the film under the Wunderbar Films banner.
Summary:
The video, in which Anushka can be seen clapping for Virat, is from their wedding party in Italy.
Summary:
The charity wing of 26/11 Mumbai attack mastermind Hafiz Saeed's terrorist organisation Lashkar-e-Taiba (LeT) has claimed it has started relief activities for Rohingya Muslims in Myanmar.
Summary:
The Centre on Tuesday informed the Supreme Court that a total of 12 special courts will be set up across the country to fast-track 1,571 pending cases against MPs and MLAs. The courts will initially be set up for one year, the Centre stated.
Summary:
NASA has shared a new time-lapse of a Pacific island named "Hunga Tonga-Hunga Ha'apai", formed from the ash of an underwater volcanic eruption that lasted from December 2014 to January 2015.
Summary:
A wall drawing thought to have been scratched by physicist Isaac Newton has been discovered at his childhood home in Lincolnshire, UK.
Summary:
Data collected by Cassini spacecraft, before NASA deliberately crashed it into Saturn's atmosphere in September 2017, show the planet's rings block ultraviolet radiation (UV) from the Sun. The rings reduce the ionisation in regions covered by the shadow.
Summary:
The Bangladeshi-origin suspect Akayed Ullah who set off a homemade bomb in New York on Monday has reportedly told investigators that he carried out the attack in retaliation for US air strikes on ISIS targets in Syria and elsewhere.
Summary:
China is building a network of refugee camps along its 1,416 km-long border with North Korea to house thousands of migrants fleeing a possible crisis on the Korean peninsula, according to reports.
Summary:
Notably, at the end of September, Buffett's firm had a record $109 billion in cash.
Summary:
BlackRock executive Belinda Boa has said that Bitcoin's valuations are "extreme" and "bubble-like".
Summary:
People have reacted on Twitter to Information and Broadcasting Ministry's restrictions on advertising condoms on television between 6 am and 10 pm.
Summary:
Addressing a gathering of linguists and foreign students at the Kendriya Hindi Sansthan, Minister of State for HRD Satya Pal Singh has said that only Hindi language can unite India.
Summary:
Union Minister Babul Supriyo on Sunday tweeted a fake message that stated January 1, February 2, March 3 and every date corresponding with the number of the month would be a Sunday in 2018.
Summary:
Wishing Indian all-rounder Yuvraj Singh on his 36th birthday, ex-cricketer Virender Sehwag tweeted, "ABCDEFGHIJKLMNOPQRSTWXYZ, you will find in plenty.
Happy Birthday dear friend @YUVSTRONG12.
Summary:
WWE wrestler John Cena shared an inspirational quote by former Indian captain Rahul Dravid on Instagram.
Summary:
PM Narendra Modi also congratulated Rahul and wished for his 'fruitful tenure'.
Summary:
A 12-foot-tall bronze sculpture of legendary Argentinian footballer Diego Maradona was unveiled at a club in Kolkata during his visit to the city.
Summary:
BJP's Jharkhand unit has demanded the suspension of two Jharkhand Mukti Morcha MLAs for organising a 'kissing competition' for tribal couples during a traditional village fair.
Summary:
After the process was completed, ADM (City) Subhash Chand Sharma administered the oath of Indian citizenship to the people.
Summary:
India's two-day practice match ahead of their three-match Test series against South Africa which was scheduled for December 30 and 31 at Boland Park in Paarl has been cancelled.
Summary:
Seaplane is a "big revolution" in the transport sector and it can also be a revolutionary dream for the people of India, Union Minister of Road Transport and Highways Nitin Gadkari said on Tuesday.
Summary:
The matter emerged when he returned to board his flight, and he was released when scrutiny revealed immigration officials were at fault.
Summary:
A Southwest Airlines passenger who was allegedly caught smoking in the bathroom of a recent flight shouted, "I will kill everybody on this f*cking plane!" The female passenger was forced back into her seat after getting caught by cabin crew, following which she made the threat.
Summary:
Italy-based researchers have developed a prenatal screening method that claims to accurately predict if a baby would turn out left-handed or right-handed.
Summary:
New Zealand defeated Windies by 240 runs in the second Test to win the two-match Test series 2-0 in Hamilton on Tuesday.
Summary:
The Centre has told the Supreme Court that selling bottled mineral water above the maximum retail price (MRP) will attract monetary penalty and jail term for the management of restaurants, multiplexes, among others.
Summary:
Italian artist Leonardo da Vinci's Mona Lisa, considered the world's most famous painting, was recovered in Italy on December 12, 1913, nearly two years after being stolen from the Louvre museum in France.
Summary:
Actor Shah Rukh Khan took to Twitter to congratulate Virat Kohli and Anushka Sharma on their wedding and wrote, "Ab yeh hui na real Rab Ne Bana Di Jodi." Actress Neha Dhupia wrote, "What a catch @imVkohli...
Summary:
PM Narendra Modi on Monday said that Congress is entrapped in Blue Whale Challenge and will see the final episode on December 18, the day of Gujarat Assembly election results.
Summary:
PM Narendra Modi on Monday congratulated Rahul Gandhi on his election as the Congress President and wished for his 'fruitful tenure' as the party chief.
Summary:
India should not let political differences deter it from joining the project and benefiting from it, Russia has said.
Summary:
Only 20% students from B-category business schools have got job offers this year, making it the most challenging placement year in recent times, a study by Assocham has revealed.
Summary:
Five Army jawans have gone missing after an avalanche hit a post along the Line of Control in Jammu and Kashmir's Bandipora district.
Summary:
Prime Minister Narendra Modi rode a seaplane that took off from the Sabarmati river on Tuesday to reach Dharoi Dam, during the last day of campaign for the second phase of the Gujarat Assembly elections.
Summary:
One in three of 4.8 crore pregnancies in India ended in an abortion, according to a Lancet report on 2015 data.
Summary:
The BCCI on Monday confirmed that India will host the 2021 ICC Champions Trophy and 2023 ICC Cricket World Cup. This will be the first time that India will entirely host the World Cup, after having previously hosted the tournament partially in three editions.
Summary:
Ex-IPL chairman Lalit Modi slammed BCCI after it revoked Rajasthan Cricket Association's suspension on the condition that he stays away from its functioning.
Summary:
The communications industry could use one-fifth of the world's electricity by 2025, hampering attempts to meet climate change goals as demands for storing digital data increase, a US-based research has estimated.
Summary:
US President Donald Trump directed NASA on Monday to send Americans to the Moon.
Summary:
The migration system allows "too many dangerous, inadequately vetted people to access our country", Trump said.
Summary:
A New Zealand school with no students has pledged to remain open for as long as possible for any new student wishing to enrol.
Summary:
Actor Aamir Khan, while speaking on the issue of sexual harassment, said, "I think sexual harassment is a very sad thing to happen to anyone, irrespective of what your sex is." "I understand that people are free to be romantically involved with whoever they want.
Summary:
Priyanka Chopra was honoured with the Mother Teresa Memorial Award for Social Justice for her work in helping refugees with food, shelter and education.
"I am truly honoured to receive the prestigious [award]...
Summary:
Bihar MP Pappu Yadav has warned cheat doctors and quacks of "jan thukai" (public trashing) if they continued with illegal practices.
Summary:
MPs who disrupt proceedings and break rules should be named publicly, he added.
Summary:
Finance Minister Arun Jaitley has accused former PM Manmohan Singh of defying the national line by attending an alleged dinner hosted by suspended Congress leader Mani Shankar Aiyar for Pakistani diplomats.
Summary:
A 15-year-old Indian schoolgirl who was in Adelaide to play football at the Pacific School Games drowned off a beach in the city.
Summary:
The Egyptian Antiquities Ministry has announced the discovery of two small tombs in the city of Luxor.
Summary:
A British Airways Mumbai-London flight was diverted to Baku in Azerbaijan after declaring a "general emergency" on Monday evening.
Summary:
The incident occurred in October, when an Air India aircraft was flying from Patna to Delhi.
Summary:
An international drug trial involving 46 patients has reported the successful use of a drug for lowering protein levels related to the Huntington's disease, an inherited disorder that results in death of brain cells.
Summary:
US President Donald Trump on Monday rejected reports which claimed that he watches television, including news networks CNN, MSNBC and Fox News, for around 4-8 hours daily.
Summary:
Before Indian cricket team captain Virat Kohli and Anushka Sharma's marriage, actress Sagarika Ghatge and Zaheer Khan got married on November 23 this year.
Summary:
The Ministry of Information and Broadcasting has announced that television channels cannot telecast condom ads that are indecent and inappropriate for children between 6 am and 10 pm.
Summary:
The Election Commission on Monday told the Supreme Court that a candidate should not contest elections from two constituencies.
Summary:
Indian cricket team captain Virat Kohli got married to actress Anushka Sharma on Monday in Tuscany, Italy in an intimate wedding ceremony.
Summary:
Summary:
The man who was accused of molesting a teenage Bollywood actress on-board an Air Vistara Delhi-Mumbai flight has been sent to police custody till December 13.
Summary:
Chhattisgarh Madrasa Board will introduce NCERT-based formal school curriculum in madrasas from Class 9, starting from the academic year 2018-19.
Summary:
The BCCI on Monday decided to revoke the ban imposed on Rajasthan Cricket Association since May 2014, on the condition that former IPL commissioner Lalit Modi stays away from its functioning.
Summary:
Calling Prime Minister Narendra Modi "Maunsahab", Congress President Rahul Gandhi on Monday slammed him for not appointing a Lokpal.
Summary:
Trump has been accused of sexual misconduct by at least 16 women.
Summary:
Russia and Egypt signed a deal on Monday to build Egypt's first nuclear power plant.
Summary:
Russian President Vladimir Putin has said that US President Donald Trump's decision recognising Jerusalem as Israel's capital was "counterproductive".
Summary:
NITI Aayog CEO Amitabh Kant has said the days of physical banks were ending, and the banks unable to transition to data analytics and digital banking would die by 2020.
Summary:
Veteran actress Saira Banu said her marriage to actor Dilip Kumar has been a perfect dream.
Summary:
Following their wedding in Italy, Virat Kohli and Anushka Sharma will shift to their new residence in Worli, Mumbai in December.
Summary:
While talking about his son AbRam and Kareena Kapoor's son Taimur Ali Khan, Shah Rukh Khan said that they would definitely make their children work together in a film.
Summary:
Harry Lennix, known for films like 'Man of Steel' and the TV series 'The Blacklist', said he would love to do a Bollywood film while adding, "Since I'm 6 feet 4 inches tall...I could play a Hindu god." He further said, "It has been my lifelong dream to see the Taj Mahal...
Summary:
As many as 162 pieces of 1,200-year-old Chinese treasure found under the sea have been returned to the country.
Summary:
Maoists in Andhra Pradesh's Visakhapatnam killed two locals on Friday after accusing the duo of being police informers, police said.
Summary:
A video of Karnataka BJP leader KS Eshwarappa asking party members to "lie if you have to, but don't admit you don't know" has emerged online.
Summary:
Faulty parts may have caused a fire in the missing Argentinian submarine that went missing with 44 crew members on board last month, according to reports.
Summary:
The European Union on Monday agreed to restore political relations "at all levels" with Thailand, more than three years after putting them on hold in protest against the coup by the Thai military.
Summary:
"The return of these elements poses a serious threat to our national security and stability," the AU said.
Summary:
The pilot tried to make an emergency landing in a schoolyard but failed as the aircraft crashed into the house.
Summary:
Abu Dhabi paid the right price to acquire Leonardo da Vinci's $450 million painting "Salvator Mundi", according to a senior official of the Gulf Emirate.
Summary:
Indian cricket team captain Virat Kohli and actress Anushka Sharma announced that they got married on Monday.
Summary:
Directed by Vikram Bhatt, the film is scheduled to release on January 12, 2018.
Summary:
The Richa Chadha, Pulkit Samrat and Ali Fazal starrer 'Fukrey Returns' has earned â¹32.20 crore in its opening weekend.
Summary:
Denmark's Danske Bank has attracted 11,500 clients to an investment service provided by a robot named 'June' in just over half a year.
Summary:
Notably, MyEtherWallet.com is a popular service for storing cryptocurrencies and does not have an official app.
Summary:
Ride-hailing startup Uber charged a rider over $14,400 (nearly â¹9.3 lakh) for a 21-minute, 8-kilometre ride last week in Toronto, Canada.
Summary:
The Bulgarian government has enough Bitcoins to pay off over one-fifth of the country's total debt of $16.5 billion.
Summary:
"Pakistan has its own interest in getting rid of terrorist organisations using its territory," Lavrov added.
Summary:
The New York Police Department (NYPD) arrested a Bangladeshi national, Akayed Ullah, who reportedly had an explosive device strapped to him.
Summary:
Comedian-actor Russell Peters has said that he is the father of a girl and the last thing he is thinking about is a rape joke.
Summary:
Bollywood celebrities including Amitabh Bachchan, Dharmendra and Lata Mangeshkar took to social media to wish veteran actor Dilip Kumar on his 95th birthday on Monday.
Summary:
The Supreme Court on Monday dismissed a petition filed by the father of Ryan International School murder victim Pradyuman Thakur, challenging the anticipatory bail granted to the three trustees of the school.
Summary:
Delhi government's lawyer Rajeev Dhawan on Monday quit legal practice days after having an argument with the Chief Justice of India Dipak Misra during a hearing of the Delhi vs Centre case.
Summary:
The 16-storey tower had previously collapsed in a 2008 earthquake, and restoration work was still underway.
Summary:
A shootout took place on Monday between the Rajasthan Police and four people who were smuggling seven cows and six calves in a truck in Alwar district.
Summary:
This comes ahead of the second phase of polling in the Gujarat Assembly elections on December 14.
Summary:
The World Wrestling Entertainment (WWE) has suspended wrestler Rich Swann after he was arrested on charges of kidnapping and attacking his wife Vannarah Riggs, who is also a wrestler.
Summary:
Union minister Satyapal Singh has said that no boy would want to marry a girl who would come to her own wedding wearing jeans.
Summary:
Technology giant Facebook has removed the 'Ticker' feature that helped track friends' activity.
Summary:
Talking about the effects of social networks, former Facebook VP for user growth Chamath Palihapitiya has said, "I think we have created tools that are ripping apart the social fabric of how society works." He also said that he feels "tremendous guilt" about the company he helped make.
Summary:
NASA's planet-hunting Kepler space telescope has made its latest discovery using Google's artificial intelligence (AI), the space agency said.
Summary:
However, Haley appreciated China's implementation of North Korea sanctions.
Summary:
UN Secretary-General António Guterres on Sunday renewed calls to end the "stupid war" in Yemen.
Summary:
The drill is aimed at "practising detecting and tracking potential ballistic missiles from North Korea", South Korea's Defence Ministry said.
Summary:
An accountability court on Monday declared former Pakistan Finance Minister Ishaq Dar an "absconder" after he repeatedly failed to appear for a trial in a graft case linked to the Panama Papers scandal.
Summary:
As many as 24 women were arrested in Sudan's capital Khartoum over public indecency for wearing trousers at a party, according to reports.
Summary:
The recall will affect consumers in countries including China, Pakistan, Britain, and Sudan.
Summary:
Indian cricket captain Virat Kohli and actress Anushka Sharma got married today at a private ceremony in Italy and an official announcement is expected soon, as per reports.
Summary:
Veteran actor Dilip Kumar got his first acting offer after he was spotted selling fruits by actress Devika Rani.
Summary:
Sharing the poster, Akshay tweeted, "This pad giving woman two months extra life.
Summary:
The diplomatic handling of the Doklam standoff by India and China showed the importance of bilateral ties between the two countries, Chinese Foreign Minister Wang Yi has said.
Summary:
During the 2019-2023 cricket cycle, the Indian cricket team will host 81 matches across formats, 30 more than the current Future Tours Programme cycle.
Summary:
Singh further clarified that he didn't discuss Gujarat elections with anyone as alleged by PM Modi.
Summary:
The BJP has slammed the Congress for conducting a 'fake' survey after All India Congress Committee's National Media Coordinator Rohan Gupta shared a graphic claiming that the first phase of Gujarat polls had gone in Congress' favour.
Summary:
Summary:
US Ambassador to the UN Nikki Haley on Sunday said that women who accuse President Donald Trump of sexual harassment or assault "should be heard".
Summary:
Global arms sales increased for the first time in 5 years in 2016, according to a study by the Stockholm International Peace Research Institute.
Summary:
Russian and Syrian militaries have "defeated the most battle-hardened grouping of international terrorists", Putin said.
Summary:
Existing rules allow foreign airlines to own as much as 49% in an Indian airline, with the exception of Air India.
Summary:
Television actress Jaya Bhattacharya, known for playing 'Payal' in the Smriti Irani starrer serial 'Kyunki Saas Bhi Kabhi Bahu Thi', has said that she is badly in need of work as her mother is in the ICU.
Summary:
Two-time defending champions Real Madrid will face off against French club PSG, featuring world's most expensive player Neymar, in the UEFA Champions League last 16.
Summary:
A video of Congress President Rahul Gandhi facing chants of "Modi Modi" from BJP supporters during his visit to Dakor's Ranchhodji temple in Gujarat has emerged online.
Summary:
The Afghanistan cricket team, which was recently made a Test-playing nation, will play its first-ever Test match against India in India.
Summary:
Jammu and Kashmir Police on Sunday arrested a French journalist in Srinagar for making a documentary on pellet victims.
Summary:
Earlier, reports suggested that WhatsApp is also working on an option to allow users to make group voice calls.
Summary:
Russian robot named 'Alantim v2' and its updated version 'Alantim v3' took part in a rap battle at Phystechpark technological facility in Moscow last week.
Summary:
Talking about the content on the platform, YouTube India's entertainment head Satya Raghavan has said the company has an ecosystem which is wide, deep and well balanced.
Summary:
Police escorted the woman off the plane and ordered her to pay a â¬5,000 fine.
Summary:
Founded in 2015, the startup sources tea directly from plantations and delivers it to consumers across the world.
Summary:
Israeli Defence Minister Avigdor Lieberman has called for a boycott of Arabs living in the country's Wadi Ara area following protests in the region over US' recognition of Jerusalem as Israel's capital.
Summary:
Authorities in China's Chaoyang district began evicting people living in unauthorised dwellings citing unsafe and overcrowded housing.
Summary:
Venezuelan President Nicolás Maduro on Sunday announced that the main opposition parties will be barred from taking part in the next year's presidential elections.
The move which may further consolidate Maduro's grip on power comes after the opposition parties boycotted municipal polls.
Summary:
The government is planning to set up a panel to decide on Bitcoin policy, according to reports.
Summary:
Realty estate company Unitech moved the Supreme Court on Monday against National Company Law Tribunal's (NCLT) order allowing the government to take over the company's management.
Summary:
The Congress had earlier announced that 89 nominations were filed proposing Rahul Gandhi's candidacy for the presidential elections.
Summary:
Cinemas were banned in the conservative kingdom following opposition from clerics.
Summary:
China-based firm Three Gorges Group has started producing power from part of a 150-megawatt floating solar plant in east China, the largest of its kind in the world.
Summary:
The man accused of molesting 17-year-old Bollywood actress on a Vistara flight told the police that the incident was unintentional and he had apologised for the same when she raised an alarm.
Summary:
A restaurant in Chennai called 'Robot' has started using faceless robot waiters who glide around the restaurant and serve food to customers.
Summary:
Criticising the move, BHU political analyst Dhanajay Tripathi said, "Arthashastra was for monarchy and GST is introduced in a democracy.
Summary:
Former World Cup-winning captain Argentina's Diego Maradona arrived in Kolkata on Sunday, reportedly to take part in a charity football match against a team captained by former Indian cricket captain Sourav Ganguly.
Summary:
Summary:
The Gujarat Police has denied permission for Prime Minister Narendra Modi and Congress Vice President Rahul Gandhi's roadshows that were scheduled to be held on Monday in Ahmedabad.
Summary:
NASA's Apollo 17 was the last manned mission to the moon, successfully landing on the lunar surface on December 11, 1972.
Summary:
DNA scientist and former BHU Vice Chancellor Dr Lalji Singh passed away in Varanasi on Sunday at the age of 70 due to a heart attack.
Summary:
As per reports, Aamir Khan opted out of astronaut Rakesh Sharma's biopic to work on a franchise that his production house has been developing for six years and not owing to differences with the biopic's makers.
Summary:
Earlier, the Grammy Award-winning singer had also performed at the Nobel Peace Prize Concert in 2006.
Summary:
India should stop dragging Pakistan into its electoral debate and win victories on own strength rather than baseless and irresponsible conspiracies, Pakistan Foreign Affairs spokesperson Mohammad Faisal said on Monday.
Summary:
Addressing a rally in Gujarat's Vadodara, Prime Minister Narendra Modi asked why former PM Manmohan Singh didn't show the courage to order a surgical strike post the 26/11 Mumbai terror attack.
Summary:
Summary:
MS Dhoni signalled to take a DRS review even before the umpire could completely raise his finger to declare Jasprit Bumrah out in the first ODI against Sri Lanka.
Summary:
Calling for a nationwide ban on alcohol, Bihar Chief Minister and JD(U) chief Nitish Kumar asked his party activists to spread awareness about ill-effects of liquor consumption among people.
Summary:
Prime Minister Narendra Modi took to Twitter to wish former President Pranab Mukherjee on his 82nd birthday on Monday.
Summary:
Summary:
Around 1,800 PeopleâÂÂs Liberation Army troops are reportedly staying in Doklam, near the Sikkim-Bhutan-Tibet trijunction for the first time this winter.
Summary:
Refuting Prime Minister Narendra Modi's remarks that Congress held a secret meeting with Pakistan, Congress leader Anand Sharma said the party merely attended a social function in which high dignitaries including Pakistan High Commissioner were present.
Summary:
Super featherweight boxer Stephen Smith's ear was nearly ripped off after he clashed heads with Francisco Vargas during their boxing bout in Las Vegas on Saturday.
Summary:
The players scaled the hotel's boundary wall before walking almost 3 km to the stadium.
Summary:
India's only male swimmer at the Rio Olympics, Sajan Prakash, who demanded financial assistance from the government to undergo high-altitude training in Spain, has threatened to sell his medals if denied assistance.
Summary:
"We have no power to decide about the construction of a school on need basis," the authorities added.
Summary:
Transport Minister Nitin Gadkari on Sunday requested Japanese firm Setouchi to manufacture seaplanes in the country following the successful trial runs of their aircraft here.
Summary:
The magazine featured Grillot's name among '5 Heroes Who Gave Us Hope in 2017'.
Summary:
A group of 11 tourists from France were allegedly beaten up and molested by a group of local boys in Uttar Pradesh's Mirzapur on Sunday.
The locals insulted them and attacked them with sticks, one of the tourist said.
Summary:
Delhi and Gujarat collectively accounted for more than half of the fake notes seized in the country in 2016, a report by the National Crime Records Bureau revealed.
Summary:
Nearly 47% of the bills in the last 10 years were passed without any debates in the Parliament, according to a report.
Summary:
The grandfather in the family is the 'household head', while the father and children are 'permanent customers'.
Summary:
Dumaria, a tribal-dominated village of Jharkhand, organised a kissing competition for couples during its two-day annual fair.
Summary:
The 2017 Nobel Laureates were handed their medals, personal diplomas, and cash awards worth 9 million SEK ($1.07 million) per Nobel Prize on Sunday.
Summary:
Election officer RS Ninama claimed that the EVM unit was a "spare" one and was not used in the polling in Dediapada.
Summary:
National carrier Air India is seeking an over â¹1,100-crore loan to modify two Boeing aircraft that will be used to ferry the President, Vice President, and Prime Minister.
Summary:
The Madras High Court has directed the Tamil Nadu government not to use playgrounds in schools, colleges, and universities for non-academic events.
Summary:
The CRPF jawan who killed four troopers at a camp in Chhattisgarh on Saturday opened fire to murder a platoon commander against whom he held a grudge, a preliminary probe revealed.
Summary:
Goa chief minister Manohar Parrikar on Sunday launched the country's first-ever mobile food testing laboratory.
Summary:
Afghanistan's Parliament on Saturday called on the government and Muslim nations across the world to cut ties with the US in protest against President Donald Trump's decision to recognise Jerusalem as Israel's capital.
Summary:
After a teen Bollywood actress alleged that she was molested on a flight, Indian wrestler Babita Phogat posted a video on Twitter in which she said, "If someone misbehaves with you, slap them in the face." In the video, Babita further said, "You don't need to fear...
Summary:
Summary:
Actor Nawazuddin Siddiqui has said that controversies began to surround him when he started speaking the truth.
Summary:
The 434-kilometre highway was closed due to the expected snowfall and slippery road conditions, officials said.
Summary:
Reacting to a bride-to-be who left her 'haldi' ceremony midway to cast vote in Gujarat Assembly elections, a Twitter user wrote, "Didi muh dhoke ati aisa konsa voting time khatam ho rha tha." Other users tweeted, "Gujarat ma thoda jyada hi drama chal raha ha," and "Voter ID card ke photo se match hoga?
Summary:
India defeated Germany 2-1 in the Hockey World League Final to grab the bronze medal at the event on Sunday.
Summary:
With the win, City went 11 points clear at the top of the table.
Summary:
With the win, Barcelona restored their five-point lead at the top of the La Liga points table and maintained an eight-point advantage on fourth-placed Real Madrid.
Summary:
German top-tier club Eintracht Frankfurt's Marius Wolf was handed a red card for his tackle on a Bayern Munich player but was recalled from his dressing room to the field later by the referee.
Summary:
West Bengal CM Mamata Banerjee announced a life insurance of â¹5 lakh each for pilgrims visiting the state for the upcoming Gangasagar fair, the second biggest pilgrimage fair after Kumbh.
Summary:
For people living in rural areas of Gujarat, getting hospitalised is most expensive when compared to other rural parts of India, a report by the Central Bureau of Health Intelligence revealed.
Summary:
Kannada actor-politician Upendra's Karnataka Pragnyavantha Janatha Paksha (KPJP) has unveiled the green and yellow auto rickshaw as its party symbol.
Our aim is that the government chosen by the people's support should run on its own without any problems," he said while unveiling the symbol.
Summary:
ErdoÃÂan also vowed to use "all means to fight" the US recognition of Jerusalem as Israel's capital.
Recently, ErdoÃÂan had described Jerusalem's recognition as a "red line" for Muslims.
Summary:
Mumbai Police has detained the man who allegedly molested a 17-year-old Bollywood actress on-board an Air Vistara Delhi to Mumbai flight.
Summary:
As many as 896 Laureates and 27 organisations have been awarded the Nobel Prize between 1901 and 2017.
Summary:
The actor had earlier performed internationally in cities like Auckland, Hong Kong and Melbourne as part of the tour.
Summary:
Andhra Pradesh CM N Chandrababu Naidu is the poorest in his family with assets amounting to â¹2.53 crore, his son and state Information Technology Minister Nara Lokesh has revealed.
Summary:
She claimed they held her hostage for six hours and raped her.
Summary:
"A fighter aircraft is not only (an) aircraft.
(The) aircraft is probably smaller part of the total cost.
Summary:
While addressing a rally in Gujarat's Banaskantha, Prime Minister Narendra Modi on Sunday claimed that suspended Congress leader Mani Shankar Aiyar held secret meetings with Pakistan's High Commissioner.
Summary:
Karnataka Home Minister Ramalinga Reddy has claimed that some BJP leaders in the state were behaving like Islamic State terrorists.
Summary:
Summary:
In an apparent reference to US-North Korea tensions, the International Campaign to Abolish Nuclear Weapons (ICAN) said, "The deaths of millions may be one tiny tantrum away," while accepting the Nobel Peace Prize.
Summary:
Actor Prakash Raj has said that people have issues with a film being titled 'S Durga' but no problem with stores named Durga Wine and Bar. Earlier, the Censor Board ordered for the film's title to be changed from 'Sexy Durga'.
Summary:
While talking about the demise of veteran actors like Vinod Khanna and Shashi Kapoor, Salman Khan said, "We never thought that the heroes we worshipped, could...leave us alone." He added that their demise is a great loss to the film industry.
Summary:
Actress Sonam Kapoor turned showstopper for fashion designer Tarun Tahiliani at his show in Mumbai as part of the 13th edition of Blenders Pride Fashion Tour.
Summary:
Ultra Violet has been announced as the 'Color of The Year' for 2018 by Pantone Color Institute, a world renowned authority on colours.
Summary:
nAlleging that Pakistan is interfering in the Gujarat Assembly elections, PM Narendra Modi on Sunday sought an explanation from Congress over reports that its leaders held a meeting with Pakistan High Commissioner.
Summary:
As many as five wild elephants were killed after being hit by a train near Balipara in central Assam on Sunday.
Summary:
Malik had gone underground for two days to evade his arrest as he intended to lead the march.
Summary:
"Our cities should be sanctuaries for Americans, not for criminal aliens (immigrants)," Trump said in his weekly address.
Summary:
Congress Vice President Rahul Gandhi on Sunday asked party workers to not use derogatory words against Prime Minister Narendra Modi.
Summary:
The artists said the boy in the campaign doesn't depict Rahul Gandhi.
Summary:
Earlier, the department said that US forces plan to stay in Syria as long as necessary to ensure ISIS does not return.
Summary:
Germany's intelligence agency has warned of increased cyberspying by China, claiming that over 10,000 citizens were targeted by Chinese spies on social media sites.
Summary:
Activists at the Centre for Biological Diversity have filed a lawsuit against US President Donald Trump's government for allowing oil companies to dump waste from fracking and drilling into the Gulf of Mexico.
Summary:
US President Donald Trump watches television for at least four hours a day and sometimes even eight hours, according to reports.
Summary:
Iranian President Hassan Rouhani has said that the country could have better relations with Saudi Arabia if it distances itself from Israel and stop its military intervention in Yemen.
Summary:
The Israeli military has destroyed an underground tunnel stretching from the Gaza Strip into Israeli territory, which it claims was built by the Hamas militant group.
Summary:
Telecom Minister Manoj Sinha has said the government will ensure there's no spectrum shortage so that India doesn't lag behind rest of the world in launching 5G services.
Summary:
An adaptation of the international show 'TED Talks' has premiered for the first time in India with actor Shah Rukh Khan as the host.
Summary:
While the upper half of the baby was normal, the lower half looked like that of a mermaid with fused legs, reports said.
Summary:
The Directorate of Revenue Intelligence (DRI) on Saturday recovered nearly â¹50 crore in demonetised notes of â¹1,000 and â¹500 from an office in Gujarat's Bharuch.
Summary:
American electric carmaker Tesla's Co-founder and CEO Elon Musk has revealed that Tesla is building custom artificial intelligence (AI) chips.
Summary:
Android Co-founder Andy Rubin has reportedly returned to his smartphone startup Essential after taking a leave of absence last month to "deal with personal matters".
Summary:
The document is based on the principles of dignity, equality, and fairness, and sets out a range of rights and freedoms to which every human being is entitled.
Summary:
The village of Alwine, which houses only 15 people, was a part of East Germany until Germany's re-unification in 1990.
Summary:
Government-owned telecom operator MTNL has prepared an over â¹4,200-crore transformation plan even as it faces a financial crisis.
Summary:
However, prices of non-subsidised LPG cylinders were raised by â¹5 per cylinder to â¹747 in Delhi on December 1.
Summary:
Sonakshi Sinha has said that India is a country which worships Goddesses like Kali, Durga and Laxmi but has no issue killing a girl child even before she is born.
Summary:
As per reports, actor Shah Rukh Khan has compensated distributors for the losses incurred due to the box office performance of his production 'Jab Harry Met Sejal'.
Summary:
Actor Hrithik Roshan, while tweeting on the occasion of Human Rights Day on Sunday, wrote that feminism is a fight for humanity and not a word one should be scared of.
Summary:
This comes after Uddhav alleged that Rane had harassed Shiv Sena founder Bal Thackeray.
Summary:
The women were hit on the head with iron rods and there was no evidence of theft, police said.
Summary:
Goa CM Manohar Parrikar on Sunday rode a bicycle near Panaji as part of an event to spread the message of environment protection.
Summary:
A woman alleged that a sub-engineer stopped the construction of a toilet at her house and demanded sexual favours from her to restart the construction work in Chhattisgarh's Raigarh.
Summary:
BJP spokesperson Sambit Patra termed Prime Minister Narendra Modi as 'desh ka baap' (father of the nation) during a debate with ex-JNU Students' Union President Kanhaiya Kumar on a news channel.
Summary:
A Muslim woman in Uttar Pradesh's Bareilly has alleged that she was given Triple Talaq as she attended a rally thanking PM Narendra Modi for bringing a legislation to end the practice.
Summary:
The Indian Railways has sent out over 33 lakh messages to passengers alerting them to trains being delayed for over an hour since it launched the service on November 3.
Summary:
When asked about expanding to a payments bank, MobiKwik Co-founder Upasana Taku in a recent interview said, "We don't want to become a bank." She adding that MobiKwik has moved from being a consumer payments brand to being a consumer fintech brand.
Summary:
Trump had demanded an apology after the reporter tweeted a photo that showed an empty arena where Trump addressed the rally.
Summary:
During a rally in Florida, US President Donald Trump claimed that the country had single-handedly won two World Wars and "brought communism to its knees".
Summary:
An Israeli Army commander has been suspended after he was filmed stealing apples from a Palestinian vendor's stand following clashes in the West Bank city of Hebron.
Summary:
After Iraqi Prime Minister Haider al-Abadi declared that the country's war against Islamic State was officially over, British PM Theresa May warned that the terror group may have lost significant ground but it has not been defeated yet.
Summary:
Canadian-American adult film star August Ames, who was slammed online for publicising her refusal to work with a man who had appeared in gay adult movies, was found dead in Los Angeles on Tuesday.
Summary:
WikiLeaks founder Julian Assange has challenged CBS News to a $100,000 bet claiming that the network's story about the whistleblowing website's alleged links to US President Donald Trump's family is "fake news".
Summary:
Iraq has agreed to swap up to 60,000 barrels of crude oil per day produced from Kirkuk oilfield for Iranian oil.
Summary:
This was the Sri Lankan team's first ODI win against India while playing in India since 2009.
Summary:
The Fortis Hospital in Haryana's Gurugram has been charged with culpable homicide not amounting to murder for medical negligence in the treatment of a seven-year-old girl suffering from dengue.
Summary:
The Mumbai Police has registered an FIR against an unknown person for allegedly molesting 17-year-old actress Zaira Wasim on-board an Air Vistara flight.
Summary:
The trailer of the upcoming animated film 'Spider-Man: Into the Spider-Verse', with Afro-Latino teenager Miles Morales as the character playing the superhero, has been released.
Summary:
Wasim had claimed she was molested on-board an Air Vistara Delhi to Mumbai flight.
Summary:
The idea for the traffic signal had been adapted from the design of the railway signalling systems.
Summary:
An Indian man from Hyderabad, who is currently pursuing higher studies in Chicago, US, was admitted to a hospital in critical condition after being shot at by an unidentified assailant on Saturday.
Summary:
The editor of Bengaluru-based tabloid 'Hai Bangalore', Ravi Belagere, has been arrested by police on charges of hiring a contract killer to murder his former colleague and journalist Suneel Heggaravalli.
Summary:
Chinese e-commerce giant Alibaba's Co-founder Jack Ma in a recent interview said, "Bitcoins (is) not for me," when asked about the cryptocurrency.
Summary:
Summary:
Sri Lanka on Saturday formally handed over the southern Hambantota Port to China on a 99-year lease and received $292 million out of the $1.12-billion deal, Finance Minister Mangala Samaraweera said.
Summary:
A jewelled bag owned and used by Princess Diana has been sold for $15,186 (over â¹9 lakh) at an auction in the US.
Summary:
A YouTube prankster in the UK released a video that showed him putting his head inside a plastic bag and then in a cement-filled microwave.
Summary:
RBI has launched an SMS campaign and a missed-call helpline to warn people against scams promising prize money from the RBI.
It is also asking public to give a missed call to the helpline number, 8691960000.
Summary:
Pai disagreed with a whistleblower who asked the regulator to prosecute Infosys' management as well as the board.
Summary:
While talking about fringe groups protesting against 'Padmavati', Punjab Chief Minister Amarinder Singh said that such people should have been locked up.
Summary:
English singer-songwriter Chris Rea collapsed on stage in the middle of a song while performing at the New Theatre Oxford in England.
Summary:
Kangana Ranaut, in a veiled reference to Hrithik Roshan, said, "A superstar is trying to put me behind bars." She added the threats she got when in a professional environment or the acid attack her sister faced were common in the society.
Summary:
Reacting to India's collapse against Sri Lanka on Sunday, a user tweeted, "Indian batting line-up without Virat Kohli is like a bank account without a linked Aadhar Card".
Summary:
Bumrah's family had reportedly denied Santokh Singh from meeting or talking to his grandson.
Summary:
Sri Lanka dismissed India for their lowest all-out ODI score at home in 24 years after restricting the side to 112 in the first ODI on Sunday.
Summary:
Prime Minister Narendra Modi is committed to moving India towards a lower carbon intensity, World Bank President Jim Yong Kim said on Saturday.
Summary:
Google is testing a feature for Google Maps that notifies users when to get off a train or bus in real time.
Summary:
The feature also has an undo button in case a greeting is sent accidentally.
Summary:
Facebook-owned photo-sharing platform Instagram has started testing 'Direct', a standalone app which offers private messaging for users.
Summary:
Arab League Foreign Ministers on Saturday demanded that the US reverse its decision recognising Jerusalem as Israel's capital.
Summary:
"The matter is bigger than a mere meeting because the US, in its decisions on Jerusalem, crossed red lines," Palestinian officials said.
Summary:
Nearly six lakh cases are pending for a decade or more in various high courts, according to data collected by a monitoring system aimed at identifying and reducing pendency.
Summary:
Pakistan Foreign Office spokesperson Mohammad Faisal on Saturday said that India had turned down their "message for peace" by refusing to stop ceasefire violations.
Summary:
A 6-year-old boy named Ryan has made $11 million this year from reviewing toys on his YouTube channel 'Ryan ToysReview', according to Forbes.
Summary:
After 17-year-old Dangal actress Zaira Wasim alleged that she was molested on-board an Air Vistara Delhi-Mumbai flight, the airline said that Zaira and her mother refused to file a complaint when asked by the crew.
Summary:
As per reports, Virat Kohli and Anushka Sharma will be getting married at a heritage resort in Tuscany, Italy and arrangements have been made for a typical Punjab wedding.
Summary:
In the first ODI against Sri Lanka, India were reduced to 11/3 in 10 overs, the lowest ever total scored in the first powerplay of any ODI.
Summary:
Indian batsman Dinesh Karthik who failed to score a single run after facing 18 balls against Sri Lanka, set the record for the most number of balls faced by an Indian before getting dismissed for a duck in an ODI.
Summary:
Banaras Hindu University (BHU) students protested against MA History question paper which asked them to discuss Triple Talaq and Halala as social evils in Islam.
Summary:
Former Indian captain MS Dhoni became the second wicketkeeper after former Sri Lankan captain Kumar Sangakkara to score 16,000 runs in international cricket after crossing the milestone figure against Sri Lanka on Sunday.
Summary:
The Centre will issue universal ID cards to persons with disabilities which will be valid throughout India, Union minister Krishan Pal Gurjar said.
Summary:
The man found hanging at Jaipur's Nahargarh Fort with a message on a stone that read "Padmavati ka virodh" wasn't murdered, a forensic report has revealed.
Summary:
Today's Google doodle honours German physician Robert Koch, known for pioneering modern bacteriology.
Summary:
Union Steel Minister Chaudhary Birender Singh on Friday said that that the joint venture (JV) between Steel Authority of India (SAIL) and ArcelorMittal will be signed soon.
Summary:
According to a report by global brokerage firm Morgan Stanley, India's GDP growth is likely to accelerate from 6.4% this year to 7.5% in 2018, and to 7.7% in 2019.
Summary:
This represents 49% of the total budget estimate of direct taxes at â¹9.8 lakh crore for the current financial year.
Summary:
The Assam government has sent water samples from several points of the 891 kilometre Brahmaputra river for analysis to Hyderabad's Indian Institute of Chemical Technology and IIT Guwahati.
Summary:
Minority Affairs Minister Mukhtar Abbas Naqvi on Saturday said that the murder of the Muslim labourer in Rajasthan earlier this week was a "criminal incident" and not a case of 'love jihad'.
Summary:
Summary:
Talking about Indian Army's surgical strikes against Pakistan last September, former Defence Minister Manohar Parrikar said the planning was done in such a way that no details were leaked.
Summary:
Anna Dempster, an amateur MMA fighter from Oregon, USA, is set to fight an internet troll Kristopher Zylinski who posted comments that he believed that women, whether trained or not, cannot beat men in a fight.
Summary:
A survey conducted by the NGO Transparency International India revealed that 45% Indians paid a bribe to a government official at least once in past one year, in order to get their work done.
Summary:
A five-year-old girl was raped and a wooden stick was found inserted into her private parts in Haryana's Hisar on Saturday.
Summary:
The staff "did not follow the standard procedures when handling leftover food", the airline said after confirming the air hostess in the video was its employee.
Summary:
Germany-based researchers have observed that cockroaches change their manner of walking mid-speed and also do so on a slippery surface, shifting to dynamic stabilisation from static.
Summary:
State Bank India (SBI) has changed names and IFSC codes of nearly 1,300 of its branches, post its merger with associate banks.
Summary:
Reserve Bank of New Zealand Acting Governor Grant Spencer has said that Bitcoin is too unstable to be useful in the future.
Summary:
National carrier Air India has sought proposals for short-term loans worth â¹1,500 crore to meet its urgent working capital requirements, according to a bid document.
Summary:
In order to make riding safe for women in India, CEAT has combined functionality and innovation to introduce the brand new CEAT Safety Grip.
Summary:
Dangal actress Zaira Wasim has alleged that a man sitting behind her on a Delhi-Mumbai Vistara flight tried to molest her.
If we don't help ourselves," the 17-year-old actress added while crying.
Summary:
Over 1.7 lakh police personnel have been deployed across Gujarat to maintain law and order during the first phase of Assembly elections on Saturday.
Summary:
The Election Commission in Gujarat on Saturday said an inquiry found reports suggesting that EVMs were tampered with using Bluetooth device were baseless.
Summary:
President Ram Nath Kovind on Friday awarded the President's Colours to the submarine arm of the Indian Navy in recognition of its extraordinary service to the nation in the past 50 years.
Summary:
Users can dispense a pellet onto the sensor and drop blood sample to measure glucose concentration.
Summary:
The US planned a war with North Korea in 1994 and believed its military and South Korea's forces would "undoubtedly win" any conflict on the Korean Peninsula, newly declassified documents have revealed.
Summary:
Maruti Suzuki's market capitalisation stood at â¹2.74 trillion, marginally ahead of SBI's market value of â¹2.71 trillion.
Summary:
YouTube personality and TV show host Sahil Khattar has said that he aims to change the stereotype of bald men getting only funny or negative roles in films.
Summary:
Shilpa Shetty, while sharing a picture on Instagram from the celebration of Rani Mukerji's daughter Adira's second birthday, wrote, "#AdirasBirthdayparty was like the premier (premiere) of a magnum opus." The picture shows Rani, Sridevi and her daughter Khushi Kapoor.
Summary:
After the fight, Triple H said that Mahal had earned his respect, following which they performed bhangra together.
Summary:
Ahead of the 25th anniversary of Dialogue Partnership between India and Association of Southeast Asian Nations (ASEAN), Delhi will host a two-day ASEAN-India Connectivity Summit on December 11 and 12.
Summary:
With internet connection in every house, healthcare and education in rural areas will undergo revolutionary changes, Information Technology Minister KT Rama Rao said.
Summary:
After BJP spokesperson Sambit Patra termed PM Narendra Modi as "desh ka baap", Congress on Saturday demanded that PM Modi should apologise for the 'insult' to the Father of the Nation Mahatma Gandhi.
Summary:
Rashtriya Janata Dal (RJD) chief Lalu Prasad Yadav on Saturday said that if he had to go to jail in the railway tender scam case, there would only be an increase of votes for him.
Summary:
England's Ben Duckett, who was called up to take part in an Ashes tour game, has been dropped from the squad after he poured a drink on James Anderson in a late-night drinking incident in Perth.
Summary:
The Uttar Pradesh government on Friday issued new guidelines for private schools in the state, to regulate the functioning of the schools.
Summary:
Singh added that this time Congress has grown wiser and started accusing the EVMs even before the results.
Summary:
However, the woman has said it was a lie that the accused brought her back from West Bengal.
Summary:
Earlier this month, the Tamil Nadu all-rounder had also earned his maiden call-up for the T20I series against Sri Lanka.
Summary:
In the first match after winning his fifth Ballon d'Or, Cristiano Ronaldo struck a brace as Real Madrid scored five goals in the first-half in their thrashing of Sevilla in La Liga on Saturday.
Summary:
Mumbai-based dairy-tech startup MilkLane has raised $4 million in pre-Series A funding from Switzerland-based investment firm Pioneering Ventures.
Summary:
Maruti Suzuki has also reportedly asked the owners of affected cars to get their vehicles checked at service centres.
Summary:
Australian scientists have discovered remains of a new species of meat-eating marsupial lion, which became extinct at least 18 million years ago.
Summary:
China's authorities have stopped 69 mining projects in the country's Altun national nature reserve as part of a national campaign to tighten supervision amid rising environmental concerns.
Summary:
Russian hypnotists are helping Bitcoin owners recover their e-wallets' passwords.
Summary:
Saleh was killed last week by the Iran-backed Houthi rebels after allying with the Saudi-led coalition.
Summary:
Filmmaker Karan Johar has shared a picture on Instagram of his twins Roohi and Yash with Kareena Kapoor's son Taimur while captioning it, "And a new friendship begins." Karan and Kareena are known to be close friends.
Summary:
Calling the Delhi government's decision to cancel Max Hospital's licence "irrational" and "autocratic", the Delhi Medical Association (DMA) has threatened to go on a strike.
Summary:
Filing a police complaint of negligence by the doctors, the child's father claimed 18 people were responsible for her death.
Summary:
In a bid to encourage young and first-time voters to cast votes, the Election Commission (EC) on Saturday set up a selfie booth in Gujarat's Bhavnagar during the first phase of Gujarat Assembly elections.
Summary:
Arjun Modhwadia, Congress' nominee from the Porbandar seat in the Gujarat Assembly elections, has alleged that three electronic voting machines (EVMs) he had inspected were connected to a Bluetooth device.
Summary:
Gandhi further asked PM Modi why he had not answered any of the questions Gandhi has been posting on the "report card of Gujarat" every day.
Summary:
Pakistan's Army chief General Qamar Javed Bajwa has criticised madrasas, saying there was a need to revisit the concept of the religious schools.
Summary:
US' Department of Defense (DoD) plans to conduct an agency-wide financial audit for the first time in its history.
Summary:
Iraqi PM Haider al-Abadi on Saturday announced the end of the fight against the Islamic State, adding that country has been "totally liberated" from the terrorist group.
Summary:
Ex-billionaire Vijay Mallya is living on a weekly allowance of â¹4.5 lakh after a UK court's order of freezing his assets.
Summary:
Ex-Infosys CFO V Balakrishnan has said that continuation of certain board members like Ravi Venkatesan and Roopa Kudva looks "untenable".
Summary:
A member of the Norwegian royal family has accused Oscar-winning actor Kevin Spacey of sexually harassing him by groping him in his private parts.
Summary:
Late actor Inder Kumar's wife Pallavi has said that she is filing a petition to clear his name from the rape charges levied against him by a model in 2014.
Summary:
Actor Rajkummar Rao has denied rumours of hiking his fee following the success of his films like 'Newton'.
It's just that I have got a little busy." Rajkummar added, "I want to do good films...
Summary:
Richa and Varun feature together in a romantic track in their recently released film 'Fukrey Returns'.
Summary:
Talking about the issue of reservation for the Patidar community, Prime Minister Narendra Modi on Saturday said the Congress was making false promises like it had to Muslims.
Last month, Patidar leader Hardik Patel had said Congress accepted their quota demand.
Summary:
The Telangana government will distribute Christmas gifts and host dinners worth â¹15 crore to around two lakh Christians from impoverished backgrounds.
Summary:
The BCCI on Saturday shared a video showing former Indian captain MS Dhoni bowling swing to all-rounder Axar Patel in the nets ahead of the first ODI against Sri Lanka in Dharamshala.
#INDvSL," the BCCI captioned the video.
Summary:
Jahan was accompanied by his lawyer and the Supreme Court order which allowed Hadiya to meet whomever she wanted.
Summary:
The technology makes the pillow-like device fall and rise, providing the user with a breathing sensation.
Summary:
The smugglers often use Facebook to reach migrants with false promises of jobs in Europe, IOM spokesperson Leonard Doyle said.
Summary:
Johnson apologised last month after he remarked that Zaghari-Ratcliffe had been training journalists during her visit to Iran.
Summary:
Slager had claimed self-defence, however, a video of the incident showed him fatally shooting the victim as he ran away.
Summary:
Georgia's former President Mikheil Saakashvili was recaptured in Ukraine, days after he was freed by his supporters from police custody.
Summary:
Former US President Barack Obama has urged people to protect democracy and cited the example of Nazi Germany to warn them about the dangers of complacency.
Summary:
Prisons in the US state of Texas have banned 10,000 books, including best sellers like 'Memoirs of a Geisha' and 'The Color Purple'.
Summary:
Other seized fake items include 16,000 Gillette razor blades, Apple chargers, Nike shoes and Superdry hoodies.
Summary:
The bodies of the killed jawans have been airlifted to Raipur.
Summary:
In a statement, a Disney spokesman said the company suspended Heely on Friday, after being informed of the charges.
Summary:
The Election Commission has said that 68% voter turnout was recorded in the first phase of the Gujarat Assembly elections on Saturday.
Summary:
Uber has agreed to settle a lawsuit filed by an Indian woman in the US, accusing top company executives of improperly obtaining her medical records.
Summary:
Making the Facebook's policy on sexual harassment public, Sandberg said the company fires the individuals responsible for harassment after determining that it had occurred.
Summary:
Technology giant Google has ranked 5th on the list of '100 best companies to work for in the US in 2018', marking its 10th consecutive appearance on the annual list, according to Glassdoor.
Summary:
Technology giant Apple is in talks to acquire music recognition app Shazam in a $401-million deal, according to reports.
Summary:
Christie's statement comes after it was revealed that Louvre Abu Dhabi will display the Leonardo da Vinci painting.
Summary:
Bitcoin currently has a market capitalisation of $263 billion and accounts for over 60% of the cryptocurrency market.
Summary:
Gadkari said one firm has said in an affidavit that it will invest â¹6,000 crore and create employment for 40,000 people.
Summary:
He said he would like to see the portal with pop-ups and adequate alerts and warnings for users.
Summary:
Reports had suggested that Akshay quit the film over creative differences with director Subhash Kapoor.
Summary:
He's difficult for people who are not ready to work hard.
He's easy for people who want to excel and push themselves," he added.
Summary:
It's the fourth in the '1920' franchise.
"We are back after a decade," wrote Vikram while sharing the video as he is returning to direct a film in the franchise after the first film '1920'.
Summary:
'The Legend of Zelda: Breath of the Wild' won the 2017 Game Awards Game Of The Year, beating the likes of Super Mario Odyssey, Persona 5 and Horizon Zero Dawn.
Summary:
Ex-Australian leg-spinner Shane Warne has said both Virat Kohli and Steve Smith are the number one Test batsmen for him.
Summary:
Transgender weightlifter Laurel Hubbard won New Zealand its first two medals at the Weightlifting World Championships after securing two silver medals at the championship's 2017 edition in California.
Summary:
After winning the Ballon d'Or for a record-equalling fifth time, Cristiano Ronaldo said that he is the best player in history and that there isn't a player more complete than him.
Summary:
Further, Ali described the comment as "nothing major" and said, "You take it on the chin."
Summary:
The accused were arrested based on an SMS sent to a few politicians, demanding â¹5 crore to bomb the minister, police officials said.
Summary:
The Georgian, who broke his own snatch world record by 3kg after lifting 220kg, finished first in the clean-and-jerk category as well.
Summary:
Further, India bagged three team silver medals in the three air rifle events.
Summary:
Mumbai Congress chief Sanjay Nirupam on Friday filed an FIR against BJP spokesperson GVL Narasimha Rao for calling Congress Vice President Rahul Gandhi a "Babar bhakt" and a "kin of Khilji".
Summary:
Interestingly, the iPhone X has a starting price of around â¹89,000.
Summary:
Apple's Chief Design Officer Jonathan Ive has retaken the management of product design teams after two years, the company confirmed.
are again reporting directly" to Ive, who will remain focused on design, Apple said.
Summary:
The clashes emerged as Palestinians protested against US President Donald Trump's recognition of Jerusalem as Israel's capital.
Summary:
A video shot in Canada's Baffin Island that shows a starving polar bear searching for food and highlights climate change has surfaced online.
Summary:
Richa Chadha has said she'll name and shame sexual offenders in Bollywood if she is assured that her and her family's safety will be taken care of and she will continue to get work.
Summary:
India did not behave itself by invading our airspace with its drone which later crashed near the Sikkim boundary, China's state media said on Saturday.
Summary:
Google Doodle on Saturday celebrated the 104th birth anniversary of India's first woman photojournalist Homai Vyarawalla.
Summary:
Terming the cancellation of the licence over medical negligence "harsh", Max Hospital has said in a statement that it is unfair to hold them guilty.
Summary:
After Electronic Voting Machines (EVMs) malfunctioned at some polling stations in Gujarat's Surat in the first phase of voting for the Assembly elections on Saturday, the Election Commission assured that the faulty EVMs are being replaced immediately.
Summary:
A paratrooper, who was a part of Indian Army's surgical strikes last September, said that the strikes were "just another operation" for the special forces.
Summary:
Traditionally, red balls are used for Test cricket but as they are less reflective, they are tough to see at night.
Summary:
Prime Minister Narendra Modi on Saturday attacked Congress for "choosing youth leader Salman Nizami...to campaign in the Gujarat Assembly Elections 2017 who had called Indian Army rapists".
Summary:
Delhi government will not tolerate criminal negligence by private hospitals and strict action will be taken against any hospital which shows medical laxity, Delhi Health Minister Satyendar Jain said on Friday.
Summary:
Ministry of External Affairs (MEA) has, through the official Twitter handle of India's Public Diplomacy, shared pictures of traditional 'thalis' from all the 29 states of India.
Summary:
The Mumbai Police twitter handle on Thursday tweeted a picture drawing a reference to actor Shah Rukh Khan's movie 'Darr' with a caption that read, "Tu haan karâ¦ya na karâ¦itâÂÂs your prerogative K K K K âÂÂKiranâ #IfVillainsWereInMumbaiâÂÂ.
Summary:
Marine scientists examined the rate at which bags were broken down by the amphipod Orchestia gammarellus, found in European coastal areas.
Summary:
IIT-Bombay professor Rohit Srivastava is working on a cancer treatment based on gold nanostructures that would cost just â¹10,000.
Summary:
Europe-based researchers have successfully quantified Earth's vibrational "hum", observable in the absence of earthquakes, using seismometers on the ocean floor for the first time.
Summary:
Hundreds of Muslims prayed outside the White House on Friday to protest US President Donald Trump's decision to recognise Jerusalem as Israel's capital.
"Trump doesn't own a piece of soil of Jerusalem and Palestine.
Summary:
The status of Jerusalem, which is claimed as the capital by both Israel and Palestine, is considered one of the biggest obstacles in achieving the peace agreement between the two parties.
Summary:
The US' decision to recognise Jerusalem as Israel's capital was condemned by United Nations' member states during an emergency meeting of the global body on Friday over the issue.
Summary:
Producer Ekta Kapoor has said she has never shown a wife touching her husband's feet or calling him 'pati parmeshwar' in her serials.
Summary:
A woman named Kathryn Rossetter has accused American actor Dustin Hoffman of sexual harassment, becoming the third woman to do so.
Summary:
Actor Salman Khan's rumoured girlfriend Iulia Vantur took to Instagram to share pictures from his mother Salma Khan's birthday celebration.
Summary:
According to reports, actress Alia Bhatt has been approached to play Sridevi's role in the remake of the 1989 film 'Chaalbaaz'.
Summary:
A couple from Gujarat's Bharuch cast their vote for the Assembly elections in the state, before their wedding ceremony on Saturday.
Summary:
The National Green Tribunal (NGT) on Friday slammed the Punjab government for not providing financial assistance and infrastructure facilities to the farmers to discourage them from burning crop residue in their fields.
Summary:
Switzerland-based startup KannaSwiss produces marijuana that meets the country's legal standards and makes products that contain cannabidiol (CBD).
Summary:
Swiss researchers have demonstrated an imaging technique called scanning electrochemical microscopy which uses electrochemical probes rather than dyes or fluorescent markers to detect biomolecules around the tissue.
Summary:
Rockets contribute to space debris as they are discarded in space after launching satellites into orbit.
Summary:
Fashion designer Manish Arora has unveiled his art installation titled 'All we need is love', which covers a part of the Jindal Mansion in Mumbai.
Summary:
The inquiry also found the hospital guilty of negligence in the case.
Summary:
Jerusalem, central to the Israel-Palestine conflict, is considered a holy site by Jews, Muslims and Christians.
Summary:
This came after the hospital wrongly declared a newborn baby dead.
Summary:
Prime Minister Narendra Modi appealed to the people of Gujarat to vote in large numbers in the first phase of Gujarat elections on Saturday.
Summary:
Responding to a PIL asking why law holds only men responsible for adultery, Supreme Court on Friday said the provision is based on societal presumption.
Summary:
The Election Commission on Friday said it has put in place "an elaborate framework of system, security protocols and procedural checks" to prevent any "possible misuse" of the EVMs and VVPATs in Gujarat elections.
Summary:
According to the declaration, his net worth as of March 2017 was â¹2.53 crore, which is 3.77 times his net worth on March 31, 2016 (â¹67.04 lakh).
Summary:
In a first, US-based researchers have 3D-printed plastic objects and sensors that can communicate with WiFi-connected devices on their own.
Summary:
Notably, there are more than 600 Starbucks outlets in Shanghai, the most in any city in the world.
Summary:
Diamond and graphite are different forms of carbon differing in their crystal structure.
Summary:
Lawrence was part of a classified military space program in the 1960s meant to spy on the Soviet Union.
Summary:
The US has the courage and the sound moral judgment to right historic wrongs, Israeli Ambassador Danny Danon said during an emergency meeting of the United Nations on Friday over US' recognition of Jerusalem as Israel's capital.
Summary:
North Korea has agreed to communicate regularly with the United Nations, saying that the recent visit of UN envoy Jeffrey Feltman has helped deepen understanding.
Summary:
Adding that the restrictions aren't intended to be permanent, the government said the ban could be lifted if countries ensure Americans' safety.
Summary:
The US government on Friday advised its citizens to defer all non-essential travel to Pakistan, saying that foreign and indigenous terrorist groups continue to pose a threat to them throughout the South Asian country.
Summary:
Speaking about the video which shows a man being murdered over 'love jihad' in Rajasthan, actor Farhan Akhtar said, "How can we move on with our lives after seeing something like this?" "Each time an incident like this happens a part of us is dying with the victim.
Summary:
Comedian Kapil Sharma, while speaking about the negative reviews for his film 'Firangi', said everyone is a film critic these days.
Summary:
He said this while denying rumours that he will be playing Salman Khan's father in the upcoming film 'Race 3'.
Summary:
Former Australian pacer Glenn McGrath registered golden ducks after getting dismissed for zero on the very first deliveries in both his Test and ODI debuts, the latter of which happened on December 9, 1993.
Summary:
West Bengal Chief Minister Mamata Banerjee has announced a compensation of â¹3 lakh and a government job to the family of Mohammed Afrazul, a migrant labourer from the state who was killed in Rajasthan.
Summary:
The Indian men's hockey team failed to reach the final of the Hockey World League Final 2017 after losing 0-1 to Argentina in the semi-final at the Kalinga Stadium in Bhubaneswar on Friday.
Summary:
Pakistan's gesture of allowing Kulbhushan Jadhav's mother and wife to meet him in jail is a "positive development" but cannot be called consular access as of now, the Ministry of External Affairs (MEA) said on Friday.
Summary:
Afghanistan's second Vice President Mohammad Sarwar Danish is in India on a five-day visit starting Saturday.
Summary:
Filipino boxer and politician Manny Pacquiao said on Friday that he has opened talks to fight MMA star Conor McGregor in April when he takes a break from his legislative duties as a senator.
Summary:
India will overtake South Africa to become the top-ranked ODI team if they defeat Sri Lanka 3-0 in the three-match ODI series, which begins from Sunday.
Summary:
This comes amid increasing arrivals of North Korean fishing boats off Japan.
Summary:
The pledge aims at preserving Palau's environment for future generations, the government said.
Summary:
According to the information, the expenditure on electronic media advertisements is over â¹1,656 crore.
Summary:
Excitonium is a condensate made of excitons, particles formed in a quantum mechanical pairing of an escaped electron and the hole it left behind.
Summary:
Middleton makes money from advertising on the videos and is classed as a professional YouTuber.
Summary:
Addressing a rally in Gujarat's Nikol, Prime Minister Narendra Modi on Friday listed Congress leaders who had insulted him in the past.
Summary:
India was admitted to the group on Thursday and will become its 42nd member on completion of procedural arrangements.
Summary:
Rebel JD(U) leader Sharad Yadav on Thursday said he will challenge his disqualification from the Rajya Sabha in court.
Summary:
This comes after suspended Congress leader Mani Shankar Aiyar had triggered outrage over his reference to PM Modi as "neech".
Summary:
Maharashtra BJP MP Nanabhau Patole on Friday resigned from the Lok Sabha and the party after expressing displeasure over the party's stand on the state's agrarian crisis.
Summary:
However, 71-year-old Trump will undergo medical tests, that most US presidents go through, next year, the White House added.
Summary:
Israeli Army shot dead two Palestinians on Friday near the Gaza border during clashes which erupted after US President Donald Trump recognised Jerusalem as Israel's capital.
Summary:
In case of Bitcoin's rival and world's second largest cryptocurrency, Ethereum, the top 100 addresses control about 40% of the Ethereum supply.
Summary:
Unitech told the tribunal that an order by the SC restrained other forums from taking coercive action against it.
Summary:
Singer Ed Sheeran has been honoured the MBE (Member of the Most Excellent Order of the British Empire) by Prince Charles for his service to music and charity.
Summary:
Talking about nepotism, actress Saiyami Kher said, "No doubt it helps being Anil Kapoor's son (Harshvardhan) but it has been proved time and again that whoever's son or daughter you are, the audience decides your fate." Saiyami added that she thinks the nepotism debate has been taken too far.
Summary:
The first look of actresses Sophie Turner and Jennifer Lawrence from the film 'X-Men: Dark Phoenix' has been revealed.
Summary:
A 25-year-old Kashmiri snowshoe racer, who was arrested in New York on charges of sexually abusing a minor girl, has avoided trial by pleading guilty and is awaiting deportation, authorities said.
Summary:
At least 24 students of a government school on Thursday fell sick allegedly after consuming food under the mid-day meal programme in Chhattisgarh's Gariaband district.
Summary:
The death toll due to Cyclone Ockhi has risen to 36 after three more bodies were recovered on Thursday off the Kerala coast.
Summary:
Indian batsman Cheteshwar Pujara has praised captain Virat Kohli's work ethic and called it the best in the Indian team and possibly in the world.
Summary:
Indian government will take all possible steps to ensure that we do not lag behind in our efforts towards extradition of Vijay Mallya to India, Ministry of External Affairs spokesperson Raveesh Kumar said.
Summary:
A 65-year-old Bengaluru woman, who lost her hands and vision due to leprosy, has been enrolled for an Aadhaar card without mandatory biometrics of her iris and fingerprints to restore her monthly welfare pension.
Summary:
Bugatti said that it will replace the entire seating assembly if an improper weld is found.
Summary:
US-based researchers have developed an entirely textile-based, bacteria-powered battery that they hope to integrate into wearable electronics.
Summary:
Several areas in Malawi remained without electricity on Thursday after water levels at two main dams fell to critical levels due to severe drought, affecting hydropower capacity.
Summary:
Japan is planning to acquire long-range missiles to counter the country's "increasingly severe" national security situation, Defence Minister Itsunori Onodera said.
Summary:
Several locals in Algeria surrounded French President Emmanuel Macron while he was walking near a university and pleaded him to give them visas to France.
Summary:
At least 15 United Nations peacekeepers and five Congolese soldiers were killed after a local Islamist extremist group attacked a UN base in the Democratic Republic of the Congo, the UN mission said on Friday.
Summary:
The song 'Badri Ki Dulhania' from Varun Dhawan and Alia Bhatt's 'Badrinath Ki Dulhania' has been named the Top Trending Music Video of 2017 in India, with over 320 million views, as per a playlist released by YouTube.
Summary:
Reacting to the threats for banning the film 'Padmavati', the Bombay High Court stated that this was "a censorship of a different kind".
Summary:
Following repeated concerns voiced by the Sri Lankan team members during the recently-concluded Delhi Test, the ICC is considering to include air pollution in its 'Playing Conditions' clause.
Summary:
A 15-year-old girl on Thursday was gangraped and set on fire by two men inside her house in Madhya Pradesh's Sagar district.
Summary:
Gayle is the only player to hit 10-plus sixes in a T20 innings 14 times.
Summary:
Addressing a rally in Gujarat's Banaskantha, Prime Minister Narendra Modi suggested that suspended Congress leader Mani Shankar Aiyar had ordered a 'supari' on his head during his trip to Pakistan in 2015.
Summary:
The International Solar Alliance (ISA) has become the first treaty-based international government organisation to be based in India.
Summary:
A day before the first phase of the Gujarat Assembly elections, the BJP on Friday released its election manifesto named 'Sankalp Patra'.
Summary:
American software maker Adobe announced that it has achieved equal pay for male and female employees in the United States.
Summary:
Earlier this week, Pakistan Foreign Minister Khawaja Asif wrote to his Indian counterpart Sushma Swaraj urging her to reduce the number of ceasefire violations.
Summary:
Saeed said the Defence Council Pakistan (DCP) will send its delegations to Muslim countries and convince them not to open their embassies in Jerusalem.
Summary:
The programme is designed to train four Emirati astronauts for various space missions, eventually sending them to the International Space Station (ISS) within five years.
Summary:
US State Secretary Rex Tillerson has said that President Donald Trump's decision recognising Jerusalem as Israel's capital does not "indicate any final status for Jerusalem." Any final decision on the status of Jerusalem will depend on negotiations between Israelis and Palestinians, he added.
Summary:
Everyone born in Northern Ireland will retain their citizenship of the European Union (EU), according to the Brexit divorce deal which guarantees no hard border between Ireland and the UK.
Summary:
Summary:
Summary:
Tiger Zinda Hai's director Ali Abbas Zafar has said that the film would probably not have been made if Katrina Kaif had not agreed to star in it.
Summary:
As per reports, actress Anushka Sharma's family priest Maharaj Anant Baba was spotted leaving from Mumbai airport for Italy with her parents, further fuelling speculations of her marriage with cricketer Virat Kohli.
Summary:
A day before the first phase of the Gujarat Assembly elections, Dinesh Bambhaniya, one of Patidar Anamat Andolan Samiti (PAAS) leader Hardik Patel's key aides, resigned from PAAS on Friday.
Summary:
The Enforcement Directorate (ED) on Friday attached three acres of land worth â¹45 crore in Patna, in connection with its money laundering probe in the IRCTC hotel allotment scam case involving RJD chief Lalu Prasad Yadav.
Summary:
Khan's parents had moved to the UK from Pakistan in the 1960s.
Summary:
A poster praising Congress Vice President Rahul Gandhi for suspending Mani Shankar Aiyar for referring to Prime Minister Narendra Modi as "neech", has surfaced online.
Summary:
India Under-19 cricket team's coach Rahul Dravid has said that he has told the Under-19 players that they should aspire to match the level of India's senior team captain Virat Kohli's consistency.
He is brilliant in all forms," Dravid added.
Summary:
The Instagram account of a cat named 'Lil Bub', who has 1.7 million followers, has been hacked.
Summary:
The city's local council said that the license was suspended following Uber's failure to respond to the requests about its management.
Summary:
The car bomb that killed Maltese journalist Caruana Galizia in October this year was detonated by a text message sent to a SIM card attached to the bomb, according to prosecutors.
Summary:
Lebanese laws ban dealing with or recognising Israel, including showing it on maps.
Summary:
A video titled 'BB Ki Vines- Group Study' by Bhuvan Bam ranked first on YouTube's playlist of the Top Trending Videos of 2017 in India.
Summary:
India will become the body's 42nd member on completion of procedural arrangements.
Summary:
Taylor Swift, who was named the World's Highest-Paid Musician of 2016, ranked 17th on the list this year with earnings of $44 million.
Summary:
Technology giant Google has added a feature to mobile Search in the United States that will show celebrities answering users' questions in the form of selfie-style videos.
Summary:
A woman who helped the Delhi Commission for Women bust an illegal liquor racket in Delhi's Narela was allegedly beaten up by a mob on Thursday.
Summary:
Congress Vice President Rahul Gandhi on Friday asked PM Narendra Modi where the â¹55,000 crore meant for the Vanbandhu scheme for tribal population went.
Summary:
A Japanese firm has co-developed 'T-Frend' drones that would track overworking employees in order to combat the overwork culture in the country.
Summary:
Facebook Co-founder Eduardo Saverin has become Singapore's richest person with a net worth of $10.4 billion.
Summary:
Netherlands-based startup Mr. Friendly has developed a urinal that displays advertisements while a user is urinating.
Summary:
SpaceX Founder Elon Musk has responded to Boeing CEO Dennis Muilenburg, saying "Do it" after he commented that the aerospace company will beat Musk to reach Mars.
Summary:
The leader of Germany's Social Democratic Party, Martin Schulz, has said he wants to establish a 'United States of Europe' by 2025.
Summary:
China on Friday warned Chinese organisations and citizens in Pakistan against potential terror attacks.
Summary:
He further said that Infosys now has the right strategy as there's a new CEO and "focus is back on business".
Summary:
Infosys' ex-CFO Mohandas Pai said Infosys must apologise to Co-founder Narayana Murthy for abusing him and damaging his reputation.
Summary:
The logo of Anil Kapoor and Aishwarya Rai Bachchan starrer 'Fanne Khan' has been unveiled.
The show begins soon!!" tweeted Anil while sharing the logo.
Summary:
The victim, named Cesar Sanchez-Guzman, alleged that Singer had forced him into sexual acts during a yacht party.
Summary:
Pro-Kannada group Karnataka Rakshana Vedike staged a protest against Sunny Leone's performance at a five-star hotel in Bengaluru on New Year's eve.
Summary:
Actor Salman Khan took to Twitter to confirm that Anil Kapoor will star in the upcoming film 'Race 3'.
Summary:
A video has surfaced online wherein suspended Congress leader Mani Shankar Aiyar is seen snatching the mike of news channel Republic TV's reporter.
Summary:
Indian all-rounder Ravindra Jadeja took to Twitter to slam a fan, who mistakenly referred to him as former Indian cricketer Ajay Jadeja while congratulating him.
Summary:
The Supreme Court on Friday decided to examine Section 497 of the Indian Penal Code (IPC), which holds only men responsible for adultery, while women are not punishable under the law.
Summary:
England's Ben Stokes and Alex Hales have been named in England's squad for the upcoming ODI series against Australia, months after being suspended for his involvement in a brawl outside a pub in Bristol.
Summary:
FMCG company Emami has agreed to buy a 30% stake in Gurugram-based men's grooming startup The Man Company, according to filings.
Summary:
The deal will also allow ComfortDelGro's taxi drivers to receive ride requests on Uber's app.
Summary:
The new technique boosts activity of another gene rather than cutting parts of DNA "which opens the door to new mutations".
Summary:
The US also warned its citizens to be alert to the possibility of political unrest, violence, and demonstrations.
Summary:
Summary:
This comes after Delhi government's probe panel found the hospital guilty of not following the prescribed medical norms in its preliminary report.
Summary:
The first sign of the UK and the European Union reaching a Brexit deal came on Friday when an aide of EU President Jean-Claude Juncker tweeted a picture of white smoke emerging from the Vatican's Sistine Chapel.
Summary:
Actor Shah Rukh Khan has been named the top Indian actor of 2017 by Internet Movie Data Base (IMDb).
Summary:
The trailer of 'Jurassic World: Fallen Kingdom', the sequel to the 2015 film 'Jurassic World', has been released.
Summary:
A humanoid robot which can walk will be used as a torchbearer.
Summary:
If more funds are required for the construction, they will be recovered from AoL, it added.
Summary:
Earlier in July, both were given a death sentence in Pinki Sarkar rape and murder case.
Summary:
Virender Sehwag was captaining India when he hit 219 runs against Windies on December 8, 2011, becoming the second cricketer after Sachin Tendulkar to score a double hundred in ODIs. Sehwag's 219(149) is the highest individual score by a captain in ODI cricket history.
Summary:
The founders of Slovenia-based exchange NiceHash have apologised after about $64 million worth of Bitcoins were stolen from its wallet.
Summary:
In a first, Australia-based doctors have reported a case where a seven-year-old boy has retained his vision despite losing the visual processing centre of his brain when aged just two weeks.
Summary:
This comes after the Australian Parliament voted in favour of legalising same-sex marriages, and Turnbull said, "We've voted today for equality, for love, it's time for more...
Summary:
A rejection letter by Australian publisher Angus and Robertson to poet Frederick Charles Meyer in 1928 has gone viral.
Summary:
A man lost his wallet while working on a building in Switzerland in 2007, and has found it ten years later.
Summary:
The layoffs are part of GE's larger effort to cut $3.5 billion in costs in 2017 and 2018.
Summary:
Expenses for aircraft fuel increased 17% to â¹1,526 crore for the quarter, the company said.
Summary:
Bitcoin's price surged past the $17,000 mark for the first time ever on Friday, to hit a total market capitalisation of over $280 billion.
Summary:
Actor Bobby Deol took to Instagram to share an old picture with his father Dharmendra on the occasion of his 82nd birthday today.
Summary:
'Harry Potter' author JK Rowling has been slammed for publicly supporting the decision to keep Johnny Depp in the 'Fantastic Beasts' franchise, despite domestic abuse allegations against him by his ex-wife Amber Heard.
"Glad I never liked Harry Potter or JK Rowling," a user tweeted.
Summary:
Video footage has captured the moment a man jumped out of his car to save a wild rabbit from a wildfire in California, United States.
Summary:
The court was hearing her plea seeking a six-month parole.
Summary:
Haryana Health Minister Anil Vij on Thursday ordered to remove Gurugram's Fortis Hospital from the state government panel.
Summary:
Laxman responded to Arnold's tweet with, "Sure Russel, it won't in a 3 match series.
Summary:
Delhi-based vehicle management startup LocoNav has raised $3.42 million in Series A funding round from Sequoia Capital India and angel investor Prateek Sharma, according to filings.
Summary:
Ocean-produced methane represents around 4% of the total that is discharged into the atmosphere.
Summary:
The effect of these genes may be amplified by four times, when compared with populations at the lower 10% of BMI to 10% at the higher end.
Summary:
An 11-year study on 18 lakh Danish women has found that all forms of hormonal contraception carry a 20% added risk of breast cancer, which lasts for about five years after women stop taking it.
Summary:
Researcher Chris Kouvaris said if dark matter is light, it could interact strongly with ordinary matter and lose energy which could make current detectors deep underground unable to catch it.
Summary:
The government on Friday extended the deadline for linking Aadhaar with PAN to March 31, 2018.
Summary:
The UK on Friday reached a deal with the European Union on its exit terms from the bloc, opening the way for the second phase of talks on post-Brexit relations next year.
Summary:
Pakistan had arrested Jadhav in March 2016 for alleged espionage and sentenced him to death this year in March.
Summary:
The Punjab and Haryana High Court has banned the bursting of firecrackers on New Year's Eve and January 1 in Punjab, Haryana, and Chandigarh.
Summary:
Nagpur's Kanchanmala Pande on Thursday became the first Indian to win a gold medal at the World Para Swimming Championship, taking place in Mexico.
Summary:
The head priest of the Swaminarayan sect, Swami Bhaktiprasad was attacked by two unidentified persons while he was campaigning for the BJP in Gujarat's Junagadh on Thursday.
Summary:
Some of the incentives include offering a discount and free passenger insurance for cashless ticket purchases.
Summary:
The Special Investigation Team (SIT) probing gang-rapes reported during the Jat violence 2016, told the Punjab and Haryana High Court on Thursday that it couldn't find any victim or accused in the case.
Summary:
However, the eye did not have a lens, likely because the trilobite species lacked features for its formation.
Summary:
US President Donald Trump's decision to recognise Jerusalem as Israel's capital is a "clear challenge to the Muslim world that sees the centrality of the Palestinian cause", al-Qaeda has said.
Summary:
US-based Cannabis company Henry's Originals has unveiled a limited-edition holiday wreath featuring an ounce of marijuana.
Summary:
A newspaper in Cambridge mistakenly published a dummy headline instead of the intended "ã2m for 'sex lair' school" headline on its front page.
Summary:
A 70-year-old woman in New York City has filed a lawsuit against a doctor and his employer, alleging that the former used his cell phone to take a Spanish language test while operating on her.
Summary:
Officials said the truck driver sustained minor injuries.
Summary:
Bryan Singer, who directed the 'X-Men' films, has been accused of raping a 17-year-old boy on a yacht in 2003.
Summary:
While speaking on the occasion of her 73rd birthday on Friday, actress Sharmila Tagore said, "Cakes and parties are for [my grandchildren] Taimur and Inaaya.
Fortunately, there's plenty to be done.
Summary:
A Swedish farmer has been awarded 397,845 kroner (around â¹30 lakh) after roadworks on his land led to the discovery of Viking silver coins and other artefacts.
Summary:
The Uttar Pradesh government will submit a protection and preservation plan for the Taj Mahal in the Supreme Court on Friday after the apex court sought a report on the same.
Summary:
Larry Nassar, a former USA Gymnastics team doctor, accused of sexually assaulting gymnasts, has been handed a 60-year prison sentence on federal child pornography charges.
Summary:
Union Home Minister Rajnath Singh has appealed to the states sharing border with Bangladesh to be vigilant against the influx of Rohingyas through the India-Bangladesh border.
Summary:
Ahead of the first phase of voting for the Gujarat Assembly elections, Patidar leader Hardik Patel said that the BJP was so busy "making" sex CDs that it forgot to formulate and release its manifesto.
Summary:
The Ministry of Home Affairs has said that only the Central Industrial Security Force (CISF) and the National Security Guard (NSG) will provide security for VVIPs including MPs, ministers and other senior dignitaries.
Summary:
A video has emerged online wherein a woman staffer is assaulted by a motorist after she refused to give him a free passage at Gurugram's Kherki Daula toll plaza on Thursday.
Summary:
The SHDF provides scholarships to bright but poor students in Punjab and surrounding areas, the Chairman of the Foundation said.
Summary:
Summary:
Comprising of 12 buildings, sheds and garages, the village of Alwine is home to 20 residents, most of whom are retired.
Summary:
Pakistan Air Force chief Sohail Aman on Thursday said that he has ordered his force to shoot down all foreign drones, including those of the US, which enter the country's airspace, violating its sovereignty and territorial integrity.
Summary:
On Vodafone RED Postpaid plans, you can enjoy free national roaming, no data wastage with Data Roll Over, unmatched entertainment with Netflix, Vodafone Play, Magzter.
Summary:
The miners then receive bitcoin for their services and the cycle continues to generate more of the cryptocurrency.
Summary:
The management of Australia's Adelaide Oval cricket ground has offered to host Indian cricket team captain Virat Kohli and Bollywood actress Anushka Sharma's wedding.
Summary:
Pulkit Samrat starrer 'Fukrey Returns', which released on Friday, "is a much weaker film in comparison to its prequel," wrote Times Now.
Summary:
Delhi Chief Minister Arvind Kejriwal on Thursday tweeted, "I agree that ride sharing is a good idea.
Summary:
Both Israel and Palestine claim Jerusalem as their capital.
Summary:
The Taj Mahal has come second in a TripAdvisor survey listing the UNESCO Cultural and Natural heritage sites rated best by travellers around the globe.
Summary:
Summary:
North Korea wants to talk to the US about guarantees for its security, Russia's Foreign Minister Sergey Lavrov has claimed.
Summary:
At least two rockets were fired from the Gaza Strip on Thursday towards the Israeli territory but failed to reach its targets, the Israeli Army has said.
Summary:
It added that the settlement deal with SEBI was confidential.
Summary:
Filmmaker Anurag Kashyap has said that India has more sports films than medals.
Anurag further said his upcoming film 'Mukkabaaz' comes out of that "sad situation".
Summary:
Australia-based activist Philip Nitschke has announced plans to launch a 3D-printed euthanasia device which is dubbed by many as a "suicide machine".
Summary:
Shahzad underwent a test in Dubai in January and his sample was found to contain clenbuterol, classified under the World Anti-Doping Agency's (WADA) Prohibited List.
Summary:
After Meerut's mayor ruled that singing the National Song 'Vande Mataram' in local body meetings is not necessary, Vice President Venkaiah Naidu on Thursday asked if they should salute Afzal Guru instead of the motherland.
Summary:
Chhattisgarh Police will hire transgender constables as part of state's recruitment policy after they pass a mandatory written exam and a physical test, according to police.
Summary:
Chief Justice of India (CJI) Dipak Misra on Thursday said the conduct of some senior lawyers during the Babri Masjid dispute case hearing in the Supreme Court was "shameful".
Summary:
Brussels has lost the right to stage matches at Euro 2020 following delays in the development of a new stadium, UEFA said on Thursday.
Summary:
The statement comes after London mayor on Wednesday said it's time for the British Government to apologise for the tragedy.
Summary:
Supreme Court on Thursday asked a Parsi body to consider the plea of a Parsi woman, who married outside the religion, seeking to attend the funeral of her father when he passes away.
Summary:
The Maharashtra government has signed 34 agreements with various organisations like Tata Trusts and Aditya Birla Foundation to improve healthcare and education facilities in villages.
Summary:
Ferrari's 2017 championship runner-up Sebastian Vettel, also a four-time champion, was third and Red Bull's Daniel Ricciardo fourth.
Summary:
After the fake restaurant received top ratings, Butler held an "opening party" in his shed and served microwave meals from a budget supermarket.
Summary:
In an attempt to give slums in Mumbai a colourful makeover, a few youngsters have collaborated with corporate houses and started a movement called 'Chal Rang De'.
Summary:
Singapore Airlines this week revealed it changed the path of its daily flights between Los Angeles and South Korean capital Seoul after North Korea conducted a missile test in July.
Summary:
Chinese e-commerce giant Alibaba is set to invest $300 million (over â¹1,900 crore) for a one-third stake in online grocer BigBasket, according to reports.
Summary:
Real Madrid forward Cristiano Ronaldo on Thursday won this year's Ballon d'Or in a ceremony at the Eiffel Tower, equalling Barcelona forward Lionel Messi's record of five Ballon d'Or titles.
Summary:
Kumar became the sixth bowler to take a hat-trick in a Ranji knockout game.
Summary:
The UIDAI on Thursday said the deadlines for verifying bank accounts, PAN and SIM cards with Aadhaar stand "valid and lawful", and there is no change in them.
Summary:
The cropped elbow on the cover of TIME magazine's annual 'Person of the Year' issue is of a sexual harassment victim who feared that disclosing her identity would affect her livelihood, Editor-in-Chief Edward Felsenthal revealed.
Summary:
The Supreme Court collegium has approved the names of 19 candidates for elevation as judges to various High Courts and recommended names of 23 additional High Court judges for being made permanent.
Summary:
The Brihanmumbai Municipal Corporation has estimated that Cyclone Ockhi has dumped over 80,000 kg of trash from the ocean on Mumbai's coastline between Tuesday night and Wednesday morning.
Summary:
The Maharashtra government said it has waived loans of 41 lakh farmers in the state so far and has disbursed nearly â¹20,000 crore over the last few days.
Summary:
The IMA added that it was "greatly troubled" over the India-Sri Lanka Test that was played in Delhi despite high pollution levels.
Summary:
Indian Defence Ministry said India had alerted China about the drone.
Summary:
Singh had alleged the hospital administration offered him â¹25 lakh to stop him from taking any legal action.
Summary:
India's Kumbh Mela was also added to the UNESCO 'intangible heritage' list.
Summary:
Actor Ranveer Singh has said that he has some kind of personality disorder and an identity crisis to a mild degree.
"I'm different things on different days which is amazing as...actor, but hazardous personality," he added.
Summary:
Shashi's family members including Aadar Jain, Karisma Kapoor, Neetu Kapoor and Randhir Kapoor were also spotted at the prayer meet.
Summary:
The Uttar Pradesh government has directed all government and private schools in the state to hold singing competitions based on the Bhagavad Gita.
Summary:
Notably, a court has to allow abortion after 20 weeks of pregnancy in India.
Summary:
An FIR has been registered against Union minister Anant Hegde for allegedly insulting Karnataka CM Siddaramaiah by calling him a "bootlicker".
Summary:
A Delhi court on Thursday framed graft and criminal conspiracy charges against 11 former MPs in the 2005 cash-for-query scam.
Summary:
The couple's divorce plea was refused by the Punjab and Haryana High Court, which had directed them to sort out their differences.
Summary:
Referring to Muslims, Shailesh Sotta, BJP candidate for Dabhoi seat in Gujarat elections, reportedly said that population of "topi and dadhiwalas (cap and beard)" needs to be reduced.
Summary:
The Brihanmumbai Municipal Corporation (BMC) on Wednesday launched a web portal called 'One MCGM', which will enable people to check the progress of road work, plot reservations, and details of property tax among others.
Summary:
The protesters demanded that warships and helicopters be deployed to rescue missing fishermen and sought immediate compensation for the loss of lives and boats.
Summary:
The Art of Living has said it will move the Supreme Court against the National Green Tribunal's verdict holding it responsible for destruction of Yamuna floodplains during its festival last year.
Summary:
The Mumbai Police has found a woman's body stuffed in a bag that washed up on Juhu beach on Wednesday morning.
Summary:
Due to non-availability of a psychologist, Gurugram's Juvenile Justice Board (JJB) has directed the deputy commissioner to arrange a counsellor for assessing the 16-year-old boy accused in the Ryan school murder case.
Summary:
In the first ever conviction under Maharashtra's Anti-Superstition and Black Magic Act, 2013, a Nashik court on Tuesday awarded life imprisonment to 11 people.
Summary:
Mumbai-based e-commerce lifestyle brand The Label Life has raised â¹20 crore from Kalpavriksh, the private equity arm of financial services group Centrum.
Summary:
Paytm has acquired majority stake in the merged entity of deal discovery startups Nearbuy and Little Internet, the company announced on Wednesday.
Summary:
Condemning Aiyar's remark, Congress Vice President Rahul Gandhi said he and the party expected him to apologise to PM Modi.
Summary:
The wife of a Muslim labourer who was burnt alive in Rajasthan over alleged love jihad has demanded the accused be publicly hanged.
Summary:
Responding to advocate and Congress MP Kapil Sibal's plea seeking deferral of Babri Masjid case to 2019, Uttar Pradesh Chief Minister Yogi Adityanath on Wednesday said the Congress was playing with the Hindu belief.
Summary:
A US court has dismissed a class action lawsuit which accused Google of paying female employees less than male counterparts.
Summary:
Yemen's Houthi rebels who seized full control of the country's capital Sanaa over the past week have detained more than 40 media staff, press watchdogs said on Wednesday.
Summary:
She will be seen playing the role of a mother.
Summary:
'Quantico' actor Alan Powell shared a picture of his co-star Priyanka Chopra with her phone, in which it can be seen that she has over 2 lakh unread emails.
Powell captioned the picture, "Guys...guys...don't ever email @priyankachopra...she apparently NEVER reads it!
Summary:
The Tamil Nadu State Council of Educational and Research Training (TNSCERT) has a YouTube channel with videos on several school subjects such as mathematics, English, and science.
Summary:
Earlier, the police used to call the complainants to police stations to provide the status of their cases.
Summary:
Fielding coach Jonty Rhodes has parted ways with three-time Indian Premier League champions Mumbai Indians after nine seasons together.
Summary:
The Supreme Court on Thursday said the law doesn't provide for a woman's religion to merge with her husband's after an inter-religious marriage.
Summary:
Ahead of the Gujarat Assembly elections, RJD President Lalu Prasad Yadav on Wednesday tweeted, "Where is vikaswa?
Summary:
A five-judge SC bench headed by Misra described what happened during the hearings of Ayodhya case and the dispute between the Centre and Delhi government over administrative powers as "atrocious".
Summary:
In one of the tweets, Morgan had claimed that Smith had "blown" the match by not enforcing follow-on.
Summary:
This comes after Yuvraj passed the mandatory Yo-Yo test.
We will definitely see him in the times to come," Prasad added.
Summary:
Indian-origin WWE wrestler Jinder Mahal on Thursday trained with boxer Vijender Singh in Delhi ahead of his clash with Triple H in the WWE Live event on December 9.
Summary:
While hearing a PIL filed by activist Anna Hazare, the Bombay HC has sought a response from the Maharashtra government over the progress made in an investigation into the â¹25,000-crore co-operative sugar factories scam.
Summary:
The CBI has registered a case in connection with the illegal transfer of â¹100 crore from a Jharkhand government account in State Bank of India to a private builder.
Summary:
The Election Commission on Thursday allotted sidelined AIADMK leader TTV Dhinakaran a 'pressure cooker' symbol to contest the RK Nagar bypoll on December 21.
Summary:
Karnataka-based expense management startup Happay has raised $10 million in a Series B funding round led by Sequoia Capital.
Summary:
Sarahah's Founder ZainAlabdin Tawfiq has said that the anonymous feedback platform will be introduced in many languages, including those used in India.
Summary:
A signed letter written by Albert Einstein to his friend Michele Besso, expressing joy at the success of his theory of relativity, has fetched nearly â¹70 lakh at an auction.
Summary:
The US has cited the 2001 Authorisation for Use of Military Force against terrorists as legal justification for its presence in Syria.
Summary:
Accusing Saudi Arabia and the Saudi-led coalition of "destroying" Yemen, Iran Foreign Minister Mohammad Javad Zarif said it is time for Saudi Arabia to start producing "prosperity" rather than "terrorist organisations and dictators".
Summary:
US Democratic Senator Al Franken announced his resignation on Thursday amid a string of sexual misconduct allegations.
Summary:
The European Commission (EC) while presenting ideas aimed at making the Eurozone more democratic and resilient to economic shocks said that Europe should have its own economy and finance minister.
Summary:
The US health regulator has said Lupin and Cadila Healthcare are recalling 1.11 lakh units of Duloxetine delayed-release capsules and 19,812 bottles of Paroxetine tablets from US market.
Summary:
Technology giant Apple has revealed the list of most popular apps of 2017 for iOS, which includes 'Bitmoji' app that lets users create their personal emoji avatars.
Summary:
She further said, "We all knew he was a dog...(but) didn't know that he was a rapist."
Summary:
Congress Vice President Rahul Gandhi on Thursday said he did not appreciate the tone and language in which party leader Mani Shankar Aiyar called PM Narendra Modi 'neech', adding that he expected the former cabinet minister to apologise.
Summary:
Summary:
Facing backlash for calling PM Narendra Modi "neech", Congress leader Mani Shankar Aiyar claimed he used the word to mean 'low level'.
PM Modi said the comment was "unacceptable in a democracy".
Summary:
Summary:
The humanoid robot Sophia who became the world's first robot citizen in October this year after receiving Saudi Arabia's citizenship has called for women's rights in the kingdom.
Summary:
Ride-hailing startup Lyft has launched its self-driving cars with the technology startup 'NuTonomy' in Boston, United States.
Summary:
Technology giant Apple has named the meditation app 'Calm' as 2017's iPhone app of the year.
Summary:
The 20-year-old man was reportedly also paid by Uber to destroy the data through a bug bounty program.
Summary:
The US House of Representatives on Wednesday voted 231-198 in favour of a bill easing gun regulations and allowing anyone with a permit to legally carry hidden weapons to other states which allow concealed weapons.
Summary:
Bitcoin now accounts for over 63% of the cryptocurrency market and has a market value of over $250 billion.
Summary:
A complainant will have to mention product price and the applicable rates both in the pre and post-GST.
Summary:
Hollywood actor Ryan Reynolds will voice the character of Pikachu in the live-action Pokemon film titled 'Detective Pikachu', as per reports.
Summary:
The External Affairs Ministry on Thursday said that India's position on Palestine would remain consistent, independent and not determined by a third country.
Summary:
Andhra Pradesh's Tirumala Tirupati Devasthanams (TTD) has announced plans to appoint members of Dalit, SC, ST, and fishermen communities as priests.
Summary:
The man with his accomplices opened fire and drove through one of the checkpoints' barricades, following which the police retaliated, police officials said.
Summary:
The Kerala Women's Commission has registered a case against unnamed people for shaming three hijab-clad Muslim girls on social media for performing in a flash mob.
Summary:
Fonseca said he had promised to don the iconic masked vigilante's outfit if his team qualified for knockouts.
Summary:
The funding round took the total funding raised by the startup in series D round to over $40 million.
Summary:
Users can sign up on the Mobycy app with Aadhaar, and pay â¹10 per ride or buy the monthly subscription.
Summary:
Calling US President Donald Trump's decision to recognise Jerusalem as Israel's capital "stupid", Iran-backed Harakat Hezbollah al-Nujaba said the move may become a "legitimate reason" to attack US troops in Iraq.
Summary:
A French court has ordered a halal supermarket in Paris to shut down for failing to cater to the needs of customers by not selling pork and wine.
Summary:
Markets regulator SEBI has imposed a penalty of â¹10 lakh on Tata Steel over delays in making necessary disclosures.
Summary:
The bank sought to club insolvency pleas initiated by other creditors of Reliance Telecom so that these matters could be heard together.
Summary:
Wal-Mart operates more than 11,600 stores and clubs in 28 countries.
Summary:
Earlier, the US appeals court had ruled in favour of Alibaba to dismiss the claims against it.
Summary:
The motion poster of Akshay Kumar starrer 'PadMan' has been released.
Summary:
The trailer of the upcoming Anurag Kashyap directorial 'Mukkabaaz' has been released.
Summary:
He further alleged that his family was deprived of various schemes launched by the Centre and the state government for tribal people.
Summary:
Kohli has played 83 international matches since January last year, the most by any player.
Summary:
Aiyar accused PM Modi of playing dirty politics in the name of the Dalit leader.
Summary:
Bihar Deputy CM Sushil Modi on Wednesday said that the BJP is in favour of continuing reservations as long as caste-based inequality remains.
Summary:
Responding to Congress leader Mani Shankar Aiyar calling him "neech", PM Narendra Modi on Thursday said this showed the Congress' 'Mughlai mindset'.
Summary:
Google's parent company Alphabet-owned artificial intelligence (AI) firm DeepMind has revealed that its computer programme 'AlphaZero' learned chess rules in four hours.
Summary:
Slovenia-based exchange NiceHash has said that nearly $64 million worth of Bitcoins had been stolen from its wallet.
Summary:
Senior Volkswagen executive, Oliver Schmidt, who pleaded guilty in the US for his role in the company's emissions cheating scandal was sentenced to 7 years in prison on Wednesday.
Summary:
This comes after US President Donald Trump recognised the holy city as Israel's capital.
Summary:
British Defence Secretary Gavin Williamson on Wednesday said that citizens who have joined the Islamic State militant group in Iraq and Syria should be hunted down and killed.
Summary:
Japan launched a surprise attack on the US naval base at Pearl Harbor on December 07, 1941, killing over 2,400 people and forcing the US to join WWII.
Summary:
Europe's biggest toymaker Lego on Thursday said it won its first copyright court case against imitators in China.
Summary:
Actor Irrfan Khan was presented with an Honorary Award at the 14th edition of the Dubai International Film Festival (DIFF).
Summary:
Arjun Kapoor has slammed reports of a man assaulting him on the sets of his film 'Sandeep Aur Pinky Faraar'.
Summary:
Questioning PM Narendra Modi over the healthcare facilities in Gujarat, Congress Vice President Rahul Gandhi on Wednesday accused him of gifting his friend a government hospital in Bhuj for 99 years.
Summary:
Inaugurating Dr Ambedkar International Centre, PM Narendra Modi on Thursday said Congress was more interested in Baba Bhole (Lord Shiva) than Baba (BR) Ambedkar.
Summary:
He said "Israel has international recognition of a part of Jerusalem as its territory".
Summary:
"If someone created the cryptocurrency for the purpose of settlements, then there will be a criminal punishment," the Finance Ministry said in a statement.
Summary:
The European Commission has said that Internet giants like Facebook, Google, YouTube, and Twitter must do more to prevent spreading of extremist content on their platforms.
Summary:
However, she said that the company has taken steps to make sure that the misinformation is flagged and downlinked.
Summary:
Meanwhile, the man accused of groping the passenger has claimed the incident occurred due to turbulence.
Summary:
California-based researchers have developed a temperature-sensitive temporary seal that changes from a fluid to a semi-solid when applied to the eye as the patient awaits surgery.
Summary:
US-based researchers have 3D printed artificial organ models that mimic the anatomical structure and mechanical properties of real organs.
Summary:
A group of lawyers representing teachers and students from three schools in California has sued the US state for "dragging down" the nation in literacy and education.
Summary:
Unilever Italy said it rejects the conclusion of the Italian authorities and would appeal it.
Summary:
UNESCO called it a culturally diverse festival where knowledge and skills are transmitted through ancient religious manuscripts and oral traditions.
Summary:
The top 10 trending videos of 2017 on YouTube have more than 630 million views, as revealed by YouTube on its blog.
Summary:
Launched on December 7, 1972, Apollo 17 still remains the last manned Moon mission.
Summary:
Liverpool joined already-qualified Premier League clubs Chelsea, Manchester City, Manchester United and Tottenham.
Summary:
Following his career-best 243 against Sri Lanka, Indian captain Virat Kohli has grabbed second position in the ICC Test rankings for batsmen.
Summary:
Mysuru Maharaja Yaduveer Krishnadatta Chamaraja Wadiyar and his wife Trishika Kumari Devi welcomed a baby boy at a private hospital in Bengaluru on Wednesday.
Summary:
The maximum number of these fake notes were seized in Gujarat (1,300), the data revealed.
Summary:
Chemists at the UK-based University of Bristol have made fuel using beer as a key ingredient.
Summary:
The Australopithecus fossil is also the oldest fossil hominid in southern Africa, dating back 3.67 million years.
Summary:
The study of a 75-million-year-old fossil smuggled from Mongolia has revealed a new bird-like dinosaur species that had a swan-like neck, claws, and a duck-billed snout.
Summary:
The Palestinian Islamist group Hamas' leader Ismail Haniyeh on Thursday called for a new uprising against Israel after US President Donald Trump formally recognised the city of Jerusalem as the Israeli capital.
Summary:
The domes contain electric heaters, while guests at the 360 Bar can also use the blankets draped over furniture.
Summary:
Two wild boars broke into a Japanese school while mid-term exams were being held, and began chasing students.
Summary:
I don't assess someone according to their marital status or whether they have children or not," she added.
Summary:
Summary:
Speaking about his daughter Sara Ali Khan's acting debut 'Kedarnath', Saif Ali Khan said, "I think when we get close to that release, it will be like my own film is releasing." Saif further said he is confident that Sara will be very good in the film.
Summary:
A Peruvian woman was forced to keep the body of her dead baby in a freezer after the hospital allegedly told her to keep it until she had a death certificate.
Summary:
"Whoever faced corruption allegations during UPA was dealt with strictly, but the same cannot be said about BJP," he added.
Summary:
Posting his ninth question for PM Narendra Modi, Rahul Gandhi has highlighted the problems faced by farmers, alleging that the "Gabbar Singh Tax" (GST) has affected the agriculture sector.
Summary:
The Supreme Court has imposed a fine of â¹2 lakh each on 11 states and a Union Territory for not complying with its order on widow welfare.
Summary:
A question also asked the students to discuss "Manu is the first Indian thinker of globalisation".
Summary:
BJP MP Vinay Katiyar on Thursday said that Delhi's Jama Masjid was known as 'Jamuna Devi Temple' before it was "broken down by the Mughal emperors".
Summary:
Irish airline Ryanair is facing the threat of pre-Christmas industrial action and its first-ever pilots' strike.
Summary:
Two 170-metre-high zip lines are opening this week in Dubai.
Summary:
Attorney General KK Venugopal on Thursday informed the Supreme Court that February 6, 2018 would remain the deadline for linking Aadhaar with mobile numbers.
Summary:
A painting showing US President Donald Trump dressed up as Wonder Woman and beating North Korean leader Kim Jong-un was displayed at international art festival Art Basel on Thursday in Florida, US.
Summary:
The Australian Parliament has voted in favour of legalising same-sex marriages.
The move follows a two-month-long national survey that showed 61% of more than 1.2 crore Australians were in favour of legalising the unions.
It's time for more marriages, more respect.
Summary:
Bitcoin now has a market capitalisation of $236 billion and accounts for over 60% of the cryptocurrency market.
Summary:
Actress Priyanka Chopra has been voted the Sexiest Asian Woman for the fifth time in an annual UK poll conducted by London-based newspaper 'Eastern Eye'.
It's purely their genetics," tweeted Priyanka.
Summary:
The first poster of Ranveer Singh's upcoming film 'Simmba' has been released.
Produced by Karan Johar, the film is scheduled to release on December 28, 2018.
Summary:
Troubled personnel will be offered help under the buddy support system.
Summary:
Congress leader Kapil Sibal has said he was never a Sunni Waqf Board lawyer and was representing an individual in the Ayodhya case.
Summary:
The Centre has asked states to send their respective views on the proposal, which will be introduced as a bill in the winter session of Parliament next week.
Summary:
"The Indian move violated China's territorial sovereignty," said Zhang Shuili, the deputy head of China's Western Theater Command's combat bureau.
Summary:
Responding to a Pakistani author's tweet about a Pakistani juvenile lodged in an Indian jail, External Affairs Minister Sushma Swaraj said she would permit visas to his parents to come and identify their son.
Summary:
A Competition Commission of India (CCI) investigation has revealed that the Max hospital located in Delhi's Patparganj has been making 275% to 525% profit on the sale of disposable syringes.
Summary:
A top-rated Indian eatery in Bangkok has been awarded two Michelin stars in the first Michelin Guide Bangkok.
Summary:
The buyer of the over â¹2,900-crore Salvator Mundi painting, the most expensive painting ever sold, has been revealed as Saudi Prince Bader bin Abdullah bin Mohammed bin Farhan Al Saud.
Summary:
Scientists estimated, the collisions, which occurred before 3.8 billion years ago, contributed around 1-2.5% of Earth's present mass.
Summary:
Astronomers using Chile-based telescopes have detected the most distant supermassive black hole ever observed, whose light took about 13 billion years to reach Earth, nearly equal to the Universe's age.
Summary:
The lights illuminating East Jerusalem's al-Aqsa mosque, which is Islam's third-holiest site, were switched off by the mosque's authorities on Thursday in rejection of US President Donald Trump's recognition of the city as Israel's capital.
Summary:
After US President Donald Trump on Wednesday recognised Jerusalem as the capital of Israel, UN Secretary-General António Guterres said he opposed "any unilateral measures that jeopardise the prospect of peace for Israelis and Palestinians".
Summary:
Vijay Mallya's lawyers on Tuesday told a London court that the Indian government's fraud case against Vijay Mallya is politically motivated.
Summary:
While talking about late actor Shashi Kapoor, veteran actress Sharmila Tagore revealed that after the death of his wife Jennifer Kendal in 1984, he became suicidal.
Summary:
The man had reportedly called the reception to book a room but his request was rejected as he did not reveal his name, following which he reached the hotel to attack the female staffer.
Summary:
The victim's two maternal uncles were sentenced to life imprisonment in November on charges of raping her.
Summary:
India's membership application to Nuclear Suppliers Group (NSG) cannot be linked to that of Pakistan, Russia's Deputy Foreign Minister Sergey Ryabkov has said.
Summary:
Despite being in police custody, the convicts were said to be able to make contacts with people outside and continue recruiting members for the terror organisation.
Summary:
A video showing a man beating up a Muslim labourer and then burning him alive over an alleged case of 'love jihad' in Rajasthan's Rajsamand district has surfaced online.
Summary:
A new set of videos allegedly showing Patidar leader Hardik Patel and two others with a girl has been leaked ahead of Gujarat Assembly elections.
Summary:
Seventy-year-old Thai street food seller Jay Fai's restaurant Raan Jay Fai has been awarded a Michelin star in the first Michelin Guide Bangkok.
Summary:
The Jatayu Adventure Centre has recently opened on a 1,000-foot-tall hill in Kerala's Chadayamangalam, which is where Jatayu is believed to have died.
Summary:
North Korea has said it doesn't "wish for a war but shall not hide from it" if the US will miscalculate its patience and "light the fuse for a nuclear war".
Summary:
Farmlite range includes Active Protein Power (from Real Sattu), Oats (3 tasty variants - Almonds, Raisins & Chocolate), High Fibre (with oats, ragi, jowar, corn & wheat) & Digestive All Good (No Added Sugar/No Artificial Sweetener).
Summary:
The US has become the first country to recognise the status of Jerusalem which is claimed as the capital by both Israel and Palestine.
Summary:
The film is a dark comedy thriller which revolves around various characters from different sections of Mumbai.
Also starring actors Deepak Dobriyal and Kunaal Roy Kapur, the film has been written and directed by Akshat Verma.
Summary:
Sunni Waqf Board member Haji Mehboob has said Congress MP Kapil Sibal, who is representing the board in the Babri Masjid case, was wrong in asking the Supreme Court to defer the case till July 2019.
Summary:
Asserting that humanity comes first and elections later, PM Narendra Modi on Wednesday said he wouldn't remain silent on the Triple Talaq issue due to any election compulsions.
This issue is for the rights of women," PM Modi said.
Summary:
Father of the 7-year-old girl who died of dengue in Fortis hospital has alleged that the hospital administration offered him â¹25 lakh to stop him from taking any legal action.
Summary:
Countering Congress' allegations of "price rise", Finance Minister Arun Jaitley on Wednesday said inflation data shows a steady decline in general prices.
Summary:
Caltech scientists have made the world's smallest recreation of Leonardo da Vinci's Mona Lisa, the size of bacterium, out of DNA.
Summary:
He further said that the move nullifies the US' right to be a mediator in the Israeli-Palestinian conflict.
Summary:
US President Donald Trump has topped the 2017 list of Most Tweeted about Elected World Leaders.
Summary:
A Taiwanese county will introduce a female figure in its pedestrian traffic lights, to feature alongside the existing male figure.
Summary:
A group of people in Pakistan's Peshawar held a candlelight vigil to honour veteran actor Shashi Kapoor who passed away on Monday.
Summary:
Hollywood actress Gwyneth Paltrow has claimed that rape-accused producer Harvey Weinstein lied about having sex with her in order to lure other women.
Summary:
Pahlaj Nihalani, while talking about his tenure as the Chairman of the Censor Board, said that he did a good job and was also praised by the media.
Summary:
Actress Anushka Sharma's spokesperson has denied reports that she is getting married to cricketer Virat Kohli next week.
Summary:
Actor Matt Smith, known for starring in Netflix series 'The Crown', has said he feels sorry for actress Meghan Markle over her transition into royalty.
However, he further said, "But hey, she's marrying the prince of Britain - how exciting for her."
Summary:
There is already a rule in place but it is not followed in several central government offices, Marathi Language Minister Vinod Tawde said.
Summary:
Goa Chief Minister Manohar Parrikar on Wednesday said that Sunday night's supermoon, and not just Cyclone Ockhi, were responsible for the rise in seawater levels that damaged Goa's coastline and beach shacks.
Summary:
Police detained a team of six activists sent by Shiv Sena to hoist the Tricolour at Srinagar's Lal Chowk on Wednesday.
Summary:
Jharkhand Chief Minister Raghubar Das on Wednesday announced that all vehicles plying across the state will be required to keep their headlights on even during daytime from January.
Summary:
West Bengal CM Mamata Banerjee on Wednesday demanded that the central government declare Netaji Subhas Chandra Bose's birthday on January 23 a national holiday.
Summary:
The Navy has offered a job in a private company to a transgender former sailor who was removed from service after undergoing a sex change surgery to become a woman.
Summary:
A one-year-old girl died after the ambulance carrying her was stuck in a traffic jam due to a wedding procession in Madhya Pradesh's Damoh.
Summary:
Congress' Madhya Pradesh unit on Wednesday lodged a police complaint over a morphed picture of Mahatma Gandhi in a photograph showing Congress Vice President Rahul Gandhi filing his nomination for the party president's post.
Summary:
A Mexico-based airline's passenger jet mistakenly lined up to land on a New York City airport runway as a Delta Air Lines plane was attempting to take off, said authorities.
Summary:
The team engineered mice with genes that activated the Hedgehog pathway, said to restrain the size of fat cells.
Summary:
After the International Olympic Committee banned Russia from competing at next year's Winter Olympics, President Vladimir Putin said that most accusations which led to the ban were unfounded.
Summary:
With India's 1-0 series victory over Sri Lanka on Wednesday, Virat Kohli has now led India to nine successive Test series victories.
Summary:
Putin held the office of President for two terms from 2000 to 2008 and served as Prime Minister from 2008 to 2012.
Summary:
An Anganwadi worker in Uttar Pradesh's Sitapur symbolically married a picture of CM Yogi Adityanath to attract the government's attention towards the plight of Anganwadi workers.
Summary:
An Ola cab driver allegedly molested a 23-year-old student and used the car's child-lock to hold her hostage in the car in Bengaluru.
Summary:
Supersonic surface-to-air missile Akash on Tuesday was successfully test-fired with an indigenous radio frequency seeker.
Summary:
It also said that entry of trucks in Delhi and burning of waste will be banned, and pollution causing industries shut.
Summary:
Apple's market share in the United States slipped from 40.6% in 2016 to 32.9% in the quarter ending October 2017, according to a report by Kantar Worldpanel ComTech.
Summary:
Ex-US President Barack Obama has said his country is facing an "unusual time" by being the only nation not belonging to the Paris climate agreement.
Summary:
Canada now reportedly plans to acquire a used fleet of older Australian F-18 jets, the same kind of aircraft it currently operates.
Summary:
Locals from a village in Ireland have claimed that fumes from a Viagra factory are having an arousing effect on men and dogs.
Summary:
A man was arrested for allegedly stealing a â¹2 crore Ferrari in the US after the police saw him asking people for money to buy petrol for the car.
Summary:
Actor Irrfan Khan, while speaking about being named the best actor in the popular category at the Star Screen Awards, said, "I was in queue for a long time." "It's great to be acknowledged by popular awards in a popular main actor category," he added.
Summary:
Actor Govinda has revealed that initially he didn't watch the Anurag Basu-directed comedy drama 'Barfi!' because he doesn't watch a film if he doesn't like its title.
Summary:
After the Election Commission rejected his nomination for the RK Nagar bypoll, actor Vishal described it as a mockery of democracy, adding that he would legally challenge it.
Summary:
Actress Katrina Kaif has said that she looks up to Sonam Kapoor as no one else has the sense of style and the high fashion that Sonam has.
Summary:
In its mouthpieces 'Saamana' and 'Dopahar Ka Saamana', the Shiv Sena said that Prime Minister Narendra Modi has finally acknowledged Congress Vice President as a "serious competitor".
Summary:
The Jammu and Kashmir government has distributed appointment orders for government jobs among a group of victims who lost their eyesight due to pellet injuries during the violent clashes last year.
Summary:
A seven-year-old girl, who went missing from a wedding function in Delhi last week, was reunited with her parents by police with the help of Google Maps.
Summary:
After US President Donald Trump's daughter Ivanka Trump misspelled the word "peek-a-boo" as "peak-a-boo", a Twitter user wrote, "Can any of the Trumps spell?" Some other users tweeted, "You are a member of the first family...Do you care about nothing?" and "Peek.
It's PEEK.
Summary:
Reports said the strike had crippled the state's health services, resulting in the cancellation of several surgeries.
Summary:
Harbhajan Singh slammed a Twitter troll who asked the cricketer to "stop glorifying people for doing their duty" after he had praised the Indian Navy in a tweet.
Just see their duty what they do...they protect us salute to them," Harbhajan wrote.
Summary:
Adding that Muslim girls don't wear jeans and they never objected, Sharma said dresses worn by Hindu girls were embarrassing.
Summary:
The Haryana government on Wednesday said it will lodge a police case against Fortis Hospital in Gurugram after finding it to be negligent in treating a seven-year-old who died of dengue.
Summary:
The government would give priority to abstinence rather than a blanket ban on liquor, he added.
Summary:
The Delhi government's Department of Education has proposed a policy to extend financial assistance to school students with sports talent and help them get specialised training.
Summary:
Aakhil Bharatiya Aggarwal Samaj, which is based in Haryana's Jind, has banned women belonging to the Aggarwal community from dancing in baraat (wedding processions).
Summary:
Hammond owes a "six-figure sum" for using RAF aircraft on official trips.
Summary:
Indian cricket team captain Virat Kohli will tie the knot with Bollywood actress and long-time girlfriend Anushka Sharma next week in Milan, Italy, according to reports.
Summary:
The TIME magazine on Wednesday named 'The Silence Breakers', the voices behind the #MeToo movement, as the Person of the Year 2017.
Summary:
Actress Shabana Azmi, who was a jury member for Best Asian Film category which was chaired by Russell Crowe, tweeted it was a unanimous decision.
Summary:
The Indian Premier League Governing Council has hiked the salary cap for IPL franchises to â¹80 crore for the 2018 season from â¹66 crore last year.
Summary:
Union Minister Uma Bharti on Tuesday said she would fast unto death if the implementation of plans related to the cleaning of River Ganga did not start by October 2018.
Summary:
The wedding invitation of a couple in Madhya Pradesh was printed in the format of an Aadhaar card.
Summary:
Meanwhile, PM Modi is also the most followed Indian in 2017, with a following of 37.5 million.
Summary:
Talking about China's Internet policy, Apple CEO Tim Cook has said, "I believe strongly in freedoms.
Summary:
UK's Health Secretary Jeremy Hunt has asked Facebook to stay away from his kids and act responsibly after the company launched 'Messenger Kids' in the US.
Summary:
A recently opened Chinese zoo has been closed after claiming to showcase "penguins from the South Pole" but featuring ten inflatable penguins in an enclosure instead.
Summary:
The world's biggest food company Nestlé has agreed to buy Canadian dietary supplements maker Atrium Innovations for $2.3 billion.
Summary:
Hong Kong's premium office space has been ranked as the world's most expensive for the second consecutive year, according to a report by property consultancy firm JLL.
Summary:
He also wrote a message for Navya in the photo's caption.
Summary:
Kerala CM Pinarayi Vijayan has said the state will maintain a fishermen registry and install life-saving devices such as GPS in vessels.
Summary:
A 21-year-old footballer, who was photographed while hurling stones at security forces in J&K in April, met Home Minister Rajnath Singh on Tuesday as part of a 25-member delegation of women footballers.
Summary:
Expressing concern over Siang river turning black, Arunachal Pradesh CM Pema Khandu on Wednesday said that he has requested the Centre to take immediate action on the matter.
Summary:
Slamming Congress MP and advocate for the Sunni Waqf Board Kapil Sibal, PM Narendra Modi said, "Why does he have to link Ram Mandir with elections?" Sibal had requested the Supreme Court to hear the Babri Masjid case after the 2019 general elections.
Summary:
Officials said this was the second such incident in a month and attributed shortage of staff as the reason for repeated escapes.
Summary:
Claiming that there was a politicisation of the armed forces, Army chief General Bipin Rawat on Wednesday said the military should stay away from politics for a "vibrant democracy".
Summary:
Delhi CM Arvind Kejriwal has termed the disqualification of rebel JD(U) leader Sharad Yadav from Rajya Sabha illegal and unconstitutional.
We strongly condemn it and demand that disqualification be revoked," Kejriwal added.
Summary:
The device turns into a thin USB to Lightning cable, with a light pull allowing users to charge or sync their devices at convenience.
Summary:
Volocopter's Co-founder Alex Zosel has said that in two or three years the German aviation startup will have its first commercial applications "somewhere in the world." Zosel added that the first commercial application will be a 'point to point' solution over bottlenecks such as traffic congestions.
Summary:
The couple ate their meals, received massages and spa treatments, and spent the night in the 'live-in luxury art installation'.
Summary:
United surprised Lehman as part of its November salute to veterans.
Summary:
Summary:
Bangladesh's government will move about one lakh Rohingya Muslims who sought refuge in the country after fleeing neighbouring Myanmar to escape violence, to a remote island in the Bay of Bengal by November 2019.
Summary:
Police in the US state of New York have charged a woman with stealing nearly $160,000 (â¹1 crore) from a customer's accounts at Bank of America.
Summary:
With this, India equalled the record of most successive Test series wins, joining Australia who won nine straight series from 2005 to 2008.
Summary:
CSK and RR can choose from players who played respectively for them in 2015 and were part of RPS and GL this year.
Summary:
A day after making an error in his tweet, Congress Vice President Rahul Gandhi on Wednesday said, "unlike Narendrabhai, I am human.
Summary:
As many as 56 of the 60 sanctioned Deputy Inspector General (DIG) posts in the Central Reserve Police Force (CRPF) and the Sashastra Seema Bal (SSB) are lying vacant, according to reports.
Summary:
It is time for the "British government to finally apologise" for the Jallianwala Bagh massacre in which at least 379 people were killed, London Mayor Sadiq Khan has said.
Summary:
Twenty-three-time Grand Slam champion Serena Williams is set to make her tennis comeback at the Australian Open 2018, four months after giving birth to daughter Alexis Olympia.
Summary:
The reserve price for uncapped players was escalated from â¹10 lakh, â¹20 lakh, and â¹30 lakh to â¹20 lakh, â¹30 lakh, and â¹40 lakh respectively.
Summary:
Social media giant Facebook has topped the list of best tech companies to work for in 2018 in the US, according to Glassdoor.
Summary:
The co-owners will be offered shares in the company running the chateau, and have a say in its development.
Summary:
People for the Ethical Treatment of Animals (PETA) has named the Indonesian monkey who sparked a copyright case after snapping a grinning selfie from a British wildlife photographer's camera in 2011 as its 'Person of the Year'.
Summary:
Police officers are searching for a man who allegedly stole a woman's credit card and MacBook on their first date in New York, US.
Summary:
A Delta Air Lines flight from New York City to Seattle was forced to make an emergency landing so passengers could use the toilet as the washrooms on board had stopped working.
Summary:
Earlier, Moody's Investors Service had withdrawn its credit rating on Reliance Communications after it defaulted on interest payment on its bonds.
Summary:
Actress Adah Sharma took to Twitter to slam a male fan who asked her for a kiss during a media interaction.
Summary:
Actor Hugh Jackman has revealed he was considered for the role of 'James Bond' after Pierce Brosnan's tenure as 'Bond' ended but he rejected the film.
Summary:
Actress Richa Chadha has said when people in Bollywood speak up on sexual harassment, we'll lose a lot of heroes and several people will lose their work and legacies.
Summary:
Speaking on late actor Shashi Kapoor who passed away on Monday, yesteryear actress Simi Garewal has said that he hated the 'naach gaana' stuff in Bollywood.
Summary:
The Lok Sabha secretariat has announced plans to provide prepaid food cards to MPs and the Parliament staff in a bid to promote cashless transactions at Parliament canteens, reports said.
Summary:
Technology giant Apple has acquired the US-based podcast search startup Pop Up Archive for an undisclosed amount.
Summary:
The startup had earlier raised $1.5 million from investors including angel investor Ashwin Chadha, GSF Accelerator and US-based Globevestor.
Summary:
This comes after multiple women accused Pishevar of sexual assault and harassment.
Summary:
US-based cab-hailing startup Lyft has added $500 million to the $1 billion funding round, which was led by Google parent company Alphabet's venture arm CapitalG in October.
Summary:
Aspada's Principal Sahil Kini said that Dunzo "wrote to every single investor in India" to raise funds.
Summary:
"If indeed there's life in that ocean, subduction offers a way to supply the nutrients it would need," said study's author.
Summary:
Australia-based researcher Tobias Westmeier has created the most detailed map ever of clouds of high-velocity gas in the Universe.
Summary:
Iran Supreme Leader Ayatollah Ali Khamenei on Wednesday said the US' intention to move its embassy in Israel to Jerusalem and recognising the city as Israel's capital is a "sign of incompetence and failure".
Summary:
Talking to exporters, he further assured that GST will benefit them in the long run.
Summary:
The RBI has kept the repo rate, the rate at which banks borrow from RBI, unchanged at 6% for the second time in a row during its fifth bi-monthly monetary policy review on Wednesday.
Summary:
The newborn who was wrongly declared dead by Max Hospital a week ago, died on Wednesday.
Summary:
The TIME magazine's shortlist of candidates for the 2017 'Person of the Year' award includes North Korean dictator Kim Jong-un, under whose leadership the reclusive nation has tested 23 ballistic missiles this year.
Summary:
"Slotting ads is not our mandate, so we have asked the government for instruction," ASCI Secretary General Shweta Purandare said.
Summary:
The records include information about the Indian Independence Bill, views of the council members on partition, and key resolutions passed by them.
Summary:
The Supreme Court on Tuesday said that claiming fee on the basis of the outcome of the case is professional misconduct and against public policy.
Summary:
A 70-year-old passenger died after his denture got dislodged during a SpiceJet flight last week and ended up getting stuck in the back of his throat, blocking his windpipe.
Summary:
Summary:
The study found halogen levels to be consistent across interstellar meteorites maintaining "Earth's recipe" for life.
Summary:
The Breakthrough Prize backed by Facebook CEO Mark Zuckerberg, Google co-founder Sergey Brin, and Russian billionaire Yuri Milner among others has awarded $22 million to scientists in the field of Life Sciences, Fundamental Physics, and Mathematics.
Summary:
The 267-square-kilometre iceberg which separated from Antarctica's Pine Island Glacier (PIG) in late September, has disintegrated into smaller icebergs within two months.
Summary:
A suicide attack at a pop concert in Manchester that killed 22 people in May this year could have been prevented if the security services had responded differently to intelligence before the attack, a UK government report has found.
Summary:
The owner of a waterproof camera that seemingly travelled over 800 kilometres from a beach in England to German island Süderoog by sea has been identified.
Summary:
Hollywood actress Angelina Jolie has said that she thought working with her estranged husband Brad Pitt on the film 'By the Sea' would help them communicate.
Summary:
Indian all-rounder Ravindra Jadeja clean bowled Sri Lankan captain Dinesh Chandimal off a no-ball during the final day of the Delhi Test on Wednesday.
Summary:
The government has decided that all fully developed HUDA sectors will be transferred to MCG for maintenance.
Summary:
Opposing the Mayor's move, Meerut BJP Chief said his party will sing the National Song on roads in protest.
Summary:
The Delhi High Court on Tuesday asked the Delhi government and civic agencies to inform the court about programmes undertaken to educate adolescent girls about menstrual hygiene in schools.
Summary:
Goa's Calangute Beach and Baga Beach, Delhi's India Gate, Qutub Minar and Hauz Khas Village, Amritsar's Golden Temple and Karnataka's Nandi Hills were also featured in the top ten.
Summary:
A video of the incident shows the 3-year-old stuffed inside a gunny bag, while the woman is vigorously shaking it.
Summary:
While hearing a PIL, the court also asked the government whether selling garlic in grain markets should attract GST.
Summary:
Maharashtra government is planning to form a special cell to ensure that 80% employees in industries across the state are locals.
Summary:
Delhi's Jawaharlal Nehru University has cancelled BJP leader Subramanian Swamy's talk titled 'Why Ram Mandir in Ayodhya?' scheduled on the 25th anniversary of Babri Masjid demolition on Wednesday.
Summary:
The Kerala Police has detained a 75-year-old man who reportedly got his obituary published in newspapers last month.
Summary:
A lingerie vending machine will be launched at the Delhi airport by Welspun Group heiress Radhika Goenka in February.
The vending machine has been launched to change that perception."
Summary:
MIT engineers have printed a "living tattoo" patterned with live bacteria cells in the shape of a tree engineered to light up in response to a variety of stimuli.
Summary:
The US on Wednesday flew a B-1B supersonic bomber near the Korean peninsula as part of its largest-ever joint air drill with South Korea involving 230 warplanes.
Summary:
Russian athletes who can prove they were not involved in doping will be allowed to compete under the name "Olympic Athlete from Russia".
Summary:
After crossing the $11,000 mark last week, the cryptocurrency had lost 20% of its value in one day.
Summary:
The Babri Masjid was demolished on December 6, 1992, after a political rally organised by the VHP and BJP turned violent.
Summary:
Pigeons can comprehend the abstract concepts of space and time like humans, according to a study published in the journal Current Biology.
Summary:
A three-member panel formed by Delhi government has submitted a preliminary report, according to which Max Hospital has been found guilty of not following the prescribed medical norms in dealing with newborns.
Summary:
Disqualifying rebel JD(U) MPs Sharad Yadav and Ali Anwar from the Rajya Sabha, Vice President and Rajya Sabha Chairman Venkaiah Naidu has said all pending pleas regarding legislators' disqualification should be decided within 3 months.
Summary:
Ex-US President Barack Obama's tweet condemning racism in the aftermath of Virginia riots in August has ranked second on 2017's list of most popular tweets, with over 17 lakh retweets.
Summary:
A vehicle in Mevani's convoy was hit by a stone, damaging its window, but nobody was injured, police said.
Summary:
The Election Commission on Tuesday rejected actor Vishal's nomination for the RK Nagar bypolls, hours after accepting his nomination.
Summary:
National-level hockey player Rizwan Khan was found dead with a bullet wound on his right temple in his car and a gun in his hand on Tuesday in Delhi.
Summary:
Earlier, the annual income of the couple was required to be under â¹5 lakh for eligibility to the scheme.
Summary:
Navy Chief Admiral Sunil Lanba has urged the government to withdraw the â¹10,000/month cap placed on education reimbursement to the children of soldiers who are missing, disabled or were killed in action.
Summary:
By studying the ratios of iron, cobalt, and nickel within the artefacts, researcher Albert Jambon differentiated between smelted iron and iron of extraterrestrial origin.
Summary:
Saudi Arabia's Crown Prince Mohammed bin Salman has won a readers' poll for TIME's 'Person of the Year 2017' award, scoring 24% of the votes.
Summary:
An Islamist terror plot to assassinate UK PM Theresa May has been foiled by the country's security forces, according to an official report.
Summary:
Kit Harington, who portrays 'Jon Snow' on 'Game of Thrones', has been named the Worst Dressed Man on an annual list by British GQ for its January 2018 issue.
Summary:
The film will be directed by filmmaker Dinesh Vijan.
Talking about Shraddha's role, a spokesperson from Vijan's production house said, "She'll play a small town girl with a mystery surrounding her character.
Summary:
Maharashtra government is planning to seek help from the Centre to compensate the cotton growing farmers who incurred losses after their crops were infested.
Summary:
UP government has deployed around 700 security personnel from the Central Reserve Police Force and its Rapid Action Force near the disputed Ayodhya site on the 25th anniversary of Babri Masjid demolition, reports said.
Summary:
The External Affairs Ministry on Tuesday informed that Chinese Foreign Minister Wang Yi and Russian counterpart Sergey Lavrov will visit India for a trilateral meeting.
Summary:
AIMIM President Asaduddin Owaisi on Tuesday alleged that the Ram Temple issue was being raked up by the Sangh Parivar to save Prime Minister Narendra Modi in the 2019 General elections.
Summary:
Ravindra Jadeja went on to appeal for LBW after bowling out Sri Lanka's Suranga Lakmal as the former did not realise the ball had hit the stumps.
Summary:
BJP Spokesperson GVL Narasimha Rao has said Congress Vice-President Rahul Gandhi is a "Babar Bhakt" and "Kin of Khilji" as he has teamed up with "Owaisis and Jilanis" to oppose Ram temple in Ayodhya.
Summary:
Australia defeated England by 120 runs to win the first-ever day-night Ashes Test on Wednesday.
Summary:
A woman left a box of tampons in a Canadian airport's washroom with a note saying "please take one." She said she was forced to buy it for C$15 (â¹760) from a vendor as airport tampon vending machines were empty.
Summary:
A study based on 46,634 British citizens who had died aged 60 or older has found that blood pressure gradually starts to decrease about 14 years before death.
Summary:
Stating that Kolkata needs an alternative airport, Raju added that land is a state subject.
Summary:
Twitter has released a list of Top Hashtag Trends in India in 2017 and the entertainment section of the list features the fantasy drama 'Baahubali 2: The Conclusion' and the television reality show 'Bigg Boss 11'.
Summary:
Pakistan's envoy to the US Aizaz Ahmad Chaudhry on Tuesday said that the country needs more evidence from India to prosecute 26/11 Mumbai terror attack mastermind Hafiz Saeed.
Summary:
Law Commission Chairman Justice Balbir Singh Chauhan has said that implementing the Uniform Civil Code was not possible and personal laws can never be done away with as they have constitutional protection.
Summary:
Air India has announced that it would be launching flight services to connect the 'Golden Triangle', a tourism circuit of Delhi, Jaipur, and Agra.
Summary:
Responding to BSP Supremo Mayawati's allegations of EVM-tampering in the Uttar Pradesh civic polls, CM Yogi Adityanath said they can have re-elections with ballot papers in Aligarh and Meerut, where BSP won the mayoral seats.
Summary:
"On the one hand, temples are being visited (by Rahul Gandhi) ahead of elections.
Summary:
INS Chakra, India's only nuclear attack submarine, can hunt and neutralise enemy vessels.
Summary:
After his disqualification from the Rajya Sabha, rebel JD(U) leader Sharad Yadav on Tuesday said he will continue his fight to save democracy.
Summary:
The Supreme Court bench hearing the Ayodhya dispute case refused to entertain a plea by lawyers representing the Sunni Waqf Board seeking to defer the case till the 2019 Lok Sabha elections.
Summary:
While talking about autonomous cars, Lyft's Chief Strategy Officer Raj Kapoor has said, "We're going to go through a gut-wrenching decade" before any firm takes the lead.
Summary:
UN Under-Secretary-General for Political Affairs Jeffrey Feltman arrived in North Korea on Tuesday, marking the first time in over six years that a high-ranking UN official is visiting the reclusive nation.
Summary:
The move could undermine the council, over half of whose members have boycotted Qatar for allegedly supporting terrorism.
Summary:
"Working with a star like Akshay is like a dream come true...I'm confident I will soon be recognised," said Kuwar.
Summary:
The court further called for setting up a new fare fixation committee to resolve the conflict within three months.
Summary:
At least one in every seven traffic policemen in Delhi has been diagnosed with respiratory disorders including lung congestion and asthma, according to reports.
Summary:
The Jama Masjid in Mumbai's Kalbadevi has reportedly reduced its electricity bill by 67% after using solar energy to power 70% of its electricity requirements.
Summary:
Manchester United scored two second-half goals in two minutes to register a 2-1 comeback win against CSKA Moscow on Tuesday, topping their Champions League group.
Summary:
Lankesh was shot dead outside her house in Bengaluru by bike-borne assailants.
Summary:
Greater cultural ties are possible between London and Mumbai as both the cities have similar personalities and share hurdles and aspirations, London Mayor Sadiq Khan has said.
Summary:
Australia lost both their reviews within three balls while defending 354 against England in the second Ashes Test.
Summary:
Human Rights NGO Amnesty International India on Tuesday termed Madhya Pradesh's bill imposing death penalty for people convicted of rape of girls aged 12 and younger as "regressive" and "misplaced".
Summary:
The All India Professionals' Congress has unveiled a report prepared by its Delhi chapter under Shashi Tharoor on the air pollution in the national capital.
Summary:
The minister inaugurated a 15-MW grid-connected solar power plant at Kolkata Airport on Tuesday.
Summary:
There is a huge potential in creating market demand as both nations have a population of over 1 billion, Chinese officials said.
Summary:
The Spanish Interior Ministry on Tuesday said that 5,800 kg of cocaine with a street value of over â¹1,600 crore was seized on a container ship last month, its second-biggest cocaine seizure ever.
Summary:
The US military is planning to study skills employed by falcons to build drone killers.
Summary:
Spain's Supreme Court has withdrawn the international arrest warrant it had issued for Catalonia's ex-President Carles Puigdemont, saying he has shown a willingness to return to Spain.
Summary:
Ireland Women's Gaby Lewis had become the first cricketer born in the 21st century to play international cricket in 2014.
Summary:
Prime Minister Narendra Modi has topped the list with 37.5 million followers.
Summary:
Karnataka will soon provide 4% reservation for differently-abled people in the A and B categories of government jobs, Karnataka Women and Child Development Minister Umashree has said.
Summary:
Kohli's tally of 2,818 runs in 2017 is the third-highest behind Ricky Ponting (2,833 runs, 2005) and Kumar Sangakkara (2,868, 2014).
Summary:
A three-judge bench of the Allahabad High Court ordered the division of the 2.77 acres of disputed Ram Janmabhoomi-Babri Masjid site in Ayodhya equally among the Nirmohi Akhara, Sunni Central Waqf Board and Ram Lala Virajman.
Summary:
The players included newly-appointed Sri Lankan captain Thisara Perera.
Summary:
The Uttar Pradesh government has scrapped the public holiday marking the death anniversary of Dr BR Ambedkar.
Summary:
Apple has won a trademark case against Chinese smartphone maker Xiaomi for registering 'Mi Pad' tablet computer as an EU trademark.
Summary:
The European Union (EU) on Tuesday blacklisted 17 tax havens, following investigations targetting nations not doing enough to tackle off-shore tax evasion.
Summary:
Two former South Korean spy chiefs have been formally charged with bribing former President Park Geun-hye.
Summary:
Romania's former King Michael I, who was forced to abdicate from throne after Soviets abolished the monarchy, passed away at the age of 96 in Switzerland on Tuesday.
Summary:
Omar Khetab, a top al-Qaeda leader, was killed along with 80 others in eastern Afghanistan in a joint military operation by the Afghan Army and NATO-led forces, the National Directorate of Security said.
Summary:
US President Donald Trump on Monday signed proclamations to reduce the size of two national monuments in the state of Utah.
Summary:
A month after announcing that he was quitting as the Prime Minister of Lebanon, Saad al-Hariri on Tuesday officially withdrew his resignation.
Summary:
Earlier, Finance Minister Arun Jaitley said the government doesn't recognise cryptocurrency as legal tender as of now.
Summary:
"I don't understand why that's said only about heroines...They (men) are the ones who gossip the most," added Sonakshi.
Summary:
Singer Adnan Sami has said that a biopic on him, if ever made, would be a typical masala movie.
everything to make it work at the box office," added Sami.
Summary:
Actor Salman Khan has jokingly said that the only fan he wants is a table fan on stage and a ceiling fan above.
Summary:
Following the demise of Shashi Kapoor on Monday, actor Govinda shared a picture of the veteran actor which he captioned, "My career's first film Ilzaam was with Shashi Ji." Talking further about interacting with Shashi during the film's shoot, Govinda wrote, "His first wise words to me have stayed with me ever since...'Kisi din Tum Unchaai chuoge...
Summary:
Filmmaker Sajid Khan has said Akshay Kumar is the most gifted comedy actor Bollywood has in this generation, followed by Riteish Deshmukh.
Summary:
Replying to Sehwag, Dhawan tweeted, "Picture badi chun ke lagaayi hai aapne."
Summary:
BJS was then the political arm of Rashtriya Swayamsevak Sangh and a precursor to the BJP.
Summary:
After earning a maiden call-up to the Indian T20I squad for the Sri Lanka series, Basil Thampi has said that it was his long-time dream to have MS Dhoni stand behind the wickets on his bowling.
Summary:
Two Central Railway motormen averted a possible train accident on Monday after spotting three iron rods on the Harbour Line track between Masjid and Chhatrapati Shivaji Maharaj Terminus stations.
Summary:
As India formally accedes to the UN convention on international transport of goods in December, the International North-South Transport Corridor will be operationalised from mid-January 2018, officials said.
Summary:
US President Donald Trump on Monday endorsed Alabama Republican candidate Roy Moore in a US Senate special election despite allegations by multiple women that Moore had engaged in sexual misconduct.
Summary:
Adani is seeking $1.5 billion in funding by March 2018 for the first stage of its proposed mine project in Queensland.
Summary:
PM Narendra Modi has topped the 2017 list of Most Followed Indians on Twitter, with 37.5 million followers.
Summary:
Virat Kohli's 293 runs in the Delhi Test against Sri Lanka are the most by an Indian captain in a Test match.
Summary:
Addressing the 83rd convocation of the Dr Bhimrao Ambedkar University in Agra, President Ram Nath Kovind said that women of the country were strides ahead of men in academic excellence.
Summary:
Italian luxury supercar manufacturer Lamborghini has unveiled a â¹1.3 crore SUV called 'Urus' which is capable of attaining a top speed of 305 kmph (190 mph).
Summary:
The plaintiff also claims the company dismissed multiple reports about the alleged actions of the accused employee.
Summary:
Notably, same-sex couples in Austria have been allowed to enter legal partnerships since 2010.
Summary:
Infosys Chairman Nandan Nilekani's wife Rohini Nilekani has said that a public pledge was needed because "the Indian wealthy aren't giving enough".
Summary:
The services sector in India slipped into the contraction mode in November, its lowest in 3 months, mainly due to low demand and lower customer turnout due to the GST rollout.
Summary:
As per reports, Salman Khan's 2015 film 'Bajrangi Bhaijaan' will release in China in 2018 with a new title.
Summary:
Speaking about the demise of veteran actor Shashi Kapoor, yesteryear actress Asha Parekh said, "He was the last of my heroes.
Asha Parekh further said she has seldom come across a more caring and chivalrous hero.
Summary:
While sharing the poster, Amul's official Twitter handle wrote, "Tribute to an actor and a gentleman."
Summary:
Summary:
Commenting on the drug menace, the Himachal Pradesh High Court asked how were rave parties being allowed to be organised at Kasol by the district administration and the police.
Summary:
Nomination papers of late Tamil Nadu Chief Minister Jayalalithaa's niece, Deepa Jayakumar, and actor Vishal, for the RK Nagar bypoll has been rejected by the Election Commission.
Summary:
Ahead of the 25th anniversary of Babri Masjid demolition on December 6, the Union Home Ministry has issued an advisory to all states to keep vigil and take precautionary measures.
Summary:
Claiming that children require the "love and affection" of a father, a Delhi court has allowed a man accused of domestic violence to meet his children twice a month.
"They (children) are of a very tender age.
Summary:
Pakistan's Sarfraz Ahmed and Zimbabwe's Graeme Cremer are among the three international captains who have reported match-fixing approaches to ICC in the last two months, according to reports.
Summary:
While the Congress is electing its new president, a user tweeted, "Rahul Gandhi filing nominations for INC presidentship is like Uday Chopra giving auditions for Dhoom series." Another tweet read, "All the best to Rahul Gandhi...
Summary:
Addressing an election rally on Tuesday, Congress Vice President Rahul Gandhi said people of Gujarat had spoiled his eating habits, adding that he was gaining weight.
Summary:
Congress Vice President Rahul Gandhi is the only candidate to be nominated in the party's presidential election.
Summary:
The Supreme Court on Monday asked Uttar Pradesh to come up with a mechanism to promote and ensure specially abled students were not kept away from mainstream education.
Summary:
Users also reported that they were unable to load their message history on both desktop and app.
Summary:
Mobile payments startup MobiKwik is in talks with investors to raise over $60 million before the end of the current fiscal, its Co-founder Upasana Taku said.
Summary:
GST Network Chairman Ajay Bhushan Pandey has said he hopes new leadership at Infosys will continue to further strengthen the GSTN portal.
Summary:
AMC Theatres, part of China's Dalian Wanda Group, is world's largest cinema operator with over 11,000 screens.
Summary:
NITI Aayog Vice Chairman Rajiv Kumar has said that India can grow faster than China for the next three decades if the ties remain strong.
Summary:
The Supreme Court on Tuesday said that further hearing on Ayodhya dispute will be held on February 8, 2018.
Summary:
The European Commission had ordered Apple to pay the sum last year, citing that the company received illegal tax benefits from the Irish government.
Summary:
The Critterati hotel has a spa, swimming pool and special cafe for dogs, while its suites feature velvet beds and televisions.
Summary:
Talking about the recent concerns over rising pollution in Delhi-NCR, West Bengal CM Mamata Banerjee suggested that the capital's "political pollution" was causing so much air pollution.
Summary:
Chinese e-commerce giant Alibaba's CEO Jack Ma at a recent event said that China is open to Western companies, provided they follow the country's rules.
Summary:
The 'Two-wheeler' mode is currently available on Android smartphones.
Summary:
In 2010, Google pulled its search and ads businesses from mainland China after refusing to censor content for the Chinese government.
Summary:
China has decided to temporarily stop funding at least three major road projects that are being built as part of the China-Pakistan Economic Corridor (CPEC) in Pakistan, following reports of corruption.
Summary:
A 38-year-old man from Poland has set Guinness World Record for the 'Longest single game of Football Manager', playing for over 221 in-game years.
Summary:
Dutch newspaper Rotterdam Daily AD has published an article calling on people to sell their Bitcoins as they undermine the government and reduce the power of central banks.
Summary:
Yoga guru Ramdev's consumer goods company Patanjali Ayurved has announced plans to invest â¹100 crore to manufacture solar power equipment.
Earlier, Patanjali acquired Advance Navigation and Solar Technologies, a manufacturer of navigation aid equipment.
Summary:
UK-based broadcaster BBC mistakenly aired footage of Amitabh Bachchan and Rishi Kapoor in a segment on Shashi Kapoor's demise.
Summary:
The promotional video for Oscars 2018 has been released.
Summary:
Actor Tiger Shroff, who will star with Hrithik Roshan in an upcoming film, said that if Hrithik gives his 100%, he will have to give his 200-300% to match up to him.
The film will be directed by Siddharth Anand.
Summary:
A 50-year-old hunter died after he was attacked by a wild boar he was trying to shoot, German police said.
Summary:
Ravindra Jadeja bowled a double-wicket maiden last over of the fourth day of the Delhi Test as Sri Lanka ended the day at 31/3 chasing a target of 410.
Summary:
The Kashmir issue is a territorial conflict between India and Pakistan which started after the partition in 1947.
Summary:
Further, the state will also declare around 1,000 hamlets as revenue villages.n
Summary:
Of the total number of child kidnapping and abduction cases reported in Delhi in 2016, more than 40% of the victims fall under in age group of 12 to 16 years, according to National Crime Records Bureau data.
Summary:
The Delhi High Court on Monday observed that marital rape was an issue of "huge ramifications and tremendous importance".
Summary:
Google has led a Series B funding round in Bengaluru-based task management app Dunzo, its CEO Kabeer Biswas confirmed.
Summary:
The standalone app will allow children to text and video call only their parent-approved friends.
Summary:
Witnesses said the aircraft had been "jerking around" on the runway, and loud bangs were heard when the engine exploded.
Summary:
A vast underground passage has been discovered underneath the Canadian city of Montreal.
Summary:
An official said the pagoda is examined twice every year, and the tilting is presently under control.
Summary:
Turkish President Recep Tayyip ErdoÃÂan has warned the US that recognising Jerusalem as Israel's capital would be a "red line" for Muslims.
Summary:
The Iraqi judiciary has been violating the rights of ISIS suspects with flawed trials and arbitrary detentions under harsh conditions, Human Rights Watch alleged on Tuesday.
Summary:
The Supreme Court on Tuesday began the final hearing in the Ayodhya dispute, a day before the 25th anniversary of Babri Masjid's demolition in Ayodhya.
Summary:
Late actor Shashi Kapoor, who passed away on Monday, was honoured with a three-gun salute by the government at his funeral held on Tuesday afternoon at Santacruz Hindu crematorium in Mumbai.
Summary:
The current record is held by a rainbow that was visible over UK's Sheffield for six hours in 1994.
Summary:
Tamil Nadu CM Edappadi K Palaniswami and Deputy CM O Panneerselvam on Tuesday led a silent procession to pay tribute to former CM J Jayalalithaa on her death anniversary.
Summary:
The Punjab and Haryana High Court has ruled that if a vehicle registered and insured in India meets with an accident in another country, the insurance company would be liable to pay the claim.
Summary:
RJD chief Lalu Prasad Yadav has said that the Babri Masjid demolition broke the nation's heart 25 years ago and the wounds have still not healed.
Summary:
Kerala Electricity Minister MM Mani on Monday inaugurated India's largest floating solar power plant at the Banasura Sagar dam in Wayanad district.
Summary:
US-based aerospace startup Boom Technology has raised $10 million from Japan Airlines to build supersonic passenger jets.
Summary:
Technology giant Google has launched a lightweight Android Oreo Go edition operating system designed for devices with RAM up to 1 GB.
Summary:
Two of the images which were taken from the same viewpoint had different star backgrounds, reports said.
Summary:
A Berlin art installation dedicated to martyrs has included images of terrorists, including a 9/11 hijacker and a gunman behind the 2015 Paris terror attacks, alongside the likes of Socrates and Martin Luther King.
Summary:
Composer AR Rahman has said that his biggest drawback is that he doesn't remember the lyrics to his songs during concerts.
Summary:
Production for the final season of Netflix series 'House of Cards' will resume next year with actress Robin Wright as the new lead.
Summary:
A photo gallery shows rare and unseen pictures of veteran actor Shashi Kapoor, who passed away aged 79 on Monday.
Summary:
Indian opener Shikhar Dhawan completed 8,000 first-class runs and 2,000 Test runs while playing at his home ground on his 32nd birthday on Tuesday.
Summary:
The Indian government has allowed over 1,300 Buddhist refugees from MyanmarâÂÂs Rakhine region to enter Mizoram.
The refugees fled Rakhine due to the ongoing war between the Myanmar's Army and the Arakan Army, comprising Buddhist insurgents, reports said.
Summary:
Uttar Pradesh CM Yogi Adityanath on Tuesday made a contribution of â¹5 crore from the CM Distress Relief Fund towards Prime Minister's National Relief Fund, for Cyclone Ockhi-affected states in the country.
Summary:
The last date for filing of nominations was December 4 and the party has received 89 nominations.
Summary:
Alleging that her father has been falsely implicated in a case of abetment to suicide, the daughter of a Mumbai police official has threatened to commit suicide in a video posted on Facebook.
Summary:
A man was arrested in Jharkhand's Jamshedpur for writing the Indian Reserve Battalion (IRB) entrance examination for his girlfriend.
Summary:
The Supreme Court on Tuesday deferred the hearing in the Rohingya refugees deportation case to January 31, 2018.
Summary:
The police have registered an FIR against two minor students of a school in Uttar Pradesh's Sahibabad for allegedly raping a Class 2 girl in the school's washroom.
Summary:
The President of the Indian Medical Association KK Aggarwal said that given the quality of the air, the Delhi Test between India and Sri Lanka should not have taken place in the first place.
Summary:
Nepal's Army on Monday defused a bomb planted around 400 metres away from the hotel where the country's PM Sher Bahadur Deuba was staying for an election campaign.
Summary:
The telecom department has said it will meet officials from Airtel, Idea, and Vodafone to hear their pleas against TRAI's â¹3,050 crore penalty.
Summary:
Indian-American Democratic Senator Kamala Harris has topped the Foreign Policy magazine's 50 Leading Global Thinkers' list which also features two others from the community.
Summary:
The auction marked the first time a diamond found in Sierra Leone was put up for public sale.
Summary:
A National Security Guard (NSG) commando committed suicide after he shot his wife and his sister-in-law at a NSG camp in Haryana's Manesar on Tuesday.
Summary:
The Congress Central Election Authority on Monday said it has received 89 nominations for the Congress party President post.
Summary:
For instance, the list showed cylinder price rise to â¹742 from â¹414 as 179% increase.
Summary:
India is one of Afghanistan's biggest regional donors and has pledged $3.1 billion to the country since the ouster of the Taliban regime in 2001.
Summary:
Delhi airport operator DIAL has told IndiGo in court, "Don't teach me how to operate my airport." IndiGo had moved Delhi High Court after DIAL asked it to partially shift operations to T2 from T1 so expansion work could be carried out.
Summary:
A Singapore Airlines flight carrying 259 people averted landing at the wrong airport on Monday, according to reports.
Summary:
Actress Rani Mukerji has said that she loved the film 'Befikre' directed by her husband Aditya Chopra but it was hard for Aditya to see failure.
Summary:
"I was like, yeah, why wouldn't I accept a flight on a private plane with a big group of people?
Summary:
According to reports, a set worth â¹7 crore has been constructed for Sushant Singh Rajput and Sara Ali Khan starrer 'Kedarnath', which is set against the backdrop of 2013 Uttarakhand floods.
Summary:
Centred upon National Capital Territory of Delhi, the National Capital Region (NCR) includes 23 districts of Uttar Pradesh, Haryana, and Rajasthan.
Summary:
Slamming the Sangh Parivar for demanding the settlement of the Babri Masjid dispute on the basis of 'aastha' (faith), AIMIM chief Asaduddin Owaisi said the matter can be settled only through evidence.
Summary:
New Zealand wicketkeeper Tom Blundell, who scored a Test century on debut, walked home in his match uniform clutching a stump rather than taking the official transport to the team hotel.
Summary:
Summary:
The couple said that they opted to get married under a tree because it doesn't have any religious bias.
Summary:
Rajya Sabha chairman Venkaiah Naidu on Monday disqualified rebel JD(U) leaders Sharad Yadav and Ali Anwar Ansari from the membership of the House.
Summary:
The police reportedly lathicharged at a group of students sitting in a room at Hyderabad's Osmania University after protests ensued at the university over a student's suicide.
Summary:
It was hearing a petition filed by Mumbai Taximen's Union challenging the compulsory installation of speed governors in commercial vehicles.
Summary:
A panel headed by the Prime Minister's Office (PMO) on Monday held a meeting with the representatives of neighbouring states to discuss measures to curb Delhi's air pollution.
Summary:
After being omitted from India-Sri Lanka limited-overs series, Yuvraj Singh said he earlier failed three fitness tests but passed one recently.
I've seen defeat and that's what's the pillar of success," Yuvraj said.
Summary:
Dera Sacha Sauda chief Ram Rahim's adopted daughter Honeypreet Insan has written to the jail administration saying she doesnâÂÂt have money to hire lawyers to represent her in court.
Summary:
Mumbai recorded its highest 24-hour December rain in a decade on Monday, suspected to be a result of Cyclone 'Ockhi' in the Arabian Sea. The city saw rains in the month of December for the first time since 2014.
Summary:
The police on Monday detained senior BJP leader Yashwant Sinha and 250 farmers in Maharashtra's Akola for protesting against government's 'apathy' towards Vidarbha farmers, a police official said.
Summary:
Congress Chief Sonia Gandhi is reportedly going to be the adviser of the party after Rahul Gandhi's elevation to the post of party President.
Summary:
The passenger was deplaned at Mumbai airport, while the flight took off for Chennai on Monday morning.
Summary:
A US federal court has sentenced an Indian-origin man, Dilbagh Singh from Canada, to 46 months of imprisonment on charges of travelling to the US to have sex with a minor girl.
Summary:
The US Supreme Court on Monday allowed the full enforcement of President Donald Trump's ban on travellers from six Muslim-majority countries, along with North Korea and Venezuela.
Summary:
Three terrorists were terminated, while one was arrested by the forces.
Summary:
Bihar defeated Arunachal Pradesh by an innings and 870 runs after bowling them out for 54 runs in the U-16 Vijay Merchant Trophy on Monday.
Summary:
Paying tribute to late actor Shashi Kapoor in a blog post, Amitabh Bachchan wrote that he had thought with men like Shashi Kapoor around, he stood no chance as an actor.
Summary:
Indian professional boxer Vijender Singh is set to defend his WBO Oriental and Asia Pacific Super Middleweight titles against Ghana's Ernest Amuzu in Jaipur on December 23.
Summary:
AIADMK party workers installed life-size bronze statues of former Chief Ministers J Jayalalithaa and MG Ramachandran alongside the existing CN Annadurai statue in Tamil Nadu's Coimbatore on Sunday.
Summary:
The Congress released a 60-page manifesto ahead of Gujarat Assembly polls, which promises electricity at half the present price and reduction in fuel rates by â¹10 per litre.
Summary:
North Korea has labelled the drill as an "all-out provocation" and has accused the US of "begging for nuclear war" by staging the exercise.
Summary:
CIA Director Mike Pompeo has said that US President Donald Trump's tweets help the intelligence agency "understand what's going on in other places of the world".
Summary:
A 23-year-old man said he was fined â¹200 by the Rajasthan police for not wearing a helmet while driving his car.
Summary:
An opossum broke into a liquor store in US' Florida and seemingly finished a bottle of alcohol.
Summary:
A squirrel was charged with "criminal mischief" and released on bail by US police for damaging the wires of Christmas lights in New Jersey.
Summary:
Comedian Kapil Sharma has said it's very important to listen to people who do not flatter you.
Summary:
Chhetri turned up in a traditional Nepali attire as he rode to the wedding hall on a horse and later changed into a printed sherwani as per Bengali tradition.
Summary:
Jamaica Prime Minister Andrew Holness unveiled a stone statue of former sprinter Usain Bolt at Independence Park in Kingston as a tribute to the eight-time Olympic gold winner.
Summary:
Raising the issue of rising prices under the BJP-led government, Congress Vice-President Rahul Gandhi asked PM Narendra Modi if the government is there only to serve the rich.
Summary:
In the letter, Asif alleged that the Indian forces have been violating ceasefire and the Pakistani forces are only retaliating.
Summary:
The cost of Delhi Metro's Phase-4 project has been reduced by over â¹2,500 crore because of Goods and Services Tax (GST).
Summary:
Several beggars have left the Hyderabad government-run shelters despite the ban on begging till January 2018, officials said.
Summary:
The Maharashtra government on Monday granted administrative approval to the Versova-Bandra sea link (VBSL) project.
Summary:
Social activist Anna Hazare has alleged that former Prime Minister Manmohan Singh had weakened the anti-corruption Lokpal Act when it was framed.
Summary:
Uttar Pradesh's Shamli district was included in the National Capital Region (NCR) on Monday, making it the 23rd district to be included in the region.
Summary:
UFC champion Conor McGregor posted a photo on Instagram of him reading a newspaper upside down while sitting in a jet.
Summary:
Lionel Messi's brother Matias is facing an eight-year jail sentence if the charges of illegal possession of firearms are proved.
Summary:
Raising concerns over the threat posed by radicalised wives and children of ISIS fighters, Germany's domestic intelligence chief Hans-Georg MaaÃÂen said that they should be identified as jihadis.
Summary:
A 16-year-old Syrian refugee, Mohamad Al Jounde, on Monday won the International Children's Peace Prize for building a school and providing education to hundreds of children who fled to Lebanon to escape the Syrian civil war.
Summary:
Afghanistan President Ashraf Ghani has apologised to the country's women for his 'headscarf' remark.
Summary:
The Bengal Sati Regulation which banned the practice of sati in British India was passed on December 4, 1829, by then Governor-General Lord William Bentinck.
Summary:
The Rajasthan government's ordinance that protected public servants, judges, and magistrates from any investigation for on-duty action without prior sanction, lapsed on Monday night.
Summary:
The cryptocurrency's value reached a new high of over $11,800 on Sunday.
Summary:
Dismissing reports on the possibility of returning to Aam Aadmi Party (AAP), former party leaders Yogendra Yadav and Prashant Bhushan said the party "betrayed all ideals of the anti-corruption movement".
Summary:
Ashwin has now taken 55 Test wickets this year, the same as Australian off-spinner Nathan Lyon.
Summary:
With a total of 97 cases, Maharashtra has recorded the most number of violations in 2016 under the Environment (Protection) Act, 1986, National Crime Records Bureau has revealed.
Summary:
Indian fast bowler Jasprit Bumrah has earned a maiden call-up to the Indian Test squad after being named in the 17-member squad for the three-match Test series against South Africa.
Summary:
Congress leader P Chidambaram on Monday said that terming Patidar leader Hardik Patel, OBC leader Alpesh Thakore, and Dalit leader Jignesh Mevani as "HAJ" was "playing the communal card and divisive politics".
Summary:
However, Israel will be the first to restore relations with Iran once its current regime falls, he further said.
Summary:
An Egyptian lawyer has been sentenced to three years in jail for saying that raping or harassing girls wearing revealing clothing is a "national duty".
Summary:
According to the rating agency, India's September quarter growth rate of 6.3% was "weaker than expected".
Summary:
Summary:
An aid watchdog has called charity appeals by Oscar-winning British actor Eddie Redmayne as "poverty porn" for reinforcing white saviour stereotypes.
Summary:
I'm happy...most of my films did well." Some of his releases this year included 'Trapped', 'Bareilly Ki Barfi' and 'Newton'.
Summary:
Reacting to the demise of veteran actor Shashi Kapoor on Monday, actress Hema Malini said that she had not been in touch with him for the past 25 years and didn't know that he was so sick.
Summary:
This comes ahead of the commencement of the final hearing on the Ayodhya dispute in the Supreme Court on December 5.
Summary:
The officials have further called on commuters to stop consuming paan and gutka inside the premises.
Summary:
Cricketer-turned-commentator Virender Sehwag has alleged that the Sri Lankan team complained about smog and delayed the match during the second day of the Delhi Test in order to stop Virat Kohli from reaching 300 runs.
Summary:
This comes after Merchant challenged the special TADA court's order which held him among the main conspirators of the blasts.
Summary:
The commission also directed newspapers to be informed against bringing out advertisements that were not cleared by it.
Summary:
A partial implosion that was carried out to bring down the Pontiac Silverdome in Michigan, US did not go as planned after charges failed to go off.
Summary:
The officer wanted an increased police presence at the airport, the police said.
Summary:
Pitching for startups to go public, former Infosys Chief Financial Officer (CFO) Mohandas Pai has said that listing will provide liquidity for startups and create brand value for such entities.
Summary:
A man has been arrested in Pakistan's Khyber Pakhtunkhwa province for writing 'Hindustan Zindabad' (Long Live India) on the wall of his house, according to reports.
Summary:
He admitted to molesting the children since he was 10 years old.
Summary:
Summary:
On whether the banks would be penalised for not adhering to the deadline, UIDAI CEO Ajay Bhushan Pandey said, "We will work that out."
Summary:
Late actor Shashi Kapoor's dialogue "Mere paas maa hai" from the 1975 film 'Deewaar' was a part of music composer AR Rahman's Oscar speech in 2009.
Summary:
Kangana Ranaut, while responding to reports of her not supporting Shabana Azmi's 'Deepika Bachao' campaign, said, "Deepika has all my support but I'm...wary of Shabana's investment in left wing vs right wing politics." Kangana added that she is capable of supporting who she likes without anyone else's support.
Summary:
Summary:
Otherwise, members of Pradesh Congress Committees vote by listing down preferences.
If there is no clear majority, candidates with least votes are eliminated and second preferences are counted.
Summary:
Virat Kohli has been rested for the three-match T20I series against Sri Lanka, after having been rested for the ODI series.
Summary:
West Bengal CM Mamata Banerjee on Monday said the Centre owed more than â¹13,000 crore under various developmental schemes this year to her government.
Summary:
The only suspected Islamic State terrorist lodged in a West Bengal jail on Sunday tried to slit the throat of the jail's 45-year-old warden with an improvised weapon after hitting him with a brick.
Summary:
Warning that the US-South Korea joint military drill could trigger a nuclear war "at any moment", North Korea on Sunday said that the five-day military drill was an "all-out provocation" against the country.
Summary:
Earlier this year, the US had listed Pakistan among a list of nations providing "safe havens" to terrorists.
Summary:
Chinese authorities have shut down an institute that was teaching women to be obedient and submissive to men.
Summary:
Former Pakistan President Pervez Musharraf has said that he would welcome an alliance with Lashkar-e-Taiba (LeT) founder and 26/11 Mumbai attack mastermind Hafiz Saeed for the 2018 general elections.
Summary:
Fortuna Public Relations has filed an insolvency petition against Reliance Communications with the National Company Law Tribunal.
Summary:
Amitabh Bachchan paid tribute to late actor Vinod Khanna at Star Screen Awards 2017 on Sunday.
Summary:
Summary:
English singer-songwriter Ed Sheeran has revealed that singer Beyoncé changes her email address every week to keep herself hidden.
Summary:
Other candidates who filed their nominations for the bypoll include rebel AIADMK leader TTV Dhinakaran and DMK's Marudhu Ganesh.
Summary:
India were dismissed for 58 in the first innings and 98 in the second and their combined score of 156 could not overhaul Bradman's individual score.
Summary:
After the attack, security forces cordoned off the area and launched a manhunt for the militants.
Summary:
On December 4, 2009, Virender Sehwag was dismissed for 293(254) on the third day of the Mumbai Test against Sri Lanka, falling short by seven runs to become the first cricketer to hit three Test triple centuries.
Summary:
Colombian weightlifter Edwin Mosquera Roa was shot dead by a stranger following an argument at a bar in Palmira, Colombia on Saturday.
Summary:
Earlier, Tej had threatened to beat Modi and disrupt his son's wedding, after which the wedding venue was reportedly changed.
Summary:
A study has found that the water of Brahmaputra river could be turning black due to a recent earthquake in Tibet, Union minister Arjun Ram Meghwal said.
Summary:
England wicketkeeper Jonny Bairstow was gifted wicketkeeping gloves signed by his late father David Bairstow by a fan named Andrew Johns ahead of the third day of the Ashes Test in Adelaide.
Summary:
Rohina Bhandari was dragged out of the water after sustaining severe bites to her legs, the Costa Rican Environment Ministry said.
Summary:
A group of immigrants trying to enter the UK illegally were found superglued to a truck.
Summary:
A 33-year-old man has been arrested in the US state of Florida after a drawing depicting a mass school shooting was found in a student's homework assignment.
Summary:
Veteran actor Shashi Kapoor, known for his films like 'Deewaar', passed away today at the age of 79 in Mumbai.
Summary:
"Those who rape 12-year-old girls don't have the right to live", Chouhan said.
Summary:
In a Facebook post about sexual harassment faced by women, Facebook COO Sheryl Sandberg revealed that she also experienced sexual harassment over the course of her job.
Summary:
Former Yemeni President Ali Abdullah Saleh was killed on Monday by Houthi rebel fighters, according to reports.
Summary:
Pakistan Railways dismissed Dera Ismail Khan for 59 runs combined in two innings after registering 910/6 in their first innings in a first-class match which ended on December 4, 1964.
Summary:
India's first ever interactive movie trailer has been released for the Nawazuddin Siddiqui starrer upcoming crime thriller 'Monsoon Shootout'.
The trailer has two videos, corresponding to whether viewers choose to "shoot" or "not to shoot".
Summary:
Chinese smartphone maker Xiaomi is in talks with investment banks about an Initial Public Offering (IPO) and seeks a valuation of at least $50 billion, according to reports.
Summary:
The minibus will begin service in Germany's Hamburg city by the end of 2018, Moia's CEO Ole Harms said on Monday.
Summary:
This year's only supermoon, appearing 30% brighter and 14% bigger than the smallest full moon, was witnessed around the world on Sunday.
Summary:
The German Interior Ministry is offering rejected asylum seekers up to â¬3,000 (over â¹2 lakh) to go to their country of origin voluntarily.
Earlier this year, Germany announced that it will limit the intake of refugees to 2 lakh annually.
Summary:
Tim Wilson, an Australian lawmaker, proposed to his gay partner on the floor of the Parliament during a debate on legalising same-sex marriage.
Summary:
Nestle India on Monday said that Maggi complied with the latest guidelines of food regulator FSSAI and it doesn't add any ash to its noodles.
Summary:
It will be called the 'Petro' and will be backed by the nation's oil, gold, gas, and diamond reserves.
Summary:
A new poster of the upcoming Akshay Kumar starrer 'PadMan' has been unveiled.
Summary:
The calls came after Times Now, in their tweet about Madhur Bhandarkar's condolence message on Shashi's demise, made a typographical error and wrote Tharoor's name instead.
Summary:
An FIR has been filed against the administrators of a website called Postcard News for allegedly making offensive comments against Karnataka-based freedom fighter Kittur Rani Chennamma and 18th-century warrior Onake Obavva.
Summary:
While a conventional toilet uses 10-15 litres of water per flush, the vacuum toilet reportedly consumes around 500 ml of water for flushing.
Summary:
Captain Chandimal became the fastest Sri Lankan batsman to hit 10 Test centuries, achieving the feat in his 80th innings.
Summary:
Argentina football captain Lionel Messi's statue in the Argentinian capital Buenos Aires has been knocked over by vandals for the second time this year.
Summary:
Batting at number eight, Agarkar slammed an unbeaten 109, becoming the seventh Indian to smash a Test ton at Lord's.
Summary:
The National Investigation Agency (NIA) has announced plans to procure 100 state-of-the-art bullet-proof vests for its investigators.
Summary:
Congress leader Randeep Surjewala on Monday said, "Why is the Prime Minister suffering from Rahul Gandhi phobia?
Summary:
India's first-ever batsman to hit a six in international cricket, Amar Singh, who was born on December 4, 1910, also scored India's first half-century in international cricket.
Summary:
Japan-based robotic startup Groove X's CEO Kaname Hayashi has said that the startup would like SpaceX Founder Elon Musk to know that it exists.
Summary:
Gurugram-based furniture rental startup Rentickle has raised $4 million (over â¹25 crore) in a funding round led by Singapore-headquartered VC ThinKuvate and CX Partners Chairman Ajay Relan.
Summary:
Paytm Founder Vijay Shekhar Sharma has said that the company plans to invest up to $2.5 billion in its online e-commerce business Paytm Mall within 3-5 years.
Summary:
Authorities in Malta have arrested 8 suspects in the murder of Caruana Galizia, the journalist who exposed the island nation's links to offshore tax havens through the Panama Papers.
Summary:
Cameron and Tyler Winklevoss, the twins who claimed Mark Zuckerberg stole their idea for Facebook, are believed to have become the world's first Bitcoin billionaires.
Summary:
The National Green Tribunal (NGT) on Monday rapped the Delhi government for not submitting the action plan to curb Delhi's severe pollution despite its earlier order, and directed it to file the plan within the next 48 hours.
Summary:
The Indian Navy Day is celebrated on December 4 to commemorate the launch of Operation Trident against Pakistan's naval headquarters during the 1971 Indo-Pak War. The operation was successful as it sank four Pakistani ships and also crippled the Karachi port and fuel depot.
Summary:
World's largest technology services firm, IBM, reported revenues of â¹32,325 crore ($5.01 billion) in India for the financial year 2016-17.
Summary:
Rajkummar Rao was named Best Actor (Critics Choice) for 'Newton' while Irrfan Khan won the Best Actor award for 'Hindi Medium' and Vidya Balan was named Best Actress (Critics Choice) for 'Tumhari Sulu' at Star Screen Awards 2017.
Summary:
With England five wickets down, Ali chipped the ball into the air as Lyon took the acrobatic catch.
Summary:
After Congress Vice President Rahul Gandhi filed his nomination for the post of party president, Prime Minister Narendra Modi termed the Congress internal polls as 'Aurangzeb Raj'.
Summary:
The National Green Tribunal has slammed the authorities for holding the India-Sri Lanka Test at Feroz Shah Kotla stadium despite the bad air quality in New Delhi.
Summary:
Punjab's Local Bodies department has issued a transfer order for late Chief Sanitary Inspector Laxman Dravid, who was killed after getting trapped under a collapsed factory in Ludhiana last month.
Summary:
Slamming Congress Vice President Rahul Gandhi, Maharashtra Congress Secretary Shehzad Poonawalla on Sunday said, "Main Shehzad hoon, shehzada nahin.
Summary:
Vrajlal Valodara, a 70-year-old man hailing from Gujarat's Amreli district, has contested 36 municipal, Lok Sabha and Assembly elections in the past 50 years.
Summary:
Kolkata-based driver Dipak Das will be felicitated with the Manush Sanman award for not honking in the past 18 years.
Summary:
English all-rounder Ben Stokes played his first match since the nightclub brawl incident in Bristol in September.
Summary:
The link allows the user's friends and family to record short voice messages to be delivered to them during the race.
Summary:
Summary:
Paytm Payments Bank on Monday rolled out Paytm FASTag to enable electronic toll fee collection on highways across India without having to stop.
Summary:
Beleaguered liquor baron Vijay Mallya will return to Westminster Magistrates' Court in London today as his extradition trial begins.
Summary:
Former Chief Economic Adviser Kaushik Basu on Sunday said that the country's GDP growth should have been back at over 9% owing to low crude oil prices.
Summary:
Thanking Prime Minister Narendra Modi for his praise, Congress leader Shehzad Poonawalla on Sunday said that he had contacted party Vice President Rahul Gandhi's office during the day but was insulted.
Summary:
Addressing a rally in poll-bound Gujarat's Surat, Patidar leader Hardik Patel claimed that he was offered â¹5 crore by an unidentified businessman for not attending the rally.
Summary:
The Lakshadweep islands suffered a loss of over â¹500 crore due to the cyclone, Lakshadweep MP Mohammad Faizal said.
Summary:
Terming Congress Vice President Rahul Gandhi as "a darling of the Congress", former PM Manmohan Singh on Monday said that this will be a new chapter for the party as Gandhi will carry forward the great traditions of the party.
Summary:
The Ministry of Urban Development has proposed a bill that provides for a life sentence or a death penalty for âÂÂany act of sabotage with the intent to cause deathâ in metro premises across India.
Summary:
The Uttar Pradesh police on Sunday launched a search operation to trace two missing buffaloes belonging to BJP MLA Suresh Rahi.
Summary:
The Hyderabad Police has arrested a woman and her husband, after the woman allegedly made her four-year-old daughter sit on a hot pan to "get rid of her".
Summary:
Italian Serie A side Benevento grabbed their first-ever point in the top tier league after goalkeeper Alberto Brignoli scored with an injury-time flying header off a free-kick to give them a 2-2 draw against AC Milan on Sunday.
Summary:
Summary:
Delhi's Max Hospital has terminated the services of two doctors over medical negligence after a baby declared dead by them was found to be alive.
Summary:
The coldest day of the season in Delhi was recorded on Saturday with minimum temperature touching 7.4ðC, India Meteorological Department officials said.
After that it might get colder," officials added.
Summary:
This comes after Lalu's son Tej Pratap threatened to disrupt the ceremony, causing the venue to be changed.
Summary:
They returned without causing any damage to the house, reports said.
Summary:
Congress Vice President Rahul Gandhi on Monday filed his nomination papers for the election to the post of party President at the All India Congress Committee headquarters.
Summary:
Summary:
According to the technology giant, Android apps "may not introduce features or ads that monetise the locked display of the specific device in which they are introduced".
Summary:
Actor Ali Fazal has posted a picture on Instagram where he can be seen with The Big Lebowski actor Jeff Bridges, which he captioned, "IT'S THE DUDE!
Summary:
If you want to perform the song, you need to pay the label some money," added Aditya.
Summary:
Dia Mirza has said that Hollywood is setting a great example by ensuring sexual harassers like Harvey Weinstein and Kevin Spacey face consequences for their actions.
Summary:
Actor-filmmaker Arbaaz Khan took to social media to share a picture with wrestler The Great Khali which he captioned, "Had to stand on a chair to be in the same frame to pose with him." Commenting on the picture, a user wrote, "Same Frame...What next bhai !!!
Summary:
The Election Commission on Sunday said it would conduct random vote counting on Electronic Voting Machines (EVM) and slips of Voter Verifiable Paper Audit Trail (VVPAT) at one polling station in each of GujaratâÂÂs 182 assembly constituencies.
Summary:
A National Investigation Agency (NIA) probe into the Kerala 'love jihad' case revealed that Hadiya's husband Shafin Jahan was allegedly in touch with two key accused in the ISIS Omar-al-Hindi case before marriage.
Summary:
In a suicide note left behind, the student said that he was fearing failure in the upcoming examinations and was thus ending his life.
Summary:
Former Delhi Chief Minister Sheila Dikshit on Saturday asked "why a so-busy PM Narendra Modi has to visit Gujarat every other day" when the BJP claims to have carried out so many development works in the state.
Summary:
In response to Congress' criticism of the bullet train project connecting Ahmedabad and Mumbai, Prime Minister Narendra Modi on Sunday said those opposing the bullet train project should travel on bullock carts.
Summary:
The Delhi Police has initiated a campaign under which police personnel teach basic etiquette to cab drivers near Delhi's Indira Gandhi International Airport.
Summary:
Addressing a rally in Gujarat's Rajkot, Prime Minister Narendra Modi on Sunday said demonetisation had brought Congress leaders to tears as "they lost all money looted from poor".
Summary:
The father of a four-year-old girl, who was sexually assaulted at Kolkata's GD Birla School, has filed a police complaint against the school principal.
Summary:
Indian captain Virat Kohli has revealed that he has learned scoring big hundreds from teammate Cheteshwar Pujara.
Summary:
Two successive hikes in Delhi Metro fares have resulted in a decline in the sale of smart cards by nearly 22% over the past one year, an RTI response has revealed.
Summary:
Kashmiri footballer Majid Khan, who surrendered to the authorities one week after joining militant group Lashkar-e-Taiba (LeT), has been released from police custody.
Summary:
The Congress has accused the BJP of being violent against its Gujarat Assembly election candidates after the police detained three Congress leaders on Saturday night.
Summary:
When Pattnaik tried to resist the man's attempts, the latter allegedly pushed him into the crowd and escaped.
Summary:
Manchester City came from behind to register a late 2-1 win over West Ham in the Premier League on Sunday.
Summary:
A tweet by BJP's Maharashtra unit criticising its own party leader and CM Devendra Fadnavis over job creation went viral on social media.
Summary:
Summary:
Comedian Bharti Singh and television script writer Haarsh Limbachiyaa got married in a Hindu ceremony on Sunday in Goa, which was attended by their family members and close friends.
Summary:
The cheapest five-wicket haul in international cricket was taken by former Windies' pacer Courtney Walsh in an ODI against Sri Lanka on December 3, 1986, wherein he gave away just one run.
Summary:
The state had reported 18.5% of the total cases in 2015.
Summary:
A week before the first phase of the Gujarat Assembly elections, over 200 members of Congress' Information Technology cell in Rajkot on Saturday have resigned en masse.
Summary:
Sri Lanka coach Nic Pothas revealed that Lankan players vomited due to high level of pollution during the third Test in Delhi on Sunday.
Meanwhile, Indian bowling coach Bharat Arun slammed Sri Lanka, saying, "Virat batted close to 2 days, he didn't need a mask."
Summary:
Punjab's Shubman Gill has been named as Shaw's deputy.
Summary:
Former South African wicketkeeper Mark Boucher retired from international cricket in 2012 with 999 fielding dismissals, the most by a cricketer in history, after sustaining an eye injury.
Summary:
Senior BJP leader Subramanian Swamy has announced that the construction of Ram Temple in Ayodhya will begin soon and devotees will be able to celebrate Diwali at the temple next year.
Summary:
The South Korean military has launched a special 'decapitation unit' as part of its 'Beheading Operation' that aims to target the North Korean leadership in case of a conflict, reports said.
Summary:
Around 80 Indian companies in Germany generated revenues of $13.5 billion and employed a total workforce of 27,400 in 2016, according to a Confederation of Indian Industry study.
Summary:
Miss World 2017 Manushi Chhillar has said that her mother is very fond of Aishwarya Rai Bachchan and would tell her "Manu, I see you there someday", while referring to Aishwarya's Miss World win in 1994.
Summary:
Actress Richa Chadha shared her experience of how she got followed by some over enthusiastic fans on bikes in Bandra, Mumbai while tweeting, "Certainly no way to ask for pictures.
Summary:
NASA delivered the package after Italian astronaut Paolo Nespoliâ expressed his wish to eat pizza.
Summary:
Summary:
BJP President Amit Shah on Sunday questioned why Congress Vice President didn't visit temples in Delhi, adding that nobody should conceal their faith.
Summary:
Delhi Deputy CM Manish Sisodia on Saturday asked BJP Chief Amit Shah to appoint an unbiased agency to show what BJP had done for Delhi government schools in the last 15 years.
Summary:
A woman pursuing MBBS at BRD Medical College in Uttar Pradesh's Gorakhpur was found dead inside her hostel room on Saturday.
Summary:
Summary:
In the last ten days, 12 cases of open waste burning were reported on an average across Gurugram every day, Municipal Corporation of Gurugram revealed last week.
Summary:
Despite the meteorological department's warnings, over 40 boats belonging to Kerala's fishermen community on Sunday ventured into the sea to search for around 120 fishermen missing since Cyclone Ockhi hit the state.
Summary:
Australian batsman Shaun Marsh smashed his first Ashes hundred on Sunday, joining his father Geoff Marsh to become the first father-son pair to hit tons in Ashes.
Summary:
Lakshadweep MP Mohammed Faizal on Sunday said the islands had suffered an over â¹500-crore loss due to Cyclone Ockhi.
Summary:
Former Infosys CFO Mohandas Pai has said that India will have 1 lakh startups in the next 7-8 years, employing 3.25 million people and creating $500 billion in value.
Summary:
Help Refugees, a UK-based charity has opened a 'Choose Love' pop-up shop to raise money and resources for refugees.
Summary:
Backed by the US, the YPG had also helped in liberating ISIS' erstwhile capital Raqqa.
Summary:
Launched from China's Gansu Province, the satellite has been designed for remote sensing exploration of land resources, it added.
Summary:
Wipro has said it will contest a lawsuit filed by National Grid US seeking damages of over â¹900 crore ($140 million) for a project that began in 2009.
Summary:
It was extended to the fifth day but no play was possible again, leading to a coin toss to decide the outcome.
Summary:
It further appointed the boy's paternal uncle and aunt as his guardians.
Summary:
He also announced free ration for families in coastal areas of Kerala for a week.
Summary:
Minister of State for Tourism KJ Alphons on Sunday said that Cyclone Ockhi would not be termed a national disaster, adding that there is no provision to declare it as such.
Summary:
The complaint wasn't filed by the girl herself and a team from NCW will travel to Gujarat's Surat to meet the girl.
Summary:
Facebook-owned messaging service WhatsApp is reportedly testing a feature to allow group administrators to restrict the activities of other members of the group.
Summary:
While talking about artificial intelligence (AI) at a recent event, Apple CEO Tim Cook said, "We all have to work to infuse technology with humanity, with our values." "I don't worry about machines thinking like humans.
Summary:
Apple CEO Tim Cook on Sunday said that 1.8 million developers in China have earned nearly $17 billion (around 112 billion yuan) from the App Store till date.
Summary:
193 UN member-states had signed the pact last year.
Summary:
Shekhar, who will co-write and direct the biopic, said, "We are working on the script."
Summary:
She added she was heartbroken when the film didn't work at the box-office.
Alia further said, "Touch wood, 90% of my films fared well at the box office.
Summary:
Amitabh Bachchan has said one must give attention, value and respect to documenting the history of Indian cinema.
Summary:
While referring to the â¹10 crore reward for beheading Deepika Padukone and Sanjay Leela Bhansali over 'Padmavati' row, actor Shahid Kapoor said, "I didn't expect this...so much being spoken about a lady." He added that he is shocked by the protests against Deepika.
Summary:
Actress Sunny Leone, while talking about her upcoming Telugu period war drama, said that the film will completely change her image.
I was waiting for a script like this only for years," added Sunny.
Summary:
Obama, who is on his first trip to India since demitting office, acknowledged that India has the "largest population of young people".
Summary:
Addressing an election rally in Gujarat, PM Modi on Sunday said the people should send the Congress to a resort for the next five years.
Summary:
Iranian President Hassan Rouhani on Sunday inaugurated the first phase of Chabahar Port, for which India committed $500 million to open a new trade route bypassing Pakistan.
Summary:
This year, the ministry added a provision wherein citizens could forgo 50% subsidy.
Summary:
Kohli also became the first Indian captain to score 1000-plus Test runs in consecutive calendar years.
Summary:
The US derivatives regulator on Friday gave approval to two exchanges to list Bitcoin futures.
Summary:
A 240-year-old note has been found inside an 18th-century statue of Jesus Christ in the Spanish town of Sotillo de la Ribera.
Summary:
At least five people were killed and eight others were injured in a motorcycle bomb blast on Sunday in Afghanistan, officials said.
Summary:
Around 20,000 Israelis on Saturday took part in the 'March of Shame' to protest against a proposed bill aimed at protecting Prime Minister Benjamin Netanyahu who has been accused of corruption.
Summary:
The system, towed by a tugboat ahead of the aircraft carrier, destroys jellyfish by chopping them into thousands of pieces.
Summary:
Notably, India's GDP growth rate was 7.1% in 2016-17.
Summary:
The government has asked Coal India to focus on production enhancement, saying it cannot let the "profitability tumble" after the recent wage hike.
Summary:
The government should privatise ONGC rather than give away its producing oil and gas fields to private firms, company executives have said.
Summary:
Although government data recorded 3,000 casualties in the leak, activists claimed around 8,000 to 10,000 deaths.
Summary:
The Indian Statistical Institute's question paper for second year students featured a question based on the 'covfefe' typo made by US President Donald Trump in a tweet earlier this year.
Summary:
After being sued in a â¹20-crore defamation case, Karnataka's ex-Deputy Inspector General (Prisons) D Roopa Moudgil on Saturday tweeted that she will face the suit with a 'confident smile'.
Summary:
A 32-year-old woman was allegedly groped and molested by a man who also masturbated in front of her on a terrace in Lutyens' Delhi on Thursday.
Summary:
Slamming the Congress for terming GST as 'Gabbar Singh Tax', Union Home Minister Rajnath Singh on Saturday asked the party why it chose to support the tax regime in the Parliament.
Summary:
MMA fighter Francis Ngannou knocked out Alistair Overeem with a single punch, the first landed punch of the fight, at the UFC 218.
Summary:
External Affairs Minister Sushma Swaraj on Saturday helped Italian national Giovanni Farris, who was injured in a road accident on the Yamuna Expressway in Uttar Pradesh.
After a user had tweeted to Swaraj that Farris was alone in the hospital, Swaraj replied, "He is not alone.
Summary:
This created a confusion as one of the orders restricted further probe while the other allowed investigation to continue, the court added.
Summary:
Cricketer-turned-commentator Virender Sehwag congratulated Indian Army and Jammu and Kashmir police for eliminating over 200 terrorists in 2017, calling it an "unbeaten double century".
Summary:
The world's first Short Message Service or SMS was sent by software programmer Neil Papworth from a computer 25 years ago today.
Summary:
Technology giant Apple is planning to launch cheapest ever 9.7-inch iPad, priced at $259 (nearly â¹17,000) in the second quarter of 2018, reports suggested.
Summary:
Summary:
The potential of a war between the US and North Korea is "increasing every day", National Security Advisor HR McMaster has said.
Summary:
Infosys Co-founder Narayana Murthy on Saturday said he was happy Salil Parekh has been appointed as the CEO and sent him "best wishes".
Summary:
Actress Shraddha Kapoor was trolled on Twitter for sharing a picture of late Hollywood actress Marilyn Monroe with a message against body shaming.
Summary:
Summary:
Comedian Kapil Sharma has said he's planning a radical change in his talk show 'The Kapil Sharma Show'.
"It'll be boring for me and the audience if I don't," added Kapil.
Summary:
Actress Nargis Fakhri, while responding to reports of living in with her rumoured boyfriend Uday Chopra at his Mumbai residence, said, "No, thanks.
Nargis further said, "I don't pay attention to them (rumours).
Summary:
The Centre had raised the minimum pay from â¹7,000 to â¹18,000 as per 7th Pay Commission recommendations.
Summary:
The Haryana government has asked the Centre to fix minimum educational qualifications for candidates contesting elections for the posts of MP and MLA, CM Manohar Lal Khattar said.
Summary:
Windies' T20 World Cup-winning captain Darren Sammy has become father to a baby boy, the all-rounder revealed on Twitter on Saturday.
Sammy posted a picture with the new born, which was captioned, "Xzavier Reign Sammy....
King was born today at 12:09am.
Summary:
The government will give three to six months to link Aadhaar with PAN if the Supreme Court rules in its favour, a senior official said.
Summary:
Last year, Samsung filed a patent for a 'foldable' smartphone and is reportedly expected to launch in 2018.
Summary:
UK's National Cyber Security Centre has warned all government agencies against using Russia-based Kaspersky anti-virus software amid concerns of spying by Russia.
Summary:
Paytm Founder Vijay Shekhar Sharma on Saturday was trolled for sharing a screenshot of his contribution to the Indian Armed Forces.
"Just sent â¹501 to Armed Forces Flag Day Fund," he tweeted.
Summary:
Yemen's Houthi rebel group on Sunday claimed to have fired a cruise missile at a nuclear power plant in Abu Dhabi, UAE.
Summary:
A Ghaziabad court has issued four non-bailable warrants against Supertech officials over alleged breach of trust.
Summary:
Indian batsman Virat Kohli posted the highest score by an Indian captain in the history of Test cricket after going past his personal best of 235 against Sri Lanka on Sunday.
Summary:
Indian captain Virat Kohli scored his second straight double ton on Sunday and sixth overall to equal Sachin Tendulkar and Virender Sehwag's record of most Test double tons for India.
Summary:
After scoring his sixth Test double ton, Indian batsman Virat Kohli became the Test captain with the most number of double centuries to his name, surpassing former West Indies captain Brian Lara's five.
Summary:
The science fiction will now clash with the superhero film 'Avengers: Infinity War'.
Summary:
The European Space Agency (ESA) on Friday released satellite images capturing pollution levels in India on November 10, where the National Capital Region is categorised under 'high' level of pollution.
Summary:
Slamming the BJP and the Congress for dividing India on religious lines, All India Majlis-e-Ittehadul Muslimeen chief Asaduddin Owaisi has claimed that leaders from both the parties are fighting to prove who is a better Hindu.
Summary:
The Environment Ministry has withdrawn the ban on sale of cattle for slaughter in animal markets, a government notification said on Saturday.
Summary:
Mithali Raj was aged 16 years and 205 days when she smashed 114* on her ODI debut, becoming the youngest player to score a hundred across formats in both men's and women's international cricket.
Summary:
Delhi's Max Hospital reportedly demanded â¹50 lakh for keeping a newborn in its nursery till it was out of danger after the parents realised that the hospital had wrongly declared one of their twins as stillborn.
Summary:
The third and final Test's play was halted for around 15 minutes with Sri Lankan players wearing pollution masks and asking for the play to be stopped due to the bad air condition in New Delhi on Sunday.
Summary:
Mumbai attack mastermind and Jamaat-ud-Dawah (JuD) chief Hafiz Saeed on Saturday announced plans to contest Pakistan General elections next year, Pakistani media reported.
Summary:
Florida-based doctors reported the case of an unconscious patient with a "Do Not Resuscitate" tattoo, where they faced a dilemma to treat the 70-year-old or allow natural death.
Summary:
Team India coach Ravi Shastri and Sri Lankan manager Asanka Gurusinha walked onto the field after SL's Suranga Lakmal walked off due to poor air quality in Delhi during the third Test on Sunday.
Summary:
Nearly 1,000 schools won't be shut as there are reportedly no schools in the vicinity where students could be shifted.
Summary:
Summary:
Cyclonic storm Ockhi is likely to weaken gradually from Sunday and is expected to travel north towards Mumbai, Gujarat in the next 48 hours, the India Meteorological Department has said.
Summary:
Gujarat Chief Minister Vijay Rupani has said Congress Vice President Rahul Gandhi is the most confused person he has ever seen.
Summary:
Currently, only one out of three courts of the Delhi principal bench is working due to the shortage of judges.
Summary:
Addressing a rally in poll-bound Gujarat, Union Home Minister Rajnath Singh said Prime Minister Narendra Modi is the only person from Independent India to make Gujarat famous across the world.
Summary:
Ganguly added he did not know the reason for not getting picked.
Summary:
Reacting to Kohli scoring his sixth Test double hundred, a user tweeted, "Virat Kohli now scores double centuries for breakfast, lunch and dinner." "Short of words to describe this man.
Summary:
Indian opener Murali Vijay and captain Virat Kohli celebrated the opener's ton with a dab on the first day of the final Sri Lanka Test on Saturday.
Summary:
Real Madrid failed to cut the eight-point deficit to league leaders Barcelona after playing out a 0-0 draw against Athletic Bilbao on Saturday.
Summary:
However, a police official said Tekriwal was restrained after he ventured on a 'VIP route', following which he misbehaved with police.
Summary:
IIT-Bombay and the University of Toronto in Canada will collaborate with Pune Smart City Development Corporation Ltd to use artificial intelligence (AI) to make Pune a smart city.
Summary:
Addressing the business community in poll-bound Gujarat, former PM Manmohan Singh on Saturday said PM Narendra Modi should find "more dignified ways" to seek votes.
Summary:
Aimed at ensuring transparency and accountability, the judicial administration has decided to install CCTV cameras inside the halls of all lower courts including civil and labour courts across Bengaluru.
Summary:
A report by China's state-run 'Global Times' refuted allegations that "some major cement work" in China had turned Siang river in Arunachal Pradesh black.
Summary:
Reacting to Virat Kohli slamming his career's 52nd international ton, a user tweeted, "52nd International century.
Most centuries in 2017.
Ten, Ten, Ten. How Kohli pronounces?
Summary:
US prosecutors have asked a federal court to force "pharma bro" Martin Shkreli to give up $7.4 million in assets, including his one-of-a-kind Wu-Tang Clan album worth $2 million.
Summary:
Summary:
Six out of 35 police stations in Gurugram do not have ladies' toilets, an RTI response has revealed.
Summary:
It claimed doctors were being paid 'for referring medical tests'.
Summary:
The BJP won 14 mayoral seats in the civic polls, while BSP won two.
Summary:
Jharkhand BJP leader Bhaiya Ram Munda was killed and two of his family members were injured after around 20 armed men fired at his residence in Khunti.
Summary:
Around 500 fishermen stranded due to Cyclone Ockhi have been rescued in a joint operation launched by disaster relief forces and the Indian Navy.
Summary:
West Bengal police have arrested two physical education teachers accused of sexually assaulting a four-year-old girl in a washroom at Kolkata's GD Birla Centre For Education.
Summary:
A final year law student was arrested on Thursday for "masterminding" a â¹1-crore theft in which two employees of a security firm escaped with money from a cash van in Gurugram last Friday.
Summary:
In its efforts to educate citizens against crimes, Delhi Police will use comic strips and cartoon clips.nThe Delhi Police spokesperson has appealed to publishers seeking their help in advocating the message on safety of women, senior citizens, children, and a better society at large.
Summary:
There are currently 19 lakh employees, which may be reduced by around 6 lakh, reports said.
Summary:
All India Majlis-e-Ittehadul Muslimeen chief Asaduddin Owaisi on Saturday claimed that in Gujarat, Congress is giving reservation to Patidars and "lollipop" to Muslims.
Summary:
Bihar Chief Minister Nitish Kumar on Saturday said that he was convinced the Grand Alliance would "not last long on the very first day of its formation".
Summary:
With the win, United cut the deficit to five points on unbeaten leaders Manchester City, who play 19th-placed West Ham on Sunday.
Summary:
Ultra marathon runner Samir Singh started a 15,000-km run from Attari-Wagah border in Amritsar on Friday to raise funds for the families of Central Armed Police Forces jawans who lost their lives at the border.
Summary:
The users can then 'Super Like' one of the four people Tinder has presented to them.
Summary:
The team showed the tweezers could be used for trapping nano-diamond particles and even DNA molecules.
Summary:
A McDonald's security guard in the UK asked a Muslim woman to remove her hijab while she was standing in the queue to place an order.
Summary:
A former US National Security Agency employee has pleaded guilty to keeping classified documents at his home.
Summary:
The Turkish government has seized assets of billionaire Reza Zarrab, a day after he testified to a US court that Turkish President Recep Tayyip ErdoÃÂan helped Iran evade sanctions.
Summary:
The US state of Hawaii on Friday tested a nuclear attack warning siren for the first time since the end of the Cold War. This comes amid the threat posed by North Korea which recently tested an intercontinental ballistic missile, claiming it can hit anywhere in the mainland US.
Summary:
The graves were found in the town of Sinjar where thousands belonging to the Yazidi religious minority were killed by the ISIS in 2014.
Summary:
The European Parliament has passed a resolution calling for a ban on arms sale to Saudi Arabia over its role in Yemen's civil war.
Summary:
It's the fourth time that North Korea's ally China has failed to stop the annual discussion by calling a procedural vote.
Summary:
Israeli missiles hit a military post near the Syrian capital of Damascus on Friday, Syria's state television said, adding that the "blatant assault" led to material losses.
Summary:
While the 'Most Innovative' app title was awarded to Pinterest, 'LIKE - Magic Special Effect Video Editor' was named the 'Most Popular' app.
Summary:
Virat Kohli on Saturday became the first captain in Test cricket history to score a hundred in each Test of a three-match series.
Summary:
Actress Sunny Leone beat Priyanka Chopra to become the most-searched female celebrity in 2017, as revealed by Yahoo India.
Summary:
'Dil Diyan Gallan', the new song from the Salman Khan and Katrina Kaif starrer 'Tiger Zinda Hai', has been released.
Summary:
The 65-year-old claimed he had not committed "any big crime" and that he had done it "out of tension", reports added.
Summary:
Former PM Manmohan Singh has claimed that the Narendra Modi-led government won't be able to equal the UPA government's 10-year average GDP growth rate.
Summary:
Mahendra Singh Dhoni is the only wicketkeeper to have captained India in its 85-year Test cricket history.
Summary:
Talking about the BJP's Uttar Pradesh civic polls victory, party National General Secretary Ram Madhav said, "Doesn't feel like there are opposition parties at all.
Summary:
Amazon Web Services CEO Andy Jassy has said that it is unfair to say that artificial intelligence (AI) will take away jobs.
Summary:
Colombian drug lord Pablo Escobar was killed by the police on December 2, 1993, in Medellin.
Summary:
The school had expelled one student for creating the account that hosted racist content and suspended nine other students who liked the posts.
Summary:
The UN has appealed for over 1 lakh crore ($22.5 billion) in humanitarian aid for 2018.
Summary:
Gujarat CM Vijay Rupani has said that they banned the film 'Padmavati' because of the way women have been represented in the film.
Summary:
Acting Chairman of the International Film Festival of India (IFFI) Rahul Rawail has claimed that the director of 'S Durga' Sanal Kumar Sasidharan planned the "whole drama" of adding "sexy" to the film's title to gain publicity.
Summary:
'Guardians of the Galaxy' actor Chris Pratt and 'Scary Movie' actress Anna Faris have filed for divorce to end their marriage of eight years citing irreconcilable differences.
Summary:
Actress Sanya Malhotra, who is set to star opposite Ayushmann Khurrana in the upcoming film 'Badhaai Ho!', has said, "It won't be anything rigorous.
Summary:
Karl shared a video on Instagram of Kaley after he proposed to her, in which she can be seen in tears.
Summary:
The project, estimated to cost â¹1.87 crore, has been launched on a trial basis for two months at two bus stands.
Summary:
The Calcutta High Court has directed the West Bengal government to declare dengue a 'notified disease' and issue a gazette notification.
Summary:
A school in Maharashtra's Latur district, which was criticised for allegedly expelling a rape victim in order to 'maintain its dignity', has been given a clean chit after a preliminary probe.
Summary:
Doctors successfully operated on a 50-year-old man in Maharashtra to remove 72 coins he had swallowed over a long period of time.
Summary:
The Delhi Police arrested a man on Friday for allegedly selling the same agricultural land to six different parties over five years.
Summary:
Former Prime Minister Manmohan Singh on Saturday said that he would not like to enter into any competition with Prime Minister Narendra Modi on their humble backgrounds.
Summary:
China's DAMPE satellite has found "mysterious" low-energy signals that scientists believe could help prove the existence of dark matter, thought to make up 27% of the universe.
Summary:
Recently, Xi's name and his political ideology were added to the party's constitution, making him China's most powerful leader since Mao Zedong.
Summary:
A French mother has confessed to the killing of her five babies, 14 years after the bodies of four babies were found in a forest.
Summary:
While 261 cases of acid attacks were reported in 2015, the number of cases reported in 2014 was 166.
Summary:
Recently, the government questioned the hospital over its treatment of those in the economically weaker category.
Summary:
Scientific papers of 17th-century physicist Isaac Newton from his time at Cambridge University have been added to UNESCO's International Memory of the World Register.
Summary:
The US Senate on Saturday voted 51-49 in favour of passing a bill which proposes the country's biggest tax overhaul in nearly 40 years.
Summary:
Lyricist of the film 'Padmavati' AM Turaz has said the Sanjay Leela Bhansali directorial would have been super hit if it had released on its original release date December 1.
Film distributor Rajesh Thadani said, "Padmavati would have ended the lull phase of Bollywood."
Summary:
Ex-Sri Lankan captain Kumar Sangakkara holds the record for most runs in a calendar year (2,868 in 2014).
Summary:
Indian captain Virat Kohli became the fastest batsman to score 16,000 runs in international cricket, achieving the feat in his 350th innings against Sri Lanka on Saturday.
Summary:
The Andhra Pradesh Assembly has unanimously passed a bill that provides 5% reservation in education and employment to the Kapu community.
Summary:
Canadian technology company BlackBerry has agreed to pay $137 million to Finnish technology company Nokia after the International Court of Arbitration ruled it failed to make certain payments to Nokia.
Summary:
Billionaire Elon Musk has revealed that SpaceX's Falcon Heavy rocket will carry his 'midnight cherry' coloured Tesla Roadster car to Mars orbit during its maiden launch in January 2018.
Summary:
A 52-year-old woman from Maharashtra was diagnosed with a calcified foetus which she carried for 15 years.
Confirmed with abortion, the woman complained about abdominal pain over the years but was prescribed painkillers and acidity pills by previous doctors.
Summary:
The US has formally opposed granting China market economy status at the World Trade Organisation (WTO).
Summary:
China has discovered an oil deposit which holds over one billion tonnes of crude oil with about 520 million tonnes of proven reserves, according to reports.
Summary:
Dia Mirza has shared a picture of her winning Miss Asia Pacific 17 years ago, which she captioned, "Completing a hat-trick of international wins for India." In the same year, Priyanka Chopra won Miss World while Lara Dutta won Miss Universe for India.
Summary:
Rampal will reportedly portray the role of an atheist in the film, which will be directed by Shailesh Varma.
Summary:
As per reports, Kangana Ranaut refused to sign a petition as part of Shabana Azmi's 'Deepika Bachao' campaign.
Summary:
'Ik Vaari Aa' by Arijit Singh was the second most streamed song while Badshah's 'Mercy' occupied the third spot.
Summary:
Kajol has said she never cancelled a shoot in her 25-year-long career.
Kajol further said the only time she took an off was when her daughter was unwell.
Summary:
Kids belonging to a gang from Madhya Pradesh stole valuables from guests while they were taking selfies and photographs during wedding functions in Mumbai, according to police.
Summary:
Around 300 private engineering colleges which have had less than 30% enrolment over the last five years, may be asked to stop functioning from the 2018-19 academic session, reports said.
Summary:
All India Majlis-e-Ittehadul Muslimeen Chief Asaduddin Owaisi has opposed the proposed legislation on Triple Talaq and called for unity among Indian Muslims to protect the Islamic religious law Shariat.
Summary:
Pandya said Pollard called his policeman friend, who tried to arrest him and "things got a little serious".
Summary:
The Indian cricket team sported the Armed Forces Flag badges to honour the Armed Forces Week on the first day of the third Test against Sri Lanka in New Delhi.
Summary:
The UN World Tourism Organization has appointed fictional character Hello Kitty as Special Ambassador of the 'International Year of Sustainable Tourism Development 2017'.
Hello Kitty will promote the 'Travel.
Summary:
As many as 600 Christmas trees have been illuminated at a park in United States' San Jose city in an attempt to break the Guinness World Record for the largest display of illuminated Christmas trees.
Summary:
The heavy military transport aircraft drew a large crowd of aviation enthusiasts to witness its landing.
Summary:
Scientists made gene expression in bacteria oscillate, and controlled the oscillation by adjusting digital communication between individual bacteria.
Summary:
It also said the visually-impaired were facing 'huge difficulty' due to change in the size of notes.
Summary:
IT major Infosys on Saturday appointed Salil Parekh as its new CEO and Managing Director, effective January 2, 2018.
Summary:
Palaniswami informed Modi about the destruction caused by the cyclone in the coastal areas of south Tamil Nadu.
Summary:
Summary:
Congress Vice-President Rahul Gandhi on Saturday questioned PM Narendra Modi why Gujarat is at the 26th position with regard to spending on government education in India.
Summary:
A video has emerged online wherein Gujarat CM Vijay Rupani is heard directing police officers to move a martyred BSF soldierâÂÂs daughter to the side during a rally.
Summary:
Summary:
Days after suspending his clean-up drive at Mumbai's Versova beach, city-based lawyer Afroz Shah has resumed the initiative on Saturday as the government has addressed all his concerns.
Summary:
New Delhi was the most Instagrammed Indian city of 2017, the photo-sharing app has revealed.
Summary:
Three senior managers from Uber's security unit have resigned from their position after the cab-hailing startup revealed it suffered a data breach in 2016, Uber confirmed.
Summary:
Union Minister Jayant Sinha on Friday clarified that there was no formal expression of interest from the Tatas in Air India stake sale.
Summary:
Bank of France Governor François Villeroy de Galhau has said, "Bitcoin is in no way a currency, or even a cryptocurrency." Bitcoin is a speculative asset and people must invest in it at their own risk, he added.
Summary:
Actor Rishi Kapoor has said even at the age of 65, getting good roles is great news for him.
Rishi further said, "Sometimes, the films work...
Sometimes, they don't work.
Summary:
The complainant allegedly learnt that the property was mortgaged to the bank since 2000.
Summary:
Pahlaj Nihalani has said he was bullied by the Information and Broadcasting Ministry into taking decisions during his tenure as the chief of the Central Board of Film Certification (CBFC).
Summary:
The couple had claimed the baby's wound was caused by a chemical cleaner.
Summary:
Senior IAS officer Anshu Prakash was appointed the Chief Secretary of the Delhi government on Friday, according to an order by the Ministry of Home Affairs.
Summary:
Summary:
Batsmen Virat Kohli and Murali Vijay became the first Indian pair to score over 150 runs each in a day's play as India ended the first day of the third Test against Sri Lanka at 371/4 on Saturday.
Summary:
A 65-year-old leprosy patient in Bengaluru stopped receiving her pension as her account was not linked to an Aadhaar card.
Summary:
Finance Minister Arun Jaitley on Saturday took a dig at Congress party, saying the party is slowly becoming extinct, while BJP has maintained its credibility.
Summary:
WWE star John Cena has been sued by American car manufacturer Ford for allegedly violating the company's contract by selling his $500,000 2017 Ford GT.
Summary:
Earlier, Twitter had said it believes there is "a legitimate public interest" in availability of the videos.
Summary:
Bengaluru-based digital comics startup Graphic India has raised $5 million in a funding round led by US-based company Liquid Comics.
Summary:
American electric car manufacturer Faraday Future's Vice President of Design Richard Kim has stepped down from his role in the company, according to reports.
Summary:
The women further alleged that Pishevar used his position of power to make unwanted sexual advances.
Summary:
The US government on Friday said that there has been no change in law regarding the H-1B visa system and it continues to be the same as before.
But so far no legislation has been passed on H-1B," the government added.
Summary:
Sinha said some subsidiaries could also be sold as part of the main airline and bidders would have the option to make multiple bids.
Summary:
Kohli also became only the third player after Sachin Tendulkar and Ricky Ponting to hit 11 international hundreds in a year.
Summary:
Meanwhile, Congress has fielded the most number of candidates with criminal cases.
Summary:
NASA has successfully tested the thrusters of its Voyager 1 spacecraft, the first ever man-made object to leave the solar system.
Summary:
Facebook CEO Mark Zuckerberg's sister Randi Zuckerberg has alleged she was sexually harassed by a male passenger on an Alaska Airlines flight.
Summary:
Nobel-winning Italian-American physicist Enrico Fermi conducted the first controlled, self-sustaining nuclear chain reaction on December 2, 1942, marking the start of the "Atomic Age".
Summary:
US President Donald Trump and Prime Minister Narendra Modi âÂÂexpressed satisfactionâ over the Global Entrepreneurship Summit that the countries co-hosted in Hyderabad last month, in a conversation over phone, according to the White House.
Summary:
The partnership between the world's oldest democracy the US and world's largest democracy India could be the defining partnership of the 21st century, ex-US President Barack Obama has said.
Summary:
Upon being asked if he would like to succeed PM Narendra Modi in future, Uttar Pradesh Chief Minister Yogi Adityanath on Friday recited a shloka which read, "I want that the affliction of all beings tormented by the miseries of life may cease".
Summary:
The Indian Medical Association (IMA) has ordered a probe after Max Super Speciality Hospital in Delhi's Shalimar Bagh allegedly declared a living baby dead.
Summary:
The passengers reportedly protested and tried to obstruct staff members handling other flights.
Summary:
On December 2, 1982, the world's first permanent artificial heart replaced a 61-year-old's heart, who survived for 112 days.
Summary:
Singer Selena Gomez dedicated her Billboard Woman of the Year Award to her friend Francia Raisa for donating her kidney to Selena.
Selena had revealed in September that she had undergone a kidney transplant due to complications arising from lupus, an auto-immune disease she suffers from.
Summary:
Katrina Kaif, Kareena Kapoor and Miss World Manushi Chhillar were among the personalities who attended the Filmfare Glamour & Style Awards.
While Katrina wore a gown by Jean Paul Gaultier, Kareena was seen in a white sheer gown by Galia Lahav.
Summary:
While the film will release in the US on May 4, 2018, it will release in India on April 27, 2018.
Summary:
Adam Purinton, the 52-year-old man accused of killing an Indian techie and injuring two others at a bar in United States' Kansas city in February, has pleaded not guilty.
Summary:
After the discussion, the solutions will be presented to Chief Minister Devendra Fadnavis on Saturday.
Summary:
Brihanmumbai Municipal Corporation has decided to terminate contracts with several contractors over non productivity after receiving complaints of dirty roads from residents despite providing contractors with mechanised sweeping machines.
Summary:
Former boxing world champion Floyd Mayweather, who is on a tour of China, has adopted a baby giant panda in Chengdu.
Summary:
External Affairs Minister Sushma Swaraj, during the Shanghai Cooperation Organisation (SCO) in Russia, said that terrorism "could not and should not" be associated with any religion, nationality, or ethnic group.
Summary:
The Asian Championships is serving as a qualification tournament for the 2018 Youth Olympics in Buenos Aires.
Summary:
Over 1,400 patients who tested positive for HIV in Mumbai have been put on antiretroviral therapy (ART) since June.
Summary:
Indian captain Virat Kohli scored his career's fastest Test half-century, achieving the milestone in 52 balls, at his home ground Feroz Shah Kotla in Delhi during the third Test against Sri Lanka on Saturday.
Summary:
Mysuru-based 42-year-old flying instructor Audrey Deepika Maben is set to fly around the world on a two-seater microlight plane with her 19-year-old daughter, covering over 20 countries in 80 days.
Summary:
A 70-year-old woman living in a retirement home experimented with homemade ricin and tested it on fellow residents, the US Justice Department said on Friday.
Summary:
Six youths, aged between 20 and 22, have been arrested for allegedly trying to travel to Bolivia via Ethiopia on fake visas.
Summary:
Swiss researchers have developed a biocompatible ink based on hydrogels for 3D printing using living bacteria.
The team used the bacteria P.
Summary:
Exiled Tibetan spiritual leader Dalai Lama met former US President Barack Obama in New Delhi on Friday and said, "I think we are really two old trusted friend(s)." It was the sixth meeting between the two Nobel Peace Prize laureates and the first since Obama left office in January this year.
Summary:
Ex-US National Security Adviser Michael Flynn on Friday pleaded guilty to lying to the FBI about his contacts with Russia.
Summary:
Miss Korea Jenny Kim was crowned Miss Supranational 2017 on Friday in Poland.
Summary:
A pamphlet was circulated at Dharamshala cantonment on Friday alleging that a Brigadier and his wife were ill-treating the troops and their families.
Summary:
India registered only three wins out of the 22 Tests played at the Feroz Shah Kotla until 1987.
Summary:
India's Shiva Keshavan retained his gold medal at the Asian Luge Championships in Germany on Friday.
Summary:
India has been re-elected to the Council of the International Maritime Organisation (IMO) in Category-B which represents the developing countries and countries with largest interests in international sea-borne trade.
Summary:
Congress leader Shehzad Poonawalla has alleged that Congress spokesperson Manish Tewari told him during a conversation that Congress was a "proprietorship" like every other political party.
Summary:
After an Indian transgender asked Former US President Barack Obama how she can raise her voice being a 'criminal' according to Section 377 of the Indian Penal Code, Obama encouraged her to articulate her views.
Summary:
Telangana Police have denied there was any security breach during the dinner PM Narendra Modi hosted for US First Daughter Ivanka Trump on Tuesday.
Summary:
Notably, airlines face fines for dumping human waste mid-air.
Summary:
Sweden was the first to achieve successful post-transplant births in 2012.
Summary:
Russia would not be surprised if a war breaks out in North Korea, the Russian National Security Council's Secretary Nikolai Patrushev has said.
Summary:
Three former Trump aides had previously been charged with making false statements.
Summary:
A rare original Greek copy of Jesus' secret teachings to his brother James has been discovered by scholars.
Summary:
The US government had been able to find "no evidence" that the Pakistan government was aware of 9/11 attacks mastermind Osama bin Laden's presence in the country, ex-US President Barack Obama has said.
Summary:
A woman from Assam has weaved 500 verses of the Bhagwat Gita on cloth in Sanskrit and a chapter in English.
Summary:
Summary:
"We express deep regret at having caused distress to Priyanka and her fans," the statement further read.
Summary:
Karan Johar has apologised for objectifying women in item songs like 'Chikni Chameli' featured in films produced by him.
Summary:
The word 'populism' has been announced as Cambridge Dictionary's Word of the Year 2017.
Summary:
The arrested Lashkar-e-Taiba (LeT) terrorist Aamir Ben Reyaz, has confessed to the National Investigation Agency that Pakistani army provided him cover firing to infiltrate into India.
Summary:
Yuvraj was awarded the degree for his "extraordinary sporting prowess and as a catalyst of change with great integrity and humility".
Summary:
Lanba further said that the Navy has analysed the "form and fit" for the second indigenous carrier.
Summary:
Women officers will soon be serving onboard naval ships as the new ships are being constructed with "suitable facilities" to include women sailors, Indian Navy chief Sunil Lanba said on Friday.
Summary:
Australia captain Steve Smith described England's James Anderson as "one of the biggest sledgers in the game" on Friday ahead of the second Ashes Test in Adelaide.
Summary:
A US man has sued an amusement park alleging that he contracted an eye-eating parasite on one of its water rides.
Summary:
The White House is infested with cockroaches, mice and ants, building maintenance files have revealed.
Summary:
'Bigg Boss 11' was the most searched Indian TV show in 2017 in India, as per a list by Yahoo India.
Summary:
The Indian Navy's only nuclear-powered attack submarine, INS Chakra, suffered damage to its sonar dome, Navy Chief Admiral Sunil Lanba said on Friday.
Summary:
Uttar Pradesh Chief Minister Yogi Adityanath on Friday said that the parties involved in the Ram Janmabhoomi-Babri Masjid dispute should wait for the Supreme Court's decision.
Summary:
Defending European champions Portugal and 2010 World Cup winners Spain will face each other in the group stage of the 2018 FIFA World Cup. The tournament's defending champions Germany have been placed along with Mexico, Sweden, and South Korea.
Summary:
The Union Cabinet on Thursday approved the setting up of the National Nutrition Mission, with a three-year budget of â¹9046.17 crore, to target the problems of malnutrition, stunting, and low birth weight babies.
Summary:
The Delhi transport department will soon launch e-auctioning of fancy registration numbers for two-wheelers.
Summary:
In an apparent reference to Pakistan, Vice President Venkaiah Naidu on Friday said that one of India's neighbours has made terrorism a 'state policy' and was training, funding, and abetting terrorists to send them to India.
Summary:
Hindu Jagran Manch, an RSS-affiliated group, has planned to marry off Muslim girls to Hindu men in a campaign titled 'Beti Bachao, Bahu Laao' (Save daughters, bring daughters-in-law) as a counter to 'love jihad'.
Summary:
The Pentagon has indefinitely delayed a plan to ban the use of older types of cluster bombs that was due to take effect in 2019.
Summary:
China's capital Beijing has banned fireworks to combat air pollution and reduce firework-triggered accidents ahead of the Lunar New Year celebrations, the state media said.
Summary:
Earlier, there were reports that director Rajkumar Hirani wanted Aamir to play the role of Sanjay's father Sunil Dutt.
Summary:
"You know, most people walk away...divorce rate is like 50 percent or something...The hardest thing is seeing pain on someone's face that you caused, and then have to deal with yourself," said Jay Z.
Summary:
Actor Salman Khan has said that Katrina Kaif is one of the best dancers today while adding, "Priyanka Chopra, Deepika Padukone, girls who are considered dancers...
Summary:
Britain's Prince Harry and his fiancée Meghan Markle on Friday marked their first joint royal visit as the couple visited the English city of Nottingham to attend a World AIDS Day charity fair.
Summary:
nSri Lankan captain Dinesh Chandimal has said he is surprised that India said they are using the ongoing series to prepare for South Africa as the pitches do not look like South African wickets.
Summary:
India has reportedly begun building six nuclear-powered attack submarines, amid China's growing military presence in the Indo-Pacific region.
Summary:
Speaking about the Maoist rebellion in Chhattisgarh, Chief Minister Raman Singh on Friday said that the "red corridor" will become the "green corridor of peace and development".
Summary:
Both jawans were arrested after the girl reported the incident to the Government Railway Police at Etawah railway station.
Summary:
Referring to North Korean leader Kim Jong-un, US President Donald Trump has described the "Little Rocket Man" as a "sick puppy", while speaking at an event in Missouri.
Summary:
"As far as Rahul Gandhi is concerned, Shiv Bhakti is being practised in his home," Babbar added.
Summary:
A video shows the work culture at co-working space 91springboard, which offers both private and open work stations.
Summary:
Mumbai Congress President Sanjay Nirupam termed the incident as an "act of cowards by...frustrated MNS workers".
Summary:
The National Green Tribunal on Thursday issued warrants against 25 hookah bars in Delhi after their owners failed to appear before it despite notices being issued to them.
Summary:
NASA has shared an image of a "cosmic photobomb", where a pair of supermassive black holes is seen in the background of the nearby spiral galaxy Andromeda.
Summary:
A Chinese man, dubbed as 'tomb raider' has been awarded a death sentence suspended for two years for stealing over 2,000 ancient relics.
Summary:
Oskar Groening was found guilty of being an accessory to the murders of 3 lakh people at the Auschwitz death camp during WWII.
Summary:
Zimbabwe's President Emmerson Mnangagwa has appointed high-ranking military officials to top posts in the new cabinet.
Summary:
US financial markets company CME Group has said it will launch its Bitcoin futures contract on December 18 to provide a regulated trading platform for the cryptocurrency futures market.
Summary:
"This wholesome family entertainer is certainly worth your time," wrote Times Of India, while The New Indian Express wrote that the film "has a universal appeal".
Summary:
Comedian Sorabh Pant has released his third book, 'Pawan: The Flying Accountant'.
Summary:
The government's draft law criminalising instant Triple Talaq, which allows a man to divorce his wife by saying the word "Talaq" thrice, proposes a three-year jail term and a fine for offenders.
Summary:
Karnataka is the second safest state in south India, coming only after Andhra Pradesh, with 286.8 crimes per one lakh people, according to a report by the National Crime Records Bureau (NCRB).
Summary:
Ganguly said he told selectors he will not sign the team sheet without Kumble in it.
Summary:
The Bharatiya Janata Party (BJP) has won 14 mayoral seats in the Uttar Pradesh municipal elections, while the Bahujan Samaj Party has won two seats.
Summary:
Kohli is the highest ranked Indian T20I allrounder with 190 rating points and is followed by Yuvraj Singh at the 19th position.
Summary:
The infant is currently admitted to another hospital and is undergoing treatment.
Summary:
Technology giant Google has launched Datally app that lets users control and monitor their data usage in real-time.
Summary:
A Swedish court on Thursday sentenced a man to 10 years in prison, after finding him guilty of 'online rape'.
Summary:
Reliance Industries Chairman Mukesh Ambani has said that some of us are "big boys" and can afford losses as long as the consumer gains and the country moves forward.
Summary:
Fashion designer Manish Malhotra shared a selfie with Sridevi, who reportedly features in a cameo appearance, and Janhvi from the shoot in Udaipur.
Summary:
Television actress Aashka Goradia, known for her role as Kumud in the serial 'Kkusum', has married her American boyfriend Brent Goble in a Christian wedding.
Summary:
All for money." The 81-year-old actor further said that money was not everything in their time.
Summary:
Actress Kiara Advani, known for starring in the biopic on MS Dhoni, will star opposite Vicky Kaushal in a segment directed by Karan Johar in 'Bombay Talkies 2.0'.
Summary:
Salman Khan, on being asked about nepotism in Bollywood, jokingly said, "I got to know the meaning of it only after Kangana Ranaut talked about nepotism." "If the person is talented, he should be given films...Talent management companies need to concentrate on people who have potential," he added.
Summary:
When asked to comment on the ongoing row over the film 'Padmavati', filmmaker Anurag Kashyap said, "My opinion will not solve the issue." He added, "Constant talk on the topic is creating more fear in our mind...By asking the question, media did not solve the issue but paid attention to some regional groups.
Summary:
Samsung has filed for a patent that intends to use palm scanning to help users remember forgotten passwords.
Summary:
Former world champion Garry Kasparov trolled an Indian fan by asking him to "stay off Twitter" after the latter asked him for a strategy to win a chess tournament.
Summary:
Bas cape missing hai, Kaifu ;) Have a super day and year ahead, @MohammadKaif." Meanwhile, Virender Sehwag wrote, "Happy Birthday @MohammadKaif .
Summary:
The patent describes a drone that will feature a 'fragmentation controller' which will detect disruption in the drone's flight and in response will destruct itself.
Summary:
Gangadhar had been working with Cruise since September this year.
Summary:
Turkish President Recep Tayyip ErdoÃÂan personally intervened in a scheme that allowed Iran to evade US sanctions, a trader who laundered billions of dollars on behalf of Iran claimed.
Summary:
Pope Francis on Friday asked the Rohingya refugees for "forgiveness" in the name of all of those who "hurt" them.
Summary:
RBS said it will use the savings to invest in its smartphone offering, which has seen mobile transactions rise over 70% since 2014.
Summary:
Goalkeeper Conner Byrne made his senior team debut aged just 14 years and 245 days for the Irish club Glenavon FC against Portadown earlier this week.
Summary:
Windies' Sunil Ambris on Friday became the first-ever batsman to be dismissed hit-wicket on the first ball of his Test career.
Summary:
Five-time world champion Mary Kom has resigned as the national observer for Indian boxing after Sports Minister Rajyavardhan Rathore said that active sportspersons will not be considered for the position.
Summary:
Slamming Bihar Chief Minister Nitish Kumar, RJD chief Lalu Yadav on Thursday tweeted, "Do u know a Dentist who can fix the tooth in stomach?
Summary:
President Ram Nath Kovind on Friday inaugurated the Hornbill Festival and State Formation Day celebrations in Nagaland.
Summary:
"We are in the age of super intelligence.
What manufacturing was for China, super intelligence can be for India," he further said.
Summary:
Japanese automaker Nissan has begun international arbitration against India to seek over $770 million in a dispute over unpaid incentives, according to documents reviewed by Reuters.
Summary:
Paytm Founder & CEO Vijay Shekhar Sharma, while speaking at an event said that he is a fanboy of SoftBank CEO Masayoshi Son. Sharma added that he is also smitten by what Alibaba Founder Jack Ma is building.
Summary:
After doctors injected a cancer drug nivolumab, they observed a sustained drop in HIV reservoirs with increased activity of T-cells signalling a boost in immunity.
Summary:
Amid the ongoing evolutionary biology debate whether comb jellies or sponges represent the oldest lineage of living animals, a UK team-led genetic study has claimed the latter.
Summary:
Micro-artist Hasan Kale has painted on 350 different objects in the past 22 years.
Summary:
Ambani said, "My father is my biggest influence, he treated me as his friend.
I hope I can treat my children the same way."
Summary:
Sinha further said the government had appointed legal, transactional and asset value advisors for the airline's disinvestment.
Summary:
'Tera Intezaar' is another "weird supernatural film featuring Sunny Leone," said Hindustan Times (HT) while Firstpost called the film a "messy mystery".
Summary:
While talking about being body-shamed, actress Vidya Balan said the word 'moti' is not an expletive for her.
Because if I talk about your brain...
Summary:
Summary:
Actor Dharmendra has said that Amitabh Bachchan acknowledges now that he was recommended by Dharmendra for the 1975 film 'Sholay'.
Summary:
The victim, despite being critically injured, retaliated and attacked the help using the same knife.
Summary:
Delhi Lieutenant Governor Anil Baijal has approved the promotion of several teachers, in a move aimed at filling over 16,000 posts, including 1,000 for principals and vice-principals in the city's government-run schools.
Summary:
Puducherry CM V Narayanasamy on Friday asked industries and commercial establishments to provide jobs to HIV/AIDS affected persons, in order to help them become an active part of society.
Summary:
Caller ID app Truecaller has said that it is not a malware and is a Sweden-based company after the Union Home Ministry directed Army personnel to uninstall the application.
Summary:
Elon Musk-led space exploration startup SpaceX has delayed the maiden launch of its Falcon Heavy rocket, which it claims is the world's most powerful rocket.
Summary:
Mumbai-based mobile gaming company Nazara has raised â¹330 crore in funding from IIFL Special Opportunities Fund.
Summary:
US-based researchers are developing an injectable gel which was shown to regenerate heart muscles injured after heart attack in mice.
Summary:
The woman who was wrongly tagged by US President Donald Trump in a tweet criticising UK PM Theresa May has demanded an apology from the White House, saying she hasn't been able to leave her home.
Summary:
Kim Jong-nam, the half-brother of North Korean leader Kim Jong-un, was carrying an antidote to the poison which killed him, a Malaysia court has heard.
Summary:
At least 800 civilians have been killed in air strikes by the US-led coalition in Iraq and Syria, according to a coalition report.
Summary:
Mount Everest was named after Sir George Everest, who was the former Surveyor-General of India.
Summary:
and humorous candour." It was rated 2/5 (Bollywood Hungama, TOI) and 4/5 (The New Indian Express).
Summary:
The Supreme Court on Friday sought response from Centre and the Election Commission on a PIL seeking to restrain convicted politicians from running and holding posts in political parties.
Summary:
Singhvi had alleged that the government's Rafale aircraft deal promoted the interest of Reliance.
Summary:
Addressing an event in New Delhi, former US President Barack Obama said that it is too difficult to make chapatis as it is "hard to get it all right and flaky".
Summary:
The museum has 50 life-like wax figures of celebrities in the fields of sports, music, films, politics, among others.
Summary:
China is helping Pakistan build permanent bunkers along the border with Gujarat and Rajasthan, according to an India Today report.
Summary:
After the University Grants Commission (UGC) sent a final warning to 7 institutes to drop 'University' from their names or risk losing their deemed-to-be university status, Symbiosis and Christ have complied with the order.
Summary:
Virat Kohli described his 141 against Australia in Adelaide in 2014 as his best Test century, saying that the confidence the team got in that match laid the foundation of the current number one status.
Summary:
The Supreme Court on Friday dismissed a plea filed by an NGO seeking a Special Investigation Team probe into bribery charges against judges over an order in favour of a Lucknow-based medical college.
Summary:
Facebook-owned messaging service WhatsApp went down on Thursday, affecting the users worldwide, WhatsApp has confirmed.
Summary:
He added that he was on a call with Alibaba Founder Jack Ma to negotiate an investment deal while on his way to Amazon's office.
Summary:
Finance Minister Arun Jaitley on Friday tweeted saying that Rahul Gandhi's suggestion of a single GST rate of 18% was a grand stupid idea.
Summary:
While speaking at a summit in New Delhi on Friday, Barack Obama said that he is the first US President to know how to make daal.
Summary:
While speaking at a summit in India, former US President Barack Obama told the audience that one should think before tweeting so that they do not need to delete it later.
Summary:
Argentina has called off the rescue operation for the 44 crew members of the submarine that went missing earlier this month.
Summary:
The Pikachu and Hello Kitty characters will be used on gifts and pamphlets, and help promote Japan's bid.
Summary:
India's richest person Mukesh Ambani, who has a fortune of $40.7 billion, has said that he never carries money and doesn't even have a credit card.
Summary:
Blankfein said he doesn't consider Bitcoin a store of value.
Summary:
"What will I do with looks?
I am good-looking enough to balance it out," she jokingly added.
Summary:
The amount is the same what the central government offers to the Olympic medal winners.
Summary:
Indian Navy Chief Admiral Sunil Lanba has said that it was "odd" for China to deploy submarines for anti-piracy operations in the Indian Ocean, adding submarines weren't suitable platform for such operations.
Summary:
The Enforcement Directorate on Friday conducted raids at six locations in Chennai and Kolkata, including Congress leader P Chidambaram's relatives' residences, in connection with money laundering probe in the Aircel-Maxis case.
Summary:
The officers are hoping to reunite the camera with its owner.
Summary:
Its members can travel together, share their experiences with other tourists, and attend social events like lunches and dinners.
Summary:
A new series of river cruises will specifically cater to the age group of 21 to 45 years.
Summary:
The Netherlands and UK-based researchers have prolonged lifespans of flies and worms by 10% by limiting the activity of an enzyme common across animal species, including humans.
Summary:
It surpassed the record set by the trailer of the 2017 supernatural horror film 'IT', which received 197 million views in the first 24 hours.
Summary:
The Delhi High Court on Friday refused to restrain journalist Arnab Goswami and his news channel Republic TV from airing news on Congress MP Shashi Tharoor's wife Sunanda Pushkar's death.
Summary:
Finance Minister Arun Jaitley on Thursday said the government does not recognise cryptocurrency as legal tender as of now.
Summary:
Miss World 2017 Manushi Chhillar praised Indian captain Virat Kohli, calling him an inspiration and asked him how he would give back to children in the field of cricket.
Kohli replied, "[W]hen you do what you do...
Summary:
Patna DIG Rajesh Kumar has ordered to cease 70 Station House Officers' (SHOs) salaries for the month of November for showing indiscipline and negligence in their work.
Summary:
According to the data, six victims were below 6 years of age, 13 under 12, 67 below 16, and 69 below 18 years of age.
Summary:
Addressing a summit in Delhi, Former US President Barack Obama hailed former Indian Prime Minister Manmohan Singh, saying he laid the foundation of modern Indian economy.
Summary:
Congress Vice-President Rahul Gandhi while campaigning in poll-bound Gujarat promised to waive loans of farmers and provide free education in government-aided colleges if the Congress comes to power.
Summary:
Obama is the only US President to visit India twice while holding office.
Summary:
Scallops, known as a seafood delicacy, can have up to 200 eyes that function like a telescope, using layered mirrors to focus light unlike most animal eyes which have lenses, an Israel-based study has revealed.
Summary:
The nanogenerators based on piezoelectric effect convert mechanical energy to electrical and can generate power with body movements like tapping of fingers and throat vibrations.
Summary:
UK PM Theresa May on Friday repeated that US President Donald Trump was wrong to retweet the three anti-Muslim videos posted by a British far-right group.
Summary:
At least nine people were killed and over 30 others were injured on Friday after Taliban's gunmen in burqas attacked an agriculture college in the Pakistani city of Peshawar.
Summary:
A rehabilitation centre in Saudi Arabia which houses terrorists linked to groups such as al-Qaeda and Taliban has facilities similar to a five-star hotel.
Summary:
Saudi Arabia on Thursday intercepted a second ballistic missile fired towards it this month by Yemen's Houthi rebels.
Summary:
He said he'll carry the burden that he couldn't free himself.
Summary:
I thought changing the signs would make my commute smoother." The traffic police said his actions could have caused an accident.
Summary:
PM Narendra Modi told Miss World Manushi Chhillar that she is India's daughter who made the nation proud, as per Manushi's father Mitra Basu Chhillar.
Summary:
"I have been working 24 hours since the age of 15...and only worked all my life," he added.
It's a nice, hard-working man's life that I have led."
Summary:
Salman and Katrina will be seen together in the upcoming film 'Tiger Zinda Hai'.
Summary:
After cashless payment was introduced at ticket counters post note ban, only 3% of the total passengers are using credit/debit cards for buying tickets, as per government data.
Summary:
Former US President Barack Obama on Friday said that he told Prime Minister Narendra Modi "in person" that a country should not be divided on sectarian lines.
Summary:
With BJP leading in the Uttar Pradesh municipal elections, BJP leader Subramanian Swamy on Friday tweeted, "UP local bodies elections BJP rides the Ram Mandir wave.
Summary:
The South Delhi Municipal Corporation (SDMC) will install idols of goddess Saraswati at its 582 primary schools.
Summary:
Brihanmumbai Municipal Corporation will launch a mobile app with a digital map of civic amenities of 17 departments, including major ones like roads, fire, stormwater drains, building proposals and health, based on geographical information system.
Summary:
The Nationalist Congress Party (NCP) is set to launch an 11-day march called 'Halla Bol Padyatra' against the BJP-led state government on December 1.
Summary:
The team demonstrated gold nanoparticle-coated liposomes, which are spherical sacs enclosing a watery core that can be used to carry drugs into desired tissues.
Summary:
The state recorded 1,016 corruption cases in 2016, which is around 23% of the total corruption cases in India during the year.
Summary:
At least four people in Tamil Nadu and four in Kerala have died after Cyclone 'Ockhi' hit the region on Thursday.
Summary:
The study revealed pterosaurs laid soft-shell eggs, difficult to fossilise, like modern-day lizards, rather than hard-shell eggs like birds.
Summary:
Japan's Emperor Akihito will renounce his throne on April 30, 2019, becoming the country's first monarch in 200 years to abdicate.
Summary:
A lobster with the blue and red Pepsi logo imprinted on its claw has been found off Canada's coast by fishing crew member Karissa Lindstrand.
Summary:
Actress-turned-author Twinkle Khanna has said she realised she had failed spectacularly as an actress after spending eight years in Bollywood.
Summary:
Actors Salman Khan and Priyanka Chopra have featured on American magazine Variety's list of 500 most influential business leaders in the entertainment industry.
Summary:
PM Narendra Modi on Thursday paused halfway through his election rally speech in Gujarat's Navsari district, waiting for the Azaan from a nearby mosque to complete before continuing.
Summary:
Prime Minister Narendra Modi on Friday extended greetings to the Border Security Force personnel and their families on BSF Raising Day, saying that BSF exemplifies fortitude and impeccable service to the nation.
Summary:
"We do not want to commercialise this thing.
We don't want to do 'dalali' (wheeling-dealing) over it," Gandhi added.
Summary:
Indian Railways will accept payments through Unified Payments Interface (UPI) and Bharat Interface for Money (BHIM) app for booking railway tickets from reservation counters Friday onwards.
Summary:
China's military on Thursday said that the disputed Doklam region is "Chinese territory" and it will decide on the deployment of troops in the region on its own.
Summary:
Congress Vice-President Rahul Gandhi slammed BJP-led Gujarat government, alleging that it purchased â¹3/unit electricity for up to â¹24 from private firms after reducing government-run power plants' capability by 62%.
Summary:
A Nairobi-Istanbul Turkish Airlines flight was diverted to Sudan after the detection of a Wi-Fi network called 'bomb on board', the airline said on Thursday.
Summary:
The human immunodeficiency virus (HIV) which lowers the body's ability to fight off infections leading to acquired immune deficiency syndrome (AIDS), was discovered by French researchers Françoise Barré-Sinoussi and Luc Montagnier in 1984.
Summary:
Astronomers have discovered 72 galaxies using ESO's Very Large Telescope (VLT) in Chile as part of the deepest spectroscopic survey ever conducted.
Summary:
A tourist from Bihar has been booked for creating nuisance on the Delhi-Dharamshala Volvo bus, after he got into an altercation with a co-passenger over stench from his socks, reports said.
Summary:
Customs officials found around 200 live cockroaches upon opening an elderly couple's hand luggage at an airport in China.
Summary:
Australian Tourism Minister Steven Ciobo said he has extended a written invitation to Prince Harry and Meghan Markle to visit Australia for their pre-wedding celebrations and an "amazing romantic honeymoon".
Summary:
The song 'Sexy Barbie Girl' from the Arbaaz Khan and Sunny Leone starrer 'Tera Intezaar' has been cleared by the Delhi High Court after the word 'Barbie' was replaced with 'baby'.
Summary:
Ranveer Singh has revealed he googles himself anywhere between 5-15 times a day.
Talking about being an actor, Ranveer further said, "Each day I wake up and can hardly believe it â Yaar main Hindi film ka hero ban gaya.
Summary:
A 68-year-old man accidentally shot his 22-year-old grandson in the chest during target practice when the latter stepped in front of him as he fired, US police said.
Summary:
Following this, the girl's family rushed her to a hospital and registered an FIR against the teacher and school authorities.
Summary:
BJP's Bengal unit has written to Union Human Resource Development Minister Prakash Javadekar after a school allegedly distributed maps during an exam that showed parts of Kashmir in Pakistan, and parts of Arunachal Pradesh in China respectively.
Summary:
PM Narendra Modi on Friday greeted Nagaland on its 54th Statehood Day and hoped for the state to "scale new heights of development" in the times to come.
Summary:
The state saw 2,23,360 cases filed by the RPF, followed by Uttar Pradesh (1,24,720) and Madhya Pradesh (98,964).
Summary:
The US State Department has said it has been assured by the White House that there are no plans to oust State Secretary Rex Tillerson and replace him with CIA Director Mike Pompeo.
Summary:
The Brihanmumbai Municipal Corporation has slapped a â¹10,000 fine on Mantralaya, headquarters of the Maharashtra government, for failing to segregate and compost waste.
Summary:
Earlier, Congress Vice President Rahul Gandhi was accused of entering as non-Hindu at Somnath Temple.
Summary:
The Andhra Pradesh Legislative Assembly on Thursday passed a resolution requesting the Centre to provide "not less than 33%" reservation for women in Parliament and legislatures.
Summary:
The Pakistan Cricket Board (PCB) has sent a notice of dispute against the BCCI to the ICC for not honouring a bilateral cricket series agreement.
Summary:
US-based Cisco's Executive Chairman John Chambers has picked 10% stake in Chennai-based IT startup Uniphore, the startup said on Thursday.
Summary:
The value of US dollar grew 10,768% against the Venezuelan bolÃÂvar over the past two years in the black market.
Summary:
Nobel Peace Prize winner ICAN's campaign to ban nuclear weapons will not make the world more peaceful, the US Embassy in Norway has said.
Summary:
Earlier, GST on 178 goods was reduced to 18% from 28%, leaving only 50 items in the highest slab.
Summary:
Congress leader P Chidambaram has said that improvement in GDP growth to 6.3% in the September quarter is "a pause in the declining trend of the last five quarters".
Summary:
On being questioned about casting couch in Bollywood, actor Salman Khan said, "I've never...heard of such an incident.
Summary:
The first promotional video of Shah Rukh Khan's upcoming show 'TED Talks India Nayi Soch', the Hindi version of the international show 'TED Talks', has been released.
Summary:
Real Madrid forward and Portuguese captain Cristiano Ronaldo on Thursday took to Instagram to share a video of his seven-year-old son Ronaldo Jr scoring a free-kick from a distance during a youth game.
Summary:
Former Australian captain Michael Clarke has said that he should have retired after the death of his friend and teammate Phillip Hughes on November 27, 2014.
Clarke revealed that he cried himself to sleep every night during Australia's tour of Windies in 2015.
Summary:
After a 37-year-old man was rescued after being trapped between boulders at Karnataka's Gaganachukki waterfalls for 51 hours, the Forest Department has booked him for trespassing.
Summary:
Railway Board Chairman Ashwani Lohani on Thursday said train accidents between April 1 and November 30 this year went down by 40% from 2016.
Summary:
Reacting to Maharashtra CM Fadnavis praising North Indians for adding to Mumbai's "prestige", Maharashtra Navnirman Sena leader Nitin Sardesai claimed Fadnavis made the statement for votes.
Summary:
The Indian Meteorological Department has dismissed rumours that Cyclone Ockhi could trigger a tsunami in the Bay of Bengal region bordering Tamil Nadu.
Summary:
Former Australian batsman Matthew Hayden has said that though Ravichandran Ashwin's statistics are "simply phenomenal", he is not as attacking off-spinner as Harbhajan Singh was.
Summary:
In order to safeguard their 'deemed-to-be' university status, seven Pune institutes have agreed to drop the 'university' tag from their names, as per the directive issued by the University Grants Commission.
Summary:
Following the instruction, police stations have been asked to launch a crackdown on arms suppliers across the city.
Summary:
Gujarat Police has filed charges against Patidar leader Hardik Patel and six others for disturbing peace and breaking the law by holding a rally at Mansa despite not being given permission.
Summary:
The Bombay High Court on Wednesday revoked the stay on Metro-3 construction work opposite the JN Petit Institute, a heritage building.
Summary:
The male coach of Thailand women's kabaddi team wore a hijab to enter an arena and watch matches during the Asian Kabaddi Championship tournament in Gorgan, Iran.
Summary:
The conman, Kanhaiya Kumar, had requested the CVC to ensure Prasad got more responsibilities within his organisation.
Summary:
Scientists found the transparent layer neither transmitted nor reflected incident electromagnetic radiation when its intensity was exponentially increased.
Summary:
Chinese customs officials have seized nearly 12 tonnes (12,000 kg) of pangolin scales from a ship in Shenzhen, the biggest volume seized by Chinese customs in any single case.
Summary:
In an apparent reference to US President Donald Trump, UN High Commissioner for Human Rights Zeid Ra'ad Al Hussein on Thursday condemned "populists" who spread "hatred through tweets".
Summary:
Filmmaker Sanjay Leela Bhansali has told the Parliamentary panel he met on Thursday that his film 'Padmavati' is not based on history but on the poem 'Padmavat' written in 1540 by Sufi poet Malik Muhammad Jayasi.
Summary:
"Media is leaving Bollywood behind in screaming.
In Bollywood, one person screams, in media everyone is doing that," added Salman.
Summary:
Journalist Naveen Srivastava was shot dead by unidentified assailants on Thursday in Bilhaur area of Uttar Pradesh' Kanpur.
Summary:
Denying reports that the Gujarat government issued a grant to Tata Motors, the company clarified that it was a nearly â¹590-crore loan.
Summary:
This comes months after the BCCI doubled annual retainer amounts of Team India, with Grade A players earning â¹2 crore.
Summary:
Earlier this year, reports claimed that Tillerson had called Trump a "moron" and threatened to resign from his post.
Summary:
Claiming that charges against 26/11 Mumbai terror attack mastermind Hafiz Saeed are mere "allegations", Pakistan Prime Minister Shahid Khaqan Abbasi on Thursday said that India has provided "no evidence" against the UN-designated terrorist.
Summary:
French bank Societe Generale Chairman Bini Smaghi has called Bitcoin a scam that is used to evade taxes and bypass legislation on money laundering and anti-terrorist financing.
Summary:
Nobel Prize-winning economist Joseph Stiglitz has said that Bitcoin "ought to be outlawed" as it doesn't serve any socially useful function.
Summary:
Actor Sanjay Dutt took to Instagram to share an old picture with his parents, late actor Sunil Dutt and late actress Nargis Dutt.
While Nargis Dutt passed away in 1981 due to cancer, Sunil Dutt passed away in the year 2005.
Summary:
Earlier, when asked to state his religion Salman had said that he is an Indian.
Summary:
Haryana Chief Minister Manohar Lal Khattar and Miss World Manushi Chhillar on Thursday announced that the state government will provide free sanitary napkins for all girls in government schools.
Summary:
Hizbul Mujahideen chief Syed Salahuddin's son, Syed Shahid Yusuf, was among 18 prisoners injured in a scuffle with security guards at Tihar Jail, officials said.
Summary:
Stating that members of legislative assemblies represent everyone in their constituency, President Ram Nath Kovind on Thursday said they must be fair to even those people who didn't vote for them or opposed them.
Summary:
The Indian Army has gifted a T-55 Russia-made battle tank to Pune-based Savitribai Phule Pune University's Department of Defence and Strategic Studies in a function on Wednesday.
Summary:
Summary:
Prime Minister Narendra Modi on Thursday invoked late President APJ Abdul Kalam to urge the Indian media to give up negativity and focus on positive development to help give direction to the country.
These were Kalam's words," PM Modi said.
Summary:
A Central Industrial Security Force (CISF) trooper shot his wife, his colleague and the colleague's wife dead with his service rifle on Wednesday night in Jammu and Kashmir's Kishtwar district.
Summary:
This comes after a pilot project by the KEM Hospital, which provided accommodation to over 1,500 people, was well received.
Summary:
The Brihanmumbai Municipal Corporation has asked actor Salman Khan to promote its 22-km cycling track, which it plans to inaugurate this Sunday.
Summary:
A group of unidentified persons set BJP leader Farooq Ahmad's newly constructed house on fire in Jammu and Kashmir's Sopore on Wednesday night.
Summary:
Inter-personal abuse, whether sexual or non-sexual, remains a major problem in our society, the court added.
Summary:
After reports claimed that Congress Vice President Rahul Gandhi entered the Somnath Temple after registering as a non-Hindu, Union Minister Uma Bharti has advised the party President Sonia Gandhi and Rahul to read the Bhagavad Gita.
Summary:
This comes after Shakuntala Gamlin was made the acting Chief Secretary in 2015, allegedly without consulting the AAP government.
Summary:
Summary:
Summary:
The last Pope to visit Bangladesh was John Paul II who had ridden in a rickshaw pulled by a Catholic priest.
Summary:
The billionaire founders of Facebook, Amazon, Google owner Alphabet saw $7.4 billion wiped from their fortunes on Wednesday amid a sell-off, according to Bloomberg.
Summary:
Actress Dia Mirza has been appointed as UN Environment's Goodwill Ambassador for India.
Summary:
On his return, Bradman scored 79 and 112 against England.
Summary:
He further claimed that the US has asked for Saeed's re-arrest only because of pressure from India.
Summary:
This will allow the Embraer jet, specialised to conduct Airborne Early Warning and Control functions, to fly for a duration beyond its stated endurance.
Summary:
Warning citizens against buying and selling Bitcoin, Turkey's Directorate of Religious Affairs has said that the cryptocurrency is not in accordance with Islam.
Summary:
Summary:
Disha and Mayur got married in the year 2015.
Summary:
According to reports, actors Arjun Kapoor and Sanjay Dutt will star in filmmaker Ashutosh Gowariker's upcoming film on a historical battle.
Summary:
While speaking about the protests over Sanjay Leela Bhansali directorial 'Padmavati', producer-photographer Atul Kasbekar said, "Why did this become religious?
He further said that Padmavati is essentially a fictitious character.
Summary:
"When was the last time you used public transport?" commented a user.
Summary:
The terrorist group al-Qaeda has called for attacks in India and Myanmar in its recently-released propaganda magazine, according to reports.
Summary:
Stating that Aadhaar has removed crores of fake names from the system, Prime Minister Narendra Modi on Thursday said that it will be a 'big weapon' against benami properties.
Summary:
The gram panchayat had allegedly opposed and stopped the construction of the toilet midway.
Summary:
The Absence of dividers between tracks, insufficient foot overbridges, illegal entry-exit points are the main reasons behind the fatalities caused at the spots, it added.
Summary:
Policemen, a few passersby, and toll booth workers on Wednesday saved nearly 55 passengers trapped inside a burning bus in Delhi.
Summary:
During an event in poll-bound Gujarat, BJP President Amit Shah said he didn't know if 47-year-old Congress Vice President Rahul Gandhi could be considered a 'ladka' (boy).
Summary:
Ahead of the Gujarat Assembly election, the Congress has alleged the state BJP government allowed four private firms to "squander" â¹26,000 crore of the public exchequer in a "huge power purchase scam".
Summary:
A total number of 2.81 lakh fake notes worth nearly â¹16 crore were seized in 2016, the report added.
Summary:
A day after Congress Vice President Rahul Gandhi reportedly entered Somnath Temple as non-Hindu, party leader Kapil Sibal claimed that PM Narendra Modi was not a "real Hindu".
Summary:
The metro service reportedly sold over 10,000 smart cards on the first day.
Summary:
Reacting to the 'offensive' Zomato advertisement, a user tweeted, "Ye Delhi se hoga pakka." Another user tweeted, "I wish the online deliver was half as awesome as the ads!" A user also tweeted, "What do you say to such a sexist ad...
Summary:
A woman was arrested after she allegedly bit at least three flight attendants during a flight from Brazil to New York.
Summary:
Flipkart's largest investor Tiger Global Management is also expected to sell shares worth $700 million, according to reports.
Summary:
Finance Minister Arun Jaitley has said that achieving a 10% GDP growth rate is "very challenging" and will depend on how the world is moving.
Summary:
Preet Didbal has been elected as the Mayor of Yuba city in California, becoming the first Sikh woman to hold the position in the US.
Summary:
US President Donald Trump on Wednesday termed the news of CNN boycotting the White House Christmas party as "great".
Summary:
India's Gross Domestic Product (GDP) growth rebound to 6.3% in September quarter from a three-year low of 5.7% in the June quarter, government data showed on Thursday.
Summary:
India's only active volcano lies on Barren Island, located east of the Andaman Islands, whose oldest lava flow dates back 1.6 million years.
Summary:
Accounting for 9.5% of the total crimes committed in the country, Uttar Pradesh recorded the highest number of violent crimes such as murder and crimes against women in 2016, according to the National Crime Records Bureau.
Summary:
A class action lawsuit has been filed against Google for selling data of more than five million iPhone or iPad users without consent in the UK.
Summary:
Former Twitter employee Bahtiyar Duysak, who deactivated US President Donald Trump's Twitter account, has said he feels "like Pablo Escobar" despite not committing a crime.
Summary:
It comes after Flipkart's valuation was marked down to $7.9 billion by mutual fund investor Valic in its latest quarterly report.
Summary:
Zomato Co-founder Pankaj Chaddah has apologised for the 'offensive' ad saying that the company will take it down.
"We can see why it can be offensive to people, and we apologize for it.
Summary:
The new species named Mariana snailfish, can live under water pressures equivalent to an elephant standing on a thumb, said researchers.
Summary:
A bodycam video shows the officers forcing the suspect out of his car, following which an officer accidentally tasered his partner.
Summary:
A company in Canada called True Leaf Medicine International is planning to sell dog treats containing cannabis extracts.
True Leaf already makes hemp-seed infused products for dogs to ease joint pain, anxiety and inflammation.
Summary:
India has moved up one place to the 68th spot on the Global Entrepreneurship Index of 2018, which is topped by the US.
Summary:
Bitcoin plunged as much as 20% just hours after the cryptocurrency set an all-time high of above $11,000, as sell orders began piling up.
Summary:
The RBI has asked cooperative societies not to use the word 'Bank' in their names as it violates the Banking Regulation Act. The central bank said that such societies have neither been issued any licence nor are they authorised by the RBI to undertake banking business.
Summary:
Benchmark indices BSE Sensex and NSE Nifty saw their biggest single-day fall in over two months on Thursday ahead of the second quarter GDP data.
Summary:
Irrfan Khan has said while in Indian cinema actors are perceived as magicians who mesmerise the audience; in the West they are seen as performers.
Summary:
Actress and BJP member Kirron Kher, while speaking about the Chandigarh gang-rape case, has said the 22-year-old victim shouldn't have boarded the autorickshaw when she saw there were three men inside.
Summary:
A 5-year-old boy survived with minor injuries after getting run over by a truck in the Changshu city of China.
Summary:
Principals and teachers of all government schools in Delhi will be given tablet computers to reduce their non-teaching burden, Delhi Deputy Chief Minister Manish Sisodia announced on Wednesday.
Summary:
Warning the Army and paramilitary personnel of a cyber attack through mobile phones, the Centre has asked them to immediately uninstall apps created by Chinese developers or having Chinese links.
Summary:
The AIADMK faction led by Tamil Nadu CM Palaniswami and O Panneerselvam has named the party's Presidium Chairman Madhusudhanan as its candidate for the RK Nagar bypoll.
Summary:
The Madras High Court has ordered the removal of illegal hoardings that were put up by AIADMK in Coimbatore ahead of party founder MGR's birth centenary celebrations.
Summary:
Cities will achieve five or seven star ratings only if they score 100% in all identified targets.
Summary:
The Mumbai Crime Branch has arrested a man for strangulating his 11-year-old nephew to death after the boy refused to have unnatural sex with him earlier this month.
Summary:
Facebook has started testing a feature which requires users to upload their photos for account verification.
Summary:
A boat housing a floating hotel on River Thames has been listed on the market for ã425,000 (â¹3.7 crore).
Summary:
Amazon on Wednesday said that it has more than doubled its business in Indian subsidiary, Amazon Seller Services, with over 105% growth in revenues in the year ended March.
Summary:
Chinese researches have experimentally demonstrated quantum entanglement of 10 qubits on a superconducting circuit, surpassing the previous record of nine qubits.
Summary:
The L series range of Canon EF lenses represent the pinnacle of what a lens can achieve.
Summary:
The Supreme Court has given two weeks time to BCCI and Chaudhry to respond to the complaint by Rangnekar.
Summary:
The mobile internet service in the district has been suspended, while another encounter is also underway between security forces and militants in Sopore district.
Summary:
"I want Rahul to be the Congress president not as a Gandhi but as Rahul," Poonawalla asserted.
Summary:
North Korean state media has released photos of its highest-ever intercontinental ballistic missile (ICBM) which it test-fired on Wednesday.
Summary:
The design of the Ras Abu Aboud Stadium, the world's first fully demountable football stadium to be used for the 2022 FIFA World Cup in Qatar, has been unveiled.
Summary:
Non-Hindus are required to enter their names in a register at Gujarat's Somnath Temple as people belonging to other faiths cannot enter the temple premises without prior permission, temple supervisor Sanjaybhai Joshi said.
Summary:
The India Meteorological Department has issued a warning for Kerala and Tamil Nadu as a depression formed in the Indian Ocean was turning into a cyclonic storm 'Ockhi'.
Summary:
New York was the most Instagrammed city of 2017, taking the top spot for the second year in a row.
Summary:
Researchers at the University of Maryland have designed a quantum simulator composed up to 53 qubits, the basic unit of information for quantum computers, using ytterbium ions.
Summary:
"I'll kill him (director Singh) if I see him anywhere," Goswami added.
Summary:
A seven-year-old girl named Prarthana passed away after she tried to imitate a scene showing a girl dancing on fire in the Kannada television serial 'Nandini'.
Summary:
The 30-member parliamentary panel has also asked the producers of the film and officials of the Information and Broadcasting Ministry to attend the meeting.
Summary:
Ousted Censor Board chief Pahlaj Nihalani has said he is planning to make a sequel to his 1993 action-comedy 'Aankhen' and added that Ranveer Singh and Arjun Kapoor are number one on his wish list.
Summary:
US-based video game company Epic Games has sued a 14-year-old boy among nine gamers for cheating in the survival game 'Fortnite', played by over 10 million people worldwide.
Summary:
Tripura BJP chief Biplab Deb has said the party's campaign for the upcoming state Assembly elections will feature the portrait of Bharat Mata dressed in traditional tribal attire.
Summary:
PM Narendra Modi on Thursday said that he might have to pay a political price for the path he has taken to fight corruption, but he is ready for it.
Summary:
Russia have launched their athletes' uniform and merchandise for the upcoming Winter Olympics despite their participation being uncertain due to the doping scandal.
Summary:
Desi cow's milk makes people beautiful and sharpens minds, he added.
Summary:
Former JD(U) leader Chhotu Vasava posted a video on Facebook, wherein he alleged that there is a threat to his life from the Vijay Rupani-led Gujarat government and BJP National President Amit Shah.
Summary:
The feature also allows organisations to create voluntary blood donation events and notify nearby donors.
Summary:
Ex-India captain Bishan Singh Bedi has said one should not "narrow down the meaning of patriotism" by politicising bilateral cricketing relationship with Pakistan.
"Why politicise cricket?
Summary:
Patidar leader Hardik Patel on Wednesday asked the people in Gujarat not to forget and forgive the BJP for the atrocities they committed on Patidars.
Summary:
Former Finance Minister P Chidambaram on Thursday asked if Prime Minister Narendra Modi thought that Chief Economic Adviser (CEA) Dr Arvind Subramanian and other economists were stupid.
Summary:
American Airlines is rushing to resolve a computer glitch that gave time off to too many pilots in December, reportedly leaving over 15,000 flights without sufficient crew during the holiday rush.
Summary:
Billionaire and SpaceX Founder Elon Musk, who aims to build a city on Mars, seemingly took a jibe on Flat-Earthers, who believe the Earth is flat.
Summary:
Notably, when the note was issued, â¹1 was equivalent to 10.7g of silver.
Summary:
The word was followed by '#fashion' and '#photooftheday' at second and third place respectively, while '#photography' and '#art' completed the top five.
Summary:
American singer Beyoncé's photo, in which she announced that she was pregnant with twins, is the most liked Instagram post of 2017 with 11.1 million likes.
Summary:
Rape convict Gurmeet Ram Rahim's adopted daughter Honeypreet and others in their confessions revealed that Honeypreet planned to settle down in a foreign country with Ram Rahim after his escape post conviction.
Summary:
The Centre is planning to withdraw its move to ban sale of cattle for slaughter in animal markets, a senior official from the Ministry of Environment and Forests said.
Summary:
The US had urged all countries to cut diplomatic ties with North Korea.
Summary:
Congress Vice-President Rahul Gandhi on Thursday tweeted that debt on Gujarat rose to â¹2.41 lakh crore from â¹9,183 crore in 1995 under BJP's 22-year rule.
Summary:
Chief Justice of India Dipak Misra on Tuesday released a portrait of barrister Kapila Hingorani, which will be the first portrait of a female lawyer to be displayed in a Supreme Court library.
Summary:
The Disneyland in US' California was the most Instagrammed location of 2017, the photo-sharing app has revealed.
Summary:
Contrary to the most accepted theory of Universe starting from a Big Bang, Brazil-based physicist Juliano Neves has reintroduced the theory of "bouncing Universe", which states the current expansion was preceded by contraction.
Summary:
The head of the World Baloch Women Forum (WBWF), Naela Baloch, has urged the US to designate former Pakistan President Pervez Musharraf as Specially Designated Global Terrorist (SDGT) for associating with terrorist outfit Lashkar-e-Taiba (LeT).
Summary:
Summary:
North Korea's intercontinental ballistic missile (ICBM) test on Wednesday "brings us closer to war, not farther from it," US Ambassador Nikki Haley said at the United Nations emergency meeting convened over the test.
Summary:
Dogs lick their mouths to communicate with angry humans and not simply in response to food or uncertainty, according to a study by UK-based researchers.
Summary:
New Zealand's PM Jacinda Ardern has sent British singer Ed Sheeran an informal citizenship test via a 35-second video of her own after Sheeran requested to be granted New Zealand's citizenship.
Summary:
Hadiya's father KM Ashokan has said he will move a contempt plea in the Supreme Court against his daughter's college for giving her the permission to meet her husband Shafin Jahan.
Summary:
BJP State General Secretary Raju Banerjee claimed that the map also showed Arunachal Pradesh outside the Indian border.
Summary:
Security agencies at Mumbai's Chhatrapati Shivaji International Airport have found a note in a bathroom at the airport, warning of an ISIS attack on the cargo on January 26 next year.
Summary:
The All India Council for Technical Education has recommended incorporating social sciences and management in the engineering curriculum followed by over 3,000 institutions from the next academic session.
Summary:
The state government warned the institutes against putting undue pressure on students.
Summary:
Union Minister Harsh Vardhan on Wednesday inaugurated a bio-waste re-processing machine to convert organic waste such as flowers used in temples into compost and 'havan' materials at Delhi's Nigambodh Ghat.
Summary:
Jammu and Kashmir CM Mehbooba Mufti has ordered withdrawal of 744 cases of stone-pelting against 4,327 youths on recommendation of a high-powered committee.
Summary:
After wearing the shirt, he was allowed to purchase the nomination papers.
Summary:
Manchester City maintained their 8-point lead at top of the Premier League after Raheem Sterling's 96th-minute goal helped them beat Southampton 2-1, their 12th successive win, on Wednesday.
Summary:
Hyderabad police have arrested a 60-year-old mentally unstable man for making a hoax bomb call about Taj Falaknuma Palace, where PM Narendra Modi and US First Daughter Ivanka Trump were attending a dinner.
Summary:
Passengers complained about the heat as soon as they boarded, and the temperature rose even further after the plane was in the air.
Summary:
NASA astronaut Randy Bresnik has shared footage of his spacewalk outside the International Space Station, which orbits the Earth at an altitude of 400 km.
Summary:
US President Donald Trump on Wednesday slammed UK PM Theresa May on Twitter for criticising his retweet of anti-Muslim videos posted by a British far-right group's leader.
Summary:
India's Mirabai Chanu has bagged the country's maiden gold at the 2017 World Weightlifting Championships, becoming only the second Indian to do so after Karnam Malleswari, who won gold in 1995.
Summary:
A DNA analysis of nine specimens supposedly from Yeti, mythical ape-like hairy snowman believed to roam in the Himalayas, has revealed that the remains, in fact, belong to a dog and eight bears.
Summary:
Scientists have dated a tomb in Jerusalem's Church of the Holy Sepulchre, believed to belong to Jesus Christ, which was opened for the first time in October 2016.
Summary:
As many as 88 students of Class VI and VII in a girls' school in Arunachal Pradesh were allegedly forced to undress in front of whole class by three teachers.
Summary:
England played the match with a 1-1-8 formation while Scotland used 2-2-6.
Summary:
Raai Laxmi further said she also told the film's director not to sell it as a sex film.
Summary:
Karni Sena leader Sukhdev Gogamedi called Samajwadi Party chief Mulayam Yadav's daughter-in-law Aparna Yadav a 'nachaniya' for performing on 'Ghoomar' song from the film 'Padmavati' at a function in Lucknow.
Summary:
The film's makers have hired Hollywood stuntman Kenny Bates to choreograph the action sequences.
Summary:
Actress Shubhangi Atre Poorey, who plays the character 'Angoori' in the television serial 'Bhabi Ji Ghar Par Hai', has denied rumours of quitting the show to join politics.
Summary:
Ayushmann Khurrana has said he isn't a superstar until he gives a â¹100 crore film.
"If I were a superstar; I would've got the liberty of choosing the release date...
Summary:
Maharashtra Information Technology Principal Secretary Vijay Gautam has been transferred for a delay in implementing a farm loan waiver scheme.
Summary:
India has recorded a 45% jump in the number of petrol pumps in the last six years, with 60,799 outlets by the end of October, as per government data.
Summary:
A video of PM Narendra Modi meeting a boy who was dressed up like him, at an election rally in Gujarat has surfaced online.
Summary:
Responding to Congress Vice President Rahul Gandhi's criticism of the Goods and Services Tax, PM Narendra Modi said a recently emerged "economist" was propagating a "grand stupid thought" by suggesting that the GST be capped at 18%.
Summary:
Refuting reports that Congress Vice President Rahul Gandhi entered himself as non-Hindu at Gujarat's Somnath Temple, the party has claimed that Gandhi is a 'janeu dhari Hindu' (Hindus who wear the sacred thread).
Summary:
Perera will also become the fifth captain to lead Sri Lanka in ODIs this year, with others being Angelo Mathews, Chamara Kapugedera and Lasith Malinga.
Summary:
The TTV Dhinakaran-led AIADMK faction on Wednesday announced that he would contest the bypoll from RK Nagar, the assembly seat that was held by late Tamil Nadu CM Jayalalithaa.
Summary:
The Supreme Court has said that the Lieutenant Governor (L-G) of Delhi is expected to show "constitutional statesmanship" in administering the affairs of the national capital.
Summary:
The Centre on Wednesday told the Supreme Court that AAP government's allegation that Delhi L-G sits on their files or proposals is false.
Summary:
Rooney has netted seven PL hat-tricks.
Summary:
"In one year if we can get 50-100 coaches trained, that will make a big impact in revolutionising...Indian badminton," Padukone further said.
Summary:
Madhya Pradesh CM Shivraj Singh Chouhan completed 12 years in office on Wednesday.
Summary:
The bird was struggling to fly when it was spotted by a priest, after which an NGO was contacted.
Summary:
A Supreme Court bench led by Chief Justice Dipak Misra on Wednesday questioned the need for guidelines on investigating dowry harassment cases when there are penal provisions for it.
Summary:
Rajesh Jain, a three-time MLA from Sadar Bazar in central Delhi allegedly made illegal transactions to exchange the demonetised â¹1,000 and â¹500 notes for new notes.
Summary:
Loganair cabin crew flew a teddy bear over 300 kilometres to hand it to its four-year-old owner, who left it behind at Scotland's Edinburgh airport before boarding her Orkney-bound flight.
Summary:
The second largest cryptocurrency Ethereum also hit a new lifetime high of $520.
Summary:
The trailer of the upcoming superhero film 'Avengers: Infinity War', the third film in 'The Avengers' film series, has been released.
Summary:
The Boxing Federation of India (BFI) was on Wednesday recognised as a national body by the Indian Olympic Association (IOA).
Summary:
The Centre's Higher Education Financing Agency (HEFA) on Wednesday approved an interest-free loan of over â¹2,000 crore to five Indian Institutes of Technology and a National Institute of Technology.
Summary:
Late Justice Brijgopal Harkishan Loya's son has said that his family is convinced the judge died of a heart attack in 2014.
Summary:
The Congress has denied reports that party Vice President Rahul Gandhi declared himself as a non-Hindu while entering Gujarat's Somnath Temple.
Summary:
Summary:
The tab gives easier access to financial information and related news based on the users' interests.
Summary:
The Nigerian government will turn the home of the country's Islamist militant group Boko Haram's founder Muhammad Yusuf into a museum as part of plans of archiving the country's history, officials have said.
Summary:
Former Bosnian Croat General, Slobodan Praljak, died after consuming poison at a UN tribunal in The Hague, Netherlands.
The court had upheld Praljak's 20 years sentence for war crimes committed during the 1990s breakup of Yugoslavia.
Summary:
Pradeep Singh Kharola, who has been appointed as the Chairman and Managing Director of Air India, is a Karnataka cadre IAS officer of the 1985 batch.
Summary:
'S Durga' director Sanal Kumar Sasidharan, in a Facebook post, wrote he's disappointed by the dirty game played by the Information and Broadcasting Ministry against his film.
Summary:
Former cricketer Zaheer Khan and actress Sagarika Ghatge, who got married on November 23, have featured on the 'Just Married' special issue for the December-January edition of Harper's Bazaar Bride.
Summary:
Sonam Kapoor was trolled on social media for wishing Pakistani actor Fawad Khan on his 36th birthday on Wednesday.
Summary:
Irish actor Liam Cunningham, known for playing the character 'Davos Seaworth' in the HBO series 'Game of Thrones', said the character Arya Stark is not a role model for girls but is a serial killer.
Summary:
Singer Shaan has said both his sons Soham and Shubh sing very well but he asks them to think of music as a hobby and not as a profession.
Summary:
Comedian Kapil Sharma, when asked if he would ever give a role to Sunil Grover in his films, quipped, "Maine kya usse godh liya hua hai?
Summary:
In a video that surfaced online, ex-Uttar Pradesh CM Akhilesh Yadav's sister-in-law Aparna can be seen dancing to the song 'Ghoomar' from 'Padmavati' at a family function.
Summary:
Television actress Sulagna Chatterjee took to Instagram to share the screenshot of a message, which said that the director demanded her to "compromise" if she wanted to be part of an upcoming project.
Summary:
Australian coach Darren Lehmann took a dig at England, saying that he would not impose a curfew on the Australian team as they are "adults".
Summary:
Actor and BJP MP Shatrughan Sinha on Wednesday said that by sending so many leaders at the same time to campaign in their "own" state Gujarat, the party is showing signs of panic and desperation.
Nonetheless our best wishes," Sinha tweeted.
Summary:
Six men working for a catering firm died of asphyxiation after they slept in a truck with a lit tandoor (oven) inside, in Delhi Cantonment on Tuesday.
Summary:
Technology giant Apple has removed games glorifying Philippine President Rodrigo Duterte's war on drugs.
Summary:
The leaders of Israel, Saudi Arabia and Egypt asked the US to bomb Iran prior to negotiations on the 2015 nuclear deal, former US Secretary of State John Kerry has revealed.
Summary:
Victoria on Wednesday became the first Australian state to legalise assisted dying or euthanasia after lawmakers voted in favour of allowing terminally ill patients the right to request a lethal drug to end their lives.
Summary:
To reduce air pollution and spread the importance of health, a cycling track has been launched by the Brihanmumbai Municipal Corporation.
Summary:
Stating that Nitish considers him "one of the tall socialist leaders in the country", Veerendra said the CM urged him to not resign.
Summary:
BCCI was fined â¹52.24 crore in February 2013 by the CCI.
Summary:
Two French wingsuit flyers managed to land inside a moving plane after jumping from the Jungfrau mountain in Switzerland's Bernese Alps.
Summary:
UFC President Dana White has said that lightweight champion Conor McGregor might never fight again owing to the amount of money he has earned.
Summary:
Australia's cricket team has won cricket's first-ever One Day International, Test match, T20 International, day-night ODI and the first day-night Test, in which they beat New Zealand on November 29, 2015.
Summary:
The Centre on Tuesday notified the appointment of six new judges to the HC, of which four are women.
Summary:
Rao is the only Indian cricketer in first-class history to take two hat-tricks in one innings.
Summary:
Samsung stated the 'graphene ball' is a "unique battery material" which charges five times faster than lithium-ion batteries.
Summary:
US President Donald Trump on Wednesday retweeted three anti-Muslim videos posted by the Deputy Leader of British far-right group Britain First, Jayda Fransen.
Summary:
However, experts suggested North Korea may still be years away from developing a delivery vehicle for a nuclear weapon.
Summary:
China Development Bank has confirmed that it has filed insolvency case against Anil Ambani-led Reliance Communications on November 24 at the National Company Law Tribunal.
Summary:
Jack Bogle, the Founder of US investment management company Vanguard, has warned investors to "avoid bitcoin like the plague".
Summary:
ICICI Bank CEO Chanda Kochhar has said, "If you educate a man you educate an individual, if you educate a woman you educate a generation." She further said there is no other country in the world other than India where 40% of the banking sector is headed by women.
Summary:
Actress Rani Mukerji has said that her husband filmmaker Aditya Chopra is not Mr India, while referring to the character from the 1987 film 'Mr India' starring Anil Kapoor.
Rani further said, "I cannot suddenly ask my husband to become a media savvy person.
Summary:
'Julie 2' director Deepak Shivdasani wrote in a Facebook post that the film's intent was to let the Indian cinema audience know who Jesus Christ is in commercial cinema.
Summary:
'Tu Mera Bhai Nahi Hai', a new song from the Pulkit Samrat and Richa Chadha starrer 'Fukrey Returns' has been released.
Summary:
According to reports, Salman Khan is willing to launch Miss World Manushi Chhillar in Bollywood in a film which either stars him or is produced by him.
Summary:
However, Alia rejected it as the heroine has barely any scenes in the film in comparison to Prabhas.
"Alia is...setting a league of her own by taking up some really good performance-oriented roles," said a source.
Summary:
A group of fully state government-funded Delhi University colleges are struggling to pay their staff salaries as the AAP government has announced it will release funds only after the colleges form governing bodies.
Summary:
The CM has asked the hospital to resolve all issues within seven days and submit a report by December 5.
Summary:
A Bihar Police Havildar was killed after receiving a bullet in his chest during a gunfight with liquor smugglers in Samastipur district.
Summary:
The â¹278-crore flyover being constructed along the Rao Tula Ram Marg flyover in Delhi may miss its June 2018 deadline as the Public Works Department (PWD) needs time till August to complete the project.
Summary:
The former Australian all-rounder shared an image on Twitter, wherein he was seen giving batting tips to the wrestler and captioned it, "Awesome day with @JohnCena.
Summary:
Android Co-founder Andy Rubin left Google in 2014 after an investigation found that he had maintained an 'inappropriate relationship' with a subordinate, according to reports.
Summary:
Japanese conglomerate SoftBank may invest up to $250 million in Bengaluru-based food delivery startup Swiggy, according to reports.
Summary:
Summary:
Online food ordering and delivery platform Foodpanda India has reported a 64% rise in its revenue for fiscal year 2017.
Summary:
US-based neuroscientists have demonstrated how amputees can learn to control a robotic arm through electrodes implanted in the brain using three rhesus monkeys with amputated arms.
Summary:
Indian flag carrier Air India was born out of Tata Airlines, which was the first commercial airline in India.
Summary:
A Chinese street barber offers eyelid shaves by scraping a straight razor along the inside of his customers' eyelids.
Summary:
The Border Security Force on Wednesday said it has seized over 10,000 kg of narcotics between December 2016 and October this year.
Summary:
Slamming Congress Vice President Rahul Gandhi's visit to Gujarat's Somnath Temple, PM Narendra Modi on Wednesday said Gandhi's great grandfather and former PM Jawaharlal Nehru was not happy with the idea of the temple being built.
Summary:
Stating that India has 500 million internet subscribers, Telecom Regulatory Authority of India (TRAI) Chairman RS Sharma has said the internet should be kept free and open and not be cannibalised.
Summary:
Reacting to Congress Vice-President Rahul Gandhi's 'hugplomacy' remark, PM Narendra Modi said Congress was "clapping" at 26/11 mastermind Hafiz Saeed's release and was "happy to hug" Chinese ambassador.
Summary:
According to a Twitter user '@caspararemi', Google Apps also service the email accounts of Tumblr's employees.
Summary:
According to his testimony, Baratov gained access to users' accounts by phishing them with fake correspondences.
Summary:
Canadian Prime Minister Justin Trudeau on Tuesday apologised for a campaign by previous governments to rid the military and public service of LGBTQ people.
We are sorry." The Canadian government has allocated $85 million (nearly â¹550 crore) to settle a lawsuit filed by the victims.
Summary:
Qatar's Deputy PM Mohammed bin Abdulrahman Al Thani has accused Saudi Arabia of bullying smaller countries into submission, claiming Lebanon is the latest target in a Saudi campaign of intimidation that risks destabilising the Middle East.
Summary:
Condemning North Korea's highest-ever intercontinental ballistic missile (ICBM) test on Wednesday, Russia said, "Undoubtedly, another missile launch is a provocative action that provokes a further increase of tensions." Russia urged all relevant sides to keep calm and not to worsen the situation.
Summary:
Ousted Pakistan Prime Minister Nawaz Sharif on Tuesday said that democracy has been repeatedly murdered in the country.
Summary:
He further said, "There is perhaps discrimination in the industry because there are fewer female directors and writers."
Summary:
Actress Katrina Kaif has said that her upcoming dwarf film with Shah Rukh Khan was originally titled 'Katrina Meri Jaan' and that's why people thought that she played herself in the film.
Summary:
Actress Jennifer Lawrence has said she turns into a huge a**hole once she enters a public place.
Jennifer further said, "I'll see someone walking towards my table and just go like, 'Can I have a selfie?' And I'm like, 'No!...
Summary:
Social activist Anna Hazare, while addressing his supporters in Maharashtra's Ahmednagar on Tuesday, said he would launch an agitation in Delhi over the issues of Jan Lokpal, farmers' suicide and poll reforms from March 23 next year.
Summary:
Praising President Ram Nath Kovind for maintaining a 'low profile image', West Bengal Chief Minister Mamata Banerjee said it did not seem that he occupied the highest post in the country.
Summary:
The accused, who tried to take away the girl and was beaten up by a crowd after the children raised an alarm, has been arrested by the Mumbai Police.
Summary:
The Kerala Police has issued an alert to the Thrissur railway station on possible poisoning of Sabarimala Temple pilgrims by the ISIS terrorists.
Summary:
BJP Spokesperson Sudhanshu Trivedi on Wednesday said Congress Vice-President Rahul Gandhi is suffering from 'sawan ke andhe ko sab hara hara hi dikhta hai' syndrome, which makes him unable to see the reality.
Summary:
Users have claimed that their Google Pixel 2 and Pixel 2 XL devices randomly reboot themselves without any warning.
Summary:
Interestingly, a cafe in Singapore serves lattes featuring cherry blossom designs while a cafe in Seoul serves drinks featuring drawings.
Summary:
Uber's net loss has widened to $1.46 billion in the third quarter from $1.06 billion in the previous quarter, according to reports.
Summary:
Scientists with the US Geological Survey have found an ecosystem thriving on methane gas in the flooded caves of Mexico's Yucatan Peninsula.
Summary:
Contrary to current belief, it was the departure of a large Himalayan river, rather than its arrival, that triggered the growth of Indus civilisation, a study led by IIT Kanpur and UK-based researchers has claimed.
Summary:
Russia's Security Council has reportedly asked the country's government to develop an independent internet infrastructure for BRICS nations, which would continue to work in the event of global internet malfunctions.
Summary:
UK Duchess Kate Middleton's uncle Gary Goldsmith has been fined over â¹4 lakh for hitting his wife after she slapped him during an argument last month.
Summary:
The BCCI has decided to retire Sachin Tendulkar's number 10 jersey from the Indian men's cricket team.
It will be retired unofficially as there's no provision to retire jerseys under ICC guidelines, but players can wear it for India A matches.
Summary:
Shuttlers Kidambi Srikanth and PV Sindhu won the Sportsman and Sportswoman of the Year (individual) awards respectively at the inaugural Indian Sports Honours.
Summary:
On being asked if he was scared of losing what he had achieved, Amazon Founder Jeff Bezos in an interview in 1999 said, "I know we can lose it all.
Summary:
Amazon Founder and world's richest person Jeff Bezos in an interview in 1999 revealed that he did not date much until the last year of college.
Summary:
Summary:
Astronomers using the Chile-based ALMA telescopes have spotted signs of eleven low-mass stars forming within three light-years to the Milky Way's supermassive black hole.
Summary:
Summary:
Bengaluru police recently made a reference to 'The Lord of the Rings' in a tweet about honking.
Summary:
As many as 800 million workers worldwide may lose their jobs to robots and automation by 2030, according to a report by McKinsey Global Institute.
Summary:
Digital currency Bitcoin has risen over 1000% in 2017, reaching an all-time high of $10,800 after it crossed $10,000 for the first time on Wednesday, also pushing its market capitalisation to over $180 billion.
Summary:
Actor Amitabh Bachchan took to Twitter to share a picture which showed Akshay Kumar touching his feet in a gesture of respect and wrote, "Embarrassed that Akshay does this...
Summary:
Prime Minister Narendra Modi on Wednesday recalled an incident where a photograph of former PM Indira Gandhi covering her nose due to foul smell in Gujarat's Morbi was published in a magazine.
Summary:
The Siang river in Arunachal Pradesh has turned black with slag, making it unfit for consumption.
Summary:
Pakistani cricketer Umar Akmal has shared a video message on Twitter, quashing his death rumours circulating on the internet.
Summary:
"Despite the fact we acted (on the agreement), now some countries are walking out and that's the saddest part," he added.
Summary:
Speaking of her struggle to pursue higher education, Chellathai said that her father and her husband denied her the opportunity to study further.
Summary:
BJP leader Suraj Pal Amu, who kept a bounty for beheading Deepika Padukone, on Wednesday said that now his dream is to slap National Conference Chief Farooq Abdullah at Srinagar's Lal Chowk.
Summary:
An investigation by the Dadar Police has stated that "incessant torrential rain" which "resulted in a swelling of stationary commuters" caused the Elphinstone Road station stampede on September 29.
Summary:
The reopening followed a downgrade in the authorities' aviation warning to "orange," which is one level below the most serious.nn
Summary:
An American couple was arrested on Tuesday for allegedly flashing their bare buttocks at the Wat Arun temple, Thailand.
Summary:
Skoda Auto India is recalling 663 units of its Laura model produced between 2009 and 2010 to update software control unit of braking safety system.
Summary:
Unlike conventional solar cells that operate only in light, cyanobacteria can also generate electricity for small devices in the dark.
Summary:
Russian cosmonaut Anton Shkaplerov has revealed that scientists on Earth analysing samples taken from outside the International Space Station have found "bacteria that were absent during the launch of the ISS module." Shkaplerov said, "the bacteria came from outer space and settled along the external surface.
Summary:
Libyan militant Ahmed Khattala who had been accused of masterminding the 2012 attacks on US outposts in the Libyan city of Benghazi that killed four US officials has been acquitted of the murder charges related to the attack.
Summary:
Twenty-two-year-old Mikayla Holmgren has become the first woman with Down syndrome to compete in the Miss Minnesota USA Pageant.
Summary:
Indian drugmaker Dr Reddy's Laboratories said it has been served a class action lawsuit in the US for alleged violation of federal securities laws.
Summary:
"Not only is this a waste of money...but substandard or falsified medical products can cause serious illness or even death," WHO said.
Summary:
The Ahmednagar district and sessions court on Wednesday awarded death sentence to Jitendra Shinde, Nitin Bhailume, and Santosh Bhaval, convicted for conspiring, raping, and murdering a 15-year-old girl in Maharashtra's Kopardi last year.
Summary:
BJP leader Suraj Pal Amu, who kept a â¹10-crore bounty for beheading Deepika Padukone and Sanjay Leela Bhansali over Padmavati row, has resigned as the party's Haryana Chief Media Coordinator.
Summary:
Gurmeet Ram Rahim's adopted daughter Honeypreet Insan and 11 others have been charged with sedition, criminal conspiracy, besides other offences in connection with the violence in Panchkula and Sirsa by Dera Sacha Sauda followers.
Summary:
PM Narendra Modi while addressing a rally in Gujarat's Morbi said that for Congress development was giving hand pumps, while for BJP, it's Saurashtra-Narmada Avataran Irrigation (Sauni) Yojana and large pipelines that carry Narmada waters.
Summary:
Ivanka is likely to visit the Golkonda Fort along with a delegation of senior officials.
Summary:
Breaching restriction orders issued to media, a local TV channel on Tuesday broadcast live images of the dinner hosted by PM Narendra Modi for US First Daughter Ivanka Trump at Hyderabad's Taj Falaknuma Palace.
Summary:
Google has fixed the burger emoji in a beta update where the cheese is placed above the patty.
Summary:
Called 'E-screen protector', it uses the front-facing camera to identify anyone looking at the display within 2 milliseconds.
Summary:
SoftBank has confirmed that it received indication from Uber's early investors Benchmark, Menlo Ventures, and others of their intent to sell shares in the cab-hailing startup.
Summary:
Venture capital firm Sequoia Capital is looking to increase its stake in app-based cab aggregator Uber alongside SoftBank, according to reports.
Summary:
Saudi Prince Miteb bin Abdullah, who was being detained by the country's authorities over corruption allegations, has been released after agreeing to pay over $1 billion (â¹6,400 crore), officials have said.
Summary:
The bus will take sleepy passengers to Hachioji, where the travellers can rent rooms at hotels.
Summary:
The video of the incident shows the man left standing with the handle of the door in his hand after smashing the glass.
Summary:
US police have reminded residents to transport their Christmas trees responsibly after a driver was pulled over in Sudbury.
Summary:
Nestle India has been slapped with a fine of â¹45 lakh after Maggi samples allegedly failed to pass a lab test.
Summary:
Actress Sunny Leone has said that she and her husband Daniel Weber have to disclose to their daughter Nisha that she is adopted.
Sunny further said, "I am not her real mom.
Summary:
Actress Rani Mukerji has said she finds it hilarious that stylists dress actors for the airport.
Summary:
The panchayat reportedly ordered the mass killing because of increasing number of dog bites in the area.
Summary:
However, his income from known sources was only â¹41 lakh in this period.
Summary:
Police also said the 7-year-old misled the investigation by making false statements during interrogation.
Summary:
Summary:
The Bengaluru civic body has decided to develop a GPS-enabled mobile application that will allot a nine-digit unique Digital Identification Number to each house in the city within two weeks.
Summary:
The Virgin plane's wing tip was reportedly loaded onto a truck, and both the planes had to be returned to the terminal.
Summary:
They hope that Neapolitan pizza will be added to the Intangible Cultural Heritage list in a UNESCO meeting next week and gain World Heritage status.
Summary:
Officials at Torres del Paine National Park, home to the glacier, said such ruptures had not occurred since early 1990s.
Summary:
The membrane which is 100% selective for oxygen, separates it from carbon dioxide, leaving carbon monoxide which serves as fuel.
Summary:
At least five people were killed and 12 others were injured after a car bombing hit Yemen's Finance Ministry building in the city of Aden on Wednesday, according to reports.
Summary:
Rado, the Swiss watch brand known for its innovative use of design and materials, unveiled the new Rado HyperChrome collection with brand ambassador Hrithik Roshan at an event in Bangalore.
Summary:
North Korea on Wednesday test-fired its highest-ever intercontinental ballistic missile (ICBM), reaching an altitude of around 4,500 km, over 10 times higher than the orbit of NASA's International Space Station, before landing off Japan's coast.
Summary:
The price of the world's largest cryptocurrency, Bitcoin, surpassed $10,000 mark for the first time ever on Wednesday, hitting a fresh record high of over $10,800.
Summary:
The Karnataka Assembly on November 16 passed an Anti-Superstition Bill, which bans 23 superstitious practices.
Summary:
Former Pakistani President Pervez Musharraf has said that he is the biggest supporter of the terrorist group Lashkar-e-Taiba (LeT) and he likes its founder and 26/11 Mumbai terror attack mastermind Hafiz Saeed.
Summary:
The film's actor Nahuel Perez Biscayart won the Silver Peacock in the Best Actor (male) category.
Summary:
Mumbai's Wilson College gymkhana has been issued a notice asking it to switch off lights after 10 pm, following repeated light pollution complaints from a resident.
Summary:
Snehlata Shrivastava has been appointed as the Secretary General of the Lok Sabha, a notification issued by the Secretariat of the lower house said.
Summary:
After taking over the Shimla rape and murder case investigation, the CBI has accused a Himachal Pradesh Police Special Investigation Team (SIT) of arresting six suspects without direct proof and subjecting them to "third-degree methods".
Summary:
A picture of the sketch along with its artist was posted on PM Modi's Twitter account.
Summary:
The Bombay High Court has asked the Maharashtra government if people with criminal records don't have a right to a safe life.
Summary:
The Delhi Commission for Women (DCW) has issued a notice to the police for allegedly sending 13 rescued girls back to brothels located at GB Road.
Summary:
The dishes were presented over several courses, including Mezban (appetisers), Mashgool Dastarkhwan (main course) and Zauq-e-shahi (dessert).
Summary:
The team found time required for all cars to pass remained fixed for spacing up to 25 feet.
Summary:
US-based researchers have developed the world's smallest fidget spinner, measuring one-tenth of a millimetre, which is smaller than the width of a human hair.
Summary:
North Korea has "realised the great historic cause of completing a state nuclear force," North Korean leader Kim Jong-un reportedly said after the country test-fired its highest-ever intercontinental ballistic missile (ICBM) on Wednesday.
Summary:
After North Korea on Wednesday test-fired its highest and this year's third intercontinental ballistic missile (ICBM), US President Donald Trump said, "It is a situation that we will handle." North Korea continues to strengthen its nuclear programme with weapons that "threaten everywhere in the world", the US Defence Department has said.
Summary:
Meghan Markle has wrapped up her role on television series 'Suits' after seven seasons, said USA Network and Universal Cable Productions in a statement.
Summary:
Veteran actor Dilip Kumar has been diagnosed with pneumonia and advised rest.
Summary:
West Bengal CM Mamata Banerjee's nephew Abhishek Banerjee has filed a defamation case against BJP leader and former TMC minister Mukul Roy. The lawsuit was filed after Roy commented that 'Biswa Bangla' is not a government entity but a company owned by Abhishek.
Summary:
Aiming to decongest one of the busiest markets in south Delhi, the Lajpat Nagar market association on Tuesday started a free e-rickshaw service for people visiting the market.
Summary:
The 2018 FIFA World Cup will take place in Russia from June 14 to July 15.
Summary:
The Supreme Court has asked the Centre to bring in a law for fixing liability on people who could be prosecuted and made to pay compensation in case of loss of life and assets during agitations.
Summary:
Former Finance Minister P Chidambaram on Tuesday claimed that US First Daughter Ivanka Trump's remark stating that India has lifted 130 million citizens out of poverty was a compliment to the UPA regime.
Summary:
Two women reportedly attempted suicide by consuming poison at the Andhra Pradesh Secretariat after they were denied permission to meet Chief Minister Chandrababu Naidu.
Summary:
Manchester United cut the deficit to five points on league leaders Manchester City after beating Watford 4-2 on Tuesday.
Manchester City, Chelsea, and Arsenal will play their respective matches of this gameweek on Wednesday.
Summary:
Plumes of ash from Mount Agung volcano have forced Indonesian authorities to close Bali airport for the third consecutive day on Wednesday.
Summary:
While talking at IFFI 2017 about how cinema is a unifying force, actor Amitabh Bachchan said that inside a movie hall one never asks what the caste, colour or religion of the person sitting next to them is.
Summary:
A Centre for Science and Environment report has claimed that samosas are healthier than burgers.
Summary:
Chief Minister Manohar Lal Khattar on Tuesday said widows appearing for recruitment exams conducted by the Haryana Staff Selection Commission would get a benefit of 5% marks.
Summary:
As the Aam Aadmi Party was fined â¹30 crore over irregularities in overseas donations, the Income Tax Department has revealed that the party was given 34 opportunities to explain its stance.
Summary:
Finance Minister Arun Jaitley on Tuesday formally launched the Paytm Payments Bank in New Delhi.
Summary:
Paytm Mall, operated by digital payments startup Paytm has held initial talks with Japanese conglomerate SoftBank to raise $300 million in funding, according to reports.
Summary:
Billionaire Elon Musk has denied being the founder of Bitcoin after former SpaceX intern claimed that he "probably" is the founder.
Summary:
This is in addition to the $350 million funding SpaceX raised in July, which valued the startup at over $21 billion.
Summary:
Lukhtanov and colleagues studied over a hundred blue butterfly species while sequencing DNA from all closely related species.
Summary:
Crew-less boats or vessels with bodies on board, called 'ghost ships', regularly wash up in Japan.
Summary:
The government on Tuesday appointed Pradeep Singh Kharola, a 1985-batch IAS officer of the Karnataka Cadre, as the Chairman and Managing Director (CMD) of Air India.
Summary:
While talking about her winning moment at Miss World 2017, Manushi Chhillar said that she wished that she had given more lady-like reactions.
Now I like to look at it and laugh," added Manushi.
Summary:
Alia Bhatt has said that she gets uncomfortable when people while praising her work start comparing her to yesteryear actresses like Madhubala, Nargis and Waheeda Rehman.
Summary:
A comment read, "Katrina Kaif ko replace kar diye aap," another user wrote, "Katrina updated version 2.0".
Summary:
Tushar Mehrotra, a 15-year-old class 10 student of a private Gurugram school, has transformed a government primary school in a span of three months using his savings and crowdfunding.
Summary:
Pacer Siddarth Kaul, who played alongside Virat Kohli in the U-19 team, has revealed he was informed of his selection in India's ODI squad by the on-field umpire during a Ranji match.
Summary:
Union Law Minister Ravi Shankar Prasad has alleged that Congress Vice-President Rahul Gandhi had officially told US Ambassador Timothy Roemer that Hindu terrorism was a bigger threat than the Lashkar-e-Taiba (LeT).
Summary:
Ivanka is currently attending the three-day Global Entrepreneurship Summit in Hyderabad.
Summary:
Karp will leave the company by the end of this year.
Summary:
Over 160 US government websites, which rank among top 10 lakh websites globally, fail to prevent hackers from intercepting visitors' sensitive information or redirecting traffic to malicious phishing websites, according to a US-based think tank's report.
Summary:
Delhi-based student accommodation startup Stanza Living has raised $2 million from Matrix Partners and Accel Partners.
Summary:
The funding follows the startup's seed round of $1 million in 2015.
Summary:
Pope Francis on Tuesday called for "respect for each ethnic group" in a speech delivered in Myanmar, avoiding reference to the Rohingya minority community.
Summary:
Earlier this month, a Manhattan apartment complex removed Trump's name from its three buildings over complaints from residents.
Summary:
Irish Deputy Prime Minister Frances Fitzgerald announced her resignation on Tuesday in a bid to avoid the collapse of the government and a potential snap election.
Summary:
However, police said post-mortem reports confirmed death by hanging.
Summary:
Researchers from Indian Institute of Science, Bengaluru, have found that frequency of heat waves accompanied by drought has increased in magnitude and in area over the past three decades in India.
Summary:
During her address at the Global Entrepreneurship Summit in Hyderabad on Tuesday, US President Donald Trump's daughter Ivanka hailed PM Narendra Modi's journey from a tea-seller to his election in 2014, saying he proved transformational change is possible.
Summary:
Akshay Kumar has said America might have Batman, Superman and Spiderman; Indians have the Angry Young Man, while referring to Amitabh Bachchan.
He said this while co-presenting 'Indian Film Personality of The Year' award to Amitabh at International Film Festival of India's closing ceremony.
Summary:
Congress workers in Surat dressed up as characters from the film 'Sholay' to protest against GST, which party Vice-President Rahul Gandhi had earlier called "Gabbar Singh Tax".
Summary:
This comes after BCCI pocketed $2.5 billion from a deal with Star India for broadcast of Indian Premier League.
Summary:
A â¹20-crore defamation case has been filed against Karnataka's ex-Deputy Inspector General (Prisons) D Roopa Moudgil, who alleged that AIADMK leader Sasikala received preferential treatment in prison.
Summary:
Speaking at the Global Entrepreneurship Summit, US President Donald Trump's daughter Ivanka on Tuesday said the people of India have lifted 130 million citizens out of poverty through their own "enterprise, entrepreneurship and hard work".
Summary:
Marcus Elliott had forgotten to keep his phone in the dressing room, as his team lost three wickets within five minutes.
Summary:
Bird gave the name after he could not hear Holding approach the crease before delivering a ball during a match.
Summary:
Windies' Gus Logie was adjudged Man of the Match despite him neither batting nor bowling in an ODI against Pakistan on November 28, 1986.
Summary:
Karnataka opener Mayank Agarwal has hit over 1,000 Ranji runs in 27 days, going past the 1,000-run mark with two centuries in the match against Railways on Monday.
Summary:
Pietersen blocked Johnson after the latter tweeted, "Good response #flog."
Summary:
E-commerce giant Amazon has made it mandatory for users to link Aadhaar details to their accounts in order to track lost packages.
Summary:
German Chancellor Angela Merkel has said that the government will provide â¬1 billion (over â¹7,600 crore) to cities and towns across the country next year in a move aimed at lowering air pollution.
Summary:
Trump has repeatedly used the term for Warren who claims to have a Native American ancestry.
Summary:
Addressing an event via video conferencing in Beijing, Hillary Clinton criticised Chinese President Xi Jinping, saying that unprecedented consolidation of power by the Chinese leader has triggered anxiety.
Summary:
Russia on Tuesday lost contact with a weather satellite hours after its launch.
Summary:
The sale comes after Sotheby's recently failed to sell the Raj Pink, a 37-carat stone that was estimated to be worth as much as $30 million.
Summary:
While referring to the â¹10 crore reward for beheading Deepika Padukone and Sanjay Leela Bhansali over 'Padmavati' row, comedian Kapil Sharma said that it's a democratic country but one cannot chop someone's head off.
(But) the threats are wrong," added Kapil.
Summary:
British actress Angela Lansbury, who voiced the character Mrs Potts in the 1991 animated film 'Beauty and the Beast', said, "We (women) can't make ourselves look...attractive...without being knocked down and raped." She added that over the years, women have tried to look more attractive which has backfired on them.
Summary:
'Drishyam' actress Ishita Dutta got married to actor Vatsal Seth, known for starring in the film 'Taarzan: The Wonder Car' and television show 'Ek Hasina Thi', on Tuesday at the ISKCON temple in Juhu, Mumbai.
Summary:
President Ram Nath Kovind, during his maiden visit to West Bengal after assuming office, said the painting CM Mamata Banerjee had made for him would be displayed at Rashtrapati Bhavan.
Summary:
The Supreme Court on Monday had directed Hadiya to return to Salem and continue her education.
Summary:
The cell will identify structures that are older than 30 years and issue notices to the societies concerned for further structural audits.
Summary:
Khan was a student of fashion designing before he was arrested from Kullu last year, police said.
Summary:
The All India Plastic Manufacturers' Association (AIPMA) has opposed the Maharashtra government's plan to completely ban plastic bags in the state.
Summary:
An Airbnb user has listed a former nuclear missile base on the platform.
A night at the base costs over â¹9,000.
Summary:
The government has appointed senior IAS officer Badri Narain Sharma as the first Chairman of the National Anti-profiteering Authority under the GST regime.
Summary:
The Panorama jury at International Film Festival of India (IFFI) refused to screen Malayalam film 'S Durga' despite Kerala High Court's order asking IFFI to screen it.
Summary:
Iyer claimed to have received around 375 regret letters from national and global organisations.
Summary:
During the hearing on Monday, Hadiya had pleaded her husband be given her guardianship.
Summary:
US President Donald Trump's daughter Ivanka, key speaker at the Global Entrepreneurship Summit in Hyderabad, will travel in her own special bullet-proof vehicle.
Summary:
Similarly, a Sherpa is the representative of the country's leader at the summit, and seeks to consolidate the leader's negotiations.
Summary:
The Election Commission and Facebook on Monday announced a partnership under which youths who recently turned 18 would be sent reminders on their Facebook profiles to vote.
Summary:
Talking about making a comeback to Team India, Indian cricketer Suresh Raina, in a recent interview, said that the selectors would have to let him play one day.
Summary:
After taking a half-an-hour ride in the rear cockpit of India's indigenous combat aircraft Tejas, Singapore Defence Minister Ng Eng Hen on Tuesday said that the aircraft was "excellent and very impressive".
Summary:
Freezing of Russia's foreign accounts would mean a declaration of a "financial war", Russia's Finance Minister Anton Siluanov has warned.
Summary:
Filmmaker Nikkhil Advani had revealed after shooting a few scenes for 'Kal Ho Naa Ho', Shah Rukh Khan said he wouldn't be able to do the film and suggested that Salman Khan could replace him.
Summary:
The Uttar Pradesh Police on Tuesday denied media reports, clarifying that it had nothing to do with the arrest of eight donkeys which were reportedly jailed for four days for eating plants worth â¹5 lakh.
Summary:
Dismissing rumours that loans of capitalists are being written off, Finance Minister Arun Jaitley has said the government has not waived off loans of any big bad loan defaulters.
Summary:
This is the highest price a wristwatch has ever fetched in an auction in Asia.
Summary:
Parineeti Chopra has said she'd be lying if she said the â¹100 crore benchmark doesn't matter.
Parineeti, whose recently released film 'Golmaal Again' earned over â¹200 crore in India, further said, "I'm loving the feeling that I have right now."
Summary:
Actress Sunny Leone and husband Daniel Weber have posed nude for a PETA campaign that aims to create awareness against the use of animal skin in fashion accessories.
Summary:
Filmmaker Karan Johar has said that the word 'nepotism' still haunts him while adding, "It has become like 'mera saaya' (my shadow)".
Summary:
Promising support to the Telangana government, Prime Minister Narendra Modi on Tuesday said that the Centre does not differentiate between states on the basis of politics.
Summary:
Former Planning Commission member NK Singh was on Monday appointed the chairman of the 15th Finance Commission.
Summary:
Following the Supreme Court's order that Hadiya be taken to college for her studies, her father expressed happiness at the decision and added, "I cannot have a terrorist in the family." "Hadiya does not have any idea about Syria, where she wanted to go after converting to Islam," he said.
Summary:
Raina had said Dhoni gets angry when the cameras are not on him.
Summary:
Earlier in the day, Ivanka, who is leading the US delegation at the summit, also met External Affairs Minister Sushma Swaraj.
Summary:
Students of Bruhat Bengaluru Mahanagara Palike (BBMP) schools have not been provided uniforms, shoes and books yet, although the academic session is coming to an end.
Summary:
The Indian Railways has added over 21 million passengers between April and November, a growth of over 6.58%, compared to previous years in the reserved, long-distance category.
Summary:
Reacting to White House Christmas decorations personally chosen by US First Lady Melania Trump, a Twitter user wrote, "I assume the Trump's celebrate Christmas in July and Halloween in December." Other users tweeted, "The Trumps really are the tackiest people.
Summary:
Bangladesh has approved over â¹1,800 crore to transform the Bhashan Char island into a temporary camp for Rohingya refugees, despite warnings that the island could be inundated by floods.
Summary:
Zimbabwe's new President Emmerson Mnangagwa on Tuesday announced a three-month amnesty window for the return of public funds illegally stashed abroad by individuals and companies.
Summary:
Tripp had exposed the relationship between Clinton and White House intern Monica Lewinsky.
Summary:
'Mitra', a made-in-India robot developed by Bengaluru-based Invento Robotics, declared the start of the Global Entrepreneurship Summit in Hyderabad on Tuesday.
Summary:
Bihar CM Nitish Kumar has said that 'Padmavati' will not be released in the state till the film's makers give adequate clarification on it.
Summary:
Addressing the ongoing 'Padmavati' row, the Supreme Court has stated that people holding public offices shouldn't comment on films which have not been cleared by the Central Board of Film Certification (CBFC) yet.
Summary:
Service providers can't be discriminatory in providing internet access as it's an open platform based on the Constitutional right of equality, the Telecom Regulatory Authority of India (TRAI) said on Tuesday.
Summary:
The court also directed Hadiya to resume her education.
Summary:
OnePlus' premium flagship smartphone OnePlus 5T has gone on open sale in India today on amazon.in, oneplusstore.in, select Croma stores and OnePlus Experience zone in Bengaluru and Noida.
Summary:
Greece supports India in its bid for permanent membership in the UN Security Council, Greek Foreign Minister Nikos Kotzias said during a meeting with Indian External Affairs Minister Sushma Swaraj on Monday.
Summary:
A video has surfaced which shows a Pakistani Army general, Azhar Naveed, handing out envelops containing cash to protesters who had been blocking a main road into the capital by sitting in the area since November 6.
Summary:
While Air India said the altercation was resolved with the help of security personnel, the police are investigating the incident.
Summary:
Bengaluru-based lifestyle brand Chumbak has reportedly raised $13.1 million (nearly â¹85 crore) in a funding round led by Mumbai-based private equity firm, Gaja Capital.
Summary:
Netherlands-based researchers studying bonds between water molecules have proved that even at a temperature of -30ðC, the outermost layer of ice behaves like liquid water, with the layer getting thinner with lower temperatures.
Summary:
A man in the United States has completed a 40,320-piece Disney jigsaw puzzle over a period of about 3 months.
Summary:
A hotel in United States' California has announced plans to launch a weed dispensary on site by 2018.
Summary:
Future Group CEO Kishore Biyani has said India's online retail sector has a threat from physical retail models like Big Bazaar and Easyday.
Summary:
He added that 2.4 lakh people made cash deposits of â¹10-25 lakh who have not filed returns.
Summary:
The US authorities charged the three with launching "coordinated and unauthorised" cyber attacks between 2011 and 2017.
Summary:
The Brihanmumbai Municipal Corporation (BMC) demolished unauthorised cabins and cubicles built inside Anil Kapoor's Mumbai office.
We had given a prior intimation to his office to apply for permission but it was ignored," said a BMC officer.
Summary:
Comedian Kapil Sharma has said that he will start laughing if he tries to do romantic scenes like Shah Rukh Khan or stunts like Akshay Kumar.
Summary:
The Punjab and Haryana High Court on Tuesday issued a show cause notice to the Home Secretaries of Punjab and Haryana over sanitization of the Deras located in their respective states.
Summary:
Former Australian cricketer Adam Gilchrist and former England captain Michael Vaughan recreated the incident where England's Jonny Bairstow greeted Australian debutant Cameron Bancroft with a headbutt.
Summary:
Congress leader Shashi Tharoor on Tuesday said that it was disturbing for him to see legitimate political criticism of the Prime Minister being equated to insulting Gujarat.
Summary:
The minister promised 3,000 CCTVs and 360 escalators for suburban stations.
Summary:
After the admission of a batch of students of Fathima medical college was cancelled, six students and a parent climbed on a mobile tower in Andhra Pradesh's Vijayawada and threatened suicide.
Summary:
Speaking about Ravichandran Ashwin after he became the fastest to reach 300 Test wickets, Sri Lankan legend Muttiah Muralitharan said that he feels Ashwin is the world's best spinner at the moment.
Summary:
Real Madrid forward and Portuguese captain Cristiano Ronaldo has been honoured with a new bust at the club's museum at Santiago Bernabeu.
Summary:
Each villa at the resort features a private veranda, an outdoor shower, as well as a hot tub.
Summary:
NASA is developing super-elastic tyres for its future Mars rovers that can regain its shape even after deforming up to 10%.
Summary:
PM Narendra Modi on Tuesday inaugurated the 30-km-long first phase of Hyderabad Metro Rail.
Summary:
MIT and Harvard University researchers have developed origami-inspired artificial muscles that strengthen soft robots, allowing them to lift objects up to 1,000 times their own weight using only air or water pressure.
Summary:
Global Entrepreneurship Summit (GES-2017) in Hyderabad, with 'Women First, Prosperity for All' as this year's theme, will be the first GES in which women will form the majority (52.5%) of participants.
Summary:
The Supreme Court on Tuesday dismissed a plea challenging IPS officer Rakesh Asthana's appointment as a special director of Central Bureau of Investigation (CBI).
Summary:
School authorities said their reputation could be tarnished if she continued to study there, the girl said.
Summary:
The victim also accused the family of confining her to a house.
Summary:
YouTube Go, which was in beta version till now, offers features including video previews and sharing offline videos via Bluetooth.
Summary:
Japan's SoftBank-led team of investors has offered to buy shares of cab aggregating startup Uber at 30% less than its current value, according to reports.
Summary:
A Netherlands-based study has observed adult earthworms reproducing two offspring in Mars soil simulant obtained from NASA.
Summary:
Microsoft Co-founder Bill Gates has said that detained Saudi Prince Alwaleed bin Talal has been an "important partner" in charitable work worldwide.
His commitment to philanthropy is inspiring," Gates added.
Summary:
The woman is helping the pensioner sift through invites.
Summary:
The government's total GST collection for the month of October has dropped by over â¹11,000 crore to â¹83,346 crore till November 27.
Summary:
South Korea's Prime Minister Lee Nak-yon has said that cryptocurrencies could lead teenagers to get involved in pyramid schemes and drug crimes.
Summary:
Shares of Anil Ambani-led Reliance Communications (RCom) plunged by over 9% in early trade on Tuesday amid reports that China Development Bank has filed insolvency case against the telecom firm.
Summary:
Saqib Saleem suffered an injury on his hand while shooting an action sequence for the film 'Race 3'.
"The shoot was held for few hours...
Summary:
Bailey Sellers' father had preordered floral arrangements for her birthdays until she turned 21.
Summary:
Summary:
Each team will feature nine women, eight men, and six reserves.
Summary:
This comes after the state government claimed that they have eradicated corruption during its three-year rule.
Summary:
A Chandigarh court has sentenced a man to 10 years in jail and imposed a â¹1,500 fine for stabbing another man over a quarrel on repayment of â¹500.
Summary:
Further, four dolphins died despite the rescue operations conducted by district forest officials.
Summary:
The Delhi Police on Tuesday arrested a cab driver for allegedly trying to abduct a woman judge while driving her to Karkardooma court.
Summary:
Software engineer K Ragu died on Saturday when a truck ran over him after his bike lost balance on hitting a temporary wooden hoarding set up by AIADMK on a road in Tamil Nadu's Coimbatore.
Summary:
Union Minister Dharmendra Pradhan on Tuesday said India consumes only 6% of the world's energy currently, which will go up to 25% in the next 15-20 years.
Summary:
Facebook on Monday said that it is rolling out AI-based tools to help identify posts and live videos expressing thoughts of suicide.
Summary:
Summary:
In a first, Singapore-based researchers have successfully derived an alcoholic beverage from tofu whey, a liquid that is often discarded after making tofu from soya milk.
Summary:
In a first, Germany-based researchers have revealed the impact of an RNA-binding protein that is involved in learning processes and memory formation.
Summary:
A man in UK's Devon county handed over a WWII artillery shell to the police after using it as a doorstop for 40 years.
Summary:
The first official poster of Diljit Dosanjh starrer 'Soorma', based on ex-hockey captain Sandeep Singh has been released.
Summary:
can I say yes?' and then there were hugs," the Prince added.
Summary:
Ivanka will be served from a five-course menu inspired by Hyderabad's cuisine at the 101-chair dining room.
Summary:
State-owned Life Insurance Corporation of India has cautioned policyholders against sharing their Aadhaar number through SMS, saying it hasn't operationalised any such facility to link Aadhaar with policies.
Summary:
He said he wanted his hometown to look like European villages.
Summary:
Twenty20, an outfit floated by corporate house Kitex Group in a village in Kerala's Kizhakkambala, has provided houses for the needy, free WiFi, and better medical facilities after being voted to power in 2015.
Summary:
A former Dera Sacha Sauda follower has moved a petition in a court alleging that rape convict Gurmeet Ram Rahim had asked his followers to self-immolate and commit suicide.
Summary:
If consumption increased at this rate, Bitcoin mining is expected to use all the world's electricity by February 2020.
Summary:
UK's Prince Harry himself designed the engagement ring for American actress Meghan Markle using a central stone from Botswana and two other diamonds which belonged to his mother Diana, Princess of Wales.
Summary:
A doll resembling actress Sridevi has been installed at a restaurant in Singapore.
Summary:
Sachin Tendulkar, wife Anjali and tennis player Sania Mirza also attended the reception.
Summary:
Toxic foam has begun to generate in Bengaluru's Kaggadasapura lake, which is near a children's park, becoming a cause of concern for the residents.
Summary:
Noting that sexual offences are a result of "perverted and evil minds of people", a Delhi court has sentenced a 40-year-old man to 14 years in jail for raping an eight-year-old girl in 2014.
Summary:
Several schools in Hyderabad declared a holiday on Tuesday due to traffic diversions caused by US President Donald Trump's daughter Ivanka Trump's arrival in the city for the Global Entrepreneurship Summit (GES).
Summary:
Clarifying that the annulment of Hadiya's marriage to Shafin Jahan stands upheld for now, he added, "I am happy with SC.
Summary:
Indian batsman Cheteshwar Pujara and spinner Ravindra Jadeja rose to world number two in the ICC Test batsmen and bowlers rankings respectively, following their performances in the second Test against Sri Lanka.
Summary:
During the Madhya Pradesh Assembly's winter session, senior Congress MLA KP Singh said efforts must be made to remove 'Vastu dosh' from the Vidhan Sabha building located in Bhopal's Arera Hills area.
Summary:
The Indian women's team will play the tournament opener against Wales on April 5.
Summary:
Formula One championship is without a Brazilian driver for the first time in 48 years after Felipe Massa ended his career at the season's final Grand Prix in Abu Dhabi.
Summary:
A fellow flyer who witnessed the ruckus said she had "psychiatric fits" and was lying on the floor.
Summary:
NASA is set to launch a sensor that will measure space debris around the International Space Station (ISS).
Summary:
A Purdue University research suggests that electrons in a two-dimensional gas can undergo a semi-ordered (nematic) to mostly-ordered (smectic) phase transition on cooling in the presence of a magnetic field.
Summary:
Russian President Vladimir Putin has called on all nations to destroy their chemical weapons stockpile, following his country's example.
Summary:
A Chinese Army general, Zhang Yang, who was being investigated for corruption committed suicide by hanging himself at his home in Beijing on November 23, the state media said on Tuesday.
Summary:
There is "no religious discrimination" among ethnic groups in Myanmar, the country's Army chief Min Aung Hlaing on Monday told Pope Francis who is visiting the country for the first time.
Summary:
IIM Bangalore and Indian School of Business were the other Indian institutes named among top 100, being ranked 58 and 93, respectively.
Summary:
Karen Pierce has been appointed UK's ambassador to the United Nations, the first woman to be given the post in the British diplomatic service since the UN's formation in 1945.
Summary:
A US District Court has ordered the country's military to take transgender members into their ranks by January 1, 2018, after partially blocking President Donald Trump's ban on transgenders serving in the US military last month.
Summary:
Earlier this month, the government organised a mass recital of National Song 'Vande Mataram' in Jaipur's SMS stadium.
Summary:
The Indian Consulate in Bali opened a help desk at the city airport to provide assistance to the Indians stuck there, after Indonesian authorities raised the Bali volcano alert to the highest level on Monday.
Summary:
Indian cueist Pankaj Advani defeated Amir Sarkhosh of Iran to win his 18th international title in the form of the 15-frame IBSF World Snooker Championship in Doha on Monday.
Summary:
Over 100 reindeer have been killed by freight trains in Norway in the past week.
Summary:
The slice is housed in a box whose cover reads, âÂÂCD, Buckingham Palace, 29th July 1981".
Summary:
Actor Bobby Deol took to social media to share a picture showing his physical transformation for his upcoming film 'Race 3'.
'Race 3' will also star Jacqueline Fernandez, Saqib Saleem and Daisy Shah.
Summary:
Nikkhil Advani, the director of Shah Rukh Khan starrer 'Kal Ho Naa Ho' has said that the film's producer Karan Johar regrets not directing the film himself while adding that he doesn't blame Johar for that.
Now when he says that, I feel his pain," he added.
Summary:
If the government has failed in curbing Delhi smog, then emitters should also take responsibility for it, Union Environment Secretary CK Mishra said on Monday, adding that no single authority can be blamed for it.
Summary:
Summary:
Following the loss in the first Test of the Ashes, the England cricket team's management has decided to impose a midnight curfew on the players.
Summary:
Stating that he was the district's guardian minister, Mahajan said he chose to participate instead of sitting safely in his car.
Summary:
The police have detained her husband because he allegedly tried to hurriedly cremate the woman instead of reporting the death.
Summary:
The United States President Donald Trump will address the Global Entrepreneurship Summit (GES) 2017 on Tuesday evening through videoconferencing.
Summary:
US Intelligence agencies have alerted their Indian counterpart on a threat of a lone-wolf attack by Islamic State at the Global Entrepreneurship Summit (GES) 2017 in Hyderabad.
Summary:
Revealing the link between air pollution and mental diseases, a report by Centre for Science and Environment has revealed that air pollution causes 30% of all premature deaths in India.
Summary:
Apart from bulldozers and excavators, police and paramilitary forces deployed elephants to conduct an eviction drive for clearing Assam's Amchang Wildlife Sanctuary from illegal settlers on Monday.
Summary:
The Central Board of Secondary Education (CBSE) will allow diabetic JEE (Main) aspirants to carry fruits, water, and sugar inside the examination halls next year.
Summary:
Congress leader P Chidambaram has said that Prime Minister Narendra Modi's campaign in poll-bound Gujarat is about himself, his past and has no answer to question of joblessness and price rise.
Summary:
Siddarth Kaul, Indian captain Virat Kohli's former teammate from the U-19 Indian cricket team, has received his maiden call-up to the senior national team.
Summary:
India's 24-year-old table tennis player G Sathiyan clinched the gold medal after defeating Japan's Kazuhiro Yoshimura 4-2 in the men's singles final of the 2017 ITTF Challenge Spanish Open in Almeria.
Summary:
The bullet was seized from his bag, and he was handed over to the police as he reportedly could not produce valid documents for carrying the ammunition.
Summary:
A copy of 'On the Origin of Species' with handwritten notes by English naturalist Charles Darwin is going on sale at Christie's, a UK-based auction house.
Summary:
The police killed three of the attackers while two others blew themselves up, officials have said.
Summary:
The Council for Indian School Certificate Examinations has reduced the pass marks criteria for Indian Certificate of Secondary Education (ICSE) Class 10 examination, from the present 35% to 33%.
Summary:
Saeed was put on the list in December 2008 by the UN following the attack which killed 166 people.
Summary:
Former India captain MS Dhoni was welcomed with slogans hailing former Pakistani all-rounder Shahid Afridi during his visit to Kunzer, Jammu and Kashmir.
Summary:
Earlier, the team had performed at the annual event with six aircraft formations.
Summary:
This is part of jail reforms introduced after the alleged murder of Manjula Shetye by prison guards.
Summary:
Seventeen-year-old Shivansh Joshi, who topped the National Defence Academy entrance examination this year, has decided to serve in the defence force over studying at one of the IITs, despite having effectively cleared the JEE Advanced.
Summary:
He also said while everybody is rebuilding their economy using technology, there is a need to protect that data.
Summary:
Miss World 2017 Manushi Chhillar, on being asked about her Bollywood plans, said she would definitely want to work in an Aamir Khan film.
Manushi further said among actresses, Priyanka Chopra is her favourite.
Summary:
Twitter has suspended self-styled critic Kamaal R Khan's second account for undisclosed reasons.
Summary:
Miss World 2017 Manushi Chhillar visited Mumbai's Siddhivinayak Temple on Monday with her family to "express gratitude" after her win at the pageant.
"Seeking blessings from Lord Ganesha at the Siddhivinayak Temple in Mumbai.
Summary:
Filmmaker James Cameron has revealed that on the night his 1997 film 'Titanic' won the Oscars, he almost got into a fight with producer Harvey Weinstein and hit him with his Oscar trophy.
Summary:
The Pakistan Hockey Federation (PHF) has announced that the nation will host a World XI side in January 2018.
Summary:
The White House Christmas decorations have been personally chosen by US First Lady Melania Trump this year.
Summary:
Nineteen-time Grand Slam champion Roger Federer has revealed his family asked him to see a psychologist when he was 17.
Summary:
Municipal authorities said that upon primary inspection, the voter cards appeared to be original.
Summary:
After Ravichandran Ashwin became the fastest bowler to take 300 wickets in Test cricket, commentator Virender Sehwag tweeted, "Congratulations @ashwinravi99 , Doori badi jaldi tay Kar li.
Summary:
The march was organised by the Coalition for Sex Workers, Sexual and Sexuality Minorities' Rights.
Summary:
Formula One unveiled its new logo after the 2017 season-ending race at the Abu Dhabi Grand Prix on Sunday.
Summary:
The Western Railway (WR) has submitted a report to a Railways panel detailing all projects that were to be undertaken at the Elphinstone Road station in the last 10 years.
Summary:
Railway Protection Force (RPF) constable Sachin Sabne saved a senior citizen's life, who got dragged on the platform while trying to board a moving train at Chhatrapati Shivaji Maharaj Terminus (CSMT) on Sunday evening.
Summary:
Five-time Grand Slam champion Maria Sharapova received a marriage proposal from a fan while she was playing an exhibition game in Istanbul, Turkey, on Sunday.
Summary:
The tyres of a United Airlines flight from Germany blew out when it landed in Newark, US, following which passengers were stranded on the tarmac for several hours.
Summary:
The CISF has decided to refer cases of passengers trying to sneak lighters onto flights to the police, an official said.
Summary:
In September, Uber was banned from operating in London for defying safety regulations.
Summary:
Morgulov also called for dialogue between the US and North Korea to prevent further escalation of the crisis.
Summary:
Oscar-winning Hollywood actress Susan Sarandon has said that if Hillary Clinton would have won the US presidential election the country would be at war.
She had called Clinton "untrustable" few days before the presidential vote last year.
Summary:
The fight happened after two of the three accused approached the juice stall run by the victim's friend, demanding he give them juice for free.
Summary:
Former Indian Air Force chief Fali Homi Major has said the force had planned a surgical strike to avenge the 26/11 Mumbai terror attacks, but never received approval from the then UPA government.
Summary:
The Supreme Court is hearing a plea filed by Shafin Jahan challenging the Kerala High Court order, which annulled his marriage to Hadiya, previously named Akhila, on grounds that it was 'love jihad'.
Summary:
As the Supreme Court commenced hearing of its first 'love jihad' case on Monday, Hadiya told the court that she wanted her freedom back, adding that her parents' custody of her was "unlawful".
Summary:
The Madras High Court on Monday set free all 35 crew members of the US anti-piracy ship that was detained for illegally entering Indian waters with a huge cache of arms and ammunition in 2013.
Summary:
Earlier, Pujara had become the third Indian to bat on all five days of a Test in the previous match.
Summary:
IAS officer Ashok Khemka on Sunday tweeted that an officer, who was a member of the committee that gave a clean chit to the Vadra-DLF land deal, was rewarded by the Haryana government with "a lucrative post of real estate regulator".
Summary:
In the video, the drones are seen flying through a test track with the AI drone maintaining more accuracy than the human pilot.
Summary:
Xiaomi's Co-founder Lei Jun has been reportedly linked to world's biggest bitcoin miner, China-based Bitmain, according to the Paradise Papers.
Summary:
Twitter blocked a New York Times account for almost 24 hours last week saying a tweet violated the micro-blogging website's rules against hateful conduct.
Summary:
The protesters had demanded Hamid's resignation for introducing changes to a law related to the electoral oath, that they claimed amounted to blasphemy.
Summary:
The network of underground citizen reporters was set up by Rohingya community leaders.
Summary:
Authorities closed the island's main airport and ordered people within 10 km of the crater to evacuate out of fear of a potential big eruption.
Summary:
Axis Bank has started cross-border payments over the blockchain using fintech company RippleâÂÂs technology.
Summary:
Bharti Airtel Chairman Sunil Mittal has said that telcos have written off investments up to $50 billion due to Jio's "long, free promotional period".
Summary:
He added that Aircel's only options are to either go with the combined entity of Vodafone-Idea or with Airtel.
I have no doubt, we will be a part of that conversation," he added.
Summary:
Bitcoin started the year at less than $1,000 and has rallied nearly 900% since then.
Summary:
The teaser poster of the upcoming biopic on former Indian hockey captain Sandeep Singh, starring actor-singer Diljit Dosanjh, has been unveiled.
Summary:
Sidharth Malhotra has said he won't go nude for a role just for the heck of it, while adding that it's "pointless".
Summary:
Police said if they found a driver driving under the influence of alcohol, then he will face charges of rash and negligent driving.
Summary:
The Income Tax Department has sent a notice to the AAP, directing it to pay a â¹30.67-crore fine over alleged irregularities in the donations the party had received.
Summary:
Aam Aadmi Party (AAP) National Executive Kumar Vishwas on Sunday said the party has drifted away from the vision it set five years ago.
Summary:
England's leading Test wicket-taker James Anderson threw the ball towards the stumps in his follow through, hitting Australian debutant Cameron Bancroft near his groin during the first Ashes Test on Sunday.
Summary:
Summary:
Former Zimbabwean President Robert Mugabe's birthday, February 21, has been declared as a public holiday after the government gazetted it as Robert Gabriel Mugabe National Youth Day. The ruling party's youth league called for the birthday to be declared a holiday in recognition of Mugabe's efforts in empowering the youth.
Summary:
The court also upheld life sentence of 146 other soldiers.
Summary:
Britain's Prince Harry and actress Meghan Markle, known for playing Rachel Zane on the legal drama series 'Suits', have announced their engagement and will get married next year.
Summary:
Former RBI Governor Raghuram Rajan, when asked about elected autocrats, has said it's often people appealing to a certain segment of society who "take countries down the wrong path".
Summary:
Time Inc, the publisher of the iconic Time magazine, on Sunday agreed to be sold to Meredith Corporation for $2.8 billion.
Summary:
The upgradation of the Delhi-Chandigarh corridor for allowing trains to ply on a speed of 200 kilometres per hour will cost â¹11,218 crore, a French Railways report has revealed.
Summary:
Filmmaker James Cameron, while talking about why Leonardo DiCaprio's character 'Jack' had to die in 'Titanic', said, "The film is about death and separation; he had to die." He added that had 'Jack' lived, the ending of the film would have been meaningless.
Summary:
Ravichandran Ashwin on Monday became the fastest player to pick 300 Test wickets, bettering the previous record of 56 matches, set by Australian legend Dennis Lillee on November 27, 1981.
Summary:
The woman, whose father passed away three years ago, did not have the money to organise the wedding.
Summary:
Hyderabad police questioned a law student for 17 hours after he shared a post against Prime Minister Narendra Modi in connection with the ongoing Padmavati debate.
The student had shared a filmmaker's post offering â¹1 lakh to anyone who threw a shoe at PM Narendra Modi.
Summary:
This comes after Congress' youth wing shared a meme mocking Prime Minister Modi's past as a tea seller.
Summary:
All-rounders Ravichandran Ashwin and Ravindra Jadeja have been rested for the fourth straight ODI series.
Summary:
The committee also recommended that metering be done as per units consumed for charging each vehicle.
Summary:
Users have reported that YouTube's autocompleting search queries starting with 'how to have' suggest pedophiliac results including 's*x with your kids'.
Summary:
Former RBI Governor Raghuram Rajan has said that on the issue of politics his wife very clearly says no.
Summary:
Actor Akshay Kumar has revealed that while signing him for his first film, filmmaker Pramod Chakravorty gave him a cheque of â¹5000.
Summary:
Actress Anushka Sharma has said that she would love to play Manisha Koirala's role in the 1998 romantic thriller 'Dil Se..'.
She further said that she loves Manisha's character in the film and the way it was played by the actress was outstanding.
Summary:
The Supreme Court on Sunday rejected the petition filed by a Bengaluru-based woman, claiming to be the biological daughter of former Tamil Nadu Chief Minister Jayalalithaa, for a DNA test to ascertain her parentage.
Summary:
Ahead of the Gujarat Assembly elections, Prime Minister Narendra Modi on Monday said that the Congress lacked neeti, niyat and neta (policy, intention and a leader) to ensure development in the state.
Summary:
Minister of State for Micro, Small and Medium Enterprises Giriraj Singh on Sunday said all Indian Muslims are descendants of Lord Rama and should help in the construction of Ram Temple at the disputed site in Ayodhya.
Summary:
Talking about the Centre withdrawing RJD President Lalu Prasad Yadav's Z+ security cover, his son Tej Pratap Yadav on Monday said, "(PM) Modi ji ka khaal udhedva denge", adding that it was part of a conspiracy to murder his father.
Summary:
A 95-year-old woman cast her vote in Uttar Pradesh civic polls on Sunday, after allegedly being declared dead by unknown persons over a land dispute in LucknowâÂÂs Sitapur Road area.
Summary:
Manchester City winger Raheem Sterling's 84th-minute winner against Huddersfield helped City claim 11th straight league win and become the first EPL team in 25 years to accumulate 37 points in opening 13 games.
Summary:
Officials said codeine preparations are being sent to Bangladesh and Myanmar for drug addiction.
Summary:
France defeated Belgium 3-2 to win Davis Cup, dubbed the World Cup of Tennis, for the first time in 16 years and 10th time overall on Sunday.
Summary:
Former SpaceX intern, Sahil Gupta, has claimed in a blog post that "Satoshi Nakamoto (referred to as the Founder of Bitcoin) is probably Elon Musk." Gupta says, "Bitcoin's source code was written by someone with a mastery of C++.
Summary:
Sachin Tendulkar-backed gaming startup 'Smaaash' has reportedly raised $3.87 million (â¹25 crore) from Mumbai-based venture capital firm, Sixth Sense Ventures.
Summary:
As part of a nationwide "toilet revolution", Chinese President Xi Jinping has asked officials to upgrade toilets across the country to boost tourism infrastructure and improve quality of life.
Summary:
Describing allegations of Russian interference in the 2016 presidential election as a "phony Democrat excuse for losing", US President Donald Trump on Sunday tweeted that he has "possibly done more than any 10 month President".
Summary:
India's top two stock exchanges NSE and BSE have reportedly written to at least 12 companies whose earnings were leaked on WhatsApp before their scheduled announcement.
Summary:
India equalled its biggest win by an innings after defeating Sri Lanka by an innings and 239 runs in the second Test in Nagpur on Monday, taking a 1-0 lead in the three-Test series.
Summary:
Summary:
The Madhya Pradesh government has made it compulsory for school students to respond to roll calls with 'Jai Hind'.
Summary:
Delhi Lieutenant-Governor Anil Baijal has asked the CBI to probe a land transfer scam where officials allegedly transferred at least 30 acres of government property worth over â¹600 crore to individuals through forged court orders.
Summary:
Actor Shahid Kapoor's half-brother Ishaan Khatter won the Best Actor Award for his debut film 'Beyond the Clouds' at Istanbul's 5th International Bosphorus Film Festival.
Summary:
South African representative Demi-Leigh Nel-Peters was crowned the Miss Universe 2017, making South Africa the winner after 39 years at the beauty pageant.
Summary:
Rejecting the idea of paying heed solely to the government's supporters, former RBI Governor Raghuram Rajan on Sunday said leaders must listen to the broader electorate in order to reduce the possibility of making mistakes.
Summary:
The Indian men's kabaddi team defeated Pakistan 36-22, while the women's team beat South Korea 42-20, in the finals of the Asian Kabaddi Championship 2017 in Iran to win the gold medals.
Summary:
Historian Ramachandra Guha on Sunday tweeted, "Three times this time, I have been subject to unprovoked rudeness by an IndiGo staffer.
Summary:
Nitu, Jyoti, Sakshi and Shashi Chopra from Haryana and Assam's Ankushita Boro won golds in their respective weight categories.
Anupama and Neha Yadav won bronze medals in their respective categories.
Summary:
He directed officials to design a new uniform for them and also impart soft skills for better interaction with passengers.
Summary:
Trial courts have launched an e-mail alerts facility wherein litigants are sent updates on the proceedings in their case, the date of next hearing, and reminders before the hearing date via e-mail.
Summary:
Even though the construction of Maratha warrior Chhatrapati Shivaji's memorial is yet to begin, the Maharashtra government has already spent over â¹15 crore on the project, an RTI response revealed.
Summary:
The first day-night ODI and the first-ever day-night Test in international cricket were held exactly 36 years apart on November 27.
Summary:
Gerritsen hopes SAM will be advanced enough to participate in the 2020 elections but was unsure of whether it would be legally possible.
Summary:
On the occasion of the Constitution Day, Prime Minister Narendra Modi on Sunday sought unity of purpose among the legislature, the executive and the judiciary at Vigyan Bhavan to strengthen Indian democracy.
Summary:
Nearly a month after the government banned hookahs in Delhi, various eateries and bars have reportedly switched to selling and serving hookah pens and palm-sized electronic hookahs called vapes in the national capital.
Summary:
A teacher in Telangana's Ranga Reddy district reportedly gagged the mouth of an upper kindergarten student with tape for 'talking too much' in class.
Summary:
Alleging that the BJP has divided India along communal lines, Delhi Chief Minister Arvind Kejriwal on Sunday said the party had achieved in three years what Pakistan's spy agency ISI couldn't in 70 years.
Summary:
Speaking on the third death anniversary of Australian cricketer Phil Hughes, former Australian captain Michael Clarke said that he still thinks about him every day.
Summary:
Accusing the BJP of using nasty tactics to win the upcoming Gujarat Assembly elections, nShiv Sena chief Uddhav Thackeray slammed the party for releasing Patidar leader Hardik Patel's sex CD.
Summary:
A madrasa in Agra is imparting social values and education not only to Muslims, but also to kids belonging to Hinduism and other religions for the past ten years.
Summary:
Australian cricketers wore black armbands featuring late Australian cricketer Phil Hughes' initials on the cricketer's third death anniversary on Monday.
Summary:
An NGO which took a 23-year-old gangrape victim to a Bengaluru government hospital for treatment has alleged that the staff left her unattended for nearly three hours on Saturday.
Summary:
Australia's David Warner and Cameron Bancroft broke an 87-year-old Test record for the all-time highest unbeaten opening partnership in a successful Test chase to help the Aussies win the first Ashes Test.
Summary:
Two men were arrested for allegedly harassing female fans during an ISL match between NorthEast United FC and Chennaiyin FC at Chennai's Jawaharlal Nehru Stadium on Sunday.
Summary:
Lionel Messi was denied a legitimate goal despite the ball crossing the goal line in league-leaders Barcelona's 1-1 draw against second-placed Valencia on Sunday.
Summary:
South Africa's Demi-Leigh Nel-Peters has been crowned Miss Universe 2017, becoming the second woman from South Africa to win the title.
Summary:
Twenty-one-year-old Shraddha Shashidhar, who won the title of Miss Diva 2017, will be representing India at Miss Universe 2017.
Summary:
With his first double ton, he became the first Indian captain to hit a 200 overseas.
Summary:
Summary:
The Supreme Court has observed that courts cannot make a judgment in which the husband is forced to keep his wife, saying it is a "human relationship".
Summary:
This comes after a video of Pratap threatening to disrupt the wedding and beat up Modi surfaced online.
Summary:
Under the alliance formed in 2015, nations will assist each other in providing military force, financial aid, material or security expertise in the fight against terrorism.
Summary:
A Bangladeshi NGO has developed a 'rape alarm' device to protect Rohingya women from unwanted sexual advances, in the wake of reports of sexual assaults and rape.
Summary:
Black Friday online sales in the US hit a record $5.03 billion this year, according to Adobe, which analysed 80% of online transactions at 100 largest web retailers.
Summary:
Virgin Group Founder Richard Branson has said that he has "no recollection" of an alleged sexual misconduct involving singer Antonia Jenae in an island in 2010.
Summary:
A video shared by Sunny Leone on her social media shows her team member Sunny Rajani playing a prank on her by throwing a plastic snake on her, while she was busy reading scripts.
Summary:
Tiger Shroff slammed a fan who jumped from a 13-foot-high wall trying to overcome his fear of heights, while thanking the actor for "inspiring" him.
Summary:
While talking about the upcoming film on India's 1983 Cricket World Cup victory in which Ranveer Singh plays former Indian cricketer Kapil Dev, the actor said, "I hope Kapil sir...gives me some training and tips." Ranveer added that he hopes he gets Dev's bowling action correct.
Summary:
Actor Sushant Singh Rajput has said nothing can take the excitement of acting away from him.
I'll make my short films or...act in theatre," added Sushant.
Summary:
Chennai police have filed an FIR against two unidentified men after a video of them harassing a NorthEast United Football Club (NEUFC) female supporter during an Indian Super League match went viral.
Summary:
Mercedes driver Valtteri Bottas won the final race of the Formula One season at the Abu Dhabi Grand Prix on Sunday.
Summary:
The Maharashtra medical education department has deferred the implementation of compulsory one-year rural service for MBBS graduates by a year.
Summary:
India's lone individual Olympic gold medalist Abhinav Bindra has said the right moment for India to host the Olympics will be when the nation is in a position to win 40 gold medals at the Olympics.
Summary:
A study conducted at 40 Delhi University colleges revealed that fear of street harassment plays a role in female students' college choices.
Summary:
Reacting to England all-rounder Moeen Ali's stumping dismissal by Australian wicketkeeper Tim Paine off Nathan Lyon's bowling during the first Ashes Test, a user tweeted, "The line isnâÂÂt even straight." Other tweets read, "Hahaha they are repainting the line at drinks!!!
Summary:
Mercedes driver Lewis Hamilton won his fourth F1 World Championship, finishing the season with 363 points after securing second position in the last race at the Abu Dhabi Grand Prix on Sunday.
Summary:
Reiterating his support for simultaneous elections to Lok Sabha and state assemblies, PM Narendra Modi on Sunday said conducting elections every five to six months in different states has become hectic and costly.
Summary:
In a development in the Kerala love jihad case, the lawyer of Hadiya's father has said that her statements cannot be taken at face value and raised concerns over her mental well-being.
Summary:
Chief Justice of India Dipak Misra has said pending cases cannot be a roaring tiger before the judiciary, adding that the problem can be solved if the bar and bench work together.
Summary:
Union Minister Mukhtar Abbas Naqvi on Sunday said the government had no intention of introducing Islamic banking, adding that India is a secular and democratic country.
Summary:
As many as 34 civilians, including 15 children, were killed by Russian air strikes on Sunday in the Syrian city of Deir ez-Zor, the Syrian Observatory for Human Rights said.
Summary:
Marais' 300*(191) included 13 sixes and 35 fours.
Summary:
The Madhya Pradesh Cabinet has approved a resolution to award death sentence to rape convicts in cases where the victims are girls aged 12 years and below.
Summary:
Actor Akshay Kumar has said that Twinkle Khanna still tells actress Rani Mukerji "Teri zindagi maine banayi", after Twinkle rejected the role of 'Tina' in the 1998 Karan Johar directorial 'Kuch Kuch Hota Hai'.
Summary:
Actor and BJP MP Paresh Rawal has apologised to the Rajput community after he compared the royals (raja) and music (vaja) to monkeys (vandra), at a recent rally in Rajkot.
Summary:
India registered their seventh 600+ total in Test cricket under Virat Kohli's captaincy, after posting 610/6d in the first innings against Sri Lanka on Sunday.
Summary:
PM Narendra Modi on Sunday praised an eight-year-old differently abled boy for his efforts in making Kumhari village in Madhya Pradesh open-defecation free.
Summary:
Elon Musk has won a $50 million bet against Co-founder of software company Atlassian, Mike Cannon-Brookes, for making the world's biggest lithium-ion battery in 100 days.
Summary:
US-based cab aggregator Uber's new CEO Dara Khosrowshahi knew about the data breach more than two months before it became public, according to a Wall Street Journal report.
Summary:
The US has warned Pakistan of "repercussions" in their bilateral relations if it fails to detain recently released 26/11 Mumbai terror attacks mastermind, Hafiz Saeed.
Summary:
The person who mailed an improvised explosive device to former US President Barack Obama has been identified as a Texas woman after cat hair from the package were matched to cats owned by her.
Summary:
Responding to criticism that government failed to create enough jobs, NITI Aayog Vice Chairman Rajiv Kumar said, "Lack of employment story...is quite exaggerated." He said a large number of areas have seen substantial increase in employment opportunities, though they may not be in organised sector.
Summary:
NITI Aayog Vice Chairman Rajiv Kumar has said it's now time for consolidation of government reforms initiated in the last 42 months, including GST, bankruptcy code, and benami law.
Summary:
Actress Soha Ali Khan has said that for most part of her life, she was completely non-famous.
Summary:
Filmmaker Hansal Mehta, while talking about Rajkummar Rao, has said that the actor is a "gift".
Summary:
Summary:
The Election Commission has issued a notice to Gandhinagar archbishop, Thomas Macwan, after he wrote a letter to the Catholic community, warning against "nationalist forces" and stating that the Gujarat Assembly elections could make a difference.
Summary:
Delhi Chief Minister Arvind Kejriwal has said that if the Delhi Police was under his government's control, he would have taught social media trolls a lesson.
Summary:
The 29-year-old's double ton against Sri Lanka in the second Test is also the 50th double ton by an Indian batsman.
Summary:
The Income Tax Department has attached cash deposits of â¹15.39 crore made in a Delhi bank after demonetisation as benami assets under the Benami Transactions (Prohibition) Amendment Act, 2016.
Summary:
A 1993 'individual bio-terrorism' incident shared by the police revealed how a contract killer injected plague virus into the victim.
Summary:
Slamming the UPA government for treating Pakistan as a victim state, BJP spokesperson GVL Narasimha Rao said Prime Minister Narendra Modi has been successful in isolating and cornering Pakistan at a global level.
Summary:
After she came across an advertisement on classifieds platform OLX, the woman contacted the accused, who demanded her to transfer â¹96,500 as packing and transportation charges.
Summary:
Europe-based product designer Klemens Schillinger has developed a smartphone-like device called Substitute Phone which allows users to swipe, scroll or zoom on its surface.
Summary:
US-based software developer Shantini Vyas has developed an app called Pawsy which lets users find and connect their pet dogs with nearby dogs.
Summary:
After US President Donald Trump accused CNN of not doing a good job of representing the country across the world, the network tweeted, "That's yours.
Summary:
Pola, a Japanese cosmetic brand, has apologised after one of its retail shops posted a signboard saying, "Entry by Chinese people prohibited".
Summary:
Former Zimbabwean President Robert Mugabe will get around $10 million as part of a deal negotiated before his resignation, according to reports.
Summary:
The Constitution of India was adopted by the Constituent Assembly on November 26, 1949, which is now celebrated as Constitution Day. However, it was enforced on January 26, 1950, to commemorate the declaration of Purna Swaraj.
Summary:
Rohit Sharma, who was playing a Test for India after over a year, smashed his Test career's third hundred against Sri Lanka on Sunday.
Summary:
Summary:
With 448 articles and 12 schedules, the Indian Constitution is the world's longest written Constitution.
Summary:
Actor Sanjay Dutt, while talking about the upcoming biopic on him, said that he has not had an easy life and has made way too many mistakes.
Summary:
Union Commerce Minister Suresh Prabhu has said that the Centre will support Apple set up a manufacturing unit in India and is awaiting a formal proposal from them.
Summary:
The odd-even scheme, if implemented next time, will have to include the NCR towns of Gurugram, Noida, Ghaziabad and Faridabad, besides Delhi, the Supreme Court-appointed Environment Pollution (Prevention and Control) Authority (EPCA) said on Friday.
Summary:
Citing his spat with former Team India coach Greg Chappell, ex-India captain Sourav Ganguly said that individual sports are a lot better as players are not selected by others.
Summary:
While talking about the future of artificial intelligence (AI), Hillary Clinton has said, "Artificial intelligence is not our friend." In a recent interview, she also said, "A lot of really smart people, you know, Bill Gates, Elon Musk, Stephen Hawking...
Summary:
World's first robot citizen Sophia has said, "The notion of family is a really important thing," when asked about starting her own family.
Summary:
The startup's revenue is expected to increase two-fold to $25.4 million during 2017-18, the report stated.
Summary:
However, a Tata Motors spokesperson said the company has not decided to put a complete end to its production.
Summary:
Saudi Arabia has banned pilgrims from taking photos and videos for any purpose at Islam's two holiest sites, Mecca's Masjid al-Haram, known as the Great Mosque of Mecca, and Medina's Al-Masjid an-Nabawi, or 'The Prophet's Mosque', according to reports.
Summary:
Accusing the US of "pumping" weapons into the Asia-Pacific region by using the North Korean nuclear threat as an excuse, Russian Foreign Minister Sergey Lavrov said that measures taken by the US in the region are "absolutely disproportionate".
Summary:
Finance Secretary Hasmukh Adhia on Saturday said it is mandatory for the big companies to pass on the benefit of reduced GST to end-consumers.
Summary:
He said banking frauds led to $3 billion loss in the last one year.
Summary:
The price of Bitcoin has jumped more than 800% this year so far amid increasing interest from institutional investors.
Summary:
Fashion designer Sabyasachi Mukherjee has said when he dressed actress Vidya Balan for the Cannes Film Festival in 2013, he became a national terrorist.
This is juvenile fashion behaviour," added Mukherjee.
Summary:
Couples in Maharashtra can now register their marriages online with the help of their Aadhaar numbers.
Summary:
Winger Willian scored in the 85th minute, 144 seconds after coming on as a substitute, to help defending champions Chelsea salvage a 1-1 draw against Liverpool in the Premier League on Saturday.
Summary:
Stating that government's two-child policy has resulted in demographic imbalance, Maharaj added India lost territories wherever Hindu population reduced.
Summary:
This was India's 30th 600+ total in Test cricket and seventh under Virat Kohli's captaincy.
Summary:
Bengaluru's Kempegowda International Airport Customs officials seized US dollars worth â¹32.25 lakh from a person hailing from Kerala.
Summary:
This was Ying's fifth Superseries title of 2017.
Summary:
US-based developer Rashid Osmannuri has developed an app called 'L&F' which lets users find lost items by scanning and tracking them via a map.
Summary:
The deputy head of Iran's Revolutionary Guards, Brigadier General Hossein Salami, on Saturday said that the country could increase its missile range beyond 2,000 kilometres if it feels threatened by Europe.
Summary:
US President Donald Trump's daughter Ivanka Trump took to Twitter to defend former President Barack Obama's daughter Malia Obama after a video of her blowing smoke rings went viral.
Former US State Secretary Hillary Clinton's daughter Chelsea Clinton also defended Malia.
Summary:
Indian captain Virat Kohli set the record for the most number of international centuries in a year as captain after registering his 10th international ton of the year against Sri Lanka on Sunday.
Summary:
Nepal on Sunday witnessed the first phase of the two-phase parliamentary elections, held for the first time since 1999.
Summary:
Virat Kohli equalled the record for the most double centuries by a captain in Tests, after smashing his fifth double ton against Sri Lanka on Sunday.
Summary:
Khan, who was initially hailed as a hero for paying for oxygen, was later held responsible for the deaths by a state committee.
Summary:
Rameshbabu Praggnanandhaa, a 12-year-old chess player from Tamil Nadu, missed out on becoming the youngest Grandmaster in chess history as he drew with German Grandmaster Rasmus Sven in the World Junior U-20 Chess Championship final.
Summary:
The wedding venue for Bihar Deputy CM Sushil Modi's son has been changed from Shakha Maidan to Veterinary college ground for "security reasons" as "some leaders" were "threatening to disrupt the marriage".
Summary:
Stating that only one in four judges is a woman, President Kovind urged the higher judiciary to take long-term measures to remedy the situation.
Summary:
Gopi clocked 2 hours, 15 minutes and 48 seconds to clinch the gold medal.
Summary:
The BJP on Sunday organised the 'Mann ki Baat, Chai Ke Saath' program in Gujarat on Sunday wherein party workers listened to Prime Minister Narendra Modi's radio address while having tea with residents.
Summary:
External Affairs Minister Sushma Swaraj on Saturday assured a medical visa to a Pakistani national who said, "After Allah, you are our last hope." Responding to the request, Swaraj tweeted, "India will not belie your hope.
Summary:
Sri Lankan pacer Dasun Shanaka has been fined 75% of his match fee for ball tampering during the second day's play in the Nagpur Test against India.
Summary:
Addressing the nation during 'Mann ki Baat', Prime Minister Narendra Modi on Sunday saluted all those women and men who lost their lives during the 26/11 Mumbai attacks.
Summary:
Underworld don Dawood Ibrahim is suffering from depression as his only son Moin Nawaz Kaskar has chosen to become a Maulana, police officials said.
Summary:
On the occasion of the Constitution Day, Prime Minister Narendra Modi on Sunday said, "The makers of our Constitution worked hard to give us a Constitution we would be proud of." He added that the Indian Constitution safeguards the rights of the poor and weaker sections of society.
Summary:
As many as 263 coins worth â¹790 were removed from a youth's stomach during a three-hour operation at a government hospital in Madhya Pradesh's Rewa, doctors said.
Summary:
With the win, Real are provisionally seven points behind league-leaders Barcelona.
Summary:
Ahead of the Gujarat Assembly elections, Union Minister Arun Jaitley on Saturday said the Congress had mortgaged itself to those who can only spread anarchy in the state.
Summary:
The speed limit for cars on national highways should be increased from 80 kmph to 100 kmph, the panel added.
Summary:
CBSE has made Aadhaar mandatory to apply for the exam.
Summary:
Aam Aadmi Party will celebrate its fifth Foundation Day on Sunday and hold a national convention at the Ramlila Maidan in Delhi.
Summary:
Government teachers in Ghaziabad's 593 primary schools will have to mark their attendance by posting their selfies taken at the school premises through a mobile app especially prepared by the district administration.
Summary:
Haryana BJP leader Suraj Pal Amu on Saturday threatened West Bengal CM Mamata Banerjee saying she would meet the same fate as 'Shurpanakha', a demoness whose nose was cut off by Lakshman.
Summary:
Bangalore Development Authority's (BDA) Provisional Master Plan has proposed two new Ring Roads around the existing three Ring Roads, and two new Metro routes, targeting a shift to public transport by citizens.
Summary:
Sakshi, competing in the bantamweight category, will face England's Ivy-Jane Smith in Sunday's final.
Summary:
A 19-year-old has alleged he was doused in petrol and set on fire by three bikers in DelhiâÂÂs Bawana after he protested against their behaviour towards a girl accompanying him.
Summary:
An increase in the number of flight movements using a single-runway is an achievement for the airport operator and the Airports Authority of India, officials added.nn
Summary:
Besides the BrahMos, India's arsenal features the Prithvi series, which are the country's first indigenously developed missiles.
Summary:
The attack, the deadliest in the country, was carried out by 25 to 30 militants, Sadeq added.
Summary:
The film's producers had said that it will not be screened in UK theatres until it is cleared in India.
Summary:
The Indian Space Research Organisation (ISRO) will provide 1,000 transponders by March 2018 for monitoring suspicious vessels and boats.
Summary:
Two ambulances in Punjab's Amritsar were blocked after state minister Navjot Singh Sidhu started a protest on the road against GST's effects on the economy.
Summary:
The University Grants Commission (UGC) has directed all universities to celebrate November 26 as 'Samvidhan Divas' to commemorate the adoption of the Constitution.
Summary:
Maharashtra-based MMA fighter Bharat Kandare on Saturday became the first-ever Indian to fight in the Ultimate Fighting Championship (UFC).
Summary:
The Goa government has decided to formulate a policy for conserving Portuguese-era structures in the state.
Summary:
Quoting one of the "greatest wizards" Albus Dumbledore from the Harry Potter series, Mumbai Police on Friday tweeted, "Help will always be give at Mumbai to those who ask for it".
Summary:
The number of trafficking victims among children has also significantly increased in recent years, Kacker added.
Summary:
Root took his eyes off the ball and could not duck before the ball hit his helmet's grille.
Summary:
Over 33,700 migrants heading towards Europe have died or gone missing at the Mediterranean Sea since 2000, making it the world's deadliest border for migrants, the United Nations' migration agency has said.
Summary:
Hollywood actor Dwayne Johnson took to social media to share a picture with his family members from Thanksgiving celebration and wrote, "There was a time back in '87 when we couldn't even afford Thanksgiving dinner." "We were in a tough spot back then, but we got through it.
Summary:
The incident came to light when the parents of the girls, who stayed at the school, came to meet them and found them missing.
Summary:
Indian shuttler PV Sindhu reached the Hong Kong Open Superseries final for the second straight year after defeating former world number one Ratchanok Intanon on Saturday.
Summary:
Only former batsmen Don Bradman (56) and Sunil Gavaskar (98) took fewer innings than Smith to reach 21 Test hundreds.
Summary:
Summary:
Cracks occurred due to change in weather which led to trains being held for over 15 minutes, reports said.
Summary:
India has sent relief material consisting of 3,000 family relief packs to Myanmar's Rakhine State, where violence has triggered an outflow of Rohingya refugees.
Summary:
He also asked what purpose the fare hike would serve if the metro ridership decreased.
Summary:
The Haryana government has suspended mobile internet services in 13 districts till November 26, anticipating law and order problems ahead of two public rallies by a Jat body and ruling BJP's Kurukshetra MP.
Summary:
Murray jokingly cited Trump's excuse for why he wouldn't be able to accept BBC's Sports Personality of the Year award.
Summary:
The Babasaheb Bhimrao Ambedkar University in Lucknow is in a state of "complete and practically irreversible decline and collapse", according to a report by the University Grants Commission.
Summary:
At least 27 teachers from Maharashtra have been booked for refusing to do election-related duty, police said.
Summary:
Authorities in the German city of Bochum have installed gift-wrapped barricades to beef up security for the Christmas market season.
Summary:
Chinese e-commerce giant Alibaba's affiliate Ant Financial has banned consumer loans with annual interest rates above 24% from its payment platform Alipay.
Summary:
The US will stop supplying arms to the Syrian Kurdish militia, the YPG, Turkish Foreign Minister Mevlut Cavusoglu has said.
Summary:
Pakistan has justified the release of 26/11 Mumbai terror attack mastermind and Jamaat-ud-Dawah chief Hafiz Saeed from house arrest, claiming it was committed to the UN Security Council sanctions against terrorists.
Summary:
Medanta hospital in Gurugram has charged â¹16 lakh for a 22-day-long dengue treatment of a seven-year-old boy, who passed away on Wednesday.
Summary:
The body of 23-year-old Army jawan, Irfan Ahmed, who went missing on Friday, was found riddled with bullets on Saturday in Kashmir's Shopian district.
Summary:
The death toll from the attack has risen to 305, the government added.
Summary:
Slamming PM Narendra Modi after 2008 Mumbai attacks terrorist Hafiz Saeed was freed, Congress Vice President Rahul Gandhi said, "Baat nahi bani (didn't work out)".
"President Trump just delinked Pak military funding from LeT.
Summary:
British world heavyweight boxing champion Anthony Joshua trained at the world's highest ring created at a height of 689 feet, atop the Burj Al Arab in Dubai.
Summary:
US President Donald Trump's daughter Ivanka Trump will get Presidential-level security during her visit to India in the wake of "heightened threat perception", according to reports.
Summary:
Barcelona forward Lionel Messi on Saturday signed a new contract that will keep him with the Catalan club through the 2020-21 season.
Summary:
Budweiser plans to brew "the first beer on Mars" and will start space experiments by sending barley, beer's key ingredient, into space next month.
Summary:
Pakistan's media regulator on Saturday banned all private TV channels from covering a security operation at Faizabad live, also restricting social networking websites including Facebook and Twitter.
Summary:
The military took over the government's control earlier this month, placing Mugabe under house arrest.
Summary:
Black Friday online sales in the US increased nearly 15.6% year-on-year to about $3.54 billion by evening, according to Adobe Analytics.
Summary:
Speaking at a literary festival, Vice President Venkaiah Naidu on Saturday said that giving violent threats and announcing rewards for physical harm was not acceptable in a democracy.
Summary:
Actor Ayushmann Khurrana is set to star in an upcoming film titled 'Badhaai Ho', which will be directed by Amit Sharma.
I look forward to a family film that is both innovative and entertaining," said Ayushmann.
Summary:
Actress Kalki Koechlin has said celebrities should personally relate to the cause or opinion that they are backing.
Summary:
The Delhi High Court, while dismissing a plea against 'Padmavati', asked the petitioner, "Have you seen the film?" "Have the people who are burning cinema halls seen the film?
Summary:
A Tamil Nadu traffic police constable has been suspended for allegedly hitting a biker with a lathi and seriously injuring him for not wearing a helmet.
Summary:
Indian batsmen Murali Vijay and Cheteshwar Pujara slammed their 10th and 14th Test tons respectively as India ended the second day of the second Test at 312/2, leading Sri Lanka by 107 runs.
Summary:
A building made of the darkest known man-made substance, Vantablack, will be unveiled at the 2018 Winter Olympics in South Korea.
Summary:
A 17-year-old college student was stabbed to death by a group of five teenagers in school uniforms on a moving bus in Delhi on Thursday.
Summary:
Once items are placed on its tab, it holds the purchase for a period of time, pre-defined by users.
Summary:
US-based image-sharing platform Imgur has reported a data breach which occurred in 2014 and affected email addresses and passwords of 1.7 million user accounts.
Summary:
The Russian government has given an approval to merge US-based Uber and Russia-based Yandex's ride-sharing businesses.
Summary:
Railway Minister Piyush Goyal said that credit rating agency Standard & Poor's (S&P) decision to retain India's credit rating with stable outlook is a "huge endorsement" of government policies.
Summary:
The 1,000-MW reactor will be constructed at the Chashma Nuclear Power Plant in Pakistan's Punjab province.
Summary:
India's largest drugmaker Sun Pharmaceutical has said its US-based subsidiary is recalling two lots of diabetes drug Riomet due to microbial contamination.
Summary:
Environment Pollution (Prevention and Control) Authority (EPCA) has urged the India Meteorological Department to give out at least a week's forecast for weather, adding that current two-day alert is not enough to prepare for pollution spikes.
Summary:
Sushmita Sen, on being asked about essence of being a woman, answered, "A woman is the one who shows man what love, caring, sharing is all about." Aishwarya Rai said compassion is the quality a Miss World should embody during the Question and Answer Round.
Summary:
Born on November 25, 1844, German engineer Carl Benz developed the world's first petrol-powered automobile in 1885.
Summary:
The Church of Sweden has added gender-neutral ways of addressing God to its new Worship Book.
Summary:
Indian women's team fast bowler Jhulan Goswami, who turned 35 on Saturday, with her tally of 285 scalps is the highest wicket-taker in the history of women's international cricket.
Summary:
A terror attack in Somalia this year killed over 350 people.
Summary:
Police in Kalaburagi district of Karnataka gave roses to people following traffic norms and wearing helmets and booked those who were seen flouting the rules.
Summary:
The notification for the JEE (Main) 2018 has stated that besides Hindi and English, students from Gujarat, Daman and Diu, and Dadra and Nagar Haveli can also opt for Gujarati medium question papers.
Summary:
A woman in Uttarakhand allegedly ran away with the gold and silver jewellery her husband's family had gifted her, within two days of getting married.
Summary:
Meanwhile, 'Make America Great Again' hats and 'fight fake news' stickers were on sale at 'shop.donaldjtrump.com', with the proceeds going to the RNC and Trump campaign.
Summary:
The Twitter account for New York City Transit Subway recently tweeted seemingly confusing advice to Twitter user '@Lzzzy_'.
Summary:
Television actor Rithvik Dhanjani, while talking about media attention on his personal life, said, "My fans have the right to talk, gossip, read or write about me." "What I am is because of my fans," he added.
Summary:
Indian shooter Heena Sidhu took to Twitter to slam people who do not stand up for the national anthem and instead 'carry on eating popcorns, chit-chatting, talking loudly on phone'.
Summary:
The Karnataka government has cleared the Karnataka Public Safety (Measures) Enforcement Bill, which makes it mandatory to install surveillance systems at places with large gathering in Bengaluru.
Summary:
Lawyer Tanveer Ahmed Mir, who defended Rajesh and Nupur Talwar in Aarushi murder case, has been hired to defend the juvenile accused in Ryan International murder case.
Summary:
A 25-year-old woman, who went missing from Ayodhya in Uttar Pradesh as a child after accidentally boarding a Mumbai-bound train while playing, has found her family 14 years later.
Summary:
Reacting to Rahul Dravid standing in a queue alongside his kids at a science exhibition, a user tweeted, "When life gives you Rahul, make it Dravid, not Gandhi..#RahulDravid".
Summary:
"Vemula took a brave step when he decided to join the university but his career was crushed after a letter from a minister," Gandhi added.
Summary:
Members of minority communities form less than 4% force in the Delhi Police, which has a strength of around 80,000 personnel, a report by Delhi Minorities Commission has revealed.
Summary:
English women's team cricketer Danielle Wyatt, who asked Virat Kohli to marry her on Twitter in 2014, tweeted about being featured on the team of the week list alongside the Indian captain.
Summary:
Mozilla has partnered with website 'Have I Been Pwned' that allows users to check if their passwords have been compromised, for the purpose.
Summary:
The bug affected users who tweeted from 'https://twitter.com', and tapped to add an emoji or GIF.
Summary:
Maker of the augmented reality game Pokémon Go, Niantic has raised $200 million in Series B funding led by the US-based Spark Capital, according to The Wall Street Journal.
Summary:
Indian online payments company BillDesk has launched cryptocurrency exchange Coinome in India which allows for the trading of Bitcoin and Bitcoin Cash.
Summary:
National carrier Air India has removed its Executive Director (ED) for in-flight services, AS Soman from the post.
Summary:
Castro, who died aged 90, served as the country's President and Prime Minister from 1959-2008.
Summary:
Bangladesh and Myanmar have agreed to take assistance from the United Nations' refugee agency for the repatriation of more than six lakh Rohingya Muslims who had fled to Bangladesh to escape a violent crackdown by the Myanmar military.
Summary:
Economic Affairs Secretary Subhash Chandra Garg has said that the government is not disappointed with credit rating agency S&P's decision to keep India's sovereign rating unchanged.
Summary:
The Indian Film and Television Directors' Association (IFTDA), along with 20 other bodies of the film and television industry, is planning a 15-minute blackout on Sunday in support of Sanjay Leela Bhansali's film 'Padmavati'.
Summary:
Haryana CM Manohar Lal Khattar has responded to former CM Bhupinder Singh Hooda's alleged 'Khattar has no family' remark over honouring Miss World 2017 Manushi Chhillar, saying he considered the entire state as his family.
Summary:
The TIME magazine has rejected US President Donald Trump's claim that it offered him this year's 'Person of the Year' award.
Summary:
While classical bits can store either 0 or 1, quantum bits can superpose both (00, 11, 01, 10) to store more information.
Summary:
The Delhi Metro Rail Corporation (DMRC) has claimed that fare hike was not the only reason for the drop in Delhi metro ridership in October.
Summary:
The Golden Temple in Amritsar has been awarded the 'most visited place of the world' by London-based organisation, World Book of Records (WBR).
Summary:
After BJP leader Anil Sahni announced a "reward" of â¹1 crore to whoever slaps Lalu Prasad Yadav's son Tej Pratap, BJP's Bihar unit condemned Sahni's comments, adding that disciplinary actions would be taken against him.
Summary:
Ritu Phogat bagged the silver medal in the Under-23 Senior World Wrestling Championship in Poland.
Summary:
The Swedish Academy, which awards the Nobel Literature Prize, has been hit by a sex scandal after several members, their wives and daughters accused an artistic director with close links to the institution of sexual harassment.
Summary:
Pakistan's police on Saturday fired rubber bullets and tear gas at around 2,000 members of an Islamist party who have been blocking a main road into the capital by sitting in the area since November 6.
Summary:
A Twitter user tagged US city Salem's police department while complaining about auto rickshaw fares in Tamil Nadu's Salem district.
Summary:
A consumer forum in Mumbai has directed Punjab Grill Restaurant to refund service charge to a customer and pay â¹10,000 to him as compensation.
Summary:
SBI Chairman Rajnish Kumar has said that any wrongdoing should be punished, be it banks, businessmen or those exerting outside pressure.
Summary:
Meher Vij, who starred in 'Secret Superstar' has said she hasn't been in touch with her brother Piyush Sahdev ever since he got married and didn't know about the rape charges against him.
Summary:
Actress Ishita Dutta has said she hasn't faced casting couch as she didn't appear desperate.
Ishita further said, "I'd like to tell all the budding actors not to be vulnerable...
Summary:
A Canadian woman suffering from stage 4 breast cancer has won 1.5 million CAD (â¹7.6 crore) in a lottery.
Summary:
A 43-year-old woman walking her dogs in a New York field was accidentally killed on Wednesday by a hunter who mistook her for a deer, said authorities.
Summary:
A circus tiger escaped onto the streets of Paris, affecting public transport and bringing emergency services to the area, before it was shot dead by its owner.
Summary:
Mumbai police along with Brihanmumbai Municipal Corporation (BMC) conducted a raid on Mumbai clinics and arrested three fake doctors practicing in Chembur and Kurla.
Summary:
Former Indian cricket team captain Sourav Ganguly has said that he was "desperate" to become the Indian cricket team coach but ended up being an administrator.
Summary:
A court in Italy's Florence has banned the commercial use of images of Michelangelo's 16th-century statue of David without official authorization from the Galleria dellâÂÂAccademia.
Summary:
They studied dermal denticles on sharks and skates and found the thorny scales were created from the same type of cells as teeth.
Summary:
MIT physicists have used laser confinement to supercool atoms into Bose-Einstein condensates (BEC), a 2001 Physics Nobel-winning discovery.
Summary:
Astronauts aboard the International Space Station celebrated Thanksgiving on Friday, with a dinner of turkey and space-grown lettuce as they orbited the Earth at an altitude of 400 kilometres.
Summary:
A 23-year-old man working at the Mumbai airport was arrested on Wednesday for allegedly molesting a 24-year-old British woman twice while she was waiting for her flight.
Summary:
A male dead body suspected to be from North Korea was found on one of Japan's outlying islands by the Japanese Coast Guard on Saturday, officials have said.
Summary:
The Egyptian Air Force killed several militants and destroyed their vehicles on Saturday after at least 235 worshippers were killed in a terrorist attack at a mosque in the country's North Sinai province.
Summary:
adidas has combined its experience in sport and design with carbon's pioneering digital light sensing technology to come with 'the ultimate running shoe'.
Summary:
Amazon Founder and world's richest person Jeff Bezos' net worth on Friday hit $100-billion mark as Amazon's shares jumped over 2% on optimism for Black Friday sales, according to Bloomberg.
Summary:
Addressing the death threats and controversy around the film 'Padmavati', actress Deepika Padukone said, "It would be nicer to feel safer or protected at this point." She added, "Cinema has the power to bring the people together, to unite people and to spread love.
Summary:
Over 100 MLAs in Andhra Pradesh have been granted a mass leave while the Assembly is in session, to attend weddings.
Summary:
The regulator is expected to slash prices anywhere between 6% to 53%, reports said.
Summary:
Congress Vice-President Rahul Gandhi hugged a part-time lecturer after listening to her woes during an interactive session with Gujarat's teaching fraternity.
Summary:
A Pakistani militant belonging to terrorist group Lashkar-e-Taiba (LeT) has been arrested from Kupwara district of Jammu and Kashmir, an Indian Army official said.
Summary:
Construction has begun on a $2 billion (â¹12,900 crore) project reclaiming land from the Mediterranean Sea to build luxury apartments in Monaco, the world's second smallest country.
Summary:
Plague-causing bacterium likely reached central Europe with the mass migration of eastern nomads during the Stone Age, millennia before the first known epidemics including the Black Death in the 14th century, a Germany-based study has found.
Summary:
Dolly the sheep, the world's first mammal to be cloned from an adult cell in 1996, didn't die due to the early onset of arthritis, a UK-based study has found.
Summary:
A video shows Turkmenistan's President Gurbanguly Berdimuhamedov personally testing a BMW M3, purchased recently for the country's Interior Ministry, by driving it on a racetrack.
Summary:
"The censor board does not know history.
Before giving permission for such movies, the board must consult the descendants of the royal families and good historians," said a protester.
Summary:
Ruined my week of sleep!" Daniel later tweeted that Jet Airways called him and blamed the delays on the airport instead of the airline.
Summary:
'Hate Story' actress Paoli Dam has revealed she was offered the erotic thriller film 'Julie 2' but she didn't do it.
Summary:
Actor Rajkummar Rao, while speaking about sexual harassment, said, "It is very important to voice out your opinion if you are a victim because silence will only empower such predators." "You can put up a post on social media and people will support you," he added.
Summary:
Nitesh Tiwari, the director of Aamir Khan starrer 'Dangal' has said he would like to make ten films with Aamir and not just one.
Nitesh further said 'Dangal' was never made keeping box office collection in mind.
Summary:
The device costs around â¹2,000 to put together and is audible to an elephant 600 metres away.
Summary:
The Mumbai traffic department has issued a circular with regulations for towing vehicles, which states that even if a vehicle is in a 'no parking' zone, it cannot be towed if someone is seated inside.
Summary:
Argentine forward Lionel Messi won his fourth European Golden Shoe award on Friday after netting 37 times in La Liga in 2016-17.
Summary:
Nagaland has sought support for its cricketers after its women's U-19 team was dismissed for two runs against Kerala in a One-day League and Knockout Tournament match at Guntur on Friday.
Summary:
Highlighting the threats and challenges of internet at a conference on cyberspace, External Affairs Minister Sushma Swaraj said India is committed to open, safe, inclusive, and democratic internet that responds swiftly to challenges.
Summary:
According to EDMC rate chart, a community hall costs â¹16,000-â¹26,000 for Sangeet and â¹550 for funeral function.
Summary:
Sports Minister Rajyavardhan Singh Rathore said that the Sports Authority of India (SAI) will be renamed and restructured to make it more "lean and professional".
Summary:
A 70-year-old man who underwent a heart transplant in 1986 was diagnosed with a fungal infection after 30 years, US-based doctors have reported.
Summary:
As many as 64 "mysterious booms" have been reported across locations in the US, UK and Australia, suggested to have come from supersonic jets or meteorites by a NASA scientist.
Summary:
At least 11 people were killed and 19 others were injured on Friday in a fire at a 22-story hotel in Georgia.
None of the contestants, who were staying at the hotel, were injured, officials said.
Summary:
After Saudi Arabia's Crown Prince Mohammed bin Salman called Iran's Supreme Leader Ayatollah Khamenei "the new Hitler of the Middle East", Iran termed his remarks and behaviour "immature and weak-minded".
Summary:
TV actor Piyush Sahdev, who played the character of Lord Rama in 'Devon Ke Dev...Mahadev', was arrested on Wednesday on charges of rape filed by a woman at Mumbai's Versova Police Station.
Summary:
The death toll resulting from an attack on a mosque in Egypt's North Sinai province on Friday has risen to 235, officials said.
Summary:
'Anurakthi', the world's first Sanskrit 3D film was screened at the International Film Festival of India (IFFI) 2017 in Goa. Directed by Asokan PK, the film revolves around the ancient theatrical tradition of Koodiyattam in Kerala.
Summary:
Central Board of Film Certification (CBFC) CEO Anurag Srivastava has said they refused certification to the film 'Padmavati' as the makers did not provide a disclaimer on whether it was based on fiction or on historical facts.
Summary:
Akmal scored 150(71), the highest score by a Pakistani player in T20s, while Salman stayed unbeaten on 55(49).
Summary:
The government is planning to build 100 bunkers for civilians by the end of November at the Line of Control (LoC) in Jammu and Kashmir.
Summary:
As many as 500 missing children have been traced over the last few months through Aadhaar, Unique Identification Authority of India (UIDAI) CEO Ajay Bhushan Pandey said.
Summary:
Princes and businessmen detained by Saudi Arabia as part of its crackdown on corruption, are reportedly being tortured by US mercenaries hired privately by the kingdom.
Summary:
The court's ruling came in response to a petition that argued that calling Friday "black" is a crime since the day has religious significance for Muslims.
Summary:
Mumbai attack mastermind and Jamaat-ud-Dawah chief Hafiz Saeed on Friday slammed ousted Pakistani Prime Minister Nawaz Sharif for developing friendly relations with India, calling him a "traitor".
Summary:
Conditions for Rohingya refugees to safely return to Myanmar from Bangladesh are not in place, UN's refugee agency has said.
Summary:
Rani Mukerji said she doesn't talk about work with her husband filmmaker Aditya Chopra or asks him to cast her in films while adding, "I can only tell him when do we make our next baby." "My conversation with Adi is all about love and (daughter) Adira," she added.
Summary:
Actor Anupam Kher, while sharing a picture of a critic's review from 1975 for the film 'Sholay', tweeted that actor Amitabh Bachchan was simply referred to as "Dharam's (Dharmendra's) friend" and the film was deemed "average".
Summary:
Sourav Ganguly's wife Dona, at an event, said the former captain's shirt-waving act at Lord's after India's NatWest series win in 2002 was a "fantastic gesture".
Summary:
Addressing a rally in Porbandar, Congress Vice President Rahul Gandhi on Friday said that PM Narendra Modi gave â¹33,000 crore for Tata Nano, but would not give even â¹300 crore to fishermen.
Summary:
Indian cricketer Rohit Sharma was seen playing with the spider cam while fielding during the first day of the second Test against Sri Lanka on Friday.
Summary:
The attackers were reportedly parents of the kids and were protesting against the vaccination drive, claiming it would reduce life expectancy among children.
Summary:
The spiritual leader also called on India and China to solve their issues through dialogue.
Summary:
A woman was killed by a tiger in the forest of Uttarakhand's Tanakpur on Wednesday, despite warnings given by forest officials.
Summary:
The first of the incidents occurred when a local train hit a Bolero vehicle at an unmanned crossing near Amethi in Uttar Pradesh, killing four people.
Summary:
A female supporter of NorthEast United FC was heckled by Chennaiyin FC fans during the teams' Indian Super League match in Chennai on Thursday.
Summary:
Japan has slammed the decision by authorities in San Francisco, US, to give city property status to a statue depicting Asian women forced to work as sex slaves during WWII.
Summary:
This comes after the US designated North Korea as a state sponsor of terrorism.
Summary:
Russia has said that the US' decision to enlist North Korea as a state sponsor of terrorism could allow the situation on the Korean Peninsula to escalate into a global "catastrophe".
Summary:
Taking note of the poor progress of slum rehabilitation schemes, the Maharashtra government has planned to introduce special laws and change existing rules to make the process of slum rehabilitation easy.
Summary:
The court had earlier suggested that local authorities consider "airlifting" the 108-foot Hanuman statue in central Delhi to remove the encroachments around it.
Summary:
World number three Indian shuttler PV Sindhu defeated world number two Japan's Akane Yamaguchi on Friday to enter the semi-finals of the $400,000 Hong Kong Open Superseries tournament.
Summary:
The top five leading economies are the US, China, Japan, Germany and France.
Summary:
International credit rating agency Standard and Poor's (S&P) on Friday kept India's sovereign rating unchanged at 'BBB-', its lowest investment grade rating for bonds.
Summary:
In a 1979 match, Australia's Dennis Lillee used an aluminium bat and threw it in "disgust" when asked to change.
Summary:
A contingent of armed Central Industrial Security Force (CISF) Commandos will take charge of the Patidar leader, police officials said.
Summary:
A person can report a GST fraud in many ways including visiting the official portal cbec-gst.gov.in, clicking on CBEC MITRA Helpdesk and choosing "Raise Web Ticket" to file the complaint.
Summary:
An Indian Air Force trainee woman pilot managed to eject minutes before the Kiran trainer aircraft she was flying crashed in Telangana's Siddipet.
Summary:
An email sent by the university's library told publishers that it would allow books published in 2016-17 only.
Summary:
Google has said that it is offering 1.3 lakh scholarships for developers and students in India to help them gain technological knowledge.
Summary:
The President of the Iran Weightlifting Federation has said that the nation will allow women weightlifters to compete internationally, after establishing the Iran Weightlifting Federation Women's Committee.
Summary:
Researchers at National University of Singapore have designed a drinking glass that pairs digital taste, scents and colour sensations to alter a drinker's perception of a beverage's flavour.
Summary:
The users will be allowed to unlock the bikes by scanning QR code.
Summary:
Uber has said that it informed SoftBank about the data breach which it faced last year before announcing it publicly.
Summary:
Telecom operator Aircel on Friday denied media reports that it was partly shutting down its operations, saying it was making efforts to build a profitable business.
Summary:
The value of the second largest cryptocurrency Ethereum reached an all-time high of $425.55 on Thursday, according to digital money website Coinmarketcap.
Summary:
Mitsubishi Materials has admitted that its three subsidiaries manipulated inspection data of parts used in aircraft, automobiles and industrial machinery.
Summary:
In a tweet directed at US President Donald Trump's son Donald John Trump Jr, actor Billy Baldwin wrote, "Your Dad is a 5th degree black belt when it comes to sexual impropriety allegations." Billy recalled that Trump had hit on his wife Chynna Phillips at a party two decades ago.
Summary:
Hollywood actress Uma Thurman has said that producer Harvey Weinstein, who has been accused of rape and sexual harassment by several actresses, does not deserve a bullet.
Summary:
Fifty-year-old former wrestler Popatrao Khopade will cycle 2,000 kms from Pune to Delhi starting December 3 to promote cleanliness.
Summary:
Indian cricket team captain Virat Kohli celebrated Sri Lankan wicketkeeper Niroshan Dickwella's wicket by doing a bhangra dance during the first day of the second Test on Friday.
Summary:
New Zealand selected its first transgender athlete for the Commonwealth Games after naming weightlifter Laurel Hubbard in the squad for the 2018 Games in Australia.
Summary:
The makers needed 150 kg of sugar, 5.5 kg of cottage cheese, and 400 grams of flour to make it.
Summary:
The National Green Tribunal directed on Friday that only CNG buses and cabs will be allowed to ply at Delhi's Indira Gandhi International Airport, amid worsening air pollution levels in the national capital.
Summary:
Ahead of the Gujarat Assembly election, the Archbishop of Gandhinagar Thomas Macwan has written a letter claiming that "nationalist forces" are on the verge of taking over the country and urged people to save the nation from them.
Summary:
While blaming the rain for the delay in works on the restoration of Sarakki lake, the Bruhat Bengaluru Mahanagara Palike officials have said that it will take at least nine more months for them to complete the work.
Summary:
The Indian Navy has issued an arrest warrant against its officer and cricketer Deepak Punia for representing Haryana in the Ranji Trophy without procuring a No Objection Certificate.
Summary:
West Bengal CM Mamata Banerjee on Friday hit out at the Centre, saying "super-emergency" is going on in India, adding that every industrialist in the country is under threat.
Summary:
The North Korean defector was shot and wounded by North Korean military before being dragged to safety by South Korean and US soldiers.
Summary:
An RTI application has revealed that the Delhi Metro lost as many as three lakh commuters a day after the fare hike on October 10.
Summary:
US called for the arrest of 26/11 Mumbai attack mastermind Hafiz Saeed, saying it was "deeply concerned" over his release.
Summary:
The OnePlus 5T which went on a preview sale today on Amazon India for just one hour was sold out within 5 minutes, according to OnePlus.
Summary:
At least 184 people were killed and over 100 were injured after suspected militants targeted a mosque in Egypt's North Sinai province on Friday, the country's state news agency reported.
Summary:
The Sanjai Mishra and Ranvir Shorey starrer 'Kadvi Hawa', which released on Friday, is "important cinema for spotlighting an environmental issue", wrote Lehren.
Summary:
Ram Ratan Saini, the brother of the man found hanging from Jaipur's Nahargarh Fort alongside slogans against the film 'Padmavati', has claimed that his death is not linked to threats against the film.
Summary:
Bihar Chief Minister Nitish Kumar on Wednesday gave a surprise visit to a couple who had opted for a no-dowry inter-caste wedding.
Summary:
Apple offices have reportedly been raided in South Korea where investigators asked questions about the technology giant's business practices.
Summary:
Talking about the recent controversies around Uber, the startup's Vice President of Product Daniel Graf has said, "Of course, it impacts." He added that if he says the controversies haven't impacted Uber, his statement wouldn't be true.
Summary:
This is a part of 7,000 Jeep Compass units recalled by parent company in the US.
Summary:
The dye specifically binds to such potentially harmful microplastics and could help distinguish them from natural materials, said researchers.
Summary:
The Indian Railways has registered savings of â¹5,636 crore in power bills in two years between April 2015 to October 2017.
Summary:
Emmerson Mnangagwa was sworn in on Friday as Zimbabwe's President, becoming the country's second leader since independence.
Summary:
Chinese authorities have busted an underground bank used by more than 10,000 people for illegally funnelling over â¹19,000 crore overseas.
Summary:
Hindustan Unilever CEO Sanjiv Mehta said that the company will reduce prices by 7-10% on an average across categories following the reduction in the GST.
Summary:
West Bengal Chief Minister Mamata Banerjee has said she will make special arrangements for the release of 'Padmavati' in Bengal in case other states ban the film.
Summary:
'Ishq De Fanniyar', a new song from the upcoming Pulkit Samrat and Richa Chadha starrer 'Fukrey Returns' has been released.
Summary:
Singer Miley Cyrus took to Twitter to deny reports that she is expecting a child.
Summary:
Summary:
The pool deck was inaugurated in December last year, during Australia's day-night Test against Pakistan.
Summary:
Former Congress MP V Hanumantha Rao has lodged a complaint against Sunburn Festival in Hyderabad, claiming it should be stopped since it was "against Indian culture".
Summary:
Spinners Ravichandran Ashwin and Ravindra Jadeja picked up seven wickets combined to dismiss Sri Lanka for 205.
Summary:
Facebook is testing a 'streak' feature in Messenger which rewards users with emoji for sending photos to each other every consecutive day, the social media giant's spokesperson confirmed.
Summary:
While studying zebra finches, scientists found that the songbirds learn their vocalisations in a similar way that humans acquire speech and language.
Summary:
A Japanese politician was asked to leave after she brought her seven-month-old son to a council session to highlight issues faced by women at the workplace.
Summary:
South Korean conglomerate Lotte and carmaker Peugeot have discussed proposals to invest about $6 billion combined in India, according to reports.
Summary:
A nearly 60-year-old under-repair building collapsed in Delhi's Taimoor Nagar on Friday morning, a police official said.
Summary:
Nagaland's Under-19 girls team was dismissed for two runs in 17 overs while playing against Kerala in the ongoing BCCI Women's Under-19 One Day League on Friday.
Summary:
Actress Raai Laxmi's Bollywood debut 'Julie 2', which released on Friday, is "cringeworthy," wrote India Today.
Summary:
Unidentified men robbed around â¹2 lakh cash from the car of Yashwant Singh, BJP's MP from Uttar Pradesh, while it was parked in Old Delhi's Chandni Chowk area on Friday.
Summary:
South Africa's Supreme Court on Friday increased the murder sentence of former Paralympian Oscar Pistorius to 13 years and five months after the state argued that his original sentence of six years was "shockingly lenient".
Summary:
Black Friday, traditionally the day which follows Thanksgiving, is regarded as the beginning of the Christmas shopping season.
Summary:
Assam Health Minister Himanta Biswa Sarma has issued an apology for his 'sins can cause cancer, accidents' remark, adding that his speech on divine justice and Karmic deficiency was quoted out of context.
Summary:
Jet Airways plans to do away with first class seats on its Boeing 777 planes as part of cost-cutting measures, a senior airline official has said.
Summary:
Paytm Payments Bank has raised â¹122 crore from Paytm's parent company One97 Communications and its Founder Vijay Shekhar Sharma, according to filings.
Summary:
The investment round had valued the startup at $11 billion.
Summary:
US President Donald Trump who had previously called the US involvement in war against ISIS a wastage of time credited his policies for victories against the militants on Thursday.
Summary:
The official Twitter account for McDonald's today tweeted, "Black Friday **** Need copy and link****".
Summary:
Spanish fashion brand BIIS is selling a leather bin bag for up to â¬360 (â¹27,700).
Summary:
Actor Akshay Kumar, who had auditioned for 'Jo Jeeta Wohi Sikandar' said he was removed from the film as he was apparently crap.
And they (the makers) didn't like it." The role for which he had auditioned was eventually played by actor Deepak Tijori.
Summary:
"I'll let everyone know once it's finalised...
I'll definitely go there and meet the makers once since nothing major can be discussed over a telephonic conversation," he added.
Summary:
Sachin Tendulkar along with wife Anjali Tendulkar, Harbhajan Singh, Yuvraj Singh's wife Hazel Keech and Vidya Malvade were among the guests who attended the cocktail party hosted by newly-wed couple Zaheer Khan and Sagarika Ghatge.
Summary:
Pakistani actress Mahira Khan tweeted a disclaimer for her film on the issue of rape titled 'Verna', which read, "Everything in this film is imaginary.
Summary:
Hundreds of parents staged a protest outside Bengaluru's Royale Concorde International School on Thursday morning, following the incident where three kids were injured when a windowâÂÂs glass pane fell on them.
Summary:
A school in Uttar Pradesh's Barabanki has barred Muslim students from wearing headscarves to class, citing that they don't go with the dress code of the school.
Summary:
BJP leader Yashwant Sinha on Friday said the way GST was implemented in India is a "textbook example" of how it shouldn't be executed anywhere.
Summary:
Following former Indian pacer Zaheer Khan's wedding to Sagarika Ghatge, his former teammate Gautam Gambhir took to Twitter to congratulate and advise him about marital life.
Gambhir tweeted, "Finally there is someone who can bounce Zaheer too.
Summary:
Russian pianist Pavel Andreev has played his own composition 'Awakening' on the waters of the Ruskeala Marble Canyon in Karelia.
Summary:
Italian Transport Minister Graziano Delrio announced this week that large cruise ships will be banned from Giudecca Canal in Venice and required to dock in the more industrial area of Marghera by 2021.
Summary:
The Madhavendra Palace at Nahargarh Fort in Jaipur will open a sculpture park with artworks by leading artists in December.
Summary:
A UK-based study has found that Iceland saw less volcanic activity when glacier cover was more, and as the glaciers melted, eruptions increased due to changes in surface pressure.
Summary:
An international team of researchers has developed micro-robots that were guided magnetically to sites within rat stomachs.
Summary:
ISIS' online propaganda channels went offline for over 24 hours between Wednesday and Thursday, in what is believed to be an "unprecedented" silence.
Summary:
Pakistan's Chief Justice Saqib Nisar on Thursday slammed the government for its inability to safeguard the Hindu minority's Katas Raj temple in Chakwal, whose sacred pond is drying up.
Summary:
The body of a man was found hanging at the Nahargarh Fort in Jaipur, Rajasthan with a message inscribed on rocks next to the body which read, "We don't just hang effigies, Padmavati." Police are uncertain if this was a case of murder or suicide.
Summary:
The Cabinet Committee on Parliamentary Affairs has decided to hold the Parliament's Winter Session from December 15 to January 5, 2018.
Summary:
UP CM Yogi Adityanath has also announced a compensation of â¹2 lakh for the kin of deceased.
Summary:
After a 4-year-old boy was accused of sexually assaulting his classmate in their school's washroom and classroom, the school's lawyer has alleged that the girl "looked happy" in the CCTV footage.
Summary:
India's selective issuance of medical visas to Pakistan's citizens is politicising humanitarian issues, Pakistan's Foreign Ministry has alleged.
Summary:
Bihar Education Minister KNP Verma has said that teachers in Bihar weren't asked to set aside teaching for clicking selfies with people defecating in open, calling it an unnecessary controversy.
Summary:
Sweden and US-based researchers have noticed the formation of a new bird species within just two generations while documenting the evolution of Darwin's finches on the Pacific islands of Galapagos.
Summary:
Dark matter and dark energy, believed to make up 95% of the universe, may not exist at all, according to Swiss researcher André Maeder.
Summary:
The couple visited the police station after a member of the bride's family was slapped by someone during their wedding ceremony.
Summary:
DBS Group Holdings has overtaken Singapore Telecommunications (Singtel) to become Southeast Asia's biggest company by market value.
Summary:
Ayushmann further said, "They're an inspiration and I certainly won't have any apprehensions signing other such films if they come my way."
Summary:
Shaahid Amir, the stylist for 'Aksar 2' has revealed initially the film's makers had said that there'll be no focus on actress Zareen Khan's body but later everything was about exposing.
Summary:
An Australian ambulance crew carrying a dying woman to palliative care took a detour so she could visit the beach one last time.
Summary:
As many as 20 people are reported to be trapped in the debris, while the rescue operation is still in process.
Summary:
A team of seven students from the Indian Institute of Science Education and Research (IISER), Pune, has won a silver medal in the international Genetically Engineered Machines contest for their project on Tuberculosis diagnostics through synthetic biology.
Summary:
Double world champion Fernando Alonso has become the first Formula One driver to launch his own eSport virtual racing team.
Summary:
After Gary Kirsten, who coached India to the World Cup 2011 title, turned 50 on Thursday, former Indian cricketer Virender Sehwag took to Twitter to wish the South African player.
Summary:
The accused called up the SHO, and mistaking him for a brothel owner, tried selling the girl to him.
Summary:
After Virat Kohli slammed the BCCI over the team's "cramped" schedule, acting BCCI President CK Khanna said that the captain's viewpoint on cricketing matters should be taken with "utmost seriousness".
Summary:
English fan Ed Miller, a teacher by profession, travelled for four months and visited 21 countries to reach the Gabba in Brisbane and watch the first Ashes Test.
Summary:
A city-based environment group, Centre For Environmental Research and Education (CERE),âÂÂhas reportedly cleared 3,420 tonnes of carbon dioxide (CO2) in the past two-and-a-half years by planting 16,213 trees at 24 locations in Mumbai.
Summary:
A 32-foot-tall Christmas tree made entirely of 245 glass pendant lights has come up at The Shard, London.
Summary:
Zimbabwe's stock market has lost over â¹38,000 crore ($6 billion) while its main index has slumped 40% since last Wednesday when the military seized power leading to the resignation of Robert Mugabe from the post of country's President.
Summary:
Over six lakh Rohingya Muslims had fled to Bangladesh to escape a violent crackdown by the Myanmar military.
Summary:
Saudi Arabia's Crown Prince Mohammed bin Salman has called Iran's Supreme Leader Ayatollah Khamenei "the new Hitler of the Middle East", adding that Iran's alleged expansion needed to be confronted.
Summary:
A possible explosion has been detected near the last-known location of an Argentine military submarine which has been missing with 44 crew members in the Atlantic Ocean since last week, officials have said.
Summary:
Islamic State beheaded 15 of its own fighters due to infighting in Afghanistan's Nangarhar province, officials have said.
Summary:
Travelling can be a beautiful experience but it brings with it the risk of things going wrong despite careful planning.
Summary:
WeWork caters to freelancers, startups, and enterprises offering them shared workspaces, private offices, conference rooms, and networking opportunities to help your business grow.
Summary:
Following WeWork BKC, WeWork is set to open its second co-working space in Mumbai in Marol, Andheri East in the early part of 2018.
Summary:
The first WeWork India location, WeWork Galaxy opened in Bangalore, followed by WeWork EGL in Embassy Golf Links Business Park.
Summary:
In a first, Columbia University researchers have converted a bacterial immune system into the world's smallest data recorder.
It could be used for disease diagnosis and environmental monitoring, said researchers.
Summary:
US and South Korea-based researchers had cloned Snuppy, the world's first cloned dog produced from an Afghan hound named Tai in 2005.
Summary:
Miss World 2017 Manushi Chhillar, who hails from Haryana, will be honoured by the state's government, said CM Manohar Lal Khattar.
Summary:
A man who suffered burns on 95% of his body has been saved by a skin transplant from his identical twin, French doctors said on Thursday.
Summary:
Tourists spotted about 200 polar bears feeding on a whale carcass on a Russian Arctic island in September.
Summary:
Maharashtra CM Devendra Fadnavis has ordered to suspend an executive engineer of Maharashtra Housing and Area Development Authority (MHADA) over irregularities in the redevelopment of Patrawala Chawl in Goregaon.
Summary:
China has built a wall, 16 barracks and six tunnels around 400 metres from the disputed Doklam region where the Indian and Chinese troops engaged in a military standoff for more than two months in June over sovereignty concerns, reports said.
Summary:
The court ruled that Robinho, along with five other Brazilians assaulted the woman, who was 22 at that time.
Summary:
For the first time, Japan-based scientists have made ground-based observations of a lightning event linked with atmospheric nuclear reactions.
Summary:
The bread, made from flour ground from dried crickets as well as wheat flour and seeds, is said to contain more protein than normal wheat bread.
Summary:
Actor Akshaye Khanna, on being asked about his reclusive nature, responded by questioning, "If I am a reserved person, I am a reserved person, what the f*ck is the problem?" "Why is this so unusual?
It is such a normal and natural thing.
Summary:
The Food Safety and Standards Authority of India is formulating a draft notification to curb advertisements that falsely label food items as 'fresh' or 'natural'.
Summary:
The Municipal Corporation of Gurugram (MCG) will start door-to-door waste collection from December 2 in wards 5 and 6, officials said.
Summary:
The Supreme Court on Thursday asked a Lucknow-based medical college to pay a compensation of â¹10 lakh each to 150 students, besides refunding their fees for illegal admissions.
Summary:
A Visakhapatnam-bound IndiGo flight (6E719) made an emergency landing on Wednesday at Delhi's Indira Gandhi International Airport after the cabin crew noticed fumes inside the cockpit.
Summary:
Bangalore Metropolitan Transport Corporation (BMTC) will soon introduce electric buses in the city, Karnataka Transport Minister HM Revanna told the Legislative Assembly on Wednesday.
Summary:
The school authorities denied allegations of non-cooperation.
Summary:
The body currently only has limited powers and the National Commission for Scheduled Castes (NCSC) deals with their grievances and safeguards.
Summary:
A Faridabad court on Tuesday sentenced a poacher believed to have killed over two dozen tigers, several elephants, porcupines, and other animals over 15 years, to three years in jail.
Summary:
The Roman-era Temple of Mithras has been reconstructed as part of a multisensory museum beneath the streets of London.
Summary:
There are a group of floating villas at The FloatHouse River Kwai Resort in Kanchanaburi town, Thailand.
Summary:
Zimbabwe's economic situation threatened by high government spending and inadequate reforms remains very difficult, International Monetary Fund's (IMF) Zimbabwe mission chief Gene Leon has said.
Summary:
International police organisation Interpol has rescued around 500 victims of human trafficking, including 236 minors, in simultaneous raids across West Africa.
Summary:
As many as 13 coaches of Vasco Da Gama-Patna Express derailed in Uttar Pradesh on Friday, killing at least three people and injuring nine.
Summary:
The Delhi district consumer forum has directed the Indian Railway Catering and Tourism Corporation (IRCTC) to pay â¹25,000 to a passenger, who was sent a wrong text alert stating that the Mahabodhi Express was cancelled.
Summary:
Actor Rajkummar Rao was named the Best Actor, and Mayank Tewari and Amit V Masurkar won the award for Best Screenplay at the 11th Asia Pacific Screen Awards (APSA) for the black comedy drama 'Newton'.
Summary:
The Health Ministry on Thursday asked all states to issue strict warnings and take action against hospitals which indulge in malpractices such as overcharging and don't follow standard treatment protocols.
Summary:
Speaking about net neutrality, IT Minister Ravi Shankar Prasad said that a citizen's right to access the internet was "non-negotiable" and the government will not allow companies to restrict people's entry to digital space.
Summary:
Addressing a rally in Uttar Pradesh's Pahasu, Union Minister Mahesh Sharma on Wednesday said that BSP chief Mayawati was "daughter of daulat (wealth) and not a Dalit".
Summary:
The release of 2008 Mumbai attacks mastermind Hafiz Saeed shows that Pakistan wants to mainstream terror organisations, Indian Ministry of External Affairs spokesperson Raveesh Kumar said on Thursday.
Summary:
A House Committee which analysed the records of 837 lakes in Bengaluru Urban district has found that 88 lakes have completely disappeared from the region due to encroachment in the last four decades.
Summary:
E-governance app UMANG, launched by PM Narendra Modi, provides a unified platform for people to avail over 100 central and state government services.
Summary:
Billionaire Elon Musk-led Tesla has finished building the world's biggest lithium-ion battery system in South Australia and is expected to test it soon.
Summary:
Ex-Zimbabwean President Robert Mugabe was granted immunity from prosecution and assured his safety in the home country as part of a deal that led to his resignation, according to reports.
Summary:
Following a report claiming that US troops will remain in Syria after the defeat of Islamic State, Russian Foreign Ministry said that continued US presence in the country could be described as occupation.
Summary:
It's a brand that we have nurtured with our team for over 73 years," Havmor Chairman Pradeep Chona said.
Havmor operates parlours in 14 states and sells via 40,000 outlets.
Summary:
Model and ex-Bigg Boss contestant Sofia Hayat has slammed beauty pageants while adding that beauty can't be judged as it does not have a single face or form.
Summary:
Claiming that Pakistan doesn't value its artistes, singer Adnan Sami has said that, "I'll get trolled for what I've said, but, that is the reality.
Summary:
Filmmaker Karan Johar will launch 'Bigg Boss 11' contestant Priyank Sharma in the upcoming film 'Student Of The Year 2', according to reports.
Summary:
Talking about Deepika Padukone, actress Alia Bhatt has said that she represents the words 'beauty', 'substance' and 'strength' very strongly.
Summary:
The overbridge will connect the north-end of the station and the Parel station on the Central Railway.
Summary:
The police on Wednesday filed an FIR against two students hailing from Jammu and Kashmir's Rajouri for not standing up during the National Anthem.
Summary:
Goalkeeper Gianluigi Buffon took off his shorts and gave it to one of his supporters after his team Juventus' Champions League match against Barcelona on Wednesday.
Summary:
A man has been arrested in Bihar for impersonating an IPS officer attached to the NIA and misleading the police into carrying out a raid meant for nabbing those involved in a recent shootout.
Summary:
After a case was registered against a four-year-old boy for allegedly sexually assaulting his female classmate in a Delhi school, mental health experts have said that it's not possible for a four-year-old to understand sexual behaviour.
Summary:
The Central Bureau of Investigation (CBI) has filed a chargesheet against 592 people in the Vyapam scam case, including four ex-Vyapam officials.
Summary:
Barmy Army, a group of English cricket fans, targeted Australia's David Warner and his wife Candice in a new chant during the first day of the Ashes on Thursday.
Summary:
The Mumbai Police has booked 130 people for allegedly destroying mangroves and constructing illegal shanties in Charkop, Kandivali (West).
Summary:
A 68-year-old man stabbed two men with a knife in a courtroom in Mumbai's Bhoiwada on Wednesday after they were acquitted of assaulting him.
Summary:
Gandhi will accept the flag during his visit to Dalit Shakti Kendra in Sanand.
Summary:
Currently, over 95% transactions happen via cash and cheques, according to reports.
Summary:
The opposition and villagers credited the NGO for the village's self-sufficiency.
Summary:
Shubhangi Swaroop who was inducted as the Indian Navy's first woman pilot on Thursday will be trained at the Air Force Academy at Hyderabad which trains pilots for the Army, Navy, and Air Force.
Summary:
The party accused the NDA government of delaying session "without ascribing any justification for doing so".
Summary:
German carmaker BMW has revealed an elevated road concept called Vision E3 Way for electrically powered two-wheel vehicles.
Summary:
A child sex trafficker in Colorado, US has been sentenced to 472 years in jail, the longest-ever sentence for a human trafficking case in US history.
Summary:
The items were stolen in New York in 2006 from Lennon's widow, Yoko Ono.
Summary:
According to reports, actress Deepika Padukone will replace Priyanka Chopra in Shah Rukh Khan starrer 'Don 3', the third film in the 'Don' franchise.
Summary:
Comedian Kapil Sharma has said that he is not business-minded as a producer, which he was supposed to be while making 'Firangi'.
Therefore, the budget also," added Kapil.
Summary:
Mumbai Police on Thursday issued an e-challan to Varun Dhawan on Twitter for taking a selfie with a fan from his car, for which the actor then apologised.
Summary:
Summary:
Two businessmen were shot down in Bihar's Patna and Vaishali in separate incidents on Tuesday.
Summary:
This would exempt bamboo from requiring permits for felling or transportation.
Summary:
Facebook on Wednesday launched its online Digital Training and Startup Training Hubs in India to impart digital skills among people.
Summary:
Former Indian cricketer Virender Sehwag has said that if the International Cricket Council wants cricket to be included in Olympics, the sport should be played in more countries.
Summary:
Indian pacer Bhuvneshwar Kumar tied the knot with his childhood friend Nupur Nagar in his hometown Meerut on Thursday.
Summary:
Bayern Munich's supporters threw fake money on to the pitch during their Champions League match against Anderlecht in protest of high ticket prices.
Summary:
Nineteen-time Grand Slam champion Roger Federer took to Twitter to congratulate his hometown club FC Basel on its victory in the Champions League against Manchester United.
Basel scored in the 89th minute to hand United their first loss of the Champions League season.
Summary:
All-rounder Shakib Al Hasan shouted at the umpire and kicked the ground in frustration after the latter rejected his appeal for an LBW during a Bangladesh Premier League match.
Summary:
Facebook has promised to tell users whether they liked or followed a member of Russia's "troll army", which is accused of trying to influence elections in the US and the UK.
Summary:
Police in France have warned schools over a social media challenge asking children to rub chillies in the eyes and skin of other pupils.
Summary:
Slamming Spanish authorities for hosting around 500 asylum seekers in a prison, human rights groups called the act an "unfair criminalisation" of migrants.
Summary:
Millions of officials across China have been told to study President Xi Jinping's book on governance which contains his speeches and ideological thoughts, according to a notice issued by the ruling Communist party.
Summary:
In a move aimed at boosting relations, China and the Vatican will exchange 40 artworks each next year.
China severed relations with the Vatican in 1951 after setting up its own church outside the Pope's authority.
Summary:
Australia's Advertising Standards Bureau (ASB) has ruled that an advertisement featuring Lord Ganesha and other divinities promoting consumption of lamb meat violated the country's advertising standard code.
Summary:
The new amendments to the Insolvency and Bankruptcy Code bars wilful defaulters and entities whose accounts have been classified as bad loans from bidding for assets under the insolvency law.
Summary:
Myanmar and Bangladesh on Thursday signed a memorandum of understanding for the return of over six lakh Rohingya Muslims who had fled to Bangladesh to escape a violent crackdown by the Myanmar military.
Summary:
The foundation will set up Satya Bharti University to offer free education to underprivileged youth.
Summary:
A nationwide Secret Santa is held in New Zealand every year, organised by the New Zealand Post.
Summary:
Two men were rescued on Tuesday, five days after their car got stuck in a remote area in Australia, said the police.
Summary:
Virat Kohli slammed the BCCI over scheduling of series for the Indian cricket team, saying the team was "as usual, cramped for time".
Summary:
Johnson thanked his crew on Instagram for setting up his gym, which he calls 'Iron Paradise', at every location he films at.
Summary:
Micromax reported revenues of â¹5,614 crore this year while the figure stood at â¹9,825 crore last year.
Summary:
It might sell around 7.5% stake in Ola worth $300 million and 10% stake in Flipkart worth $600-700 million, reports added.
Summary:
Tibetan spiritual leader the Dalai Lama on Thursday said that the autonomous region does not seek independence from China but wants greater development.
Summary:
A 46-year-old suspect was arrested after he fell asleep inside a home he had broken into near Glasgow, Scotland.
Summary:
According to reports, Star India will shut Channel V over low TRPs and it will reportedly be substituted by a Kannada sports channel.
Now Channel V," wrote VJ Anu Menon who portrayed the character Lola Kutty.
Summary:
"I wish I was more cunning, then I wouldn't have said half the things I had said to the media," added Sajid.
Summary:
Adhyayan Suman has said he has forgiven ex-girlfriend Kangana Ranaut completely and moved on in life.
Referring to his current relationship, Adhyayan further said, "Being in love with the right person has helped me to forgive, forget."
Summary:
I've always wanted to start a family." Further talking about when she plans to settle down, Deepika said that she can't put a year to that.
Summary:
Actor Prakash Raj has sent a legal notice to BJP MP Pratap Simha for 'trolling' him over his remarks on journalist Gauri Lankesh's murder.
Summary:
'Padmavati' has been cleared by the British Board of Film Classification (BBFC) without any cuts for release on December 1.
Summary:
Summary:
Aiming to conserve energy, the Brihanmumbai Municipal Corporation has decided to replace 25,000 streetlights with light emitting diodes (LEDs) across Mumbai by March 2018.
Summary:
Virender Sehwag will play two T20 matches against a team featuring ex-Pakistani pacer Shoaib Akhtar on an ice field in Switzerland.
Summary:
Former India captain Mahendra Singh Dhoni paid a surprise visit to Army Public School in Srinagar on Wednesday.
Summary:
PM Narendra Modi on Thursday said the nation should ensure that digital space doesn't become a playground for dark forces of terrorism and radicalisation.
Summary:
The initiative reflects the government cares about the state's transgender community, Manipur Tourism Principal Secretary PK Singh said.
Summary:
Maharashtra government has directed plastic bottle manufacturers and mineral water firms to either set up recycling plants for bottles or shut down their business.
Summary:
There is a snake cafe in Tokyo that allows customers to play with snakes.
Summary:
US-based venture capital firm Sequoia Capital on Wednesday sold a nearly 1% stake in Mumbai-based online local search engine Just Dial for around â¹35 crore.
Summary:
The proof-of-concept device, tested in animals, uses a rigid brace component deployed via a needle into septum, the tissue wall between heart's chambers.
Summary:
An Islamic State supporter has called for the assassination of US President Donald Trump's youngest son, Barron Trump, on the chat app Telegram, according to reports.
Summary:
UMANG also allows a user to link their Aadhaar number and social media accounts with the app.
Summary:
Bose studied plants' pulse beat which became unsteady when dipped in poison showing they have life.
Summary:
The Election Commission has restored the 'two leaves' symbol of the AIADMK for the party's E Palaniswami and O Panneerselvam camp.
Summary:
Thanksgiving is a secular festival that is observed on the fourth Thursday of every November in the United States.
Summary:
After being slammed for claiming that people suffer from cancer because of their sins, Assam Health Minister Himanta Biswa Sarma has said he was propagating the Hindu philosophy of karma.
Summary:
The university's authorities have also directed the students to vacate hostels immediately.
Summary:
In October, Walmart announced it is deploying shelf-scanning robots across 50 locations in the United States.
Summary:
Hawaiian Airlines has started tracking climate change after installing equipment on a passenger aircraft to collect real-time data on air quality as the aircraft flies over the Pacific, Asia and North America.
Summary:
A 65-year-old passenger died onboard a Mumbai-bound IndiGo flight at the Varanasi airport on Thursday, said officials.
Summary:
Uber Co-founder Garrett Camp announced that he has joined 'The Giving Pledge' movement to give away half of his fortune to charity.
Summary:
HRW added that the practice is considered a violation of human rights under international laws.
Summary:
PVR said the allegations were "incorrect and baseless".
Summary:
He said there will be a further addition and once the tax net is widened, the tax rate will come down.
Summary:
The Twitter handle of Mumbai Police shared a photo of Varun Dhawan taking a selfie with a fan from his car and wrote, "These adventures work on the silver screen...not on the roads of Mumbai!" "An E-Challan is on the way to your home.
Summary:
Amitabh Bachchan took to Twitter to share an old picture of himself and late actor Rajesh Khanna and wrote, "That instrument in my hand is the first video camera in the film industry." "It had just come out and it belonged to Rajesh Khanna personally," he added.
Summary:
Zareen Khan has questioned that if the makers of her recently released film 'Aksar 2' were clean and honest then why didn't they show the film to her.
Summary:
Actress Raai Laxmi's intimate scene from the upcoming film 'Julie 2' has been leaked online.
This is ridiculous and so upsetting to see someone leaking a video just before the release," tweeted Raai Laxmi.
Summary:
Comparing Congress Vice President Rahul Gandhi to Mughal Emperor Aurangzeb and Sultan Alauddin Khilji, BJP leader GVL Narasimha Rao on Wednesday said Rahul's visits to temples were a 'drama'.
Summary:
A two-day pen-down strike called by an organisation of Mizoram government employees and workers took effect on Wednesday.
Summary:
Local authorities have also been directed to collaborate with the Google toilet locator service to improve accessibility to public toilets.
Summary:
It also prompts 'Do' and 'Dial' options, through which users can create events and contact local representatives to take an action.
Summary:
Thiel, who is also the Co-founder of PayPal, sold roughly three-quarters of his remaining Facebook stock worth about $29 million.
Summary:
A video shows a group of WestJet passengers singing and dancing at a Canadian airport after their flight got delayed.
Summary:
US-based researchers have developed a low-cost technology that can convert methane to clean-burning hydrogen while also preventing the formation of carbon dioxide.
Summary:
An 18-year-old Indian-origin trainee pilot and his 27-year-old Indian-origin instructor were among the four people killed in a recent midair collision between a small plane and a helicopter in England, the police said on Wednesday.
Summary:
The US has temporarily suspended travel for its officials to parts of Myanmar's Rakhine State, citing concerns over potential protests after US State Secretary Rex Tillerson accused Myanmar of ethnic cleansing of Rohingya Muslims.
Summary:
SEBI has directed the entities to disgorge illegal gains of over â¹95 lakh in alleged insider trading in shares of erstwhile Bank of Rajasthan (BoR).
Summary:
She is among the 328 cadets who graduated from the Indian Naval Academy's first batch of female officers.
Summary:
The then England captain vowed to "regain those ashes", which was termed as 'a quest to regain the Ashes' by English media.
Summary:
Ryan International School bus conductor Ashok Kumar, who was accused of killing 7-year-old Pradyuman Thakur, has said he was tortured by Gurugram Police and forced to confess to the murder.
Summary:
Many newspaper agencies in Tripura have left editorial space blank to protest against the killing of journalist Sudip Datta Bhaumik.
Summary:
The forces have also acquired 1,500 bullet-proof helmets, which will be used during anti-Naxal operations and other combat assignments.
Summary:
IIT-Delhi and IIT-Madras secured 17th and 18th ranks, respectively.
Summary:
The Paris City Hall has proposed the construction of three new bridges over the Seine river.
Summary:
Researchers noted that nighttime lights are known to disrupt body clocks and raise the risks of cancer, diabetes, and depression.
Summary:
Canada-based scientists have developed a portable DNA barcoding kit which reduces the cost of DNA analysis and can identify species within a few hours.
Summary:
The US government had plotted to start a war with the Soviet Union by conducting a false flag attack, recently declassified documents related to former US President John F Kennedy's assassination have revealed.
Summary:
US Secretary of State Rex Tillerson on Wednesday condemned Myanmar's treatment of the Rohingya Muslim minority, labelling their actions "ethnic cleansing".
Summary:
The body of a Thai soldier who died last month was returned by the country's government with tissue paper in place of brain and several missing organs including his heart, his family has claimed following an autopsy.
Summary:
A 27-year-old woman has raised over $110,000 (â¹71 lakh) for a homeless man who bought her fuel with his last $20 after her car ran out of it in Philadelphia, US.
Summary:
Former cricketer Zaheer Khan and actress Sagarika Ghatge had a court marriage on Thursday in Mumbai, which was attended by their family members and Zaheer's close friends Yuvraj Singh, Ashish Nehra and Ajit Agarkar.
Summary:
Actor Rajesh Khattar, while defending his son Ishaan Khatter against nepotism, said, "There are superstars whose sons are sitting at home and are nowhere." He added, "In Bollywood, what you are selling is yourself.
Summary:
Actress Parineeti Chopra has said if she hears anything negative about Arjun Kapoor, she will stand up and defend him till the day she dies.
Parineeti further said Arjun is one of the most special people in her life.
Summary:
Deepika Padukone, while talking about her relationship with Ranveer Singh, said, "When we're with each other, we don't need anything or anyone else." She added that they are comfortable in each other's presence and keep each other grounded.
Summary:
Speaking to a group of school teachers on Tuesday, Assam Health Minister Himanta Biswa Sarma on Tuesday suggested that people suffer from cancer or die in accidents because of sins.
Summary:
Aiming to decongest roads in the national capital, the Delhi Transport Department and the civic agencies seized 53 vehicles for unauthorised parking on Wednesday.
Summary:
The national capital belongs to all citizens of India and not just to people living in Delhi, the Centre on Wednesday told the Supreme Court.
Summary:
She is scheduled to visit India to attend Global Entrepreneurship Summit on November 28.
Summary:
The CBI has initiated a probe into emails sent to a Punjab government hospital by a fake email address registered in the name of the Prime Minister's Office.
Summary:
Demanding a caste survey be conducted across Gujarat, Patidar leader Hardik Patel has said he will withdraw the reservation agitation if the survey states that the Patidar community is rich.
Summary:
This comes after Ilaiah termed the Arya Vysya community as 'social smugglers' in his book.
Summary:
Finance Minister Arun Jaitley on Wednesday said Congress and Patidar leader Hardik Patel are deceiving each other as it's legally and constitutionally impossible to breach the 50%-reservation cap.
Summary:
Summary:
France has called for an emergency meeting of the United Nations Security Council to discuss slave-trading in Libya.
"We are doing it as a permanent member of the Security Council.
Summary:
To raise awareness about the need for better home safety, Godrej Locks does something unique - an interview with a real ex-robber.
The point it makes is - it is important to be aware and upgrade one's home safety.
Summary:
Latin America and the Caribbean is the world's most violent region against women outside of conflict contexts, the United Nations has said.
Summary:
Yesteryear actress Simi Garewal is in talks with Jaipur's Maharani Padmini Devi, who is her friend, over Sanjay Leela Bhansali's film 'Padmavati'.
There is actually no other problem," said Simi.
Summary:
Police have registered a rape case against a four-and-a-half-year-old boy for allegedly sexually assaulting his classmate inside the school premises in Delhi.
Summary:
Around 200 police personnel have reportedly been deployed at the university campus.
Summary:
The Shimla Police on Wednesday arrested an Army Training Command Colonel for allegedly raping a Lieutenant Colonel's daughter.
Summary:
A passenger has filed a police complaint against IndiGo, alleging the airline "dishonoured" Indian currency when it refused to accept payment for food in Indian rupees during a Bengaluru-Dubai flight.
Summary:
After twice vetoing the renewal of a UN-led probe into chemical attacks in Syria last week, Russia has said it is open to establishing a new panel to investigate the attacks.
Summary:
A video showing a woman surfing on the waters of a flooded street in Saudi Arabia's Jeddah has gone viral.
Summary:
Kangana Ranaut, who suffered an injury while shooting for 'Manikarnika- The Queen of Jhansi', jokingly said she was secretly hoping that she gets hurt.
Kangana further said, "I [wanted to] go back and hide in my house for some time."
Summary:
This comes after 'Padmavati' producers said that their film will not release on December 1.
Summary:
Annual gasoline consumption in India, the world's third-biggest oil-consuming nation, could also rise to 50 billion litres from 30 billion litres by 2030, Pradhan added.
Summary:
Maharashtra government has decided to hold talks with representatives of central unions on a proposed amendment to the Industrial Disputes Act, which facilitates the closure of factories and firing of workers.
Summary:
A safety measure saying 'Krupaya ektar bajula theva', translates into 'Please keep aside either', when the intended meaning was 'Please walk on one side'.
Summary:
In October, the BBMP had estimated that there are over 20,000 potholes on the city's roads.
Summary:
The Delhi University Teachers' Association (DUTA) on Tuesday staged a protest march against the "retrograde" recommendations of the 7th Central Pay Commission.
Summary:
The step has been taken as a reform measure to improve the functioning of universities fully funded by the Delhi government, he added.
Summary:
A Bengaluru court has awarded life sentence to three robbers for murdering a 31-year-old Army soldier at a railway station in 2010.
Summary:
Arjun's five-wicket haul came in Madhya Pradesh's second innings and included wickets of the top four batsmen.
Summary:
The Delhi High Court has rejected a plea against Congress Vice President Rahul Gandhi alleging he travelled without Special Protection Group security and put himself in danger.
Summary:
The National Human Rights Commission has issued a notice to Uttar Pradesh government, seeking a report on allegations that it "endorsed" killings in police encounters for improvement in the state's law and order situation.
Summary:
Barcelona played out a goalless draw with Juventus and Chelsea registered a 4-0 win over Qarabag FK.
Summary:
The detection, made by observing neutrinos' interaction with ice, would help study Earth's core.
Summary:
MIT physicists have designed a pocket-sized detector for muons, charged particles heavier than electrons that are formed when cosmic rays from astrophysical events like stellar explosions collide with Earth's atmosphere.
Summary:
US-based researchers have inferred from simulations that while the Moon was formed from a chunk of the Earth separated during a planetary collision, its surface was shaped by cooling of a global ocean of molten magma.
Summary:
Zimbabwe is witnessing the "beginning of a new and unfolding democracy", the country's incoming President Emmerson Mnangagwa said on Wednesday in his first public remarks since his return to the country.
Summary:
The Saudi-led military coalition fighting Houthi rebels in Yemen has agreed to reopen the war-torn country's main international airport and a sea port to allow access for humanitarian aid.
Summary:
Following a Pakistani court's decision to release him from house arrest, Jamaat-ud-Dawah chief and 26/11 Mumbai attack mastermind Hafiz Saeed pledged that he and his followers will play a strong role in "Kashmir's independence".
Summary:
Pixar Chief John Lasseter is taking a six-month leave of absence following allegations of making staff feel uncomfortable with "unwanted hugs".
Summary:
The BrahMos missile, successfully test-fired from the Sukhoi-30MKI jet for the first time on Wednesday, will allow Indian Air Force to strike warships and ground targets over 400 kilometres away.
Summary:
A player who does not feature in the first seven matches of the season will be made available for a transfer if other franchises show interest.
Summary:
After Patidar leader Hardik Patel announced that Congress has agreed to their Patidar reservation formula, Gujarat Deputy CM Nitin Patel said, "Fools have given a formula and fools have accepted it." "Many leaders like you (Hardik) have come and gone into oblivion...You are being cheated by people around you.
Summary:
The Centre on Tuesday selected Hyderabad's Charminar as a 'Swachh Iconic Site' and directed the National Thermal Power Corporation (NTPC) to ensure cleanliness around the monument.
Summary:
Rudy van Buren said that he could relive his F1 dreams by winning the competition.
Summary:
Calling the Islamic State a "tumour" created by the US and its allies, Iranian Supreme Leader Ayatollah Ali Khamenei praised his country's contribution to the fight against the militant group.
Summary:
The government on Wednesday constituted a task force for redrafting the over 50-year-old income tax law, keeping in view the economic needs of the country.
Summary:
Producer-photographer Atul Kasbekar has said that news these days has become a reality television show and a joke.
Summary:
She claims that in the name of 'casual hangout', Carter forced her to perform oral sex before raping her.
Summary:
While talking about working in women-centric films, Irrfan Khan said that he doesn't mind if the film or his character is ruled by a woman.
Summary:
She was sentenced to two years' imprisonment on a drug conspiracy charge on Tuesday.
Summary:
Around 150 Delhi Police personnel have been investigated over allegations of rape, sexual assault, and molestation made over the last six years, but none have been convicted, an RTI reply has revealed.
Summary:
The scheme, which is expected to benefit 8 lakh pregnant women, will cost the state exchequer â¹140 crore.
Summary:
The potter had taken a â¹50,000-loan at a â¹30,000-interest for his daughter's wedding.
Summary:
The Supreme Court has rejected a plea by power-generating government company National Thermal Power Corporation (NTPC) and aluminium manufacturing company Hindalco seeking exemption from the ban on the use of furnace oil and pet coke.
Summary:
After being called an "idiot" by former J&K CM Omar Abdullah, All India Anti-Terrorist Front National President Viresh Shandilya said, "I may be an idiot but not an anti-nationalist like Farooq Abdullah and Omar Abdullah." Shandilya had announced a â¹21-lakh bounty on Farooq Abdullah's tongue.
Summary:
Footballer Ryan Colclough, playing in England's third-tier league, left a match midway after scoring two goals, for his son's birth.
Summary:
A 25-second shot clock will be introduced at the Australian Open 2018 to ensure players serve within 25 seconds of a point.
Summary:
Yuvraj is reportedly training in order to clear the Yo-Yo test, which has been made mandatory for Team India selection.
Summary:
This came to light after a pharmacist was allegedly found selling such drugs to patients.
Summary:
RJD chief Lalu Prasad Yadav's son Tej Pratap on Sunday allegedly threatened to set on fire Bihar Deputy CM Sushil Modi's son's upcoming wedding.
Summary:
India's move towards 100% electric vehicles (EVs) by 2030 could create a $300 billion domestic battery market, according to a report by NITI Aayog and US' Rocky Mountain Institute.
Summary:
White House Press Secretary Sarah Sanders on Monday told reporters to list things for which they are thankful, before they could ask her a question.
Summary:
The Rohingya Muslims who fled to Bangladesh to escape violence in Myanmar have been "drained" by the trauma they suffered during the crisis and a struggle to overcome desperate want, the United Nations refugee chief Filippo Grandi said on Wednesday.
Summary:
A US Navy aircraft carrying 11 crew members and passengers crashed in the Pacific Ocean on Wednesday while flying to the aircraft carrier USS Ronald Reagan, which is conducting a naval drill in Japan.
Summary:
'Dangal' director Nitesh Tiwari has said it's unfortunate that in India a film's budget is decided on the basis of who is starring in it and not on the basis of the script.
Summary:
Actress Jacqueline Fernandez has said that she enjoys doing commercial cinema but feels that people tend to take commercial cinema actresses for granted.
Summary:
Two days after banning the film 'Padmavati', Madhya Pradesh CM Shivraj Singh Chouhan has said the story of the Rajput queen will be included in the curriculum of the state's schools next year onwards.
Summary:
Amidst Congress' claims that the government was sabotaging the winter session, Finance Minister Arun Jaitley on Wednesday said the Parliament would convene for a regular session, one which does not coincide with the state Assembly elections.
Summary:
Garrett, who had been dismissed twice, replaced Hodges, as the other on-field umpire had already been substituted earlier by a deputy due to illness.
Summary:
The video showed the doctor shouting at Alphons, demanding that he give her in writing that her flight won't be delayed further.
Summary:
Google has been highlighting an 'offensive' meme from reddit user 'sjwhate' as part of its Search result for the "gender fluid" query.
Summary:
The Supreme Court (SC) on Wednesday upheld the ban on the use of petroleum coke in and around Delhi, to counter high pollution levels in the national capital.
Summary:
Al-Shabaab is blamed for a truck bombing which killed at least 380 people and injured 300 others in Somalia last month.
Summary:
Billboards paid for by US billionaire Tom Steyer, demanding the impeachment of President Donald Trump, have come up in Times Square, New York.
Summary:
Ex-Zimbabwean Vice President Emmerson Mnangagwa, who was fired earlier this month by then-President Robert Mugabe over alleged "traits of disloyalty", will be sworn in as the country's President on Friday, the state media has announced.
Summary:
Kangana Ranaut suffered a leg injury while shooting for an action sequence for her upcoming biopic on Rani Laxmibai 'Manikarnika: The Queen of Jhansi' in Jodhpur.
Summary:
People will be allowed to visit between 9 am and 4 pm, except on gazetted holidays.
Summary:
The number of dengue cases in Delhi reached 8,549 after 486 new cases were reported till November 18, according to government data.
Summary:
The Delhi High Court on Tuesday directed the municipal corporations of the national capital to submit a geographic map of the areas affected by dengue.
Summary:
Indian all-rounder Hardik Pandya took to Twitter to share a picture of himself with Dinesh Karthik and called the latter a "funny guy".
Close to 0 years mental gap.
Summary:
In an interview with Shaadi Saga, Bhuvneshwar Kumar's fiancée Nupur Nagar has revealed that the pacer first proposed to her over a text message.
Summary:
A judicial commission has cleared former Kerala Transport Minister AK Saseendran of allegations of sexual harassment against him.
Summary:
The Odisha government has decided to seek a Geographical Indication (GI) tag for 'Jagannath Rasagola' and not 'Odishara Rasagola' as was decided earlier, state Minister Prafulla Samal has said.
Summary:
The user cited the saying, "You can't teach an old dog new tricks," and asked Harbhajan to stop making a "fool of himself".
Summary:
Six Left parties, including the CPI (M) and CPI, on Wednesday called for observing the 25th anniversary of the Babri Masjid demolition on December 6 as 'Black Day'.
Summary:
Ministry of Women and Child Development is planning to make registration of adoption under the Hindu Adoption and Maintenance Act mandatory.
Summary:
Based on a statement by the victim's father, police have filed a complaint against the man and his mother on charges of abetting suicide.
Summary:
A 12-year-old rape survivor has given birth to a baby after the Madhya Pradesh High Court turned down her abortion plea on medical grounds.
Summary:
Musk termed the sale as "Initial Hat Offering" and stated that all the "cash goes directly towards more boring."
Summary:
The relationship between the US and Turkey are "like marriage", US State Department spokeswoman Heather Nauert has said, adding that sometimes these relationships have "a good day" and sometimes "a bad day".
Summary:
Lebanese PM Saad Hariri on Wednesday said that he had suspended his resignation at the request of President Michel Aoun to allow more dialogue on the political situation.
Summary:
The names were submitted to the SC in February 2014 in a sealed envelope, which was never opened.
Summary:
Uttar Pradesh's 14-year-old shooter Shardul Vihan bagged four medals in a single day at the National Shooting Championships on Wednesday, defeating world number one Ankur Mittal in one of the events.
Summary:
Summary:
UEFA has revealed its Champions League Team of the Century which includes players voted the most times in the UEFA Team of the Year since 2000.
Summary:
Apple researchers have revealed self-driving car research which could be used to detect objects like pedestrians and cyclists in a recently-published paper.
Summary:
A Google spokesperson confirmed that the company collected and processed information about user location using WiFi access points and cell towers.
Summary:
Technology giant Apple has removed Microsoft-owned video call application Skype from its App Store in China, the company confirmed.
Summary:
Denouncing US President Donald Trump's decision to relist North Korea as a state sponsor of terrorism, the reclusive nation on Wednesday called it a "serious provocation and violent infringement".
Summary:
The then Vice President Lyndon Johnson was sworn in as the country's 36th President on the same day.
Summary:
A UN court on Wednesday convicted former Bosnian Serb commander Ratko MladiÃÂ of genocide during Bosnia's 1992-1995 war and sentenced him to life in prison.
Summary:
The Supreme Court restrained 13 directors of the company from selling their assets till they paid the dues owed by its subsidiary, Jaypee Infratech.
Summary:
Footwear firm Bata has apologised for an ad that showed a man with the caption, "Womaniser and comfortable with it," at a Pakistan mall.
Summary:
The company plans to open 10,000 member-only stores to make it a â¹1.5-trillion business opportunity by 2022.
Summary:
Filmmaker Karan Johar has said Aditya Chopra is the only person he doesn't lie to because Aditya can catch him at the very moment.
Summary:
Actor Shah Rukh Khan has said that he believes women are superior to men, while adding that he's not ashamed of the fact that he is a little shy and scared of women.
Summary:
The video also shows two South Korean troops crawling towards the injured North Korean soldier before dragging him to safety.
Summary:
The Union Cabinet has approved a proposal to hike the salaries of judges of the Supreme Court and the 24 High Courts across the country, Law Minister Ravi Shankar Prasad said on Wednesday.
Summary:
The Defence Ministry on Tuesday announced that widows of gallantry award winning soldiers would now continue to get monthly allowances on behalf of their deceased spouse even after they remarry.
Summary:
This comes in the wake of recent incidents wherein attackers used vehicles to wreak havoc by mowing down people at crowded places.
Summary:
A man allegedly killed his two nephews and a niece, and dumped their bodies in a jungle in Haryana's Panchkula, the police said on Tuesday.
Summary:
Work on Kundli-Ghaziabad-Palwal (KGP) Expressway in Delhi NCR has been halted after farmers protested demanding increased compensation for their land.
Summary:
Justifying the police firing at kar sevaks in Ayodhya in 1990, the then CM Mulayam Singh Yadav said security forces would have killed more people if required for the nation's unity.
Summary:
A Haryana court has sentenced a woman to 30 years in prison for murdering her husband by cutting him into eight pieces.
Summary:
Technology giant Apple has acquired Canada-based augmented reality (AR) headset startup Vrvana for $30 million, according to reports.
Summary:
Cellular operators' body COAI has sought more time from UIDAI to operationalise new modes like OTP for Aadhaar-based re-verification of mobile subscribers' SIMs. The current deadline for the same is December 1.
Summary:
Further, Punjab recorded the highest compliance with 73.09% of the state's taxpayers filing returns for October so far.
Summary:
Gujarat Chief Minister Vijay Rupani on Wednesday tweeted that the upcoming Sanjay Leela Bhansali directorial 'Padmavati' will not be allowed to release in the state.
Many sections...have opposed it too," Rupani added.
Summary:
A Pakistani court on Wednesday ordered the release of 26/11 Mumbai terror attack mastermind and Jamaat-ud-Dawah chief Hafiz Saeed from house arrest, rejecting the government's request for a three-month extension of his detention.
Summary:
It was redirected to its original course after the farmers informed the driver of the mistake and alleged a conspiracy behind the wrong route.
Summary:
The police have arrested Tripura State Rifles Commandant Tapan Debbarma after journalist Sudip Datta Bhaumik was allegedly shot dead by Debbarma's personal guard during an altercation on Tuesday.
Summary:
Khabarovsk's player Alejandro Barbaro said he couldn't feel his legs and arms during the last 10 minutes of the match.
Summary:
Hewlett Packard Enterprise CEO Meg Whitman will step down from her position in February 2018, the company announced on Tuesday.
Summary:
He will announce $99 million funding for artificial intelligence to achieve the same in coming years.
Summary:
American electric carmaker Tesla has been burning cash at a rate of $480,000 (â¹3.1 crore) every hour over the past 12 months.
Summary:
A journalist has tweeted that he was served an apple and a pear wrapped in plastic when he asked for a vegetarian meal while flying with Colombian airline Avianca.
Summary:
Chinese artist Qinmin Liu has established her own airline, which will fly only to art events.
Summary:
Summary:
Gal Gadot, known for portraying 'Wonder Woman', has been accused of victim-shaming by an anonymous person who has claimed she was Gadot's roommate 13 years ago.
Summary:
Shahid Kapoor's half-brother Ishaan Khatter, who'll be making his acting debut with Majid Majidi's 'Beyond the Clouds', asked a journalist to define a star's son for him after the journalist referred to him as one.
Summary:
While speaking on the ongoing 'Padmavati' row, IFFI's Panorama jury head Rahul Rawail said, "Anarkali does not exist in history.
Summary:
Speaking about the ongoing row on Sanjay Leela Bhansali's film 'Padmavati', Aditi Rao Hydari tweeted, "Can I have my country back please." "I love my country, but I don't understand it anymore," she added.
Summary:
Former England spinner Graeme Swann trolled fellow commentator and ex-Australian keeper Adam Gilchrist by calling his ears 'satellite dishes', after the latter posted a picture of himself trying on ear plugs.
Summary:
The conductor accused in the murder has also been granted bail.
Summary:
Rai had threatened to chop off fingers and hands raised against PM Modi.
Summary:
A joint venture between ISRO and several companies would be aimed at covering the deficit in satellite and launch vehicle production.
Summary:
Police on Tuesday registered an FIR against a Nagpur-based man for posting offensive tweet against NCP MP Supriya Sule.
Summary:
Claiming that Pakistan witnessed bigger demonstrations than India when Babri Masjid was demolished in 1992, Rizvi said several temples in Pakistan were also attacked.
Summary:
Dr Bhimrao Ambedkar University in Agra, formerly Agra University, issued a marksheet to a student carrying the photo of actor Salman Khan.
Summary:
India has asked the United Nations to declare 2018 as the international year of millets and promote it as nutrition-rich smart food across the world.
Summary:
NASA engineers recently raced their drones controlled by artificial intelligence (AI) against a professional human pilot.
Summary:
Researches further found the ocean-based sea nettle jellyfish has 40 tentacles compared to 24 of its bayside counterpart.
Summary:
If confirmed, it would push back the earliest depiction of leashed dogs by 3,000 years, said researchers.
Summary:
The world's fastest supersonic cruise missile, BrahMos was successfully flight-tested for the first time from the Indian Air Force's fighter aircraft Sukhoi-30MKI against a sea-based target on Wednesday.
Summary:
A 32-year-old woman from Mumbai on Monday filed a complaint of molestation after a Twitter user called her fat and abused her on the micro-blogging site, police said.
Summary:
It is believed that the 24-hour day concept came from ancient Egyptians, who divided the time between sunrise and sunset into ten hours, and kept one hour for each twilight period and 12 hours for nighttime.
Summary:
"Ever since Ashok got arrested, we have all been collecting money for him...we have raised around â¹2 lakh," a village resident said.
Summary:
Nagaland government employees on Tuesday staged a rally in capital Kohima to protest the terror funding probe conducted against employees by the National Investigation Agency (NIA).
Summary:
Patidar leader Hardik Patel on Wednesday said that Congress has agreed to give the community reservation in jobs and college admissions if voted to power.
Summary:
Stating that Delhi is not a state but a Union Territory with special features, the Centre on Tuesday told the Supreme Court that the local AAP government doesn't have any exclusive power to govern Delhi.
Summary:
In a statement, Apple said that it took action after discovering the students were working overtime.
Summary:
Two Boeing 747 jumbo jets were auctioned on Alibaba-owned Chinese e-shopping website Taobao for 322.8 million yuan (â¹316 crore) on Tuesday.
Summary:
In preparation for the same, Eduwhere's MBA CAT 2017 Scholarship Exam is currently underway.
It aims to provide the CAT aspirants with realistic insights on their CAT preparation.
Summary:
NASA's Kepler mission has discovered a planet which is five times massive than the Earth and orbits its host star every 6.7 hours, making it the planet having the shortest-known orbital period with a precisely determined mass.
Summary:
Russia has denied reports of a nuclear accident at its secretive nuclear facility, saying it was not responsible for high atmospheric concentrations of radioactive isotope ruthenium-106 over Europe.
Summary:
Retired NASA astronaut Guion Bluford was the first African-American to fly into space, achieving the feat in 1983 aboard the Challenger spacecraft.
Summary:
The New Zealand Qualifications Authority (NZQA) has received numerous complaints, with even teachers reportedly struggling to solve questions.
Summary:
Swedish furniture maker IKEA has recalled about 17.3 million chests and dressers after the death of an eighth child.
Summary:
Shatrughan Sinha, while speaking about the row on 'Padmavati', tweeted, "People are asking why the legendary Amitabh Bachchan, most versatile Aamir Khan and most popular Shah Rukh Khan have no comments." "How come our I&B Minister or our most popular Hon'ble PM...are maintaining silence," he added.
Summary:
"All the clothes were approved by her....[And] a few kisses do not make a film erotic," said the makers.
Summary:
According to reports, television actor Mohit Raina will be portraying Baba Ramdev in an upcoming biopic series on the Yoga guru.
Summary:
Iranian filmmaker Majid Majidi, while speaking about not casting Deepika Padukone in his film 'Beyond the Clouds', said he didn't want to work with Bollywood superstars.
Summary:
Madhya Pradesh Home Minister Bhupendra Singh on Wednesday said the Bhopal gangrape survivor will be given an award for bravery and 'confidently narrating her ordeal'.
Summary:
A Muslim woman was reportedly directed to remove her burqa by police during Uttar Pradesh CM Yogi Adityanath's rally in Ballia.
Summary:
However, state Education Minister KNP Verma said teachers can convince people against open defecation in a good manner.
Summary:
Two women, including a police constable, have alleged that they were sexually assaulted and exploited by two senior officers of Madhya Pradesh police department.
Summary:
The Telangana government has directed all public and private schools in the state to introduce Telugu as a compulsory subject from the next academic session.
Summary:
Alleging that the incident was a conspiracy against him, Maharaj claimed other voters supporting the BJP could not find their names on the voter list.
Summary:
English actor Sacha Baron Cohen has offered to pay the fines of six Czech tourists who wore Borat-style green swimsuits in Astana, Kazakhstan.
Summary:
A photo gallery explores the recently opened FICO Eataly World, a food park in Italian city Bologna.
Summary:
The breach, however, did not reveal users' Social Security Numbers, credit card information or trip details.
Summary:
Actor and BJP MP Paresh Rawal has apologised for his tweet in which he had taken a jibe at Congress.
Summary:
US prosecutors have charged an Iranian national, Behzad Mesri, with hacking into American TV network HBO and stealing its episodes and plot summaries for unaired programs including Game of Thrones.
Summary:
Refusing to reveal details, Deepak added that Sasikala was cheating Jayalalithaa in a "big way".
Summary:
To ensure Justice Dalveer Bhandari's re-election at the International Court of Justice, External Affairs Minister Sushma Swaraj directly spoke with her counterparts from nearly 60 countries to push his case.
Summary:
ISRO is planning to develop a launch vehicle that could be assembled in just 3 days, compared to 30-40 days for a normal-sized PSLV.
Summary:
After Haryana's Fortis hospital charged â¹18 lakh for the 15-day treatment of a dengue patient, state Health Minister Anil Vij on Tuesday said a probe has been ordered to ensure strict action against the hospital.
Summary:
Martian features called "recurring slope lineae", which were previously considered evidence of ancient water flows have been interpreted as granular sand flows by a new NASA study.
Summary:
American Airlines Group Inc, United Continental Holdings Inc and other aviation defendants have agreed to pay over â¹616 crore ($95.2 million) to the developer of the World Trade Center in New York.
Summary:
The release date of 'Fukrey Returns' has been changed to December 8 after the release date of 'Padmavati' was postponed by its producers.
But we moved up as Padmavati was shifted to December 1," said Ritesh Sidhwani, producer of 'Fukrey Returns'.
Summary:
Speaking about rumours of a fight with Alia Bhatt, Jacqueline Fernandez said she felt very hurt by such reports.
Jacqueline further said, "We're working hard, and running our...houses on our own.
Summary:
Justice Dalveer Bhandari, who has been re-elected to the International Court of Justice for the second term, has said his re-election will ensure representation of Indian legal system and civilisation at the world court.
Summary:
Maharashtra Congress and Nationalist Congress Party have joined hands and decided to merge their rallies for the upcoming by-poll for a Legislative Council seat.
Summary:
Delhi Environment Minister Imran Hussain on Tuesday directed the officials to provide electric heaters to night shelters for homeless people and to government offices for security guards.
Summary:
A website called the 'Celebrity Perv Apology Generator' creates public apologies for men who have been accused of sexual abuse or harassment.
Summary:
Initial inputs have also suggested that JeM and Lashkar-e-Taiba are working together to execute task and are using a Bangladesh-based cadre for logistics.
Summary:
The deceased's relatives had to carry him on a cot as the village did not have road connectivity.
Summary:
Rashtriya Janata Dal (RJD) President Lalu Prasad Yadav has said he will lead the party from the prison like he did on previous occasions, if the NDA government puts him in jail.
Summary:
Former Jammu and Kashmir CM Omar Abdullah has called Anti-Terrorist Front of India Chief Viresh Shandilya an "idiot" for keeping a â¹21-lakh bounty on Farooq Abdullah's tongue.
Summary:
Cristiano Ronaldo scored two second-half goals to help his side Real Madrid thrash Cyprus-based APOEL 6-0 in the Champions League group stage on Tuesday.
Summary:
The 12 paintings, the largest collection of Modigliani nudes ever displayed together in the UK, are part of the 'Modigliani' exhibition wherein a total of 100 paintings have gone on show.
Summary:
If a proposal by CISF is approved, the Delhi airport may become the first in India to get a fleet of bulletproof vehicles.
Summary:
As a part of the investment, Paytm will leverage CreditMate's asset valuation technology to create a loan management system, Paytm said.
Summary:
A US-based study has found that oxygen levels increased around the same time as a three-fold increase in biodiversity between 445 and 485 million years ago.
Summary:
The hair would have caused a serious medical problem if it had not been removed, the doctor said.
Summary:
China on Tuesday said that it always regards Pakistan as its priority in the neighbourhood diplomacy as the two countries are all-weather strategic partners and lend firm support to each other's core interests.
Summary:
Notably, North Korea has 90% of its trade with China.n
Summary:
Term plans now available in the market come with many features but Max Life's new plan is custom made for working professionals who want to stop paying premiums once their regular income ceases during retirement.
Summary:
ISRO Chairman AS Kiran Kumar on Tuesday said that Aditya-L1, India's maiden mission to the Sun, will be launched in 2019 from Sriharikota in Andhra Pradesh.
Summary:
Gisele, who has been the highest-paid model since 2002, was ranked second in the list this year, with earnings of $17.5 million (â¹113 crore).
Summary:
The Railways has decided to use Artificial Intelligence to prevent the possibility of signals failing, moving from a find-and-fix to predict-and-prevent approach.
Summary:
The situation arose as Kumbhani was declared the candidate first, but the decision was reversed within 24 hours, party officials said.
Summary:
Former Bihar CM and RJD chief Lalu Prasad Yadav's wife Rabri Devi has said that there are many people in Bihar who are ready to slit PM Narendra Modi's neck and chop his hands off.
Summary:
Nepal will close its borders with India for 3 days over security reasons ahead of the first phase of parliamentary and provincial elections scheduled to be held on November 26, officials said.
Summary:
The Congress' youth wing's online magazine Yuva Desh on Tuesday shared a meme on Twitter mocking Prime Minister Narendra Modi's past as a tea seller.
Summary:
The Rashtriya Janata Dal (RJD) on Tuesday declared former Bihar Deputy Chief Minister Tejashwi Yadav as its chief ministerial candidate for the state's next Assembly polls.
Summary:
Transport Minister Nitin Gadkari has asked citizens to click pictures of wrongly parked cars and send them to authorities.
Summary:
The court added that installation shouldn't be delayed as it was in the larger public interest, discipline, and security.
Summary:
On the suggestion of government interlocutor Dineshwar Sharma, over 4,500 cases against Kashmiri youth involved in stone pelting for the first time will be dropped.
Summary:
Lalu Prasad Yadav has been elected as National President of Rashtriya Janata Dal (RJD) for the tenth consecutive time.
Summary:
British Airways has announced a group boarding policy wherein passengers who have paid the least for their tickets will be among the last to board flights.
Summary:
US-headquartered investment firm Tiger Global may sell a portion of its stake in the ride-sharing startup Ola to Japan's SoftBank for $400-500 million, according to reports.
Summary:
NASA's James Webb Space Telescope, which would be the largest-ever space telescope when launched in 2019, has completed its final phase of the 100-day vacuum testing at -266úC.
Summary:
Around 1,600 people were killed in lava, mudslides and gas clouds when the volcano last erupted in 1963.
Summary:
Summary:
Socialite Paris Hilton has been trolled on social media for her tweet in which she claimed that she co-invented the selfie with singer Britney Spears 11 years ago.
Summary:
Uttar Pradesh Chief Minister Yogi Adityanath on Monday said Congress Vice President Rahul Gandhi sat in the Kashi Vishwanath temple like he was offering namaz.
Summary:
The bus driver reportedly fled the scene, and the bike rider was arrested.
Summary:
The Brihanmumbai Municipal Corporation (BMC) has said that the road from Andheri station to Saki Naka will be widened to 90 feet from the current 60 feet to prevent flooding outside the station and make more space.
Summary:
Patidar leader Hardik Patel on Tuesday said he did not seek a ticket from any political party to contest the upcoming Gujarat Assembly polls.
Summary:
The Punjab and Haryana High Court on Tuesday granted a conditional anticipatory bail to the three trustees of Ryan International chain of schools, in connection with the murder of a seven-year-old student at their Gurugram school.
Summary:
Speaking at a meeting with traffic police officials in Italy, Pope Francis called on the authorities to show mercy to drivers who are caught speeding.
Summary:
The US will end a residency programme that protects Haitian immigrants from deportation in July 2019, the Homeland Security Department said.
Summary:
HSBC's private-banking unit was fined a record $51 million over sales of structured products linked to Lehman Brothers in Hong Kong.
Summary:
The announcement came during a parliamentary session to impeach Mugabe after he ignored a deadline to resign.
Summary:
Five-time Grand Slam champion Maria Sharapova has been booked under cheating and criminal conspiracy charges by Delhi Police, following the collapse of a luxury housing project in Gurgaon which she endorsed.
Summary:
Talking about the secrecy around 26/11 terrorist Ajmal Kasab's hanging, former Maharashtra Inspector General (Prisons) Meeran Chadha Borwankar said she had been asked to keep a draft SMS on the success of the execution ready.
Summary:
The Indian Medical Association (IMA) has defended Fortis Gurugram for charging â¹18 lakh for treatment of seven-year-old dengue patient.
Summary:
A video of an off-duty police officer in Brazil shooting dead two armed robbers while holding his infant son in his left arm has surfaced online.
Summary:
Tether said it has flagged the tokens and that it is working to recover them.
Summary:
Cryptocurrency startup Confido that raised over $374,000 (â¹2.43 crore) through an Initial Coin Offering (ICO) has disappeared with the funds with nobody being able to track the founders down.
Summary:
The opioid epidemic cost the US economy more than $500 billion in 2015, a report by the White House Council of Economic Advisers has revealed.
Summary:
Israeli capital Jerusalem is constructing a cemetery beneath its largest burial ground due to a shortage of burial space.
Summary:
At least 20 people were killed and 40 others were injured on Tuesday after a suicide bomber set off a truck bomb near a crowded marketplace in the northern Iraqi town of Tuz Khurmatu.
Summary:
The International Criminal Court (ICC) has announced that it is seeking authority to investigate war crimes by the US in Afghanistan and the CIA's role in operating secret detention facilities, called "black sites".
Summary:
Confederation of All India Traders (CAIT) Secretary General Praveen Khandelwal has said the government might withdraw the cheque book facility in "near future" to encourage digital transactions.
Summary:
The issue by the company was assigned 'BBB+' rating by S&P Global and 'Baa2' by Moody's.
Summary:
Amid growing death threats against actress Deepika Padukone over 'Padmavati', she has backed out of the upcoming Global Entrepreneurship Summit 2017 in Hyderabad.
Summary:
Egyptian singer Shyma Ahmed has been arrested for "inciting debauchery" over a music video in which she is seen eating a banana in front of a group of men.
Summary:
Actor Ranveer Singh has said that he has been asked not to say anything on the ongoing row over his upcoming film 'Padmavati'.
He had earlier said that he is 200% with the film 'Padmavati' and his director Sanjay Leela Bhansali.
Summary:
Hollywood actress Jennifer Lawrence, while talking about the hacking of her nude pictures in 2014, said she felt like she got gang-b**ged by the planet.
Summary:
This comes after noise pollution rules were amended, barring the designation of any area as a 'silence zone' unless notified by the state government.
Summary:
Hawkers assaulted Railway Protection Force officials for evicting them from railway premises in three separate incidents at Ghatkopar, Kasara, and Lokmanya Tilak Terminus.
Summary:
England pacer Stuart Broad was hit by a stray golf ball at the Brisbane Golf Club while practicing his putting, ahead of the first Ashes Test on Thursday.
Golf Ball Bruise.
Summary:
Sri Lankan batsman Chamara Silva tried to play a shot from behind the stumps but was clean bowled during a domestic T20 match.
Summary:
The Centre is likely to introduce a bill to ban instant Triple Talaq during the Parliament's upcoming winter session after it was outlawed by the Supreme Court, reports quoting officials said.
Summary:
BJP President Amit Shah on Tuesday said the upcoming Gujarat Assembly polls are a battle between casteism and dynastic rule supported by the Congress, and development politics endorsed by PM Narendra Modi.
Summary:
Lawyers representing the victims argued that the hotel and concert officials did not do enough to prevent the shooting.
Summary:
Syrian President Bashar al-Assad has thanked his Russian counterpart Vladimir Putin for "saving his country" and for Russia's support in Syria's civil war.
Summary:
The ruling said Tjokrosaputro was legal owner of the 425 million shares.
Summary:
The skeleton of a Steller's sea cow, which went extinct in the late 1700s, has been discovered on a Siberian beach.
Summary:
Observing that the CBI didn't submit evidence against Kumar, it set the bail at â¹50,000.
Summary:
Vijender Singh will take on British and Commonwealth super middleweight champion Rocky Fielding in his next fight on March 30, 2018.
Summary:
The air quality in Delhi-NCR would range from 'Poor' to 'Very Poor' for some days, officials said.
Summary:
Police and authorities on Tuesday seized a Nathuram Godse statue installed at the Hindu Mahasabha office in Gwalior.
Summary:
Amidst reports that Congress Vice President Rahul Gandhi would soon be elevated as party President, Uttar Pradesh CM Yogi Adityanath on Tuesday said that it would make BJP's task of making a 'Congress-free India' easier.
Summary:
Talking about the IT sector in India, former Infosys CFO Mohandas Pai has said that "We have a danger of this country becoming a digital colony." Adding that currently all unicorn companies are "substantially owned by foreigners", Pai emphasised that companies have to be drawn to India.
Summary:
A village in Russia's Chelyabinsk has registered "extremely high pollution" of radioisotope Ru-106, exceeding natural background radiation pollution by 986 times, Russia's meteorological service said.
Summary:
At least 50 people were killed and several others were injured on Tuesday after a teenage suicide bomber blew himself inside a mosque in the Nigerian town of Mubi.
Summary:
Iranian President Hassan Rouhani on Tuesday declared the end of ISIS, although he acknowledged that the remnants of the militant group will remain.
Summary:
US National Security Advisor HR McMaster reportedly called President Donald Trump an "idiot" and a "kindergartner" during a meeting with Safra Catz, CEO of computer software major Oracle.
Summary:
The Argentinian submarine that went missing with 44 crew members on board last week had surfaced to report an electrical malfunction, navy officials said.
Summary:
Chief Economic Adviser Arvind Subramanian has said that all tax laws and procedures should be devised to cater to the over 90% who comply.
Summary:
The poster has been captioned, "Mahakhushi Chhillar!" and it further reads, "Amul Won't Miss it for the World!".
Summary:
While speaking on the 'Padmavati' row, Haryana BJP Chief Media Coordinator Suraj Pal Amu said that burning cinema halls across the country will be their "swachhata abhiyan".
Summary:
TV actress Rinku Dhawan has said that she and her husband Kiran Karmarkar, her co-star from the show 'Kahaani Ghar Ghar Kii', have split and have been living separately for 12-15 months.
Summary:
Former Chairman of the Central Board of Film Certification (CBFC) Pahlaj Nihalani has said a state cannot ban a film before it has been certified by the board.
Summary:
Social media giant Facebook is set to launch its video platform 'Watch' next year for users in India, according to reports.
Summary:
After 11 students were arrested over the Mumbai University BMS question paper leak, police said they had circulated the papers for â¹250-â¹500.
Summary:
A day after the BJP released its third list of candidates for Gujarat polls, the party on Tuesday released its fourth list, naming only one candidate Piyushbhai Desai as its nominee from Navsari.
Summary:
Congress leader Mallikarjun Kharge on Tuesday slammed Prime Minister Narendra Modi, saying "he is Brahma, he is the creator" since only he knows when the Parliament's Winter Session would be convened.
Summary:
Chelsea loanee Fankaty Dabo scored an own goal after chipping his goalkeeper from 32 metres away in Netherlands' top tier league on Sunday.
Summary:
The first bowler to take an all-bowled five-wicket haul was Bangladesh's Rubel Hossain, who did so in 2010.
Summary:
A 102-year-old Holocaust survivor, who thought everyone in his family died during the Second World War, was reunited with his nephew in Israel.
Summary:
Brazilian goalkeeper Jakson Follmann, one of the six survivors from 2016's Chapecoense air crash, said he wants to compete in the Paralympics as a swimmer.
Summary:
A joint team of Delhi and Punjab Police arrested five people on Tuesday after a shootout and recovered at least 13 firearms and 100 cartridges from them in Delhi's Dwarka.
Summary:
A Dinosaur-like creature's fossil was found during an excavation on Sunday in Uttarakhand's Jaspur, a small city 110 km from Nainital.
Summary:
After claiming credit for the release of 3 basketball players arrested for shoplifting in China, US President Donald Trump tweeted, "I should have left them in jail!" His tweet came after the father of one of the players questioned Trump's role in freeing his son.
Summary:
Tencent's market capitalisation exceeded that of Facebook on Tuesday, a day after it became the first Chinese technology company to be valued at over $500 billion.
Summary:
OnePlus' latest premium flagship device, OnePlus 5T goes on sale today at 4.30 PM on Amazon.in for prime members, oneplusstore.in and OnePlus experience zones in Bangalore and Delhi NCR.
Summary:
"This has come from heart and not mind," Bhatt said, adding that StyleCracker's Co-founder Archana Walavalkar has been her stylist for many years.
Summary:
Pilot Amol Yadav has assembled a six-seater aircraft on the rooftop of a building and named it Victor Tango Narendra Modi Devendra (VT-NMD).
Summary:
The woman was also felicitated by an MLA for her generosity at a function in the temple.
Summary:
Uber said that the error affected a few drivers and it took corrective action immediately.
Summary:
Automobile giant Mahindra and Mahindra opened its new manufacturing plant in America's 'Motor City' Detroit, which got its first automotive production facility in 25 years.
Summary:
KFC said the tent will have to be tested before it can claim total signal impenetrability.
Summary:
The 4,242 sq ft apartment, sold for about $72 million, has become the most expensive residence in Asia by area.
Summary:
NDTV CEO KVL Narayan Rao passed away on Monday at the age of 63 after battling cancer for two years.
Summary:
Uttar Pradesh CM Yogi Adityanath, while speaking on the 'Padmavati' row, said if groups like Karni Sena are guilty of giving death threats then director Sanjay Leela Bhansali is also responsible for hurting people's sentiments.
Summary:
"Phir daru piya re tu," commented a Twitter user.
"She is having a flower in her womb and you are comparing her with a flower pot," wrote another user.
Summary:
Filmmaker Rahul Rawail has been appointed as the acting chief of the jury for the Indian Panorama section of International Film Festival of India (IFFI) 2017 after Sujoy Ghosh's resignation.
Summary:
Producer Boney Kapoor, on being asked to comment on the ongoing row on Sanjay Leela Bhansali's 'Padmavati', said, "Padmavati is, well, not my film." Slamming his comment, a Twitter user wrote, "Spineless person." "His films in the past have run into financial issues.
Summary:
The CBI on Tuesday summoned the maternal uncle of bus conductor Ashok Kumar, who has been arrested for the murder of a class 2 student at Gurugram's Ryan International School.
Summary:
Virat Kohli went past former captain Sourav Ganguly to become the fourth highest run-getter as India's Test captain, during the first Test against Sri Lanka on Monday.
Summary:
The government is planning to transport coal in covered rail wagons and trucks across the country to combat air pollution.
Summary:
The group further said that Farooq Abdullah's Z-plus security should be withdrawn.
Summary:
The Federal Aviation Administration (FAA) has approved AT&T's Flying Cow (Cell on Wings) drones to restore the cell network over hurricane-hit Puerto Rico.
Summary:
Bengaluru-based home healthcare startup Portea Medical has raised $26 million funding in its Series C funding round led by Sabre Partners and MEMG CDC Ventures.
Summary:
Life on Earth might have originated from biological particles brought to the planet in streams of space dust, UK-based Professor Arjun Berera has suggested.
Summary:
Lebanese President Michel Aoun also called on the army to counter Israel's "aggressive intentions towards Lebanon, its people and its army".
Summary:
German Chancellor Angela Merkel has said that she would prefer new elections than try to rule in a minority government after negotiations to form a new government collapsed.
Summary:
A pro-ISIS group has released a propaganda poster depicting a beheaded Pope Francis.
Summary:
Model Ming Xi slipped and fell on the runway during the Victoria's Secret Fashion Show in China.
Another user wrote, "Strut away as unbothered as Ming Xi."
Summary:
Central Board of Excise and Customs (CBEC) Chairperson Vanaja Sarna has asked FMCG companies to immediately revise MRP on products for which GST has been reduced to pass the benefit to consumers.
Summary:
Tripura-based Journalist Sudip Datta Bhaumik was shot dead on Tuesday, allegedly by a constable of the Tripura State Rifles.
Summary:
After slingshotting past the Sun at 3,14,280 kmph, 'Oumuamua is heading back into interstellar space, said astronomers.
Summary:
The Kerala High Court on Tuesday directed the organisers of International Film Festival of India (IFFI) 2017 to screen 'S Durga', overruling the decision of the Ministry of Information and Broadcasting to cancel its screening.
Summary:
The Telangana Police arrested nine people on Sunday for allegedly converting children from poor families to Islam on the pretext of providing them free education, food, and shelter at an orphanage in Telangana.
Summary:
After being slammed for visiting Kerala's Sabarimala temple, National Health Mission Chief Engineer Anila CJ has written a complaint letter to CM Pinarayi Vijayan stating that she is 51 years old.
Summary:
Bihar BJP chief Nityanand Rai has taken back his statement threatening to chop off or break fingers and hands raised against Prime Minister Narendra Modi.
Summary:
Summary:
The patent filed focuses on self-driving cars and introduces a "sensory stimulation system".
Summary:
Summary:
CapriCoast's team will become a part of HomeLane while its Founder and CEO Jawad Ayaz will join HomeLane's board, as a part of the deal.
Summary:
The Commander of US forces in Afghanistan, General John Nicholson, on Monday said that US aircraft have targeted drug-producing facilities in the country for the first time under a new strategy aimed at cutting off Taliban funding.
Summary:
A bus pulled up in front of The Weather Channel crew when it was filming the demolition of US' Georgia Dome stadium.
Summary:
Mike Hughes, a 61-year-old who claims to be a self-taught rocket scientist, is planning to launch himself in a self-made steam-powered rocket made using garbage scrap on Saturday.
Summary:
Vijay Mallya, appearing before a London court on Monday, said his life would be in danger if he is sent back to India.
Summary:
These applications are a part of BankChain, a community of 22 Indian and 5 Middle East-based banks.
Summary:
Chief Economic Adviser Arvind Subramanian said the government may combine the 12% and 18% GST slabs into one in the near future, and reserve 28% rate only for demerit goods.
Summary:
The Serious Fraud Investigation Office has found officials at SBI Capital Markets and Ambit Corporate Finance guilty of helping Kingfisher Airlines defraud lenders.
Summary:
Mallya's extradition hearing has been confirmed for eight days starting December 4 with bail conditions remaining in force till the trial begins.
Summary:
"You...poked fun at a minister and it only shows as a government how tolerant we are," said Smriti Irani in response.
Summary:
A company's HR manager was arrested by a SHE TEAM of Hyderabad Police for allegedly harassing a woman and asking for lewd pictures in exchange for a job.
Summary:
The Hyderabad Police has found two 'rich, educated' women among the beggars who were being shifted to ashrams ahead of US President Donald Trump's daughter Ivanka Trump's visit to Hyderabad.
Summary:
The step is aimed at ensuring there are enough teachers for the students, officials said.
Summary:
Ahead of US President Donald Trump's daughter Ivanka's visit to Hyderabad, residents living near the Falaknuma Palace were asked not to allow strangers or their relatives and friends to come to their houses during that period.
Summary:
A photograph of Bihar Station House Officer Ashok Kumar folding his hands in front of six people riding on a motorbike has gone viral.
Summary:
Premier League club West Ham United's fans have been calling the UK's emergency number 999 after losing to Watford on Sunday.
Summary:
A BMC official has said that the first phase of Mumbai's 39-km cycling track, which once complete is expected to be the longest cycling track in India, will open to the public in January.
Summary:
Quess will pay â¹153 crore in cash for the stake in Hyderabad-based Tata Business Support Services (TBSS).
Summary:
Prime Minister Narendra Modi on Tuesday said the "untiring efforts" of External Affairs Minister Sushma Swaraj and Ministry of External Affairs officials have led to India's re-election to the International Court of Justice (ICJ).
Summary:
A civilian from Jammu has filed a police complaint after his picture was circulated on electronic and print media, as one of the six Lashkar-e-Taiba (LeT) terrorists killed by security forces in Bandipora on Saturday.
Summary:
Haryana government has included the kin of 2 BJP leaders in the list of five candidates shortlisted for an IAS vacancy, meant for non-state civil service officers.
Summary:
The baby had developed severe respiratory distress, doctors said.
Summary:
Alibaba was ranked the next biggest among Chinese technology companies, with a market valuation of $474 billion.
Summary:
Austria-based physicists have claimed to successfully couple nano-resonators on silicon chips, which release photons at precisely the same frequency to create a quantum entangled state.
Summary:
Summary:
When a user taps on the icon, it turns blue which indicates that the feature is active.
Summary:
A man from Gurugram has filed an FIR against Haryana BJP Chief Media Coordinator Suraj Pal Amu for announcing a â¹10 crore reward for beheading actress Deepika Padukone and filmmaker Sanjay Leela Bhansali over their film 'Padmavati'.
Summary:
Actress Aishwarya Rai Bachchan slammed media persons and photographers for reportedly misbehaving at a charity event held in memory of her late father Krishnaraj Rai. The event, held in a hospital, was organised by a charity foundation that provides free cleft and palate surgery to children.
Summary:
Karnataka's CM Siddaramaiah had earlier said the state stands by her amid the controversy.
Summary:
Delhi High Court on Tuesday refused to pass any order on a plea seeking action against National Conference Chief Farooq Abdullah for his remarks on Pakistan occupied Kashmir.
Summary:
Maharashtra's Anti-Corruption Bureau (ACB) has recorded its lowest conviction rate in a decade, with 15% convictions till October this year.
Summary:
The Delhi government is planning to build an eco-friendly hub in Delhi's Rani Khera by 2021, officials have said.
Summary:
Men from Delhi-NCR recently carried out a car and motorcycle rally from Leisure Valley Ground in Gurugram to Red Fort in Delhi, in a bid to resist criminalisation of marital rape.
Summary:
Haryana police have arrested a man from Uttarakhand for allegedly posting an 'obscene' morphed image of PM Narendra Modi on Facebook.
Summary:
Mumbai police has arrested 60-year-old Shirish Shah, accused of being involved in an extortion case 20 years ago.
Summary:
A Remotely Piloted Aircraft of the Indian Navy crashed during take off just outside the naval airfield INS Garuda in Kerala on Monday, officials said.
Summary:
After Vijay Mallya drew parallels with Congress chief Sonia GandhiâÂÂs son-in-law Robert Vadra saying that they were both political victims, Vadra said that he was a political victim but had never misused his position.
Summary:
Kanaka V, a 17-year-old rescued child labourer, addressed the Parliament on Monday on the occasion of Universal Children's Day and highlighted the importance of children's safety.
Summary:
"Beta bahut sundar hai bhajj..bahut pyar dena," Ganguly commented on the picture.
Summary:
The Brihanmumbai Municipal Corporation (BMC) will launch a post-graduate diploma course in disaster management in collaboration with the University of Mumbai, starting next year.
Summary:
Germany-based researchers have developed an augmented reality (AR) system that superimposes a virtual image on the skin of the patient to pinpoint the exact position of cancerous tumours to the surgeon.
Summary:
Chinese smartphone maker Xiaomi's CEO Lei Jun has said, "We have implemented India number one priority strategy at our headquarters." "We need to build the coolest products and offer them at a very honest and reasonable price.
Summary:
India and Russia have agreed to implement visa-free entry for the flight crew of scheduled and chartered flights between the two countries, a Home Ministry official said today.
Summary:
Mumbai-based bike rental startup ONN Bikes has raised â¹4.5 crore in a pre-series A funding round led by existing investor Z Nation Lab. Angel investors including Jito Angel Network, Venture Catalysts, Jayesh Parekh, and Pankaj Harlalka also participated in the round.
Summary:
An international team has revealed how the oldest water in Pacific and Indian oceans has remained trapped in a "shadow zone" for over 1,000 years.
Summary:
Fortis Hospital in Haryana's Gurugram generated a bill amounting to â¹18 lakh for a 15-day-stay of a seven-year-old girl diagnosed with dengue, who later passed away.
Summary:
Her earnings, mainly from album 'Lemonade' and Formation World Tour, have been estimated to be $105 million (â¹682 crore).
Summary:
Dalveer Bhandari, who was re-elected to the International Court of Justice (ICJ) on Monday, served as a judge in India for over 20 years before being elevated to the UN court.
Summary:
It also stated that the family discharged her against medical advice and she died the same day.
Summary:
American inventor Thomas Edison, who announced the invention of the phonograph on November 21, 1877, recorded the nursery rhyme 'Mary had a little lamb' as the first words on the device.
The phonograph was the first device capable of recording and reproducing sound.
Summary:
In a first, Japanese startup ALE will create artificial "shooting stars" in an event scheduled to be held over Hiroshima in 2019.
Summary:
'Swag Se Swagat', the first song from Salman Khan and Katrina Kaif starrer 'Tiger Zinda Hai' has been released.
Irshad Kamil has penned the song's lyrics.
Summary:
The University Grants Commission has urged universities across India to observe the Armed Forces Flag Day on December 7.
Summary:
External Affairs Minister Sushma Swaraj, announcing the International Court of Justice (ICJ) election result tweeted, "Vande Matram - India wins election to the International Court of Justice.
Summary:
While seven flights were delayed, authorities allowed passengers to re-enter the airport after about an hour and a half.
Summary:
Actor Kamal Haasan, while reacting to threats of beheading Deepika Padukone over the row on 'Padmavati, tweeted, "I want Ms Deepika's head...
Do not deny her that," he added.
Haasan further wrote that extremism in any debate is deplorable while adding, "Wake up cerebral India.
Summary:
Souza shot dead the second robber after handing the baby to his wife, who took cover behind a shelf.
Summary:
To combat the problem of rising air pollution in Uttar Pradesh, IIT Kanpur is set to create artificial rains through cloud-seeding in Lucknow.
Summary:
Delhi Police has announced plans to deploy a new squad of 600 motorcycles called 'Raftaar' to control street crimes such as chain-snatching and molestation in the national capital.
Summary:
Commuters can file their complaints at any booth on the metro network irrespective of the crime location.
Summary:
To prevent a repetition of the recent cave-in incident, East Delhi Municipal Corporation (EDMC) has roped in experts from IIT Delhi to work on measures to stabilise the Ghazipur landfill site.
Summary:
Alleging abuse by goons, Mumbai-based lawyer Afroz Shah on Sunday suspended the world's largest beach cleanup drive at Versova beach after 109 weeks.
Shah said his team had collected 50 truckloads of garbage since monsoon but the administration didn't clear it owing to their lethargy.
Summary:
In a bid to stop multiple allotment of tenements for "project affected people" (PAP) to a single beneficiary, the BMC is preparing a software to link slums with Aadhaar.
Summary:
Retired IAS officer BB Mohanty, accused of raping a 23-year-old student in 2013 on the pretext of helping her with IAS examination preparations, on Monday surrendered to the Jaipur Police.
Summary:
The Panchkula Police on Monday arrested Dera Sacha Sauda spokesperson Pawan Insan, who was absconding for the past 85 days.
Summary:
Central Industrial Security Force (CISF) has written to various schools across the country offering security consultancy services to ensure students' safety.
Summary:
In May as well, the CM's convoy had blocked an ambulance for Bhagiratha Jayanthi celebrations.
Summary:
Summary:
Delhi sprinter Nisar Ahmed won gold, setting the new record at 21.73 sec.
Summary:
Stands at the Feroz Shah Kotla stadium in New Delhi are set to be named after former spinner Bishan Singh Bedi and batsman Mohinder Amarnath.
Summary:
Delta Air Lines is auctioning select seats on the "employee farewell tour" of its last Boeing 747 aircraft, which will be retired on December 20.
Summary:
However, researchers noted the whale turn left-oriented while performing 360-degree barrel rolls to track the prey on the ocean surface with their right eye.
Summary:
India's nominee Dalveer Bhandari was re-elected to the last seat of the International Court of Justice (ICJ) on Monday, after Britain withdrew its candidate.
Summary:
Luge is a winter sport, wherein a competitor rides a flat sled while lying face-up and feet first.
Summary:
India has signed an over â¹630-crore loan agreement and a â¹13-crore grant agreement with the World Bank, in an attempt to increase its power generation capacity through renewable energy sources.
Summary:
President of Darjeeling's Gorkha Janmukti Morcha, Bimal Gurung, has been suspended from the party for six months, along with the party's General Secretary, Roshan Giri, and at least seven others.
Summary:
Uttar Pradesh Chief Minister Yogi Adityanath on Sunday said that over 500 criminals lodged in the state's jails have got their bails cancelled as they prefer staying in jail over being outside.
Summary:
The toll of the militants killed this year by the security forces has crossed 190.
Summary:
"We are neither taking it as surrender nor arresting him," IGP Munir Khan said.
Summary:
A survey conducted by the UNICEF among 1,000 Indian children revealed that 15% children wanted Amitabh Bachchan to attend their birthday party, while 14% respondents named Prime Minister Narendra Modi as their preference.
Summary:
IndiGo has been directed to pay a passenger â¹58,000 by the consumer forum for failing to inform him about the cancellation of his Dubai-Chandigarh flight last year and refusing to make alternate arrangements.
Summary:
The porous structures are strong, light, and durable materials with repeating patterns.
Summary:
The UK won't have a judge on the International Court of Justice for the first time in the court's 71-year history.
Summary:
Named after former British military officer TE Lawrence, the cat was adopted from an animal shelter last month and has gained over 2,700 Twitter followers since.
Summary:
A couple in US' Pennsylvania has sued the local police for allegedly detaining them after mistaking the hibiscus plants in their backyard for marijuana.
Summary:
Rajput organisation Karni Sena has threatened that they will thrash lyricist Javed Akhtar on the streets if he comes to Rajasthan over his remark on Rajputs.
Summary:
Bhuvneshwar Kumar, who was named Man of the Match for his 8-wicket haul in the first India-SL Test, will miss the remainder of the series as he is getting married on November 23.
Summary:
The External Affairs Ministry has asked the MPs, participating in the Asian Parliamentary Assembly, to avoid terms using terms like "catastrophe" and "refugees" to describe Rohingya Muslims situation in Myanmar.
Summary:
A 23-year-old newlywed bride jumped off the first floor of her house after it caught fire due to an LPG cylinder blast in Uttar Pradesh's Ghaziabad on Monday.
Summary:
Former Indian cricketer Sachin Tendulkar took to Twitter to share a throwback picture of himself with his children Sara and Arjun on the occasion of World Children's Day on Monday.
#HappyChildrensDay to my beautiful kids, Sara and Arjun.
Summary:
Bihar BJP President Nityanand Rai on Monday said that if any "finger or hand was raised" against PM Narendra Modi, it would be broken or chopped off.
Summary:
Two workers died after an alleged gas leak at the Steel Authority of India Limited's (SAIL) Durgapur Steel Plant in BengalâÂÂs West Burdwan district on Monday.
Summary:
MLA Nagendra Mahto demanded action against those who allowed the bomb to be defused at the police station.
Summary:
The Karnataka government is planning to launch a single complaint cell for all civic and transport agencies including Bruhat Bengaluru Mahanagara Palike and Bangalore Metropolitan Transport Corporation.
Summary:
She said she deleted them but the staffer allegedly snatched her phone and deleted them from the 'Recently Deleted' folder.
Summary:
The pilot-in-command tweeted that the flight attendants and doctors helped avoid a flight diversion.
Summary:
The aircraft clipped a tree and crashed as the pilot attempted to land in an open area after reporting "engine trouble".
Summary:
Albinen houses 240 people, but residents have been moving away in large numbers over the past few years.
Summary:
The plus-size model shared an image of her walking the runway in lingerie and a photoshopped pair of white wings, similar to those worn by models during Victoria's Secret fashion show.
Summary:
The designation comes amid tensions between the two nations over North Korea's program to develop nuclear weapons and intercontinental ballistic missiles.
Summary:
Shah Rukh Khan on Monday inaugurated the 48th edition of the International Film Festival of India (IFFI) in Goa. Information & Broadcasting Minister Smriti Irani, Goa Chief Minister Manohar Parrikar, Shahid Kapoor, Sridevi, and AR Rahman were among the others who attended the event.
Summary:
While talking about Sanjay Leela Bhansali's film 'Padmavati' which is pending review and certification from the Central Board of Film Certification (CBFC), Chairman Prasoon Joshi said that putting all the pressure on the Board is unfair.
Summary:
Summary:
Lingerie brand Victoria's Secret on Monday held its 22nd annual fashion show in China, with models like Bella Hadid, Alessandra Ambrosio, Romee Strijd, Lily Aldridge and Candice Swanepoel walking the ramp.
Summary:
Responding to reports that 210 government websites displayed Aadhaar data, the UIDAI on Monday asserted that no data was leaked from its server.
Summary:
The court said this while hearing a plea seeking removal of unauthorised constructions and encroachments in the capital's Karol Bagh area.
Summary:
English singer-songwriter Ed Sheeran, who performed in Mumbai on Sunday at his second concert ever in India, has said that Bollywood is bright and colourful and a film with actor Shah Rukh Khan would be quite cool.
Summary:
Actress Zareen Khan has said that despite the film's producers telling her that the 2017 thriller 'Aksar 2' would be a very clean film, they wanted her to wear minimal clothes in every frame.
Summary:
A biopic on sweet-maker Nobin Chandra Das, who is said to have invented the sweet Rosogolla, will release in December 2018 marking the 150th anniversary of the sweet's invention.
Summary:
The South Carolina women's basketball team, which won its first NCAA national championship in April, has reportedly declined President Donald Trump's invitation to visit the White House.
Summary:
The fund is meant for welfare of the children under the Juvenile Justice Act. Expressing displeasure, the court remarked, "Nobody has done anything.
Summary:
At least three people were killed after a fire broke out at a plastic manufacturing factory causing the four-storey building to collapse in Punjab's Ludhiana on Monday.
Summary:
The Supreme Court on Monday allowed Karti Chidambaram to travel to the UK from December 1 to 10, amid an ongoing corruption probe, for his daughter's admission at a university there.
Summary:
Objecting to President Ram Nath Kovind's recent visit to Arunachal Pradesh, China said India should not complicate their dispute over the northeastern state since the Sino-Indian relations were at a "crucial moment".
Summary:
The Centre on Monday told the Supreme Court that it was not possible to regulate the Blue Whale Challenge since it is operated through WhatsApp and does not have a url, website or an exclusive app.
Summary:
Sachin ended his career with 34,357 international runs and 100 international hundreds.
Summary:
The incident happened when Shivakumar was addressing the media at a college event in Karnataka's Belgaum.
Summary:
The court rejected his claims that there were discrepancies in his daughter's testimony, saying the discrepancies were minor in an otherwise reliable testimony.
Summary:
US Treasury Secretary Steven Mnuchin has said he takes it as a compliment that he and his wife were compared to villains from a James Bond movie after photos of them posing with freshly printed dollar bills surfaced online.
Summary:
A video of a flight attendant making an allegedly inebriated man who harassed her at Hyderabad's Rajiv Gandhi International Airport touch her feet has gone viral.
Summary:
The list, which retained all sitting MLAs, was for the constituencies of Saurashtra and South Gujarat which would go to polls in the first phase on December 9.
Summary:
North Korean women are deprived of education and job opportunities and are subjected to violence and sexual assault, the UN Committee on the Elimination of Discrimination against Women said on Monday.
Summary:
The European Commission will propose a 40% quota for women on company boards in an effort aimed at tackling gender inequality in the senior ranks of publicly listed companies.
Summary:
German Chancellor Angela Merkel's efforts to form a new government collapsed after talks on forming a coalition failed.
Summary:
Zimbabwe's President Robert Mugabe has ignored the deadline set by the ruling party for him to resign from his post.
Summary:
Iranian Foreign Minister Mohammad Javad Zarif has said that the country will continue to develop its missile program as it does not need "permission from anyone" to strengthen its defence capabilities.
Summary:
The Supreme Court has rejected a lawyer's plea seeking to delete "objectionable scenes" in Sanjay Leela Bhansali's 'Padmavati' while stating that they can't interfere with the Censor Board's work.
Summary:
The first poster of the Tiger Shroff starrer 'Student Of The Year 2' has been unveiled.
Summary:
Former world number one doubles and number two singles champion Jana Novotná died aged 49 due to cancer on Sunday.
Summary:
The first India-Sri Lanka Test at the Eden Gardens was the first instance of Indian spinners failing to take a single wicket in a home Test.
Summary:
Bhuvneshwar Kumar's 4/8 is India's best 4-for figures in a Test's second innings.
Summary:
Bollywood celebrities like Twinkle Khanna, Sonam Kapoor and Varun Dhawan slammed a BJP leader for announcing â¹10 crore as reward for beheading Deepika Padukone and Sanjay Leela Bhansali over the 'Padmavati' row.
Summary:
Apple has officially been served a warrant to unlock the iPhone SE of the man responsible for the shooting in a church in Texas, US earlier this month.
Summary:
The scientists further said that massive shifts in energy beneath Earth's surface could cause around 20 earthquakes a year starting from 2018.
Summary:
The International Space Station's first component was launched into space on a Russian Proton rocket from Baikonur Cosmodrome, Kazakhstan, on November 20, 1998.
Summary:
US cult leader and convicted criminal Charles Manson who directed his followers to commit a string of murders, has died aged 83 in a hospital in California.
Summary:
The US military has banned all soldiers stationed in Japan's Okinawa from drinking alcohol after a Marine was involved in a car crash related to drunk driving.
Summary:
World's largest aircraft, Airlander 10, crashed on Saturday in the English county of Bedfordshire, injuring two people.
Summary:
Brazilian model Lais Ribeiro on Monday showcased the $2 million (â¹13 crore) 'Fantasy Bra' at this year's Victoria's Secret (VS) Fashion Show in Shanghai, China.
Summary:
Summary:
Singer Selena Gomez has been accused of lip-syncing by her fans, during her first performance post her kidney transplant, at the American Music Awards (AMAs) 2017.
Meanwhile, another user wrote, "May I remind y'all Selena is still recovering from...transplant and...just gave the performance of a lifetime."
Summary:
Summary:
A 31-year-old woman from Andhra Pradesh's West Godavari was detained by Kerala police and sent back from the temple complex after she was trying to enter the Sabarimala temple.
Summary:
Kohli's nine centuries and five duck dismissals in international cricket this year are the most international centuries and ducks for him in any year.
Summary:
Raja was batting on 98 before playing the match's last ball.
Summary:
The Patiala House Court has said that the Delhi Metro is unsafe at several places but deserves to be the safest.
Summary:
California-based investment fund HigherOrderVC and journalists from across the world have teamed up to create a new cryptocurrency to provide financing for investigative journalism.
Summary:
Buses in London will be powered by biofuel created using waste coffee grounds in a move aimed at reducing carbon emissions, according to reports.
Summary:
Sweden will host its first 'man-free' music festival, the Statement Festival, from August 31 to September 1, next year.
Summary:
Ardern's friend revealed the conversation in a radio interview saying that the New Zealand PM told her Trump was "not as orange in real life".
Summary:
Britain's Queen Elizabeth and Prince Philip celebrated their 70th wedding anniversary on Monday with a private party at Windsor Castle.
Summary:
A strain of the H5N6 flu was discovered at a poultry farm with over 12,000 ducks near the capital Seoul.
Summary:
Summary:
Infosys Co-founder Nandan Nilekani and his wife Rohini have committed to donate half of their estimated $1.7 billion wealth to charity by joining 'The Giving Pledge' initiative.
Summary:
The Congress Working Committee (CWC) has not passed a resolution on elevating party Vice President Rahul Gandhi to the post of President, as was misreported earlier.
Summary:
Indian captain Virat Kohli became the second Indian after Sachin Tendulkar to score 50 international centuries, registering his 18th Test ton against Sri Lanka in the first Test on Monday.
Summary:
The Supreme Court on Monday stayed the National Green TribunalâÂÂs (NGT) order directing opening of a new path to Vaishno Devi shrine for pedestrians and battery-operated cars from November 24.
Summary:
The rate of expansion of the universe is called the Hubble constant.
Summary:
The price of the world's largest cryptocurrency Bitcoin topped $8,000 for the first time, rallying over 700% so far this year.
Summary:
Madhya Pradesh Chief Minister Shivraj Singh Chouhan on Monday announced that Sanjay Leela Bhansali's upcoming directorial 'Padmavati' will be banned in the state if it distorts history and if there are objectionable scenes in the film.
Summary:
The Uttar Pradesh Shia Central Waqf Board has proposed that the Ram temple be built in Ayodhya while the mosque can come up in Lucknow.
Summary:
This comes after the court ordered the demolition of an under-construction parking lot near the site over environmental concerns.
Summary:
Stating that Congress leader Shashi Tharoor's apology for his tweet on Miss World Manushi Chhillar wasn't genuine, National Commission for Women (NCW) chief Rekha Sharma asked him to "apologise properly to the nation".
Summary:
Several Border Security Force (BSF) personnel were deployed in uniform at BSF IG PS SandhuâÂÂs daughter's wedding at a Chandigarh resort on Sunday, reports said.
Summary:
Congress leader and former Union Minister Priya Ranjan Dasmunsi on Monday died aged 72, after being in coma for 9 years.
Summary:
Local Jammu and Kashmir youth who have joined militant groups can avail the CRPF's 24x7 'Madadgaar' helpline service to surrender and return to the mainstream, CRPF Inspector General (IG) Zulfiquar Hasan has said.
Summary:
Hyderabad's Ibrahim Khaleel broke the record for most dismissals by a wicketkeeper in a first-class match when he effected 14 against Assam in Guwahati in the Ranji Trophy Plate League on November 20, 2011.
Summary:
Google India posted a revenue of â¹7,208.9 crore ($1.1 billion) for the year ended March 2017, a 22% jump from the previous year's â¹5,904 crore.
Summary:
Chinese smartphone maker Xiaomi's CEO Lei Jun has said that the company plans to invest $1 billion in 100 Indian startups over the next five years.
Summary:
Summary:
Speaking at the 100th birth anniversary of Indira Gandhi, Ramesh said, "the same electorate which gave Mrs Gandhi a huge mandate in 1971, threw her out in 1977.
Summary:
Addressing a gathering in Uttar Pradesh's Ghaziabad, Samajwadi Party founder Mulayam Singh Yadav on Sunday said that Lord Krishna has more followers than Lord Ram.
Summary:
Nearly 300 Gurugram residents have signed up for a week-long car-free challenge starting Monday.
People will narrate the hurdles they face while commuting in the city without their cars for a week on the Facebook page âÂÂThe Car Free ChallengeâÂÂ.
Summary:
A 29-year-old Argentine national was killed on Saturday after a stray bull hit him in Jaipur's walled city area, the police said.
Summary:
The BJP on Monday released its third list of 28 candidates for the Gujarat Assembly elections to be held in two phases on December 9 and 14.
Summary:
Addressing the meeting of the Congress Working Committee, party President Sonia Gandhi on Monday accused the Narendra Modi government of "sabotaging the Winter session of Parliament on flimsy grounds".
Summary:
Former Indian opener and commentator Sanjay Manjrekar said that batsmen should be allowed to take help from the dressing room when in doubt over a Decision Review System (DRS) review.
Summary:
SL batsman Niroshan Dickwella hit a six with a premeditated shot before pointing out to the umpire that there were three fielders behind square on the leg side, prompting him to call for a no ball.
Summary:
French authorities will prevent Muslims from praying in the streets in a northern Paris suburb following objections by locals, Interior Minister Gerard Collomb said.
Summary:
The Nuremberg trials, a series of trials of Nazis responsible for crimes committed during the Holocaust, began on November 20, 1945.
Summary:
Perera had appeared to look towards the dressing room before turning around for review.
Summary:
The Indian Air Force's (IAF) C-130J Super Hercules plane carried out a 13-hour-31-minute non-stop flight, making a world record for the longest flight by the Hercules plane, the IAF said.
Summary:
The Indian Army's motorcycle display team, Tornadoes, on Sunday created a world record as 58 men mounted a single 500 cc Royal Enfield and rode it for 1,200 metres.
Summary:
The Indian Defence Ministry has cancelled a $500-million deal aimed at acquiring Spike Anti-Tank Guided Missiles (ATGM) from Israel, in a bid to promote indigenously developed missiles.
Summary:
Stating that it was a light-hearted tweet, Congress leader Shashi Tharoor on Sunday apologised for using Miss World Manushi Chhillar's surname as a pun in a tweet against demonetisation.
Summary:
The Indian Oil Corporation, in collaboration with cab aggregator Ola, on Sunday launched an electric vehicle charging station at one of its petrol pumps in Nagpur's RBI Square.
Summary:
Responding to reports of ISIS claiming to have carried out its first attack in Srinagar's Zakura on Friday, DGP Shesh Paul Vaid ruled out the presence of the international terror group in the state.
Summary:
Shinde said he had to relieve himself in the open because he was ill and couldn't find a toilet on the highway.
Summary:
Quoting Mahatma Gandhi, Naidu said that no country is truly independent unless it speaks its own language.
Summary:
"Ensuring safety of Indian diplomats/officials abroad is a matter of highest priority for us," the Indian External Affairs Ministry said.
Summary:
Cheteshwar Pujara has become the third Indian and ninth overall batsman in history to bat on all five days of a Test, achieving the feat in the first Test against Sri Lanka at the Eden Gardens.
Summary:
Notably, Alibaba has invested more than $9.3 billion in brick-and-mortar stores since 2015.
Summary:
Actor Sidharth Malhotra has said that the boy from Delhi's Defence Colony is still alive in him.
Summary:
The accused halved the fee for scheduled caste and scheduled tribe categories to make the website appear legitimate, police said.
Summary:
The BCCI has changed the start timings of the first and second ODI between India and Sri Lanka scheduled for next month owing to the dew factor and forecasted cold weather conditions.
Summary:
The Jamaican eight-time Olympic champion Usain Bolt is working with the Australian cricket team to help improve their batsmen's running between the wickets.
Summary:
The party was organised on Friday after Station House Officer Yogendra Parmar reportedly managed to get his transfer order cancelled.
Summary:
Goa CM Manohar Parrikar on Sunday termed the Supreme Court's observation on people having the choice of not standing up when the National Anthem is played at cinema halls as "absolutely wrong".
Summary:
The feedback system will enable railway authorities to monitor sanitation levels at public toilets across stations.
Summary:
Children from different age groups got hands-on experience with physics and chemistry experiments at the house, including making a battery cell of their own.
Summary:
Two years after handwritten passports were declared invalid by the International Civil Aviation Organization (ICAO), over a lakh of such Indian passports are still in circulation, according to officials.
Summary:
A video showing Telangana Rashtra Samithi (TRS) leader Srinivas Reddy assaulting and abusing his first wife Sangeetha has surfaced online.
Summary:
Former All England Open winner and coach Pullela Gopichand's 14-year-old daughter Gayatri Gopichand won the Under-19 singles event at the 26th Smt Krishna Khaitan All-India Junior Ranking Badminton Tournament held in Chandigarh on Sunday.
Summary:
The second manned mission to the Moon, Apollo 12, which landed on November 19, 1969, was the only mission in which astronauts were able to visit another spacecraft.
Summary:
Global credit rating agency Moody's Investors Service on Friday upgraded issuer ratings of nine Indian state-owned firms.
Summary:
Dimitrov, who won all five matches and claimed $2.5 million (â¹16.5 crore) cash prize, became the first player to win the season-ending tournament on debut since 1998.
Summary:
The new packaging will be extended to both the PET and CAN packs of all Coca-Cola variants.
Summary:
Notably, the Railways and Union Budget were merged this year.
Summary:
Reports said Solanki's declaration is significant since the Congress has delayed releasing its first list of candidates, with only two days left for filing nominations for the first phase.
Summary:
The data was removed from the websites after the UIDAI took notice of the breach.
Summary:
Calling it a 'fake list', Gujarat Congress alleged the BJP had misused Congress President's signature and letterhead.
Summary:
On the occasion of World Toilet Day, the world's biggest toilet pot model was unveiled on Sunday in Haryana's Marora village, which was popularly named 'Trump Village'.
Summary:
"We are talking to Foxconn for setting up a manufacturing facility at Noida, near Delhi," the company's Business Head Rajeev Tiwari said.
Summary:
Technology giant Apple has delayed the launch of Siri-powered 'HomePod' smart speaker from this December to early 2018.
Summary:
Canadian technology company BlackBerry's Chief Operating Officer Marty Beard has resigned from his post to help family members deal with health issues, according to reports.
Summary:
Filmmaker Ram Gopal Varma (RGV), while sharing a picture which shows 'Baahubali' franchise director SS Rajamouli with actors Jr NTR and Ram Charan, wrote, "Being an ardent worshipper of women I strongly condemn such (blatant) promotion of gay culture." RGV was slammed on social media for his remark.
Summary:
Pahlaj Nihalani, the presenter of the erotic thriller 'Julie 2', has said the film's lead character is based on the real-life story of an actress, who began her career with one of the Khans.
Summary:
Bhuvneshwar Singh, the youth wing leader of the group Akhil Bhartiya Kshatriya Mahasabha (ABKM), has announced that they will offer a reward of â¹1 crore to anyone who burns Deepika Padukone alive, over the ongoing 'Padmavati' row.
Summary:
A student in a central Mumbai school enacting a murder during a play accidentally slashed his friend's throat with a bread knife.
Summary:
With a total of 24,437 snakebite cases, Maharashtra has recorded the most number of snakebites in India between April 1 and October 31 this year, the Union Health Ministry revealed.
Summary:
The BJP on Saturday released its second list of 36 candidates for the upcoming Gujarat Assembly elections.
Summary:
Bengaluru has signed an MoU with French start-up accelerator NUMA to become part of a network of 91 C40 cities in collating data on climate change.
Summary:
A booklet being sold by the Vishva Hindu Parishad and Bajrang Dal members at a fair in Rajasthan described Muslims as "terrorists", "anti-nationals", and "pro-Pakistanis".
Summary:
Ex-Indian pacer Ashish Nehra has revealed he found the Yo-Yo test easy because he was fond of running as he was a fast bowler.
Nehra added he achieved 18.5 score in the test in January which was way above the qualifying mark.
Summary:
The spiritual leader has been living in India in a self-imposed exile since 1959.
Summary:
"(Naidu) had his digital equipment...and he had the vision to make government better by using advanced tools," Gates added.
Summary:
This comes after a sex video allegedly featuring Patel went viral ahead of the Gujarat assembly elections.
Summary:
Maharashtra CM Devendra Fadnavis has apologised to the barber community after he made an analogy about their profession to target the previous Congress-Nationalist Congress Party government over incomplete projects.
Summary:
Dantewada District Collector Saurabh Kumar hosts a weekly career counselling session for class XI and XII students in the district, known for its frequent Maoist attacks.
Summary:
The businessman was arrested after the constable filed a complaint.
Summary:
The Gujarat Election Commission has ordered a probe after a controversial video allegedly aimed at spreading communal hatred was circulated in poll-bound Gujarat on Saturday.
Summary:
The German automaker also pledged to offer an electric version of each of its roughly 300 group models by 2030.
Summary:
A French police officer went on a shooting spree, killing three people and injuring three others after he broke-up with his girlfriend.
Summary:
The President and the Vice President continue to get less salaries as compared to the top bureaucrats and service chiefs due to an anomaly with the implementation of the 7th Pay Commission's recommendations, according to reports.
Summary:
The National Commission for Women (NCW) has said that it would summon Congress leader Shashi Tharoor for his "derogatory" tweet on Miss World 2017 Manushi Chhillar.
NCW tweeted, "He degraded the achievement of daughter of Haryana...who got glory to the country.
Summary:
The first poster of Rakeysh Omprakash Mehra's upcoming directorial 'Merey Pyarey Prime Minister' has been released on the occasion of World Toilet Day on Sunday.
Summary:
Singer Ed Sheeran was spotted in a kurta and later in a T-shirt with 'India' written on it, while performing at his Divide Tour concert in Mumbai.
Summary:
During his maiden visit to the northeast after assuming office, President Ram Nath Kovind on Sunday said if the northeast was the crown of India, then Arunachal Pradesh would be the diamond on the crown.
Summary:
Law Minister Ravi Shankar Prasad on Sunday said the government would be appointing the highest number of High Court judges in 2017, breaking a 30-year-old record of 126 appointments reached in 2016.
Summary:
He suggested that Sasikala did everything Jayalalithaa told her to but was later pushed to an "unsafe situation".
Summary:
A 19-year-old girl jumped off a moving ambulance on Saturday after its driver tried to rape her in Odisha's Angul district.
Summary:
Users can now book rides on the website m.uber.com without needing the Uber app.
Summary:
Adding that the US military does not blindly follow orders, Hyten said, "If you execute an unlawful order, you will go to jail.
Summary:
Clarifying that the government has not asked RBI to pay any special dividend, Economic Affairs Secretary Subhash Garg said it is only seeking the â¹13,000 crore surplus lying with the RBI.
Summary:
He said in his 35 years of association with Naik, their basic parameter was to make in India but without compromising on quality.
Summary:
Uttar Pradesh Deputy CM Keshav Prasad Maurya has said that Sanjay Leela Bhansali's 'Padmavati' won't be allowed to release in the state until objectionable scenes are removed from the film.
Summary:
Reacting to the news of 'Padmavati' producers postponing the film's release date, a Twitter user wrote, "There were many Hindi films (before) #Padmavati (which) denied historical accuracy.
Summary:
Congress leader Shashi Tharoor was trolled for his anti-demonetisation tweet, which had a pun on Miss World Manushi Chhillar's name.
Chhillar is Manushi's Family name...
Summary:
Municipal Corporation of Gurugram officials said the number of complaints regarding waste burning has increased in the last few days and â¹1 lakh in fines were collected from violators over the last four days.
Summary:
The Delhi government will install new signboards on roads built by the Public Works Department (PWD) carrying the names and phone numbers of officials responsible for the area, reports said.
Summary:
Criticising the song 'Sabarmati ke sant' which is dedicated to Mahatma Gandhi, Haryana Health Minister Anil Vij said it inaccurately portrayed India's freedom struggle.
Summary:
Russia will hand over the model to Syria to help restore and preserve the ancient city.
Summary:
The incident happened after the man confronted his daughter saying she had been damaging the family's reputation.
Summary:
The protesters were seeking immediate government action against builders whose housing projects are yet to be delivered.
Summary:
The Delhi government has issued a 117-point checklist to all schools across the capital to ensure students' safety.
Summary:
The Aligarh Muslim University must abolish separate colleges for male and female undergraduate students and merge the departments for Sunni and Shia studies, a government-backed audit of the institution recommended.
Summary:
Israeli PM Benjamin Netanyahu on Sunday announced an international agreement to deport 40,000 African asylum seekers from the country.
Summary:
Spanish police shot a man near the country's border with France after he shouted 'Allahu Akbar', triggering a terror alert.
Summary:
As and when the need arises, rates on other items may be changed, he said.
Summary:
The UIDAI has allowed banks to hire private data entry operators and enrolment machines to speed up the opening of Aadhaar enrolment centres at bank premises.
Summary:
Indian security forces had killed one of the militants and captured another in the attack.
Summary:
The Supreme Court ruled that using casteist remarks against a Scheduled Caste or Scheduled Tribe person over the phone in a public place amounts to a criminal offence warranting a jail term of up to five years.
Summary:
Karni Sena chief Lokendra Singh Kalvi has claimed that underworld don Dawood Ibrahim financed the Bollywood film 'Padmavati'.
Summary:
South African boxer Zolani Tete pulled off the fastest knockout in title fight history, flattening Siboniso Gonya in 11 seconds to retain his WBO bantamweight title.
Summary:
BJP MP and ex-BCCI President Anurag Thakur, in a private member's bill, has proposed a jail term of at least 10 years for match fixing and a fine of five times the amount involved in the case.
Summary:
The reports also suggested that Intel could supply a 5G modem for an iPhone debuting in 2019 or 2020.
Summary:
Online grocery startup Grofers has denied reports of merger talks with rival BigBasket, saying that a meeting between the two had been "blown out of proportion".
Summary:
Notably, Toyota partnered with Mazda Motor to produce battery-powered cars in September.
Summary:
In the video, a race car at the front is seen hitting a barrier and spinning with other cars crashing into each other.
Summary:
The Argentinian Navy was working with a US-based company that specialises in satellite communication to locate the submarine.
Summary:
Turkey's capital Ankara has banned all LGBT-related events due to concerns over public sensitivity, the governor's office said.
Summary:
The US Ambassador to the UN, Nikki Haley, on Friday said that the country does not consider itself constrained by the UN Security Council and is ready to "fight for justice" in Syria.
Summary:
Tata Sons, the holding company of Tata group firms, has elevated group CFO Saurabh Agrawal and MD of Titan Bhaskar Bhat to the company's board.
Summary:
Thaler said this in an emailed response to a student, the screenshot of which was retweeted by Thaler.
Summary:
Ahmedabad-based drugmaker Eris Lifesciences signed an agreement with Bengaluru-based Strides Shasun to acquire its India branded generics business for â¹500 crore.
Summary:
Summary:
Sharing a video of Shah Rukh Khan and Abhishek Bachchan riding a kids' Ferris wheel on Aaradhya Bachchan's 6th birthday party, actress Shilpa Shetty wrote, "Giants on the wheel!
Summary:
In a series of tweets, Congress leader P Chidambaram on Sunday said that Gujarat has regressed in critical areas such as human resource development in the past 22 years despite industrial growth.
Summary:
Speaking on former PM Indira Gandhi's 100th birth anniversary, Congress chief Sonia Gandhi said her mother-in-law opposed those seeking to divide the Indian people over religion and caste.
Summary:
Eighty-seven students of a state-run school in West Bengal's Bankura were taken to a hospital for a check-up after a dead lizard was found in a student's mid-day meal plate on Friday, officials said.
Summary:
Documents, obtained under US Freedom of Information Act, with several of them labelled as 'Do not publish', reveal the details of US-Mexico border wall.
Summary:
China has offered to help Myanmar and Bangladesh resolve the Rohingya crisis, Chinese Foreign Minister Wang Yi said.
Summary:
Around 60 anonymous callers on Friday claimed that 50 explosives had been planted along the route of Russian President Vladimir Putin's motorcade.
Summary:
Anti-LGBT US legislator for the state of Ohio, Wes Goodman, has resigned from his post after he was caught having sex with a man in his office.
Summary:
The US Defence Department has decided to seize artwork created by Guantanamo Bay detainees and will no longer release the artwork to the public.
Summary:
"Crooked Hillary Clinton is the worst (and biggest) loser of all time...Hillary, get on with your life and give it another try in three years!" Trump tweeted.
Summary:
Turkish President Recep Tayyip ErdoÃÂan has accused the US of providing financial aid to ISIS in Syria and failing to fulfil the promise to withdraw Syrian Kurdish forces from areas liberated from the militant group.
Summary:
Viacom18 Motion Pictures, the producers of the film 'Padmavati', have said that they have voluntarily deferred the film's release date, which was originally set for December 1.
Summary:
Zimbabwe's ruling party ZANU-PF on Sunday sacked 93-year-old President Robert Mugabe, ending his 37-year rule over the country.
Summary:
A group of Italian journalists has registered a company in the name of a mafia boss with the UK Prime Minister's official address listed as headquarters to expose flaws in Britain's corporate registration system.
Summary:
Miss World's official Twitter account mistakenly posted a picture showing Miss England Stephanie Hill ranking second and Miss Mexico Andrea Meza securing the third spot at the beauty pageant, when it was the other way round.
Summary:
Directed by Brad Bird, who also directed the first film, 'Incredibles 2' is scheduled to release on June 15, 2018.
Summary:
Haryana BJP Chief Media Coordinator Suraj Pal Amu has announced a reward of â¹10 crore for beheading Sanjay Leela Bhansali and Deepika Padukone over 'Padmavati' row.
Summary:
Born on November 19, 1917, Indira Gandhi is the only female to serve as India's Prime Minister.
Summary:
On the occasion of World Toilet Day on Sunday, Prime Minister Narendra Modi reaffirmed the union government's commitment towards improving sanitation facilities across the country.
Summary:
Indian pacers took all Sri Lankan wickets in the first innings in Kolkata, marking the first instance of Indian pacers dismissing all batsmen in an innings of a home Test after 34 years.
Summary:
A Swiss parliamentary panel has approved the automatic exchange of information between Switzerland and India.
Summary:
Pele also made a speech appealing for better treatment of Brazil's poor children before the match restarted.
Summary:
Joining Sheeran were Shah Rukh Khan, Shahid Kapoor and his wife Mira Rajput, Karan Johar, Sara Ali Khan and Janhvi Kapoor among others.
Summary:
Malcolm Young, the co-founder and rhythm guitarist of the rock band AC/DC has passed away at the age of 64 after suffering from dementia for several years.
Summary:
"I think this environment (of protests against films and art) empowers you.
He further said that more political films should be made in this environment.
Summary:
PM Narendra Modi on Sunday paid tribute to former PM Indira Gandhi on her 100th birth anniversary.
Congress Vice President Rahul Gandhi also tweeted, "I remember you Dadi with so much love and happiness.
Summary:
Afghanistan then dismissed Pakistan for 63 runs, their second-lowest team total in Youth ODI cricket.
Summary:
The trolling began after the international rating agency recently gave India an improved credit rating.
Summary:
Former Brazilian forward Pelé, whose full name is Edson Arantes do Nascimento, was named after American inventor Thomas Alva Edison as electricity had just been introduced to his hometown when he was born.
Summary:
Thackeray's proposal comes amid BMC's ongoing efforts to make its markets plastic free.
Summary:
Shikhar Dhawan and KL Rahul slammed fifties as India ended the fourth day of the Kolkata Test at 171/1, leading Sri Lanka by 49 runs.
Summary:
Sports Minister Rajyavardhan Singh Rathore said that the onus of conducting dope tests on Indian cricketers is on WADA, as ICC is registered with the agency and must comply with its rules.
Summary:
Acknowledging the corrupt reputation acquired by the Congress-led UPA government during its second term, Congress leader P Chidambaram on Sunday said the current NDA government is likely to acquire the same reputation.
Summary:
The picture, taken from roughly 10,108 km above Jupiter's clouds, is of a swirling storm that is rotating counter-clockwise over the planet's northern hemisphere.
Summary:
China's military on Sunday launched a website inviting citizens to report leaks and fake news, as well as illegal online activities by military personnel in an effort to create a "clear internet space" for the military.
Summary:
A US Navy destroyer on Saturday collided with a Japanese commercial tugboat off the east coast of Japan, making it the fifth such incident involving the Pacific Fleet this year.
Summary:
Police in Saudi Arabia arrested a man for speaking to a woman after she approached him outside a fast food restaurant, according to reports.
Summary:
The first Indian woman to be crowned Miss World was model and doctor Reita Faria, in 1966.
Summary:
It was a double for Ethiopia as the 2015 winner of the half marathon, Berhanu Legese claimed the men's title.
Summary:
The BJP flag was hoisted above the Tricolour for half an hour before being taken down by the district administration, reports said.
Summary:
British rider Daniel Hegarty died after a crash during the Macau Motorcycle Grand Prix on Saturday.
Summary:
Perera allegedly looked towards the dressing room before immediately turning around to take the review, which overturned on-field umpire's decision.
Summary:
Bihar's Darbhanga Medical College and Hospital (DMCH) has imposed a fine of â¹25,000 each on 54 female students after a first-year student complained of being ragged to the Medical Council of India.
Summary:
As many as 191 benign tumours were removed from a 34-year-old Omani woman's uterus during a four-hour operation at Kerala's Starcare Hospital.
Summary:
It further revealed that 355 million women and girls in India defecate in open.
Summary:
"If my opponents aren't ready to fight, what could I have possibly done in such circumstances," he said.
Summary:
A woman on Friday alleged that rape-convict Ram Rahim Singh's former driver Khatta Singh was forcing her to give a false testimony against the Dera chief.
Summary:
Former Prime Minister Manmohan Singh has been awarded the Indira Gandhi Prize for Peace, Disarmament and Development this year, for his achievements during the "momentous" ten years of his tenure.
Summary:
The Border Security Force and the Punjab counter-intelligence wing have seized 22 kilograms of heroin worth â¹110 crore at the India-Pakistan border near Punjab's Ferozepur, in the state's biggest heroin seizure this year.
Summary:
South Africa's Shane Dadswell hit the highest known 50-over individual score of 490 runs off 151 balls on his 20th birthday on Saturday.
Summary:
Talking about the experience at Instagram before it was acquired by Facebook in 2012, its Co-founder Mike Krieger has said they had "no management experience." Krieger added that the amount of output Instagram had and the size of the community it supported was "totally disproportionate" to the team size.
Summary:
Canada has officially opened its first permanent highway to the Arctic Ocean.
Summary:
Summary:
Delhi Police Special Cell on Saturday arrested two alleged arms suppliers and seized over 1,300 live cartridges from them, the biggest ammunition seizure in 2017.
Summary:
The 36 fighters to be acquired from France will have 13 India Specific Enhancements, reports said.
Summary:
Notably, Mumbai saw a higher number of emergency landings than Delhi in 2014.
Summary:
Addressing a rally in Uttar Pradesh's Ghaziabad, CM Yogi Adityanath said that criminals will either land up in jail or will be sent to YamrajâÂÂs house after police encounter.
Summary:
Maharashtra Navnirman Sena (MNS) chief Raj Thackeray on Saturday slammed banks for not using Marathi in day-to-day transactions despite RBI's guidelines on using the local language.
Summary:
Seven-time Grand Slam champion Venus Williams' mansion in Florida was robbed of valuables and goods worth â¹2.6 crore while she was playing in the US Open in September.
Summary:
A woman toll collector was allegedly molested by some unidentified men at Gurugram's Kherki Daula toll plaza on Saturday after she asked them to pay tolls.
Summary:
The BCCI is exploring ways to avoid India-Pakistan matchup in the nine-team Test league which was recently approved.
The problem in not having a series between India and Pakistan is something which affects international cricket", BCCI secretary said.
Summary:
Earlier this month, Pakistan had offered to arrange the meeting between Jadhav and his wife on "humanitarian grounds".
Summary:
World number eight Belgium's David Goffin defeated six-time champion and world number two Roger Federer to reach the final of the ATP World Tour Finals.
Summary:
US-based researchers have designed a thermal regulation textile that has a 55% greater cooling effect than cotton.
Summary:
In a letter to Union Information and Broadcasting Minister Smriti Irani, Rajasthan CM Vasundhara Raje has requested her not to release 'Padmavati' until some necessary changes are made.
Summary:
However, the original picture showed the Indian girl giving out the message of the "secular values of our constitution".
Summary:
Reacting to India's representative Manushi Chhillar being crowned Miss World 2017 as India's 6th winner at the beauty pageant, actress Priyanka Chopra, tweeted, "We have a successor...Cherish and learn, and most importantly enjoy it." Manushi responded, "It means the #World to me!
Summary:
An army jawan allegedly drowned his three-day-old daughter in a bucket of water and buried her body in a village in Rajasthan, police said on Saturday.
Summary:
The nephew of 26/11 Mumbai attacks mastermind, Zakiur Rehman Lakhvi, was among the six militants killed in an encounter in Jammu and Kashmir's Bandipora on Saturday.
Summary:
This comes after Sitharaman called Congress "shameful" for "bickering" over the jets' price.
Summary:
Gujarat recorded the most number of deaths due to malnutrition, child and maternal, in 2016, as per a study by the Indian Council of Medical Research.
Summary:
The government on Saturday declared the 10 Indians who went missing after a merchant ship sank off the coast of Japan last month as "could not be found".
Summary:
Summary:
More than 20,000 allegations of sexual assault were reported by US troops over the past four years, US Department of Defence has said in a report.
Summary:
The National Investigation Agency (NIA) has registered a case in connection with the killing of RSS leader Ravinder Gosain in Ludhiana.
Summary:
The Delhi High Court on Friday directed the Delhi Police Commissioner to deploy more force in Chandni Chowk to ensure that the area is kept free from trespassing by illegal hawkers.
Summary:
With this, both the Madrid clubs are now 10 points behind league leaders Barcelona.
Summary:
The accused, who had joined the madrasa recently, has been arrested after the victim's parents lodged a complaint with the police.
Summary:
Turkey's three-time Olympic gold medal-winning weightlifter Naim Suleymanoglu died aged 50 due to liver failure on Saturday.
Summary:
Granting legal custody of a child to her father, a Bihar court imposed a cost of â¹1 crore on his mother-in-law seeking custody of the child for "indulging in frivolous and vexatious litigation".
Summary:
Mocking the government's elation over the sovereign rating upgrade by Moody's Investors Service, Congress leader P Chidambaram said that just a few months back, the Centre had criticised Moody's rating methodology.
Summary:
India, China and the US have agreed to enhance cooperation in efforts aimed at improving cyberspace security.
Summary:
Police said the seized counterfeit notes were "very similar in appearance and texture" to genuine Indian currency.
Summary:
Rajya Sabha MP Sharad Yadav on Saturday said that the JD(U) faction led by him will fight the Gujarat Assembly elections on an 'autorickshaw' symbol, and in alliance with the Congress.
Summary:
After Congress MP Shashi Tharoor said some "so-called valorous Maharajas" were opposing the 'Padmavati' release but surrendered their honour to the British, Union Minister Smriti Irani asked if all Maharajas knelt before the British.
Summary:
Further, over 33,000 trees will be axed in Uttarakhand's Garhwal region to execute the project, as per reports.
Summary:
Chelsea's Belgian midfielder Eden Hazard scored in either side of half-time to help the defending champions beat West Brom 4-0 in the Premier League on Saturday.
Summary:
Manchester City beat Leicester 2-0 on Saturday to register their 10th successive Premier League victory and maintain their eight-point lead at the top.
Summary:
On being asked about his views on Instagram cloning Snapchat, Instagram's Co-founder Mike Krieger said that Snapchat is an interesting competition.
Summary:
The UN General Assembly has unanimously passed a Pakistan-sponsored resolution reaffirming that the universal realisation of right of people to self-determination was a fundamental condition to guarantee human rights.
Summary:
Traders in Pakistan-occupied Kashmir's Gilgit-Baltistan region protested against the new taxes levied by the Pakistan government.
Summary:
Summary:
Summary:
Pollard is only behind compatriot Chris Gayle, who has smashed 772 sixes in 303 T20 innings.
Summary:
After Karnataka government organised statewide festivities to celebrate Tipu Sultan's birth anniversary, Union Minister Anant Kumar Hegde said that CM Siddaramaiah may start celebrating Ajmal Kasab Jayanti too.
Summary:
Instagram Co-founder Mike Krieger, who was born in Brazil, has said he "almost" didn't start Instagram with Kevin Systrom because he wasn't able to get an American visa to be his Co-founder.
He said that Systrom had already raised funding before he signed in.
Summary:
Instagram's Co-founder Mike Krieger has said the biggest issue the app faces is that it uses 'too much data" and "takes too much space".
Summary:
As many as 114 nations on Friday agreed to take urgent action to end Tuberculosis (TB) by 2030, the World Health Organisation (WHO) said.
Summary:
A Yemeni national, Amjad Jalal Ahmed Al-Dahan, was fined over â¹6,000 for dressing as a suicide bomber for a Halloween party in Malaysia.
Summary:
Reliance Communications' (RCom) enterprise arm Global Cloud Xchange has sent a 'Cease & Desist' notice to its rivals to stop campaigns implying that the company is closing down voice services for business clients.
Summary:
Infosys Co-founder Narayana Murthy has said, "The hierarchy of ideas is more important, not of men and women." He said that one must be open to new ideas and be willing to learn new ideas and unlearn outdated ideas.
Summary:
Taapsee Pannu, while responding to a troll on Twitter who slammed her for her outfit, tweeted, "Get well soon." The user commented that it was because of pictures like the one of her in a strapless outfit that men got attracted to women and harassed them.
Summary:
Matt Reeves, the new director of the stand-alone Batman movie, is said to have arranged a meeting with a potential replacement.
Summary:
A behind-the-scenes video from the Sidharth Malhotra and Manoj Bajpayee starrer 'Aiyaary' has been released.
Summary:
Peruvian fans' celebrations after the nation qualified for the 2018 FIFA World Cup caused several earthquake-detection apps to send earthquake warnings in the country's capital, Lima.
Summary:
Reacting to the Income Tax (I-T) raids at late Tamil Nadu Chief Minister J Jayalalithaa's Poes Garden residence, sidelined AIADMK leader TTV Dhinakaran on Saturday said the action has been taken in order to destroy the family.
Summary:
The Centre is planning to implement "1 billion-1 billion-1 billion" connectivity vision, which aims to link one billion Aadhaar numbers to one billion bank accounts and one billion mobiles.
Summary:
This comes after the Environment Pollution Control Authority remarked that the government had done "too little" to augment Delhi's public transport.
Summary:
A former model in Mumbai has accused her Muslim husband of 12 years of pressurising her to convert to Islam after marriage.
Summary:
The governing body of Delhi University's Dyal Singh Evening College on Saturday passed a resolution to rename it as Vande Mataram College, and decided to make it a regular shift college.
Summary:
Pakistani batsman Ahmad Shahzad will be consulting British psychologist Dr Taimoor to find help in regaining his form.
Summary:
Former Prime Minister Manmohan Singh has said that it will take at least a year for the economy to recover from the "shock" of demonetisation and implementation of GST.
Summary:
Called 'Marketplace', it lets users post advertisements for the goods they want to sell and browse through the advertisements posted by others.
Summary:
The agency also urged parents whose children have the smartwatches to destroy them.
Summary:
Reports said that Xoan was found unconscious with an iPhone 6 by her side, with the charging cable inserted in the device.
Summary:
The startup had raised $385 million in the Series F round in September, where existing investors including Accel Partners also participated.
Summary:
US President Donald Trump on Friday reversed the government's decision to allow hunters to import trophies of elephants.
Summary:
The Navy believes the submarine had communication difficulties that may have been caused by an electrical outage.
Summary:
Indian representative Manushi Chhillar was crowned Miss World 2017, making India the winner after 17 years at the beauty pageant.
Summary:
Indian representative Manushi Chhillar became the sixth woman from India to be crowned Miss World, as she was declared this year's winner at the beauty pageant.
Summary:
Former Indian football team captain Bhaichung Bhutia has offered to provide football training to Majid Khan, a footballer from Jammu and Kashmir, who had joined terror outfit Lashkar-e-Taiba a week ago, only to return later.
Summary:
India were not awarded five runs despite Sri Lankan captain Dinesh Chandimal breaking the 'fake fielding' law during India's innings in the first Test on Saturday.
Summary:
The vaccine is said to "hijack" cells' protein-making mechanisms to create a drug within the body.
Summary:
Several people gathered for the first-ever Flat Earth International Conference hosted by conspiracy theorists, who believe the planet is shaped like a flat disc instead of a sphere.
Summary:
Congress leader Kapil Sibal on Saturday tweeted saying that Moody's upgradation of India's sovereign rating was in contrast with the "mood of the people".
Summary:
Pakistani authorities on Friday issued a final warning to members of an Islamist party who have been blocking a main road into the capital by sitting in the area for nearly 10 days.
Summary:
International credit rating agency Moody's Investors Service on Friday said it has withdrawn its credit rating on Reliance Communications (RCom).
Summary:
The fine is related to a 2006 accident case in which the airbags of a Mercedes-Benz car failed to open on collision with a container truck.
Summary:
The RBI on Friday cancelled a bond sale via Open Market Operations (OMO) worth â¹10,000 crore.
Summary:
Diageo claimed Mallya breached an agreement under which he would step down as Chairman of United Spirits in exchange for $75 million.
Summary:
Deepika Padukone's father Prakash Padukone has said whatever she's today is because of Shah Rukh Khan and Farah Khan.
Deepika made her Bollywood debut with SRK starrer 'Om Shanti Om', which was directed by Farah Khan.
Summary:
Hollywood actress Ruby Rose, who starred with Deepika Padukone in 'xXx: Return of Xander Cage', has supported Deepika in the ongoing row over 'Padmavati'.
Summary:
The entry to Kumbhalgarh fort in Rajsamand district of Rajasthan has been blocked owing to a protest by hundreds of locals led by the Rajput community against the film 'Padmavati'.
Summary:
'Kabali' music composer Santhosh Narayanan has accused an official at the Sydney airport of racial profiling.
Summary:
Reacting to Ranveer Singh comparing his character Alauddin Khilji to late actor Heath Ledger's character Joker, a Twitter user commented, "No one in [the] world can match the Great Joker." "Ab tum personal ho rahe ho," commented another user.
Summary:
Following wrestler Sushil Kumar winning the gold at the National Wrestling Championship without fighting in the quarters, semis and final, Farhan Akhtar tweeted he hoped Sushil does not accept the medal.
Summary:
According to Central Pollution Control Board (CPCB), Delhi's air pollution level on Saturday improved to 'Poor' category after it rained in several areas in the Delhi-NCR region.
Summary:
Hundreds of people on Friday joined a march organised by the far-right Spanish Falangist movement in the capital city of Madrid.
Summary:
A 29-year-old woman constable has moved the Bombay High Court after her plea for sex change surgery was allegedly denied by the Maharashtra Police.
Summary:
The study found single dog owners had a 33% reduction in risk of death during a 12-year follow-up.
Summary:
Over 10,000 Zimbabweans marched in their capital city of Harare on Saturday, demanding the resignation of President Robert Mugabe who has been placed under house arrest by the military since Wednesday.
Summary:
Relatives of the missing persons claim they went missing after being arrested by security forces during the civil war in 1996.
Summary:
Got a cousin in Russia or something?" Sessions was accused of speaking with Russian ambassador Sergey Kislyak during the election campaign.
Summary:
Han Tae Song, North Korea's ambassador to the UN said the country's nuclear weapons act as a deterrent against US threats.
Summary:
Gigi was accused of squinting and mocking Asian facial traits in the video.
Summary:
This was because pink was said to denote the colour of hospitality.
Summary:
Manushi has worked towards spreading awareness about menstrual hygiene in India as part of her project for Beauty With a Purpose, a non-profit organisation associated with Miss World.
Summary:
The move will empower the state to crack down on properties acquired through illicit trafficking of drugs.
Summary:
Rahul also sang the song "Saanson Ki Jarurat Hai Jaise" from Aashiqui, during the briefing.
Summary:
The 5G network is estimated to generate about $27.3 billion revenue opportunity for Indian telecom operators by 2026, according to the Ericsson 5G Business Potential report.
Summary:
Melinda Gates, Co-founder of Bill and Melinda Gates Foundation has said, "I too have had personal experience of sexual harassment, and I worked in the tech industry." Gates referred to the '#MeToo' campaign, through which women shared sexual assault experiences.
Summary:
Russia on Friday vetoed a Japan-drafted UN resolution to renew an international inquiry into chemical weapon attacks in Syria, for the second time in two days.
Summary:
The suspect stopped the car and began dancing when the police went to handcuff him, following which he was attacked by a police dog.
Summary:
An 81-year-old churchgoer accidentally shot himself and his 80-year-old wife during a discussion on gun safety at a church in US' Tennessee on Thursday, said the police.
Summary:
RCom will have to submit details of subscribers successfully ported out and remaining subscribers who couldn't port.
Summary:
Ranveer Singh took to Twitter to share a collage of three pictures, featuring the characters Malcolm McDowell from 'A Clockwork Orange', Heath Ledger's character Joker from 'The Dark Knight' and Alauddin Khilji from 'Padmavati'.
Earlier, talking about his character, Ranveer had said, "I fear if I go in, I may not come back.
Summary:
Debman said the seats for the disabled had enough space for his guide dog.
Summary:
Over 19 lakh women exercised their voting rights against 18 lakh male voters in the state.
Summary:
Delhi BJP is planning to move the Supreme Court against the AAP government over non-utilisation of environment cess fund, Delhi BJP President Manoj Tiwari said on Friday.
Summary:
The National Green Tribunal on Friday banned parking in Delhi's Sarojini Nagar market, to encourage people to park their cars at the multi-level parking lot constructed in the area.
Summary:
A 32-inch tall bust of Godse was installed by the Hindu Mahasabha at their office in Gwalior on Wednesday.
Summary:
A Pondicherry University male student was allegedly abducted and forced to perform oral sex on a group of four unidentified men in the University campus while the incident was being shot on camera.
Summary:
Delhi government has kept privatisation of the education sector in check by setting up government schools which impart free-of-cost quality education to children from all economic backgrounds, Chief Minister Arvind Kejriwal said on Friday.
Summary:
Sri Lanka ended the third day of the first Test in Kolkata at 165/4 on Saturday, trailing India by seven runs in the first innings.
Summary:
The BCCI has reportedly asked the ICC to keep two reserved windows for India's home season, October-November and February-March, for the new international calendar.
Summary:
Facebook-owned messaging service WhatsApp is testing a feature to let users switch between video and audio calls without interrupting the ongoing call, according to reports.
Summary:
Guests will get the chance to eat in life-sized gingerbread houses at Great Wolf Lodge locations across the US, starting November 25.
Summary:
Researchers further showed they can deactivate the chemical signal to disrupt replication of DNA in cancer cells, thereby killing them.
Summary:
Turkey on Friday withdrew troops from NATO military exercises after Turkish President Recep Tayyip ErdoÃÂan and Turkey's founding leader Mustafa Kemal Ataturk featured on an "enemy chart" during the drills.
Summary:
China's special envoy Song Tao stressed his country's stance to steadily develop "traditionally friendly relations" between China and North Korea during a meeting with a high-ranking North Korean official, North Korea has claimed.
Summary:
An "enormous" number of parasites, including one measuring 27 cm, were found in the North Korean soldier's body who attempted to defect to South Korea last week, doctors said.
Summary:
A sessions court in Maharashtra's Ahmednagar on Saturday convicted three men for the rape and murder of a 15-year-old girl in Kopardi village in 2016.
Summary:
India is creating a "two-front situation" for Pakistan by involving itself in Afghanistan, Pakistan's National Security Advisor Nasser Janjua has said.
Summary:
Air traffic volume reached an all-time high of 1.04 crore passengers in October 2017, according to data released by the DGCA.
Summary:
Norwegian heiress and second-youngest billionaire in the world, 22-year-old Katharina G Andresen, was handed a NOK250,000 (nearly â¹20 lakh) fine by a court for failing a roadside breathalyser test.
Summary:
Amid Padmavati row, Congress leader Shashi Tharoor clarified his recent "valorous maharajas" remarks, saying he never made a communal comment in his life.
Summary:
Censor Board chief Prasoon Joshi has slammed the makers of 'Padmavati' for holding private screenings of the film for media persons before the film has been certified by the board.
Summary:
Indian wrestlers Sakshi Malik and Geeta Phogat won gold medals in their respective weight categories at the National Wrestling Championship on Friday.
Summary:
The Income Tax Department conducted a "search and recovery operation" at the residence of jailed AIADMK leader Sasikala, at Poes Garden in Chennai on Friday.
Summary:
Australia's Indian-origin 18-year-old Jason Sangha became the second-youngest player behind Sachin Tendulkar to score a first-class ton against England.
Summary:
Three weeks after being injected with engineered tissue containing human stem cells, paraplegic rats were found to walk independently and regain sensory perception, according to an Israel-based study.
Summary:
Canavero said he reconnected the spine, nerves and blood vessels on the corpse, demonstrating that such a procedure could be performed on brain-dead donors in future.
Summary:
She will formally take on the duties as Lady Usher of the Black Rod next year.
Summary:
Actor Ranveer Singh, while speaking about the ongoing controversy on the film 'Padmavati, said, "I feel audiences should now see Alauddin Khilji on screen only." Talking about why he has not been very active on social media recently, he added, "It's a difficult situation...
Summary:
Ariel further said, "The only person that matters is yourself.
If you're happy, if you're confident, that's all that matters."
Summary:
Union Minister Piyush Goyal has said Congress' allegations over the Rafale fighter jet deal reflected their state of desperation as it's on a "losing spree".
Summary:
Restrictions have been imposed in parts of Srinagar to maintain law and order situation after a militant was killed in a shootout on Friday in the region.
Summary:
The RTI inquiry further revealed that he had scored a total of 84.2% marks in his class 10 examinations.
Summary:
Microsoft Founder Bill Gates who met Uttar Pradesh CM Yogi Adityanath on Friday, has agreed to help the state in tackling the problem of encephalitis through his Bill & Melinda Gates Foundation.
Summary:
A 25-year-old woman in Telangana's Warangal on Friday filed a police complaint alleging that her husband made her leave the house for not being good at making his favourite biryani.
Summary:
BEML Limited is all set to supply the first six-car Metro to Bangalore Metro Rail Corporation Limited (BMRCL) by December.
By December 2018, all our existing trains will run with six cars,â BMRCL Managing Director said.
Summary:
The towns of Mandra, Nea Peramos, and Megara, near the capital Athens, were the worst affected.
Summary:
Police seized 660 cartons of Indian-made foreign liquor worth â¹70 lakh from two trucks in Bihar's Vaishali on Friday.
Summary:
Thasleem channelled the money through a hawala route from the Gulf, reports said.
Summary:
The drone also features altitude control that allows users to change the maximum height it can reach.
Summary:
Jon Hale first discovered the ride in 2012, and achieved the feat earlier this week.
Hale said, "We will see what the rest of the year holds for me.
Summary:
A Canada-based study predicts that Pacific Island countries could lose 50-80% of fish in local waters due to climate change.
Summary:
Mexican drug cartels are forcing indigenous children to join them, UN special rapporteur on indigenous rights Victoria Tauli-Corpuz has said.
Summary:
An Irish Catholic priest has urged Christians to stop using the word Christmas because it has been "hijacked" by "Santa and reindeer".
Summary:
Iraqi forces on Friday captured Rawa, the last ISIS-held town in the country, the Defense Ministry said.
Summary:
CPI(M) General Secretary Sitaram Yechury on Friday said the protests against the film Padmavati before even watching it are a "sign of intolerance" in India.
Who are they to decide what's history and what's not," Yechury added.
Summary:
The majority of injuries took place in the state's Baramulla district.
Summary:
While a few real books are placed in the main atrium, most are placed in other rooms of the library.
Summary:
The first known object to visit our Solar System from another star system has been given the name, 'Oumuamua, which means "a messenger from afar arriving first" in Hawaiian.
Summary:
Astronomers have compiled a periodic table which classifies over 3,700 confirmed exoplanets into six mass/size and three temperature groups.
Summary:
Black holes are stellar remnants under an intense force of gravity, which can also trap light.
Summary:
Franken later issued an apology and offered to "gladly cooperate" in investigation into the allegations.
Summary:
Four people died on Friday after a two-seater plane and helicopter crashed mid-air over Buckinghamshire, England.
Summary:
Russia is militarily stronger than Europe, making it a "real" threat from "the Baltic to the Black Sea", the US State Department's Director of Policy Planning Brian Hook has said.
Summary:
A video showing a car blocking traffic to allow an elderly woman to cross the road in China has gone viral.
Summary:
Pictures of the incident went viral, following which the US Navy grounded the crew.
Summary:
Actress Sunny Leone has said she didn't face casting couch in Bollywood as she was sheltered by her husband Daniel Weber and her team.
Sunny further said, "I can say yes or no to whoever without having any fear."
Summary:
Summary:
Former Prime Minister Manmohan Singh on Friday claimed India's economy slowed down due to "hasty" implementation of the Goods and Services Tax (GST) soon after demonetisation.
Summary:
PM Narendra Modi on Friday said the India-France strategic partnership is not limited to bilateral ties but acts as a force for peace and stability in the regional and global context as well.
Summary:
The Army has assured that no charges will be brought against Majid Khan, the 20-year-old Kashmiri footballer who joined militant group Lashkar-e-Taiba (LeT) last week.
Summary:
Australia defeated England in the first T20I to retain the Women's Ashes, a seven-match points-based multi-format series.
Summary:
Sandeep Yadav, a former roommate and sparring partner of Indian wrestler Narsingh Yadav, has been handed a four-year ban for failing a doping test.
Summary:
India and Bangladesh are set to tour Sri Lanka for a T20I tri-series as a part of the celebration of Sri Lanka's 70 years of independence.
Summary:
The Patidar Anamat Andolan Samiti (PAAS) has given a 24-hour ultimatum to the Congress to clear its stand for educational and job reservations for the Patidar community.
Summary:
The Central Industrial Security Force (CISF) on Friday ordered its quick reaction teams, including women commandos, to increase patrolling activities in dark and unmanned areas of the Delhi Metro stations.
Summary:
The nose wheel of a Kolkata-bound SpiceJet flight carrying 74 passengers caught fire at the Hazrat Shahjalal International Airport in Dhaka on Friday.
Summary:
NASA missions have found that plasma waves formed by fluctuating electric and magnetic fields likely cause electrons to flood into Earth's atmosphere.
Summary:
The Indonesian Parliament speaker Setya Novanto, who disappeared after being named as a suspect in a $170 million-corruption case, was found unconscious in a hospital on Thursday after being involved in a car accident.
Summary:
Summary:
The US began to investigate paedophilia in Afghanistan after reports emerged in 2015 that US troops were told to ignore child sex abuse.nn
Summary:
India has been placed below 100 countries on the list, with a GDP of over â¹4 lakh per person.
Summary:
The film is currently scheduled to release on December 1.
Summary:
Former Australian wicketkeeper-batsman Adam Gilchrist became the first player in history to hit 100 sixes in Test cricket on November 17, 2007, almost 130 years after the first Test was played, in Melbourne in 1877.
Summary:
Actress Deepika Padukone, while talking about the protests against her upcoming film 'Padmavati', said, "I feel hurt...angry, but I also think it is extremely funny that people are reacting like this to a film." She added that she has given two years of her life to the film.
Summary:
The Election Commission on Friday held that the group led by Bihar Chief Minister Nitish Kumar was the real Janata Dal (United), and granted it use of 'Arrow' poll symbol of the party.
Summary:
The government has saved â¹26,000 crore by delaying the pay hike of central government employees, a report by OneIndia claimed.
Summary:
The Unique Identification Authority of India has said that NRIs and PIOs are not required to link bank accounts and other services with Aadhaar.
Summary:
However, after the verdict, Mishra moved a bail plea that was accepted by the court.
Summary:
Two-time Olympic medalist Sushil Kumar, who made a return to wrestling after a gap of three years, won a gold medal at the National Wrestling Championship after receiving walkovers in the quarterfinal, semifinal and final.
Summary:
The NDRF has 300 dogs all over the country and hopes to extend the training to them as well.
Summary:
The Saudi government has demanded 70% of the individual wealth of the princes and senior officials arrested in a corruption probe as a fine in return for their release, according to reports.
Summary:
Zareen Khan, who was mobbed at a promotional event in Delhi, said she was extremely disturbed by the treatment.
She was reportedly mobbed by a crowd of around 50 people at the venue.
Summary:
Saif further said even the audience, sometimes, looks at the star, rather than the film.
Summary:
India and China on Friday held their first meeting on border consultation and coordination mechanism in Beijing after the Doklam standoff.
Summary:
Former Manchester United striker Dimitar Berbatov made his ISL debut for the Kerala Blasters.
Summary:
Microsoft Co-founder Bill Gates on Friday met Uttar Pradesh CM Yogi Adityanath at his office in Lucknow, where they agreed to extend and expand welfare projects being carried out by the Bill and Melinda Gates Foundation.
Summary:
Former Indian fast bowler Ashish Nehra, who is commentating in the ongoing India-Sri Lanka Test at Kolkata, said the Indian cricket team members laughed when they saw him in a suit.
Nehra had retired from international cricket on November 1.
Summary:
IPS officer PC Baranda, who had resigned from his post on Wednesday, will contest the upcoming Gujarat assembly elections from the Bhiloda constituency on a BJP ticket.
Summary:
Nationalist Congress Party chief Sharad Pawar on Friday said that PM Narendra Modi feared Congress Vice-President Rahul Gandhi's "transformed image", due to which the BJP was bringing up old issues such as Bofors scam to defame the Gandhi family.
Summary:
In a bid to improve the voter turnout in the upcoming Gujarat assembly polls, the Chief Electoral Officer of Surat, Mahendra Patel, will send a personalised invitation card to each family in Surat.
Summary:
Slamming Rahul Gandhi for calling GST 'Gabbar Singh Tax', Union Minister Giriraj Singh on Friday said that Gandhi was making a mistake and his body language resembled the character Gabbar Singh.
Summary:
A US Supreme Court judge Bill O'Neill on Friday boasted of having been sexually intimate with "approximately 50 very attractive females" while speaking in defence of Senator Al Franken who has been accused of sexual harassment.
Summary:
The Amboli police on Friday arrested 10 people in connection with the recent leak of Mumbai University's BMS examination papers.
Summary:
The Indian cricket team's fielding coach R Sridhar claims that rain-affected days like the first two days of the ongoing first Test against Sri Lanka help bring the team together.
Summary:
The new STPs will be functional at Colaba, Worli, Dharavi, Bandra, Bhandup, Ghatkopar, and Malad.
Summary:
Venezuelan President Nicolás Maduro on Friday offered to help his US counterpart Donald Trump in fighting drug trade.
Summary:
However, the earthquake which had a depth of 10 km caused power outages and damage in villages near the affected area.
Summary:
The demonstration was organised as the government is planning to roll out the 5G network by 2020, Ericsson said.
Summary:
More than 25,000 people were killed and 33,000 others were injured in at least 11,000 terrorist attacks in over 100 countries last year, United Nations Secretary-General António Guterres has said.
Summary:
Former Indian captain Mahendra Singh Dhoni has said that he had not planned to hit a maximum to win the 2011 World Cup final against Sri Lanka.
I swung the bat...it went over," Dhoni said.
Summary:
"Maybe it was the honesty...and my ability to read the game," said Dhoni on why he was made the captain.
Summary:
MS Dhoni has revealed that his favourite moment from the 2011 World Cup final was when the crowd started singing 'Vande Mataram' when India was about to win.
Summary:
Astronomers from the US-based alien-hunting organisation METI have beamed electronic music samples to a potentially habitable planet about 12.4 light-years away in hopes of receiving a reply in 25 years.
Summary:
Europe could face a second wave of refugees as the situation in migrant camps in Africa and the Middle East is getting worse, UN World Food Programme's head David Beasley has warned.
Summary:
Led by the UK and Canada, the alliance was launched at the UN climate summit in Germany.
Summary:
The Islamic State has been infiltrated by Iraqi spies who relay necessary information to prevent attacks, Iraq's Interior Minister Qasim al-Araji has said.
Summary:
Public health services in Uganda were left completely paralysed following a nation-wide strike by doctors over pay and poor working conditions.
Summary:
A UK special forces dog has been awarded the Dickin medal, equivalent to the country's highest military honour, for his role in saving the lives of troops in Afghanistan.
Summary:
Summary:
Actress Aditi Rao Hydari has slammed a Twitter user who called her "a brainwashed love jihadi victim" based on her surname.
Summary:
Summary:
As per sources, 'Padmavati' will be reviewed as per set norms once it is sent back to the Board after sorting out the issue.
Summary:
Singer Shaan has said that he is not out of work if he is not getting any film music.
Shaan further said, "I survived for 20 years in the industry because I sang songs differently, even if they were of the same genre."
Summary:
Cousins Vinesh and Ritu Phogat bagged gold medals at the National Wrestling Championship on Thursday.
Summary:
Seven-time Formula One world champion Michael Schumacher's Grand Prix-winning Ferrari was sold for $7.5 million (nearly â¹50 crore), at the Sotheby's Contemporary Art Evening Sale in New York on Thursday.
Summary:
The Court observed this while hearing a plea seeking protection for witnesses in rape cases involving Asaram Bapu, after several of them were killed or 'disappeared'.
Summary:
Italy's failure to qualify for the 2018 FIFA World Cup could cost its economy in excess of â¬1 billion (â¹7,600 crore), ex-president of Italy's Olympic Committee, Franco Carraro, said.
Summary:
Reportedly, three terrorists had opened fire from a car on the police party in the Zakura Hazratbal area.
Summary:
India's Chinaman bowler Kuldeep Yadav has revealed Sachin Tendulkar called him after his Test debut and told him that his aim should be to take 500 Test wickets.
Summary:
Following the birth of his fourth child, Real Madrid forward Cristiano Ronaldo said that he wants to win seven Ballon d'Ors and have seven children.
Ronaldo is in contention to win his fifth Ballon d'Or, which will be announced next month.
Summary:
Sweden-based researchers have proposed that animals which live at a safe distance from both the poles as well as the tropics have the most to gain when adapting to climate change.
Summary:
Miss Universe contestants Miss Israel Adar Gandelsman and Miss Iraq Sarah Idan were slammed on social media for posting a selfie together.
Summary:
The Chechen Republic's leader Ramzan Kadyrov has proposed the death penalty for recruiters of terrorist groups.
Summary:
As many as 16 mass graves from Indonesia's mass killings of alleged communists were found, an organisation investigating the 1965-66 massacre has claimed.
Summary:
Tesla Co-Founder Elon Musk has claimed that the company's newly-unveiled second-generation electric Roadster car will be the world's fastest production car which can accelerate from 0-100 kmph in 1.9 seconds.
Summary:
The Zareen Khan and Gautam Rode starrer 'Aksar 2' is "an out and out borefest", wrote Times Now.
Summary:
Citizens could commute 10 times farther in the same amount of time by connecting regions in Karnataka, Hyperloop added.
Summary:
Lucknow District Magistrate Kaushalraj Sharma has ordered a ban on firecrackers at weddings and other functions in Lucknow till 15 January 2018, in a bid to curb the increasing level of air pollution.
Summary:
At least 15 patients died after more than 500 junior doctors at the Patna Medical College and Hospital went on a strike on Thursday to protest assault by a deceased patient's attendants.
Summary:
Madras High Court has upheld a two-year sentence against ousted AIADMK chief VK Sasikala's husband M Natarajan and three others in connection with the illegal purchase of an imported car.
Summary:
Apple has rolled out iOS 11.1.2 software update to fix an issue where iPhone X's screen becomes temporarily unresponsive to touch after a rapid change to a cold environment.
Summary:
Tesla Co-founder Elon Musk has unveiled the American automaker's electric Semi truck that features four independent motors and can run over 800 kilometres on a single charge.
Summary:
China under its weapon development program is reportedly building the world's fastest wind tunnel to simulate hypersonic flights of 12 kilometres/second, which could carry an aircraft to the US within 14 minutes.
Summary:
Zimbabwean President Robert Mugabe on Friday made his first public appearance since the military takeover of the country's government on Wednesday.
Summary:
Meanwhile, television host Ranvir Singh asked him, "No cash, Carney?"
Summary:
The jury said devices were defective and companies failed to warn consumers about the risks.
Summary:
He hailed India's improved rating calling it a "belated recognition" of reforms in the last few years.
Summary:
Radhika Apte has said sexual abuse does not exist only in the film industry but takes place in every alternate household.
Summary:
Any remaining posters will be in violation of the notice and legal action will be initiated against the producers.
Summary:
The National Green Tribunal on Friday refused to interfere with the environment clearance granted for the construction of the proposed Andhra Pradesh capital of Amaravati.
Summary:
Denmark's football team is reportedly considering using Italy's accommodation, with most major teams having already locked their choices.
Summary:
The accused, who reportedly molested the victim in a fit of rage after they had an argument, was arrested by the police.
Summary:
World number two and defending champion PV Sindhu crashed out of the China Open Super Series after suffering a loss at the hands of world number 89, China's Gao Fangjie.
Summary:
Four pedestrians were injured after they were hit by a speeding taxi when its driver suffered a massive heart attack and lost control of the vehicle in Mumbai's Mahim on Wednesday, police said.
Summary:
The 'Delete' post option on Facebook has disappeared from the desktop version of the platform.
Summary:
LinkedIn CEO Jeff Weiner took a selfie at employee Mariah Walton's desk while she was away for a vacation, Walton has revealed.
Summary:
A German court on Thursday ruled that Kuwait Airways had the right to refuse to fly an Israeli passenger as it would have faced repercussions in Kuwait, which does not recognise the State of Israel.
Summary:
The scanner will not sound an alert immediately but will produce an X-ray image.
Summary:
The matchmaking segment accounted for over 90% of the company's revenue at â¹79 crore during the quarter.
Summary:
Pope Francis on Thursday denounced climate change deniers and urged nations to not fall prey to such "perverse attitudes".
Summary:
A propaganda poster released by pro-ISIS Wafa Media Foundation has threatened to attack the Vatican on Christmas.
Summary:
Ben Affleck starrer 'Justice League', which released on Friday, "is a film that has hope in its eyes and optimism in its heart," wrote Hindustan Times.
Summary:
According to a protester, the entry to the fort has never been blocked since India's independence.
Summary:
BJP on Friday released the first list of 70 candidates who will contest in the upcoming Gujarat Assembly elections.
Summary:
Australian wicketkeeper Tim Paine has been recalled to the national side after seven years, after being included in the 13-man squad for the first two Ashes Tests against England.
Summary:
Harvard scientists have integrated kill switches into bio-engineered bacteria to terminate them when they are not wanted anymore.
Summary:
Frankie Burns found a wallet with $1,700 (over â¹1 lakh) inside and gave it to his father, who located its owner with the help of the ID card inside.
Summary:
Walmart heirs Rob, Alice and Jim, saw their fortunes climb by over $3.1 billion each and are among world's top 20 richest people.
Summary:
Johnson & Johnson has won a lawsuit in California against a woman who claimed she developed cancer after being exposed to asbestos in the company's talc-based products.
Summary:
Chief Economic Advisor Arvind Subramanian on Friday hailed India's rating upgrade by Moody's, saying it was "long overdue".
Summary:
Tiger Shroff, who will be working with Hrithik Roshan in an upcoming film, said, "I'll have to work twice as hard just to stand in the same frame as him.
Summary:
Zareen Khan has said if it wasn't for Salman Khan, she wouldn't have been a part of Bollywood.
Summary:
Actor Prakash Raj called the threat of cutting Deepika Padukone's nose, over the controversy regarding the film 'Padmavati', an act of intolerance.
Summary:
Actor Rajkummar Rao has said sex comedies are not his favourite and as an audience, he is more of a fan of subtle humour.
Rao further said, "[I prefer]...
Summary:
The Al-Qaeda in the Indian Subcontinent has begun publishing online material in Tamil, Bengali and Hindi languages, in order to recruit more followers in the country through internet, reports said.
Summary:
Patidar leader Hardik Patel on Friday shared his own version of a 1970s movie song 'Ramchandra Keh Gaye Siya Se' allegedly taking a dig at BJP on Friday.
Summary:
"The deal was finalised following a transparent procedure," Sitharaman added.
Summary:
The Borivali Regional Transport Office (RTO) has issued a show-cause notice to a Mumbai-based motor training school for allegedly making over 100 appointments for driving licence using a single mobile number.
Summary:
Home Minister Rajnath Singh on Thursday urged Microsoft Co-founder Bill Gates to adopt 1,000 villages affected by Left-wing extremism violence in Odisha, Bihar and Jharkhand, reports said.
Summary:
Shaw has now scored four hundreds in Ranji Trophy and one in Duleep Trophy.
Summary:
BJP leader Mukul Roy has approached the Delhi High Court against TMC, accusing them of tapping his private phone conversations.
All my phones are being tapped," he claimed.
Summary:
Maharashtra government will come out with a draft policy to review if a person being protected can pay up for the cover or not.
Summary:
India ended the second day of the first Test against Sri Lanka at 74/5, after rain forced early stumps at Kolkata on Friday.
Summary:
The Central Bureau of Investigation, which is probing the disappearance of Jawaharlal Nehru University student Najeeb Ahmed, has decided to trace him in files of unidentified bodies in Delhi.
Summary:
The Sky Meadow waterfalls in United States' California have frozen, creating what resemble ice sculptures and allowing climbers to hike their way up the waterfalls.
Summary:
Astronomers observed an unexpectedly high number of positrons, anti-matter of electrons, in Earth's orbit in 2008, triggering debates over possible sources being either fast-spinning stars called pulsars or dark matter.
Summary:
An oil pipeline system was closed in the US state of South Dakota after it leaked nearly eight lakh litres of oil on Thursday.
Summary:
Sicilian mafia's 'boss of bosses' Toto Riina who was serving 26 life sentences and is believed to have ordered over 150 murders died of cancer on Friday in Italy.
Summary:
"'An Insignificant Man' is invaluable and fascinating," said Firstpost while Times Now called it "an engaging watch for new-age documentary lovers".
Summary:
'Verna' was reviewed by the Tribunal after an appeal by director Shoaib Mansoor, who was reportedly asked to make certain changes in the film but had refused to do so.
Summary:
A Kerala ambulance driver taking a one-month-old infant for an urgent heart surgery from Kannur to a Thiruvananthapuram hospital completed the 516-km distance, which usually takes 14 hours, in just 7 hours.
Summary:
The study analysed over 9,000 tweets by PM Modi over a six-year period.
Summary:
The Special Investigation Team (SIT) probing the gangrape of a 19-year-old girl in Bhopal on October 31, submitted a 200-page charge sheet against the four accused in a special court on Thursday.
Summary:
The CBI had earlier stated that the Pintos were involved in destruction of evidence.
Summary:
Civil Aviation Minister Ashok Gajapathi Raju has clarified that airlines can't charge extra from passengers for correcting errors in their names' spellings on tickets.
Summary:
Smith took over the role in May this year and previously served as Apple's Vice President of Worldwide Talent and Human Resources.
Summary:
NASA has released a time-lapse video that shows the Earth "breathing every single day, changing with the seasons", based on data collected over 20 years from its satellites.
Summary:
In a first, Caltech engineers have created a stable ring of plasma in open air by blasting a water jet thinner than hair-width over crystal plates at 1,000 kmph.
Summary:
Germany has replaced the US as the best country in the Anholt-GfK Nation Brands Index.
Summary:
A man in Lebanon's capital city Beirut once built a building to block the view of the Mediterranean sea from his brother's building, according to reports.
Summary:
An Australian who ordered 200 hash browns worth A$230 (â¹11,300) after being told there were no chicken nuggets on the McDonald's breakfast menu has been arrested for drunk driving.
Summary:
Actor Amitabh Bachchan took to Twitter to deny reports that he escaped a car accident in Kolkata while travelling to the airport.
The reports also said that the state government had issued a show cause notice to the travel agency which had provided the car.
Summary:
Bollywood stars Salman Khan and Katrina Kaif will perform at the opening ceremony of the fourth edition of the Indian Super League (ISL) in Kochi on Friday.
Summary:
Tamil Nadu Police have revealed that they've nabbed a serial rapist, who raped up to 50 women at knifepoint.
Summary:
The Delhi government announced it would roll out a scheme within three to four months wherein 40 public services, including driving licences and caste certificates, will reach the citizens' doorsteps.
Summary:
American tennis player Serena Williams married Reddit co-founder Alexis Ohanian in a Beauty and the Beast themed wedding in New Orleans on Thursday.
Summary:
At least 352 super speciality medical seats were left vacant in private and government medical colleges this year, reportedly causing a loss of over â¹200 crore to private colleges and government exchequer.
Summary:
Microsoft Co-founder Bill Gates on Thursday said the Indian education system was his biggest disappointment about the country, adding that he wanted to create higher expectations about it.
Summary:
While campaigning for his wife in the upcoming civic polls in Uttar Pradesh's Barabanki, BJP leader Ranjeet Kumar Srivastava asked Muslims to vote for the BJP or else "face difficulties".
Summary:
The Bargello Museum in Italian city Florence will open a secret room, whose walls Italian sculptor Michelangelo is believed to have covered in sketches, to the public for the first time in 2020.
Summary:
IndiGo offloaded four Kashmiri youths from a Patna-Delhi flight on Thursday evening after receiving complaints about their alleged erratic behaviour.
Summary:
The temperature difference would be more extreme if there were no atmosphere, said NASA.
Summary:
It has upgraded India's bond rating to Baa2 from its lowest investment grade (Baa3).
Summary:
Hollywood actor Sylvester Stallone sexually assaulted a teen and forced her into a threesome while shooting for a film in 1980s, according to old police reports published online.
Summary:
Vidya Balan starrer 'Tumhari Sulu', which released on Friday, is a "feel-good movie for the family audiences," wrote Times Now.
Summary:
Defence Minister Nirmala Sitharaman reportedly asked soldiers to address her as Raksha Mantri, after they asked her about it during an informal interaction.
Summary:
Microsoft Founder Bill Gates, while talking about his foundation's partnership with Swachh Bharat Mission, said building toilets is like opening bank accounts as getting people to use them is the real challenge.
Summary:
Majid Arshid Khan, a footballer from Anantnag, Jammu and Kashmir, who last week announced on Facebook that he would be joining the terror organisation Lashkar-e-Taiba (LeT), surrendered to the army.
Summary:
BJP IT Cell Head Amit Malviya shared a picture collage of Pandit Jawaharlal Nehru with women to compare him with Patidar leader Hardik Patel, whose alleged sex tape was recently leaked.
Summary:
Hardik Patel-led Patidar Anamat Andolan Samiti (PAAS) has accused BJP of commissioning morphed video clips and claimed that the party is ready with 52 more clips similar to Hardik's alleged sex CD leaked recently.
Summary:
Germany and US-based scientists have reproduced nanostructures found on butterfly wings in solar cells to enhance light absorption rate by up to 200%.
Summary:
In a first, Oxford Dictionaries will have a 'Hindi Word of the Year 2017'.
Summary:
Islamic State has lost 95% of the cross-border "caliphate" it declared three years ago in Iraq and Syria, the US-led coalition fighting the militant group has said.
Summary:
North Korea is pursuing an "aggressive schedule" to build its first operational ballistic missile submarine, a US-based North Korea monitoring institute has said, citing satellite images which show activity at a North Korean shipyard.
Summary:
A German man's car has been found 20 years after he forgot where he had parked it.
Summary:
Mumbai Metro launched IndiaâÂÂs first QR-based mobile ticketing facility called Skiiip Q on Thursday.
Summary:
The United Kingdom, where the age of consent is 16, is set to bring in laws that will make it illegal for sports coaches to have sex with athletes aged under 18.
Summary:
The Centre on Thursday directed NTPC Limited to procure stubble at a rate of â¹5,500 per tonne from farmers.
Summary:
In a bid to become plastic-free by March 2018, the Maharashtra government is planning to ban the use of plastic packaged drinking water bottles at government offices and will subsequently extend the ban to private offices.
Summary:
A tennis court has been installed inside a 16th century Milan church, which was deconsecrated in 1808 after a decree was issued by Napoleon.
Summary:
The properties attached include six shops and three residential flats, belonging to the trader who had accepted â¹84 crore during the demonetisation period and used it to purchase 258kg of gold.
Summary:
Nearly 500 people have died navigating Bengaluru's streets so far this year, making it the fourth-deadliest city in India for motorists, reports said.
Summary:
Sri Lankan pacer Suranga Lakmal became the first bowler in 16 years to bowl seven straight maidens before conceding a run in a Test match.
Summary:
The Indian Army is planning to procure 60 Unmanned Aerial Vehicles (UAV) in order to enhance its ability to monitor movements of Chinese and Pakistani troops in the border regions, reports said.
Summary:
The Spanish world number one, Rafael Nadal, on Thursday won the defamation case against former French minister Roselyne Bachelot, who had accused him of doping in 2012.
Summary:
A Southwest Airlines pilot was arrested on Wednesday after a loaded gun was found in his carry-on luggage before he was set to board an aircraft at a US airport.
Summary:
A UN human rights committee has approved a resolution calling on Myanmar's authorities to end military operations against Rohingya Muslims, ensure their return from Bangladesh and grant them "full citizenship rights".
Summary:
This is the seventh sexual harassment allegation against the 41st US President.
Summary:
Croma has come up with a new 10/10/10 offer for customers seeking a 360 degree digital solution.
Summary:
UK-based researchers have found plastic fibres in stomachs of sea creatures that swim nearly 11 kilometres deep in the Pacific.
Summary:
The team tested 177 Amish people and found the mutated gene in 43, who also had 10% longer lifespans than the others.
Summary:
The first cast photo of 'Fantastic Beasts: The Crimes of Grindelwald', the sequel to the 2016 film 'Fantastic Beasts and Where to Find Them' has been released.
Summary:
Defending the Centre amid Congress' criticism over the Rafale fighter aircraft deal, Indian Air Force chief BS Dhanoa said the deal was not overpriced and the central government had negotiated a good deal.
Summary:
Recently, in-service doctors across the state had gone on strike with a 33-point charter of demands.
Summary:
However, the Pentagon later deleted the post, clarifying that an authorised operator of its Twitter page erroneously retweeted it and the department does not endorse the content.
Summary:
R Balakrishna Pillai was the only minister to have completed his term, from 1991 to 1996.
Summary:
The Supreme Court on Thursday said Delhi's Lieutenant Governor has more power than the governor of a state as he doesn't have to act on the aid and advice of the council of ministers all the time.
Summary:
After being accused of not passing on GST rate cut benefits to customers, McDonald's clarified that the GST cut for restaurants from 18% to 5% didn't change prices as the government had removed Input Tax Credit (ITC).
Summary:
The Environment Pollution (Prevention and Control) Authority (EPCA) on Thursday rolled back the ban on entry of trucks and construction activities in Delhi after air quality in Delhi improved.
Summary:
NASA has developed a forecasting tool that can predict which cities could be flooded, as ice sheets of Antarctica and Greenland melt due to global warming.
Summary:
A three-year-old girl was the only survivor of a plane crash which killed six people in Russia on Wednesday.
Summary:
Russia on Thursday cast its 10th veto of United Nations Security Council action on Syria since the war began in 2011, blocking a US-drafted resolution to renew an international inquiry into chemical weapons attacks in Syria.
Summary:
Notably, no one missed the train due to the early departure.
Summary:
Mukesh Bhatt has said his comment that some women are blatantly shameless to offer themselves, made in context of sexual harassment, has been misquoted.
Summary:
The Delhi Health Department has proposed that the CBSE and the Education Department withdraw recognition granted to schools if they fail to ensure that they remain tobacco-free.
Summary:
Union Minister Giriraj Singh on Thursday said that a decline in the population of a country's majority community will weaken the democracy and social equity, as well as change the definition of nationalism.
Summary:
Talking about the recently leaked alleged sex tape of Hardik, Chirag said it was a blot on the Patidar community.
Summary:
The CM K Chandrashekar Rao-led Telangana government has decided to send around 1,000 government officials on a junket trip to Israel to study micro-irrigation techniques.
Summary:
During a discussion on women's safety, Karnataka Home Minister R Ramalinga Reddy told the Legislative Council that women have "no business" walking on the streets of Bengaluru at night.
Summary:
Ex-Indian batsman Sunil Gavaskar has been dismissed off the first ball of a Test thrice.
Summary:
Suspended AAP MLA Kapil Mishra and SAD-BJP MLA Manjinder Singh Sirsa on Wednesday tied a protective mask on the statue of Mahatma Gandhi and one of his followers at Delhi's Gyarah Murti.
Summary:
He further said the government was using modern technology to curb all intrusion, including from Bangladesh.
Summary:
Former Indian captain Sourav Ganguly has claimed that he found current Indian captain Virat Kohli's support for his predecessor MS Dhoni and his way of looking out for other players 'remarkable'.
Summary:
A US-based study has found that people with O blood types face lesser risk of heart attack than those with A, B, or AB, during high air pollution.
Summary:
Two former Nazi guards in their 90s have been charged with facilitating hundreds of murders at the Stutthof concentration camp during World War II.
Summary:
The authority would enable consumers to apply for relief if they feel the reduction in prices is not being passed on to them.
Summary:
Actress Deepika Padukone has been given special security by the Mumbai Police after the Rajput organisation Karni Sena on Thursday threatened to cut her nose over her upcoming film 'Padmavati'.
Summary:
Jaipur-based organisation Sarv Brahmin Mahasabha has signed a petition with blood which will be sent to the Censor Board, demanding a ban on Sanjay Leela Bhansali's 'Padmavati'.
Summary:
The Test in which Sachin Tendulkar made his international debut on November 15, 1989, was not telecast live in India, neither covered on radio.
Summary:
In a petition to the Election Commission, former BJP leader Raghunath Negi has alleged that Uttarakhand CM Trivendra Singh Rawat declared that he was 54 years old in two poll affidavits submitted three years apart.
Summary:
The CBI has told a Gurugram court that the Haryana Police had tortured the Ryan International School bus conductor and a key witness to back their theory on the murder of the seven-year-old student.
Summary:
South America's Peru will play a World Cup after 36 years.
Summary:
Summary:
Aviation Minister Ashok Gajapathi Raju has said airlines cannot levy any additional charges for correction of a passenger's name when the person brings it to their notice after booking the ticket.
Summary:
An investigation has revealed that the US Army had failed to alert the FBI to nearly 20% of the criminal activity of its soldiers.
Summary:
Elon Musk admitted he was "really in love, and it hurt bad" after breaking up with actress Amber Heard, according to a recent Rolling Stone article.
Summary:
Boman Irani has said that if he was home all the time, his family would throw him out and ask him to work.
Summary:
Ex-Pakistani pacer Waqar Younis was known as the banana swing bowler due to his technique of swinging the ball in the air at a very high speed.
Summary:
A 45-year-old man drowned in Damodar river in Jharkhand after accepting a â¹50 bet that he could swim across the river, despite not knowing how to swim.
Summary:
Former India captain Mahendra Singh Dhoni has said that playing with older kids in his childhood helped him play cricket well.
Playing with them made me better," Dhoni added.
Summary:
The victims had been trapped inside their car after a speeding dumper rammed into it.
Summary:
Poor academic performance, relentless Pakistani social media campaigns, and religious indoctrination were the primary reasons behind Kashmiri youth taking up militancy, Inspector General of Police (Kashmir range) Muneer Khan said on Thursday.
Summary:
However, the ICC said Hafeez can still bowl in domestic cricket events played under the Pakistan Cricket Board.
Summary:
After a picture of a man with a 'Shashi Tharoor, marry me' poster at the Delhi Queer Pride Parade surfaced online, the Congress leader tweeted, "Haha!
Summary:
The Brihanmumbai Municipal Corporation (BMC) has decided to construct public toilets that are two to three storeys high across the city due to inadequate land availability.
Summary:
American researchers have successfully reversed type 1 diabetes in mice by infusing their own blood stem cells pre-treated to produce more of a deficient protein.
Summary:
The Chief of Staff of the Israel Defence Forces, Lieutenant General Gadi Eisenkot, has said that Iran is the biggest threat to the Middle East.
Summary:
Industrial pollution has turned the water near a steel plant in the Italian port city of Taranto red in colour.
Summary:
After convicting a dwarf for asking two minors for naked photos and sex through Facebook, a UK court spared the paedophile from being sent to jail claiming he would have a "very hard time".
Summary:
Calling sexual violence "cheaper than a bullet", Hollywood actress Angelina Jolie urged UN peacekeepers to take their role in preventing and punishing sexual violence more seriously.
Summary:
The 36-year-old lawyer nominated by US President Donald Trump for a lifetime federal district judgeship has never tried a case.
Summary:
US bank Wells Fargo has repaid $5.4 million (â¹35 crore) to about 450 military service members whose vehicles it repossessed illegally, US Department of Justice has said.
Summary:
A 44-year-old American suffering from an incurable metabolic disease has become the first person to undergo gene editing inside the body.
Summary:
The Supreme Court on Thursday rejected a petition seeking to block the release of the documentary 'An Insignificant Man', which is based on CM Arvind Kejriwal.
Summary:
A biopic on former badminton player and chief national coach Pullela Gopichand was announced on his birthday on Thursday.
Summary:
As per reports in Spanish media, Real Madrid forward Cristiano Ronaldo called Barcelona forward Lionel Messi, telling him that the former has won this year's Ballon d'Or award.
Summary:
As per rules, baggage exceeding the size of 60x45x25 centimetre would not be allowed inside the metro.
Summary:
A BJP leader and headman of Uttar Pradesh's Tigri village, Shiva Kumar, was shot dead on Thursday by unidentified assailants in Greater Noida.
Summary:
Kohli joined ex-captain Kapil Dev, who had registered five ducks in 1983.
Summary:
Cambodia's Supreme Court has dissolved the country's main opposition party over allegations of plotting to topple the government.
Summary:
The China Rich List contains 12 people under the age of 40.
Summary:
Union Minister Ram Vilas Paswan has said new MRP will have to be printed on around 200 consumer products with revised GST rates.
Summary:
Finance Minister Arun Jaitley on Thursday said that GST rates will continue to decline over the next two years.
Summary:
Rajkummar Rao, while talking about his film 'Newton' which is India's official entry for Oscars 2018, said he wants the film to break the country's dry spell at Oscars.
'Newton' will compete against 91 other films in the Foreign Language Film category at Oscars.
Summary:
Actor Kamal Haasan has said that he will be returning the â¹30-crore collected in donations for his political outfit, saying it would be illegal to keep the money without any infrastructure.
Summary:
Actress Pooja Bedi has said that though her daughter Aalia Furniturewalla has been receiving a lot of film offers, she will be launched in Bollywood next year.
Summary:
"I think the bottoming out of the economy is complete and now it should start moving upwards.
Summary:
Expressing sadness over Abdullah's remarks, Ahir said PoK was under Pakistan because of previous government's mistakes.
Summary:
The National Green Tribunal has directed the Delhi government to seize all 10-year-old diesel taxis operating in the national capital without any delay to counter high pollution levels.
Summary:
Former BJP MP Ram Vilas Vedanti on Thursday claimed that Sri Sri Ravi Shankar had "jumped" into the Ayodhya issue to avoid a probe into his illegal wealth.
Summary:
A video showing a cash van guard foiling an ATM robbery attempt despite being shot at by two armed men in Delhi's Majra Dabas has surfaced online.
Summary:
Any institution failing to comply with the directions would have to pay â¹5-lakh environment compensation.
Summary:
Alleging that they were playing "dirty politics", Trinamool Congress leader Anubrata Mondal reportedly threatened to break the legs of Leader of Opposition Abdul Mannan and CPI(M) leader Bikash Bhattacharya.
Summary:
Delhi CM Arvind Kejriwal has directed officials to submit a feasibility report on home delivery of ration to beneficiaries through Public Distribution System.
Summary:
Some restaurants said they were waiting to receive 'official communication' before revising the rates, while others said they got the notification late and were updating their systems.
Summary:
E-commerce startup Flipkart is investing $50 million (over â¹326 crore) in Bengaluru-based food delivery startup Swiggy, according to reports.
Summary:
At least nine people, including seven policemen, were killed and nine others were injured on Thursday after a suicide bomber detonated himself outside a wedding hall in Afghanistan's capital Kabul, according to reports.
Summary:
Adding that the facial hair could risk patients' safety, the right-wing party said that growing a large beard is not a fashion statement but a religious one.
Summary:
The Indian-origin suspect has been arrested and charged with murder and robbery.
Summary:
OnePlus 5T will be unveiled at 9.30 PM today in India.
Summary:
Actress Neha Dhupia has said that it's very disturbing when people call her "sexy" as she hates that word.
Summary:
Federer overtook American golfer Tiger Woods, who has earned $110,061,012 (over â¹717 crore) in prize money.
Summary:
Tesla CEO Elon Musk has tweeted that the company's electric semi truck "can transform into a robot, fight aliens and make one hell of a latte".
Summary:
Apple CEO Tim Cook on Wednesday took to Twitter to congratulate Australia on voting in favour of legalising same-sex marriage using the emoji of New Zealand's flag.
Summary:
US-based startup Zero Mass Water has developed solar panels that pull out drinking water from sunlight and air.
Summary:
Hyperloop-inspired transportation startup Arrivo has partnered with Colorado's Department of Transportation in the US to build a $15 million test centre in the capital city, Denver.
Summary:
Technology major Microsoft's CEO Satya Nadella during his recent visit to India said to journalists using iPads to "get a real computer".
Summary:
Digital payments platform Paytm has introduced 'buy now-pay later' option which allows users to pay within 45 days of making the purchase.
Summary:
NASA's Mars rover mission set to launch in 2020 has tested a special parachute that would slow the spacecraft down as it enters the Martian atmosphere at nearly 20,000 kmph.
Summary:
The world's largest ball of stickers weighs over 105 kg and features two lakh stickers and labels, according to Guinness World Records.
Summary:
The police department in US' Maryland has shared a video of a woman stealing food and cash after climbing through the window of a McDonald's drive-thru.
Summary:
Markets regulator SEBI has attached all bank, demat and mutual fund accounts held by Vijay Mallya-owned United Breweries Holdings (UBHL).
Summary:
Rajput organisation Karni Sena's president Mahipal Makrana has issued a veiled threat to actress Deepika Padukone over the row on 'Padmavati'.
Summary:
Actor Amitabh Bachchan escaped an accident in Kolkata last week when one of the rear wheels of his Mercedes got detached.
Summary:
Actor Sunny Deol has said he and his father Dharmendra's films earned over â¹100 crore years ago but they never spoke about being part of the â¹100 crore club and so they were respected.
Summary:
India ended the rain-curtailed opening day of the first Test against Sri Lanka on Thursday at 17/3, as Virat Kohli and KL Rahul registered ducks.
Summary:
He also called the man a "Chinese n****r" and slapped him on his neck.
Summary:
NCP chief Sharad Pawar on Wednesday said the situation in poll-bound Gujarat was in favour of the Congress.
Summary:
Uttar Pradesh Police have arrested three men from a gang for setting up a fake call centre and using leaked data from e-retailer Snapdeal in order to dupe the website's customers.
Summary:
Congress Vice-President Rahul Gandhi on Thursday asked the media why it didn't question PM Narendra Modi for changing entire Rafale fighter aircraft deal to help a businessman.
Summary:
Thakor has been suspended by his county team, Derbyshire, on full pay since his offence in June.
Summary:
The five-storey structure resembles an eye, and contains reading rooms, lounges, rooftop patios as well as computer and audio rooms.
Summary:
US-based researchers have designed a chiral meta-mirror which reflects the same spin state of circularly polarised light, which travels in either a clockwise (right) or counterclockwise (left) fashion.
Summary:
MIT researchers have explained why some droplets levitate on hot liquid surfaces for a short duration before coalescing.
Summary:
Notably, Singapore is North Korea's seventh largest trading partner.
Summary:
Rohingya refugees would not be allowed to return to Myanmar until local people who are "real Myanmar citizens" are ready to accept them, the country's Army has said.
Summary:
Afghanistan on Wednesday said Pakistan fired over 500 missiles in the residential areas of its Kunar province in the past four days, killing one person and displacing 40 families.
Summary:
Dr Vijay Nath Mishra, a professor in the Banaras Hindu University, has developed a desktop app which plays devotional music when users try to access "inappropriate websites" containing pornography, violence or other vulgar content.
Summary:
The song, titled '100 Years', has been recorded on a vinyl made of soil from France's Cognac region and kept in a safe that's only destructible when submerged in water.
Summary:
Andhra Pradesh Police have arrested seven people on the charges of culpable homicide in a boat tragedy on Krishna river that killed 22 people.
Summary:
The BJP has released a campaign advertisement mentioning the name 'Yuvraj', apparently targeting Congress Vice President Rahul Gandhi ahead of Gujarat assembly polls.
Summary:
Hindu Mahasabha has laid a foundation stone for temple of Mahatma Gandhi's assassin Nathuram Godse in Madhya Pradesh's Gwalior despite being denied permission by the district administration.
Summary:
Indian Army is planning to build 17 tunnels between Ladakh and Arunachal Pradesh to improve road connectivity for rapid troop deployment to counter growing Chinese military presence along the Line of Actual Control.
Summary:
Smartphone app developer ikva eSolutions has developed an app called 'Notification History Log' which allows users to access the 'deleted messages' on WhatsApp. The app, which is a dashboard for all notifications on Android smartphones, does not only preview but also shows the entire deleted message.
Summary:
Summary:
Billionaire Elon Musk asked American magazine Rolling Stone's journalist Neil Strauss if there is anybody he should date, Strauss revealed in a recent article.
Summary:
Its surface temperature lies between -60ðC and 20ðC, which can possibly support oceans and life.
Summary:
The UK has doubled the number of visas available under the Tier 1 (Exceptional Talent) route for individuals in technology, science, art, and creative industries.
Summary:
A 23-year-old Odisha man who crammed 459 drinking straws into his mouth holds the Guinness World Record for the 'Most straws stuffed in the mouth (hands off)'.
Summary:
A study by Confederation of Indian Industry found that 100 Indian companies have created over 1.13 lakh jobs in the US with an investment of over $17.9 billion.
Summary:
Real estate tycoon Hui Ka Yan topped the Forbes list of China's 400 richest for the first time with a fortune of $42.5 billion.
Summary:
Actor Aditya Pancholi, while speaking about allegations made by actress Kangana Ranaut against him, said that she is a nobody and is just an okay actor.
Summary:
Akshay Kumar, while speaking about his upcoming film 'PadMan', which deals with the issue of menstrual hygiene, said, "Menstruation is natural." "It's not about being bold, but about breaking taboos that hold us back," he added.
Summary:
Over 22,000 doctors across Bengaluru went on indefinite strike on Thursday to protest against the Karnataka Private Medical Establishments (Amendment) Bill, asking the government to drop at least four provisions from it.
Summary:
Microblogging platform Twitter has said that it will remove verification badges from users who violate its rules.
Summary:
The air intelligence unit of Air India has arrested one of its senior superintendent service engineers for allegedly trying to smuggle gold bars worth over â¹44 lakh from Bangkok to India.
Summary:
A 25-year-old Swiss man managed to sneak onto a London-Geneva easyJet flight on Sunday night and shut himself in the toilet.
Summary:
The crackdown has left the smugglers with increased numbers of migrants and fewer boats to transport them to Europe, CNN said.
Summary:
London transport authorities have issued instructions to remove 'Free Balochistan' advertisements put up by Baloch activists on more than 100 buses as part of a campaign against Pakistan's alleged human rights abuses in the province.
Summary:
The US and Japan on Thursday launched a 10-day joint naval drill in southern Japan amid ongoing tensions over North Korea's nuclear programme.
Summary:
Religare promoter Malvinder Mohan Singh has stepped down from the post of Non-Executive Chairman at Religare but will continue as a Non-Executive board member of the company.
Summary:
Reigning national champions Saina Nehwal and HS Prannoy crashed out of the China Open after losing their respective pre-quarterfinals on Thursday.
Summary:
The Uttar Pradesh government has written to the Information and Broadcasting Ministry, raising security concerns over the film Padmavati's release on December 1, saying it could lead to violence in the state.
Summary:
As many as 44,000 entrepreneurs have reportedly applied for 400 slots of the three-day Global Entrepreneurship Summit in Hyderabad that will be attended by US President's daughter Ivanka Trump.
Summary:
Government-run Bhimrao Ambedkar hospital in Chhattisgarh vacated an entire floor for CM Raman Singh, whose pregnant daughter-in-law was admitted there.
Summary:
The Department of Posts has begun the pilot phase of the eLoc (e-location) project, aimed at allotting a six-character alphanumeric digital address to all residential and official addresses in the country.
Summary:
Fearing dissent during farmers' protests, Madhya Pradesh's Narsinghpur district administration has banned residents from sending provocative messages on social media till January 2018.
Summary:
National Press Day is celebrated on November 16 to commemorate the establishment of the Press Council of India.
Summary:
The Indian Railways will introduce Asia's largest Solid State Interlocking (SSI) system in Kharagpur on Sunday, which will aid in setting 800 train routes and ruling out collisions caused by cross movements.
Summary:
The longest expressway in India, Agra-Lucknow Expressway, will soon be equipped with free Wi-Fi service.
Summary:
Researchers estimate the 150-million-year-old tracks were left by a 35-metre-long sauropod weighing at least 35 tonnes.
Summary:
Twenty-one-year-old Kevin Lilliana from Indonesia was crowned Miss International 2017 on Tuesday in Tokyo.
Lilliana also won the award for being the best-dressed contestant.
Summary:
Summary:
This is Rangoli's first child with husband Ajay Chandel, whom she married in a private ceremony in Delhi in 2011.
Summary:
Actor Amitabh Bachchan took to Twitter to share a picture of his granddaughter Aaradhya Bachchan on the occasion of her 6th birthday on Thursday.
Aaradhya on her 6th," he wrote in the photo's caption.
Summary:
A 25-year-old student from IIM-Lucknow allegedly committed suicide on Wednesday by hanging himself from the ceiling fan of his hostel room.
Summary:
National Conference President Farooq Abdullah on Wednesday pitched for autonomy for Jammu and Kashmir and asked the Centre to roll back all central laws extended to the state after 1953.
Summary:
The Delhi government is formulating a short-term plan, stretching up to a year, to procure 500 low-floor, air-conditioned e-buses, officials said on Wednesday.
Summary:
Ramakant Biradar, a Brihanmumbai Municipal Corporation official, was suspended for one day for failing to evict unauthorised hawkers from a no-hawking zone in Mumbai's Dadar.
Summary:
While extending his greeting to all media persons on the occasion of National Press Day, PM Narendra Modi said his government is fully committed to upholding freedom of press and expression in all forms.
Summary:
The doctor claimed his wife was harassing him, while the police said a case of dowry and domestic violence was filed against him.
Summary:
Terror attacks persist in Jammu and Kashmir despite Prime Minister Narendra Modi's threats to Pakistan for being lenient towards terror outfits, an editorial in Shiv Sena's mouthpiece 'Saamana' has said.
Summary:
While Virgin is providing flyers with food vouchers, Delta is serving cheese and fruit plates.
Summary:
Delhi has been rated the most tourist-friendly destination in India, according to a biennial survey conducted by the World Travel and Tourism Council India Initiative.
Summary:
A bird struck an American Airlines flight this week and got stuck in its nose, with its wings dangling outside.
Summary:
Canada has been named the '2017 Destination of the Year' by the Travel + Leisure magazine.
Summary:
A British woman tourist who was deported from Sri Lanka in 2014 for having a Buddha tattoo on her arm has won â¹3.3 lakh in compensation from the island nation's Supreme Court for violation of her rights.
Summary:
An over 500-year-old artwork by Italian artist Leonardo da Vinci has become the world's most expensive painting ever sold, fetching over â¹2,900 crore ($450.3 million) at an auction on Wednesday in New York City.
Summary:
India is followed by Hong Kong with nine families on the list.
Summary:
The teaser of the Ryan Reynolds starrer upcoming sequel to the superhero film 'Deadpool' has been released.
Summary:
While speaking on the ongoing row over Sanjay Leela Bhansali's 'Padmavati', Maharashtra Navnirman Sena (MNS) leader Ameya Khopkar said that they will not protest against the film just for the sake of it.
Summary:
The defaulters are identified after looking at the drone's visuals and are shamed by being garlanded in public, police officials said.
Summary:
Patidar leader Hardik Patel on Wednesday said he could be framed in a sexual harassment case soon.
"Now, they will make a woman slap false sexual harassment charges against me.
Summary:
PM Narendra Modi is the most popular figure in Indian politics, American think tank Pew Research Center revealed in its research carried out from February-March this year.
Summary:
Overall, India and Sri Lanka have played 15 bilateral Test series, with India winning eight and the island nation winning three.
Summary:
The Environment Pollution Control and Prevention Authority (EPCA) is set to roll back measures taken under Graded Response Action Plan (GRAP) after air quality in Delhi improved.
Summary:
Fission power could expand possible landing sites on Mars to include icy terrains too, said NASA.
Summary:
At least 18 people were killed and 19 others were injured after around 30 vehicles collided in China's Anhui province on Wednesday due to low visibility caused by fog, authorities have said.
Summary:
Pakistan has rejected China's aid to finance building of a dam worth over â¹91,000 crore in Pakistan-occupied Kashmir (PoK) under the China-Pakistan Economic Corridor (CPEC) framework after China put some conditions including ownership of the project.
Summary:
"We're likely to start shooting in April 2018, and need some time to work on the script and the pre-production of the project," said Arbaaz.
Summary:
Deepika Padukone has slammed the ban on Pakistani actress Mahira Khan starrer 'Verna', which deals with the subject of rape.
Summary:
Lokendra Singh Kalvi, the convener of Rajput organisation Karni Sena, has said Deepika Padukone is dancing in "less clothing" in the film 'Padmavati'.
Summary:
A 27-year-old UK-based hairdresser who is HIV positive has been found guilty of deliberately infecting five men with HIV and attempting to infect another five after meeting them on gay dating app Grindr.
Summary:
Speaking about future armoured vehicles, Army Chief Bipin Rawat on Wednesday said the battle tanks must be capable of operating on the western and the northern border.
Summary:
Himachal Pradesh Congress has expelled 23 leaders, including former state NSUI Chief Yadupati Thakur, for anti-party activities during the recent Assembly polls, Congress's state President said.
Summary:
The Directorate of Revenue Intelligence (DRI) has busted an illegal drug manufacturing unit in Hyderabad's Bolarum and seized 179 kilograms of recreational drug ephedrine worth over â¹5 crore.
Summary:
Ahead of the panchayat elections in 2018, CM Mamata Banerjee-led West Bengal government has decided to distribute cows among families living in panchayat areas across the state.
Summary:
The Western Railway (WR) has proposed an estimated â¹125-crore plan to install CCTV cameras inside Mumbai's local trains and a talk-back system in the women's compartments, according to Railways officials.
Summary:
The court added that sanitary napkins were a necessity and there cannot be any explanation for taxing them and exempting other items.
Summary:
A video showing two policemen thrashing the owner and two customers of a hotel in Bengaluru's RT Nagar has gone viral on social media.
Summary:
The video shows the constable, who was in uniform, throwing notes at a woman who is dancing at the event.
Summary:
The swimsuit was worn by Sacha Baron Cohen in the 2006 movie 'Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan'.
Summary:
The remains of a 1,700-year-old sleeping Buddha sculpture have been unveiled in Khyber Pakhtunkhwa, Pakistan as part of an initiative aimed at encouraging tourism.
Summary:
American researchers have claimed that Antarctica's Don Juan Pond, which can remain liquid until -50úC due to its salt content, is fed by a regional deep groundwater system and not from moisture seeping down from valleys, as previously suggested.
Summary:
The bill had increased reservation for OBCs in Rajasthan to 26%.
Summary:
Inshorts is looking to hire full-time graphic designers and photo-editors who can create stunning visuals which are the most important part of our news shorts.
Summary:
OnePlus 5T goes on 'Early Access Sale' on November 21 from 4.30 pm on amazon.in & oneplusstore.in.
The event will also be live-streamed on the official OnePlus site.
Summary:
Adding that the CM Kejriwal-led Delhi government wanted to procure new buses, the AAP alleged that the Centre did not allot land for bus depots.
Summary:
Punjab Chief Minister Amarinder Singh on Wednesday said that farmers cannot be expected to give up stubble burning completely until they are provided with viable solutions.
Summary:
Fijian cricketer Ilikena Lasarusa Talebulamaineiilikenamainavaleniveivakabulaimainakulalakebalau, also known as IL Bula, has the longest known last name for any first-class cricketer.
Summary:
US-based researchers have used the CRISPR/Cas9 gene-editing technique to produce yellow, three-eyed and wingless mosquitoes.
Summary:
The Bengaluru City Police's Twitter account recently shared a photo collage featuring the superhero character Thor to convey the importance of wearing a helmet while riding to work.
Summary:
It said that Roy was enlisted in a government notification pertaining to disqualification of directors who have defaulted in filing financial results for preceding three fiscals.
Summary:
Reacting to filmmaker Karan Johar launching Sridevi's daughter Jahnvi Kapoor, a Twitter user wrote, "All Hail the Baap of Nepotism!!
Karan Johar...Lage raho." Another user wrote, "So generous, launching...outsiders, AGAIN.
Summary:
The outfit had to install Godse's idol inside their office after the district authorities refused to allot land for the shrine.
Summary:
Addressing a joint press conference, Delhi CM Arvind Kejriwal and Haryana CM Manohar Lal Khattar on Wednesday said that they agreed on the need for action aimed at preventing reoccurrence of smog in 2018.
Summary:
Indrani Mukerjea, the prime accused in her daughter Sheena Bora's murder, has alleged that her husband, Peter Mukerjea, may have abducted Sheena in 2012, making her untraceable and subsequently destroying all evidence.
Summary:
A 17-year-old girl was allegedly gangraped at a lodge by four men, including the lodge owner, over 10 days in Bengaluru's Whitefield area.
Summary:
The â¹7,502-crore project, which would connect south Mumbai to the western suburbs, is expected to be completed by 2020.
Summary:
Bihar CM Nitish Kumar on Wednesday announced that all jails across the state would have video conferencing facility by 2018.
Summary:
He added that the refugees had fled during an armed conflict between militant group Arakan Army and Myanmar's Army.
Summary:
Majumdar had lent his voice to the song and later learned that the portion with his voice had been removed.
Summary:
The National Green Tribunal on Wednesday pulled up the Amarnath Shrine Board for not providing proper infrastructure facilities to pilgrims.
There are no proper facilities for toilets...You are giving priority to commercial activities over pilgrims," the NGT said.
Summary:
Former J&K CM and National Conference chief Farooq Abdullah has said that Pakistan was not weak to allow India to take Pakistan-occupied Kashmir (PoK).
Summary:
On Jharkhand's 17th Foundation Day, President Ram Nath Kovind on Wednesday launched schemes worth over â¹3,400 crore in the state.
Summary:
A US-based study on 20 volunteers claimed to be first of its kind has shown that electrical stimulation of the brain's hippocampus, responsible for memory and learning, can improve memory-related tasks' performance by up to 30%.
Summary:
Last year, the Pope ordered auction of cars used during a Polish trip to help Syrian refugees.
Summary:
US President Donald Trump on Tuesday shared a 45-second video, featuring slow-motion footage of his 12-day tour to 5 Asian nations, on Twitter.
The video opens with a reverse shot of people cycling and includes a series of slow-motion shots of Trump walking, waving and handshaking.
Summary:
He said directions had been issued to ensure such grievances are resolved within 30 days of their receipt.
Summary:
An international research on heat island effect on tree growth has found that trees in metropolitan areas have been growing faster than in rural areas since the 1960s.
Summary:
UIDAI has approved the blueprint presented by telcos to operationalise three new modes for Aadhaar-mobile linking from December 1.
Summary:
The AAP-led Delhi government has spent only â¹93 lakh out of over â¹780 crore collected as environment cess till September 2017, an RTI response has revealed.
Summary:
Proposals of injecting aerosols in atmosphere to reduce global warming by imitating volcanic eruptions could have a devastating effect on storms or drought-prone regions, a UK-based study has found.
Summary:
Eating out at restaurants is set to get cheaper from today as the revised GST levy of 5% on AC and non-AC restaurants takes effect.
Summary:
Rajput organisation Karni Sena has called for a Bharat Bandh on December 1 if Sanjay Leela Bhansali's 'Padmavati' releases on that date.
Now, we don't want any pre-screening of the movie," said a member of the organisation.
Summary:
Bradman hit 172 runs in the first innings, becoming the first Australian to score 100 first-class centuries.
Summary:
Earlier, an appeals court had denied Lee's compensation plea citing a government investigation.
Summary:
Microsoft Founder Bill Gates has said that if humans aren't careful, technology will "accentuate" the difference between the well off and the poor.
Summary:
The US military can refuse an order by the country's President to launch a nuclear strike if they find it to be illegal, a former commander of the US Strategic Command has said.
Summary:
Actress Zaira Wasim, known for films like 'Dangal' and 'Secret Superstar', was presented with the National Child Award for Exceptional Achievement 2017 in the field of Performing Arts by President Ram Nath Kovind on Tuesday.
Summary:
While talking about actors falling in love with each other on the sets of his films, filmmaker Karan Johar said that it happens all the time.
Summary:
Karnataka Governor VR Vala on Tuesday presented Hoysala and Keladi Chennamma Bravery Award to seven children on the occasion of Children's Day for showing extraordinary courage and saving the lives of others.
Summary:
Late boxer Muhammad Ali's daughter Laila, who was into professional boxing between 1999 and 2007, has said she was advised by people to model as she was "too pretty to box".
Summary:
Twenty-three-time Grand Slam champion Serena Williams will get married to her fiancé, Reddit Co-founder Alexis Ohanian, on Thursday.
Summary:
The victim had dozed off during the journey and later found herself at an unknown place where they raped her.
Summary:
V Thiagarajan, CBI investigating officer in Rajiv Gandhi's assassination case, submitted an affidavit in the Supreme Court, saying he omitted crucial details from the confession of AG Perarivalan, who was sentenced to life in prison.
Summary:
The new recruits will be inducted into the force next month.
Summary:
Stating that he will hold talks with all stakeholders in the dispute, the Art of Living founder said only dialogue can solve this issue.
Summary:
Following a review of Jammu and Kashmir's security situation, the government has directed security forces to eliminate those indulging in violence in the state, reports said.
Summary:
Australian spinner Nathan Lyon accidentally burnt a toast, setting off the fire alarm during his team New South Wales' first-class match against Queensland on Wednesday.
Summary:
The state was carved out of southern Bihar in 2000 after several years of agitation by the tribal people of the region.
Summary:
After Virender Sehwag posted a tweet revealing that former pacer Ashish Nehra will commentate in the upcoming India-Sri Lanka Test series, a user tweeted, "Not a better News than this ...
Summary:
"The city was named 'Indur' because of the ancient Indreshwar Mahadev Temple," Dedge claimed.
Summary:
The Bruhat Bengaluru Mahanagara Palike (BBMP) has detected over 3,000 irregularities in its accounts while conducting an audit.
Annual audits were not conducted for several years until two years ago, BBMP Joint Commissioner (Finance) Venkatesh said.
Summary:
Zoomcar will deploy 20 units of Mahindra's e2O P8 electric cars and two charging units in Mysuru, as part of the deal.
Summary:
Jacqui Lambie, an independent senator from the island state of Tasmania, Australia announced her resignation on Tuesday over the issue of dual citizenship.
Summary:
They said that the party had fallen foul of a Macron personality cult.
Summary:
This comes after Trump taunted Kim Jong-un during his Asia tour.
Summary:
The family's net worth rose by $19 billion, making it the biggest gainer in dollar and percentage terms.
Summary:
This comes after Apple refused a request for an iOS version of TRAI's DND app that allows users to block unsolicited calls and messages.
Summary:
The central government has decided to implement the Bharat Stage VI grade auto fuel norms in Delhi by April 2018, preponing it from 2020, in a bid to curb pollution in the national capital.
Summary:
It is a recreated version of Mohammed Rafi's 'O Meri Mehbooba' from the 1977 film 'Dharam Veer'.
Summary:
Virat Kohli reportedly asked officials to chop off a part of his bat's handle to improve his front foot drive, ahead of the first Test against Sri Lanka.
Summary:
Mozilla had switched from Google to Yahoo as the default search provider for $300 million a year in 2014.
Summary:
The boy's mother claimed that her son was able to unlock her phone in the first attempt.
Summary:
Alibaba-owned UC Browser's app has been removed from the Google Play Store for allegedly sending data to remote servers in China.
Summary:
Tencent also reported that its online games revenues grew by 48% during the quarter.
Summary:
Domain name 'Ethereum.com' has been listed for sale on a marketplace called Uniregistry Market for about $10 million.
Summary:
E-commerce major Amazon has invested over â¹2,900 crore into its Indian subsidiary Amazon Seller Services, according to filings.
Summary:
Further, it has been ranked as the world's 24th most expensive retail location.
Summary:
US Defence Secretary James Mattis has claimed that the United Nations allowed the US to intervene in Syria in the fight against ISIS.
Summary:
Airbus announced its single-biggest commercial-plane deal ever, securing an order valued at $49.5 billion for 430 aircraft from its A320neo family.
Summary:
Infosys Co-founder Narayana Murthy has said that "all is well" at Infosys under the chairmanship of Nandan Nilekani.
Summary:
Last year, the company had organised a similar three-day shopping event making â¹115 crore in sales.
Summary:
Commonwealth Games gold medal-winning wrestler Babita Phogat will be making her TV acting debut in the show Badho Bahu, where she will be seen playing herself.
Summary:
While referring to the song 'Ghoomar' from 'Padmavati', Heena Singh Judeo, a member of Jashpur's royal family, said that no Rajput queen ever danced in front of anyone and filmmaker Sanjay Leela Bhansali shouldn't play with history.
Summary:
Sidharth Malhotra, while talking about his film 'Ittefaq' which is a remake of Rajesh Khanna's 1969 film of the same name, said he was apprehensive about being compared to the actor.
He further said his apprehensions went away when he realised his film is different from the original.
Summary:
Filmmaker Rohit Shetty, while speaking about the protests against Sanjay Leela Bhansali directorial 'Padmavati', said that he went through the same thing during his 2015 film 'Dilwale'.
Summary:
On the occasion of Children's Day, President Ram Nath Kovind on Tuesday presented the National Child Awards at Rashtrapati Bhavan.
"By awarding children, we recognise and encourage their talent and potential for nation building," he added.
Summary:
Haryana Minister Rao Narbir Singh on Wednesday said his advice to the father of the murdered Ryan International School student was politicised to tarnish his image.
Summary:
Karnataka Health Minister Ramesh Kumar has said that he will resign if the Karnataka Private Medical Establishment (Amendment) Bill adversely affects poor.
Summary:
Video game developer EA's 'Battlefront II' response to character unlock complaints has become the most downvoted comment in Reddit history.
Summary:
The program connects users with mentors within LinkedIn's messaging service for career counselling and feedback.
Summary:
New Zealanders have donated $2 million (â¹13 crore) in just over 24 hours to save an 80-year-old chocolate factory in the city of Dunedin.
Summary:
Sachin debuted against Pakistan in Karachi, aged 16 years 205 days, becoming the youngest Indian to play a Test.
Summary:
The posters of actress Sridevi's daughter Janhvi Kapoor's Bollywood acting debut titled 'Dhadak' have been unveiled.
Summary:
Dismissing a plea demanding probe into an alleged case of bribery against senior judges, the Supreme Court said that only Chief Justice of India can assign cases to a bench, even if there were allegations against him.
Summary:
While wishing success for all mediation efforts, Uttar Pradesh Governor Ram Naik on Wednesday said the Supreme Court will have the final say on the Ayodhya issue.
Summary:
Madras High Court has imposed a fine of â¹10,000 on a litigant seeking removal of the word 'Mahatma' from Indian currency, for wasting the court's time.
Summary:
Former Indian wicketkeeper Nayan Mongia's 18-year-old son Mohit slammed 260 runs off 266 balls for Baroda against Kerala, breaking his father's nearly 30-year-old record of the highest score by a Baroda batsman in the Cooch Behar Trophy.
Summary:
Billionaire Warren Buffett's Berkshire Hathaway has reduced its IBM stake by 32% in the third quarter to about 37 million shares worth $5.37 billion, according to a regulatory filing.
Summary:
Japanese researcher Hiroshi Nishimasu has shared a video which shows the CRISPR/Cas9 gene-editing technique to cut through a DNA strand.
Summary:
It further said that Trump is afraid of Mexicans.
Summary:
One of the six new ferries in Australian state New South Wales is being named Ferry McFerryface after a public vote.
Summary:
India's largest lender State Bank of India has reduced its total employee strength by 10,584 in the six-month period after its merger with its five associate banks and Bharatiya Mahila Bank.
Summary:
India's telecom sector lost about 75,000 employees in the last one year due to competition among operators, tower firms and vendors, according to reports.
Summary:
"Maybe it was banned for not having enough item songs," commented a user.
Summary:
Akshay Kumar has shared pictures with Sonam Kapoor and Radhika Apte from the sets of his upcoming film 'PadMan'.
Summary:
This comes after Karan reconciled with Kajol following their fallout in 2016.
Summary:
A suitcase containing over 40 gems worth ã1 million (nearly â¹9 crore) was stolen from a luggage rack on a train at Euston station in London recently.
Summary:
After US President Donald Trump tweeted condolences about a wrong US shooting, a Twitter user wrote, "At least get your mass shootings right, Mr President.
Summary:
A man was shot at and injured, while attempting to scale the wall of high-security Hindon Indian Air Force base in Uttar Pradesh on Tuesday night.
Summary:
Talking about his workload ahead of the first Test against Sri Lanka, India captain Virat Kohli said that he will ask for rest for when he needs it.
Summary:
Sorabji completed a law course at Oxford University in 1894, becoming the first Indian to attend a British university.
Summary:
Iran's Olympic weightlifting champion Kianoush Rostami will auction his gold medal, which he won at the 2016 Rio Games, to raise money for the victims of Sunday's earthquake.
Summary:
This is to ensure the trust of consumers in the food that they intake, FSSAI officials said.
Summary:
Karnataka Lokayukta will need six years to clear existing pending cases if the vacancies remain unfilled, reports have said.
Summary:
FICO Eataly World, a theme park for food lovers, opened in the Italian city of Bologna today.
Summary:
There will be three sittings of 10-12 dogs per session at 'Poochi Sushi'.
Summary:
Uber has been sued in the United States by two women alleging sexual assault by the cab-hailing startup's drivers.
Summary:
China and US-based researchers simulating the interaction of iron and water under the extreme conditions of Earth's core-mantle boundary have found that the process could have led to the creation of life.
Summary:
SP Jain Institute of Management & Research's Post Graduate Diploma in Management (PGDM) is a two-year, full-time residential program and has been Ranked 4th recently by Business Today.
Summary:
Kerala Transport Minister Thomas Chandy on Wednesday submitted his resignation after Kerala High Court dismissed his petition for quashing land encroachment allegations against him.
Summary:
A necklace bearing the largest D-Colour Flawless diamond ever auctioned fetched $33.7 million (approximately â¹220 crore) in Geneva on Tuesday, auction house Christie's has announced.
Summary:
The Sindh Board of Film Censors hasn't cleared the film yet and it's waiting for the decision of Pakistan's Censor Board.
Summary:
I-T Department has recovered luxury cars worth over â¹5 crore from VK Sasikala's aide Sukesh Chandrasekhar who had allegedly attempted to bribe the Election Commission for party symbol.
Summary:
Election Commission has asked BJP to drop the word "Pappu" from a campaign advertisement that apparently targets Congress Vice-President Rahul Gandhi.
Summary:
Threatening an India Today reporter for airing a conversation between underworld don Dawood Ibrahim and his aide, one of Dawood's gang members has warned of an attack bigger than the 1993 Mumbai serial blasts.
Summary:
The Haryana government on Tuesday prohibited journalists from getting too close to Chief Minister Manohar Lal Khattar citing security reasons.
Summary:
The father of murdered Ryan International School student on Wednesday moved the Juvenile Justice Board demanding that the 16-year-old accused student be tried as an adult.
Summary:
Rejecting Sri Sri Ravi Shankar's offer to resolve the Babri Masjid dispute, Sunni Board and All India Muslim Personal Law Board on Wednesday said the spiritual leader does not have a legal standing on the issue.
Summary:
AAP-led Delhi government on Tuesday asked the Supreme Court whether the Constitution of India or any other Parliamentary law declared Delhi as India's capital.
Summary:
The suit claimed that Tesla didn't investigate a complaint by Vaughn stating he was called the "n-word" by managers and co-workers.
Summary:
High blood pressure has been redefined after 14 years by the American Heart Association, which said the disease should be treated sooner, when it reaches 130/80 mm Hg, not the previous limit of 140/90.
Summary:
An all-women panel will chair the annual meeting of World Economic Forum (WEF) for the first time in the organisation's nearly 50-year history in Switzerland next year.
Summary:
A 26-year-old woman who moved from Scottish capital city Edinburgh to North Ronaldsay island seeking a quiet life has ended up with nine jobs.
Summary:
Indian drugmaker Lupin was issued a warning letter by the US Food and Drug Administration (FDA) for repeated quality violations at its Goa and Indore's manufacturing facilities.
Summary:
Rajput organisation Karni Sena's spokesperson has said the vandalism caused by the group at a mall in Kota over the screening of Padmavati's trailer is their way of giving it back to the film's team.
Summary:
Actors Kamal Haasan and Rajinikanth were announced as the winners of the NTR National Film Award for 2014 and 2016, respectively, by the Andhra Pradesh government on Tuesday.
Summary:
A video showing Uttar Pradesh Cabinet Minister Nand Gopal Gupta receiving a foot massage from two BJP workers has surfaced online.
The BJP MLA was reportedly tired after campaigning for the Uttar Pradesh civic polls in Allahabad.
Summary:
The director of a centre for the differently-abled in Madhya Pradesh's Khandwa has been arrested for allegedly raping two disabled minor girls who were part of the establishment.
Summary:
In a first, the government will invite hackers to launch attacks on models of critical infrastructure networks such as metros, airports, nuclear power plants, banking, and transportation.
Summary:
Party officials said they will hold the rally even if they fail to secure permission as people are enthusiastic to hear Thackeray.
Summary:
Police in north and south Goa districts have been barred from using cellphones on duty and would be penalised if found doing so.
Summary:
Former actor and Karnataka Congress MLA MH Ambareesh on Tuesday reportedly skipped the state assembly session in Belagavi and instead attended a music launch party.
Summary:
Kota-based 59-year-old Anand Singh Shekhawat and his 58-year-old wife Krishna biked over 6,000 kilometres to take part in an open national swimming competition in Mysore.
I could not win a medal because of stiff competition."
Summary:
The clear whiskey retained its smell though, said Nair.
Summary:
"It is a personal and official insult...I only answer to the Filipino.
I will not answer to any other bullshit," he said.
Summary:
The Zimbabwean Army has taken the country's President Robert Mugabe in custody and deployed its troops across capital Harare after Mugabe accused the head of the military of treason.
Summary:
Super 30 Founder Anand Kumar has received this year's Rashtriya Bal Kalyan Award by President Ram Nath Kovind for his contributions in the field of education.
Summary:
The AAP-led Delhi government on Tuesday urged the National Green Tribunal (NGT) to direct neighbouring states in the National Capital Region to implement the Odd-Even car rationing scheme.
Summary:
After West Bengal won Geographical Indication registration for Rosogolla, the Odisha government has asserted that 'Rasagola', the Odia variation of the sweet, originated in the state over 800 years ago.
Summary:
Slamming Prime Minister Narendra Modi over demonetisation, former Finance Minister Yashwant Sinha has compared him to 14th century Delhi Sultan Muhammad-bin-Tughluq, known for introducing non-precious metal currency.
Summary:
Senior Gujarat Congress leader Shaktisinh Gohil has claimed that Patidar leader Hardik Patel has Sardar Patel's DNA.
Summary:
Australia-based researchers have discovered living specimens of stromatolites within a World Heritage Area in Tasmania, that are among the oldest evidences of life on Earth having first appeared about 3.7 billion years ago.
Summary:
In 2017, up to 60 collisions were produced at each crossing, setting new records.
Summary:
A United Nations human rights committee on Tuesday adopted a resolution condemning North Korea for "diverting its resources into pursuing nuclear weapons and ballistic missiles over the welfare of its people".
Summary:
Copenhagen is home to about 3,000 such benches, which cost around â¹83,000 each and were first introduced in the 1880s.
Summary:
Roughly 12,000 tourists visit a garbage treatment plant annually in Osaka, Japan, confusing the waste incinerator for Universal Studios Japan theme park.
Summary:
BJP leader Subramanian Swamy has slammed actress Deepika Padukone for her comment that India has regressed as a nation while commenting on the 'Padmavati' row.
Summary:
Speaking about the row on Sanjay Leela Bhansali's upcoming film 'Padmavati', actor Farhan Akhtar said, "I genuinely believe that we should stop treating our audiences as children." "We should allow them to grow, allow them to be exposed to different kind of ideas, cultures, to counter thinking," he added.
Summary:
Aamir Khan consumed a bottle of vodka to shoot for the song 'Tere Ishq Mein Nachenge' in the 1996 film 'Raja Hindustani'.
Summary:
He added that when the neighbour complained to his mother, she instead questioned the neighbour for watching the adult movie.
Summary:
Former Indian skipper Mahendra Singh Dhoni took to Instagram to share a video of himself training his dog Zoya at his farmhouse in Ranchi.
Summary:
Summary:
BJP National President Amit Shah on Tuesday claimed that the party will form the government in Gujarat by winning over 150 seats in the state assembly elections.
Summary:
Gujarat CM Vijay Rupani said that once during a rally, he had stopped his speech midway on hearing the sound of Azaan from a nearby mosque and resumed once it ended.
Summary:
To clean the Ulhas and Waldhuni rivers in Maharashtra, authorities have decided to set up a sewerage network and effluent treatment plants in areas that release untreated waste into the rivers.
Summary:
A class 9 student of a private school in Tamil Nadu's Chettipalayam has alleged that the school levies a â¹300 fine on students for speaking in Tamil.
Summary:
The men reportedly barged into the school and dragged the girl to the kitchen and forced her at knife-point to strip.
Summary:
The synthetic cells were however engineered with the additional function of killing cancer.
Summary:
Civil Aviation Secretary RN Choubey on Tuesday said the government wants to complete the stake sale in Air India "very very fast," adding, "On that we are committed.
Summary:
At least four people were killed and 10 others, including two children at an elementary school, were injured after a gunman opened fire at multiple locations in the US state of California on Tuesday.
Summary:
India have already qualified for the Asian Cup and will play their last group match against Kyrgyzstan in March next year.
Summary:
Filmmaker Karan Johar has launched his first radio show 'Calling Karan' for the station Ishq 104.8 FM.
Summary:
Telangana CM K Chandrashekar Rao on Monday announced that electricity will be supplied 24*7 to all sectors across the state from January 1, 2018, "as a new year gift".
Summary:
Four-time world champions Italy on Monday failed to qualify for the FIFA World Cup for the first time in 60 years.
Summary:
Summary:
Union Environment Minister Harsh Vardhan on Tuesday said people don't need to panic over pollution in Delhi as it is not an emergency situation like the Bhopal gas tragedy of 1984.
Summary:
The Supreme Court on Tuesday directed the Maharashtra government to pay â¹100 crore for the protection and restoration of Ulhas and Waldhuni rivers in the state's Thane district.
Summary:
Indian PM Narendra Modi and US President Donald Trump pledged that the two countries should have the "world's greatest militaries".
Summary:
IndiGo has moved the Delhi High Court to challenge Delhi airport operator DIAL's decision asking the airline to partially shift operations to Terminal 2 from Terminal 1, an official said.
Summary:
He also added that even though he had complained with Uber, the startup has not taken any action for the same.
Summary:
Scientists correlated the rifting to CO2 levels, which determines whether the Earth is in greenhouse or ice age state.
Summary:
A majority of Australians have voted in favour of legalising same-sex marriage in a two-month-long voluntary government survey, paving the way for legislation of the unions by the end of 2017.
Summary:
The video recreates films while summarising their plots within 10-20 seconds.
Summary:
Vidya Balan has said Indian culture wants people to be sexual only in the institution of marriage and for reproduction.
She further said the hypocrisy related to sex needs to go away and children need to know that sex is a feeling and not a taboo.
Summary:
Actress Sridevi has said she doesn't remember doing more than one take for any film.
Sridevi further said she does not want to do films just because she has to.
Summary:
Actress Sonam Kapoor was trolled on social media for slamming spiritual leader Sri Sri Ravi Shankar for calling homosexuality a "tendency" which is "not permanent".
Summary:
Hill bowled Australia's Nat Thomson for one run to claim Test cricket's first wicket.
Summary:
Kohli had missed Shami's delivery which went out of the nets and hit the crew member.
Summary:
Indian golfer Aditi Ashok has qualified for the season-ending event of the LPGA Tour, CME Group Tour Championship, becoming the first Indian to qualify for the competition.
Summary:
After seven days of being categorised as 'Severe', the air quality in Delhi-NCR on Tuesday improved to 'Very Poor' category, which is considered normal at this time of the year, weather experts have said.
Summary:
Despite a ban by the Environment Pollution (Prevention and Control) Authority (EPCA), at least 60,000 trucks were allowed to enter Delhi on Monday.
Summary:
A 22-year-old engineer was burnt alive and her mother and sister were set on fire on Monday by a man who police suspect was her stalker.
Summary:
Goa CM and former Defence Minister Manohar Parrikar on Tuesday said that being a Defence Minister is a thankless job.
Summary:
The scam took place between 2013 and 2017 when Doley had served as the state Labour Commissioner.
Summary:
The initial proposals from 17 players seek to connect a total of 126 airports and helipads.
Summary:
Tramadol was one of the drugs banned by the UAE in 2010 for its addictive nature.
Summary:
Hundreds of Christians in China's Yugan county have reportedly swapped posters of Jesus for portraits of President Xi Jinping.
Summary:
The image was later deleted by the Ministry which said that an employee had mistakenly attached the photo.n
Summary:
The OnePlus 5 has become the top-selling premium smartphone in India, capturing 24.75% market share, according to International Data Corporation's latest Quarterly Mobile Phone Tracker 2017 Q3.
Summary:
The teaser of Nawazuddin Siddiqui starrer upcoming crime thriller 'Monsoon Shootout' has been released.
Summary:
The watch, a prototype, was made in 1947 and is the only known tourbillon Omega wristwatch in existence.
Summary:
Karnataka Assembly's winter session started with a strength of around 10%, which is 22 MLAs, even as the minimum number required for the proceedings to start is 24 members.
Summary:
UPSC also said that representations after seven days would not be entertained "under any circumstances".
Summary:
In a fresh review petition before the National Green Tribunal, the Delhi government has requested exemption of two-wheelers and women drivers for one year from odd-even, or till 2000 additional buses are engaged.
Summary:
Responding to Delhi CM Arvind Kejriwal's requests for a meeting to discuss pollution, Punjab CM Amarinder Singh said a meeting between the two doesn't make sense unless the Centre and other Chief Ministers are involved.
Summary:
Bengaluru-based food delivery startup Swiggy saw its revenues rise 560% to â¹132 crore in the financial year 2016-17, according to filings.
Summary:
China has launched the world's first fully electric cargo ship which can travel up to 80 kilometre with 2000-tonne cargo after a two-hour charge.
Summary:
The Income Tax Department is matching "tax profiles" of property registrations of above â¹30 lakh under the Benami Transactions Act. Central Board of Direct Taxes Chairman Sushil Chandra said the I-T department has attached 621 properties till now, including some bank accounts, and the amount involved is about â¹1,800 crore.
Summary:
The company's revenue declined 19.4% to â¹6,650.34 crore during the quarter.
Summary:
About 60% of taxpayers identified under 'Operation Clean Money' have filed their tax returns, Central Board of Direct Taxes Chairman Sushil Chandra has said.
Summary:
Switzerland has topped the list of average wealth per adult with $537,600 (â¹3.5 crore), according to the 2017 Credit Suisse Global Wealth Report.
Summary:
Akshay Kumar and Isha Koppikar were among the Bollywood celebrities who took to social media to share pictures with their children on the occasion of Children's Day on Tuesday.
Summary:
The former actress, who's 26 now, said she has hired a lawyer to take action against Sizemore and her parents.
Summary:
Members of the Rajput organisation Karni Sena vandalised a mall in Rajasthan's Kota as the cinema hall in the mall premises screened the trailer of Sanjay Leela Bhansali's 'Padmavati'.
Summary:
The students would also be given 30 books as part of their training.
Summary:
India is set to test-fire supersonic cruise missile BrahMos from a Sukhoi-30MKI fighter jet in a bid to improve its ability to carry out deep surgical strikes.
Summary:
Japan will simplify its visa rules for Indians from January 2018 and issue multiple-entry visa for short-term stays, the Japanese embassy said on Tuesday.
Summary:
Indian cricketer Rohit Sharma took to Twitter to share a picture of himself wearing the Spanish football team's home jersey for the 2018 FIFA World Cup, which will be held in Russia.
Summary:
India were the champions in all the previous editions of the tournament (2012, 2014 and 2016).
Summary:
Mumbai and Delhi-based customer engagement startup EasyRewardz has raised $2 million in a Series A funding round led by TransContinental Venture Fund.
Summary:
Researchers claimed the technology could improve functional protein yields by 100-fold and protect proteins within engineered cavities that are less than 10,000 times the width of a human hair.
Summary:
"I wasn't traumatised...by the next day it had become an anecdote," Goodwin said.
Summary:
The UK's Manchester Crown Court has sentenced a 30-year-old Indian-origin store worker to nearly eight years in jail for raping a woman who visited the shop to charge her mobile phone.
Summary:
Over 6 lakh Rohingyas have fled Myanmar since a military crackdown on the minority group started in August.
Summary:
UK Prime Minister Theresa May has accused the Russian government of trying to "weaponise information" by meddling in elections and planting fake stories in an attempt to undermine western institutions.
Summary:
The tribunal had earlier asked the government if the scheme was "just a stunt".
Summary:
The Madras High Court on Monday held that the distance from where devotees shall offer prayers to deities in temples in the state should be same for all whether they paid for darshan or not.
Summary:
Coach Ravi Shastri has backed MS Dhoni, saying those criticising the two-time World Cup-winning former skipper should first look back at their own careers.
Summary:
Ex-Australian wicketkeeper Adam Gilchrist had put a squash ball inside his left glove when he slammed the highest individual score in a World Cup final in 2007 against Sri Lanka.
Summary:
State-owned helicopter carrier Pawan Hans has said that helicopters meant to aerially sprinkle water to dissipate smog in Delhi would not be able to operate due to low-visibility.
Summary:
Summary:
Several environmental organisations including Greenpeace have sued Norway over its oil drilling in the Arctic.
Summary:
Stressing on religious intolerance and human rights violations in Pakistan, the US has asked Pakistan to abolish its blasphemy laws at the Universal Periodic Review (UPR) held in Geneva on Monday.
Summary:
Saudi Arabia's Ministry of Trade and Industry on Tuesday officially declared yoga as a sport.
Summary:
India has 2.45 lakh millionaires, while the total household wealth of the country is $5 trillion, according to a Credit Suisse report.
Summary:
Veteran actress Shyama, known for her films like 'Aar Paar' and 'Barsaat Ki Raat' passed away on Tuesday at the age of 82.
Summary:
Actress Deepika Padukone has said she never thought that she could be a heroine in Sanjay Leela Bhansali's films.
Summary:
Actor Rajkummar Rao, on being asked about his marriage plans with girlfriend Patralekha, said, "Marriage will happen for sure, but I don't know when." "Both of us want to focus on our respective careers, and we're not thinking about it [right now]," he added.
Summary:
An 1889 canvas by Vincent van Gogh, "Laboureur dans un champ", has fetched $81.3 million in an auction at Christie's in New York.
Summary:
Union Minister Nitin Gadkari has suggested that human urine banks be set up to produce urea in abundance and minimise fertiliser import.
Summary:
Rajasthan Police has appointed its first transgender constable, Ganga Kumari, after the state High Court's directive.
Summary:
The man claimed that Shinde, who was supporting Swastik Kurla, abused him and hit him in the head after which he was taken to a hospital, where he received stitches.
Summary:
Father of murdered seven-year-old Pradyuman Thakur has alleged that Haryana Minister Rao Narbir Singh had told the family not to demand a CBI probe.
Summary:
The University Grants Commission has decided to revise syllabus for the National Eligibility Test for the first time in 10 years, reports said.
Summary:
Following the Bhopal gangrape case, the Madhya Pradesh government has decided to shut all liquor shops near sensitive areas such as schools, girls' hostels, and religious places.
Summary:
A youngster in Kerala was injured when an elephant punched him when he tried to kiss it after feeding it bananas.
Summary:
Former cricketer Rahul Dravid has been named as the ambassador of Bengaluru FC for the upcoming Indian Super League (ISL) season.
Summary:
A 14-year-old boy has been arrested on charges of sexually assaulting a hen in Pakistan's Punjab province.
Summary:
WikiLeaks urged US President Donald Trump's son Donald Trump Jr to make its founder Julian Assange the Australian ambassador to the US after Trump's election.
Summary:
The World Baloch Organisation has put up 'Free Balochistan' posters on more than 100 buses in London as part of a campaign against Pakistan's alleged human rights abuses in the province.
Summary:
Authorities in the Mexican state of Sonora seized a van-mounted cannon used to propel packages of marijuana across the country's border with the US.
Summary:
A 15-year-old UK boy who stabbed his teacher to death in 2014 had boasted on Facebook about killing her for ã10, an investigation into her death revealed.
Summary:
US' Food and Drug Administration has approved the first-ever drug which uses digital tracking to record if the medication was taken.
Summary:
Use trucks," it reportedly said.
The audio clip was transmitted over Telegram Messenger from Afghanistan, police officials said.
Summary:
Tan quit his day job as a lawyer in 2005 to set up Razer with his online gaming friend Robert Krakoff.
Summary:
In the lawsuit, Vaughn claims he was routinely called the "n-word" by supervisors and co-workers after he began working at the Fremont factory in California.
Summary:
Brenda Gentry won $5,000 weeks ago, followed by a $500 lottery win as well as the $5 million jackpot in the 50X the Money lottery.
Summary:
The world's richest 1% have as much wealth as the bottom 50%, according to a Credit Suisse report.
Summary:
While defending actress Kajol, who was trolled on social media for her "selfie" with Kamal Haasan and Amitabh Bachchan, Haasan tweeted, "Please spare Kajolji." Twitter users had pointed out that the photo Kajol shared didn't qualify as a selfie.
Kamal added, "I (am) not a fan of selfies.
Summary:
Soha Ali Khan and Kunal Kemmu, who became parents to baby girl Inaaya Naumi Kemmu on September 29, took to social media to share the first picture of their daughter.
Summary:
Kirron Kher, who portrayed Abhishek Bachchan's mother in 'Dostana', has said that she was supposed to play a gay rights activist in the film's sequel, which had been planned but didn't materialise.
Summary:
Arresting two people, the police said man-made drug Flakka was believed to be the cause of the erratic behaviour.
Summary:
The Kerala High Court on Tuesday remarked that it would be better if state Transport Minister Thomas Chandy stepped down from his post in wake of the land grab accusations against him.
Summary:
President Ram Nath Kovind on Tuesday said that the introduction of Goods and Services Tax (GST) was a milestone and the new regime has reduced barriers between states, creating a more formal economy.
Summary:
When the girl's mother returned, she found her crying and bleeding from the private parts and took her to the hospital.
Summary:
A recent article in The New York Times suggested a link between nationalism and sari, which NYT called Hindu attire being aggressively promoted by the BJP-led government.
Summary:
A video footage shows two powerboats colliding during the Key West World Championship in Florida, causing one to leap into the air before flipping over and crashing into the water.
Summary:
The Railways is planning to incorporate GPS-enabled fog safety devices in trains to alert loco pilots about approaching signals and ensure the timely running of trains in winters.
Summary:
This comes after an inmate alleged that Ram Rahim was getting VIP treatment in the jail and was never seen doing any work.
Summary:
Nine-time sumo grand champion Mongolia's Harumafuji has apologised for injuring fellow wrestler Takanoiwa with a beer bottle in a drunken brawl.
Summary:
Technology giant Apple may introduce the Face ID feature to its smart portable speaker 'HomePod' by 2019, according to reports.
Summary:
"I had asked team members to be ready for an uncertainty in the worst case event of the salary payments being delayed," he said.
Summary:
Singapore-headquartered fintech startup Active.Ai has raised $8.25 million in a Series A funding round led by Vertex Ventures, CreditEase and Dream Incubator.
Summary:
Gravitational lensing uses the gravity of a star or galaxy in between to magnify the light from the object.
Summary:
Authorities in Brazil's Mato Grosso do Sul state seized six tons of marijuana worth over â¹10 crore from a fuel truck.
Summary:
Businessmen from the Middle East, Australia, and Greece have asked Russian aerospace and defence company Tupolev to turn the Tu-160 strategic bomber into a private supersonic jet.
Summary:
Accusing the US of pretending to fight terrorism in the Middle East, the Russian Defence Ministry on Tuesday said that the US is providing de-facto cover for Islamic State units in Syria.
Summary:
The man was spotted by a babysitter who took a picture of the act and showed it to zoo staff.
Summary:
Public sector lender Bank of Baroda's net profit for the September quarter fell nearly 36% year-on-year to â¹355 crore.
Summary:
A day after an alleged sex tape of Patidar leader Hardik Patel surfaced, a new video of the 24-year-old leader allegedly drinking with friends has emerged online.
Summary:
This was followed by the Mumbai-Bengaluru and the Delhi-Kolkata routes, both with more than 17 lakh passengers.
Summary:
Ryan International School's Class 11 student, who is accused of killing Pradyuman, has reportedly told the Child Protection and Welfare Officer that CBI officials threatened to kill his younger brother if he didn't confess to the crime.
Summary:
Using a genetic tool, US-based scientists at Indiana University were able to grow a fully functional extra eye in the centre of the forehead of a beetle.
Summary:
The makers of the Hollywood film 'Basmati Blues' have apologised for 'generalising Indian culture' in the film's trailer.
Summary:
JRR Tolkien's fantasy novel 'The Lord of the Rings' is set to be adapted into a multi-series television show.
Summary:
Three properties belonging to underworld don Dawood Ibrahim have been sold to Saifee Burhani Upliftment Trust (SBUT) for over â¹11.5 crore at an auction in Mumbai on Tuesday.
Summary:
The home guard had willingly conceded to the ASI's request for a massage after he complained of a backache, the police said.
Summary:
Uttar Pradesh Chief Minister Yogi Adityanath on Tuesday said that nothing in India can be undertaken and accomplished without the mention of Lord Rama, adding that he is the focal point of all beliefs in India.
Summary:
Mortal remains of two soldiers of 39th Royal Garhwal Rifles were laid to rest with military honours at a military cemetery in France's Laventie on Monday.
Summary:
Tesla and SpaceX's board member Steve Jurvetson has quit from his VC firm Draper Fisher Jurvetson (DFJ) amid sexual harassment allegations.
Summary:
While conventional buoys are solar-powered, this one would harness energy from waves to power its beacon.
Summary:
Sweden-based researchers have found that an electron takes 20 attoseconds, or 20 billionths of a billionth of a second to be emitted from a neon atom using laser pulses.
Summary:
Quimera the cat has an orange face with an amber eye and a black face with a blue eye.
Summary:
New York's banking regulator Department of Financial Services (DFS) said Credit Suisse improperly shared information to manipulate currency prices and benchmark rates, and deceived customers to enhance its profits.
Summary:
Airtel and its wholly owned subsidiaries now together have an equity holding of 53.51% in the tower company.
Summary:
Idea Cellular Managing Director (MD) Himanshu Kapania has said the merged Idea-Vodafone entity will not be a "price disruptor" in the sector but will continue to focus on profitability.
Summary:
Wholesale food prices in October rose 3.23% compared to 1.27% during the same period in previous year.
Summary:
The film is based on the Chinese martial art form, Tai Chi, with Jack Ma playing the role of a Tai Chi master.
Summary:
Vidya Balan, while responding to a journalist who suggested that she needed to lose weight to play glamorous roles, said, "It would be great if you could change your perception." "I'm very happy with the work I'm doing," she added.
Summary:
Speaking about the row on the upcoming film 'Padmavati', actress Deepika Padukone said, "I know and I believe that nothing can stop the release of this film." "It's absolutely appalling.
Deepika further said the only people the film's team is answerable to is the Censor Board.
Summary:
After 23-year-old aspiring French author Roi-Sorcier d'Angmar tagged Harry Potter author JK Rowling and science fiction author Stephen King in her tweet about feeling demotivated, Rowling responded saying, "Don't write me.
Summary:
Reacting to the typo, a user questioned if it was his 'covfefe moment', while another wrote, "kya Sir, googling this word since half an hour.
Summary:
The Brihanmumbai Municipal Corporation (BMC) has launched an awareness drive to educate vendors of Mumbai's municipal markets about the harmful effects of plastic bags, in order to cut down on the use of these bags.
Summary:
After Indian all-rounder Hardik Pandya uploaded a picture of himself with a new hairstyle, a user tweeted, "Male version of Lady Gaga".
Summary:
In another incident, a China Eastern air hostess broke several bones when she fell while attempting to close a flight's door.
Summary:
Researchers found the entire wing resonates at the frequency of the male insect's call, which is audible to the human ear as well.
Summary:
India will overtake Japan in nominal GDP by 2028 to emerge as the world's third-largest economy, according to a report by Bank of America Merrill Lynch.
Summary:
Television series 'Khichdi' is set to return with its third season and will star the original members of the cast including Anang Desai, Rajeev Mehta, Supriya Pathak, Vandana Pathak and JD Majethia.
Summary:
West Bengal has won the Geographical Indication registration for Rosogolla after a tussle with Odisha over the origin of the sweet.
Summary:
Rejecting Delhi government's exemption for women in the odd-even scheme, the National Green Tribunal on Tuesday asked why it could not run special buses for women.
Summary:
The CBI had tapped the phones of the Class XI Ryan International School student's family members for a month over his alleged involvement in the murder of 7-year-old Pradyuman Thakur, according to reports.
Summary:
A video allegedly showing Patel in a compromising position with an unidentified woman had surfaced online on Monday.
Summary:
India has asked Pakistan at the UN to end its illegal and forceful occupation of Pakistan-occupied Kashmir and stop torture, enforced disappearances, and unlawful killings.
Summary:
This comes after reports claimed that Ram Rahim was earning â¹20 per day for spending eight hours cultivating vegetables in the jail.
Summary:
The Central Railway authorities have announced plans to revamp the ticket counter and entry and exit points of the 157-year-old Byculla railway station in Mumbai.
Summary:
The world's highest bridge which is currently under construction over the Chenab River in Jammu and Kashmir's Reasi, will be able to withstand earthquakes of magnitude 8, and high-intensity blasts, according to railway officials.
Summary:
Technology giant Apple will launch three new iPhones featuring edge-to-edge displays next year, according to reports.
Summary:
However, Broadcom in a separate statement said it is "fully committed" to the acquisition of Qualcomm.
Summary:
A 20-year-long study involving nearly 63,000 women has found that a type of breast cancer fuelled could resurface after being dormant for 15 years following successful treatment.
Summary:
Asgardia, the first-ever country planned to be floated into space, has successfully launched its maiden satellite from a NASA site.
Summary:
A study of internet freedom in 65 countries has found that governments of 30 nations are deploying some form of manipulation to distort information and suppress dissent online, human rights group Freedom House said.
Summary:
A video released by the police shows three suspects rob a donut store in United States' Texas.
Summary:
To tell someone you can change is irresponsible." Actress Alia Bhatt also shared Sonam's tweet and wrote, "OMG kinda moment."
Summary:
Actor Salman Khan, while speaking about his marriage plans, said, "It makes me wonder what good will it to do to people who are so concerned about my marriage." "If it has to happen, it will.
Summary:
Waqar has been retained by PSL side Islamabad United as their bowling coach.
Summary:
The Central Railway has painted messages on the steps of the newly constructed foot overbridge at Currey Road station in Mumbai asking people to wear appropriate footwear when walking down the bridge.
Summary:
The mother soon found the cubs and took them to the forest.
Summary:
A Chandigarh court on Monday rejected the bail plea of Haryana BJP Chief Subhash Barala's son Vikas Barala and his friend for the fourth time.
Summary:
Two-time Olympic medalist, Indian wrestler Sushil Kumar, is set to make a comeback by taking part in the upcoming National Wrestling Championship.
Summary:
These would include the Trevi Fountain, wherein the coins can add up to â¬1 million euros a year and are currently donated to charity.
Summary:
Andhra Pradesh is hosting its first Hot Air Balloon Festival in Araku Valley.
Summary:
The violence against Rohingya Muslims in Myanmar "looks like ethnic cleansing", a British government spokesperson has said.
Summary:
The EU nations out of the pact include Britain, Denmark, Ireland, Portugal and Malta.
Summary:
Slamming the state for giving "arbitrary exemptions", the NGT asked it to provide logical reasons when it approaches the tribunal again.
Summary:
Nearly 70% of the 121 fugitives being pursued for crimes in India have taken shelter in the US, the UK, the United Arab Emirates (UAE), and Canada, External Affairs Ministry's response to an RTI has revealed.
Summary:
The market value added exceeds the combined worth of GermanyâÂÂs biggest 30 companies, that include BMW, Volkswagen.
Summary:
Filmmaker Sujoy Ghosh has resigned from the post of the jury head of the 48th International Film Festival of India (IFFI) following the cancellation of screenings of the films 'S Durga' and 'Nude'.
Summary:
Archaeologists in Georgia have uncovered wine traces within clay pottery dating back to 6,000-5,800 BC, presenting evidence of the world's earliest known winemaking.
Summary:
Before Pandit Jawaharlal Nehru's demise, India celebrated Children's Day on November 20, which is observed as Universal Children's Day by the United Nations.
Summary:
Ashwin also threatened to release records and audio clips if Hardik did not clarify his stance on the issue.
Summary:
The Bhopal Police on Monday arrested a 33-year-old police constable for allegedly raping a head constable's wife.
Summary:
A 9-year-old boy has been seen begging for money in front of a private hospital in Tamil Nadu's Kanyakumari in order to get his broken arm treated.
Summary:
While responding to a JNU student asking how to deal with mistreatment meted out to him over his sexual orientation, Sri Sri Ravi Shankar said, homosexuality is a "tendency" and is not permanent.
Summary:
Commenting on the severe pollution levels in Delhi, Congress Vice President Rahul Gandhi on Sunday tweeted lines from an old Hindi song.
Summary:
The Brihanmumbai Municipal Corporation has planned to fund startups that provide modern solutions to civic issues like solid waste management and traffic management.
Summary:
Intelligence agency Research and Analysis Wing (RAW) has issued an alert warning that a group of six to seven Lashkar-e-Taiba terrorists may attack Hindon Indian Air Force base in Uttar Pradesh.
Summary:
The crimes recorded under the Protection of Children from Sexual Offences Act underwent a fourfold increase between 2014 and 2016, National Crime Records Bureau data revealed.
Summary:
The Supreme Court appointed Environment Pollution (Prevention & Control) Authority panel has recommended a ban on plying diesel vehicles when pollution crosses 'emergency levels' in Delhi-NCR.
Summary:
The accused ran a fake job placement agency and charged â¹30,000-â¹50,000 from each applicant as the application process fee.
Summary:
Spain's world number one tennis player Rafael Nadal has withdrawn from the season-ending ATP World Tour Finals due to knee injury, after losing his opening round match to Belgium's David Goffin on Monday.
Summary:
An IndiGo flight with 154 people onboard hit a wild boar on the runway while taking off from Visakhapatnam Airport on Sunday.
Summary:
A US-based study involving nearly 20,000 cases has found that women are less likely than men to get CPR from a bystander, possibly due to the reluctance of touching a woman's chest.
Summary:
The death toll from the 7.3 magnitude earthquake which hit the Iran-Iraq border on Sunday has risen to over 450.
Summary:
While speaking about sexual harassment faced by women in Bollywood, filmmaker Mukesh Bhatt said, "There are [also] women who are exploitative and very cunning [and are] blatantly shameless to offer themselves." "I am not saying men have not been exploitative...
Summary:
Ranbir Kapoor's cousin Aadar Jain, while talking about the picture which showed him kissing Deepika Padukone on the cheek, said, "If we're at a party and are clicking photos, what's the harm in that." "It was a great time to enjoy ourselves...That's about it," he added.
Summary:
A video shows a live TV interview being interrupted by the 7.3 magnitude earthquake which hit the Iran-Iraq border region on Sunday.
Summary:
French skier David Poisson, who won a bronze medal in the downhill skiing event at the 2013 world championships, died in a training accident on Monday at the age of 35.
Summary:
Pakistan's Saeed Ajmal announced that he will retire from all forms of cricket at the end of the ongoing National T20 Cup. The 40-year-old made his Test debut at the age of 31 and picked 178 wickets, the second-most for bowlers who made their debut after 30.
Summary:
Mumbai's 142-year-old Sassoon Dock has been turned into a public art space by St+art India Foundation as part of its Sassoon Dock Art Project.
Summary:
Barbie doll manufacturer Mattel has unveiled its first-ever hijab-wearing doll in its 58-year history to honour Ibtihaj Muhammad who in 2016 became the first American to compete in the Olympics while wearing a hijab.
Summary:
The juvenile accused of murdering 7-year-old student at Gurugram's Ryan International School retracted his earlier confession before the CBI on Monday, reports said.
Summary:
Addressing the Indian community on the sidelines of the ASEAN Summit in Philippines, Prime Minister Narendra Modi said that India has not hurt anybody in 5,000 years.
Summary:
Italian goalkeeper Gianluigi Buffon announced his international retirement alongside two of his teammates after Italy failed to qualify for the FIFA World Cup for the first time since 1958.
Summary:
Over 15,000 scientists from 184 countries have signed a letter called the "World Scientists' Warning to Humanity: A Second Notice," saying "catastrophic climate change" due to human influence has unleashed a "sixth mass extinction".
Summary:
Maharashtra Member of Legislative Council Jayant Patil, who heckled actor Shah Rukh Khan for blocking access to his yacht at the Alibaug Jetty, said Bollywood stars need to be disciplined.
Summary:
Madhya Pradesh's left-arm spinner Manish Majithia bowled 20 overs and took a wicket without conceding a run in the second innings against Railways in a Ranji Trophy match on November 14, 1999.
Summary:
While the event is reserved for business visitors from November 14-17, it will open for general public from November 18-27 between 9:30 am and 7:30 pm.
Summary:
Notably, Indian students contributed over â¹42,000 crore to the US economy in 2016.
Summary:
North Korea has complained to the UN that the naval exercise by the US near the Korean peninsula is creating "the worst ever situation".
Summary:
A woman named Roslyn Corrigan has accused former US President George HW Bush of groping her in 2003, when she was 16 years old, during a photo opportunity at a gathering of CIA officers in Texas.
Summary:
The incident occurred when one of the guests started firing celebratory shots but forgot to keep the gun upwards and shot the groom.
Summary:
A 25-year-old doctor punched a shark in the face after it attacked him while he was surfing at Avoca beach, Australia on Monday.
I turned and I saw this shark come out of the water."
Summary:
Sidharth Malhotra has said he doesn't think marriage is essential while adding that live-in relationships are just as intimate.
Summary:
Actress Sridevi, while talking about the comparison between her daughter Jhanvi and Saif Ali Khan's daughter Sara, said, "There's nothing wrong with it.
Summary:
Indian all-rounder Hardik Pandya, who has been rested for the first two Tests against Sri Lanka starting on Thursday, has revealed he himself asked for the break to work on fitness as he was not feeling 100% fit.
Summary:
A mentally challenged woman was allegedly raped by a 22-year-old man in a public urinal in Madhya Pradesh's Dewas district.
Summary:
Former NBA star Shaquille O'Neal and his ex-wife Shaunie O'Neal spent around â¹6.5 crore ($1 million) on throwing their daughter Amirah a lavish birthday party.
Summary:
A 13-year-old girl has moved the Delhi High Court seeking guidelines to the civic bodies to remove garbage and prevent sewer water from collecting in a pond near her government school in South Delhi.
Summary:
Delhi government, while urging the National Green Tribunal to modify its order that refused to exempt women drivers from Odd-Even scheme, has said that they can't risk women's safety.
Summary:
Medicines work better for patients who have the psychological will to get well, he further said.
Summary:
The Delhi High Court on Monday sought Election Commission's response to Delhi CM Arvind Kejriwal's plea against its order to lodge an FIR against him.
Summary:
The emission-free buses, launched by Brihanmumbai Electric Supply and Transport, have a capacity of 30 passengers each.
Summary:
UP Sunni Central Waqf Board has said the Akhil Bharatiya Akhara Parishad and UP Shia Central Waqf Board's out-of-court settlement to the Ram Temple-Babri Masjid site in Ayodhya has no legal value.
Summary:
After a video of the incident went viral, Karnataka Social Welfare Minister H Anjaneya has said that he has apologised to a cook for abusing him.
The video showed the minister abusing the cook for not serving tea on time at a state level Mochi convention.
Summary:
The Mumbai Metropolitan Region Development Authority (MMRDA) is expected to suffer a loss of â¹52.4 lakh in consequence of the fire breakout and subsequent shutdown of the monorail at Mysore Colony station.
Summary:
A Kuwait-bound passenger was apprehended at the Delhi airport for allegedly carrying four live bullets in his bag without authorization on Sunday.
Summary:
Venus appeared much larger and brighter as it lies around 327 million km closer to the Earth compared to Jupiter.
Summary:
The 9th US Circuit Court of Appeals has allowed President Donald Trump's travel ban to go partially into effect, ruling the government can bar entry of people from six Muslim-majority countries with no connections to the US.
Summary:
Asian Paints and St+art India Foundation have collaborated to transform one of Mumbai's busiest stations Churchgate into a work of art.
Summary:
Income Tax Department has detected undisclosed wealth of over â¹1,400 crore during raids on 187 premises related to jailed AIADMK leader Sasikala and her aides.
Summary:
Co-produced by Anurag Kashyap, the film also stars Vijay Varma and Tannishtha Chatterjee, and will release on December 15.
Summary:
American baseball player Mookie Betts bowled a perfect 300 game at the World Series of Bowling in Reno, Nevada on Sunday.
Summary:
Long-term preventive measures should be taken to end this life-threatening situation, the court added.
Summary:
Former Indian captain MS Dhoni has said that he doesn't want youngsters to play helicopter shots as they can get injured.
Summary:
The boat which capsized in Andhra Pradesh on Sunday killing 21 people, was on its maiden voyage without obtaining requisite permission from government authorities, state Tourism Minister Bhuma Akhila Priya said.
Summary:
Bibriesca was later charged with narcotics possession and another bond violation.
Summary:
Gates said this is a personal investment and not one offered through the Bill & Melinda Gates Foundation.
Summary:
Soha Ali Khan has said she belongs to a famous family where everyone is a bit of a superstar.
Summary:
A major fire broke out at Hyderabad's Annapurna Studios, which is owned by Telugu actor Nagarjuna Akkineni, on Monday evening.
Summary:
Actor Shahid Kapoor, while speaking about the protests against his upcoming film 'Padmavati', said, "Give the film a chance and don't form preconceived notions." "We will respect whatever people think of the film but you should see it first," he added.
Summary:
Discussing the controversy over the release of the film 'Padmavati', Congress MP Shashi Tharoor has tweeted that the education of Rajasthani women is more important than their "ghoonghats".
Summary:
Photographer An Le apologised to Oscar-winning actor Lupita Nyong'o for editing her curly hair on the cover of Grazia magazine while calling it a "monumental mistake".
Summary:
Actor Salman Khan, while talking about the protests against Sanjay Leela Bhansali's 'Padmavati', said, "Bhansali makes lovely films and there is nothing wrong with his movies." Salman added that no conclusions should be drawn without seeing the film.
Summary:
Spiritual leader Sri Sri Ravi Shankar on Monday said that he was involved in the Ram Temple dispute as a mediator at his own will, and would visit Ayodhya on November 16 to meet all the stakeholders.
Summary:
Addressing Indian diaspora in the Philippine capital Manila, Prime Minister Narendra Modi on Monday said that Indians should strive to work hard to ensure that the 21st century belongs to India.
Summary:
Some of the tall players had also complained of lack of leg-space in economy class.
Summary:
The word secular is the biggest lie since independence and those who have coined the term must apologise to the people and this country, Uttar Pradesh CM Yogi Adityanath said on Monday.
Summary:
Abdullah had accused India of betraying J&K and not treating the state well.
Summary:
The opposition BJP has launched a satirical website targeting the BJD, ahead of Odisha CM Naveen Patnaik's address to 60 lakh school students across the state on Children's Day. While a revision book on the website lists the government's failures, another section carries news on the blunders committed by government officials.
Summary:
Ahead of Myanmar's Asian Cup Qualifier match against India, Myanmar coach Gerd Zeise said that he would like to give Indian captain Sunil Chhetri a Myanmar passport.
Summary:
United Airlines has resumed its flights from Newark to New Delhi after temporarily suspending the service last week over poor air quality in the capital.
Summary:
The Honduras football team has accused the Australian team of using a drone to spy on their preparations, ahead of the teams' do-or-die World Cup playoff second leg clash on Wednesday.
Summary:
During his three-day visit to Gujarat, Congress Vice President Rahul Gandhi on Monday said that Prime Minister Narendra Modi had used magic to make money disappear from the state in the past 22 years.
Summary:
When Rohit Sharma smashed 264 in an ODI against Sri Lanka on November 13, 2014, India's victory margin was 153 runs, the same margin of victory when Sachin Tendulkar and Virender Sehwag scored ODI double centuries.
Summary:
Denying the authenticity of the video, Patel blamed the incident on BJP's "dirty politics" and said it was tarnishing the image of Gujarat's women.
Summary:
Vegetable prices rose 7.47% over last year, while fuel and light inflation stood at 6.36%.
Summary:
National President of the Rajput organisation Akhand Rajputana Sevasangh RP Singh has said that the CEO of Bhansali Productions Shobha Sant has assured him that the 'Padmavati' team will screen the film for the organisation before its release.
Summary:
Thakur also claimed that Ryan International School's top management was involved in the murder.
Summary:
Windies' cricketer Chris Gayle, who is the only player to score over 10,000 runs in T20 cricket, was not picked by any of the franchises in the Pakistan Super League draft held in Lahore on Sunday.
Summary:
As part of its initiative to make Hyderabad 'beggar-free', the Telangana government would be rewarding â¹500 to citizens from December 1 for information leading to the spotting of beggars.
Summary:
During his meeting with US President Donald Trump at the ongoing ASEAN Summit, PM Narendra Modi on Monday thanked him for speaking "highly" about India wherever he went.
Summary:
Zimbabweans are reportedly moving to Bitcoin to protect their investments from the country's hyperinflation.
Summary:
Budget airline SpiceJet's net profit jumped 79% to â¹105.3 crore in the September quarter, marking its eleventh consecutive profitable quarter.
Summary:
According to reports, Akshay Kumar will replace Salman Khan in the sequel to the 2005 film 'No Entry' titled 'No Entry Mein Entry'.
Summary:
Filmmaker Indra Kumar announced the casting of Madhuri Dixit and Anil Kapoor in his film 'Total Dhamaal' while adding, "This film is...a comedy so don't expect any 'Dhak Dhak' but I promise total dhamaal." The film is the third instalment in 'Dhamaal' franchise.
Summary:
Jason Momoa, who portrayed Khal Drogo in 'Game of Thrones, has said he was eight when he saw his future wife actress Lisa Bonet, who was a teen then, on television and said, 'Mommy, I want that one'.
Summary:
Ask Deepika!" This comes after only Deepika was spotted at the special screening of 'Padmavati' trailer in 3D.
Summary:
Reacting to US President Donald Trump's handshake gaffe at the ASEAN Summit in the Philippines capital Manila, a Twitter user wrote, "He looks like he's heavily constipated." While other users tweeted, "Small hands -Small arms -Smallbrain!" and "Until now, only [the US First Lady] had to see this face every couple weeks.
Summary:
Unidentified robbers looted 27 lockers at Bank of Baroda's Juinagar branch in Navi Mumbai, by entering the bank through a tunnel from an adjacent shop.
Summary:
American football player Marquise Goodwin helped his team San Francisco 49ers win their first NFL match of the year, just hours after his wife lost their baby son due to complications in her pregnancy.
Summary:
Bengaluru Mayor Sampath Raj has announced that the city would soon have eight helipads to help common people during medical emergencies.
Summary:
Former Windies' captain Shivnarine Chanderpaul, at the age of 43 years and 87 days, became the oldest cricketer to score a century in first-class cricket in the last 23 years.
Summary:
Digital payments platform Paytm is acquiring deal discovery startups, Nearbuy and Little for about $30 million in a cash-and-stock deal, according to reports.
Summary:
Slamming the sanctions imposed by the US on Russia earlier this year, Medvedev said the move would have a decades-long negative effect on Russia-US relations.
Summary:
The new Director-General of UNESCO Audrey Azoulay on Monday said that the US' decision to pullout from the agency was not a "complete surprise".
Summary:
A North Korean soldier defected to the South on Monday after being shot and wounded by the North Korean military, South Korean Defence Ministry officials said.
Summary:
Saudi Arabia announced on Monday that the Saudi-led coalition fighting the Shi'ite Houthi rebels in Yemen will begin reopening airports and seaports in the country.
Summary:
The Texas church where a gunman killed 26 people earlier this month, reopened as a memorial on Sunday.
Summary:
The 1,200-MW project was cancelled over irregularities and lack of transparency, Thapa added.
Summary:
It also appointed an amicus curiae and ordered setting up a web portal to enable Jaypee Infratech's homebuyers to register grievances.
Summary:
Global carbon emissions will touch a record high of 37 billion tonnes, an analysis by the Global Carbon Project has revealed.
Summary:
Actress Parineeti Chopra's first look from the upcoming film 'Sandeep Aur Pinky Faraar' has been unveiled.
Summary:
Directed by Remo D'Souza, 'Race 3' is scheduled to release on the occasion of Eid next year.
Summary:
Replying to Delhi CM Arvind Kejriwal's request for a meeting to discuss pollution, Haryana CM Manohar Lal Khattar said he was open to meeting him and would likely be in the capital on November 13 and 14.
Summary:
Speaking at the ASEAN Summit in Philippines, PM Narendra Modi on Monday said that India was no longer just a country of job seekers.
Summary:
In an email to app developers, Google has said that it will remove apps from its Play Store which are found misusing its Accessibility Services.
Summary:
Over 2,500 students from Sias International College in China have set a record for forming the world's largest 'human' QR code.
Summary:
The aim of this exam is to provide a realistic assessment of a candidate's CAT preparation, while also giving an opportunity to earn a scholarship for CAT affiliated B-Schools.
Summary:
Summary:
The customer's foot got stuck after he stepped on a wooden pallet to get the fruit.
Summary:
Actor Shahid Kapoor turned showstopper for designer Gaurav Gupta, who launched his inaugural luxury menswear line, on the second day of Van Heusen + GQ Fashion Nights.
Summary:
The Ministry of Information and Broadcasting (I&B) has cancelled the screenings of the regional language films 'S Durga' and 'Nude' at the International Film Festival of India (IFFI), without consulting the jury, which initially selected the films.
Summary:
An FIR has been registered against Air India's former Executive Director Rohita Jaidka, for allegedly stealing a painting by Padma Bhushan awardee artist Jatin Das, which was a part of the airline's collection.
Summary:
Passengers onboard a Thiruvananthapuram-Bengaluru IndiGo flight on Saturday panicked after the cabin crew detected a smell of smoke and minor sparks from a laptop placed in a handbag.
Summary:
Reacting to Sri Lankan Under-19 cricket team's spinner Kevin Koththigoda's unorthodox action, a user tweeted, "The new Yoga sensation 'Kevin Koththigoda' of @OfficialSLC U19.
Summary:
Over 900 people were caught on Saturday for drunken driving in a span of 20 hours under a special operation carried out by Kochi Police.
Summary:
The Delhi government has decided to file a plea in the National Green Tribunal (NGT) urging it to consider exempting women and two-wheelers from the odd-even scheme, Delhi Minister Gopal Rai said.
Summary:
Swiss tennis star Roger Federer lost a point through unforced error after his opponent Jack Sock turned his back to show Federer his behind after lobbing his shot, at the ATP World Tour Finals' first round.
Summary:
The match will be held at the Indira Gandhi Indoor Stadium in New Delhi during WWE's tour of India on December 8 and 9.
Summary:
An undertrial was shot dead inside the Rohini court complex in Delhi on Monday.
Summary:
US-based startup Matrix Industries has developed a â¹11,000 smartwatch called 'Matrix PowerWatch' which can be powered by body heat.
Summary:
The website of Amaq, Islamic State's official news agency, was hacked by a collective of Muslim activists known as Di5s3nSi0N, according to reports.
Summary:
Philippine President Rodrigo Duterte hummed a song for US President Donald Trump during the ASEAN Summit in Manila.
My heart was despaired for so long," Duterte sang standing besides Trump.
Summary:
The Church of England in its new guidance issued to schools said that boys should be free to choose to wear a tutu, tiara or heels, and girls to wear tool-belts and superhero capes.
Summary:
The influx of foreign, European Jews caused "great problems" in the Middle East by aggravating the Arab-Israeli conflict, Britain's Prince Charles wrote in a newly revealed letter penned in 1986.
Summary:
Trump failed to grasp whose hands he was supposed to be holding and broke the chain.
Summary:
Britain's Prince Harry has been accused of breaking military rules by members of armed services for sporting a beard at an event honouring the country's war dead.
Notably, Prince Harry retired from active service in 2015.
Summary:
The earthquake, which prompted around 118 aftershocks, was one of the most powerful earthquakes since the one which hit Iran in 2003, killing 31,000 people.
Summary:
'Fukrey Returns' is a sequel to the 2013 film 'Fukrey' and also stars actors Pulkit Samrat, Varun Sharma and Manjot Singh.
Summary:
The lecture delivered by Art of Living Foundation founder Sri Sri Ravi Shankar at Jawaharlal Nehru University (JNU) was live telecast in 100 countries, professor Rana Singh said.
Summary:
He slammed two consecutive sixes off Kagiso Rabada's bowling to win the match, with 22 balls remaining.
Summary:
A man was detained on Monday at the Cochin International Airport after he allegedly threatened to hijack a Mumbai-bound Jet Airways flight with a "happy bomb".
Summary:
The Centre on Monday will start its final phase of BharatNet project, to provide high-speed broadband and WiFi in all panchayats by March 2019, Telecom secretary Aruna Sundararajan said.
Summary:
Former Pakistani pacer Wasim Akram picked former Indian captain Sunil Gavaskar as his most prized wicket.
Summary:
Electric vehicle maker Tesla's Co-founder and CEO Elon Musk has said that the company will be unveiling its electric Semi Truck later this week.
Just need to find my portal gun," Musk tweeted.
Summary:
US chipmaker Qualcomm is reportedly planning to reject rival Broadcom's $103 billion takeover bid as early as this week.
Summary:
iPhone X users have reported that they are facing 'distortion' or 'buzzing' sound from the smartphone's front-facing earpiece speaker at high volume.
Summary:
This comes after developers called off an upgrade proposal that would have caused another split in Bitcoin.
Summary:
Idea Cellular and Vodafone India on Monday said they have separately agreed to sell their standalone tower businesses to ATC Telecom Infrastructure for about â¹7,850 crore.
Summary:
Amitabh Bachchan shared a picture from sets of his 1983 film 'Coolie' while tweeting, "Felled by a punch in the film 'Coolie'...
Never give UP." Amitabh was in a coma-like state following a stunt accident on Coolie's sets.
Summary:
Summary:
Indian cricketers Ravichandran Ashwin, Hardik Pandya and Bhuvneshwar Kumar were mentioned in an episode of American sitcom 'The Big Bang Theory'.
Summary:
Prime Minister Narendra Modi on Monday visited the Mahaveer Philippine Foundation Inc. where he met a nine-year-old boy fitted with the 'Jaipur Foot', a rubber-based prosthetic leg for people with below-knee amputations.
Summary:
An eight-month pregnant woman was crushed to death while her husband suffered injuries after they were run over by a car being driven by a minor parking attendant in Noida Sector-18 on Sunday.
Summary:
Referring to the alleged lynching of a man by cow vigilantes in Alwar, Rajasthan Home Minister Gulab Chand Kataria on Monday said the state did not have enough manpower to control every situation in all cities.
Summary:
Rajasthan doctors ended their week-long strike on Sunday after a 9-hour talk with health minister Kali Charan Saraf and other officials from the home, finance, and medical department.
Summary:
BengaluruâÂÂs doctors said it is not suitable for those with existing respiratory ailments to stay in the city.
Summary:
Indian golfer Vani Kapoor registered her maiden top-10 finish after finishing tied 6th at the Women's Indian Open in Gurugram on Sunday.
Summary:
BJP leader Bharat Reddy has been booked by Telangana police after a video showing him humiliating two Dalit men went viral on social media.
Summary:
Concerned with increasing number of tiger deaths from electrocution in Maharashtra, the National Tiger Conservation Authority has decided to convene a meeting on November 14 to review strategies for their protection.
Summary:
Schools in Tamil Nadu's Chennai, Thiruvallur, and Kancheepuram declared a holiday on Monday amid heavy rainfall in the state.
Summary:
Amazon has shut down its online product discovery platform, Junglee, which was launched in India in 2012.
Summary:
Software body Nasscom on Friday appointed Debjani Ghosh as its first woman President, who will succeed R Chandrashekhar in March 2018.
Summary:
It said GST will have a significant impact on all aspects of a business including supply chain, sourcing and distribution decisions.
Summary:
The National Green Tribunal (NGT) on Monday restricted the number of devotees who can visit Jammu and Kashmir's Vaishno Devi shrine to 50,000 per day, adding that any more people proceeding towards the shrine would be stopped at Adhkuwari or Katra.
Summary:
Rohit is the only batsman to hit two ODI double centuries.
Summary:
Two Assam Rifles jawans were killed and four injured in a blast at Manipur's Chandel district on Monday, the police said.
The injured jawans have been rushed to hospital, police added.
Summary:
Alibaba Co-founder, Joseph Tsai, is the second-richest person Alibaba created, with a net worth of $11.5 billion.
Summary:
The Indian Space Research Organization (ISRO) on Sunday launched a water rocket to mark an international Water Rocket Launch Competition in Bengaluru.
Summary:
The University Grants Commission (UGC) on Friday directed 123 Deemed-to-be-Universities to drop the word 'University' from their names, as it violates Section 23 of the UGC Act. The institutes include BITS Pilani, Symbiosis International University and Christ University, among others.
Summary:
The initial eight seconds of the footage shows the accused teenager calling Pradyuman to the washroom, reports said.
Summary:
External Affairs Minister Sushma Swaraj has expedited the process for the issuance of a passport to female junior boxer Jhalak Tomar, who has qualified to participate in an international boxing tournament to be held in Ukraine.
Summary:
Researchers from Portugal's Institute for the Sea and Atmosphere have caught an alive dinosaur-era shark, named frilled shark, with 300 teeth neatly lined in 25 rows.
Summary:
Its revenue per subscriber fell 6.6% to â¹132 from â¹141 in June quarter.
Summary:
According to reports, Salman Khan and Katrina Kaif's Indo-Pak romantic relationship in the film 'Tiger Zinda Hai' is likely to be changed.
Summary:
"Alana Martina has just been born!
Both Geo and Alana are doing great.
Summary:
The class XI Ryan International School student accused in the murder of 7-year-old Pradyuman Thakur has reportedly admitted to knowing Thakur, as the two had attended piano classes held at the school together.
Summary:
A portion of the ceiling at Mumbai's Andheri railway station fell off and injured two members of a family on Sunday.
"We will be filing a complaint against Andheri railway station at Andheri East police station," the nephew said.
Summary:
The Indian Navy and the CBI are investigating an alleged fraud, wherein the navy's Financial Information System was compromised to raise and clear fake bills worth around â¹7 crore at its Mumbai-based Western Naval Command.
Summary:
"It's a problem.
That is a problem not only for players but for the people as well," Miguel said about the conditions.
Summary:
The Supreme Court on Monday agreed to hear a plea by advocate RK Kapoor seeking "immediate measures" to curb the rising level of pollution in Delhi and the National Capital Region (NCR).
Summary:
Mumbai colleges are helping citizens implement new laws on garbage management.
Summary:
During his three-day visit to poll-bound Gujarat, Congress Vice President Rahul Gandhi on Sunday claimed that Gujarat witnessed more corruption than the entire nation.
Summary:
The Uttar Pradesh Pollution Control Board on Sunday directed 90 pollution-causing factories located in Ghaziabad's Meerut Road, Udyog Kunj, and Sahibabad Site IV to stop production till further orders.
Summary:
He was riding his cycle when the accident took place.
Summary:
Spanish racer Marc Márquez became the youngest four-time MotoGP world champion after clinching his fourth MotoGP world title in five years at the season-concluding Valencia Grand Prix on Sunday.
Summary:
Chhattisgarh Chief Minister Raman Singh has said that if Maoists fail to join development, they will be killed by the forces.
Summary:
An 18-year-old Indian-American dental student was killed in a hit-and-run case in the United States of America, when the driver of a pick-up truck ran his vehicle over her after a minor collision.
Summary:
IndiGo on Sunday apologised after a passenger fell off her wheelchair while being pushed by airline's staff at Lucknow airport on Saturday.
Summary:
Prime Minister Narendra Modi, who is in Philippines to attend the India-ASEAN summit, inaugurated the 'Shri Narendra Modi Resilient Rice Field Laboratory' at Los Bano On Monday.
Summary:
This is the first time Nepal have defeated India in cricket at any official level.
Summary:
'Golmaal Again' has become Ajay Devgn's first film to enter the â¹200 crore club.
Summary:
The 52-year-old jumped from 22,349-foot-high Mount Ama Dablam in the Everest region when the accident occurred.
Summary:
At least 130 people were killed and hundreds injured in Iran and Iraq after a 7.3 magnitude earthquake hit the border region between the two countries on Sunday, state media said.
Summary:
China's Yangtze River Delta is economically as big as Italy.
Summary:
The Delhi Queer Pride celebrated its tenth year on Sunday as hundreds of community members and supporters participated in a march from Barakhamba metro station till Jantar Mantar.
Summary:
Andhra Pradesh Deputy Chief Minister NC Rajappa has announced a compensation of â¹8 lakh to the families of the victims who lost their lives after a boat capsized in the Krishna river near Vijayawada.
Summary:
The police have arrested three bike-borne men for chasing a lion, a lioness and their cubs, in Gujarat's Gir National Park after a video of the incident went viral.
Summary:
The United Arab Emirates (UAE) has told New Delhi that it will act to enforce a law to prevent underworld don Dawood Ibrahim and his associates from operating from its territory, officials stated.
Summary:
After being transferred for the 51st time in his career, Haryana IAS officer Ashok Khemka on Sunday tweeted, "So much work planned.
News of another transfer.
Summary:
Reports quoting CBI sources have claimed that the agency's probe into the murder of Pradyuman Thakur in Ryan International School revealed illegality and destruction of evidence by the Gurugram Police.
Summary:
The BJP, which had only one seat in the 36-member Legislative Council till 2015, has now become the single largest party in J&K's upper house with 11 members.
Summary:
This comes as Iraqi forces launched an operation on Saturday to retake the last ISIS-held towns in Iraq.
Summary:
Actor Irrfan Khan has said he would like to see a film where a woman is not competing with a man.
Summary:
Actress Amrita Puri, who made her Bollywood debut with the Sonam Kapoor starrer 'Aisha', married her long-time boyfriend and hotelier Imrun Sethi in Bangkok as per Sikh rituals.
Summary:
Karan Johar, Shah Rukh Khan and Gauri Khan, who produced the Sonakshi Sinha and Sidharth Malhotra starrer 'Ittefaq', have been served a strict compliance notice by Delhi Health Department for promoting smoking in the film.
Summary:
Singer Adnan Sami took to Twitter to share a selfie with wrestler The Great Khali in which he can be seen struggling to fit into the frame.
Summary:
Addressing the controversy surrounding the release of the film 'Padmavati', Minority Affairs Minister Mukhtar Abbas Naqvi said, "I see films as films and do not get into its history or geography." He added, "What you like in a film, should be accepted and what you do not like, should be left there.
Summary:
A man was gunned down and another was injured in an alleged attack by a group of cow vigilantes in Rajasthan's Alwar, while they were transporting four cows to Haryana.
Summary:
Indian women's cricket team captain Mithali Raj bagged the Indian Sportswoman of the Year (Team Sports) award at the Indian Sports Honours (ISH) event held in Mumbai on Saturday.
Summary:
President Ram Nath Kovind's daughter Swati, who was earlier working as an air hostess in Air India, has now been assigned ground duties due to security concerns.
Summary:
External Affairs Minister Sushma Swaraj on Sunday said the government will provide help to the family of Akash Talati, an Indian-origin motel owner who was shot dead in the US on Saturday.
Summary:
In the next two to three months, all hospitals in Karnataka are likely to have an e-mortality software to medically register deaths and identify the cause of death.
Summary:
A 40-year-old woman and her 14-year-old daughter were forced to jump off a running train after a group of 10 to 15 men tried to rape the girl on board the Howrah-Jodhpur Express on Saturday.
Summary:
Spain's Rafael Nadal was presented with ATP World No. 1 award on Sunday, as he became the oldest player to finish as year-end world number one in ATP rankings history.
Summary:
Ferrari's Sebastian Vettel overtook Mercedes' Valtteri Bottas on the first turn of the circuit to go on and win his fifth race of the season in the form of the Brazilian Grand Prix on Sunday.
Summary:
Former CIA chief John Brennan slammed US President Donald Trump on Sunday saying that he should be "ashamed" for attacking the intelligence leaders who concluded Russia meddled in the 2016 election.
Summary:
Myanmar forces gangraped Rohingya women during violence against the minority Muslim community, Special Representative of the UN Secretary-General Pramila Patten said on Sunday.
Summary:
Reports said the boat, which has a capacity to carry 20 passengers, was overcrowded.
Summary:
All government and private schools in Gurugram would remain shut on November 13 owing to the continuing smog situation, Deputy Commissioner Vinay Pratap Singh announced on Sunday.
Summary:
Advani, who won his first major title in 2003, has won 13 world titles in Billiards and four in Snooker.
Summary:
Vietnamese security firm Bkav Corporation's researchers have claimed they bypassed the iPhone X's Face ID by using a $150 specially-built mask.
Summary:
The Chinese government has announced that it will build an artificial intelligence (AI)-powered police station without any human personnel.
Summary:
Talking about how Facebook is "exploiting" human psychology, former President of the social media giant, Sean Parker, has said, "God only knows what it's doing to our children's brains." In a recent event, he also said, "The inventors, creators, it's me, it's Mark ...
Summary:
The device, when fitted on diesel generators, can capture about 90% of particulate matter emission.
Summary:
Kumar further said the reforms include strengthening the board, as well as dealing with HR issues.
Summary:
Summary:
According to reports, actress Gal Gadot has said that she will not sign the sequel to 'Wonder Woman' until producer Brett Ratner, who has been accused of rape and sexual harassment, is dropped from the project.
Summary:
Summary:
Actor Prakash Raj, while clarifying his earlier statement that actors becoming political leaders is a disaster, tweeted, "This is what I said...Actors should not enter into politics only because they are popular." His note further read, "(Actors) should come with a clear perception of the issues facing the country...And we should not vote as fans.
Summary:
There were two security guards present in the van during the incident but they did not resist the robbery, police said.
Summary:
The National Green Tribunal has directed the Delhi government and the municipal corporations to ensure availability of appropriate parking facilities for cars and discourage roadside parking in order to curb the traffic mess.
Summary:
While over 5 lakh condoms were requested by communities and NGOs, the remaining condoms were ordered by individuals.
Summary:
Police suspect that the murder was revenge killing as Anand was an accused in the murder of a CPI (M) activist.
Summary:
During her ongoing UK trip, West Bengal Chief Minister Mamata Banerjee has reiterated her government's desire to acquire the London house where Nobel laureate Rabindranath Tagore lived for a few months in 1912.
Summary:
Under the hospitality clauses in contracts, private firms are to ensure travel, food, and hospitality to the government's inspecting team.
Summary:
Priced at $39, the bulb has an in-built sound chip and does not require Bluetooth or WiFi connection.
Summary:
Milner said his team believes there are three potential locations for extra-terrestrial lifeforms in the solar system including Jupiter's moon Europa, under the surface of Mars, and Enceladus.
Summary:
An air traffic controller has been detained in the US state of North Carolina for possessing, transporting and acquiring a weapon of mass destruction (WMD), police said.
Summary:
UK prosecutors have admitted to destroying key emails related to the rape case against WikiLeaks founder Julian Assange.
Summary:
The authority will now use terms such as "passengers", "everyone" and "riders" in announcements and pre-recorded messages.
Summary:
A BBC political correspondent was reporting live from outside the Houses of Parliament in London when the prankster played the sounds.
Summary:
US President Donald Trump on Sunday offered to help resolve territorial disputes in the South China Sea. Trump also acknowledged that China's claim over nearly 90% of the South China Sea was a problem.
Summary:
US President Donald Trump has said that his predecessor Barack Obama and presidential rival Hillary Clinton failed to make friends with Russian President Vladimir Putin.
Summary:
Blaming Infosys for GST Network glitches, Traders' body CAIT has that said it will have to take "shelter of the court of law" if no action is taken against the company.
Summary:
Interestingly, Perry represented Australia at the Women's FIFA World Cup 2011 as well, in which she scored in quarter-finals.
Summary:
Further, in ODI cricket, McGrath dismissed batsmen for a duck 71 times, and once in T20I cricket.
Summary:
Several nations across the world celebrated Remembrance Day on Saturday to commemorate the 99th anniversary of the end of World War I.
Summary:
A cafe in Melbourne, Australia charges its male customers 18% 'man tax' to highlight the issue of gender pay disparity.
Summary:
Middle East's largest carrier, Emirates, has agreed to purchase 40 Boeing 787-10 Dreamliners for $15.1 billion, Chairman Sheikh Ahmed bin Saeed Al Maktoum said.
Summary:
Replying to an RTI query, the RBI said it has decided not to pursue a proposal for introducting Islamic banking in India.
Summary:
While talking about her husband Sanjay Dutt serving time in prison for violating law, Maanayata Dutt said that their twins Shahraan and Iqra should know what their father did was wrong.
Summary:
Sixty-two-year-old actor Rowan Atkinson, known for playing the character Mr Bean, is expecting his first child with his 33-year-old partner Louise Ford.
Summary:
Rajput Karni Sena President Lokendra Singh Kalvi, while at a protest in Gujarat against the film 'Padmavati', said, "It is not a film, it is history.
Summary:
While talking about being sexually harassed, 'Pitch Perfect' actress Rebel Wilson revealed that 'a male star' once asked her to repeatedly stick her finger up his a**, while his male friends tried to film the incident.
Summary:
Reacting to former Indian pacer Ajit Agarkar's comments that he should be replaced in the Indian T20I squad, Mahendra Singh Dhoni said, "Everybody has views in life and it should be respected." The 36-year-old added that what keeps him motivated is representing the national team.
Summary:
"The DNA test is being done so that the body's needs are known to maintain a particular fat percentage," an official said.
Summary:
Bengaluru will be able to treat wastewater discharge of 1,577 million litres per day (MLD) by 2020, as compared to the 982 MLD being treated at present, Karnataka CM Siddaramaiah said on Saturday.
Summary:
English football club Wisbech Town's 47-year-old goalkeeper Paul Bastock played his 1,250th match in competitive club football on Saturday, setting the world record for most senior club appearances.
Summary:
An amount of â¹80 crore was collected during the same period last year.
Summary:
Chandigarh has witnessed a 700% rise in the number of women arrested with drugs over the last seven years, according to police data.
Summary:
The restrictions were removed after 24 hours, following pressure from students.
Summary:
Home Minister Rajnath Singh on Saturday said Maoist insurgency in the country and militancy in the northeast would be over by 2022.
Summary:
Three university-level American basketball players including NBA player Lonzo Ball's brother LiAngelo Ball were arrested in China after they allegedly shoplifted from luxury stores in a retail centre in Hangzhou.
Summary:
The speaker, which is priced at $99.99, allows users to control and access all the smart devices at home.
Summary:
Technology major Apple has acquired US-based imaging sensor startup InVisage Technologies for an undisclosed amount.
Summary:
An Indonesian museum has taken down a wax sculpture of German dictator Adolf Hitler following global criticism.
Summary:
Around 60,000 people marched in Poland's capital Warsaw on Saturday in a white nationalist march that coincided with Poland's Independence Day. Marchers shouted slogans such as "white Europe of brotherly nations", "pure Poland, white Poland" and "refugees get out".
Summary:
It revealed that adult obesity rates in the UK have increased by 92% since the 1990s.
Summary:
"It's a lot better than brain surgery," the girl said.
Summary:
Bahrain on Saturday blamed Iran for an oil pipeline explosion which temporarily halted oil supplies from Saudi Arabia, and called it a "terrorist act".
Summary:
Debt-ridden Air India has received a loan worth â¹1,500 crore from Bank of India to meet urgent working capital needs, according to reports.
Summary:
French judoka Teddy Riner won all-time record 10th world title at the World Open Championships in Morocco on Saturday.
Summary:
Suchetha Satish, a 12-year-old girl from Kerala, will attempt to sing songs in 85 languages to break the Guinness World Record of most languages sung during one concert.
Summary:
Madhu added, "If you live on your own terms, the struggle is bigger but outcome is sweeter.
Summary:
Gurugram juvenile court on Sunday sent the Class 11 boy accused in the murder of a seven-year-old student at Ryan International School to a correction home for 11 days.
Summary:
Chef Vikas Khanna has said that he will launch India's first living culinary museum at his alma mater, Karnataka's Manipal University.
Summary:
A user claimed that sliding a finger along the screen's edges worked as expected, but taps are not always registered.
Summary:
"Why would Kim Jong-un insult me by calling me "old," when I would NEVER call him "short and fat?" Trump tweeted.
Summary:
The company had registered a profit of â¹62 crore in the same period a year ago.
Summary:
This comes nearly a month after Amul approached Railways on Twitter with a proposal to use its refrigerated parcel vans to transport butter.
Summary:
Responding to former Jammu and Kashmir Chief Minister Farooq Abdullah's statement that Pakistan-occupied Kashmir belongs to Pakistan, actor Rishi Kapoor tweeted, "Totally agree with you, sir.
Summary:
Filmmaker Karan Johar, while talking about his sexual orientation, said, "I'm very proud of who I am and who I'll always be." He further said that people criticised him for not addressing his sexual orientation directly in his biography 'An Unsuitable Boy'.
Summary:
Former Australian fast bowler Glenn McGrath was given the nickname 'Pigeon' by one of his New South Wales teammates due to his thin legs as a youngster.
Summary:
During his three-day visit to poll-bound Gujarat, Congress Vice President Rahul Gandhi on Sunday said that the Congress will never disrespect the Prime Minister's Office (PMO).
Summary:
Karnataka Home Minister Ramalinga Reddy on Saturday said journalist Gauri Lankesh's murderers "would 100% be caught" in a few weeks.
Summary:
Delhi Deputy CM Manish Sisodia has directed all the administrative departments of Delhi government to make payments to their lawyers only after his approval.
Summary:
A gangster and six other prisoners were booked after he went live on Facebook for nine minutes from a prison in Punjab's Faridkot.
Summary:
Congress candidate Nilanshu Chaturvedi won the Chitrakoot Assembly bypoll in Madhya Pradesh, defeating his nearest BJP rival Shankar Dayal Tripathi by a margin of 14,833 votes on Sunday.
Summary:
A gang of six armed men stole two sandalwood trees on Saturday from a British-era house which once belonged to Nobel laureate and scientist CV Raman in Karnataka's Malleswaram.
Summary:
The accused, along with other gang members would extract information from online job portals and contact people, persuading them to transfer money to get jobs.
Summary:
Haryana Ranji captain Amit Mishra tweeted a photo on Sunday that showed the Lahli ground in Rohtak covered in smog ahead of the final day of their Ranji Trophy match against Rajasthan.
Hope we will get some play today," tweeted Mishra.
Summary:
Australian women's team spinner Amanda-Jade Wellington produced a dismissal during the Women's Ashes' Test which is being compared to Shane Warne's 'Ball of the Century'.
Summary:
Fans of US football team 'Ohio State' on Saturday trolled Apple over its autocorrect bug during a game against the Michigan State.
Summary:
Google has launched 'Files To Go' app in beta phase on the Play Store to share and manage files on Android devices.
Summary:
IT giant Infosys' Co-founder Senapathy "Kris" Gopalakrishnan has invested an undisclosed amount in Singapore-based big data startup Crayon Data.
Summary:
The deal would raise the startup's post-money valuation to $900 million, according to reports.
Summary:
Pakistan's Interior Ministry has suspended the licences for all prohibited bore weapons in a move aimed at banning automatic weapons, reports said.
Summary:
Reliance Communications has allotted 10% shares to Sistema Shyam TeleServices (SSTL) which merged with the company earlier this month.
Summary:
Chinese e-commerce giant Alibaba generated a record $25.3 billion in its Singles' Day sales, showing a 39% jump from last year.
Summary:
With an Air Quality Index (AQI) of 491 on the 500-point scale, Varanasi has become the most polluted Indian city among 42 cities, according to data from Central Pollution Control Board.
Summary:
The class XI Ryan International School student, who is accused in the murder of a 7-year-old boy, reportedly made internet searches about the use of poison and methods to remove fingerprints.
Summary:
Talking about addressing sexual harassment in Bollywood, actress Kangana Ranaut has said that victim shaming is very common in the Indian society and it's done brutally and openly.
Summary:
Former boxing world champion Mike Tyson was denied entry into Chile due to his conviction for rape in 1992.
Summary:
Indian spinner Kuldeep Yadav has revealed that he thought of suicide when he was 13 years old after failing to get selected for the Uttar Pradesh Under-15 side.
Summary:
The plants will also generate power using state-of-the-art technology apart from treating sewage, officials said.
Summary:
The Home Ministry will meet next week to discuss India's prison facilities after fugitive liquor baron Vijay Mallya's defense lawyers recently raised the issue to block his extradition from the United Kingdom.
Summary:
Pramod Madhwaraj, the District in-charge of Udupi in Karnataka was fined â¹100 for riding on a motorcycle without a helmet in Karnataka's Udupi.
Summary:
A video has surfaced online showing a three-storey building collapsing flat to the ground within seconds in Andhra Pradesh's Guntur on Saturday.
Summary:
About 100 Keralites are suspected to have joined the Islamic State over the years, Kerala police said on Saturday.
Summary:
Officials at Mumbai's Sanjay Gandhi National Park announced the setting up of digital weighing scale and round-the-clock CCTV surveillance to help track the health of leopards faster in an effortless manner.
Summary:
Curry, who made the shot from almost 80 feet out, did it during a practice session.
Summary:
Two Delhi residents have started an initiative âÂÂGreen Gaddi', wherein they offer to convert people's cars into environment-friendly cars by placing customized green trays filled with oxygen-producing plants on the rooftops of the cars.
Summary:
Asserting that Arunachal Pradesh is an integral part of the Indian territory, Defence Minister Nirmala Sitharaman has said that India is not concerned about someone else's opinion on the issue.
Summary:
No suicide note was found and no foul play was suspected, police added.
Summary:
Neymar left immediately after being patted on the head by Tite.
Summary:
A Mumbai traffic police personnel who was suspended after a video showed him towing away a car with a woman breastfeeding her infant inside it, has released a counter video of the incident.
Summary:
A group of locals shot at a 35-year-old Border Security Force (BSF) constable during a scuffle outside the victim's residence in Greater Noida's Jarcha.
Summary:
During his three-day visit to poll-bound Gujarat, Congress Vice President Rahul Gandhi on Sunday said that a team of 3-4 people posts on his Twitter account after receiving suggestions from him.
Summary:
The wife of an Aligarh Muslim University professor has alleged that she was given Triple Talaq by her husband on WhatsApp and text message.
Summary:
The incident came to light nearly one month later as the accused had reportedly threatened the girl against informing anyone about it.
Summary:
The Bombay High Court on Saturday slammed Mumbai police for failing to find a girl missing since five years and said most of the missing girls end up working as domestic helps in high-rises.
Summary:
American radio host Michael Felger mocked late baseball player Roy Halladay who died in a plane crash aged 40 on Tuesday.
"'Wheee!
Moron", Felger said about Halladay's accident.
Felger, who also included splash sound effects during the show, later apologised.
Summary:
Arjuna-awardee gymnast Dipa Karmakar was honoured with a D.Litt.
Summary:
Former Indian Test cricketer AG Milkha Singh passed away at the age of 75 following a cardiac arrest on Friday.
Summary:
Photo-sharing platform Instagram has started testing a feature for selected users which allows them to follow hashtags, like other user accounts.
Summary:
Pranav was asked by his teams to look for new sides, following underperformance.
Summary:
"Congress is vindicated.
I am vindicated.
Summary:
Debit cards, credit cards, and ATMs will become technologically redundant in nearly four years, NITI Aayog CEO Amitabh Kant has said.
Summary:
In a government resolution, the state also increased the annual income limit for availing the scholarships from â¹2.5 lakh to â¹6 lakh.
Summary:
Stating that 'Ram Rajya' will be established in the country by 2022, Uttar Pradesh CM Yogi Adityanath on Saturday said, "the new India will be free of poverty, corruption, communalism and casteism." We are working to ensure that the Ram temple foundation is laid in Ayodhya, he added.
Summary:
Calling for autonomy to Kashmir from both India and Pakistan, Abdullah said an independent Kashmir was not a good idea as it is landlocked by three nuclear powers.
Summary:
The Central Board of Secondary Education (CBSE) on Friday announced that students can apply for issue of fresh certificates with corrected names and other details within five years from the declaration of their board results.
Summary:
The anti-terror body further claimed that the foreign agency had paid Rs 80 million to two activists for Saeed's assassination.
Summary:
Pakistan on Friday said it will allow convicted prisoner Jadhav to meet his wife on humanitarian grounds, after denying consular access to India 18 times.
Summary:
The government on Saturday suspended two post-graduate doctors who had examined the 19-year-old Bhopal gangrape victim and prepared a report stating that 'sex was consensual'.
Summary:
Wipro Consumer Care, the personal care arm of Wipro Enterprises has agreed to invest an undisclosed amount in Delhi-based consumer products company Happily Unmarried.
Summary:
The new pay hike for central government employees will come into effect from April next year, according to a report.
Summary:
Iraqi forces had captured Hawija, Islamic State's last stronghold in northern Iraq, in October this year.
Summary:
Bikram Choudhury Yoga, the studio that introduced hot yoga, has filed for bankruptcy in the US.
Summary:
In his memoir, former British Prime Minister Gordon Brown has called Pakistan the "epicentre of terrorism".
Summary:
Talking about box-office performance of films, actor Irrfan Khan has said that he is not Sachin Tendulkar to score 100 in most of the matches.
Summary:
Summary:
Padma Bhushan awardee historian Irfan Habib has said that Rani Padmavati is an imaginary character.
Summary:
Murad further clarified that Khilji has been shown as a villain in the film.
Summary:
American actress-model Jenny McCarthy has said that she once asked Hollywood actor-filmmaker Steven Seagal to buy her Playboy video when he tried to sexually harass her.
Summary:
Vice President M Venkaiah Naidu on Saturday said that while Google was important, it could never replace the place of 'guru' (teachers) in the lives of students.
Summary:
A 25-year-old Hindu woman has moved the Kerala High Court against a Muslim man, alleging that he wanted to take her to Syria and sell her to ISIS as a sex slave.
Summary:
The woman was reportedly breast-feeding her child when police decided to tow the car for illegal parking.
Summary:
The Savitribai Phule Pune University on Saturday scrapped the circular which stated that only vegetarian and teetotaller students would be considered for gold medals.
Summary:
Indian spinner Harbhajan Singh mocked the Sri Lankan cricket team, tweeting that it needs to revive to get to international level, but later deleted the post.
Summary:
Former Indian captain MS Dhoni officially launched his first global cricket academy in Dubai, UAE on Saturday.
Summary:
Father of the Class XI Ryan International student, accused of murdering eight-year-old Pradyuman Thakur, has alleged that his son is being tortured by the Central Bureau of Investigation.
Summary:
Former Pakistan President Pervez Musharraf on Saturday announced a grand alliance of 23 political parties to contest in the general elections next year.
Summary:
Vij added, "Rani Padmavati is the symbol of Indian women's pride.
Summary:
Meanwhile, officials claimed only 19 patients in government hospitals have died of dengue this year.
Summary:
Congress General Secretary Ashok Gehlot has claimed that the GST Council had cut tax rates due to pressure mounted by party Vice President Rahul Gandhi.
Summary:
Adding that it is taking legal action against him, Faraday Future said Krause's leadership has led to "severe damages" to the interests of the company.
Summary:
Stanford University researchers have created a material that controls the amount of heat lost depending on how one wears it.
Summary:
Switzerland-based researchers have developed a thin, organic rubber film that generates electricity if stretched and compressed.
Summary:
Bakr bin Laden, half-brother of former al-Qaeda chief Osama bin Laden was among those detained in Saudi Arabia's recent crackdown on corruption.
Summary:
The Afghan leader also welcomed the International Criminal Court's decision to investigate war crimes in Afghanistan, including those committed during his tenure.
Summary:
US President Donald Trump has said that his Russian counterpart Vladimir Putin felt insulted by allegations of Russian interference in the US elections.
Summary:
Summary:
Denying reports of dating Hollywood actor Tom Cruise, actress Vanessa Kirby said, "I've been in a relationship for two years!
Kirby added, "We hadn't started filming, and all of a sudden we're getting married!
Summary:
Bigg Boss 11 contestant Arshi Khan's publicist Flynn Remedios has said that co-contestant Priyank Sharma could be arrested while he is still on the show.
Summary:
Karan Johar has said he never got credit for making the short film on homosexuality in the anthology film 'Bombay Talkies' but if his name was Karan Kashyap, he would have got credit.
Summary:
Further, seminars will be held on India's defence literature, art, music, photography, among others.
Summary:
Mercedes confirmed valuables had been stolen, but everyone escaped "safe and uninjured".
Summary:
Afghanistan's Baheer Shah, who slammed an unbeaten 256 in his first-class career's first-ever innings, scored a triple century in his career's fourth match.
Summary:
Maharashtra government has announced incentives on a per-case basis for doctors working in government district and sub-districts hospitals.
Summary:
The deceased was suffering from fever when he was given the injection by the accused, which deteriorated his condition.
Summary:
The incident happened during a scuffle between both sides in the second half of the match.
Summary:
Congress Vice President Rahul Gandhi on Saturday said that if the BJP doesn't reduce the GST tax rate to a flat 18%, "we will do it in 2019".
Summary:
Facebook Local will allow users to locate nearby restaurants and also show nearby events under Trending Events feed.
Summary:
Summary:
Aiming to turn the outer space into a "warfighting domain" the US Air Force will work towards enhancing its space capabilities, Air Force Secretary Heather A.
Summary:
This comes after a Muslim recruit committed suicide last year after Felix yelled at him and slapped him.
Summary:
About 40% of the businesses filing returns on GSTN portal have nil tax.
Summary:
During the first Test between South Africa and Australia at Cape Town, on 11/11/11 at 11:11, South Africa needed 111 runs to win.
Summary:
E-commerce giant Alibaba said its Singles' Day sales surpassed last year's total in just 13 hours, hitting a record high of $18 billion.
Summary:
A crowdfunding campaign is seeking ã40,000 (nearly â¹35 lakh) to build a statue for Félicette, the first cat to experience weightlessness of space and the only one to survive the journey.
Summary:
However, Kreisberg has denied the allegations and said any inappropriate touching or massages never occurred.
Summary:
Indian mixed martial artist Bharat Khandare has become the first fighter from India to sign with Ultimate Fighting Championship (UFC).
Summary:
Former Finance Minister Yashwant Sinha on Friday said that his son and Union Minister Jayant Sinha should be probed, but so should BJP chief Amit Shah's son Jay Shah.
Summary:
India plans to acquire its second nuclear-powered submarine on lease for over $1.5 billion.
Summary:
Microblogging site Twitter has increased the display name character limit to 50 from the previous limit of 20 characters.
Summary:
India has been ranked the world's sixth most vulnerable country facing climate risk, as per Berlin-based NGO Germanwatch, which analysed data from 1997-2016.
Summary:
Pope Francis has warned nations against possessing and stockpiling nuclear weapons, even for the purpose of deterrence.
Summary:
Pakistan would receive $350 million upon certification from the US that it was acting against militant groups.
Summary:
Bitcoin's price fell below $6,500 (â¹4.25 lakh) on Friday, having fallen by over $1,300 since hitting an all-time high on Wednesday.
Summary:
Speaking about the protests and threats against Sanjay Leela Bhansali's upcoming film 'Padmavati', actress Madhuri Dixit said, "Violence is not the answer." "It's all about love and that's how it should be solved," she added.
Summary:
Actress Taapsee Pannu has said modelling is not just about being pretty.
Summary:
A three-year-old boy who had a severe allergy to dairy has died from anaphylactic shock after he was fed a grilled cheese sandwich at his New York City preschool.
Summary:
There will be a final reception in New Delhi on November 30, which is expected to be attended by Indian cricketers.
Summary:
UFC champion Conor McGregor attacked officials after jumping into the cage to celebrate his teammate Charlie Ward's victory at an MMA event in Dublin.
McGregor, who was not permitted to step into the octagon, retaliated after the referee and officials tried to interrupt the post-fight celebration.
Summary:
Users have reported that when a Bluetooth headphone with a microphone is connected to their Pixel 2 devices, the microphone fails to detect their voice, preventing them from operating Google Assistant.
Summary:
Zuckerberg also said that being a community builder and an engineer requires the ability to share values.
Summary:
The rooms at the 5 Million Star Hotel are surrounded by trees, and guests are not allowed to wander the grounds to ensure privacy.
Summary:
BJP leader and former Finance Minister Yashwant Sinha said Finance Minister Arun Jaitley had not applied his mind while rolling out GST.
Summary:
Trump had earlier praised Duterte for his war on drugs which received international criticism and had claimed around 3,900 lives.
Summary:
US President Donald Trump "begged for a nuclear war on the Korean peninsula" during his first trip to Asia and showed he is a "destroyer", North Korea's Foreign Ministry said on Saturday.
Summary:
At least five people were injured when police used rubber bullets and tear gas to bring the situation under control.
Summary:
The arrests made by Saudi Arabia in its anti-corruption probe, which included at least 11 princes and several government officials, were "well intended", US State Secretary Rex Tillerson has said.
Summary:
Nestle India on Friday reported a 23.26% year-on-year increase in profit to â¹343 crore for the quarter ended September 30.
Summary:
The court ordered BMC to promptly make the garden available to all.
Summary:
Further, GST on eight items has been reduced from 12% to 5%, and six items have been moved from 5% slab to nil.
Summary:
The Delhi government has called off the odd-even rule after the NGT asked it to remove exemptions.
Summary:
Doctors let the donor's heart suffer an arrest before retrieval, and resuscitated it using a technology dubbed 'heart in a box', preserving it for eight hours until the transplant.
Summary:
On the completion of six years of her Bollywood debut 'Rockstar' which was directed by Imtiaz Ali, Nargis Fakhri said, "I am forever grateful to Imtiaz for choosing me...
Summary:
Actress Alia Bhatt's look from her upcoming film 'Raazi' has been unveiled.
Summary:
Users have reported that a vertical green line is appearing on the edge of their Apple iPhone X devices.
Summary:
On being asked about the future capital needs of Paytm, the digital payments platform's Founder Vijay Shekhar Sharma said, "Mere paas ma hai, Jack Ma." Sharma referred to Jack Ma, the Founder of Alibaba which is an investor in Paytm.
Summary:
Alibaba had recorded sales of $17.7 billion on its platform at last yearâÂÂs Singlesâ Day.
Summary:
Two Canadian girls scaled a mobile tower in a restricted area in Dewas, Madhya Pradesh, reportedly to click selfies from the highest point.
Summary:
A stray cat has become a suspect in the investigation of an attempted murder of an 82-year-old woman in Japan.
Summary:
Filmmaker Karan Johar has said he hopes actor Shah Rukh Khan's son Aryan Khan becomes a superstar.
"Not because he's Shah Rukh's son, but because he is a bundle of talent.
Summary:
Former Indian cricketer Sachin Tendulkar took to Instagram on Friday to share a photo with his friends which included Vinod Kambli, Ajit Agarkar, Amol Muzumdar and his other friends.
Summary:
The Rajasthan Education Department's monthly magazine 'Shivira' has advised that while running and cycling are good for health, women may grind âÂÂchakkiâÂÂ, fill water pitchers or sweep or mop floors in order to stay fit.
Summary:
Bhalswa landfill site in New Delhi caught fire during the early hours of Saturday morning.
Summary:
Former United States goalkeeper Hope Solo has accused former FIFA chief Sepp Blatter of sexually assaulting her at the Ballon d'Or awards ceremony in January 2013.
Summary:
Over two months after the Brihanmumbai Municipal Corporation rejected the proposal for reserving 33 hectares of land at Aarey Milk Colony for Metro car shed instead of green zone, the state government has overruled it.
Summary:
November 11 is celebrated as National Education Day in India every year, commemorating the birth anniversary of independent India's first Education Minister Maulana Abul Kalam Azad.
Summary:
A camera battery kept in a suitcase exploded outside the security checkpoint at Orlando International Airport in the US on Friday, according to reports.
Summary:
A Flybe aircraft carrying 52 passengers and four crew members crash landed in Belfast, Northern Ireland while making an emergency landing after its nose gear failed.
Summary:
A Doha-bound Qatar Airways flight made an emergency landing in Goa today morning after its pilot fell sick during the flight, a senior official said.
Summary:
Amazon may face â¹18 lakh fine over workplace safety violations in the US after the state of Indiana found potential violations at a warehouse.
Summary:
The annual 'Taurid' meteor shower would be seen peaking during the weekend over Northern Hemisphere as Earth passes through debris left by Comet Encke.
Summary:
A radio station in Sweden's Malmo city played the ISIS recruitment song 'For the Sake of Allah' on a loop for nearly 30 minutes after being hacked.
Summary:
South Sudan is facing a civil war since late 2013 after a feud sparked within the government.
Summary:
An Italian priest has sparked outrage after telling a 17-year-old girl who had been raped by a migrant that she deserved it.
Summary:
Indian shuttler Kidambi Srikanth, who recently climbed to the second spot in the men's singles world rankings, is set to miss the China Open Super Series due to a leg injury.
Summary:
NGT also slammed Delhi government asking why the Odd-Even scheme wasn't implemented earlier, when the air quality was worse.
Summary:
India has achieved "astounding growth" and a new world of opportunities for its expanding middle class since it opened its economy, US President Donald Trump said while addressing the APEC summit in Vietnam on Friday.
Summary:
Officials from SAFAR, maintained by the Ministry of Earth Sciences, said that major portion of the pollutants that triggered the three-day haze in Delhi had come from west Asian countries like Iraq, Kuwait and Saudi Arabia.
Summary:
Tweeting about it, Shahid had earlier written, "Let's...hope that soon electricity will be a right and not a privilege for all."
Summary:
A new song titled 'Ek Dil Ek Jaan' from Deepika Padukone, Shahid Kapoor and Ranveer Singh starrer 'Padmavati' has been released.
Directed by Bhansali, 'Padmavati' is scheduled to release on December 1.
Summary:
The National Green Tribunal (NGT) today asked the Delhi government why it hadn't implemented the odd-even scheme earlier, when the air quality was worse in the capital.
Summary:
Even as the family of the seven-year-old slain Ryan International School student demanded that the 16-year-old accused be hanged, the legal framework does not allow that.
Summary:
The Delhi Urban Shelter Improvement Board has decided to equip all night shelters for homeless in the national capital with television sets, breakfast, and geysers.
Summary:
Delhi government's decision to allow free rides on DTC buses during the five days of odd-even scheme in the city could lead to an estimated loss of â¹9.5 crore, officials said.
Summary:
The CBI is probing whether another Ryan International School student helped the 16-year-old boy in the crime or destruction of evidence in the seven-year-old student's murder case.
Summary:
The Army will reportedly use three precast sets of bridges.
Summary:
However, the flight later landed in Delhi, the police added.
Summary:
US carrier United Airlines has temporarily suspended all flights to Delhi due to concerns over the capital's air quality.
Summary:
A Bengaluru-based woman has alleged that she was sexually harassed by three AirAsia employees, days after the airline filed a police complaint against her for allegedly being disruptive.
Summary:
A 4,000-year-old clay tablet discovered in Turkey has been identified as a marriage contract with the first known remedy for infertility.
Summary:
US President Donald Trump and his Russian counterpart Vladimir Putin have agreed that there is no military solution to the Syrian conflict and they will continue joint efforts on fighting ISIS in the country until its defeat.
Summary:
UNESCO member states on Friday appointed former French Culture Minister Audrey Azoulay as the new Director-General of the cultural agency.
Summary:
Actor Ezra Miller, who will be seen in the upcoming superhero film 'Justice League', has revealed he was told he had done a silly thing by coming out as gay as it'd cost him acting jobs.
Summary:
Summary:
Summary:
American singer Nicki Minaj's brother Jelani Maraj has been convicted of raping his stepdaughter on multiple occasions when she was 11 years old.
Maraj, who was arrested in 2015, now faces 25 years to life in prison.
Summary:
Noting that Bruhat Bengaluru Mahanagara Palike (BBMP) couldn't find land for solid waste management plants, but installed Indira Canteen at multiple locations, the Karnataka High Court on Friday asked BBMP to not let Bengaluru become Delhi.
Establish solid waste management plants," it added.
Summary:
The US has taken down a notification it issued earlier this week in which it offered a reward of over â¹3 crore ($493,827) to any NGO that comes up with ways to promote religious freedom in India.
Summary:
Indian cricketer Gautam Gambhir was named a government nominee in the Delhi and District Cricket Association (DDCA) managing committee on Friday.
Honoured to be Government Nominee on DDCA Managing Committee.
Summary:
The exercise is expected to continue for a few more days, DFS Director GC Misra said.
Summary:
The people facing kidnapping charges for allegedly forcing a couple and their baby into a car full of naked people in Canada had drunk a hallucinogenic tea that caused the "whole crazy spell", a suspect's relative has claimed.
Summary:
Further, the Patna HC announced verdicts on 62,061 cases out of the 63,070 cases filed in only seven-and-a-half months.
Summary:
Comedian Louis CK has issued a statement in which he has admitted that the sexual misconduct claims by five women against him are true.
Summary:
The residue paddy straw is of no use to the farmer and can't also be used as animal fodder due to its high silica content.
Summary:
A NASA-funded study has found that India would soon overtake China as the world's top sulphur dioxide (SO2) emitter after its emissions rose by 50% since 2007, while the latter's declined by 75% for the same period.
Summary:
The Russian government has said that it is shortening academic year at some universities in cities which will host the 2018 FIFA World Cup to make room in dormitories for police amid fears of terror attacks.
Summary:
Asked whether he considered separatist group Hurriyat Conference a stakeholder in the state, Government interlocutor Dineshwar Sharma on Friday said that all Indian citizens living in J&K are stakeholders.
Summary:
The US' National Archives and Records Administration (NARA) has published a series of videos of US air strikes during the Vietnam War. The videos show napalm and phosphorus bombs being dropped on rural and wooded areas of Vietnam in 1965.
Summary:
Pakistan will construct community bunkers on the Line of Control (LoC) to protect civilians from alleged cross-border firing by Indian troops, Pakistan's PM Shahid Abbasi has said.
Summary:
Kerala Police have registered a case against an Air India Express pilot after a former flight attendant alleged that he sexually harassed her during a flight on September 18.
Summary:
French nuclear safety institute IRSN has suggested a possible source of a nuclear leak in Russia or Kazakhstan owing to a "harmless" radioactive cloud that spread over Europe in the last few weeks.
Summary:
US President Donald Trump has said that the Asia-Pacific region must not be held hostage to North Korea's "twisted fantasies of violent conquest and nuclear blackmail".
Summary:
The US and South Korea on Saturday started a four-day joint naval exercise involving world's three largest aircraft carriers near the Korean peninsula.
Summary:
Indonesia's Constitutional Court has recognised the native faiths in the country by overturning a law that required citizens to identify as followers of only six officially recognised religions.
Summary:
Transport for London has been given the 2017 'Bad Grammar Award' by The Idler Academy in Britain.
Summary:
A Chinese company is offering the first 33 buyers 12 bottles of baijiu liquor monthly for the rest of their lives, for a single payment of 11,111 yuan (â¹1 lakh) as part of the Alibaba Singles' Day shopping holiday.
Summary:
Bhojpuri film director Shad Kumar allegedly committed suicide by hanging himself at his residence in Mumbai, as per the local police.
Summary:
Ousted Censor Board chief Pahlaj Nihalani, while speaking about the protests against 'Padmavati', said, "Censor Board knows which film should be passed and which should not." "It is the responsibility of the Censor Board not the government or public," he added.
Summary:
Actor Mohnish Bahl, while talking about his absence from television shows, said, "I feel the creative and script content is pathetic and this is my personal point of view." "Shows start off on a good note but three-four months down the line they completely lose it," he added.
Summary:
Actress Lupita Nyong'o has slammed Grazia UK magazine for editing her curly hair on the cover of its latest edition.
Summary:
Weeks after quitting the Trinamool Congress and joining the BJP, Mukul Roy on Friday said that TMC and its Biswa Bangla initiative was a âÂÂprivate companyâ owned and run by Mamata Banerjee's nephew Abhishek Banerjee.
Summary:
BJP leader and Madhya Pradesh Minister Om Prakash Dhurve has admitted that he is not quite able to understand the Goods and Services Tax (GST), which was introduced by the BJP-led Centre on July 1.
Summary:
The Union Cabinet has approved â¹25,703 crore for the development of an Exhibition-cum-Convention Centre (ECC) at Dwarka in Delhi.
Summary:
The new buses reportedly run on lithium-ion batteries and are emission-free.
"The buses will reduce operational and maintenance costs by 50% to 60%," a BEST official said.
Summary:
Sikkim were bowled out in 24 overs, with seven of their players scoring a duck.
Summary:
Union Minister Nitin Gadkari on Friday announced World Bank-backed â¹6,000 crore scheme to improve the irrigation facilities and water accessibility capacity in several states including Maharashtra, Karnataka, and Telangana.
Summary:
After the Centre cleared the proposal for formation of the National Testing Agency (NTA), entrance examinations like JEE Main and NEET are likely to be conducted twice a year from 2019.
Summary:
The practice of baggage stamping has ended at the Pune, Nagpur, Trichy and Goa airports, increasing the total number of such airports to 23, the CISF has announced.
Summary:
Earlier, Central Board of Film Certification (CBFC) member Arjun Gupta had said Bhansali should be tried for treason.
Summary:
Shah Rukh Khan, Amitabh Bachchan, Kamal Haasan and Kajol were among those present on the opening day of the 23rd Kolkata International Film Festival (KIFF) on Friday.
Summary:
US President Donald Trump on Friday hailed Prime Minister Narendra Modi's efforts for successfully bringing India and its people together.
Summary:
The National Green Tribunal on Friday directed the pollution-affected states to ensure that no more incidents of stubble burning are reported, in a bid to counter the 'Severe Plus' level of air pollution in Delhi-NCR.
Summary:
Indian Army chief General Bipin Rawat on Friday said that the armed forces were not facing any shortage of weapons and could give a befitting reply to the country's enemies.
Summary:
Around four lakh old four-wheelers will be seized in Delhi-NCR, the Transport Department said on Friday.
Summary:
Users can send their picture to themselves on Messenger to create an unreadable numerical fingerprint of the image, Facebook added.
Summary:
Khosrowshahi also said Uber's decision of bringing SoftBank in as a strategic investor at the right price is good.
Summary:
ISIS leader Abu Bakr al-Baghdadi was reported to be present in the Syrian town of Albu Kamal during an operation by the Syrian Army and its allies to clear it, a Hezbollah-affiliated news outlet has said.
Summary:
This comes after Saudi Arabia's Crown Prince Mohammed bin Salman accused Iran of "direct military aggression" by supplying missiles to the Houthi rebels.
Summary:
Actress Bhumi Pednekar has said that in two and a half years, her body went through two major transformations as she first gained weight to reach 92 kg and then lost weight to become 56 kg.
Summary:
American television host Ellen DeGeneres' wife Portia de Rossi has claimed actor-producer Steven Seagal once unzipped his pants while she was at his office for an audition.
She tweeted, "He told me how important it was to have chemistry off-screen." Portia added, "I ran out...
Summary:
Prime Minister Narendra Modi on Friday met the Indian U-17 football team, which represented the nation in the FIFA World Cup for the first time, at his office in Delhi.
Summary:
Reacting to Ajit Agarkar's comments that India must replace MS Dhoni in T20Is, a user tweeted, "I think you must respect him...your comments on Dhoni are like local MLA commenting on PM's job." "Wen u don't have any work to do and u wnt to grab media attention, dat's wen some players pop in eg.
Summary:
The civic bodies in Delhi have not been able to identify even one area in the city which is completely clean, the Delhi High Court has said.
Summary:
Unauthorised entry of anyone in jail premises is banned as per Assam's Jail Manual.
Summary:
Golfers at the Women's Indian Open 2017, being held in Gurugram, experienced burning eyes and sore throats due to the hazardous levels of air pollution and smog in the National Capital Region.
Summary:
Messi came to know that Driussi was part of Argentina's U-20 team when the latter uploaded their picture on Instagram.
Summary:
Students of a government primary school in Madhya Pradesh were allegedly made to clean a toilet using their mid-day meal utensils.
Summary:
Heller had said that it was time to replace the lens of Gandhi's glasses on the logo of the mission with the human rights' lens.
Summary:
A Tokyo aquarium said on Thursday it has resumed partial operations after 1,235 of the 1,308 fish in its largest tank had died, most likely because of a lack of oxygen.
Summary:
Russia offered to send five women to US President Donald Trump's hotel room during his 2013 trip to the country for the Miss Universe pageant, Trump's former bodyguard has testified.
Summary:
Hezbollah leader Hassan Nasrallah on Friday accused Saudi Arabia of detaining Lebanese Prime Minister Saad Hariri, calling it "unprecedented Saudi intervention" in Lebanese politics.
Summary:
Iran is complying with the 2015 nuclear deal it had signed with the global powers, the United Nations nuclear watchdog's Director Yukiya Amano has told US Ambassador Nikki Haley in a meeting.
Summary:
Philippine President Rodrigo Duterte has revealed that he used to go in and out of jail when he was a teenager and had once stabbed a person to death.
Summary:
A former colleague of Texas church shooter Devin Kelley has revealed that Kelley bought animals from classified ads website Craigslist to use them as targets during shooting practice.
She added that she stopped communicating with Kelley after his admission.
Summary:
A top Saudi cleric, Abdullah bin Sulaiman Al-Manea, has issued a fatwa stating that Muslims may pray in churches or synagogues, according to reports.
Summary:
The GST Council on Friday reduced the tax rate on AC and non-AC restaurants to 5%, adding that they will not get Input Tax Credit (ITC) benefits.
Summary:
Pakistan's Foreign Minister has offered to arrange a meeting between former Indian Navy officer Kulbhushan Jadhav, who was sentenced to death over espionage, and his wife on "humanitarian grounds".
Summary:
The Pune University has announced new rules under which only vegetarian and teetotaller students will be considered eligible for receiving gold medals.
Summary:
The Mila Kunis, Kristen Bell and Kathryn Hahn starrer 'A Bad Moms Christmas', which released on Friday, "has zero laughs", wrote Hindustan Times.
Summary:
The NTA will initially conduct entrance examinations which are currently being conducted by the CBSE.
Summary:
The country returned to international cricket after a 21-year gap on November 10, 1991, playing versus India at Calcutta.
Summary:
An estimated 25,000-30,000 people die of pollution-related causes in Delhi-NCR during the winter months every year, according to AIIMS Director Dr Randeep Guleria.
Summary:
Britain's Oxford and Cambridge universities invested in offshore firms to avoid US tax on hedge fund investments, Paradise Papers revealed.
Summary:
Stating that two-wheelers contribute to 46% of the air pollution, it called the scheme a 'farce'.
Summary:
PM2.5 refers to particulate matter which has a diameter less than 2.5 micrometre.
Summary:
An app created by Raina McLeod allows users to check if their nearby McDonald's ice cream machines are working or not in real-time.
Summary:
The women will be part of the 45-member council responsible for discussing draft laws, general government policy, and the state's draft budget.
Summary:
The Index of Industrial Production for mining sector rose 7.9%, while that for manufacturing grew 3.4% in September.
Summary:
She added that once she got to discuss about such comparisons personally with Madhuri.
Madhuri is a very warm person," said Niki.
Summary:
Summary:
Talking about the film 'Padmavati', BJP leader Subramanian Swamy said, "Many big budget movies are made these days, we should see if there is conspiracy in it.
Summary:
The characters from the film are seen wearing masks in the picture.
Summary:
American paintings conservator Mary Schafer found a dead grasshopper in Vincent van Gogh's Olive Trees painting, while it was being scanned for research.
Summary:
Reacting to thick smog in parts of North India, Indian spinner Harbhajan Singh said "we are coming closer to death with every breath we take in this 'hell' climate".
Summary:
Starting January, bike ambulance facilities would be introduced on a pilot basis in three of Delhi's 11 districtsâ East, North-east, and Shahdara.
Summary:
After Twitter increased the character limit from 140 to 280, ICC trolled Sri Lankan cricketers through a tweet that included full names of four Sri Lankan cricketers, which were over four words each.
Summary:
The Rajasthan government on Friday ordered government doctors on strike to return to their duties by 7 pm on Friday and warned of strict action against those not complying with the order.
Summary:
Indian all-rounder Hardik Pandya, who was initially named in the squad for first two Tests against Sri Lanka, has been rested for the series starting November 16.
Summary:
A British surfer broke his back after getting crushed by a nearly 60-foot wave, while surfing off a beach in Nazare in Portugal.
Summary:
Mobile app called 'Dawai Dost' has been developed by 17-year-old Aryaman Kunzru that reminds old people of their medicine schedules.
Summary:
The case was brought forward last year by two Uber drivers.
Summary:
She harboured the intention to make her way to the conflict zone to join ISIS, they added.
Summary:
The government has decided to give proxy voting rights to over 25 million non-resident Indians (NRIs) spread across the world, Attorney General KK Venugopal told the Supreme Court on Friday.
Summary:
Those who missed it can still watch the live-stream of the event on November 16 at 9:30 PM on www.oneplusstore.in/event.
Summary:
The Supreme Court on Friday refused to entertain a plea seeking minority status for Hindus in seven states, including Mizoram and Punjab.
Summary:
The council had reduced the number of items placed in the maximum GST bracket of 28% to 50, from the 227 earlier.
Summary:
Twitter has paused all general 'blue tick' verifications claiming it is interpreted as an endorsement or an "indicator of importance." Twitter CEO Jack Dorsey said that Twitter realised "some time ago" that the system is broken and needs to be reconsidered.
Summary:
In letters to the National Anti-Doping Agency and Sports Ministry, BCCI has said NADA has no jurisdiction to conduct dope tests on Indian cricketers.
Summary:
Telangana Chief Minister K Chandrashekar Rao on Thursday declared Urdu as the state's second official language.
Summary:
Ganguly is India's second-most successful Test captain, after MS Dhoni.
Summary:
However, Just Dial denied the report saying, "there is no proposal in respect of acquisition of business of Just Dial by Google and news published...is factually incorrect."
Summary:
Apple has confirmed that it is aware of the instances where iPhone X's screen will become temporarily unresponsive to touch after a rapid change to a cold environment.
Summary:
Maker of the augmented reality (AR) game Pokémon Go, Niantic, has announced it is making a Harry Potter-based AR game.
The 'Harry Potter: Wizards Unite' game will allow players to learn spells, fight legendary beasts, and team up with others to beat enemies, Niantic said.
Summary:
Scientists developing human stem cells that grow into brain tissue have reported successful integration of the organoids into rat brains.
Summary:
India's largest lender SBI has posted multi-fold year-on-year jump in consolidated net profit at â¹1,840 crore for the September quarter, mainly because of the sale of its stake in SBI Life Insurance.
Summary:
The GST Council has reduced the tax rate on a total of 177 items from 28% to 18%.
Summary:
Vidya Balan has revealed she faced a fair amount of sexism in the initial phase of her career.
Summary:
Actress Deepika Padukone has denied reports that she is portraying poetess Amrita Pritam in an upcoming biopic on poet Sahir Ludhianvi, which is being produced by Sanjay Leela Bhansali.
Summary:
Comedian Bharti Singh is seen carrying her fiancé Haarsh Limbachiyaa in their wedding card, which she shared on social media.
Summary:
Comedian Kapil Sharma, on being asked about his marriage plans, said, "I don't think I'm ready for marriage right now." "Show kar liya, film bhi kar liya, ab shaadi karne ke liye bolenge toh zyada mushkil ho jayega," he jokingly added.
Summary:
A US daily, USA Today, has been trolled on social media after it posted a video claiming that a chainsaw bayonet could be attached to the rifle used in the recent Texas church shooting.
Summary:
Former cricketer Virender Sehwag played cricket with Belgium's King Philippe and Queen Mathilde and several school kids at the Oval Maidan in Mumbai, as part of an event organised by UNICEF.
Summary:
The Bombay High Court on Thursday told the Maharashtra government, "You are not a dictator," after the government arbitrarily revoked the allotment of a 12,500-square-metre plot for a Christian cemetery in Goregaon.
Summary:
Windies cricketer Chris Gayle has said that he will reveal details about his recently concluded defamation case, with the bid for an interview starting at almost â¹2 crore.
Summary:
A 2,000-year-old inscribed sundial has been uncovered by UK-based archaeologists during the excavation of a roofed theatre in an ancient Roman town.
Summary:
A US-based study has discovered that an injection of nanoparticles can divert neutrophils, inflammation-causing immune cells, away from an injury site.
Summary:
Denying the constitutional status of Russia, the two men said they would not obey the 'illegitimate' requirements of the Russian court.
Summary:
A Myanmar court on Friday sent two journalists to jail for two months for violating an aircraft law by filming with a drone near the country's Parliament without permission.
Summary:
Chinese actress Zhao Wei and her husband Huang You Long have been barred from China's securities markets for five years over irregularities linked to a takeover bid.
Summary:
The Goods and Services Tax Council on Friday reduced the number of items being taxed in the highest 28% bracket to 50, from the earlier 227.
Summary:
Calling the odd-even plan a 'farce', the National Green Tribunal (NGT) on Friday said it will stay the imposition of the plan until the Delhi government proves that it has reduced pollution.
Summary:
The RBI has directed banks to provide doorstep banking to senior citizens of over 70 years of age and differently-abled people by December 31.
Summary:
While dismissing the petition, the Supreme Court said that the Censor Board has not yet issued a certificate to the film.
Summary:
Rajkummar Rao starrer 'Shaadi Mein Zaroor Aana' "comes packaged with the elements [of] a Bollywood entertainer," wrote Hindustan Times (HT).
It was rated 2/5 (Times Now), 3/5 (TOI) and 3.5/5 (HT).
Summary:
Abdul-Munim Sombat Jitmoud, whose son was robbed and stabbed to death in 2015, said he had forgiven Trey Alexander Relford in the spirit of Islam.
Summary:
The government has raised the maximum amount that a Central government employee can borrow from the government for house-building to â¹25 lakh from the earlier â¹7.5 lakh.
Summary:
The Delhi Metro has announced plans to run extra trips across its network to counter the pollution in Delhi-NCR.
Summary:
Krzanich said, Merck CEO Kenneth Frazier's decision to quit from the council triggered him to leave as things became politicised after Trump criticised Frazier's decision.
Summary:
Investors in adtech startup Outcome Health including Google parent Alphabet and Goldman Sachs have sued the startup alleging fraud in the US.
Summary:
CEO of Amazon Worldwide Consumer, Jeffrey Wilke has said that Amazon is focused on customers and not competitors.
Summary:
Within hours of treatment, the older cells started to divide, and had longer telomeres, chromosome 'caps' which shorten on ageing.
Summary:
A Japan-based study has revealed that only 13% of Earth's surface harboured enough toxic hydrocarbons to cause a mass extinction following an asteroid impact.
Summary:
A monkey passed out for ten hours after drinking a cup of coffee stolen from a tourist in Bangkok on Sunday.
Summary:
The family said the thieves either had a conscience or got scared.
Summary:
Markets regulator SEBI has imposed a total penalty of â¹5 lakh on eight individuals for violating capital market norms in a matter relating to firm.
Summary:
It is further being reported that actor Vicky Kaushal has been signed as the film's male lead.
Summary:
Aishwarya Rai Bachchan's 'Fanney Khan' is set to release on Eid 2018, the same time as Salman Khan's 'Race 3'.
Summary:
Actress Mahira Khan has said regardless of how she conducts herself, what she wears, or how she speaks, nobody is allowed to harass her.
Summary:
Actress Parvathy, who has starred in the film 'Qarib Qarib Singlle' has revealed that she too has faced sexual harassment.
Summary:
The Voter-Verifiable Paper Audit Trail (VVPAT) machines which were used for the first time at all polling stations in the Himachal Pradesh assembly elections, malfunctioned at 129 polling stations on Thursday.
Summary:
Heavy security has been deployed in the sensitive areas and no processions related to Tipu Jayanti would be allowed, except for one organised by the government.
Summary:
In a bid to promote artists, the BMC along with Maharashtra Tourism Development Corporation will reintroduce Kala Ghoda open art gallery from November 19.
Summary:
Technology giant Apple has rolled out iOS 11.1.1 software update to fix keyboard autocorrect issue.
Summary:
The Island Development Agency (IDA) on Wednesday decided to develop an airport on Minicoy Island in an effort to unlock the potential of tourism and the tuna fishing industry in Lakshadweep.
Summary:
However, a massive increase in greenhouse conditions over 200,000 years caused extinction of over 90% species, including the polar forests, they added.
Summary:
This comes after a student of Arab descent was arrested for taking photos of confidential documents while interning with German police.
Summary:
Dubai police officers on Thursday set a Guinness World Record by pulling the world's largest passenger airliner Airbus A380 for a distance of 100 metres.
Summary:
A British inventor named Richard Browning, who is being dubbed Iron Man, set a Guinness World Record on Thursday for the fastest speed in a flight suit by travelling at over 50 km/h.
Summary:
The Times of India (TOI) called it a "sweet film that will leave you smiling." "The film...
It was rated 3/5 (NDTV), 3.5/5 (TOI) and 4/5 (HT).
Summary:
The indigenously-made single engine fighter Tejas isn't enough to protect Indian skies, the Indian Air Force (IAF) told the government.
Summary:
The pilot of a delayed Jaipur-Delhi Alliance Air flight refused to fly beyond his duty hours on Wednesday night due to DGCA regulations, a Jaipur airport official said.
Summary:
A New Zealand-based study has discovered the country experienced an average of 100 days per year from 1909-1938 with temperatures lesser than 9úC, while it reduced to 70 days from 1987-2016.
Summary:
A NASA study has found evidence that a geothermal heat source as powerful as US' Yellowstone supervolcano, called a mantle plume, lies deep below Antarctica's ice sheet, with a maximum thickness of 4.7 km.
Summary:
She had texted her boyfriend about getting kidnapped, sparking a search involving 50 soldiers and a helicopter.
Summary:
The parents have been ordered not to contact the girl by a court.
Summary:
BJP member Arjun Gupta has said filmmaker Sanjay Leela Bhansali should be tried for treason for his upcoming film 'Padmavati'.
Summary:
The comedian's publicist said he will issue a written statement on the allegations in the coming days.
Summary:
The ED wanted the actor to explain how he received â¹1.15 crore from a Noida-based company called AddsBook.
Summary:
Disney on Thursday announced plans for a new Star Wars film trilogy and a live-action TV series, which will be the franchise's first live-action TV show.
Summary:
Politician and former BCCI chief Sharad Pawar said that the Supreme Court-appointed Lodha Committee, which recommended a number of structural reforms in the Indian cricket board, has "definitely destroyed" cricket.
Summary:
The CBI's probe revealed that the murder weapon was planted on the conductor by the Gurugram police.
Summary:
Over â¹87 crore cash and 2,600 kg of gold and other precious metals were detected by the Central Industrial Security Force at airports in a year since demonetisation, as per government data.
Summary:
Congress' Mandakini Mhatre defeated Shiv SenaâÂÂs Bhoir by 26 votes in the deputy mayor elections.
Summary:
English football side MK Dons' fans have raised money to help with the repair of Hyde United's pitch, which got damaged after flares were thrown onto the pitch during an FA Cup tie between the sides.
Summary:
South African apprentice jockey Dylan Caboche was suspended for two weeks for punching a horse in the ribs before a race in Australia.
Summary:
Sidelined AIADMK leader TTV Dhinakaran on Thursday said the Income-Tax raids at the residences of his family members in Tamil Nadu were aimed at removing him and his aunt, jailed leader VK Sasikala from politics.
Summary:
The Centre is working on plans for the new airports in Delhi, Mumbai, Chennai and Kolkata, Airports Authority of India Chairman Guruprasad Mohapatra said.
Summary:
Bengaluru's iconic Lalbagh Botanical Garden will soon exhibit a 'Mini Niagara Falls', which is expected to be ready by January, according to reports.
Summary:
Speaking on the recent criticism directed at MS Dhoni, Indian coach Ravi Shastri said, "There are a few people who are waiting to see the end of MS Dhoni." Earlier, Indian captain Virat Kohli had called for people to be patient with Dhoni, saying, "He's a very smart guy.
Summary:
The Chhatrapati Shivaji Maharaj Vastu Sangrahalaya museum in Mumbai is hosting an exhibition this weekend, in collaboration with the British Museum in London and National Museum in Delhi.
Summary:
Germany-based researchers have found that friction in sliding drops is similar to that of solid objects.The team set up a capillary in the drop's centre while the pressure on moving the drop against the surface was measured using a laser.
Summary:
UK-based researchers have developed silicon probes that are thinner than a human hair and can simultaneously record the activity of hundreds of neurons across multiple regions in mice brains.
Summary:
An Australia-based study analysing record-breaking hot years from 1861-2005 has found that without human-caused climate change, there would have been about seven record years instead of 17 during the period.
Summary:
Panasonic has launched Eluga I5 featuring a premium all-metal unibody design and a fingerprint sensor at â¹6499, available exclusively on Flipkart.
Summary:
Captured on November 7, the natural-colour image of haze and fog depicts airborne pollution over several major cities including New Delhi, Lucknow, Kanpur, and Lahore.
Summary:
Filmmaker Farah Khan, on the occasion of 'Om Shanti Om' completing ten years of its release on Thursday, shared a shirtless picture of Shah Rukh Khan and wrote, "Thank u SRK 4 taking off ur shirt n making millions happy!" Responding to this, SRK tweeted, "Only for u and nobody else.
Summary:
In a letter to PM Narendra Modi, Punjab CM Captain Amarinder Singh has sought a bonus of â¹100 per quintal as an incentive for farmers to stop stubble burning.
Summary:
The Environment Ministry on Thursday formed a seven-member committee to formulate short and long-term plans to solve the problem of air pollution in the Delhi-NCR region.
Summary:
The initial medical report of the 19-year-old woman who was gangraped in Bhopal last month had said that the sex was "consensual".
Summary:
WikiLeaks has published the source code for the CIA hacking tool 'Hive', which indicates that malware operated by the agency masked itself under fake certificates and impersonated Russian cybersecurity firm Kaspersky Lab. The code provided a platform to send exfiltrated information to CIA servers.
Summary:
Saudi Arabia on Thursday announced that it has detained 201 people as part of an anti-corruption probe.
Summary:
Actress Aurélie Wynn has claimed that actor Ed Westwick, known for portraying Chuck Bass in American television series 'Gossip Girl', raped her in July 2014.
Summary:
The trailer of Oscar-winning director Steven Spielberg's upcoming film 'The Post' has been released.
Summary:
Directed by Mrighdeep Singh Lamba, 'Fukrey Returns' is scheduled to release on December 15.
Summary:
Summary:
The ministry had equipped Anganwadi workers with smart phones to monitor 36 lakh children under six years on a daily basis.
Summary:
In an attempt to reconstruct the Ryan school murder, the Central Bureau of Investigation reportedly took the 16-year-old accused student to knife shops to find out where the weapon was bought.
Summary:
Amid the rising concerns over pollution in Delhi, Pakistan Punjab on Thursday urged Punjab CM Captain Amarinder Singh on Twitter to impose a ban on stubble burning, tagging a list of the measures undertaken by their own government.
Summary:
A judicial commission report into the 2013 solar scam has claimed that the then Kerala CM Oommen Chandy had helped the accused in cheating their customers.
Summary:
The Brihanmumbai Municipal Corporation (BMC) has received over 100 objections from citizens against cutting of trees in Aarey in Mumbai.
Summary:
India's neighbourhood doctors have an average consultation time of 2 minutes per patient, a study published in medical journal BMJ revealed.
Summary:
The odd-even scheme can be a formula for traffic maintenance and management, but not a formula to stop pollution, BJP MP Meenakshi Lekhi said on Thursday.
Summary:
The Bihar government has sanctioned 531 additional posts in the Special Security Group, which provides security cover to the current and former Chief Ministers.
Summary:
Swiss tennis star Roger Federer was given the Comeback Player of the Year, the Fans' Favourite and the Stefan Edberg Sportsmanship Award at the ATP year-end World Tour Awards.
Summary:
Taxi-hailing firm Uber said that it will remove surge pricing during the odd-even car rule implementation in Delhi next week.
Uber is committed to fully supporting the odd-even scheme," Uber officials said.
Summary:
A video has surfaced online where an owner of a food eatery in Mumbai is seen filling a jug of hot oil from a wok and running to throw it on a customer multiple times.
Summary:
The Centre stated that demonetisation wiped out â¹6 lakh crore of black money from the economy.
Summary:
Referring to the murder of a 7-year-old boy at Ryan International School, Gurugram Police Commissioner Sandeep Khirwar has said the police made an honest attempt to bring justice to the victim's family.
Summary:
The Jawaharlal Nehru University has slapped fines between â¹6,000 and â¹10,000 on four students for cooking 'biryani' near the university's administration block in June.
Summary:
IndiGo has issued a clarification after a Twitter account called 'PresidentVerde' shared fake images about the airline introducing "Manhandling services with immediate effect." 'PresidentVerde' also retweeted a post by another account trolling the airline.
Summary:
Alwaleed initially traded land and acted as a key man for foreign companies, seeking a foothold in the kingdom.
Summary:
To discourage use of cars and restrict vehicular emissions, Delhi civic bodies and Delhi Metro Rail Corporation have hiked parking rates by four times, effective from Thursday.
Summary:
Sports Ministry has included former Indian cricketer Virender Sehwag and domestic cricketer Vinay Lamba in their Anti-Doping Appeals Panel.
Summary:
A hospital in Rajasthan has not stopped performing the banned finger test, where the doctor inserts two fingers inside a rape victim's vagina to determine if she is sexually active, a Human Rights Watch study has found.
Summary:
A driverless shuttle bus made by French startup Navya crashed into a truck on first day of service in Las Vegas on Wednesday.
Summary:
Trump is seen walking ahead unaware of PM Abe's fall in a video that has gone viral.
Summary:
Soha Ali Khan, while talking about her nephew Taimur Ali Khan, said it's not like he's wearing designer clothes everyday that he has to be clicked by the media.
Taimur is (just) a child," added Soha.
Summary:
Alsanawi promoted his business online using Chelsea players' photos and signed shirts, among other things.
Summary:
Mocking PM Narendra Modi for his oratorical skills, Congress Vice President Rahul Gandhi on Wednesday said it would take him years to give lectures like the Prime Minister.
Summary:
The scheme would benefit girls of classes 6 to 12 in Kerala and would be implemented in 300 schools across 114 panchayats this year.
Summary:
Karnataka Chief Minister Siddaramaiah on Wednesday alleged that I-T officials who raided Energy Minister DK Shivakumar's properties in August had asked him to join the BJP in order to avoid raids.
Summary:
The Karnataka government has allowed IT employees to form a trade union, approving the formation of Karnataka State IT/ITES Employees Union (KITU).
Summary:
Meanwhile, 16-year-old Narwal set a junior world record with 236.6 points.
Summary:
The Punjab government has ordered all government, private, aided and recognised schools across the state to remain shut for three days, starting November 9, owing to bad weather conditions.
Summary:
Claiming that Odisha wouldn't be allowed to claim credit for developing Rasgulla, West Bengal Minister Abdur Rezzak Mollah said his government would be moving court to stake claim to the sweet dish's origin.
Summary:
After Twitter increased the character limit from 140 to 280, English football club Manchester City dedicated their first over 140-character tweet to their forward Sergio Aguero's 2012 goal, which won them the Premier League.
Summary:
A user in Germany has uploaded a Facebook post claiming that his Amazon Alexa smart speaker switched on automatically to play loud music at night while he was away.
Summary:
Bloomberg is a UN special envoy on climate change.
Summary:
Human rights activists in China have accused the country's ruling Communist Party of placing them under house arrest in a bid to suppress political dissent during US President Donald Trump's visit.
Summary:
The North Korean diplomat was involved in selling liquor in Pakistan where it is illegal for Muslims to consume alcohol, officials said.
Summary:
At least 10 civilians were killed in a US air strike targeting Taliban militants in Kunduz, Afghanistan last week, the UN has said.
Summary:
The Polish Health Ministry has released a video praising the lifestyle and reproduction of rabbits to encourage couples to have more children.
Summary:
Last year, over 180 people were killed in several attacks in Balochistan.
Summary:
Iranian President Hassan Rouhani has blamed Saudi Arabia for the emergence of the Islamic State (ISIS) militant group in the Middle East.
Summary:
Pope Francis has ordered the Vatican to stop selling cigarettes, saying the Church should not contribute to an activity that damages the health of people.
Summary:
The drugs were discovered buried underground, covered in banana leaves.
Summary:
Banks need to have a board with IT expertise to ensure speedy implementation of measures to address the challenges of cyber threats, RBI's Executive Director Meena Hemchandra said.
Summary:
The exemptions for the odd-even car rule in Delhi this year are the same as last time and include women drivers, two-wheelers, and emergency vehicles, among others.
Summary:
The Syrian Army on Thursday declared victory over the Islamic State militant group after it captured the jihadists' last stronghold Abu Kamal.
Summary:
Talking about concerns on rising pollution in Delhi, Environment Minister Harsh Vardhan on Thursday said there was no need to panic and the situation would return to normal in the next few days.
Summary:
India's Commonwealth gold-winning weightlifter Kunjarani Devi, who has been suspended for doping previously, has been included in the Anti-Doping Disciplinary Panel by the Sports Ministry.
Summary:
Technology giant Apple may reportedly redesign iPad in 2018 and replace the home button with Face ID introduced in iPhone X.
Summary:
The over $1-billion (â¹6,500 crore) Louvre Abu Dhabi museum was inaugurated on Saadiyat Island on Wednesday, 10 years after the project was announced.
Summary:
Russian President Vladimir Putin on Thursday said that the US wants to "create problems" in the 2018 presidential election, in response to Russia's alleged meddling in last year's US presidential election.
Summary:
Citigroup CEO Michael Corbat said that Bitcoin presents a "real enough threat" to the financial system that governments will have no choice but to issue versions of their own.
Summary:
Tata Motors has posted a 195% year-on-year rise in its net profit to â¹2,502 crore for the quarter ended September 30.
Summary:
Comedian Kapil Sharma has said he will discuss the possibility of a new show with Sunil Grover after the latter returns from Canada.
Sunil had earlier quit 'The Kapil Sharma Show' following a fight with Kapil.
Summary:
Actor Irrfan Khan has said that he can keep doing films with actress Deepika Padukone all his life.
While speaking about his experience of working with Deepika, Irrfan had earlier said, "This name, Deepika Padukone, it does something to me.
Summary:
Actor Arjun Kapoor, while speaking on the ongoing row over Sanjay Leela Bhansali's 'Padmavati', wrote that yet again a man has to justify creativity because politics and propaganda creates an ugly environment.
Summary:
Actress Neha Dhupia has said that women need to come out and share their sexual harassment stories as by not doing so they are also hurting other women.
Summary:
Summary:
As voting in Himachal Pradesh Assembly elections commenced on Thursday, a groom in Manali's Bashing village cast his vote before heading for his wedding.
Summary:
The Railways has started installing barbed wires to seal illegal entry and exit points on railway premises across Mumbai and stop people from crossing tracks.
Summary:
Union Transport Minister Nitin Gadkari on Wednesday said that the government is considering two sea routes to reduce traffic congestion on the roads of Mumbai and Thane.
Summary:
PM Narendra Modi on Thursday flagged a new train service between Kolkata and Bangladesh, along with Bangladesh PM Sheikh Hasina and West Bengal CM Mamata Banerjee.
Summary:
Five organisations representing 1984 Bhopal Gas Tragedy victims have alleged that Gas Relief And Rehabilitation Minister Vishwas Sarang hasn't delivered the promises he made to the victims.
Summary:
New Zealand batsman Martin Guptill shared a video of himself playing soccer volleyball with KL Rahul and Dhoni and captioned it, "What do you do in a rain delay?
Summary:
Adding that India is very important to Huawei, Zhai said, it wants to win the Indian market with its technology.
Summary:
Earlier, users also reported of Pixel 2 XL's screen burn-in issue in which the screen turned partially grey.
Summary:
French President Emmanuel Macron on Thursday said that the battle against jihadism will continue even after the defeat of Islamic State militant group.
Summary:
Yemen would face the world's largest famine in decades with millions of victims if the Saudi-led military coalition doesn't allow humanitarian aid access to the country, the United Nations has warned.
Summary:
The US state of Hawaii is preparing to introduce an attack warning signal that would notify the islanders of a potential nuclear strike threat.
Summary:
Former Infosys CFO V Balakrishnan has said that hiring in India's IT sector will be slower in the years to come.
Summary:
Markets regulator SEBI has imposed a fine of â¹15 lakh on Gujarat Chief Minister Vijay Rupani's Hindu Undivided Family (HUF) over manipulative trading through a listed firm, Sarang Chemicals.
Summary:
Indian captain Virat Kohli earns â¹3.2 crore ($500,000) per promotional post through Instagram, as per a recent report by Forbes.
Summary:
Indian shuttler Saina Nehwal credited coach Pullela Gopichand for her victory over PV Sindhu in the nationals final on Wednesday.
Summary:
While several signboards in braille were put up at polling booths, the Election Commission also released a 'Booth Atlas' to help the old and disabled navigate across polling booths.
Summary:
The world's first robot to receive a citizenship, Sophia, during a recent interview said that she has feelings like everyone else.
Summary:
A Cambridge University-led research has successfully incorporated washable, stretchable and breathable electronic circuits into fabric.
Summary:
Some Apple iPhone X users have reported that their phone's display does not respond to touch in cold weather.
Summary:
TripAdvisor has launched warning badges on the pages of businesses where safety issues including sexual assault and rape have been reported.
Summary:
Elon Musk-led SpaceX's rocket engine exploded during a qualification test at its facility in the US last week, the space exploration startup confirmed on Wednesday.
Summary:
The 60-year-old, who was drunk at the time, committed the offence after his father sold the business.
Summary:
UP Police have been making Chacha Chaudhary references while tweeting about road safety as part of its Traffic Month campaign.
Summary:
Chipmaker Qualcomm has signed deals worth $12 billion with three mobile makers in China.
Summary:
Filmmaker Farah Khan took to Twitter to share a picture from the sets of Shah Rukh Khan and Deepika Padukone starrer 'Om Shanti Om', which completed 10 years today and wrote, "Feels like yesterday." "Thank you for the love it still gets," she added.
Summary:
Baijiraj Trivikrama Kumari Jamwal, a direct descendant of the Mewar royal family, has said that instead of making clear that 'Padmavati is a Bollywood 'masala', it's being masked as history.
Summary:
Celebrity hairstylist Sapna Bhavnani shared a throwback video on Instagram in which ex-Indian captain MS Dhoni can be seen dancing to 'Jhak Maar Ke' song from actor John Abraham's film Desi Boyz.
Summary:
Renuka Shahane, while talking about the arrest of a class XI student in the murder of 7-year-old Ryan school student Pradyuman Thakur, wrote in the run for grades people have left humanity far behind.
Summary:
The 'Arctic apple', modified to silence the genes responsible for producing a browning enzyme, has gone on sale in the US for the first time.
Summary:
Sachin said due to reverse swing he was standing outside the crease, with TN's Hemang Badani informing the bowlers about it in Tamil.
Summary:
Noting the alarming pollution levels and toxic haze covering Delhi, fire services have sprinkled water on trees near the Delhi Secretariat on Thursday.
Summary:
The man was removed from election duty and his vote canceled.
Summary:
Swedish fertility tracking startup Natural Cycles has raised $30 million in a Series B funding round led by VC firm EQT Ventures.
Summary:
US-based smartphone app maker Cromulent Labs has developed an app called 'Notcho' which lets users hide the 'notch' in Apple's iPhone X.
Summary:
Reacting to Twitter increasing the character limit for a tweet to 280 from 140 for the first time in 11 years, NASA tweeted "Thanks @Twitter, we can always use more space #280characters," with a bunch of celestial emojis.
Summary:
Monarch Airlines does not have the right to sell its airport takeoff and landing slots, a court in London ruled on Wednesday.
Summary:
"The fish accepted the robot into their schools without any problem," said a researcher.
Summary:
As many as 1,38,899 people from India have signed up to send their names to Mars aboard NASA's InSight Lander, scheduled to launch in May 2018.
Summary:
It is known that the retina of most vertebrate animals, including humans, contain two photoreceptor types: rods for vision in dim light, and cones for daytime vision.
Summary:
This comes after the Indian Medical Association declared a state of public health emergency in Delhi.
Summary:
In a document submitted to the court, the CBI has said that the arrested Class XI Ryan International School student has confessed to his involvement in the murder of seven-year-old Pradyuman Thakur.
Summary:
Hollywood actor Kevin Spacey has been fired from Ridley Scott's film 'All the Money in the World', one month before its release amid sexual harassment allegations against him.
Summary:
UK's Prince Charles has arrived in India for a two-day visit and paid tribute to the martyrs at Amar Jawan Jyoti at India Gate.
Summary:
Mumbai, which played its first-ever Ranji Trophy match in 1935, has won 242 matches till now, drawing 231 and losing just 26.
Summary:
In a first, differently abled people handled five polling booths during the Himachal Pradesh state assembly elections on Thursday.
Summary:
A driverless electric train engine travelled for 13 km without its loco pilot from the Wadi station in Karnataka.
Summary:
Former Yahoo CEO Marissa Mayer has apologised for the data breaches faced by the internet company during her tenure.
Summary:
The concept car has been designed by Lamborghini in collaboration with Massachusetts Institute of Technology (MIT).
Summary:
North Korea reportedly generates over â¹285 crore in tourism from China.
Summary:
On being asked why she was getting a facial, the principal said she had free time.
Summary:
This comes after reports suggested that Infosys was in talks with Vemuri for the post of Infosys CEO.
Summary:
The RBI has reportedly reduced its order for printing bank notes in this financial year to 21 billion pieces.
Summary:
These three richest people in the US have a combined fortune of $248.5 billion.
Summary:
Actress Esha Gupta has said that wherever she goes, people feel that she is South American.
Esha further said, "So it's not that only Hollywood is coming to India, but Bollywood is also going places...
Summary:
According to reports, Saif Ali Khan's daughter Sara Ali Khan has signed her second film with actress Anushka Sharma's production house Clean Slate Films.
Summary:
Filmmaker Subhash Ghai has revealed that Shah Rukh Khan had turned down a film with Amitabh Bachchan and Dilip Kumar in 2003.
Summary:
Just before leaving India, New Zealand batsman Ross Taylor shared "one last message" for Virender Sehwag, writing, "Dhullai aur Silaai Anne waale samay mein jaari rahegi." Earlier, after India's T20I series win, Sehwag had tweeted, "Dhulaai ke baad silaai, but well played NZ.
Summary:
Apart from an emergency operation theatre, the hospital also has a 10-bed labour ward.
Summary:
Bengaluru has topped the list of global cities with the most conducive environment for digital transformation, beating cities like London, San Francisco, and Beijing, a report by Economist Intelligence Unit has said.
Summary:
A Mumbai sessions court has acquitted a 28-year-old man of rape charges after the complainant admitted she filed the case "in a fit of anger".
Summary:
The app will let users accept or reject an apology sent by other users which will be kept private between the two.
Summary:
The engine of a Hawaiian Airlines flight burst into flames after it landed at United States' Seattle airport on Tuesday night.
Summary:
US-based ride-hailing startup Uber has started testing a 24/7 support hotline for frequent riders to receive faster and personalised service.
Summary:
E-commerce giant Flipkart is in talks to invest in online furniture retailer Pepperfry, according to reports.
Summary:
MIT engineers have created sensors that can be printed onto plant leaves and reveal when the plants are experiencing a water shortage.
Summary:
The Canadian broadcasting authority has allowed the usage of the French word for f**k on radio, agreeing the word is part of the commonly spoken language.
Summary:
Shyam Saran Negi, who cast the first vote in Independent India in 1951, on Thursday voted at Kalpa polling station during Himachal Pradesh assembly elections.
Summary:
NASA's Saturn V rocket that carried a total of 24 astronauts to the Moon is the largest and most powerful rocket ever built.
Summary:
The Supreme Court in May upheld the death penalty to the convicts.
Summary:
Mumbai monorail services were stopped for a few hours on Thursday after two coaches of a train caught fire near Mysore Colony station early in the morning.
Summary:
AAP leaders had claimed that Rajan was "considering" the offer.
Summary:
The applicants can get the certificates for free if they apply within 21 days of birth or death and at a fee of â¹2 on applying between 21 and 31 days.
Summary:
In a first, a 45-member Indian Air Force contingent is participating in the two-week-long Blue Flag military drill with the air forces of Israel and eight other nations.
Summary:
The Income Tax Department on Thursday conducted raids at the Jaya TV office controlled by jailed AIADMK leader VK Sasikala's family in Tamil Nadu's Chennai.
Summary:
The creative seemingly trolled IndiGo after a video of a fight between a passenger and its staffers went viral.
Summary:
Explaining the omission, the French government added that only "countries committed to implementing the deal" were invited.
Summary:
US investigators have landed in India this week to search for the remains of US personnel missing in India since the Second World War. It is the US' fifth mission to India since 2013 to search for around 400 US airmen.
Summary:
Former United States President Barack Obama arrived for jury duty in Chicago on Wednesday.
Summary:
KFC has commissioned a painting for the man who discovered it followed only 11 people on Twitter, namely 5 Spice Girls and 6 men named Herb.
Summary:
Actor Govind Namdev, who worked with Rajkummar Rao in the film 'Shaadi Mein Zaroor Aana', has said Rao is the next superstar and will leave everyone behind.
"Rajkummar is an extremely positive and humble actor.
Summary:
Filmmaker Imtiaz Ali, while speaking about Ranbir Kapoor completing 10 years in Bollywood, said, "Ranbir is a 'bada janwar'.
Summary:
Noting that civic authorities had failed to fix roads despite several orders, the Bombay High Court on Wednesday formed a two-member committee to monitor the maintenance of roads and potholes across Maharashtra.
Summary:
Around 75% victims do not report crimes due to the cops' behaviour, a study conducted by the Tata Institute of Social Sciences has revealed.
Summary:
Slamming the state governments over their apathy towards the homeless, the Supreme Court on Wednesday urged them to utilise the funds released by the Centre and construct shelters for the homeless.
Summary:
The US has announced a nearly â¹3.2-crore grant to any NGO which comes up with proposals to develop early warning systems for "reducing religiously-motivated violence and discrimination" in India.
Summary:
A 59-year-old British woman won â¹4.9 crore (ã575k) from a â¹85 (ã1) bet by correctly guessing the results of 12 English football matches, despite admitting that she knows nothing about the sport.
Summary:
Haryana government is considering an extension of Delhi Metro to parts of southern Gurugram and Faridabad and has directed the Haryana Mass Rapid Transport Corporation to prepare a feasibility report for two potential metro routes.
Summary:
The class XI Ryan International School student detained by the CBI during the investigation of 7-year-old Pradyuman Thakur's murder would often carry a knife to school, reports have claimed.
Summary:
A Jabalpur-Delhi SpiceJet flight scraped the tarmac when it landed at Delhi airport on Wednesday, damaging the underside of the flight and triggering panic among passengers.
A SpiceJet spokesperson said none of the passengers were injured in the incident.
Summary:
Supernovae have been considered singular events, but "it's the first time we've seen multiple explosions in the same place," said an astronomer.
Summary:
MIT researchers have developed photonic devices that are based on light rather than electricity and can stretch without damage.
Summary:
Earlier this year, the US imposed sanctions on Venezuela labelling its President Nicolás Maduro as a "dictator".
Summary:
Indian-origin UK minister Priti Patel on Wednesday resigned from her Cabinet post over unauthorised secret meetings with Israeli officials that breached diplomatic protocol.
Summary:
The single-phase polling for 68 assembly seats in Himachal Pradesh began on Thursday.
Both the BJP and the Congress are contesting all 68 seats.
Summary:
Doctors took a sample from the patient's remaining healthy skin and genetically modified it to correct a faulty gene.
Summary:
The Maldives' Vaadhoo island is known for its 'sea of stars' phenomenon.
Summary:
Nawazuddin Siddiqui's ex-girlfriend Sunita Rajwar has sent him a legal notice for revealing personal details about their relationship in his biography 'An Ordinary Life: A Memoir'.
Summary:
A friend of late child actor Corey Haim has alleged that Charlie Sheen raped Haim on the sets of the 1986 film 'Lucas', when Sheen was 19 and Haim was 13.
Summary:
This comes after a video of IndiGo staff fighting with a 53-year-old passenger on the tarmac went viral, prompting outrage.
Summary:
A Delhi court on Wednesday initiated the process to declare Vijay Mallya as a proclaimed offender for evading summons in a Foreign Exchange Regulation Act violation case.
Summary:
Air India on Wednesday seemingly trolled IndiGo over a video showing a fight between a passenger and IndiGo staffers, with tweets including "Unbeatable Service." Users responded with tweets like, "Air India - We don't beat our customers.
Summary:
Hong Kong retained its spot as the world's most visited city for the 9th consecutive year, with 26.5 million international travellers in 2016, according to market research firm Euromonitor International.
Summary:
The Saudi Royal Court's announcement came hours after the death of Prince Mansour Bin Muqrin in a helicopter crash.nn
Summary:
Virginian politician Danica Roem has become the first transgender person elected to a US state legislature.
Summary:
US President Donald Trump will tweet "whatever he wants" during his visit to China even though the social media platform is blocked by a "Great Firewall", a senior White House official said.
Summary:
While responding to reports about a dream sequence between Padmavati and Alauddin Khilji in the film 'Padmavati', Sanjay Leela Bhansali said there's no interaction whatsoever between the characters portrayed by Deepika Padukone and Ranveer Singh.
Summary:
Calling the situation in Kerala alarming, National Commission for Women Chairperson Rekha Sharma on Wednesday said it wasn't just "religious conversion but organised trafficking" happening in the state.
Summary:
China on Wednesday said "India is quite wavering" on the issue of the Belt and Road initiative and claimed that the project does not involve territorial disputes.
Summary:
Police have arrested Rangappa, a contractual health inspector with Bengaluru's civic body, for allegedly snatching chains of women in order to fund a film he was directing.
Summary:
The Delhi Metro has announced plans to run extra trips across its network starting from Thursday, in a bid to counter 'Severe Plus' level of air pollution in Delhi-NCR.
Summary:
The Assam Police has arrested 14 civil administration and police officers over their alleged involvement in a multi-crore cash-for-jobs scam in the Assam Public Service Commission (APSC).
Summary:
The 15-year-old's figures of 4-4-0-10 helped his team Disha Cricket Academy dismiss Pearl Academy for 32 runs in 7 overs.
Summary:
The National Green Tribunal on Tuesday slammed the Delhi government over 'Severe Plus' pollution in the national capital, asking why water wasn't sprayed using helicopters as per its direction.
Summary:
The girl is currently admitted to a hospital and is stable.
Summary:
The court also sentenced four others accused in the case to 10 years imprisonment for robbery.
Summary:
The exteriors of Mumbai's first fully air-conditioned (AC) suburban local train will be painted based on the 'Aamchi Mumbai' theme, featuring the city's famous tourist spots and monuments.
Summary:
North Korean defector, Lee Aeran, has launched a crowd-funding campaign to finance the assassination of dictator Kim Jong-un.
"As long as Kim Jong-un is alive, world peace isn't possible...(he) must be eliminated.
Summary:
A man from the US state of Missouri who dressed up every year as Santa Claus has been arrested for molesting a 6-year-old girl.
Summary:
Pope Francis on Wednesday slammed priests and bishops who take pictures with their cell phones during mass, saying they should focus on God instead.
He does not say, lift up your cell phones to take pictures," the Pope added.
Summary:
Iranian President Hassan Rouhani has said that the missile launched by Yemeni rebels towards the Saudi Arabia's capital Riyadh is a reaction to Saudi aggression.
Summary:
The government has already called for linking bank accounts, PAN cards and mobile connections with Aadhaar.
Summary:
The Rajasthan High Court on Tuesday ordered a stay on the state government's OBC reservation bill till November 13.
Summary:
Delhi Deputy CM Manish Sisodia has said the government is prepared to roll out the third round of odd-even scheme.
Summary:
The Ghaziabad administration has identified 20 major roads where dust pollution is high and issued orders to sprinkle water on the roads.
Summary:
The US has spent $5.6 trillion on wars in Afghanistan, Iraq, Syria and Pakistan since the 9/11 attacks, a study conducted by Brown University has revealed.
Summary:
Executive Director of Reserve Bank of India S Ganesh Kumar has said, "Our current position on bitcoins is that we will not be using it for any payments and settlements." However, he added that the technology underlying cryptocurrencies will not end.
Summary:
The CBI has also found deposits of â¹396 crore in 84 cases registered by it relating to illicit currency exchange post demonetisation.
Summary:
SoftBank CEO Masayoshi Son has claimed that their investments in the global e-commerce market have been successful in keeping Amazon at bay.
Summary:
The film on Babri Masjid demolition titled 'Game of Ayodhya' will release on November 24.
Summary:
While talking about people not speaking up about sexual harassment as they fear retribution, Farhan Akhtar said that no one goes out of work in the film industry for sharing their stories of harassment.
Summary:
Giving gyan on Bollywood to Harvey Weinstein." The picture was taken on the sets of Farah's 2004 directorial debut 'Main Hoon Na'.
Summary:
Ahead of the Himachal Pradesh polls, the Election Commission on Wednesday asked the media not to air poll predictions by astrologers, tarot readers, and political analysts during the prohibited period.
Summary:
The government has set a target of 18 billion digital transactions for 2017-18, reports said.
Summary:
The Supreme Court on Tuesday slammed the Uttar Pradesh and Uttarakhand governments for "fighting like children" over the ownership of a resort located in Haridwar.
Summary:
BJP claimed Gandhi's post was misleading since the soldier had publicly expressed his support for demonetisation.
Summary:
Pakistan's Foreign Secretary Tehmina Janjua has accused Indian intelligence agency RAW of using Afghanistan's soil for terrorist activities in Pakistan.
Summary:
Chennai International Airport authorities on Wednesday detained a man for allegedly carrying 100 gram of heroin concealed inside a condom that he was wearing.
Summary:
A similar ban was imposed in 2000 before then US President Bill Clinton's visit.
Summary:
Dravida Munnetra Kazhagam Working President MK Stalin on Wednesday said that PM Narendra Modi's visit to his father and ailing DMK leader Karunanidhi was not political but on humanitarian grounds.
Summary:
Houthi rebels who recently fired a ballistic missile towards Saudi Arabia have said that they are willing to offer political asylum in Yemen to Saudi princes who want to flee oppression and persecution, according to reports.
Summary:
Saudi Prince Turki bin Mohamed has reportedly fled the country amid the ongoing anti-corruption probe in which 11 Saudi princes were recently arrested.
Summary:
UK politician Carl Sargeant who was recently sacked from his post of Wales' Cabinet Secretary over sexual harassment allegations was found dead on Tuesday.
Summary:
US President Donald Trump on Wednesday was forced to cancel his unannounced trip to the Korean Demilitarised Zone (DMZ), which separates North and South Korea after fog prevented his helicopter from landing in the area.
Summary:
North Korea has conducted six nuclear tests since 2006 despite international condemnation and sanctions.
Summary:
Authorities in Saudi Arabia could seize cash and assets worth at least $800 billion (nearly â¹52 lakh crore) in an ongoing anti-corruption probe, according to reports.
Summary:
Germany's Federal Constitutional Court on Wednesday ordered the country's Parliament to legally recognise a third gender for intersex people, who are neither male nor female, in birth certificates by the end of next year.
Summary:
India has slipped to 7th position in the business optimism index in September quarter, from 2nd position in June quarter, according to Grant Thornton's International Business Report.
Summary:
The Environment Pollution (Prevention and Control) Authority has banned all civil construction and demolition activities in Delhi after pollution reached 'Severe Plus' level or emergency condition.
Summary:
World number 11 Saina Nehwal became the national champion for the third time, defeating world number 2 PV Sindhu in the women's singles final of Senior National Badminton Championships on Wednesday.
Summary:
An American MMA fighter has said that he temporarily "died" in the arena after his heart stopped and he suffered kidney failure during a fight last week.
The paramedics restarted Clovis Hancock's heart twice after he fell during his fight, for which he had undergone a hard weight cut.
Summary:
Only 19 or 5% of the 338 candidates contesting the Himachal Pradesh Assembly elections are women, making it the least in 19 years.
Summary:
Fifty-six-year-old VN Parthiban, who completed his first degree in BCom in 1981, has since acquired over 140 academic degrees and diplomas.
Summary:
Uber on Wednesday said that it has partnered with NASA to develop a software to manage air routes for Uber's flying car project.
Summary:
A man detained by police over a drunken argument in Germany was found to be carrying a 14-inch baby python in his pants.
Summary:
Public sector lender Punjab National Bank (PNB) has planned to shut down, merge or relocate about 200-300 of its loss-making branches over the next 12 months.
Summary:
He said information of crores of people was made available online "with kind of a canned narrative...without addressing...issues relating to privacy".
Summary:
An estimated $280 million worth of cryptocurrency Ethereum was frozen after a user accidentally deleted the code library required to access the digital wallets hosted by the company Parity Technologies.
Summary:
Summary:
The web series will reportedly focus on the character of 'Sivagami' which was portrayed by Ramya Krishnan in the franchise.
Summary:
Actor Sumeet Vyas has said that Bollywood is like a local train which is crowded as hell.
Summary:
Varun Dhawan has filed a second complaint with the police after a female fan, who had been constantly messaging him, allegedly threatened to commit suicide if the actor didn't respond to her.
Summary:
Summary:
IIT Kharagpur organised the campus round of Hult Prize on November 5, 2017.
Summary:
Ex-Australian pacer Brett Lee is the only bowler to take a hat-trick in both 50-over and T20 World Cups.
Summary:
The competition which took place between several Russian and British teams was judged by a robot.
Summary:
Bodies of a music teacher, his wife, and three daughters were found on railway tracks on Tuesday in Odisha's Sambalpur town.
Summary:
Bihar Deputy CM Sushil Modi on Tuesday alleged that Leader of the Opposition Tejashwi Yadav had taken gifts from a liquor manufacturer and loans that were later written off.
Summary:
Law Minister Ravi Shankar Prasad has defended demonetisation saying that the economic reform had led to a drop in prostitution.
Summary:
Wishing ex-Australian pacer Brett Lee on his 41st birthday, ex-Indian cricketer Sachin Tendulkar shared a picture of himself with the former on a racing track.
Summary:
China's Tencent has acquired a 12% stake in Snapchat's parent company Snap, according to the company's latest quarterly filing.
Summary:
In the post, she said the driver threatened her and later called her multiple times to verbally abuse her.
Summary:
The move aims to cut wintertime particulate pollution by 15%.
Summary:
Nearly 4,000 people have been killed in Duterte's drug war.
Summary:
The capital of Andaman and Nicobar Islands, Port Blair, was declared ODF in October.
Summary:
At least 23 cars collided on Agra-Noida Yamuna Expressway due to heavy smog on Wednesday, killing one person and injuring at least 6 others.
Summary:
The Delhi High Court on Tuesday said entire Delhi was unauthorised, in response to the demolition of jhuggis at Kathputli Colony which has been "under encroachment by jhuggi-dwellers for about 35-40 years".
Summary:
Zimbabwe played an ODI against New Zealand in the middle of a Test on November 8, 1992.
Summary:
Lawsuit further claims Corephotonics even approached Apple for a partnership.
Summary:
US-based researchers have developed a directional colour filter with non-uniform grooves that transmits incoming white light at red, green, and blue wavelengths when it is incident at 0ú, 10ú, and 20ú respectively.
Summary:
US-based researchers have developed a "smart" paper that can conduct electricity and wirelessly transmit information to its surrounding.
When water hits the paper laced with conductive nanomaterials, it swells up to three times its size.
Summary:
A 12-year-old girl named Madison Greenspan recruited a group of 100 volunteers and broke a Guinness World Record by creating over 6,200 kg of slime in New York.
Summary:
New Zealand PM Jacinda Ardern's cat, Paddles, died after being hit by a car on Tuesday.
Paddles was much loved, and not just by us," Ardern said.
Summary:
Talking about the reason she quit the project, Vidya added, "The script has to do justice.
Summary:
Anushka Sharma has said after she comes back from a party, she feels intellectually and emotionally drained.
She further said that she doesn't have too many friends in the industry as she's an emotionally independent person.
Summary:
Ecstatic to share this wonderful news." Tulsi got married to Jaipur-based businessman Hitesh in 2015.
Summary:
Actor Sonu Sood has said Jackie Chan is so cute that it is difficult for the audience to accept him in a negative role.
Summary:
Shahid Kapoor has said he feels like he has had two babies this year, his daughter Misha and his upcoming film 'Padmavati'.
Summary:
Slamming the BJP over the note ban, Congress MP Shashi Tharoor on Wednesday claimed that demonetisation had been all pain and no gain.
Summary:
Summary:
Reacting to the increasing level of pollution in Delhi-NCR, a tweet read, "Delhiites are feeling lucky to get the experience of Bhopal gas tragedy (1984) without going there." While a user tweeted, "RIP to everyone in Delhi who bought iPhone X for high definition photos", another wrote, "Delhi and my crush have one thing in common.
Summary:
Reacting to Twitter increasing the character limit to 280, a user tweeted, "wish I could double my money just as quickly." Writer Chetan Bhagat tweeted, "It's like living in a 1BHK...
Twitter has given us all #280characters to mark the anniversary."
Summary:
World number two tennis player Roger Federer donned a traditional Scottish skirt (kilt) during an exhibition match against Andy Murray in Glasgow on Tuesday.
Summary:
Slamming the Kerala government over inaction on Transport Minister Thomas Chandy's alleged involvement in a land encroachment case, Kerala High Court questioned whether a commoner would be treated differently in a similar situation.
Summary:
Mortaza said he was inspired by ex-South Africa batsman Herschelle Gibbs, who used to wear jersey number '00'.
Summary:
US-based Snap, maker of photo-sharing app Snapchat, has said that the company lost nearly $40 million on unsold camera glasses called Spectacles.
Summary:
French startup Navya Technologies on Tuesday launched its self-driving electric taxi called "Autonom Cab" in Paris.
Summary:
The project is also expected to create over 300 jobs.
Summary:
Tickets for the farewell flight cost up to $550 (approximately â¹35,700), and had sold out within hours.
Summary:
FreshUp's CEO Vinyl Reddy said that the funding will be used to expand into other geographies.
Summary:
Summary:
Meanwhile, the Haryana government has directed all schools in the state to open an hour late.
Summary:
DoT said that there has been no final decision on Aadhaar-mobile linking as the case is still pending with the Supreme Court.
Summary:
"I don't understand why people are pointing him out.
Summary:
Stating that the incident was inhuman and disgusting, Lohani said the government should step in with a "heavy hand".
Summary:
Wishing senior BJP leader LK Advani on his 90th birthday on Wednesday, Congress Vice-President Rahul Gandhi tweeted, "Happy Birthday, Advani ji.
Summary:
Team India members, who finished runners-up in the Champions Trophy, have received â¹38.67 lakh each as prize money.
Summary:
Indira Canteens, launched by Karnataka government in Bengaluru in August, have served over one crore meals within two-and-a-half months with an expenditure of nearly â¹10.50 crore.
Summary:
Electric car-maker Tesla's Co-founder and CEO Elon Musk has said, "I was really depressed about three or four weeks ago," on Tesla model 3 production delay.
Summary:
Google spinoff Waymo has announced that it has deployed self-driving cars without a driver behind the wheel on public roads in Arizona, US.
Summary:
Further, Mumbai was the 22nd most visited city of 2016 with 7.19 million international travellers.
Summary:
A Cambridge study has found that sheep can be trained to recognise human faces from photographs and even differentiate celebrities.
Summary:
A British tourist has complained to Venice Mayor Luigi Brugnaro after being charged â¬297 (â¹22,400) for a plate of fish he alleges did not carry a price on the menu.
Summary:
Former Vice Chairman of NITI Aayog Arvind Panagariya said, "India as a place to do business is a lot more attractive than the World Bank ranking suggests." He said investors usually go where the environment is best and not where the World Bank collects its data.
Summary:
Union Minister Nitin Gadkari said cash deposits of â¹3.68 trillion in 23.22 lakh bank accounts are under suspicion post demonetisation and are being investigated.
Summary:
National Award-winning actor Adil Hussain has said he does some films to pay his bills and some films for his dil.
Films like 'Mukti Bhawan' don't pay me," added Adil.
Summary:
According to reports, actor Sanjay Dutt has opted out of director Omung Kumar's film 'The Good Maharaja', a biopic on Maharaja of Jamnagar.
Summary:
Sidharth Malhotra has said his family has a little more respect for him and his craft after watching his recently released film 'Ittefaq'.
Sidharth further said he's sleeping slightly better now after receiving positive feedback for his character.
Summary:
Summary:
RJD MLA Saroj Yadav and 20 of his supporters have been booked for allegedly misbehaving with policemen and obstructing them from discharging duty in Bihar's Bhojpur district.
Summary:
Amid concerns raised due to heavy smog in Delhi, sacked Aam Aadmi Party leader Kapil Mishra on Wednesday claimed that Delhi Chief Minister Arvind Kejriwal's residence has seven air purifiers.
Summary:
Maharashtra government on Tuesday told the Bombay High Court that police cannot be stopped from filing FIRs in rape cases even if the relationship was consensual.
Summary:
Aviation Minister Ashok Gajapathi Raju has sought a report from government agencies after a video of a fight between IndiGo staffers and a passenger emerged.
Summary:
Bengaluru-based wealth management startup Fisdom has raised $3.8 million (â¹25 crore) in a Series B funding round led by US-based Quona Capital.
Summary:
The project aims to increase the isolation to 365 days.
Summary:
NASA is sending names of 2.4 million people to Mars aboard the InSight Lander which will be launched in May 2018.
Summary:
During the 1969 Apollo 12 mission, Gordon controlled the Moon-orbiting command module while astronauts Alan Bean and Charles Conrad walked on the Moon.
Summary:
To ensure survival for another million years, humans must "boldly go where no one has gone before," Hawking said.
Summary:
Indian Olympic medal-winning boxer and five-time world champion Mary Kom won her fifth gold medal at the Asian Women's Boxing Championships after defeating North Korea's Kim Hyang Mi on Wednesday.
Summary:
Twitter has increased the character limit from 140 to 280 for tweets in all languages where "cramming was an issue".
Summary:
German physicist Wilhelm Conrad Röntgen won the first-ever Nobel Prize in Physics in 1901 for discovering X-rays.
Summary:
PM Narendra Modi-led government's demonetisation move today marked its first anniversary, which it is celebrating as Anti-Black Money Day. With this move, the government banned â¹500 and â¹1,000 currency notes and released new â¹500 and â¹2,000 currency notes in the economy.
Summary:
The CBI suspects that the detained class XI Ryan International School student murdered the 7-year-old Pradyuman Thakur in order to get the school to declare a holiday and postpone his exams, media reports have claimed.
Summary:
The CBI on Wednesday detained a class XI student while investigating the murder of 7-year-old Pradyuman Thakur, who was found with his throat slit in Gurugram's Ryan International School in September.
Summary:
The Great British Cheese Company has released a pink-coloured cheese flavoured with raspberry and Prosecco, an Italian white wine.
Summary:
India's first voter Shyam Saran Negi had to take permission from a presiding officer for casting vote in his district, which was different from where he was deputed for election work in 1951.
Summary:
The Aam Aadmi Party (AAP) has offered former RBI Governor Raghuram Rajan one of its three seats in the Rajya Sabha, according to reports.
Summary:
The Election Commission has seized over six lakh litres of liquor and 81 kilograms of narcotics worth around â¹13 crore in Gujarat and Himachal Pradesh, ahead of their state assembly elections.
Summary:
PM Narendra Modi on Wednesday tweeted a 7-minute video stating benefits of Demonetisation on its first anniversary.
Summary:
Father of Ryan International School's Class XI student, who has been arrested for murdering Pradyuman, has accused the CBI of forcing his son to sign the confession letter.
Summary:
Users will be able to check the estimated wait time under the 'Popular Times' section of a restaurant.
Summary:
Microsoft's India-born CEO Satya Nadella, while speaking at a recent event revealed his weakness and said that he starts lots of books but finishes a few of them.
Summary:
A Delhi-Kolkata GoAir flight made an emergency landing at Kolkata airport on Tuesday night after a bomb threat letter was spotted onboard, an official said.
Summary:
Only two-thirds of the 1.2 million vehicles affected in the UK were fixed till September.
Summary:
A US-based team led by Indian-origin researcher Ramanarayanan Krishnamurthy have found a compound diamidophosphate (DAP), that is capable of combining three key ingredients to produce several building blocks of life on Earth.
Summary:
The police were called to a house in United States' Oregon after a driver passing by heard what sounded like cries for help.
Summary:
The police, who arrested the five people, said they were searching for the naked truth while calling the incident "very bizarre".
Summary:
Pakistani actress Mahira Khan has said that she was completely shattered and broken after pictures showing her smoking with Ranbir Kapoor surfaced online.
Mahira further said, "I am human, I make mistakes."
Summary:
The move reportedly aims to avoid problems that examiners faced during assessments of previous exams.
Notably, the varsity faced flak after it failed to declare results of summer exams in time.
Summary:
"Whenever he (Rahul Gandhi) steps in, Congress loses elections," Prasad added.
Summary:
The Haryana Police planted a knife on the bus conductor, who was pinned as the prime suspect in the murder of a 7-year-old student in Gurugram's Ryan International School's premises, reports have claimed.
Summary:
Claiming that Sharma was visiting the state on a "political assignment", trade bodies refused to participate in the talks.
Summary:
India's first multi-wavelength space telescope AstroSat has performed the most sensitive measurement of X-ray polarisation of a pulsar, fast-spinning neutron star, in the Taurus constellation.
Summary:
Summary:
An Indian-American, Ravinder Bhalla, who was labelled as a terrorist in flyers last week has become the first-ever Sikh mayor of US' Hoboken city.
Summary:
The US has become the only nation not in the Paris climate agreement after Syria announced its plan to join the deal.
Summary:
Nokia has launched a 3GB RAM variant of the Nokia 5 at a price of â¹13,499 in India.
Summary:
Chennai was recently designated as UNESCO Creative City for its contributions to music, making it the third Indian city on the list after Jaipur and Varanasi.
Summary:
Summary:
A 360-year-old soy sauce, over a century older than the United States, was served to President Donald Trump at the state banquet in South Korea on Tuesday.
Summary:
Television actress Ankita Lokhande, known for starring in the show 'Pavitra Rishta', took to Instagram to share a glimpse of her look from the upcoming film 'Manikarnika: The Queen of Jhansi'.
Summary:
The organisations have accused Bhansali of distorting facts in the epic historical film.
Summary:
Indian Medical Association Chief has lashed out at Delhi CM Arvind Kejriwal for blaming stubble burning in the neighbouring states for pollution in Delhi-NCR, saying it's not the time to play blame games.
Summary:
The Delhi government has announced that SC/ST and underprivileged backward communities' students will get free coaching for civil services, medical, engineering, SSC, group A and B level government job exams from November 26.
Summary:
The Paradise Papers, leaked on Sunday, listed offshore holdings of 714 Indian individuals and entities.
Summary:
The Delhi High Court has attributed stubble burning in Punjab and Haryana as the "main villain" leading to the rise in the pollution levels in Delhi-NCR.
Summary:
Nirbhay, which was successfully test fired on Tuesday from a defence base off Odisha coast, is India's first indigenously designed and developed long range sub-sonic cruise missile.
Summary:
The Election Commission has said that exit polls for Gujarat and Himachal Pradesh cannot be conducted or published between 8 am on November 9 till 6 pm on December 14.
Summary:
UK-based scientists have discovered 145 million-year-old fossilised teeth of rat-like creatures, claimed to be the earliest fossils of mammals belonging to the lineage that led to blue whales and human beings.
Summary:
Actor Ed Westwick, known for portraying Chuck Bass in American television series 'Gossip Girl', has denied knowing actress Kristina Cohen who has accused him of raping her.
Kristina had alleged that Ed raped her three years ago at his house.
Summary:
"Why the f**k do people keep dying," she had tweeted before the incident.
Summary:
The boy's family kept the body at a church, performing prayers for him to come back to life.
Summary:
A video of the incident wherein she carries a man and is beaten up by him and other villagers surfaced online.
Summary:
Last week, the court had raised questions about her marriage after her brother alleged she was forcibly converted.
Summary:
A 57-year-old trustee of an international school in Mumbai was arrested on Tuesday for allegedly raping a 3-year-old student on the school campus.
Summary:
Union Law Minister Ravi Shankar Prasad has said that former Prime Minister Manmohan Singh's speech terming demonetisation as "an organised loot and a legalised plunder" was scripted.
Summary:
Sikhs can wear kirpans of up to 6 cm in length on domestic and international flights, according to the new rules of Transport Canada.
We had shared our concerns with Transport Canada last spring," World Sikh Organisation President Mukhbir Singh said.
Summary:
Biplab Hazra's photograph of panicked elephants escaping fire in West Bengal has won the Sanctuary Wildlife Photography Award this year.
Summary:
After the Central Industrial Security Force (CISF) issued around 9,000 masks to its personnel posted in Delhi, several jawans have said the masks were ineffective in protecting them from pollution.
Summary:
Two passports were issued to rape-convict Gurmeet Ram Rahim Singh in 2015 and 2017, investigations have revealed.
Summary:
US-based scientists have proposed a new volcanic eruption theory that magma is locked in a cool, crystalline dormant system which needs a huge heat infusion to erupt.
Summary:
US President Donald Trump has not been invited "for the time being" to a climate change summit in Paris, an official in French President Emmanuel Macron's office said.
Summary:
India beat New Zealand by six runs in the rain-curtailed third T20I at Thiruvananthapuram on Tuesday, to clinch the three-match series 2-1.
Summary:
IndiGo Airlines on Tuesday announced that an employee at the Delhi airport was fired after a video of its staff fighting with a 53-year-old passenger on the tarmac surfaced online.
Summary:
The National Investigation Agency has seized nearly â¹36.5 crore in demonetised notes during its probe in a terror funding case in Jammu and Kashmir.
Summary:
Nobel laureate Kailash Satyarthi, Vidya Balan and Yuvraj Singh were part of season 9 finale of TV show 'Kaun Banega Crorepati' (KBC), which was hosted by Amitabh Bachchan and aired on November 6 and 7.
Summary:
Sports Minister Rajyavardhan Singh Rathore has said sports cannot be run by bureaucrats as their involvement affects the administering of sports.
Summary:
Kumble attributed his approach to a disciplined upbringing that got him 'headmaster' tag.
"Self-belief comes from values you inculcate...my grandfather was a headmaster.
Summary:
The US Air Force has acknowledged that it had failed to inform the law enforcement agencies about the court-martial of the Texas church shooter.
Summary:
Rajkummar Rao will reportedly star in Sonam Kapoor and Anil Kapoor's first film together titled 'Ek Ladki Ko Dekha To Aisa Laga'.
Summary:
While sharing the picture the Australian singer wrote, "Save your money, here it's for free.
Sharing the picture's preview, the person was demanding money for 14 more clear pictures.
Summary:
Discussing US President Donald Trump's reaction to the Russia investigation, British TV host John Oliver said Trump was using his incompetence as a defence.
Summary:
Veteran actress Sharmila Tagore has said that many scripts are written for actors like Naseeruddin Shah, Amitabh Bachchan and Nawazuddin Siddiqui but not for actresses like Madhuri Dixit or Tabu.
Summary:
Actor Ed Westwick, known for portraying Chuck Bass in American television series 'Gossip Girl', has been accused of rape by actress Kristina Cohen.
Summary:
Jaipur-based organisation Sarv Brahmin Mahasabha demanded a screening of 'Padmavati' for a 15-member panel of experts before the film's release.
Summary:
The recovery of a US-made rifle meant for the Pakistan Army after an encounter with militants in J&K shows the force's complicity in fuelling insurgency, Major General BS Raju said on Tuesday.
Summary:
The girl's mother alleged that the temple's trustee refused to let the wheelchair be taken inside saying that "vehicles were not allowed inside".
Summary:
Olympic medalists Saina Nehwal and PV Sindhu will face each other in the women's singles final of the Senior Badminton National Championship after winning their respective semi-final matches on Tuesday.
Summary:
The High Court had earlier sought to know whether the expenditure to be incurred on the celebrations had the "authority" of the state budget.
Summary:
English female footballer Fara Williams scored directly from the halfway line, against her former club Arsenal to earn Reading a victory in the Women's Super League Cup at Meadow Park.
Summary:
A security guard at the Paris Masters tournament failed to recognise world's number one tennis player Rafael Nadal and initially stopped him from entering the court.
Summary:
A 55-year-old man on Monday attempted to kill himself in front of Karnataka Chief Minister Siddaramaiah while he was addressing an event in Bengaluru.
Summary:
Punjab CM Captain Amarinder Singh on Tuesday claimed that the targeted killings being carried out in the state for over a year were part of a conspiracy hatched by Pakistan's intelligence agency ISI.
Summary:
The Supreme Court on Tuesday suggested devising a mechanism where undertrial prisoners are informed about the status of their appeals against conviction in the High Court or the apex court within a week.
Summary:
Police officials said the injuries were minor and mainly constituted of scratches and bruises.
Summary:
This comes after Hezbollah accused Saudi Arabia of forcing Lebanese Prime Minister Saad Hariri to resign.
Summary:
US President Donald Trump on Tuesday said he has sent three of the world's largest aircraft carriers and a nuclear submarine to the Korean Peninsula to conduct an exercise in coming days in a show of force.
Summary:
A former British jihadi bride who married the highest-ranking US member in ISIS has said that the racism she experienced in the UK led to her joining the terror group.
Summary:
Papua New Guinea's Supreme Court has rejected a plea to restore essential services like electricity and water to 600 refugees staying in the Manus Island detention centre.
Summary:
The government on Tuesday extended the online portal SHe-Box, which previously allowed women government employees to file workplace sexual harassment claims online, to include women employees in the private sector.
Summary:
Japanese conglomerate SoftBank's CEO Masayoshi Son has said that Flipkart has 60% share in the Indian domestic e-commerce market and is bigger than Amazon India.
Summary:
Polish scientist Marie Curie, who was born on November 7, 1867, jointly won the 1903 Nobel Prize in Physics with her husband Pierre Curie before her solo Chemistry Nobel in 1911.
Summary:
Following the Paradise Papers leaks, the European Union said it will discuss plans to blacklist tax havens in a bid to tackle offshore tax avoidance.
Summary:
The 26/11 Mumbai terror attack has tarnished Pakistan's image and has done an "irreparable damage" to the Kashmir cause, Pakistan's former Foreign Secretary Riaz Mohammad Khan has said.
Summary:
Liquor firm Diageo said it has corrected many errors in the books of United Spirits after acquiring it from Vijay Mallya.
Summary:
Hours after the death of Saudi Prince Mansour Bin Muqrin in a helicopter crash, the Saudi Royal Court announced the death of 44-year-old Prince Abdul Aziz, who was the youngest son of King Fahd.
Summary:
Aircel currently has a gross debt of â¹20,000 crore and holds no 4G spectrum.
Summary:
With 2.19 lakh millionaires at the end of 2016, India has the fourth largest number of millionaires in the Asia Pacific region, according to Asia-Pacific Wealth Report by Capgemini.
Summary:
'Julie' producer NR Pachisia had claimed that despite undertakings given to him, 'Julie 2' was promoted as a sequel.
Summary:
T-Series had allegedly not paid royalties to lyricists and composers in the last six years.
Summary:
Casting director Mukesh Chhabra, who auditioned 14,000 girls for the film 'Dangal', has said there is nothing like casting couch in Bollywood.
Talking about his work, Mukesh further said, "It's my job to meet and interact with new talent."
Summary:
During his visit to Japan, US President Donald Trump said that he never knew there were so many countries in the world until he got elected.
Trump is on a 13-day tour of the Asia-Pacific region.
Summary:
Seven members of the Uttar Pradesh football team were attacked and injured by unidentified assailants on a train in Deoria district today, police said.
Summary:
Former Prime Minister Manmohan Singh on Tuesday called the government's plan for a bullet train between Ahmedabad and Mumbai "an exercise in vanity".
Summary:
Italian footballer Simone Verdi netted two goals from free kicks within seven minutes in the same game using different feet in a Serie A match.
Summary:
Calling demonetisation a "watershed moment", Finance Minister Arun Jaitley has said that the BJP believed it was important to shake the status-quo for the benefit of India's future and financial situation.
Summary:
A man has registered an FIR with the Delhi Police, claiming that he found a fake â¹2,000 note in the money he withdrew from an ATM in south Delhi.
Summary:
"I hope...this title win helps me to get...job," she added.
Summary:
Claiming that "good progress" is happening on North Korea, US President Donald Trump urged it to "come to the table" and make a deal that is good for its people and the world.
Summary:
The 70-year-old had murdered the men, who she was involved with, by poisoning them with cyanide.
Summary:
The attackers were killed by the security forces during the combat operation.
Summary:
US President Donald Trump has asked lawmakers for an additional $4 billion (over â¹26,000 crore) for "urgent" missile defence improvements against North Korea.
Summary:
US President Donald Trump's statements have given North Korea a reason to develop nuclear weapons citing the need to protect itself from the US, former State Secretary John Kerry said.
Summary:
Chief of the General Staff of the Armed Forces of Russia, General Valery Gerasimov, has said that the country's nuclear deterrence is strong enough to ensure a "level of unacceptable damage" to any potential enemy.
Summary:
Two 8-year-old children were killed and several others were injured after a 52-year-old woman crashed her car into a primary school in the Australian city of Sydney.
Summary:
The total number of ITRs filed online last year till October was 3.21 crore.
Summary:
All primary schools across Delhi will be closed tomorrow due to high air pollution and the order may be extended if needed, Delhi Deputy CM Manish Sisodia said.
Summary:
Saudi Prince Alwaleed bin Talal Al Saud, the wealthiest person in the Middle East, has lost $1.2 billion in his net worth after being arrested in a corruption probe.
Summary:
Hockey India has announced a cash award of â¹1 lakh each to the 18-member Indian women's hockey team following their Asia Cup triumph.
Summary:
Undisclosed wealth amounting to â¹792 crore in offshore bank accounts has been detected during the investigations into the Panama Papers case, Central Board of Direct Taxes (CBDT) said.
Summary:
Apple has said that it "pays every dollar it owes in every country around the world" in a statement regarding its offshore dealings revealed in Paradise Papers.
Summary:
To encourage commuters to use public transport and curb pollution, the Environment Pollution (Prevention and Control) Authority has recommended that parking fee in Delhi-NCR be increased by four times.
Summary:
After defeating New Zealand 2-1 in the three-match ODI series, India registered a record seven straight bilateral ODI series wins.
Summary:
Biyani said first there was Retail 1, which was a brick and mortar store, then Retail 2 which was e-commerce and now Retail 3.0.
Summary:
In the first phase, notices will be issued to 70,000 entities who deposited over â¹50 lakh in cash in banks but didn't file tax returns.
Summary:
Producer Sajid Nadiadwala has said a part of his upcoming film 'Housefull 4' will be set in the Baahubali era, where all the characters will get into costumes.
He further said they will bring back the entire cast from the earlier 'Housefull' films.
Summary:
The app would provide a digital platform for people to share their grievances for possible redressal, he said.
Summary:
While speaking about the row on his upcoming film 'Padmavati', actor Ranveer Singh said, "I do have strong opinions on this subject, which I wish to express." "But I've been requested by the team to not voice it to avoid further hurdles," he added.
Summary:
Ali Abbas Zafar has said that Salman Khan abused him for pushing him too much for his upcoming directorial 'Tiger Zinda Hai', where some scenes were shot in extreme climatic conditions.
Summary:
According to reports, filmmaker Karan Johar will produce a biopic on Flight Lieutenant Gunjan Saxena, who along with Srividya Rajan, were the first Indian women combat aviators to fly into a war zone during the Kargil War. A source said, "Karan...is now looking to cast the right girl for the role.
Summary:
Five-time world champion MC Mary Kom on Tuesday reached the final of the Asian Boxing Championships for the sixth time in six appearances.
Summary:
Former Indian captain and coach Anil Kumble met and had a discussion with Microsoft CEO Satya Nadella, who is on a visit to India.
Summary:
The men had reportedly tried to take away the victim's tractor as compensation for his unpaid debt to a bank.
Summary:
The woman's access to the app has been removed, an Uber spokesperson said.
Summary:
India on Tuesday conducted a flight test of its indigenously designed and developed, long-range sub-sonic cruise missile 'Nirbhay' from a defence base off Odisha coast.
Summary:
At least eight persons were killed and nearly 20 others were injured in an accident between a bus and a long-body truck in Punjab on Tuesday morning.
Summary:
In a development in the Kerala love jihad case, National Commission for Women officials visited Hadiya at her parents' residence and said she is safe and not being harassed by her parents.
Summary:
Microsoft CEO Satya Nadella revealed that the romantic inside him chooses 1960s batsman ML Jaisimha over Sachin Tendulkar as his favourite cricketer.
Summary:
This comes after people in the Kurdish region voted overwhelmingly to secede from Iraq in a referendum earlier this year.
Summary:
Italy has launched an investigation into the death of 26 teenage girls whose bodies were recovered in the Mediterranean Sea. Authorities suspect the teenagers may have been abused and murdered as they attempted to cross the Mediterranean.
Summary:
Ex-British Council manager Angela Gibbins who was sacked for gross misconduct for calling Britain's Prince George "the emblem of white privilege" has been denied compensation.
Summary:
A British man was convicted on Monday of killing his adopted 18-month-old baby in May 2016 by violently shaking her and striking her head.
Summary:
NASA has reported the discovery of a planet 22,000 light-years away and 13.4 times massive than Jupiter, situated in the Milky Way's bulge, a central round structure containing old stars.
Summary:
Swedish company Koenigsegg's Agera RS hypercar has become the world's fastest production car with an average speed of 447.2 kmph (277.9 mph).
Summary:
Kamal Haasan's 2001 thriller 'Aalavandhan' featured an animated fight sequence that inspired Hollywood filmmaker Quentin Tarantino to make a Manga action sequence in his film 'Kill Bill: Vol. 1'.
Summary:
Directed by James Foley, the film is scheduled to release on Valentine's Day next year.
Summary:
The players were escorted down a catwalk arm in arm with the models, who revealed their groups.
Summary:
Hamilton allegedly used shell companies in the British Virgin Islands, the Isle of Man and Guernsey to avoid the VAT.
Summary:
Technology giant Google has started rolling out an update for its Pixel 2 and Pixel 2 XL smartphones including new Saturated colour mode.
Summary:
The startup has made around 600 cycles available at spots around the campus which can be booked via its app.
Summary:
Logistics startup GoJavas has refused to withdraw a $45.8 million legal notice sent to Snapdeal after the e-commerce firm asked GoJavas to withdraw allegations against it.
Summary:
Several Saudi princes, current and former ministers, who were recently arrested by the Kingdom in an anti-corruption probe, are being held in a five-star hotel in Riyadh.
Summary:
Italian luxury fashion house Moschino has introduced a Dry Cleaning Cape Overlay Dress priced over â¹47,000 ($737).
Summary:
KFC is releasing fried chicken scented bath bombs in Japan, which will be crafted with "11 secret herbs and spices." The fast-food chain is hosting a contest, and its winners will be awarded the drumstick-shaped soaps and coupons for 'Secret Combination Packs' of chicken.
Summary:
The Finance Ministry on Monday said only 83% effective currency is in circulation now with remonetisation.
Summary:
Vidya Balan has said whatever body she has been in, she felt attractive and it didn't stop her from wanting to live her life to the fullest.
"Your body needs at least one person on its side, and I said to myself that this is my body and I love it...
Summary:
According to reports, American producer Harvey Weinstein hired highly trained ex-spies, journalists and military personnel who used fake identities to try to stop accusers from going public with sexual misconduct claims against him.
Summary:
Polish divers have accidentally discovered the wreck of HMS Narwhal, sunk by the German military in 1940 leading to the deaths of 58 British sailors during World War Two. The submarine was bombed after German soldiers intercepted secret codes and deciphered its potential location.
Summary:
The Kerala Cricket Association (KCA) has made a lotus 'mala' offering at the Koodalmanikyam Temple to avoid a washout in the final India-New Zealand T20I in Thiruvananthapuram.
Summary:
Indian women's team captain Mithali Raj, who made her international debut at the age of 16, has given Trisha a kit bag and other equipment.
Summary:
Indian spinner and former national junior chess champion Yuzvendra Chahal beat New Zealand bowler Ish Sodhi in a recreational game of chess on a flight.
Summary:
Delhi University organised a fest under its 'Ek Bharat Shreshtha Bharat' initiative at Maitreyi College on Friday in an attempt to promote cultural diversity of Northeast India among college students.
Summary:
A Kolkata court on Tuesday convicted a Bangladeshi man for raping a 74-year-old nun in 2015, while five other accused in the case have been convicted of robbery.
Summary:
Indian Under-19 team's coach and former cricketer Rahul Dravid has said that the Yo-Yo test which is mandatory for the senior squad is not needed for the junior team.
Summary:
Technology giant Microsoft's India-born CEO Satya Nadella has said that the choices that people make in 2017 will define what happens in 2040.
Summary:
An American couple sold their home and left their jobs in marketing and finance to embark on a road trip.
Summary:
A Beijing-Washington United Airlines flight was forced to turn around after a passenger initiated an altercation with a crew member, raising safety concerns, the airline said.
Summary:
Analytics and social listening tool Konnect Insights has joined hands exclusively with Eagle Eye Entertainment, a company that specialises in marketing & solutions in the entertainment industry.
Summary:
Ancient mammals started becoming more active during the daytime around 65.8 million years ago, 200,000 years after dinosaurs went extinct, a UK-based study has inferred from genetic data of 2,000 present-day mammals.
Summary:
Police found around 1,600 photos and 26 videos of child pornography on the 23-year-old man's computer.
Summary:
Apple's most expensive phone iPhone X's base model, that is selling for â¹89,000 in India, costs the company â¹23,200 to make, according to technology intelligence firm TechInsights.
Summary:
Technology giant Microsoft's India-born CEO Satya Nadella has said that Mahatma Gandhi inspires him, both as an Indian and as a global citizen.
Summary:
Flipkart's ex-Chief Product Officer (CPO) Punit Soni has said, "There is no real need for a Chief Product Officer in a startup." In a recent interview, he also said that the Founder or the CEO is the Chief Product Officer of a startup.
Summary:
Currently weighing 53 kg, the 127-kg meteorite sunk one metre into the ground on impact.
Summary:
Markets regulator SEBI and Income Tax Department on Monday said they will investigate the Indian firms that were named in Paradise Papers for alleged diversion of funds and lapses.
Summary:
Australian pacer Mitchell Starc became the first bowler in 39 years to take two hat-tricks in the same match, registering his second hat-trick for New South Wales in the Sheffield Shield on Tuesday.
Summary:
Microsoft's India-born CEO Satya Nadella has said that he is a product of two amazing American things, American technology when he was growing up, and the American immigration policy.
Summary:
VKontakte considers Guy Fawkes' 'V' mask "a symbol of freedom and justice".n
Summary:
Google has rolled out a feature in its digital assistant called 'Google Assistant' to identify songs playing around users.
Summary:
The US Supreme Court has rejected a request by Samsung to re-evaluate a $120 million award granted to Apple in a patent infringement lawsuit.
Summary:
US and Israel-based researchers have found evidence that fusion of subatomic particles called quarks could release eight times more energy than hydrogen fusion, the central process in hydrogen bombs.
Summary:
Luxury jewellery brand Tiffany has released a line of 'Everyday Objects' including a $9,000 (nearly â¹6 lakh) sterling silver ball of yarn and $1,500 (nearly â¹1 lakh) sterling silver coffee can.
Summary:
Chinese real estate giant Evergrande Group's shares have surged 500% this year, valuing the company at $52 billion.
Summary:
Speaking about his experience of working with actress Deepika Padukone, actor Irrfan Khan said, "This name, Deepika Padukone, it does something to me." "I like her very much, as a human being, as an actor," he added.
Summary:
Actress Shruti Haasan took to Twitter to share a picture from her childhood, featuring her and sister Akshara with their father Kamal Haasan, on the occasion of his 63rd birthday on Tuesday.
Summary:
South Korean First Lady Kim Jung-sook will serve homemade traditional refreshments to US President Donald Trump and his wife Melania when they arrive in the country today.
put her whole mind to the refreshment in order to treat them with the highest respect."
Summary:
DMK spokesperson A Saravanan, however, said the protest has been cancelled only in eight districts and will continue in other places as planned.
Summary:
A tempo lost control and ran over four school children, who were allegedly skipping school, in Mumbai on Tuesday.
The driver of the tempo is absconding.
Summary:
The locals stopped an inter-caste married couple near a bus stand and asked them to produce their identity cards, after which they forced the man to strip.
Summary:
In a move to discourage habitual absenteeism from party meetings, Delhi BJP President Manoj Tiwari has said that party leaders found absent from 3 consecutive meetings will be removed from their posts.
Summary:
Central Industrial Security Force (CISF) has issued 9,000 face masks for its personnel deployed at IGI Airport, Delhi Metro, and government ministries in Delhi-NCR.
Summary:
Lauding the measure of demonetisation, Union Minister Ramdas Athawale said that even Babasaheb Ambedkar had suggested a "change in currency every ten years".
Summary:
Days after joining the BJP, former Trinamool Congress leader Mukul Roy has said he will make several revelations during the BJP rally scheduled in Kolkata on November 10.
Summary:
Archaeologists in Egypt have opened 'cursed tombs' containing the remains of the workers who built the Great Pyramid of Giza for public viewing for the first time.
Summary:
UK-based scientists have identified a chemical in the brain, a neurotransmitter called GABA, that can suppress unpleasant memories.
Summary:
The US Secret Service on Monday arrested a man who in a Facebook post had called for the death of President Donald Trump, in the name of Jesus Christ.
Summary:
GST levied on date-expired and damaged stocks costs about â¹500 crore per annum to the Indian pharmaceutical industry, said DG Shah, Secretary General of the Indian Pharmaceutical Alliance.
Summary:
The Indian Medical Association (IMA) has declared a state of public health emergency in Delhi and urged the Delhi government to cancel all outdoor sports, marathons and other outdoor activities in schools.
Summary:
Directed by Ali Abbas Zafar, 'Tiger Zinda Hai' is scheduled to release on December 22.
Summary:
Summary:
The nephew of Jaish-e-Mohammed chief Maulana Masood Azhar, Abu Talha was among the three militants killed by the security forces in an encounter in Kashmir's Pulwama on Monday.
Summary:
The real-time Air Quality Index (AQI) showed the air quality as "hazardous" in most parts of Delhi, with Particulate Matter (PM) 2.5 recorded at 452 and PM 10 at 336.
Summary:
India will contribute $100 million to the India-UN Development Partnership Fund to help the poorest nations achieve the Sustainable Development Goals aimed at reducing poverty and raising the quality of life.
Summary:
Users said that they were unable to sign in and the app displayed a message which read, 'could not connect'.
Summary:
Cab-hailing startup Uber has pledged $5 million over the course of five years to prevent sexual assault and domestic violence.
Summary:
Original pencil sketches by former United States President Barack Obama are expected to fetch $8,000 (over â¹5 lakh) at an auction.
Summary:
Finance Minister Arun Jaitley in a Facebook post said November 8, 2016 would be remembered as a "watershed moment" in the history of Indian economy.
Summary:
Addressing traders in poll-bound Gujarat, Former Prime Minister Manmohan Singh on Tuesday said that demonetisation was "an organised loot and a legalised plunder".
Summary:
The Belgian delegation's seven-day trip, which marks seventy years of diplomatic ties between India and Belgium, is aimed at improving trade ties and human resource exchange between the two nations.
Summary:
Mumbai-based health-tech startup DocTalk has raised $5 million in a seed round led by VC firm Khosla Ventures and Matrix Partners India.
Summary:
Delhi has become a gas chamber, said Delhi CM Arvind Kejriwal on Tuesday morning as the air quality index in some areas of the city touched 999, which is categorised as 'severe'.
Summary:
Two German users exploited a Twitter bug by writing a 35,000-character long tweet instead of the usual 140 characters.
Summary:
Central Railway will reportedly introduce 13 new suburban local trains to run on Mumbai's Harbour line.
Summary:
Patidar leader Hardik Patel and Dalit leader Jignesh Mevani have alleged the police protection provided to them by the Gujarat government was a BJP tactic to monitor their movements ahead of the state assembly elections.
Summary:
A Bangladeshi student, who was smoking outside Embassy of Poland in Delhi, was conned by a man posing as a Delhi Police officer.
Summary:
Pune's Raj Bhavan will get 3,000 solar panels, installed on six acres of land, to provide 15 lakh units of energy annually.
Summary:
Addressing traders and businessmen in Ahmedabad, former PM Manmohan Singh on Tuesday said that no nation had taken such a drastic step of demonetisation that swept off 86% of the currency.
Summary:
A Foreigners Tribunal in Assam has asked retired Army Havildar Mahiruddin Ahmed and his wife to prove their Indian citizenship.
Summary:
The Supreme Court has issued a notice to Civil Aviation Ministry and Air India after the latter allegedly denied a job to a transgender on the basis of gender.
Summary:
A golden egg-shaped Swedish sauna is being transported to Paris for nearly a month.
Summary:
A man allegedly climbed through a baggage carousel after slipping past a security checkpoint and ran across the airport tarmac at United States' Miami International Airport.
Summary:
A UK-based report has estimated over one lakh stillbirths and baby deaths worldwide could be prevented by a vaccine against streptococcus infection, commonly carried by pregnant women.
Summary:
NASA is asking for public help to nickname its new flyby destination currently bearing the "unexciting name (486958) 2014 MU69".
Summary:
A US District Court has sentenced Indian national Yahya Farooq Mohammad to more than 27 years in prison after pleading guilty to providing money to al-Qaeda to support extremism against the US military.
Summary:
US and Mexico-based astronomers have detected a galaxy 12.8 billion light-years away, the second most distant galaxy ever found in the universe.
Summary:
The scheme serves meals to 12 lakh children across seven states in India.
Summary:
Summary:
Indian football team captain Sunil Chhetri's free-kick goal in Bengaluru FC's 1-0 win over a Maldivian football club in the AFC Cup on May 31 has been nominated for the Goal of the Tournament.
Summary:
Responding to allegations that Congress PresidentÃÂ Sonia GandhiÃÂ wrote to him to shield Tehelka's financiers, former Finance Minister P Chidambaram has asked for the release of his reply to Gandhi in the matter.
Summary:
The Bombay High Court on Monday granted permission to a woman to abort her 25-week foetus, which has been detected with structural defects in the cerebellum.
Summary:
US President Donald Trump met Pen-Pineapple-Apple-Pen singer Pikotaro during his Japan tour on Monday.
Summary:
Actress Swara Bhasker, while speaking about facing sexual harassment, revealed that a director once stalked her and harassed her with texts and dinner invites.
Summary:
Summary:
The Centre has directed the officials in the Information and Broadcasting Ministry and other departments to refrain from interacting with the media without authorisation from 'competent authorities'.
Summary:
A Special CBI Court on Tuesday deferred hearing the verdict in the 2G Spectrum scam cases till December 5.
Summary:
BJP leader Subramanian Swamy has urged the CBI and the Enforcement Directorate to register a case against Congress President Sonia Gandhi over her letter to the then Finance Minister Chidambaram seeking to shield Tehelka magazine.
Summary:
Indian cricket team's head coach Ravi Shastri visited the Padmanabhaswamy Temple in Thiruvananthapuram on Monday ahead of the third and final T20I against New Zealand.
Summary:
Meanwhile, the deceased's father has moved SC alleging contempt by the CBI for not arresting Solanki within 48 hours of the court's order.
Summary:
Retired Indian Air Force officer Mukul Chandra Joshi, known as 'Traffic Baba', passed away on Sunday at his residence in Noida at the age of 83.
Summary:
FIFA President Gianni Infantino has written a letter to Prime Minister Narendra Modi, congratulating India for successfully hosting the Under-17 World Cup last month.
Summary:
English referee Bobby Madley was replaced by the fourth official after suffering a leg injury during a Premier League match between Leicester City and Stoke City on Saturday.
Summary:
This comes after a student was gangraped on her way home from a coaching class.
Summary:
Indian shooters won a total of six gold, seven silver and seven bronze medals in the competition.
Summary:
On the occasion of Indian captain Virat Kohli's 29th birthday, ground staff at Australia's Adelaide Oval stadium posted a message for him on its scoreboard.
Summary:
Indian spinner Axar Patel lost in a race against MS Dhoni and skipper Virat Kohli.
Axar, who is 13 years younger than Dhoni and 6 years younger than Kohli, later tweeted, "Hard task to beat these two legends in a race.
Summary:
Though the cause of death is yet to be ascertained, police suspect the man had drowned in the drain.
Summary:
As per government data, the National Commission for Women received 346 complaints against NRI husbands in 2014.
Summary:
This comes after Afghanistan's acting minister for telecommunications said last week that the telecoms regulator had been ordered to block the services over "technical problems".
Summary:
A Doha-Bali Qatar Airways flight was forced to make an unscheduled landing in Chennai after an Iranian woman discovered her husband was having an affair and started fighting with him, according to reports.
Summary:
The Home Ministry has asked its employees to travel only by Air India whenever they go on official tours.
Summary:
With 13.4 million documents and 1.4 TB data, the recently released Paradise Papers constitute the second-biggest data leak.
Summary:
A reconstituted Multi-Agency Group (MAG) would monitor the investigations into the offshore holdings of 714 Indian individuals and entities identified in Paradise Papers, officials said.
Summary:
The year 2017 is set to be the hottest on record without a natural El Niño event that releases heat from the Pacific Ocean once every five years, the United Nations has said.
Summary:
Radia, who was listed in the Panama Papers leak as well, was involved in the 2010 controversy 'Radia Tapes'.
Summary:
The J&K government has refused to pay the â¹10 lakh compensation recommended by State Human Rights Commission to Farooq Ahmad Dar, who was used as a human shield against stone pelters by the Army.
Summary:
The world's largest mining company Glencore secretly loaned tens of millions of dollars to an Israeli billionaire after it enlisted him to secure a mining agreement in the Democratic Republic of the Congo, the Paradise Papers have revealed.
Summary:
The Paradise Papers leak of files amounting to 1.4 TB has exposed offshore dealings of 127 public officials and several corporations.
Summary:
The Tamil Nadu government has asked the Centre for financial aid worth â¹1,500-crore to carry out relief work in regions affected by heavy rains.
Summary:
The government on Monday appointed Revenue Secretary Hasmukh Adhia as the new Finance Secretary.
Summary:
The man suspected of killing at least 26 people in a mass shooting in the US State of Texas on Sunday had served in the US Air Force and was court-martialled for assault on his wife and child in 2012.
Summary:
Zimbabwean President Robert Mugabe on Monday fired Vice President Emmerson Mnangagwa, citing "disloyalty, disrespect, and unreliability in the execution of his duties", Information Minister Simon Khaya Moyo said.
Summary:
Over 13.28 crore or about 39.5% Permanent Account Numbers (PANs) have been linked with the Aadhaar till now, according to the government data.
Summary:
Actor Ben Affleck, while speaking on the sexual harassment allegations against various Hollywood filmmakers and actors, said that he's examining his own behaviour and making sure he's part of the solution.
Summary:
When Veerappa Moily was a Union Minister, his son Harsha allegedly floated a firm which received investments from the subsidiary of a Mauritius-based firm, Paradise Papers revealed.
Summary:
One of the arrested is a DJ who allegedly sold the drugs at the nightclubs where he performed.
Summary:
Addressing a rally in Himachal Pradesh's Paonta Sahib, Congress Vice President Rahul Gandhi has said that PM Modi believes in eating the fruits of others' labour and not worrying about doing any work.
Summary:
Backing former captain MS Dhoni's selection in the Indian team for T20Is, cricketer-turned-commentator Virender Sehwag said that the team still needs MS Dhoni in the shortest format of the game.
Summary:
The Union Power Ministry has set up a four-member panel headed by Central Electricity Authority (CEA) member-thermal PD Siwal to investigate the explosion that took place at Uttar Pradesh's NTPC plant earlier this month.
Summary:
After 11 people were killed on Sunday when a boat capsized in Bihar's Samastipur, state Disaster Management Minister Dinesh Chandra Yadav said that the accident probably took place because "the river was too long".
Summary:
Djokovic ends the year at 12th, down five places, for his lowest ranking since March 2007.
Summary:
The tunnels will also be safe from avalanches and landslides.
Summary:
Kerala's Public Works Department Minister G Sudhakaran has vacated his home located in Kerala's Punnapra village after the area was acquired for widening a national highway into four lanes.
Summary:
Terming GST as "Great Selfish Tax", West Bengal Chief Minister Mamata Banerjee on Sunday tweeted that the tax was aimed at harassing people and finishing the economy.
Summary:
Stating that he does not regret the cartoon, Bala G said he would continue to highlight the government's inefficiency through his art.
Summary:
Reacting to New Zealand batsman Ross Taylor's 'Agli silai Trivandrum mein' tweet, Virender Sehwag tagged UIDAI and asked if Taylor can get Aadhaar for "such wonderful Hindi skills".
Summary:
In retaliation, the Saudi-led coalition carried out at least 29 air strikes in Yemen.
Summary:
French satirical weekly Charlie Hebdo has received death threats over a cartoon of an Islamic scholar Tariq Ramadan who has been accused of rape by two women.
Summary:
Bihar CM Nitish Kumar on Monday called for the implementation of reservation in the private sector, adding that it should be debated at the national level.
Summary:
Rajasthan Home Minister Gulab Chand Kataria has said that appropriate action will be taken against those who create law-and-order disturbances in the state during the release of 'Padmavati'.
Summary:
According to details of offshore dealings exposed by the Paradise Papers leak, actor Amitabh Bachchan became the shareholder of digital media company Jalva Media in 2002.
Summary:
The Paradise Papers leak has revealed how funds amounting to over $1.5 billion were allegedly diverted using four offshore subsidiaries of United Spirits Limited India (USL), when Vijay Mallya owned the company.
Summary:
The Supreme court has refused to stay a petition filed by People for the Ethical Treatment of Animals (PETA) seeking to ban a Karnataka legislation that legalises the buffalo race Kambala.
Summary:
Appleby officials warned this could be a case of round-tripping as the investment firm and beneficial owner were both Indians.
Summary:
Calling Kashmir a "core issue", Abbasi said that India-Pakistan relations will remain tense until the issue is resolved.
Summary:
UK-based online grocer Ocado has used a fleet of 1,000 robots to complete a task in 5 minutes, while a similar task took around two hours to complete earlier.
Summary:
Bezos also talked about space entrepreneurship and highlighted that in order to have startups in space, the cost of admission must be lowered.
Summary:
Notably, more than 13,000 people have been killed in the US this year in over 52,000 incidents of gun violence.
Summary:
Nitin Gupta, a manager of Applied Electro Magnetics, filed a plea under Insolvency and Bankruptcy Code as an 'operational creditor' against the company.
Summary:
A user claimed Kylie's pregnancy reveal was being planned as part of the TV show 'Keeping Up with the Kardashians'.
Summary:
Actress Vidya Balan has said that she is still middle-class by heart as she has been raised in a middle-class family.
Summary:
Ranveer Singh, while talking about the criticism Pakistani actress Mahira Khan received for smoking with Ranbir Kapoor and wearing a dress, said, "One should just live and let live and focus on more important things." Ranveer added that everyone has an opinion but one doesn't need to subscribe to them.
Summary:
Some users called Deepika "drunk", "desperate" and "vulgar", while some users defended her.
Summary:
Actor Prakash Raj, while sharing a note on Twitter in a veiled reference to the row between the team of film 'Padmavati' and the Rajput organisation Karni Sena, questioned who is responsible for it.
Summary:
This comes after reports claimed that Patidar leader Hardik Patel will join hands with the Congress in Gujarat.
Summary:
Tamil Nadu's Sri Ranganatha Swamy Temple has received the Award of Merit from the 2017 UNESCO Asia-Pacific Awards for Cultural Heritage Conservation.
Summary:
China has objected to Indian Defence Minister Nirmala Sitharaman's visit to Arunachal Pradesh saying that the visit is not conducive to peace and tranquility of the region.
Summary:
Claiming that the arrested displayed aggressive behaviour towards the police, officials said that Misch did not have a tourist visa.
Summary:
Schools and offices run by the Delhi government would remain shut on November 14 on the occasion of Children's Day, Deputy CM Manish Sisodia said.
Summary:
YSR Congress President YS Jagan Mohan Reddy on Monday kicked-off his 3,000-km Praja Sankalpa Yatra, covering 125 Assembly segments across Andhra Pradesh.
Summary:
Slamming the anti-Romeo squads set up by the Uttar Pradesh government, Samajwadi Party (SP) leader Naresh Agrawal on Monday said CM Yogi Adityanath does not know what love is as he is unmarried.
Summary:
US President Donald Trump has said that Japan can shoot North Korea's missiles "out of the sky" if it purchases enough arms from the US.
Summary:
Thailand will introduce biometric checks nationwide for users wanting to obtain new SIM cards from next month, the country's telecom regulator said.
Summary:
This comes amid the political crisis in the country after several MPs were forced to resign following the disclosure of their dual citizenship.
Summary:
A Russian man bit off a woman's ears, nose and fingertips after failing to strangle her when he invited her on a date to his apartment, officials said.
Summary:
It added that non-payment of minimum wages was "unconscionable and unpardonable".
Summary:
A Chilean man named Celino Jaramillo was born in 1896 and is 121 years old, according to the country's official records.
Summary:
Chipmaker Broadcom on Monday said it has offered to buy rival chipmaker Qualcomm in a cash and stock deal valued at $130 billion, including debt.
Summary:
Notably, 'Sairat' is the first Marathi film to have earned over â¹100 crore.
Summary:
Filmmaker Kalpana Lajmi, known for directing films like 'Rudaali' and 'Daman', has been admitted in the ICU as her health worsened due to her ongoing battle with kidney cancer.
Summary:
Several volunteers of Rashtra Sevika Samiti and Adarsh Vidya Mandir India on Sunday designed a 6.5-km-long rangoli, spreading over 1.25 lakh square feet, on the streets of Jaipur.
Summary:
Minister of State for Home Affairs Kiren Rijiju on Monday sought cooperation from Britain for the extradition of liquor baron Vijay Mallya, former IPL chief Lalit Modi and 11 other fugitives.
Summary:
Indian shuttlers PV Sindhu and Saina Nehwal teamed up to defeat the doubles team comprising former men's world number ones and rivals Lin Dan and Lee Chong Wei in an exhibition match.
Summary:
The iPhone X could be affected by screen burn-in and other visual changes which usually occur in OLED displays, according to Apple.
Summary:
Some Apple Watch users have reported that their Watches crashed when they asked Siri about the weather, earlier this week.
Summary:
Air Intelligence Unit of Mumbai Airport's Customs department has detained a man with 11 newly-released Apple iPhone X handsets worth â¹10,57,388.
Summary:
Amazon's chief Jeff Bezos while talking about his decision to start Amazon has said that he thought if Amazon failed, he would be very proud at 80 that he tried.
Summary:
E-commerce major Flipkart has soft-launched an online grocery delivery service 'Supermart' on its mobile app in Bengaluru.
Summary:
World's richest man Jeff Bezos has revealed that he has a fantasy of being a bartender.
Summary:
Richard Branson's cruise line Virgin Voyages has revealed that the first of the company's three ships will be restricted to passengers 18 years and older, calling it "Adult by Design".
Summary:
Shares of Jewellery and watch maker Titan jumped about 25% during intraday trade to reach an all-time high on Monday.
Summary:
Anil Ambani-led Reliance Communications (RCom) has signed an agreement with Veecon Media to sell 100% equity in its DTH business, operating under Reliance BIG TV.
Summary:
SC has asked Jaypee Group to deposit at least â¹1,000 crore by November 13 before seeking any extension.
Summary:
According to reports, Alia Bhatt and Sidharth Malhotra will star in the upcoming film 'Sadak 2', which will see Pooja Bhatt and Sanjay Dutt reprising their roles from the 1991 film 'Sadak'.
Summary:
Union Minister Giriraj Singh, while speaking about the recent 'Padmavati' row, said, "Does Sanjay Bhansali...have guts to make films on other religions or comment upon them?" He added, "They make films on Hindu gurus, gods and warriors.
Summary:
The first look of actress Anushka Shetty, known for starring in the 'Baahubali' franchise, from the upcoming film 'Bhaagamathie' has been unveiled on the eve of her 36th birthday.
Summary:
Haryanvi singer and dancer Sapna Chaudhary will mark her first Bollywood appearance with the song 'Love Bite' from the upcoming film 'Journey of Bhangover'.
Summary:
Actress Kate Winslet, while accepting an award at the Hollywood Film Awards 2017, said, "Allison Janney, I just want to be you...Or just stroke you...I mean, we could always kiss, maybe." Following this, Janney came on stage and kissed Kate.
Summary:
"Television gave me a platform to enter Indian political space and I will be forever grateful for that," said Smriti.
Summary:
Former American football player Greg Hardy, who has turned into an MMA fighter, won his first-ever professional bout in 32 seconds after knocking out his opponent, Joe Hawkins.
Summary:
NBA side Phoenix Suns' Eric Bledsoe was handed a $10,000 fine and a provisional ban from the squad after he tweeted, "I don't wanna be here".
Summary:
Mumbai-based fintech startup Kissht has raised $10 million in a funding round led by China's Fosun International.
Summary:
The Ambit Group is an investee of Qinvest, effectively making the â¹36-crore transaction between Qinvest's own two companies.
Summary:
Reliance General Insurance has released a series of digital ads featuring only dogs for its Car Insurance Campaign.
Summary:
'Fanney Khan' is the Hindi adaptation of the Dutch film 'Everybody's Famous!'
Summary:
But Arunima took the final call on the lead." The film will reportedly be shot in a straight 60-day schedule after Kangana finishes shooting for 'Manikarnika'.
Summary:
Actress Ileana D'Cruz has revealed that she had suicidal thoughts and wanted to end things as she was picked on for her body type.
Summary:
The world's longest cable has been deployed in the construction of the 1.3-km bridge, which costs â¹1,250 crore.
Summary:
Oxford University has announced a new scholarship at Somerville College's Oxford India Centre for Sustainable Development to support Indian students studying law.
Summary:
An official said the 16-metre-tall and 75-metre-long commercial complex will open in the second half of 2018, featuring restaurants, stores, as well as leisure and entertainment facilities.
Summary:
SoftBank's CEO Masayoshi Son has said that depending on the price and conditions, it is "wholly possible" that the Japanese conglomerate could shift its investment to Uber rival Lyft.
Summary:
Private lender HDFC Bank has launched a fund for startups with an initial corpus of $25-30 million.
Summary:
A Saudi-led military coalition has temporarily closed all air, land, and sea ports to Yemen to stop the flow of arms to Houthi rebels from Iran.
Summary:
China's military has been ordered to pledge "absolute loyalty" to President Xi Jinping.
Summary:
A video shows fans of American baseball team Houston Astros working together to return a woman's hat after it fell down seven floors of a parking lot.
Summary:
Actor Akshay Kumar has said that unfortunately actresses are treated like time bombs in Bollywood, which he feels is completely unfair.
Summary:
Actress Aishwarya Rai Bachchan's look from her upcoming film 'Fanney Khan' has emerged online.
Summary:
India plans to establish approximately 100 new airports at the cost of â¹4 lakh crore within the next 15 years, Minister of State for Civil Aviation Jayant Sinha has said.
Summary:
Summary:
He said the app would keep him in touch with his fans and enable book-keeping.
Summary:
Documents revealed that the $2.09 million invested by the offshore firm was dubbed as 'loan payable'.
Summary:
Kumar used to post pictures with the car on Facebook to show he was well-off even after divorce, police added.
Summary:
Summary:
Australian pacer Mitchell Starc picked up his career's first hat-trick while playing for New South Wales against Western Australia in Sydney on Monday, ahead of the Ashes series.
Summary:
Social media platform Twitter has blocked photos, videos and news tagged with 'bisexual' hashtag to appear in the search results, according to users.
Summary:
E-commerce giant Flipkart's valuation has been marked down to $7.9 billion by mutual fund investor Valic in its latest quarterly report.
Summary:
Japanese conglomerate SoftBank on Monday announced plans to increase its stake in American telecom company Sprint to 85%.
Summary:
US President Donald Trump has said that he is "certainly open" to meet North Korean leader Kim Jong-un.
Summary:
Virgin Group Founder Richard Branson has said that he started Virgin Group with ã200 (â¹19,625) and now has 90,000 people working for his company.
Summary:
The Paradise Papers leak has revealed that Minister of State for Civil Aviation Jayant Sinha served as a Director of US-based firm D.Light Design which has an offshore subsidiary.
Summary:
When asked about his name surfacing in the Paradise Papers leak, BJP MP RK Sinha conveyed through a written note that he is observing 'maun vrat' (vow of silence) for seven days.
Summary:
US President Donald Trump was photographed dumping a box of fish food into a pond during his Japan trip.
Summary:
Actress Kriti Sanon and actor Diljit Dosanjh will star together for the first time in Dinesh Vijan's directorial âÂÂArjun Patiala...
Summary:
Delhi High Court has directed the Centre to form a three-member committee to probe into an alleged medical negligence at Safdarjung Hospital.
The hospital had allegedly declared a newborn dead while the baby was still alive.
Summary:
The Delhi Metro Rail Corporation (DMRC) has decided to install solar panels on top of a 250-metre foot overbridge at Kalkaji station on the Botanical Garden-Janakpuri West metro line.
Summary:
Delhi government's excise department has decided to counsel people who are found offering liquor to persons below 25 years of age in pubs.
Summary:
The club's medical staff attempted to resuscitate Lobanzo before transferring him to a hospital, where he died on Wednesday.
Summary:
In an audiotape accessed by Zee Media, Jaish-e-Mohammad Chief Masood Azhar has admitted that the October 3 attack on BSF camp in Srinagar was carried out by the group's Afzal Guru squad.
Summary:
After China blocked United Nation's resolution to declare Jaish-e-Mohammad Chief Masood Azhar as a global terrorist, a Pakistani lawmaker has said he hasn't seen any of Azhar's terror activities.
Summary:
Meghalaya-based militant group Hynniewtrep National Liberation Council on Sunday declared that it has included the state CM Mukul Sangma in its "top hit list".
Summary:
TripAdvisor has apologised to a woman after repeatedly deleting her post about being raped while on holiday in Mexico.
Summary:
The number of transactions UPI recorded in October 2017 was 7.69 crore as compared to 1 lakh during the same period last year.
Summary:
Delhi Deputy CM Manish Sisodia on Saturday wrote to L-G Anil Baijal seeking a CBI probe into the alleged Delhi Subordinate Services Selection Board (DSSSB) examination paper leak case.
Summary:
This was after a US Senate probe had found that Apple had avoided billions of dollars in taxes by shifting profits into Irish subsidiaries.
Summary:
Quoting Mahatma Gandhi, PM Narendra Modi on Monday said, "The press is called the Fourth Estate.
Summary:
At least 13 flights were diverted from the Delhi airport on Saturday evening due to a high frequency of VIP charter planes landing there, according to reports.
The diversions, which took place between 5.30 pm and 6.15 pm, managed to affect over 50 flights.
Summary:
After winning $10,000 (nearly â¹6.5 lakh) in the Diamond Dazzler lottery, Kimberly Morris bought another $20 Diamond Dazzler lottery ticket with the prize money of $1 million (nearly â¹6.5 crore).
Summary:
YouTube personality and ex-Bigg Boss contestant Dhinchak Pooja has denied Swami Om's claims that he wrote and composed the song 'Selfie Maine Le Li Aaj', while adding, "It's my original composition." She added, "Who is Swami Om?
Summary:
Indian cricket team captain Virat Kohli, in a recent interview, revealed that chhole bhature is his cheat meal.
Summary:
After controlling a back pass, Zentner tried an outward pass but didn't realise that the ball had rolled back nearly two yards behind him.
Summary:
Indian opener Rohit Sharma responded sarcastically to a sports journalist's tweet, wherein the latter stated that openers Sharma and Shikhar Dhawan would "have to play out the new ball" in the second India-New Zealand T20I.
Summary:
Health services through public-private partnership could be made available to masses, said the Vice-President.
Summary:
Air India has floated a tender to raise â¹3,460 crore to bridge finance a loan taken to buy three Boeing 777-300ER planes, two of which will be used by VVIPs. The planes are scheduled to be delivered by February 2018.
Summary:
A 46-year-old passenger was caught allegedly hiding gold worth nearly â¹30 lakh in his baggage and rectum, in one of three instances of gold smuggling at the airport in three days.
Summary:
The Noma team said the new restaurant would have a fresh look, featuring no pieces from the old one.
Summary:
Saudi Arabia's Prince Mansour bin Muqrin and several government officials died in a helicopter crash on Sunday near the country's border with Yemen, Saudi state media reported.
Summary:
At least 26 people were killed and 30 were reported injured on Sunday after a gunman opened fire at a church in the US state of Texas.
Summary:
However, Aziz had not disclosed the dealings before being named Finance Minister or Prime Minister.
Summary:
The Paradise Papers leak has revealed that a close aide of Canadian PM Justin Trudeau was involved in moving millions of dollars offshore.
Summary:
The government has disqualified around 3.09 lakh directors on boards of companies that had failed to file financial statements or annual reports for three consecutive fiscals.
Summary:
The Bombay High Court has struck down an order passed by licensing and appellate authorities, saying the application for granting firearm licences cannot be rejected only because there is no threat to applicant's life.
Summary:
"Fifteen infants were younger than one month.
Six of the remaining 15, who were older than a month, passed away due to encephalitis," the HOD said.
Summary:
Holger Erik, the German tourist who alleged he was assaulted by a railway employee, attacked two policemen who were taking him to the police station later that night, Uttar Pradesh Police said.
Summary:
Paris opened its first-ever nude restaurant, O'Naturel, to the public on Friday.
Summary:
US President Donald Trump has accused Iran of firing a ballistic missile towards Saudi Arabia and expressed his support for the Saudi-led coalition.
Summary:
Donkeys named after jailed Dera Sacha Sauda leader Ram Rahim Singh and his adopted daughter Honeypreet Insan were sold for â¹11,000 at an annual donkey fair in Madhya Pradesh's Ujjain.
Summary:
The other pharma companies that are being sued are Zydus Cadila, Glenmark, and Emcure.
Summary:
A 36-feet effigy of Hollywood producer Harvey Weinstein was burnt at a bonfire event in the UK on Saturday.
Summary:
Four arrested suspected ISIS terrorists named Zaid as their ideologue earlier this year.
Summary:
After news website The Wire alleged a conflict of interest at think tank India Foundation over its Directors, India Foundation Director and NSA Ajit Doval's son Shaurya Doval dismissed the allegation as speculative.
Summary:
The accused allegedly put chilli powder and petrol on boys' private parts and burnt them with cigarettes.
Summary:
Manchester City defeated Arsenal 3-1 on Sunday, claiming ninth successive league win, to go eight points clear at the top of the Premier League table.
Summary:
"Don't let terrorism take over our Town!" the flyers read.
Summary:
Uttar Pradesh Chief Minister Yogi Adityanath said no one can have the audacity to export cow meat from the state.
Summary:
In a bid to increase the production of milk in Maharashtra, the state government has adopted the 'sexed or sorted semen' technology to ensure that cows give birth to more female calves.
Summary:
Wishing Indian cricket team captain Virat Kohli on the occasion of his 29th birthday on Sunday, former Indian cricketer Sachin Tendulkar tweeted, "A young, passionate cricketer is now the leader of a world beating team.
Summary:
Republican Senator Mitch McConnell has said that tech giants like Facebook, Google, and Twitter could help the US government "retaliate" against Russia for allegedly interfering in the 2016 US presidential elections.
Summary:
A US judge has stopped all sales by home security startup Ring as part of a lawsuit filed by rival electronic security provider ADT.
Summary:
Researchers have proposed a new theory explaining how two boulders weighing approximately 383 and 925 tonnes each could've made their way atop a cliff on a Bahamian island.
Summary:
An armed Islamist paramilitary group raided a comic book convention in Libya on Friday and reportedly beat and arrested 20 people.
Summary:
There is no cooperation between the US and Russia on North Korea for the time being and there is only a periodic exchange of views, Russian spokesman Dmitry Peskov said on Saturday.
Summary:
Iranian Supreme Leader Ayatollah Khamenei has told Russian President Vladimir Putin that the two countries can nullify US sanctions by replacing the use of US dollar with national currencies in trade transactions and isolate the US.
Summary:
With over 714 Indians named in the Paradise Papers leak detailing offshore dealings, India has ranked 19th among 180 countries in terms of the number of names revealed in the leak.
Summary:
The International Consortium of Investigative Journalists on Sunday released 13.4 million files as part of a leak titled 'Paradise Papers'.
Summary:
Bermuda-based law firm Appleby from which most of the Paradise Papers files were leaked has denied it had any evidence of any wrong-doing.
Summary:
The Paradise Papers are a cache of 13.4 million documents exposing the offshore dealings reportedly used by multinationals like Nike and Facebook, and several world figures including UK's Queen Elizabeth.
Summary:
The Congress has slammed the BJP over The Wire's report alleging a "prospect of conflict of interest" and "lobbying" in National Security Advisor Ajit Doval's son Shaurya running a think tank with four ministers as its directors.
Summary:
Russia funded substantial investments in Twitter and Facebook through a business associate of US President Donald Trump's son-in-law Jared Kushner, Paradise Papers revealed.
Summary:
The leaked documents show that Ross has a stake in a Russian company run by Putin's family and close allies, some of whom are under US sanctions.
Summary:
The Paradise Papers leak has revealed that the Duchy of Lancaster, which manages UK Queen Elizabeth's private money, had invested over â¹84 crore in tax havens like the Cayman Islands and Bermuda.
Summary:
Around 2.24 lakh companies have been struck off till date for remaining inactive for two years or more, the Ministry of Corporate Affairs said on Sunday.
Summary:
A "completely shattered" relationship between the US and Russia is the greatest threat to world peace, German Foreign Minister Sigmar Gabriel has said.
Summary:
She further said she's glad that women are speaking up, but feels the debate should have started long back.
Summary:
Ranveer will portray former Indian cricketer Kapil Dev in the film.
Summary:
The Delhi government would be starting workshops for parents of Class 10 and 12 students appearing for the board examinations, in 50 government schools, from November 15.
Summary:
Maharashtra Water Resources Minister Girish Mahajan on Sunday suggested that liquor brands should be named after women in order to increase their sales.
Liquors are generally named as Bobby, Julie.
Summary:
The Public Works Department has started constructing Delhi's first mega skywalk at ITO traffic junction, reports said.
Summary:
After a filmmaker made a luxury car-style commercial depicting a used 1996 Honda Accord, the car which was put up for sale for $499 on eBay has attracted bids over $135,000.
Summary:
Eight people who had gone for a picnic on Mastana Ghat died after the adults jumped into the Ganga river to save a drowning child.
Summary:
Goa CM Manohar Parrikar on Sunday said that he had always tried to ensure minimum loss of life when he was the Defence Minister.
Summary:
News website The Wire has alleged a conflict of interest in the 'India Foundation' think tank, run by National Security Advisor Ajit Doval's son Shaurya.
Summary:
Rupani added he was ready to debate with Gandhi about the figures of unemployment in the state.
Summary:
The Sashastra Seema Bal (SSB) has seized 300 grams of heroin worth around â¹1.5 crore from a man in Bihar's Champaran district.
Summary:
Chinese smartphone maker Xiaomi has seen an over 100% growth in its shipments in the third quarter of 2017, according to International Data Corporation (IDC).
Summary:
Sikkim-based startup NE Taxi, which was founded in 2013 by Rewaj Chettri, aggregates tourist taxis to provide both local and outstation travel solutions for northeastern India.
Summary:
Around 5,000 South Koreans on Saturday marched in Seoul to protest against US President Donald Trump's upcoming visit to the country.
Summary:
This comes after the Syrian Army announced the region's liberation from ISIS, killing large numbers of ISIS fighters.
Summary:
Trump plans to visit South Korea next week as part of his first Asia tour.
Summary:
Anti-corruption watchdog Central Vigilance Commission has asked public sector banks to provide details of fraud cases that were reported to the CBI since 2001 involving â¹3 crore and more.
Summary:
Daylight Saving Time is a seasonal time change practiced mostly in the Northern Hemisphere, wherein clocks are set ahead of the standard time by one hour in spring and are rolled back in autumn.
Summary:
A ground invasion is the "only way" to locate and destroy all components of North Korea's nuclear weapons program with complete certainty, the Pentagon has said in a letter to US lawmakers.
Summary:
The Supreme Court has observed that â¹29,000 crore meant for the welfare of construction workers was being misused and diverted to labour welfare boards and government for other purposes.
Summary:
PM Narendra Modi on Thursday slammed the Congress government in Himachal Pradesh for running a "drug-mafia raj" in the state.
Summary:
The Catalan leaders had fled to Belgium after Spain imposed direct rule in Catalonia over the region's declaration of independence.
Summary:
Days ahead of the first anniversary of demonetisation, the government has revealed that cash deposits worth over â¹17,000 crore were made and later withdrawn post demonetisation by 35,000 companies which are now deregistered.
Summary:
Summary:
Singer Mika Singh took to Twitter to share a video of Shah Rukh Khan's fan singing the song 'Kabhi Khushi Kabhie Gham'.
Summary:
Choreographer Mini Pradhan, while talking about dancing skills of actresses said, "I think after Madhuri Dixit no one in present times has the ability to dance like her." "As an audience, you won't be able to take your eyes off from her," she added.
Summary:
Amitabh Bachchan in his blog wrote that he wants to be left to lead the last few years of his life with and within himself.
Summary:
"What excites me is now I can experiment with roles and characters being in my age," Vidya added.
Summary:
Three paintings made by 42-year-old elephant Sandra were auctioned for $150 (â¹9,700) each in Hungary.
Summary:
The plan is aimed at monitoring officials arriving late or those skipping work.
Summary:
Prime Minister Narendra Modi on Sunday said that former PM Indira Gandhi did not go for a note ban exercise when needed.
Summary:
Reacting to viral photos of policemen carrying out "monsoon improvement work" during the ongoing heavy rainfall in Tamil Nadu, a tweet read, "For the 1st time Chennai Police is doing their best without expecting anything." Meanwhile, actor Kamal Haasan tweeted, "Thanks for going beyond the call of your duty.
Summary:
The Aam Aadmi Party on Sunday approached the police alleging a man stole campaign material from its office at Delhi's Rouse Avenue.
Summary:
The Tamil Nadu government has deployed 601 medical teams to help people affected by the heavy rains in different parts of the state.
Summary:
The Railways is expected to gain an additional â¹70 crore from these levies.
Summary:
Russia's Ministry of Defence has released a video showcasing the capabilities of the Sukhoi Su-30SM, an advanced multi-purpose fighter jet.
Summary:
Cartoonist G Bala has been arrested for a 'derogatory' cartoon he posted on social media, criticising Tamil Nadu CM Palaniswami and two state officials.
Summary:
The Delhi Police has decided to introduce special help desks at police stations to provide a friendly environment for child victims and their parents.
Summary:
A 60-year-old man was caught with banned notes worth â¹1 crore in Gujarat's Jamnagar on Friday.
Summary:
The Maharashtra Mangrove Cell has approved a proposal wherein, the Indian Institute of Space Science and Technology will track the health of mangrove forests using real-time satellite remote sensing data.
Summary:
He further slammed the Congress saying that the party was only involved in corruption, spreading lies, casteism, and nepotism during its 70-year rule.
Summary:
Protesters shouted slogans such as "Putin is a thief" and "freedom for political prisoners".
Summary:
The attack involved a car bombing and detonation of an explosive belt by a suicide bomber.
Summary:
This is the most destructive storm to hit Vietnam's southern coastal region in decades, according to reports.
Summary:
The Indian women's hockey team defeated two-time champions China in sudden death on Sunday to clinch the Hockey Asia Cup for the second time.
Summary:
Earlier, the MCI had allowed only candidates with under 70% disability of the lower limbs to study medicine.
Summary:
A 68,000 square feet poster of 'Amazon Obhijaan', said to be the largest for a Bengali film, was launched today at the Mohun Bagan football ground in Kolkata.
Summary:
Jemimah hit 21 fours, putting up a 300-run stand for the second wicket.
Summary:
Bowling for the first time in T20Is in his fifth match, Kohli bowled a wide following which Dhoni stumped Pietersen.
Summary:
Sreesanth claimed he never fought with then Rajasthan Royals skipper Dravid, for which the team terminated his contract.
Summary:
The video also shows iPhone X's TrueDepth camera system which contains an infrared camera and a 7-megapixel front-facing camera.
Summary:
The Baltic nation of Estonia has blocked its residents' identity cards after finding a security flaw in the ID chips, leaving individuals vulnerable to identity theft.
Summary:
A 64 GB variant of the iPhone X, which otherwise costs â¹89,000, is also being sold at a price of over â¹1,45,000.
Summary:
Former UK PM Gordon Brown has revealed that the US "misled" the UK into joining the US-led invasion of Iraq.
Summary:
Actor Ranveer Singh, while talking about his rumoured girlfriend Deepika Padukone, said, "It's nice to have someone you can confide in." Further talking about having Deepika as a co-star in their upcoming film 'Padmavati,' Ranveer added that it is comforting.
Summary:
Sonakshi Sinha, while speaking about rumours of a fight with Salman Khan, said such reports don't make any difference to her.
Sonakshi further said, "I'm grateful to him...
Summary:
A Muslim youth from Aligarh has announced â¹25,000 reward for anyone who blackens actor Kamal Haasan's face over his remark that 'Hindu terror is now a reality in India'.
Summary:
Summary:
Union Minister for Drinking Water and Sanitation Uma Bharti, while speaking on the ongoing 'Padmavati' row, tweeted, "I stand firm.
Summary:
The Congress believes liquor prohibition would help the party woo women voters ahead of the polls, reports said.
Summary:
The Department of Post has issued stamps on three signature Hyderabadi dishesâ biryani, baghare baingan, and seviyan.
Summary:
Summary:
During the inauguration of the Indian Karate Championship 2017 on Saturday, Karnataka Chief Minister Siddaramaiah posed with Mangaluru Mayor Kavitha Sanil while trading punches with her in jest.
Summary:
In an indirect reference to PM Narendra Modi and BJP President Amit Shah, BJP leader Shatrughan Sinha on Sunday said the party must stop being a "one-man show and a two-man Army".
Summary:
New Zealand batsman Ross Taylor trolled ex-cricketer Virender Sehwag by posting a picture of a closed tailor shop in Rajkot after the second T20I.
The picture accompanied a caption which read, "@virendersehwag #Rajkot mein match k baad, #darji (Tailor) Ki dukaan band.
Summary:
A 75-year-old woman and her five-year-old granddaughter were burnt to death in a fire at Delhi's Sadar Bazar on Saturday morning, while five other members of the family were injured in the accident.
Summary:
Services include Apple Music and iCloud, which Apple said saw a 75% subscriber growth.
Summary:
A US woman in Zimbabwe has been charged with attempting to overthrow the Zimbabwean government for allegedly calling Zimbabwean President Robert Mugabe a "selfish and sick man" on Twitter.
Summary:
The tags also urge shoppers to back their campaign and pressurise Zara into paying them.
Summary:
US-based chocolate and confectionery firm Hershey will invest $50 million in India over the next five years to grow and expand its presence.
Summary:
US' third and fourth-largest wireless carriers, T-Mobile and Sprint, have officially called off their merger talks claiming they were "unable to find mutually agreeable terms".
Summary:
Five-time world champion and Olympic bronze medalist MC Mary Kom has been named as the ambassador of the upcoming AIBA Women's Youth World Championships.
Summary:
The release date of Sara Ali Khan's debut film 'Kedarnath' opposite Sushant Singh Rajput has been announced as December 21, 2018.
Summary:
Smog has intensified in Pakistan due to crop stubble burning and thermal power plant emissions from the Indian side, officials reportedly said.
Summary:
The South Delhi Municipal Corporation has announced plans to install customised playground equipment in at least four parks for differently abled children in the next three months.
Summary:
Prime Minister Narendra Modi, while speaking at India's Business Reforms Conference on Saturday, said India would have ranked 100 in Ease of Doing Business survey earlier if certain disciplines like bankruptcy code or commercial code were in place under the previous government.
Summary:
However, the police said Yadav had punched Erik after the tourist did not respond to his greetings.
Summary:
Prime Minister Narendra Modi on Sunday said that the campaign for Himachal Pradesh elections has become boring as the Congress had fled from the battlefield.
Summary:
While the standard towels cost around â¹6 each, the disposable towels cost only â¹4.75 each, officials said.
Summary:
Apple will recruit employees from the International Institute of Information Technology Hyderabad (IIIT-H) this year, reportedly the first time the firm is hiring from an Indian college.
Summary:
The Delhi Metro Rail Corporation Ltd on Wednesday installed the Nobel Memorial Wall at Rajiv Chowk metro station for the seventh consecutive year.
Summary:
Microblogging platform Twitter has said that it has implemented safeguards to increase security after a Twitter employee on Thursday deactivated US President Donald Trump's personal account.
Summary:
China will begin construction of the world's highest planetarium next year in Tibet, which is often dubbed "Roof of the World", being 4,000 metres above sea level.
Summary:
US-based researchers have found lingering radioactivity in the Pacific's Marshall Islands where the US conducted 66 nuclear tests from 1946-1958, and three islands from Bikini and Enewetak Atolls were "bombed out of existence".
Summary:
Using gravitational lensing, the team witnessed the formation of the galaxy's first spiral arms, going back 11 billion years in time.
Summary:
No dictator, no regime and no nation should ever underestimate American resolve, US President Donald Trump warned on Sunday without particularly referring to any country.
Summary:
North Korea is a big problem for the US and the world but its citizens are great people, US President Donald Trump has said.
This comes amid ongoing tensions between the US and North Korea over the latter's nuclear programme.
Summary:
Former Bigg Boss contestant Swami Om has claimed Dhinchak Pooja's song 'Selfie Maine Le Li Aaj' was written and composed by him.
Swami Om further said when she approached him, he was in the mood to take a selfie and hence recommended the lyrics.
Summary:
Tabu, while talking about what she sees before signing a film, jokingly said, "Mujhe paisa mil raha hai ki nahi...but...I should (also) like (the role) being offered." Tabu added that she has done fewer films because what she's offered is something she doesn't want to do.
Summary:
The father of Girish Sharma, who invaded the pitch during a Ranji Trophy match in Palam, said that his son, a "cricket enthusiast", just wanted to watch the match up close.
Summary:
Former Pakistani pacer Shoaib Akhtar praised Indian captain Virat Kohli and tweeted, "I was better off not bowling at all when #Kohli was batting.
Summary:
A delegation of eight Members of Parliament from six Indian states visited Energy Policy Institute at the University of Chicago (EPIC-India) on October 28, to facilitate knowledge exchange for India's energy challenges.
Summary:
The three new cryptocurrency domains that Amazon has registered are Amazon Ethereum, Amazon Cryptocurrency, and Amazon Cryptocurrencies.
Summary:
Former accountant Ryan Grant has claimed that he earns $60,000 yearly by selling items from retail stores like Walmart and Target on Amazon.
Summary:
"It's a museum piece," said ISS' computer resources head, referring to the 2000-era printer.
Summary:
Blockchain startup Tezos' Founders Kathleen and Arthur Breitman have been sued in a class action lawsuit for defrauding participants and violating the US securities law.
Summary:
Saudi Prince Alwaleed bin Talal Al Saud, the wealthiest person in the Middle East, has been arrested in a corruption probe, Saudi-owned Al Arabiya has revealed.
Summary:
Erik had alighted a train and was looking for directions when the man greeted him.
Summary:
Saudi Arabia's military forces on Saturday intercepted a ballistic missile fired towards the international airport in capital Riyadh.
The 800-km-range missile was destroyed over the capital and fragments landed in the airport area, officials said.
Summary:
Mangalyaan, also Asia's first successful Mars mission, recently completed three years in orbit despite being designed to last six months.
Summary:
Five policemen were suspended on Friday for their alleged insensitivity, negligence, and delay in lodging a complaint of a 19-year-old student who was allegedly gang-raped in Bhopal on Tuesday.
Summary:
As many as 69 Members of Parliament (MPs) in the current Lok Sabha have failed to declare their assets and liabilities to the Income Tax (I-T) Department, an RTI query has revealed.
Summary:
She said the accused enquired about her parents to know if she belonged to a well-to-do family and whether she would lodge a complaint.
Summary:
Praising India's increasing per capita income, World Bank CEO Kristalina Georgieva on Saturday said she has no doubt India will be a high-middle income country by 2047, when it completes hundred years of Independence.
Summary:
The number of MBA students getting job offers during campus placements are at a five-year low, with only 47% students receiving job offers, All India Council for Technical Education (AICTE) data has revealed.
Summary:
The Aam Aadmi Party on Saturday said it will observe November 8, the first anniversary of the demonetisation of â¹500 and â¹1000 notes, as "fraud day".
Summary:
Ahead of Gujarat Assembly elections, Union Finance Minister Arun Jaitley on Saturday said Congress had used "terrorists" in the past three elections in the state to target PM Narendra Modi.
Summary:
A National Climate Assessment by the US government has cited human influence as the "dominant cause" of warming since the mid-20th century, adding there are "no convincing alternative explanations" backed by evidence.
Summary:
Kohli said he had "no sense before" and ever since Anushka has come into his life, he has learnt a lot.
Summary:
Actor Ranveer Singh has said that he is sh*t scared as he is playing an anti-hero in his upcoming film 'Padmavati'.
Ranveer further said, "If [the audience] hates my character, the hate will be transferred to me."
Summary:
Debutant Indian pacer Mohammed Siraj broke down in tears after the national anthem got over ahead of the start of Rajkot T20I against New Zealand on Saturday.
Summary:
Demanding strict action against the culprits, the 19-year-old gangrape survivor from Madhya Pradesh's Bhopal said that they should be hanged on the streets.
Summary:
Former batsman Sachin Tendulkar became the first cricketer to smash 17,000 ODI runs during his 175-run knock against Australia on November 5, 2009, in Hyderabad.
Summary:
Argentine forward Lionel Messi made his 600th appearance for Barcelona in the side's 2-1 win over Sevilla at the Camp Nou on Saturday.
Summary:
In a picture, Kohli can be seen blowing out a candle on a cricket ground-themed cake.
Summary:
A man was detained by police on Saturday after he rushed toward Maharashtra Chief Minister Devendra Fadnavis allegedly to give him his job application.
Summary:
Station manager KL Meena has been suspended for allegedly failing to curb cattle menace after BJP MP Hema Malini escaped a bull attack at the Mathura Junction railway station on Wednesday.
Summary:
Refuting Bruhat Bengaluru Mahanagara Palike's (BBMP) claims that only 780 potholes remain in the city, Mayor Sampath Raj has said Bengaluru still has around 4,000 potholes.
Summary:
"I don't think I've come across a better cricketing brain," Kohli further said about MS Dhoni.
Summary:
The man, identified as Girish Sharma, was charged under section 447 of the IPC.
Summary:
The video allegedly features Inspector S Lingaiah who is seen watching television as the home guard massages his bare back.
Summary:
Researchers at IIT Roorkee have come up with a new method for production of biofuel using algae.
Summary:
US-based researchers have demonstrated that 'smart greenhouses' can capture solar energy for electricity without reducing plant growth.
Summary:
Kohli, playing his 50th T20I innings, also became the fastest player to hit 200 fours in T20I cricket.
Summary:
New Zealand's Colin Munro became only the fourth player to hit two hundreds in T20I cricket, helping his side post 196/2.
Summary:
According to Counterpoint's Research data for Q3, 2017, Samsung's dominance in premium phone segment (priced above â¹30,000) is now challenged by OnePlus along with Apple.
Summary:
LEGO, which is celebrating the 10th anniversary of its modular building kits, has announced that its 5,923-piece Taj Mahal kit will be re-released on November 27 and will cost around â¹24,000.
Summary:
The Railways would be sending text messages to passengers travelling in Rajdhani and Shatabdi trains if the scheduled trains get delayed by over an hour.
Summary:
PM Narendra Modi on Saturday promised to undertake more reforms for India's economic and social development, adding it was his "sole purpose" in life.
Summary:
Kohli reached the 7,000-run mark in his 212th T20 innings, becoming the second fastest to achieve the feat behind Windies' Chris Gayle (192).
Summary:
The Delhi government has banned the picking up of commuters by buses at the exit gates of interstate bus terminals (ISBT) across the capital.
Summary:
The ash blocked the evacuation system, increasing the pressure inside the furnace.
Summary:
A document called 'New India @2022' by NITI Aayog envisions that India will be poverty, dirt, corruption, terrorism, casteism, and communalism free by the year 2022.
Summary:
Afghanistan has ordered a 20-day suspension of instant messaging services WhatsApp and Telegram to resolve "technical problems", officials have said.
Summary:
A Pakistan International Airlines (PIA) flight on Saturday landed midway in Lahore due to low visibility and asked passengers onboard to travel by bus to their destination, according to reports.
Summary:
Billionaire founder of Virgin Group, Richard Branson has said if somebody is pitching an idea to him, then it must be told in 2-3 minutes in the form of a short story.
Summary:
Maisie Williams, who portrays 'Arya Stark' on HBO series 'Game of Thrones', has said she's really excited for the show to end.
Maisie further said.
Summary:
Model-turned-actress Urvashi Rautela, while speaking about punishment for rapists and paedophiles, said, "I feel that chemical castration will be good." "Castration is intended to have a deterrent effect and prevent sexual offenses," she added.
Summary:
Actor Ayushmann Khurrana, while speaking about late singer-composer Kishore Kumar's biopic said, "I'm a legit actor who can play the legend on-screen." "I'd love to do the Kishore Kumar biopic...
Summary:
An Indian Army soldier on leave stole an Army ambulance from Uttar Pradesh's Allahabad on Saturday and was caught after a five-hour chase 200 km away in Kanpur.
Summary:
Applications for public outdoor events in Mumbai will now be cleared within 72 hours as the Brihanmumbai Municipal Corporation on Thursday introduced a single window clearance system to centralise the processing for event permissions.
Summary:
Two class 10 girls at a school in Madhya Pradesh's Damoh were allegedly made to strip by their teacher after a classmate complained about losing â¹70.
Summary:
Further, Kohli said he hasn't seen anyone as lost as the all-rounder, who once called Ravichandran Ashwin as 'Ravikashyap'.
Summary:
"Every person feels he should be playing for the country but...only eleven players are going to play," Dev added.
Summary:
The Karnataka High Court on Friday stayed the state government's ban on registration and use of two-wheelers with engine capacity of less than 100cc and equipped with pillion seats.
Summary:
The central government has given an in-principle approval to upgrade over 6,200 km of state highway in Karnataka as National Highway, state Chief Minister Siddaramaiah said on Friday.
Summary:
BJP candidate Madhu Azad on Friday became the first woman Mayor of Gurugram, after getting unanimously chosen by the councillors.
Summary:
Summary:
A trader was defrauded in Noida after the operator of a fake Patanjali website offered distributorship for â¹10 lakh.
Summary:
The virtually existing boy named Shibuya Mirai, developed jointly by Microsoft, has become Japan's first AI bot to be granted a residency.
Summary:
Yoga guru Baba Ramdev added the 'tadka' to the 918 kilograms of khichdi prepared during Delhi's World Food India fair, which set a Guinness World Record on Saturday.
Summary:
India will "definitely" be among the top 50 nations in World Bank's 'ease of doing business' rankings in the next two years, NITI Aayog CEO Amitabh Kant has said.
Summary:
Chanderpaul scored 11,867 runs in 164 Tests for Windies before retiring from international cricket in January last year.t
Summary:
Visually impaired people cannot recognise the newly issued â¹50 note as it does not have any identification mark to differentiate it from other denominations, a PIL filed in Delhi High Court claimed.
Summary:
During a rally in Himachal Pradesh's Kangra, Prime Minister Narendra Modi on Saturday compared the Congress to termites, which have to be taken out from the roots.
Summary:
Facebook has admitted to having up to 270 million fake accounts, according to its third quarter earnings in 2017.
Summary:
However, Apple has not yet responded to the vulnerabilities found in iOS 11.1 update.
Summary:
A US-based team led by Indian researcher Shyam Gollakota has created fabrics that can store data, from security codes to identification tags, without using any on-board electronics.
Summary:
The 140-metre-long vessel, which has been dubbed as "magic island maker", is capable of digging 6,000 cubic metres an hour, which is equivalent to three standard swimming pools, according to reports.
Summary:
The Champagne Nights Fantasy Bra is made with almost 6,000 gemstones including diamonds, yellow sapphires, and blue topaz.
Summary:
She said this after India secured the 100th rank in World Bank's ease of doing business report.
Summary:
Fifty-two-year-old Wendy Riss Gatsiounis has become the second woman to accuse Oscar-winning actor Dustin Hoffman of sexually harassing her.
Summary:
Reacting to actor Kamal Haasan's remark on 'Hindu terror', the Akhil Bharat Hindu Mahasabha on Friday said that he and others like him should be shot dead or hanged.
Summary:
Actress Kangana Ranaut has said that in the film industry, it becomes difficult to remain headstrong as one is often judged for not following the status quo.
Summary:
Singer Arijit Singh has said that if he will sing all the songs then people are going to get exhausted.
Summary:
Former Australian wicketkeeper Adam Gilchrist has said that he considers ex-Australian captain Steve Waugh and ex-Indian skipper MS Dhoni as the perfect captains.
Summary:
In addition to the 5,777 illegal hutments razed by the Brihanmumbai Municipal Corporation along the Tansa pipeline, it has said it will demolish 9,816 more by year-end.
Summary:
CPI(M) leader Antonio Williams and his three friends have been arrested for allegedly kicking a pregnant woman in her stomach and assaulting cops, following a car accident in Kerala's Kollam district.
Summary:
Former Pakistani fast bowler Shoaib Akhtar called Ashish Nehra, who retired recently, one of the "nicest and honest" players in his farewell message for the latter.
Summary:
Olympic bronze medalist boxer Mary Kom has been assured of her sixth medal at the Asian Women's Boxing Championships after she advanced to the semi-finals of the tournament.
Summary:
Virat Kohli has revealed he tried touching Sachin Tendulkar's feet the first time he met him.
Summary:
Pakistan's Earthquake Reconstruction and Rehabilitation Authority has received information from the country's Inter-Services Intelligence that there is a "likelihood of large scale earthquake in the Indian Ocean in the near future".
Summary:
New Zealand's Colin Munro smashed an unbeaten 109(58) against India in the second T20I on Saturday, becoming the first batsman to smash two T20I hundreds in a calendar year.
Summary:
Tombstones of smart juicer making startup Juicero, which shut shop earlier in September and anonymous social network Yik Yak were also erected.
Summary:
Virgin Group Founder Richard Branson said that small is beautiful when it comes to running companies.
Summary:
FIFA has also sought information on "steps that AIFF intends to undertake in this matter".
Summary:
India on Saturday set a world record by preparing 918 kilograms of khichdi at Delhi's World Food India fair, a Guinness World Record official confirmed.
Summary:
Chipmaker Broadcom is planning to acquire its rival Qualcomm for over $100 billion, according to reports.
Summary:
Amazon CEO Jeff Bezos has sold more than 1 million shares of Amazon, worth nearly $1.1 billion in the past week, according to a regulatory filing.
Summary:
Reacting to the car invasion that stalled the Delhi-Uttar Pradesh Ranji Trophy match, Delhi captain Ishant Sharma tweeted, "Drive in theater just progressed to #DriveIn match.
Summary:
Italian police have intercepted 24 million pills of the painkiller Tramadol, on its way from India to Libya, which they suspect were meant for sale to ISIS fighters in North Africa and West Asia.
Summary:
Addressing a rally in Himachal Pradesh's Kangra, PM Narendra Modi said, "I haven't come here to ask you to make BJP win.
Summary:
Sindhu claimed that the staff member spoke rudely with her over her cabin baggage, which the airline claimed to be oversized.
Summary:
US-based startup Beheld allows users to scan, send, and 3D-print their action-figure-like representations using a booth-sized scanner.
Summary:
Technology giant Apple has revealed that the 'tears of joy' emoji is the most popular emoji among English speakers in the United States.
Summary:
The user had tweeted how Google places the cheese underneath while Apple puts it on top in the burger emoji.
Summary:
Users have reported activation issues in their iPhone X smartphones and said the device's screen displayed "the activation server is temporarily unavailable".
Summary:
Nadella will be in the country on November 6 and 7, and will visit Hyderabad and Delhi, a Microsoft spokesperson said.
Summary:
Delhi-headquartered e-learning platform Meritnation has raised $5.8 million from online classifieds company, Info Edge.
Summary:
China on Saturday amended its Criminal Law, making disrespecting the national anthem in public a criminal offence punishable by up to three years in prison.
Summary:
World Bank CEO Kristalina Georgieva has said that India's jump of 30 places in World Bank'